snap-2010-07-28/0000755000175000017500000000000011576504254012743 5ustar moellermoellersnap-2010-07-28/exonpairs.c0000644000175000017500000002075611424066011015113 0ustar moellermoeller/*****************************************************************************\ exonpairs.c Copyright Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" char * ZOE = NULL; /* environment variable */ static char usage[] = "\n\ usage: exonpairs [options] [options]\n\ options:\n\ -min-intron minimum Intron length [30]\n\ -max-intron maximum Intron length [10000]\n\ -einit-length minimum Einit length in bp [10]\n\ -eterm-length minimum Eterm length in bp [10]\n\ -exon-length minimum Exon length in bp [30]\n\ -intron-score minimum Intron score in bits [-5]\n\ -einit-score minimum Einit score in bits [-5]\n\ -eterm-score minimum Eterm score in bits [-5]\n\ -exon-score minimum Exon score in bits [-5]\n\ -pair-score minimum pair score (exon-intron-exon) [10]\n\ -flank-length length of flanking sequence per exon [20]\n\ -lcmask treat lowercase as N\n\ "; int PADDING = 48; int MIN_INTRON_LENGTH = 40; int MAX_INTRON_LENGTH = 10000; int MIN_EINIT_LENGTH = 10; int MIN_ETERM_LENGTH = 10; int MIN_EXON_LENGTH = 30; float MIN_INTRON_SCORE = -5; float MIN_EINIT_SCORE = -5; float MIN_ETERM_SCORE = -5; float MIN_EXON_SCORE = -5; float MIN_PAIR_SCORE = 10; int FLANK_LENGTH = 20; static zoeFeatureVec get_exons (const zoeTrellis t) { int i, j, skip, length; zoeFeatureVec temp; zoeFeatureVec exons = zoeNewFeatureVec(); zoeFeature exon; zoeFeatureFactory factory = t->factory[Exon]; for (i = PADDING; i < t->dna->length - PADDING; i++) { temp = factory->create(factory, i); if (temp) { for (j = 0; j < temp->size; j++) { exon = temp->elem[j]; length = exon->end - exon->start +1; exon->score = zoeScoreExon(t, exon, PADDING, 0); skip = 0; switch (exon->label) { case Esngl: skip = 1; break; case Einit: if (exon->score < MIN_EINIT_SCORE) skip = 1; break; if (length < MIN_EINIT_LENGTH) skip = 1; break; case Eterm: if (exon->score < MIN_ETERM_SCORE) skip = 1; break; if (length < MIN_ETERM_LENGTH) skip = 1; break; case Exon: if (exon->score < MIN_EXON_SCORE) skip = 1; break; if (length < MIN_EXON_LENGTH) skip = 1; break; default: zoeExit("no, not possible"); } if (skip) continue; zoePushFeatureVec(exons, exon); } zoeDeleteFeatureVec(temp); } } return exons; } static void report_pair (const zoeDNA dna, const zoeFeature e1, const zoeFeature e2, const zoeFeature intron, strand_t strand, zoeHash reported) { int start; char seq1[FLANK_LENGTH +1], seq2[FLANK_LENGTH +1]; char location[64]; int c1, c2; start = e1->end - FLANK_LENGTH +1; strncpy(seq1, dna->seq + start, FLANK_LENGTH); seq1[FLANK_LENGTH] = '\0'; start = e2->start; strncpy(seq2, dna->seq + start, FLANK_LENGTH); seq2[FLANK_LENGTH] = '\0'; /* check if this junction has already been reported */ sprintf(location, "%d-%d", e1->end, e2->start); if (zoeGetHash(reported, location)) return; /* already reported */ zoeSetHash(reported, location, (void*)1); /* output */ if (strand == '+') { c1 = e1->end - PADDING +1; c2 = e2->start - PADDING +1; } else { c2 = dna->length - PADDING - e1->end; c1 = dna->length - PADDING - e2->start; } printf(">%c%d..%d (%d)\n%s\n%s\n", strand, c1, c2, c2-c1+1, seq1, seq2); } static void exon_pairs (const zoeDNA dna, const zoeHMM hmm, strand_t strand) { zoeTrellis trellis; zoeFeatureVec exons; zoeFeature e1, e2, intron; int i, j, d; score_t pair_score; score_t *intron_score; zoeHash reported; /* init */ zoeSetTrellisMeter(0); /* quiet */ trellis = zoeNewTrellis(dna, hmm, NULL); exons = get_exons(trellis); intron = zoeNewFeature(Intron, 0, 0, '+', 0, 0, 0, 0, 0); reported = zoeNewHash(); /* precompute intron scores */ intron_score = malloc(trellis->dna->length * sizeof(score_t)); for (i = 0; i < PADDING; i++) intron_score[i] = 0; for (i = PADDING; i < trellis->dna->length; i++) { intron_score[i] = intron_score[i-1] + trellis->scanner[Int0]->score(trellis->scanner[Int0], i) - trellis->exp_score; } /* main loop */ for (i = 0; i < exons->size; i++) { e1 = exons->elem[i]; for (j = i+1; j < exons->size; j++) { e2 = exons->elem[j]; /* exon type */ if ((e1->label == Einit && e2->label == Einit) || (e1->label == Eterm) || (e1->label == Exon && e2->label == Einit)) continue; /* exon phase */ if ((e1->inc3 == 0 && e2->inc5 != 0) || (e1->inc3 == 1 && e2->inc5 != 2) || (e1->inc3 == 2 && e2->inc5 != 1)) continue; /* intron length */ intron->start = e1->end +1; intron->end = e2->start -1; d = intron->end - intron->start +1; if (d < MIN_INTRON_LENGTH) continue; if (d > MAX_INTRON_LENGTH) break; /* intron score */ intron->score = intron_score[intron->end] - intron_score[intron->start] + zoeScoreDuration(trellis->hmm->dmap[Int0], intron->end - intron->start +1); if (intron->score < MIN_INTRON_SCORE) continue; /* pair score */ pair_score = e1->score + e2->score + intron->score; if (pair_score < MIN_PAIR_SCORE) continue; /* output */ report_pair(trellis->dna, e1, e2, intron, strand, reported); } } fprintf(stderr, "%d exons found on %c strand\n", reported->keys->size, strand); /* clean up */ zoeDeleteFeature(intron); zoeDeleteHash(reported); zoeDeleteTrellis(trellis); zoeDeleteFeatureVec(exons); } /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char *argv[]) { zoeFile dna_file; zoeFastaFile fasta; zoeDNA dna, rc; zoeHMM hmm; /* command line */ zoeSetProgramName(argv[0]); zoeSetOption("-lcmask", 0); zoeSetOption("-min-intron", 1); zoeSetOption("-max-intron", 1); zoeSetOption("-intron-score", 1); zoeSetOption("-einit-length", 1); zoeSetOption("-eterm-length", 1); zoeSetOption("-exon-length", 1); zoeSetOption("-einit-score", 1); zoeSetOption("-eterm-score", 1); zoeSetOption("-exon-score", 1); zoeSetOption("-pair-score", 1); zoeSetOption("-flank-length", 1); zoeParseOptions(&argc, argv); if (argc != 3) { zoeE("%s", usage); exit(1); } /* options */ if (zoeOption("-min-intron")) MIN_INTRON_LENGTH = atoi(zoeOption("-min-intron")); if (zoeOption("-max-intron")) MAX_INTRON_LENGTH = atoi(zoeOption("-max-intron")); if (zoeOption("-einit-length")) MIN_EINIT_LENGTH = atoi(zoeOption("-einit-length")); if (zoeOption("-eterm-length")) MIN_ETERM_LENGTH = atoi(zoeOption("-eterm-length")); if (zoeOption("-exon-length")) MIN_EXON_LENGTH = atoi(zoeOption("-exon-length")); if (zoeOption("-intron-score")) MIN_INTRON_SCORE = atof(zoeOption("-intron-score")); if (zoeOption("-einit-score")) MIN_EINIT_SCORE = atof(zoeOption("-einit-score")); if (zoeOption("-eterm-score")) MIN_ETERM_SCORE = atof(zoeOption("-eterm-score")); if (zoeOption("-exon-score")) MIN_EXON_SCORE = atof(zoeOption("-exon-score")); if (zoeOption("-pair-score")) MIN_PAIR_SCORE = atof(zoeOption("-pair-score")); if (zoeOption("-flank-length")) FLANK_LENGTH = atoi(zoeOption("-flank-length")); /* HMM and FASTA */ ZOE = getenv("ZOE"); hmm = zoeGetHMM(argv[1]); dna_file = zoeOpenFile(argv[2]); fasta = zoeReadFastaFile(dna_file.stream); dna = zoeNewDNA(fasta->def, fasta->seq); zoeDeleteFastaFile(fasta); if (zoeOption("-lcmask")) zoeLCsmooth(dna, 10, 10,100); rc = zoeAntiDNA(">anti", dna); /* do it */ exon_pairs(dna, hmm, '+'); exon_pairs(rc, hmm, '-'); return 0; } snap-2010-07-28/DNA/0000755000175000017500000000000011576504144013343 5ustar moellermoellersnap-2010-07-28/DNA/worm.dna.gz0000644000175000017500000000601711424066010015421 0ustar moellermoeller?worm.dnaUM$;}z1@t]P@/̏ttgWUGƏÖ(׿ݚ~f|=9t~9S?9əsן/ 0zn:|t9>'ggϧj?gQqsYn\;j)hzY] 4~ްNJggJ3es^H;?L3=o[+{_cgvg=o`ef=7} niGz}} u˳cKBWTϊ3u)H,wk72$qX H[An|s*½ 3L@9b#^Wu&|"O Qtr 赃w,ݶ=FP8w^sA"ĘuP6v;l>7yX01a /D]C6YEVf}z.3YcH=՜'|Փ4OJ,΋ u.IsS"L0oM'L됷a{# ad3q;rw\E@oah-,A{Ydk&2 (T9^p+tU+5ΐ;'UL ",!>B fW kq'@ +u_dP4rg,D'i8 Q61\DqN"v#/B#(^\ $#| @?U.[8P(J;(' *uYA.3M@8)Pa( xzEqs+qNxjr:eMD*Pq!I`!=u96VB.1JmWpu &L5.ߖ*^^u0 b*k[Z F4CsB,`hǝY#BIX$F SN8 -]fHn vݓȥ`6 lp124zք0hhመ k@k&evlY/qtvaȝ&$D-F*#cG8*ŷ NtXj1Rq Pu e׈vіLsupFiuxn`R>_Im4rxRJ3 8Sn:rMʔ}KTqipѥ`=6wD WbbA1?upM/UP4RYRDGڲ  hqfbbDI)3;f'yrT)]ΠhB Q5E &!"Y1  \K7 (E^dm(R'%g*H]eECf*u$/86A'e5DGIns$̞$2 UF3{ӯǖީ5BG/a6(r} *+B{oS j07V(XC.6R;(mQGzvՌnwj *zcQ-|S.kAJ}l&=%h}|[1 S!a3g7$?{pg`Գt5eҕ9\ܥ6z\Л?vBd;UAčAxM Trj9:FΛݳ7zHcd80Y7 RQHgVw7"}~s&tBFx]!d ed wvAHGnd"#"Ҥ 52hSI%m~Shda3X+Q}7}4&UOvs76l`lDw[""fcfT㷡/םIDúwD6tHb;w;VѾ /T͂2&C#rQ{ڥ[*Եٷ[Yշoz4+V!Vmg75 R9{s"޷ewɇFe#@J0:?pݴĨH ~%thnLe7:MԃnrR_,~go+ un1hr8^LF^g'HNu$=?6z0k_e$%snap-2010-07-28/DNA/thale.dna.gz0000644000175000017500000000527111424066010015533 0ustar moellermoeller?thale.dnaUIH Du  ^/PG+EˮK8D|隩zKqvm?s]|s9g3b)[[Kp~F/~{~mv̺Z{0}b,I})BaAJ]==Li枥z ̭c3h3- :6&laJ.ze{6S3LߘW;T;|_$<#Gr%od D]Hj8e\.@[Y k/v PbHydsIqGr:^ Hز_ǐ \ߺY^EmSp2R\O֨spypm JbCē2(iL cc9f^D714W2Hu@;JG愺F <xg(g Vŀآ7^+"la.Zy3;c@AF p%;b57? Rcj?~1mXl(EJ o=!z!h1WvCf@.;w(^fg2|!X 9X`ų)T6/xl̺#D 1)][y\K.N`dOכuySK0wP{@fKĀüSQH!_taQX"1ޖSXBy**Bp&&MDoT7 CNZK gM삻ؖ8`Fuc\.1ʯiwb.8vN`<-?=0!>'͢EL/'q' Z*@ZT\Y㌥aIFFH"!@EmNi_XPMv> hJioWGwN )2^ɬZKix톑 kL]b+!NhkSw ,Ll+ g) \\ɤ$ BK6uN=YrY_C H(@)<ҰbT&S+88R8(B̹H CaT5:-8b>R` '[p~! ];7܋Ӧ"H6d"H W)L z}E=n#تA ՘N(Mb vȷܾ@N/J<f*Tv8ʚ7*꼥RXz-alE $ 8]J|^vS^c͚d;h5[m ggV[XmAI4Yz>;}枏 o #3IuQ0Xmni1UHY.f`$ pT*OG3ox3΅\Ю$Ǝ3%,iVQw6nf]p;,;)Kk:>9|x2M'}*FU5k1MܱȑԜ)`4)`x#վ@vAxI/`pFHqë:B1}İtKn`4z5%_\ _4cT (S\Kň݅Yw:*UxhFWJֽ!">9;_i{\Lmޛ}; z&cU&ܾݳM}X)JHK6ep4;M׵u ;=M!=mMMs+ZKD9MsUNGum4xDx_! "iYTrԋ-NEJD[ryf}lVî]:܆H-t+kFڜ4JIa5;dz4.dhh$Υn}dY֌otZ\(rTcӒ;ȁ68Mؕy)9mX<<ήwnz蒾1,L٬_9-yX 0~ @*8N1uOrŵ?8pEJju:i.%ܿd<pɛ*cat2"snap-2010-07-28/depend0000644000175000017500000000565211424066011014117 0ustar moellermoellerzoeAlignment.o: Zoe/zoeAlignment.c Zoe/zoeAlignment.h Zoe/zoeDNA.h \ Zoe/zoeFastaFile.h Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h zoeCDS.o: Zoe/zoeCDS.c Zoe/zoeCDS.h Zoe/zoeDNA.h Zoe/zoeFastaFile.h \ Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h Zoe/zoeFeatureTable.h zoeCounter.o: Zoe/zoeCounter.c Zoe/zoeCounter.h Zoe/zoeDNA.h \ Zoe/zoeFastaFile.h Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h \ Zoe/zoeMath.h Zoe/zoeModel.h zoeDNA.o: Zoe/zoeDNA.c Zoe/zoeDNA.h Zoe/zoeFastaFile.h Zoe/zoeTools.h \ Zoe/zoeProtein.h Zoe/zoeFeature.h zoeDistribution.o: Zoe/zoeDistribution.c Zoe/zoeDistribution.h \ Zoe/zoeMath.h Zoe/zoeTools.h zoeDuration.o: Zoe/zoeDuration.c Zoe/zoeDuration.h Zoe/zoeDistribution.h \ Zoe/zoeMath.h Zoe/zoeTools.h Zoe/zoeFeature.h zoeFastaFile.o: Zoe/zoeFastaFile.c Zoe/zoeFastaFile.h Zoe/zoeTools.h zoeFeature.o: Zoe/zoeFeature.c Zoe/zoeFeature.h Zoe/zoeTools.h zoeFeatureFactory.o: Zoe/zoeFeatureFactory.c Zoe/zoeFeatureFactory.h \ Zoe/zoeDNA.h Zoe/zoeFastaFile.h Zoe/zoeTools.h Zoe/zoeProtein.h \ Zoe/zoeFeature.h Zoe/zoeScanner.h Zoe/zoeMath.h Zoe/zoeModel.h \ Zoe/zoeFeatureTable.h Zoe/zoeCDS.h zoeFeatureTable.o: Zoe/zoeFeatureTable.c Zoe/zoeFeatureTable.h \ Zoe/zoeCDS.h Zoe/zoeDNA.h Zoe/zoeFastaFile.h Zoe/zoeTools.h \ Zoe/zoeProtein.h Zoe/zoeFeature.h zoeHMM.o: Zoe/zoeHMM.c Zoe/zoeHMM.h Zoe/zoeDuration.h \ Zoe/zoeDistribution.h Zoe/zoeMath.h Zoe/zoeTools.h Zoe/zoeFeature.h \ Zoe/zoeState.h Zoe/zoeModel.h Zoe/zoeDNA.h Zoe/zoeFastaFile.h \ Zoe/zoeProtein.h Zoe/zoePhasePref.h Zoe/zoeTransition.h zoeIsochore.o: Zoe/zoeIsochore.c Zoe/zoeHMM.h Zoe/zoeDuration.h \ Zoe/zoeDistribution.h Zoe/zoeMath.h Zoe/zoeTools.h Zoe/zoeFeature.h \ Zoe/zoeState.h Zoe/zoeModel.h Zoe/zoeDNA.h Zoe/zoeFastaFile.h \ Zoe/zoeProtein.h Zoe/zoePhasePref.h Zoe/zoeTransition.h \ Zoe/zoeIsochore.h zoeMath.o: Zoe/zoeMath.c Zoe/zoeMath.h Zoe/zoeTools.h zoeModel.o: Zoe/zoeModel.c Zoe/zoeModel.h Zoe/zoeDNA.h Zoe/zoeFastaFile.h \ Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h Zoe/zoeMath.h zoePhasePref.o: Zoe/zoePhasePref.c Zoe/zoePhasePref.h Zoe/zoeMath.h \ Zoe/zoeTools.h Zoe/zoeFeature.h zoeProtein.o: Zoe/zoeProtein.c Zoe/zoeProtein.h Zoe/zoeFastaFile.h \ Zoe/zoeTools.h zoeScanner.o: Zoe/zoeScanner.c Zoe/zoeScanner.h Zoe/zoeDNA.h \ Zoe/zoeFastaFile.h Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h \ Zoe/zoeMath.h Zoe/zoeModel.h zoeState.o: Zoe/zoeState.c Zoe/zoeState.h Zoe/zoeFeature.h Zoe/zoeTools.h zoeTools.o: Zoe/zoeTools.c Zoe/zoeTools.h zoeTransition.o: Zoe/zoeTransition.c Zoe/zoeTransition.h Zoe/zoeMath.h \ Zoe/zoeTools.h Zoe/zoeFeature.h zoeTrellis.o: Zoe/zoeTrellis.c Zoe/zoeTrellis.h Zoe/zoeCDS.h Zoe/zoeDNA.h \ Zoe/zoeFastaFile.h Zoe/zoeTools.h Zoe/zoeProtein.h Zoe/zoeFeature.h \ Zoe/zoeFeatureFactory.h Zoe/zoeScanner.h Zoe/zoeMath.h Zoe/zoeModel.h \ Zoe/zoeFeatureTable.h Zoe/zoeHMM.h Zoe/zoeDuration.h \ Zoe/zoeDistribution.h Zoe/zoeState.h Zoe/zoePhasePref.h \ Zoe/zoeTransition.h snap-2010-07-28/Makefile0000644000175000017500000000402211424066010014362 0ustar moellermoeller###################### # Makefile for SNAP # ###################### LIB = -lm INC = -IZoe OBJECTS = \ Zoe/zoeAlignment.o\ Zoe/zoeCDS.o\ Zoe/zoeCounter.o\ Zoe/zoeDNA.o\ Zoe/zoeDistribution.o\ Zoe/zoeDuration.o\ Zoe/zoeFastaFile.o\ Zoe/zoeFeature.o\ Zoe/zoeFeatureFactory.o\ Zoe/zoeFeatureTable.o\ Zoe/zoeHMM.o\ Zoe/zoeIsochore.o\ Zoe/zoeMath.o\ Zoe/zoeModel.o\ Zoe/zoePhasePref.o\ Zoe/zoeProtein.o\ Zoe/zoeScanner.o\ Zoe/zoeState.o\ Zoe/zoeTools.o\ Zoe/zoeTransition.o\ Zoe/zoeTrellis.o\ APP = snap SRC = snap.c OBJ = snap.o APP2 = fathom SRC2 = fathom.c OBJ2 = fathom.o APP3 = forge SRC3 = forge.c OBJ3 = forge.o APP4 = hmm-info SRC4 = hmm-info.c OBJ4 = hmm-info.o APP5 = exonpairs SRC5 = exonpairs.c OBJ5 = exonpairs.o DATE = $(shell date +\%Y-\%m-\%d) ########### # Targets # ########### default: make gcc $(APP): $(OBJ) $(OBJECTS) $(CC) -o $(APP) $(CFLAGS) $(OBJ) $(OBJECTS) $(LIB) $(APP2): $(OBJ2) $(OBJECTS) $(CC) -o $(APP2) $(CFLAGS) $(OBJ2) $(OBJECTS) $(LIB) $(APP3): $(OBJ3) $(OBJECTS) $(CC) -o $(APP3) $(CFLAGS) $(OBJ3) $(OBJECTS) $(LIB) $(APP4): $(OBJ4) $(OBJECTS) $(CC) -o $(APP4) $(CFLAGS) $(OBJ4) $(OBJECTS) $(LIB) $(APP5): $(OBJ5) $(OBJECTS) $(CC) -o $(APP5) $(CFLAGS) $(OBJ5) $(OBJECTS) $(LIB) clean: rm -f *.o $(APP) $(APP2) $(APP3) $(APP4) $(APP5) cd Zoe; make clean depend: $(OBJECTS:.o=.c) gcc $(INC) -MM $^ > $@ tar: rm -rf /tmp/$(APP) mkdir /tmp/$(APP) cp -r * /tmp/$(APP) cd /tmp/$(APP); make clean; rm -rf CVS */CVS cd /tmp; tar -zcvf $(APP)-$(DATE).tar.gz $(APP) rm -rf /tmp/$(APP) ################# # Architectures # ################# gcc: cd Zoe; make; make $(APP) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP2) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP3) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP4) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP5) CC="gcc" CFLAGS="-O2 -Wall -Werror" ################### # Inference Rules # ################### %.o: %.c $(CC) $(CFLAGS) $(INC) -c -o $@ $< ################ # Dependancies # ################ include depend snap-2010-07-28/hmm-info.c0000644000175000017500000000615111424066011014606 0ustar moellermoeller/*****************************************************************************\ hmm-info.c HMM information output utility Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" void modelInfo (const zoeHMM); void generalInfo (const zoeHMM); void exportDurations (const zoeHMM); /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char *argv[]) { zoeHMM hmm; /* set the program name */ zoeSetProgramName(argv[0]); zoeSetOption("-durations", 1); zoeSetOption("-general", 0); zoeSetOption("-models", 0); zoeParseOptions(&argc, argv); /* usage */ if (argc != 2) { zoeE("usage: %s \n", argv[0]); zoeM(stderr, 4, "commands:", " -models", " -general", " -durations " ); exit(1); } /* get HMM */ if ((hmm = zoeGetHMM(argv[1])) == NULL) zoeExit("error opening hmm file"); if (zoeOption("-models")) modelInfo(hmm); if (zoeOption("-general")) generalInfo(hmm); if (zoeOption("-durations")) exportDurations(hmm); zoeDeleteHMM(hmm); return 0; } void modelInfo (const zoeHMM hmm) { int i; for (i = 0; i < hmm->models; i++) { zoeWriteModel(stdout, hmm->model[i]); } } void generalInfo (const zoeHMM hmm) { int i; /* models */ for (i = 0; i < hmm->models; i++) { zoeWriteModelHeader(stdout, hmm->model[i]); } } void exportDurations (const zoeHMM hmm) { int label, i; char name[16]; int length; length = atoi(zoeOption("-durations")); /* should have done this simpler */ for (label = 0; label < zoeLABELS; label++) { if (hmm->dmap[label] == NULL) continue; switch (label) { case Int0: strcpy(name, "Intron"); break; case Int1: case Int1T: case Int2: case Int2TA: case Int2TG: continue; default: zoeLabel2Text(label, name); } zoeO("%s\t", name); } zoeO("\n"); for (i = 1; i < length; i++) { for (label = 0; label < zoeLABELS; label++) { if (hmm->dmap[label] == NULL) continue; if (label == Int1 || label == Int1T || label == Int2 || label == Int2TA || label == Int2TG) continue; if (i < hmm->smap[label]->min) { zoeO("0.000000\t"); } else { zoeO("%f\t", zoeScore2Float(zoeScoreDuration(hmm->dmap[label], i))); } } zoeO("\n"); } } snap-2010-07-28/HMM/0000755000175000017500000000000011576506665013374 5ustar moellermoellersnap-2010-07-28/HMM/At.hmm0000644000175000017500000013467611424066010014435 0ustar moellermoellerzoeHMM At 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.801902 Inter Esngl 0.198098 Inter ORF 1 Intron Eterm 0.206953 Intron Exon 0.793047 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.521739 0.276680 0.201581 0.693027 0.142007 0.164966 0.678571 0.170330 0.151099 0.714286 0.122807 0.162907 0.798611 0.201389 0.795635 0.204365 0.774451 0.225549 Einit 2 DEFINED 0 249 -9.931 -9.858 -9.788 -9.721 -9.657 -9.596 -9.537 -9.481 -9.426 -9.374 -9.324 -9.297 -9.271 -9.245 -9.219 -9.194 -9.170 -9.146 -9.122 -9.099 -9.076 -9.072 -9.068 -9.064 -9.061 -9.057 -9.053 -9.049 -9.046 -9.042 -9.038 -9.005 -8.973 -8.942 -8.911 -8.881 -8.851 -8.822 -8.794 -8.766 -8.739 -8.712 -8.686 -8.660 -8.634 -8.609 -8.585 -8.561 -8.537 -8.514 -8.491 -8.458 -8.426 -8.395 -8.365 -8.335 -8.306 -8.277 -8.249 -8.221 -8.194 -8.166 -8.138 -8.110 -8.083 -8.057 -8.031 -8.005 -7.980 -7.956 -7.931 -7.935 -7.938 -7.942 -7.945 -7.949 -7.952 -7.956 -7.959 -7.963 -7.966 -7.979 -7.991 -8.004 -8.016 -8.029 -8.042 -8.055 -8.068 -8.081 -8.095 -8.120 -8.146 -8.172 -8.199 -8.226 -8.253 -8.282 -8.310 -8.340 -8.370 -8.388 -8.407 -8.426 -8.446 -8.466 -8.486 -8.506 -8.527 -8.548 -8.569 -8.566 -8.563 -8.561 -8.558 -8.556 -8.553 -8.550 -8.548 -8.545 -8.542 -8.545 -8.548 -8.550 -8.553 -8.556 -8.558 -8.561 -8.563 -8.566 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.582 -8.596 -8.609 -8.623 -8.637 -8.651 -8.666 -8.680 -8.694 -8.709 -8.706 -8.703 -8.700 -8.697 -8.694 -8.691 -8.689 -8.686 -8.683 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.691 -8.703 -8.715 -8.727 -8.739 -8.751 -8.763 -8.775 -8.788 -8.800 -8.813 -8.825 -8.838 -8.851 -8.864 -8.877 -8.891 -8.904 -8.918 -8.931 -8.952 -8.973 -8.995 -9.016 -9.038 -9.061 -9.083 -9.106 -9.130 -9.154 -9.158 -9.162 -9.166 -9.170 -9.174 -9.178 -9.182 -9.186 -9.190 -9.194 -9.186 -9.178 -9.170 -9.162 -9.154 -9.146 -9.138 -9.130 -9.122 -9.114 -9.118 -9.122 -9.126 -9.130 -9.134 -9.138 -9.142 -9.146 -9.150 -9.154 -9.150 -9.146 -9.142 -9.138 -9.134 -9.130 -9.126 -9.122 -9.118 -9.114 -9.158 -9.203 -9.249 -9.297 -9.346 -9.398 -9.451 -9.506 -9.563 GEOMETRIC 250 -1 283 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.239 -10.173 -10.109 -10.048 -9.990 -9.934 -9.880 -9.828 -9.778 -9.729 -9.683 -9.643 -9.604 -9.566 -9.529 -9.493 -9.458 -9.424 -9.391 -9.358 -9.326 -9.295 -9.265 -9.235 -9.205 -9.177 -9.148 -9.121 -9.094 -9.067 -9.041 -9.023 -9.004 -8.987 -8.969 -8.951 -8.934 -8.917 -8.900 -8.883 -8.867 -8.851 -8.835 -8.819 -8.803 -8.787 -8.772 -8.757 -8.741 -8.726 -8.712 -8.680 -8.648 -8.618 -8.588 -8.558 -8.529 -8.501 -8.473 -8.446 -8.419 -8.405 -8.391 -8.377 -8.363 -8.349 -8.335 -8.322 -8.308 -8.295 -8.282 -8.265 -8.247 -8.230 -8.214 -8.197 -8.181 -8.165 -8.148 -8.133 -8.117 -8.103 -8.090 -8.077 -8.063 -8.050 -8.037 -8.024 -8.012 -7.999 -7.987 -7.990 -7.994 -7.997 -8.001 -8.004 -8.008 -8.012 -8.015 -8.019 -8.023 -8.045 -8.067 -8.090 -8.113 -8.137 -8.160 -8.185 -8.210 -8.235 -8.260 -8.262 -8.265 -8.267 -8.269 -8.271 -8.273 -8.275 -8.278 -8.280 -8.282 -8.293 -8.304 -8.315 -8.326 -8.338 -8.349 -8.361 -8.372 -8.384 -8.396 -8.422 -8.449 -8.476 -8.504 -8.532 -8.561 -8.590 -8.620 -8.651 -8.683 -8.674 -8.665 -8.657 -8.648 -8.640 -8.632 -8.623 -8.615 -8.607 -8.598 -8.609 -8.620 -8.632 -8.643 -8.654 -8.665 -8.677 -8.688 -8.700 -8.712 -8.738 -8.766 -8.793 -8.822 -8.851 -8.880 -8.910 -8.941 -8.972 -9.004 -8.997 -8.990 -8.983 -8.976 -8.969 -8.962 -8.955 -8.948 -8.941 -8.934 -8.931 -8.927 -8.924 -8.920 -8.917 -8.914 -8.910 -8.907 -8.903 -8.900 -8.897 -8.893 -8.890 -8.887 -8.883 -8.880 -8.877 -8.874 -8.870 -8.867 -8.860 -8.854 -8.847 -8.841 -8.835 -8.828 -8.822 -8.815 -8.809 -8.803 -8.812 -8.822 -8.831 -8.841 -8.851 -8.860 -8.870 -8.880 -8.890 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.917 -8.934 -8.951 -8.969 -8.987 -9.004 -9.023 -9.041 -9.060 -9.078 -9.105 -9.133 -9.160 -9.189 -9.218 -9.247 -9.278 -9.308 -9.340 GEOMETRIC 250 -1 280 Exon 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 146 ORF 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.304 -0.807 -0.836 0.708 0.139 -0.688 -0.707 0.736 0.068 -0.677 -0.754 0.793 0.132 -0.782 -0.731 0.782 0.108 -0.932 -0.558 0.781 0.064 -0.727 -0.758 0.815 0.086 -0.853 -0.790 0.853 -0.101 -0.758 -0.662 0.883 -0.230 -0.762 -0.603 0.926 -0.247 -0.819 -0.441 0.890 -0.313 -0.794 -0.600 0.970 -0.473 -0.790 -0.473 0.986 -0.381 -0.866 -0.654 1.034 -0.435 -0.857 -0.621 1.041 -0.403 -0.883 -0.640 1.042 -0.313 -0.879 -0.742 1.038 -0.425 -0.973 -0.500 1.027 -0.230 -0.853 -0.477 0.907 -0.284 -0.849 -0.684 1.001 -0.304 -0.861 -0.727 1.025 -0.318 -1.001 -0.537 1.006 -0.517 -0.918 -0.762 1.126 -0.640 -1.230 -1.321 1.340 0.086 -1.766 0.632 0.130 -2.225 1.429 -7.673 0.124 1.998 -9.258 -9.258 -9.258 -9.258 -9.258 1.998 -9.258 -0.049 -1.292 1.130 -1.197 -0.056 -0.762 -0.575 0.829 0.201 -0.807 -0.068 0.406 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.183 0.108 0.285 -0.280 0.249 0.098 -0.815 0.231 0.498 0.073 -0.497 -0.274 -0.852 0.357 0.387 -0.221 0.664 -0.853 0.124 -0.374 0.560 -1.016 -0.265 0.261 0.375 -0.429 -0.283 0.187 -0.460 0.290 -0.604 0.478 0.463 -0.768 -0.011 0.059 -0.085 -0.641 -1.029 0.945 0.644 -0.689 -0.511 0.157 -0.554 -0.383 0.124 0.549 . 0.993 . 1.007 0.251 -0.472 -0.882 0.629 . -0.258 1.043 0.142 -0.670 0.248 0.208 0.041 0.130 -0.126 0.197 -0.246 0.382 -0.426 -0.557 0.348 0.515 -0.355 -0.640 0.199 -0.630 -0.100 0.267 0.284 0.380 -0.344 -0.056 -0.076 0.320 -1.382 -0.131 0.541 -0.281 -0.700 -0.168 0.741 -0.951 0.389 -0.626 0.609 -0.040 -0.327 0.199 0.114 0.182 -0.198 -0.742 0.482 0.159 -0.500 -0.430 0.520 -0.690 -0.044 0.258 0.280 . 1.184 . 0.789 0.018 -0.449 -0.543 0.649 . 0.003 0.742 0.406 -0.814 0.186 0.256 0.136 0.332 -0.714 0.565 -0.616 0.225 -0.529 -0.486 0.510 0.547 -0.616 -0.078 -0.092 -0.663 -0.015 0.207 0.292 0.621 -1.644 0.334 -0.181 0.434 -1.241 -0.649 0.668 0.018 -1.037 -0.391 0.797 -0.596 -0.198 -0.452 0.796 0.352 -1.235 0.311 0.081 0.179 -0.986 -0.483 0.720 0.653 -0.957 -0.885 0.455 -1.156 -0.576 -0.109 0.966 . 0.877 . 1.114 0.308 -0.880 -0.836 0.730 . -0.750 0.969 0.535 -0.599 -0.100 -0.233 0.637 -0.078 -0.083 0.089 0.063 0.354 -0.464 -0.839 0.524 0.455 -0.121 -0.661 0.108 -0.512 0.077 0.179 0.153 0.007 -0.687 0.273 0.221 0.347 -1.284 -0.406 0.644 0.269 -0.700 -0.142 0.349 -0.791 0.308 -0.593 0.605 0.064 -0.875 -0.014 0.505 0.338 -0.980 -0.956 0.777 0.464 -0.912 -0.522 0.478 -0.745 -0.442 0.062 0.699 . 1.215 . 0.747 0.291 -0.500 -0.740 0.556 . -0.061 0.715 0.485 -0.931 0.398 0.279 -0.083 -0.002 -0.157 0.379 -0.314 0.363 -0.508 -0.479 0.371 0.524 -0.367 -0.292 -0.043 -0.732 0.059 0.603 -0.256 0.409 -0.670 0.185 -0.141 0.662 -1.871 0.058 0.142 0.093 -1.100 0.000 0.553 -0.829 0.014 -0.513 0.788 0.074 -0.979 0.434 0.123 0.205 -0.779 -0.936 0.801 0.629 -0.920 -0.245 0.113 -0.540 -0.558 0.169 0.593 . 0.963 . 1.036 0.481 -1.032 -0.609 0.546 . -0.745 1.192 0.162 -0.488 -0.006 0.351 0.022 0.223 -0.267 0.243 -0.289 0.035 0.279 -0.864 0.279 0.195 -0.127 -0.444 0.269 -0.695 0.003 -0.116 0.543 0.554 -0.253 -0.446 -0.061 0.573 -1.109 -0.524 0.436 -0.220 -0.408 -0.292 0.651 -0.483 0.227 -0.800 0.622 -0.219 -0.362 0.153 0.323 -0.335 0.400 -0.797 0.392 0.486 -0.676 -0.844 0.502 -1.175 0.389 -0.285 0.513 . 1.247 . 0.702 -0.228 0.100 -0.987 0.651 . 0.600 0.368 0.255 -0.635 0.293 -0.046 0.217 0.398 -0.982 0.241 -0.008 -0.110 -0.929 0.443 0.250 0.256 -0.380 -0.100 0.143 -0.687 -0.306 0.115 0.573 0.424 -1.317 0.383 -0.069 -0.015 -2.415 0.653 0.322 -0.164 -1.563 0.148 0.733 -0.747 -0.510 -0.940 1.125 -0.065 -1.307 0.539 0.248 -0.837 -1.422 0.775 0.440 0.652 -1.860 -0.708 0.624 -1.230 -1.197 0.232 0.973 . 0.636 . 1.291 -0.203 -1.399 0.133 0.727 . -0.733 1.111 0.309 -0.834 -0.525 0.228 0.654 0.309 -0.602 0.155 -0.017 0.122 -0.547 -0.916 0.763 0.301 -0.311 -0.156 0.090 -0.599 -0.167 0.180 0.397 0.232 -0.651 0.295 -0.056 0.220 -1.548 -0.414 0.801 -0.066 -0.716 -0.504 0.791 -0.721 0.139 -0.651 0.727 0.081 -1.105 0.170 0.436 0.101 -1.080 -1.013 0.970 0.443 -1.234 -1.086 0.802 -0.784 -0.645 -0.016 0.840 . 0.948 . 1.050 -0.024 -0.474 -1.042 0.856 . -0.019 0.409 0.753 -0.360 0.124 0.337 -0.204 0.126 0.136 -0.013 -0.289 0.478 -0.253 -1.126 0.389 0.710 -0.099 -0.796 -0.226 -0.857 0.504 0.213 -0.200 0.516 -0.702 0.152 -0.244 0.630 -1.023 -0.738 0.444 0.228 -0.901 -0.146 0.474 -0.412 -0.010 -0.850 0.766 0.179 -0.574 0.022 0.240 0.040 -0.522 -1.423 0.928 0.914 -0.895 -1.003 0.110 -0.569 -0.189 -0.189 0.652 . 1.112 . 0.879 0.512 -0.684 -0.727 0.430 . -0.170 0.859 0.376 -0.695 0.444 0.005 0.026 0.315 -0.229 0.107 -0.277 0.533 -0.034 -1.365 0.249 0.306 0.203 -0.870 0.092 -0.526 -0.050 -0.073 0.474 0.278 -0.292 -0.124 0.074 0.444 -0.457 -1.193 0.559 -0.594 -0.234 -0.193 0.689 -0.683 0.259 -0.969 0.740 0.157 -0.492 -0.067 0.286 -0.205 0.210 -0.712 0.449 0.236 -0.131 -1.102 0.529 -0.803 0.035 -0.403 0.719 . 1.036 . 0.963 0.037 -0.431 -0.763 0.716 . 0.516 0.380 0.344 -0.506 0.296 -0.066 0.155 0.421 -0.640 0.338 -0.404 0.255 -0.462 -0.562 0.489 0.658 -0.711 0.023 -0.332 -0.646 -0.050 0.116 0.391 0.669 -1.100 -0.060 -0.022 0.704 -1.903 -0.747 0.592 0.118 -1.637 -0.279 0.823 -0.524 -0.182 -0.524 0.789 0.347 -0.594 -0.222 0.273 0.392 -1.497 -1.030 0.883 1.038 -1.292 -1.624 0.279 -1.281 -0.267 -0.465 1.024 . 0.833 . 1.149 0.354 -0.907 -0.615 0.619 . -0.590 0.973 0.458 -0.424 -0.398 -0.250 0.727 0.306 0.086 -0.311 -0.159 0.115 -0.470 -0.725 0.669 0.291 -0.092 -0.852 0.361 -0.955 0.319 0.150 0.173 0.324 -0.308 -0.152 0.057 0.283 -0.766 -0.998 0.761 -0.106 -0.459 -0.563 0.737 -0.907 0.389 -1.074 0.751 0.199 -0.682 -0.146 0.406 0.058 -0.767 -0.977 0.898 0.417 -0.667 -1.013 0.622 -0.609 -0.651 -0.027 0.787 . 1.063 . 0.934 0.186 -0.488 -0.689 0.612 . 0.050 0.360 0.750 -0.216 0.079 0.192 -0.089 0.069 0.000 0.264 -0.415 0.284 0.061 -0.709 0.173 0.512 -0.104 -0.382 -0.191 -0.905 0.280 0.590 -0.422 0.531 -0.745 -0.012 -0.049 0.400 -1.324 -0.130 0.451 0.285 -0.668 -0.264 0.400 -0.213 -0.092 -0.429 0.542 0.101 -0.549 0.174 0.157 0.112 -0.594 -1.048 0.827 0.598 -0.604 -0.248 -0.019 -0.753 -0.157 0.150 0.485 . 1.068 . 0.928 0.295 -0.705 -0.336 0.452 . -0.004 0.893 0.197 -0.837 0.285 0.285 0.004 0.126 -0.206 0.286 -0.282 0.097 -0.148 -0.975 0.603 0.422 -0.182 -0.417 0.042 -0.623 0.325 0.008 0.127 0.361 -0.265 0.034 -0.219 0.274 -0.740 -0.835 0.707 -0.112 -0.621 -0.100 0.577 -1.041 0.796 -1.304 0.456 0.000 -0.308 -0.026 0.275 -0.430 0.188 -0.872 0.653 0.589 -0.803 -0.501 0.282 -1.084 0.460 -0.255 0.395 . 1.206 . 0.760 -0.013 -0.161 -1.161 0.738 . 0.334 0.245 0.637 -0.839 0.649 -0.027 -0.166 0.197 -0.703 0.493 -0.265 0.177 -0.629 -0.448 0.575 0.441 -0.592 0.001 -0.033 -0.511 -0.183 0.290 0.257 0.397 -1.358 0.530 -0.237 0.240 -1.744 -0.621 0.904 -0.358 -1.135 0.035 0.799 -0.790 -0.151 -0.561 0.882 0.178 -0.980 0.321 0.153 -0.285 -0.911 -0.412 0.923 0.717 -1.477 -0.559 0.399 -1.156 -0.684 0.320 0.748 . 0.796 . 1.179 0.086 -0.798 -0.341 0.654 . -0.742 0.860 0.667 -0.620 -0.078 0.159 0.363 0.152 -0.230 0.266 -0.263 -0.006 -0.059 -1.122 0.664 0.455 -0.347 -0.244 -0.002 -0.344 0.000 0.113 0.176 0.270 -0.616 0.246 -0.065 0.179 -0.892 -0.616 0.746 0.142 -0.419 -0.646 0.595 -0.931 0.217 -0.670 0.752 -0.054 -0.843 0.069 0.517 0.083 -0.842 -1.095 0.937 0.531 -0.936 -0.702 0.504 -0.928 -0.404 0.207 0.646 . 1.136 . 0.850 0.176 -0.469 -0.794 0.652 . -0.067 0.751 0.446 -0.573 0.383 0.404 -0.513 frame2 LUT 5 4 4 0 0.000 -0.543 -0.018 0.683 -0.472 0.253 -0.179 -0.020 -0.090 0.627 -0.245 0.005 -0.717 -0.523 -0.041 0.751 -0.623 0.530 -0.686 0.327 -0.556 0.514 -0.775 0.524 -0.865 0.360 -0.640 0.360 -0.339 -0.511 -0.194 0.611 -0.157 0.325 -0.586 0.497 -0.579 0.630 -0.374 -0.504 -0.035 0.816 -0.451 -0.132 -0.748 -0.285 -0.389 0.650 -0.239 -0.003 -0.616 0.491 -0.083 0.393 -0.396 -0.017 -0.092 0.226 -0.586 0.592 -0.607 -0.564 -0.029 0.834 -0.834 0.081 -0.106 0.564 -0.904 0.604 -0.423 -0.031 -0.405 0.686 -0.066 -0.869 -0.171 -0.413 0.059 0.490 -0.317 0.372 -0.242 0.248 -0.572 0.565 -1.392 0.537 -0.538 -0.032 -0.642 0.652 -0.305 -0.407 -0.251 0.651 -0.260 -0.026 -0.441 0.605 -0.395 0.238 -0.042 -0.042 -0.187 0.288 -0.345 -0.534 0.380 -0.341 -0.266 0.743 -0.504 0.274 -0.668 0.544 -0.506 0.415 -0.730 0.109 -0.022 0.515 -0.559 0.147 -0.348 -0.429 0.170 0.640 -0.800 -0.168 -0.794 1.007 -0.932 0.520 -0.473 0.065 -0.323 0.755 -0.496 -0.071 -0.620 -0.239 -0.439 0.685 -0.308 0.263 -0.918 0.661 -0.536 0.883 -1.300 0.190 -0.715 0.572 -1.211 0.487 -0.557 -0.217 -0.227 0.538 -0.264 0.410 -0.895 0.566 -0.614 0.349 -0.568 0.066 0.007 0.954 -0.816 -0.705 -0.183 -0.710 -0.111 0.578 -0.043 0.074 -0.643 0.582 -0.303 0.596 -0.877 -0.057 -0.024 0.552 -1.005 0.442 -0.563 -0.501 -0.087 0.655 -0.364 . . . . 0.573 -0.451 -0.222 -0.115 . . . . -0.477 -0.269 0.799 -0.490 0.312 -0.712 0.335 -0.172 0.415 -0.706 0.269 -0.237 0.497 -0.825 0.149 -0.127 -0.422 -0.053 0.404 -0.049 . . . . 0.585 -0.678 -0.138 -0.050 0.459 -0.416 0.307 -0.646 -0.545 -0.478 0.801 -0.226 -0.093 -0.175 0.653 -0.725 0.522 -0.570 -0.219 0.046 0.337 -0.476 0.355 -0.436 -0.538 -0.174 0.852 -0.690 -0.011 -0.634 0.678 -0.389 0.766 -0.616 -0.088 -0.502 0.696 -0.515 -0.048 -0.488 -0.440 -0.213 0.744 -0.463 0.350 -0.655 0.384 -0.349 0.679 -1.778 0.654 -0.906 0.303 -0.960 0.642 -0.532 -0.387 -0.080 0.568 -0.309 0.276 -1.074 0.758 -0.682 0.604 -0.447 -0.462 0.030 0.707 -0.293 -0.241 -0.504 -0.358 -0.381 0.746 -0.369 0.332 -0.820 0.237 -0.006 0.653 -0.635 -0.129 -0.203 0.296 -0.670 0.448 -0.360 -0.436 -0.263 0.869 -0.735 0.208 -0.587 0.648 -0.708 0.520 -0.230 0.022 -0.519 0.633 -0.029 -0.437 -0.452 -0.417 0.052 0.689 -0.732 0.676 -0.400 -0.055 -0.551 0.848 -1.447 0.397 -0.953 0.374 -0.821 0.345 -0.204 -0.173 -0.182 0.476 -0.249 -0.345 -0.417 0.689 -0.233 -0.017 0.336 -0.156 -0.232 0.588 -0.646 -0.424 0.154 -0.417 -0.074 0.759 -0.716 0.410 -0.764 0.538 -0.666 0.273 -0.192 -0.184 0.051 0.570 -0.553 0.204 -0.553 -0.341 0.002 0.602 -0.532 0.065 -0.903 0.842 -0.674 0.388 -0.732 0.554 -0.685 0.561 -0.374 -0.096 -0.291 -0.237 -0.324 0.711 -0.483 0.364 -0.717 0.634 -0.853 0.165 -2.063 1.077 -0.918 0.384 -1.013 0.595 -0.538 -0.248 -0.576 0.688 -0.190 0.342 -0.982 0.624 -0.545 -0.258 -1.130 0.923 -0.303 0.770 -0.855 -0.653 0.145 -0.474 -0.746 0.762 -0.017 0.141 -0.478 0.633 -0.671 0.245 -0.840 0.401 -0.095 0.505 -0.859 0.372 -0.444 -0.375 -0.422 0.737 -0.294 . . . . 0.560 -0.915 0.165 -0.194 . . . . -0.395 -0.769 0.864 -0.265 0.555 -0.663 0.212 -0.432 0.550 -0.865 0.254 -0.331 0.275 -0.591 0.334 -0.208 -0.397 -0.111 0.539 -0.214 . . . . 0.633 -0.575 -0.038 -0.315 0.516 -0.518 0.188 -0.450 -0.389 -0.503 0.611 0.006 0.207 -0.424 0.486 -0.514 0.460 -0.417 -0.565 0.263 0.485 -0.492 0.169 -0.387 -0.540 -0.648 1.042 -0.700 -0.258 -0.216 0.628 -0.401 0.772 -0.628 -0.228 -0.337 0.845 -0.167 -0.353 -0.917 -0.632 0.168 0.513 -0.315 0.435 -0.555 0.253 -0.366 0.802 -0.888 0.123 -0.672 0.439 -0.674 0.403 -0.525 -0.132 -0.088 0.337 -0.178 0.291 -0.627 0.424 -0.345 0.406 -0.675 -0.414 0.377 0.880 -0.355 -0.683 -0.406 -0.276 -0.317 0.427 0.039 0.280 -0.467 0.098 -0.013 0.588 -0.475 -0.108 -0.234 0.518 -0.482 0.274 -0.636 -0.436 0.162 0.584 -0.637 -0.015 -0.103 0.458 -0.503 0.466 -0.568 0.084 -0.179 0.641 0.161 -0.859 -0.373 -0.164 0.138 0.224 -0.253 0.240 0.046 0.055 -0.419 0.753 -0.921 0.211 -0.669 -0.068 -0.288 0.303 -0.010 -0.287 0.133 0.333 -0.278 0.085 -0.104 0.339 -0.426 0.319 0.046 -0.080 -0.369 0.292 0.218 -0.445 -0.188 -0.398 0.065 0.512 -0.379 0.260 -0.550 0.537 -0.580 0.343 -0.743 0.054 0.132 0.673 -0.363 -0.024 -0.634 -0.401 0.207 0.514 -0.598 -0.082 -0.745 0.877 -0.684 0.622 -0.476 -0.145 -0.257 0.742 -0.351 -0.058 -0.779 -0.182 -0.273 0.497 -0.186 0.529 -0.610 0.237 -0.466 0.809 -1.351 0.146 -0.416 0.599 -1.376 0.457 -0.459 -0.131 -0.267 0.394 -0.087 0.469 -0.715 0.322 -0.402 0.354 -0.693 -0.242 0.331 1.075 -0.501 -0.837 -0.674 -0.182 -0.050 0.095 0.117 0.169 -0.722 0.439 -0.129 0.632 -0.854 0.028 -0.189 0.684 -1.312 0.428 -0.630 -0.227 -0.188 0.324 0.023 . . . . 0.606 -0.515 0.012 -0.376 . . . . -0.320 -0.320 0.630 -0.233 0.392 -0.481 0.204 -0.287 0.694 -1.018 0.086 -0.274 0.206 -0.706 0.034 0.275 -0.446 0.116 0.201 0.047 . . . . 0.526 0.057 -0.322 -0.474 0.350 -0.278 0.225 -0.452 -0.156 -0.548 0.547 -0.063 0.084 -0.026 0.282 -0.431 0.426 -0.307 -0.574 0.234 0.432 -0.364 0.221 -0.499 -0.187 -0.084 0.516 -0.419 -0.271 -0.223 0.777 -0.735 0.463 -0.217 -0.157 -0.211 0.476 -0.329 0.150 -0.508 -0.278 -0.037 0.597 -0.540 0.405 -0.636 0.139 -0.103 0.382 -0.992 0.348 -0.117 0.472 -0.747 0.197 -0.199 -0.374 -0.082 0.474 -0.159 -0.079 -0.580 0.688 -0.371 0.245 -0.312 -0.361 0.300 0.633 -0.190 -0.266 -0.431 -0.138 -0.215 0.490 -0.277 0.143 -0.517 0.415 -0.212 0.435 -0.408 -0.034 -0.123 0.301 -0.596 0.471 -0.473 -0.177 -0.144 0.751 -0.922 0.124 -0.538 0.692 -0.723 0.550 -0.162 -0.251 -0.318 0.656 -0.179 -0.408 -0.344 -0.463 0.265 0.444 -0.488 0.309 -0.469 0.261 -0.251 0.581 -1.079 0.458 -0.607 0.218 -0.885 0.646 -0.453 -0.421 0.205 0.246 -0.128 0.187 -0.794 0.486 -0.178 0.126 0.216 -0.436 0.013 0.571 -0.773 -0.152 0.042 -0.254 0.007 0.541 -0.510 0.073 -0.333 0.459 -0.360 0.269 -0.288 -0.145 0.101 0.425 -0.395 0.076 -0.246 -0.562 0.255 0.574 -0.641 -0.011 -0.853 0.909 -0.793 0.504 -0.333 -0.174 -0.150 0.630 -0.439 -0.042 -0.427 -0.413 -0.203 0.736 -0.484 0.345 -0.900 0.532 -0.419 0.712 -0.898 -0.140 -0.123 0.271 -0.919 0.271 0.081 -0.344 -0.149 0.470 -0.112 0.310 -0.975 0.552 -0.348 0.234 -0.299 -0.148 0.149 0.828 -0.818 -0.359 -0.188 -0.447 -0.358 0.685 -0.187 0.230 -0.594 0.415 -0.267 0.358 -0.567 -0.163 0.202 0.604 -0.715 0.242 -0.538 -0.456 -0.066 0.642 -0.405 . . . . 0.425 -0.356 -0.102 -0.082 . . . . -0.501 -0.052 0.715 -0.540 0.318 -0.398 0.198 -0.240 0.492 -0.846 0.021 0.033 0.481 -0.961 -0.028 0.150 -0.663 0.109 0.166 0.225 . . . . 0.514 -0.407 -0.486 0.143 0.281 -0.704 0.482 -0.369 -0.417 -0.297 0.571 -0.072 -0.018 -0.363 0.595 -0.465 0.476 -0.331 -0.389 0.071 0.340 -0.570 0.400 -0.431 -0.218 -0.257 0.861 -1.039 frame2 LUT 5 4 4 0 0.000 0.196 0.068 -0.162 -0.132 0.165 0.121 -0.897 0.327 0.587 -0.172 -0.181 -0.457 -0.805 0.585 -0.191 0.073 0.783 -0.602 -0.804 0.068 0.421 -0.003 -0.481 -0.079 0.501 -0.256 -0.065 -0.337 -0.549 0.183 -0.516 0.567 0.957 -0.953 -0.576 -0.200 0.040 -0.332 -1.441 0.855 0.835 -0.270 -0.921 -0.220 -0.361 -0.029 -0.897 0.769 0.463 -0.456 -0.439 0.208 0.043 0.122 -1.425 0.593 0.306 -0.422 0.158 -0.149 -0.796 0.335 -0.753 0.650 0.370 0.014 -0.401 -0.089 0.137 0.209 -1.157 0.374 0.652 -0.122 -0.625 -0.215 -0.996 0.369 -0.581 0.622 0.577 -0.155 -1.128 0.205 0.148 -0.509 -0.455 0.545 0.183 -0.281 0.183 -0.141 -0.686 0.540 -1.511 0.654 0.201 -0.019 -0.539 0.233 0.235 0.127 -1.282 0.400 0.339 0.153 -0.690 0.005 -1.294 0.209 -0.763 0.885 0.429 -0.038 -0.380 -0.135 0.073 0.250 -0.967 0.319 0.402 -0.241 -0.099 -0.155 -0.518 0.373 -0.455 0.353 0.393 -0.479 0.091 -0.145 0.366 0.109 -0.775 0.068 0.547 -0.170 -0.225 -0.332 -1.174 0.439 -0.725 0.674 0.757 -0.713 -0.258 -0.212 0.490 -0.253 -0.253 -0.126 0.728 -0.507 0.043 -0.714 -0.785 0.290 -1.097 0.790 0.766 -0.916 -0.196 -0.158 0.357 -0.164 -1.275 0.499 0.708 -0.368 -0.722 -0.021 -1.072 -0.031 -0.745 0.963 0.464 -0.826 0.100 -0.023 0.082 0.152 -0.900 0.372 0.623 -0.780 0.055 -0.254 -0.836 0.303 -0.805 0.708 0.318 -0.151 -0.201 -0.026 -0.049 0.383 -1.062 0.323 0.530 -0.005 -0.505 -0.225 -0.776 0.239 -0.388 0.558 0.709 -0.379 -0.642 -0.065 0.361 0.074 -0.611 0.011 0.578 -0.239 -0.176 -0.368 -0.736 0.582 -1.063 0.510 0.674 -0.692 -0.382 0.026 0.380 -0.132 -1.458 0.508 0.697 -0.214 -0.445 -0.353 -0.854 0.241 -0.703 0.723 0.398 -0.279 -0.302 0.067 0.230 0.066 -1.179 0.421 0.424 -0.364 -0.120 -0.056 -0.697 0.347 -0.332 0.397 0.409 -0.119 -0.262 -0.124 0.862 -0.123 -1.302 -0.221 0.661 -0.288 -0.191 -0.465 -0.882 0.507 -0.119 0.158 0.634 -0.514 -0.526 0.074 0.671 -0.165 -0.165 -0.682 0.544 -0.268 -0.012 -0.473 -0.668 0.320 -0.452 0.476 0.689 -0.985 -0.209 0.024 0.350 -0.342 -1.672 0.698 0.704 -0.309 -0.673 -0.094 -0.716 0.055 -0.688 0.792 0.403 -0.539 -0.366 0.280 0.639 -0.162 -1.132 0.127 0.535 -0.778 -0.010 -0.037 -0.513 0.052 -0.543 0.656 0.480 -0.158 -0.213 -0.242 0.072 0.728 -1.276 -0.185 0.725 -0.231 -0.602 -0.258 -0.903 0.545 -0.671 0.462 0.783 -0.423 -1.456 0.226 0.371 -0.011 -0.596 0.074 0.647 -0.840 0.107 -0.326 -1.240 0.368 -1.240 0.897 0.184 -0.441 -0.217 0.341 -0.384 0.883 -1.296 -0.026 0.524 -0.278 -0.858 0.246 -0.948 0.379 -1.000 0.750 0.613 -0.313 -0.563 -0.015 0.080 0.509 -1.016 0.036 0.618 -0.506 -0.219 -0.149 -0.837 0.597 -0.882 0.469 0.302 -0.371 0.028 -0.037 0.112 -0.047 -0.339 0.216 0.401 0.284 -0.524 -0.383 -0.625 0.548 -0.895 0.435 0.792 -0.609 -0.403 -0.222 0.118 -1.248 0.391 0.241 0.177 -0.276 0.091 -0.032 -0.730 0.318 -0.936 0.703 0.485 -0.916 0.029 0.070 -0.315 -0.315 -0.315 0.668 0.763 -0.949 -1.000 0.363 -1.005 -0.313 -0.509 0.995 0.593 -0.509 -0.548 0.145 0.091 -0.121 -0.399 0.330 0.387 -0.556 0.085 -0.072 -0.585 0.031 -0.473 0.670 0.273 -0.464 0.078 0.016 0.388 -0.095 -0.882 0.278 0.582 0.038 -0.585 -0.305 -1.122 0.548 -0.224 0.289 0.744 -0.308 -0.799 -0.085 0.176 -0.308 -0.066 0.148 0.493 -0.228 -0.228 -0.178 -0.795 0.541 -1.119 0.593 0.665 -1.075 -0.212 0.105 0.495 -0.476 -1.142 0.505 0.698 -0.327 -0.729 -0.033 -0.787 -0.079 -1.050 0.993 0.422 -0.534 -0.175 0.116 0.336 -0.146 -1.297 0.513 0.568 -0.311 -0.331 -0.126 -0.663 0.186 -0.452 0.585 0.394 -0.085 -0.357 -0.055 0.418 -0.116 -1.093 0.348 0.838 -0.219 -0.437 -0.702 -0.978 0.668 -0.631 0.332 0.616 -0.474 -0.723 0.191 0.427 0.028 -0.573 -0.053 0.793 -0.388 -0.325 -0.507 -0.553 0.239 -0.585 0.557 0.752 -0.903 -0.471 0.084 0.171 -0.523 -1.499 0.868 1.075 -0.296 -1.535 -0.448 -0.384 -0.254 -0.940 0.906 0.401 -0.574 -0.646 0.453 0.195 0.086 -1.162 0.430 0.708 -0.452 -0.232 -0.352 -0.742 0.267 -0.736 0.677 0.454 -0.310 -0.326 0.037 0.320 0.030 -1.031 0.312 0.474 0.312 -0.585 -0.509 -0.892 0.527 -1.052 0.621 0.524 -0.310 -1.464 0.478 -0.060 -0.483 -0.388 0.642 -0.094 0.016 0.051 0.023 -1.027 0.567 -1.755 0.792 0.333 -0.444 -0.358 0.293 0.308 -0.096 -1.143 0.458 0.287 0.127 -1.232 0.335 -0.839 0.009 -1.106 0.978 0.531 -0.422 -0.289 -0.014 0.221 -0.120 -0.846 0.442 0.319 0.084 -0.372 -0.121 -0.852 0.546 -0.792 0.494 0.357 -0.292 -0.045 -0.100 0.441 0.125 -1.021 0.083 0.496 -0.173 -0.036 -0.459 -0.803 0.177 -0.573 0.699 0.855 -0.735 -0.720 -0.024 0.690 -0.745 -0.196 -0.125 0.410 -1.053 0.360 -0.143 -0.658 0.407 -0.743 0.529 0.821 -0.878 -0.536 -0.001 0.260 -0.635 -0.976 0.722 0.902 -0.533 -1.068 -0.054 -0.966 -0.074 -1.191 1.071 0.548 -0.448 -0.481 0.123 0.274 -0.007 -0.837 0.305 0.242 -0.581 0.369 -0.221 -0.662 0.221 -0.737 0.680 0.440 -0.131 -0.553 0.068 0.066 0.541 -1.749 0.264 0.605 0.166 -0.702 -0.429 -1.167 0.721 -0.856 0.437 0.551 -0.135 -0.989 0.164 0.196 0.128 -0.560 0.116 0.473 -0.109 -0.400 -0.109 -0.983 0.678 -1.172 0.536 0.654 -0.640 -0.600 0.171 0.171 -0.066 -1.376 0.617 0.778 -0.235 -1.110 -0.040 -0.733 -0.081 -0.971 0.958 0.539 -0.293 -0.435 -0.012 0.248 0.179 -1.261 0.337 0.533 -0.371 -0.268 -0.075 -0.802 0.503 -0.576 0.421 . . . . . . . . . . . . . . . . 0.603 -0.351 -0.439 -0.060 0.425 -0.002 -0.597 -0.002 0.594 -0.205 -0.087 -0.553 -0.534 0.135 -0.901 0.745 . . . . . . . . . . . . . . . . 0.432 -0.665 -0.149 0.162 -0.011 0.399 -1.411 0.393 0.529 -0.514 0.033 -0.263 -0.463 -0.098 -0.543 0.726 0.384 -0.319 0.025 -0.191 0.185 0.283 -0.974 0.185 0.564 -0.042 -0.266 -0.476 -1.354 0.894 -0.804 0.236 0.632 -0.185 -1.178 0.175 -0.105 -0.213 -0.392 0.531 0.483 -0.421 0.142 -0.410 -1.600 0.959 -1.907 0.546 0.477 -0.710 -0.299 0.244 0.148 0.148 -1.174 0.424 0.628 -0.651 -0.522 0.165 -1.131 0.587 -1.109 0.658 0.428 -0.263 -0.360 0.060 0.123 0.186 -1.195 0.419 0.385 -0.148 0.014 -0.356 -1.104 0.913 -0.910 0.164 . . . . . . . . . . . . . . . . 0.806 -0.973 -0.324 -0.084 0.435 -0.071 -0.203 -0.273 0.605 -0.541 -0.159 -0.159 -0.831 0.327 -0.698 0.649 0.581 -0.642 -0.109 -0.096 0.287 -0.110 -1.086 0.467 0.583 -0.272 -0.303 -0.212 -0.888 0.081 -0.574 0.791 0.468 -0.770 -0.136 0.164 0.042 0.231 -0.747 0.264 0.424 -0.576 0.135 -0.170 -1.042 0.100 -0.471 0.784 0.446 0.021 -0.249 -0.356 -0.046 0.558 -1.214 0.173 0.453 0.247 -0.216 -0.778 -1.127 0.821 -0.620 0.169 0.549 -0.245 -0.546 0.011 0.275 0.068 -0.705 0.175 0.646 -0.370 -0.403 -0.143 -1.006 0.311 -0.717 0.726 0.596 -0.673 -0.338 0.098 0.255 -0.022 -1.587 0.574 0.610 -0.372 -0.471 -0.030 -1.013 0.158 -0.949 0.903 0.580 -0.623 -0.292 0.055 0.205 -0.039 -1.284 0.550 0.403 -0.386 0.025 -0.161 -0.771 0.396 -0.314 0.372 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.473 0.473 -0.457 -1.015 1.359 -1.181 -1.530 -0.625 -1.431 -2.991 1.649 -1.444 -9.258 -9.258 1.998 -9.258 -9.258 -9.258 -9.258 1.998 1.381 -2.258 -1.098 -0.477 1.147 -0.977 -2.292 0.102 -0.247 -1.406 1.024 -0.422 -0.086 -0.840 -1.247 1.055 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.749 -0.623 -0.654 0.048 0.610 -0.315 -1.259 0.325 0.614 -0.650 -0.682 0.273 0.201 -0.406 -0.452 0.448 0.699 -0.629 -0.825 0.221 0.652 -0.395 -0.705 0.076 0.568 -0.901 -0.468 0.332 0.095 -0.391 -0.700 0.636 0.794 -0.969 -0.437 0.025 0.335 -0.414 -1.771 0.762 0.397 -1.006 -0.813 0.692 0.084 -0.633 -0.436 0.638 0.600 -0.919 -0.786 0.459 0.481 -0.658 -1.196 0.617 0.330 -0.947 -0.376 0.540 0.055 -0.664 -0.463 0.683 0.831 -0.734 -0.635 -0.035 0.836 -0.922 -0.958 0.230 0.658 -0.760 -0.688 0.277 0.142 -0.714 -0.273 0.545 0.742 -0.512 -1.095 0.212 0.643 -0.791 -1.230 0.520 0.320 -1.090 -0.137 0.457 -0.001 -0.244 -0.772 0.651 0.564 -0.578 -0.445 0.160 0.429 -0.358 -0.597 0.278 0.260 -0.440 -0.740 0.553 -0.054 -0.657 -0.065 0.533 0.550 -0.691 -0.631 0.346 0.271 -0.816 -1.078 0.809 0.466 -0.857 -0.740 0.554 -0.226 -0.571 -0.248 0.704 0.742 -0.968 -0.180 -0.100 0.587 -0.552 -0.980 0.389 0.922 -0.986 -0.713 -0.015 0.019 -0.600 -0.492 0.693 0.675 -1.017 -0.574 0.307 0.581 -0.404 -0.917 0.286 0.437 -0.984 -0.545 0.541 -0.009 -0.395 -0.524 0.633 0.676 -1.048 -0.379 0.201 0.310 -0.261 -1.244 0.589 0.308 -0.994 -0.636 0.693 0.468 -0.982 -0.666 0.566 0.506 -0.865 -0.367 0.328 0.486 -0.722 -1.209 0.642 0.495 -1.473 -0.287 0.497 -0.224 -0.811 -0.460 0.885 0.663 -0.769 -0.786 0.322 0.684 -0.801 -1.168 0.458 0.546 -0.793 -0.925 0.522 0.501 -0.745 -0.436 0.321 0.520 -0.688 -0.769 0.442 0.738 -0.714 -1.055 0.312 0.459 -0.953 -0.477 0.476 -0.192 -0.100 -0.575 0.604 0.476 -1.005 -0.651 0.560 0.728 -0.926 -1.394 0.523 0.318 -0.891 -0.480 0.582 0.046 -0.885 -0.245 0.662 0.315 -0.739 -0.398 0.483 0.416 -0.750 -1.075 0.675 0.347 -0.828 -0.475 0.531 -0.258 -0.557 -0.221 0.701 0.715 -0.629 -0.744 0.157 0.600 -0.583 -0.967 0.384 0.460 -0.789 -0.613 0.477 0.050 -0.366 -0.471 0.553 0.500 -0.315 -0.988 0.353 0.858 -1.114 -0.715 0.159 0.311 -0.771 -0.787 0.672 -0.042 -0.322 -0.585 0.644 0.480 -1.100 -0.029 0.213 0.273 -0.577 -1.249 0.766 -0.230 -1.117 -1.372 1.202 -0.051 -0.698 -0.469 0.762 0.439 -0.852 -0.872 0.626 0.599 -1.078 -1.123 0.634 0.278 -0.806 -0.654 0.660 -0.194 -0.632 -0.327 0.752 0.858 -0.666 -0.990 0.076 0.469 -0.254 -0.975 0.343 0.518 -0.609 -0.650 0.350 0.035 -0.418 -0.531 0.619 0.719 -0.533 -1.469 0.380 0.740 -0.600 -1.695 0.445 0.385 -0.503 -0.553 0.385 0.037 -0.287 -0.900 0.695 0.379 -0.316 -0.639 0.326 0.294 0.148 -0.881 0.167 0.324 -0.343 -1.154 0.595 0.040 -0.363 -0.639 0.634 0.667 -0.803 -0.635 0.257 0.086 -0.455 -1.362 0.864 0.474 -0.707 -0.559 0.401 -0.318 -0.360 -0.544 0.793 0.615 -0.806 -0.614 0.314 0.369 -0.423 -0.168 0.102 0.587 -0.836 -0.534 0.319 -0.190 -0.289 -0.473 0.664 0.272 -0.716 -0.290 0.450 0.507 -1.389 0.164 0.107 -0.052 -0.528 -0.467 0.694 -0.204 -0.566 -0.382 0.756 0.434 -0.995 -0.142 0.311 -0.004 -0.500 -0.013 0.384 0.354 -0.906 -1.125 0.790 -0.159 -0.718 -0.291 0.748 0.456 -0.771 -0.446 0.388 0.168 -0.854 -0.317 0.605 0.365 -1.055 -0.356 0.536 -0.158 -1.111 -0.325 0.882 0.600 -0.791 -0.867 0.441 0.511 -0.705 -1.153 0.596 0.384 -0.735 -0.754 0.586 0.266 -0.539 -0.394 0.431 0.498 -0.474 -0.778 0.361 0.489 -0.772 -0.784 0.516 0.458 -0.844 -0.590 0.490 -0.556 0.280 -0.546 0.507 0.507 -1.044 -0.614 0.526 0.556 -0.969 -1.446 0.724 0.222 -0.950 -0.790 0.797 -0.190 -0.811 -0.434 0.859 0.421 -0.561 -0.624 0.416 0.091 -0.682 -1.522 0.974 0.271 -0.703 -0.674 0.635 -0.369 -0.374 -0.327 0.729 0.625 -0.448 -0.638 0.113 0.582 -0.286 -1.240 0.333 0.853 -0.658 -0.821 -0.008 -0.089 -0.143 -0.533 0.549 0.664 -0.526 -0.855 0.225 0.735 -0.512 -0.949 0.159 0.723 -0.967 -0.724 0.302 -0.102 -0.306 -0.636 0.693 0.504 -1.002 -0.072 0.177 0.274 -0.631 -1.609 0.862 0.497 -0.955 -0.866 0.608 -0.084 -0.624 -0.489 0.761 0.398 -0.748 -0.770 0.586 0.402 -0.571 -1.078 0.616 0.589 -0.822 -0.518 0.301 -0.221 -0.349 -0.415 0.685 0.687 -0.644 -0.615 0.134 0.681 -0.509 -1.075 0.286 0.557 -0.452 -0.406 0.061 -0.020 -0.396 -0.261 0.505 0.573 -0.262 -0.976 0.226 1.088 -1.247 -1.612 0.170 0.094 -0.468 -0.293 0.479 -0.050 -0.285 -0.854 0.731 0.335 -0.488 -0.488 0.393 0.334 -0.180 -0.447 0.168 0.228 -0.285 -0.668 0.463 -0.191 -0.639 -0.251 0.715 0.462 -0.402 -0.522 0.226 0.271 -0.674 -1.208 0.794 0.482 -0.321 -0.642 0.216 -0.313 -0.289 -0.428 0.708 0.673 -0.851 -0.365 0.104 0.546 -0.308 -0.988 0.296 0.667 -0.855 -0.355 0.107 -0.136 -0.311 -0.598 0.699 0.489 -0.824 -0.274 0.269 0.303 0.014 -0.854 0.268 0.460 -1.117 -0.177 0.355 -0.157 -0.366 -0.665 0.763 0.633 -0.775 -0.664 0.302 0.182 0.214 -1.832 0.511 0.418 -1.234 -0.488 0.609 -0.170 -0.828 -0.823 0.987 0.681 -0.829 -0.805 0.335 0.415 -0.561 -0.932 0.551 0.482 -1.080 -0.265 0.377 -0.294 -0.735 -0.733 0.987 0.458 -0.655 -0.353 0.273 0.547 -0.693 -0.878 0.460 0.466 -0.662 -0.799 0.498 0.265 -0.607 -0.266 0.389 0.496 -0.410 -0.883 0.373 0.621 -0.488 -1.153 0.377 0.145 -0.766 -0.440 0.649 -0.371 -0.064 -0.674 0.717 0.456 -0.884 -0.362 0.388 0.505 -0.643 -1.187 0.586 0.218 -0.708 -0.334 0.518 -0.128 -0.953 -0.080 0.698 0.260 -0.459 -0.442 0.421 0.247 -0.737 -1.117 0.809 0.255 -0.791 -0.412 0.563 -0.355 -0.402 -0.238 0.690 0.636 -0.594 -0.648 0.196 0.524 -0.400 -1.231 0.463 0.519 -0.563 -0.727 0.363 0.129 -0.506 -0.496 0.578 0.458 -0.653 -0.747 0.480 0.737 -0.663 -1.155 0.325 0.380 -0.968 -0.475 0.553 0.086 -0.488 -0.663 0.672 0.446 -0.876 -0.361 0.394 0.188 -0.612 -1.696 0.924 0.283 -0.677 -0.275 0.413 0.019 -0.717 -0.549 0.761 0.196 -0.928 -0.832 0.822 0.407 -0.798 -1.259 0.749 0.236 -0.798 -0.576 0.657 -0.051 -0.737 -0.434 0.761 0.639 -0.670 -0.715 0.269 0.507 -0.542 -1.240 0.555 0.425 -0.767 -0.395 0.389 -0.025 -0.229 -0.423 0.504 0.466 -0.386 -1.050 0.454 0.498 -0.537 -1.250 0.563 0.314 -0.962 -0.169 0.437 -0.483 0.054 -0.931 0.784 0.475 -0.914 -0.598 0.504 0.174 -0.109 -1.174 0.586 0.396 -0.858 -0.822 0.648 -0.160 -0.167 -0.621 0.645 0.364 -0.650 -0.603 0.503 -0.047 -0.729 -1.546 1.061 0.310 -0.763 -0.738 0.652 -0.430 -0.001 -0.542 0.652 0.586 -0.908 -0.501 0.332 0.447 -0.560 -1.213 0.611 0.574 -0.852 -0.697 0.423 -0.172 -0.532 -0.331 0.701 0.282 -1.340 0.056 0.432 0.524 -0.755 -1.115 0.592 0.322 -1.048 -0.541 0.659 -0.176 -0.590 -0.736 0.887 0.459 -1.031 -0.561 0.544 0.301 -0.510 -1.369 0.748 0.231 -0.498 -0.619 0.553 -0.205 -0.779 -0.331 0.811 0.409 -0.957 -0.408 0.489 0.303 -0.909 -1.009 0.796 0.279 -1.210 -0.581 0.754 -0.400 -0.809 -0.269 0.881 0.531 -0.735 -0.668 0.406 0.482 -0.667 -1.212 0.624 0.334 -0.761 -0.555 0.554 0.077 -0.586 -0.376 0.593 0.356 -0.562 -0.598 0.466 0.353 -0.534 -1.217 0.680 0.473 -1.148 -0.736 0.642 -0.523 -0.133 -0.730 0.839 0.356 -0.913 -0.606 0.616 0.501 -0.867 -1.409 0.731 0.102 -0.877 -0.572 0.773 -0.225 -0.796 -0.356 0.838 0.249 -0.660 -0.428 0.522 0.149 -0.660 -1.270 0.882 0.156 -0.884 -0.282 0.605 -0.429 -0.503 -0.202 0.750 Intron LUT 5 4 4 0 0.000 0.439 -0.446 -0.612 0.328 0.529 -0.583 -1.678 0.657 0.238 -0.759 -0.363 0.538 -0.240 -0.354 -0.180 0.573 0.419 -0.752 -0.524 0.458 0.544 -0.661 -0.998 0.495 0.446 -1.058 -0.669 0.612 -0.160 -0.531 -0.473 0.759 0.640 -1.054 -0.509 0.330 0.209 -0.987 -2.222 1.087 -0.322 -1.562 -1.388 1.310 0.072 -0.824 -0.505 0.748 0.262 -0.757 -0.479 0.577 0.335 -0.869 -1.467 0.871 0.115 -0.683 -0.453 0.645 -0.323 -0.595 -0.267 0.772 0.530 -0.780 -0.443 0.309 0.797 -1.076 -1.715 0.569 0.207 -1.316 0.214 0.361 -0.090 -0.750 -0.283 0.717 0.498 -0.656 -0.863 0.489 0.225 -0.862 -1.238 0.893 0.214 -1.037 -0.167 0.548 -0.114 -0.605 -0.416 0.739 0.524 -1.011 -0.496 0.440 0.372 -0.766 -1.409 0.800 -0.413 -1.139 -0.380 1.019 -0.040 -1.112 -0.322 0.819 0.546 -0.782 -0.588 0.371 0.260 -1.132 -1.689 1.026 0.481 -0.918 -0.750 0.566 -0.305 -0.625 -0.173 0.727 0.466 -0.636 -0.422 0.297 0.376 -0.589 -2.069 0.847 0.480 -0.955 -0.381 0.403 -0.137 -0.827 -0.439 0.840 0.357 -1.196 -0.394 0.606 0.639 -1.197 -1.519 0.729 0.240 -1.219 -0.827 0.868 -0.067 -0.408 -0.495 0.661 0.531 -1.049 -0.646 0.519 0.250 -1.048 -1.303 0.942 0.061 -1.277 -0.862 0.996 0.750 -1.306 -0.948 0.481 0.453 -1.142 -0.418 0.515 0.276 -0.879 -1.612 0.940 0.566 -1.380 -0.689 0.600 -0.313 -0.782 -0.534 0.943 0.362 -0.545 -0.666 0.484 0.573 -0.839 -1.624 0.704 0.426 -0.765 -0.976 0.641 0.351 -0.704 -0.247 0.342 0.255 -0.743 -0.522 0.597 0.589 -0.675 -1.250 0.535 0.370 -1.105 -0.437 0.589 -0.302 -0.255 -0.445 0.692 0.345 -1.144 -0.698 0.732 0.770 -1.199 -1.840 0.659 0.109 -0.903 -0.943 0.900 -0.228 -0.920 -0.257 0.832 0.051 -0.690 -0.155 0.532 0.333 -0.871 -1.412 0.862 0.278 -0.669 -0.606 0.587 -0.397 -0.480 -0.084 0.660 0.403 -0.593 -0.580 0.429 0.422 -0.661 -1.479 0.739 0.120 -0.931 -0.131 0.561 -0.144 -0.522 -0.194 0.608 0.142 -0.592 -0.438 0.580 0.649 -0.823 -1.506 0.599 0.365 -0.979 -0.550 0.606 -0.212 -0.480 -0.340 0.704 0.329 -1.190 -0.129 0.476 0.078 -1.349 -1.594 1.151 -1.109 -2.093 -2.125 1.619 -0.075 -0.919 -0.441 0.836 0.297 -1.028 -0.721 0.744 0.420 -1.061 -1.700 0.907 0.184 -0.727 -0.594 0.676 -0.419 -0.629 -0.209 0.799 0.633 -0.609 -0.819 0.295 0.559 -0.458 -1.833 0.602 0.072 -1.030 0.268 0.328 -0.013 -0.634 -0.364 0.667 0.228 -0.396 -0.981 0.643 0.474 -0.686 -2.271 0.834 0.037 -1.170 -0.783 0.963 -0.245 -0.501 -0.529 0.813 0.135 -0.865 -0.246 0.594 0.664 -0.558 -1.728 0.520 0.251 -1.304 -0.719 0.846 0.237 -0.794 -0.563 0.648 0.535 -0.917 -0.618 0.454 0.228 -0.834 -1.819 0.989 0.345 -0.621 -0.691 0.546 -0.319 -0.502 -0.507 0.839 0.499 -0.874 -1.036 0.636 0.662 -0.767 -1.380 0.532 0.043 -0.832 -0.015 0.504 -0.240 -0.482 -0.454 0.772 -0.013 -1.013 0.209 0.441 0.386 -1.658 -1.073 0.927 0.219 -0.974 -0.459 0.678 0.040 -0.831 -0.345 0.698 0.484 -1.176 -0.498 0.537 0.140 -1.807 -0.807 1.029 -0.112 -1.615 -1.112 1.193 0.386 -1.322 -0.791 0.779 0.644 -1.041 -0.573 0.355 0.200 -0.616 -1.747 0.927 0.475 -1.085 -0.670 0.595 -0.359 -1.118 -0.335 0.976 0.325 -0.644 -0.659 0.560 0.479 -1.041 -1.562 0.833 0.150 -0.695 -0.643 0.707 0.079 -0.534 -0.082 0.388 0.287 -0.539 -0.647 0.539 0.426 -0.947 -1.391 0.812 0.377 -1.031 -0.428 0.554 -0.544 -0.071 -0.209 0.582 0.451 -1.136 -0.701 0.644 0.701 -1.228 -1.813 0.734 0.095 -1.144 -1.000 0.985 -0.294 -1.079 -0.431 0.978 0.207 -0.477 -0.506 0.509 0.032 -0.713 -2.005 1.083 0.192 -0.638 -0.759 0.700 -0.436 -0.383 -0.258 0.730 0.316 -0.312 -0.778 0.450 0.466 -0.467 -1.623 0.651 0.284 -0.703 -0.431 0.513 -0.386 -0.198 -0.351 0.659 0.259 -0.715 -0.569 0.604 0.639 -0.845 -1.601 0.639 0.520 -0.850 -0.680 0.472 -0.272 -0.452 -0.420 0.760 0.448 -0.978 -0.563 0.537 0.348 -1.106 -2.338 1.046 -0.177 -1.375 -1.499 1.249 -0.055 -0.789 -0.624 0.856 0.135 -0.604 -0.592 0.660 0.381 -0.849 -1.358 0.810 0.459 -0.750 -0.555 0.433 -0.407 -0.418 -0.333 0.769 0.452 -0.806 -0.618 0.494 0.688 -1.090 -1.696 0.688 0.095 -0.831 0.157 0.328 -0.278 -0.331 -0.331 0.665 0.510 -0.716 -0.851 0.499 0.348 -0.874 -1.585 0.886 -0.120 -0.396 -0.837 0.816 -0.372 -0.480 -0.668 0.911 0.018 -0.696 -0.130 0.543 0.650 -0.496 -2.719 0.650 0.000 -0.954 -0.867 0.953 0.158 -0.939 -0.823 0.846 0.316 -0.438 -0.414 0.341 0.305 -1.051 -1.489 0.945 0.445 -0.515 -0.724 0.415 -0.235 -0.442 -0.355 0.707 0.350 -0.698 -0.622 0.545 0.350 -0.664 -1.221 0.736 0.382 -1.096 -0.411 0.563 -0.318 -0.472 -0.495 0.821 -0.070 -1.333 0.216 0.574 0.620 -1.538 -1.238 0.762 -0.213 -0.585 -0.350 0.754 -0.256 -0.384 -0.594 0.794 0.504 -0.921 -0.895 0.600 0.309 -0.632 -1.276 0.768 0.304 -1.598 -0.354 0.724 0.226 -1.546 -0.672 0.895 0.757 -0.772 -1.137 0.344 0.422 -0.932 -1.651 0.862 0.598 -1.129 -0.707 0.502 -0.249 -0.799 -0.778 1.001 0.206 -0.742 0.027 0.298 0.335 -0.723 -1.072 0.729 0.366 -0.536 -0.937 0.584 0.189 -0.703 -0.030 0.341 0.161 -0.513 -0.529 0.574 0.382 -0.413 -1.700 0.712 0.100 -0.844 -0.322 0.652 -0.541 -0.208 -0.500 0.799 0.278 -1.103 -0.230 0.556 0.691 -1.139 -1.831 0.723 0.152 -0.862 -0.477 0.696 -0.245 -1.124 -0.140 0.840 0.045 -0.440 -0.233 0.465 0.103 -0.786 -1.469 0.989 0.248 -0.732 -0.608 0.636 -0.467 -0.385 -0.177 0.701 0.381 -0.352 -0.432 0.230 0.478 -0.465 -1.522 0.618 0.209 -0.530 -0.648 0.598 -0.109 -0.431 -0.300 0.603 0.139 -0.845 -0.300 0.613 0.649 -0.773 -1.652 0.612 -0.052 -0.798 -0.463 0.795 -0.192 -0.621 -0.375 0.768 0.367 -1.000 -0.441 0.559 0.076 -0.787 -2.279 1.111 0.244 -0.968 -0.550 0.697 -0.077 -0.867 -0.538 0.860 -0.075 -0.883 -0.608 0.889 0.242 -0.902 -1.443 0.937 0.152 -0.722 -0.619 0.706 -0.292 -0.661 -0.207 0.753 0.470 -0.856 -0.553 0.466 0.508 -0.923 -1.950 0.842 0.034 -1.096 0.122 0.506 -0.129 -0.392 -0.306 0.599 0.145 -0.699 -0.631 0.707 0.169 -0.614 -1.407 0.884 0.000 -0.880 -0.231 0.683 -0.692 -0.294 -0.425 0.864 0.413 -1.284 -0.836 0.764 0.470 -0.579 -1.362 0.638 0.007 -1.343 -0.735 1.000 -0.171 -0.688 -0.774 0.931 0.266 -0.722 -0.485 0.562 0.066 -1.031 -1.650 1.101 0.202 -0.838 -0.735 0.757 -0.406 -0.296 -0.325 0.707 0.481 -0.836 -0.602 0.471 0.387 -0.707 -1.868 0.852 0.332 -0.815 -0.638 0.614 -0.318 -0.637 -0.316 0.808 -0.144 -1.594 0.595 0.326 0.228 -0.791 -1.734 0.963 -0.031 -1.105 -0.309 0.807 -0.158 -0.764 -0.672 0.916 0.421 -1.220 -0.860 0.749 0.415 -1.134 -2.152 0.990 0.142 -1.120 -0.697 0.864 -0.040 -1.079 -0.429 0.857 0.279 -1.076 -0.133 0.486 0.238 -1.005 -1.538 0.984 0.210 -1.106 -0.650 0.801 -0.515 -0.810 -0.267 0.925 0.297 -0.519 -0.558 0.480 0.385 -0.770 -1.632 0.836 0.223 -0.771 -0.620 0.675 -0.053 -0.558 -0.120 0.523 0.042 -0.720 -0.219 0.589 0.308 -0.540 -1.743 0.829 0.392 -1.361 -0.706 0.753 -0.558 -0.280 -0.529 0.852 0.147 -1.055 -0.637 0.823 0.604 -1.109 -1.897 0.805 0.012 -0.887 -0.874 0.930 -0.425 -0.962 -0.238 0.921 0.033 -0.528 -0.241 0.523 0.153 -0.708 -1.543 0.951 0.147 -0.753 -0.360 0.604 -0.573 -0.426 -0.042 0.689 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.480 -0.636 0.005 -0.060 0.499 0.040 -0.622 -0.138 0.911 -0.865 -0.320 -0.378 0.944 -0.951 -0.080 -0.708 0.821 0.223 -1.723 -0.389 0.925 -0.488 -0.051 -1.242 1.993 -7.308 -7.308 -7.308 -7.308 -7.308 -7.308 1.993 -7.308 -7.308 1.993 -7.308 -0.354 -1.636 1.246 -0.933 0.184 0.742 -0.636 -0.865 -0.286 -1.138 0.550 0.336 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.464 -0.417 0.035 -0.239 0.464 -0.239 -0.536 0.116 0.035 -0.239 -0.111 0.265 0.357 -0.239 0.142 -0.380 0.265 -0.111 -0.343 0.116 -0.495 0.265 -0.239 0.312 -5.665 -5.665 -5.665 1.979 1.979 -5.665 -5.665 -5.665 1.979 -5.665 -5.665 -5.665 TAG WMM 9 6 4 0 0.000 0.367 -0.663 0.424 -0.441 0.337 0.000 -0.294 -0.119 0.000 -0.294 -0.724 0.659 -0.341 -0.204 0.585 -0.248 0.480 -0.078 -1.000 0.212 -0.248 0.037 -0.294 0.396 -5.248 -5.248 -5.248 1.971 1.971 -5.248 -5.248 -5.248 -5.248 -5.248 1.971 -5.248 TGA WMM 9 6 4 0 0.000 0.385 -0.744 0.097 0.040 0.531 0.078 -0.812 -0.104 -0.020 -0.104 -0.389 0.400 0.322 -0.389 0.097 -0.126 0.115 0.097 -0.710 0.306 -0.193 0.000 -0.678 0.585 -6.170 -6.170 -6.170 1.985 -6.170 -6.170 1.985 -6.170 1.985 -6.170 -6.170 -6.170 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/nGASP.hmm0000644000175000017500000013605311424066010014770 0ustar moellermoellerzoeHMM nGASP 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.963959 Inter Esngl 0.036041 Inter ORF 1 Intron Eterm 0.203134 Intron Exon 0.796866 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.445697 0.286053 0.268249 0.624921 0.178233 0.196845 0.538905 0.252450 0.208646 0.589443 0.185924 0.224633 0.781178 0.218822 0.825891 0.174109 0.795549 0.204451 Einit 2 DEFINED 0 249 -9.357 -9.281 -9.210 -9.141 -9.076 -9.013 -8.953 -8.896 -8.840 -8.787 -8.736 -8.679 -8.625 -8.572 -8.522 -8.473 -8.425 -8.380 -8.335 -8.292 -8.250 -8.194 -8.140 -8.088 -8.037 -7.989 -7.942 -7.896 -7.852 -7.809 -7.768 -7.745 -7.723 -7.701 -7.680 -7.659 -7.638 -7.618 -7.597 -7.577 -7.558 -7.541 -7.524 -7.507 -7.491 -7.475 -7.458 -7.443 -7.427 -7.411 -7.396 -7.380 -7.364 -7.349 -7.333 -7.318 -7.303 -7.288 -7.273 -7.258 -7.244 -7.256 -7.269 -7.282 -7.295 -7.308 -7.321 -7.334 -7.347 -7.361 -7.375 -7.375 -7.376 -7.377 -7.377 -7.378 -7.379 -7.380 -7.380 -7.381 -7.382 -7.386 -7.390 -7.394 -7.399 -7.403 -7.407 -7.412 -7.416 -7.420 -7.425 -7.439 -7.453 -7.468 -7.482 -7.497 -7.512 -7.527 -7.543 -7.558 -7.574 -7.584 -7.595 -7.606 -7.616 -7.627 -7.638 -7.649 -7.660 -7.671 -7.683 -7.690 -7.698 -7.706 -7.714 -7.722 -7.730 -7.738 -7.747 -7.755 -7.763 -7.776 -7.790 -7.804 -7.817 -7.831 -7.845 -7.859 -7.874 -7.888 -7.903 -7.919 -7.936 -7.952 -7.969 -7.986 -8.003 -8.021 -8.039 -8.056 -8.075 -8.090 -8.106 -8.122 -8.138 -8.154 -8.170 -8.187 -8.203 -8.220 -8.237 -8.259 -8.281 -8.304 -8.327 -8.350 -8.374 -8.398 -8.422 -8.447 -8.473 -8.492 -8.512 -8.532 -8.553 -8.574 -8.595 -8.616 -8.638 -8.660 -8.683 -8.694 -8.705 -8.717 -8.728 -8.740 -8.752 -8.764 -8.776 -8.788 -8.800 -8.824 -8.848 -8.873 -8.898 -8.923 -8.949 -8.975 -9.002 -9.030 -9.058 -9.085 -9.113 -9.141 -9.170 -9.200 -9.230 -9.261 -9.292 -9.324 -9.357 -9.384 -9.411 -9.438 -9.467 -9.495 -9.525 -9.555 -9.585 -9.616 -9.648 -9.652 -9.655 -9.658 -9.662 -9.665 -9.669 -9.672 -9.676 -9.679 -9.683 -9.700 -9.718 -9.736 -9.754 -9.772 -9.791 -9.810 -9.829 -9.848 -9.868 -9.876 -9.884 -9.892 -9.900 -9.908 -9.916 -9.924 -9.932 -9.941 -9.949 -9.951 -9.953 -9.955 -9.957 -9.959 -9.962 -9.964 -9.966 -9.968 GEOMETRIC 250 -1 144 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.570 -10.471 -10.378 -10.291 -10.209 -10.131 -10.058 -9.987 -9.920 -9.857 -9.795 -9.762 -9.729 -9.698 -9.666 -9.636 -9.606 -9.577 -9.548 -9.520 -9.492 -9.462 -9.433 -9.404 -9.376 -9.348 -9.321 -9.294 -9.268 -9.242 -9.217 -9.167 -9.120 -9.073 -9.029 -8.985 -8.943 -8.902 -8.862 -8.824 -8.786 -8.768 -8.751 -8.734 -8.717 -8.700 -8.684 -8.667 -8.651 -8.635 -8.619 -8.590 -8.561 -8.532 -8.504 -8.477 -8.450 -8.424 -8.398 -8.373 -8.348 -8.331 -8.314 -8.297 -8.281 -8.264 -8.248 -8.232 -8.217 -8.201 -8.186 -8.175 -8.165 -8.155 -8.144 -8.134 -8.124 -8.114 -8.104 -8.095 -8.085 -8.068 -8.052 -8.036 -8.020 -8.004 -7.989 -7.973 -7.958 -7.943 -7.928 -7.909 -7.890 -7.872 -7.854 -7.836 -7.818 -7.801 -7.783 -7.766 -7.749 -7.751 -7.753 -7.755 -7.757 -7.758 -7.760 -7.762 -7.764 -7.766 -7.768 -7.771 -7.774 -7.777 -7.780 -7.784 -7.787 -7.790 -7.793 -7.797 -7.800 -7.802 -7.804 -7.806 -7.808 -7.809 -7.811 -7.813 -7.815 -7.817 -7.819 -7.832 -7.846 -7.860 -7.873 -7.887 -7.901 -7.915 -7.930 -7.944 -7.959 -7.961 -7.963 -7.965 -7.967 -7.969 -7.972 -7.974 -7.976 -7.978 -7.980 -7.981 -7.982 -7.983 -7.984 -7.985 -7.986 -7.987 -7.989 -7.990 -7.991 -7.987 -7.984 -7.981 -7.978 -7.975 -7.972 -7.968 -7.965 -7.962 -7.959 -7.960 -7.961 -7.962 -7.963 -7.964 -7.965 -7.966 -7.967 -7.968 -7.969 -7.981 -7.992 -8.003 -8.014 -8.026 -8.038 -8.049 -8.061 -8.073 -8.085 -8.106 -8.127 -8.148 -8.170 -8.192 -8.214 -8.237 -8.260 -8.283 -8.307 -8.340 -8.374 -8.409 -8.444 -8.481 -8.518 -8.557 -8.596 -8.637 -8.678 -8.699 -8.720 -8.742 -8.764 -8.786 -8.809 -8.831 -8.855 -8.878 -8.902 -8.927 -8.952 -8.977 -9.003 -9.029 -9.055 -9.083 -9.110 -9.138 -9.167 -9.165 -9.162 -9.160 -9.158 -9.155 -9.153 -9.150 -9.148 -9.146 -9.143 -9.155 -9.167 -9.179 -9.192 -9.204 -9.217 -9.229 -9.242 -9.255 GEOMETRIC 250 -1 198 Exon 2 DEFINED 0 249 -14.725 -14.314 -13.994 -13.733 -13.512 -13.320 -13.150 -12.999 -12.862 -12.737 -12.621 -12.395 -12.200 -12.028 -11.874 -11.735 -11.608 -11.492 -11.384 -11.284 -11.190 -11.019 -10.866 -10.728 -10.602 -10.486 -10.378 -10.278 -10.185 -10.097 -10.014 -9.894 -9.783 -9.680 -9.584 -9.493 -9.408 -9.328 -9.252 -9.180 -9.111 -9.037 -8.966 -8.898 -8.834 -8.772 -8.712 -8.656 -8.601 -8.548 -8.497 -8.443 -8.390 -8.339 -8.290 -8.243 -8.197 -8.153 -8.109 -8.068 -8.027 -7.997 -7.968 -7.940 -7.912 -7.884 -7.857 -7.831 -7.805 -7.779 -7.754 -7.740 -7.726 -7.712 -7.698 -7.684 -7.670 -7.656 -7.643 -7.630 -7.616 -7.602 -7.588 -7.574 -7.560 -7.547 -7.533 -7.520 -7.506 -7.493 -7.480 -7.472 -7.465 -7.458 -7.450 -7.443 -7.436 -7.428 -7.421 -7.414 -7.407 -7.412 -7.418 -7.424 -7.429 -7.435 -7.441 -7.446 -7.452 -7.458 -7.464 -7.469 -7.474 -7.479 -7.484 -7.489 -7.494 -7.499 -7.504 -7.509 -7.515 -7.529 -7.543 -7.558 -7.573 -7.588 -7.603 -7.618 -7.634 -7.649 -7.665 -7.686 -7.706 -7.728 -7.749 -7.771 -7.793 -7.815 -7.838 -7.861 -7.884 -7.902 -7.920 -7.938 -7.957 -7.976 -7.995 -8.014 -8.034 -8.053 -8.073 -8.087 -8.100 -8.113 -8.127 -8.140 -8.154 -8.168 -8.182 -8.196 -8.210 -8.228 -8.246 -8.264 -8.282 -8.301 -8.319 -8.338 -8.358 -8.377 -8.397 -8.406 -8.415 -8.423 -8.432 -8.441 -8.451 -8.460 -8.469 -8.478 -8.488 -8.499 -8.511 -8.524 -8.536 -8.548 -8.560 -8.573 -8.586 -8.598 -8.611 -8.626 -8.641 -8.657 -8.672 -8.688 -8.704 -8.720 -8.736 -8.753 -8.769 -8.785 -8.800 -8.815 -8.831 -8.847 -8.863 -8.879 -8.896 -8.912 -8.929 -8.944 -8.959 -8.975 -8.990 -9.006 -9.022 -9.038 -9.055 -9.071 -9.088 -9.095 -9.102 -9.109 -9.116 -9.123 -9.130 -9.137 -9.145 -9.152 -9.159 -9.162 -9.164 -9.166 -9.169 -9.171 -9.174 -9.176 -9.179 -9.181 -9.184 -9.191 -9.199 -9.206 -9.214 -9.221 -9.229 -9.237 -9.244 -9.252 GEOMETRIC 250 -1 201 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 324 ORF 2 DEFINED 0 249 -14.725 -14.314 -13.994 -13.733 -13.512 -13.320 -13.150 -12.999 -12.862 -12.737 -12.621 -12.395 -12.200 -12.028 -11.874 -11.735 -11.608 -11.492 -11.384 -11.284 -11.190 -11.019 -10.866 -10.728 -10.602 -10.486 -10.378 -10.278 -10.185 -10.097 -10.014 -9.894 -9.783 -9.680 -9.584 -9.493 -9.408 -9.328 -9.252 -9.180 -9.111 -9.037 -8.966 -8.898 -8.834 -8.772 -8.712 -8.656 -8.601 -8.548 -8.497 -8.443 -8.390 -8.339 -8.290 -8.243 -8.197 -8.153 -8.109 -8.068 -8.027 -7.997 -7.968 -7.940 -7.912 -7.884 -7.857 -7.831 -7.805 -7.779 -7.754 -7.740 -7.726 -7.712 -7.698 -7.684 -7.670 -7.656 -7.643 -7.630 -7.616 -7.602 -7.588 -7.574 -7.560 -7.547 -7.533 -7.520 -7.506 -7.493 -7.480 -7.472 -7.465 -7.458 -7.450 -7.443 -7.436 -7.428 -7.421 -7.414 -7.407 -7.412 -7.418 -7.424 -7.429 -7.435 -7.441 -7.446 -7.452 -7.458 -7.464 -7.469 -7.474 -7.479 -7.484 -7.489 -7.494 -7.499 -7.504 -7.509 -7.515 -7.529 -7.543 -7.558 -7.573 -7.588 -7.603 -7.618 -7.634 -7.649 -7.665 -7.686 -7.706 -7.728 -7.749 -7.771 -7.793 -7.815 -7.838 -7.861 -7.884 -7.902 -7.920 -7.938 -7.957 -7.976 -7.995 -8.014 -8.034 -8.053 -8.073 -8.087 -8.100 -8.113 -8.127 -8.140 -8.154 -8.168 -8.182 -8.196 -8.210 -8.228 -8.246 -8.264 -8.282 -8.301 -8.319 -8.338 -8.358 -8.377 -8.397 -8.406 -8.415 -8.423 -8.432 -8.441 -8.451 -8.460 -8.469 -8.478 -8.488 -8.499 -8.511 -8.524 -8.536 -8.548 -8.560 -8.573 -8.586 -8.598 -8.611 -8.626 -8.641 -8.657 -8.672 -8.688 -8.704 -8.720 -8.736 -8.753 -8.769 -8.785 -8.800 -8.815 -8.831 -8.847 -8.863 -8.879 -8.896 -8.912 -8.929 -8.944 -8.959 -8.975 -8.990 -9.006 -9.022 -9.038 -9.055 -9.071 -9.088 -9.095 -9.102 -9.109 -9.116 -9.123 -9.130 -9.137 -9.145 -9.152 -9.159 -9.162 -9.164 -9.166 -9.169 -9.171 -9.174 -9.176 -9.179 -9.181 -9.184 -9.191 -9.199 -9.206 -9.214 -9.221 -9.229 -9.237 -9.244 -9.252 GEOMETRIC 250 -1 201 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.383 -0.552 -1.368 0.702 0.390 -0.548 -1.415 0.705 0.588 -0.563 -1.605 0.577 0.709 -1.046 -1.637 0.641 0.716 -1.616 -1.773 0.797 0.082 -1.527 -1.729 1.197 -2.118 -2.905 -3.527 1.828 -4.974 -3.743 -5.733 1.954 -1.738 -0.358 -1.531 1.364 -2.980 1.740 -6.019 -0.949 1.999 -11.019 -11.019 -11.019 -11.019 -11.019 1.999 -11.019 0.838 -0.724 0.182 -1.084 0.260 -0.375 -0.774 0.533 0.332 -0.101 -0.532 0.160 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.343 -0.623 -0.098 0.200 0.077 -0.217 -0.762 0.580 0.381 -0.191 -1.394 0.527 -1.352 0.014 0.230 0.512 0.876 -0.996 -0.094 -0.461 0.931 -1.218 -0.342 -0.193 0.606 -0.733 -0.368 0.139 -0.677 -0.201 -0.059 0.628 0.511 -0.721 -0.111 0.060 0.153 -0.114 -0.873 0.504 1.218 -0.817 -1.329 -0.499 -0.872 -0.306 0.091 0.660 -9.022 0.715 -9.022 1.236 0.225 -0.324 -0.063 0.104 -9.179 0.156 0.663 0.379 -1.124 0.296 0.042 0.360 0.213 -0.328 0.040 0.023 0.214 -0.121 -0.533 0.298 0.328 -0.119 -1.286 0.500 -1.486 0.035 0.079 0.643 0.615 -0.463 -0.130 -0.271 0.802 -1.050 0.199 -0.678 0.210 -0.038 -0.786 0.366 -0.689 0.057 0.233 0.219 -0.026 -0.388 0.200 0.145 -0.022 0.068 -0.200 0.133 1.098 -0.731 -0.802 -0.548 -1.316 0.194 0.356 0.232 -8.936 1.034 -8.936 0.962 0.043 -0.528 0.293 0.072 -8.615 0.413 0.457 0.371 -1.697 0.163 0.329 0.396 0.266 -0.982 0.585 -0.337 0.126 -0.306 -0.181 0.284 0.651 0.077 -0.872 -0.271 -1.522 -0.121 0.301 0.586 0.563 -0.713 0.289 -0.534 0.839 -1.183 0.003 -0.380 0.442 -0.760 -0.124 0.181 -1.339 0.302 0.152 0.334 0.278 -1.021 0.189 0.208 -0.110 -0.488 -0.139 0.539 1.215 -0.910 -1.280 -0.445 -1.478 -0.220 0.274 0.654 -8.544 1.043 -8.544 0.952 0.218 -0.722 0.221 0.092 -8.147 0.275 0.357 0.591 -1.439 0.141 0.178 0.482 0.264 -0.648 -0.145 0.329 0.331 -0.530 -0.452 0.399 0.368 -0.459 -1.044 0.582 -1.350 -0.313 0.156 0.756 0.539 -0.723 0.039 -0.131 0.895 -1.263 -0.032 -0.424 0.633 -0.726 -0.505 0.189 -0.652 -0.041 -0.118 0.556 0.195 -0.697 -0.024 0.328 0.252 -0.534 -0.597 0.543 1.137 -1.063 -0.987 -0.290 -0.823 -0.464 0.265 0.592 -8.873 0.515 -8.873 1.360 0.234 -0.411 -0.132 0.213 -8.972 0.223 0.482 0.520 -0.927 -0.040 0.333 0.313 0.576 -0.859 -0.309 0.202 0.415 -0.788 -0.725 0.568 0.613 -0.368 -1.193 0.331 -1.141 -0.335 0.182 0.695 0.743 -0.865 -0.059 -0.290 1.061 -1.675 -0.116 -0.560 0.334 -0.776 -0.630 0.594 -0.934 -0.426 0.057 0.759 0.638 -0.840 -0.333 0.125 0.330 -0.553 -0.828 0.583 1.281 -0.701 -1.292 -0.873 -0.592 -0.487 -0.039 0.722 -8.429 0.562 -8.429 1.332 0.505 -0.620 -0.259 0.131 -8.371 0.168 0.621 0.417 -1.073 0.282 -0.160 0.500 0.134 -0.026 0.028 -0.151 0.271 0.074 -0.409 -0.017 0.329 0.048 -1.152 0.333 -1.130 0.433 0.092 0.173 0.661 -0.666 -0.135 -0.188 1.205 -1.628 -0.264 -0.894 0.014 -0.011 -0.883 0.542 -0.438 0.184 0.090 0.086 0.153 -0.331 0.036 0.095 -0.150 0.609 -1.070 0.133 0.985 -0.270 -1.209 -0.398 -0.741 0.513 -0.287 0.208 -8.260 1.236 -8.260 0.712 0.262 0.006 -0.141 -0.168 -7.713 0.492 0.521 0.206 -1.119 0.720 -0.068 -0.091 0.644 -1.032 -0.178 0.091 0.379 -1.049 0.123 0.172 0.606 -0.047 -0.908 -0.033 -1.242 -0.392 0.143 0.775 0.588 -0.898 0.157 -0.243 0.678 -1.362 0.444 -0.619 0.311 -0.379 -0.241 0.194 -0.987 -0.227 0.581 0.196 0.375 -0.971 -0.079 0.317 0.017 -0.763 0.135 0.380 1.093 -0.474 -1.302 -0.431 -0.806 -0.509 0.308 0.572 -7.695 0.768 -7.695 1.194 0.497 -1.065 0.241 -0.106 -7.869 0.126 0.595 0.480 -1.526 0.033 0.373 0.416 0.526 -0.554 -0.300 0.094 0.587 -0.380 -0.855 0.234 0.538 -0.198 -1.140 0.290 -0.880 -0.052 -0.103 0.642 0.765 -0.713 -0.237 -0.247 1.108 -1.742 -0.150 -0.634 0.376 -0.452 -0.885 0.515 -0.774 0.007 -0.139 0.587 0.604 -0.803 -0.497 0.261 0.376 -0.380 -1.095 0.551 1.300 -1.039 -1.577 -0.483 -0.171 -0.202 -0.133 0.412 -8.003 0.593 -8.003 1.312 0.380 -0.272 -0.783 0.367 -8.232 0.411 0.223 0.585 -0.750 0.027 0.122 0.377 0.598 -0.688 -0.370 0.128 0.383 -0.280 -1.040 0.471 0.638 -0.294 -1.233 0.267 -1.299 0.026 0.163 0.542 0.681 -0.652 -0.175 -0.194 1.152 -1.235 -0.536 -0.594 0.343 -0.784 -0.294 0.417 -0.798 -0.012 -0.435 0.760 0.448 -0.696 -0.261 0.243 0.429 0.228 -1.878 0.276 1.195 -0.937 -1.559 -0.235 -0.841 -0.057 -0.609 0.868 -8.247 0.608 -8.247 1.304 0.268 -0.008 -0.509 0.136 -8.208 0.346 0.464 0.428 -1.094 0.445 -0.329 0.459 0.291 -0.278 -0.021 -0.050 0.607 0.020 -0.846 -0.142 0.348 -0.035 -1.319 0.434 -1.315 0.229 -0.033 0.534 0.655 -0.345 -0.143 -0.448 0.965 -0.942 -0.011 -0.902 0.348 -0.219 -0.695 0.322 -0.286 0.058 -0.029 0.213 0.097 -0.363 0.087 0.126 -0.213 0.417 -0.603 0.194 0.846 -0.256 -1.112 -0.148 -0.994 0.401 -0.221 0.401 -7.850 1.078 -7.850 0.911 0.278 0.081 -0.176 -0.243 -7.581 0.373 0.430 0.436 -1.159 0.760 -0.236 0.014 0.591 -0.994 0.068 -0.084 0.353 -0.498 -0.448 0.358 0.549 0.118 -0.563 -0.368 -1.125 -0.096 0.131 0.595 0.547 -0.659 0.095 -0.256 0.641 -1.011 -0.033 -0.048 0.092 -0.424 0.135 0.125 -1.240 0.489 -0.298 0.443 0.310 -0.883 -0.100 0.361 0.065 -0.906 -0.152 0.604 1.081 -0.875 -1.208 -0.143 -0.641 -0.551 0.130 0.662 -7.090 1.029 -7.090 0.960 0.359 -0.442 -0.009 -0.018 -7.122 0.068 0.493 0.620 -1.060 0.318 -0.261 0.525 0.471 -0.238 -0.701 0.202 0.416 -0.186 -0.680 0.217 0.597 -0.355 -1.423 0.415 -1.152 -0.175 0.020 0.723 0.647 -0.753 -0.127 -0.112 0.990 -0.863 -0.251 -0.681 0.322 -0.478 -0.737 0.518 -0.646 0.093 -0.302 0.569 0.431 -0.541 -0.439 0.295 0.391 -0.327 -1.142 0.524 1.117 -0.778 -1.596 -0.125 -0.609 0.145 -0.097 0.383 -7.752 0.720 -7.752 1.229 0.419 -0.410 -0.325 0.153 -7.656 0.304 0.431 0.498 -0.852 0.146 -0.022 0.438 0.611 -0.581 -0.395 0.062 0.453 -0.217 -1.112 0.388 0.658 -0.148 -0.965 0.010 -0.844 -0.120 0.001 0.606 0.665 -0.622 -0.099 -0.267 0.752 -0.733 -0.261 -0.185 0.548 -0.547 -0.043 -0.179 -0.397 -0.177 -0.044 0.471 0.477 -0.648 -0.426 0.294 0.427 -0.202 -0.871 0.309 1.044 -0.249 -1.377 -0.492 -0.709 -0.156 -0.247 0.721 -7.498 0.851 -7.498 1.128 0.612 -0.346 -0.372 -0.133 -7.745 0.445 0.573 0.198 -1.088 0.512 -0.435 0.448 0.237 -0.165 -0.050 -0.055 0.327 0.143 -0.956 0.172 0.457 0.052 -1.473 0.299 -1.224 0.331 -0.082 0.454 0.706 -0.387 -0.181 -0.470 0.989 -1.044 -0.110 -0.728 0.379 -0.154 -1.085 0.411 -0.618 0.204 -0.021 0.276 0.123 -0.249 -0.037 0.130 -0.081 0.558 -0.892 0.062 1.043 -0.314 -1.284 -0.465 -1.141 0.580 -0.246 0.273 -9.151 1.367 -9.151 0.504 0.171 0.214 -0.249 -0.196 -8.632 0.563 0.474 0.178 -1.540 0.916 -0.242 -0.114 0.501 -0.656 0.061 -0.142 0.517 -0.590 -0.247 0.087 0.623 0.327 -1.102 -0.435 -0.971 -0.184 0.276 0.485 0.670 -0.639 0.015 -0.403 0.937 -1.326 0.009 -0.555 0.588 -0.774 -0.235 0.088 -1.113 0.783 -0.172 -0.105 0.419 -0.919 -0.021 0.200 0.271 -0.654 -0.450 0.512 1.032 -0.417 -1.493 -0.233 -0.585 -0.254 0.132 0.484 -8.375 1.097 -8.375 0.892 0.453 -0.549 -0.052 -0.025 -8.468 0.710 0.219 0.260 -1.221 0.604 -0.074 0.139 0.453 -0.551 -0.320 0.197 0.376 -0.153 -0.773 0.284 0.521 -0.237 -1.200 0.357 -1.021 -0.003 -0.060 0.632 0.741 -0.729 -0.259 -0.169 1.019 -0.998 -0.298 -0.600 0.590 -0.557 -0.627 0.224 -0.619 0.228 -0.202 0.388 0.386 -0.665 -0.300 0.322 0.314 -0.183 -0.893 0.420 1.142 -0.666 -1.343 -0.380 -0.608 -0.101 0.174 0.360 -8.811 0.617 -8.811 1.300 0.321 -0.023 -0.550 0.115 -9.122 0.298 0.493 0.445 -0.842 0.291 0.173 0.126 frame1 LUT 5 4 4 0 0.000 0.152 -0.257 0.185 -0.128 0.214 -0.499 0.081 0.104 0.352 -0.165 -0.120 -0.133 -0.368 -0.131 0.553 -0.243 0.547 -0.472 -0.216 -0.063 0.422 -0.854 0.468 -0.467 0.491 -0.738 0.002 -0.009 -0.297 -0.001 0.469 -0.317 0.539 -0.618 0.126 -0.315 0.273 -0.169 -0.349 0.159 0.787 -0.083 -0.413 -0.789 -0.350 -0.443 0.662 -0.157 0.461 -0.692 -0.442 0.343 0.424 -0.599 0.367 -0.497 0.299 -0.301 0.195 -0.298 -0.706 0.032 0.543 -0.140 0.187 -0.046 0.081 -0.260 0.203 -0.846 0.366 0.005 0.234 0.106 -0.116 -0.277 -0.494 0.238 0.103 0.051 0.186 0.106 0.036 -0.395 0.241 -0.265 0.561 -0.970 0.381 -0.286 0.264 -0.565 -0.471 0.172 0.514 -0.466 0.307 -0.361 0.201 -0.261 0.049 0.231 0.212 -0.659 0.558 -0.093 0.062 -0.872 -0.820 0.221 0.788 -0.887 0.107 -0.047 -0.196 0.114 0.345 -0.414 0.271 -0.371 0.523 -0.359 0.265 -0.782 -1.073 0.417 0.288 -0.046 0.229 -0.727 0.628 -0.560 0.311 -0.914 0.417 -0.163 0.154 0.154 0.055 -0.442 -0.411 -0.250 0.651 -0.256 0.382 -0.556 0.251 -0.275 0.405 -0.689 0.557 -0.775 0.454 -0.569 0.209 -0.321 -0.695 0.227 0.510 -0.344 0.260 -0.523 0.286 -0.172 0.096 -0.109 0.171 -0.187 0.339 0.257 -0.383 -0.371 -0.908 -0.101 0.869 -0.497 0.113 -0.321 0.068 0.097 0.533 -0.829 0.301 -0.398 0.496 -0.510 0.190 -0.422 -0.748 0.049 0.510 -0.079 0.000 0.000 0.000 0.000 0.370 -0.470 0.152 -0.193 0.000 0.000 0.000 0.000 -0.594 -0.009 0.286 0.169 0.473 -0.455 0.006 -0.188 0.441 -0.487 0.278 -0.480 0.623 -0.687 0.155 -0.463 -0.551 -0.015 0.572 -0.250 0.000 0.000 0.000 0.000 0.332 -0.090 -0.263 -0.047 0.546 -0.321 0.030 -0.477 -0.553 -0.262 0.698 -0.214 0.392 -0.618 -0.223 0.239 0.362 -0.343 0.055 -0.172 0.553 -0.771 0.364 -0.600 -0.670 -0.278 0.550 0.114 0.581 -0.625 -0.024 -0.197 0.418 -0.801 0.097 0.030 0.433 -0.263 0.014 -0.309 -0.175 -0.203 0.410 -0.126 0.630 -0.580 -0.174 -0.156 0.505 -0.741 0.348 -0.495 0.282 -0.740 -0.056 0.290 -0.460 -0.327 0.537 0.035 0.761 -0.994 0.146 -0.522 0.474 -0.685 0.087 -0.109 0.761 -0.119 -0.333 -0.760 -0.306 -0.415 0.557 -0.045 0.496 -0.755 -0.196 0.169 0.510 -0.643 0.242 -0.409 0.433 -0.520 0.100 -0.182 -0.762 -0.078 0.493 0.078 0.303 -0.105 -0.038 -0.214 0.180 -0.419 0.399 -0.320 0.357 0.103 -0.156 -0.420 -0.410 0.314 0.149 -0.160 0.251 -0.250 0.109 -0.167 0.353 -0.506 0.474 -0.668 0.395 -0.625 0.345 -0.384 -0.342 -0.004 0.598 -0.515 0.536 -0.507 0.030 -0.277 -0.070 0.357 0.006 -0.391 0.547 0.109 -0.127 -0.876 -0.482 0.326 0.439 -0.566 0.200 -0.084 -0.143 0.004 0.184 -0.230 0.178 -0.184 0.471 -0.334 0.172 -0.526 -0.684 0.581 0.311 -0.642 0.418 -0.795 0.383 -0.351 0.305 -1.022 0.491 -0.207 0.394 -0.154 0.075 -0.447 -0.370 -0.268 0.565 -0.125 0.501 -0.722 0.067 -0.104 0.259 -0.897 0.674 -0.575 0.441 -0.930 0.015 0.148 -0.793 -0.076 0.802 -0.452 0.456 -0.925 0.437 -0.419 0.020 -0.408 0.503 -0.293 0.520 -0.012 -0.544 -0.171 -0.645 -0.263 0.780 -0.304 0.229 -0.276 0.115 -0.122 0.342 -0.991 0.539 -0.365 0.225 -0.566 0.493 -0.417 -0.807 0.070 0.538 -0.110 0.000 0.000 0.000 0.000 0.453 -0.487 0.113 -0.258 0.000 0.000 0.000 0.000 -0.389 -0.064 0.368 -0.016 0.660 -0.508 -0.615 0.089 0.523 -0.452 0.139 -0.452 0.423 -0.755 0.203 -0.127 -0.436 -0.047 0.540 -0.254 0.000 0.000 0.000 0.000 0.337 -0.210 -0.251 0.045 0.649 -0.354 -0.158 -0.408 -0.140 -0.383 0.690 -0.491 0.330 -0.411 -0.612 0.418 0.459 -0.259 -0.255 -0.072 0.497 -0.615 0.330 -0.559 -0.700 -0.600 0.732 0.089 0.711 -0.579 -0.119 -0.371 0.652 -0.681 -0.092 -0.208 0.598 0.035 -0.118 -0.888 0.021 -0.133 0.311 -0.264 0.566 -0.216 -0.095 -0.469 0.328 -0.346 0.419 -0.688 0.469 -0.692 0.117 -0.132 -0.278 -0.077 0.509 -0.316 0.810 -0.770 -0.098 -0.463 0.766 -0.208 -0.939 -0.132 0.842 -0.357 -0.229 -0.802 -0.090 -0.378 0.474 -0.149 0.461 -0.563 -0.163 0.074 0.589 -0.419 -0.035 -0.375 0.497 -0.394 0.245 -0.638 -0.578 0.098 0.386 -0.070 0.370 -0.096 -0.028 -0.338 0.655 -0.748 0.065 -0.352 0.439 0.181 -0.345 -0.466 -0.230 0.105 0.066 0.036 0.493 -0.132 0.006 -0.565 0.550 -0.579 0.523 -1.218 0.581 -0.519 0.255 -0.707 -0.117 -0.136 0.638 -0.709 0.589 -0.376 -0.108 -0.327 0.187 0.274 -0.040 -0.557 0.626 0.134 -0.288 -0.888 -0.513 0.434 0.308 -0.495 0.287 -0.204 0.083 -0.229 0.652 -0.474 -0.008 -0.486 0.687 -0.598 0.273 -0.941 -0.556 0.471 0.166 -0.301 0.600 -0.895 0.319 -0.516 0.569 -0.869 0.220 -0.314 0.540 0.090 -0.069 -0.919 -0.096 -0.133 0.338 -0.170 0.712 -0.530 0.015 -0.602 0.442 -0.979 0.643 -0.805 0.574 -0.798 0.338 -0.573 -0.627 0.578 0.272 -0.616 0.522 -0.728 0.086 -0.154 0.266 -0.543 0.180 -0.031 0.620 -0.155 -0.263 -0.451 -0.294 0.050 0.585 -0.623 0.054 -0.280 0.144 0.048 0.596 -0.662 0.094 -0.342 0.347 -0.330 0.271 -0.461 -0.332 0.196 0.127 -0.047 0.000 0.000 0.000 0.000 0.574 -0.502 -0.160 -0.136 0.000 0.000 0.000 0.000 -0.233 -0.140 0.184 0.145 0.365 -0.293 -0.020 -0.137 0.461 -0.299 0.102 -0.439 0.501 -0.556 0.228 -0.448 -0.378 0.008 0.443 -0.209 0.000 0.000 0.000 0.000 0.524 -0.118 -0.581 -0.041 0.585 -0.223 -0.174 -0.401 -0.050 -0.213 0.520 -0.440 0.319 -0.461 -0.046 0.081 0.574 -0.261 -0.294 -0.215 0.578 -0.791 0.354 -0.619 -0.378 -0.314 0.431 0.108 0.562 -0.692 0.114 -0.282 0.479 -0.575 -0.018 -0.078 0.532 -0.003 0.061 -0.963 -0.014 -0.116 0.284 -0.203 0.646 -0.431 -0.089 -0.408 0.599 -0.784 0.294 -0.559 0.442 -0.653 0.394 -0.532 -0.220 -0.159 0.535 -0.329 0.737 -0.799 -0.025 -0.368 0.665 -0.501 -0.429 -0.052 0.861 0.052 -0.677 -0.937 -0.248 -0.168 0.445 -0.142 0.550 -0.656 -0.252 0.086 0.774 -0.835 0.170 -0.725 0.367 -0.367 0.395 -0.690 -0.525 0.087 0.504 -0.278 0.373 -0.202 -0.019 -0.237 0.374 -0.727 0.173 -0.041 0.446 0.051 -0.142 -0.523 -0.258 0.121 0.055 0.052 0.379 -0.221 0.081 -0.350 0.359 -0.641 0.604 -0.849 0.578 -0.614 0.132 -0.400 -0.598 0.049 0.672 -0.491 0.510 -0.709 0.130 -0.202 0.318 0.113 0.016 -0.599 0.641 0.029 -0.274 -0.755 -0.648 0.379 0.484 -0.594 0.023 0.111 0.041 -0.192 0.417 -0.407 0.257 -0.483 0.577 -0.440 0.237 -0.755 -0.906 0.532 0.351 -0.425 0.531 -0.834 0.454 -0.679 0.518 -1.084 0.408 -0.378 0.575 0.122 -0.060 -1.112 -0.079 -0.351 0.563 -0.337 0.605 -0.411 -0.088 -0.348 0.573 -0.966 0.430 -0.615 0.515 -0.890 0.321 -0.354 -0.709 0.569 0.346 -0.657 0.585 -0.970 0.219 -0.276 0.138 -0.399 0.127 0.069 0.601 0.090 -0.567 -0.427 -0.589 -0.279 0.773 -0.319 0.337 -0.207 -0.063 -0.132 0.650 -0.814 0.196 -0.482 0.618 -0.322 0.098 -0.749 -0.489 0.152 0.457 -0.317 0.000 0.000 0.000 0.000 0.525 -0.588 0.088 -0.264 0.000 0.000 0.000 0.000 -0.236 -0.082 0.327 -0.071 0.691 -0.520 -0.256 -0.233 0.618 -0.508 0.171 -0.654 0.443 -0.877 0.372 -0.318 -0.457 0.037 0.554 -0.363 0.000 0.000 0.000 0.000 0.410 -0.118 -0.308 -0.086 0.520 -0.304 -0.017 -0.381 -0.166 -0.254 0.678 -0.577 0.371 -0.450 -0.228 0.164 0.441 -0.405 -0.013 -0.159 0.639 -0.758 0.383 -0.870 -0.391 -0.265 0.693 -0.342 frame2 LUT 5 4 4 0 0.000 0.559 -0.371 -0.947 0.305 0.134 -0.213 -0.221 0.241 0.622 -0.175 -0.831 0.018 -0.663 0.210 -0.410 0.545 0.693 -0.260 -0.940 0.038 0.306 -0.104 -0.503 0.173 0.738 -0.367 -0.373 -0.350 -0.249 0.099 -0.670 0.545 1.037 -0.697 -0.928 -0.312 0.227 -0.089 -0.827 0.407 1.086 -0.242 -1.095 -0.830 -0.350 -0.124 -0.767 0.774 0.455 -0.589 -0.966 0.538 0.345 -0.056 -0.338 -0.034 0.520 -0.285 -0.223 -0.171 -1.046 0.141 -0.754 0.864 0.290 -0.018 -0.960 0.351 -0.038 0.246 -0.963 0.408 0.475 -0.177 -1.057 0.316 -0.993 0.286 -0.876 0.794 0.539 0.209 -1.074 -0.127 0.406 -0.039 -0.601 0.060 0.713 -0.233 -0.383 -0.429 0.059 0.194 -0.542 0.173 0.593 -0.164 -0.948 0.113 0.007 0.428 -1.300 0.314 0.861 -0.050 -1.111 -0.407 -1.038 0.386 -0.413 0.541 -0.119 0.370 -1.140 0.415 0.257 0.298 -0.887 0.050 0.407 -0.116 -0.360 -0.041 -1.068 0.434 -0.553 0.575 0.572 -0.585 -0.231 -0.007 0.437 -0.089 -0.327 -0.137 0.683 0.001 -0.700 -0.360 -0.485 0.282 -0.519 0.456 0.559 -0.226 -0.358 -0.166 0.355 -0.026 -0.376 -0.046 0.855 -0.573 -0.278 -0.529 -0.481 0.617 -0.950 0.301 0.779 -0.741 -0.591 0.032 0.265 -0.279 -0.864 0.511 1.200 -0.577 -1.498 -0.561 -0.416 -0.026 -0.538 0.660 0.234 -0.064 -0.713 0.330 0.448 -0.341 -0.456 0.161 0.506 -0.371 -0.260 -0.041 -0.760 0.070 -0.715 0.808 0.404 -0.334 -1.225 0.542 0.242 0.160 -0.996 0.262 0.481 -0.074 -1.069 0.236 -1.172 0.269 -1.202 0.939 0.710 -0.196 -0.869 -0.084 0.173 -0.227 -0.160 0.168 0.887 -0.374 -0.436 -0.645 -0.111 0.308 -0.746 0.310 0.564 -0.438 -0.682 0.214 0.297 -0.071 -0.901 0.361 0.712 -0.099 -0.657 -0.333 -0.558 0.202 -0.500 0.549 0.212 -0.426 -1.110 0.708 0.195 -0.046 -0.500 0.238 0.525 -0.147 -0.456 -0.106 -1.094 0.197 -0.682 0.817 0.667 -0.591 -1.252 0.410 0.606 -0.356 -0.816 0.174 0.557 -0.149 -0.559 -0.077 -0.644 0.001 -0.457 0.706 0.731 -0.418 -0.880 0.068 0.381 -0.309 -0.195 0.025 0.613 -0.403 -0.443 -0.032 -0.363 0.076 -0.591 0.589 0.900 -0.609 -0.859 -0.111 0.691 -0.285 -1.229 0.187 0.922 0.121 -0.908 -1.044 -0.411 -0.315 -0.473 0.785 0.389 -0.384 -1.012 0.514 0.538 -0.180 -0.447 -0.103 0.462 -0.323 -0.241 -0.034 -0.966 -0.072 -0.885 0.997 0.466 -0.066 -0.987 0.213 -0.009 0.605 -0.805 -0.131 0.415 0.106 -0.711 -0.030 -0.852 0.539 -1.060 0.598 0.557 -0.167 -0.607 -0.027 0.451 -0.052 -0.457 -0.090 0.718 -0.465 -0.086 -0.540 -0.087 0.171 -0.705 0.400 0.687 -0.364 -0.815 0.063 -0.098 0.748 -1.374 0.001 0.818 -0.026 -1.034 -0.384 -0.461 0.342 -0.839 0.533 0.263 0.117 -0.964 0.267 0.109 0.593 -1.089 -0.085 0.426 -0.071 -0.271 -0.190 -0.563 0.724 -0.978 0.219 0.665 -0.684 -0.844 0.305 0.339 -0.416 -0.052 0.030 0.703 -0.096 -0.785 -0.224 -0.670 0.120 -0.730 0.750 0.833 -0.513 -0.764 -0.107 0.258 -0.428 0.225 -0.165 0.795 -0.598 -0.252 -0.388 -0.333 0.383 -0.784 0.402 0.924 -1.022 -0.363 -0.265 0.209 -0.486 -0.520 0.519 1.111 -0.247 -1.247 -0.795 -0.593 -0.170 -0.479 0.792 0.439 -0.168 -0.807 0.243 0.323 -0.401 -0.335 0.261 0.460 -0.456 -0.026 -0.132 -0.806 0.244 -0.853 0.757 0.469 -0.124 -1.639 0.461 0.182 0.112 -0.776 0.264 0.514 -0.066 -1.071 0.190 -1.355 0.279 -0.707 0.834 0.682 -0.151 -1.112 0.046 0.307 -0.394 0.166 -0.185 0.579 -0.335 -0.134 -0.318 -0.194 0.450 -0.812 0.251 0.887 -0.483 -1.188 -0.007 0.153 -0.224 -1.007 0.618 0.920 -0.100 -1.238 -0.413 -0.639 0.135 -0.482 0.626 0.140 -0.250 -1.648 0.797 0.247 -0.123 -0.774 0.390 0.285 -0.067 -0.276 0.002 -1.001 0.234 -0.826 0.815 0.702 -0.533 -1.100 0.282 0.306 -0.397 -0.242 0.212 0.853 -0.197 -0.874 -0.366 -0.594 0.229 -0.569 0.577 0.623 -0.250 -0.809 0.068 0.192 0.131 -0.420 0.021 0.870 -0.529 -0.462 -0.409 -0.117 0.064 -0.628 0.470 0.926 -0.572 -1.020 -0.098 0.562 -0.179 -1.472 0.356 1.200 -0.527 -1.129 -0.858 -0.262 -0.277 -0.847 0.836 0.448 -0.541 -1.064 0.556 0.398 -0.091 -0.584 0.106 0.780 -0.413 -0.451 -0.322 -0.913 0.007 -0.798 0.917 0.532 -0.504 -0.987 0.427 0.299 0.143 -1.267 0.322 0.398 0.129 -1.241 0.222 -0.935 0.210 -1.073 0.883 0.668 0.026 -0.874 -0.239 0.302 -0.061 -0.225 -0.070 0.592 0.011 -0.286 -0.589 0.205 0.120 -0.383 -0.009 0.561 -0.545 -1.006 0.424 0.092 0.342 -1.577 0.413 0.622 0.299 -1.400 -0.232 -0.860 -0.059 -0.541 0.849 0.326 -0.117 -0.805 0.324 0.282 0.247 -0.867 0.069 0.374 0.130 -0.297 -0.329 -0.964 0.625 -0.872 0.484 0.611 -0.571 -0.799 0.293 0.496 -0.048 -0.694 0.006 0.447 0.105 -0.413 -0.304 -0.512 0.072 -0.531 0.637 0.622 -0.095 -0.654 -0.169 0.317 -0.478 -0.146 0.180 0.569 -0.468 0.267 -0.760 -0.287 0.521 -0.795 0.225 0.923 -0.853 -0.870 0.006 0.341 -0.383 -1.239 0.626 1.049 -0.670 -0.933 -0.360 -0.123 -0.376 -0.579 0.715 0.043 -0.083 -0.553 0.427 0.424 -0.302 -0.797 0.347 0.066 -0.526 0.470 -0.196 -0.238 0.067 -0.933 0.661 0.581 -0.003 -1.888 0.306 0.163 0.229 -0.977 0.263 0.684 -0.091 -1.513 0.144 -0.986 0.227 -0.696 0.772 0.579 -0.042 -0.902 -0.000 0.315 -0.198 -0.113 -0.059 0.693 -0.387 -0.362 -0.250 0.080 0.223 -0.772 0.252 0.797 -0.470 -1.358 0.202 0.173 -0.190 -1.840 0.780 0.963 -0.045 -1.853 -0.314 -0.549 0.031 -0.449 0.643 0.228 -0.119 -1.171 0.550 0.393 -0.105 -0.572 0.117 0.501 -0.206 -0.344 -0.106 -1.041 0.125 -0.597 0.817 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.622 -0.146 -1.061 0.107 0.236 -0.217 -0.422 0.282 0.757 -0.361 -0.403 -0.366 -0.352 0.068 -0.379 0.485 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.455 -0.363 -1.007 0.438 0.526 -0.292 -0.422 -0.005 0.582 -0.354 -0.231 -0.202 -0.645 0.029 -0.759 0.807 0.470 -0.208 -0.912 0.284 0.263 0.167 -1.191 0.309 0.532 -0.089 -0.999 0.155 -1.261 0.667 -1.142 0.625 0.491 0.080 -0.680 -0.131 0.243 -0.244 -0.271 0.193 0.803 -0.509 -0.235 -0.509 -0.198 0.452 -0.605 0.141 0.618 -0.483 -0.802 0.235 0.127 0.291 -1.487 0.408 0.843 0.032 -1.210 -0.411 -0.979 0.393 -0.868 0.707 -0.084 0.329 -0.625 0.205 0.259 0.153 -0.755 0.137 0.406 0.007 -0.183 -0.342 -1.206 0.814 -0.818 0.312 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.599 -0.256 -0.965 0.184 0.198 0.015 -0.410 0.124 0.675 -0.533 -0.152 -0.300 -0.636 0.483 -0.455 0.299 0.655 -0.666 -0.626 0.199 0.343 -0.197 -1.242 0.522 0.745 -0.196 -0.623 -0.319 -0.574 -0.120 -0.246 0.646 0.322 -0.335 -0.829 0.479 0.373 -0.189 -0.655 0.254 0.507 -0.082 -0.346 -0.239 -0.768 -0.101 -0.459 0.810 0.531 -0.270 -1.100 0.333 0.219 0.065 -0.818 0.290 0.680 -0.181 -0.997 0.022 -1.126 0.327 -0.971 0.830 0.816 -0.317 -1.227 0.013 0.357 -0.338 -0.314 0.168 0.819 -0.463 -0.275 -0.547 -0.305 0.107 -0.522 0.503 0.832 -0.756 -0.675 0.002 0.266 -0.024 -1.450 0.534 0.845 0.041 -0.990 -0.573 -0.771 0.145 -0.671 0.749 0.202 -0.373 -1.245 0.727 0.391 -0.167 -0.939 0.352 0.456 -0.223 -0.319 -0.044 -1.035 0.190 -0.873 0.868 Donor SDT 2 0 4 3 0.0 GC WMM 9 3 4 0 -5 0.594 -0.187 -0.278 -0.345 1.100 -0.723 -1.218 -0.284 -0.450 -1.985 1.218 -0.536 -11.019 -11.019 1.999 -11.019 -11.019 1.999 -11.019 -11.019 1.157 -4.053 0.131 -0.701 1.358 -1.565 -1.110 -0.656 -1.082 -2.609 1.544 -1.161 -0.352 -1.247 -1.207 1.240 GT WMM 9 3 4 0 0.000 0.594 -0.187 -0.278 -0.345 1.100 -0.723 -1.218 -0.284 -0.450 -1.985 1.218 -0.536 -11.019 -11.019 1.999 -11.019 -11.019 -11.019 -11.019 1.999 1.157 -4.053 0.131 -0.701 1.358 -1.565 -1.110 -0.656 -1.082 -2.609 1.544 -1.161 -0.352 -1.247 -1.207 1.240 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.893 -0.974 -1.454 0.344 0.340 -0.495 -0.803 0.538 0.142 -0.540 -0.829 0.718 -0.188 -0.612 -0.758 0.908 0.649 -0.528 -0.854 0.245 0.382 -0.325 -0.292 0.113 0.323 -0.474 -0.226 0.232 -0.163 -0.527 -0.298 0.678 0.809 -0.806 -0.502 -0.043 0.212 -0.106 -0.850 0.441 0.373 -0.315 -0.471 0.238 -0.255 -0.867 -0.334 0.864 0.625 -0.794 -0.955 0.449 0.393 -0.626 -0.159 0.193 0.354 -0.514 -0.704 0.493 -0.672 -0.665 -0.631 1.068 0.808 -0.688 -0.984 0.168 0.587 -0.384 -0.741 0.180 0.430 -0.619 -0.672 0.458 -0.184 -0.608 -0.696 0.885 0.591 -0.178 -0.718 0.002 0.396 0.123 -0.491 -0.179 0.362 -0.308 -0.187 0.041 0.096 -0.272 -0.305 0.371 0.679 -0.559 -0.477 0.003 0.453 -0.294 -0.128 -0.152 0.253 -0.210 -0.317 0.190 -0.381 -0.276 0.018 0.479 0.274 -0.132 -0.677 0.325 0.382 -0.272 -0.594 0.271 0.436 -0.581 -0.632 0.415 -0.905 -0.419 -0.555 1.027 0.975 -1.060 -0.708 -0.084 0.444 -0.370 -0.263 0.046 0.638 -0.263 -0.727 0.008 -0.105 -0.501 -0.487 0.723 0.575 -0.482 -0.254 -0.064 0.388 -0.555 -0.314 0.270 0.350 -0.187 -0.150 -0.080 -0.336 -0.081 -0.241 0.502 0.843 -1.130 -0.221 -0.165 0.290 -0.393 -0.395 0.328 0.295 -0.508 -0.029 0.124 -0.003 -0.539 -0.115 0.475 0.410 -0.321 -0.391 0.149 0.530 -0.649 -0.463 0.255 0.342 -0.482 -0.330 0.289 -0.587 -0.678 -0.502 1.002 0.875 -0.976 -1.267 0.313 0.594 -0.451 -0.847 0.267 0.419 -0.556 -0.518 0.361 0.007 -0.649 -0.765 0.823 0.648 -0.657 -0.554 0.160 0.444 -0.236 -0.407 0.051 0.699 -0.719 -0.245 -0.111 -0.072 -0.041 -0.330 0.358 0.694 -0.732 -0.602 0.166 0.527 -0.364 -0.614 0.174 0.397 -0.302 -0.269 0.060 -0.055 -0.719 -0.314 0.701 0.424 -0.721 -0.859 0.585 0.417 -0.214 -0.625 0.207 0.494 -0.477 -0.622 0.291 -0.822 -0.480 -0.801 1.100 0.994 -0.985 -1.377 0.162 0.451 -0.784 -0.785 0.557 0.397 -0.383 -0.888 0.460 -0.193 -0.909 -0.973 1.059 0.465 -0.171 -0.722 0.170 0.499 -0.399 -0.376 0.081 0.228 -0.281 -0.471 0.362 -0.391 -0.364 -0.204 0.671 0.851 -0.751 -0.620 -0.071 0.362 -0.386 -0.704 0.418 0.189 0.061 -0.619 0.221 -0.080 -0.777 -0.378 0.766 0.494 -0.703 -0.769 0.476 0.506 -0.613 -0.587 0.334 0.266 -0.355 -0.713 0.491 -0.741 -0.588 -0.902 1.139 0.923 -0.759 -1.220 0.116 0.280 -0.032 -0.540 0.163 0.591 -0.321 -0.750 0.136 -0.191 -0.286 -0.696 0.754 0.539 -0.202 -0.696 0.084 -0.040 0.520 -0.520 -0.158 0.212 0.155 -0.591 0.090 -0.228 0.181 -0.494 0.381 0.631 -0.637 -0.573 0.184 0.155 0.400 -0.478 -0.236 0.496 0.274 -1.082 -0.138 -0.075 -0.203 -0.431 0.526 0.448 -0.190 -0.591 0.132 0.211 0.070 -0.807 0.288 0.424 -0.120 -0.696 0.164 -0.646 -0.081 -0.624 0.821 1.019 -1.145 -1.162 0.103 0.520 -0.478 -0.321 0.067 0.643 -0.398 -0.661 0.066 -0.232 -0.957 -0.788 1.039 0.544 -0.400 -0.392 0.031 0.264 -0.176 -0.153 0.022 0.097 0.222 -0.347 -0.032 -0.230 -0.089 -0.176 0.403 1.047 -1.163 -0.500 -0.357 0.930 -0.687 -0.575 -0.317 0.545 -0.623 -0.261 0.080 -0.148 -0.637 -0.137 0.628 0.439 -0.452 -0.334 0.163 0.495 -0.805 -0.362 0.310 0.214 -0.478 -0.195 0.320 -0.804 -0.578 -0.547 1.052 0.848 -0.793 -1.220 0.255 0.627 -0.388 -0.874 0.196 0.626 -0.618 -0.551 0.167 -0.100 -0.564 -0.724 0.836 0.596 -0.436 -0.740 0.203 0.399 -0.116 -0.459 0.044 0.348 -0.314 -0.354 0.189 -0.353 0.301 -0.520 0.365 0.944 -0.812 -0.990 0.003 0.345 -0.050 -0.675 0.186 0.539 -0.195 -0.622 0.034 0.165 -0.498 -0.283 0.432 0.451 -0.505 -0.979 0.507 0.312 -0.207 -1.086 0.507 0.357 -0.298 -0.604 0.320 -0.657 -0.381 -0.732 0.997 1.055 -1.102 -1.508 0.144 0.505 -0.484 -0.872 0.400 0.538 -0.300 -0.842 0.236 -0.023 -0.935 -0.865 0.959 0.644 -0.301 -0.582 -0.062 0.488 -0.196 -0.528 0.043 0.396 -0.122 -0.489 0.074 0.033 -0.478 -0.243 0.500 0.726 -0.674 -0.272 -0.167 0.457 -0.288 -0.834 0.319 0.552 -0.407 -0.493 0.097 0.053 -0.814 -0.424 0.721 0.653 -0.836 -0.953 0.433 0.480 -0.626 -0.726 0.436 0.432 -0.483 -0.361 0.210 -0.737 -0.884 -0.815 1.195 0.917 -0.794 -1.107 0.098 0.606 -0.364 -0.752 0.146 0.442 -0.124 -0.503 0.026 -0.134 -0.569 -0.618 0.818 0.704 -0.277 -0.487 -0.265 0.563 -0.022 -0.525 -0.248 0.587 -0.375 0.050 -0.531 0.503 -0.538 -0.241 0.068 0.573 -0.527 -0.342 0.042 0.144 -0.092 0.096 -0.171 0.222 0.053 -0.163 -0.147 -0.239 -0.139 -0.121 0.406 0.454 -0.262 -0.534 0.145 0.439 -0.028 -0.859 0.154 0.536 -0.157 -0.537 -0.053 -0.251 -0.131 -0.610 0.670 1.038 -1.118 -0.863 -0.095 0.535 -0.321 -0.439 0.018 0.464 -0.075 -0.493 -0.057 -0.037 -0.605 -0.605 0.774 1.076 -0.872 -0.639 -0.508 0.497 -0.771 -0.138 0.130 0.053 -0.085 0.225 -0.232 -0.428 0.063 -0.266 0.465 0.821 -0.760 -0.448 -0.137 0.314 -0.382 -0.063 0.047 0.137 -0.683 0.155 0.219 -0.187 -0.312 -0.249 0.560 0.405 -0.242 -0.203 -0.056 0.493 -0.654 -0.451 0.293 0.182 -0.361 -0.082 0.191 -0.526 -0.616 -0.749 1.041 0.783 -0.777 -0.983 0.251 0.494 -0.381 -0.821 0.331 0.283 -0.622 -0.238 0.363 -0.014 -0.647 -0.668 0.801 0.503 -0.367 -0.468 0.117 0.271 0.015 -0.466 0.082 0.417 -0.452 -0.237 0.118 -0.199 0.153 -0.284 0.258 0.688 -0.620 -0.575 0.093 0.449 -0.209 -0.679 0.196 0.211 -0.064 -0.344 0.135 -0.238 -0.392 -0.043 0.505 0.330 -0.522 -0.522 0.433 0.477 -0.357 -0.759 0.306 0.363 -0.393 -0.573 0.357 -0.823 -0.431 -0.677 1.048 0.949 -1.038 -1.306 0.236 0.458 -0.472 -1.098 0.524 0.350 -0.009 -0.872 0.246 0.013 -0.871 -0.960 0.949 0.469 -0.505 -0.375 0.189 0.315 -0.302 -0.352 0.216 0.173 -0.359 -0.077 0.195 -0.219 -0.349 -0.188 0.564 0.719 -0.732 -0.633 0.147 0.351 -0.356 -0.690 0.404 0.052 0.288 -0.593 0.110 -0.245 -0.607 -0.504 0.844 0.500 -0.777 -0.927 0.562 0.603 -0.716 -0.548 0.249 0.406 -0.501 -0.638 0.406 -0.446 -0.605 -0.721 1.001 0.895 -0.848 -1.188 0.196 0.442 -0.317 -0.832 0.353 0.493 -0.348 -0.676 0.240 -0.180 -0.329 -0.832 0.815 0.634 -0.501 -0.393 -0.029 0.355 0.030 -0.355 -0.123 0.204 -0.195 -0.037 0.000 -0.176 0.035 -0.404 0.417 0.712 -0.810 -0.836 0.301 0.203 0.058 -0.485 0.129 0.142 0.440 -0.802 -0.050 -0.356 -0.082 -0.389 0.595 0.373 -0.338 -0.437 0.233 0.271 -0.366 -0.622 0.452 0.532 -0.393 -0.526 0.136 -0.578 0.047 -0.500 0.669 1.038 -1.051 -1.065 -0.021 0.511 -0.369 -0.407 0.065 0.600 -0.075 -0.805 -0.054 0.038 -0.558 -0.576 0.699 0.594 -0.311 -0.543 -0.003 0.319 -0.853 0.386 -0.165 0.180 -0.288 -0.170 0.213 -0.378 0.205 -0.266 0.318 0.958 -1.234 -0.363 -0.227 0.470 -0.298 -0.316 -0.003 0.358 -0.215 -0.325 0.082 -0.210 -0.551 0.032 0.516 0.317 -0.617 -0.156 0.269 0.497 -0.616 -0.403 0.238 0.363 -0.345 -0.717 0.399 -0.570 -0.401 -0.545 0.913 0.949 -1.093 -1.269 0.246 0.516 -0.404 -0.841 0.329 0.412 -0.438 -0.422 0.245 -0.268 -0.547 -0.781 0.929 0.742 -0.769 -0.287 -0.118 0.485 -0.179 -0.316 -0.130 0.565 -0.504 -0.224 -0.061 -0.209 -0.053 -0.286 0.434 0.909 -0.937 -0.754 0.011 0.306 0.332 -0.925 -0.031 0.473 -0.140 -0.641 0.089 -0.122 -0.469 -0.446 0.700 0.599 -0.792 -0.799 0.415 0.450 -0.228 -0.762 0.251 0.465 -0.265 -0.579 0.161 -0.705 -0.245 -0.653 0.931 Intron LUT 5 4 4 0 0.000 1.002 -1.241 -1.846 0.374 0.180 -0.311 -0.908 0.612 -0.158 -0.465 -0.814 0.857 -0.612 -0.583 -0.907 1.101 0.660 -0.547 -0.991 0.301 0.262 -0.161 -0.272 0.108 0.344 -0.499 -0.209 0.212 -0.125 -0.647 -0.391 0.750 0.878 -0.947 -0.625 -0.006 -0.135 0.102 -0.899 0.565 -0.035 -0.481 -0.621 0.728 -0.260 -1.031 -0.391 0.936 0.532 -0.856 -0.854 0.534 0.266 -0.566 0.103 0.069 0.207 -0.469 -0.518 0.511 -0.896 -0.685 -0.781 1.176 0.958 -1.027 -1.141 0.155 0.476 -0.147 -0.708 0.129 0.013 -0.735 -0.680 0.820 -0.225 -0.898 -0.675 0.987 0.769 -0.243 -0.864 -0.150 0.386 0.268 -0.547 -0.314 0.518 -0.484 -0.220 -0.007 0.370 -0.399 -0.446 0.281 0.802 -0.700 -0.476 -0.118 0.549 -0.438 -0.053 -0.260 0.177 -0.391 -0.312 0.380 -0.066 -0.478 -0.008 0.413 0.449 -0.138 -0.569 0.073 0.341 -0.244 -0.340 0.136 0.487 -0.758 -0.745 0.496 -0.725 -0.649 -0.572 1.060 1.168 -1.381 -1.056 -0.171 0.358 -0.237 -0.547 0.245 0.358 -0.110 -0.438 0.076 -0.104 -0.619 -0.730 0.861 0.614 -0.427 -0.515 0.036 0.215 -0.544 -0.418 0.491 0.247 -0.000 -0.045 -0.245 -0.155 -0.151 -0.340 0.497 0.914 -1.060 -0.487 -0.115 0.167 -0.191 -0.617 0.433 0.233 -0.895 0.105 0.277 0.457 -1.139 -0.324 0.459 0.485 -0.190 -0.432 -0.025 0.427 -0.620 -0.278 0.240 0.456 -0.563 -0.252 0.153 -0.581 -1.018 -0.564 1.112 0.858 -1.054 -1.288 0.374 0.563 -0.509 -0.725 0.281 0.323 -0.555 -0.299 0.328 0.024 -0.789 -0.844 0.886 0.773 -0.733 -0.525 -0.008 0.497 -0.241 -0.383 -0.035 0.956 -1.078 -0.111 -0.598 0.097 -0.165 -0.248 0.259 0.741 -0.720 -0.540 0.047 0.369 -0.268 -0.304 0.095 0.203 -0.190 -0.266 0.190 0.021 -0.899 -0.265 0.693 0.571 -0.709 -0.785 0.403 0.404 -0.137 -0.417 0.026 0.509 -0.271 -0.479 0.044 -0.997 -0.544 -0.895 1.186 1.182 -1.353 -1.845 0.086 0.453 -0.905 -0.908 0.645 0.296 -0.425 -0.719 0.506 -0.242 -1.495 -1.266 1.253 0.606 -0.368 -0.725 0.134 0.538 -0.454 -0.235 -0.046 0.314 -0.362 -0.403 0.290 -0.208 -0.538 -0.211 0.662 1.014 -1.074 -0.756 -0.131 0.239 -0.250 -0.516 0.356 -0.160 0.008 -0.816 0.615 0.320 -1.173 -0.387 0.626 0.622 -1.010 -0.591 0.379 0.614 -0.680 -0.474 0.171 0.334 -0.497 -0.372 0.331 -0.668 -1.114 -1.131 1.294 1.187 -1.263 -1.414 -0.103 0.132 -0.016 -0.289 0.134 0.554 -0.389 -0.460 0.057 -0.110 -0.491 -0.589 0.763 0.823 -0.404 -0.853 -0.119 0.159 0.339 -0.488 -0.143 0.269 0.166 -0.338 -0.182 0.311 -0.162 -0.298 0.073 0.880 -0.939 -0.838 0.109 0.089 0.375 -0.356 -0.222 0.547 0.302 -0.997 -0.314 0.340 -0.640 -0.360 0.393 0.728 -0.337 -0.331 -0.401 0.376 -0.177 -0.462 0.127 0.651 -0.183 -0.603 -0.167 -0.417 -0.280 -0.555 0.805 1.282 -1.783 -1.823 -0.006 0.736 -0.545 -0.583 -0.027 0.650 -0.461 -0.480 -0.017 -0.269 -1.762 -1.077 1.264 0.697 -0.748 -0.399 0.036 0.527 -0.494 -0.220 -0.014 0.155 0.139 -0.233 -0.098 -0.059 -0.256 -0.087 0.335 1.277 -1.695 -0.759 -0.563 1.103 -0.659 -0.844 -0.597 0.591 -0.758 -0.082 -0.063 0.235 -0.968 -0.141 0.491 0.735 -0.680 -0.299 -0.154 0.612 -0.904 -0.314 0.180 0.243 -0.540 0.108 0.072 -0.609 -0.718 -0.628 1.063 1.063 -1.154 -0.917 -0.102 0.860 -0.461 -0.975 -0.075 0.585 -0.708 -0.029 -0.139 0.052 -0.790 -0.567 0.774 0.956 -0.771 -0.691 -0.227 0.542 -0.305 -0.345 -0.079 0.449 -0.554 0.010 -0.079 0.049 -0.064 -0.355 0.295 1.186 -1.090 -1.083 -0.353 0.294 -0.006 -0.393 0.025 0.615 -0.201 -0.563 -0.118 0.636 -0.789 -0.387 0.141 0.701 -0.944 -0.315 0.072 0.512 -0.252 -1.070 0.332 0.476 -0.358 -0.412 0.107 -0.495 -0.545 -0.833 1.031 1.237 -1.592 -1.962 0.077 0.461 -0.451 -0.961 0.462 0.331 -0.347 -0.569 0.358 -0.320 -1.506 -1.243 1.278 0.725 -0.249 -0.787 -0.111 0.418 0.027 -0.496 -0.095 0.235 -0.153 -0.314 0.162 0.248 -0.896 -0.471 0.635 0.817 -0.683 -0.519 -0.124 0.344 -0.395 -0.768 0.467 0.233 -0.594 -0.458 0.521 -0.109 -1.183 -0.575 0.972 0.667 -1.029 -0.815 0.437 0.493 -0.643 -0.901 0.502 0.301 -0.526 -0.165 0.241 -0.884 -1.484 -1.478 1.455 1.117 -1.248 -1.345 0.024 0.592 -0.373 -0.571 0.067 0.415 -0.347 -0.202 0.016 -0.074 -0.770 -0.556 0.835 0.872 -0.344 -0.773 -0.328 0.748 -0.314 -0.440 -0.360 0.720 -0.650 0.256 -0.939 0.933 -0.944 -0.333 -0.365 0.939 -0.893 -0.616 -0.165 0.063 -0.125 0.055 -0.000 0.197 -0.017 -0.130 -0.072 0.077 -0.154 -0.216 0.245 0.667 -0.381 -0.576 -0.038 0.560 -0.206 -0.770 0.100 0.832 -0.522 -0.559 -0.242 0.192 -0.463 -0.634 0.573 1.229 -1.594 -1.250 -0.145 0.309 -0.163 -0.549 0.245 0.345 -0.146 -0.345 0.055 -0.403 -0.945 -0.741 1.088 1.213 -1.012 -0.836 -0.678 0.560 -1.033 -0.253 0.260 0.278 -0.112 0.192 -0.474 -0.395 -0.313 -0.436 0.761 0.902 -0.722 -0.496 -0.294 0.182 -0.375 -0.263 0.335 0.139 -0.808 0.150 0.285 0.066 -0.392 -0.421 0.531 0.645 -0.521 -0.197 -0.206 0.438 -0.428 -0.547 0.284 0.498 -0.680 -0.061 0.007 -0.263 -0.898 -1.056 1.104 0.630 -0.990 -0.103 0.025 0.090 -0.176 -0.502 0.427 0.166 -0.608 0.128 0.175 -0.057 -0.859 -0.446 0.810 0.728 -0.624 -0.558 0.022 0.374 0.191 -0.518 -0.211 0.537 -0.624 -0.057 -0.091 0.003 0.085 -0.361 0.212 0.603 -1.062 0.266 -0.321 0.377 -0.268 -0.434 0.177 0.082 -0.034 -0.257 0.174 -0.104 -0.371 -0.020 0.390 0.427 -0.475 -0.305 0.173 0.489 -0.414 -0.543 0.214 0.472 -0.449 -0.257 0.061 -0.822 -0.651 -0.674 1.118 1.148 -1.413 -1.509 0.079 0.342 -0.320 -1.026 0.527 0.112 0.070 -0.844 0.392 -0.110 -0.992 -1.023 1.056 0.536 -0.820 0.049 -0.076 0.159 -0.097 -0.277 0.167 0.146 -0.173 0.058 -0.050 -0.254 -0.592 0.118 0.498 0.892 -0.920 -0.644 -0.036 0.115 -0.310 -0.496 0.487 -0.211 0.614 -0.868 0.081 -0.272 -0.663 -0.557 0.896 0.475 -0.911 -0.644 0.525 0.536 -0.805 -0.224 0.165 0.395 -0.499 -0.430 0.304 -0.507 -0.784 -0.814 1.102 1.091 -1.154 -1.332 0.032 0.477 -0.373 -0.696 0.285 0.428 -0.250 -0.559 0.182 -0.002 -0.714 -0.576 0.783 0.720 -0.769 0.068 -0.479 0.321 -0.140 0.045 -0.302 0.311 -0.399 0.307 -0.388 0.184 -0.154 -0.305 0.209 0.791 -1.098 -0.934 0.356 0.175 0.024 -0.205 -0.020 0.127 0.490 -0.922 -0.035 -0.121 -0.485 -0.133 0.541 0.497 -0.360 -0.093 -0.197 0.464 -0.487 -0.313 0.140 0.748 -0.450 -0.433 -0.237 -0.339 -0.186 -0.405 0.656 1.256 -1.531 -1.316 -0.211 0.449 -0.351 -0.284 0.042 0.367 -0.130 -0.786 0.283 -0.054 -0.870 -0.583 0.866 0.757 -0.765 -0.259 -0.174 0.115 -1.081 0.705 -0.297 0.114 -0.254 -0.014 0.122 -0.276 0.022 -0.083 0.280 1.107 -1.335 -0.509 -0.421 0.307 0.025 -0.366 -0.044 0.261 -0.270 -0.289 0.207 0.009 -0.747 0.069 0.431 0.477 -1.024 0.226 -0.079 0.518 -0.687 -0.033 -0.045 0.432 -0.306 -0.567 0.224 -0.492 -0.638 -0.559 0.976 1.080 -1.154 -1.160 -0.015 0.474 -0.380 -0.500 0.183 0.254 -0.410 0.010 0.068 -0.119 -0.585 -0.724 0.854 0.701 -1.039 0.293 -0.593 0.663 -0.374 -0.103 -0.487 0.702 -0.624 -0.056 -0.390 0.113 -0.246 -0.109 0.199 1.042 -1.052 -0.684 -0.258 0.319 0.505 -0.924 -0.311 0.373 -0.001 -0.528 0.017 0.016 -0.478 -0.266 0.525 0.757 -0.881 -0.449 0.050 0.678 -0.269 -0.665 -0.090 0.558 -0.268 -0.344 -0.137 -0.729 -0.239 -0.704 0.953 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.167 -0.080 -0.798 0.440 0.216 -0.049 -0.906 0.420 0.227 -0.327 -0.943 0.596 0.137 -0.119 -0.536 0.367 0.170 0.079 -0.736 0.285 0.775 0.047 -0.798 -0.556 1.197 -0.893 -0.235 -1.651 0.946 -0.185 -0.851 -0.646 1.047 -0.335 -0.600 -1.056 1.998 -8.770 -8.770 -8.770 -8.770 -8.770 -8.770 1.998 -8.770 -8.770 1.998 -8.770 0.425 -0.360 0.082 -0.286 0.255 0.382 -0.484 -0.344 0.012 -0.012 -0.369 0.294 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.413 -0.259 0.022 -0.292 0.398 -0.360 -0.459 0.234 0.081 -0.450 -0.203 0.424 0.035 -0.308 0.193 0.035 0.662 -0.377 -0.958 0.181 0.318 -0.317 -0.958 0.522 -7.726 -7.726 -7.726 1.995 1.995 -7.726 -7.726 -7.726 1.995 -7.726 -7.726 -7.726 TAG WMM 9 6 4 0 0.000 0.391 -0.208 0.051 -0.346 0.223 -0.230 -0.230 0.174 0.207 -0.498 -0.043 0.223 0.347 -0.580 -0.083 0.157 0.736 -1.005 -0.860 0.362 -0.123 -0.275 -0.230 0.489 -6.253 -6.253 -6.253 1.986 1.986 -6.253 -6.253 -6.253 -6.253 -6.253 1.986 -6.253 TGA WMM 9 6 4 0 0.000 0.471 -0.529 0.042 -0.166 0.596 -0.585 -0.515 0.166 0.357 -0.515 -0.289 0.265 0.342 -0.361 -0.063 -0.005 0.723 -1.014 -0.817 0.364 -0.348 -0.254 -0.488 0.734 -7.243 -7.243 -7.243 1.993 -7.243 -7.243 1.993 -7.243 1.993 -7.243 -7.243 -7.243 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/nGASPr.hmm0000644000175000017500000013630611424066010015153 0ustar moellermoellerzoeHMM nGASP 8 16 8 8 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Repeat 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.963959 Inter Esngl 0.036041 Inter ORF 1 Inter Repeat 1 Intron Eterm 0.203134 Intron Exon 0.796866 Intron ORF 1 Intron Repeat 1 ORF Inter 1 ORF Intron 1 Repeat Inter 1 Repeat Intron 1 0.445697 0.286053 0.268249 0.624921 0.178233 0.196845 0.538905 0.252450 0.208646 0.589443 0.185924 0.224633 0.781178 0.218822 0.825891 0.174109 0.795549 0.204451 Einit 2 DEFINED 0 249 -9.357 -9.281 -9.210 -9.141 -9.076 -9.013 -8.953 -8.896 -8.840 -8.787 -8.736 -8.679 -8.625 -8.572 -8.522 -8.473 -8.425 -8.380 -8.335 -8.292 -8.250 -8.194 -8.140 -8.088 -8.037 -7.989 -7.942 -7.896 -7.852 -7.809 -7.768 -7.745 -7.723 -7.701 -7.680 -7.659 -7.638 -7.618 -7.597 -7.577 -7.558 -7.541 -7.524 -7.507 -7.491 -7.475 -7.458 -7.443 -7.427 -7.411 -7.396 -7.380 -7.364 -7.349 -7.333 -7.318 -7.303 -7.288 -7.273 -7.258 -7.244 -7.256 -7.269 -7.282 -7.295 -7.308 -7.321 -7.334 -7.347 -7.361 -7.375 -7.375 -7.376 -7.377 -7.377 -7.378 -7.379 -7.380 -7.380 -7.381 -7.382 -7.386 -7.390 -7.394 -7.399 -7.403 -7.407 -7.412 -7.416 -7.420 -7.425 -7.439 -7.453 -7.468 -7.482 -7.497 -7.512 -7.527 -7.543 -7.558 -7.574 -7.584 -7.595 -7.606 -7.616 -7.627 -7.638 -7.649 -7.660 -7.671 -7.683 -7.690 -7.698 -7.706 -7.714 -7.722 -7.730 -7.738 -7.747 -7.755 -7.763 -7.776 -7.790 -7.804 -7.817 -7.831 -7.845 -7.859 -7.874 -7.888 -7.903 -7.919 -7.936 -7.952 -7.969 -7.986 -8.003 -8.021 -8.039 -8.056 -8.075 -8.090 -8.106 -8.122 -8.138 -8.154 -8.170 -8.187 -8.203 -8.220 -8.237 -8.259 -8.281 -8.304 -8.327 -8.350 -8.374 -8.398 -8.422 -8.447 -8.473 -8.492 -8.512 -8.532 -8.553 -8.574 -8.595 -8.616 -8.638 -8.660 -8.683 -8.694 -8.705 -8.717 -8.728 -8.740 -8.752 -8.764 -8.776 -8.788 -8.800 -8.824 -8.848 -8.873 -8.898 -8.923 -8.949 -8.975 -9.002 -9.030 -9.058 -9.085 -9.113 -9.141 -9.170 -9.200 -9.230 -9.261 -9.292 -9.324 -9.357 -9.384 -9.411 -9.438 -9.467 -9.495 -9.525 -9.555 -9.585 -9.616 -9.648 -9.652 -9.655 -9.658 -9.662 -9.665 -9.669 -9.672 -9.676 -9.679 -9.683 -9.700 -9.718 -9.736 -9.754 -9.772 -9.791 -9.810 -9.829 -9.848 -9.868 -9.876 -9.884 -9.892 -9.900 -9.908 -9.916 -9.924 -9.932 -9.941 -9.949 -9.951 -9.953 -9.955 -9.957 -9.959 -9.962 -9.964 -9.966 -9.968 GEOMETRIC 250 -1 144 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.570 -10.471 -10.378 -10.291 -10.209 -10.131 -10.058 -9.987 -9.920 -9.857 -9.795 -9.762 -9.729 -9.698 -9.666 -9.636 -9.606 -9.577 -9.548 -9.520 -9.492 -9.462 -9.433 -9.404 -9.376 -9.348 -9.321 -9.294 -9.268 -9.242 -9.217 -9.167 -9.120 -9.073 -9.029 -8.985 -8.943 -8.902 -8.862 -8.824 -8.786 -8.768 -8.751 -8.734 -8.717 -8.700 -8.684 -8.667 -8.651 -8.635 -8.619 -8.590 -8.561 -8.532 -8.504 -8.477 -8.450 -8.424 -8.398 -8.373 -8.348 -8.331 -8.314 -8.297 -8.281 -8.264 -8.248 -8.232 -8.217 -8.201 -8.186 -8.175 -8.165 -8.155 -8.144 -8.134 -8.124 -8.114 -8.104 -8.095 -8.085 -8.068 -8.052 -8.036 -8.020 -8.004 -7.989 -7.973 -7.958 -7.943 -7.928 -7.909 -7.890 -7.872 -7.854 -7.836 -7.818 -7.801 -7.783 -7.766 -7.749 -7.751 -7.753 -7.755 -7.757 -7.758 -7.760 -7.762 -7.764 -7.766 -7.768 -7.771 -7.774 -7.777 -7.780 -7.784 -7.787 -7.790 -7.793 -7.797 -7.800 -7.802 -7.804 -7.806 -7.808 -7.809 -7.811 -7.813 -7.815 -7.817 -7.819 -7.832 -7.846 -7.860 -7.873 -7.887 -7.901 -7.915 -7.930 -7.944 -7.959 -7.961 -7.963 -7.965 -7.967 -7.969 -7.972 -7.974 -7.976 -7.978 -7.980 -7.981 -7.982 -7.983 -7.984 -7.985 -7.986 -7.987 -7.989 -7.990 -7.991 -7.987 -7.984 -7.981 -7.978 -7.975 -7.972 -7.968 -7.965 -7.962 -7.959 -7.960 -7.961 -7.962 -7.963 -7.964 -7.965 -7.966 -7.967 -7.968 -7.969 -7.981 -7.992 -8.003 -8.014 -8.026 -8.038 -8.049 -8.061 -8.073 -8.085 -8.106 -8.127 -8.148 -8.170 -8.192 -8.214 -8.237 -8.260 -8.283 -8.307 -8.340 -8.374 -8.409 -8.444 -8.481 -8.518 -8.557 -8.596 -8.637 -8.678 -8.699 -8.720 -8.742 -8.764 -8.786 -8.809 -8.831 -8.855 -8.878 -8.902 -8.927 -8.952 -8.977 -9.003 -9.029 -9.055 -9.083 -9.110 -9.138 -9.167 -9.165 -9.162 -9.160 -9.158 -9.155 -9.153 -9.150 -9.148 -9.146 -9.143 -9.155 -9.167 -9.179 -9.192 -9.204 -9.217 -9.229 -9.242 -9.255 GEOMETRIC 250 -1 198 Exon 2 DEFINED 0 249 -14.725 -14.314 -13.994 -13.733 -13.512 -13.320 -13.150 -12.999 -12.862 -12.737 -12.621 -12.395 -12.200 -12.028 -11.874 -11.735 -11.608 -11.492 -11.384 -11.284 -11.190 -11.019 -10.866 -10.728 -10.602 -10.486 -10.378 -10.278 -10.185 -10.097 -10.014 -9.894 -9.783 -9.680 -9.584 -9.493 -9.408 -9.328 -9.252 -9.180 -9.111 -9.037 -8.966 -8.898 -8.834 -8.772 -8.712 -8.656 -8.601 -8.548 -8.497 -8.443 -8.390 -8.339 -8.290 -8.243 -8.197 -8.153 -8.109 -8.068 -8.027 -7.997 -7.968 -7.940 -7.912 -7.884 -7.857 -7.831 -7.805 -7.779 -7.754 -7.740 -7.726 -7.712 -7.698 -7.684 -7.670 -7.656 -7.643 -7.630 -7.616 -7.602 -7.588 -7.574 -7.560 -7.547 -7.533 -7.520 -7.506 -7.493 -7.480 -7.472 -7.465 -7.458 -7.450 -7.443 -7.436 -7.428 -7.421 -7.414 -7.407 -7.412 -7.418 -7.424 -7.429 -7.435 -7.441 -7.446 -7.452 -7.458 -7.464 -7.469 -7.474 -7.479 -7.484 -7.489 -7.494 -7.499 -7.504 -7.509 -7.515 -7.529 -7.543 -7.558 -7.573 -7.588 -7.603 -7.618 -7.634 -7.649 -7.665 -7.686 -7.706 -7.728 -7.749 -7.771 -7.793 -7.815 -7.838 -7.861 -7.884 -7.902 -7.920 -7.938 -7.957 -7.976 -7.995 -8.014 -8.034 -8.053 -8.073 -8.087 -8.100 -8.113 -8.127 -8.140 -8.154 -8.168 -8.182 -8.196 -8.210 -8.228 -8.246 -8.264 -8.282 -8.301 -8.319 -8.338 -8.358 -8.377 -8.397 -8.406 -8.415 -8.423 -8.432 -8.441 -8.451 -8.460 -8.469 -8.478 -8.488 -8.499 -8.511 -8.524 -8.536 -8.548 -8.560 -8.573 -8.586 -8.598 -8.611 -8.626 -8.641 -8.657 -8.672 -8.688 -8.704 -8.720 -8.736 -8.753 -8.769 -8.785 -8.800 -8.815 -8.831 -8.847 -8.863 -8.879 -8.896 -8.912 -8.929 -8.944 -8.959 -8.975 -8.990 -9.006 -9.022 -9.038 -9.055 -9.071 -9.088 -9.095 -9.102 -9.109 -9.116 -9.123 -9.130 -9.137 -9.145 -9.152 -9.159 -9.162 -9.164 -9.166 -9.169 -9.171 -9.174 -9.176 -9.179 -9.181 -9.184 -9.191 -9.199 -9.206 -9.214 -9.221 -9.229 -9.237 -9.244 -9.252 GEOMETRIC 250 -1 201 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 324 ORF 2 DEFINED 0 249 -14.725 -14.314 -13.994 -13.733 -13.512 -13.320 -13.150 -12.999 -12.862 -12.737 -12.621 -12.395 -12.200 -12.028 -11.874 -11.735 -11.608 -11.492 -11.384 -11.284 -11.190 -11.019 -10.866 -10.728 -10.602 -10.486 -10.378 -10.278 -10.185 -10.097 -10.014 -9.894 -9.783 -9.680 -9.584 -9.493 -9.408 -9.328 -9.252 -9.180 -9.111 -9.037 -8.966 -8.898 -8.834 -8.772 -8.712 -8.656 -8.601 -8.548 -8.497 -8.443 -8.390 -8.339 -8.290 -8.243 -8.197 -8.153 -8.109 -8.068 -8.027 -7.997 -7.968 -7.940 -7.912 -7.884 -7.857 -7.831 -7.805 -7.779 -7.754 -7.740 -7.726 -7.712 -7.698 -7.684 -7.670 -7.656 -7.643 -7.630 -7.616 -7.602 -7.588 -7.574 -7.560 -7.547 -7.533 -7.520 -7.506 -7.493 -7.480 -7.472 -7.465 -7.458 -7.450 -7.443 -7.436 -7.428 -7.421 -7.414 -7.407 -7.412 -7.418 -7.424 -7.429 -7.435 -7.441 -7.446 -7.452 -7.458 -7.464 -7.469 -7.474 -7.479 -7.484 -7.489 -7.494 -7.499 -7.504 -7.509 -7.515 -7.529 -7.543 -7.558 -7.573 -7.588 -7.603 -7.618 -7.634 -7.649 -7.665 -7.686 -7.706 -7.728 -7.749 -7.771 -7.793 -7.815 -7.838 -7.861 -7.884 -7.902 -7.920 -7.938 -7.957 -7.976 -7.995 -8.014 -8.034 -8.053 -8.073 -8.087 -8.100 -8.113 -8.127 -8.140 -8.154 -8.168 -8.182 -8.196 -8.210 -8.228 -8.246 -8.264 -8.282 -8.301 -8.319 -8.338 -8.358 -8.377 -8.397 -8.406 -8.415 -8.423 -8.432 -8.441 -8.451 -8.460 -8.469 -8.478 -8.488 -8.499 -8.511 -8.524 -8.536 -8.548 -8.560 -8.573 -8.586 -8.598 -8.611 -8.626 -8.641 -8.657 -8.672 -8.688 -8.704 -8.720 -8.736 -8.753 -8.769 -8.785 -8.800 -8.815 -8.831 -8.847 -8.863 -8.879 -8.896 -8.912 -8.929 -8.944 -8.959 -8.975 -8.990 -9.006 -9.022 -9.038 -9.055 -9.071 -9.088 -9.095 -9.102 -9.109 -9.116 -9.123 -9.130 -9.137 -9.145 -9.152 -9.159 -9.162 -9.164 -9.166 -9.169 -9.171 -9.174 -9.176 -9.179 -9.181 -9.184 -9.191 -9.199 -9.206 -9.214 -9.221 -9.229 -9.237 -9.244 -9.252 GEOMETRIC 250 -1 201 Repeat 1 CONSTANT 0 -1 0 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.383 -0.552 -1.368 0.702 0.390 -0.548 -1.415 0.705 0.588 -0.563 -1.605 0.577 0.709 -1.046 -1.637 0.641 0.716 -1.616 -1.773 0.797 0.082 -1.527 -1.729 1.197 -2.118 -2.905 -3.527 1.828 -4.974 -3.743 -5.733 1.954 -1.738 -0.358 -1.531 1.364 -2.980 1.740 -6.019 -0.949 1.999 -11.019 -11.019 -11.019 -11.019 -11.019 1.999 -11.019 0.838 -0.724 0.182 -1.084 0.260 -0.375 -0.774 0.533 0.332 -0.101 -0.532 0.160 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.343 -0.623 -0.098 0.200 0.077 -0.217 -0.762 0.580 0.381 -0.191 -1.394 0.527 -1.352 0.014 0.230 0.512 0.876 -0.996 -0.094 -0.461 0.931 -1.218 -0.342 -0.193 0.606 -0.733 -0.368 0.139 -0.677 -0.201 -0.059 0.628 0.511 -0.721 -0.111 0.060 0.153 -0.114 -0.873 0.504 1.218 -0.817 -1.329 -0.499 -0.872 -0.306 0.091 0.660 -9.022 0.715 -9.022 1.236 0.225 -0.324 -0.063 0.104 -9.179 0.156 0.663 0.379 -1.124 0.296 0.042 0.360 0.213 -0.328 0.040 0.023 0.214 -0.121 -0.533 0.298 0.328 -0.119 -1.286 0.500 -1.486 0.035 0.079 0.643 0.615 -0.463 -0.130 -0.271 0.802 -1.050 0.199 -0.678 0.210 -0.038 -0.786 0.366 -0.689 0.057 0.233 0.219 -0.026 -0.388 0.200 0.145 -0.022 0.068 -0.200 0.133 1.098 -0.731 -0.802 -0.548 -1.316 0.194 0.356 0.232 -8.936 1.034 -8.936 0.962 0.043 -0.528 0.293 0.072 -8.615 0.413 0.457 0.371 -1.697 0.163 0.329 0.396 0.266 -0.982 0.585 -0.337 0.126 -0.306 -0.181 0.284 0.651 0.077 -0.872 -0.271 -1.522 -0.121 0.301 0.586 0.563 -0.713 0.289 -0.534 0.839 -1.183 0.003 -0.380 0.442 -0.760 -0.124 0.181 -1.339 0.302 0.152 0.334 0.278 -1.021 0.189 0.208 -0.110 -0.488 -0.139 0.539 1.215 -0.910 -1.280 -0.445 -1.478 -0.220 0.274 0.654 -8.544 1.043 -8.544 0.952 0.218 -0.722 0.221 0.092 -8.147 0.275 0.357 0.591 -1.439 0.141 0.178 0.482 0.264 -0.648 -0.145 0.329 0.331 -0.530 -0.452 0.399 0.368 -0.459 -1.044 0.582 -1.350 -0.313 0.156 0.756 0.539 -0.723 0.039 -0.131 0.895 -1.263 -0.032 -0.424 0.633 -0.726 -0.505 0.189 -0.652 -0.041 -0.118 0.556 0.195 -0.697 -0.024 0.328 0.252 -0.534 -0.597 0.543 1.137 -1.063 -0.987 -0.290 -0.823 -0.464 0.265 0.592 -8.873 0.515 -8.873 1.360 0.234 -0.411 -0.132 0.213 -8.972 0.223 0.482 0.520 -0.927 -0.040 0.333 0.313 0.576 -0.859 -0.309 0.202 0.415 -0.788 -0.725 0.568 0.613 -0.368 -1.193 0.331 -1.141 -0.335 0.182 0.695 0.743 -0.865 -0.059 -0.290 1.061 -1.675 -0.116 -0.560 0.334 -0.776 -0.630 0.594 -0.934 -0.426 0.057 0.759 0.638 -0.840 -0.333 0.125 0.330 -0.553 -0.828 0.583 1.281 -0.701 -1.292 -0.873 -0.592 -0.487 -0.039 0.722 -8.429 0.562 -8.429 1.332 0.505 -0.620 -0.259 0.131 -8.371 0.168 0.621 0.417 -1.073 0.282 -0.160 0.500 0.134 -0.026 0.028 -0.151 0.271 0.074 -0.409 -0.017 0.329 0.048 -1.152 0.333 -1.130 0.433 0.092 0.173 0.661 -0.666 -0.135 -0.188 1.205 -1.628 -0.264 -0.894 0.014 -0.011 -0.883 0.542 -0.438 0.184 0.090 0.086 0.153 -0.331 0.036 0.095 -0.150 0.609 -1.070 0.133 0.985 -0.270 -1.209 -0.398 -0.741 0.513 -0.287 0.208 -8.260 1.236 -8.260 0.712 0.262 0.006 -0.141 -0.168 -7.713 0.492 0.521 0.206 -1.119 0.720 -0.068 -0.091 0.644 -1.032 -0.178 0.091 0.379 -1.049 0.123 0.172 0.606 -0.047 -0.908 -0.033 -1.242 -0.392 0.143 0.775 0.588 -0.898 0.157 -0.243 0.678 -1.362 0.444 -0.619 0.311 -0.379 -0.241 0.194 -0.987 -0.227 0.581 0.196 0.375 -0.971 -0.079 0.317 0.017 -0.763 0.135 0.380 1.093 -0.474 -1.302 -0.431 -0.806 -0.509 0.308 0.572 -7.695 0.768 -7.695 1.194 0.497 -1.065 0.241 -0.106 -7.869 0.126 0.595 0.480 -1.526 0.033 0.373 0.416 0.526 -0.554 -0.300 0.094 0.587 -0.380 -0.855 0.234 0.538 -0.198 -1.140 0.290 -0.880 -0.052 -0.103 0.642 0.765 -0.713 -0.237 -0.247 1.108 -1.742 -0.150 -0.634 0.376 -0.452 -0.885 0.515 -0.774 0.007 -0.139 0.587 0.604 -0.803 -0.497 0.261 0.376 -0.380 -1.095 0.551 1.300 -1.039 -1.577 -0.483 -0.171 -0.202 -0.133 0.412 -8.003 0.593 -8.003 1.312 0.380 -0.272 -0.783 0.367 -8.232 0.411 0.223 0.585 -0.750 0.027 0.122 0.377 0.598 -0.688 -0.370 0.128 0.383 -0.280 -1.040 0.471 0.638 -0.294 -1.233 0.267 -1.299 0.026 0.163 0.542 0.681 -0.652 -0.175 -0.194 1.152 -1.235 -0.536 -0.594 0.343 -0.784 -0.294 0.417 -0.798 -0.012 -0.435 0.760 0.448 -0.696 -0.261 0.243 0.429 0.228 -1.878 0.276 1.195 -0.937 -1.559 -0.235 -0.841 -0.057 -0.609 0.868 -8.247 0.608 -8.247 1.304 0.268 -0.008 -0.509 0.136 -8.208 0.346 0.464 0.428 -1.094 0.445 -0.329 0.459 0.291 -0.278 -0.021 -0.050 0.607 0.020 -0.846 -0.142 0.348 -0.035 -1.319 0.434 -1.315 0.229 -0.033 0.534 0.655 -0.345 -0.143 -0.448 0.965 -0.942 -0.011 -0.902 0.348 -0.219 -0.695 0.322 -0.286 0.058 -0.029 0.213 0.097 -0.363 0.087 0.126 -0.213 0.417 -0.603 0.194 0.846 -0.256 -1.112 -0.148 -0.994 0.401 -0.221 0.401 -7.850 1.078 -7.850 0.911 0.278 0.081 -0.176 -0.243 -7.581 0.373 0.430 0.436 -1.159 0.760 -0.236 0.014 0.591 -0.994 0.068 -0.084 0.353 -0.498 -0.448 0.358 0.549 0.118 -0.563 -0.368 -1.125 -0.096 0.131 0.595 0.547 -0.659 0.095 -0.256 0.641 -1.011 -0.033 -0.048 0.092 -0.424 0.135 0.125 -1.240 0.489 -0.298 0.443 0.310 -0.883 -0.100 0.361 0.065 -0.906 -0.152 0.604 1.081 -0.875 -1.208 -0.143 -0.641 -0.551 0.130 0.662 -7.090 1.029 -7.090 0.960 0.359 -0.442 -0.009 -0.018 -7.122 0.068 0.493 0.620 -1.060 0.318 -0.261 0.525 0.471 -0.238 -0.701 0.202 0.416 -0.186 -0.680 0.217 0.597 -0.355 -1.423 0.415 -1.152 -0.175 0.020 0.723 0.647 -0.753 -0.127 -0.112 0.990 -0.863 -0.251 -0.681 0.322 -0.478 -0.737 0.518 -0.646 0.093 -0.302 0.569 0.431 -0.541 -0.439 0.295 0.391 -0.327 -1.142 0.524 1.117 -0.778 -1.596 -0.125 -0.609 0.145 -0.097 0.383 -7.752 0.720 -7.752 1.229 0.419 -0.410 -0.325 0.153 -7.656 0.304 0.431 0.498 -0.852 0.146 -0.022 0.438 0.611 -0.581 -0.395 0.062 0.453 -0.217 -1.112 0.388 0.658 -0.148 -0.965 0.010 -0.844 -0.120 0.001 0.606 0.665 -0.622 -0.099 -0.267 0.752 -0.733 -0.261 -0.185 0.548 -0.547 -0.043 -0.179 -0.397 -0.177 -0.044 0.471 0.477 -0.648 -0.426 0.294 0.427 -0.202 -0.871 0.309 1.044 -0.249 -1.377 -0.492 -0.709 -0.156 -0.247 0.721 -7.498 0.851 -7.498 1.128 0.612 -0.346 -0.372 -0.133 -7.745 0.445 0.573 0.198 -1.088 0.512 -0.435 0.448 0.237 -0.165 -0.050 -0.055 0.327 0.143 -0.956 0.172 0.457 0.052 -1.473 0.299 -1.224 0.331 -0.082 0.454 0.706 -0.387 -0.181 -0.470 0.989 -1.044 -0.110 -0.728 0.379 -0.154 -1.085 0.411 -0.618 0.204 -0.021 0.276 0.123 -0.249 -0.037 0.130 -0.081 0.558 -0.892 0.062 1.043 -0.314 -1.284 -0.465 -1.141 0.580 -0.246 0.273 -9.151 1.367 -9.151 0.504 0.171 0.214 -0.249 -0.196 -8.632 0.563 0.474 0.178 -1.540 0.916 -0.242 -0.114 0.501 -0.656 0.061 -0.142 0.517 -0.590 -0.247 0.087 0.623 0.327 -1.102 -0.435 -0.971 -0.184 0.276 0.485 0.670 -0.639 0.015 -0.403 0.937 -1.326 0.009 -0.555 0.588 -0.774 -0.235 0.088 -1.113 0.783 -0.172 -0.105 0.419 -0.919 -0.021 0.200 0.271 -0.654 -0.450 0.512 1.032 -0.417 -1.493 -0.233 -0.585 -0.254 0.132 0.484 -8.375 1.097 -8.375 0.892 0.453 -0.549 -0.052 -0.025 -8.468 0.710 0.219 0.260 -1.221 0.604 -0.074 0.139 0.453 -0.551 -0.320 0.197 0.376 -0.153 -0.773 0.284 0.521 -0.237 -1.200 0.357 -1.021 -0.003 -0.060 0.632 0.741 -0.729 -0.259 -0.169 1.019 -0.998 -0.298 -0.600 0.590 -0.557 -0.627 0.224 -0.619 0.228 -0.202 0.388 0.386 -0.665 -0.300 0.322 0.314 -0.183 -0.893 0.420 1.142 -0.666 -1.343 -0.380 -0.608 -0.101 0.174 0.360 -8.811 0.617 -8.811 1.300 0.321 -0.023 -0.550 0.115 -9.122 0.298 0.493 0.445 -0.842 0.291 0.173 0.126 frame1 LUT 5 4 4 0 0.000 0.152 -0.257 0.185 -0.128 0.214 -0.499 0.081 0.104 0.352 -0.165 -0.120 -0.133 -0.368 -0.131 0.553 -0.243 0.547 -0.472 -0.216 -0.063 0.422 -0.854 0.468 -0.467 0.491 -0.738 0.002 -0.009 -0.297 -0.001 0.469 -0.317 0.539 -0.618 0.126 -0.315 0.273 -0.169 -0.349 0.159 0.787 -0.083 -0.413 -0.789 -0.350 -0.443 0.662 -0.157 0.461 -0.692 -0.442 0.343 0.424 -0.599 0.367 -0.497 0.299 -0.301 0.195 -0.298 -0.706 0.032 0.543 -0.140 0.187 -0.046 0.081 -0.260 0.203 -0.846 0.366 0.005 0.234 0.106 -0.116 -0.277 -0.494 0.238 0.103 0.051 0.186 0.106 0.036 -0.395 0.241 -0.265 0.561 -0.970 0.381 -0.286 0.264 -0.565 -0.471 0.172 0.514 -0.466 0.307 -0.361 0.201 -0.261 0.049 0.231 0.212 -0.659 0.558 -0.093 0.062 -0.872 -0.820 0.221 0.788 -0.887 0.107 -0.047 -0.196 0.114 0.345 -0.414 0.271 -0.371 0.523 -0.359 0.265 -0.782 -1.073 0.417 0.288 -0.046 0.229 -0.727 0.628 -0.560 0.311 -0.914 0.417 -0.163 0.154 0.154 0.055 -0.442 -0.411 -0.250 0.651 -0.256 0.382 -0.556 0.251 -0.275 0.405 -0.689 0.557 -0.775 0.454 -0.569 0.209 -0.321 -0.695 0.227 0.510 -0.344 0.260 -0.523 0.286 -0.172 0.096 -0.109 0.171 -0.187 0.339 0.257 -0.383 -0.371 -0.908 -0.101 0.869 -0.497 0.113 -0.321 0.068 0.097 0.533 -0.829 0.301 -0.398 0.496 -0.510 0.190 -0.422 -0.748 0.049 0.510 -0.079 0.000 0.000 0.000 0.000 0.370 -0.470 0.152 -0.193 0.000 0.000 0.000 0.000 -0.594 -0.009 0.286 0.169 0.473 -0.455 0.006 -0.188 0.441 -0.487 0.278 -0.480 0.623 -0.687 0.155 -0.463 -0.551 -0.015 0.572 -0.250 0.000 0.000 0.000 0.000 0.332 -0.090 -0.263 -0.047 0.546 -0.321 0.030 -0.477 -0.553 -0.262 0.698 -0.214 0.392 -0.618 -0.223 0.239 0.362 -0.343 0.055 -0.172 0.553 -0.771 0.364 -0.600 -0.670 -0.278 0.550 0.114 0.581 -0.625 -0.024 -0.197 0.418 -0.801 0.097 0.030 0.433 -0.263 0.014 -0.309 -0.175 -0.203 0.410 -0.126 0.630 -0.580 -0.174 -0.156 0.505 -0.741 0.348 -0.495 0.282 -0.740 -0.056 0.290 -0.460 -0.327 0.537 0.035 0.761 -0.994 0.146 -0.522 0.474 -0.685 0.087 -0.109 0.761 -0.119 -0.333 -0.760 -0.306 -0.415 0.557 -0.045 0.496 -0.755 -0.196 0.169 0.510 -0.643 0.242 -0.409 0.433 -0.520 0.100 -0.182 -0.762 -0.078 0.493 0.078 0.303 -0.105 -0.038 -0.214 0.180 -0.419 0.399 -0.320 0.357 0.103 -0.156 -0.420 -0.410 0.314 0.149 -0.160 0.251 -0.250 0.109 -0.167 0.353 -0.506 0.474 -0.668 0.395 -0.625 0.345 -0.384 -0.342 -0.004 0.598 -0.515 0.536 -0.507 0.030 -0.277 -0.070 0.357 0.006 -0.391 0.547 0.109 -0.127 -0.876 -0.482 0.326 0.439 -0.566 0.200 -0.084 -0.143 0.004 0.184 -0.230 0.178 -0.184 0.471 -0.334 0.172 -0.526 -0.684 0.581 0.311 -0.642 0.418 -0.795 0.383 -0.351 0.305 -1.022 0.491 -0.207 0.394 -0.154 0.075 -0.447 -0.370 -0.268 0.565 -0.125 0.501 -0.722 0.067 -0.104 0.259 -0.897 0.674 -0.575 0.441 -0.930 0.015 0.148 -0.793 -0.076 0.802 -0.452 0.456 -0.925 0.437 -0.419 0.020 -0.408 0.503 -0.293 0.520 -0.012 -0.544 -0.171 -0.645 -0.263 0.780 -0.304 0.229 -0.276 0.115 -0.122 0.342 -0.991 0.539 -0.365 0.225 -0.566 0.493 -0.417 -0.807 0.070 0.538 -0.110 0.000 0.000 0.000 0.000 0.453 -0.487 0.113 -0.258 0.000 0.000 0.000 0.000 -0.389 -0.064 0.368 -0.016 0.660 -0.508 -0.615 0.089 0.523 -0.452 0.139 -0.452 0.423 -0.755 0.203 -0.127 -0.436 -0.047 0.540 -0.254 0.000 0.000 0.000 0.000 0.337 -0.210 -0.251 0.045 0.649 -0.354 -0.158 -0.408 -0.140 -0.383 0.690 -0.491 0.330 -0.411 -0.612 0.418 0.459 -0.259 -0.255 -0.072 0.497 -0.615 0.330 -0.559 -0.700 -0.600 0.732 0.089 0.711 -0.579 -0.119 -0.371 0.652 -0.681 -0.092 -0.208 0.598 0.035 -0.118 -0.888 0.021 -0.133 0.311 -0.264 0.566 -0.216 -0.095 -0.469 0.328 -0.346 0.419 -0.688 0.469 -0.692 0.117 -0.132 -0.278 -0.077 0.509 -0.316 0.810 -0.770 -0.098 -0.463 0.766 -0.208 -0.939 -0.132 0.842 -0.357 -0.229 -0.802 -0.090 -0.378 0.474 -0.149 0.461 -0.563 -0.163 0.074 0.589 -0.419 -0.035 -0.375 0.497 -0.394 0.245 -0.638 -0.578 0.098 0.386 -0.070 0.370 -0.096 -0.028 -0.338 0.655 -0.748 0.065 -0.352 0.439 0.181 -0.345 -0.466 -0.230 0.105 0.066 0.036 0.493 -0.132 0.006 -0.565 0.550 -0.579 0.523 -1.218 0.581 -0.519 0.255 -0.707 -0.117 -0.136 0.638 -0.709 0.589 -0.376 -0.108 -0.327 0.187 0.274 -0.040 -0.557 0.626 0.134 -0.288 -0.888 -0.513 0.434 0.308 -0.495 0.287 -0.204 0.083 -0.229 0.652 -0.474 -0.008 -0.486 0.687 -0.598 0.273 -0.941 -0.556 0.471 0.166 -0.301 0.600 -0.895 0.319 -0.516 0.569 -0.869 0.220 -0.314 0.540 0.090 -0.069 -0.919 -0.096 -0.133 0.338 -0.170 0.712 -0.530 0.015 -0.602 0.442 -0.979 0.643 -0.805 0.574 -0.798 0.338 -0.573 -0.627 0.578 0.272 -0.616 0.522 -0.728 0.086 -0.154 0.266 -0.543 0.180 -0.031 0.620 -0.155 -0.263 -0.451 -0.294 0.050 0.585 -0.623 0.054 -0.280 0.144 0.048 0.596 -0.662 0.094 -0.342 0.347 -0.330 0.271 -0.461 -0.332 0.196 0.127 -0.047 0.000 0.000 0.000 0.000 0.574 -0.502 -0.160 -0.136 0.000 0.000 0.000 0.000 -0.233 -0.140 0.184 0.145 0.365 -0.293 -0.020 -0.137 0.461 -0.299 0.102 -0.439 0.501 -0.556 0.228 -0.448 -0.378 0.008 0.443 -0.209 0.000 0.000 0.000 0.000 0.524 -0.118 -0.581 -0.041 0.585 -0.223 -0.174 -0.401 -0.050 -0.213 0.520 -0.440 0.319 -0.461 -0.046 0.081 0.574 -0.261 -0.294 -0.215 0.578 -0.791 0.354 -0.619 -0.378 -0.314 0.431 0.108 0.562 -0.692 0.114 -0.282 0.479 -0.575 -0.018 -0.078 0.532 -0.003 0.061 -0.963 -0.014 -0.116 0.284 -0.203 0.646 -0.431 -0.089 -0.408 0.599 -0.784 0.294 -0.559 0.442 -0.653 0.394 -0.532 -0.220 -0.159 0.535 -0.329 0.737 -0.799 -0.025 -0.368 0.665 -0.501 -0.429 -0.052 0.861 0.052 -0.677 -0.937 -0.248 -0.168 0.445 -0.142 0.550 -0.656 -0.252 0.086 0.774 -0.835 0.170 -0.725 0.367 -0.367 0.395 -0.690 -0.525 0.087 0.504 -0.278 0.373 -0.202 -0.019 -0.237 0.374 -0.727 0.173 -0.041 0.446 0.051 -0.142 -0.523 -0.258 0.121 0.055 0.052 0.379 -0.221 0.081 -0.350 0.359 -0.641 0.604 -0.849 0.578 -0.614 0.132 -0.400 -0.598 0.049 0.672 -0.491 0.510 -0.709 0.130 -0.202 0.318 0.113 0.016 -0.599 0.641 0.029 -0.274 -0.755 -0.648 0.379 0.484 -0.594 0.023 0.111 0.041 -0.192 0.417 -0.407 0.257 -0.483 0.577 -0.440 0.237 -0.755 -0.906 0.532 0.351 -0.425 0.531 -0.834 0.454 -0.679 0.518 -1.084 0.408 -0.378 0.575 0.122 -0.060 -1.112 -0.079 -0.351 0.563 -0.337 0.605 -0.411 -0.088 -0.348 0.573 -0.966 0.430 -0.615 0.515 -0.890 0.321 -0.354 -0.709 0.569 0.346 -0.657 0.585 -0.970 0.219 -0.276 0.138 -0.399 0.127 0.069 0.601 0.090 -0.567 -0.427 -0.589 -0.279 0.773 -0.319 0.337 -0.207 -0.063 -0.132 0.650 -0.814 0.196 -0.482 0.618 -0.322 0.098 -0.749 -0.489 0.152 0.457 -0.317 0.000 0.000 0.000 0.000 0.525 -0.588 0.088 -0.264 0.000 0.000 0.000 0.000 -0.236 -0.082 0.327 -0.071 0.691 -0.520 -0.256 -0.233 0.618 -0.508 0.171 -0.654 0.443 -0.877 0.372 -0.318 -0.457 0.037 0.554 -0.363 0.000 0.000 0.000 0.000 0.410 -0.118 -0.308 -0.086 0.520 -0.304 -0.017 -0.381 -0.166 -0.254 0.678 -0.577 0.371 -0.450 -0.228 0.164 0.441 -0.405 -0.013 -0.159 0.639 -0.758 0.383 -0.870 -0.391 -0.265 0.693 -0.342 frame2 LUT 5 4 4 0 0.000 0.559 -0.371 -0.947 0.305 0.134 -0.213 -0.221 0.241 0.622 -0.175 -0.831 0.018 -0.663 0.210 -0.410 0.545 0.693 -0.260 -0.940 0.038 0.306 -0.104 -0.503 0.173 0.738 -0.367 -0.373 -0.350 -0.249 0.099 -0.670 0.545 1.037 -0.697 -0.928 -0.312 0.227 -0.089 -0.827 0.407 1.086 -0.242 -1.095 -0.830 -0.350 -0.124 -0.767 0.774 0.455 -0.589 -0.966 0.538 0.345 -0.056 -0.338 -0.034 0.520 -0.285 -0.223 -0.171 -1.046 0.141 -0.754 0.864 0.290 -0.018 -0.960 0.351 -0.038 0.246 -0.963 0.408 0.475 -0.177 -1.057 0.316 -0.993 0.286 -0.876 0.794 0.539 0.209 -1.074 -0.127 0.406 -0.039 -0.601 0.060 0.713 -0.233 -0.383 -0.429 0.059 0.194 -0.542 0.173 0.593 -0.164 -0.948 0.113 0.007 0.428 -1.300 0.314 0.861 -0.050 -1.111 -0.407 -1.038 0.386 -0.413 0.541 -0.119 0.370 -1.140 0.415 0.257 0.298 -0.887 0.050 0.407 -0.116 -0.360 -0.041 -1.068 0.434 -0.553 0.575 0.572 -0.585 -0.231 -0.007 0.437 -0.089 -0.327 -0.137 0.683 0.001 -0.700 -0.360 -0.485 0.282 -0.519 0.456 0.559 -0.226 -0.358 -0.166 0.355 -0.026 -0.376 -0.046 0.855 -0.573 -0.278 -0.529 -0.481 0.617 -0.950 0.301 0.779 -0.741 -0.591 0.032 0.265 -0.279 -0.864 0.511 1.200 -0.577 -1.498 -0.561 -0.416 -0.026 -0.538 0.660 0.234 -0.064 -0.713 0.330 0.448 -0.341 -0.456 0.161 0.506 -0.371 -0.260 -0.041 -0.760 0.070 -0.715 0.808 0.404 -0.334 -1.225 0.542 0.242 0.160 -0.996 0.262 0.481 -0.074 -1.069 0.236 -1.172 0.269 -1.202 0.939 0.710 -0.196 -0.869 -0.084 0.173 -0.227 -0.160 0.168 0.887 -0.374 -0.436 -0.645 -0.111 0.308 -0.746 0.310 0.564 -0.438 -0.682 0.214 0.297 -0.071 -0.901 0.361 0.712 -0.099 -0.657 -0.333 -0.558 0.202 -0.500 0.549 0.212 -0.426 -1.110 0.708 0.195 -0.046 -0.500 0.238 0.525 -0.147 -0.456 -0.106 -1.094 0.197 -0.682 0.817 0.667 -0.591 -1.252 0.410 0.606 -0.356 -0.816 0.174 0.557 -0.149 -0.559 -0.077 -0.644 0.001 -0.457 0.706 0.731 -0.418 -0.880 0.068 0.381 -0.309 -0.195 0.025 0.613 -0.403 -0.443 -0.032 -0.363 0.076 -0.591 0.589 0.900 -0.609 -0.859 -0.111 0.691 -0.285 -1.229 0.187 0.922 0.121 -0.908 -1.044 -0.411 -0.315 -0.473 0.785 0.389 -0.384 -1.012 0.514 0.538 -0.180 -0.447 -0.103 0.462 -0.323 -0.241 -0.034 -0.966 -0.072 -0.885 0.997 0.466 -0.066 -0.987 0.213 -0.009 0.605 -0.805 -0.131 0.415 0.106 -0.711 -0.030 -0.852 0.539 -1.060 0.598 0.557 -0.167 -0.607 -0.027 0.451 -0.052 -0.457 -0.090 0.718 -0.465 -0.086 -0.540 -0.087 0.171 -0.705 0.400 0.687 -0.364 -0.815 0.063 -0.098 0.748 -1.374 0.001 0.818 -0.026 -1.034 -0.384 -0.461 0.342 -0.839 0.533 0.263 0.117 -0.964 0.267 0.109 0.593 -1.089 -0.085 0.426 -0.071 -0.271 -0.190 -0.563 0.724 -0.978 0.219 0.665 -0.684 -0.844 0.305 0.339 -0.416 -0.052 0.030 0.703 -0.096 -0.785 -0.224 -0.670 0.120 -0.730 0.750 0.833 -0.513 -0.764 -0.107 0.258 -0.428 0.225 -0.165 0.795 -0.598 -0.252 -0.388 -0.333 0.383 -0.784 0.402 0.924 -1.022 -0.363 -0.265 0.209 -0.486 -0.520 0.519 1.111 -0.247 -1.247 -0.795 -0.593 -0.170 -0.479 0.792 0.439 -0.168 -0.807 0.243 0.323 -0.401 -0.335 0.261 0.460 -0.456 -0.026 -0.132 -0.806 0.244 -0.853 0.757 0.469 -0.124 -1.639 0.461 0.182 0.112 -0.776 0.264 0.514 -0.066 -1.071 0.190 -1.355 0.279 -0.707 0.834 0.682 -0.151 -1.112 0.046 0.307 -0.394 0.166 -0.185 0.579 -0.335 -0.134 -0.318 -0.194 0.450 -0.812 0.251 0.887 -0.483 -1.188 -0.007 0.153 -0.224 -1.007 0.618 0.920 -0.100 -1.238 -0.413 -0.639 0.135 -0.482 0.626 0.140 -0.250 -1.648 0.797 0.247 -0.123 -0.774 0.390 0.285 -0.067 -0.276 0.002 -1.001 0.234 -0.826 0.815 0.702 -0.533 -1.100 0.282 0.306 -0.397 -0.242 0.212 0.853 -0.197 -0.874 -0.366 -0.594 0.229 -0.569 0.577 0.623 -0.250 -0.809 0.068 0.192 0.131 -0.420 0.021 0.870 -0.529 -0.462 -0.409 -0.117 0.064 -0.628 0.470 0.926 -0.572 -1.020 -0.098 0.562 -0.179 -1.472 0.356 1.200 -0.527 -1.129 -0.858 -0.262 -0.277 -0.847 0.836 0.448 -0.541 -1.064 0.556 0.398 -0.091 -0.584 0.106 0.780 -0.413 -0.451 -0.322 -0.913 0.007 -0.798 0.917 0.532 -0.504 -0.987 0.427 0.299 0.143 -1.267 0.322 0.398 0.129 -1.241 0.222 -0.935 0.210 -1.073 0.883 0.668 0.026 -0.874 -0.239 0.302 -0.061 -0.225 -0.070 0.592 0.011 -0.286 -0.589 0.205 0.120 -0.383 -0.009 0.561 -0.545 -1.006 0.424 0.092 0.342 -1.577 0.413 0.622 0.299 -1.400 -0.232 -0.860 -0.059 -0.541 0.849 0.326 -0.117 -0.805 0.324 0.282 0.247 -0.867 0.069 0.374 0.130 -0.297 -0.329 -0.964 0.625 -0.872 0.484 0.611 -0.571 -0.799 0.293 0.496 -0.048 -0.694 0.006 0.447 0.105 -0.413 -0.304 -0.512 0.072 -0.531 0.637 0.622 -0.095 -0.654 -0.169 0.317 -0.478 -0.146 0.180 0.569 -0.468 0.267 -0.760 -0.287 0.521 -0.795 0.225 0.923 -0.853 -0.870 0.006 0.341 -0.383 -1.239 0.626 1.049 -0.670 -0.933 -0.360 -0.123 -0.376 -0.579 0.715 0.043 -0.083 -0.553 0.427 0.424 -0.302 -0.797 0.347 0.066 -0.526 0.470 -0.196 -0.238 0.067 -0.933 0.661 0.581 -0.003 -1.888 0.306 0.163 0.229 -0.977 0.263 0.684 -0.091 -1.513 0.144 -0.986 0.227 -0.696 0.772 0.579 -0.042 -0.902 -0.000 0.315 -0.198 -0.113 -0.059 0.693 -0.387 -0.362 -0.250 0.080 0.223 -0.772 0.252 0.797 -0.470 -1.358 0.202 0.173 -0.190 -1.840 0.780 0.963 -0.045 -1.853 -0.314 -0.549 0.031 -0.449 0.643 0.228 -0.119 -1.171 0.550 0.393 -0.105 -0.572 0.117 0.501 -0.206 -0.344 -0.106 -1.041 0.125 -0.597 0.817 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.622 -0.146 -1.061 0.107 0.236 -0.217 -0.422 0.282 0.757 -0.361 -0.403 -0.366 -0.352 0.068 -0.379 0.485 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.455 -0.363 -1.007 0.438 0.526 -0.292 -0.422 -0.005 0.582 -0.354 -0.231 -0.202 -0.645 0.029 -0.759 0.807 0.470 -0.208 -0.912 0.284 0.263 0.167 -1.191 0.309 0.532 -0.089 -0.999 0.155 -1.261 0.667 -1.142 0.625 0.491 0.080 -0.680 -0.131 0.243 -0.244 -0.271 0.193 0.803 -0.509 -0.235 -0.509 -0.198 0.452 -0.605 0.141 0.618 -0.483 -0.802 0.235 0.127 0.291 -1.487 0.408 0.843 0.032 -1.210 -0.411 -0.979 0.393 -0.868 0.707 -0.084 0.329 -0.625 0.205 0.259 0.153 -0.755 0.137 0.406 0.007 -0.183 -0.342 -1.206 0.814 -0.818 0.312 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.599 -0.256 -0.965 0.184 0.198 0.015 -0.410 0.124 0.675 -0.533 -0.152 -0.300 -0.636 0.483 -0.455 0.299 0.655 -0.666 -0.626 0.199 0.343 -0.197 -1.242 0.522 0.745 -0.196 -0.623 -0.319 -0.574 -0.120 -0.246 0.646 0.322 -0.335 -0.829 0.479 0.373 -0.189 -0.655 0.254 0.507 -0.082 -0.346 -0.239 -0.768 -0.101 -0.459 0.810 0.531 -0.270 -1.100 0.333 0.219 0.065 -0.818 0.290 0.680 -0.181 -0.997 0.022 -1.126 0.327 -0.971 0.830 0.816 -0.317 -1.227 0.013 0.357 -0.338 -0.314 0.168 0.819 -0.463 -0.275 -0.547 -0.305 0.107 -0.522 0.503 0.832 -0.756 -0.675 0.002 0.266 -0.024 -1.450 0.534 0.845 0.041 -0.990 -0.573 -0.771 0.145 -0.671 0.749 0.202 -0.373 -1.245 0.727 0.391 -0.167 -0.939 0.352 0.456 -0.223 -0.319 -0.044 -1.035 0.190 -0.873 0.868 Donor SDT 2 0 4 3 0.0 GC WMM 9 3 4 0 -5 0.594 -0.187 -0.278 -0.345 1.100 -0.723 -1.218 -0.284 -0.450 -1.985 1.218 -0.536 -11.019 -11.019 1.999 -11.019 -11.019 1.999 -11.019 -11.019 1.157 -4.053 0.131 -0.701 1.358 -1.565 -1.110 -0.656 -1.082 -2.609 1.544 -1.161 -0.352 -1.247 -1.207 1.240 GT WMM 9 3 4 0 0.000 0.594 -0.187 -0.278 -0.345 1.100 -0.723 -1.218 -0.284 -0.450 -1.985 1.218 -0.536 -11.019 -11.019 1.999 -11.019 -11.019 -11.019 -11.019 1.999 1.157 -4.053 0.131 -0.701 1.358 -1.565 -1.110 -0.656 -1.082 -2.609 1.544 -1.161 -0.352 -1.247 -1.207 1.240 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.893 -0.974 -1.454 0.344 0.340 -0.495 -0.803 0.538 0.142 -0.540 -0.829 0.718 -0.188 -0.612 -0.758 0.908 0.649 -0.528 -0.854 0.245 0.382 -0.325 -0.292 0.113 0.323 -0.474 -0.226 0.232 -0.163 -0.527 -0.298 0.678 0.809 -0.806 -0.502 -0.043 0.212 -0.106 -0.850 0.441 0.373 -0.315 -0.471 0.238 -0.255 -0.867 -0.334 0.864 0.625 -0.794 -0.955 0.449 0.393 -0.626 -0.159 0.193 0.354 -0.514 -0.704 0.493 -0.672 -0.665 -0.631 1.068 0.808 -0.688 -0.984 0.168 0.587 -0.384 -0.741 0.180 0.430 -0.619 -0.672 0.458 -0.184 -0.608 -0.696 0.885 0.591 -0.178 -0.718 0.002 0.396 0.123 -0.491 -0.179 0.362 -0.308 -0.187 0.041 0.096 -0.272 -0.305 0.371 0.679 -0.559 -0.477 0.003 0.453 -0.294 -0.128 -0.152 0.253 -0.210 -0.317 0.190 -0.381 -0.276 0.018 0.479 0.274 -0.132 -0.677 0.325 0.382 -0.272 -0.594 0.271 0.436 -0.581 -0.632 0.415 -0.905 -0.419 -0.555 1.027 0.975 -1.060 -0.708 -0.084 0.444 -0.370 -0.263 0.046 0.638 -0.263 -0.727 0.008 -0.105 -0.501 -0.487 0.723 0.575 -0.482 -0.254 -0.064 0.388 -0.555 -0.314 0.270 0.350 -0.187 -0.150 -0.080 -0.336 -0.081 -0.241 0.502 0.843 -1.130 -0.221 -0.165 0.290 -0.393 -0.395 0.328 0.295 -0.508 -0.029 0.124 -0.003 -0.539 -0.115 0.475 0.410 -0.321 -0.391 0.149 0.530 -0.649 -0.463 0.255 0.342 -0.482 -0.330 0.289 -0.587 -0.678 -0.502 1.002 0.875 -0.976 -1.267 0.313 0.594 -0.451 -0.847 0.267 0.419 -0.556 -0.518 0.361 0.007 -0.649 -0.765 0.823 0.648 -0.657 -0.554 0.160 0.444 -0.236 -0.407 0.051 0.699 -0.719 -0.245 -0.111 -0.072 -0.041 -0.330 0.358 0.694 -0.732 -0.602 0.166 0.527 -0.364 -0.614 0.174 0.397 -0.302 -0.269 0.060 -0.055 -0.719 -0.314 0.701 0.424 -0.721 -0.859 0.585 0.417 -0.214 -0.625 0.207 0.494 -0.477 -0.622 0.291 -0.822 -0.480 -0.801 1.100 0.994 -0.985 -1.377 0.162 0.451 -0.784 -0.785 0.557 0.397 -0.383 -0.888 0.460 -0.193 -0.909 -0.973 1.059 0.465 -0.171 -0.722 0.170 0.499 -0.399 -0.376 0.081 0.228 -0.281 -0.471 0.362 -0.391 -0.364 -0.204 0.671 0.851 -0.751 -0.620 -0.071 0.362 -0.386 -0.704 0.418 0.189 0.061 -0.619 0.221 -0.080 -0.777 -0.378 0.766 0.494 -0.703 -0.769 0.476 0.506 -0.613 -0.587 0.334 0.266 -0.355 -0.713 0.491 -0.741 -0.588 -0.902 1.139 0.923 -0.759 -1.220 0.116 0.280 -0.032 -0.540 0.163 0.591 -0.321 -0.750 0.136 -0.191 -0.286 -0.696 0.754 0.539 -0.202 -0.696 0.084 -0.040 0.520 -0.520 -0.158 0.212 0.155 -0.591 0.090 -0.228 0.181 -0.494 0.381 0.631 -0.637 -0.573 0.184 0.155 0.400 -0.478 -0.236 0.496 0.274 -1.082 -0.138 -0.075 -0.203 -0.431 0.526 0.448 -0.190 -0.591 0.132 0.211 0.070 -0.807 0.288 0.424 -0.120 -0.696 0.164 -0.646 -0.081 -0.624 0.821 1.019 -1.145 -1.162 0.103 0.520 -0.478 -0.321 0.067 0.643 -0.398 -0.661 0.066 -0.232 -0.957 -0.788 1.039 0.544 -0.400 -0.392 0.031 0.264 -0.176 -0.153 0.022 0.097 0.222 -0.347 -0.032 -0.230 -0.089 -0.176 0.403 1.047 -1.163 -0.500 -0.357 0.930 -0.687 -0.575 -0.317 0.545 -0.623 -0.261 0.080 -0.148 -0.637 -0.137 0.628 0.439 -0.452 -0.334 0.163 0.495 -0.805 -0.362 0.310 0.214 -0.478 -0.195 0.320 -0.804 -0.578 -0.547 1.052 0.848 -0.793 -1.220 0.255 0.627 -0.388 -0.874 0.196 0.626 -0.618 -0.551 0.167 -0.100 -0.564 -0.724 0.836 0.596 -0.436 -0.740 0.203 0.399 -0.116 -0.459 0.044 0.348 -0.314 -0.354 0.189 -0.353 0.301 -0.520 0.365 0.944 -0.812 -0.990 0.003 0.345 -0.050 -0.675 0.186 0.539 -0.195 -0.622 0.034 0.165 -0.498 -0.283 0.432 0.451 -0.505 -0.979 0.507 0.312 -0.207 -1.086 0.507 0.357 -0.298 -0.604 0.320 -0.657 -0.381 -0.732 0.997 1.055 -1.102 -1.508 0.144 0.505 -0.484 -0.872 0.400 0.538 -0.300 -0.842 0.236 -0.023 -0.935 -0.865 0.959 0.644 -0.301 -0.582 -0.062 0.488 -0.196 -0.528 0.043 0.396 -0.122 -0.489 0.074 0.033 -0.478 -0.243 0.500 0.726 -0.674 -0.272 -0.167 0.457 -0.288 -0.834 0.319 0.552 -0.407 -0.493 0.097 0.053 -0.814 -0.424 0.721 0.653 -0.836 -0.953 0.433 0.480 -0.626 -0.726 0.436 0.432 -0.483 -0.361 0.210 -0.737 -0.884 -0.815 1.195 0.917 -0.794 -1.107 0.098 0.606 -0.364 -0.752 0.146 0.442 -0.124 -0.503 0.026 -0.134 -0.569 -0.618 0.818 0.704 -0.277 -0.487 -0.265 0.563 -0.022 -0.525 -0.248 0.587 -0.375 0.050 -0.531 0.503 -0.538 -0.241 0.068 0.573 -0.527 -0.342 0.042 0.144 -0.092 0.096 -0.171 0.222 0.053 -0.163 -0.147 -0.239 -0.139 -0.121 0.406 0.454 -0.262 -0.534 0.145 0.439 -0.028 -0.859 0.154 0.536 -0.157 -0.537 -0.053 -0.251 -0.131 -0.610 0.670 1.038 -1.118 -0.863 -0.095 0.535 -0.321 -0.439 0.018 0.464 -0.075 -0.493 -0.057 -0.037 -0.605 -0.605 0.774 1.076 -0.872 -0.639 -0.508 0.497 -0.771 -0.138 0.130 0.053 -0.085 0.225 -0.232 -0.428 0.063 -0.266 0.465 0.821 -0.760 -0.448 -0.137 0.314 -0.382 -0.063 0.047 0.137 -0.683 0.155 0.219 -0.187 -0.312 -0.249 0.560 0.405 -0.242 -0.203 -0.056 0.493 -0.654 -0.451 0.293 0.182 -0.361 -0.082 0.191 -0.526 -0.616 -0.749 1.041 0.783 -0.777 -0.983 0.251 0.494 -0.381 -0.821 0.331 0.283 -0.622 -0.238 0.363 -0.014 -0.647 -0.668 0.801 0.503 -0.367 -0.468 0.117 0.271 0.015 -0.466 0.082 0.417 -0.452 -0.237 0.118 -0.199 0.153 -0.284 0.258 0.688 -0.620 -0.575 0.093 0.449 -0.209 -0.679 0.196 0.211 -0.064 -0.344 0.135 -0.238 -0.392 -0.043 0.505 0.330 -0.522 -0.522 0.433 0.477 -0.357 -0.759 0.306 0.363 -0.393 -0.573 0.357 -0.823 -0.431 -0.677 1.048 0.949 -1.038 -1.306 0.236 0.458 -0.472 -1.098 0.524 0.350 -0.009 -0.872 0.246 0.013 -0.871 -0.960 0.949 0.469 -0.505 -0.375 0.189 0.315 -0.302 -0.352 0.216 0.173 -0.359 -0.077 0.195 -0.219 -0.349 -0.188 0.564 0.719 -0.732 -0.633 0.147 0.351 -0.356 -0.690 0.404 0.052 0.288 -0.593 0.110 -0.245 -0.607 -0.504 0.844 0.500 -0.777 -0.927 0.562 0.603 -0.716 -0.548 0.249 0.406 -0.501 -0.638 0.406 -0.446 -0.605 -0.721 1.001 0.895 -0.848 -1.188 0.196 0.442 -0.317 -0.832 0.353 0.493 -0.348 -0.676 0.240 -0.180 -0.329 -0.832 0.815 0.634 -0.501 -0.393 -0.029 0.355 0.030 -0.355 -0.123 0.204 -0.195 -0.037 0.000 -0.176 0.035 -0.404 0.417 0.712 -0.810 -0.836 0.301 0.203 0.058 -0.485 0.129 0.142 0.440 -0.802 -0.050 -0.356 -0.082 -0.389 0.595 0.373 -0.338 -0.437 0.233 0.271 -0.366 -0.622 0.452 0.532 -0.393 -0.526 0.136 -0.578 0.047 -0.500 0.669 1.038 -1.051 -1.065 -0.021 0.511 -0.369 -0.407 0.065 0.600 -0.075 -0.805 -0.054 0.038 -0.558 -0.576 0.699 0.594 -0.311 -0.543 -0.003 0.319 -0.853 0.386 -0.165 0.180 -0.288 -0.170 0.213 -0.378 0.205 -0.266 0.318 0.958 -1.234 -0.363 -0.227 0.470 -0.298 -0.316 -0.003 0.358 -0.215 -0.325 0.082 -0.210 -0.551 0.032 0.516 0.317 -0.617 -0.156 0.269 0.497 -0.616 -0.403 0.238 0.363 -0.345 -0.717 0.399 -0.570 -0.401 -0.545 0.913 0.949 -1.093 -1.269 0.246 0.516 -0.404 -0.841 0.329 0.412 -0.438 -0.422 0.245 -0.268 -0.547 -0.781 0.929 0.742 -0.769 -0.287 -0.118 0.485 -0.179 -0.316 -0.130 0.565 -0.504 -0.224 -0.061 -0.209 -0.053 -0.286 0.434 0.909 -0.937 -0.754 0.011 0.306 0.332 -0.925 -0.031 0.473 -0.140 -0.641 0.089 -0.122 -0.469 -0.446 0.700 0.599 -0.792 -0.799 0.415 0.450 -0.228 -0.762 0.251 0.465 -0.265 -0.579 0.161 -0.705 -0.245 -0.653 0.931 Intron LUT 5 4 4 0 0.000 1.002 -1.241 -1.846 0.374 0.180 -0.311 -0.908 0.612 -0.158 -0.465 -0.814 0.857 -0.612 -0.583 -0.907 1.101 0.660 -0.547 -0.991 0.301 0.262 -0.161 -0.272 0.108 0.344 -0.499 -0.209 0.212 -0.125 -0.647 -0.391 0.750 0.878 -0.947 -0.625 -0.006 -0.135 0.102 -0.899 0.565 -0.035 -0.481 -0.621 0.728 -0.260 -1.031 -0.391 0.936 0.532 -0.856 -0.854 0.534 0.266 -0.566 0.103 0.069 0.207 -0.469 -0.518 0.511 -0.896 -0.685 -0.781 1.176 0.958 -1.027 -1.141 0.155 0.476 -0.147 -0.708 0.129 0.013 -0.735 -0.680 0.820 -0.225 -0.898 -0.675 0.987 0.769 -0.243 -0.864 -0.150 0.386 0.268 -0.547 -0.314 0.518 -0.484 -0.220 -0.007 0.370 -0.399 -0.446 0.281 0.802 -0.700 -0.476 -0.118 0.549 -0.438 -0.053 -0.260 0.177 -0.391 -0.312 0.380 -0.066 -0.478 -0.008 0.413 0.449 -0.138 -0.569 0.073 0.341 -0.244 -0.340 0.136 0.487 -0.758 -0.745 0.496 -0.725 -0.649 -0.572 1.060 1.168 -1.381 -1.056 -0.171 0.358 -0.237 -0.547 0.245 0.358 -0.110 -0.438 0.076 -0.104 -0.619 -0.730 0.861 0.614 -0.427 -0.515 0.036 0.215 -0.544 -0.418 0.491 0.247 -0.000 -0.045 -0.245 -0.155 -0.151 -0.340 0.497 0.914 -1.060 -0.487 -0.115 0.167 -0.191 -0.617 0.433 0.233 -0.895 0.105 0.277 0.457 -1.139 -0.324 0.459 0.485 -0.190 -0.432 -0.025 0.427 -0.620 -0.278 0.240 0.456 -0.563 -0.252 0.153 -0.581 -1.018 -0.564 1.112 0.858 -1.054 -1.288 0.374 0.563 -0.509 -0.725 0.281 0.323 -0.555 -0.299 0.328 0.024 -0.789 -0.844 0.886 0.773 -0.733 -0.525 -0.008 0.497 -0.241 -0.383 -0.035 0.956 -1.078 -0.111 -0.598 0.097 -0.165 -0.248 0.259 0.741 -0.720 -0.540 0.047 0.369 -0.268 -0.304 0.095 0.203 -0.190 -0.266 0.190 0.021 -0.899 -0.265 0.693 0.571 -0.709 -0.785 0.403 0.404 -0.137 -0.417 0.026 0.509 -0.271 -0.479 0.044 -0.997 -0.544 -0.895 1.186 1.182 -1.353 -1.845 0.086 0.453 -0.905 -0.908 0.645 0.296 -0.425 -0.719 0.506 -0.242 -1.495 -1.266 1.253 0.606 -0.368 -0.725 0.134 0.538 -0.454 -0.235 -0.046 0.314 -0.362 -0.403 0.290 -0.208 -0.538 -0.211 0.662 1.014 -1.074 -0.756 -0.131 0.239 -0.250 -0.516 0.356 -0.160 0.008 -0.816 0.615 0.320 -1.173 -0.387 0.626 0.622 -1.010 -0.591 0.379 0.614 -0.680 -0.474 0.171 0.334 -0.497 -0.372 0.331 -0.668 -1.114 -1.131 1.294 1.187 -1.263 -1.414 -0.103 0.132 -0.016 -0.289 0.134 0.554 -0.389 -0.460 0.057 -0.110 -0.491 -0.589 0.763 0.823 -0.404 -0.853 -0.119 0.159 0.339 -0.488 -0.143 0.269 0.166 -0.338 -0.182 0.311 -0.162 -0.298 0.073 0.880 -0.939 -0.838 0.109 0.089 0.375 -0.356 -0.222 0.547 0.302 -0.997 -0.314 0.340 -0.640 -0.360 0.393 0.728 -0.337 -0.331 -0.401 0.376 -0.177 -0.462 0.127 0.651 -0.183 -0.603 -0.167 -0.417 -0.280 -0.555 0.805 1.282 -1.783 -1.823 -0.006 0.736 -0.545 -0.583 -0.027 0.650 -0.461 -0.480 -0.017 -0.269 -1.762 -1.077 1.264 0.697 -0.748 -0.399 0.036 0.527 -0.494 -0.220 -0.014 0.155 0.139 -0.233 -0.098 -0.059 -0.256 -0.087 0.335 1.277 -1.695 -0.759 -0.563 1.103 -0.659 -0.844 -0.597 0.591 -0.758 -0.082 -0.063 0.235 -0.968 -0.141 0.491 0.735 -0.680 -0.299 -0.154 0.612 -0.904 -0.314 0.180 0.243 -0.540 0.108 0.072 -0.609 -0.718 -0.628 1.063 1.063 -1.154 -0.917 -0.102 0.860 -0.461 -0.975 -0.075 0.585 -0.708 -0.029 -0.139 0.052 -0.790 -0.567 0.774 0.956 -0.771 -0.691 -0.227 0.542 -0.305 -0.345 -0.079 0.449 -0.554 0.010 -0.079 0.049 -0.064 -0.355 0.295 1.186 -1.090 -1.083 -0.353 0.294 -0.006 -0.393 0.025 0.615 -0.201 -0.563 -0.118 0.636 -0.789 -0.387 0.141 0.701 -0.944 -0.315 0.072 0.512 -0.252 -1.070 0.332 0.476 -0.358 -0.412 0.107 -0.495 -0.545 -0.833 1.031 1.237 -1.592 -1.962 0.077 0.461 -0.451 -0.961 0.462 0.331 -0.347 -0.569 0.358 -0.320 -1.506 -1.243 1.278 0.725 -0.249 -0.787 -0.111 0.418 0.027 -0.496 -0.095 0.235 -0.153 -0.314 0.162 0.248 -0.896 -0.471 0.635 0.817 -0.683 -0.519 -0.124 0.344 -0.395 -0.768 0.467 0.233 -0.594 -0.458 0.521 -0.109 -1.183 -0.575 0.972 0.667 -1.029 -0.815 0.437 0.493 -0.643 -0.901 0.502 0.301 -0.526 -0.165 0.241 -0.884 -1.484 -1.478 1.455 1.117 -1.248 -1.345 0.024 0.592 -0.373 -0.571 0.067 0.415 -0.347 -0.202 0.016 -0.074 -0.770 -0.556 0.835 0.872 -0.344 -0.773 -0.328 0.748 -0.314 -0.440 -0.360 0.720 -0.650 0.256 -0.939 0.933 -0.944 -0.333 -0.365 0.939 -0.893 -0.616 -0.165 0.063 -0.125 0.055 -0.000 0.197 -0.017 -0.130 -0.072 0.077 -0.154 -0.216 0.245 0.667 -0.381 -0.576 -0.038 0.560 -0.206 -0.770 0.100 0.832 -0.522 -0.559 -0.242 0.192 -0.463 -0.634 0.573 1.229 -1.594 -1.250 -0.145 0.309 -0.163 -0.549 0.245 0.345 -0.146 -0.345 0.055 -0.403 -0.945 -0.741 1.088 1.213 -1.012 -0.836 -0.678 0.560 -1.033 -0.253 0.260 0.278 -0.112 0.192 -0.474 -0.395 -0.313 -0.436 0.761 0.902 -0.722 -0.496 -0.294 0.182 -0.375 -0.263 0.335 0.139 -0.808 0.150 0.285 0.066 -0.392 -0.421 0.531 0.645 -0.521 -0.197 -0.206 0.438 -0.428 -0.547 0.284 0.498 -0.680 -0.061 0.007 -0.263 -0.898 -1.056 1.104 0.630 -0.990 -0.103 0.025 0.090 -0.176 -0.502 0.427 0.166 -0.608 0.128 0.175 -0.057 -0.859 -0.446 0.810 0.728 -0.624 -0.558 0.022 0.374 0.191 -0.518 -0.211 0.537 -0.624 -0.057 -0.091 0.003 0.085 -0.361 0.212 0.603 -1.062 0.266 -0.321 0.377 -0.268 -0.434 0.177 0.082 -0.034 -0.257 0.174 -0.104 -0.371 -0.020 0.390 0.427 -0.475 -0.305 0.173 0.489 -0.414 -0.543 0.214 0.472 -0.449 -0.257 0.061 -0.822 -0.651 -0.674 1.118 1.148 -1.413 -1.509 0.079 0.342 -0.320 -1.026 0.527 0.112 0.070 -0.844 0.392 -0.110 -0.992 -1.023 1.056 0.536 -0.820 0.049 -0.076 0.159 -0.097 -0.277 0.167 0.146 -0.173 0.058 -0.050 -0.254 -0.592 0.118 0.498 0.892 -0.920 -0.644 -0.036 0.115 -0.310 -0.496 0.487 -0.211 0.614 -0.868 0.081 -0.272 -0.663 -0.557 0.896 0.475 -0.911 -0.644 0.525 0.536 -0.805 -0.224 0.165 0.395 -0.499 -0.430 0.304 -0.507 -0.784 -0.814 1.102 1.091 -1.154 -1.332 0.032 0.477 -0.373 -0.696 0.285 0.428 -0.250 -0.559 0.182 -0.002 -0.714 -0.576 0.783 0.720 -0.769 0.068 -0.479 0.321 -0.140 0.045 -0.302 0.311 -0.399 0.307 -0.388 0.184 -0.154 -0.305 0.209 0.791 -1.098 -0.934 0.356 0.175 0.024 -0.205 -0.020 0.127 0.490 -0.922 -0.035 -0.121 -0.485 -0.133 0.541 0.497 -0.360 -0.093 -0.197 0.464 -0.487 -0.313 0.140 0.748 -0.450 -0.433 -0.237 -0.339 -0.186 -0.405 0.656 1.256 -1.531 -1.316 -0.211 0.449 -0.351 -0.284 0.042 0.367 -0.130 -0.786 0.283 -0.054 -0.870 -0.583 0.866 0.757 -0.765 -0.259 -0.174 0.115 -1.081 0.705 -0.297 0.114 -0.254 -0.014 0.122 -0.276 0.022 -0.083 0.280 1.107 -1.335 -0.509 -0.421 0.307 0.025 -0.366 -0.044 0.261 -0.270 -0.289 0.207 0.009 -0.747 0.069 0.431 0.477 -1.024 0.226 -0.079 0.518 -0.687 -0.033 -0.045 0.432 -0.306 -0.567 0.224 -0.492 -0.638 -0.559 0.976 1.080 -1.154 -1.160 -0.015 0.474 -0.380 -0.500 0.183 0.254 -0.410 0.010 0.068 -0.119 -0.585 -0.724 0.854 0.701 -1.039 0.293 -0.593 0.663 -0.374 -0.103 -0.487 0.702 -0.624 -0.056 -0.390 0.113 -0.246 -0.109 0.199 1.042 -1.052 -0.684 -0.258 0.319 0.505 -0.924 -0.311 0.373 -0.001 -0.528 0.017 0.016 -0.478 -0.266 0.525 0.757 -0.881 -0.449 0.050 0.678 -0.269 -0.665 -0.090 0.558 -0.268 -0.344 -0.137 -0.729 -0.239 -0.704 0.953 Repeat LUT 1 0 5 0 0 -1 -1 -1 -1 1 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.167 -0.080 -0.798 0.440 0.216 -0.049 -0.906 0.420 0.227 -0.327 -0.943 0.596 0.137 -0.119 -0.536 0.367 0.170 0.079 -0.736 0.285 0.775 0.047 -0.798 -0.556 1.197 -0.893 -0.235 -1.651 0.946 -0.185 -0.851 -0.646 1.047 -0.335 -0.600 -1.056 1.998 -8.770 -8.770 -8.770 -8.770 -8.770 -8.770 1.998 -8.770 -8.770 1.998 -8.770 0.425 -0.360 0.082 -0.286 0.255 0.382 -0.484 -0.344 0.012 -0.012 -0.369 0.294 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.413 -0.259 0.022 -0.292 0.398 -0.360 -0.459 0.234 0.081 -0.450 -0.203 0.424 0.035 -0.308 0.193 0.035 0.662 -0.377 -0.958 0.181 0.318 -0.317 -0.958 0.522 -7.726 -7.726 -7.726 1.995 1.995 -7.726 -7.726 -7.726 1.995 -7.726 -7.726 -7.726 TAG WMM 9 6 4 0 0.000 0.391 -0.208 0.051 -0.346 0.223 -0.230 -0.230 0.174 0.207 -0.498 -0.043 0.223 0.347 -0.580 -0.083 0.157 0.736 -1.005 -0.860 0.362 -0.123 -0.275 -0.230 0.489 -6.253 -6.253 -6.253 1.986 1.986 -6.253 -6.253 -6.253 -6.253 -6.253 1.986 -6.253 TGA WMM 9 6 4 0 0.000 0.471 -0.529 0.042 -0.166 0.596 -0.585 -0.515 0.166 0.357 -0.515 -0.289 0.265 0.342 -0.361 -0.063 -0.005 0.723 -1.014 -0.817 0.364 -0.348 -0.254 -0.488 0.734 -7.243 -7.243 -7.243 1.993 -7.243 -7.243 1.993 -7.243 1.993 -7.243 -7.243 -7.243 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/rice0000644000175000017500000013536111424066010014223 0ustar moellermoellerzoeHMM O.sativa 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.771226 Inter Esngl 0.228774 Inter ORF 1 Intron Eterm 0.260974 Intron Exon 0.739026 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.443425 0.348624 0.207951 0.710247 0.120141 0.169611 0.708075 0.130435 0.161491 0.758794 0.120603 0.120603 0.745429 0.254571 0.716364 0.283636 0.745318 0.254682 Einit 2 DEFINED 0 249 -10.533 -10.502 -10.471 -10.440 -10.411 -10.381 -10.353 -10.325 -10.297 -10.270 -10.244 -10.143 -10.048 -9.959 -9.876 -9.797 -9.722 -9.650 -9.582 -9.518 -9.455 -9.425 -9.396 -9.367 -9.339 -9.311 -9.284 -9.257 -9.231 -9.205 -9.180 -9.149 -9.118 -9.089 -9.060 -9.031 -9.003 -8.975 -8.949 -8.922 -8.896 -8.826 -8.759 -8.694 -8.633 -8.574 -8.518 -8.463 -8.411 -8.360 -8.311 -8.274 -8.237 -8.202 -8.167 -8.134 -8.101 -8.068 -8.037 -8.006 -7.975 -7.970 -7.965 -7.959 -7.954 -7.949 -7.943 -7.938 -7.933 -7.927 -7.922 -7.919 -7.917 -7.914 -7.912 -7.909 -7.906 -7.904 -7.901 -7.899 -7.896 -7.914 -7.933 -7.951 -7.970 -7.989 -8.009 -8.028 -8.048 -8.068 -8.089 -8.080 -8.071 -8.062 -8.054 -8.045 -8.037 -8.028 -8.020 -8.011 -8.003 -8.000 -7.997 -7.995 -7.992 -7.989 -7.986 -7.984 -7.981 -7.978 -7.975 -7.967 -7.959 -7.951 -7.943 -7.935 -7.927 -7.919 -7.912 -7.904 -7.896 -7.901 -7.906 -7.912 -7.917 -7.922 -7.927 -7.933 -7.938 -7.943 -7.949 -7.967 -7.986 -8.006 -8.025 -8.045 -8.065 -8.086 -8.106 -8.127 -8.149 -8.174 -8.199 -8.224 -8.251 -8.277 -8.304 -8.332 -8.360 -8.389 -8.418 -8.422 -8.425 -8.429 -8.433 -8.437 -8.440 -8.444 -8.448 -8.452 -8.455 -8.467 -8.478 -8.490 -8.502 -8.514 -8.525 -8.537 -8.550 -8.562 -8.574 -8.562 -8.550 -8.537 -8.525 -8.514 -8.502 -8.490 -8.478 -8.467 -8.455 -8.459 -8.463 -8.467 -8.471 -8.475 -8.478 -8.482 -8.486 -8.490 -8.494 -8.529 -8.566 -8.603 -8.642 -8.681 -8.722 -8.763 -8.806 -8.850 -8.896 -8.912 -8.927 -8.943 -8.959 -8.975 -8.992 -9.009 -9.025 -9.042 -9.060 -9.106 -9.155 -9.205 -9.257 -9.311 -9.367 -9.425 -9.486 -9.550 -9.616 -9.642 -9.668 -9.694 -9.722 -9.749 -9.777 -9.806 -9.836 -9.865 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.917 -9.938 -9.959 -9.981 -10.003 -10.025 -10.048 -10.071 -10.095 GEOMETRIC 250 -1 243 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.382 -10.339 -10.298 -10.258 -10.219 -10.180 -10.143 -10.107 -10.072 -10.037 -10.004 -9.949 -9.897 -9.846 -9.797 -9.750 -9.704 -9.660 -9.617 -9.575 -9.534 -9.449 -9.368 -9.291 -9.219 -9.149 -9.083 -9.020 -8.960 -8.902 -8.846 -8.821 -8.797 -8.773 -8.750 -8.727 -8.704 -8.682 -8.660 -8.638 -8.617 -8.591 -8.567 -8.542 -8.518 -8.495 -8.471 -8.449 -8.426 -8.404 -8.382 -8.371 -8.361 -8.350 -8.339 -8.329 -8.319 -8.308 -8.298 -8.288 -8.278 -8.245 -8.212 -8.180 -8.149 -8.119 -8.089 -8.060 -8.032 -8.004 -7.976 -7.998 -8.020 -8.043 -8.066 -8.089 -8.113 -8.137 -8.162 -8.187 -8.212 -8.203 -8.193 -8.184 -8.174 -8.165 -8.156 -8.146 -8.137 -8.128 -8.119 -8.116 -8.113 -8.110 -8.107 -8.104 -8.101 -8.098 -8.095 -8.092 -8.089 -8.116 -8.143 -8.171 -8.199 -8.228 -8.258 -8.288 -8.319 -8.350 -8.382 -8.375 -8.368 -8.361 -8.354 -8.346 -8.339 -8.332 -8.325 -8.319 -8.312 -8.332 -8.354 -8.375 -8.397 -8.419 -8.441 -8.464 -8.487 -8.510 -8.534 -8.567 -8.600 -8.634 -8.668 -8.704 -8.741 -8.778 -8.816 -8.856 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.912 -8.928 -8.944 -8.960 -8.976 -8.993 -9.009 -9.026 -9.043 -9.060 -9.072 -9.083 -9.095 -9.107 -9.119 -9.131 -9.143 -9.156 -9.168 -9.180 -9.174 -9.168 -9.162 -9.156 -9.149 -9.143 -9.137 -9.131 -9.125 -9.119 -9.149 -9.180 -9.212 -9.245 -9.278 -9.312 -9.346 -9.382 -9.419 -9.456 -9.479 -9.502 -9.526 -9.550 -9.575 -9.600 -9.625 -9.651 -9.677 -9.704 -9.713 -9.722 -9.731 -9.741 -9.750 -9.759 -9.769 -9.778 -9.788 -9.797 -9.778 -9.759 -9.741 -9.722 -9.704 -9.686 -9.668 -9.651 -9.634 -9.617 -9.567 -9.518 -9.471 -9.426 -9.382 -9.339 -9.298 -9.258 -9.219 -9.180 -9.187 -9.193 -9.199 -9.206 -9.212 -9.219 -9.225 -9.232 -9.238 -9.245 -9.258 -9.271 -9.284 -9.298 -9.312 -9.325 -9.339 -9.354 -9.368 GEOMETRIC 250 -1 294 Exon 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 335 ORF 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Acceptor SDT 2 1 4 2 0.000 AG WMM 40 36 4 0 0.000 0.230 -0.461 -0.525 0.491 0.133 -0.545 -0.305 0.494 0.112 -0.429 -0.493 0.552 0.112 -0.512 -0.411 0.552 -0.022 -0.532 -0.357 0.625 0.024 -0.480 -0.552 0.664 0.226 -0.586 -0.525 0.555 0.103 -0.411 -0.579 0.589 0.099 -0.664 -0.467 0.655 0.060 -0.552 -0.586 0.687 0.129 -0.635 -0.566 0.667 0.086 -0.579 -0.600 0.687 0.154 -0.552 -0.593 0.625 0.190 -0.448 -0.635 0.568 0.073 -0.381 -0.600 0.604 0.068 -0.566 -0.635 0.707 -0.003 -0.579 -0.709 0.783 -0.089 -0.363 -0.552 0.678 -0.244 -0.480 -0.552 0.812 -0.233 -0.512 -0.552 0.820 -0.255 -0.411 -0.552 0.789 -0.375 -0.572 -0.506 0.889 -0.305 -0.664 -0.423 0.859 -0.417 -0.499 -0.519 0.884 -0.686 -0.486 -0.747 1.049 -0.539 -0.480 -0.442 0.896 -0.473 -0.461 -0.679 0.950 -0.363 -0.545 -0.411 0.838 -0.333 -0.579 -0.499 0.874 -0.405 -0.600 -0.572 0.938 -0.423 -0.480 -0.461 0.859 -0.442 -0.467 -0.628 0.923 -1.036 -1.260 -1.461 1.451 -0.322 -1.435 0.945 -0.134 -3.008 1.661 -6.709 -0.493 1.999 -8.293 -8.293 -8.293 -8.293 -8.293 1.999 -8.293 -0.277 -1.217 1.220 -1.249 -0.175 -0.572 -0.473 0.789 -0.065 -0.375 0.037 0.325 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.563 -0.059 0.342 0.131 0.236 -0.069 -1.282 0.544 0.029 0.167 -0.091 -0.123 -1.019 -0.077 0.318 0.391 0.105 -0.685 0.720 -0.609 0.800 -0.709 -1.087 0.234 -0.787 -0.109 0.139 0.476 -1.030 0.018 0.330 0.311 0.232 -0.480 0.093 0.060 0.386 -0.087 -1.633 0.515 0.035 -0.129 0.096 -0.012 -0.782 -0.141 0.144 0.493 . 0.806 . 1.171 0.415 -0.079 -0.886 0.237 . 0.484 1.069 -0.990 -1.059 0.093 -0.086 0.596 -1.543 0.374 0.946 -1.202 -0.899 0.946 -0.268 -0.500 -1.254 0.857 0.331 -0.967 -1.770 0.812 0.434 -0.734 -1.183 0.435 0.737 -0.887 -0.435 0.066 0.525 -0.369 -2.384 1.092 -0.014 -0.542 -2.785 1.006 0.354 -0.814 -2.065 0.754 0.824 -1.714 -1.905 1.127 0.398 -2.108 -2.182 1.384 -0.254 -1.597 -3.797 1.135 0.525 -1.770 . 1.740 . -0.601 -0.930 0.953 -0.010 -0.873 . 0.862 0.944 -1.953 -2.630 1.342 -0.557 -0.680 -1.040 0.153 1.074 -1.756 -0.620 0.586 0.345 -0.792 -1.063 0.782 0.554 -1.583 -1.721 0.755 0.484 -0.712 -0.847 -0.004 1.054 -1.431 -0.249 0.188 0.471 -0.658 -2.216 0.954 0.369 -0.847 -1.816 0.701 0.524 -0.617 -0.989 0.046 0.942 -0.882 -0.916 0.565 0.447 -0.674 -0.776 0.801 -0.139 -0.385 -2.431 0.243 1.087 -0.978 . 1.659 . -0.248 -0.608 0.569 0.225 -0.531 . 0.982 0.835 -2.055 -2.195 1.302 -0.770 -0.454 -0.528 -0.382 0.725 -0.175 0.152 -0.170 -0.710 0.474 -0.076 0.107 0.107 -0.156 -0.727 0.224 0.010 0.289 -0.271 -0.357 0.609 -0.209 0.460 -0.493 -1.090 0.530 -0.858 0.351 -0.273 0.427 -1.078 0.250 0.131 0.313 -0.272 -0.258 0.301 0.141 0.066 -0.177 -1.177 0.701 0.026 0.372 -0.719 0.111 -1.338 0.166 0.097 0.499 . 0.951 . 1.048 0.330 0.087 -1.235 0.330 . 0.473 0.836 -0.275 -1.118 0.569 0.063 0.016 -0.632 -0.151 0.588 -0.073 0.327 -0.009 -0.658 0.161 -0.004 0.208 0.193 -0.504 -1.098 0.004 0.294 0.383 0.163 -0.728 0.594 -0.382 0.556 -0.703 0.068 -0.205 -0.465 0.446 0.101 -0.251 -0.845 0.014 0.343 0.220 -0.189 -0.477 0.385 0.135 0.418 -0.283 -1.006 0.426 0.155 -0.043 0.068 -0.205 -0.713 -0.204 0.407 0.259 . 1.288 . 0.640 0.362 0.059 -0.823 0.148 . 0.547 0.953 -0.730 -1.784 0.294 0.356 0.268 -2.228 0.489 1.063 -1.770 -1.434 1.190 -0.284 -0.923 -1.195 0.812 0.399 -1.032 -2.185 1.017 0.352 -1.058 -1.046 0.419 0.810 -1.231 -0.738 0.276 0.388 -0.183 -2.341 1.283 -0.248 -0.926 -2.347 1.113 -0.075 -0.532 -2.685 1.063 0.553 -1.795 -2.267 1.371 -0.039 -2.104 -1.666 1.429 -0.460 -1.916 -3.785 1.128 0.519 -1.697 . 1.801 . -0.958 -1.578 1.266 -0.480 -0.882 . 1.243 0.293 -1.292 -2.621 1.507 -0.872 -1.156 -1.062 0.502 0.868 -1.840 -1.755 -0.027 1.311 -2.054 -2.448 0.748 0.921 -2.033 -1.764 0.700 0.744 -1.300 -2.478 0.320 1.231 -2.157 -1.487 -0.427 1.363 -1.614 -3.096 0.992 0.742 -2.170 -3.813 0.775 1.018 -2.377 -2.437 0.160 1.208 -1.365 -2.388 -0.436 1.531 -2.473 -1.381 0.496 0.987 -2.163 -3.721 -0.634 1.583 -1.814 . 1.851 . -1.346 -1.638 0.183 1.170 -1.766 . 0.875 0.995 -2.533 -3.368 1.534 -0.690 -1.368 -0.371 0.016 0.355 -0.094 0.186 -0.096 -1.446 0.641 -0.263 0.222 0.170 -0.193 -0.475 0.148 0.051 0.185 0.213 -0.295 0.364 -0.437 0.219 -0.322 -0.861 0.571 -0.367 0.575 -0.971 0.292 -1.556 0.262 0.304 0.294 -0.138 -0.336 0.214 0.187 0.026 0.040 -1.253 0.618 0.038 -0.013 -0.747 0.471 -1.170 0.099 0.069 0.521 . 1.126 . 0.862 0.131 0.162 -0.838 0.294 . 1.043 0.241 -0.401 -0.929 0.711 -0.063 -0.184 -0.322 -0.143 0.535 -0.242 0.380 0.059 -1.700 0.432 -0.233 0.112 0.257 -0.195 -0.492 0.000 0.678 -0.538 -0.041 -0.282 0.580 -0.494 0.462 -1.492 -0.907 0.794 -0.109 0.351 0.284 -0.787 -0.821 -0.084 0.360 0.272 0.098 -0.247 0.185 -0.074 0.171 -0.062 -0.988 0.497 0.343 0.124 -0.233 -0.338 -0.769 -0.166 0.407 0.258 . 1.017 . 0.983 0.407 0.016 -0.952 0.197 . 0.927 0.590 -0.751 -1.179 0.509 0.009 0.175 -1.595 0.453 0.917 -1.282 -0.965 0.873 0.220 -1.026 -1.618 1.015 0.184 -0.950 -1.752 1.048 0.208 -1.058 -1.667 0.637 0.721 -1.054 -0.473 0.560 0.297 -0.795 -1.784 1.231 -0.059 -1.310 -2.566 1.323 -0.262 -1.011 -2.532 0.921 0.723 -1.822 -2.344 1.248 0.256 -2.096 -2.034 1.506 -0.637 -1.880 -3.351 1.194 0.425 -1.884 . 1.720 . -0.504 -0.921 1.090 -0.214 -1.054 . 1.305 0.271 -1.636 -2.096 1.401 -0.640 -1.050 -1.096 -0.063 1.147 -1.473 -0.501 -0.099 0.657 -0.354 -1.219 0.611 0.647 -1.067 -1.333 0.579 0.631 -0.836 -0.632 0.028 0.953 -1.328 -0.426 -0.099 0.920 -1.221 -1.151 0.673 0.487 -0.855 -2.002 0.576 0.848 -1.121 -1.238 0.281 0.879 -0.939 -0.650 0.236 0.682 -0.784 -0.358 0.804 -0.206 -0.721 -2.416 -0.164 1.111 -0.395 . 1.693 . -0.385 -0.542 0.043 0.864 -1.109 . 0.877 0.950 -2.112 -2.016 1.321 -0.595 -0.757 -0.464 0.070 0.350 -0.074 0.300 0.429 -1.700 0.158 -0.854 0.767 0.253 -0.854 -0.829 0.386 0.007 0.171 0.065 -0.213 0.266 -0.170 0.449 -0.119 -1.518 0.449 -1.087 0.305 -1.087 0.867 -1.308 0.366 0.081 0.322 -0.469 0.125 -0.027 0.270 0.050 -0.013 -1.572 0.711 -0.245 0.410 -0.885 0.363 -1.505 0.199 0.155 0.471 . 1.258 . 0.685 0.518 -0.212 -1.212 0.348 . 0.430 0.743 -0.030 -0.883 0.463 0.233 -0.146 -0.494 -0.267 0.488 0.079 0.697 -0.209 -1.624 0.250 -0.499 0.263 0.501 -0.563 -1.179 0.078 0.044 0.558 0.162 -0.990 0.595 -0.206 0.606 -0.607 -0.896 0.360 -1.026 0.255 0.489 -0.132 -0.843 -0.366 0.564 0.248 -0.132 -0.156 0.027 0.228 0.283 -0.174 -1.140 0.529 0.229 0.132 -0.594 0.098 -0.496 -0.603 0.311 0.478 . 0.855 . 1.132 0.255 -0.132 -1.330 0.582 . 0.621 0.657 -0.177 -0.941 -0.043 0.059 0.553 -1.603 0.400 0.993 -1.471 -0.977 1.246 -0.657 -1.040 -1.276 0.873 0.301 -0.934 -2.050 1.011 0.338 -1.061 -1.028 0.280 0.882 -1.144 -0.938 0.513 0.481 -0.610 -2.252 1.203 -0.101 -0.848 -2.456 1.159 0.143 -1.058 -2.727 1.022 0.530 -1.416 -2.382 1.365 -0.167 -1.549 -1.898 1.388 -0.483 -1.326 -2.908 1.272 0.281 -2.076 . 1.664 . -0.268 -1.259 1.308 -0.581 -1.193 . 1.006 0.678 -1.351 -3.193 1.497 -0.703 -1.138 -1.174 0.097 1.051 -1.268 -0.129 0.196 0.426 -0.746 -0.771 0.555 0.636 -1.356 -1.499 0.587 0.587 -0.639 -0.750 -0.103 0.998 -1.068 -0.276 -0.094 0.656 -0.596 -1.568 0.812 0.504 -1.034 -2.335 0.769 0.535 -0.624 -1.025 0.148 0.816 -0.643 -0.784 0.303 0.598 -0.575 -0.690 0.672 0.222 -0.690 -2.468 -0.016 1.188 -0.858 . 1.619 . -0.107 -0.521 0.409 0.520 -0.886 . 0.687 0.948 -1.120 -2.492 1.274 -0.544 -0.479 -0.307 -0.081 0.483 -0.236 0.307 -0.108 -2.015 0.667 -0.044 0.306 0.188 -0.611 -0.813 -0.012 -0.012 0.533 -0.071 -0.689 0.819 -0.593 0.389 -0.651 -0.953 0.621 -1.181 0.339 -0.280 0.556 -0.985 0.028 -0.022 0.576 -0.589 -0.321 0.355 0.328 0.146 -0.179 -1.517 0.731 0.067 -0.051 -0.339 0.259 -1.457 -0.015 0.206 0.578 . 1.222 . 0.737 0.371 -0.233 -1.555 0.599 . 0.536 0.509 0.173 -0.652 0.510 -0.044 -0.044 frame2 LUT 5 4 4 0 0.000 -0.056 -0.245 0.433 -0.245 0.785 -0.111 -0.923 -0.281 0.479 0.067 0.067 -0.969 -0.705 -0.361 0.996 -0.705 0.145 -0.138 0.259 -0.344 0.728 -0.459 -0.203 -0.420 -0.131 -0.064 0.686 -0.939 -0.791 -0.156 0.904 -0.613 0.524 -1.000 0.298 -0.263 0.824 -0.353 -1.176 0.006 0.463 0.036 0.059 -0.850 -0.722 -0.666 1.141 -0.843 0.213 -0.787 0.351 -0.021 0.718 -0.322 -0.590 -0.167 0.263 -0.459 0.656 -1.009 -0.524 -0.309 0.907 -0.687 -0.115 -0.362 0.736 -0.659 0.695 0.023 -0.807 -0.333 0.129 0.129 -0.010 -0.286 -1.049 -0.010 0.735 -0.219 0.092 -0.240 0.602 -0.813 0.813 -0.420 -0.282 -0.572 -0.043 0.198 0.467 -1.000 -1.080 -0.111 0.905 -0.456 0.000 -0.206 0.093 0.093 -0.087 0.135 0.082 -0.149 0.371 -0.237 0.071 -0.307 -0.644 -0.907 1.386 -2.229 -0.151 0.064 0.293 -0.271 0.528 -0.037 -0.764 -0.007 0.556 -0.229 0.141 -0.802 -0.550 -0.060 0.826 -0.773 0.108 -0.649 0.742 -0.708 0.480 -0.229 -0.153 -0.229 0.245 -0.167 0.418 -0.765 -0.497 -0.778 1.041 -0.621 0.287 -0.358 0.328 -0.426 0.685 -0.526 0.258 -0.995 0.188 -0.284 0.569 -0.846 -0.550 -0.157 0.933 -0.971 0.424 -0.954 0.631 -0.753 0.334 -0.338 0.317 -0.508 0.342 0.011 0.054 -0.542 -1.164 -0.417 1.006 -0.328 0.220 -0.446 0.478 -0.496 0.327 -0.138 -0.081 -0.167 0.339 -0.140 0.249 -0.646 -0.594 -0.108 0.910 -0.916 . . . . 0.491 0.064 -0.665 -0.122 . . . . -0.677 -0.399 0.894 -0.399 0.491 -0.783 0.314 -0.377 1.006 -1.183 -0.367 -0.367 0.364 -0.091 0.109 -0.524 -0.617 -0.202 0.798 -0.436 . . . . 0.435 0.058 -0.190 -0.453 0.464 -0.121 0.364 -1.273 -0.954 -0.632 1.216 -0.954 -0.322 -0.110 0.518 -0.248 0.522 -0.115 -0.569 -0.048 0.097 -0.283 0.448 -0.426 -0.384 -0.841 1.082 -0.841 -0.035 -0.620 0.632 -0.281 0.246 0.023 0.057 -0.401 0.223 -0.315 0.548 -0.817 -0.940 -0.466 1.082 -0.648 0.399 -0.415 0.126 -0.250 0.408 -0.764 0.511 -0.601 -0.756 0.314 0.746 -1.038 -0.762 -0.383 1.126 -1.114 0.380 -0.952 0.578 -0.537 0.188 -0.151 0.245 -0.368 0.270 -0.155 0.364 -0.715 -0.383 -1.411 1.183 -0.770 -0.016 -0.333 0.149 0.149 0.195 -0.256 0.419 -0.555 -0.010 -0.074 0.534 -0.716 -0.692 -0.511 1.135 -1.050 -0.170 -0.442 0.830 -0.744 -0.150 0.402 0.235 -0.738 0.183 0.108 0.285 -0.817 -1.295 -0.231 1.103 -0.755 0.268 -0.349 0.353 -0.448 0.423 -1.365 0.689 -0.600 -0.461 0.238 0.620 -0.844 -0.825 -0.049 0.958 -0.926 0.112 -1.094 0.697 -0.271 -0.271 0.158 0.571 -0.810 0.088 0.146 -0.048 -0.213 -0.885 -0.846 1.248 -0.926 0.405 -0.595 0.253 -0.284 -0.078 0.004 0.425 -0.501 -0.133 0.247 0.353 -0.681 -1.059 0.062 1.027 -1.191 -0.343 -1.115 1.094 -0.700 -0.116 -0.196 0.709 -0.813 -0.003 -0.101 0.560 -0.747 -0.852 0.012 0.996 -1.174 -0.107 -0.334 0.571 -0.334 -0.094 -1.297 1.135 -1.119 -1.189 0.575 0.512 -0.630 -1.250 -0.138 1.144 -1.117 -0.317 -0.792 0.861 -0.317 -0.161 -0.644 1.017 -1.177 0.103 0.039 0.009 -0.164 -0.913 -0.913 1.343 -1.318 0.089 -0.304 0.451 -0.397 -0.111 -0.468 0.808 -0.737 -0.410 0.440 0.356 -0.711 -1.216 -0.046 1.082 -1.046 . . . . 0.124 -0.131 0.195 -0.230 . . . . -1.136 -0.720 1.296 -1.051 0.208 -0.306 -0.207 0.226 0.181 -0.383 0.345 -0.270 -0.828 0.438 0.376 -0.352 -0.905 -0.240 1.033 -0.803 . . . . 0.141 -0.096 0.339 -0.521 0.054 -0.298 0.514 -0.473 -0.607 -1.259 1.163 -0.543 0.051 -0.485 0.550 -0.348 -0.078 -0.055 0.231 -0.126 0.003 -0.289 0.636 -0.677 -1.294 -0.736 1.278 -0.820 -0.055 -0.694 0.739 -0.414 0.297 0.087 0.113 -0.672 0.317 0.076 0.383 -1.339 -0.848 -0.585 1.120 -0.725 0.359 -0.322 0.359 -0.655 0.531 -0.448 0.095 -0.408 -0.294 0.029 0.659 -0.774 -0.763 -0.339 1.066 -0.924 0.270 -1.385 0.668 -0.281 0.368 -0.269 0.198 -0.449 0.394 -0.084 0.114 -0.600 -0.459 -0.652 1.032 -0.759 0.202 -0.428 0.062 0.087 0.432 -0.199 0.286 -0.837 0.108 -0.054 0.585 -1.126 -0.841 -0.300 1.085 -0.978 -0.085 -0.103 0.452 -0.399 0.260 0.053 0.175 -0.653 0.023 0.215 0.211 -0.587 -0.608 -0.117 0.919 -0.913 -0.305 0.093 0.205 -0.042 0.578 -0.904 0.388 -0.590 -0.842 0.267 0.615 -0.501 -0.442 -0.045 0.880 -1.139 -0.822 -0.822 0.985 -0.170 -0.072 0.117 0.479 -0.812 -0.089 0.558 -0.251 -0.420 -1.459 -0.118 1.077 -0.722 -0.308 0.142 0.312 -0.239 0.161 -0.264 0.504 -0.663 -0.299 0.264 0.466 -0.724 -0.757 0.048 1.014 -1.494 -0.276 -0.813 1.103 -1.130 0.234 -0.372 0.439 -0.525 0.196 -0.175 0.541 -0.963 -0.496 -0.231 0.919 -0.869 0.168 -0.412 0.441 -0.381 0.450 -1.272 0.758 -0.920 -0.324 0.052 0.631 -0.700 -0.656 -0.341 0.951 -0.639 0.365 -1.013 0.446 -0.227 -0.011 -0.250 0.597 -0.613 0.358 0.246 -0.214 -0.576 -0.408 -1.004 1.064 -0.607 -0.258 -0.459 0.833 -0.611 0.316 -0.649 0.583 -0.691 -0.245 -0.070 0.648 -0.653 -0.775 -0.125 1.012 -1.055 . . . . 0.266 -0.051 0.282 -0.698 . . . . -1.040 -0.303 1.112 -0.888 0.023 -1.254 0.585 0.090 0.632 -0.577 0.293 -0.850 -0.688 0.178 0.348 -0.036 -0.440 -0.061 0.808 -0.855 . . . . -0.056 0.050 0.305 -0.381 0.027 -0.076 0.436 -0.557 -0.508 -0.923 1.077 -0.601 0.014 -0.102 0.483 -0.599 0.002 -0.059 0.417 -0.508 0.109 -0.183 0.488 -0.649 -1.284 -0.507 1.216 -0.829 -0.054 -0.719 0.708 -0.330 0.662 0.061 -0.801 -0.322 0.397 0.039 0.168 -0.911 -0.644 -0.290 0.859 -0.456 0.422 -0.512 0.207 -0.315 0.812 -0.188 -0.603 -0.500 -0.047 -0.047 0.690 -1.147 -0.721 0.092 0.824 -0.843 0.285 -0.830 0.524 -0.356 0.867 0.022 -0.686 -0.892 0.218 0.000 0.097 -0.382 -0.548 -0.870 1.012 -0.411 0.350 -0.621 0.138 -0.037 0.547 -0.005 -0.610 -0.172 0.122 -0.221 0.347 -0.355 -0.830 -0.368 1.121 -1.037 -0.119 -0.231 0.722 -0.793 0.382 0.499 -0.910 -0.411 0.230 -0.134 0.255 -0.469 -0.845 -0.118 0.909 -0.636 0.131 -0.212 0.407 -0.482 0.619 -0.415 -0.381 -0.079 0.396 -0.132 0.335 -0.971 -0.382 0.003 0.786 -0.984 0.089 -0.844 0.603 -0.216 0.134 0.277 -0.242 -0.242 0.464 0.081 -0.355 -0.355 -0.931 -0.386 1.069 -0.708 -0.279 0.126 0.541 -0.666 0.272 0.305 -0.387 -0.335 0.157 -0.061 0.324 -0.567 -0.737 -0.059 0.947 -0.966 0.152 -0.871 0.886 -1.015 0.617 -0.046 -0.577 -0.274 0.252 0.014 0.379 -1.003 -0.666 -0.251 1.010 -0.955 0.372 -0.404 0.303 -0.481 0.639 -0.560 0.086 -0.508 0.081 -0.074 0.480 -0.743 -0.592 -0.219 0.944 -0.855 0.321 -0.632 0.426 -0.391 0.613 -0.235 -0.192 -0.422 0.362 -0.029 -0.154 -0.259 -0.635 -0.533 1.005 -0.604 0.274 -0.539 0.274 -0.163 0.577 -0.160 -0.322 -0.298 0.208 -0.107 0.289 -0.526 -0.824 -0.337 1.086 -0.945 . . . . 0.727 -0.097 -0.949 -0.165 . . . . -0.636 -0.419 1.037 -0.845 0.127 -0.663 0.659 -0.520 0.525 -0.257 -0.653 0.122 0.052 -0.755 0.737 -0.507 -0.703 -0.459 0.949 -0.459 . . . . 0.465 0.163 -0.889 -0.059 0.268 -0.330 0.569 -0.954 -0.622 -0.783 1.084 -0.622 0.126 -0.160 0.484 -0.700 0.429 0.118 -0.779 -0.022 0.252 -0.387 0.512 -0.695 -0.758 -0.514 1.361 -2.836 frame2 LUT 5 4 4 0 0.000 0.311 -0.174 -0.350 0.122 -0.013 0.254 -1.768 0.607 0.509 -0.174 -0.373 -0.122 -0.344 0.153 -0.159 0.269 0.609 -0.606 -0.614 0.219 -0.081 0.306 -1.000 0.399 -0.014 0.048 -0.028 -0.007 -0.243 0.034 -0.265 0.378 0.809 -0.502 -0.680 -0.123 0.019 0.033 -1.017 0.555 0.509 0.074 -0.398 -0.386 0.000 -0.052 -0.390 0.347 0.171 -0.730 -0.389 0.592 0.065 0.244 -1.437 0.485 0.186 -0.079 0.004 -0.131 -0.485 0.100 -0.900 0.747 0.323 -0.342 -0.205 0.128 0.280 0.000 -1.163 0.421 0.197 0.165 -0.317 -0.105 -0.397 0.103 -0.507 0.549 0.472 -0.151 -1.151 0.335 -0.021 -0.322 -0.613 0.642 0.009 -0.221 0.201 -0.020 -0.677 0.333 -0.461 0.474 0.015 0.445 -0.297 -0.297 -0.356 0.291 -1.146 0.626 0.016 0.601 -0.948 -0.069 -0.620 0.270 -0.620 0.578 0.120 0.025 -0.577 0.293 0.207 0.246 -1.283 0.321 0.200 -0.262 0.165 -0.159 -0.603 0.673 -1.216 0.397 0.638 -0.615 -0.146 -0.173 -0.016 -0.016 -0.306 0.279 0.421 -0.181 -0.085 -0.258 -0.041 0.152 -0.848 0.445 0.531 -0.238 -0.346 -0.120 0.183 0.024 -0.976 0.421 0.238 -0.039 0.082 -0.343 -0.315 0.241 -0.281 0.253 0.527 -0.970 -0.020 0.087 0.458 -0.359 -1.051 0.448 0.707 0.148 -0.892 -0.472 -0.327 -0.484 -0.119 0.648 0.426 -0.093 -0.356 -0.093 0.475 0.288 -1.400 0.015 0.452 -0.375 0.165 -0.434 -0.459 0.504 -0.611 0.263 0.585 -0.763 -0.284 0.123 -0.140 0.287 -1.332 0.561 0.499 -0.183 -0.342 -0.124 -0.707 0.074 -0.007 0.422 0.609 -0.278 -0.931 0.170 0.075 -0.079 -0.596 0.421 0.299 0.005 -0.098 -0.265 -0.748 0.336 -0.294 0.408 0.644 -0.508 -0.563 0.080 0.044 -0.068 -0.964 0.587 0.429 0.235 -0.540 -0.341 -0.715 0.408 -0.347 0.353 0.289 -0.120 -0.409 0.144 0.310 0.093 -1.141 0.310 0.383 0.106 -0.254 -0.357 -1.087 0.258 -0.280 0.594 0.541 -0.237 -0.459 -0.044 0.841 -0.286 -1.731 0.122 0.623 -0.039 -0.361 -0.498 -0.954 0.438 -0.585 0.548 0.521 -0.330 -0.472 0.068 0.290 -0.187 -0.441 0.217 0.238 0.119 -0.023 -0.415 -0.085 -0.125 -0.340 0.433 0.633 -0.738 -0.578 0.239 0.374 -0.282 -0.904 0.430 0.311 0.270 -0.418 -0.313 -0.289 -0.248 -0.120 0.505 0.282 -0.442 -0.506 0.427 0.415 0.454 -1.605 -0.047 0.254 -0.363 0.190 -0.168 -0.284 0.047 -1.238 0.784 0.676 -0.392 -0.314 -0.258 -0.017 0.680 -1.017 -0.127 0.521 0.085 -0.202 -0.656 -0.995 0.399 -0.266 0.430 0.825 -0.666 -0.712 -0.017 0.265 -0.243 -0.449 0.288 -0.031 -0.176 0.166 0.021 -0.217 0.127 -0.947 0.613 -0.183 0.102 -0.041 0.102 -0.425 0.592 -0.888 0.272 0.224 0.616 -0.787 -0.475 -0.960 0.865 -0.601 0.008 0.214 -0.097 -0.179 0.031 -0.251 0.354 -0.543 0.257 0.523 -0.078 -0.168 -0.464 -0.246 0.598 -0.487 -0.105 0.000 -0.322 0.536 -0.415 0.179 -0.143 0.179 -0.268 -0.010 0.415 -0.095 -0.439 -0.496 0.504 0.018 -0.216 0.736 -0.279 -1.121 0.070 -0.059 -0.682 0.326 0.218 0.100 0.238 -0.340 -0.060 -0.313 0.102 -0.383 0.438 0.218 -0.503 -0.280 0.386 -0.233 -0.477 0.333 0.228 0.525 -0.090 -0.722 0.022 -0.616 -0.136 0.326 0.244 0.016 -0.355 -0.743 0.686 0.000 -0.322 -0.659 0.648 0.191 0.040 0.011 -0.282 -0.115 0.247 -0.601 0.300 0.588 -0.634 -0.090 -0.132 0.469 -0.037 -0.963 0.174 0.401 0.111 -0.218 -0.434 -0.550 0.549 -0.483 0.187 0.636 -0.293 -0.906 0.132 -0.126 -0.284 -0.190 0.471 -0.175 0.460 0.003 -0.441 -0.484 0.303 -0.495 0.425 0.570 -0.509 -0.288 -0.010 0.031 -0.268 -0.951 0.705 0.518 -0.026 -0.434 -0.241 -0.548 0.032 -0.449 0.643 0.640 -0.468 -0.345 -0.102 0.109 -0.020 -1.034 0.533 0.183 0.052 -0.036 -0.230 -0.661 0.451 -0.527 0.385 0.186 -0.415 -0.366 0.418 0.217 -0.242 -0.921 0.550 0.508 0.110 -0.291 -0.553 -0.495 0.196 -0.173 0.331 0.607 -0.480 -0.885 0.285 -0.015 -0.051 -0.597 0.468 0.519 0.023 -0.294 -0.444 -0.008 0.037 -0.487 0.340 0.742 -0.703 -0.691 0.130 0.209 -0.599 -0.875 0.712 0.735 -0.032 -0.719 -0.416 -0.060 -0.117 -0.275 0.370 0.369 -0.547 -0.568 0.432 0.065 0.206 -1.189 0.445 0.575 -0.250 -0.212 -0.312 -0.636 0.090 -0.636 0.722 0.428 -0.188 -0.428 0.048 0.291 0.081 -0.860 0.224 0.352 0.446 -0.740 -0.390 -0.828 0.411 -0.565 0.517 0.493 -0.084 -1.127 0.253 -0.143 -0.332 -0.222 0.529 -0.065 0.486 -0.121 -0.466 -0.288 0.340 -0.696 0.376 -0.034 -0.052 0.160 -0.087 -0.203 0.008 -0.888 0.665 -0.320 1.022 -1.012 -0.573 -1.101 0.405 -0.060 0.322 0.247 -0.216 -0.216 0.127 -0.131 0.126 -0.766 0.494 0.239 0.397 -0.311 -0.520 -0.888 0.563 -0.546 0.376 0.360 -0.074 -0.249 -0.112 0.271 -0.051 -0.610 0.229 0.270 -0.156 0.253 -0.503 -1.083 0.529 -0.322 0.362 0.601 -0.345 -0.703 0.113 0.095 -0.487 -0.371 0.531 -0.025 0.047 0.431 -0.652 -0.256 0.308 -0.309 0.159 0.721 -0.897 -0.231 -0.054 0.210 -0.451 -0.995 0.687 0.667 0.042 -0.616 -0.452 -0.295 -0.417 -0.213 0.654 0.247 -0.569 -0.601 0.565 0.080 -0.401 -1.129 0.790 0.177 -0.103 0.316 -0.527 -0.424 0.319 -0.509 0.384 0.443 0.000 -0.893 0.141 0.121 0.220 -1.517 0.483 0.444 0.044 -0.471 -0.174 -1.295 0.493 -0.170 0.374 0.348 -0.088 -0.834 0.293 -0.177 0.009 -0.379 0.422 0.236 0.093 -0.115 -0.265 -0.403 0.280 -0.403 0.348 0.525 -0.256 -0.710 0.153 -0.060 0.063 -1.155 0.629 0.453 0.222 -1.077 -0.012 -0.525 0.143 -0.597 0.623 0.163 0.098 -0.639 0.225 0.155 -0.105 -1.402 0.658 0.232 -0.075 0.065 -0.268 -0.329 0.103 -0.170 0.311 . . . . . . . . . . . . . . . . 0.670 -0.418 -0.687 0.057 -0.015 0.011 -0.466 0.355 0.405 -0.134 0.049 -0.456 -0.084 -0.018 -0.163 0.234 . . . . . . . . . . . . . . . . 0.404 -0.774 -0.164 0.263 0.329 0.033 -1.256 0.381 0.446 -0.173 -0.006 -0.406 -0.574 0.072 -0.574 0.683 0.389 -0.559 -0.044 0.060 0.364 0.081 -1.051 0.229 0.528 0.020 -0.639 -0.150 -1.142 0.539 -0.023 0.150 0.664 -0.419 -0.899 0.178 0.108 -0.332 -0.546 0.529 -0.034 0.119 0.251 -0.421 -0.558 0.594 -0.748 0.282 0.221 -0.011 -0.404 0.120 -0.295 0.349 -1.010 0.500 0.319 0.541 -0.865 -0.418 -1.243 1.018 -0.287 -0.448 -0.067 -0.138 -0.459 0.495 -0.170 0.084 -0.700 0.522 0.420 -0.116 0.008 -0.447 -1.064 0.798 -0.823 0.284 . . . . . . . . . . . . . . . . 0.766 -0.737 -0.308 -0.164 0.319 -0.106 -0.338 0.046 0.252 -0.434 0.498 -0.607 -0.540 0.239 -0.318 0.411 0.634 -0.171 -0.573 -0.171 0.245 -0.569 -0.354 0.442 0.354 0.117 -0.155 -0.436 -0.360 -0.476 -0.083 0.640 -0.301 -0.649 -0.649 0.936 0.142 0.390 -0.858 0.049 0.359 -0.056 0.220 -0.759 -1.301 0.351 -0.109 0.476 0.502 -0.913 0.267 -0.235 0.193 -0.155 -0.708 0.430 0.433 0.070 -0.193 -0.464 -1.170 0.748 -1.018 0.468 0.447 -0.111 -0.669 0.114 0.137 -0.266 -0.435 0.411 0.225 -0.047 0.051 -0.272 -0.493 0.108 -0.533 0.605 0.471 -0.529 -0.529 0.295 0.026 0.026 -1.224 0.618 0.483 0.366 -0.763 -0.466 -0.890 0.229 -0.225 0.519 0.327 -0.543 -0.231 0.272 0.256 0.182 -1.844 0.478 0.489 -0.085 -0.093 -0.483 -0.779 0.347 -0.484 0.516 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.511 0.592 -0.519 -1.435 1.352 -1.055 -1.486 -0.716 -1.918 -2.339 1.682 -1.607 -8.293 -8.293 1.997 -8.293 -8.293 -8.293 -8.293 1.997 1.416 -2.539 -0.473 -1.185 1.051 -0.293 -2.271 -0.144 -0.754 -1.423 1.251 -0.614 -0.480 -0.104 -1.206 0.940 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.778 -0.726 -0.734 0.110 0.534 -0.290 -0.926 0.273 0.417 -0.396 -0.395 0.195 0.208 -0.535 -0.370 0.466 0.504 -0.404 -0.565 0.201 0.546 -0.225 -0.621 0.048 0.284 -0.347 0.019 -0.024 0.045 -0.525 -0.122 0.438 0.715 -1.046 -0.360 0.131 0.569 -0.393 -1.112 0.370 0.340 -0.416 -0.277 0.213 0.076 -0.765 -0.273 0.613 0.416 -0.768 -0.677 0.539 0.427 -0.200 -0.979 0.353 0.061 -0.264 -0.208 0.331 0.130 -0.635 -0.473 0.624 0.551 -0.458 -0.341 0.024 0.611 -0.301 -0.618 0.015 0.202 -0.161 -0.373 0.243 0.066 -0.399 0.154 0.114 0.305 -0.082 -0.692 0.264 0.430 0.001 -0.803 0.110 0.067 -0.003 -0.264 0.166 -0.120 -0.122 -0.010 0.223 0.367 -0.348 -0.088 -0.024 0.284 -0.076 -0.060 -0.194 0.184 0.075 -0.501 0.142 0.117 -0.468 0.247 0.009 0.076 -0.068 -0.198 0.164 0.121 0.152 -0.717 0.256 0.275 -0.154 -0.724 0.362 -0.185 -0.413 -0.002 0.455 0.649 -0.638 -0.254 -0.072 0.456 -0.439 -0.442 0.208 0.649 -0.423 -0.230 -0.262 0.059 -0.345 -0.088 0.299 0.291 -0.460 -0.051 0.117 0.493 -0.290 -0.529 0.115 0.378 -0.088 -0.150 -0.220 0.232 -0.412 -0.085 0.178 0.310 -0.906 0.217 0.090 0.300 -0.132 -0.494 0.197 0.373 -0.476 -0.053 0.031 0.293 -0.877 0.104 0.208 0.038 -0.240 -0.039 0.206 0.466 -0.298 -0.711 0.257 0.154 -0.274 -0.168 0.228 -0.230 -0.488 -0.087 0.578 0.556 -0.899 -0.566 0.399 0.498 -0.607 -1.069 0.541 0.183 -0.256 -0.518 0.410 0.535 -0.860 -0.258 0.219 0.251 -0.394 -0.541 0.445 0.562 -0.354 -0.802 0.224 0.587 -0.518 -0.338 0.013 -0.091 -0.166 -0.041 0.261 0.358 -0.812 -0.641 0.592 0.645 -0.556 -1.213 0.406 0.340 -0.362 -0.457 0.296 0.035 -0.774 0.075 0.420 0.318 -0.685 -0.376 0.445 0.350 -0.259 -0.791 0.392 0.091 -0.221 -0.329 0.357 -0.220 -0.543 -0.115 0.615 0.454 -0.339 -0.676 0.279 0.284 -0.060 -0.836 0.337 0.149 -0.102 -0.374 0.249 -0.026 -0.280 -0.244 0.433 0.228 0.006 -0.636 0.240 0.462 -0.146 -0.482 0.003 -0.157 0.184 -0.233 0.158 -0.035 -0.263 0.024 0.231 0.319 -0.842 -0.139 0.364 0.438 -0.121 -0.898 0.250 0.038 -0.222 -0.494 0.491 0.129 -0.730 -0.047 0.417 0.035 -0.522 -0.672 0.724 0.317 -0.158 -0.784 0.353 -0.164 0.008 -0.348 0.397 -0.307 -0.500 -0.234 0.708 0.595 -0.265 -0.601 -0.002 0.140 0.357 -0.572 -0.082 -0.063 0.237 -0.434 0.168 -0.341 -0.005 0.003 0.278 0.229 0.165 -0.817 0.188 -0.063 0.489 -0.831 0.107 -0.287 0.429 -0.254 -0.008 -0.364 0.373 -0.435 0.249 0.006 -0.333 -0.115 0.354 -0.290 0.600 -0.177 -0.356 -0.186 0.482 -0.525 0.041 -0.443 0.109 -0.006 0.251 0.233 -0.220 -0.274 0.188 -0.431 0.489 -0.728 0.323 0.057 0.041 -0.488 0.284 -0.630 -0.139 -0.208 0.660 0.393 -0.350 -0.373 0.176 -0.029 -0.123 0.283 -0.176 0.146 0.035 -0.043 -0.155 -0.689 0.475 -0.160 0.130 -0.099 0.133 -0.188 0.128 -0.117 -0.507 0.635 -0.286 -0.316 0.576 -0.204 -0.254 -0.440 0.090 0.133 0.141 0.057 -0.551 0.112 0.258 -0.465 0.083 0.472 -0.272 0.027 0.137 -0.106 -0.070 -0.356 -0.386 0.205 0.379 -0.173 0.269 -0.358 0.174 -0.127 -0.004 0.112 0.009 -0.286 0.035 -0.138 0.318 -0.632 -0.281 -0.059 0.652 0.466 -0.554 -0.840 0.463 0.195 -0.304 -1.112 0.662 -0.061 0.220 -0.737 0.352 0.321 -0.455 -0.304 0.277 0.151 -0.095 -0.688 0.414 0.137 -0.041 -0.816 0.444 -0.092 0.337 -0.718 0.251 -0.581 0.530 -0.340 0.134 0.481 -0.610 -0.603 0.368 0.412 -0.326 -1.093 0.488 0.166 -0.174 -0.598 0.412 0.010 -0.486 -0.202 0.495 0.242 -0.505 -0.509 0.495 0.070 -0.103 -1.179 0.658 -0.115 -0.081 -0.411 0.463 -0.539 -0.254 -0.159 0.658 0.649 -0.519 -0.618 0.114 0.517 -0.349 -0.983 0.353 0.441 -0.226 -0.267 -0.064 -0.136 -0.373 -0.306 0.594 0.317 -0.376 -0.443 0.320 0.550 -0.423 -0.469 0.094 0.376 -0.226 -0.085 -0.144 0.004 -0.363 -0.104 0.367 0.266 -1.006 0.343 0.045 0.378 -0.445 -0.696 0.431 0.444 -0.394 -0.125 -0.057 0.282 -0.727 -0.117 0.330 0.320 -0.723 -0.460 0.505 0.111 -0.307 -0.265 0.355 0.212 -0.252 -0.163 0.149 -0.076 -0.571 -0.222 0.605 0.426 -0.371 -0.224 0.040 0.390 -0.169 -0.343 0.016 -0.099 0.419 -0.392 -0.048 -0.248 -0.287 0.300 0.147 0.067 0.044 -0.516 0.290 0.449 -0.078 -0.521 -0.014 -0.486 0.612 -0.178 -0.195 -0.243 0.089 -0.106 0.216 0.031 -0.223 0.216 -0.059 -0.351 0.066 0.496 -0.397 -0.392 0.731 -0.426 -0.261 -0.377 -0.256 0.460 0.025 -0.023 -0.322 0.180 0.114 -0.018 -0.016 -0.327 0.295 -0.026 0.276 -0.517 0.148 -0.229 -0.174 0.053 0.290 0.526 -0.738 -0.105 0.043 0.485 -0.348 -0.318 0.019 0.220 -0.470 0.254 -0.119 -0.310 -0.347 0.150 0.375 0.196 -0.290 -0.133 0.170 0.236 -0.124 -0.056 -0.086 -0.084 -0.089 0.358 -0.261 -0.074 -0.362 0.203 0.164 0.204 -0.703 0.187 0.131 -0.025 0.262 -0.286 -0.004 0.153 -0.610 0.463 -0.227 -0.190 -0.839 0.267 0.444 0.199 -0.265 -0.115 0.133 0.398 -0.224 -0.473 0.145 0.134 -0.326 0.077 0.070 -0.402 -0.578 0.069 0.608 0.342 -0.483 -0.391 0.327 0.289 -0.550 -0.544 0.495 0.016 -0.070 -0.552 0.437 0.118 -0.665 -0.043 0.394 0.223 -0.320 -0.382 0.339 0.489 -0.308 -0.842 0.299 -0.042 -0.012 -0.292 0.287 -0.207 -0.048 -0.107 0.308 0.154 -0.660 -0.170 0.450 0.387 -0.432 -0.547 0.341 0.068 -0.211 -0.349 0.381 -0.262 -0.699 0.287 0.412 0.270 -0.472 -0.217 0.279 0.305 -0.412 -0.734 0.498 0.025 -0.223 -0.164 0.303 -0.423 -0.348 0.056 0.515 0.611 -0.568 -0.923 0.345 0.454 -0.261 -1.382 0.497 0.211 -0.202 -0.427 0.299 0.025 -0.594 -0.534 0.704 0.187 -0.481 -0.400 0.473 0.582 -0.472 -0.976 0.349 -0.037 -0.300 -0.407 0.544 0.297 -0.381 -0.158 0.147 0.359 -0.896 -0.392 0.504 0.328 -0.572 -1.365 0.752 0.349 -0.312 -0.330 0.170 0.348 -0.883 -0.337 0.479 0.012 -0.783 -0.760 0.864 0.337 -0.319 -1.187 0.581 0.021 -0.159 -0.484 0.459 0.037 -0.714 -0.492 0.725 0.486 -0.408 -0.620 0.257 0.439 -0.104 -1.064 0.306 0.134 -0.194 -0.489 0.396 -0.163 0.047 -0.065 0.160 0.187 -0.319 -0.555 0.464 0.062 0.187 -0.864 0.343 -0.115 -0.033 -0.379 0.412 -0.352 0.268 -0.399 0.326 -0.179 -0.695 -0.470 0.829 -0.154 0.293 -0.328 0.111 0.078 -0.094 -0.544 0.402 -0.510 0.186 -0.048 0.254 0.082 -0.471 -0.178 0.418 -0.195 0.026 -0.847 0.634 0.160 -0.184 -0.658 0.453 -0.515 -0.087 -0.065 0.489 0.489 -0.470 -0.615 0.289 0.487 -0.304 -0.756 0.259 0.220 -0.094 -0.370 0.170 -0.290 -0.298 0.100 0.376 0.079 -0.551 -0.077 0.393 0.383 -0.341 -0.664 0.351 -0.074 -0.192 -0.287 0.438 -0.093 -0.411 0.030 0.366 0.248 -0.727 -0.182 0.408 0.415 -0.276 -0.762 0.323 0.142 -0.083 -0.181 0.097 -0.177 -0.652 0.108 0.487 0.074 -0.219 -0.234 0.309 0.447 -0.288 -0.897 0.357 0.003 -0.244 -0.359 0.458 -0.448 -0.345 -0.092 0.624 0.405 -0.708 -0.771 0.564 0.441 -0.409 -1.399 0.595 0.102 -0.217 -0.463 0.423 0.032 -0.493 -0.296 0.539 0.079 -0.517 -0.140 0.419 0.303 -0.195 -1.148 0.528 0.045 -0.265 -0.475 0.503 -0.342 -0.285 -0.205 0.607 0.157 -0.608 -0.439 0.577 0.529 -0.550 -1.280 0.548 0.155 -0.365 -0.383 0.425 -0.199 -0.673 -0.093 0.646 0.219 -0.584 -0.371 0.481 0.205 -0.343 -1.217 0.704 -0.027 -0.273 -0.251 0.434 -0.382 -0.473 -0.340 0.784 Intron LUT 5 4 4 0 0.000 0.612 -0.653 -0.679 0.276 0.583 -0.567 -1.330 0.516 0.321 -0.544 -0.315 0.335 0.147 -0.692 -0.290 0.542 0.362 -0.600 -0.521 0.442 0.638 -0.475 -1.315 0.403 0.240 -0.629 -0.086 0.299 0.024 -0.745 -0.050 0.507 0.652 -1.112 -0.517 0.341 0.685 -0.753 -1.487 0.528 0.180 -0.841 -0.658 0.744 0.172 -0.804 -0.389 0.619 0.235 -0.834 -0.680 0.712 0.487 -0.367 -1.351 0.517 0.033 -0.200 -0.383 0.421 -0.008 -0.665 -0.334 0.662 0.550 -0.534 -0.519 0.198 0.604 -0.495 -1.023 0.355 0.137 -0.444 -0.346 0.463 0.070 -0.569 0.066 0.298 0.259 -0.302 -0.795 0.502 0.424 -0.219 -1.435 0.515 0.084 -0.434 -0.515 0.585 -0.293 -0.455 0.035 0.516 0.209 -0.791 -0.066 0.391 0.422 -0.521 -0.430 0.289 0.084 -0.489 -0.544 0.624 0.176 -0.980 0.128 0.345 0.172 -0.401 -0.155 0.285 0.272 -0.147 -1.017 0.480 0.391 -0.352 -0.945 0.471 -0.217 -0.467 -0.024 0.519 0.667 -0.626 -0.600 0.143 0.551 -0.730 -1.045 0.534 0.367 -0.516 -0.308 0.267 0.019 -0.395 -0.126 0.390 0.235 -0.453 -0.407 0.421 0.520 -0.627 -1.179 0.562 0.177 -0.104 -0.430 0.259 0.169 -0.671 -0.066 0.370 0.301 -0.860 -0.205 0.432 0.502 -0.587 -1.194 0.567 0.380 -0.677 -0.374 0.380 0.592 -1.198 -0.122 0.186 0.054 -0.462 -0.006 0.310 0.519 -0.337 -1.299 0.453 0.193 -0.200 -0.331 0.252 -0.188 -0.474 -0.137 0.578 0.335 -0.715 -0.617 0.563 0.457 -0.714 -1.589 0.753 0.189 -0.408 -0.673 0.565 0.427 -0.928 -0.193 0.328 0.286 -0.599 -0.576 0.536 0.591 -0.632 -1.211 0.502 0.542 -0.820 -0.414 0.296 -0.146 -0.435 0.100 0.361 0.257 -0.829 -0.760 0.724 0.631 -0.721 -1.601 0.599 0.298 -0.428 -0.531 0.417 -0.076 -0.812 -0.012 0.576 0.165 -0.637 -0.399 0.564 0.390 -0.405 -1.303 0.613 0.024 -0.179 -0.375 0.410 -0.270 -0.482 -0.083 0.595 0.388 -0.520 -0.770 0.493 0.446 -0.534 -1.227 0.604 0.065 -0.452 -0.139 0.395 -0.101 -0.384 -0.179 0.504 0.175 -0.247 -0.608 0.457 0.545 -0.429 -0.833 0.308 -0.065 -0.053 -0.210 0.282 -0.042 -0.579 0.106 0.360 0.436 -1.066 -0.448 0.523 0.508 -0.454 -1.297 0.527 -0.185 -0.804 -0.759 0.968 0.135 -1.008 -0.185 0.608 -0.043 -0.510 -0.615 0.744 0.379 -0.425 -1.177 0.597 -0.145 -0.025 -0.408 0.442 -0.269 -0.632 -0.211 0.732 0.634 -0.546 -0.719 0.209 0.415 0.037 -1.151 0.252 -0.113 -0.345 -0.041 0.396 -0.231 -0.428 0.117 0.401 0.311 -0.277 -0.780 0.435 -0.193 0.449 -1.270 0.428 -0.198 0.206 -0.613 0.401 -0.400 0.023 -0.277 0.486 0.108 -0.978 -0.183 0.617 0.040 0.163 -0.279 0.040 -0.322 0.263 -0.661 0.452 -0.277 -0.175 -0.265 0.542 0.210 -0.334 -0.301 0.308 -0.071 0.146 -1.077 0.553 0.144 -0.125 -0.546 0.371 -0.664 -0.412 -0.119 0.762 0.449 -0.433 -0.766 0.386 0.310 -0.253 -0.004 -0.114 0.037 -0.306 -0.051 0.263 -0.814 0.140 -0.026 0.429 -0.294 -0.138 -0.078 0.409 -0.024 -0.332 0.298 -0.010 -0.500 0.548 -0.540 0.193 -0.235 -0.188 -0.055 0.389 0.229 -0.796 -0.356 0.556 -0.183 -0.286 0.182 0.220 0.159 -0.376 -0.189 0.306 -0.040 -0.821 0.061 0.504 -0.163 0.091 -0.281 0.285 -0.078 -0.078 -0.146 0.266 -0.420 0.110 -0.257 0.419 -0.640 -0.282 -0.173 0.722 0.402 -0.376 -0.934 0.470 0.266 -0.487 -1.453 0.781 0.057 -0.079 -0.759 0.508 0.153 -0.583 -0.182 0.421 0.075 -0.300 -0.606 0.563 0.239 -0.197 -1.043 0.548 -0.006 -0.032 -0.674 0.485 -0.543 0.234 -0.187 0.332 0.462 -0.627 -0.917 0.531 0.511 -0.484 -1.264 0.529 0.098 -0.407 -0.712 0.647 -0.033 -0.693 -0.219 0.627 0.105 -0.411 -0.543 0.571 0.298 -0.266 -1.583 0.683 -0.038 -0.181 -0.465 0.505 -0.415 -0.328 -0.196 0.660 0.547 -0.629 -0.709 0.356 0.532 -0.586 -1.542 0.628 0.252 -0.545 -0.117 0.265 -0.158 -0.555 -0.323 0.700 0.363 -0.529 -0.637 0.463 0.653 -0.524 -1.276 0.399 0.196 -0.149 -0.219 0.128 -0.004 -0.526 -0.056 0.429 0.307 -0.883 -0.130 0.386 0.466 -0.653 -1.331 0.665 0.178 -0.834 -0.361 0.613 0.396 -1.014 -0.223 0.414 0.215 -0.770 -0.445 0.602 0.145 -0.529 -0.724 0.674 0.152 -0.217 -0.217 0.223 -0.168 -0.615 -0.116 0.618 0.339 -0.506 -0.464 0.385 0.518 -0.478 -0.896 0.393 0.025 -0.066 -0.325 0.297 -0.143 -0.642 0.272 0.318 0.058 -0.431 -0.691 0.676 0.283 -0.054 -1.104 0.438 -0.301 0.092 -0.152 0.290 -0.200 -0.433 -0.018 0.486 0.069 -0.338 -0.290 0.425 -0.223 -0.412 0.343 0.168 -0.343 0.187 -0.343 0.361 -0.338 -0.583 0.587 0.055 0.050 -0.496 0.130 0.216 0.165 -0.193 -0.750 0.495 0.109 0.060 -0.741 0.357 -0.253 -0.385 0.082 0.418 0.580 -0.695 -0.329 0.126 0.536 -0.491 -0.871 0.369 0.158 -0.528 0.019 0.236 -0.302 -0.450 0.140 0.439 0.219 -0.392 -0.480 0.440 0.433 -0.630 -0.687 0.468 -0.209 -0.274 0.027 0.366 -0.076 -0.586 0.143 0.358 0.234 -0.670 -0.230 0.425 0.424 -0.415 -0.532 0.283 0.090 -0.685 0.419 -0.034 0.112 -1.082 0.002 0.532 0.333 -0.237 -0.396 0.178 0.510 -0.242 -1.115 0.343 0.230 -0.163 -0.226 0.109 -0.409 -0.578 0.014 0.648 0.234 -0.522 -0.195 0.327 0.375 -0.691 -0.778 0.586 0.006 -0.245 -0.463 0.513 0.009 -0.851 -0.017 0.537 0.223 -0.470 -0.554 0.516 0.475 -0.576 -1.327 0.624 -0.044 -0.044 -0.265 0.297 -0.310 -0.463 0.078 0.498 0.163 -0.911 -0.230 0.581 0.445 -0.795 -0.679 0.524 0.051 -0.235 -0.672 0.572 -0.411 -0.956 0.302 0.585 0.162 -0.565 -0.147 0.381 0.261 -0.424 -1.129 0.677 0.058 -0.288 -0.239 0.370 -0.424 -0.302 0.020 0.515 0.549 -0.504 -0.985 0.408 0.421 -0.291 -1.782 0.635 0.090 -0.310 -0.479 0.497 -0.040 -0.693 -0.405 0.726 0.198 -0.758 -0.404 0.590 0.619 -0.592 -1.428 0.515 -0.143 -0.143 -0.379 0.506 0.056 -0.531 0.003 0.341 0.387 -0.994 -0.501 0.569 0.459 -0.712 -1.872 0.801 0.406 -0.556 -0.415 0.316 0.258 -0.926 -0.425 0.616 -0.174 -0.752 -0.809 0.963 0.336 -0.434 -1.479 0.713 -0.047 -0.091 -0.576 0.508 -0.021 -0.717 -0.443 0.741 0.394 -0.466 -0.714 0.436 0.446 -0.371 -1.475 0.589 0.048 -0.429 -0.434 0.569 -0.129 -0.252 0.037 0.286 0.106 -0.723 -0.667 0.756 0.059 0.110 -1.148 0.514 -0.118 -0.222 -0.575 0.632 -0.267 -0.354 -0.125 0.555 -0.271 -0.898 -0.717 1.019 0.142 -0.030 -0.688 0.375 -0.091 -0.379 -0.556 0.689 -0.407 -0.163 0.040 0.406 0.025 -0.572 -0.137 0.486 -0.014 -0.342 -1.107 0.813 0.220 -0.362 -0.637 0.499 -0.463 -0.239 0.027 0.494 0.415 -0.390 -0.796 0.409 0.593 -0.418 -1.560 0.490 0.109 -0.118 -0.417 0.323 -0.235 -0.414 0.061 0.440 -0.076 -0.709 0.124 0.433 0.497 -0.512 -1.346 0.579 -0.127 -0.215 -0.309 0.502 -0.151 -0.570 -0.011 0.519 0.243 -0.868 -0.350 0.569 0.616 -0.667 -1.134 0.467 0.180 -0.560 -0.033 0.277 0.006 -0.834 -0.053 0.557 -0.036 -0.311 -0.085 0.351 0.497 -0.338 -1.259 0.465 0.018 -0.180 -0.362 0.408 -0.444 -0.291 -0.142 0.624 0.228 -0.547 -0.746 0.630 0.407 -0.428 -1.677 0.695 0.053 -0.307 -0.518 0.541 -0.102 -0.568 -0.165 0.587 0.011 -0.678 -0.089 0.513 0.417 -0.510 -1.486 0.683 0.045 -0.456 -0.456 0.595 -0.353 -0.557 -0.072 0.665 0.153 -0.661 -0.621 0.683 0.618 -0.744 -1.690 0.640 0.040 -0.377 -0.496 0.578 -0.309 -0.738 -0.138 0.753 0.002 -0.481 -0.310 0.561 0.180 -0.380 -1.600 0.823 -0.116 -0.237 -0.363 0.537 -0.403 -0.482 -0.239 0.749 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 -0.278 -0.346 0.714 -0.417 -0.721 0.908 -0.381 -0.417 0.517 0.034 0.301 -1.677 0.387 -1.721 1.099 -2.021 0.112 1.131 -1.399 -1.473 -0.151 0.619 0.555 -3.262 1.993 -6.721 -6.721 -6.721 -6.721 -6.721 -6.721 1.993 -6.721 -6.721 1.993 -6.721 -1.262 -2.198 1.578 -1.364 -0.364 1.296 -1.077 -1.721 -1.767 -0.245 1.204 -0.814 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 -0.234 -0.288 0.471 -0.082 0.181 -0.181 -0.465 0.333 -0.741 0.566 0.141 -0.288 -0.034 -0.465 0.369 0.011 0.404 0.259 -1.082 0.011 -0.529 0.712 -0.288 -0.234 -4.989 -4.989 -4.989 1.966 1.966 -4.989 -4.989 -4.989 1.966 -4.989 -4.989 -4.989 TAG WMM 9 6 4 0 0.000 -0.275 -0.275 0.725 -0.527 0.439 0.035 -0.527 -0.112 -1.012 0.754 0.291 -0.749 -0.218 -0.112 0.169 0.126 0.782 -0.395 -0.919 -0.012 -1.749 0.964 0.035 -0.459 -4.919 -4.919 -4.919 1.964 1.964 -4.919 -4.919 -4.919 -4.919 -4.919 1.964 -4.919 TGA WMM 9 6 4 0 0.000 0.445 -0.600 0.030 -0.063 0.468 0.089 -0.197 -0.555 -0.555 0.693 0.146 -0.747 0.227 -0.697 0.352 -0.095 0.615 0.227 -0.800 -0.467 -1.162 0.937 -0.197 -0.385 -5.555 -5.555 -5.555 1.977 -5.555 -5.555 1.977 -5.555 1.977 -5.555 -5.555 -5.555 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mosquito0000644000175000017500000013070711424066010015160 0ustar moellermoellerzoeHMM A.gambiae 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.8 Inter Esngl 0.2 Intron Eterm 0.3 Intron Exon 0.7 0.429683 0.361312 0.209005 0.737179 0.126068 0.136752 0.748201 0.129496 0.122302 0.726644 0.143599 0.129758 0.538327 0.461673 0.543947 0.456053 0.517820 0.482180 Einit 2 DEFINED 0 249 -8.100 -8.062 -8.025 -7.989 -7.953 -7.919 -7.885 -7.852 -7.820 -7.788 -7.757 -7.733 -7.709 -7.685 -7.661 -7.638 -7.616 -7.593 -7.572 -7.550 -7.529 -7.528 -7.528 -7.527 -7.527 -7.527 -7.526 -7.526 -7.526 -7.525 -7.525 -7.514 -7.504 -7.494 -7.483 -7.473 -7.463 -7.453 -7.443 -7.433 -7.423 -7.411 -7.400 -7.389 -7.377 -7.366 -7.355 -7.344 -7.333 -7.322 -7.312 -7.329 -7.346 -7.364 -7.382 -7.400 -7.419 -7.437 -7.456 -7.476 -7.495 -7.504 -7.512 -7.521 -7.529 -7.538 -7.547 -7.556 -7.565 -7.573 -7.582 -7.597 -7.612 -7.627 -7.642 -7.657 -7.672 -7.688 -7.703 -7.719 -7.735 -7.762 -7.790 -7.817 -7.846 -7.875 -7.904 -7.935 -7.965 -7.997 -8.029 -8.030 -8.031 -8.032 -8.033 -8.035 -8.036 -8.037 -8.038 -8.039 -8.040 -8.046 -8.053 -8.059 -8.066 -8.073 -8.079 -8.086 -8.093 -8.099 -8.106 -8.126 -8.146 -8.166 -8.187 -8.208 -8.230 -8.251 -8.273 -8.295 -8.318 -8.326 -8.334 -8.342 -8.350 -8.358 -8.366 -8.374 -8.382 -8.390 -8.399 -8.419 -8.439 -8.460 -8.481 -8.502 -8.524 -8.546 -8.568 -8.591 -8.614 -8.630 -8.647 -8.663 -8.680 -8.697 -8.714 -8.731 -8.748 -8.766 -8.784 -8.801 -8.819 -8.836 -8.854 -8.872 -8.891 -8.909 -8.928 -8.947 -8.966 -8.965 -8.964 -8.963 -8.962 -8.961 -8.960 -8.959 -8.958 -8.957 -8.956 -8.970 -8.983 -8.996 -9.010 -9.024 -9.038 -9.052 -9.066 -9.080 -9.095 -9.116 -9.138 -9.160 -9.182 -9.205 -9.228 -9.252 -9.276 -9.300 -9.325 -9.338 -9.351 -9.365 -9.378 -9.392 -9.406 -9.420 -9.434 -9.448 -9.462 -9.469 -9.477 -9.484 -9.491 -9.499 -9.506 -9.514 -9.521 -9.529 -9.536 -9.544 -9.551 -9.559 -9.567 -9.575 -9.582 -9.590 -9.598 -9.606 -9.614 -9.637 -9.660 -9.683 -9.707 -9.731 -9.756 -9.780 -9.806 -9.832 -9.858 -9.881 -9.904 -9.928 -9.952 -9.977 -10.002 -10.027 -10.053 -10.079 -10.106 -10.140 -10.175 -10.211 -10.248 -10.286 -10.325 -10.365 -10.406 -10.448 GEOMETRIC 250 -1 164 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.422 -10.358 -10.297 -10.239 -10.182 -10.128 -10.076 -10.025 -9.976 -9.929 -9.884 -9.865 -9.847 -9.828 -9.810 -9.793 -9.775 -9.758 -9.741 -9.724 -9.707 -9.688 -9.668 -9.649 -9.630 -9.611 -9.593 -9.574 -9.556 -9.539 -9.521 -9.504 -9.486 -9.469 -9.453 -9.436 -9.420 -9.403 -9.387 -9.372 -9.356 -9.337 -9.317 -9.299 -9.280 -9.262 -9.243 -9.225 -9.208 -9.190 -9.173 -9.146 -9.119 -9.093 -9.067 -9.042 -9.017 -8.992 -8.968 -8.945 -8.921 -8.902 -8.884 -8.865 -8.847 -8.828 -8.810 -8.793 -8.775 -8.758 -8.741 -8.731 -8.721 -8.711 -8.701 -8.691 -8.681 -8.671 -8.662 -8.652 -8.643 -8.638 -8.633 -8.628 -8.624 -8.619 -8.614 -8.610 -8.605 -8.600 -8.596 -8.593 -8.591 -8.589 -8.587 -8.584 -8.582 -8.580 -8.577 -8.575 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.554 -8.536 -8.517 -8.499 -8.481 -8.464 -8.446 -8.429 -8.412 -8.395 -8.393 -8.391 -8.389 -8.387 -8.385 -8.383 -8.381 -8.379 -8.377 -8.376 -8.370 -8.364 -8.358 -8.352 -8.346 -8.340 -8.335 -8.329 -8.323 -8.317 -8.319 -8.321 -8.323 -8.325 -8.327 -8.329 -8.331 -8.333 -8.335 -8.337 -8.348 -8.360 -8.372 -8.383 -8.395 -8.407 -8.420 -8.432 -8.444 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.467 -8.478 -8.489 -8.499 -8.510 -8.521 -8.532 -8.543 -8.554 -8.565 -8.562 -8.558 -8.554 -8.550 -8.547 -8.543 -8.539 -8.536 -8.532 -8.528 -8.543 -8.558 -8.573 -8.588 -8.603 -8.619 -8.635 -8.650 -8.666 -8.683 -8.695 -8.707 -8.720 -8.732 -8.745 -8.758 -8.771 -8.784 -8.797 -8.810 -8.809 -8.807 -8.805 -8.803 -8.802 -8.800 -8.798 -8.796 -8.795 -8.793 -8.826 -8.859 -8.894 -8.929 -8.965 -9.003 -9.041 -9.080 -9.120 -9.162 -9.147 -9.132 -9.118 -9.104 -9.090 -9.076 -9.062 -9.048 -9.034 -9.021 -9.022 -9.023 -9.024 -9.025 -9.026 -9.027 -9.028 -9.029 -9.030 GEOMETRIC 250 -1 295 Exon 2 DEFINED 0 249 -9.188 -9.322 -9.469 -9.633 -9.818 -10.030 -10.279 -10.581 -10.962 -11.481 -12.301 -12.155 -12.023 -11.903 -11.791 -11.688 -11.591 -11.500 -11.415 -11.335 -11.259 -11.159 -11.066 -10.979 -10.896 -10.818 -10.744 -10.674 -10.607 -10.543 -10.481 -10.429 -10.379 -10.331 -10.284 -10.238 -10.194 -10.152 -10.110 -10.070 -10.030 -9.960 -9.893 -9.829 -9.767 -9.709 -9.652 -9.597 -9.545 -9.494 -9.445 -9.385 -9.326 -9.270 -9.216 -9.164 -9.114 -9.065 -9.018 -8.973 -8.929 -8.883 -8.838 -8.795 -8.753 -8.712 -8.672 -8.634 -8.596 -8.560 -8.524 -8.497 -8.472 -8.446 -8.421 -8.396 -8.372 -8.349 -8.325 -8.302 -8.279 -8.254 -8.229 -8.205 -8.181 -8.157 -8.133 -8.110 -8.088 -8.066 -8.044 -8.038 -8.031 -8.025 -8.019 -8.013 -8.007 -8.001 -7.995 -7.989 -7.983 -7.985 -7.987 -7.989 -7.991 -7.994 -7.996 -7.998 -8.000 -8.002 -8.004 -7.998 -7.991 -7.985 -7.979 -7.972 -7.966 -7.960 -7.953 -7.947 -7.941 -7.938 -7.936 -7.934 -7.931 -7.929 -7.926 -7.924 -7.921 -7.919 -7.916 -7.909 -7.902 -7.895 -7.887 -7.880 -7.873 -7.866 -7.859 -7.852 -7.845 -7.840 -7.836 -7.831 -7.827 -7.822 -7.817 -7.813 -7.808 -7.804 -7.799 -7.803 -7.807 -7.811 -7.814 -7.818 -7.822 -7.826 -7.830 -7.833 -7.837 -7.848 -7.859 -7.870 -7.881 -7.892 -7.903 -7.915 -7.926 -7.938 -7.949 -7.967 -7.985 -8.004 -8.023 -8.041 -8.061 -8.080 -8.100 -8.120 -8.140 -8.157 -8.175 -8.192 -8.210 -8.228 -8.246 -8.265 -8.284 -8.303 -8.322 -8.337 -8.351 -8.366 -8.381 -8.396 -8.412 -8.427 -8.443 -8.459 -8.475 -8.487 -8.499 -8.511 -8.524 -8.536 -8.549 -8.561 -8.574 -8.587 -8.600 -8.597 -8.595 -8.592 -8.590 -8.587 -8.585 -8.582 -8.579 -8.577 -8.574 -8.592 -8.611 -8.629 -8.648 -8.667 -8.686 -8.706 -8.726 -8.746 -8.766 -8.771 -8.776 -8.781 -8.787 -8.792 -8.797 -8.802 -8.808 -8.813 -8.818 -8.839 -8.860 -8.881 -8.903 -8.924 -8.947 -8.969 -8.992 -9.016 GEOMETRIC 250 -1 238 Inter 1 GEOMETRIC 0 -1 1000 Intron 1 GEOMETRIC 0 -1 271 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.082 -0.219 -0.965 0.651 0.013 -0.243 -0.829 0.663 0.058 -0.224 -0.951 0.665 0.012 -0.109 -0.971 0.636 -0.161 -0.093 -0.968 0.728 -0.144 -0.071 -0.983 0.711 -0.203 -0.126 -0.925 0.756 -0.355 -0.012 -0.968 0.779 -0.452 0.007 -1.064 0.836 -0.489 -0.038 -0.883 0.825 -0.669 0.079 -1.055 0.874 -0.695 0.096 -1.090 0.882 -0.859 0.079 -0.948 0.906 -0.816 0.163 -1.096 0.883 -0.864 0.234 -1.141 0.865 -0.837 0.219 -1.064 0.846 -0.872 0.264 -1.497 0.925 -0.800 0.377 -1.423 0.811 -0.928 0.434 -1.439 0.811 -0.487 0.383 -1.308 0.658 -0.555 0.233 -1.272 0.791 -1.361 -0.006 -1.880 1.229 -1.272 -0.122 -2.086 1.282 0.200 -0.454 0.246 -0.096 -2.662 1.493 -7.919 0.034 1.999 -9.919 -9.919 -9.919 -9.919 -9.919 1.999 -9.919 0.219 -0.164 0.377 -0.632 0.051 -0.394 -0.396 0.529 0.128 0.052 -0.329 0.103 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.788 -0.074 0.792 -0.436 -0.538 -0.352 1.070 -1.222 -1.098 0.861 -0.982 0.276 -0.716 0.277 0.238 0.000 -0.069 -0.508 0.811 -0.765 -0.243 -1.173 1.253 -1.605 0.015 -0.122 0.447 -0.499 -0.670 -1.320 1.291 -0.931 -0.060 -0.498 0.469 -0.076 -0.105 -0.327 0.774 -0.830 0.254 0.209 -0.471 -0.105 -0.700 -0.829 1.089 -0.527 . 1.131 . 0.856 -0.642 -0.539 1.143 -1.113 . 0.180 0.588 0.448 -1.351 0.305 0.102 0.377 -0.296 0.186 0.450 -0.554 -0.890 0.305 0.891 -1.431 -2.001 1.072 -1.810 0.446 -1.453 0.529 0.107 0.157 -1.019 -0.052 0.752 -0.221 -0.619 -1.086 1.358 -1.666 -0.796 -0.025 0.667 -0.228 -1.545 -0.687 1.339 -0.981 -0.438 -0.298 0.407 0.166 -0.342 0.148 0.484 -0.505 -0.525 0.270 -0.344 0.390 -1.155 -0.256 1.041 -0.609 . 1.507 . 0.210 -1.153 -0.001 1.132 -1.475 . 0.448 0.456 0.339 -3.201 0.728 -0.889 0.761 -0.347 -0.184 0.933 -1.237 -1.034 -0.363 1.310 -1.973 -1.910 1.289 -2.047 0.068 -0.848 0.313 0.517 -0.375 -0.429 -0.385 1.005 -1.046 -0.406 -0.251 1.087 -1.832 -0.714 0.476 0.317 -0.408 -1.260 -1.083 1.476 -1.608 -0.053 -0.180 0.572 -0.585 -0.070 -0.124 0.755 -1.179 -0.353 0.880 -1.479 0.026 -0.953 -0.833 1.292 -1.077 . 1.543 . 0.119 -1.003 -0.212 1.218 -1.680 . 0.542 0.402 0.291 -2.805 0.824 -0.793 0.594 -0.204 -0.190 0.432 -0.142 -0.647 -0.056 0.961 -1.142 -0.825 0.834 -1.051 0.226 -1.143 0.036 0.544 0.089 -0.263 -0.172 0.659 -0.513 -0.637 -0.502 1.107 -1.010 -0.475 0.118 0.355 -0.127 -1.183 -0.682 1.317 -1.169 0.003 -0.389 0.212 0.105 -0.263 0.088 0.546 -0.634 0.071 0.318 -0.418 -0.066 -0.983 -0.631 1.106 -0.523 . 1.381 . 0.481 -0.747 0.119 0.884 -1.082 . 0.415 0.694 0.069 -0.953 0.349 0.501 -0.331 -0.267 0.209 0.474 -0.680 -0.280 0.017 0.762 -1.093 -0.627 0.881 -0.753 -0.125 -0.890 0.345 0.398 -0.195 -0.117 -0.236 0.868 -1.308 -0.204 -0.733 1.189 -2.002 -0.501 0.607 0.236 -0.757 -1.149 -0.507 1.288 -1.308 0.392 -0.363 0.035 -0.175 0.273 0.033 0.174 -0.643 0.444 0.024 -0.463 -0.157 -0.319 -0.415 0.736 -0.353 . 1.533 . 0.145 -0.621 0.116 0.815 -0.983 . 0.473 0.680 0.014 -0.852 0.478 0.099 -0.027 -0.252 0.432 0.459 -1.195 -0.996 0.917 0.268 -1.299 -1.401 1.392 -2.010 -0.419 -1.357 0.969 -0.117 -0.453 -0.580 -0.307 0.907 -0.626 -0.279 -0.939 1.221 -1.629 -0.970 0.621 0.271 -0.424 -1.241 -0.123 1.067 -0.828 -0.318 0.040 0.317 -0.114 -0.561 0.878 -0.351 -0.515 -0.651 0.667 -0.639 0.181 -0.992 0.454 0.542 -0.576 . 1.590 . -0.016 -1.201 0.476 0.935 -1.931 . 0.849 0.414 -0.207 -2.183 1.231 -0.847 -0.189 -0.206 0.393 0.531 -1.415 -1.158 0.702 0.730 -1.905 -1.206 1.335 -1.385 -0.597 -1.402 0.879 0.342 -0.958 -0.432 0.307 0.773 -1.677 -0.665 0.335 0.901 -2.058 -1.196 1.138 -0.302 -0.860 -1.498 0.101 1.157 -1.542 0.215 0.226 0.070 -0.690 -0.380 0.823 -0.031 -1.048 -0.500 1.127 -1.295 -0.512 -0.799 0.242 0.828 -1.095 . 1.818 . -1.077 -1.187 0.805 0.621 -1.858 . 0.893 0.600 -0.673 -2.384 1.215 -0.459 -0.399 0.062 0.200 0.004 -0.314 -0.405 0.492 0.082 -0.358 -0.468 0.927 -1.410 0.000 -0.979 0.491 -0.097 0.204 0.165 -0.100 0.431 -0.743 0.009 -0.054 0.614 -0.998 -0.611 0.634 -0.341 0.006 -0.549 -0.350 0.886 -0.549 0.254 -0.308 -0.096 0.090 -0.293 0.660 -0.722 -0.004 -0.048 0.500 -0.942 0.135 -0.384 -0.173 0.511 -0.118 . 1.593 . -0.024 -0.679 0.620 0.413 -0.979 . 0.895 0.358 -0.219 -0.687 0.594 0.208 -0.484 -0.213 -0.238 0.601 -0.372 -0.632 -0.177 1.018 -1.168 -0.392 0.685 -0.640 -0.016 -0.619 0.025 0.381 0.041 -0.621 -0.114 0.848 -0.676 -0.466 -0.881 1.246 -1.466 -0.098 0.345 0.150 -0.544 -0.921 -0.679 1.288 -1.301 -0.008 -0.115 0.267 -0.186 0.028 -0.460 0.600 -0.438 0.540 0.352 -1.117 -0.307 -0.142 -0.762 0.851 -0.513 . 1.381 . 0.481 -0.755 -0.482 1.222 -1.482 . 0.393 0.854 -0.186 -1.158 0.374 0.467 -0.193 -0.221 0.102 0.501 -0.614 -0.876 0.439 0.756 -1.286 -1.689 1.341 -2.112 -0.112 -1.478 0.776 0.041 -0.152 -0.698 0.088 0.788 -0.750 -0.684 -0.340 1.171 -1.575 -0.842 0.385 0.441 -0.360 -1.632 -0.583 1.296 -0.850 -0.137 -0.162 0.326 -0.085 -0.358 0.609 -0.066 -0.437 -0.621 0.643 -1.056 0.386 -0.933 0.150 0.711 -0.454 . 1.556 . 0.083 -1.096 -0.035 1.158 -1.620 . 0.783 0.579 -0.348 -2.083 1.146 -0.643 -0.136 -0.325 0.034 0.672 -0.775 -0.953 -0.135 1.179 -1.695 -0.651 1.055 -1.126 -0.274 -0.562 0.331 0.450 -0.516 -0.463 0.085 0.764 -0.957 -0.314 -0.083 0.952 -1.660 -0.912 0.855 0.065 -0.703 -1.337 -0.386 1.322 -1.564 -0.030 0.135 0.432 -0.803 -0.402 0.342 0.653 -1.312 -0.622 1.069 -1.557 -0.133 -0.687 -0.295 1.085 -1.177 . 1.705 . -0.433 -0.969 0.349 0.964 -1.914 . 0.784 0.503 -0.216 -1.976 0.861 0.140 -0.273 0.200 0.223 -0.024 -0.513 -0.840 0.371 0.857 -1.567 -1.339 1.082 -1.488 0.179 -1.167 0.539 0.286 -0.181 -0.244 -0.104 0.627 -0.554 -0.264 -0.030 0.809 -1.198 -0.527 0.584 -0.191 -0.103 -0.885 -0.334 1.095 -0.919 0.040 -0.031 -0.031 0.021 -0.519 0.537 0.403 -0.918 -0.161 0.675 -1.167 0.088 -0.920 -0.293 0.869 -0.270 . 1.515 . 0.190 -1.011 0.235 0.947 -1.324 . 0.634 0.447 0.117 -1.270 0.328 0.761 -0.656 -0.207 0.043 0.527 -0.594 -0.710 -0.070 1.017 -1.276 -0.727 1.042 -0.825 -0.373 -0.404 -0.152 0.568 -0.215 -0.324 -0.216 0.957 -1.324 -0.236 -1.204 1.245 -1.532 -0.448 0.520 0.407 -0.978 -1.001 -1.073 1.362 -1.138 0.210 -0.370 0.303 -0.259 -0.115 -0.041 0.565 -0.678 0.351 0.302 -0.518 -0.334 -0.731 -0.743 1.086 -0.562 . 1.346 . 0.544 -0.638 -0.255 1.079 -1.295 . 0.393 0.682 0.114 -1.217 0.432 -0.113 0.375 -0.562 0.399 0.569 -0.942 -1.011 0.731 0.540 -1.357 -1.944 1.430 -2.456 -0.211 -1.278 0.897 -0.133 -0.298 -1.112 0.125 0.844 -0.618 -0.713 -0.324 1.207 -1.821 -1.174 0.708 0.342 -0.608 -1.519 -0.209 1.196 -1.013 -0.673 -0.076 0.444 0.089 -0.769 0.631 0.202 -0.485 -0.694 0.645 -0.567 0.193 -0.993 0.136 0.842 -0.722 . 1.659 . -0.247 -1.625 0.431 1.020 -1.735 . 0.906 0.202 -0.034 -2.667 1.268 -1.277 0.030 -0.442 0.205 0.810 -1.483 -1.283 0.472 0.964 -1.992 -1.139 1.327 -1.092 -0.817 -1.057 0.552 0.481 -0.606 -0.647 0.019 0.973 -1.376 -0.482 0.062 0.957 -1.744 -0.861 0.975 -0.088 -0.880 -1.481 -0.354 1.324 -1.493 -0.070 0.142 0.402 -0.683 -0.553 0.708 0.356 -1.301 -0.353 1.041 -1.146 -0.498 -0.928 -0.386 1.158 -1.067 . 1.763 . -0.723 -1.620 0.597 0.915 -1.851 . 0.966 0.420 -0.497 -2.269 0.884 -0.369 0.231 -0.145 0.256 0.338 -0.647 -0.919 0.742 0.503 -1.388 -1.973 1.309 -2.053 0.037 -1.072 0.445 0.424 -0.286 -0.146 -0.051 0.561 -0.610 -0.222 -0.029 0.669 -0.802 -0.351 0.659 -0.262 -0.316 -0.814 -0.079 0.900 -0.692 -0.027 -0.296 0.285 -0.021 -0.592 0.685 0.172 -0.731 -0.099 0.631 -0.466 -0.333 -0.906 -0.278 0.956 -0.511 . 1.479 . 0.279 -0.840 0.495 0.664 -1.160 . 0.735 0.294 0.150 -0.832 0.584 0.326 -0.544 frame2 LUT 5 4 4 0 0.000 0.122 0.086 0.122 -0.391 0.450 -0.545 0.136 -0.236 0.033 0.019 0.236 -0.346 -0.453 0.003 0.752 -0.777 0.235 0.240 -0.096 -0.500 0.348 -1.248 0.746 -0.671 0.069 0.025 0.242 -0.414 0.106 -0.088 0.507 -0.832 0.653 0.053 -0.225 -0.903 0.517 -0.602 0.007 -0.143 0.343 0.394 -0.042 -1.166 -0.544 -0.494 0.917 -0.481 -0.057 0.231 0.011 -0.222 0.459 -0.735 0.512 -0.741 0.080 -0.037 0.278 -0.404 -0.296 0.062 0.398 -0.278 0.429 0.013 -0.183 -0.389 0.299 -0.589 0.206 -0.072 -0.072 0.413 -0.112 -0.335 -0.703 0.566 -0.034 -0.108 0.146 0.265 -0.088 -0.414 0.225 -0.606 0.516 -0.426 0.296 -0.281 0.233 -0.370 -0.318 -0.024 0.418 -0.187 0.175 -0.131 -0.318 0.209 0.547 -0.417 0.042 -0.396 -0.359 0.144 -0.114 0.253 -0.325 -0.095 0.545 -0.311 0.223 0.130 0.002 -0.442 0.340 -0.914 0.637 -0.626 -0.124 0.312 -0.065 -0.176 -0.344 0.109 0.273 -0.112 0.557 -0.470 0.153 -0.525 0.264 -0.811 0.429 -0.179 -0.241 0.093 0.286 -0.205 -0.373 0.051 0.375 -0.161 0.249 0.187 0.070 -0.682 0.341 -0.485 0.658 -1.180 0.174 -0.179 0.341 -0.470 -0.239 -0.149 0.681 -0.628 0.214 -0.251 -0.199 0.175 0.432 -0.993 0.375 -0.232 -0.059 0.403 -0.205 -0.234 -0.271 -0.439 0.784 -0.490 0.180 0.117 0.282 -0.820 0.407 -0.551 0.613 -1.112 -0.101 0.243 -0.052 -0.121 -0.380 0.032 0.247 0.032 . . . . 0.230 -0.509 0.306 -0.170 . . . . -1.170 0.534 0.242 -0.113 0.104 0.061 -0.242 0.052 0.458 -0.768 0.443 -0.557 0.154 -0.130 0.081 -0.127 -0.218 0.155 0.212 -0.203 . . . . 0.336 -0.345 0.050 -0.128 0.340 -0.198 0.050 -0.274 -0.180 -0.286 0.524 -0.219 0.259 -0.219 0.331 -0.545 0.109 0.055 0.114 -0.321 0.060 0.274 0.118 -0.594 -0.252 -0.115 0.269 0.046 0.438 -0.090 0.052 -0.581 0.468 -0.485 0.067 -0.226 -0.069 0.221 0.293 -0.609 -0.739 0.554 0.564 -1.138 0.210 0.451 -0.375 -0.505 0.454 -1.034 0.606 -0.690 0.148 0.126 0.250 -0.708 -0.153 -0.453 0.742 -0.519 0.554 0.199 -0.161 -1.031 0.510 -0.416 -0.024 -0.247 0.407 -0.166 0.469 -1.326 -0.276 -0.470 0.916 -0.823 -0.276 0.862 -0.560 -0.560 0.291 -0.346 0.355 -0.493 0.248 -0.009 0.184 -0.550 -0.218 0.204 0.383 -0.547 0.606 -0.029 -0.219 -0.648 0.228 -0.134 0.283 -0.512 -0.076 0.364 0.035 -0.434 -1.018 0.880 -0.018 -0.559 0.113 0.187 0.028 -0.395 0.281 -1.122 0.812 -0.812 0.231 -0.223 0.400 -0.621 -0.679 -0.472 0.654 0.112 0.231 0.117 -0.165 -0.235 0.557 -0.425 0.151 -0.571 -0.405 0.277 0.240 -0.230 -0.227 -0.124 0.709 -0.754 0.216 0.322 -0.099 -0.612 0.531 -0.996 0.500 -0.645 -0.052 0.363 -0.076 -0.320 -0.274 0.195 0.294 -0.318 0.393 -0.048 0.213 -0.836 0.292 -0.397 0.424 -0.566 -0.372 0.342 0.382 -0.607 -0.486 0.407 0.378 -0.598 -0.050 0.682 -0.291 -0.705 0.388 -0.256 0.326 -0.737 0.244 -0.130 0.233 -0.460 -0.112 -0.173 0.569 -0.505 -0.052 0.035 0.094 -0.084 0.657 -0.756 0.280 -0.698 -0.710 0.509 -0.085 0.032 -0.272 -0.795 1.007 -0.772 -0.147 0.641 -0.142 -0.663 0.197 -0.642 0.782 -1.017 -0.235 0.413 -0.156 -0.119 -0.201 -0.114 0.570 -0.471 . . . . 0.265 -0.149 0.274 -0.541 . . . . -1.094 0.966 0.016 -0.819 0.087 0.451 -0.431 -0.270 0.501 -0.670 0.308 -0.478 0.152 0.029 0.208 -0.487 0.035 -0.376 0.429 -0.220 . . . . 0.346 -0.087 -0.048 -0.286 0.335 -0.201 0.160 -0.413 -0.688 0.201 0.789 -0.995 0.778 -0.036 -0.211 -1.165 0.181 0.180 -0.017 -0.424 -0.003 0.374 0.228 -0.904 -0.041 -0.207 0.558 -0.536 0.499 -0.057 0.140 -0.934 0.112 -0.296 0.652 -0.906 -0.004 0.193 0.545 -1.320 -0.751 0.293 0.792 -1.152 0.126 0.462 0.017 -0.946 0.236 -1.176 0.930 -1.075 0.052 0.102 0.515 -1.116 -0.293 -0.391 0.931 -0.959 0.577 0.008 0.098 -1.209 0.274 -0.511 0.535 -0.645 0.311 0.101 0.254 -1.017 -0.522 -0.583 1.071 -0.902 -0.256 0.634 0.072 -0.839 0.105 -0.757 0.885 -1.039 0.010 -0.059 0.585 -0.906 -0.469 -0.055 0.769 -0.709 0.446 0.185 -0.003 -0.990 0.188 -0.389 0.589 -0.754 -0.251 0.522 0.275 -0.960 -0.710 0.797 0.160 -0.907 0.009 0.570 -0.065 -0.853 -0.051 -0.396 0.885 -1.224 0.061 -0.238 0.655 -0.904 -0.214 -0.074 0.483 -0.339 0.455 0.063 -0.074 -0.656 0.566 -0.507 0.342 -0.867 -0.410 0.291 0.396 -0.498 -0.184 -0.247 0.796 -0.887 0.358 0.098 0.265 -1.163 0.148 -1.406 1.065 -1.244 -0.015 0.234 0.311 -0.752 -0.162 -0.153 0.527 -0.383 0.390 -0.247 0.497 -1.200 0.322 -0.914 0.760 -0.925 -0.170 0.184 0.545 -0.954 -0.612 0.202 0.681 -0.755 0.125 0.448 0.161 -1.229 0.306 -0.525 0.778 -1.498 -0.031 -0.341 0.730 -0.805 -0.216 -0.289 0.797 -0.778 0.189 0.232 -0.013 -0.526 0.492 -0.666 0.525 -0.929 -0.502 0.916 -0.227 -0.857 -0.214 -0.504 0.918 -0.882 0.197 0.297 0.284 -1.294 0.173 -1.066 1.128 -2.253 -0.088 0.242 0.344 -0.719 -0.261 -0.283 0.739 -0.569 . . . . 0.204 -0.562 0.655 -0.746 . . . . -1.007 0.811 0.199 -0.738 0.149 0.542 -0.368 -0.597 -0.055 -0.620 0.869 -0.837 -0.017 0.082 0.420 -0.702 -0.274 -0.144 0.536 -0.291 . . . . 0.256 -0.308 0.438 -0.636 0.333 -0.133 0.289 -0.720 -0.491 -0.113 0.816 -0.730 0.143 0.260 0.270 -1.022 0.045 -0.153 0.513 -0.639 -0.134 0.342 0.465 -1.184 -0.078 -0.204 0.608 -0.599 0.568 -0.243 0.093 -0.723 0.294 -0.421 0.331 -0.378 0.056 0.295 0.262 -0.905 -0.478 0.119 0.650 -0.676 0.219 0.196 0.009 -0.546 0.260 -1.083 0.797 -0.756 0.026 0.196 0.371 -0.880 0.110 -0.263 0.608 -0.828 0.743 -0.505 0.031 -0.739 0.480 -0.809 0.127 -0.085 0.686 -0.195 -0.051 -0.858 -0.047 -0.386 0.677 -0.582 0.025 0.314 0.143 -0.656 0.031 -0.817 0.798 -0.572 -0.043 0.152 0.416 -0.775 -0.235 -0.110 0.579 -0.454 0.524 0.072 -0.054 -0.869 0.271 -0.243 0.444 -0.768 -0.310 0.617 -0.002 -0.597 -0.665 0.692 -0.021 -0.380 0.058 0.354 0.078 -0.676 0.383 -0.950 0.678 -0.790 -0.030 -0.173 0.552 -0.582 -0.198 -0.115 0.421 -0.208 0.072 0.169 -0.119 -0.146 0.401 -0.429 0.234 -0.394 -0.415 0.254 0.145 -0.072 -0.136 -0.060 0.491 -0.463 0.249 0.087 0.256 -0.848 0.295 -1.371 0.908 -0.971 -0.302 0.403 0.189 -0.461 0.015 0.038 0.236 -0.349 0.536 -0.369 0.279 -0.830 0.208 -0.564 0.531 -0.467 -0.240 0.212 0.472 -0.718 -0.281 0.051 0.478 -0.419 0.173 0.231 0.024 -0.552 0.153 -0.360 0.715 -1.099 0.010 -0.052 0.514 -0.736 -0.463 -0.107 0.785 -0.683 0.102 0.054 0.064 -0.246 0.502 -0.432 0.336 -0.785 -0.416 0.549 -0.215 -0.111 -0.377 -0.769 0.985 -0.591 0.213 0.062 0.280 -0.780 -0.042 -0.646 1.016 -1.441 -0.115 0.232 0.263 -0.511 -0.245 -0.214 0.600 -0.362 . . . . 0.119 -0.561 0.591 -0.456 . . . . -0.677 0.529 0.370 -0.646 0.320 0.273 -0.472 -0.284 0.240 -0.724 0.627 -0.579 -0.004 0.161 0.257 -0.536 -0.047 -0.265 0.433 -0.236 . . . . 0.177 -0.278 0.171 -0.123 0.220 -0.120 0.184 -0.361 -0.484 -0.103 0.745 -0.561 0.360 0.139 0.112 -0.906 0.225 -0.066 0.250 -0.541 -0.133 0.269 0.430 -0.900 0.135 -0.110 0.497 -0.827 frame2 LUT 5 4 4 0 0.000 0.484 0.175 -1.162 0.036 0.176 0.345 -0.369 -0.276 0.294 0.422 -0.604 -0.366 -0.715 0.701 -0.411 0.019 0.658 -0.503 -0.971 0.271 0.297 -0.377 0.028 -0.027 0.659 -0.494 -0.235 -0.215 -0.045 -0.189 -0.240 0.386 0.995 -0.809 -1.358 0.065 0.231 -0.999 -0.182 0.530 0.802 -0.326 -0.759 -0.205 0.240 -0.358 -0.431 0.375 0.421 0.137 -1.066 0.117 -0.108 0.140 -0.396 0.275 0.026 0.257 -0.136 -0.190 -0.918 0.109 -0.800 0.862 0.361 0.302 -1.269 0.094 -0.200 0.538 -0.991 0.231 0.211 0.421 -0.938 -0.026 -1.140 0.522 -0.810 0.622 0.632 -0.142 -0.782 -0.056 0.176 -0.626 0.143 0.160 0.538 -0.721 0.059 -0.152 -0.499 0.095 0.095 0.210 0.411 -0.340 -1.401 0.587 -0.063 -0.354 -0.718 0.725 0.395 0.002 -0.781 0.139 -0.120 -0.252 -0.726 0.710 -0.095 0.644 -0.628 -0.228 -0.024 0.418 -0.556 0.000 -0.282 0.394 -0.099 -0.105 -0.827 0.566 -0.856 0.489 0.685 -0.494 -0.434 -0.086 0.352 -0.115 0.189 -0.597 0.340 0.266 -0.522 -0.259 -0.174 0.155 -0.874 0.541 0.667 -0.545 -0.331 -0.102 0.391 -0.517 -0.052 0.036 0.722 -0.748 -0.060 -0.329 -0.190 -0.013 -0.406 0.462 0.974 -0.726 -1.424 0.081 0.491 -0.749 0.106 -0.114 0.935 -0.065 -0.807 -0.837 -0.465 -0.465 -0.465 0.869 0.262 0.255 -0.592 -0.084 0.105 0.150 -0.371 0.059 0.215 0.287 -0.188 -0.432 -1.689 0.435 -1.068 0.896 0.604 0.077 -1.088 -0.067 -0.084 -0.106 -0.313 0.403 0.307 0.425 -0.863 -0.200 -1.281 0.376 -0.576 0.696 0.727 -0.427 -1.219 0.228 0.203 -0.463 0.057 0.115 0.734 -0.610 -0.444 -0.079 0.029 -0.150 -0.014 0.122 0.747 -0.400 -1.285 0.206 0.229 -0.448 -0.387 0.411 0.602 -0.038 -0.589 -0.245 -0.253 0.029 -0.376 0.454 0.358 0.211 -1.221 0.179 -0.075 0.116 -0.324 0.225 0.060 0.455 -0.434 -0.241 -0.894 0.317 -0.549 0.616 0.422 0.258 -1.025 -0.040 0.602 0.139 -0.566 -0.504 0.366 0.380 -0.439 -0.573 -0.925 0.668 -0.638 0.312 0.499 -0.228 -1.008 0.306 0.728 -0.669 -0.115 -0.338 0.682 -0.409 -0.312 -0.258 -0.112 -0.153 0.088 0.153 0.739 -0.633 -1.303 0.356 0.621 -0.876 -0.571 0.315 0.747 -0.237 -0.690 -0.228 0.024 -0.317 -0.259 0.427 0.244 0.276 -1.493 0.322 0.207 0.024 -0.566 0.207 -0.063 0.292 -0.108 -0.167 -0.538 0.258 -0.762 0.610 0.607 0.215 -1.237 -0.165 -0.065 0.699 -0.983 -0.129 0.179 0.546 -1.204 -0.037 -0.820 0.715 -1.245 0.454 0.790 -0.192 -0.970 -0.176 0.670 -0.684 0.053 -0.416 0.640 -0.659 0.057 -0.380 -0.544 0.345 -0.108 0.158 0.645 -0.363 -1.307 0.327 0.117 -0.187 -0.868 0.574 0.662 0.046 -0.910 -0.229 0.119 -0.037 -0.786 0.443 0.246 0.573 -0.779 -0.427 0.217 0.615 -0.686 -0.546 -0.202 0.550 -0.253 -0.273 -0.549 0.750 -0.736 0.049 0.555 -0.180 -0.385 -0.180 0.117 0.135 -0.124 -0.152 0.317 0.169 -0.406 -0.191 -0.689 0.506 -0.445 0.292 0.842 -0.381 -1.379 0.078 0.539 -0.607 0.259 -0.527 0.873 -1.057 -0.331 -0.163 0.007 -0.214 -0.145 0.298 0.913 -0.544 -1.859 0.208 0.118 -0.525 -0.400 0.547 0.734 0.142 -0.878 -0.537 0.002 -0.652 -0.779 0.831 0.311 0.295 -1.312 0.176 0.052 0.052 0.027 -0.140 0.196 0.177 -0.205 -0.222 -0.926 0.350 -0.507 0.581 0.509 0.222 -1.107 -0.078 0.358 0.031 -0.490 -0.023 0.446 0.374 -1.001 -0.248 -1.328 0.731 -0.374 0.227 0.751 -0.226 -0.887 -0.119 0.392 -0.533 0.245 -0.301 0.655 -0.736 0.184 -0.538 -0.268 -0.033 0.223 0.036 0.772 -0.452 -1.535 0.282 0.176 -0.579 -0.427 0.543 0.659 0.060 -1.153 -0.107 -0.135 -0.086 -0.384 0.465 0.264 0.417 -0.730 -0.216 -0.003 0.555 -0.207 -0.585 -0.125 0.530 -0.028 -0.603 -0.668 0.731 -0.483 -0.006 0.577 -0.081 -0.880 0.028 0.232 0.111 -0.044 -0.365 0.637 0.230 -0.495 -0.830 -0.595 0.590 -0.217 -0.041 0.597 -0.510 -0.863 0.305 0.421 -0.641 0.054 -0.026 0.991 -0.918 -0.373 -0.493 0.068 -0.384 -0.134 0.350 0.937 -1.025 -1.572 0.331 0.249 -1.327 -0.247 0.651 1.010 -0.582 -0.910 -0.347 0.167 -0.672 -0.377 0.565 0.374 -0.055 -1.013 0.318 -0.243 -0.002 -0.197 0.361 0.461 0.028 -0.246 -0.395 -0.569 -0.016 -0.543 0.723 0.644 0.042 -1.029 -0.123 -0.141 0.232 -0.736 0.399 0.005 0.701 -0.691 -0.411 -1.034 0.606 -1.188 0.633 0.733 -0.281 -0.907 -0.027 0.354 -0.548 0.044 0.010 0.452 -0.271 -0.037 -0.271 -0.484 0.179 0.140 0.072 0.574 -0.464 -1.473 0.512 0.098 -0.644 -1.095 0.865 0.534 0.235 -0.810 -0.313 0.027 -0.167 -0.866 0.625 0.286 0.127 -0.528 -0.007 0.295 0.407 -0.507 -0.429 -0.152 0.585 -0.118 -0.559 -0.714 0.691 -0.441 0.055 0.472 0.077 -0.601 -0.155 0.354 -0.122 -0.310 -0.006 0.157 0.197 0.082 -0.557 -0.453 0.103 -0.397 0.522 0.664 -0.380 -0.883 0.144 0.624 -0.694 0.122 -0.411 0.677 -0.860 0.068 -0.318 0.077 -0.162 -0.112 0.171 0.826 0.002 -2.014 -0.031 -0.136 -0.759 -0.612 0.883 0.577 0.342 -1.008 -0.427 0.051 -0.537 -1.063 0.845 0.190 0.244 -0.679 0.072 0.060 -0.049 -0.144 0.119 -0.113 0.076 0.354 -0.428 -1.009 0.543 -0.729 0.529 0.722 0.047 -1.390 -0.095 0.194 0.020 -0.268 0.016 0.248 0.508 -0.931 -0.207 -1.504 0.629 -0.564 0.510 0.568 -0.161 -1.072 0.199 0.396 -0.171 -0.152 -0.158 0.608 -0.530 -0.041 -0.301 -0.168 0.005 0.214 -0.079 0.803 -0.392 -1.757 0.260 0.049 -0.486 -0.507 0.630 0.653 0.005 -1.156 -0.036 -0.172 -0.153 -0.365 0.522 0.294 0.251 -0.622 -0.098 -0.083 0.342 -0.004 -0.337 0.047 0.295 -0.028 -0.397 -0.537 0.528 -0.209 0.006 . . . . . . . . . . . . . . . . 0.619 -0.290 -0.961 0.179 0.289 -0.722 0.174 0.062 0.732 -0.539 -0.289 -0.264 0.126 -0.155 -0.328 0.280 . . . . . . . . . . . . . . . . 0.533 -0.128 -0.614 -0.022 -0.146 -0.034 -0.353 0.419 0.142 0.183 0.064 -0.481 -0.390 0.254 -0.988 0.623 0.677 0.113 -1.147 -0.205 -0.144 0.384 -0.712 0.237 0.214 0.595 -0.867 -0.355 -1.150 0.968 -1.229 0.223 0.558 0.007 -0.570 -0.235 0.249 -0.824 0.339 -0.026 0.398 -0.373 0.063 -0.208 -0.378 0.258 -0.045 0.091 0.513 -0.532 -1.231 0.541 0.102 -0.530 -0.721 0.703 0.507 -0.045 -0.623 -0.058 -0.171 0.090 -0.754 0.541 0.070 0.444 -0.434 -0.234 0.091 0.408 -0.067 -0.614 -0.170 0.459 -0.030 -0.402 -0.891 0.883 -1.012 0.165 . . . . . . . . . . . . . . . . 0.649 -0.357 -0.934 0.173 0.294 -0.431 0.051 -0.006 0.622 -0.736 -0.167 -0.045 -0.223 -0.175 -0.082 0.392 0.555 -0.289 -0.947 0.256 0.338 -0.675 -0.249 0.342 0.748 -0.358 -0.408 -0.347 -0.375 -0.142 -0.210 0.544 0.449 0.184 -0.725 -0.161 -0.496 0.298 -0.691 0.528 0.183 0.280 -0.081 -0.505 -1.096 0.147 -0.915 0.922 0.653 -0.112 -0.627 -0.228 0.115 0.080 0.043 -0.269 0.350 0.283 -0.678 -0.179 -0.947 0.366 -0.731 0.669 0.731 -0.414 -1.093 0.164 0.160 -0.489 -0.016 0.240 0.737 -0.721 -0.155 -0.271 -0.074 -0.233 -0.153 0.379 0.726 -0.702 -1.090 0.335 -0.042 -0.527 -0.079 0.473 0.453 0.315 -0.826 -0.280 -0.636 -0.073 -0.548 0.784 0.410 0.194 -1.253 0.147 -0.050 -0.288 -0.585 0.630 0.171 0.296 -0.545 -0.057 -0.613 0.436 -0.509 0.368 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.627 -0.046 -0.325 -0.538 0.942 -0.433 -0.659 -0.503 -0.840 -1.724 1.397 -0.986 -9.919 -9.919 1.999 -9.919 -9.919 -9.919 -9.919 1.999 1.708 -5.460 -0.845 -2.710 1.559 -1.448 -1.720 -1.380 -2.118 -3.411 1.798 -2.334 -0.980 -0.974 -1.268 1.361 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.642 -0.302 -0.694 0.015 0.653 -0.463 -0.208 -0.258 0.221 -0.022 -0.319 0.067 0.236 -0.413 -0.106 0.192 0.566 -0.256 -0.438 -0.083 0.459 -0.311 0.023 -0.315 0.387 -0.193 -0.193 -0.085 -0.026 -0.296 0.127 0.153 0.731 -0.879 -0.284 -0.036 0.480 -0.695 -0.082 0.061 0.323 -0.441 -0.136 0.141 0.115 -0.829 0.283 0.186 0.616 -0.541 -0.703 0.221 0.363 -0.448 0.106 -0.143 0.124 -0.243 -0.329 0.344 -0.014 -0.509 -0.149 0.491 0.647 -0.150 -0.884 -0.013 0.861 -0.583 -0.470 -0.333 0.007 0.201 -0.574 0.232 -0.098 -0.249 -0.419 0.562 0.253 0.048 -0.420 0.037 0.240 -0.107 -0.128 -0.036 0.164 -0.216 -0.140 0.153 -0.349 -0.176 -0.131 0.502 0.315 -0.290 -0.523 0.312 0.302 -0.429 -0.072 0.102 0.003 -0.058 -0.344 0.321 -0.137 -0.489 0.069 0.411 0.305 0.008 -0.651 0.166 0.126 -0.036 -0.168 0.061 -0.077 -0.009 -0.471 0.419 -0.414 -0.147 -0.384 0.660 0.650 -0.534 -0.164 -0.239 0.533 -0.519 0.080 -0.324 0.663 -0.206 -0.469 -0.273 0.045 -0.447 0.026 0.283 0.404 -0.439 0.083 -0.183 0.347 -0.358 0.159 -0.266 0.250 -0.044 -0.225 -0.021 -0.333 -0.262 0.261 0.231 0.610 -0.712 -0.118 -0.086 0.365 -0.433 0.063 -0.109 0.324 -0.242 -0.103 -0.042 0.149 -0.792 0.240 0.179 0.364 -0.237 -0.191 -0.017 0.245 -0.366 0.241 -0.223 0.021 -0.193 -0.328 0.394 -0.427 -0.378 -0.098 0.634 0.712 -0.654 -0.874 0.239 0.676 -0.506 -0.368 -0.116 0.232 -0.041 -0.613 0.262 0.096 -0.534 -0.396 0.567 0.381 -0.294 -0.565 0.271 0.298 -0.315 -0.102 0.049 0.252 -0.227 -0.371 0.240 -0.256 -0.148 -0.070 0.387 0.497 -0.595 -0.618 0.351 0.443 -0.584 -0.268 0.193 0.215 -0.236 -0.332 0.257 0.012 -0.765 -0.007 0.493 0.382 -0.351 -0.730 0.390 0.244 -0.057 -0.252 0.021 0.118 -0.096 -0.534 0.365 -0.157 -0.378 -0.300 0.605 0.543 0.001 -0.762 -0.069 0.636 -0.265 -0.322 -0.296 0.036 0.194 -0.271 0.003 -0.051 -0.163 -0.195 0.343 0.043 0.589 -0.592 -0.319 0.508 -0.369 0.037 -0.363 0.143 0.124 -0.235 -0.064 -0.261 -0.191 0.076 0.305 0.497 -0.438 -0.352 0.093 0.603 -0.632 -0.311 0.042 0.292 -0.121 -0.302 0.064 -0.094 -0.561 0.177 0.328 0.359 0.061 -0.789 0.132 0.344 -0.218 -0.035 -0.160 0.053 0.030 -0.436 0.266 -0.338 -0.231 -0.326 0.641 0.502 0.013 -0.703 -0.058 0.173 0.339 -0.486 -0.162 -0.148 0.496 -0.614 0.048 -0.415 0.196 -0.473 0.469 0.191 0.044 -0.510 0.170 -0.032 0.415 -0.290 -0.200 -0.026 -0.045 -0.100 0.158 -0.658 0.118 -0.259 0.531 0.333 -0.221 -0.476 0.219 0.109 0.083 -0.279 0.053 0.144 0.032 -0.413 0.166 -0.282 -0.211 -0.117 0.477 0.150 0.164 -0.665 0.189 -0.159 0.303 -0.271 0.059 -0.445 0.364 -0.488 0.340 -0.662 0.191 -0.421 0.565 0.478 -0.059 -0.394 -0.174 0.165 -0.178 0.090 -0.104 0.167 0.307 -0.469 -0.125 -0.350 0.106 -0.076 0.251 0.261 0.196 -0.408 -0.148 0.297 -0.105 0.074 -0.343 0.002 0.246 -0.408 0.083 -0.505 0.002 0.143 0.251 0.498 -0.312 -0.207 -0.127 0.319 -0.177 -0.107 -0.090 0.081 0.094 -0.185 -0.008 -0.091 -0.450 0.229 0.211 0.163 0.276 -0.514 -0.045 0.067 -0.018 0.116 -0.182 -0.241 0.113 -0.500 0.449 -0.582 -0.050 -0.269 0.619 0.535 -0.248 -0.961 0.257 0.305 -0.114 -0.415 0.126 0.137 0.215 -0.728 0.183 -0.208 -0.069 -0.452 0.536 0.310 -0.001 -0.749 0.222 0.183 -0.011 -0.135 -0.057 0.128 0.002 -0.293 0.124 -0.549 0.466 -0.440 0.261 0.482 -0.364 -0.793 0.320 0.244 -0.319 -0.568 0.422 0.231 -0.023 -0.564 0.220 -0.108 -0.356 -0.050 0.405 0.313 0.034 -0.866 0.245 0.054 0.058 -0.400 0.217 -0.017 0.137 -0.419 0.220 -0.443 0.000 -0.364 0.572 0.520 -0.319 -0.365 -0.017 0.328 -0.350 0.160 -0.246 0.270 0.029 -0.085 -0.267 -0.122 -0.246 0.122 0.201 0.210 -0.106 -0.012 -0.117 0.316 -0.527 0.344 -0.337 0.453 -0.282 -0.033 -0.266 -0.261 -0.108 0.180 0.144 0.370 -0.934 0.366 -0.160 0.379 -0.673 0.098 0.003 0.427 -0.426 -0.040 -0.091 -0.155 -0.549 0.300 0.248 0.468 -0.294 -0.347 0.022 0.165 -0.519 0.443 -0.283 0.206 -0.148 -0.053 -0.030 -0.364 -0.320 -0.054 0.545 0.578 -0.210 -0.567 -0.047 0.422 -0.153 -0.142 -0.227 -0.252 0.511 -0.414 -0.022 -0.295 0.008 -0.218 0.400 0.264 -0.032 -0.275 -0.008 0.036 -0.159 0.174 -0.072 -0.076 0.002 -0.014 0.083 -0.411 -0.232 0.124 0.386 0.315 -0.466 -0.241 0.245 0.253 -0.427 0.089 0.001 -0.042 0.120 -0.260 0.147 -0.163 -0.513 0.183 0.345 0.208 0.073 -0.431 0.073 -0.052 -0.095 0.130 0.007 -0.312 0.281 -0.233 0.175 -0.481 -0.010 -0.186 0.497 0.514 -0.466 -0.096 -0.132 0.432 -0.410 0.246 -0.490 0.074 -0.014 0.059 -0.128 -0.248 -0.331 0.265 0.216 0.343 -0.177 -0.030 -0.206 0.379 -0.355 0.283 -0.512 0.130 -0.107 0.121 -0.168 -0.351 -0.261 0.308 0.193 0.604 -0.600 -0.037 -0.242 0.321 -0.345 0.084 -0.146 0.155 -0.370 0.273 -0.146 -0.148 -0.793 0.299 0.368 0.407 -0.127 -0.117 -0.258 0.203 -0.282 0.357 -0.423 -0.204 -0.121 0.155 0.135 -0.603 -0.272 0.012 0.590 0.491 -0.512 -0.116 -0.043 0.422 -0.355 0.034 -0.227 0.081 0.028 -0.360 0.194 -0.230 -0.294 0.098 0.335 0.385 -0.165 -0.421 0.078 0.200 -0.207 0.072 -0.100 -0.057 -0.182 -0.186 0.354 -0.324 -0.114 0.085 0.282 0.435 -0.530 -0.264 0.167 0.255 -0.473 0.083 0.039 0.062 -0.143 -0.407 0.375 -0.352 -0.921 0.708 0.078 0.307 -0.165 -0.546 0.246 0.119 -0.158 0.057 -0.033 -0.115 -0.070 -0.307 0.396 -0.417 -0.372 0.034 0.541 0.572 -0.358 -0.750 0.186 0.540 -0.458 -0.147 -0.128 0.047 0.029 -0.507 0.313 -0.001 -0.504 -0.199 0.510 0.267 -0.104 -0.330 0.099 0.384 -0.421 0.034 -0.114 0.176 -0.016 -0.233 0.043 0.018 -0.474 -0.040 0.372 0.625 -0.778 -0.271 0.065 0.498 -0.652 -0.199 0.112 0.327 -0.207 -0.408 0.171 0.083 -0.905 0.119 0.402 0.326 -0.443 -0.669 0.466 0.337 -0.453 -0.058 0.065 0.025 -0.170 -0.414 0.426 -0.244 -0.576 -0.351 0.766 0.508 -0.208 -0.746 0.158 0.336 -0.118 -0.414 0.092 -0.176 0.321 -0.729 0.336 -0.382 0.114 -0.488 0.523 0.187 -0.105 -0.284 0.152 0.163 -0.011 -0.203 0.028 0.062 -0.271 0.093 0.085 -0.503 -0.058 -0.193 0.545 0.298 -0.520 -0.461 0.429 0.069 -0.206 -0.277 0.332 0.012 -0.126 -0.405 0.401 -0.256 -0.235 -0.188 0.521 0.191 -0.081 -0.554 0.301 -0.261 -0.230 -0.298 0.585 -0.369 0.113 -0.359 0.448 -0.631 0.108 -0.446 0.625 0.502 -0.370 -0.299 -0.003 0.416 -0.324 -0.028 -0.175 0.102 0.080 -0.428 0.172 -0.166 -0.384 0.068 0.372 0.258 -0.214 -0.143 0.051 0.274 -0.307 0.153 -0.200 -0.080 0.070 -0.331 0.274 -0.400 -0.313 0.324 0.246 0.533 -0.527 -0.183 -0.031 0.308 -0.224 -0.076 -0.064 0.161 -0.163 -0.191 0.154 -0.172 -0.702 0.345 0.295 0.275 -0.108 -0.513 0.216 0.225 -0.141 -0.081 -0.031 -0.510 -0.220 -0.715 0.872 -0.608 -0.526 -0.041 0.746 0.615 -0.506 -0.813 0.257 0.474 -0.313 -0.407 0.073 0.084 0.012 -0.622 0.359 -0.322 -0.311 -0.466 0.740 0.395 -0.285 -0.589 0.262 0.263 -0.161 -0.205 0.054 0.124 -0.173 -0.280 0.263 -0.248 -0.218 -0.317 0.581 0.543 -0.558 -0.679 0.310 0.322 -0.412 -0.374 0.295 0.097 -0.121 -0.437 0.347 -0.193 -0.837 -0.066 0.687 0.312 -0.266 -0.737 0.408 0.130 -0.114 -0.289 0.218 -0.111 0.011 -0.520 0.453 -0.301 -0.354 -0.261 0.652 Intron LUT 5 4 4 0 0.000 0.641 -0.334 -0.721 0.057 0.622 -0.401 -0.292 -0.172 0.216 -0.044 -0.297 0.077 0.178 -0.495 -0.033 0.241 0.513 -0.253 -0.461 0.010 0.453 -0.252 -0.064 -0.261 0.375 -0.160 -0.247 -0.051 -0.028 -0.264 0.069 0.186 0.669 -0.847 -0.231 0.003 0.494 -0.646 -0.121 0.046 0.185 -0.490 -0.080 0.270 0.135 -0.875 0.295 0.176 0.561 -0.575 -0.658 0.287 0.375 -0.465 0.058 -0.094 0.116 -0.274 -0.302 0.354 -0.026 -0.551 -0.127 0.505 0.643 -0.211 -0.914 0.062 0.902 -0.598 -0.571 -0.327 0.048 0.080 -0.490 0.259 -0.060 -0.339 -0.402 0.579 0.276 0.057 -0.574 0.108 0.290 -0.069 -0.278 -0.001 0.178 -0.241 -0.210 0.213 -0.360 -0.110 -0.233 0.530 0.301 -0.243 -0.633 0.354 0.315 -0.410 -0.172 0.158 -0.053 -0.119 -0.331 0.401 -0.084 -0.544 -0.011 0.463 0.327 -0.059 -0.657 0.204 0.161 -0.028 -0.249 0.083 0.001 -0.043 -0.529 0.418 -0.407 -0.221 -0.411 0.710 0.650 -0.627 -0.206 -0.125 0.571 -0.513 0.000 -0.298 0.665 -0.270 -0.433 -0.243 0.074 -0.507 0.026 0.293 0.406 -0.463 -0.057 -0.016 0.399 -0.396 0.002 -0.121 0.232 -0.055 -0.237 0.022 -0.233 -0.263 0.096 0.318 0.644 -0.743 -0.225 -0.024 0.345 -0.344 -0.097 0.011 0.333 -0.362 -0.062 0.007 0.296 -0.898 0.126 0.194 0.399 -0.359 -0.159 0.008 0.239 -0.357 0.179 -0.142 0.019 -0.246 -0.326 0.429 -0.407 -0.478 -0.092 0.668 0.621 -0.583 -0.895 0.330 0.677 -0.498 -0.438 -0.067 0.206 -0.045 -0.646 0.308 0.128 -0.588 -0.406 0.573 0.384 -0.352 -0.661 0.355 0.277 -0.289 -0.216 0.150 0.267 -0.229 -0.425 0.262 -0.235 -0.141 -0.180 0.444 0.472 -0.621 -0.666 0.414 0.440 -0.606 -0.325 0.248 0.178 -0.300 -0.295 0.312 -0.019 -0.781 0.016 0.506 0.379 -0.341 -0.764 0.402 0.270 -0.074 -0.335 0.071 0.147 -0.128 -0.502 0.346 -0.163 -0.389 -0.300 0.614 0.541 -0.032 -0.747 -0.042 0.613 -0.215 -0.363 -0.266 0.014 0.179 -0.281 0.050 -0.111 -0.214 -0.162 0.399 -0.025 0.632 -0.603 -0.305 0.514 -0.261 -0.073 -0.346 0.139 0.145 -0.254 -0.067 -0.263 -0.136 0.016 0.316 0.427 -0.332 -0.263 0.040 0.608 -0.575 -0.344 0.024 0.175 -0.095 -0.312 0.176 -0.086 -0.597 0.153 0.362 0.373 0.006 -0.793 0.169 0.361 -0.210 -0.094 -0.130 0.031 0.037 -0.455 0.290 -0.338 -0.281 -0.321 0.665 0.510 -0.026 -0.757 0.003 0.183 0.288 -0.539 -0.066 -0.104 0.422 -0.564 0.075 -0.395 0.092 -0.465 0.536 0.176 0.042 -0.647 0.266 -0.021 0.407 -0.336 -0.159 -0.083 -0.078 -0.133 0.258 -0.659 0.102 -0.364 0.601 0.231 -0.203 -0.483 0.313 0.081 0.087 -0.293 0.089 0.201 -0.114 -0.336 0.182 -0.246 -0.262 -0.139 0.501 0.172 0.133 -0.713 0.223 -0.174 0.310 -0.425 0.175 -0.451 0.319 -0.516 0.403 -0.668 0.155 -0.486 0.626 0.463 -0.113 -0.448 -0.053 0.190 -0.211 0.043 -0.052 0.176 0.204 -0.483 0.005 -0.356 0.011 -0.049 0.316 0.235 0.192 -0.428 -0.093 0.267 -0.071 0.035 -0.286 -0.073 0.285 -0.409 0.109 -0.504 -0.001 0.052 0.332 0.511 -0.446 -0.189 -0.053 0.290 -0.251 -0.169 0.067 0.073 -0.091 -0.054 0.065 -0.068 -0.470 0.184 0.249 0.208 0.149 -0.473 0.022 0.100 -0.058 0.055 -0.107 -0.222 -0.006 -0.427 0.488 -0.572 -0.105 -0.266 0.647 0.466 -0.177 -1.055 0.326 0.293 -0.146 -0.425 0.172 0.158 0.170 -0.743 0.216 -0.222 -0.117 -0.389 0.542 0.285 -0.037 -0.750 0.278 0.163 0.099 -0.216 -0.077 0.056 0.021 -0.330 0.201 -0.618 0.525 -0.487 0.258 0.409 -0.305 -0.750 0.344 0.190 -0.293 -0.582 0.460 0.150 -0.074 -0.525 0.317 -0.180 -0.448 -0.017 0.481 0.302 0.030 -0.900 0.275 0.006 0.105 -0.457 0.253 -0.033 0.118 -0.400 0.239 -0.504 0.025 -0.386 0.597 0.498 -0.326 -0.370 0.023 0.302 -0.307 0.124 -0.202 0.246 -0.052 -0.053 -0.176 -0.153 -0.286 0.159 0.219 0.213 -0.066 -0.109 -0.062 0.306 -0.480 0.244 -0.213 0.452 -0.315 -0.060 -0.203 -0.264 -0.073 0.146 0.150 0.294 -0.868 0.389 -0.126 0.416 -0.641 0.055 -0.020 0.239 -0.417 0.042 0.058 -0.116 -0.574 0.305 0.227 0.434 -0.305 -0.381 0.100 0.203 -0.532 0.424 -0.295 0.213 -0.215 -0.055 0.024 -0.379 -0.320 -0.084 0.572 0.565 -0.291 -0.600 0.061 0.467 -0.175 -0.249 -0.167 -0.267 0.434 -0.376 0.067 -0.251 -0.112 -0.156 0.419 0.278 -0.084 -0.366 0.095 0.013 -0.081 0.054 0.010 -0.137 0.022 -0.080 0.175 -0.342 -0.263 0.067 0.411 0.322 -0.496 -0.290 0.290 0.276 -0.419 0.036 0.023 -0.119 0.054 -0.171 0.204 -0.184 -0.566 0.171 0.398 0.227 0.017 -0.453 0.121 0.001 -0.107 -0.012 0.110 -0.284 0.227 -0.247 0.221 -0.471 -0.057 -0.197 0.531 0.512 -0.529 -0.140 -0.040 0.445 -0.424 0.143 -0.342 0.072 -0.117 0.068 -0.031 -0.277 -0.436 0.293 0.275 0.352 -0.172 -0.084 -0.164 0.349 -0.257 0.135 -0.337 0.157 -0.131 0.054 -0.099 -0.354 -0.324 0.290 0.258 0.607 -0.649 -0.054 -0.191 0.320 -0.348 0.048 -0.101 0.123 -0.437 0.319 -0.113 -0.149 -0.839 0.290 0.397 0.567 -0.255 -0.217 -0.286 0.215 -0.258 0.257 -0.306 -0.152 -0.234 0.164 0.175 -0.619 -0.371 0.047 0.626 0.371 -0.613 0.151 -0.085 0.459 -0.345 -0.066 -0.180 0.061 0.007 -0.297 0.187 -0.239 -0.408 0.150 0.367 0.357 -0.130 -0.499 0.135 0.210 -0.149 -0.023 -0.064 -0.067 -0.148 -0.290 0.406 -0.320 -0.086 0.008 0.324 0.360 -0.498 -0.177 0.169 0.268 -0.482 0.028 0.084 -0.001 -0.191 -0.351 0.423 -0.450 -0.988 0.789 0.052 0.293 -0.184 -0.626 0.318 0.099 -0.140 -0.025 0.056 -0.136 -0.064 -0.282 0.391 -0.495 -0.365 0.012 0.590 0.553 -0.412 -0.711 0.227 0.537 -0.404 -0.221 -0.097 0.022 -0.093 -0.559 0.452 -0.052 -0.614 -0.123 0.550 0.223 -0.128 -0.302 0.146 0.433 -0.349 -0.102 -0.100 0.167 -0.047 -0.291 0.127 0.072 -0.473 -0.118 0.386 0.624 -0.761 -0.345 0.113 0.518 -0.605 -0.286 0.125 0.303 -0.242 -0.387 0.209 0.090 -0.811 0.022 0.433 0.256 -0.491 -0.671 0.552 0.331 -0.459 -0.104 0.116 -0.020 -0.199 -0.429 0.485 -0.216 -0.576 -0.342 0.748 0.490 -0.275 -0.719 0.216 0.360 -0.177 -0.488 0.162 -0.080 0.158 -0.617 0.364 -0.402 0.015 -0.436 0.579 0.218 -0.129 -0.380 0.207 0.161 0.011 -0.328 0.107 0.042 -0.309 0.065 0.160 -0.493 -0.079 -0.284 0.605 0.311 -0.606 -0.545 0.502 0.076 -0.226 -0.347 0.384 0.015 -0.220 -0.380 0.446 -0.267 -0.265 -0.237 0.573 0.231 -0.157 -0.542 0.313 -0.278 -0.283 -0.469 0.706 -0.353 0.044 -0.380 0.503 -0.666 0.059 -0.438 0.669 0.524 -0.452 -0.354 0.068 0.375 -0.317 -0.097 -0.052 0.050 -0.002 -0.408 0.278 -0.220 -0.452 0.113 0.411 0.242 -0.188 -0.204 0.100 0.332 -0.261 -0.044 -0.094 -0.055 0.034 -0.402 0.329 -0.326 -0.354 0.212 0.335 0.540 -0.592 -0.224 0.037 0.348 -0.313 -0.144 0.025 0.172 -0.288 -0.186 0.233 -0.102 -0.786 0.298 0.333 0.282 -0.199 -0.547 0.297 0.201 -0.184 -0.169 0.113 -0.606 -0.324 -0.765 0.968 -0.600 -0.609 -0.052 0.782 0.575 -0.493 -0.822 0.304 0.500 -0.338 -0.474 0.104 0.060 -0.049 -0.591 0.408 -0.317 -0.408 -0.432 0.768 0.372 -0.300 -0.623 0.315 0.259 -0.114 -0.295 0.089 0.130 -0.179 -0.348 0.306 -0.279 -0.187 -0.409 0.627 0.532 -0.593 -0.706 0.355 0.341 -0.422 -0.464 0.336 0.105 -0.199 -0.447 0.400 -0.242 -0.825 -0.066 0.709 0.279 -0.288 -0.743 0.454 0.173 -0.099 -0.403 0.242 -0.124 0.019 -0.511 0.451 -0.337 -0.353 -0.287 0.683 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.236 -0.187 0.020 -0.105 0.060 0.097 -0.332 0.129 0.266 0.625 -0.481 -0.891 1.243 -1.308 -0.147 -1.617 0.727 0.220 -0.862 -0.666 0.618 0.126 0.120 -1.805 1.998 -8.816 -8.816 -8.816 -8.816 -8.816 -8.816 1.998 -8.816 -8.816 1.998 -8.816 0.189 -0.734 0.570 -0.369 0.341 0.321 -0.723 -0.187 -0.349 0.036 0.328 -0.099 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.385 -0.059 0.151 -0.682 0.663 -0.288 -0.494 -0.172 -0.122 0.047 0.220 -0.180 0.243 -0.296 0.324 -0.413 0.547 -0.225 -0.630 0.053 -0.458 0.028 0.415 -0.122 -7.780 -7.780 -7.780 1.995 1.995 -7.780 -7.780 -7.780 1.995 -7.780 -7.780 -7.780 TAG WMM 9 6 4 0 0.000 0.352 -0.031 0.089 -0.555 0.524 -0.322 -0.434 0.030 -0.262 0.018 0.352 -0.190 0.135 -0.190 0.333 -0.385 0.647 -0.555 -0.277 -0.108 -0.233 -0.176 0.409 -0.095 -6.877 -6.877 -6.877 1.991 1.991 -6.877 -6.877 -6.877 -6.877 -6.877 1.991 -6.877 TGA WMM 9 6 4 0 0.000 0.298 -0.151 0.278 -0.604 0.443 -0.282 -0.252 -0.032 -0.138 -0.138 0.434 -0.267 0.434 -0.208 0.148 -0.566 0.975 -0.786 -0.566 -0.360 -0.151 0.055 0.159 -0.084 -6.852 -6.852 -6.852 1.991 -6.852 -6.852 1.991 -6.852 1.991 -6.852 -6.852 -6.852 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/A.thaliana.hmm0000644000175000017500000015115311424066010016016 0ustar moellermoellerzoeHMM A.thaliana 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 1 -1 explicit ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.801902 Inter Esngl 0.198098 Inter ORF 1 Intron Eterm 0.206953 Intron Exon 0.793047 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.521739 0.276680 0.201581 0.693027 0.142007 0.164966 0.678571 0.170330 0.151099 0.714286 0.122807 0.162907 0.798611 0.201389 0.795635 0.204365 0.774451 0.225549 Einit 2 DEFINED 0 249 -9.931 -9.858 -9.788 -9.721 -9.657 -9.596 -9.537 -9.481 -9.426 -9.374 -9.324 -9.297 -9.271 -9.245 -9.219 -9.194 -9.170 -9.146 -9.122 -9.099 -9.076 -9.072 -9.068 -9.064 -9.061 -9.057 -9.053 -9.049 -9.046 -9.042 -9.038 -9.005 -8.973 -8.942 -8.911 -8.881 -8.851 -8.822 -8.794 -8.766 -8.739 -8.712 -8.686 -8.660 -8.634 -8.609 -8.585 -8.561 -8.537 -8.514 -8.491 -8.458 -8.426 -8.395 -8.365 -8.335 -8.306 -8.277 -8.249 -8.221 -8.194 -8.166 -8.138 -8.110 -8.083 -8.057 -8.031 -8.005 -7.980 -7.956 -7.931 -7.935 -7.938 -7.942 -7.945 -7.949 -7.952 -7.956 -7.959 -7.963 -7.966 -7.979 -7.991 -8.004 -8.016 -8.029 -8.042 -8.055 -8.068 -8.081 -8.095 -8.120 -8.146 -8.172 -8.199 -8.226 -8.253 -8.282 -8.310 -8.340 -8.370 -8.388 -8.407 -8.426 -8.446 -8.466 -8.486 -8.506 -8.527 -8.548 -8.569 -8.566 -8.563 -8.561 -8.558 -8.556 -8.553 -8.550 -8.548 -8.545 -8.542 -8.545 -8.548 -8.550 -8.553 -8.556 -8.558 -8.561 -8.563 -8.566 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.582 -8.596 -8.609 -8.623 -8.637 -8.651 -8.666 -8.680 -8.694 -8.709 -8.706 -8.703 -8.700 -8.697 -8.694 -8.691 -8.689 -8.686 -8.683 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.691 -8.703 -8.715 -8.727 -8.739 -8.751 -8.763 -8.775 -8.788 -8.800 -8.813 -8.825 -8.838 -8.851 -8.864 -8.877 -8.891 -8.904 -8.918 -8.931 -8.952 -8.973 -8.995 -9.016 -9.038 -9.061 -9.083 -9.106 -9.130 -9.154 -9.158 -9.162 -9.166 -9.170 -9.174 -9.178 -9.182 -9.186 -9.190 -9.194 -9.186 -9.178 -9.170 -9.162 -9.154 -9.146 -9.138 -9.130 -9.122 -9.114 -9.118 -9.122 -9.126 -9.130 -9.134 -9.138 -9.142 -9.146 -9.150 -9.154 -9.150 -9.146 -9.142 -9.138 -9.134 -9.130 -9.126 -9.122 -9.118 -9.114 -9.158 -9.203 -9.249 -9.297 -9.346 -9.398 -9.451 -9.506 -9.563 GEOMETRIC 250 -1 283 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.239 -10.173 -10.109 -10.048 -9.990 -9.934 -9.880 -9.828 -9.778 -9.729 -9.683 -9.643 -9.604 -9.566 -9.529 -9.493 -9.458 -9.424 -9.391 -9.358 -9.326 -9.295 -9.265 -9.235 -9.205 -9.177 -9.148 -9.121 -9.094 -9.067 -9.041 -9.023 -9.004 -8.987 -8.969 -8.951 -8.934 -8.917 -8.900 -8.883 -8.867 -8.851 -8.835 -8.819 -8.803 -8.787 -8.772 -8.757 -8.741 -8.726 -8.712 -8.680 -8.648 -8.618 -8.588 -8.558 -8.529 -8.501 -8.473 -8.446 -8.419 -8.405 -8.391 -8.377 -8.363 -8.349 -8.335 -8.322 -8.308 -8.295 -8.282 -8.265 -8.247 -8.230 -8.214 -8.197 -8.181 -8.165 -8.148 -8.133 -8.117 -8.103 -8.090 -8.077 -8.063 -8.050 -8.037 -8.024 -8.012 -7.999 -7.987 -7.990 -7.994 -7.997 -8.001 -8.004 -8.008 -8.012 -8.015 -8.019 -8.023 -8.045 -8.067 -8.090 -8.113 -8.137 -8.160 -8.185 -8.210 -8.235 -8.260 -8.262 -8.265 -8.267 -8.269 -8.271 -8.273 -8.275 -8.278 -8.280 -8.282 -8.293 -8.304 -8.315 -8.326 -8.338 -8.349 -8.361 -8.372 -8.384 -8.396 -8.422 -8.449 -8.476 -8.504 -8.532 -8.561 -8.590 -8.620 -8.651 -8.683 -8.674 -8.665 -8.657 -8.648 -8.640 -8.632 -8.623 -8.615 -8.607 -8.598 -8.609 -8.620 -8.632 -8.643 -8.654 -8.665 -8.677 -8.688 -8.700 -8.712 -8.738 -8.766 -8.793 -8.822 -8.851 -8.880 -8.910 -8.941 -8.972 -9.004 -8.997 -8.990 -8.983 -8.976 -8.969 -8.962 -8.955 -8.948 -8.941 -8.934 -8.931 -8.927 -8.924 -8.920 -8.917 -8.914 -8.910 -8.907 -8.903 -8.900 -8.897 -8.893 -8.890 -8.887 -8.883 -8.880 -8.877 -8.874 -8.870 -8.867 -8.860 -8.854 -8.847 -8.841 -8.835 -8.828 -8.822 -8.815 -8.809 -8.803 -8.812 -8.822 -8.831 -8.841 -8.851 -8.860 -8.870 -8.880 -8.890 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.917 -8.934 -8.951 -8.969 -8.987 -9.004 -9.023 -9.041 -9.060 -9.078 -9.105 -9.133 -9.160 -9.189 -9.218 -9.247 -9.278 -9.308 -9.340 GEOMETRIC 250 -1 280 Exon 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Inter 1 GEOMETRIC 0 -1 500 Intron 2 DEFINED 0 249 . . . . . . . . . . . . . . . . . . . . . -18.936 -17.936 -17.352 -16.936 -16.615 -16.352 -16.129 -15.936 -15.767 -15.615 -14.382 -13.727 -13.278 -12.936 -12.660 -12.429 -12.229 -12.054 -11.898 -11.757 -10.792 -10.219 -9.810 -9.491 -9.231 -9.010 -8.819 -8.650 -8.499 -8.362 -8.112 -7.898 -7.712 -7.548 -7.400 -7.266 -7.144 -7.031 -6.926 -6.828 -6.766 -6.706 -6.648 -6.592 -6.539 -6.488 -6.438 -6.390 -6.343 -6.298 -6.278 -6.259 -6.239 -6.220 -6.201 -6.183 -6.164 -6.146 -6.128 -6.111 -6.122 -6.134 -6.145 -6.157 -6.169 -6.181 -6.193 -6.205 -6.217 -6.230 -6.281 -6.334 -6.390 -6.447 -6.507 -6.570 -6.635 -6.704 -6.776 -6.851 -6.913 -6.978 -7.046 -7.117 -7.192 -7.272 -7.355 -7.444 -7.539 -7.640 -7.689 -7.739 -7.791 -7.844 -7.900 -7.958 -8.019 -8.082 -8.149 -8.218 -8.259 -8.302 -8.345 -8.391 -8.437 -8.485 -8.535 -8.587 -8.640 -8.696 -8.727 -8.759 -8.792 -8.825 -8.860 -8.895 -8.931 -8.968 -9.006 -9.045 -9.066 -9.088 -9.110 -9.132 -9.155 -9.178 -9.202 -9.226 -9.250 -9.275 -9.285 -9.294 -9.304 -9.314 -9.325 -9.335 -9.345 -9.355 -9.366 -9.376 -9.386 -9.395 -9.405 -9.415 -9.425 -9.435 -9.445 -9.455 -9.465 -9.475 -9.484 -9.494 -9.503 -9.512 -9.522 -9.531 -9.541 -9.551 -9.560 -9.570 -9.588 -9.606 -9.624 -9.642 -9.660 -9.679 -9.698 -9.717 -9.737 -9.757 -9.784 -9.812 -9.841 -9.870 -9.900 -9.931 -9.962 -9.994 -10.027 -10.060 -10.055 -10.051 -10.046 -10.042 -10.037 -10.033 -10.028 -10.024 -10.019 -10.015 -10.018 -10.021 -10.024 -10.027 -10.030 -10.033 -10.036 -10.039 -10.042 -10.045 -10.049 -10.054 -10.058 -10.063 -10.068 -10.072 -10.077 -10.082 -10.086 -10.091 -10.096 -10.100 -10.105 -10.110 -10.115 -10.119 -10.124 -10.129 -10.134 -10.139 -10.157 -10.175 -10.193 -10.212 -10.231 -10.250 -10.269 -10.289 -10.309 GEOMETRIC 250 -1 146 ORF 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Acceptor SDT 2 1 4 2 0.000 AG SAM 20 16 4 20 0.000 I-17 LUT 2 1 4 0 0.000 0.347 -0.645 -1.435 0.781 -0.076 -0.837 -1.807 1.141 -0.112 -1.212 -0.452 0.935 -0.992 -0.701 -0.181 1.000 I-16 LUT 2 1 4 0 0.000 0.090 -0.462 -1.562 0.904 -0.033 -0.921 -1.668 1.124 -0.383 -1.145 -0.647 1.099 -1.032 -0.788 0.040 0.929 I-15 LUT 2 1 4 0 0.000 0.206 -0.750 -1.750 0.967 -0.392 -0.956 -1.392 1.228 -0.013 -1.368 -0.772 1.026 -0.864 -0.724 -0.226 0.993 I-14 LUT 2 1 4 0 0.000 0.159 -0.908 -1.676 1.027 0.004 -1.013 -1.547 1.111 -0.329 -1.123 -0.661 1.079 -0.965 -0.718 -0.203 1.008 I-13 LUT 2 1 4 0 0.000 0.296 -0.547 -2.441 0.929 -0.185 -1.021 -1.954 1.245 -0.272 -1.362 -0.560 1.074 -0.910 -0.843 -0.148 1.006 I-12 LUT 2 1 4 0 0.000 0.202 -0.910 -2.542 1.102 0.021 -1.030 -1.581 1.112 0.085 -1.381 -1.044 1.050 -0.878 -0.696 -0.211 0.982 I-11 LUT 2 1 4 0 0.000 0.046 -0.725 -2.562 1.133 -0.284 -0.807 -1.183 1.115 -0.242 -1.720 -0.188 0.980 -0.776 -0.942 -0.085 0.965 I-10 LUT 2 1 4 0 0.000 0.224 -0.503 -3.035 1.003 -0.129 -0.599 -1.090 0.968 0.102 -1.214 -0.376 0.786 -0.631 -0.949 -0.022 0.889 I-9 LUT 2 1 4 0 0.000 0.258 -0.866 -4.036 1.134 0.106 -0.636 -1.330 0.913 -0.077 -1.237 -0.837 1.048 -0.921 -0.768 -0.039 0.935 I-8 LUT 2 1 4 0 0.000 0.104 -0.679 -4.176 1.167 -0.013 -1.065 -1.778 1.163 -0.176 -1.263 -0.857 1.102 -0.670 -0.770 -0.092 0.885 I-7 LUT 2 1 4 0 0.000 0.341 -0.963 -4.641 1.125 0.017 -1.161 -1.709 1.160 -0.151 -1.334 -0.151 0.849 -0.912 -0.877 -0.010 0.949 I-6 LUT 2 1 4 0 0.000 -0.154 -0.840 -2.556 1.246 -0.043 -0.914 -2.102 1.180 -0.208 -1.777 -0.602 1.127 -1.011 -0.729 -0.274 1.052 I-5 LUT 2 1 4 0 0.000 0.043 -1.024 -4.430 1.282 -0.738 -0.961 -2.183 1.415 0.047 -1.463 -1.864 1.220 -1.237 -1.299 -0.743 1.363 I-4 LUT 2 1 4 0 0.000 0.978 -1.675 -1.381 0.415 0.670 -1.652 -0.372 0.399 0.368 -1.310 0.585 -0.310 -0.508 -1.873 0.988 0.057 I-3 LUT 2 1 4 0 0.000 -2.141 1.414 -7.351 0.141 -1.609 1.252 -5.516 0.342 -2.087 1.495 -6.895 -0.094 -2.694 1.374 -6.394 0.313 A LUT 2 1 4 0 0.000 1.967 -5.066 -5.066 -5.066 1.997 -8.689 -8.689 -8.689 1.000 -0.585 -0.585 -0.585 1.994 -7.388 -7.388 -7.388 G LUT 2 1 4 0 0.000 -9.258 -9.258 1.998 -9.258 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.049 -1.292 1.130 -1.197 0.000 0.000 0.000 0.000 E+2 LUT 2 1 4 0 0.000 -0.172 -1.151 -0.409 0.933 -0.052 -0.557 -1.176 0.936 0.089 -0.584 -0.740 0.741 -0.684 -1.170 0.113 0.889 E+3 LUT 2 1 4 0 0.000 0.434 -0.551 -0.389 0.266 0.375 -1.115 -0.531 0.632 0.535 -0.693 -0.035 -0.064 -0.191 -0.902 0.185 0.538 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.183 0.108 0.285 -0.280 0.249 0.098 -0.815 0.231 0.498 0.073 -0.497 -0.274 -0.852 0.357 0.387 -0.221 0.664 -0.853 0.124 -0.374 0.560 -1.016 -0.265 0.261 0.375 -0.429 -0.283 0.187 -0.460 0.290 -0.604 0.478 0.463 -0.768 -0.011 0.059 -0.085 -0.641 -1.029 0.945 0.644 -0.689 -0.511 0.157 -0.554 -0.383 0.124 0.549 . 0.993 . 1.007 0.251 -0.472 -0.882 0.629 . -0.258 1.043 0.142 -0.670 0.248 0.208 0.041 0.130 -0.126 0.197 -0.246 0.382 -0.426 -0.557 0.348 0.515 -0.355 -0.640 0.199 -0.630 -0.100 0.267 0.284 0.380 -0.344 -0.056 -0.076 0.320 -1.382 -0.131 0.541 -0.281 -0.700 -0.168 0.741 -0.951 0.389 -0.626 0.609 -0.040 -0.327 0.199 0.114 0.182 -0.198 -0.742 0.482 0.159 -0.500 -0.430 0.520 -0.690 -0.044 0.258 0.280 . 1.184 . 0.789 0.018 -0.449 -0.543 0.649 . 0.003 0.742 0.406 -0.814 0.186 0.256 0.136 0.332 -0.714 0.565 -0.616 0.225 -0.529 -0.486 0.510 0.547 -0.616 -0.078 -0.092 -0.663 -0.015 0.207 0.292 0.621 -1.644 0.334 -0.181 0.434 -1.241 -0.649 0.668 0.018 -1.037 -0.391 0.797 -0.596 -0.198 -0.452 0.796 0.352 -1.235 0.311 0.081 0.179 -0.986 -0.483 0.720 0.653 -0.957 -0.885 0.455 -1.156 -0.576 -0.109 0.966 . 0.877 . 1.114 0.308 -0.880 -0.836 0.730 . -0.750 0.969 0.535 -0.599 -0.100 -0.233 0.637 -0.078 -0.083 0.089 0.063 0.354 -0.464 -0.839 0.524 0.455 -0.121 -0.661 0.108 -0.512 0.077 0.179 0.153 0.007 -0.687 0.273 0.221 0.347 -1.284 -0.406 0.644 0.269 -0.700 -0.142 0.349 -0.791 0.308 -0.593 0.605 0.064 -0.875 -0.014 0.505 0.338 -0.980 -0.956 0.777 0.464 -0.912 -0.522 0.478 -0.745 -0.442 0.062 0.699 . 1.215 . 0.747 0.291 -0.500 -0.740 0.556 . -0.061 0.715 0.485 -0.931 0.398 0.279 -0.083 -0.002 -0.157 0.379 -0.314 0.363 -0.508 -0.479 0.371 0.524 -0.367 -0.292 -0.043 -0.732 0.059 0.603 -0.256 0.409 -0.670 0.185 -0.141 0.662 -1.871 0.058 0.142 0.093 -1.100 0.000 0.553 -0.829 0.014 -0.513 0.788 0.074 -0.979 0.434 0.123 0.205 -0.779 -0.936 0.801 0.629 -0.920 -0.245 0.113 -0.540 -0.558 0.169 0.593 . 0.963 . 1.036 0.481 -1.032 -0.609 0.546 . -0.745 1.192 0.162 -0.488 -0.006 0.351 0.022 0.223 -0.267 0.243 -0.289 0.035 0.279 -0.864 0.279 0.195 -0.127 -0.444 0.269 -0.695 0.003 -0.116 0.543 0.554 -0.253 -0.446 -0.061 0.573 -1.109 -0.524 0.436 -0.220 -0.408 -0.292 0.651 -0.483 0.227 -0.800 0.622 -0.219 -0.362 0.153 0.323 -0.335 0.400 -0.797 0.392 0.486 -0.676 -0.844 0.502 -1.175 0.389 -0.285 0.513 . 1.247 . 0.702 -0.228 0.100 -0.987 0.651 . 0.600 0.368 0.255 -0.635 0.293 -0.046 0.217 0.398 -0.982 0.241 -0.008 -0.110 -0.929 0.443 0.250 0.256 -0.380 -0.100 0.143 -0.687 -0.306 0.115 0.573 0.424 -1.317 0.383 -0.069 -0.015 -2.415 0.653 0.322 -0.164 -1.563 0.148 0.733 -0.747 -0.510 -0.940 1.125 -0.065 -1.307 0.539 0.248 -0.837 -1.422 0.775 0.440 0.652 -1.860 -0.708 0.624 -1.230 -1.197 0.232 0.973 . 0.636 . 1.291 -0.203 -1.399 0.133 0.727 . -0.733 1.111 0.309 -0.834 -0.525 0.228 0.654 0.309 -0.602 0.155 -0.017 0.122 -0.547 -0.916 0.763 0.301 -0.311 -0.156 0.090 -0.599 -0.167 0.180 0.397 0.232 -0.651 0.295 -0.056 0.220 -1.548 -0.414 0.801 -0.066 -0.716 -0.504 0.791 -0.721 0.139 -0.651 0.727 0.081 -1.105 0.170 0.436 0.101 -1.080 -1.013 0.970 0.443 -1.234 -1.086 0.802 -0.784 -0.645 -0.016 0.840 . 0.948 . 1.050 -0.024 -0.474 -1.042 0.856 . -0.019 0.409 0.753 -0.360 0.124 0.337 -0.204 0.126 0.136 -0.013 -0.289 0.478 -0.253 -1.126 0.389 0.710 -0.099 -0.796 -0.226 -0.857 0.504 0.213 -0.200 0.516 -0.702 0.152 -0.244 0.630 -1.023 -0.738 0.444 0.228 -0.901 -0.146 0.474 -0.412 -0.010 -0.850 0.766 0.179 -0.574 0.022 0.240 0.040 -0.522 -1.423 0.928 0.914 -0.895 -1.003 0.110 -0.569 -0.189 -0.189 0.652 . 1.112 . 0.879 0.512 -0.684 -0.727 0.430 . -0.170 0.859 0.376 -0.695 0.444 0.005 0.026 0.315 -0.229 0.107 -0.277 0.533 -0.034 -1.365 0.249 0.306 0.203 -0.870 0.092 -0.526 -0.050 -0.073 0.474 0.278 -0.292 -0.124 0.074 0.444 -0.457 -1.193 0.559 -0.594 -0.234 -0.193 0.689 -0.683 0.259 -0.969 0.740 0.157 -0.492 -0.067 0.286 -0.205 0.210 -0.712 0.449 0.236 -0.131 -1.102 0.529 -0.803 0.035 -0.403 0.719 . 1.036 . 0.963 0.037 -0.431 -0.763 0.716 . 0.516 0.380 0.344 -0.506 0.296 -0.066 0.155 0.421 -0.640 0.338 -0.404 0.255 -0.462 -0.562 0.489 0.658 -0.711 0.023 -0.332 -0.646 -0.050 0.116 0.391 0.669 -1.100 -0.060 -0.022 0.704 -1.903 -0.747 0.592 0.118 -1.637 -0.279 0.823 -0.524 -0.182 -0.524 0.789 0.347 -0.594 -0.222 0.273 0.392 -1.497 -1.030 0.883 1.038 -1.292 -1.624 0.279 -1.281 -0.267 -0.465 1.024 . 0.833 . 1.149 0.354 -0.907 -0.615 0.619 . -0.590 0.973 0.458 -0.424 -0.398 -0.250 0.727 0.306 0.086 -0.311 -0.159 0.115 -0.470 -0.725 0.669 0.291 -0.092 -0.852 0.361 -0.955 0.319 0.150 0.173 0.324 -0.308 -0.152 0.057 0.283 -0.766 -0.998 0.761 -0.106 -0.459 -0.563 0.737 -0.907 0.389 -1.074 0.751 0.199 -0.682 -0.146 0.406 0.058 -0.767 -0.977 0.898 0.417 -0.667 -1.013 0.622 -0.609 -0.651 -0.027 0.787 . 1.063 . 0.934 0.186 -0.488 -0.689 0.612 . 0.050 0.360 0.750 -0.216 0.079 0.192 -0.089 0.069 0.000 0.264 -0.415 0.284 0.061 -0.709 0.173 0.512 -0.104 -0.382 -0.191 -0.905 0.280 0.590 -0.422 0.531 -0.745 -0.012 -0.049 0.400 -1.324 -0.130 0.451 0.285 -0.668 -0.264 0.400 -0.213 -0.092 -0.429 0.542 0.101 -0.549 0.174 0.157 0.112 -0.594 -1.048 0.827 0.598 -0.604 -0.248 -0.019 -0.753 -0.157 0.150 0.485 . 1.068 . 0.928 0.295 -0.705 -0.336 0.452 . -0.004 0.893 0.197 -0.837 0.285 0.285 0.004 0.126 -0.206 0.286 -0.282 0.097 -0.148 -0.975 0.603 0.422 -0.182 -0.417 0.042 -0.623 0.325 0.008 0.127 0.361 -0.265 0.034 -0.219 0.274 -0.740 -0.835 0.707 -0.112 -0.621 -0.100 0.577 -1.041 0.796 -1.304 0.456 0.000 -0.308 -0.026 0.275 -0.430 0.188 -0.872 0.653 0.589 -0.803 -0.501 0.282 -1.084 0.460 -0.255 0.395 . 1.206 . 0.760 -0.013 -0.161 -1.161 0.738 . 0.334 0.245 0.637 -0.839 0.649 -0.027 -0.166 0.197 -0.703 0.493 -0.265 0.177 -0.629 -0.448 0.575 0.441 -0.592 0.001 -0.033 -0.511 -0.183 0.290 0.257 0.397 -1.358 0.530 -0.237 0.240 -1.744 -0.621 0.904 -0.358 -1.135 0.035 0.799 -0.790 -0.151 -0.561 0.882 0.178 -0.980 0.321 0.153 -0.285 -0.911 -0.412 0.923 0.717 -1.477 -0.559 0.399 -1.156 -0.684 0.320 0.748 . 0.796 . 1.179 0.086 -0.798 -0.341 0.654 . -0.742 0.860 0.667 -0.620 -0.078 0.159 0.363 0.152 -0.230 0.266 -0.263 -0.006 -0.059 -1.122 0.664 0.455 -0.347 -0.244 -0.002 -0.344 0.000 0.113 0.176 0.270 -0.616 0.246 -0.065 0.179 -0.892 -0.616 0.746 0.142 -0.419 -0.646 0.595 -0.931 0.217 -0.670 0.752 -0.054 -0.843 0.069 0.517 0.083 -0.842 -1.095 0.937 0.531 -0.936 -0.702 0.504 -0.928 -0.404 0.207 0.646 . 1.136 . 0.850 0.176 -0.469 -0.794 0.652 . -0.067 0.751 0.446 -0.573 0.383 0.404 -0.513 frame2 LUT 5 4 4 0 0.000 -0.543 -0.018 0.683 -0.472 0.253 -0.179 -0.020 -0.090 0.627 -0.245 0.005 -0.717 -0.523 -0.041 0.751 -0.623 0.530 -0.686 0.327 -0.556 0.514 -0.775 0.524 -0.865 0.360 -0.640 0.360 -0.339 -0.511 -0.194 0.611 -0.157 0.325 -0.586 0.497 -0.579 0.630 -0.374 -0.504 -0.035 0.816 -0.451 -0.132 -0.748 -0.285 -0.389 0.650 -0.239 -0.003 -0.616 0.491 -0.083 0.393 -0.396 -0.017 -0.092 0.226 -0.586 0.592 -0.607 -0.564 -0.029 0.834 -0.834 0.081 -0.106 0.564 -0.904 0.604 -0.423 -0.031 -0.405 0.686 -0.066 -0.869 -0.171 -0.413 0.059 0.490 -0.317 0.372 -0.242 0.248 -0.572 0.565 -1.392 0.537 -0.538 -0.032 -0.642 0.652 -0.305 -0.407 -0.251 0.651 -0.260 -0.026 -0.441 0.605 -0.395 0.238 -0.042 -0.042 -0.187 0.288 -0.345 -0.534 0.380 -0.341 -0.266 0.743 -0.504 0.274 -0.668 0.544 -0.506 0.415 -0.730 0.109 -0.022 0.515 -0.559 0.147 -0.348 -0.429 0.170 0.640 -0.800 -0.168 -0.794 1.007 -0.932 0.520 -0.473 0.065 -0.323 0.755 -0.496 -0.071 -0.620 -0.239 -0.439 0.685 -0.308 0.263 -0.918 0.661 -0.536 0.883 -1.300 0.190 -0.715 0.572 -1.211 0.487 -0.557 -0.217 -0.227 0.538 -0.264 0.410 -0.895 0.566 -0.614 0.349 -0.568 0.066 0.007 0.954 -0.816 -0.705 -0.183 -0.710 -0.111 0.578 -0.043 0.074 -0.643 0.582 -0.303 0.596 -0.877 -0.057 -0.024 0.552 -1.005 0.442 -0.563 -0.501 -0.087 0.655 -0.364 . . . . 0.573 -0.451 -0.222 -0.115 . . . . -0.477 -0.269 0.799 -0.490 0.312 -0.712 0.335 -0.172 0.415 -0.706 0.269 -0.237 0.497 -0.825 0.149 -0.127 -0.422 -0.053 0.404 -0.049 . . . . 0.585 -0.678 -0.138 -0.050 0.459 -0.416 0.307 -0.646 -0.545 -0.478 0.801 -0.226 -0.093 -0.175 0.653 -0.725 0.522 -0.570 -0.219 0.046 0.337 -0.476 0.355 -0.436 -0.538 -0.174 0.852 -0.690 -0.011 -0.634 0.678 -0.389 0.766 -0.616 -0.088 -0.502 0.696 -0.515 -0.048 -0.488 -0.440 -0.213 0.744 -0.463 0.350 -0.655 0.384 -0.349 0.679 -1.778 0.654 -0.906 0.303 -0.960 0.642 -0.532 -0.387 -0.080 0.568 -0.309 0.276 -1.074 0.758 -0.682 0.604 -0.447 -0.462 0.030 0.707 -0.293 -0.241 -0.504 -0.358 -0.381 0.746 -0.369 0.332 -0.820 0.237 -0.006 0.653 -0.635 -0.129 -0.203 0.296 -0.670 0.448 -0.360 -0.436 -0.263 0.869 -0.735 0.208 -0.587 0.648 -0.708 0.520 -0.230 0.022 -0.519 0.633 -0.029 -0.437 -0.452 -0.417 0.052 0.689 -0.732 0.676 -0.400 -0.055 -0.551 0.848 -1.447 0.397 -0.953 0.374 -0.821 0.345 -0.204 -0.173 -0.182 0.476 -0.249 -0.345 -0.417 0.689 -0.233 -0.017 0.336 -0.156 -0.232 0.588 -0.646 -0.424 0.154 -0.417 -0.074 0.759 -0.716 0.410 -0.764 0.538 -0.666 0.273 -0.192 -0.184 0.051 0.570 -0.553 0.204 -0.553 -0.341 0.002 0.602 -0.532 0.065 -0.903 0.842 -0.674 0.388 -0.732 0.554 -0.685 0.561 -0.374 -0.096 -0.291 -0.237 -0.324 0.711 -0.483 0.364 -0.717 0.634 -0.853 0.165 -2.063 1.077 -0.918 0.384 -1.013 0.595 -0.538 -0.248 -0.576 0.688 -0.190 0.342 -0.982 0.624 -0.545 -0.258 -1.130 0.923 -0.303 0.770 -0.855 -0.653 0.145 -0.474 -0.746 0.762 -0.017 0.141 -0.478 0.633 -0.671 0.245 -0.840 0.401 -0.095 0.505 -0.859 0.372 -0.444 -0.375 -0.422 0.737 -0.294 . . . . 0.560 -0.915 0.165 -0.194 . . . . -0.395 -0.769 0.864 -0.265 0.555 -0.663 0.212 -0.432 0.550 -0.865 0.254 -0.331 0.275 -0.591 0.334 -0.208 -0.397 -0.111 0.539 -0.214 . . . . 0.633 -0.575 -0.038 -0.315 0.516 -0.518 0.188 -0.450 -0.389 -0.503 0.611 0.006 0.207 -0.424 0.486 -0.514 0.460 -0.417 -0.565 0.263 0.485 -0.492 0.169 -0.387 -0.540 -0.648 1.042 -0.700 -0.258 -0.216 0.628 -0.401 0.772 -0.628 -0.228 -0.337 0.845 -0.167 -0.353 -0.917 -0.632 0.168 0.513 -0.315 0.435 -0.555 0.253 -0.366 0.802 -0.888 0.123 -0.672 0.439 -0.674 0.403 -0.525 -0.132 -0.088 0.337 -0.178 0.291 -0.627 0.424 -0.345 0.406 -0.675 -0.414 0.377 0.880 -0.355 -0.683 -0.406 -0.276 -0.317 0.427 0.039 0.280 -0.467 0.098 -0.013 0.588 -0.475 -0.108 -0.234 0.518 -0.482 0.274 -0.636 -0.436 0.162 0.584 -0.637 -0.015 -0.103 0.458 -0.503 0.466 -0.568 0.084 -0.179 0.641 0.161 -0.859 -0.373 -0.164 0.138 0.224 -0.253 0.240 0.046 0.055 -0.419 0.753 -0.921 0.211 -0.669 -0.068 -0.288 0.303 -0.010 -0.287 0.133 0.333 -0.278 0.085 -0.104 0.339 -0.426 0.319 0.046 -0.080 -0.369 0.292 0.218 -0.445 -0.188 -0.398 0.065 0.512 -0.379 0.260 -0.550 0.537 -0.580 0.343 -0.743 0.054 0.132 0.673 -0.363 -0.024 -0.634 -0.401 0.207 0.514 -0.598 -0.082 -0.745 0.877 -0.684 0.622 -0.476 -0.145 -0.257 0.742 -0.351 -0.058 -0.779 -0.182 -0.273 0.497 -0.186 0.529 -0.610 0.237 -0.466 0.809 -1.351 0.146 -0.416 0.599 -1.376 0.457 -0.459 -0.131 -0.267 0.394 -0.087 0.469 -0.715 0.322 -0.402 0.354 -0.693 -0.242 0.331 1.075 -0.501 -0.837 -0.674 -0.182 -0.050 0.095 0.117 0.169 -0.722 0.439 -0.129 0.632 -0.854 0.028 -0.189 0.684 -1.312 0.428 -0.630 -0.227 -0.188 0.324 0.023 . . . . 0.606 -0.515 0.012 -0.376 . . . . -0.320 -0.320 0.630 -0.233 0.392 -0.481 0.204 -0.287 0.694 -1.018 0.086 -0.274 0.206 -0.706 0.034 0.275 -0.446 0.116 0.201 0.047 . . . . 0.526 0.057 -0.322 -0.474 0.350 -0.278 0.225 -0.452 -0.156 -0.548 0.547 -0.063 0.084 -0.026 0.282 -0.431 0.426 -0.307 -0.574 0.234 0.432 -0.364 0.221 -0.499 -0.187 -0.084 0.516 -0.419 -0.271 -0.223 0.777 -0.735 0.463 -0.217 -0.157 -0.211 0.476 -0.329 0.150 -0.508 -0.278 -0.037 0.597 -0.540 0.405 -0.636 0.139 -0.103 0.382 -0.992 0.348 -0.117 0.472 -0.747 0.197 -0.199 -0.374 -0.082 0.474 -0.159 -0.079 -0.580 0.688 -0.371 0.245 -0.312 -0.361 0.300 0.633 -0.190 -0.266 -0.431 -0.138 -0.215 0.490 -0.277 0.143 -0.517 0.415 -0.212 0.435 -0.408 -0.034 -0.123 0.301 -0.596 0.471 -0.473 -0.177 -0.144 0.751 -0.922 0.124 -0.538 0.692 -0.723 0.550 -0.162 -0.251 -0.318 0.656 -0.179 -0.408 -0.344 -0.463 0.265 0.444 -0.488 0.309 -0.469 0.261 -0.251 0.581 -1.079 0.458 -0.607 0.218 -0.885 0.646 -0.453 -0.421 0.205 0.246 -0.128 0.187 -0.794 0.486 -0.178 0.126 0.216 -0.436 0.013 0.571 -0.773 -0.152 0.042 -0.254 0.007 0.541 -0.510 0.073 -0.333 0.459 -0.360 0.269 -0.288 -0.145 0.101 0.425 -0.395 0.076 -0.246 -0.562 0.255 0.574 -0.641 -0.011 -0.853 0.909 -0.793 0.504 -0.333 -0.174 -0.150 0.630 -0.439 -0.042 -0.427 -0.413 -0.203 0.736 -0.484 0.345 -0.900 0.532 -0.419 0.712 -0.898 -0.140 -0.123 0.271 -0.919 0.271 0.081 -0.344 -0.149 0.470 -0.112 0.310 -0.975 0.552 -0.348 0.234 -0.299 -0.148 0.149 0.828 -0.818 -0.359 -0.188 -0.447 -0.358 0.685 -0.187 0.230 -0.594 0.415 -0.267 0.358 -0.567 -0.163 0.202 0.604 -0.715 0.242 -0.538 -0.456 -0.066 0.642 -0.405 . . . . 0.425 -0.356 -0.102 -0.082 . . . . -0.501 -0.052 0.715 -0.540 0.318 -0.398 0.198 -0.240 0.492 -0.846 0.021 0.033 0.481 -0.961 -0.028 0.150 -0.663 0.109 0.166 0.225 . . . . 0.514 -0.407 -0.486 0.143 0.281 -0.704 0.482 -0.369 -0.417 -0.297 0.571 -0.072 -0.018 -0.363 0.595 -0.465 0.476 -0.331 -0.389 0.071 0.340 -0.570 0.400 -0.431 -0.218 -0.257 0.861 -1.039 frame2 LUT 5 4 4 0 0.000 0.196 0.068 -0.162 -0.132 0.165 0.121 -0.897 0.327 0.587 -0.172 -0.181 -0.457 -0.805 0.585 -0.191 0.073 0.783 -0.602 -0.804 0.068 0.421 -0.003 -0.481 -0.079 0.501 -0.256 -0.065 -0.337 -0.549 0.183 -0.516 0.567 0.957 -0.953 -0.576 -0.200 0.040 -0.332 -1.441 0.855 0.835 -0.270 -0.921 -0.220 -0.361 -0.029 -0.897 0.769 0.463 -0.456 -0.439 0.208 0.043 0.122 -1.425 0.593 0.306 -0.422 0.158 -0.149 -0.796 0.335 -0.753 0.650 0.370 0.014 -0.401 -0.089 0.137 0.209 -1.157 0.374 0.652 -0.122 -0.625 -0.215 -0.996 0.369 -0.581 0.622 0.577 -0.155 -1.128 0.205 0.148 -0.509 -0.455 0.545 0.183 -0.281 0.183 -0.141 -0.686 0.540 -1.511 0.654 0.201 -0.019 -0.539 0.233 0.235 0.127 -1.282 0.400 0.339 0.153 -0.690 0.005 -1.294 0.209 -0.763 0.885 0.429 -0.038 -0.380 -0.135 0.073 0.250 -0.967 0.319 0.402 -0.241 -0.099 -0.155 -0.518 0.373 -0.455 0.353 0.393 -0.479 0.091 -0.145 0.366 0.109 -0.775 0.068 0.547 -0.170 -0.225 -0.332 -1.174 0.439 -0.725 0.674 0.757 -0.713 -0.258 -0.212 0.490 -0.253 -0.253 -0.126 0.728 -0.507 0.043 -0.714 -0.785 0.290 -1.097 0.790 0.766 -0.916 -0.196 -0.158 0.357 -0.164 -1.275 0.499 0.708 -0.368 -0.722 -0.021 -1.072 -0.031 -0.745 0.963 0.464 -0.826 0.100 -0.023 0.082 0.152 -0.900 0.372 0.623 -0.780 0.055 -0.254 -0.836 0.303 -0.805 0.708 0.318 -0.151 -0.201 -0.026 -0.049 0.383 -1.062 0.323 0.530 -0.005 -0.505 -0.225 -0.776 0.239 -0.388 0.558 0.709 -0.379 -0.642 -0.065 0.361 0.074 -0.611 0.011 0.578 -0.239 -0.176 -0.368 -0.736 0.582 -1.063 0.510 0.674 -0.692 -0.382 0.026 0.380 -0.132 -1.458 0.508 0.697 -0.214 -0.445 -0.353 -0.854 0.241 -0.703 0.723 0.398 -0.279 -0.302 0.067 0.230 0.066 -1.179 0.421 0.424 -0.364 -0.120 -0.056 -0.697 0.347 -0.332 0.397 0.409 -0.119 -0.262 -0.124 0.862 -0.123 -1.302 -0.221 0.661 -0.288 -0.191 -0.465 -0.882 0.507 -0.119 0.158 0.634 -0.514 -0.526 0.074 0.671 -0.165 -0.165 -0.682 0.544 -0.268 -0.012 -0.473 -0.668 0.320 -0.452 0.476 0.689 -0.985 -0.209 0.024 0.350 -0.342 -1.672 0.698 0.704 -0.309 -0.673 -0.094 -0.716 0.055 -0.688 0.792 0.403 -0.539 -0.366 0.280 0.639 -0.162 -1.132 0.127 0.535 -0.778 -0.010 -0.037 -0.513 0.052 -0.543 0.656 0.480 -0.158 -0.213 -0.242 0.072 0.728 -1.276 -0.185 0.725 -0.231 -0.602 -0.258 -0.903 0.545 -0.671 0.462 0.783 -0.423 -1.456 0.226 0.371 -0.011 -0.596 0.074 0.647 -0.840 0.107 -0.326 -1.240 0.368 -1.240 0.897 0.184 -0.441 -0.217 0.341 -0.384 0.883 -1.296 -0.026 0.524 -0.278 -0.858 0.246 -0.948 0.379 -1.000 0.750 0.613 -0.313 -0.563 -0.015 0.080 0.509 -1.016 0.036 0.618 -0.506 -0.219 -0.149 -0.837 0.597 -0.882 0.469 0.302 -0.371 0.028 -0.037 0.112 -0.047 -0.339 0.216 0.401 0.284 -0.524 -0.383 -0.625 0.548 -0.895 0.435 0.792 -0.609 -0.403 -0.222 0.118 -1.248 0.391 0.241 0.177 -0.276 0.091 -0.032 -0.730 0.318 -0.936 0.703 0.485 -0.916 0.029 0.070 -0.315 -0.315 -0.315 0.668 0.763 -0.949 -1.000 0.363 -1.005 -0.313 -0.509 0.995 0.593 -0.509 -0.548 0.145 0.091 -0.121 -0.399 0.330 0.387 -0.556 0.085 -0.072 -0.585 0.031 -0.473 0.670 0.273 -0.464 0.078 0.016 0.388 -0.095 -0.882 0.278 0.582 0.038 -0.585 -0.305 -1.122 0.548 -0.224 0.289 0.744 -0.308 -0.799 -0.085 0.176 -0.308 -0.066 0.148 0.493 -0.228 -0.228 -0.178 -0.795 0.541 -1.119 0.593 0.665 -1.075 -0.212 0.105 0.495 -0.476 -1.142 0.505 0.698 -0.327 -0.729 -0.033 -0.787 -0.079 -1.050 0.993 0.422 -0.534 -0.175 0.116 0.336 -0.146 -1.297 0.513 0.568 -0.311 -0.331 -0.126 -0.663 0.186 -0.452 0.585 0.394 -0.085 -0.357 -0.055 0.418 -0.116 -1.093 0.348 0.838 -0.219 -0.437 -0.702 -0.978 0.668 -0.631 0.332 0.616 -0.474 -0.723 0.191 0.427 0.028 -0.573 -0.053 0.793 -0.388 -0.325 -0.507 -0.553 0.239 -0.585 0.557 0.752 -0.903 -0.471 0.084 0.171 -0.523 -1.499 0.868 1.075 -0.296 -1.535 -0.448 -0.384 -0.254 -0.940 0.906 0.401 -0.574 -0.646 0.453 0.195 0.086 -1.162 0.430 0.708 -0.452 -0.232 -0.352 -0.742 0.267 -0.736 0.677 0.454 -0.310 -0.326 0.037 0.320 0.030 -1.031 0.312 0.474 0.312 -0.585 -0.509 -0.892 0.527 -1.052 0.621 0.524 -0.310 -1.464 0.478 -0.060 -0.483 -0.388 0.642 -0.094 0.016 0.051 0.023 -1.027 0.567 -1.755 0.792 0.333 -0.444 -0.358 0.293 0.308 -0.096 -1.143 0.458 0.287 0.127 -1.232 0.335 -0.839 0.009 -1.106 0.978 0.531 -0.422 -0.289 -0.014 0.221 -0.120 -0.846 0.442 0.319 0.084 -0.372 -0.121 -0.852 0.546 -0.792 0.494 0.357 -0.292 -0.045 -0.100 0.441 0.125 -1.021 0.083 0.496 -0.173 -0.036 -0.459 -0.803 0.177 -0.573 0.699 0.855 -0.735 -0.720 -0.024 0.690 -0.745 -0.196 -0.125 0.410 -1.053 0.360 -0.143 -0.658 0.407 -0.743 0.529 0.821 -0.878 -0.536 -0.001 0.260 -0.635 -0.976 0.722 0.902 -0.533 -1.068 -0.054 -0.966 -0.074 -1.191 1.071 0.548 -0.448 -0.481 0.123 0.274 -0.007 -0.837 0.305 0.242 -0.581 0.369 -0.221 -0.662 0.221 -0.737 0.680 0.440 -0.131 -0.553 0.068 0.066 0.541 -1.749 0.264 0.605 0.166 -0.702 -0.429 -1.167 0.721 -0.856 0.437 0.551 -0.135 -0.989 0.164 0.196 0.128 -0.560 0.116 0.473 -0.109 -0.400 -0.109 -0.983 0.678 -1.172 0.536 0.654 -0.640 -0.600 0.171 0.171 -0.066 -1.376 0.617 0.778 -0.235 -1.110 -0.040 -0.733 -0.081 -0.971 0.958 0.539 -0.293 -0.435 -0.012 0.248 0.179 -1.261 0.337 0.533 -0.371 -0.268 -0.075 -0.802 0.503 -0.576 0.421 . . . . . . . . . . . . . . . . 0.603 -0.351 -0.439 -0.060 0.425 -0.002 -0.597 -0.002 0.594 -0.205 -0.087 -0.553 -0.534 0.135 -0.901 0.745 . . . . . . . . . . . . . . . . 0.432 -0.665 -0.149 0.162 -0.011 0.399 -1.411 0.393 0.529 -0.514 0.033 -0.263 -0.463 -0.098 -0.543 0.726 0.384 -0.319 0.025 -0.191 0.185 0.283 -0.974 0.185 0.564 -0.042 -0.266 -0.476 -1.354 0.894 -0.804 0.236 0.632 -0.185 -1.178 0.175 -0.105 -0.213 -0.392 0.531 0.483 -0.421 0.142 -0.410 -1.600 0.959 -1.907 0.546 0.477 -0.710 -0.299 0.244 0.148 0.148 -1.174 0.424 0.628 -0.651 -0.522 0.165 -1.131 0.587 -1.109 0.658 0.428 -0.263 -0.360 0.060 0.123 0.186 -1.195 0.419 0.385 -0.148 0.014 -0.356 -1.104 0.913 -0.910 0.164 . . . . . . . . . . . . . . . . 0.806 -0.973 -0.324 -0.084 0.435 -0.071 -0.203 -0.273 0.605 -0.541 -0.159 -0.159 -0.831 0.327 -0.698 0.649 0.581 -0.642 -0.109 -0.096 0.287 -0.110 -1.086 0.467 0.583 -0.272 -0.303 -0.212 -0.888 0.081 -0.574 0.791 0.468 -0.770 -0.136 0.164 0.042 0.231 -0.747 0.264 0.424 -0.576 0.135 -0.170 -1.042 0.100 -0.471 0.784 0.446 0.021 -0.249 -0.356 -0.046 0.558 -1.214 0.173 0.453 0.247 -0.216 -0.778 -1.127 0.821 -0.620 0.169 0.549 -0.245 -0.546 0.011 0.275 0.068 -0.705 0.175 0.646 -0.370 -0.403 -0.143 -1.006 0.311 -0.717 0.726 0.596 -0.673 -0.338 0.098 0.255 -0.022 -1.587 0.574 0.610 -0.372 -0.471 -0.030 -1.013 0.158 -0.949 0.903 0.580 -0.623 -0.292 0.055 0.205 -0.039 -1.284 0.550 0.403 -0.386 0.025 -0.161 -0.771 0.396 -0.314 0.372 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 2 1 4 0 0.000 0.583 0.252 -0.377 -0.886 0.820 -0.031 -0.747 -0.600 0.775 0.599 -0.765 -2.432 -0.259 0.867 -0.223 -1.048 E-2 LUT 2 1 4 0 0.000 1.403 -1.122 -1.782 -0.725 1.535 -2.064 -1.904 -0.748 1.442 -1.056 -1.525 -1.138 0.169 -0.128 -0.424 0.282 E-1 LUT 2 1 4 0 0.000 -1.542 -3.975 1.749 -2.112 -0.735 -2.093 1.057 0.117 -0.391 -1.941 1.381 -1.426 -2.943 -2.000 1.674 -1.218 G LUT 2 1 4 0 0.000 -5.845 -5.845 1.981 -5.845 -4.322 -4.322 1.945 -4.322 -8.909 -8.909 1.998 -8.909 -5.833 -5.833 1.981 -5.833 T LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.258 -9.258 -9.258 1.998 0.000 0.000 0.000 0.000 I+1 LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.381 -2.258 -1.098 -0.477 I+2 LUT 2 1 4 0 0.000 1.184 -0.874 -2.513 0.009 0.849 -1.226 -2.711 0.694 1.613 -1.927 -2.005 -1.221 0.627 -0.814 -1.662 0.652 I+3 LUT 2 1 4 0 0.000 -0.264 -1.627 1.146 -0.667 0.165 -1.085 0.335 0.197 -0.356 -1.000 0.807 -0.046 -0.424 -1.217 1.047 -0.401 I+4 LUT 2 1 4 0 0.000 0.247 -0.645 -0.662 0.624 0.319 -0.963 -1.622 0.937 -0.434 -0.834 -2.076 1.300 0.085 -1.013 -0.419 0.762 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.749 -0.623 -0.654 0.048 0.610 -0.315 -1.259 0.325 0.614 -0.650 -0.682 0.273 0.201 -0.406 -0.452 0.448 0.699 -0.629 -0.825 0.221 0.652 -0.395 -0.705 0.076 0.568 -0.901 -0.468 0.332 0.095 -0.391 -0.700 0.636 0.794 -0.969 -0.437 0.025 0.335 -0.414 -1.771 0.762 0.397 -1.006 -0.813 0.692 0.084 -0.633 -0.436 0.638 0.600 -0.919 -0.786 0.459 0.481 -0.658 -1.196 0.617 0.330 -0.947 -0.376 0.540 0.055 -0.664 -0.463 0.683 0.831 -0.734 -0.635 -0.035 0.836 -0.922 -0.958 0.230 0.658 -0.760 -0.688 0.277 0.142 -0.714 -0.273 0.545 0.742 -0.512 -1.095 0.212 0.643 -0.791 -1.230 0.520 0.320 -1.090 -0.137 0.457 -0.001 -0.244 -0.772 0.651 0.564 -0.578 -0.445 0.160 0.429 -0.358 -0.597 0.278 0.260 -0.440 -0.740 0.553 -0.054 -0.657 -0.065 0.533 0.550 -0.691 -0.631 0.346 0.271 -0.816 -1.078 0.809 0.466 -0.857 -0.740 0.554 -0.226 -0.571 -0.248 0.704 0.742 -0.968 -0.180 -0.100 0.587 -0.552 -0.980 0.389 0.922 -0.986 -0.713 -0.015 0.019 -0.600 -0.492 0.693 0.675 -1.017 -0.574 0.307 0.581 -0.404 -0.917 0.286 0.437 -0.984 -0.545 0.541 -0.009 -0.395 -0.524 0.633 0.676 -1.048 -0.379 0.201 0.310 -0.261 -1.244 0.589 0.308 -0.994 -0.636 0.693 0.468 -0.982 -0.666 0.566 0.506 -0.865 -0.367 0.328 0.486 -0.722 -1.209 0.642 0.495 -1.473 -0.287 0.497 -0.224 -0.811 -0.460 0.885 0.663 -0.769 -0.786 0.322 0.684 -0.801 -1.168 0.458 0.546 -0.793 -0.925 0.522 0.501 -0.745 -0.436 0.321 0.520 -0.688 -0.769 0.442 0.738 -0.714 -1.055 0.312 0.459 -0.953 -0.477 0.476 -0.192 -0.100 -0.575 0.604 0.476 -1.005 -0.651 0.560 0.728 -0.926 -1.394 0.523 0.318 -0.891 -0.480 0.582 0.046 -0.885 -0.245 0.662 0.315 -0.739 -0.398 0.483 0.416 -0.750 -1.075 0.675 0.347 -0.828 -0.475 0.531 -0.258 -0.557 -0.221 0.701 0.715 -0.629 -0.744 0.157 0.600 -0.583 -0.967 0.384 0.460 -0.789 -0.613 0.477 0.050 -0.366 -0.471 0.553 0.500 -0.315 -0.988 0.353 0.858 -1.114 -0.715 0.159 0.311 -0.771 -0.787 0.672 -0.042 -0.322 -0.585 0.644 0.480 -1.100 -0.029 0.213 0.273 -0.577 -1.249 0.766 -0.230 -1.117 -1.372 1.202 -0.051 -0.698 -0.469 0.762 0.439 -0.852 -0.872 0.626 0.599 -1.078 -1.123 0.634 0.278 -0.806 -0.654 0.660 -0.194 -0.632 -0.327 0.752 0.858 -0.666 -0.990 0.076 0.469 -0.254 -0.975 0.343 0.518 -0.609 -0.650 0.350 0.035 -0.418 -0.531 0.619 0.719 -0.533 -1.469 0.380 0.740 -0.600 -1.695 0.445 0.385 -0.503 -0.553 0.385 0.037 -0.287 -0.900 0.695 0.379 -0.316 -0.639 0.326 0.294 0.148 -0.881 0.167 0.324 -0.343 -1.154 0.595 0.040 -0.363 -0.639 0.634 0.667 -0.803 -0.635 0.257 0.086 -0.455 -1.362 0.864 0.474 -0.707 -0.559 0.401 -0.318 -0.360 -0.544 0.793 0.615 -0.806 -0.614 0.314 0.369 -0.423 -0.168 0.102 0.587 -0.836 -0.534 0.319 -0.190 -0.289 -0.473 0.664 0.272 -0.716 -0.290 0.450 0.507 -1.389 0.164 0.107 -0.052 -0.528 -0.467 0.694 -0.204 -0.566 -0.382 0.756 0.434 -0.995 -0.142 0.311 -0.004 -0.500 -0.013 0.384 0.354 -0.906 -1.125 0.790 -0.159 -0.718 -0.291 0.748 0.456 -0.771 -0.446 0.388 0.168 -0.854 -0.317 0.605 0.365 -1.055 -0.356 0.536 -0.158 -1.111 -0.325 0.882 0.600 -0.791 -0.867 0.441 0.511 -0.705 -1.153 0.596 0.384 -0.735 -0.754 0.586 0.266 -0.539 -0.394 0.431 0.498 -0.474 -0.778 0.361 0.489 -0.772 -0.784 0.516 0.458 -0.844 -0.590 0.490 -0.556 0.280 -0.546 0.507 0.507 -1.044 -0.614 0.526 0.556 -0.969 -1.446 0.724 0.222 -0.950 -0.790 0.797 -0.190 -0.811 -0.434 0.859 0.421 -0.561 -0.624 0.416 0.091 -0.682 -1.522 0.974 0.271 -0.703 -0.674 0.635 -0.369 -0.374 -0.327 0.729 0.625 -0.448 -0.638 0.113 0.582 -0.286 -1.240 0.333 0.853 -0.658 -0.821 -0.008 -0.089 -0.143 -0.533 0.549 0.664 -0.526 -0.855 0.225 0.735 -0.512 -0.949 0.159 0.723 -0.967 -0.724 0.302 -0.102 -0.306 -0.636 0.693 0.504 -1.002 -0.072 0.177 0.274 -0.631 -1.609 0.862 0.497 -0.955 -0.866 0.608 -0.084 -0.624 -0.489 0.761 0.398 -0.748 -0.770 0.586 0.402 -0.571 -1.078 0.616 0.589 -0.822 -0.518 0.301 -0.221 -0.349 -0.415 0.685 0.687 -0.644 -0.615 0.134 0.681 -0.509 -1.075 0.286 0.557 -0.452 -0.406 0.061 -0.020 -0.396 -0.261 0.505 0.573 -0.262 -0.976 0.226 1.088 -1.247 -1.612 0.170 0.094 -0.468 -0.293 0.479 -0.050 -0.285 -0.854 0.731 0.335 -0.488 -0.488 0.393 0.334 -0.180 -0.447 0.168 0.228 -0.285 -0.668 0.463 -0.191 -0.639 -0.251 0.715 0.462 -0.402 -0.522 0.226 0.271 -0.674 -1.208 0.794 0.482 -0.321 -0.642 0.216 -0.313 -0.289 -0.428 0.708 0.673 -0.851 -0.365 0.104 0.546 -0.308 -0.988 0.296 0.667 -0.855 -0.355 0.107 -0.136 -0.311 -0.598 0.699 0.489 -0.824 -0.274 0.269 0.303 0.014 -0.854 0.268 0.460 -1.117 -0.177 0.355 -0.157 -0.366 -0.665 0.763 0.633 -0.775 -0.664 0.302 0.182 0.214 -1.832 0.511 0.418 -1.234 -0.488 0.609 -0.170 -0.828 -0.823 0.987 0.681 -0.829 -0.805 0.335 0.415 -0.561 -0.932 0.551 0.482 -1.080 -0.265 0.377 -0.294 -0.735 -0.733 0.987 0.458 -0.655 -0.353 0.273 0.547 -0.693 -0.878 0.460 0.466 -0.662 -0.799 0.498 0.265 -0.607 -0.266 0.389 0.496 -0.410 -0.883 0.373 0.621 -0.488 -1.153 0.377 0.145 -0.766 -0.440 0.649 -0.371 -0.064 -0.674 0.717 0.456 -0.884 -0.362 0.388 0.505 -0.643 -1.187 0.586 0.218 -0.708 -0.334 0.518 -0.128 -0.953 -0.080 0.698 0.260 -0.459 -0.442 0.421 0.247 -0.737 -1.117 0.809 0.255 -0.791 -0.412 0.563 -0.355 -0.402 -0.238 0.690 0.636 -0.594 -0.648 0.196 0.524 -0.400 -1.231 0.463 0.519 -0.563 -0.727 0.363 0.129 -0.506 -0.496 0.578 0.458 -0.653 -0.747 0.480 0.737 -0.663 -1.155 0.325 0.380 -0.968 -0.475 0.553 0.086 -0.488 -0.663 0.672 0.446 -0.876 -0.361 0.394 0.188 -0.612 -1.696 0.924 0.283 -0.677 -0.275 0.413 0.019 -0.717 -0.549 0.761 0.196 -0.928 -0.832 0.822 0.407 -0.798 -1.259 0.749 0.236 -0.798 -0.576 0.657 -0.051 -0.737 -0.434 0.761 0.639 -0.670 -0.715 0.269 0.507 -0.542 -1.240 0.555 0.425 -0.767 -0.395 0.389 -0.025 -0.229 -0.423 0.504 0.466 -0.386 -1.050 0.454 0.498 -0.537 -1.250 0.563 0.314 -0.962 -0.169 0.437 -0.483 0.054 -0.931 0.784 0.475 -0.914 -0.598 0.504 0.174 -0.109 -1.174 0.586 0.396 -0.858 -0.822 0.648 -0.160 -0.167 -0.621 0.645 0.364 -0.650 -0.603 0.503 -0.047 -0.729 -1.546 1.061 0.310 -0.763 -0.738 0.652 -0.430 -0.001 -0.542 0.652 0.586 -0.908 -0.501 0.332 0.447 -0.560 -1.213 0.611 0.574 -0.852 -0.697 0.423 -0.172 -0.532 -0.331 0.701 0.282 -1.340 0.056 0.432 0.524 -0.755 -1.115 0.592 0.322 -1.048 -0.541 0.659 -0.176 -0.590 -0.736 0.887 0.459 -1.031 -0.561 0.544 0.301 -0.510 -1.369 0.748 0.231 -0.498 -0.619 0.553 -0.205 -0.779 -0.331 0.811 0.409 -0.957 -0.408 0.489 0.303 -0.909 -1.009 0.796 0.279 -1.210 -0.581 0.754 -0.400 -0.809 -0.269 0.881 0.531 -0.735 -0.668 0.406 0.482 -0.667 -1.212 0.624 0.334 -0.761 -0.555 0.554 0.077 -0.586 -0.376 0.593 0.356 -0.562 -0.598 0.466 0.353 -0.534 -1.217 0.680 0.473 -1.148 -0.736 0.642 -0.523 -0.133 -0.730 0.839 0.356 -0.913 -0.606 0.616 0.501 -0.867 -1.409 0.731 0.102 -0.877 -0.572 0.773 -0.225 -0.796 -0.356 0.838 0.249 -0.660 -0.428 0.522 0.149 -0.660 -1.270 0.882 0.156 -0.884 -0.282 0.605 -0.429 -0.503 -0.202 0.750 Intron LUT 5 4 4 0 0.000 0.439 -0.446 -0.612 0.328 0.529 -0.583 -1.678 0.657 0.238 -0.759 -0.363 0.538 -0.240 -0.354 -0.180 0.573 0.419 -0.752 -0.524 0.458 0.544 -0.661 -0.998 0.495 0.446 -1.058 -0.669 0.612 -0.160 -0.531 -0.473 0.759 0.640 -1.054 -0.509 0.330 0.209 -0.987 -2.222 1.087 -0.322 -1.562 -1.388 1.310 0.072 -0.824 -0.505 0.748 0.262 -0.757 -0.479 0.577 0.335 -0.869 -1.467 0.871 0.115 -0.683 -0.453 0.645 -0.323 -0.595 -0.267 0.772 0.530 -0.780 -0.443 0.309 0.797 -1.076 -1.715 0.569 0.207 -1.316 0.214 0.361 -0.090 -0.750 -0.283 0.717 0.498 -0.656 -0.863 0.489 0.225 -0.862 -1.238 0.893 0.214 -1.037 -0.167 0.548 -0.114 -0.605 -0.416 0.739 0.524 -1.011 -0.496 0.440 0.372 -0.766 -1.409 0.800 -0.413 -1.139 -0.380 1.019 -0.040 -1.112 -0.322 0.819 0.546 -0.782 -0.588 0.371 0.260 -1.132 -1.689 1.026 0.481 -0.918 -0.750 0.566 -0.305 -0.625 -0.173 0.727 0.466 -0.636 -0.422 0.297 0.376 -0.589 -2.069 0.847 0.480 -0.955 -0.381 0.403 -0.137 -0.827 -0.439 0.840 0.357 -1.196 -0.394 0.606 0.639 -1.197 -1.519 0.729 0.240 -1.219 -0.827 0.868 -0.067 -0.408 -0.495 0.661 0.531 -1.049 -0.646 0.519 0.250 -1.048 -1.303 0.942 0.061 -1.277 -0.862 0.996 0.750 -1.306 -0.948 0.481 0.453 -1.142 -0.418 0.515 0.276 -0.879 -1.612 0.940 0.566 -1.380 -0.689 0.600 -0.313 -0.782 -0.534 0.943 0.362 -0.545 -0.666 0.484 0.573 -0.839 -1.624 0.704 0.426 -0.765 -0.976 0.641 0.351 -0.704 -0.247 0.342 0.255 -0.743 -0.522 0.597 0.589 -0.675 -1.250 0.535 0.370 -1.105 -0.437 0.589 -0.302 -0.255 -0.445 0.692 0.345 -1.144 -0.698 0.732 0.770 -1.199 -1.840 0.659 0.109 -0.903 -0.943 0.900 -0.228 -0.920 -0.257 0.832 0.051 -0.690 -0.155 0.532 0.333 -0.871 -1.412 0.862 0.278 -0.669 -0.606 0.587 -0.397 -0.480 -0.084 0.660 0.403 -0.593 -0.580 0.429 0.422 -0.661 -1.479 0.739 0.120 -0.931 -0.131 0.561 -0.144 -0.522 -0.194 0.608 0.142 -0.592 -0.438 0.580 0.649 -0.823 -1.506 0.599 0.365 -0.979 -0.550 0.606 -0.212 -0.480 -0.340 0.704 0.329 -1.190 -0.129 0.476 0.078 -1.349 -1.594 1.151 -1.109 -2.093 -2.125 1.619 -0.075 -0.919 -0.441 0.836 0.297 -1.028 -0.721 0.744 0.420 -1.061 -1.700 0.907 0.184 -0.727 -0.594 0.676 -0.419 -0.629 -0.209 0.799 0.633 -0.609 -0.819 0.295 0.559 -0.458 -1.833 0.602 0.072 -1.030 0.268 0.328 -0.013 -0.634 -0.364 0.667 0.228 -0.396 -0.981 0.643 0.474 -0.686 -2.271 0.834 0.037 -1.170 -0.783 0.963 -0.245 -0.501 -0.529 0.813 0.135 -0.865 -0.246 0.594 0.664 -0.558 -1.728 0.520 0.251 -1.304 -0.719 0.846 0.237 -0.794 -0.563 0.648 0.535 -0.917 -0.618 0.454 0.228 -0.834 -1.819 0.989 0.345 -0.621 -0.691 0.546 -0.319 -0.502 -0.507 0.839 0.499 -0.874 -1.036 0.636 0.662 -0.767 -1.380 0.532 0.043 -0.832 -0.015 0.504 -0.240 -0.482 -0.454 0.772 -0.013 -1.013 0.209 0.441 0.386 -1.658 -1.073 0.927 0.219 -0.974 -0.459 0.678 0.040 -0.831 -0.345 0.698 0.484 -1.176 -0.498 0.537 0.140 -1.807 -0.807 1.029 -0.112 -1.615 -1.112 1.193 0.386 -1.322 -0.791 0.779 0.644 -1.041 -0.573 0.355 0.200 -0.616 -1.747 0.927 0.475 -1.085 -0.670 0.595 -0.359 -1.118 -0.335 0.976 0.325 -0.644 -0.659 0.560 0.479 -1.041 -1.562 0.833 0.150 -0.695 -0.643 0.707 0.079 -0.534 -0.082 0.388 0.287 -0.539 -0.647 0.539 0.426 -0.947 -1.391 0.812 0.377 -1.031 -0.428 0.554 -0.544 -0.071 -0.209 0.582 0.451 -1.136 -0.701 0.644 0.701 -1.228 -1.813 0.734 0.095 -1.144 -1.000 0.985 -0.294 -1.079 -0.431 0.978 0.207 -0.477 -0.506 0.509 0.032 -0.713 -2.005 1.083 0.192 -0.638 -0.759 0.700 -0.436 -0.383 -0.258 0.730 0.316 -0.312 -0.778 0.450 0.466 -0.467 -1.623 0.651 0.284 -0.703 -0.431 0.513 -0.386 -0.198 -0.351 0.659 0.259 -0.715 -0.569 0.604 0.639 -0.845 -1.601 0.639 0.520 -0.850 -0.680 0.472 -0.272 -0.452 -0.420 0.760 0.448 -0.978 -0.563 0.537 0.348 -1.106 -2.338 1.046 -0.177 -1.375 -1.499 1.249 -0.055 -0.789 -0.624 0.856 0.135 -0.604 -0.592 0.660 0.381 -0.849 -1.358 0.810 0.459 -0.750 -0.555 0.433 -0.407 -0.418 -0.333 0.769 0.452 -0.806 -0.618 0.494 0.688 -1.090 -1.696 0.688 0.095 -0.831 0.157 0.328 -0.278 -0.331 -0.331 0.665 0.510 -0.716 -0.851 0.499 0.348 -0.874 -1.585 0.886 -0.120 -0.396 -0.837 0.816 -0.372 -0.480 -0.668 0.911 0.018 -0.696 -0.130 0.543 0.650 -0.496 -2.719 0.650 0.000 -0.954 -0.867 0.953 0.158 -0.939 -0.823 0.846 0.316 -0.438 -0.414 0.341 0.305 -1.051 -1.489 0.945 0.445 -0.515 -0.724 0.415 -0.235 -0.442 -0.355 0.707 0.350 -0.698 -0.622 0.545 0.350 -0.664 -1.221 0.736 0.382 -1.096 -0.411 0.563 -0.318 -0.472 -0.495 0.821 -0.070 -1.333 0.216 0.574 0.620 -1.538 -1.238 0.762 -0.213 -0.585 -0.350 0.754 -0.256 -0.384 -0.594 0.794 0.504 -0.921 -0.895 0.600 0.309 -0.632 -1.276 0.768 0.304 -1.598 -0.354 0.724 0.226 -1.546 -0.672 0.895 0.757 -0.772 -1.137 0.344 0.422 -0.932 -1.651 0.862 0.598 -1.129 -0.707 0.502 -0.249 -0.799 -0.778 1.001 0.206 -0.742 0.027 0.298 0.335 -0.723 -1.072 0.729 0.366 -0.536 -0.937 0.584 0.189 -0.703 -0.030 0.341 0.161 -0.513 -0.529 0.574 0.382 -0.413 -1.700 0.712 0.100 -0.844 -0.322 0.652 -0.541 -0.208 -0.500 0.799 0.278 -1.103 -0.230 0.556 0.691 -1.139 -1.831 0.723 0.152 -0.862 -0.477 0.696 -0.245 -1.124 -0.140 0.840 0.045 -0.440 -0.233 0.465 0.103 -0.786 -1.469 0.989 0.248 -0.732 -0.608 0.636 -0.467 -0.385 -0.177 0.701 0.381 -0.352 -0.432 0.230 0.478 -0.465 -1.522 0.618 0.209 -0.530 -0.648 0.598 -0.109 -0.431 -0.300 0.603 0.139 -0.845 -0.300 0.613 0.649 -0.773 -1.652 0.612 -0.052 -0.798 -0.463 0.795 -0.192 -0.621 -0.375 0.768 0.367 -1.000 -0.441 0.559 0.076 -0.787 -2.279 1.111 0.244 -0.968 -0.550 0.697 -0.077 -0.867 -0.538 0.860 -0.075 -0.883 -0.608 0.889 0.242 -0.902 -1.443 0.937 0.152 -0.722 -0.619 0.706 -0.292 -0.661 -0.207 0.753 0.470 -0.856 -0.553 0.466 0.508 -0.923 -1.950 0.842 0.034 -1.096 0.122 0.506 -0.129 -0.392 -0.306 0.599 0.145 -0.699 -0.631 0.707 0.169 -0.614 -1.407 0.884 0.000 -0.880 -0.231 0.683 -0.692 -0.294 -0.425 0.864 0.413 -1.284 -0.836 0.764 0.470 -0.579 -1.362 0.638 0.007 -1.343 -0.735 1.000 -0.171 -0.688 -0.774 0.931 0.266 -0.722 -0.485 0.562 0.066 -1.031 -1.650 1.101 0.202 -0.838 -0.735 0.757 -0.406 -0.296 -0.325 0.707 0.481 -0.836 -0.602 0.471 0.387 -0.707 -1.868 0.852 0.332 -0.815 -0.638 0.614 -0.318 -0.637 -0.316 0.808 -0.144 -1.594 0.595 0.326 0.228 -0.791 -1.734 0.963 -0.031 -1.105 -0.309 0.807 -0.158 -0.764 -0.672 0.916 0.421 -1.220 -0.860 0.749 0.415 -1.134 -2.152 0.990 0.142 -1.120 -0.697 0.864 -0.040 -1.079 -0.429 0.857 0.279 -1.076 -0.133 0.486 0.238 -1.005 -1.538 0.984 0.210 -1.106 -0.650 0.801 -0.515 -0.810 -0.267 0.925 0.297 -0.519 -0.558 0.480 0.385 -0.770 -1.632 0.836 0.223 -0.771 -0.620 0.675 -0.053 -0.558 -0.120 0.523 0.042 -0.720 -0.219 0.589 0.308 -0.540 -1.743 0.829 0.392 -1.361 -0.706 0.753 -0.558 -0.280 -0.529 0.852 0.147 -1.055 -0.637 0.823 0.604 -1.109 -1.897 0.805 0.012 -0.887 -0.874 0.930 -0.425 -0.962 -0.238 0.921 0.033 -0.528 -0.241 0.523 0.153 -0.708 -1.543 0.951 0.147 -0.753 -0.360 0.604 -0.573 -0.426 -0.042 0.689 Start SDT 3 0 4 2 0.000 ATG SAM 12 6 4 12 0.000 N-6 LUT 2 1 4 0 0.000 0.708 -0.910 0.298 -0.724 0.485 -0.515 -0.585 0.303 0.733 -0.902 0.060 -0.395 -0.288 -0.205 -0.127 0.483 N-5 LUT 2 1 4 0 0.000 0.732 -0.253 -0.415 -0.415 0.495 -0.191 -0.907 0.240 0.810 -0.130 -0.696 -0.482 -0.576 0.607 -0.632 0.216 N-4 LUT 2 1 4 0 0.000 1.116 -1.242 -0.099 -1.072 0.834 -1.568 -0.288 0.084 1.249 -1.027 -0.640 -1.027 0.158 0.086 -0.499 0.158 N-3 LUT 2 1 4 0 0.000 1.052 -1.533 0.209 -1.234 0.968 -1.032 -0.100 -0.684 1.300 -1.322 -0.499 -1.215 -0.158 0.163 -0.506 0.356 N-2 LUT 2 1 4 0 0.000 1.046 -0.179 -1.459 -0.539 0.398 0.398 -2.087 0.176 1.009 0.297 -2.450 -0.798 -0.396 0.848 -1.184 0.000 N-1 LUT 2 1 4 0 0.000 1.025 -1.190 0.248 -1.560 0.872 -0.197 -0.269 -1.095 1.186 -1.087 -0.213 -1.350 0.538 0.294 -0.495 -0.706 A LUT 2 1 4 0 0.000 1.986 -6.248 -6.248 -6.248 1.962 -4.858 -4.858 -4.858 1.972 -5.285 -5.285 -5.285 1.937 -4.129 -4.129 -4.129 T LUT 2 1 4 0 0.000 -7.308 -7.308 -7.308 1.993 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.308 -7.308 1.993 -7.308 E+1 LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.354 -1.636 1.246 -0.933 0.000 0.000 0.000 0.000 E+2 LUT 2 1 4 0 0.000 -0.034 -0.234 0.297 -0.082 0.493 0.889 -1.755 -1.170 0.400 0.756 -0.733 -1.357 -1.426 1.381 -2.104 -0.339 E+3 LUT 2 1 4 0 0.000 -0.089 -0.761 0.593 -0.056 -0.394 -1.607 0.648 0.426 0.193 -0.714 -0.544 0.643 -1.322 -1.170 0.934 0.316 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.464 -0.417 0.035 -0.239 0.464 -0.239 -0.536 0.116 0.035 -0.239 -0.111 0.265 0.357 -0.239 0.142 -0.380 0.265 -0.111 -0.343 0.116 -0.495 0.265 -0.239 0.312 -5.665 -5.665 -5.665 1.979 1.979 -5.665 -5.665 -5.665 1.979 -5.665 -5.665 -5.665 TAG WMM 9 6 4 0 0.000 0.367 -0.663 0.424 -0.441 0.337 0.000 -0.294 -0.119 0.000 -0.294 -0.724 0.659 -0.341 -0.204 0.585 -0.248 0.480 -0.078 -1.000 0.212 -0.248 0.037 -0.294 0.396 -5.248 -5.248 -5.248 1.971 1.971 -5.248 -5.248 -5.248 -5.248 -5.248 1.971 -5.248 TGA WMM 9 6 4 0 0.000 0.385 -0.744 0.097 0.040 0.531 0.078 -0.812 -0.104 -0.020 -0.104 -0.389 0.400 0.322 -0.389 0.097 -0.126 0.115 0.097 -0.710 0.306 -0.193 0.000 -0.678 0.585 -6.170 -6.170 -6.170 1.985 -6.170 -6.170 1.985 -6.170 1.985 -6.170 -6.170 -6.170 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/O.sativa.hmm0000644000175000017500000013536111424066010015545 0ustar moellermoellerzoeHMM O.sativa 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.771226 Inter Esngl 0.228774 Inter ORF 1 Intron Eterm 0.260974 Intron Exon 0.739026 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.443425 0.348624 0.207951 0.710247 0.120141 0.169611 0.708075 0.130435 0.161491 0.758794 0.120603 0.120603 0.745429 0.254571 0.716364 0.283636 0.745318 0.254682 Einit 2 DEFINED 0 249 -10.533 -10.502 -10.471 -10.440 -10.411 -10.381 -10.353 -10.325 -10.297 -10.270 -10.244 -10.143 -10.048 -9.959 -9.876 -9.797 -9.722 -9.650 -9.582 -9.518 -9.455 -9.425 -9.396 -9.367 -9.339 -9.311 -9.284 -9.257 -9.231 -9.205 -9.180 -9.149 -9.118 -9.089 -9.060 -9.031 -9.003 -8.975 -8.949 -8.922 -8.896 -8.826 -8.759 -8.694 -8.633 -8.574 -8.518 -8.463 -8.411 -8.360 -8.311 -8.274 -8.237 -8.202 -8.167 -8.134 -8.101 -8.068 -8.037 -8.006 -7.975 -7.970 -7.965 -7.959 -7.954 -7.949 -7.943 -7.938 -7.933 -7.927 -7.922 -7.919 -7.917 -7.914 -7.912 -7.909 -7.906 -7.904 -7.901 -7.899 -7.896 -7.914 -7.933 -7.951 -7.970 -7.989 -8.009 -8.028 -8.048 -8.068 -8.089 -8.080 -8.071 -8.062 -8.054 -8.045 -8.037 -8.028 -8.020 -8.011 -8.003 -8.000 -7.997 -7.995 -7.992 -7.989 -7.986 -7.984 -7.981 -7.978 -7.975 -7.967 -7.959 -7.951 -7.943 -7.935 -7.927 -7.919 -7.912 -7.904 -7.896 -7.901 -7.906 -7.912 -7.917 -7.922 -7.927 -7.933 -7.938 -7.943 -7.949 -7.967 -7.986 -8.006 -8.025 -8.045 -8.065 -8.086 -8.106 -8.127 -8.149 -8.174 -8.199 -8.224 -8.251 -8.277 -8.304 -8.332 -8.360 -8.389 -8.418 -8.422 -8.425 -8.429 -8.433 -8.437 -8.440 -8.444 -8.448 -8.452 -8.455 -8.467 -8.478 -8.490 -8.502 -8.514 -8.525 -8.537 -8.550 -8.562 -8.574 -8.562 -8.550 -8.537 -8.525 -8.514 -8.502 -8.490 -8.478 -8.467 -8.455 -8.459 -8.463 -8.467 -8.471 -8.475 -8.478 -8.482 -8.486 -8.490 -8.494 -8.529 -8.566 -8.603 -8.642 -8.681 -8.722 -8.763 -8.806 -8.850 -8.896 -8.912 -8.927 -8.943 -8.959 -8.975 -8.992 -9.009 -9.025 -9.042 -9.060 -9.106 -9.155 -9.205 -9.257 -9.311 -9.367 -9.425 -9.486 -9.550 -9.616 -9.642 -9.668 -9.694 -9.722 -9.749 -9.777 -9.806 -9.836 -9.865 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.917 -9.938 -9.959 -9.981 -10.003 -10.025 -10.048 -10.071 -10.095 GEOMETRIC 250 -1 243 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.382 -10.339 -10.298 -10.258 -10.219 -10.180 -10.143 -10.107 -10.072 -10.037 -10.004 -9.949 -9.897 -9.846 -9.797 -9.750 -9.704 -9.660 -9.617 -9.575 -9.534 -9.449 -9.368 -9.291 -9.219 -9.149 -9.083 -9.020 -8.960 -8.902 -8.846 -8.821 -8.797 -8.773 -8.750 -8.727 -8.704 -8.682 -8.660 -8.638 -8.617 -8.591 -8.567 -8.542 -8.518 -8.495 -8.471 -8.449 -8.426 -8.404 -8.382 -8.371 -8.361 -8.350 -8.339 -8.329 -8.319 -8.308 -8.298 -8.288 -8.278 -8.245 -8.212 -8.180 -8.149 -8.119 -8.089 -8.060 -8.032 -8.004 -7.976 -7.998 -8.020 -8.043 -8.066 -8.089 -8.113 -8.137 -8.162 -8.187 -8.212 -8.203 -8.193 -8.184 -8.174 -8.165 -8.156 -8.146 -8.137 -8.128 -8.119 -8.116 -8.113 -8.110 -8.107 -8.104 -8.101 -8.098 -8.095 -8.092 -8.089 -8.116 -8.143 -8.171 -8.199 -8.228 -8.258 -8.288 -8.319 -8.350 -8.382 -8.375 -8.368 -8.361 -8.354 -8.346 -8.339 -8.332 -8.325 -8.319 -8.312 -8.332 -8.354 -8.375 -8.397 -8.419 -8.441 -8.464 -8.487 -8.510 -8.534 -8.567 -8.600 -8.634 -8.668 -8.704 -8.741 -8.778 -8.816 -8.856 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.912 -8.928 -8.944 -8.960 -8.976 -8.993 -9.009 -9.026 -9.043 -9.060 -9.072 -9.083 -9.095 -9.107 -9.119 -9.131 -9.143 -9.156 -9.168 -9.180 -9.174 -9.168 -9.162 -9.156 -9.149 -9.143 -9.137 -9.131 -9.125 -9.119 -9.149 -9.180 -9.212 -9.245 -9.278 -9.312 -9.346 -9.382 -9.419 -9.456 -9.479 -9.502 -9.526 -9.550 -9.575 -9.600 -9.625 -9.651 -9.677 -9.704 -9.713 -9.722 -9.731 -9.741 -9.750 -9.759 -9.769 -9.778 -9.788 -9.797 -9.778 -9.759 -9.741 -9.722 -9.704 -9.686 -9.668 -9.651 -9.634 -9.617 -9.567 -9.518 -9.471 -9.426 -9.382 -9.339 -9.298 -9.258 -9.219 -9.180 -9.187 -9.193 -9.199 -9.206 -9.212 -9.219 -9.225 -9.232 -9.238 -9.245 -9.258 -9.271 -9.284 -9.298 -9.312 -9.325 -9.339 -9.354 -9.368 GEOMETRIC 250 -1 294 Exon 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 335 ORF 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Acceptor SDT 2 1 4 2 0.000 AG WMM 40 36 4 0 0.000 0.230 -0.461 -0.525 0.491 0.133 -0.545 -0.305 0.494 0.112 -0.429 -0.493 0.552 0.112 -0.512 -0.411 0.552 -0.022 -0.532 -0.357 0.625 0.024 -0.480 -0.552 0.664 0.226 -0.586 -0.525 0.555 0.103 -0.411 -0.579 0.589 0.099 -0.664 -0.467 0.655 0.060 -0.552 -0.586 0.687 0.129 -0.635 -0.566 0.667 0.086 -0.579 -0.600 0.687 0.154 -0.552 -0.593 0.625 0.190 -0.448 -0.635 0.568 0.073 -0.381 -0.600 0.604 0.068 -0.566 -0.635 0.707 -0.003 -0.579 -0.709 0.783 -0.089 -0.363 -0.552 0.678 -0.244 -0.480 -0.552 0.812 -0.233 -0.512 -0.552 0.820 -0.255 -0.411 -0.552 0.789 -0.375 -0.572 -0.506 0.889 -0.305 -0.664 -0.423 0.859 -0.417 -0.499 -0.519 0.884 -0.686 -0.486 -0.747 1.049 -0.539 -0.480 -0.442 0.896 -0.473 -0.461 -0.679 0.950 -0.363 -0.545 -0.411 0.838 -0.333 -0.579 -0.499 0.874 -0.405 -0.600 -0.572 0.938 -0.423 -0.480 -0.461 0.859 -0.442 -0.467 -0.628 0.923 -1.036 -1.260 -1.461 1.451 -0.322 -1.435 0.945 -0.134 -3.008 1.661 -6.709 -0.493 1.999 -8.293 -8.293 -8.293 -8.293 -8.293 1.999 -8.293 -0.277 -1.217 1.220 -1.249 -0.175 -0.572 -0.473 0.789 -0.065 -0.375 0.037 0.325 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.563 -0.059 0.342 0.131 0.236 -0.069 -1.282 0.544 0.029 0.167 -0.091 -0.123 -1.019 -0.077 0.318 0.391 0.105 -0.685 0.720 -0.609 0.800 -0.709 -1.087 0.234 -0.787 -0.109 0.139 0.476 -1.030 0.018 0.330 0.311 0.232 -0.480 0.093 0.060 0.386 -0.087 -1.633 0.515 0.035 -0.129 0.096 -0.012 -0.782 -0.141 0.144 0.493 . 0.806 . 1.171 0.415 -0.079 -0.886 0.237 . 0.484 1.069 -0.990 -1.059 0.093 -0.086 0.596 -1.543 0.374 0.946 -1.202 -0.899 0.946 -0.268 -0.500 -1.254 0.857 0.331 -0.967 -1.770 0.812 0.434 -0.734 -1.183 0.435 0.737 -0.887 -0.435 0.066 0.525 -0.369 -2.384 1.092 -0.014 -0.542 -2.785 1.006 0.354 -0.814 -2.065 0.754 0.824 -1.714 -1.905 1.127 0.398 -2.108 -2.182 1.384 -0.254 -1.597 -3.797 1.135 0.525 -1.770 . 1.740 . -0.601 -0.930 0.953 -0.010 -0.873 . 0.862 0.944 -1.953 -2.630 1.342 -0.557 -0.680 -1.040 0.153 1.074 -1.756 -0.620 0.586 0.345 -0.792 -1.063 0.782 0.554 -1.583 -1.721 0.755 0.484 -0.712 -0.847 -0.004 1.054 -1.431 -0.249 0.188 0.471 -0.658 -2.216 0.954 0.369 -0.847 -1.816 0.701 0.524 -0.617 -0.989 0.046 0.942 -0.882 -0.916 0.565 0.447 -0.674 -0.776 0.801 -0.139 -0.385 -2.431 0.243 1.087 -0.978 . 1.659 . -0.248 -0.608 0.569 0.225 -0.531 . 0.982 0.835 -2.055 -2.195 1.302 -0.770 -0.454 -0.528 -0.382 0.725 -0.175 0.152 -0.170 -0.710 0.474 -0.076 0.107 0.107 -0.156 -0.727 0.224 0.010 0.289 -0.271 -0.357 0.609 -0.209 0.460 -0.493 -1.090 0.530 -0.858 0.351 -0.273 0.427 -1.078 0.250 0.131 0.313 -0.272 -0.258 0.301 0.141 0.066 -0.177 -1.177 0.701 0.026 0.372 -0.719 0.111 -1.338 0.166 0.097 0.499 . 0.951 . 1.048 0.330 0.087 -1.235 0.330 . 0.473 0.836 -0.275 -1.118 0.569 0.063 0.016 -0.632 -0.151 0.588 -0.073 0.327 -0.009 -0.658 0.161 -0.004 0.208 0.193 -0.504 -1.098 0.004 0.294 0.383 0.163 -0.728 0.594 -0.382 0.556 -0.703 0.068 -0.205 -0.465 0.446 0.101 -0.251 -0.845 0.014 0.343 0.220 -0.189 -0.477 0.385 0.135 0.418 -0.283 -1.006 0.426 0.155 -0.043 0.068 -0.205 -0.713 -0.204 0.407 0.259 . 1.288 . 0.640 0.362 0.059 -0.823 0.148 . 0.547 0.953 -0.730 -1.784 0.294 0.356 0.268 -2.228 0.489 1.063 -1.770 -1.434 1.190 -0.284 -0.923 -1.195 0.812 0.399 -1.032 -2.185 1.017 0.352 -1.058 -1.046 0.419 0.810 -1.231 -0.738 0.276 0.388 -0.183 -2.341 1.283 -0.248 -0.926 -2.347 1.113 -0.075 -0.532 -2.685 1.063 0.553 -1.795 -2.267 1.371 -0.039 -2.104 -1.666 1.429 -0.460 -1.916 -3.785 1.128 0.519 -1.697 . 1.801 . -0.958 -1.578 1.266 -0.480 -0.882 . 1.243 0.293 -1.292 -2.621 1.507 -0.872 -1.156 -1.062 0.502 0.868 -1.840 -1.755 -0.027 1.311 -2.054 -2.448 0.748 0.921 -2.033 -1.764 0.700 0.744 -1.300 -2.478 0.320 1.231 -2.157 -1.487 -0.427 1.363 -1.614 -3.096 0.992 0.742 -2.170 -3.813 0.775 1.018 -2.377 -2.437 0.160 1.208 -1.365 -2.388 -0.436 1.531 -2.473 -1.381 0.496 0.987 -2.163 -3.721 -0.634 1.583 -1.814 . 1.851 . -1.346 -1.638 0.183 1.170 -1.766 . 0.875 0.995 -2.533 -3.368 1.534 -0.690 -1.368 -0.371 0.016 0.355 -0.094 0.186 -0.096 -1.446 0.641 -0.263 0.222 0.170 -0.193 -0.475 0.148 0.051 0.185 0.213 -0.295 0.364 -0.437 0.219 -0.322 -0.861 0.571 -0.367 0.575 -0.971 0.292 -1.556 0.262 0.304 0.294 -0.138 -0.336 0.214 0.187 0.026 0.040 -1.253 0.618 0.038 -0.013 -0.747 0.471 -1.170 0.099 0.069 0.521 . 1.126 . 0.862 0.131 0.162 -0.838 0.294 . 1.043 0.241 -0.401 -0.929 0.711 -0.063 -0.184 -0.322 -0.143 0.535 -0.242 0.380 0.059 -1.700 0.432 -0.233 0.112 0.257 -0.195 -0.492 0.000 0.678 -0.538 -0.041 -0.282 0.580 -0.494 0.462 -1.492 -0.907 0.794 -0.109 0.351 0.284 -0.787 -0.821 -0.084 0.360 0.272 0.098 -0.247 0.185 -0.074 0.171 -0.062 -0.988 0.497 0.343 0.124 -0.233 -0.338 -0.769 -0.166 0.407 0.258 . 1.017 . 0.983 0.407 0.016 -0.952 0.197 . 0.927 0.590 -0.751 -1.179 0.509 0.009 0.175 -1.595 0.453 0.917 -1.282 -0.965 0.873 0.220 -1.026 -1.618 1.015 0.184 -0.950 -1.752 1.048 0.208 -1.058 -1.667 0.637 0.721 -1.054 -0.473 0.560 0.297 -0.795 -1.784 1.231 -0.059 -1.310 -2.566 1.323 -0.262 -1.011 -2.532 0.921 0.723 -1.822 -2.344 1.248 0.256 -2.096 -2.034 1.506 -0.637 -1.880 -3.351 1.194 0.425 -1.884 . 1.720 . -0.504 -0.921 1.090 -0.214 -1.054 . 1.305 0.271 -1.636 -2.096 1.401 -0.640 -1.050 -1.096 -0.063 1.147 -1.473 -0.501 -0.099 0.657 -0.354 -1.219 0.611 0.647 -1.067 -1.333 0.579 0.631 -0.836 -0.632 0.028 0.953 -1.328 -0.426 -0.099 0.920 -1.221 -1.151 0.673 0.487 -0.855 -2.002 0.576 0.848 -1.121 -1.238 0.281 0.879 -0.939 -0.650 0.236 0.682 -0.784 -0.358 0.804 -0.206 -0.721 -2.416 -0.164 1.111 -0.395 . 1.693 . -0.385 -0.542 0.043 0.864 -1.109 . 0.877 0.950 -2.112 -2.016 1.321 -0.595 -0.757 -0.464 0.070 0.350 -0.074 0.300 0.429 -1.700 0.158 -0.854 0.767 0.253 -0.854 -0.829 0.386 0.007 0.171 0.065 -0.213 0.266 -0.170 0.449 -0.119 -1.518 0.449 -1.087 0.305 -1.087 0.867 -1.308 0.366 0.081 0.322 -0.469 0.125 -0.027 0.270 0.050 -0.013 -1.572 0.711 -0.245 0.410 -0.885 0.363 -1.505 0.199 0.155 0.471 . 1.258 . 0.685 0.518 -0.212 -1.212 0.348 . 0.430 0.743 -0.030 -0.883 0.463 0.233 -0.146 -0.494 -0.267 0.488 0.079 0.697 -0.209 -1.624 0.250 -0.499 0.263 0.501 -0.563 -1.179 0.078 0.044 0.558 0.162 -0.990 0.595 -0.206 0.606 -0.607 -0.896 0.360 -1.026 0.255 0.489 -0.132 -0.843 -0.366 0.564 0.248 -0.132 -0.156 0.027 0.228 0.283 -0.174 -1.140 0.529 0.229 0.132 -0.594 0.098 -0.496 -0.603 0.311 0.478 . 0.855 . 1.132 0.255 -0.132 -1.330 0.582 . 0.621 0.657 -0.177 -0.941 -0.043 0.059 0.553 -1.603 0.400 0.993 -1.471 -0.977 1.246 -0.657 -1.040 -1.276 0.873 0.301 -0.934 -2.050 1.011 0.338 -1.061 -1.028 0.280 0.882 -1.144 -0.938 0.513 0.481 -0.610 -2.252 1.203 -0.101 -0.848 -2.456 1.159 0.143 -1.058 -2.727 1.022 0.530 -1.416 -2.382 1.365 -0.167 -1.549 -1.898 1.388 -0.483 -1.326 -2.908 1.272 0.281 -2.076 . 1.664 . -0.268 -1.259 1.308 -0.581 -1.193 . 1.006 0.678 -1.351 -3.193 1.497 -0.703 -1.138 -1.174 0.097 1.051 -1.268 -0.129 0.196 0.426 -0.746 -0.771 0.555 0.636 -1.356 -1.499 0.587 0.587 -0.639 -0.750 -0.103 0.998 -1.068 -0.276 -0.094 0.656 -0.596 -1.568 0.812 0.504 -1.034 -2.335 0.769 0.535 -0.624 -1.025 0.148 0.816 -0.643 -0.784 0.303 0.598 -0.575 -0.690 0.672 0.222 -0.690 -2.468 -0.016 1.188 -0.858 . 1.619 . -0.107 -0.521 0.409 0.520 -0.886 . 0.687 0.948 -1.120 -2.492 1.274 -0.544 -0.479 -0.307 -0.081 0.483 -0.236 0.307 -0.108 -2.015 0.667 -0.044 0.306 0.188 -0.611 -0.813 -0.012 -0.012 0.533 -0.071 -0.689 0.819 -0.593 0.389 -0.651 -0.953 0.621 -1.181 0.339 -0.280 0.556 -0.985 0.028 -0.022 0.576 -0.589 -0.321 0.355 0.328 0.146 -0.179 -1.517 0.731 0.067 -0.051 -0.339 0.259 -1.457 -0.015 0.206 0.578 . 1.222 . 0.737 0.371 -0.233 -1.555 0.599 . 0.536 0.509 0.173 -0.652 0.510 -0.044 -0.044 frame2 LUT 5 4 4 0 0.000 -0.056 -0.245 0.433 -0.245 0.785 -0.111 -0.923 -0.281 0.479 0.067 0.067 -0.969 -0.705 -0.361 0.996 -0.705 0.145 -0.138 0.259 -0.344 0.728 -0.459 -0.203 -0.420 -0.131 -0.064 0.686 -0.939 -0.791 -0.156 0.904 -0.613 0.524 -1.000 0.298 -0.263 0.824 -0.353 -1.176 0.006 0.463 0.036 0.059 -0.850 -0.722 -0.666 1.141 -0.843 0.213 -0.787 0.351 -0.021 0.718 -0.322 -0.590 -0.167 0.263 -0.459 0.656 -1.009 -0.524 -0.309 0.907 -0.687 -0.115 -0.362 0.736 -0.659 0.695 0.023 -0.807 -0.333 0.129 0.129 -0.010 -0.286 -1.049 -0.010 0.735 -0.219 0.092 -0.240 0.602 -0.813 0.813 -0.420 -0.282 -0.572 -0.043 0.198 0.467 -1.000 -1.080 -0.111 0.905 -0.456 0.000 -0.206 0.093 0.093 -0.087 0.135 0.082 -0.149 0.371 -0.237 0.071 -0.307 -0.644 -0.907 1.386 -2.229 -0.151 0.064 0.293 -0.271 0.528 -0.037 -0.764 -0.007 0.556 -0.229 0.141 -0.802 -0.550 -0.060 0.826 -0.773 0.108 -0.649 0.742 -0.708 0.480 -0.229 -0.153 -0.229 0.245 -0.167 0.418 -0.765 -0.497 -0.778 1.041 -0.621 0.287 -0.358 0.328 -0.426 0.685 -0.526 0.258 -0.995 0.188 -0.284 0.569 -0.846 -0.550 -0.157 0.933 -0.971 0.424 -0.954 0.631 -0.753 0.334 -0.338 0.317 -0.508 0.342 0.011 0.054 -0.542 -1.164 -0.417 1.006 -0.328 0.220 -0.446 0.478 -0.496 0.327 -0.138 -0.081 -0.167 0.339 -0.140 0.249 -0.646 -0.594 -0.108 0.910 -0.916 . . . . 0.491 0.064 -0.665 -0.122 . . . . -0.677 -0.399 0.894 -0.399 0.491 -0.783 0.314 -0.377 1.006 -1.183 -0.367 -0.367 0.364 -0.091 0.109 -0.524 -0.617 -0.202 0.798 -0.436 . . . . 0.435 0.058 -0.190 -0.453 0.464 -0.121 0.364 -1.273 -0.954 -0.632 1.216 -0.954 -0.322 -0.110 0.518 -0.248 0.522 -0.115 -0.569 -0.048 0.097 -0.283 0.448 -0.426 -0.384 -0.841 1.082 -0.841 -0.035 -0.620 0.632 -0.281 0.246 0.023 0.057 -0.401 0.223 -0.315 0.548 -0.817 -0.940 -0.466 1.082 -0.648 0.399 -0.415 0.126 -0.250 0.408 -0.764 0.511 -0.601 -0.756 0.314 0.746 -1.038 -0.762 -0.383 1.126 -1.114 0.380 -0.952 0.578 -0.537 0.188 -0.151 0.245 -0.368 0.270 -0.155 0.364 -0.715 -0.383 -1.411 1.183 -0.770 -0.016 -0.333 0.149 0.149 0.195 -0.256 0.419 -0.555 -0.010 -0.074 0.534 -0.716 -0.692 -0.511 1.135 -1.050 -0.170 -0.442 0.830 -0.744 -0.150 0.402 0.235 -0.738 0.183 0.108 0.285 -0.817 -1.295 -0.231 1.103 -0.755 0.268 -0.349 0.353 -0.448 0.423 -1.365 0.689 -0.600 -0.461 0.238 0.620 -0.844 -0.825 -0.049 0.958 -0.926 0.112 -1.094 0.697 -0.271 -0.271 0.158 0.571 -0.810 0.088 0.146 -0.048 -0.213 -0.885 -0.846 1.248 -0.926 0.405 -0.595 0.253 -0.284 -0.078 0.004 0.425 -0.501 -0.133 0.247 0.353 -0.681 -1.059 0.062 1.027 -1.191 -0.343 -1.115 1.094 -0.700 -0.116 -0.196 0.709 -0.813 -0.003 -0.101 0.560 -0.747 -0.852 0.012 0.996 -1.174 -0.107 -0.334 0.571 -0.334 -0.094 -1.297 1.135 -1.119 -1.189 0.575 0.512 -0.630 -1.250 -0.138 1.144 -1.117 -0.317 -0.792 0.861 -0.317 -0.161 -0.644 1.017 -1.177 0.103 0.039 0.009 -0.164 -0.913 -0.913 1.343 -1.318 0.089 -0.304 0.451 -0.397 -0.111 -0.468 0.808 -0.737 -0.410 0.440 0.356 -0.711 -1.216 -0.046 1.082 -1.046 . . . . 0.124 -0.131 0.195 -0.230 . . . . -1.136 -0.720 1.296 -1.051 0.208 -0.306 -0.207 0.226 0.181 -0.383 0.345 -0.270 -0.828 0.438 0.376 -0.352 -0.905 -0.240 1.033 -0.803 . . . . 0.141 -0.096 0.339 -0.521 0.054 -0.298 0.514 -0.473 -0.607 -1.259 1.163 -0.543 0.051 -0.485 0.550 -0.348 -0.078 -0.055 0.231 -0.126 0.003 -0.289 0.636 -0.677 -1.294 -0.736 1.278 -0.820 -0.055 -0.694 0.739 -0.414 0.297 0.087 0.113 -0.672 0.317 0.076 0.383 -1.339 -0.848 -0.585 1.120 -0.725 0.359 -0.322 0.359 -0.655 0.531 -0.448 0.095 -0.408 -0.294 0.029 0.659 -0.774 -0.763 -0.339 1.066 -0.924 0.270 -1.385 0.668 -0.281 0.368 -0.269 0.198 -0.449 0.394 -0.084 0.114 -0.600 -0.459 -0.652 1.032 -0.759 0.202 -0.428 0.062 0.087 0.432 -0.199 0.286 -0.837 0.108 -0.054 0.585 -1.126 -0.841 -0.300 1.085 -0.978 -0.085 -0.103 0.452 -0.399 0.260 0.053 0.175 -0.653 0.023 0.215 0.211 -0.587 -0.608 -0.117 0.919 -0.913 -0.305 0.093 0.205 -0.042 0.578 -0.904 0.388 -0.590 -0.842 0.267 0.615 -0.501 -0.442 -0.045 0.880 -1.139 -0.822 -0.822 0.985 -0.170 -0.072 0.117 0.479 -0.812 -0.089 0.558 -0.251 -0.420 -1.459 -0.118 1.077 -0.722 -0.308 0.142 0.312 -0.239 0.161 -0.264 0.504 -0.663 -0.299 0.264 0.466 -0.724 -0.757 0.048 1.014 -1.494 -0.276 -0.813 1.103 -1.130 0.234 -0.372 0.439 -0.525 0.196 -0.175 0.541 -0.963 -0.496 -0.231 0.919 -0.869 0.168 -0.412 0.441 -0.381 0.450 -1.272 0.758 -0.920 -0.324 0.052 0.631 -0.700 -0.656 -0.341 0.951 -0.639 0.365 -1.013 0.446 -0.227 -0.011 -0.250 0.597 -0.613 0.358 0.246 -0.214 -0.576 -0.408 -1.004 1.064 -0.607 -0.258 -0.459 0.833 -0.611 0.316 -0.649 0.583 -0.691 -0.245 -0.070 0.648 -0.653 -0.775 -0.125 1.012 -1.055 . . . . 0.266 -0.051 0.282 -0.698 . . . . -1.040 -0.303 1.112 -0.888 0.023 -1.254 0.585 0.090 0.632 -0.577 0.293 -0.850 -0.688 0.178 0.348 -0.036 -0.440 -0.061 0.808 -0.855 . . . . -0.056 0.050 0.305 -0.381 0.027 -0.076 0.436 -0.557 -0.508 -0.923 1.077 -0.601 0.014 -0.102 0.483 -0.599 0.002 -0.059 0.417 -0.508 0.109 -0.183 0.488 -0.649 -1.284 -0.507 1.216 -0.829 -0.054 -0.719 0.708 -0.330 0.662 0.061 -0.801 -0.322 0.397 0.039 0.168 -0.911 -0.644 -0.290 0.859 -0.456 0.422 -0.512 0.207 -0.315 0.812 -0.188 -0.603 -0.500 -0.047 -0.047 0.690 -1.147 -0.721 0.092 0.824 -0.843 0.285 -0.830 0.524 -0.356 0.867 0.022 -0.686 -0.892 0.218 0.000 0.097 -0.382 -0.548 -0.870 1.012 -0.411 0.350 -0.621 0.138 -0.037 0.547 -0.005 -0.610 -0.172 0.122 -0.221 0.347 -0.355 -0.830 -0.368 1.121 -1.037 -0.119 -0.231 0.722 -0.793 0.382 0.499 -0.910 -0.411 0.230 -0.134 0.255 -0.469 -0.845 -0.118 0.909 -0.636 0.131 -0.212 0.407 -0.482 0.619 -0.415 -0.381 -0.079 0.396 -0.132 0.335 -0.971 -0.382 0.003 0.786 -0.984 0.089 -0.844 0.603 -0.216 0.134 0.277 -0.242 -0.242 0.464 0.081 -0.355 -0.355 -0.931 -0.386 1.069 -0.708 -0.279 0.126 0.541 -0.666 0.272 0.305 -0.387 -0.335 0.157 -0.061 0.324 -0.567 -0.737 -0.059 0.947 -0.966 0.152 -0.871 0.886 -1.015 0.617 -0.046 -0.577 -0.274 0.252 0.014 0.379 -1.003 -0.666 -0.251 1.010 -0.955 0.372 -0.404 0.303 -0.481 0.639 -0.560 0.086 -0.508 0.081 -0.074 0.480 -0.743 -0.592 -0.219 0.944 -0.855 0.321 -0.632 0.426 -0.391 0.613 -0.235 -0.192 -0.422 0.362 -0.029 -0.154 -0.259 -0.635 -0.533 1.005 -0.604 0.274 -0.539 0.274 -0.163 0.577 -0.160 -0.322 -0.298 0.208 -0.107 0.289 -0.526 -0.824 -0.337 1.086 -0.945 . . . . 0.727 -0.097 -0.949 -0.165 . . . . -0.636 -0.419 1.037 -0.845 0.127 -0.663 0.659 -0.520 0.525 -0.257 -0.653 0.122 0.052 -0.755 0.737 -0.507 -0.703 -0.459 0.949 -0.459 . . . . 0.465 0.163 -0.889 -0.059 0.268 -0.330 0.569 -0.954 -0.622 -0.783 1.084 -0.622 0.126 -0.160 0.484 -0.700 0.429 0.118 -0.779 -0.022 0.252 -0.387 0.512 -0.695 -0.758 -0.514 1.361 -2.836 frame2 LUT 5 4 4 0 0.000 0.311 -0.174 -0.350 0.122 -0.013 0.254 -1.768 0.607 0.509 -0.174 -0.373 -0.122 -0.344 0.153 -0.159 0.269 0.609 -0.606 -0.614 0.219 -0.081 0.306 -1.000 0.399 -0.014 0.048 -0.028 -0.007 -0.243 0.034 -0.265 0.378 0.809 -0.502 -0.680 -0.123 0.019 0.033 -1.017 0.555 0.509 0.074 -0.398 -0.386 0.000 -0.052 -0.390 0.347 0.171 -0.730 -0.389 0.592 0.065 0.244 -1.437 0.485 0.186 -0.079 0.004 -0.131 -0.485 0.100 -0.900 0.747 0.323 -0.342 -0.205 0.128 0.280 0.000 -1.163 0.421 0.197 0.165 -0.317 -0.105 -0.397 0.103 -0.507 0.549 0.472 -0.151 -1.151 0.335 -0.021 -0.322 -0.613 0.642 0.009 -0.221 0.201 -0.020 -0.677 0.333 -0.461 0.474 0.015 0.445 -0.297 -0.297 -0.356 0.291 -1.146 0.626 0.016 0.601 -0.948 -0.069 -0.620 0.270 -0.620 0.578 0.120 0.025 -0.577 0.293 0.207 0.246 -1.283 0.321 0.200 -0.262 0.165 -0.159 -0.603 0.673 -1.216 0.397 0.638 -0.615 -0.146 -0.173 -0.016 -0.016 -0.306 0.279 0.421 -0.181 -0.085 -0.258 -0.041 0.152 -0.848 0.445 0.531 -0.238 -0.346 -0.120 0.183 0.024 -0.976 0.421 0.238 -0.039 0.082 -0.343 -0.315 0.241 -0.281 0.253 0.527 -0.970 -0.020 0.087 0.458 -0.359 -1.051 0.448 0.707 0.148 -0.892 -0.472 -0.327 -0.484 -0.119 0.648 0.426 -0.093 -0.356 -0.093 0.475 0.288 -1.400 0.015 0.452 -0.375 0.165 -0.434 -0.459 0.504 -0.611 0.263 0.585 -0.763 -0.284 0.123 -0.140 0.287 -1.332 0.561 0.499 -0.183 -0.342 -0.124 -0.707 0.074 -0.007 0.422 0.609 -0.278 -0.931 0.170 0.075 -0.079 -0.596 0.421 0.299 0.005 -0.098 -0.265 -0.748 0.336 -0.294 0.408 0.644 -0.508 -0.563 0.080 0.044 -0.068 -0.964 0.587 0.429 0.235 -0.540 -0.341 -0.715 0.408 -0.347 0.353 0.289 -0.120 -0.409 0.144 0.310 0.093 -1.141 0.310 0.383 0.106 -0.254 -0.357 -1.087 0.258 -0.280 0.594 0.541 -0.237 -0.459 -0.044 0.841 -0.286 -1.731 0.122 0.623 -0.039 -0.361 -0.498 -0.954 0.438 -0.585 0.548 0.521 -0.330 -0.472 0.068 0.290 -0.187 -0.441 0.217 0.238 0.119 -0.023 -0.415 -0.085 -0.125 -0.340 0.433 0.633 -0.738 -0.578 0.239 0.374 -0.282 -0.904 0.430 0.311 0.270 -0.418 -0.313 -0.289 -0.248 -0.120 0.505 0.282 -0.442 -0.506 0.427 0.415 0.454 -1.605 -0.047 0.254 -0.363 0.190 -0.168 -0.284 0.047 -1.238 0.784 0.676 -0.392 -0.314 -0.258 -0.017 0.680 -1.017 -0.127 0.521 0.085 -0.202 -0.656 -0.995 0.399 -0.266 0.430 0.825 -0.666 -0.712 -0.017 0.265 -0.243 -0.449 0.288 -0.031 -0.176 0.166 0.021 -0.217 0.127 -0.947 0.613 -0.183 0.102 -0.041 0.102 -0.425 0.592 -0.888 0.272 0.224 0.616 -0.787 -0.475 -0.960 0.865 -0.601 0.008 0.214 -0.097 -0.179 0.031 -0.251 0.354 -0.543 0.257 0.523 -0.078 -0.168 -0.464 -0.246 0.598 -0.487 -0.105 0.000 -0.322 0.536 -0.415 0.179 -0.143 0.179 -0.268 -0.010 0.415 -0.095 -0.439 -0.496 0.504 0.018 -0.216 0.736 -0.279 -1.121 0.070 -0.059 -0.682 0.326 0.218 0.100 0.238 -0.340 -0.060 -0.313 0.102 -0.383 0.438 0.218 -0.503 -0.280 0.386 -0.233 -0.477 0.333 0.228 0.525 -0.090 -0.722 0.022 -0.616 -0.136 0.326 0.244 0.016 -0.355 -0.743 0.686 0.000 -0.322 -0.659 0.648 0.191 0.040 0.011 -0.282 -0.115 0.247 -0.601 0.300 0.588 -0.634 -0.090 -0.132 0.469 -0.037 -0.963 0.174 0.401 0.111 -0.218 -0.434 -0.550 0.549 -0.483 0.187 0.636 -0.293 -0.906 0.132 -0.126 -0.284 -0.190 0.471 -0.175 0.460 0.003 -0.441 -0.484 0.303 -0.495 0.425 0.570 -0.509 -0.288 -0.010 0.031 -0.268 -0.951 0.705 0.518 -0.026 -0.434 -0.241 -0.548 0.032 -0.449 0.643 0.640 -0.468 -0.345 -0.102 0.109 -0.020 -1.034 0.533 0.183 0.052 -0.036 -0.230 -0.661 0.451 -0.527 0.385 0.186 -0.415 -0.366 0.418 0.217 -0.242 -0.921 0.550 0.508 0.110 -0.291 -0.553 -0.495 0.196 -0.173 0.331 0.607 -0.480 -0.885 0.285 -0.015 -0.051 -0.597 0.468 0.519 0.023 -0.294 -0.444 -0.008 0.037 -0.487 0.340 0.742 -0.703 -0.691 0.130 0.209 -0.599 -0.875 0.712 0.735 -0.032 -0.719 -0.416 -0.060 -0.117 -0.275 0.370 0.369 -0.547 -0.568 0.432 0.065 0.206 -1.189 0.445 0.575 -0.250 -0.212 -0.312 -0.636 0.090 -0.636 0.722 0.428 -0.188 -0.428 0.048 0.291 0.081 -0.860 0.224 0.352 0.446 -0.740 -0.390 -0.828 0.411 -0.565 0.517 0.493 -0.084 -1.127 0.253 -0.143 -0.332 -0.222 0.529 -0.065 0.486 -0.121 -0.466 -0.288 0.340 -0.696 0.376 -0.034 -0.052 0.160 -0.087 -0.203 0.008 -0.888 0.665 -0.320 1.022 -1.012 -0.573 -1.101 0.405 -0.060 0.322 0.247 -0.216 -0.216 0.127 -0.131 0.126 -0.766 0.494 0.239 0.397 -0.311 -0.520 -0.888 0.563 -0.546 0.376 0.360 -0.074 -0.249 -0.112 0.271 -0.051 -0.610 0.229 0.270 -0.156 0.253 -0.503 -1.083 0.529 -0.322 0.362 0.601 -0.345 -0.703 0.113 0.095 -0.487 -0.371 0.531 -0.025 0.047 0.431 -0.652 -0.256 0.308 -0.309 0.159 0.721 -0.897 -0.231 -0.054 0.210 -0.451 -0.995 0.687 0.667 0.042 -0.616 -0.452 -0.295 -0.417 -0.213 0.654 0.247 -0.569 -0.601 0.565 0.080 -0.401 -1.129 0.790 0.177 -0.103 0.316 -0.527 -0.424 0.319 -0.509 0.384 0.443 0.000 -0.893 0.141 0.121 0.220 -1.517 0.483 0.444 0.044 -0.471 -0.174 -1.295 0.493 -0.170 0.374 0.348 -0.088 -0.834 0.293 -0.177 0.009 -0.379 0.422 0.236 0.093 -0.115 -0.265 -0.403 0.280 -0.403 0.348 0.525 -0.256 -0.710 0.153 -0.060 0.063 -1.155 0.629 0.453 0.222 -1.077 -0.012 -0.525 0.143 -0.597 0.623 0.163 0.098 -0.639 0.225 0.155 -0.105 -1.402 0.658 0.232 -0.075 0.065 -0.268 -0.329 0.103 -0.170 0.311 . . . . . . . . . . . . . . . . 0.670 -0.418 -0.687 0.057 -0.015 0.011 -0.466 0.355 0.405 -0.134 0.049 -0.456 -0.084 -0.018 -0.163 0.234 . . . . . . . . . . . . . . . . 0.404 -0.774 -0.164 0.263 0.329 0.033 -1.256 0.381 0.446 -0.173 -0.006 -0.406 -0.574 0.072 -0.574 0.683 0.389 -0.559 -0.044 0.060 0.364 0.081 -1.051 0.229 0.528 0.020 -0.639 -0.150 -1.142 0.539 -0.023 0.150 0.664 -0.419 -0.899 0.178 0.108 -0.332 -0.546 0.529 -0.034 0.119 0.251 -0.421 -0.558 0.594 -0.748 0.282 0.221 -0.011 -0.404 0.120 -0.295 0.349 -1.010 0.500 0.319 0.541 -0.865 -0.418 -1.243 1.018 -0.287 -0.448 -0.067 -0.138 -0.459 0.495 -0.170 0.084 -0.700 0.522 0.420 -0.116 0.008 -0.447 -1.064 0.798 -0.823 0.284 . . . . . . . . . . . . . . . . 0.766 -0.737 -0.308 -0.164 0.319 -0.106 -0.338 0.046 0.252 -0.434 0.498 -0.607 -0.540 0.239 -0.318 0.411 0.634 -0.171 -0.573 -0.171 0.245 -0.569 -0.354 0.442 0.354 0.117 -0.155 -0.436 -0.360 -0.476 -0.083 0.640 -0.301 -0.649 -0.649 0.936 0.142 0.390 -0.858 0.049 0.359 -0.056 0.220 -0.759 -1.301 0.351 -0.109 0.476 0.502 -0.913 0.267 -0.235 0.193 -0.155 -0.708 0.430 0.433 0.070 -0.193 -0.464 -1.170 0.748 -1.018 0.468 0.447 -0.111 -0.669 0.114 0.137 -0.266 -0.435 0.411 0.225 -0.047 0.051 -0.272 -0.493 0.108 -0.533 0.605 0.471 -0.529 -0.529 0.295 0.026 0.026 -1.224 0.618 0.483 0.366 -0.763 -0.466 -0.890 0.229 -0.225 0.519 0.327 -0.543 -0.231 0.272 0.256 0.182 -1.844 0.478 0.489 -0.085 -0.093 -0.483 -0.779 0.347 -0.484 0.516 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.511 0.592 -0.519 -1.435 1.352 -1.055 -1.486 -0.716 -1.918 -2.339 1.682 -1.607 -8.293 -8.293 1.997 -8.293 -8.293 -8.293 -8.293 1.997 1.416 -2.539 -0.473 -1.185 1.051 -0.293 -2.271 -0.144 -0.754 -1.423 1.251 -0.614 -0.480 -0.104 -1.206 0.940 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.778 -0.726 -0.734 0.110 0.534 -0.290 -0.926 0.273 0.417 -0.396 -0.395 0.195 0.208 -0.535 -0.370 0.466 0.504 -0.404 -0.565 0.201 0.546 -0.225 -0.621 0.048 0.284 -0.347 0.019 -0.024 0.045 -0.525 -0.122 0.438 0.715 -1.046 -0.360 0.131 0.569 -0.393 -1.112 0.370 0.340 -0.416 -0.277 0.213 0.076 -0.765 -0.273 0.613 0.416 -0.768 -0.677 0.539 0.427 -0.200 -0.979 0.353 0.061 -0.264 -0.208 0.331 0.130 -0.635 -0.473 0.624 0.551 -0.458 -0.341 0.024 0.611 -0.301 -0.618 0.015 0.202 -0.161 -0.373 0.243 0.066 -0.399 0.154 0.114 0.305 -0.082 -0.692 0.264 0.430 0.001 -0.803 0.110 0.067 -0.003 -0.264 0.166 -0.120 -0.122 -0.010 0.223 0.367 -0.348 -0.088 -0.024 0.284 -0.076 -0.060 -0.194 0.184 0.075 -0.501 0.142 0.117 -0.468 0.247 0.009 0.076 -0.068 -0.198 0.164 0.121 0.152 -0.717 0.256 0.275 -0.154 -0.724 0.362 -0.185 -0.413 -0.002 0.455 0.649 -0.638 -0.254 -0.072 0.456 -0.439 -0.442 0.208 0.649 -0.423 -0.230 -0.262 0.059 -0.345 -0.088 0.299 0.291 -0.460 -0.051 0.117 0.493 -0.290 -0.529 0.115 0.378 -0.088 -0.150 -0.220 0.232 -0.412 -0.085 0.178 0.310 -0.906 0.217 0.090 0.300 -0.132 -0.494 0.197 0.373 -0.476 -0.053 0.031 0.293 -0.877 0.104 0.208 0.038 -0.240 -0.039 0.206 0.466 -0.298 -0.711 0.257 0.154 -0.274 -0.168 0.228 -0.230 -0.488 -0.087 0.578 0.556 -0.899 -0.566 0.399 0.498 -0.607 -1.069 0.541 0.183 -0.256 -0.518 0.410 0.535 -0.860 -0.258 0.219 0.251 -0.394 -0.541 0.445 0.562 -0.354 -0.802 0.224 0.587 -0.518 -0.338 0.013 -0.091 -0.166 -0.041 0.261 0.358 -0.812 -0.641 0.592 0.645 -0.556 -1.213 0.406 0.340 -0.362 -0.457 0.296 0.035 -0.774 0.075 0.420 0.318 -0.685 -0.376 0.445 0.350 -0.259 -0.791 0.392 0.091 -0.221 -0.329 0.357 -0.220 -0.543 -0.115 0.615 0.454 -0.339 -0.676 0.279 0.284 -0.060 -0.836 0.337 0.149 -0.102 -0.374 0.249 -0.026 -0.280 -0.244 0.433 0.228 0.006 -0.636 0.240 0.462 -0.146 -0.482 0.003 -0.157 0.184 -0.233 0.158 -0.035 -0.263 0.024 0.231 0.319 -0.842 -0.139 0.364 0.438 -0.121 -0.898 0.250 0.038 -0.222 -0.494 0.491 0.129 -0.730 -0.047 0.417 0.035 -0.522 -0.672 0.724 0.317 -0.158 -0.784 0.353 -0.164 0.008 -0.348 0.397 -0.307 -0.500 -0.234 0.708 0.595 -0.265 -0.601 -0.002 0.140 0.357 -0.572 -0.082 -0.063 0.237 -0.434 0.168 -0.341 -0.005 0.003 0.278 0.229 0.165 -0.817 0.188 -0.063 0.489 -0.831 0.107 -0.287 0.429 -0.254 -0.008 -0.364 0.373 -0.435 0.249 0.006 -0.333 -0.115 0.354 -0.290 0.600 -0.177 -0.356 -0.186 0.482 -0.525 0.041 -0.443 0.109 -0.006 0.251 0.233 -0.220 -0.274 0.188 -0.431 0.489 -0.728 0.323 0.057 0.041 -0.488 0.284 -0.630 -0.139 -0.208 0.660 0.393 -0.350 -0.373 0.176 -0.029 -0.123 0.283 -0.176 0.146 0.035 -0.043 -0.155 -0.689 0.475 -0.160 0.130 -0.099 0.133 -0.188 0.128 -0.117 -0.507 0.635 -0.286 -0.316 0.576 -0.204 -0.254 -0.440 0.090 0.133 0.141 0.057 -0.551 0.112 0.258 -0.465 0.083 0.472 -0.272 0.027 0.137 -0.106 -0.070 -0.356 -0.386 0.205 0.379 -0.173 0.269 -0.358 0.174 -0.127 -0.004 0.112 0.009 -0.286 0.035 -0.138 0.318 -0.632 -0.281 -0.059 0.652 0.466 -0.554 -0.840 0.463 0.195 -0.304 -1.112 0.662 -0.061 0.220 -0.737 0.352 0.321 -0.455 -0.304 0.277 0.151 -0.095 -0.688 0.414 0.137 -0.041 -0.816 0.444 -0.092 0.337 -0.718 0.251 -0.581 0.530 -0.340 0.134 0.481 -0.610 -0.603 0.368 0.412 -0.326 -1.093 0.488 0.166 -0.174 -0.598 0.412 0.010 -0.486 -0.202 0.495 0.242 -0.505 -0.509 0.495 0.070 -0.103 -1.179 0.658 -0.115 -0.081 -0.411 0.463 -0.539 -0.254 -0.159 0.658 0.649 -0.519 -0.618 0.114 0.517 -0.349 -0.983 0.353 0.441 -0.226 -0.267 -0.064 -0.136 -0.373 -0.306 0.594 0.317 -0.376 -0.443 0.320 0.550 -0.423 -0.469 0.094 0.376 -0.226 -0.085 -0.144 0.004 -0.363 -0.104 0.367 0.266 -1.006 0.343 0.045 0.378 -0.445 -0.696 0.431 0.444 -0.394 -0.125 -0.057 0.282 -0.727 -0.117 0.330 0.320 -0.723 -0.460 0.505 0.111 -0.307 -0.265 0.355 0.212 -0.252 -0.163 0.149 -0.076 -0.571 -0.222 0.605 0.426 -0.371 -0.224 0.040 0.390 -0.169 -0.343 0.016 -0.099 0.419 -0.392 -0.048 -0.248 -0.287 0.300 0.147 0.067 0.044 -0.516 0.290 0.449 -0.078 -0.521 -0.014 -0.486 0.612 -0.178 -0.195 -0.243 0.089 -0.106 0.216 0.031 -0.223 0.216 -0.059 -0.351 0.066 0.496 -0.397 -0.392 0.731 -0.426 -0.261 -0.377 -0.256 0.460 0.025 -0.023 -0.322 0.180 0.114 -0.018 -0.016 -0.327 0.295 -0.026 0.276 -0.517 0.148 -0.229 -0.174 0.053 0.290 0.526 -0.738 -0.105 0.043 0.485 -0.348 -0.318 0.019 0.220 -0.470 0.254 -0.119 -0.310 -0.347 0.150 0.375 0.196 -0.290 -0.133 0.170 0.236 -0.124 -0.056 -0.086 -0.084 -0.089 0.358 -0.261 -0.074 -0.362 0.203 0.164 0.204 -0.703 0.187 0.131 -0.025 0.262 -0.286 -0.004 0.153 -0.610 0.463 -0.227 -0.190 -0.839 0.267 0.444 0.199 -0.265 -0.115 0.133 0.398 -0.224 -0.473 0.145 0.134 -0.326 0.077 0.070 -0.402 -0.578 0.069 0.608 0.342 -0.483 -0.391 0.327 0.289 -0.550 -0.544 0.495 0.016 -0.070 -0.552 0.437 0.118 -0.665 -0.043 0.394 0.223 -0.320 -0.382 0.339 0.489 -0.308 -0.842 0.299 -0.042 -0.012 -0.292 0.287 -0.207 -0.048 -0.107 0.308 0.154 -0.660 -0.170 0.450 0.387 -0.432 -0.547 0.341 0.068 -0.211 -0.349 0.381 -0.262 -0.699 0.287 0.412 0.270 -0.472 -0.217 0.279 0.305 -0.412 -0.734 0.498 0.025 -0.223 -0.164 0.303 -0.423 -0.348 0.056 0.515 0.611 -0.568 -0.923 0.345 0.454 -0.261 -1.382 0.497 0.211 -0.202 -0.427 0.299 0.025 -0.594 -0.534 0.704 0.187 -0.481 -0.400 0.473 0.582 -0.472 -0.976 0.349 -0.037 -0.300 -0.407 0.544 0.297 -0.381 -0.158 0.147 0.359 -0.896 -0.392 0.504 0.328 -0.572 -1.365 0.752 0.349 -0.312 -0.330 0.170 0.348 -0.883 -0.337 0.479 0.012 -0.783 -0.760 0.864 0.337 -0.319 -1.187 0.581 0.021 -0.159 -0.484 0.459 0.037 -0.714 -0.492 0.725 0.486 -0.408 -0.620 0.257 0.439 -0.104 -1.064 0.306 0.134 -0.194 -0.489 0.396 -0.163 0.047 -0.065 0.160 0.187 -0.319 -0.555 0.464 0.062 0.187 -0.864 0.343 -0.115 -0.033 -0.379 0.412 -0.352 0.268 -0.399 0.326 -0.179 -0.695 -0.470 0.829 -0.154 0.293 -0.328 0.111 0.078 -0.094 -0.544 0.402 -0.510 0.186 -0.048 0.254 0.082 -0.471 -0.178 0.418 -0.195 0.026 -0.847 0.634 0.160 -0.184 -0.658 0.453 -0.515 -0.087 -0.065 0.489 0.489 -0.470 -0.615 0.289 0.487 -0.304 -0.756 0.259 0.220 -0.094 -0.370 0.170 -0.290 -0.298 0.100 0.376 0.079 -0.551 -0.077 0.393 0.383 -0.341 -0.664 0.351 -0.074 -0.192 -0.287 0.438 -0.093 -0.411 0.030 0.366 0.248 -0.727 -0.182 0.408 0.415 -0.276 -0.762 0.323 0.142 -0.083 -0.181 0.097 -0.177 -0.652 0.108 0.487 0.074 -0.219 -0.234 0.309 0.447 -0.288 -0.897 0.357 0.003 -0.244 -0.359 0.458 -0.448 -0.345 -0.092 0.624 0.405 -0.708 -0.771 0.564 0.441 -0.409 -1.399 0.595 0.102 -0.217 -0.463 0.423 0.032 -0.493 -0.296 0.539 0.079 -0.517 -0.140 0.419 0.303 -0.195 -1.148 0.528 0.045 -0.265 -0.475 0.503 -0.342 -0.285 -0.205 0.607 0.157 -0.608 -0.439 0.577 0.529 -0.550 -1.280 0.548 0.155 -0.365 -0.383 0.425 -0.199 -0.673 -0.093 0.646 0.219 -0.584 -0.371 0.481 0.205 -0.343 -1.217 0.704 -0.027 -0.273 -0.251 0.434 -0.382 -0.473 -0.340 0.784 Intron LUT 5 4 4 0 0.000 0.612 -0.653 -0.679 0.276 0.583 -0.567 -1.330 0.516 0.321 -0.544 -0.315 0.335 0.147 -0.692 -0.290 0.542 0.362 -0.600 -0.521 0.442 0.638 -0.475 -1.315 0.403 0.240 -0.629 -0.086 0.299 0.024 -0.745 -0.050 0.507 0.652 -1.112 -0.517 0.341 0.685 -0.753 -1.487 0.528 0.180 -0.841 -0.658 0.744 0.172 -0.804 -0.389 0.619 0.235 -0.834 -0.680 0.712 0.487 -0.367 -1.351 0.517 0.033 -0.200 -0.383 0.421 -0.008 -0.665 -0.334 0.662 0.550 -0.534 -0.519 0.198 0.604 -0.495 -1.023 0.355 0.137 -0.444 -0.346 0.463 0.070 -0.569 0.066 0.298 0.259 -0.302 -0.795 0.502 0.424 -0.219 -1.435 0.515 0.084 -0.434 -0.515 0.585 -0.293 -0.455 0.035 0.516 0.209 -0.791 -0.066 0.391 0.422 -0.521 -0.430 0.289 0.084 -0.489 -0.544 0.624 0.176 -0.980 0.128 0.345 0.172 -0.401 -0.155 0.285 0.272 -0.147 -1.017 0.480 0.391 -0.352 -0.945 0.471 -0.217 -0.467 -0.024 0.519 0.667 -0.626 -0.600 0.143 0.551 -0.730 -1.045 0.534 0.367 -0.516 -0.308 0.267 0.019 -0.395 -0.126 0.390 0.235 -0.453 -0.407 0.421 0.520 -0.627 -1.179 0.562 0.177 -0.104 -0.430 0.259 0.169 -0.671 -0.066 0.370 0.301 -0.860 -0.205 0.432 0.502 -0.587 -1.194 0.567 0.380 -0.677 -0.374 0.380 0.592 -1.198 -0.122 0.186 0.054 -0.462 -0.006 0.310 0.519 -0.337 -1.299 0.453 0.193 -0.200 -0.331 0.252 -0.188 -0.474 -0.137 0.578 0.335 -0.715 -0.617 0.563 0.457 -0.714 -1.589 0.753 0.189 -0.408 -0.673 0.565 0.427 -0.928 -0.193 0.328 0.286 -0.599 -0.576 0.536 0.591 -0.632 -1.211 0.502 0.542 -0.820 -0.414 0.296 -0.146 -0.435 0.100 0.361 0.257 -0.829 -0.760 0.724 0.631 -0.721 -1.601 0.599 0.298 -0.428 -0.531 0.417 -0.076 -0.812 -0.012 0.576 0.165 -0.637 -0.399 0.564 0.390 -0.405 -1.303 0.613 0.024 -0.179 -0.375 0.410 -0.270 -0.482 -0.083 0.595 0.388 -0.520 -0.770 0.493 0.446 -0.534 -1.227 0.604 0.065 -0.452 -0.139 0.395 -0.101 -0.384 -0.179 0.504 0.175 -0.247 -0.608 0.457 0.545 -0.429 -0.833 0.308 -0.065 -0.053 -0.210 0.282 -0.042 -0.579 0.106 0.360 0.436 -1.066 -0.448 0.523 0.508 -0.454 -1.297 0.527 -0.185 -0.804 -0.759 0.968 0.135 -1.008 -0.185 0.608 -0.043 -0.510 -0.615 0.744 0.379 -0.425 -1.177 0.597 -0.145 -0.025 -0.408 0.442 -0.269 -0.632 -0.211 0.732 0.634 -0.546 -0.719 0.209 0.415 0.037 -1.151 0.252 -0.113 -0.345 -0.041 0.396 -0.231 -0.428 0.117 0.401 0.311 -0.277 -0.780 0.435 -0.193 0.449 -1.270 0.428 -0.198 0.206 -0.613 0.401 -0.400 0.023 -0.277 0.486 0.108 -0.978 -0.183 0.617 0.040 0.163 -0.279 0.040 -0.322 0.263 -0.661 0.452 -0.277 -0.175 -0.265 0.542 0.210 -0.334 -0.301 0.308 -0.071 0.146 -1.077 0.553 0.144 -0.125 -0.546 0.371 -0.664 -0.412 -0.119 0.762 0.449 -0.433 -0.766 0.386 0.310 -0.253 -0.004 -0.114 0.037 -0.306 -0.051 0.263 -0.814 0.140 -0.026 0.429 -0.294 -0.138 -0.078 0.409 -0.024 -0.332 0.298 -0.010 -0.500 0.548 -0.540 0.193 -0.235 -0.188 -0.055 0.389 0.229 -0.796 -0.356 0.556 -0.183 -0.286 0.182 0.220 0.159 -0.376 -0.189 0.306 -0.040 -0.821 0.061 0.504 -0.163 0.091 -0.281 0.285 -0.078 -0.078 -0.146 0.266 -0.420 0.110 -0.257 0.419 -0.640 -0.282 -0.173 0.722 0.402 -0.376 -0.934 0.470 0.266 -0.487 -1.453 0.781 0.057 -0.079 -0.759 0.508 0.153 -0.583 -0.182 0.421 0.075 -0.300 -0.606 0.563 0.239 -0.197 -1.043 0.548 -0.006 -0.032 -0.674 0.485 -0.543 0.234 -0.187 0.332 0.462 -0.627 -0.917 0.531 0.511 -0.484 -1.264 0.529 0.098 -0.407 -0.712 0.647 -0.033 -0.693 -0.219 0.627 0.105 -0.411 -0.543 0.571 0.298 -0.266 -1.583 0.683 -0.038 -0.181 -0.465 0.505 -0.415 -0.328 -0.196 0.660 0.547 -0.629 -0.709 0.356 0.532 -0.586 -1.542 0.628 0.252 -0.545 -0.117 0.265 -0.158 -0.555 -0.323 0.700 0.363 -0.529 -0.637 0.463 0.653 -0.524 -1.276 0.399 0.196 -0.149 -0.219 0.128 -0.004 -0.526 -0.056 0.429 0.307 -0.883 -0.130 0.386 0.466 -0.653 -1.331 0.665 0.178 -0.834 -0.361 0.613 0.396 -1.014 -0.223 0.414 0.215 -0.770 -0.445 0.602 0.145 -0.529 -0.724 0.674 0.152 -0.217 -0.217 0.223 -0.168 -0.615 -0.116 0.618 0.339 -0.506 -0.464 0.385 0.518 -0.478 -0.896 0.393 0.025 -0.066 -0.325 0.297 -0.143 -0.642 0.272 0.318 0.058 -0.431 -0.691 0.676 0.283 -0.054 -1.104 0.438 -0.301 0.092 -0.152 0.290 -0.200 -0.433 -0.018 0.486 0.069 -0.338 -0.290 0.425 -0.223 -0.412 0.343 0.168 -0.343 0.187 -0.343 0.361 -0.338 -0.583 0.587 0.055 0.050 -0.496 0.130 0.216 0.165 -0.193 -0.750 0.495 0.109 0.060 -0.741 0.357 -0.253 -0.385 0.082 0.418 0.580 -0.695 -0.329 0.126 0.536 -0.491 -0.871 0.369 0.158 -0.528 0.019 0.236 -0.302 -0.450 0.140 0.439 0.219 -0.392 -0.480 0.440 0.433 -0.630 -0.687 0.468 -0.209 -0.274 0.027 0.366 -0.076 -0.586 0.143 0.358 0.234 -0.670 -0.230 0.425 0.424 -0.415 -0.532 0.283 0.090 -0.685 0.419 -0.034 0.112 -1.082 0.002 0.532 0.333 -0.237 -0.396 0.178 0.510 -0.242 -1.115 0.343 0.230 -0.163 -0.226 0.109 -0.409 -0.578 0.014 0.648 0.234 -0.522 -0.195 0.327 0.375 -0.691 -0.778 0.586 0.006 -0.245 -0.463 0.513 0.009 -0.851 -0.017 0.537 0.223 -0.470 -0.554 0.516 0.475 -0.576 -1.327 0.624 -0.044 -0.044 -0.265 0.297 -0.310 -0.463 0.078 0.498 0.163 -0.911 -0.230 0.581 0.445 -0.795 -0.679 0.524 0.051 -0.235 -0.672 0.572 -0.411 -0.956 0.302 0.585 0.162 -0.565 -0.147 0.381 0.261 -0.424 -1.129 0.677 0.058 -0.288 -0.239 0.370 -0.424 -0.302 0.020 0.515 0.549 -0.504 -0.985 0.408 0.421 -0.291 -1.782 0.635 0.090 -0.310 -0.479 0.497 -0.040 -0.693 -0.405 0.726 0.198 -0.758 -0.404 0.590 0.619 -0.592 -1.428 0.515 -0.143 -0.143 -0.379 0.506 0.056 -0.531 0.003 0.341 0.387 -0.994 -0.501 0.569 0.459 -0.712 -1.872 0.801 0.406 -0.556 -0.415 0.316 0.258 -0.926 -0.425 0.616 -0.174 -0.752 -0.809 0.963 0.336 -0.434 -1.479 0.713 -0.047 -0.091 -0.576 0.508 -0.021 -0.717 -0.443 0.741 0.394 -0.466 -0.714 0.436 0.446 -0.371 -1.475 0.589 0.048 -0.429 -0.434 0.569 -0.129 -0.252 0.037 0.286 0.106 -0.723 -0.667 0.756 0.059 0.110 -1.148 0.514 -0.118 -0.222 -0.575 0.632 -0.267 -0.354 -0.125 0.555 -0.271 -0.898 -0.717 1.019 0.142 -0.030 -0.688 0.375 -0.091 -0.379 -0.556 0.689 -0.407 -0.163 0.040 0.406 0.025 -0.572 -0.137 0.486 -0.014 -0.342 -1.107 0.813 0.220 -0.362 -0.637 0.499 -0.463 -0.239 0.027 0.494 0.415 -0.390 -0.796 0.409 0.593 -0.418 -1.560 0.490 0.109 -0.118 -0.417 0.323 -0.235 -0.414 0.061 0.440 -0.076 -0.709 0.124 0.433 0.497 -0.512 -1.346 0.579 -0.127 -0.215 -0.309 0.502 -0.151 -0.570 -0.011 0.519 0.243 -0.868 -0.350 0.569 0.616 -0.667 -1.134 0.467 0.180 -0.560 -0.033 0.277 0.006 -0.834 -0.053 0.557 -0.036 -0.311 -0.085 0.351 0.497 -0.338 -1.259 0.465 0.018 -0.180 -0.362 0.408 -0.444 -0.291 -0.142 0.624 0.228 -0.547 -0.746 0.630 0.407 -0.428 -1.677 0.695 0.053 -0.307 -0.518 0.541 -0.102 -0.568 -0.165 0.587 0.011 -0.678 -0.089 0.513 0.417 -0.510 -1.486 0.683 0.045 -0.456 -0.456 0.595 -0.353 -0.557 -0.072 0.665 0.153 -0.661 -0.621 0.683 0.618 -0.744 -1.690 0.640 0.040 -0.377 -0.496 0.578 -0.309 -0.738 -0.138 0.753 0.002 -0.481 -0.310 0.561 0.180 -0.380 -1.600 0.823 -0.116 -0.237 -0.363 0.537 -0.403 -0.482 -0.239 0.749 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 -0.278 -0.346 0.714 -0.417 -0.721 0.908 -0.381 -0.417 0.517 0.034 0.301 -1.677 0.387 -1.721 1.099 -2.021 0.112 1.131 -1.399 -1.473 -0.151 0.619 0.555 -3.262 1.993 -6.721 -6.721 -6.721 -6.721 -6.721 -6.721 1.993 -6.721 -6.721 1.993 -6.721 -1.262 -2.198 1.578 -1.364 -0.364 1.296 -1.077 -1.721 -1.767 -0.245 1.204 -0.814 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 -0.234 -0.288 0.471 -0.082 0.181 -0.181 -0.465 0.333 -0.741 0.566 0.141 -0.288 -0.034 -0.465 0.369 0.011 0.404 0.259 -1.082 0.011 -0.529 0.712 -0.288 -0.234 -4.989 -4.989 -4.989 1.966 1.966 -4.989 -4.989 -4.989 1.966 -4.989 -4.989 -4.989 TAG WMM 9 6 4 0 0.000 -0.275 -0.275 0.725 -0.527 0.439 0.035 -0.527 -0.112 -1.012 0.754 0.291 -0.749 -0.218 -0.112 0.169 0.126 0.782 -0.395 -0.919 -0.012 -1.749 0.964 0.035 -0.459 -4.919 -4.919 -4.919 1.964 1.964 -4.919 -4.919 -4.919 -4.919 -4.919 1.964 -4.919 TGA WMM 9 6 4 0 0.000 0.445 -0.600 0.030 -0.063 0.468 0.089 -0.197 -0.555 -0.555 0.693 0.146 -0.747 0.227 -0.697 0.352 -0.095 0.615 0.227 -0.800 -0.467 -1.162 0.937 -0.197 -0.385 -5.555 -5.555 -5.555 1.977 -5.555 -5.555 1.977 -5.555 1.977 -5.555 -5.555 -5.555 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam54.hmm0000644000175000017500000022756511424066010015014 0ustar moellermoellerzoeHMM mammal 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.858651 Inter Esngl 0.141349 Intron Eterm 0.158934 Intron Exon 0.841066 0.411326 0.391133 0.197542 0.571272 0.241102 0.187625 0.525130 0.300259 0.174611 0.556701 0.240795 0.202504 0.843360 0.156640 0.833719 0.166281 0.847442 0.152558 Einit 2 DEFINED 0 249 -9.618 -9.485 -9.363 -9.251 -9.147 -9.050 -8.959 -8.873 -8.792 -8.716 -8.643 -8.582 -8.524 -8.468 -8.414 -8.362 -8.312 -8.263 -8.216 -8.171 -8.127 -8.083 -8.041 -8.000 -7.960 -7.921 -7.883 -7.846 -7.810 -7.775 -7.740 -7.709 -7.677 -7.647 -7.617 -7.588 -7.559 -7.531 -7.503 -7.476 -7.450 -7.444 -7.438 -7.432 -7.426 -7.420 -7.414 -7.408 -7.402 -7.396 -7.391 -7.381 -7.372 -7.362 -7.353 -7.344 -7.335 -7.326 -7.317 -7.308 -7.299 -7.301 -7.304 -7.306 -7.309 -7.311 -7.314 -7.316 -7.319 -7.321 -7.324 -7.343 -7.362 -7.381 -7.401 -7.421 -7.442 -7.462 -7.483 -7.504 -7.526 -7.537 -7.549 -7.561 -7.573 -7.585 -7.597 -7.609 -7.621 -7.634 -7.646 -7.668 -7.690 -7.713 -7.736 -7.759 -7.783 -7.807 -7.831 -7.856 -7.881 -7.896 -7.910 -7.925 -7.940 -7.955 -7.971 -7.986 -8.002 -8.017 -8.033 -8.039 -8.045 -8.051 -8.057 -8.062 -8.068 -8.074 -8.080 -8.086 -8.092 -8.107 -8.121 -8.136 -8.151 -8.167 -8.182 -8.198 -8.213 -8.229 -8.245 -8.263 -8.280 -8.298 -8.316 -8.334 -8.352 -8.371 -8.390 -8.409 -8.428 -8.444 -8.460 -8.476 -8.492 -8.508 -8.525 -8.542 -8.559 -8.576 -8.594 -8.608 -8.622 -8.636 -8.651 -8.665 -8.680 -8.695 -8.710 -8.725 -8.740 -8.748 -8.755 -8.763 -8.770 -8.778 -8.785 -8.793 -8.801 -8.808 -8.816 -8.825 -8.833 -8.842 -8.851 -8.859 -8.868 -8.877 -8.886 -8.895 -8.904 -8.908 -8.913 -8.917 -8.922 -8.926 -8.931 -8.936 -8.940 -8.945 -8.949 -8.958 -8.967 -8.975 -8.984 -8.993 -9.002 -9.010 -9.019 -9.028 -9.037 -9.048 -9.059 -9.070 -9.081 -9.092 -9.103 -9.114 -9.126 -9.137 -9.149 -9.164 -9.179 -9.195 -9.211 -9.227 -9.243 -9.259 -9.275 -9.292 -9.309 -9.335 -9.361 -9.388 -9.416 -9.444 -9.473 -9.502 -9.532 -9.563 -9.594 -9.626 -9.658 -9.692 -9.726 -9.761 -9.797 -9.833 -9.871 -9.910 -9.949 -9.976 -10.003 -10.031 -10.059 -10.088 -10.117 -10.147 -10.178 -10.209 GEOMETRIC 250 -1 166 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.178 -10.094 -10.014 -9.939 -9.868 -9.799 -9.734 -9.672 -9.612 -9.555 -9.500 -9.450 -9.402 -9.355 -9.310 -9.266 -9.224 -9.182 -9.142 -9.103 -9.065 -9.026 -8.987 -8.950 -8.913 -8.878 -8.843 -8.809 -8.776 -8.744 -8.712 -8.680 -8.649 -8.619 -8.589 -8.560 -8.532 -8.504 -8.476 -8.449 -8.423 -8.413 -8.404 -8.394 -8.385 -8.376 -8.366 -8.357 -8.348 -8.339 -8.330 -8.311 -8.292 -8.274 -8.256 -8.238 -8.220 -8.202 -8.185 -8.168 -8.151 -8.136 -8.120 -8.105 -8.090 -8.076 -8.061 -8.047 -8.032 -8.018 -8.004 -8.002 -8.001 -7.999 -7.998 -7.996 -7.994 -7.993 -7.991 -7.990 -7.988 -7.969 -7.951 -7.932 -7.914 -7.896 -7.879 -7.861 -7.844 -7.827 -7.810 -7.802 -7.794 -7.786 -7.778 -7.770 -7.762 -7.755 -7.747 -7.739 -7.732 -7.734 -7.736 -7.738 -7.740 -7.742 -7.744 -7.746 -7.748 -7.750 -7.752 -7.745 -7.739 -7.733 -7.726 -7.720 -7.714 -7.708 -7.702 -7.695 -7.689 -7.694 -7.699 -7.704 -7.709 -7.714 -7.718 -7.723 -7.728 -7.733 -7.738 -7.748 -7.758 -7.767 -7.777 -7.787 -7.797 -7.807 -7.818 -7.828 -7.838 -7.849 -7.861 -7.873 -7.884 -7.896 -7.908 -7.920 -7.932 -7.944 -7.957 -7.979 -8.002 -8.025 -8.048 -8.071 -8.096 -8.120 -8.145 -8.170 -8.196 -8.216 -8.237 -8.258 -8.279 -8.300 -8.322 -8.344 -8.366 -8.389 -8.412 -8.421 -8.431 -8.440 -8.449 -8.458 -8.468 -8.477 -8.486 -8.496 -8.505 -8.515 -8.524 -8.533 -8.542 -8.551 -8.561 -8.570 -8.580 -8.589 -8.599 -8.605 -8.611 -8.617 -8.623 -8.629 -8.636 -8.642 -8.648 -8.654 -8.661 -8.678 -8.695 -8.713 -8.730 -8.748 -8.766 -8.785 -8.804 -8.822 -8.842 -8.868 -8.894 -8.921 -8.948 -8.976 -9.005 -9.034 -9.064 -9.094 -9.125 -9.149 -9.174 -9.200 -9.226 -9.252 -9.279 -9.306 -9.334 -9.362 -9.391 -9.407 -9.423 -9.439 -9.455 -9.472 -9.489 -9.505 -9.523 -9.540 -9.557 -9.568 -9.579 -9.589 -9.600 -9.611 -9.622 -9.633 -9.644 -9.656 GEOMETRIC 250 -1 216 Exon 2 DEFINED 0 249 -12.298 -12.050 -11.838 -11.654 -11.490 -11.343 -11.210 -11.088 -10.975 -10.871 -10.773 -10.620 -10.481 -10.354 -10.238 -10.130 -10.030 -9.936 -9.848 -9.765 -9.687 -9.576 -9.474 -9.378 -9.288 -9.204 -9.124 -9.048 -8.977 -8.908 -8.843 -8.771 -8.702 -8.637 -8.574 -8.514 -8.457 -8.401 -8.348 -8.296 -8.247 -8.191 -8.138 -8.087 -8.037 -7.990 -7.943 -7.898 -7.855 -7.813 -7.771 -7.736 -7.701 -7.667 -7.634 -7.602 -7.570 -7.539 -7.509 -7.479 -7.450 -7.429 -7.409 -7.389 -7.369 -7.350 -7.331 -7.312 -7.293 -7.275 -7.256 -7.242 -7.227 -7.212 -7.198 -7.184 -7.169 -7.155 -7.141 -7.128 -7.114 -7.107 -7.101 -7.094 -7.088 -7.082 -7.075 -7.069 -7.062 -7.056 -7.050 -7.050 -7.051 -7.051 -7.052 -7.052 -7.053 -7.053 -7.054 -7.054 -7.055 -7.058 -7.061 -7.064 -7.067 -7.070 -7.073 -7.076 -7.080 -7.083 -7.086 -7.096 -7.107 -7.117 -7.128 -7.139 -7.149 -7.160 -7.171 -7.182 -7.193 -7.206 -7.218 -7.231 -7.243 -7.256 -7.269 -7.282 -7.296 -7.309 -7.322 -7.338 -7.355 -7.371 -7.388 -7.404 -7.421 -7.439 -7.456 -7.474 -7.491 -7.513 -7.534 -7.556 -7.578 -7.600 -7.623 -7.646 -7.670 -7.694 -7.718 -7.738 -7.759 -7.779 -7.800 -7.821 -7.843 -7.865 -7.887 -7.910 -7.933 -7.957 -7.982 -8.008 -8.033 -8.060 -8.086 -8.114 -8.141 -8.170 -8.199 -8.225 -8.251 -8.278 -8.305 -8.333 -8.362 -8.391 -8.420 -8.451 -8.481 -8.507 -8.534 -8.561 -8.588 -8.616 -8.644 -8.674 -8.703 -8.734 -8.764 -8.795 -8.826 -8.857 -8.890 -8.923 -8.957 -8.991 -9.027 -9.063 -9.101 -9.138 -9.177 -9.216 -9.257 -9.299 -9.342 -9.387 -9.433 -9.480 -9.529 -9.562 -9.595 -9.628 -9.663 -9.699 -9.735 -9.772 -9.811 -9.850 -9.891 -9.926 -9.962 -9.999 -10.036 -10.075 -10.115 -10.156 -10.199 -10.242 -10.287 -10.314 -10.342 -10.370 -10.398 -10.427 -10.457 -10.487 -10.518 -10.550 -10.582 -10.609 -10.636 -10.664 -10.692 -10.721 -10.750 -10.780 -10.811 -10.842 GEOMETRIC 250 -1 125 Inter 1 GEOMETRIC 0 -1 1000 Intron 1 GEOMETRIC 0 -1 811 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 -0.240 -0.227 0.599 -0.350 0.029 0.633 -1.472 0.095 -0.444 0.042 0.627 -0.535 -1.104 0.285 0.490 -0.133 -0.892 0.069 0.757 -0.469 -0.129 0.573 -1.543 0.327 -0.826 0.190 0.502 -0.187 -1.411 0.268 0.686 -0.302 -0.231 -0.276 0.710 -0.544 -0.182 0.713 -1.815 0.257 -0.280 0.111 0.535 -0.626 -0.936 0.124 0.729 -0.454 -0.075 0.046 0.203 -0.207 -0.248 0.568 -2.030 0.517 -0.450 -0.025 0.473 -0.157 -1.008 0.345 0.197 0.120 I-36 LUT 3 2 4 0 0.000 -0.015 -0.064 0.496 -0.636 -0.070 0.689 -1.587 0.141 -0.288 0.243 0.409 -0.578 -0.746 0.084 0.778 -0.668 -1.039 0.100 0.757 -0.412 -0.160 0.557 -1.670 0.400 -0.645 0.126 0.637 -0.485 -1.483 0.349 0.656 -0.335 -0.338 0.086 0.592 -0.642 -0.068 0.614 -1.803 0.298 -0.462 0.101 0.512 -0.367 -0.973 0.221 0.659 -0.422 0.123 -0.202 0.191 -0.151 -0.381 0.677 -2.529 0.547 -0.412 0.075 0.482 -0.324 -1.000 0.184 0.383 0.084 I-35 LUT 3 2 4 0 0.000 -0.059 0.000 0.359 -0.400 0.161 0.601 -1.816 0.113 -0.260 0.171 0.412 -0.498 -1.063 0.290 0.478 -0.142 -0.767 0.006 0.776 -0.523 0.031 0.525 -1.864 0.339 -0.798 0.268 0.531 -0.366 -1.444 0.276 0.682 -0.290 -0.328 0.145 0.551 -0.661 -0.273 0.651 -1.642 0.358 -0.388 0.218 0.482 -0.564 -1.100 0.174 0.746 -0.458 -0.181 0.127 0.259 -0.270 -0.266 0.702 -2.294 0.419 -0.295 -0.102 0.479 -0.219 -0.958 0.413 0.161 0.050 I-34 LUT 3 2 4 0 0.000 -0.080 0.014 0.576 -0.854 0.233 0.409 -1.803 0.276 -0.335 0.080 0.599 -0.654 -1.127 0.111 0.476 0.099 -0.925 0.086 0.708 -0.361 -0.129 0.537 -1.692 0.406 -0.916 0.205 0.490 -0.130 -1.287 0.405 0.592 -0.397 -0.197 0.193 0.525 -0.873 -0.105 0.562 -1.590 0.336 -0.390 0.273 0.426 -0.546 -1.225 0.323 0.577 -0.271 0.154 0.111 0.224 -0.646 -0.152 0.612 -2.152 0.429 -0.219 -0.018 0.357 -0.197 -1.062 0.494 0.128 0.028 I-33 LUT 3 2 4 0 0.000 -0.011 -0.126 0.423 -0.415 -0.200 0.710 -1.438 0.169 -0.526 0.236 0.523 -0.534 -0.868 0.191 0.583 -0.299 -0.921 0.158 0.647 -0.340 -0.050 0.403 -1.519 0.447 -0.799 0.232 0.554 -0.353 -1.394 0.311 0.711 -0.431 -0.418 0.015 0.670 -0.623 -0.247 0.750 -1.851 0.261 -0.307 0.348 0.337 -0.609 -1.192 0.207 0.758 -0.480 0.028 -0.210 0.191 -0.036 -0.283 0.618 -2.510 0.554 -0.082 -0.066 0.320 -0.232 -0.872 0.464 -0.002 0.105 I-32 LUT 3 2 4 0 0.000 -0.416 0.069 0.561 -0.462 -0.073 0.652 -1.787 0.249 -0.241 0.251 0.349 -0.534 -0.984 0.239 0.415 -0.028 -0.841 0.200 0.673 -0.517 -0.116 0.490 -1.716 0.453 -0.533 0.188 0.441 -0.300 -1.365 0.373 0.594 -0.310 -0.627 0.174 0.628 -0.559 -0.218 0.641 -2.050 0.422 -0.355 0.285 0.311 -0.397 -1.100 0.186 0.651 -0.277 -0.051 0.156 0.210 -0.388 -0.184 0.609 -2.289 0.475 -0.076 -0.141 0.383 -0.252 -0.863 0.357 0.082 0.152 I-31 LUT 3 2 4 0 0.000 -0.226 -0.029 0.456 -0.335 -0.097 0.668 -1.803 0.250 -0.426 0.284 0.363 -0.411 -0.893 0.174 0.564 -0.227 -0.802 0.312 0.575 -0.524 -0.135 0.595 -1.801 0.370 -0.760 0.173 0.425 -0.090 -1.313 0.324 0.655 -0.376 -0.299 0.242 0.469 -0.688 -0.329 0.722 -1.802 0.342 -0.376 0.259 0.365 -0.425 -1.195 0.316 0.573 -0.268 0.400 -0.081 -0.162 -0.249 -0.147 0.567 -2.451 0.518 0.082 0.025 0.091 -0.219 -1.110 0.458 0.037 0.185 I-30 LUT 3 2 4 0 0.000 -0.228 0.048 0.314 -0.203 -0.113 0.674 -1.783 0.250 -0.379 0.284 0.376 -0.483 -0.777 0.114 0.557 -0.213 -1.217 0.328 0.625 -0.372 -0.096 0.523 -1.639 0.386 -1.010 0.257 0.467 -0.111 -1.349 0.375 0.691 -0.523 -0.406 0.411 0.461 -0.891 -0.378 0.728 -2.021 0.408 -0.428 0.435 0.250 -0.484 -0.977 0.320 0.463 -0.209 0.248 0.129 0.015 -0.497 0.115 0.436 -2.217 0.432 0.033 -0.080 0.155 -0.125 -0.583 0.406 -0.048 0.058 I-29 LUT 3 2 4 0 0.000 -0.243 0.264 0.182 -0.287 -0.097 0.569 -1.743 0.359 -0.288 0.438 0.163 -0.503 -0.939 0.274 0.494 -0.215 -0.818 0.303 0.474 -0.303 -0.144 0.523 -1.658 0.423 -0.830 0.350 0.121 0.104 -1.419 0.437 0.588 -0.379 -0.619 0.375 0.405 -0.459 -0.393 0.706 -1.774 0.395 -0.517 0.308 0.317 -0.290 -1.074 0.311 0.656 -0.495 0.502 -0.051 -0.078 -0.575 -0.051 0.521 -2.664 0.528 0.157 -0.168 0.187 -0.223 -0.947 0.520 -0.076 0.136 I-28 LUT 3 2 4 0 0.000 -0.255 0.458 0.150 -0.558 -0.163 0.697 -1.879 0.279 -0.540 0.540 0.151 -0.419 -0.910 0.274 0.485 -0.219 -1.008 0.327 0.416 -0.130 -0.150 0.563 -1.923 0.441 -1.027 0.557 0.027 0.027 -1.232 0.481 0.468 -0.330 -0.479 0.505 0.162 -0.427 -0.395 0.761 -2.129 0.396 -0.515 0.346 0.176 -0.153 -0.951 0.249 0.597 -0.356 0.289 0.213 -0.277 -0.333 -0.082 0.479 -2.630 0.585 0.206 0.070 -0.091 -0.220 -0.834 0.585 -0.108 0.016 I-27 LUT 3 2 4 0 0.000 -0.115 0.191 0.271 -0.457 -0.388 0.776 -1.915 0.332 -0.620 0.435 0.287 -0.363 -0.771 0.415 0.317 -0.260 -0.737 0.400 0.357 -0.322 -0.146 0.490 -2.204 0.561 -0.403 0.182 0.026 0.126 -1.307 0.480 0.543 -0.427 -0.690 0.589 0.150 -0.384 -0.506 0.756 -1.911 0.423 -0.395 0.544 -0.167 -0.167 -1.338 0.375 0.601 -0.338 0.480 -0.266 -0.219 -0.129 0.134 0.459 -2.902 0.480 0.252 -0.065 0.039 -0.276 -0.758 0.402 -0.110 0.216 I-26 LUT 3 2 4 0 0.000 -0.158 0.365 0.066 -0.380 -0.281 0.723 -2.044 0.361 -0.383 0.457 -0.030 -0.183 -0.599 0.368 0.326 -0.330 -1.008 0.527 0.143 -0.062 -0.285 0.585 -2.133 0.537 -0.709 0.163 0.182 0.182 -1.264 0.459 0.476 -0.289 -0.775 0.524 0.211 -0.287 -0.641 0.681 -2.274 0.631 -0.490 0.520 0.095 -0.347 -1.214 0.289 0.594 -0.254 0.507 -0.073 -0.272 -0.322 0.172 0.410 -3.049 0.510 0.403 -0.109 -0.239 -0.146 -0.841 0.512 -0.096 0.111 I-25 LUT 3 2 4 0 0.000 -0.359 0.487 -0.082 -0.194 -0.175 0.627 -1.753 0.349 -0.503 0.503 -0.113 -0.071 -0.857 0.269 0.430 -0.159 -0.786 0.441 0.306 -0.275 -0.328 0.597 -2.050 0.535 -0.886 0.545 0.178 -0.203 -1.500 0.520 0.440 -0.226 -0.903 0.677 0.133 -0.378 -0.580 0.688 -2.402 0.615 -0.894 0.532 0.023 0.000 -1.155 0.325 0.510 -0.194 0.553 -0.118 -0.412 -0.219 0.196 0.328 -2.958 0.556 0.603 -0.139 -0.375 -0.320 -0.645 0.355 -0.149 0.238 I-24 LUT 3 2 4 0 0.000 -0.278 0.494 -0.135 -0.224 -0.264 0.659 -2.057 0.430 -0.681 0.656 -0.071 -0.238 -0.621 0.402 0.282 -0.299 -0.996 0.535 0.170 -0.113 -0.306 0.461 -2.050 0.654 -0.510 0.195 0.033 0.176 -1.383 0.483 0.452 -0.233 -0.960 0.769 -0.008 -0.344 -0.802 0.713 -2.299 0.664 -0.630 0.513 -0.091 -0.018 -1.302 0.305 0.619 -0.280 0.680 0.166 -0.618 -0.679 0.184 0.335 -3.365 0.590 0.675 -0.228 -0.557 -0.200 -0.634 0.434 -0.234 0.207 I-23 LUT 3 2 4 0 0.000 -0.280 0.713 -0.637 -0.161 -0.165 0.634 -1.573 0.287 -0.759 0.640 -0.179 -0.048 -0.760 0.214 0.477 -0.222 -1.116 0.493 0.241 -0.075 -0.343 0.558 -2.238 0.611 -0.555 0.445 -0.389 0.257 -1.416 0.582 0.420 -0.339 -0.600 0.825 -0.137 -0.600 -0.885 0.683 -2.351 0.729 -0.679 0.637 -0.268 -0.014 -1.313 0.513 0.364 -0.178 0.652 0.109 -0.632 -0.505 0.088 0.407 -3.103 0.580 0.602 -0.052 -0.677 -0.165 -0.829 0.479 -0.168 0.206 I-22 LUT 3 2 4 0 0.000 -0.463 0.602 -0.363 -0.030 -0.300 0.683 -1.955 0.405 -0.661 0.820 -0.297 -0.342 -1.155 0.430 0.453 -0.260 -0.903 0.633 -0.040 -0.086 -0.487 0.578 -2.268 0.665 -0.836 0.534 -0.173 0.144 -1.419 0.509 0.420 -0.210 -1.015 0.969 -0.193 -0.571 -0.765 0.562 -2.121 0.770 -0.802 0.593 -0.319 0.158 -1.422 0.422 0.473 -0.153 0.676 0.000 -0.763 -0.300 0.289 0.217 -3.060 0.581 0.583 -0.026 -0.768 -0.100 -0.900 0.505 -0.209 0.239 I-21 LUT 3 2 4 0 0.000 -0.427 0.829 -0.540 -0.336 -0.308 0.671 -1.776 0.387 -0.462 0.651 -0.476 -0.023 -0.881 0.385 0.354 -0.196 -0.961 0.631 -0.062 -0.029 -0.299 0.471 -2.130 0.653 -0.625 0.476 -0.076 0.017 -1.500 0.515 0.335 -0.064 -1.277 1.015 -0.320 -0.386 -0.954 0.578 -2.007 0.801 -0.664 0.475 -0.201 0.149 -1.673 0.526 0.454 -0.190 0.682 -0.021 -0.939 -0.170 0.077 0.403 -3.101 0.591 0.685 -0.147 -0.871 -0.085 -0.964 0.554 -0.323 0.287 I-20 LUT 3 2 4 0 0.000 -0.622 0.707 -0.444 -0.025 -0.200 0.766 -1.892 0.212 -0.724 0.711 -0.420 0.013 -1.150 0.281 0.478 -0.086 -0.980 0.573 -0.127 0.124 -0.652 0.610 -2.164 0.691 -0.818 0.405 -0.221 0.323 -1.846 0.552 0.428 -0.136 -0.887 0.899 -0.233 -0.427 -0.786 0.745 -2.510 0.650 -1.111 0.464 0.091 0.128 -1.668 0.531 0.302 0.012 0.418 0.266 -0.688 -0.251 -0.160 0.415 -2.776 0.701 0.435 0.018 -0.738 0.051 -0.973 0.507 -0.284 0.319 I-19 LUT 3 2 4 0 0.000 -0.443 0.723 -0.572 -0.087 -0.337 0.728 -1.894 0.360 -0.859 0.764 -0.401 -0.011 -1.376 0.403 0.410 -0.054 -0.943 0.680 -0.050 -0.134 -0.505 0.596 -2.194 0.646 -0.984 0.659 -0.121 -0.006 -2.013 0.586 0.340 -0.022 -0.694 0.959 -0.483 -0.469 -0.946 0.760 -2.290 0.663 -0.764 0.580 -0.129 0.003 -1.730 0.292 0.650 -0.145 0.301 0.288 -0.955 0.045 -0.192 0.432 -2.859 0.712 0.178 0.065 -0.636 0.238 -1.372 0.475 -0.290 0.491 I-18 LUT 3 2 4 0 0.000 -0.442 0.510 -0.264 0.010 -0.322 0.765 -1.827 0.285 -0.672 0.705 -0.350 -0.061 -1.547 0.387 0.292 0.171 -1.241 0.727 -0.277 0.133 -0.485 0.575 -1.972 0.624 -1.306 0.524 0.027 0.187 -1.831 0.493 0.322 0.085 -1.470 1.139 -0.501 -0.455 -0.785 0.843 -2.456 0.530 -1.019 0.663 -0.190 0.066 -1.641 0.617 0.292 -0.118 -0.031 0.357 -0.944 0.288 -0.619 0.489 -2.965 0.862 -0.021 -0.026 -0.620 0.467 -1.607 0.522 -0.213 0.457 I-17 LUT 3 2 4 0 0.000 -0.566 0.710 -1.019 0.257 -0.559 0.901 -2.109 0.290 -1.000 0.827 -0.353 -0.084 -1.222 0.492 0.307 -0.108 -0.966 0.711 -0.410 0.135 -0.818 0.675 -2.060 0.675 -2.228 0.888 -0.005 -0.090 -2.203 0.565 0.293 0.109 -1.248 1.051 -0.482 -0.337 -1.429 0.837 -1.711 0.620 -0.857 0.530 -0.179 0.165 -2.168 0.579 0.417 -0.077 -0.366 0.406 -1.103 0.519 -1.069 0.630 -2.647 0.861 -0.449 0.246 -0.547 0.483 -1.622 0.644 -0.221 0.327 I-16 LUT 3 2 4 0 0.000 -0.368 0.578 -0.477 0.020 -0.666 0.780 -2.043 0.495 -1.136 0.639 -0.136 0.108 -1.507 0.522 0.117 0.173 -1.150 0.771 -0.771 0.329 -0.729 0.646 -1.953 0.654 -1.421 0.429 0.093 0.279 -2.278 0.668 0.175 0.106 -1.589 0.996 -0.473 -0.070 -0.962 0.849 -2.284 0.565 -1.176 0.647 0.018 -0.031 -2.058 0.471 0.407 0.067 -0.388 0.378 -2.295 0.793 -1.444 0.698 -3.133 0.923 -1.088 0.333 -0.519 0.653 -2.156 0.630 -0.349 0.528 I-15 LUT 3 2 4 0 0.000 -0.769 0.725 -0.566 0.117 -0.803 0.885 -2.040 0.419 -0.456 0.641 -0.391 -0.075 -1.622 0.478 0.262 0.115 -1.376 0.867 -0.643 0.202 -1.003 0.721 -2.201 0.709 -1.848 0.663 -0.082 0.256 -2.616 0.640 0.174 0.202 -1.235 0.861 -1.005 0.334 -1.010 0.811 -2.205 0.616 -1.173 0.567 -0.186 0.258 -2.149 0.654 0.222 0.049 -1.000 0.640 -1.087 0.556 -1.361 0.678 -3.096 0.922 -1.401 0.507 -0.788 0.697 -2.309 0.675 -0.469 0.565 I-14 LUT 3 2 4 0 0.000 -0.576 0.902 -1.576 0.171 -0.888 0.816 -2.007 0.537 -1.546 0.791 -0.472 0.272 -1.633 0.609 -0.184 0.347 -1.421 0.696 -1.053 0.608 -0.959 0.689 -2.018 0.702 -2.143 0.718 -0.050 0.217 -2.667 0.684 0.085 0.233 -0.883 0.657 -0.838 0.403 -1.379 0.929 -2.379 0.603 -1.369 0.667 -0.228 0.228 -2.311 0.596 0.155 0.231 -1.387 0.613 -1.579 0.810 -1.786 0.602 -3.019 1.049 -1.578 0.484 -0.697 0.722 -2.380 0.617 -0.435 0.617 I-13 LUT 3 2 4 0 0.000 -0.605 0.833 -1.605 0.302 -1.000 0.905 -2.607 0.549 -1.040 0.857 -0.509 0.000 -1.886 0.436 -0.123 0.545 -1.529 0.986 -1.424 0.379 -1.218 0.684 -2.124 0.794 -1.575 0.635 -0.459 0.469 -2.624 0.654 0.093 0.260 -1.108 1.008 -1.412 0.201 -1.628 0.950 -2.628 0.663 -1.516 0.566 -0.112 0.315 -2.174 0.666 0.250 0.004 -1.061 0.605 -2.597 0.876 -1.814 0.581 -3.182 1.077 -1.671 0.366 -0.694 0.831 -2.733 0.668 -0.483 0.628 I-12 LUT 3 2 4 0 0.000 -0.819 0.793 -1.819 0.503 -1.582 1.029 -2.405 0.523 -1.778 1.030 -0.678 0.059 -2.421 0.671 -0.145 0.397 -1.921 0.881 -3.050 0.827 -1.140 0.683 -2.325 0.800 -2.242 0.928 -0.657 0.324 -2.730 0.756 -0.078 0.278 -1.178 0.949 -1.841 0.432 -2.058 0.852 -2.236 0.802 -1.725 0.670 -0.414 0.439 -2.558 0.694 0.048 0.237 -0.868 0.687 -3.106 0.788 -2.076 0.591 -3.468 1.115 -1.900 0.405 -0.813 0.879 -2.232 0.701 -0.721 0.637 I-11 LUT 3 2 4 0 0.000 -0.807 0.958 -3.129 0.456 -1.349 0.711 -2.904 0.877 -1.874 0.541 -0.290 0.541 -2.618 0.736 -0.618 0.604 -1.209 0.660 -3.588 0.929 -1.530 0.601 -2.301 0.952 -2.380 0.637 -0.885 0.776 -3.220 0.606 -0.151 0.556 -1.492 0.447 -2.492 1.073 -1.952 0.706 -3.289 1.006 -2.267 0.501 -0.360 0.676 -2.884 0.570 0.122 0.369 -1.615 0.349 -3.937 1.223 -1.999 0.527 -3.262 1.141 -1.868 0.307 -0.833 0.947 -2.474 0.583 -0.523 0.701 I-10 LUT 3 2 4 0 0.000 -0.822 0.580 -4.629 0.925 -1.382 1.146 -3.342 0.383 -0.202 -0.202 -0.939 0.798 -1.816 0.703 -0.478 0.454 -1.618 0.940 -3.466 0.736 -1.442 0.690 -2.232 0.853 -2.934 0.750 -0.612 0.616 -3.089 0.707 -0.077 0.380 -1.209 0.906 -2.472 0.598 -1.754 0.842 -3.273 0.854 -1.807 0.453 -0.078 0.484 -2.569 0.807 -0.064 0.170 -1.403 0.775 -3.651 0.873 -2.198 0.624 -3.433 1.103 -1.747 0.208 -0.829 0.988 -2.799 0.696 -0.466 0.597 I-9 LUT 3 2 4 0 0.000 -0.092 0.567 -3.340 0.567 -2.073 0.796 -2.348 0.871 -1.322 0.485 -1.322 0.848 -2.927 0.764 -0.020 0.243 -1.259 0.880 -5.651 0.784 -1.312 0.672 -2.507 0.871 -1.892 0.674 -1.069 0.729 -2.667 0.677 0.039 0.283 -1.471 1.047 -2.609 0.496 -2.030 0.892 -2.374 0.771 -1.845 0.415 -0.538 0.765 -2.201 0.884 -0.136 0.038 -1.227 0.556 -5.870 1.060 -1.988 0.478 -3.539 1.182 -1.833 0.047 -1.084 1.147 -2.353 0.618 -0.384 0.588 I-8 LUT 3 2 4 0 0.000 -0.899 0.826 -2.015 0.529 -1.082 1.129 -2.700 0.247 -0.322 0.263 0.263 -0.322 -1.716 0.911 -0.295 0.000 -1.213 0.917 -5.213 0.726 -0.840 0.682 -2.093 0.680 -1.637 0.363 0.064 0.429 -2.445 0.810 0.025 0.065 -1.033 1.096 -3.033 0.324 -1.327 0.984 -2.596 0.545 -1.877 0.599 0.054 0.232 -1.834 0.902 0.032 -0.271 -0.869 0.807 -6.039 0.755 -1.657 0.732 -3.029 0.925 -1.767 0.513 -0.842 0.783 -2.492 0.868 -0.305 0.248 I-7 LUT 3 2 4 0 0.000 -0.913 1.038 -4.820 0.465 -1.251 1.108 -2.453 0.313 -0.222 0.515 -0.222 -0.222 -1.728 0.957 -0.513 0.079 -1.516 1.259 -6.217 0.315 -1.188 0.848 -2.784 0.692 -1.813 0.684 -0.377 0.421 -2.311 0.895 -0.305 0.176 -1.055 1.174 -3.470 0.230 -1.993 1.228 -4.508 0.446 -1.856 0.752 -0.467 0.396 -2.844 0.874 -0.020 0.059 -1.599 0.995 -6.299 0.734 -2.201 0.893 -3.796 0.890 -2.200 0.676 -0.942 0.735 -2.399 0.980 -1.051 0.438 I-6 LUT 3 2 4 0 0.000 -0.183 1.065 -3.183 -0.124 -1.750 1.379 -3.876 0.048 -0.807 0.193 -0.807 0.778 -2.815 1.106 -1.163 0.332 -1.591 1.085 -5.363 0.606 -1.462 1.164 -3.261 0.370 -2.532 0.789 -0.816 0.614 -2.877 1.117 -0.837 0.183 -1.322 0.794 -2.585 0.766 -2.531 1.401 -3.338 0.121 -1.150 0.771 -0.440 0.145 -2.762 1.138 -0.976 0.194 -1.248 0.666 -5.948 0.982 -2.522 1.087 -3.638 0.698 -1.827 0.440 -0.815 0.842 -2.611 0.985 -1.423 0.569 I-5 LUT 3 2 4 0 0.000 0.171 0.358 -3.687 0.599 -1.744 1.081 -3.414 0.578 -0.585 1.000 0.000 -1.585 -3.007 0.122 -1.038 1.202 -1.306 1.089 -2.830 0.409 -1.590 0.996 -3.050 0.635 -1.115 0.692 -0.331 0.174 -3.044 0.450 -0.964 1.000 -0.627 0.571 -0.807 0.373 -2.732 0.909 -3.658 0.921 -1.606 0.628 -0.336 0.415 -3.111 0.098 -1.003 1.211 -0.830 0.773 -3.263 0.700 -2.844 1.139 -3.984 0.674 -1.225 0.461 -0.647 0.638 -3.184 0.570 -1.069 0.948 I-4 LUT 3 2 4 0 0.000 0.427 0.463 -0.895 -0.435 0.382 0.846 -1.722 -0.747 0.212 0.074 0.659 -2.248 -1.194 0.331 0.607 -0.356 0.294 0.808 -1.426 -0.619 0.380 0.604 -1.150 -0.456 -0.753 0.165 0.918 -1.338 -1.118 0.165 0.915 -0.907 -0.027 0.226 0.630 -1.728 0.050 0.916 -1.491 -0.469 0.168 0.225 0.431 -1.476 -1.190 0.488 0.628 -0.704 0.126 0.862 -2.838 -0.072 -0.240 0.949 -1.710 -0.125 -0.280 0.067 0.815 -1.438 -1.257 0.443 0.341 -0.065 I-3 LUT 3 2 4 0 0.000 -2.796 1.789 -5.966 -1.381 -2.967 1.624 -6.426 -0.360 -3.143 1.796 -4.728 -1.406 -2.818 1.490 -3.555 -0.052 -3.468 1.845 -8.860 -1.670 -3.105 1.579 -8.372 -0.162 -3.501 1.768 -5.308 -1.060 -4.087 1.664 -5.672 -0.412 -2.150 1.749 -4.735 -1.413 -3.280 1.640 -5.087 -0.415 -2.654 1.802 -5.157 -1.612 -3.524 1.626 -4.524 -0.354 -2.713 1.703 -7.414 -0.770 -3.860 1.557 -8.905 -0.019 -3.101 1.749 -6.949 -0.958 -3.420 1.518 -5.313 0.024 A LUT 3 2 4 0 0.000 1.951 -4.476 -4.476 -4.476 1.998 -9.355 -9.355 -9.355 0.678 -0.322 -0.322 -0.322 1.985 -6.180 -6.180 -6.180 1.966 -5.000 -5.000 -5.000 1.999 -9.917 -9.917 -9.917 1.000 -0.585 -0.585 -0.585 1.996 -8.208 -8.208 -8.208 1.959 -4.728 -4.728 -4.728 1.999 -9.589 -9.589 -9.589 1.621 -1.700 -1.700 -1.700 1.990 -6.778 -6.778 -6.778 1.913 -3.672 -3.672 -3.672 1.998 -8.920 -8.920 -8.920 1.720 -2.087 -2.087 -2.087 1.992 -7.142 -7.142 -7.142 G LUT 3 2 4 0 0.000 -6.504 -6.504 1.988 -6.504 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.488 -11.488 2.000 -11.488 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -2.858 -2.858 1.842 -2.858 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.267 -9.267 1.998 -9.267 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.198 -0.722 1.081 -1.299 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.316 -0.229 -0.007 0.431 -0.404 0.288 -1.287 0.691 -0.043 -0.197 -0.261 0.403 -1.403 -0.352 0.790 0.150 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.385 0.099 -0.183 -0.431 0.393 0.128 -0.818 0.038 -0.093 0.286 0.132 -0.419 -1.431 0.474 0.466 -0.219 0.164 0.261 -0.585 0.021 0.158 0.158 -1.252 0.432 -0.428 -0.092 0.555 -0.235 -1.125 0.402 0.685 -0.706 -0.044 -0.080 0.430 -0.439 0.047 0.440 -1.524 0.336 0.183 0.236 -0.383 -0.119 -0.822 -0.255 0.888 -0.424 -1.052 1.070 -2.555 0.320 -0.025 0.497 -1.268 0.251 -0.189 -0.051 0.420 -0.286 -1.463 0.720 -0.149 0.122 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.723 0.012 0.847 -0.769 -0.094 0.801 -1.042 -0.260 -0.613 0.597 0.226 -0.591 -1.603 0.681 0.507 -0.630 -0.999 -0.062 1.061 -1.134 -0.223 0.732 -1.125 0.035 -0.613 0.521 0.470 -0.925 -1.725 0.173 1.047 -0.987 -0.414 0.036 0.655 -0.622 -0.326 0.931 -1.551 -0.067 -0.263 0.644 0.118 -0.948 -1.342 0.126 1.053 -1.188 . 1.289 . 0.639 -0.407 0.805 -1.262 0.114 . 0.540 0.509 0.168 -2.207 0.921 -0.229 0.051 -0.888 0.251 0.869 -1.173 -0.075 0.718 -0.326 -0.718 -1.029 1.075 -0.530 -0.494 -2.465 0.938 0.423 -0.831 -1.410 0.138 1.087 -1.324 -0.150 0.642 -0.831 -0.034 -0.737 0.658 0.439 -1.098 -2.130 0.071 1.254 -1.573 -1.152 0.279 0.904 -1.104 -0.882 1.046 -0.438 -0.613 -1.043 0.834 0.371 -1.189 -2.700 0.155 1.322 -2.101 . 1.510 . 0.205 -0.371 0.763 -0.504 -0.279 . 0.675 0.625 -0.217 -2.776 1.155 -0.367 -0.231 -0.624 -0.098 1.034 -1.437 -0.135 0.776 -0.528 -0.548 -0.799 0.753 0.188 -0.737 -2.345 0.794 0.587 -0.817 -1.319 -0.145 1.238 -1.572 -0.237 0.712 -0.679 -0.171 -1.071 0.549 0.708 -1.227 -1.999 -0.151 1.340 -1.657 -0.751 -0.006 0.956 -1.091 -0.588 0.910 -0.778 -0.196 -0.807 0.949 -0.134 -0.769 -1.889 0.014 1.279 -1.774 . 1.464 . 0.311 -0.385 0.761 -0.778 -0.066 . 0.578 0.657 -0.105 -2.583 1.036 -0.433 0.060 -0.322 -0.015 0.704 -0.783 -0.188 0.887 -1.202 -0.255 -1.273 1.121 -0.703 -0.329 -1.984 0.939 0.162 -0.492 -1.179 0.130 0.985 -1.046 -0.153 0.686 -1.249 0.099 -0.566 0.531 0.417 -0.875 -1.674 0.198 1.040 -1.050 -0.586 0.192 0.729 -0.906 -0.456 1.024 -1.530 -0.166 -0.522 0.631 0.296 -0.925 -1.804 0.273 1.087 -1.393 . 1.391 . 0.461 -0.402 0.847 -1.395 0.089 . 0.477 0.719 -0.057 -2.196 1.040 -0.327 -0.108 -0.639 -0.078 0.920 -0.946 -0.014 0.745 -1.047 -0.236 -0.481 0.476 0.263 -0.530 -1.370 0.306 0.774 -0.585 -1.296 0.025 1.130 -1.370 -0.059 0.658 -1.139 0.012 -0.769 0.293 0.793 -1.133 -1.690 0.030 1.189 -1.360 -0.582 -0.057 0.818 -0.717 -0.326 0.876 -1.324 -0.047 -0.331 0.611 0.263 -1.067 -1.436 -0.111 1.217 -1.395 . 1.468 . 0.303 -0.299 0.754 -1.261 0.117 . 0.362 0.876 -0.186 -1.537 0.609 0.150 0.029 -0.858 0.181 0.941 -1.342 -0.178 0.814 -0.562 -0.556 -1.338 1.066 -0.293 -0.525 -2.691 0.938 0.461 -0.857 -1.341 0.017 1.147 -1.404 0.224 0.123 -0.419 -0.007 -0.699 0.407 0.707 -1.233 -2.123 -0.050 1.309 -1.613 -1.428 0.209 1.048 -1.305 -0.854 1.049 -0.283 -0.849 -0.930 0.784 0.433 -1.310 -2.556 0.084 1.350 -2.177 . 1.484 . 0.267 -0.448 0.805 -0.712 -0.138 . 0.716 0.642 -0.327 -2.650 1.178 -0.303 -0.382 -0.578 -0.238 1.040 -1.230 -0.336 0.816 -0.353 -0.590 -0.864 0.821 0.151 -0.803 -1.741 0.242 0.941 -0.741 -2.001 0.162 1.256 -2.045 -0.678 0.768 -0.046 -0.508 -1.409 0.807 0.686 -1.922 -2.412 -0.142 1.423 -2.155 -1.124 0.162 0.975 -1.130 -0.937 0.921 -0.128 -0.579 -0.765 0.832 0.229 -1.122 -2.236 -0.121 1.376 -1.872 . 1.642 . -0.186 -0.666 0.894 -0.384 -0.424 . 0.619 0.743 -0.340 -2.213 0.906 0.162 -0.338 -0.675 0.026 0.916 -1.093 0.054 0.790 -1.417 -0.219 -0.775 0.849 -0.313 -0.306 -1.807 0.619 0.587 -0.566 -1.085 -0.034 1.084 -1.210 0.188 0.337 -0.955 0.114 -0.307 0.041 0.785 -1.184 -1.673 -0.090 1.227 -1.299 -0.676 0.008 0.890 -0.956 -0.372 0.869 -1.159 -0.070 -0.339 0.497 0.346 -0.924 -1.783 0.031 1.218 -1.468 . 1.373 . 0.496 -0.287 0.780 -1.320 0.087 . 0.513 0.642 0.018 -1.820 0.862 0.164 -0.361 -0.519 0.080 0.712 -0.720 -0.022 0.707 -1.064 -0.144 -0.511 0.668 0.122 -0.688 -1.751 0.766 0.285 -0.350 -1.033 0.176 0.943 -1.123 -0.410 0.865 -1.352 0.049 -0.684 0.618 0.447 -1.058 -1.447 0.283 0.903 -0.870 -0.527 0.247 0.649 -0.861 -0.466 0.984 -1.445 -0.102 -0.326 0.694 0.015 -0.800 -1.503 0.464 0.838 -1.057 . 1.413 . 0.419 -0.393 0.906 -1.380 -0.029 . 0.473 0.867 -0.344 -2.069 0.969 -0.396 0.061 -0.796 0.118 0.973 -1.409 -0.312 0.911 -0.633 -0.579 -1.346 1.148 -0.499 -0.550 -2.761 1.018 0.315 -0.779 -1.549 0.237 1.059 -1.339 -0.236 0.718 -0.808 -0.098 -0.986 0.837 0.323 -1.125 -2.128 0.200 1.178 -1.477 -1.435 0.339 1.004 -1.474 -1.175 1.050 -0.126 -0.810 -1.326 1.016 0.157 -1.108 -2.681 0.261 1.255 -1.944 . 1.552 . 0.094 -0.657 0.950 -0.910 -0.149 . 0.799 0.598 -0.422 -2.947 1.275 -0.668 -0.284 -0.652 0.011 0.968 -1.323 -0.046 0.766 -0.752 -0.440 -0.735 0.691 0.278 -0.805 -2.269 0.726 0.632 -0.764 -1.399 -0.042 1.188 -1.433 -0.295 0.734 -0.767 -0.098 -1.045 0.609 0.646 -1.234 -1.829 0.007 1.216 -1.357 -0.807 0.283 0.789 -1.047 -0.402 0.884 -1.035 -0.136 -0.676 1.022 -0.680 -0.477 -1.688 0.409 0.983 -1.374 . 1.567 . 0.053 -0.629 0.896 -1.027 0.002 . 0.539 0.867 -0.468 -1.838 0.861 -0.112 -0.030 -0.697 0.376 0.638 -0.918 -0.317 1.068 -1.795 -0.300 -1.085 1.112 -0.525 -0.574 -2.256 0.992 0.081 -0.428 -1.079 0.117 0.959 -1.005 -0.358 0.782 -1.575 0.220 -0.780 0.724 0.302 -0.908 -1.537 0.274 1.018 -1.248 -0.840 0.429 0.629 -0.866 -0.523 1.034 -1.407 -0.186 -0.689 0.755 0.162 -0.802 -1.830 0.231 1.129 -1.481 . 1.456 . 0.329 -0.664 0.951 -1.570 0.137 . 0.625 0.570 -0.040 -2.264 0.969 -0.083 -0.167 -0.628 -0.302 0.936 -0.670 0.118 0.699 -1.280 -0.186 -0.714 0.797 -0.059 -0.528 -1.325 0.376 0.629 -0.402 -1.079 -0.284 1.183 -1.200 -0.255 0.787 -1.624 0.153 -0.634 0.351 0.655 -0.986 -1.558 -0.033 1.158 -1.150 -0.336 -0.018 0.718 -0.799 -0.330 0.829 -1.484 0.098 -0.348 0.655 0.113 -0.841 -1.246 0.031 1.128 -1.430 . 1.261 . 0.681 -0.425 0.719 -1.261 0.253 . 0.274 0.749 0.151 -2.000 0.571 -0.076 0.396 -1.022 0.367 0.782 -1.002 -0.541 1.018 -0.851 -0.448 -1.421 1.184 -0.741 -0.405 -2.928 1.088 0.227 -0.806 -1.380 0.028 1.119 -1.236 -0.173 0.622 -0.735 -0.039 -0.441 0.475 0.450 -0.980 -2.116 0.127 1.223 -1.546 -1.376 0.472 0.756 -0.891 -0.875 1.122 -0.850 -0.467 -0.987 0.775 0.417 -1.154 -2.308 0.241 1.221 -1.809 . 1.537 . 0.135 -0.667 1.012 -1.157 -0.143 . 0.793 0.556 -0.327 -2.782 1.266 -0.695 -0.265 -0.987 -0.036 1.073 -1.266 -0.374 0.897 -0.802 -0.335 -1.200 0.874 0.053 -0.525 -2.098 0.570 0.715 -0.643 -1.642 -0.053 1.263 -1.666 -0.616 0.922 -0.985 -0.078 -1.262 0.635 0.669 -1.186 -2.039 -0.056 1.312 -1.682 -0.914 0.169 0.864 -0.929 -0.637 0.957 -1.068 -0.092 -0.922 0.923 0.011 -0.814 -1.648 -0.014 1.235 -1.569 . 1.508 . 0.209 -0.619 0.892 -1.028 0.004 . 0.608 0.670 -0.176 -2.446 0.814 0.006 0.077 -0.535 0.136 0.718 -0.821 -0.270 0.865 -1.163 -0.147 -1.125 0.961 -0.547 -0.136 -2.078 0.972 -0.053 -0.256 -1.088 -0.013 1.035 -1.031 -0.265 0.655 -1.323 0.255 -0.147 0.049 0.604 -0.884 -1.506 0.131 1.018 -0.923 -0.717 0.309 0.642 -0.756 -0.640 0.982 -1.711 0.109 -0.437 0.558 0.325 -0.899 -1.778 0.259 1.063 -1.244 . 1.254 . 0.692 -0.597 0.871 -1.784 0.286 . 0.557 0.670 -0.094 -1.766 0.832 0.027 -0.141 frame2 LUT 5 4 4 0 0.000 -0.270 0.087 0.654 -0.902 0.395 0.425 -0.913 -0.302 0.245 0.116 0.312 -1.032 -0.709 -0.324 1.074 -1.047 -0.806 0.011 0.983 -1.171 0.548 0.335 -1.132 -0.286 -0.474 0.470 0.460 -0.945 -1.120 0.205 0.872 -0.845 0.048 0.157 0.526 -1.282 0.152 0.730 -1.128 -0.373 0.370 0.271 0.156 -1.370 -1.117 0.008 0.939 -0.697 -0.274 -0.250 0.840 -0.883 0.343 0.458 -0.841 -0.322 -0.051 -0.114 0.719 -1.104 -1.033 0.051 1.042 -1.262 -0.101 -0.094 0.827 -1.484 0.448 0.382 -0.843 -0.367 -0.024 0.412 0.295 -1.124 -0.754 0.331 0.629 -0.731 -0.956 0.233 0.915 -1.239 0.292 0.547 -0.931 -0.340 -0.993 0.702 0.482 -1.075 -1.447 0.347 0.894 -0.992 -0.390 -0.010 0.871 -1.271 0.275 0.318 -0.953 0.039 -0.004 0.487 0.321 -1.505 -0.985 0.131 0.759 -0.499 -0.527 0.359 0.630 -1.070 0.501 0.215 -1.481 0.092 -0.307 0.262 0.594 -1.050 -0.638 0.659 0.310 -0.892 -0.212 -0.146 0.872 -1.309 0.434 0.366 -0.812 -0.339 0.008 0.101 0.615 -1.359 -0.994 -0.549 1.307 -1.555 -1.063 -0.078 1.148 -1.484 0.442 0.391 -0.959 -0.293 -1.034 0.339 0.791 -0.953 -1.353 -0.063 1.162 -1.272 -0.274 -0.142 0.916 -1.400 0.282 0.409 -0.805 -0.176 -0.094 0.135 0.710 -1.606 -1.273 -0.022 1.104 -1.144 -0.593 0.144 0.743 -0.842 0.517 0.372 -1.446 -0.139 -0.204 0.039 0.657 -0.921 -0.711 0.413 0.616 -0.929 . . . . 0.309 0.360 -0.687 -0.224 . . . . -0.693 -0.693 1.193 -1.069 -0.910 -0.021 1.021 -1.142 0.315 0.432 -1.228 -0.028 -0.863 0.336 0.748 -0.975 -1.014 0.223 0.830 -0.835 . . . . 0.119 0.482 -0.813 -0.078 0.248 0.093 0.379 -1.167 -1.056 0.031 1.026 -1.116 -0.046 0.221 0.409 -0.894 0.247 0.478 -1.025 -0.106 -0.426 0.317 0.628 -1.104 -0.986 -0.279 1.118 -0.998 -0.388 -0.291 0.913 -0.899 0.276 0.323 -0.426 -0.332 0.190 -0.111 0.413 -0.735 -1.003 -0.740 1.350 -1.501 -1.273 0.088 1.078 -1.279 0.467 0.015 -0.606 -0.074 -1.448 0.410 0.825 -0.907 -1.123 -0.119 1.066 -0.924 -0.112 -0.237 0.848 -1.228 0.235 0.413 -0.493 -0.356 0.291 0.095 0.455 -1.568 -1.233 -0.386 1.267 -1.313 -0.569 -0.293 0.951 -0.794 0.279 0.263 -0.486 -0.197 -0.082 -0.132 0.630 -0.749 -1.265 -0.089 1.150 -1.238 -0.370 -0.285 1.054 -1.607 0.207 0.368 -0.370 -0.356 -0.141 0.235 0.472 -0.919 -1.327 -0.007 1.099 -1.110 -0.988 0.118 1.031 -1.448 0.626 -0.266 -0.249 -0.350 -0.897 0.370 0.799 -1.215 -1.275 0.002 1.122 -1.289 -0.233 -0.434 1.013 -1.352 0.228 0.272 -0.562 -0.083 -0.206 0.321 0.688 -1.874 -1.126 -0.146 1.085 -0.951 -0.478 0.219 0.780 -1.323 0.615 0.066 -1.250 0.002 -0.611 0.271 0.754 -1.147 -0.865 0.445 0.614 -0.839 -0.790 -0.268 1.078 -1.060 -0.015 0.260 -0.098 -0.187 -0.224 -0.024 0.701 -0.904 -1.741 -0.741 1.433 -1.312 -1.516 0.118 1.122 -1.363 0.262 0.027 -0.153 -0.180 -2.178 0.707 0.841 -1.492 -1.740 0.038 1.148 -1.129 -0.849 -0.119 1.148 -1.696 0.000 0.245 -0.158 -0.123 -0.348 0.263 0.814 -1.959 -1.314 -0.279 1.182 -0.988 -1.222 0.032 0.939 -0.663 0.471 0.159 -1.163 0.072 -0.775 0.130 0.826 -0.866 -0.718 0.411 0.499 -0.623 . . . . 0.296 0.313 -0.402 -0.372 . . . . -0.975 -0.783 1.325 -1.308 -1.348 -0.092 1.205 -1.460 0.414 0.150 -0.761 -0.048 -1.487 0.331 0.993 -1.343 -1.184 -0.128 1.094 -0.972 . . . . 0.129 0.466 -0.637 -0.182 0.068 0.002 0.507 -0.919 -1.103 -0.359 1.252 -1.423 -0.438 0.085 0.686 -0.756 0.145 0.450 -0.690 -0.139 -0.540 0.045 0.875 -1.163 -1.399 -0.549 1.356 -1.405 -0.181 0.060 0.610 -0.866 0.242 0.486 -0.641 -0.367 0.244 0.153 0.325 -1.148 -0.987 -0.356 1.160 -1.062 -1.166 0.108 1.037 -1.235 0.330 0.361 -0.870 -0.134 -1.203 0.525 0.680 -0.930 -1.368 0.280 0.860 -0.779 -0.225 0.282 0.678 -1.605 0.122 0.523 -0.522 -0.362 0.318 0.406 0.129 -1.580 -1.365 0.078 1.103 -1.295 -0.376 -0.024 0.684 -0.645 0.158 0.502 -0.504 -0.390 -0.145 0.126 0.559 -0.913 -1.319 0.173 1.039 -1.264 -0.546 0.154 0.901 -1.579 0.186 0.458 -0.463 -0.389 -0.112 0.450 0.338 -1.170 -1.207 0.175 0.925 -0.892 -1.128 0.287 0.949 -1.353 0.217 0.379 -0.535 -0.239 -1.390 0.729 0.589 -1.130 -1.614 0.215 0.978 -0.882 -0.686 0.142 0.890 -1.243 0.125 0.232 -0.506 0.044 -0.420 0.639 0.488 -1.772 -1.205 0.232 0.853 -0.774 -0.579 0.534 0.545 -1.240 0.514 0.212 -1.417 0.056 -0.637 0.461 0.627 -1.198 -0.917 0.679 0.281 -0.611 -0.548 -0.059 0.973 -1.350 0.276 0.301 -0.383 -0.341 0.017 0.296 0.437 -1.298 -1.189 -0.460 1.288 -1.351 -1.451 0.038 1.163 -1.442 0.323 0.274 -0.485 -0.276 -1.478 0.533 0.868 -1.440 -1.564 -0.071 1.184 -1.194 -0.456 0.217 0.829 -1.588 0.259 0.300 -0.577 -0.149 -0.271 0.538 0.445 -1.486 -1.167 -0.005 1.054 -1.055 -1.042 0.378 0.708 -0.782 0.624 0.285 -1.333 -0.246 -0.356 0.167 0.635 -0.883 -1.156 0.569 0.447 -0.505 . . . . 0.169 0.546 -0.594 -0.408 . . . . -1.007 -0.499 1.178 -0.910 -1.368 0.173 1.051 -1.275 0.260 0.426 -1.047 -0.036 -1.368 0.190 0.996 -1.068 -1.205 0.202 0.942 -1.014 . . . . 0.095 0.515 -0.497 -0.334 0.043 0.177 0.371 -0.871 -1.271 0.018 1.161 -1.573 -0.249 0.396 0.569 -1.476 0.159 0.540 -0.845 -0.197 -0.515 0.263 0.690 -1.038 -1.398 -0.319 1.298 -1.472 -0.014 -0.361 0.751 -0.868 0.339 0.367 -0.835 -0.176 0.498 -0.105 0.247 -1.089 -0.578 -0.259 0.998 -1.007 -0.923 0.077 1.013 -1.319 0.482 0.301 -1.351 -0.030 -0.733 0.092 0.852 -0.922 -1.032 0.035 0.992 -1.005 -0.105 -0.213 0.824 -1.194 0.323 0.471 -0.993 -0.215 0.354 0.006 0.389 -1.294 -0.573 -0.161 0.972 -1.085 -0.409 -0.187 0.720 -0.471 0.285 0.526 -1.014 -0.240 -0.043 -0.158 0.589 -0.669 -1.135 0.173 0.865 -0.746 -0.463 -0.463 1.137 -1.516 0.155 0.523 -0.708 -0.256 0.084 0.123 0.434 -1.000 -0.940 0.174 0.898 -1.037 -0.989 -0.055 1.097 -1.339 0.381 0.291 -0.559 -0.330 -0.954 0.161 0.867 -0.886 -1.367 0.075 1.097 -1.253 -0.181 -0.491 1.007 -1.334 0.046 0.428 -0.884 0.113 -0.089 0.244 0.651 -1.712 -1.000 0.102 0.951 -1.016 -0.650 0.292 0.828 -1.458 0.477 0.329 -1.477 -0.011 -0.394 0.261 0.655 -1.099 -0.925 0.558 0.395 -0.542 -0.444 -0.242 0.983 -1.176 0.323 0.397 -0.841 -0.193 0.025 0.000 0.601 -1.104 -1.292 -0.719 1.364 -1.283 -1.136 -0.115 1.210 -1.698 0.416 0.356 -1.057 -0.144 -1.418 0.313 1.003 -1.400 -1.347 -0.174 1.162 -1.048 -0.493 -0.235 1.093 -1.710 0.201 0.330 -1.075 0.162 -0.191 0.106 0.826 -1.858 -1.211 -0.335 1.122 -0.738 -0.785 0.215 0.788 -0.911 0.509 0.317 -1.779 0.056 -0.421 0.021 0.778 -0.935 -0.933 0.334 0.630 -0.581 . . . . 0.234 0.295 -0.655 -0.056 . . . . -0.891 -0.379 1.081 -0.794 -0.929 -0.180 1.063 -0.991 0.342 0.294 -1.268 0.126 -1.076 0.119 0.941 -0.943 -0.940 0.050 0.926 -0.880 . . . . 0.175 0.479 -0.942 -0.063 -0.007 0.102 0.449 -0.821 -1.103 -0.131 1.128 -1.198 -0.156 0.327 0.480 -1.139 -0.035 0.520 -1.046 0.145 -0.497 0.074 0.819 -1.076 -0.815 -0.311 1.172 -1.429 frame2 LUT 5 4 4 0 0.000 0.478 -0.168 -0.346 -0.105 0.274 -0.270 -0.618 0.390 0.473 -0.120 -0.157 -0.332 0.009 -0.004 -0.081 0.073 0.351 -0.378 -0.315 0.203 0.057 -0.044 -0.699 0.459 0.209 -0.182 -0.180 0.111 -0.443 -0.054 -0.058 0.423 0.687 -0.430 -0.437 -0.136 0.044 -0.101 -0.540 0.431 0.723 -0.012 -0.574 -0.544 -0.301 0.039 -0.157 0.338 0.535 -0.358 -0.701 0.209 0.020 0.159 -0.756 0.353 0.232 -0.126 0.094 -0.249 -0.269 0.280 -0.828 0.478 0.264 0.109 0.051 -0.547 0.031 0.395 -1.313 0.334 0.448 0.130 -0.239 -0.527 -0.774 0.603 -0.460 0.226 0.308 -0.127 -0.380 0.109 0.077 -0.058 -0.786 0.490 0.228 -0.198 -0.261 0.166 -0.457 -0.037 -0.126 0.465 -0.052 0.301 -0.127 -0.171 -0.326 0.051 -1.057 0.753 0.326 0.143 -0.279 -0.289 -1.267 0.387 0.131 0.241 0.164 0.246 -0.667 0.090 -0.024 0.124 -0.618 0.351 0.184 -0.157 -0.071 0.021 -0.790 0.379 -0.491 0.495 0.424 -0.351 0.301 -0.639 0.333 0.177 -0.691 -0.014 0.564 0.026 -0.146 -0.738 -0.223 0.217 -0.303 0.227 0.243 -0.222 0.166 -0.256 -0.009 0.078 -0.542 0.338 0.289 -0.144 0.070 -0.281 -0.800 0.342 -0.077 0.275 0.641 -0.321 -0.074 -0.536 -0.054 0.195 -0.680 0.342 0.573 0.067 -0.400 -0.500 -0.960 0.386 -0.220 0.401 0.279 -0.046 -0.031 -0.253 -0.152 0.570 -0.902 0.111 0.391 -0.179 0.141 -0.510 -0.573 0.494 -0.715 0.390 0.599 -0.366 -0.299 -0.158 0.324 0.204 -0.959 0.114 0.667 0.013 -0.365 -0.674 -0.907 0.209 -0.342 0.606 0.395 -0.083 -0.680 0.159 0.092 -0.353 -0.375 0.465 0.349 -0.072 -0.366 -0.001 -0.454 0.021 -0.143 0.433 0.609 -0.236 -0.509 -0.115 0.075 -0.199 -0.854 0.606 0.564 0.004 -0.419 -0.374 -0.529 0.142 -0.174 0.397 0.558 -0.192 -0.636 0.013 0.018 0.027 -0.505 0.337 0.399 -0.111 -0.176 -0.200 -0.313 0.386 -0.845 0.413 0.351 -0.279 0.106 -0.279 0.401 -0.127 -0.853 0.275 0.591 -0.152 -0.084 -0.619 -0.233 0.005 0.200 -0.005 0.184 -0.129 -0.074 -0.001 0.070 -0.128 -0.537 0.429 0.199 -0.314 0.028 0.040 -0.539 -0.177 0.209 0.346 0.459 -0.420 -0.001 -0.187 0.151 -0.138 -0.670 0.436 0.604 0.077 -0.364 -0.626 -0.366 -0.109 0.074 0.315 0.441 -0.141 -0.298 -0.115 0.077 0.096 -0.547 0.254 0.330 -0.223 0.045 -0.228 -0.613 0.221 -0.657 0.629 0.281 0.015 0.344 -0.982 -0.251 0.752 -1.118 0.021 0.400 0.155 0.056 -0.922 -0.958 0.869 -0.547 -0.037 0.236 -0.078 0.059 -0.264 0.108 0.189 -0.489 0.097 0.423 -0.046 0.000 -0.534 -0.569 0.192 -0.015 0.256 -0.075 -0.037 0.580 -0.781 -0.401 0.568 -0.770 0.231 0.312 0.119 0.085 -0.708 -0.992 0.646 0.040 -0.145 0.094 0.201 -0.042 -0.301 -0.244 0.644 -0.658 -0.060 0.309 -0.080 0.147 -0.498 -1.016 0.678 -0.456 0.234 0.399 -0.703 0.266 -0.209 0.083 0.108 -0.572 0.252 0.438 -0.086 0.009 -0.522 -0.392 -0.266 0.326 0.205 0.137 -0.382 0.106 0.080 -0.004 -0.766 -0.144 0.595 0.088 0.193 -0.124 -0.190 -0.421 -0.095 0.173 0.250 0.477 -0.412 0.098 -0.346 -0.102 -0.023 -0.300 0.347 0.720 0.070 -0.409 -0.863 -0.544 0.183 -0.149 0.353 -0.097 0.028 0.077 -0.013 -0.275 -0.348 -0.180 0.590 0.094 -0.141 0.037 -0.001 -0.758 0.206 -0.256 0.503 0.512 -0.334 0.094 -0.488 0.488 -0.244 -0.699 0.186 0.606 -0.065 -0.152 -0.685 -0.554 0.110 0.146 0.180 0.306 -0.200 -0.291 0.106 -0.118 -0.409 -0.431 0.663 -0.118 -0.046 0.088 0.066 -0.361 -0.125 -0.134 0.478 0.412 -0.070 0.089 -0.614 0.098 -0.313 -0.640 0.568 0.464 0.100 -0.253 -0.495 -0.644 0.361 0.093 0.012 0.268 -0.145 -0.253 0.074 -0.187 -0.135 -0.129 0.375 -0.028 -0.107 0.203 -0.091 -0.786 0.339 -0.472 0.521 0.644 -0.492 -0.324 -0.108 0.227 -0.216 -0.560 0.368 0.781 -0.110 -0.339 -0.824 -0.123 0.022 -0.212 0.267 0.260 -0.240 -0.127 0.056 -0.083 0.046 -0.658 0.475 0.517 -0.277 -0.161 -0.236 -0.601 0.065 -0.053 0.412 0.643 -0.395 -0.374 -0.141 0.003 -0.199 -0.548 0.529 0.805 -0.031 -0.597 -0.704 -0.488 0.099 -0.134 0.384 0.381 -0.114 -0.708 0.216 -0.195 0.295 -0.860 0.431 0.530 -0.225 -0.107 -0.373 -0.381 0.241 -0.986 0.628 0.454 -0.093 -0.070 -0.435 0.047 0.208 -0.965 0.378 0.295 0.412 -0.271 -0.705 -1.180 0.700 -0.466 0.276 0.240 -0.085 -0.289 0.082 0.085 -0.221 -0.429 0.421 0.279 0.162 -0.312 -0.214 -0.809 0.205 -0.115 0.436 -0.075 0.134 0.193 -0.304 -0.357 0.026 -0.644 0.643 -0.002 0.507 -0.114 -0.607 -1.185 0.657 -0.145 0.109 0.154 0.242 -0.575 0.048 -0.087 0.176 -0.755 0.418 0.088 0.220 -0.173 -0.176 -1.060 0.582 -0.720 0.503 0.486 -0.225 0.036 -0.477 0.124 0.317 -0.754 0.100 0.464 -0.010 0.146 -0.941 -0.807 0.501 -0.441 0.353 0.155 -0.146 -0.026 0.001 0.016 -0.169 -0.303 0.366 0.087 -0.108 0.283 -0.334 -0.550 0.165 -0.017 0.273 0.582 0.025 -0.322 -0.544 -0.194 0.339 -0.956 0.428 0.511 0.170 -0.200 -0.787 -0.885 0.773 -0.750 0.209 -0.153 0.301 -0.335 0.106 -0.247 0.441 -0.603 0.190 -0.070 -0.185 0.352 -0.165 -0.527 0.462 -0.774 0.426 0.534 0.029 -0.519 -0.264 0.251 0.197 -0.749 0.096 0.668 0.138 -0.513 -0.713 -0.585 0.438 -0.345 0.253 0.150 0.015 -0.546 0.257 -0.097 -0.084 -0.729 0.602 -0.208 -0.114 -0.014 0.288 -0.390 0.026 -0.362 0.527 0.528 0.068 -0.566 -0.262 -0.089 -0.111 -0.678 0.593 0.434 0.095 -0.412 -0.270 -0.708 0.332 -0.016 0.189 0.132 0.099 -0.667 0.267 -0.162 0.074 -0.443 0.398 -0.020 -0.202 0.126 0.074 -0.668 0.349 -0.462 0.455 . . . . . . . . . . . . . . . . 0.336 -0.241 -0.262 0.081 0.096 -0.353 -0.418 0.486 0.396 -0.276 -0.130 -0.083 -0.297 -0.225 -0.014 0.422 . . . . . . . . . . . . . . . . 0.410 -0.091 -0.590 0.094 0.172 -0.008 -0.543 0.254 0.585 -0.284 -0.140 -0.375 -0.182 0.195 -0.775 0.474 0.400 -0.114 0.176 -0.675 -0.120 0.465 -1.275 0.363 0.538 0.009 -0.071 -0.760 -1.556 0.897 -0.285 -0.033 0.174 -0.272 0.017 0.045 0.105 -0.016 -0.615 0.360 0.242 -0.305 0.067 -0.058 -0.672 0.310 -0.062 0.233 0.136 -0.207 0.533 -0.766 -0.372 0.346 -0.893 0.504 0.273 0.059 -0.040 -0.363 -1.382 0.782 0.141 -0.332 0.237 0.120 -0.266 -0.148 -0.190 0.405 -0.756 0.271 0.158 -0.074 0.082 -0.191 -1.192 0.876 -0.691 0.147 . . . . . . . . . . . . . . . . 0.259 -0.122 -0.010 -0.166 0.060 -0.116 -0.430 0.371 0.150 -0.141 0.190 -0.247 -0.589 0.073 0.283 0.093 0.409 -0.304 0.021 -0.239 0.081 -0.463 -0.702 0.680 0.402 0.006 -0.119 -0.407 -0.672 -0.014 0.113 0.379 0.408 0.029 -0.465 -0.107 -0.027 0.323 -0.845 0.276 0.283 -0.185 0.143 -0.322 -0.799 0.536 -0.495 0.340 0.456 -0.312 -0.119 -0.149 0.408 0.024 -0.929 0.178 0.643 -0.052 -0.163 -0.784 -0.535 0.272 0.050 0.093 0.257 -0.107 -0.372 0.143 0.079 -0.403 -0.552 0.590 0.369 -0.290 -0.146 -0.019 -0.577 0.309 -0.228 0.307 0.467 -0.323 0.055 -0.360 -0.003 -0.053 -0.974 0.613 0.477 0.163 -0.377 -0.477 -0.638 0.433 -0.179 0.169 0.611 -0.230 -0.714 0.015 -0.201 0.096 -0.924 0.617 0.474 -0.214 -0.060 -0.341 -0.611 0.470 -0.574 0.366 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.078 0.342 0.419 -1.555 0.549 0.777 -1.467 -1.116 0.504 0.636 -0.300 -2.213 -0.818 0.615 0.668 -1.680 -0.015 0.603 -0.075 -0.883 0.595 0.509 -1.238 -0.638 -0.120 0.757 -0.201 -0.943 -0.817 0.861 0.183 -1.058 0.158 0.489 -0.009 -1.039 0.419 0.744 -1.601 -0.601 0.771 0.642 -0.782 -2.725 -0.943 0.748 0.322 -0.862 -0.432 1.200 -0.914 -1.217 0.708 0.679 -2.000 -0.954 0.211 0.698 -0.105 -1.789 -0.636 0.814 0.005 -0.749 E-2 LUT 3 2 4 0 0.000 1.279 -1.377 -0.485 -1.079 1.501 -1.369 -2.197 -0.823 1.429 -0.831 -1.453 -1.398 -0.138 0.014 0.253 -0.170 1.360 -0.976 -0.963 -1.283 1.504 -1.522 -1.964 -0.838 1.271 -0.910 -0.688 -1.206 -0.598 -0.186 0.828 -0.547 1.294 -1.108 -0.740 -1.041 1.504 -1.500 -1.759 -0.959 1.518 -0.941 -1.857 -1.563 -0.657 -0.012 0.865 -0.855 0.868 -0.097 -1.664 -0.114 1.393 -0.965 -1.813 -0.794 1.176 -0.804 -0.764 -0.790 -0.298 0.170 0.222 -0.160 E-1 LUT 3 2 4 0 0.000 -2.615 -3.820 1.853 -2.714 -0.264 -1.486 1.304 -1.548 -0.869 -2.368 1.538 -1.498 -3.115 -3.215 1.829 -2.164 -2.342 -3.512 1.860 -3.562 -0.396 -2.170 1.193 -0.452 -1.008 -2.103 1.618 -2.314 -2.987 -2.876 1.851 -2.931 -1.940 -3.056 1.776 -2.368 -0.719 -1.623 1.177 -0.311 -0.826 -2.165 1.599 -2.445 -4.639 -3.639 1.874 -2.224 -1.590 -2.146 1.606 -1.327 -0.390 -2.033 1.276 -0.811 -1.161 -3.182 1.670 -1.947 -3.663 -2.547 1.718 -1.119 G LUT 3 2 4 0 0.000 -6.801 -6.801 1.990 -6.801 -5.679 -5.679 1.979 -5.679 -10.922 -10.922 1.999 -10.922 -6.234 -6.234 1.986 -6.234 -6.455 -6.455 1.988 -6.455 -5.066 -5.066 1.967 -5.066 -8.110 -8.110 1.996 -8.110 -6.134 -6.134 1.985 -6.134 -5.913 -5.913 1.982 -5.913 -4.409 -4.409 1.948 -4.409 -8.499 -8.499 1.997 -8.499 -4.977 -4.977 1.965 -4.977 -3.615 -3.615 1.909 -3.615 -3.907 -3.907 1.926 -3.907 -8.732 -8.732 1.997 -8.732 -4.728 -4.728 1.959 -4.728 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.070 -8.070 -8.070 1.996 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.883 -6.883 -6.883 1.991 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.551 -11.551 -11.551 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.647 -7.647 -7.647 1.995 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.668 -2.739 1.133 -3.877 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.131 -0.935 -0.391 -0.931 1.571 -2.376 -2.492 -0.601 1.701 -2.237 -1.343 -2.812 0.511 -1.489 0.280 0.006 I+3 LUT 3 2 4 0 0.000 -1.738 -1.827 1.692 -2.409 -0.438 0.053 0.323 -0.039 -2.112 -1.803 1.728 -2.565 -2.421 -0.823 1.542 -1.573 -5.658 -5.658 1.942 -3.073 -1.858 -1.273 1.142 0.142 -1.170 -2.755 1.705 -2.755 -4.524 -1.716 1.851 -4.524 -3.984 -3.797 1.935 -4.598 -1.160 -0.627 1.274 -1.042 -3.697 -4.019 1.930 -4.282 -6.145 -2.560 1.921 -5.145 -1.923 -4.508 1.867 -4.508 -0.644 -1.644 0.941 0.163 -3.285 -3.285 1.885 -3.285 -3.022 -2.022 1.785 -2.437 I+4 LUT 3 2 4 0 0.000 -0.899 -0.422 0.882 -0.193 0.075 0.169 -0.975 0.394 -0.863 -0.404 -0.120 0.827 -1.297 -0.866 1.202 -0.428 -1.490 -0.185 0.946 -0.256 0.168 0.089 -1.253 0.478 -1.256 -0.488 0.256 0.744 -1.310 -0.562 0.953 -0.023 -0.468 -0.916 1.180 -1.053 -0.839 0.461 -0.539 0.461 -0.762 -0.038 -0.568 0.817 -0.182 -0.713 1.024 -1.075 0.415 -0.115 0.415 -1.285 -0.924 1.237 -3.011 -0.011 -1.014 -0.767 0.137 0.862 -1.109 -0.939 0.979 0.061 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 1.024 -0.909 -0.560 -0.406 0.571 0.221 -1.889 0.110 0.206 -0.251 0.199 -0.220 0.241 -0.502 0.220 -0.079 0.078 -0.242 0.307 -0.216 0.124 0.496 -2.031 0.328 -0.289 -0.081 0.196 0.125 -0.904 0.373 0.282 -0.067 0.267 -0.300 0.349 -0.494 0.317 0.382 -1.581 0.159 0.103 -0.028 0.194 -0.319 -0.484 -0.204 0.631 -0.205 0.566 -0.325 -0.245 -0.189 0.043 0.617 -1.956 0.236 0.053 -0.294 0.239 -0.049 -0.074 -0.137 -0.332 0.429 0.649 -0.532 0.174 -0.708 0.881 -0.047 -1.624 -0.209 0.122 -0.166 0.372 -0.462 -0.272 -0.211 0.442 -0.074 -0.530 0.155 0.399 -0.193 0.266 0.345 -1.520 0.238 -0.407 0.231 0.056 0.046 -1.185 0.327 0.549 -0.247 -0.227 -0.428 0.626 -0.219 -0.076 0.726 -1.137 -0.086 -0.183 -0.228 0.525 -0.275 -0.959 -0.222 0.854 -0.285 0.205 -0.099 0.109 -0.260 0.204 0.466 -1.815 0.242 -0.193 0.092 0.138 -0.061 -0.757 -0.026 0.276 0.282 0.386 -0.508 0.299 -0.397 0.477 0.274 -1.449 0.046 0.263 -0.165 0.330 -0.620 -0.551 -0.135 0.627 -0.213 -0.361 -0.052 0.626 -0.488 0.214 0.197 -1.647 0.458 -0.094 0.006 0.299 -0.272 -0.734 0.007 0.689 -0.355 0.068 -0.439 0.636 -0.600 0.238 0.153 -1.271 0.373 0.126 -0.015 0.143 -0.296 -0.722 -0.133 0.717 -0.255 -0.051 -0.452 0.641 -0.426 0.198 0.351 -2.096 0.426 0.052 -0.106 0.264 -0.263 -0.660 0.196 -0.020 0.305 0.694 -0.723 -0.252 -0.095 0.829 0.003 -2.100 -0.017 0.177 -0.093 0.115 -0.236 0.276 -0.599 0.016 0.161 -0.568 0.256 0.323 -0.184 0.038 0.525 -1.941 0.349 -0.469 0.426 -0.064 -0.033 -1.062 0.383 0.344 -0.077 0.049 -0.357 0.478 -0.337 0.207 0.450 -1.926 0.283 -0.087 -0.126 0.332 -0.179 -0.517 -0.259 0.549 0.004 0.032 -0.017 -0.008 -0.007 0.138 0.286 -2.430 0.580 -0.186 0.007 0.098 0.065 -0.373 -0.265 -0.239 0.631 0.341 -0.312 0.300 -0.523 0.528 0.407 -2.030 -0.018 -0.037 -0.145 0.350 -0.241 -0.320 -0.031 0.331 -0.055 -0.944 0.453 0.480 -0.482 0.167 0.387 -1.659 0.324 -0.739 0.370 0.181 -0.037 -1.320 0.047 0.652 -0.007 -0.132 -0.387 0.718 -0.560 0.039 0.625 -1.826 0.200 -0.017 0.167 0.205 -0.440 -0.898 -0.153 0.794 -0.268 -0.167 -0.141 0.312 -0.058 -0.113 0.441 -2.205 0.586 -0.393 -0.045 0.329 0.018 -0.853 0.130 -0.103 0.507 0.183 -0.262 0.624 -1.030 0.145 0.617 -1.406 -0.025 -0.404 0.280 0.565 -0.861 -1.060 0.344 0.441 -0.163 -0.635 -0.058 0.831 -0.698 0.442 0.060 -1.086 0.174 -0.572 0.264 0.498 -0.484 -1.282 0.252 0.639 -0.251 -0.650 -0.417 1.103 -1.105 -0.379 0.831 -0.731 -0.235 -0.622 0.186 0.766 -0.968 -1.317 0.248 0.781 -0.531 -0.180 -0.128 0.531 -0.400 -0.010 0.644 -1.758 0.200 -0.455 -0.010 0.500 -0.213 -1.041 0.334 0.214 0.129 -0.076 0.016 0.430 -0.530 0.231 0.359 -1.043 0.082 0.053 -0.386 0.572 -0.492 -1.156 0.287 0.379 0.044 -1.084 0.173 0.799 -0.596 -0.293 0.533 -1.158 0.367 -1.029 0.544 0.518 -0.689 -1.489 0.249 0.646 -0.167 -0.333 -0.530 0.875 -0.559 -0.420 0.563 -0.774 0.252 -0.156 0.057 0.460 -0.544 -1.102 -0.174 0.926 -0.420 -0.141 -0.315 0.489 -0.176 -0.267 0.445 -1.665 0.577 -0.278 -0.134 0.432 -0.129 -0.945 0.140 0.072 0.409 0.190 -0.407 0.234 -0.106 0.360 0.228 -2.256 0.418 0.063 -0.128 0.435 -0.539 -0.273 -0.149 0.303 0.052 -0.610 0.056 0.717 -0.595 -0.044 0.510 -1.775 0.394 -0.499 -0.084 0.706 -0.480 -1.071 0.178 0.626 -0.237 -0.368 -0.210 0.834 -0.790 0.090 0.591 -1.825 0.197 -0.286 -0.100 0.693 -0.666 -0.608 0.142 0.570 -0.404 -0.012 -0.176 0.380 -0.284 -0.196 0.685 -2.404 0.412 -0.175 -0.169 0.451 -0.222 -0.783 0.139 0.221 0.204 0.139 -0.170 0.285 -0.337 0.193 0.292 -1.793 0.427 -0.020 -0.132 0.456 -0.455 -0.542 -0.093 0.433 0.037 -0.625 -0.125 0.788 -0.499 0.139 0.402 -1.876 0.384 -0.764 -0.049 0.626 -0.151 -0.970 0.205 0.433 -0.020 -0.088 -0.024 0.410 -0.421 0.055 0.542 -1.574 0.225 -0.136 0.237 0.194 -0.381 -0.800 -0.055 0.537 0.018 0.072 -0.249 0.299 -0.188 0.148 0.307 -1.665 0.421 -0.207 -0.331 0.598 -0.277 -0.121 -0.009 -0.115 0.218 0.094 -0.209 0.466 -0.543 0.330 0.184 -1.314 0.269 -0.141 -0.101 0.492 -0.406 -0.893 0.007 0.607 -0.099 -0.672 0.140 0.646 -0.503 0.216 0.304 -1.236 0.238 -0.368 0.097 0.529 -0.487 -1.586 0.421 0.634 -0.366 -0.720 -0.304 0.738 -0.128 -0.331 0.552 -0.273 -0.134 -0.456 0.009 0.714 -0.679 -1.545 -0.167 1.062 -0.557 0.052 0.038 0.220 -0.374 0.298 0.287 -1.973 0.373 -0.347 -0.203 0.621 -0.309 -0.957 0.241 0.235 0.172 0.059 -0.488 0.655 -0.576 0.435 0.179 -1.441 0.198 -0.110 -0.351 0.668 -0.515 -0.935 -0.193 0.550 0.186 -0.743 -0.250 0.868 -0.442 0.219 0.159 -1.227 0.370 -0.888 0.024 0.659 -0.212 -1.188 0.064 0.799 -0.366 -0.158 -0.350 0.682 -0.483 0.181 0.147 -0.966 0.319 0.024 0.106 0.036 -0.182 -0.981 -0.104 0.692 -0.078 -0.064 -0.272 0.485 -0.293 0.221 0.218 -1.977 0.503 -0.150 -0.418 0.631 -0.319 -0.945 0.058 0.186 0.381 0.096 -0.474 0.208 0.079 0.446 0.254 -1.851 0.224 0.135 0.080 0.148 -0.441 -0.407 -0.341 0.275 0.317 -0.896 0.192 0.631 -0.374 -0.167 0.557 -2.062 0.484 -0.804 0.179 0.518 -0.212 -1.348 0.479 0.345 -0.084 -0.399 -0.225 0.714 -0.422 0.106 0.327 -1.499 0.396 -0.420 0.055 0.488 -0.302 -1.027 -0.291 0.957 -0.415 -0.011 -0.164 0.304 -0.185 0.210 0.307 -2.061 0.450 -0.416 -0.088 0.449 -0.082 -0.895 0.118 0.106 0.379 0.577 -0.719 -0.060 -0.087 0.373 0.221 -1.895 0.345 0.127 -0.256 0.200 -0.117 -0.286 0.032 -0.190 0.357 -0.285 -0.332 0.660 -0.313 0.136 0.368 -2.017 0.447 -0.488 -0.275 0.296 0.302 -0.541 -0.016 0.287 0.144 0.115 -0.476 0.556 -0.459 0.025 0.383 -2.130 0.536 0.154 -0.135 0.232 -0.319 -0.236 -0.098 0.302 -0.024 -0.007 -0.500 -0.097 0.447 0.005 0.278 -2.420 0.676 -0.248 -0.403 0.081 0.426 -0.524 -0.473 -0.541 0.924 0.388 -0.652 0.574 -0.820 0.174 0.290 -1.467 0.365 -0.138 0.064 0.357 -0.387 -0.770 0.064 0.280 0.207 -0.665 -0.137 0.707 -0.273 0.394 0.159 -1.512 0.285 -0.635 0.237 0.244 -0.010 -1.202 0.159 0.617 -0.128 0.070 -0.878 0.807 -0.608 -0.435 0.478 -1.070 0.477 -0.580 0.211 0.573 -0.542 -1.072 -0.066 0.741 -0.156 -0.161 0.033 0.314 -0.254 -0.037 0.326 -1.825 0.575 -0.364 -0.029 0.147 0.183 -0.824 0.141 0.100 0.335 0.109 -0.153 0.298 -0.336 0.202 0.457 -1.845 0.262 -0.076 0.014 0.346 -0.376 -0.746 0.043 0.457 0.001 -0.605 -0.146 0.764 -0.432 -0.089 0.378 -1.974 0.590 -0.777 0.125 0.395 0.015 -1.183 -0.010 0.685 -0.062 -0.018 -0.567 0.700 -0.488 -0.054 0.400 -1.615 0.476 0.103 -0.129 0.315 -0.382 -0.927 -0.076 0.709 -0.167 0.096 -0.567 0.255 0.087 -0.101 0.395 -2.239 0.624 -0.406 -0.351 0.108 0.468 -0.868 -0.144 0.125 0.542 0.561 -0.589 -0.118 -0.091 0.716 -0.009 -2.198 0.197 -0.042 0.048 0.103 -0.118 -0.332 -0.480 -0.286 0.739 -0.268 -0.111 0.417 -0.138 -0.012 0.393 -2.242 0.569 -0.003 -0.190 0.210 -0.045 -0.989 0.207 0.318 0.132 0.171 -0.608 0.625 -0.564 0.122 0.328 -2.268 0.535 -0.278 -0.080 0.527 -0.343 -0.455 -0.195 0.217 0.304 0.237 -0.611 -0.126 0.322 -0.118 0.316 -2.693 0.747 -0.177 -0.371 0.130 0.320 -0.694 -0.608 -0.438 0.991 Intron LUT 5 4 4 0 0.000 1.048 -0.957 -0.610 -0.393 0.588 0.228 -2.001 0.105 0.212 -0.276 0.182 -0.182 0.255 -0.532 0.210 -0.061 0.072 -0.259 0.303 -0.185 0.128 0.499 -2.188 0.350 -0.257 -0.176 0.185 0.191 -0.935 0.406 0.268 -0.077 0.255 -0.303 0.351 -0.473 0.349 0.367 -1.703 0.175 0.092 -0.028 0.166 -0.267 -0.470 -0.233 0.653 -0.228 0.513 -0.286 -0.219 -0.164 0.035 0.636 -2.056 0.240 0.047 -0.299 0.249 -0.050 -0.054 -0.158 -0.339 0.433 0.671 -0.553 0.158 -0.712 0.910 -0.065 -1.668 -0.233 0.128 -0.209 0.384 -0.440 -0.258 -0.248 0.469 -0.094 -0.576 0.156 0.388 -0.143 0.294 0.324 -1.617 0.258 -0.411 0.186 -0.021 0.169 -1.212 0.333 0.553 -0.249 -0.283 -0.526 0.655 -0.137 -0.043 0.774 -1.505 -0.048 -0.209 -0.295 0.546 -0.218 -0.917 -0.293 0.877 -0.290 0.206 -0.100 0.104 -0.254 0.229 0.459 -1.917 0.249 -0.200 0.094 0.121 -0.038 -0.745 -0.063 0.289 0.292 0.394 -0.531 0.279 -0.359 0.503 0.266 -1.501 0.039 0.266 -0.186 0.327 -0.590 -0.550 -0.149 0.639 -0.221 -0.378 -0.043 0.614 -0.454 0.241 0.157 -1.782 0.498 -0.023 -0.125 0.256 -0.146 -0.709 -0.006 0.691 -0.363 0.052 -0.477 0.646 -0.558 0.274 0.124 -1.387 0.400 0.132 -0.017 0.110 -0.258 -0.705 -0.164 0.731 -0.261 -0.067 -0.478 0.669 -0.440 0.223 0.324 -2.231 0.453 0.064 -0.106 0.254 -0.263 -0.649 0.189 -0.024 0.309 0.635 -0.691 -0.229 -0.037 0.858 -0.008 -2.143 -0.049 0.191 -0.104 0.096 -0.219 0.294 -0.615 0.025 0.141 -0.616 0.275 0.309 -0.154 0.046 0.528 -2.051 0.361 -0.473 0.422 -0.127 0.034 -1.078 0.400 0.337 -0.083 0.024 -0.378 0.492 -0.310 0.210 0.468 -2.048 0.285 -0.100 -0.132 0.321 -0.143 -0.523 -0.271 0.554 0.010 -0.025 0.018 0.007 -0.001 0.169 0.254 -2.558 0.597 -0.169 0.032 0.051 0.073 -0.385 -0.288 -0.249 0.654 0.367 -0.333 0.294 -0.535 0.575 0.401 -2.189 -0.044 -0.041 -0.161 0.348 -0.216 -0.374 -0.045 0.357 -0.031 -0.994 0.458 0.482 -0.458 0.203 0.360 -1.765 0.347 -0.741 0.364 0.169 -0.015 -1.355 0.033 0.666 -0.001 -0.147 -0.416 0.731 -0.539 0.066 0.625 -2.017 0.219 -0.024 0.176 0.182 -0.411 -0.904 -0.182 0.819 -0.286 -0.184 -0.143 0.317 -0.046 -0.095 0.425 -2.322 0.606 -0.395 -0.039 0.321 0.025 -0.862 0.128 -0.106 0.514 0.203 -0.275 0.635 -1.088 0.164 0.615 -1.477 -0.017 -0.434 0.282 0.578 -0.859 -1.075 0.338 0.461 -0.177 -0.647 -0.084 0.843 -0.680 0.488 0.040 -1.260 0.204 -0.512 0.126 0.506 -0.346 -1.301 0.228 0.663 -0.253 -0.689 -0.504 1.142 -1.098 -0.254 0.830 -1.091 -0.130 -0.714 0.152 0.801 -0.898 -1.312 0.227 0.805 -0.557 -0.181 -0.158 0.540 -0.381 0.021 0.635 -1.855 0.209 -0.448 -0.037 0.503 -0.192 -1.041 0.322 0.232 0.124 -0.072 0.048 0.381 -0.490 0.346 0.328 -1.383 0.124 0.112 -0.534 0.574 -0.435 -1.172 0.304 0.369 0.043 -1.113 0.195 0.761 -0.519 -0.194 0.464 -1.669 0.518 -0.968 0.467 0.486 -0.502 -1.511 0.199 0.651 -0.104 -0.394 -0.628 0.885 -0.424 -0.312 0.578 -1.309 0.377 -0.140 0.017 0.431 -0.448 -1.060 -0.257 0.968 -0.460 -0.106 -0.372 0.473 -0.137 -0.232 0.398 -2.021 0.664 -0.236 -0.159 0.411 -0.111 -0.924 0.124 0.060 0.423 0.196 -0.429 0.209 -0.065 0.376 0.196 -2.407 0.453 0.077 -0.136 0.425 -0.529 -0.258 -0.145 0.310 0.028 -0.620 0.063 0.712 -0.584 -0.030 0.507 -1.946 0.422 -0.443 -0.203 0.709 -0.394 -1.070 0.167 0.637 -0.243 -0.402 -0.217 0.851 -0.788 0.126 0.595 -1.997 0.199 -0.309 -0.111 0.706 -0.653 -0.587 0.135 0.569 -0.411 -0.025 -0.173 0.386 -0.280 -0.181 0.675 -2.542 0.432 -0.157 -0.181 0.445 -0.218 -0.789 0.133 0.229 0.205 0.135 -0.161 0.275 -0.327 0.210 0.275 -1.903 0.450 -0.028 -0.152 0.459 -0.426 -0.554 -0.097 0.437 0.044 -0.664 -0.152 0.806 -0.473 0.169 0.384 -2.051 0.410 -0.760 -0.180 0.681 -0.115 -0.960 0.201 0.432 -0.018 -0.109 -0.009 0.393 -0.384 0.085 0.546 -1.765 0.246 -0.152 0.253 0.160 -0.338 -0.787 -0.086 0.550 0.020 0.065 -0.276 0.314 -0.177 0.176 0.288 -1.731 0.430 -0.211 -0.353 0.610 -0.274 -0.073 -0.035 -0.124 0.208 0.076 -0.200 0.467 -0.529 0.358 0.151 -1.393 0.296 -0.134 -0.161 0.501 -0.360 -0.886 -0.036 0.639 -0.110 -0.708 0.138 0.649 -0.475 0.282 0.242 -1.381 0.283 -0.255 -0.112 0.533 -0.341 -1.603 0.427 0.641 -0.382 -0.756 -0.407 0.712 0.022 -0.257 0.618 -0.593 -0.051 -0.424 -0.126 0.718 -0.528 -1.552 -0.300 1.120 -0.571 0.079 0.032 0.210 -0.388 0.365 0.228 -2.163 0.398 -0.333 -0.266 0.640 -0.293 -0.938 0.215 0.253 0.171 0.052 -0.502 0.655 -0.551 0.472 0.157 -1.557 0.212 -0.106 -0.406 0.674 -0.472 -0.957 -0.215 0.556 0.206 -0.775 -0.260 0.866 -0.400 0.266 0.121 -1.393 0.411 -0.846 -0.043 0.576 -0.026 -1.183 0.040 0.813 -0.370 -0.178 -0.391 0.685 -0.425 0.243 0.121 -1.175 0.363 0.041 0.072 0.015 -0.136 -0.985 -0.139 0.703 -0.061 -0.055 -0.283 0.478 -0.282 0.262 0.177 -2.137 0.529 -0.122 -0.447 0.621 -0.306 -0.954 0.056 0.192 0.381 0.056 -0.507 0.225 0.121 0.465 0.236 -1.934 0.239 0.152 0.086 0.127 -0.442 -0.412 -0.364 0.288 0.322 -0.943 0.182 0.648 -0.362 -0.152 0.551 -2.250 0.510 -0.751 0.117 0.496 -0.134 -1.364 0.490 0.331 -0.076 -0.435 -0.273 0.744 -0.400 0.132 0.317 -1.619 0.414 -0.430 0.060 0.473 -0.274 -1.013 -0.317 0.968 -0.423 -0.022 -0.180 0.315 -0.170 0.254 0.270 -2.131 0.457 -0.419 -0.093 0.452 -0.081 -0.902 0.114 0.113 0.379 0.602 -0.741 -0.092 -0.081 0.412 0.200 -1.949 0.335 0.131 -0.274 0.190 -0.093 -0.324 0.065 -0.214 0.370 -0.304 -0.349 0.679 -0.315 0.153 0.354 -2.104 0.461 -0.461 -0.336 0.272 0.349 -0.520 -0.017 0.270 0.148 0.100 -0.486 0.565 -0.444 0.027 0.379 -2.300 0.563 0.150 -0.137 0.212 -0.282 -0.201 -0.103 0.299 -0.046 -0.036 -0.501 -0.082 0.457 0.017 0.262 -2.526 0.692 -0.248 -0.415 0.064 0.447 -0.518 -0.495 -0.556 0.935 0.413 -0.703 0.594 -0.876 0.178 0.273 -1.515 0.390 -0.142 0.061 0.358 -0.380 -0.758 0.049 0.297 0.196 -0.691 -0.143 0.702 -0.238 0.440 0.127 -1.634 0.298 -0.621 0.185 0.183 0.108 -1.208 0.141 0.634 -0.132 0.085 -0.979 0.810 -0.559 -0.382 0.454 -1.460 0.584 -0.627 0.221 0.581 -0.534 -1.051 -0.115 0.777 -0.182 -0.173 0.043 0.317 -0.257 -0.008 0.298 -1.858 0.585 -0.372 -0.038 0.133 0.210 -0.821 0.123 0.111 0.339 0.109 -0.131 0.284 -0.338 0.214 0.467 -1.945 0.260 -0.076 0.007 0.341 -0.359 -0.750 0.063 0.458 -0.019 -0.624 -0.150 0.768 -0.420 -0.084 0.363 -2.086 0.618 -0.747 0.038 0.377 0.110 -1.198 -0.028 0.696 -0.053 -0.025 -0.620 0.713 -0.460 -0.034 0.390 -1.718 0.494 0.121 -0.135 0.291 -0.361 -0.933 -0.085 0.724 -0.182 0.094 -0.606 0.265 0.103 -0.098 0.374 -2.283 0.646 -0.400 -0.358 0.111 0.467 -0.865 -0.161 0.146 0.536 0.554 -0.598 -0.118 -0.075 0.749 -0.031 -2.272 0.181 -0.055 0.060 0.083 -0.097 -0.329 -0.496 -0.287 0.744 -0.278 -0.110 0.408 -0.117 0.006 0.389 -2.431 0.585 0.070 -0.296 0.168 0.017 -1.005 0.210 0.311 0.144 0.169 -0.640 0.642 -0.570 0.138 0.325 -2.419 0.547 -0.289 -0.076 0.530 -0.342 -0.449 -0.204 0.215 0.309 0.220 -0.632 -0.091 0.323 -0.092 0.285 -2.790 0.765 -0.159 -0.386 0.118 0.327 -0.708 -0.658 -0.448 1.015 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 0.049 0.142 0.727 -2.273 -0.510 0.639 -1.033 0.324 -0.343 0.469 0.469 -1.177 -1.728 0.732 -0.268 0.272 -0.830 0.222 0.970 -1.678 -0.063 0.292 -0.044 -0.237 -0.620 0.353 0.556 -0.731 -2.019 0.495 0.713 -0.505 -0.533 0.504 0.389 -0.781 -0.554 0.592 -0.021 -0.276 -0.334 0.451 0.469 -1.134 -1.282 0.468 0.718 -0.835 0.330 0.041 0.456 -1.544 -0.919 0.879 -1.195 0.257 -0.743 0.515 0.225 -0.313 -1.369 0.505 0.461 -0.291 N-11 LUT 3 2 4 0 0.000 -0.263 0.000 0.688 -0.848 0.000 0.874 -0.819 -0.737 -0.288 0.483 0.269 -0.790 -0.888 0.697 -0.209 -0.040 -0.967 0.159 0.966 -1.256 -0.415 0.619 -0.392 -0.070 -0.658 0.550 0.507 -1.056 -1.781 0.522 0.348 0.000 -0.524 0.415 0.415 -0.649 -0.121 0.496 -0.273 -0.247 -0.322 0.485 0.404 -1.068 -1.268 0.594 0.226 -0.143 -0.663 0.212 0.659 -0.663 -0.297 0.764 -1.104 0.033 -0.170 0.462 -0.134 -0.282 -0.492 0.462 -0.244 0.093 N-10 LUT 3 2 4 0 0.000 -0.159 -0.159 0.978 -2.066 -0.135 0.839 -0.855 -0.419 -0.085 0.601 0.172 -1.273 -0.807 0.652 -0.637 0.280 -0.697 -0.385 1.187 -1.555 -0.297 0.542 -0.218 -0.199 -0.954 0.505 0.724 -1.276 -1.535 0.587 0.444 -0.337 -0.322 0.278 0.701 -1.469 -0.391 0.609 -0.188 -0.261 0.058 0.421 0.104 -0.874 -1.248 0.121 0.895 -0.663 -0.778 -0.126 0.663 -0.126 -0.722 0.564 -0.722 0.389 -0.093 0.129 0.209 -0.300 -1.222 0.747 -0.222 0.051 N-9 LUT 3 2 4 0 0.000 -0.110 -0.451 0.772 -0.657 0.039 -0.183 0.139 -0.013 -0.209 -0.013 0.791 -1.271 -1.170 0.596 0.209 -0.170 -1.298 -0.220 1.233 -1.380 -0.318 0.294 0.153 -0.218 -0.891 0.382 0.882 -1.668 -1.551 0.366 0.722 -0.473 -0.623 0.348 0.799 -1.566 -0.397 0.451 0.281 -0.603 -0.356 0.481 0.206 -0.578 -0.839 -0.369 1.133 -1.080 -1.615 0.292 1.029 -1.293 -0.585 0.861 -0.743 -0.121 -0.614 0.415 0.601 -1.009 -1.102 0.358 0.121 0.220 N-8 LUT 3 2 4 0 0.000 -0.344 0.204 0.541 -0.722 -0.285 1.060 -1.170 -0.622 -0.530 0.624 0.506 -1.530 -1.263 0.874 -0.778 0.222 -1.426 0.381 0.949 -1.339 -0.378 0.635 -0.600 0.025 -1.354 0.579 0.596 -0.726 -1.412 0.670 0.333 -0.371 -0.312 0.273 0.609 -1.119 -0.772 0.684 -0.346 0.030 -0.029 0.467 -0.090 -0.519 -2.524 0.284 0.686 0.000 -1.000 0.415 0.663 -0.778 -0.766 1.000 -1.280 0.000 -0.314 0.625 -0.091 -0.484 -1.476 0.569 0.279 -0.083 N-7 LUT 3 2 4 0 0.000 -0.170 0.345 0.345 -0.807 -0.355 0.922 -0.663 -0.532 -0.198 0.493 0.160 -0.729 -0.644 0.678 0.057 -0.474 -0.907 -0.322 1.152 -1.170 -0.335 0.542 -0.079 -0.313 -1.123 0.824 0.529 -1.609 -0.911 0.376 0.674 -0.800 -0.208 0.137 0.711 -1.330 -0.500 0.873 -0.572 -0.343 -0.016 0.683 -0.080 -1.124 -1.301 0.506 0.476 -0.354 -1.087 -0.087 1.000 -0.766 -0.276 0.557 -0.817 0.183 -0.142 0.524 0.087 -0.752 -1.369 0.548 -0.369 0.461 N-6 LUT 3 2 4 0 0.000 -0.605 -0.190 1.020 -1.190 0.082 -0.087 0.135 -0.149 -0.463 0.193 0.682 -0.923 -1.524 0.936 -0.354 -0.064 -1.147 -0.330 1.306 -1.839 -0.156 -0.108 0.522 -0.438 -0.745 0.024 0.943 -1.108 -1.206 0.007 0.949 -0.665 -0.916 -0.538 1.301 -1.653 -0.375 0.420 0.237 -0.489 -0.315 0.128 0.792 -1.430 -1.459 -0.290 1.155 -0.759 -0.222 -0.637 1.100 -1.485 -0.403 0.500 -0.072 -0.188 -0.743 0.257 0.664 -0.682 -1.248 0.131 0.716 -0.248 N-5 LUT 3 2 4 0 0.000 -0.215 -0.022 0.885 -1.700 -0.212 0.750 -0.553 -0.372 -0.221 0.451 0.254 -0.781 -0.926 1.000 -0.078 -0.926 -1.329 0.182 1.130 -1.844 -0.446 0.509 -0.228 -0.016 -1.489 0.483 0.887 -1.332 -1.923 0.350 0.492 0.077 -0.346 -0.538 0.902 -0.609 -1.300 0.787 -0.196 -0.007 -0.187 0.502 0.087 -0.638 -0.984 0.257 0.415 -0.051 -0.652 0.447 0.348 -0.459 -0.411 0.830 -1.870 0.259 -0.563 0.501 0.148 -0.322 -1.441 0.922 -0.547 0.074 N-4 LUT 3 2 4 0 0.000 -0.115 -0.022 0.836 -1.700 0.319 0.904 -0.768 -1.768 -0.136 0.771 0.186 -2.021 0.253 1.089 -1.970 -1.233 -1.611 0.710 0.891 -2.459 0.138 0.906 -0.645 -1.371 -0.855 0.812 0.484 -1.773 -1.924 0.974 0.449 -1.296 -0.361 0.735 0.376 -1.946 -0.117 0.815 -0.612 -0.589 -0.459 0.898 0.000 -1.290 -1.047 0.835 0.320 -1.047 -1.129 1.041 0.041 -1.129 -0.031 0.858 -0.660 -0.797 0.109 0.739 0.012 -2.038 -1.555 0.969 0.200 -0.854 N-3 LUT 3 2 4 0 0.000 0.585 -1.193 0.858 -2.000 1.174 -1.115 -0.156 -1.379 0.951 -0.760 0.366 -2.412 -0.115 0.469 0.300 -1.115 -0.189 -1.511 1.386 -2.663 1.014 -1.410 0.461 -2.135 0.277 -1.062 1.098 -2.565 -0.051 -1.399 1.251 -1.858 0.766 -1.737 0.888 -2.737 1.032 -1.431 0.431 -2.083 1.026 -1.459 0.576 -3.196 -0.437 -0.852 1.300 -2.022 0.387 -0.531 0.759 -1.700 1.057 -1.046 0.243 -1.994 0.160 -0.181 0.795 -1.918 0.245 -0.755 0.889 -1.433 N-2 LUT 3 2 4 0 0.000 -0.359 0.687 0.272 -1.313 0.322 0.585 -0.778 -0.585 -0.343 1.187 -1.291 -0.928 -0.939 0.646 -0.524 0.284 -0.359 0.489 0.468 -1.205 0.271 0.427 -0.466 -0.466 -1.000 1.243 -0.383 -1.447 -0.730 0.717 0.132 -0.605 0.217 0.376 0.100 -1.096 0.225 -0.228 0.109 -0.154 -0.495 1.169 -0.624 -1.349 -1.222 0.363 0.515 -0.222 -0.369 1.133 -0.254 -2.369 0.376 0.376 -0.624 -0.402 -0.105 0.850 -0.449 -0.902 -0.737 0.678 0.485 -1.322 N-1 LUT 3 2 4 0 0.000 -1.069 0.078 1.157 -2.069 -1.253 1.523 -1.119 -2.026 -0.585 0.695 0.641 -2.692 -2.026 1.706 -2.248 -1.833 -1.290 -0.138 1.348 -2.874 -0.290 1.241 -0.874 -1.874 -1.858 0.312 1.049 -1.273 -1.807 1.100 0.441 -2.222 -0.899 0.764 0.686 -2.676 -2.056 1.488 -0.646 -1.661 -0.675 0.691 0.556 -1.790 -2.511 1.144 0.167 -1.026 -0.322 0.000 1.000 -2.322 -0.637 1.193 -1.807 -0.348 -0.773 0.227 0.890 -1.358 -1.170 1.333 -0.433 -1.755 A LUT 3 2 4 0 0.000 1.932 -4.022 -4.022 -4.022 1.973 -5.349 -5.349 -5.349 1.984 -6.071 -6.071 -6.071 1.816 -2.644 -2.644 -2.644 1.957 -4.687 -4.687 -4.687 1.994 -7.594 -7.594 -7.594 1.972 -5.267 -5.267 -5.267 1.949 -4.443 -4.443 -4.443 1.952 -4.524 -4.524 -4.524 1.981 -5.864 -5.864 -5.864 1.982 -5.913 -5.913 -5.913 1.871 -3.129 -3.129 -3.129 1.752 -2.248 -2.248 -2.248 1.979 -5.665 -5.665 -5.665 1.928 -3.954 -3.954 -3.954 1.830 -2.755 -2.755 -2.755 T LUT 3 2 4 0 0.000 -6.061 -6.061 -6.061 1.984 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.409 -8.409 -8.409 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.480 -7.480 -7.480 1.994 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.340 -5.340 -5.340 1.973 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.283 -9.283 1.998 -9.283 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.376 -0.582 1.021 -0.912 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.172 0.106 0.459 -1.243 -0.126 0.584 -0.780 0.003 0.232 0.873 -0.493 -1.815 -2.214 1.068 -0.384 -0.117 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -1.031 -0.212 0.925 -0.419 -0.470 0.778 -0.596 -0.148 -1.494 0.687 0.243 -0.231 -2.170 0.415 1.152 -2.170 -0.929 -0.629 1.348 -1.822 -0.464 0.379 0.070 -0.112 -1.193 0.322 1.000 -1.678 -1.054 -0.295 1.267 -1.755 -0.878 -0.229 1.079 -1.027 -0.921 0.360 0.506 -0.380 -0.745 0.255 0.722 -0.833 -2.217 -0.080 1.268 -1.217 -2.392 1.415 -2.392 -0.070 -0.476 0.382 0.016 -0.049 -4.066 -0.259 1.182 -0.259 -1.322 0.888 0.202 -0.737 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 -0.020 0.131 0.286 -0.517 0.546 -0.114 -0.138 -0.501 -0.501 0.459 0.249 -0.454 0.014 0.079 0.171 -0.308 0.277 0.161 -0.599 0.014 -0.549 0.657 -0.176 -0.227 -7.008 -7.008 -7.008 1.992 1.992 -7.008 -7.008 -7.008 1.992 -7.008 -7.008 -7.008 TAG WMM 9 6 4 0 0.000 -0.049 0.111 0.403 -0.664 0.325 -0.164 -0.229 0.002 -0.869 0.626 0.397 -0.757 0.219 0.009 0.023 -0.297 0.219 0.044 -0.306 -0.005 -0.757 0.733 0.285 -0.922 -7.664 -7.664 -7.664 1.995 1.995 -7.664 -7.664 -7.664 -7.664 -7.664 1.995 -7.664 TGA WMM 9 6 4 0 0.000 -0.029 0.206 0.250 -0.560 0.253 0.152 -0.197 -0.278 -0.693 0.490 0.398 -0.599 -0.139 0.261 0.239 -0.486 0.338 -0.097 -0.486 0.121 -1.421 1.058 0.344 -1.863 -8.387 -8.387 -8.387 1.997 -8.387 -8.387 1.997 -8.387 1.997 -8.387 -8.387 -8.387 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/C.intestinalis.hmm0000644000175000017500000013104611424066010016744 0ustar moellermoellerzoeHMM Ciona 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.917255 Inter Esngl 0.082745 Intron Eterm 0.157106 Intron Exon 0.842894 0.392339 0.370682 0.236979 0.562665 0.232495 0.204840 0.509398 0.288147 0.202455 0.554192 0.236946 0.208862 0.845706 0.154294 0.840756 0.159244 0.840513 0.159487 Einit 2 DEFINED 0 249 -9.529 -9.450 -9.374 -9.303 -9.234 -9.169 -9.107 -9.047 -8.990 -8.934 -8.881 -8.846 -8.811 -8.777 -8.744 -8.712 -8.680 -8.649 -8.619 -8.589 -8.560 -8.519 -8.480 -8.441 -8.403 -8.366 -8.330 -8.295 -8.261 -8.228 -8.195 -8.169 -8.143 -8.118 -8.093 -8.069 -8.045 -8.021 -7.998 -7.975 -7.952 -7.939 -7.925 -7.911 -7.898 -7.885 -7.872 -7.859 -7.846 -7.833 -7.821 -7.805 -7.790 -7.776 -7.761 -7.747 -7.732 -7.718 -7.704 -7.690 -7.676 -7.673 -7.669 -7.666 -7.662 -7.659 -7.655 -7.652 -7.648 -7.645 -7.641 -7.638 -7.634 -7.631 -7.627 -7.624 -7.621 -7.617 -7.614 -7.610 -7.607 -7.603 -7.599 -7.594 -7.590 -7.586 -7.582 -7.578 -7.574 -7.569 -7.565 -7.563 -7.560 -7.558 -7.556 -7.553 -7.551 -7.548 -7.546 -7.544 -7.541 -7.546 -7.551 -7.556 -7.561 -7.566 -7.572 -7.577 -7.582 -7.587 -7.592 -7.599 -7.606 -7.613 -7.620 -7.627 -7.634 -7.641 -7.649 -7.656 -7.663 -7.672 -7.681 -7.690 -7.699 -7.709 -7.718 -7.727 -7.737 -7.746 -7.755 -7.764 -7.772 -7.781 -7.790 -7.798 -7.807 -7.816 -7.825 -7.833 -7.842 -7.861 -7.880 -7.899 -7.918 -7.938 -7.958 -7.978 -7.999 -8.019 -8.041 -8.056 -8.071 -8.087 -8.103 -8.118 -8.135 -8.151 -8.167 -8.184 -8.201 -8.221 -8.242 -8.263 -8.285 -8.306 -8.328 -8.351 -8.373 -8.397 -8.420 -8.445 -8.471 -8.497 -8.524 -8.551 -8.578 -8.607 -8.635 -8.665 -8.695 -8.704 -8.713 -8.722 -8.731 -8.740 -8.750 -8.759 -8.769 -8.778 -8.788 -8.803 -8.819 -8.834 -8.850 -8.866 -8.882 -8.899 -8.915 -8.932 -8.949 -8.960 -8.970 -8.981 -8.991 -9.002 -9.013 -9.024 -9.035 -9.046 -9.057 -9.076 -9.094 -9.113 -9.132 -9.151 -9.170 -9.190 -9.210 -9.230 -9.251 -9.269 -9.288 -9.307 -9.326 -9.345 -9.365 -9.385 -9.405 -9.426 -9.447 -9.470 -9.493 -9.517 -9.541 -9.565 -9.590 -9.616 -9.641 -9.668 -9.695 -9.708 -9.721 -9.735 -9.749 -9.762 -9.776 -9.790 -9.805 -9.819 GEOMETRIC 250 -1 169 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.634 -10.530 -10.433 -10.342 -10.257 -10.176 -10.099 -10.027 -9.957 -9.891 -9.828 -9.770 -9.713 -9.659 -9.606 -9.556 -9.507 -9.460 -9.414 -9.370 -9.327 -9.300 -9.273 -9.247 -9.221 -9.196 -9.171 -9.147 -9.123 -9.100 -9.076 -9.048 -9.020 -8.993 -8.966 -8.939 -8.913 -8.888 -8.863 -8.838 -8.814 -8.798 -8.781 -8.765 -8.749 -8.733 -8.718 -8.702 -8.687 -8.672 -8.657 -8.637 -8.618 -8.598 -8.579 -8.561 -8.542 -8.524 -8.506 -8.488 -8.470 -8.446 -8.422 -8.398 -8.375 -8.352 -8.330 -8.308 -8.286 -8.265 -8.243 -8.232 -8.221 -8.209 -8.198 -8.187 -8.176 -8.165 -8.154 -8.143 -8.132 -8.114 -8.095 -8.077 -8.059 -8.041 -8.023 -8.006 -7.989 -7.972 -7.955 -7.946 -7.936 -7.927 -7.918 -7.908 -7.899 -7.890 -7.881 -7.872 -7.863 -7.859 -7.855 -7.852 -7.848 -7.844 -7.840 -7.836 -7.832 -7.828 -7.824 -7.815 -7.807 -7.798 -7.789 -7.781 -7.772 -7.764 -7.756 -7.747 -7.739 -7.741 -7.743 -7.745 -7.747 -7.749 -7.751 -7.753 -7.755 -7.757 -7.759 -7.758 -7.757 -7.756 -7.756 -7.755 -7.754 -7.753 -7.752 -7.751 -7.750 -7.755 -7.761 -7.767 -7.772 -7.778 -7.784 -7.790 -7.795 -7.801 -7.807 -7.816 -7.825 -7.834 -7.844 -7.853 -7.863 -7.872 -7.882 -7.891 -7.901 -7.911 -7.921 -7.931 -7.941 -7.952 -7.962 -7.973 -7.983 -7.994 -8.005 -8.013 -8.022 -8.031 -8.040 -8.049 -8.058 -8.068 -8.077 -8.086 -8.095 -8.105 -8.115 -8.125 -8.136 -8.146 -8.156 -8.166 -8.177 -8.187 -8.198 -8.212 -8.227 -8.241 -8.256 -8.271 -8.286 -8.301 -8.316 -8.331 -8.347 -8.360 -8.373 -8.385 -8.398 -8.412 -8.425 -8.438 -8.452 -8.465 -8.479 -8.501 -8.523 -8.545 -8.568 -8.591 -8.614 -8.638 -8.662 -8.687 -8.712 -8.732 -8.753 -8.773 -8.794 -8.815 -8.837 -8.859 -8.881 -8.904 -8.927 -8.946 -8.964 -8.984 -9.003 -9.023 -9.043 -9.063 -9.083 -9.104 -9.125 -9.147 -9.169 -9.192 -9.214 -9.238 -9.261 -9.285 -9.310 -9.334 GEOMETRIC 250 -1 211 Exon 2 DEFINED 0 249 -13.250 -13.040 -12.857 -12.695 -12.549 -12.417 -12.295 -12.183 -12.080 -11.983 -11.892 -11.739 -11.600 -11.474 -11.358 -11.250 -11.150 -11.056 -10.968 -10.886 -10.807 -10.686 -10.574 -10.470 -10.373 -10.282 -10.196 -10.116 -10.039 -9.967 -9.897 -9.814 -9.735 -9.661 -9.590 -9.522 -9.457 -9.396 -9.336 -9.279 -9.224 -9.154 -9.086 -9.022 -8.960 -8.901 -8.844 -8.790 -8.737 -8.686 -8.637 -8.579 -8.523 -8.469 -8.417 -8.366 -8.318 -8.271 -8.225 -8.181 -8.138 -8.099 -8.060 -8.022 -7.985 -7.949 -7.914 -7.880 -7.846 -7.813 -7.781 -7.747 -7.713 -7.681 -7.649 -7.617 -7.586 -7.556 -7.527 -7.498 -7.470 -7.443 -7.416 -7.390 -7.364 -7.339 -7.314 -7.290 -7.266 -7.242 -7.219 -7.201 -7.184 -7.167 -7.150 -7.133 -7.116 -7.100 -7.083 -7.067 -7.051 -7.043 -7.035 -7.027 -7.020 -7.012 -7.004 -6.996 -6.988 -6.981 -6.973 -6.970 -6.967 -6.964 -6.961 -6.959 -6.956 -6.953 -6.950 -6.947 -6.944 -6.951 -6.957 -6.963 -6.969 -6.975 -6.981 -6.988 -6.994 -7.000 -7.006 -7.020 -7.033 -7.046 -7.060 -7.073 -7.087 -7.101 -7.115 -7.129 -7.143 -7.157 -7.170 -7.184 -7.197 -7.211 -7.225 -7.239 -7.254 -7.268 -7.283 -7.302 -7.322 -7.342 -7.363 -7.383 -7.404 -7.426 -7.447 -7.469 -7.492 -7.514 -7.537 -7.560 -7.583 -7.607 -7.631 -7.655 -7.680 -7.706 -7.732 -7.755 -7.779 -7.803 -7.827 -7.852 -7.878 -7.903 -7.930 -7.956 -7.984 -8.012 -8.040 -8.069 -8.099 -8.129 -8.160 -8.191 -8.224 -8.257 -8.290 -8.324 -8.358 -8.393 -8.429 -8.465 -8.503 -8.542 -8.582 -8.623 -8.665 -8.697 -8.730 -8.764 -8.799 -8.834 -8.871 -8.908 -8.946 -8.986 -9.026 -9.064 -9.103 -9.143 -9.184 -9.226 -9.269 -9.314 -9.360 -9.408 -9.457 -9.498 -9.540 -9.582 -9.627 -9.672 -9.719 -9.768 -9.818 -9.870 -9.925 -9.964 -10.003 -10.045 -10.087 -10.131 -10.175 -10.222 -10.270 -10.319 -10.371 -10.411 -10.452 -10.495 -10.538 -10.583 -10.630 -10.678 -10.728 -10.779 GEOMETRIC 250 -1 133 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 443 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.511 -0.749 -1.120 0.604 0.486 -0.728 -1.189 0.639 0.492 -0.766 -1.223 0.658 0.520 -0.848 -1.354 0.696 0.570 -0.847 -1.465 0.676 0.625 -0.885 -1.587 0.663 0.653 -0.821 -1.588 0.613 0.649 -0.734 -1.621 0.591 0.650 -0.684 -1.602 0.565 0.608 -0.602 -1.471 0.543 0.470 -0.523 -1.366 0.614 0.371 -0.517 -1.368 0.697 0.305 -0.571 -1.300 0.754 0.226 -0.575 -1.320 0.815 0.128 -0.600 -1.407 0.904 0.055 -0.678 -1.518 0.991 -0.152 -0.770 -1.705 1.143 -0.141 -0.770 -1.573 1.119 -0.053 -0.683 -1.639 1.066 -0.018 -0.424 -1.727 0.976 -0.111 -0.511 -1.498 1.014 -0.373 -0.394 -2.137 1.164 -0.758 -0.188 -2.517 1.238 0.592 -0.446 -0.844 0.268 -2.083 1.422 -4.729 0.068 2.001 -13.117 -13.117 -13.117 -13.117 -13.117 2.001 -13.117 0.358 -1.137 0.790 -0.898 -0.006 -0.613 -0.737 0.810 0.320 -0.475 -0.236 0.245 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.289 -0.171 -0.143 -0.023 0.533 -0.493 -1.071 0.451 0.409 -0.381 -0.910 0.457 0.013 -0.508 0.224 0.164 0.903 -0.928 -0.458 -0.190 0.859 -1.014 -0.975 0.242 0.828 -0.856 -0.990 0.225 -0.294 -0.722 -0.194 0.769 0.700 -0.772 -0.615 0.186 0.579 -0.914 -0.963 0.549 0.698 -0.556 -0.678 0.102 -0.286 -0.782 -0.264 0.820 . 0.728 . 1.229 0.455 -0.568 -0.706 0.424 . 0.169 0.407 0.632 0.077 -0.257 -0.156 0.276 0.375 0.180 -0.391 -0.308 0.625 -0.298 -0.798 0.096 0.281 0.186 -0.993 0.195 -0.617 -0.142 0.333 0.242 0.640 -0.531 -0.117 -0.273 0.698 -0.433 -0.578 -0.048 0.703 -0.560 -0.773 0.149 -0.730 -0.105 -0.179 0.664 0.416 -0.074 -0.438 -0.033 0.468 -0.437 -0.808 0.386 0.341 -0.352 -0.269 0.164 -0.434 0.190 -0.077 0.228 . 1.163 . 0.816 0.370 -0.285 -0.392 0.169 . 0.307 0.495 0.437 -0.511 -0.114 -0.028 0.479 0.748 -0.759 -0.025 -0.420 0.666 -0.613 -0.348 -0.038 0.524 -0.270 -0.262 -0.154 -0.310 -0.518 0.426 0.203 0.851 -1.209 -0.020 -0.362 0.852 -0.950 -0.585 0.016 0.778 -0.873 -0.771 0.206 -0.426 -0.655 0.117 0.619 0.746 -0.992 -0.211 -0.065 0.638 -0.918 -0.343 0.172 0.560 -0.640 -0.357 0.141 -0.492 -0.681 0.099 0.673 . 0.656 . 1.278 0.593 -0.671 -0.259 0.040 . -0.139 0.756 0.489 -0.223 -0.508 -0.008 0.532 0.724 -0.421 -0.748 0.009 0.740 -0.743 -0.818 0.221 0.519 -0.187 -1.031 0.263 -0.240 -0.678 -0.060 0.650 0.666 -0.745 -0.364 0.056 0.800 -0.915 -0.949 0.276 0.479 -0.718 -0.607 0.424 -0.383 -0.598 -0.413 0.865 0.553 -0.467 -0.657 0.233 0.576 -0.903 -0.988 0.556 0.528 -0.680 -0.538 0.317 -0.351 -0.663 -0.104 0.726 . 0.810 . 1.168 0.616 -0.500 -0.830 0.260 . 0.087 0.450 0.652 0.093 -0.258 -0.143 0.253 0.334 -0.086 -0.093 -0.218 0.593 -0.371 -1.055 0.307 0.177 -0.111 -0.618 0.370 -0.110 -0.357 0.293 0.094 0.850 -0.856 -0.107 -0.481 0.815 -0.665 -0.932 0.118 0.676 -0.606 -0.799 0.228 -0.528 -0.580 0.087 0.656 0.504 -0.747 -0.306 0.235 0.593 -0.797 -0.775 0.413 0.604 -0.686 -0.314 0.076 -0.306 -0.926 0.213 0.590 . 0.980 . 1.020 0.612 -0.575 -0.761 0.276 . 0.165 0.628 0.415 -0.048 -0.346 0.019 0.302 0.149 0.252 -0.142 -0.333 0.350 0.094 -0.923 0.177 -0.149 0.250 -0.743 0.391 -0.603 -0.104 0.399 0.128 0.484 -0.268 -0.172 -0.179 0.683 -0.637 -0.748 0.209 0.281 -0.341 -0.642 0.438 -0.654 -0.091 -0.074 0.562 0.184 -0.160 -0.292 0.205 0.220 -0.256 -1.032 0.593 0.134 -0.274 -0.417 0.408 -0.594 -0.241 0.317 0.317 . 1.205 . 0.762 0.373 0.003 -0.639 0.085 . 0.484 0.424 0.333 -0.456 -0.010 0.122 0.250 0.515 -0.099 -0.294 -0.283 0.400 -0.111 -0.338 -0.054 0.082 -0.095 -0.278 0.239 -0.343 -0.208 0.338 0.114 0.702 -0.654 -0.345 -0.073 0.702 -0.498 -0.577 -0.008 0.410 -0.414 -0.419 0.229 -0.498 -0.284 -0.010 0.564 0.384 -0.422 -0.263 0.157 0.489 -0.405 -0.424 0.132 0.415 -0.546 -0.265 0.202 -0.585 -0.551 0.272 0.530 . 0.924 . 1.073 0.868 -0.759 -0.423 -0.255 . -0.079 0.559 0.660 -0.340 -0.280 -0.026 0.490 0.620 -0.321 -0.451 -0.103 0.712 -0.585 -1.062 0.282 0.179 -0.094 -0.813 0.446 -0.281 -0.593 0.144 0.495 0.617 -0.590 -0.347 0.023 0.661 -0.713 -1.058 0.410 0.213 -0.540 -0.890 0.690 -0.570 -0.260 -0.253 0.724 0.457 -0.569 -0.455 0.291 0.421 -0.612 -1.262 0.669 0.286 -0.631 -0.649 0.582 -0.182 -0.872 0.165 0.537 . 0.990 . 1.010 0.594 -0.477 -0.876 0.296 . 0.187 0.160 0.803 0.079 -0.273 0.157 0.001 0.527 -0.163 -0.307 -0.223 0.580 -0.437 -0.843 0.274 0.576 -0.368 -0.725 0.175 -0.188 -0.355 0.289 0.162 0.774 -0.773 -0.287 -0.176 0.745 -0.871 -0.871 0.298 0.823 -0.888 -0.934 0.223 -0.860 -0.373 -0.363 0.926 0.446 -0.555 -0.547 0.348 0.606 -0.919 -0.830 0.471 0.708 -0.978 -0.464 0.182 -0.360 -0.739 -0.049 0.727 . 0.851 . 1.135 0.554 -0.480 -0.597 0.206 . 0.173 0.410 0.627 -0.122 -0.288 -0.004 0.338 0.321 0.177 -0.248 -0.363 0.516 -0.254 -0.570 0.082 0.206 0.046 -0.952 0.376 -0.724 -0.109 0.342 0.262 0.443 -0.222 -0.195 -0.138 0.655 -0.439 -0.607 0.044 0.630 -0.370 -0.778 0.131 -0.894 0.048 -0.499 0.783 0.200 0.066 -0.363 0.039 0.267 -0.320 -0.694 0.462 0.219 -0.330 -0.139 0.179 -0.757 -0.147 0.207 0.434 . 1.294 . 0.630 0.468 -0.171 -0.544 0.061 . 0.287 0.379 0.566 -0.384 -0.043 0.202 0.154 0.632 -0.482 -0.111 -0.307 0.697 -0.432 -0.404 -0.180 0.339 -0.356 -0.064 -0.004 -0.349 -0.455 0.333 0.294 0.664 -0.897 0.015 -0.203 0.773 -0.893 -0.246 -0.137 0.633 -0.565 -0.637 0.176 -0.686 -0.529 0.121 0.676 0.490 -0.626 -0.170 0.083 0.667 -1.081 -0.190 0.089 0.427 -0.856 -0.386 0.420 -0.689 -0.831 0.533 0.455 . 0.762 . 1.205 0.706 -0.741 -0.054 -0.309 . -0.302 0.783 0.554 -0.444 -0.408 0.312 0.344 0.710 -0.117 -0.876 -0.156 0.757 -0.526 -0.761 0.036 0.318 0.033 -1.033 0.311 -0.326 -0.499 0.044 0.550 0.543 -0.344 -0.370 -0.027 0.674 -0.718 -0.788 0.284 0.358 -0.526 -0.825 0.546 -0.719 -0.159 -0.585 0.872 0.492 -0.200 -0.710 0.153 0.472 -0.721 -0.774 0.508 0.433 -0.763 -0.451 0.411 -0.376 -0.699 0.102 0.624 . 1.066 . 0.931 0.644 -0.543 -0.577 0.112 . 0.069 0.520 0.602 0.099 -0.325 0.172 0.006 0.520 -0.154 -0.181 -0.348 0.572 -0.557 -0.899 0.376 0.429 -0.176 -0.762 0.238 -0.209 -0.561 0.399 0.187 0.859 -0.995 -0.123 -0.384 0.749 -0.718 -0.806 0.189 0.742 -0.873 -0.963 0.343 -0.488 -0.706 -0.041 0.767 0.659 -0.636 -0.584 0.151 0.563 -0.978 -0.743 0.504 0.640 -0.607 -0.520 0.122 -0.324 -1.045 0.066 0.739 . 0.921 . 1.075 0.508 -0.585 -0.661 0.355 . 0.032 0.506 0.640 -0.164 -0.329 -0.216 0.537 0.243 0.242 -0.306 -0.277 0.498 -0.211 -0.890 0.244 -0.246 0.213 -1.084 0.609 -0.433 -0.093 0.219 0.212 0.500 -0.368 -0.172 -0.114 0.760 -0.656 -0.507 -0.046 0.441 -0.558 -0.560 0.361 -0.686 0.153 -0.301 0.541 0.238 -0.038 -0.603 0.249 0.302 -0.406 -0.886 0.558 0.235 -0.362 -0.315 0.311 -0.388 -0.227 0.064 0.419 . 1.205 . 0.761 0.478 -0.189 -0.611 0.104 . 0.367 0.284 0.578 -0.589 0.256 -0.093 0.268 0.585 -0.323 -0.109 -0.371 0.491 -0.523 -0.040 -0.111 0.324 -0.233 -0.252 0.082 -0.484 -0.339 0.477 0.141 0.656 -1.039 0.074 -0.176 0.718 -0.672 -0.498 0.027 0.493 -0.562 -0.453 0.245 -0.620 -0.604 0.168 0.649 0.533 -0.628 -0.338 0.157 0.468 -0.818 -0.469 0.408 0.510 -0.634 -0.362 0.206 -0.612 -0.670 0.299 0.572 . 0.878 . 1.113 0.531 -0.577 -0.286 0.090 . -0.036 0.547 0.644 -0.501 -0.383 0.186 0.474 0.706 -0.170 -0.690 -0.217 0.517 -0.421 -1.001 0.403 0.242 -0.128 -1.054 0.507 -0.175 -0.514 -0.081 0.555 0.766 -0.757 -0.560 0.042 0.684 -0.598 -1.147 0.357 0.532 -0.986 -0.885 0.592 -0.279 -0.407 -0.338 0.705 0.593 -0.536 -0.751 0.273 0.310 -0.572 -1.104 0.698 0.457 -0.853 -0.703 0.545 -0.306 -0.842 0.123 0.626 . 0.858 . 1.129 0.577 -0.392 -0.935 0.291 . 0.187 0.169 0.797 0.261 -0.130 -0.050 -0.117 frame2 LUT 5 4 4 0 0.000 0.005 -0.052 0.368 -0.431 0.603 -0.400 -0.179 -0.253 0.570 -0.458 -0.209 -0.117 0.081 -0.488 0.622 -0.535 0.516 -0.461 0.033 -0.287 0.877 -0.543 -0.233 -0.675 0.479 -0.541 0.027 -0.153 -0.289 -0.658 0.626 0.006 0.600 -0.645 0.028 -0.277 0.858 -0.795 -0.156 -0.486 0.546 -0.573 -0.072 -0.125 -0.323 -0.508 0.483 0.138 0.355 -0.293 -0.375 0.181 0.657 -0.391 -0.038 -0.543 0.369 -0.414 0.189 -0.291 -0.118 -0.189 0.549 -0.437 0.310 -0.045 0.269 -0.772 0.670 -0.239 -0.073 -0.711 0.599 -0.122 -0.325 -0.380 -0.039 -0.292 0.283 -0.010 0.544 -0.318 0.184 -0.726 0.537 0.187 -0.084 -1.101 0.489 -0.455 0.082 -0.305 -0.472 -0.306 0.713 -0.268 0.554 -0.136 0.011 -0.704 0.600 -0.321 -0.172 -0.329 0.503 -0.377 0.099 -0.430 -0.092 -0.132 0.398 -0.266 0.463 0.224 -0.314 -0.622 0.666 -0.508 0.171 -0.774 0.282 -0.174 0.267 -0.526 -0.228 -0.267 0.670 -0.466 0.459 -0.718 0.498 -0.724 0.636 -0.431 0.031 -0.549 0.478 -0.581 0.242 -0.403 -0.181 -0.755 0.702 -0.155 0.602 -0.748 0.258 -0.533 0.919 -0.714 0.040 -1.084 0.412 -0.550 0.103 -0.131 -0.417 -0.508 0.713 -0.138 0.649 -0.850 0.212 -0.476 0.637 -0.512 -0.024 -0.397 0.294 -0.876 0.470 -0.243 -0.531 -0.418 0.437 0.270 0.613 -0.663 0.098 -0.378 0.682 -0.426 0.066 -0.725 0.495 -0.985 0.360 -0.317 -0.237 -0.387 0.584 -0.173 . . . . 0.705 -0.495 0.030 -0.647 . . . . -0.232 -0.551 0.450 0.137 0.500 -0.454 0.072 -0.313 0.728 -0.545 -0.018 -0.577 0.167 -0.561 0.408 -0.197 -0.370 -0.477 0.666 -0.120 . . . . 0.679 -0.794 0.131 -0.460 0.526 -0.717 0.224 -0.351 -0.145 -0.558 0.528 -0.037 0.442 -0.227 -0.199 -0.126 0.496 -0.308 -0.152 -0.181 0.170 -0.501 0.434 -0.290 -0.133 -0.346 0.568 -0.287 0.060 -0.031 0.416 -0.634 0.575 -0.160 -0.276 -0.340 0.435 -0.302 -0.220 -0.032 -0.135 -0.354 0.730 -0.626 0.447 -0.287 0.166 -0.524 0.771 -0.310 -0.141 -0.786 0.340 -0.318 0.069 -0.179 -0.535 -0.604 0.841 -0.218 0.418 -0.508 0.329 -0.506 0.812 -0.796 0.006 -0.590 0.544 -0.738 0.143 -0.254 -0.251 -0.573 0.684 -0.183 0.227 -0.105 -0.072 -0.076 0.771 -0.587 0.023 -0.708 0.256 -0.372 0.322 -0.353 -0.178 -0.280 0.701 -0.583 0.036 0.189 0.273 -0.675 0.539 0.037 -0.165 -0.669 0.199 0.022 -0.088 -0.159 -0.276 -0.202 0.625 -0.390 0.326 -0.007 0.010 -0.425 0.578 -0.137 0.028 -0.792 0.419 -0.381 0.034 -0.198 -0.310 -0.296 0.761 -0.547 0.337 -0.090 0.086 -0.443 0.632 -0.254 -0.313 -0.309 0.444 -0.406 0.108 -0.310 -0.146 -0.279 0.609 -0.421 0.395 0.333 -0.438 -0.541 0.602 -0.247 0.058 -0.740 -0.038 0.029 0.395 -0.534 -0.172 -0.237 0.766 -0.829 0.254 -0.281 0.382 -0.553 0.448 -0.139 0.012 -0.476 0.317 -0.462 0.186 -0.167 -0.105 -0.464 0.573 -0.222 0.504 -0.344 -0.061 -0.259 0.738 -0.370 0.009 -0.858 0.402 -0.408 -0.191 0.068 -0.363 -0.436 0.700 -0.219 0.475 -0.437 0.189 -0.452 0.487 -0.338 0.109 -0.456 0.477 -0.800 0.278 -0.283 -0.238 -0.487 0.521 0.005 0.351 -0.139 -0.139 -0.139 1.059 -0.782 -0.193 -1.120 0.223 -0.560 0.231 -0.028 -0.220 -0.258 0.549 -0.248 . . . . 0.687 -0.168 -0.401 -0.428 . . . . -0.275 -0.443 0.695 -0.289 0.438 -0.180 -0.078 -0.294 0.669 -0.235 -0.167 -0.579 -0.062 -0.234 0.126 0.138 -0.289 -0.469 0.765 -0.398 . . . . 0.631 -0.373 -0.273 -0.232 0.345 -0.550 0.208 -0.165 -0.044 -0.552 0.635 -0.332 0.396 0.025 -0.320 -0.208 0.516 -0.106 -0.389 -0.188 0.034 -0.331 0.364 -0.161 0.027 -0.442 0.660 -0.587 0.349 -0.119 0.185 -0.581 0.596 -0.326 -0.008 -0.524 0.696 -0.442 -0.270 -0.296 -0.058 -0.478 0.636 -0.382 0.466 -0.485 0.101 -0.265 0.777 -0.611 -0.032 -0.615 0.217 -0.656 -0.079 0.330 -0.698 -0.424 0.529 0.257 0.542 -0.538 0.224 -0.540 0.796 -0.876 0.126 -0.673 0.604 -0.803 -0.142 0.000 -0.323 -0.416 0.537 0.001 0.373 -0.321 -0.214 0.060 0.703 -0.479 0.147 -0.869 0.284 -0.448 0.301 -0.292 -0.332 -0.324 0.700 -0.354 0.193 -0.062 0.370 -0.721 0.585 -0.293 0.125 -0.751 0.429 -0.157 -0.275 -0.104 -0.126 -0.322 0.417 -0.077 0.315 -0.127 0.177 -0.495 0.502 -0.003 0.087 -0.933 0.323 -0.445 0.102 -0.087 -0.443 -0.263 0.503 0.019 0.277 0.072 0.110 -0.604 0.556 -0.232 -0.039 -0.505 0.411 -0.278 0.064 -0.321 -0.271 -0.234 0.558 -0.237 0.347 0.295 -0.282 -0.559 0.582 -0.590 0.232 -0.590 0.129 -0.158 0.312 -0.379 -0.101 -0.359 0.707 -0.608 0.447 -0.563 0.388 -0.619 0.596 -0.427 0.203 -0.753 0.418 -0.438 0.228 -0.405 -0.110 -0.552 0.558 -0.122 0.601 -0.673 0.271 -0.622 0.684 -0.746 0.371 -0.990 0.307 -0.376 0.127 -0.151 -0.652 -0.456 0.698 0.017 0.694 -0.782 0.222 -0.658 0.596 -0.712 0.237 -0.515 0.432 -0.718 0.171 -0.124 -0.436 -0.551 0.586 0.108 0.529 -0.413 -0.033 -0.270 0.640 -0.498 0.339 -1.095 0.218 -0.757 0.477 -0.229 -0.415 -0.332 0.684 -0.236 . . . . 0.769 -0.417 0.024 -0.916 . . . . -0.225 -0.574 0.484 0.103 0.293 -0.111 -0.053 -0.177 0.652 -0.538 0.121 -0.616 0.008 -0.299 0.182 0.066 -0.388 -0.351 0.508 0.042 . . . . 0.610 -0.497 0.109 -0.541 0.401 -0.525 0.127 -0.164 -0.153 -0.422 0.509 -0.103 0.496 -0.077 -0.326 -0.245 0.514 -0.316 0.065 -0.469 0.075 -0.411 0.440 -0.254 -0.029 -0.356 0.536 -0.342 0.305 -0.243 0.328 -0.591 0.455 -0.322 -0.158 -0.100 0.626 -0.534 -0.273 -0.091 -0.056 -0.633 0.679 -0.336 0.546 -0.581 0.077 -0.293 0.789 -0.550 -0.161 -0.526 0.417 -0.782 -0.164 0.252 -0.445 -0.760 0.658 0.135 0.655 -0.712 0.079 -0.398 0.807 -1.017 0.012 -0.418 0.673 -0.850 0.017 -0.253 -0.329 -0.758 0.568 0.177 0.419 -0.289 -0.394 0.116 0.635 -0.553 0.022 -0.415 0.391 -0.571 0.172 -0.170 -0.197 -0.323 0.507 -0.141 0.310 0.022 0.076 -0.534 0.441 -0.103 -0.223 -0.227 0.318 -0.182 -0.430 0.176 -0.043 -0.235 0.345 -0.137 0.468 -0.237 -0.051 -0.317 0.600 -0.215 0.036 -0.743 0.334 -0.497 0.093 -0.052 -0.310 -0.268 0.622 -0.278 0.516 -0.071 -0.215 -0.402 0.454 -0.247 -0.320 -0.020 0.267 -0.209 -0.001 -0.101 -0.034 -0.221 0.364 -0.187 0.324 0.358 -0.703 -0.231 0.578 -0.568 -0.050 -0.206 -0.081 0.088 0.034 -0.047 -0.217 -0.009 0.561 -0.577 0.441 -0.549 0.412 -0.672 0.438 -0.374 0.243 -0.534 0.472 -0.552 0.161 -0.299 -0.219 -0.587 0.752 -0.339 0.489 -0.603 0.167 -0.295 0.751 -0.437 -0.038 -0.725 0.312 -0.631 0.068 0.090 -0.440 -0.514 0.752 -0.187 0.671 -0.777 0.128 -0.453 0.533 -0.463 -0.081 -0.181 0.512 -0.996 0.295 -0.242 -0.226 -0.704 0.588 0.039 0.451 -0.298 -0.107 -0.167 0.819 -0.491 -0.195 -0.621 0.266 -0.765 0.271 0.003 -0.253 -0.400 0.620 -0.207 . . . . 0.590 -0.377 -0.163 -0.266 . . . . -0.060 -0.495 0.451 -0.054 0.640 -0.450 -0.276 -0.179 0.688 -0.266 -0.229 -0.507 0.198 -0.531 0.057 0.165 -0.147 -0.465 0.606 -0.235 . . . . 0.516 -0.316 -0.274 -0.090 0.471 -0.773 0.055 -0.014 -0.077 -0.494 0.453 -0.039 0.587 -0.189 -0.520 -0.115 0.425 -0.144 -0.431 0.015 0.158 -0.341 0.135 -0.005 0.213 -0.283 0.477 -0.673 frame2 LUT 5 4 4 0 0.000 0.481 -0.156 -0.499 -0.001 0.377 -0.079 -0.760 0.220 0.745 -0.290 -0.792 -0.108 -0.217 0.296 -0.353 0.174 0.650 -0.362 -0.534 -0.057 0.620 0.089 -1.065 -0.118 0.724 -0.458 -0.272 -0.337 -0.665 -0.051 -0.417 0.727 0.995 -0.969 -0.898 -0.060 0.676 -0.541 -0.539 0.038 1.026 -0.683 -0.675 -0.487 -1.006 -0.096 -1.004 1.048 0.704 -0.564 -1.342 0.378 0.347 -0.007 -0.725 0.174 0.655 -0.501 -0.227 -0.211 -0.504 0.178 -0.761 0.654 0.400 0.083 -0.388 -0.222 0.432 0.304 -1.094 -0.078 0.592 -0.033 -0.729 -0.134 -1.003 0.320 -0.399 0.580 0.650 -0.181 -0.795 -0.041 0.357 0.592 -1.309 -0.306 0.758 -0.659 -0.282 -0.229 -0.789 0.438 -0.605 0.494 0.574 -0.365 -0.479 0.025 0.567 -0.024 -1.322 0.183 0.775 -0.467 -0.542 -0.186 -0.964 0.474 -0.740 0.585 0.569 0.023 -1.289 0.125 0.324 0.198 -0.809 0.044 0.437 -0.292 -0.120 -0.136 -0.770 0.168 -0.426 0.629 0.647 -0.770 -0.042 -0.189 0.534 -0.174 -0.671 0.053 0.679 -0.317 -0.368 -0.285 -0.519 0.045 -0.335 0.563 0.677 -0.496 -0.279 -0.205 0.839 -0.034 -1.048 -0.413 0.760 -0.468 -0.374 -0.302 -0.631 0.241 -0.654 0.620 0.895 -1.075 -0.506 -0.057 0.632 -0.255 -0.667 -0.026 0.826 -0.810 -0.376 -0.173 -1.127 -0.129 -0.885 1.061 0.646 -0.659 -0.491 0.125 0.420 -0.035 -0.384 -0.120 0.710 -0.749 -0.031 -0.338 -0.608 0.009 -0.821 0.825 0.640 -0.227 -0.660 -0.067 0.546 0.115 -0.841 -0.153 0.651 -0.072 -0.880 -0.097 -0.845 0.160 -0.722 0.782 0.588 -0.181 -0.748 0.027 0.430 -0.008 -0.631 0.018 0.403 -0.226 -0.190 -0.080 -0.566 0.018 -0.524 0.693 0.675 -0.365 -0.650 -0.015 0.613 -0.177 -1.003 0.120 0.738 -0.273 -0.565 -0.271 -0.665 -0.034 -0.630 0.805 0.663 -0.364 -1.346 0.317 0.322 -0.042 -0.576 0.148 0.647 -0.372 -0.329 -0.209 -0.617 0.199 -0.521 0.588 0.444 -0.127 -0.429 -0.028 0.582 -0.165 -1.053 0.175 0.580 -0.045 -0.671 -0.140 -0.315 0.230 -0.228 0.226 0.526 -0.210 -0.380 -0.110 0.678 0.169 -1.074 -0.321 0.670 -0.369 -0.449 -0.148 -0.831 -0.117 -0.102 0.663 0.892 -1.097 -0.619 0.037 0.757 -0.707 -0.555 0.023 1.040 -0.887 -0.642 -0.391 -0.908 -0.365 -0.512 0.992 0.626 -0.594 -0.717 0.245 0.372 -0.219 -0.628 0.262 0.582 -0.511 -0.146 -0.157 -0.434 0.019 -0.580 0.658 0.428 0.017 -0.350 -0.221 0.337 0.509 -1.000 -0.297 0.638 -0.148 -0.579 -0.199 -0.716 0.367 -0.501 0.480 0.631 -0.097 -0.911 -0.023 0.432 0.588 -1.247 -0.462 0.779 -0.503 -0.361 -0.322 -0.495 0.395 -0.996 0.559 0.591 -0.435 -0.574 0.115 0.305 0.287 -1.208 0.153 0.885 -0.862 -0.501 -0.158 -0.524 -0.160 -0.517 0.775 0.646 -0.028 -1.330 0.079 0.222 0.425 -0.823 -0.111 0.490 -0.370 -0.080 -0.191 -0.411 0.425 -0.797 0.411 0.471 -0.271 -0.232 -0.099 0.421 0.094 -0.628 -0.079 0.551 -0.073 -0.500 -0.188 -0.618 0.150 -0.350 0.540 0.625 -0.430 -0.399 -0.064 0.640 -0.292 -0.281 -0.319 0.775 -0.535 -0.440 -0.215 -0.692 0.152 -0.468 0.629 0.891 -0.835 -0.595 -0.117 0.675 0.058 -0.570 -0.538 0.991 -0.705 -0.584 -0.449 -0.864 -0.187 -0.826 1.006 0.723 -0.553 -0.501 -0.057 0.529 -0.570 0.104 -0.306 0.671 -0.577 -0.140 -0.268 -0.442 0.067 -0.582 0.630 0.612 -0.203 -0.371 -0.270 0.607 0.008 -0.692 -0.230 0.667 0.052 -0.845 -0.289 -0.905 0.354 -0.147 0.361 0.338 0.063 -0.720 0.117 0.345 0.034 -0.551 0.033 0.323 0.006 -0.196 -0.198 -0.689 0.364 -0.648 0.540 0.645 -0.476 -0.595 0.077 0.537 -0.309 -1.109 0.354 0.847 -0.507 -0.848 -0.086 -0.598 -0.232 -0.425 0.801 0.560 -0.148 -1.299 0.284 0.336 -0.084 -0.605 0.185 0.425 -0.116 -0.131 -0.283 -0.407 0.303 -0.547 0.409 0.645 -0.327 -0.582 -0.042 0.525 -0.207 -0.855 0.191 0.882 -0.270 -0.840 -0.378 -0.249 0.023 -0.231 0.368 0.499 -0.351 -0.547 0.161 0.548 0.054 -0.912 -0.046 0.688 -0.681 -0.612 0.151 -0.937 -0.099 -0.484 0.871 0.839 -0.979 -0.622 0.077 0.666 -0.665 -0.613 0.175 1.034 -0.762 -0.853 -0.307 -1.067 -0.318 -0.911 1.130 0.665 -0.603 -1.074 0.357 0.305 -0.121 -0.518 0.197 0.785 -0.576 -0.403 -0.235 -0.431 -0.015 -0.557 0.668 0.476 -0.222 -0.310 -0.082 0.476 0.059 -0.932 0.061 0.482 0.172 -0.831 -0.129 -0.969 0.242 -0.614 0.725 0.442 -0.210 -0.930 0.324 0.446 0.316 -1.276 -0.030 0.647 -0.280 -0.468 -0.172 -0.782 0.348 -0.900 0.687 0.502 -0.662 -0.432 0.276 0.430 -0.369 -1.060 0.484 0.632 -0.175 -0.501 -0.220 -0.933 -0.302 -0.531 0.980 0.479 -0.007 -1.358 0.288 0.341 -0.101 -0.662 0.225 0.330 -0.081 -0.300 -0.021 -0.479 0.151 -0.547 0.573 0.560 -0.433 -0.317 -0.025 0.542 0.097 -1.018 -0.028 0.600 -0.201 -0.290 -0.328 -0.431 -0.017 -0.700 0.726 0.662 -0.606 -0.364 -0.024 0.884 -0.376 -0.889 -0.244 0.626 -0.619 -0.107 -0.190 -0.598 -0.039 -0.406 0.688 0.783 -0.644 -0.653 0.004 0.701 -0.109 -0.897 -0.136 0.574 -0.572 -0.271 0.014 -0.790 -0.307 -0.768 1.019 0.461 -0.509 -0.414 0.226 0.450 -0.334 -0.224 -0.022 0.362 -0.629 0.166 -0.080 -0.477 0.006 -0.504 0.652 0.698 -0.145 -0.728 -0.201 0.627 0.112 -0.852 -0.285 0.602 0.151 -0.984 -0.209 -0.775 0.204 -0.456 0.618 0.262 0.126 -0.864 0.214 0.346 0.067 -0.779 0.136 0.399 -0.363 -0.242 0.081 -0.660 0.208 -0.900 0.745 0.648 -0.352 -0.825 0.118 0.468 -0.280 -0.988 0.366 0.745 -0.338 -0.928 0.010 -0.949 -0.260 -0.572 0.981 0.511 -0.141 -1.270 0.326 0.332 -0.134 -0.394 0.096 0.475 -0.338 -0.148 -0.126 -0.504 0.135 -0.382 0.515 . . . . . . . . . . . . . . . . 0.523 -0.383 -0.328 -0.001 0.647 0.021 -1.084 -0.078 0.648 -0.334 -0.451 -0.140 -0.654 -0.230 -0.364 0.795 . . . . . . . . . . . . . . . . 0.674 -0.509 -1.045 0.283 0.343 -0.179 -0.618 0.259 0.639 -0.447 -0.219 -0.234 -0.387 -0.080 -0.759 0.764 0.487 -0.081 -0.309 -0.241 0.372 0.218 -0.929 0.025 0.509 0.020 -0.707 -0.074 -0.999 0.554 -0.478 0.394 0.518 -0.181 -0.671 0.082 0.466 0.234 -0.910 -0.135 0.729 -0.481 -0.301 -0.296 -0.659 0.609 -0.858 0.366 0.708 -0.461 -0.589 -0.036 0.340 -0.007 -1.004 0.311 0.805 -0.475 -0.640 -0.165 -0.877 0.049 -0.521 0.786 0.427 -0.060 -1.123 0.307 0.252 0.139 -0.642 0.093 0.407 -0.190 -0.255 -0.059 -0.844 0.599 -0.747 0.414 . . . . . . . . . . . . . . . . 0.595 -0.450 -0.447 0.034 0.701 0.110 -1.099 -0.272 0.682 -0.365 -0.414 -0.204 -0.737 0.044 -0.211 0.590 0.670 -0.632 -0.353 -0.029 0.607 -0.288 -0.927 0.179 0.682 -0.513 -0.279 -0.200 -0.738 -0.046 -0.461 0.770 0.599 -0.371 -0.684 0.124 0.372 0.062 -0.568 -0.018 0.563 -0.606 -0.038 -0.165 -0.781 -0.012 -0.459 0.765 0.897 -0.560 -0.591 -0.329 0.500 -0.064 -0.702 0.020 0.797 -0.196 -0.893 -0.234 -0.809 0.381 -0.465 0.488 0.498 -0.158 -0.663 0.084 0.411 -0.241 -0.604 0.221 0.442 -0.307 -0.227 -0.031 -0.542 -0.065 -0.322 0.639 0.837 -0.709 -0.791 0.033 0.350 -0.249 -1.129 0.513 0.849 -0.556 -0.905 -0.023 -0.751 -0.165 -0.702 0.926 0.675 -0.372 -1.210 0.261 0.359 -0.142 -0.762 0.289 0.583 -0.413 -0.279 -0.109 -0.336 0.290 -0.662 0.436 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.617 0.294 -0.653 -0.726 1.379 -1.218 -1.424 -0.747 -0.707 -2.529 1.491 -1.308 -13.118 -13.118 2.000 -13.118 -13.118 -13.118 -13.118 2.000 1.375 -3.387 -0.303 -0.999 1.334 -1.974 -1.089 -0.407 -0.464 -2.263 1.328 -0.848 -0.164 -1.487 -1.284 1.226 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.534 -0.295 -0.787 0.211 0.747 -0.657 -0.734 0.120 0.214 -0.476 -0.591 0.543 0.533 -0.907 -0.311 0.280 0.567 -0.439 -0.500 0.102 0.639 -0.412 -0.613 0.053 0.362 -0.467 -0.500 0.361 -0.016 -0.847 -0.127 0.622 0.675 -0.606 -0.681 0.167 0.619 -0.754 -0.455 0.191 0.085 -0.450 -0.585 0.623 0.059 -0.972 -0.367 0.743 0.463 -0.606 -0.986 0.546 0.550 -0.620 -0.508 0.241 0.056 -0.457 -0.523 0.619 0.192 -0.826 -0.409 0.623 0.597 -0.272 -0.747 0.088 0.557 -0.135 -0.566 -0.085 0.194 -0.285 -0.736 0.521 0.269 -0.904 -0.361 0.567 0.518 -0.285 -0.490 0.050 0.570 -0.074 -0.794 -0.016 0.132 -0.238 -0.602 0.483 0.047 -0.506 -0.223 0.491 0.429 -0.152 -0.410 0.001 0.395 -0.331 -0.374 0.162 -0.097 -0.362 -0.370 0.598 0.074 -0.220 -0.343 0.380 0.410 -0.276 -1.016 0.434 0.279 -0.411 -0.314 0.298 -0.184 -0.264 -0.705 0.743 -0.052 -0.763 -0.352 0.733 0.670 -0.597 -0.582 0.111 0.710 -0.496 -0.466 -0.102 0.382 -0.398 -0.493 0.296 0.270 -1.027 -0.125 0.471 0.483 -0.534 -0.200 0.059 0.683 -0.652 -0.606 0.139 0.273 -0.348 -0.388 0.312 -0.081 -0.868 0.109 0.514 0.583 -0.640 -0.679 0.306 0.534 -0.498 -0.386 0.109 0.042 -0.631 -0.224 0.555 0.059 -0.950 0.064 0.481 0.552 -0.757 -0.443 0.271 0.487 -0.789 -0.047 0.074 0.070 -0.616 -0.245 0.540 0.132 -0.978 -0.370 0.698 0.753 -0.507 -0.982 0.144 0.740 -0.557 -0.609 -0.008 0.244 -0.455 -0.454 0.439 0.535 -1.138 -0.643 0.542 0.395 -0.411 -0.410 0.239 0.448 -0.412 -0.773 0.377 0.043 -0.313 -0.579 0.581 -0.027 -0.767 -0.187 0.635 0.626 -0.311 -0.770 0.090 0.601 -0.662 -0.604 0.255 -0.080 -0.405 0.005 0.373 0.188 -0.955 -0.355 0.644 0.445 -0.444 -0.924 0.461 0.508 -0.582 -0.750 0.395 -0.140 -0.312 -0.653 0.723 0.176 -0.807 -0.530 0.684 0.513 -0.358 -0.517 0.129 0.612 -0.422 -0.657 0.125 0.131 -0.285 -0.489 0.456 0.291 -0.785 -0.240 0.432 0.450 -0.405 -0.353 0.132 0.465 -0.102 -0.884 0.197 0.343 -0.211 -0.603 0.274 -0.088 -0.882 0.149 0.493 0.657 -0.539 -0.549 0.072 0.658 -0.651 -0.506 0.113 0.148 -0.432 -0.467 0.514 0.075 -0.824 -0.163 0.574 0.323 -0.350 -0.695 0.430 0.550 -0.721 -0.649 0.369 -0.088 -0.259 -0.334 0.516 -0.052 -0.635 -0.358 0.688 0.560 -0.122 -0.646 -0.048 0.470 -0.086 -0.611 0.026 0.138 -0.107 -0.440 0.304 0.096 -0.558 -0.177 0.451 0.178 -0.008 -0.748 0.355 0.689 0.089 -0.934 -0.319 0.001 0.039 -0.612 0.398 0.336 -0.739 -0.197 0.340 0.517 -0.306 -0.573 0.122 0.307 -0.222 -0.514 0.270 0.087 -0.257 -0.407 0.430 0.049 -0.807 -0.129 0.565 0.367 -0.051 -1.199 0.389 0.489 -0.501 -0.248 0.067 -0.108 -0.167 -0.372 0.494 -0.167 -0.722 -0.254 0.735 0.665 -0.534 -0.535 0.047 0.428 -0.443 -0.407 0.221 0.161 -0.436 -0.169 0.325 0.107 -0.587 -0.308 0.535 0.416 -0.503 -0.358 0.238 0.532 -0.381 -0.342 -0.003 0.193 -0.149 -0.616 0.382 0.017 -0.917 0.018 0.532 0.640 -0.500 -0.605 0.107 0.484 -0.440 -0.105 -0.097 0.208 -0.396 -0.314 0.358 0.116 -0.645 -0.272 0.534 0.489 -0.757 -0.758 0.499 0.843 -0.793 -0.470 -0.141 -0.020 -0.427 -0.390 0.592 -0.067 -0.923 -0.227 0.734 0.733 -0.421 -1.087 0.163 0.536 -0.329 -0.917 0.293 0.253 -0.352 -0.616 0.457 0.515 -1.222 -0.327 0.428 0.279 -0.121 -0.618 0.281 0.483 -0.018 -0.765 0.037 -0.179 -0.086 -0.764 0.665 -0.053 -0.625 -0.058 0.513 0.552 -0.449 -0.889 0.335 0.417 -0.400 -0.857 0.438 -0.056 -0.363 -0.438 0.606 0.212 -0.901 -0.277 0.567 0.361 -0.174 -1.054 0.430 0.407 -0.308 -0.598 0.270 -0.117 -0.262 -0.473 0.607 0.128 -0.847 -0.265 0.603 0.595 -0.332 -0.730 0.127 0.687 -0.531 -0.652 0.086 0.457 -0.318 -0.726 0.288 0.339 -0.909 -0.113 0.354 0.323 -0.120 -0.353 0.064 0.616 -0.640 -0.360 0.066 0.134 -0.535 -0.851 0.730 -0.228 -0.637 0.032 0.566 0.635 -0.556 -0.574 0.131 0.674 -0.639 -0.435 0.033 0.310 -0.609 -0.716 0.581 -0.084 -0.659 -0.285 0.680 0.444 -0.521 -0.927 0.503 0.589 -0.734 -0.252 0.076 0.077 -0.531 -0.198 0.466 -0.030 -0.814 -0.367 0.745 0.481 -0.287 -0.613 0.177 0.579 -0.425 -0.458 0.047 0.126 -0.196 -0.560 0.441 0.143 -0.896 -0.103 0.514 0.366 -0.213 -0.521 0.204 0.661 -0.237 -0.549 -0.173 0.144 -0.104 -0.583 0.375 0.279 -0.725 -0.209 0.397 0.415 -0.223 -0.291 -0.011 0.290 -0.253 -0.316 0.183 -0.041 -0.300 -0.218 0.439 -0.017 -0.660 0.007 0.458 0.375 -0.152 -0.972 0.372 0.345 -0.458 -0.329 0.269 -0.234 -0.132 -0.473 0.601 0.007 -0.643 -0.239 0.592 0.734 -0.708 -0.382 -0.062 0.839 -0.525 -0.495 -0.310 0.307 -0.387 -0.327 0.264 0.510 -1.057 -0.397 0.418 0.526 -0.497 -0.194 -0.032 0.594 -0.574 -0.446 0.117 0.031 -0.136 -0.345 0.357 0.002 -0.687 0.085 0.397 0.613 -0.129 -0.562 -0.186 0.730 -0.623 -0.266 -0.217 0.164 -0.987 0.099 0.382 0.144 -1.208 0.165 0.423 0.644 -0.805 -0.600 0.270 0.541 -0.592 -0.322 0.113 -0.189 -0.709 -0.175 0.701 0.037 -0.899 -0.200 0.648 0.609 -0.322 -0.676 0.068 0.727 -0.542 -0.765 0.098 -0.071 -0.243 -0.240 0.440 0.422 -1.086 -0.372 0.502 0.152 -0.065 -0.596 0.346 0.315 0.202 -0.814 0.052 -0.112 -0.224 -0.704 0.682 0.023 -0.665 -0.088 0.498 0.363 -0.076 -0.610 0.151 0.405 -0.376 -0.732 0.383 -0.238 -0.394 -0.045 0.508 0.075 -0.709 -0.339 0.627 0.388 -0.277 -0.844 0.389 0.448 -0.504 -0.565 0.327 -0.292 -0.311 -0.371 0.682 0.183 -0.803 -0.489 0.659 0.620 -0.370 -0.821 0.168 0.608 -0.612 -0.783 0.311 0.140 -0.307 -0.691 0.556 0.364 -1.039 -0.394 0.551 0.389 -0.458 -0.320 0.217 0.679 -0.394 -0.681 0.021 0.186 -0.473 -0.590 0.563 0.154 -1.070 -0.031 0.518 0.721 -0.576 -0.755 0.123 0.652 -0.706 -0.447 0.114 0.077 -0.261 -0.366 0.416 0.272 -1.192 -0.399 0.674 0.315 -0.637 -0.805 0.624 0.426 -0.316 -0.704 0.309 0.030 -0.509 -0.582 0.685 0.006 -0.911 -0.544 0.830 0.625 -0.428 -0.652 0.109 0.510 -0.408 -0.574 0.203 0.011 -0.234 -0.529 0.535 0.247 -0.874 -0.376 0.582 0.529 -0.404 -0.501 0.130 0.749 -0.015 -0.801 -0.404 0.084 -0.124 -0.457 0.372 0.118 -0.499 -0.108 0.355 0.570 -0.410 -0.572 0.125 0.278 -0.397 -0.338 0.307 -0.007 -0.302 -0.523 0.583 -0.051 -0.693 -0.092 0.564 0.350 -0.503 -0.983 0.599 0.304 -0.452 -0.474 0.394 -0.326 -0.255 -0.483 0.722 -0.112 -0.433 -0.405 0.659 0.633 -0.600 -0.638 0.198 0.447 -0.617 0.041 -0.065 0.209 -0.471 -0.186 0.314 0.128 -0.827 -0.141 0.523 0.468 -0.650 -0.278 0.208 0.570 -0.358 -0.669 0.145 0.094 -0.286 -0.407 0.442 0.028 -0.827 0.029 0.482 0.637 -0.547 -0.598 0.137 0.500 -0.472 -0.403 0.148 0.278 -0.667 -0.121 0.308 0.213 -0.917 -0.139 0.489 0.429 -0.688 -0.730 0.516 0.462 -0.341 -0.517 0.181 -0.065 -0.545 -0.439 0.697 -0.060 -1.035 -0.409 0.848 0.798 -0.576 -1.038 0.142 0.543 -0.297 -0.734 0.173 0.104 -0.374 -0.443 0.504 0.375 -1.032 -0.548 0.614 0.467 -0.595 -0.582 0.365 0.503 -0.157 -0.758 0.130 0.039 -0.332 -0.577 0.593 0.074 -0.771 -0.129 0.533 0.678 -0.587 -0.838 0.233 0.494 -0.491 -0.743 0.359 0.077 -0.529 -0.508 0.631 0.093 -1.107 -0.335 0.745 0.525 -0.568 -0.898 0.433 0.411 -0.432 -0.689 0.388 -0.157 -0.436 -0.536 0.744 0.268 -0.761 -0.522 0.594 Intron LUT 5 4 4 0 0.000 0.654 -0.434 -1.032 0.260 0.835 -0.610 -1.167 0.158 0.054 -0.589 -0.495 0.667 0.566 -1.025 -0.397 0.343 0.481 -0.374 -0.571 0.214 0.549 -0.199 -0.965 0.206 0.400 -0.520 -0.463 0.331 -0.007 -0.883 -0.255 0.700 0.576 -0.491 -0.840 0.308 0.613 -0.655 -0.726 0.300 -0.197 -0.668 -0.714 0.918 0.149 -1.120 -0.445 0.763 0.479 -0.705 -1.044 0.592 0.526 -0.463 -0.892 0.374 0.011 -0.592 -0.506 0.700 0.226 -0.996 -0.491 0.694 0.602 -0.355 -0.884 0.212 0.551 0.018 -0.884 -0.028 0.024 -0.461 -0.547 0.653 0.370 -1.142 -0.425 0.595 0.413 -0.243 -0.581 0.209 0.669 -0.037 -1.188 -0.005 -0.023 -0.296 -0.679 0.657 0.105 -0.472 -0.347 0.504 0.195 0.013 -0.283 0.034 0.416 -0.281 -0.489 0.177 -0.499 -0.381 -0.222 0.738 0.195 -0.425 -0.342 0.403 0.483 -0.449 -1.102 0.489 0.399 -0.483 -0.541 0.354 -0.274 -0.471 -0.713 0.881 0.095 -1.054 -0.441 0.777 0.608 -0.522 -0.910 0.318 0.793 -0.419 -0.927 -0.009 0.163 -0.560 -0.301 0.476 0.308 -1.179 -0.136 0.496 0.410 -0.446 -0.346 0.203 0.736 -0.661 -1.071 0.295 0.230 -0.415 -0.285 0.329 0.011 -1.032 -0.009 0.594 0.368 -0.449 -1.012 0.567 0.508 -0.348 -0.751 0.261 -0.281 -0.746 -0.222 0.785 0.338 -1.184 0.106 0.286 0.679 -0.966 -0.533 0.258 0.524 -0.809 -0.269 0.217 0.072 -0.863 -0.213 0.619 0.279 -1.308 -0.408 0.704 0.703 -0.462 -1.055 0.220 0.833 -0.527 -0.995 0.032 0.194 -0.516 -0.408 0.488 0.626 -1.303 -0.690 0.517 0.358 -0.375 -0.544 0.335 0.447 -0.340 -1.300 0.527 -0.080 -0.344 -0.556 0.665 0.007 -0.816 -0.332 0.707 0.632 -0.364 -0.724 0.094 0.600 -0.499 -0.908 0.315 -0.376 -0.478 0.179 0.464 0.229 -1.080 -0.359 0.656 0.466 -0.500 -1.043 0.512 0.610 -0.594 -1.139 0.440 -0.190 -0.420 -0.628 0.790 0.218 -0.980 -0.665 0.765 0.537 -0.429 -0.588 0.191 0.587 -0.273 -0.960 0.210 -0.039 -0.486 -0.231 0.546 0.325 -1.012 -0.273 0.510 0.348 -0.380 -0.322 0.212 0.335 0.197 -1.491 0.306 0.380 -0.199 -0.600 0.224 0.005 -0.891 0.032 0.521 0.683 -0.514 -0.623 0.064 0.596 -0.367 -0.744 0.158 -0.248 -0.664 -0.630 0.911 0.108 -0.840 -0.109 0.523 0.327 -0.318 -0.774 0.443 0.510 -0.539 -1.060 0.494 -0.216 -0.285 -0.269 0.574 0.043 -0.649 -0.489 0.696 0.589 -0.108 -0.811 -0.003 0.608 -0.177 -0.826 0.039 0.093 -0.394 -0.164 0.356 0.185 -0.797 -0.084 0.427 0.014 -0.057 -0.670 0.485 0.722 0.202 -1.396 -0.287 -0.306 0.188 -0.806 0.566 0.432 -0.964 -0.179 0.328 0.525 -0.290 -0.691 0.168 0.330 -0.151 -0.693 0.292 0.008 -0.137 -0.540 0.482 0.081 -0.844 -0.112 0.545 0.441 -0.140 -1.244 0.392 0.667 -0.672 -0.332 -0.014 -0.163 -0.233 -0.320 0.541 -0.015 -1.072 -0.251 0.760 0.654 -0.548 -0.714 0.180 0.427 -0.516 -0.715 0.430 -0.061 -0.576 0.147 0.337 0.137 -0.540 -0.463 0.572 0.307 -0.469 -0.447 0.386 0.548 -0.340 -0.550 0.092 0.170 -0.155 -0.634 0.414 0.085 -0.921 -0.048 0.529 0.664 -0.393 -0.889 0.156 0.454 -0.229 -0.257 -0.089 -0.061 -0.266 -0.334 0.502 0.259 -0.641 -0.376 0.477 0.598 -0.932 -0.983 0.543 0.746 -0.600 -0.596 0.003 -0.206 -0.450 -0.251 0.642 0.092 -1.093 -0.298 0.725 0.735 -0.387 -1.275 0.211 0.542 -0.197 -1.382 0.365 0.131 -0.454 -0.409 0.507 0.515 -1.315 -0.367 0.479 0.130 -0.065 -0.765 0.445 0.540 0.107 -1.282 0.082 -0.394 -0.069 -0.950 0.822 0.070 -0.871 -0.097 0.554 0.424 -0.286 -0.983 0.414 0.402 -0.295 -1.212 0.519 -0.406 -0.284 -0.288 0.683 0.211 -0.844 -0.417 0.619 0.410 -0.234 -1.153 0.455 0.418 -0.185 -0.921 0.329 -0.191 -0.357 -0.464 0.694 0.205 -1.005 -0.356 0.649 0.642 -0.339 -0.957 0.180 0.788 -0.430 -1.008 0.047 0.358 -0.559 -0.512 0.421 0.437 -1.165 -0.058 0.310 0.249 0.016 -0.468 0.108 0.564 -0.565 -0.621 0.258 0.079 -0.438 -0.747 0.687 -0.201 -0.723 0.116 0.527 0.637 -0.441 -0.922 0.239 0.736 -0.473 -0.777 0.044 -0.043 -0.838 -1.028 0.985 -0.030 -0.884 -0.267 0.720 0.526 -0.593 -1.085 0.511 0.589 -0.711 -0.474 0.220 -0.134 -0.653 -0.103 0.606 0.027 -1.000 -0.474 0.817 0.454 -0.306 -0.612 0.223 0.650 -0.366 -0.535 -0.052 -0.089 -0.227 -0.230 0.436 0.221 -1.145 -0.019 0.480 0.261 -0.174 -0.531 0.290 0.707 -0.222 -0.750 -0.127 0.029 -0.198 -0.434 0.452 0.400 -0.801 -0.158 0.275 0.288 -0.197 -0.165 0.022 0.252 -0.065 -0.354 0.099 -0.310 -0.405 0.111 0.442 0.048 -0.746 0.131 0.351 0.446 -0.177 -1.153 0.382 0.445 -0.429 -0.494 0.246 -0.299 -0.196 -0.515 0.691 0.199 -0.874 -0.310 0.584 0.721 -0.721 -0.504 0.056 0.924 -0.389 -0.838 -0.359 0.136 -0.442 -0.289 0.429 0.688 -1.418 -0.505 0.389 0.501 -0.368 -0.448 0.107 0.689 -0.547 -0.813 0.182 -0.091 -0.111 -0.366 0.443 -0.010 -0.726 0.066 0.438 0.520 0.002 -0.719 -0.063 0.842 -0.503 -0.570 -0.272 -0.119 -0.977 0.136 0.558 0.209 -1.486 0.262 0.365 0.867 -1.180 -0.772 0.201 0.539 -0.364 -0.719 0.217 -0.080 -1.003 -0.294 0.799 0.083 -1.056 -0.192 0.664 0.447 -0.320 -0.320 0.048 0.716 -0.485 -1.000 0.193 -0.229 -0.285 -0.030 0.430 0.387 -1.266 -0.146 0.457 0.125 -0.124 -0.716 0.468 0.254 0.276 -1.236 0.229 -0.351 -0.232 -0.838 0.852 0.111 -0.823 -0.129 0.526 0.213 -0.194 -0.158 0.099 0.338 -0.174 -0.965 0.420 -0.645 -0.451 0.199 0.566 0.134 -0.730 -0.348 0.599 0.328 -0.237 -0.991 0.479 0.467 -0.556 -0.911 0.492 -0.431 -0.436 -0.286 0.765 0.203 -0.976 -0.552 0.730 0.655 -0.459 -0.999 0.259 0.637 -0.565 -1.125 0.390 0.017 -0.397 -0.756 0.711 0.393 -1.167 -0.367 0.552 0.298 -0.441 -0.388 0.344 0.728 -0.191 -1.156 0.026 0.149 -0.488 -0.592 0.599 0.233 -1.203 -0.165 0.583 0.697 -0.493 -0.808 0.133 0.757 -0.606 -0.800 0.110 -0.010 -0.293 -0.335 0.483 0.335 -1.278 -0.418 0.658 0.332 -0.772 -0.949 0.712 0.439 -0.113 -1.168 0.349 -0.011 -0.668 -0.603 0.782 0.055 -0.958 -0.710 0.876 0.627 -0.522 -0.742 0.216 0.551 -0.293 -0.986 0.280 -0.171 -0.383 -0.229 0.577 0.321 -1.155 -0.433 0.643 0.509 -0.492 -0.458 0.186 0.899 -0.095 -1.229 -0.372 -0.018 -0.139 -0.296 0.368 0.271 -0.633 -0.207 0.359 0.550 -0.336 -0.664 0.154 0.322 -0.478 -0.413 0.357 -0.235 -0.248 -0.446 0.654 0.002 -0.853 -0.100 0.596 0.455 -0.716 -1.049 0.620 0.416 -0.448 -0.743 0.417 -0.408 -0.405 -0.421 0.803 0.059 -0.664 -0.528 0.708 0.653 -0.722 -0.944 0.380 0.594 -0.467 -0.491 0.078 -0.011 -0.599 -0.043 0.461 0.228 -0.933 -0.278 0.566 0.351 -0.701 -0.346 0.404 0.605 -0.168 -1.135 0.181 0.119 -0.341 -0.400 0.451 0.182 -0.886 -0.131 0.497 0.584 -0.556 -0.715 0.277 0.559 -0.360 -0.716 0.188 0.060 -0.709 -0.100 0.498 0.369 -1.023 -0.214 0.437 0.502 -0.955 -0.891 0.613 0.437 -0.265 -0.874 0.343 -0.213 -0.659 -0.345 0.780 0.019 -1.172 -0.543 0.893 0.803 -0.570 -1.163 0.183 0.646 -0.237 -1.212 0.208 0.035 -0.413 -0.380 0.542 0.417 -1.108 -0.612 0.629 0.378 -0.614 -0.651 0.496 0.567 -0.086 -1.195 0.188 0.001 -0.300 -0.616 0.618 0.179 -0.832 -0.196 0.520 0.646 -0.540 -1.000 0.318 0.489 -0.292 -1.162 0.415 -0.151 -0.524 -0.343 0.692 0.108 -1.072 -0.438 0.773 0.556 -0.646 -0.987 0.471 0.510 -0.359 -1.155 0.431 -0.195 -0.573 -0.525 0.815 0.265 -0.924 -0.713 0.733 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.368 -0.821 -0.245 0.378 0.331 -0.466 -0.644 0.463 0.566 -0.215 -0.734 0.081 1.212 -1.401 -0.234 -1.137 0.883 -0.436 -0.893 -0.184 0.710 -0.242 -0.669 -0.166 2.000 -10.497 -10.497 -10.497 -10.497 -10.497 -10.497 2.000 -10.497 -10.497 2.000 -10.497 0.240 -0.867 0.395 -0.060 0.427 0.377 -0.877 -0.295 0.118 -0.685 -0.035 0.400 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.466 -0.558 0.095 -0.199 0.494 -0.267 -0.733 0.213 0.398 -0.617 -0.292 0.279 0.521 -0.702 -0.095 0.020 0.392 -0.496 -0.761 0.474 0.295 -0.922 -0.107 0.398 -9.591 -9.591 -9.591 1.999 1.999 -9.591 -9.591 -9.591 1.999 -9.591 -9.591 -9.591 TAG WMM 9 6 4 0 0.000 0.269 -0.381 0.156 -0.132 0.485 -0.373 -0.635 0.245 0.304 -0.445 -0.373 0.332 0.419 -0.711 -0.056 0.124 0.250 -0.366 -0.626 0.472 0.224 -1.001 0.034 0.388 -7.920 -7.920 -7.920 1.996 1.996 -7.920 -7.920 -7.920 -7.920 -7.920 1.996 -7.920 TGA WMM 9 6 4 0 0.000 0.436 -0.514 0.080 -0.168 0.480 -0.343 -0.537 0.173 0.298 -0.532 -0.257 0.313 0.431 -0.652 0.171 -0.168 0.223 -0.158 -0.456 0.271 0.159 -0.692 0.133 0.223 -8.827 -8.827 -8.827 1.998 -8.827 -8.827 1.998 -8.827 1.998 -8.827 -8.827 -8.827 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/ixodesA.hmm0000644000175000017500000013216411424066010015453 0ustar moellermoellerzoeHMM ixodesA.hmm 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.879195 Inter Esngl 0.120805 Intron Eterm 0.242593 Intron Exon 0.757407 0.503817 0.320611 0.175573 0.738739 0.139640 0.121622 0.632075 0.226415 0.141509 0.654321 0.123457 0.222222 0.746528 0.253472 0.777027 0.222973 0.759615 0.240385 Einit 2 DEFINED 0 249 -7.997 -7.927 -7.860 -7.795 -7.734 -7.675 -7.619 -7.564 -7.512 -7.461 -7.412 -7.384 -7.356 -7.328 -7.301 -7.275 -7.249 -7.223 -7.198 -7.173 -7.149 -7.157 -7.165 -7.173 -7.182 -7.190 -7.198 -7.206 -7.215 -7.223 -7.232 -7.240 -7.249 -7.257 -7.266 -7.275 -7.283 -7.292 -7.301 -7.310 -7.319 -7.315 -7.310 -7.306 -7.301 -7.297 -7.292 -7.288 -7.283 -7.279 -7.275 -7.283 -7.292 -7.301 -7.310 -7.319 -7.328 -7.337 -7.346 -7.356 -7.365 -7.398 -7.431 -7.466 -7.501 -7.538 -7.575 -7.613 -7.652 -7.693 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.734 -7.752 -7.771 -7.789 -7.808 -7.827 -7.846 -7.866 -7.886 -7.906 -7.927 -7.954 -7.983 -8.011 -8.041 -8.071 -8.102 -8.133 -8.165 -8.198 -8.231 -8.215 -8.198 -8.181 -8.165 -8.149 -8.133 -8.117 -8.102 -8.086 -8.071 -8.079 -8.086 -8.094 -8.102 -8.109 -8.117 -8.125 -8.133 -8.141 -8.149 -8.141 -8.133 -8.125 -8.117 -8.109 -8.102 -8.094 -8.086 -8.079 -8.071 -8.094 -8.117 -8.141 -8.165 -8.190 -8.215 -8.240 -8.266 -8.292 -8.319 -8.283 -8.248 -8.215 -8.181 -8.149 -8.117 -8.086 -8.056 -8.026 -7.997 -8.004 -8.011 -8.019 -8.026 -8.034 -8.041 -8.048 -8.056 -8.063 -8.071 -8.086 -8.102 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.215 -8.231 -8.240 -8.248 -8.257 -8.266 -8.274 -8.283 -8.292 -8.301 -8.310 -8.319 -8.365 -8.412 -8.461 -8.511 -8.564 -8.618 -8.675 -8.734 -8.795 -8.859 -8.899 -8.940 -8.982 -9.026 -9.071 -9.117 -9.165 -9.214 -9.265 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.318 -9.337 -9.355 -9.374 -9.392 -9.412 -9.431 -9.451 -9.470 -9.491 -9.511 -9.574 -9.640 -9.709 -9.782 -9.859 -9.940 -10.025 -10.116 -10.213 -10.318 -10.354 -10.392 -10.430 -10.470 -10.510 -10.552 -10.595 -10.639 -10.685 -10.732 -10.832 -10.938 -11.054 -11.179 -11.316 -11.468 -11.637 -11.830 -12.051 GEOMETRIC 250 -1 124 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -9.356 -9.285 -9.218 -9.154 -9.093 -9.034 -8.977 -8.923 -8.871 -8.820 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.771 -8.759 -8.747 -8.735 -8.724 -8.712 -8.701 -8.689 -8.678 -8.667 -8.656 -8.612 -8.570 -8.528 -8.488 -8.449 -8.411 -8.374 -8.338 -8.303 -8.269 -8.277 -8.286 -8.294 -8.303 -8.312 -8.321 -8.329 -8.338 -8.347 -8.356 -8.303 -8.252 -8.202 -8.155 -8.108 -8.063 -8.020 -7.978 -7.937 -7.897 -7.839 -7.783 -7.730 -7.678 -7.628 -7.580 -7.534 -7.488 -7.445 -7.402 -7.411 -7.421 -7.430 -7.440 -7.449 -7.459 -7.469 -7.479 -7.488 -7.498 -7.493 -7.488 -7.484 -7.479 -7.474 -7.469 -7.464 -7.459 -7.454 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.449 -7.503 -7.559 -7.618 -7.678 -7.742 -7.808 -7.877 -7.950 -8.027 -8.108 -8.086 -8.063 -8.042 -8.020 -7.999 -7.978 -7.957 -7.937 -7.917 -7.897 -7.903 -7.910 -7.917 -7.923 -7.930 -7.937 -7.943 -7.950 -7.957 -7.964 -7.978 -7.992 -8.006 -8.020 -8.034 -8.049 -8.063 -8.078 -8.093 -8.108 -8.093 -8.078 -8.063 -8.049 -8.034 -8.020 -8.006 -7.992 -7.978 -7.964 -7.992 -8.020 -8.049 -8.078 -8.108 -8.139 -8.170 -8.202 -8.235 -8.269 -8.294 -8.321 -8.347 -8.374 -8.402 -8.430 -8.459 -8.488 -8.518 -8.549 -8.570 -8.591 -8.612 -8.634 -8.656 -8.678 -8.701 -8.724 -8.747 -8.771 -8.820 -8.871 -8.923 -8.977 -9.034 -9.093 -9.154 -9.218 -9.285 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.356 -9.392 -9.430 -9.468 -9.508 -9.548 -9.590 -9.633 -9.678 -9.723 -9.771 -9.819 -9.870 -9.922 -9.977 -10.033 -10.092 -10.154 -10.218 -10.285 -10.355 -10.392 -10.429 -10.467 -10.507 -10.548 -10.589 -10.632 -10.677 -10.722 -10.770 -10.722 -10.677 -10.632 -10.589 -10.548 -10.507 -10.467 -10.429 -10.392 -10.355 -10.319 -10.285 -10.251 -10.218 -10.185 -10.154 -10.123 -10.092 -10.063 GEOMETRIC 250 -1 190 Exon 2 DEFINED 0 249 -12.445 -12.183 -11.961 -11.768 -11.598 -11.446 -11.309 -11.184 -11.068 -10.961 -10.862 -10.754 -10.653 -10.559 -10.471 -10.388 -10.309 -10.235 -10.164 -10.096 -10.032 -9.815 -9.626 -9.459 -9.310 -9.174 -9.050 -8.936 -8.831 -8.732 -8.640 -8.560 -8.484 -8.412 -8.343 -8.277 -8.215 -8.154 -8.097 -8.041 -7.988 -7.951 -7.915 -7.880 -7.846 -7.813 -7.781 -7.749 -7.718 -7.687 -7.657 -7.603 -7.550 -7.499 -7.450 -7.403 -7.357 -7.313 -7.269 -7.228 -7.187 -7.186 -7.184 -7.183 -7.182 -7.181 -7.179 -7.178 -7.177 -7.176 -7.174 -7.164 -7.155 -7.145 -7.135 -7.125 -7.116 -7.106 -7.097 -7.087 -7.078 -7.062 -7.046 -7.030 -7.014 -6.999 -6.984 -6.968 -6.953 -6.938 -6.924 -6.931 -6.938 -6.946 -6.953 -6.961 -6.968 -6.976 -6.984 -6.991 -6.999 -7.007 -7.014 -7.022 -7.030 -7.038 -7.046 -7.054 -7.062 -7.070 -7.078 -7.112 -7.147 -7.183 -7.220 -7.257 -7.296 -7.336 -7.377 -7.419 -7.462 -7.487 -7.512 -7.537 -7.563 -7.589 -7.616 -7.643 -7.671 -7.700 -7.728 -7.751 -7.773 -7.796 -7.819 -7.842 -7.866 -7.891 -7.915 -7.941 -7.966 -7.981 -7.997 -8.012 -8.028 -8.044 -8.060 -8.076 -8.092 -8.109 -8.125 -8.111 -8.097 -8.083 -8.069 -8.055 -8.041 -8.028 -8.014 -8.001 -7.988 -8.021 -8.055 -8.090 -8.125 -8.162 -8.199 -8.238 -8.277 -8.318 -8.360 -8.368 -8.377 -8.385 -8.394 -8.403 -8.412 -8.420 -8.429 -8.438 -8.447 -8.484 -8.521 -8.560 -8.599 -8.640 -8.682 -8.725 -8.769 -8.815 -8.862 -8.895 -8.928 -8.962 -8.997 -9.032 -9.069 -9.106 -9.145 -9.184 -9.225 -9.220 -9.215 -9.209 -9.204 -9.199 -9.194 -9.189 -9.184 -9.179 -9.174 -9.220 -9.267 -9.315 -9.365 -9.417 -9.471 -9.527 -9.586 -9.647 -9.710 -9.725 -9.739 -9.754 -9.769 -9.784 -9.799 -9.815 -9.830 -9.846 -9.862 -9.870 -9.878 -9.886 -9.894 -9.903 -9.911 -9.919 -9.928 -9.936 -9.945 -9.970 -9.996 -10.023 -10.050 -10.078 -10.106 -10.135 -10.164 -10.194 GEOMETRIC 250 -1 122 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 1366 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.141 -0.133 -0.242 0.189 0.052 -0.157 -0.346 0.355 -0.087 -0.065 -0.373 0.412 -0.122 -0.122 -0.169 0.347 0.021 -0.110 -0.319 0.330 -0.054 0.132 -0.661 0.388 -0.205 -0.065 -0.503 0.556 -0.346 0.052 -0.280 0.436 -0.612 -0.032 -0.319 0.647 -0.645 -0.099 -0.255 0.667 -1.021 0.021 -0.401 0.795 -0.748 0.000 -0.401 0.720 -0.938 0.092 -0.748 0.861 -1.110 0.122 -0.373 0.745 -1.110 0.072 -0.473 0.819 -1.181 0.160 -0.458 0.777 -1.087 0.102 -0.784 0.907 -1.473 0.072 -0.712 0.984 -1.065 0.207 -0.784 0.837 -1.387 0.339 -0.628 0.771 -1.255 0.404 -0.645 0.694 -1.503 -0.145 -1.133 1.193 -2.333 0.102 -1.766 1.283 -0.748 -0.181 0.771 -0.293 -3.766 1.795 -6.087 -1.181 1.992 -7.087 -7.087 -7.087 -7.087 -7.087 1.992 -7.087 -0.293 -0.645 1.047 -1.065 -0.217 -0.099 -0.306 0.482 0.031 0.160 0.198 -0.488 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.979 0.219 0.865 -0.979 -0.655 0.977 -0.518 -0.518 -0.070 0.667 -0.070 -0.977 -2.285 0.844 0.037 -0.037 -1.585 0.000 1.078 -0.848 -0.193 0.322 0.000 -0.193 -0.138 0.126 0.541 -0.874 -2.687 0.706 0.561 -0.439 -0.072 0.216 0.421 -0.867 -0.251 0.673 -0.354 -0.354 0.608 0.193 -0.627 -0.544 -1.448 0.011 1.156 -1.333 -3.087 1.613 -3.087 -0.503 -1.138 0.126 0.628 -0.138 -2.907 0.415 0.263 0.415 -1.615 1.243 -1.030 -0.293 -1.525 0.445 1.053 -2.211 -0.720 0.638 0.369 -0.876 -0.968 0.934 0.181 -1.170 -2.606 1.046 0.126 -0.556 -0.795 0.403 0.872 -1.883 -0.113 0.482 0.130 -0.774 -1.206 0.638 0.675 -1.273 -2.581 0.406 1.096 -1.434 -0.655 0.715 0.521 -1.793 -1.578 1.063 -0.495 -0.206 -0.216 1.006 -0.603 -1.081 -2.722 0.585 0.862 -0.915 -5.366 1.742 -5.366 -0.722 -1.807 0.488 0.126 0.288 -5.160 0.906 0.673 -0.990 -3.292 1.211 -0.417 -0.262 -0.671 0.184 1.036 -2.436 -1.144 0.570 0.552 -0.744 -1.096 0.772 0.440 -1.096 -1.543 0.728 0.457 -0.674 -0.902 0.331 0.946 -1.832 -0.020 0.415 0.270 -1.074 -1.547 0.739 0.384 -0.547 -2.165 0.347 1.014 -1.043 -0.555 0.555 0.634 -1.743 -0.648 0.870 -0.009 -0.889 -0.020 0.967 -0.713 -1.157 -2.495 0.063 1.265 -1.417 -4.989 1.684 -4.989 -0.465 -1.711 0.799 0.137 -0.226 -4.954 0.801 0.690 -0.706 -3.006 1.044 -0.814 0.316 -0.138 0.447 0.241 -0.874 0.222 0.585 -0.263 -1.000 -0.415 0.322 0.000 0.000 -1.585 0.830 -0.170 0.000 -1.346 0.462 0.713 -0.761 0.395 0.132 0.132 -1.020 -0.350 0.576 0.028 -0.503 -1.322 0.456 0.778 -0.959 -0.259 0.549 0.256 -0.979 -0.774 1.167 -0.499 -1.115 0.033 0.661 -0.426 -0.619 -2.539 0.216 0.818 -0.147 -2.524 1.724 -2.524 -1.524 -0.290 0.241 0.126 -0.138 -2.392 1.067 0.193 -0.807 -0.644 0.678 -0.184 -0.184 -1.420 0.580 0.782 -1.282 0.112 -0.040 0.314 -0.509 -0.237 -0.138 0.656 -0.585 -0.883 0.365 0.818 -1.298 -0.170 0.152 0.830 -2.170 -0.439 0.313 0.068 -0.043 0.107 0.000 0.206 -0.379 -1.865 0.650 0.754 -1.087 -0.889 0.534 0.821 -2.027 -0.674 0.792 -0.112 -0.481 0.326 0.841 -0.896 -1.259 -1.985 0.288 0.788 -0.322 -2.907 1.617 -2.907 -0.585 -0.342 -0.449 0.310 0.310 -3.044 0.862 0.656 -1.044 -1.828 0.243 0.243 0.435 -1.117 0.160 1.137 -2.173 -1.040 0.835 0.272 -0.936 -0.696 0.637 0.304 -0.755 -2.812 1.005 0.309 -0.708 -0.535 -0.130 1.078 -1.815 0.188 0.354 0.040 -0.848 -0.553 0.508 0.281 -0.553 -2.870 0.556 0.975 -1.227 -0.867 0.411 0.797 -1.378 -0.705 0.950 -0.250 -0.705 0.058 0.795 -0.417 -1.074 -1.893 0.692 0.639 -0.842 -4.615 1.812 -4.615 -1.293 -1.189 0.832 0.183 -0.632 -5.098 0.856 0.809 -1.291 -2.668 1.319 -0.569 -0.569 -0.511 0.074 0.782 -0.926 -0.585 0.085 0.763 -0.796 -0.885 0.773 0.222 -0.778 -2.392 0.562 0.652 -0.392 -1.435 0.531 0.887 -1.573 -0.103 0.272 0.468 -1.065 -1.421 0.859 0.415 -1.059 -2.044 0.334 1.093 -1.459 -0.985 0.724 0.587 -1.551 -0.380 0.669 0.068 -0.752 0.000 1.000 -0.933 -1.070 -1.544 0.407 0.958 -1.364 -4.170 1.688 -4.170 -0.585 -1.467 0.303 0.872 -0.800 -4.044 0.910 0.278 -0.237 -3.248 1.074 -0.788 0.276 -1.392 0.308 1.000 -1.392 -0.346 0.239 0.462 -0.609 -1.907 0.678 -0.100 0.263 -1.209 0.598 -0.040 0.112 -0.110 -0.036 0.730 -1.188 0.057 0.295 -0.059 -0.371 -0.980 0.551 -0.342 0.310 -2.420 0.685 0.873 -1.420 0.035 0.403 0.169 -0.919 -0.315 0.737 -0.585 -0.213 0.109 0.614 -0.453 -0.598 -1.841 0.633 0.689 -0.841 -2.954 1.631 -2.954 -0.632 -0.256 0.528 -0.256 -0.178 -3.555 1.030 0.253 -0.555 -1.828 0.804 0.243 -0.342 0.325 0.269 0.149 -1.205 -0.688 0.464 0.142 -0.158 0.093 0.415 -0.322 -0.322 -0.974 0.804 0.126 -0.611 -0.322 -0.042 0.729 -0.807 -0.075 0.872 -0.298 -1.298 -0.322 0.617 0.093 -0.737 -1.273 0.511 0.511 -0.443 0.102 0.102 0.187 -0.483 -0.885 0.807 0.059 -0.585 0.158 0.621 -0.893 -0.308 -1.267 0.318 0.640 -0.360 -2.322 1.678 -2.322 -1.322 -1.358 -0.036 0.549 0.227 -2.459 0.862 0.126 -0.138 -3.170 0.830 -0.363 0.415 -0.894 0.167 1.090 -2.248 -0.563 0.819 0.065 -0.963 -1.285 1.054 0.000 -0.963 -2.300 1.044 0.267 -0.913 -1.096 0.605 0.732 -1.511 -0.652 0.628 0.295 -0.759 -0.287 0.797 -0.346 -0.609 -2.679 0.606 1.007 -1.679 -0.807 0.618 0.678 -1.767 -0.853 1.113 -0.406 -0.921 -0.347 0.942 -0.316 -1.032 -1.828 0.632 0.804 -1.243 -4.644 1.766 -4.644 -0.943 -1.398 0.574 0.602 -0.706 -4.954 0.904 0.718 -1.147 -2.619 1.407 -1.619 -0.217 -0.524 0.224 0.898 -1.871 -0.585 0.637 0.366 -1.032 -0.106 0.126 0.541 -0.929 -1.000 0.848 0.222 -0.907 -2.044 0.580 0.862 -1.170 -0.468 0.669 0.210 -0.916 -1.369 0.920 0.105 -0.632 -2.097 0.591 0.756 -0.807 -0.941 0.791 0.402 -1.225 -0.358 0.730 -0.358 -0.358 0.526 0.460 -0.796 -0.718 -1.919 0.605 0.914 -1.597 -3.392 1.608 -3.392 -0.392 -0.252 0.748 -0.340 -0.532 -3.459 1.184 0.447 -1.874 -2.170 1.333 -0.755 -0.585 0.170 0.585 -0.193 -1.000 0.107 0.621 -0.379 -0.700 -2.524 1.284 -0.939 -0.202 -2.954 0.631 0.046 0.368 -1.544 0.515 0.825 -1.129 0.082 0.667 -0.280 -0.918 -0.954 1.133 -0.495 -0.784 -2.409 0.050 1.114 -0.709 -0.293 0.671 -0.091 -0.615 -0.610 1.049 -1.051 -0.334 0.087 0.755 -1.000 -0.415 -2.358 0.730 0.597 -0.657 -2.907 1.617 -2.907 -0.585 -2.059 0.678 0.356 -0.184 -2.585 1.000 0.222 -0.585 -1.481 0.519 0.021 0.256 -0.170 0.152 0.637 -1.170 -0.059 0.163 -0.322 0.163 -1.459 0.541 0.348 -0.138 -1.322 0.678 0.138 -0.152 -0.051 -0.536 0.464 -0.051 -0.170 0.000 0.737 -1.170 -0.766 0.234 0.613 -0.503 -1.807 0.363 0.652 -0.222 -0.295 0.637 0.333 -1.433 -1.233 0.693 0.253 -0.385 0.312 0.601 -0.273 -1.273 -1.624 0.112 0.791 -0.209 -1.000 0.585 -1.000 0.585 -0.737 -2.322 0.678 0.678 -1.170 0.830 -0.170 -0.170 -2.585 1.000 -0.585 0.222 -1.046 0.238 1.082 -2.193 -1.352 1.006 0.041 -0.807 -1.104 0.822 -0.069 -0.297 -2.360 1.082 0.159 -0.807 -1.602 0.576 0.960 -2.087 -0.503 0.531 0.059 -0.310 -0.528 0.553 0.263 -0.644 -3.066 0.549 0.967 -1.112 -0.392 0.760 0.320 -1.755 -1.127 1.077 -0.366 -0.607 -0.424 1.000 -0.459 -0.923 -2.336 0.785 0.881 -2.073 -5.340 1.800 -5.340 -1.092 -1.700 0.832 0.300 -0.554 -5.401 1.091 0.406 -0.941 -4.235 1.428 -0.820 -0.535 -1.082 0.369 0.959 -1.778 -0.784 0.483 0.611 -1.016 -0.821 0.827 -0.084 -0.480 -2.196 0.721 0.588 -0.666 -1.440 0.448 0.925 -1.440 -0.984 0.935 0.193 -1.186 -1.585 0.802 0.415 -0.762 -2.379 0.547 0.924 -1.156 -0.835 0.766 0.422 -1.325 -0.803 1.013 -0.626 -0.396 -0.228 0.994 -0.661 -0.939 -2.355 0.354 0.989 -0.885 -4.492 1.775 -4.492 -1.032 -1.062 0.725 0.260 -0.576 -4.539 1.015 0.548 -1.080 -2.544 0.893 -0.485 0.330 -0.492 0.209 0.756 -1.170 -0.044 0.278 0.278 -0.722 0.126 0.348 -0.138 -0.459 -3.459 0.710 0.710 -0.652 -0.963 -0.012 0.937 -0.783 -0.562 0.216 0.294 -0.096 0.133 -0.254 0.046 0.046 -2.365 0.443 0.805 -0.517 -0.347 0.543 0.448 -1.347 -0.648 0.712 -0.128 -0.307 -0.439 0.838 -0.747 -0.185 -2.134 0.696 0.741 -1.056 -2.954 1.438 -2.954 0.046 -0.143 0.520 -0.143 -0.406 -3.044 0.541 0.656 -0.237 -2.150 0.757 0.243 -0.150 frame1 LUT 5 4 4 0 0.000 -0.511 -0.132 0.627 -0.248 0.193 0.051 0.237 -0.637 0.139 -0.109 0.318 -0.465 -1.322 0.138 0.585 0.000 -0.684 -0.170 0.678 -0.170 0.687 -0.097 -0.945 -0.097 -0.611 0.467 0.126 -0.196 -1.104 0.159 0.033 0.481 0.737 0.115 -1.000 -0.415 0.119 0.119 0.263 -0.670 0.485 0.000 0.093 -0.907 -1.170 0.290 0.531 -0.170 0.222 -0.263 0.415 -0.585 0.559 -0.482 0.074 -0.400 -0.021 0.284 0.213 -0.649 -0.392 0.415 0.415 -0.807 0.415 -0.778 0.807 -1.585 0.104 -0.159 0.578 -0.896 -0.115 0.206 0.206 -0.379 -1.954 0.631 0.505 -0.369 0.193 0.100 0.193 -0.637 0.553 0.032 0.032 -1.032 -0.449 0.243 0.551 -0.690 -1.322 0.444 0.526 -0.322 -0.222 0.608 0.515 -2.392 0.287 -0.561 -0.182 0.287 0.770 0.239 -0.471 -1.346 -0.722 0.415 0.415 -0.459 0.541 0.126 0.126 -1.459 0.569 -0.431 -0.199 -0.147 -0.123 0.114 0.496 -0.761 -1.087 0.787 0.135 -0.503 0.244 -0.718 0.789 -1.059 0.204 -0.166 0.383 -0.617 -0.080 -0.308 0.443 -0.173 -0.807 -0.670 1.041 -0.429 -0.408 0.213 0.535 -0.649 0.623 -0.489 0.081 -0.536 -0.263 0.000 0.415 -0.263 -1.078 0.144 0.752 -0.441 0.014 -0.237 0.925 -2.044 0.528 -0.472 0.160 -0.472 -0.032 -0.032 0.316 -0.322 -1.030 0.292 0.473 -0.155 0.000 0.778 -0.222 -1.222 0.322 -0.415 0.059 -0.061 -0.433 0.245 0.591 -0.816 -1.459 0.678 0.678 -1.196 0.000 0.000 0.000 0.000 0.160 0.082 0.082 -0.387 0.000 0.000 0.000 0.000 -0.907 -0.907 0.678 0.415 0.052 0.052 -0.170 0.052 -0.363 0.637 0.152 -0.848 -1.369 -0.254 1.000 -0.369 -0.503 0.234 0.720 -1.087 0.000 0.000 0.000 0.000 0.300 -0.963 0.037 0.300 0.216 -0.147 0.368 -0.632 -0.807 0.778 0.193 -0.807 0.541 0.126 0.126 -1.459 0.018 0.220 0.340 -0.844 -0.209 -0.402 0.791 -0.624 -0.948 -0.433 1.245 -1.433 -0.030 -0.631 0.891 -0.941 0.270 -0.177 0.202 -0.397 0.290 -0.104 0.422 -0.977 -0.482 -0.663 1.131 -1.110 0.333 0.056 0.221 -0.901 0.591 -0.372 0.024 -0.506 -0.256 -0.283 0.847 -0.882 -1.334 0.126 1.012 -1.012 -0.127 -0.127 0.754 -1.053 0.286 -0.275 0.239 -0.370 0.330 -0.281 0.636 -1.451 -1.044 0.014 0.894 -0.629 -0.115 0.000 0.469 -0.531 0.323 -0.185 0.023 -0.229 0.087 -0.101 0.402 -0.547 -1.899 0.160 0.891 -0.396 -0.446 -0.309 1.065 -1.446 0.374 0.172 -0.196 -0.506 -0.007 0.156 0.143 -0.347 -1.075 0.577 0.641 -1.075 -0.211 -0.442 0.892 -0.878 0.626 -1.037 0.486 -0.815 0.225 -0.459 0.461 -0.459 -1.459 0.241 0.585 -0.067 0.029 0.029 0.671 -1.445 0.730 -0.513 0.012 -0.661 -0.093 -0.061 0.605 -0.778 -0.858 -0.121 0.949 -0.743 -0.078 -0.078 0.559 -0.663 0.494 -0.452 0.046 -0.272 -0.258 -0.028 0.723 -0.910 -1.282 0.782 0.544 -1.282 0.208 -0.729 0.936 -1.610 0.227 -0.307 0.430 -0.570 0.222 0.022 0.295 -0.759 -1.386 0.242 0.798 -0.524 -0.404 0.366 0.637 -1.322 0.298 -0.356 0.565 -0.970 -0.342 -0.196 0.658 -0.395 -1.047 0.331 0.472 -0.199 -0.076 0.101 0.704 -1.512 0.388 -0.674 0.542 -0.717 -0.081 -0.081 0.721 -1.118 -0.874 -0.026 0.742 -0.322 -0.459 -0.290 1.064 -1.459 0.493 -0.433 0.168 -0.457 -0.334 0.086 0.676 -0.869 -1.354 0.564 0.724 -1.064 0.000 0.000 0.000 0.000 0.285 -0.003 0.131 -0.538 0.000 0.000 0.000 0.000 -1.087 -0.503 1.270 -1.280 0.126 0.306 -0.196 -0.322 0.322 -0.069 0.022 -0.356 -0.541 -0.263 0.719 -0.263 -0.796 0.122 0.678 -0.442 0.000 0.000 0.000 0.000 -0.037 0.219 0.163 -0.431 0.309 -0.266 0.330 -0.572 -1.087 0.000 0.867 -0.503 -0.524 -0.524 0.936 -0.524 0.200 -0.180 0.248 -0.356 -0.275 -0.218 0.809 -0.831 -2.087 -0.672 1.386 -0.935 -0.010 -0.090 0.688 -1.132 0.400 0.195 -0.065 -0.788 0.229 0.310 0.239 -1.295 -1.744 0.457 1.021 -1.744 0.161 -0.080 0.216 -0.369 0.395 -0.190 0.132 -0.489 -0.365 -0.107 0.681 -0.531 -0.807 0.193 0.814 -0.923 0.310 -0.342 0.374 -0.565 0.504 -0.475 0.245 -0.562 0.356 0.263 0.093 -1.141 -1.744 0.326 0.888 -0.744 -0.268 0.442 0.442 -1.143 0.453 0.053 0.053 -0.846 0.272 -0.151 0.434 -0.888 -1.073 -0.336 1.042 -0.571 -0.252 0.304 0.748 -2.018 0.392 0.017 0.104 -0.735 0.158 0.079 -0.022 -0.247 -0.954 0.569 0.438 -0.632 -0.459 0.126 0.628 -0.652 0.265 -0.224 0.397 -0.677 -0.467 0.091 0.386 -0.145 -0.982 0.504 0.451 -0.496 -0.032 0.093 0.596 -1.170 0.629 -0.229 -0.456 -0.199 0.017 0.051 0.647 -1.375 -0.862 0.379 0.632 -0.737 0.163 0.057 0.604 -1.644 0.612 -0.776 0.129 -0.331 -0.253 0.051 0.594 -0.699 -0.974 0.576 0.710 -1.459 -0.308 0.020 0.835 -1.342 0.077 -0.158 0.351 -0.373 -0.008 -0.078 0.467 -0.565 -0.841 0.311 0.847 -1.311 -0.782 0.274 0.596 -0.519 0.421 -0.154 0.099 -0.533 -0.598 0.000 0.668 -0.415 -1.313 0.380 0.749 -0.700 -0.155 0.243 0.614 -1.367 0.439 -0.200 -0.044 -0.314 -0.194 0.193 0.720 -1.573 -2.044 0.229 0.925 -0.542 -0.290 0.126 0.541 -0.652 0.467 -0.483 0.102 -0.270 -0.157 0.122 0.537 -0.826 -1.602 0.497 0.983 -1.824 0.000 0.000 0.000 0.000 0.339 -0.205 0.420 -0.918 0.000 0.000 0.000 0.000 -0.222 -0.637 0.948 -0.807 0.148 -0.215 0.370 -0.437 0.382 -0.033 -0.033 -0.430 -0.405 0.140 0.671 -0.860 -0.700 0.206 0.791 -1.000 0.000 0.000 0.000 0.000 0.188 -0.094 0.122 -0.259 0.291 0.169 0.081 -0.749 -0.747 0.146 0.969 -1.555 0.152 0.152 0.637 -2.170 0.365 -0.044 -0.114 -0.290 -0.322 -0.074 0.632 -0.515 -1.180 -0.180 1.160 -1.180 -0.147 -0.369 0.853 -0.954 0.705 -0.054 -0.295 -0.755 0.300 0.000 0.469 -1.379 -1.248 -0.248 1.074 -0.663 -0.459 0.415 0.541 -1.044 0.322 -0.585 0.415 -0.415 -0.585 0.067 0.608 -0.392 0.126 -0.138 0.710 -1.459 -0.585 0.000 0.000 0.415 0.659 -0.441 0.074 -0.663 -0.663 -0.663 0.337 0.559 -0.138 -0.138 0.541 -0.459 0.830 -1.170 -0.170 -0.170 0.263 -0.100 0.181 -0.447 0.549 0.102 -0.036 -1.036 -0.807 -0.322 1.041 -0.807 -0.202 -0.354 0.936 -1.202 0.015 0.185 0.288 -0.663 0.165 0.000 0.541 -1.237 -1.492 0.596 0.596 -0.684 0.082 -0.280 0.787 -1.350 0.230 0.074 0.074 -0.470 -0.245 -0.013 0.402 -0.245 -1.644 0.231 0.579 0.019 -0.104 0.033 0.822 -1.841 0.621 -0.186 -0.186 -0.508 -0.406 0.272 0.732 -1.406 -1.755 0.946 0.415 -1.170 0.348 0.348 0.126 -1.459 0.345 -0.277 0.232 -0.454 -0.508 0.492 0.492 -1.044 -0.865 0.135 0.720 -0.503 -0.107 -0.284 0.778 -0.900 0.008 0.154 0.181 -0.418 -0.051 0.435 0.435 -1.595 -1.259 -0.259 1.104 -0.744 0.052 0.103 0.493 -1.054 0.405 -0.209 0.233 -0.655 -0.322 -0.611 0.974 -0.781 -0.895 0.150 0.963 -1.310 -0.297 0.038 0.572 -0.572 0.542 -0.285 -0.084 -0.359 -0.190 -0.020 0.511 -0.489 -1.619 -0.104 0.744 0.097 0.300 -0.379 0.300 -0.379 0.312 -0.017 0.142 -0.585 -0.200 -0.101 0.693 -0.785 -1.402 0.038 0.878 -0.402 0.000 0.000 0.000 0.000 0.048 0.168 0.048 -0.306 0.000 0.000 0.000 0.000 -0.663 0.074 0.922 -1.248 0.263 0.000 0.263 -0.737 0.361 -0.532 0.052 -0.018 -0.423 -0.075 0.702 -0.561 -1.087 -0.087 1.135 -1.350 0.000 0.000 0.000 0.000 0.229 -0.273 -0.051 0.049 -0.036 0.227 0.343 -0.773 -1.459 0.348 1.000 -1.459 0.415 -0.070 0.193 -0.807 0.286 0.041 -0.070 -0.322 -0.082 -0.082 0.737 -1.170 -0.977 0.271 0.723 -0.655 frame2 LUT 5 4 4 0 0.000 0.882 -0.424 -1.213 -0.029 0.252 0.000 -0.692 0.252 0.454 0.031 -0.394 -0.238 -0.182 -0.075 0.024 0.205 0.633 -0.308 -1.133 0.246 -0.173 -0.409 -0.441 0.699 0.719 -0.700 -0.379 -0.045 -0.017 -0.375 -0.090 0.380 0.914 -0.246 -0.978 -0.385 0.174 -0.207 -0.348 0.286 0.758 -0.056 -0.408 -0.753 -0.151 -0.220 -0.408 0.572 0.893 -0.807 -1.807 0.363 -0.115 0.469 -0.893 0.206 0.219 0.077 0.026 -0.389 -0.858 -0.858 -0.858 1.229 0.554 -0.397 -0.216 -0.134 0.074 0.000 -0.248 0.144 0.913 -0.161 -1.602 -0.161 -1.615 0.385 -0.293 0.633 0.788 -0.275 -0.995 -0.082 -0.097 -0.807 -0.313 0.756 0.296 -0.704 0.193 0.023 -0.544 -0.085 0.156 0.330 -0.170 0.259 -0.012 -0.115 0.249 0.101 -0.787 0.213 0.237 -0.298 0.041 -0.030 -0.076 0.892 -0.793 -0.693 0.290 0.531 -0.848 -0.363 -0.078 0.559 -0.441 -0.248 -0.383 0.181 0.047 0.093 -1.492 0.415 -0.170 0.508 0.216 -0.369 0.046 0.046 -0.126 0.000 0.000 0.115 0.393 0.021 0.104 -0.744 -0.544 0.678 -0.807 0.193 0.444 -0.315 -0.430 0.128 0.538 -0.096 -0.431 -0.199 0.526 -0.364 0.221 -0.696 -1.041 0.303 -0.041 0.388 0.333 -0.234 -0.345 0.141 -0.170 -0.170 -0.170 0.415 0.501 -0.022 -0.379 -0.267 -0.585 0.807 -1.000 0.115 0.621 -0.115 -0.379 -0.379 0.046 0.046 -0.369 0.216 -0.091 0.193 0.086 -0.222 -0.926 0.559 -1.248 0.659 0.541 -0.722 -0.044 -0.044 -0.888 0.112 0.491 -0.040 0.159 0.159 -0.619 0.159 -0.807 0.778 -2.392 0.608 0.743 -0.227 -1.111 0.013 0.247 -0.597 0.024 0.183 0.525 -0.162 -0.521 -0.044 -0.307 0.099 -0.044 0.204 0.559 -0.322 -0.926 0.263 0.120 -0.340 -0.340 0.415 0.156 -0.020 -0.251 0.083 -0.143 0.482 -0.921 0.226 0.491 -0.209 -0.402 -0.040 0.161 0.548 -0.452 -0.539 0.336 0.193 -0.392 -0.263 -0.254 0.294 -1.369 0.631 0.563 -0.437 -0.322 -0.022 -0.070 0.193 -0.977 0.482 0.481 -0.204 -0.311 -0.104 0.222 0.000 -0.585 0.222 0.347 -0.302 -0.335 0.169 -0.047 0.133 -0.539 0.319 0.469 -0.508 0.016 -0.150 0.160 -0.472 -0.271 0.415 0.404 -0.181 -0.562 0.161 0.421 0.005 -0.717 0.070 0.322 0.305 -0.181 -0.661 0.008 -0.418 -0.189 0.453 0.415 0.415 -1.392 -0.070 -0.303 0.434 -0.303 0.038 -0.283 0.058 -0.020 0.202 -1.322 0.794 -0.322 0.093 0.490 0.303 -0.555 -0.555 0.303 0.400 -1.095 -0.031 0.353 0.240 -0.517 -0.246 -0.026 0.167 -0.373 0.167 0.820 -0.180 -0.750 -0.402 0.219 -0.208 -0.311 0.219 0.839 -0.794 -0.343 -0.241 -0.672 0.282 -0.503 0.537 0.300 0.300 -0.227 -0.548 -0.300 0.672 -0.752 0.000 0.794 0.000 -0.585 -0.737 -0.363 1.052 -0.848 -0.755 -0.051 0.142 0.142 -0.273 -0.648 0.575 -0.747 0.352 0.013 0.718 -0.654 -0.494 -0.541 0.644 -0.830 0.248 -0.459 0.126 0.306 -0.081 -0.300 -0.415 0.459 0.087 0.241 -0.212 -0.138 0.064 -0.663 0.559 -0.248 0.074 0.632 -0.549 -0.447 0.047 0.193 -1.194 0.059 0.463 0.171 -0.322 0.447 -0.492 -0.049 -0.383 -0.152 0.451 0.227 -0.621 0.102 0.145 -0.254 0.000 -0.199 0.368 0.481 -0.619 0.128 -0.217 -0.196 0.467 -0.081 -0.322 -0.193 0.000 -1.000 0.700 0.017 -0.675 0.084 0.380 -0.014 0.240 0.330 -0.807 -0.040 0.376 -0.402 -0.040 0.212 -0.441 -0.663 0.559 0.193 0.041 0.193 -0.544 0.316 0.093 -0.170 -0.322 -1.807 0.515 -0.807 0.778 0.862 -0.556 -0.829 -0.092 0.334 -0.843 -0.366 0.492 0.489 -0.173 -0.096 -0.369 -0.271 -0.166 -0.200 0.495 0.625 0.033 -0.390 -0.574 0.131 -0.462 -0.637 0.619 0.397 0.052 -0.295 -0.267 -0.355 0.516 -0.484 0.101 0.174 -0.285 -0.700 0.522 0.379 -0.085 -0.855 0.267 -0.263 0.093 0.000 0.138 -0.926 0.074 -0.663 0.840 0.588 -0.480 -0.077 -0.265 -0.090 -0.459 -0.585 0.737 0.865 -0.289 -0.851 -0.312 -0.524 0.415 -0.787 0.476 0.466 -0.191 -0.807 0.228 0.063 -0.267 -0.149 0.290 0.793 -0.570 -0.343 -0.313 -0.338 -0.048 -0.338 0.537 0.495 -0.483 -0.461 0.200 0.180 -0.390 -0.347 0.398 0.676 0.080 -0.731 -0.430 -0.624 -0.066 -0.303 0.665 0.646 -0.524 -1.202 0.383 -0.106 -0.170 -0.106 0.325 0.502 0.252 -0.721 -0.346 -0.348 0.515 -0.807 0.280 0.562 -0.144 -0.070 -0.585 -0.068 0.107 -0.852 0.501 0.451 0.369 -0.911 -0.304 -0.977 0.546 -0.977 0.608 0.529 -0.382 -0.730 0.248 0.076 -0.005 -0.386 0.244 0.440 -0.161 -0.244 -0.145 -0.498 0.100 -0.064 0.337 -0.282 0.580 -0.098 -0.420 -0.488 0.159 -0.689 0.633 0.119 0.464 -0.500 -0.273 -1.282 0.651 -0.218 0.213 -0.026 0.489 -0.663 -0.026 -0.351 0.434 -0.303 0.076 -0.286 0.696 -0.474 -0.252 -1.134 0.504 0.156 0.018 0.673 -0.109 -0.408 -0.465 0.170 -0.234 -0.621 0.459 0.297 -0.030 0.132 -0.521 -0.609 0.317 -0.346 0.391 0.537 -0.229 -0.769 0.150 0.088 -0.886 -0.301 0.664 0.243 -0.372 0.259 -0.239 -0.196 -0.067 -0.230 0.400 0.564 -0.436 -0.354 0.000 -0.439 -0.227 -0.365 0.706 0.340 0.156 -0.259 -0.350 -1.672 0.720 -0.350 0.328 -0.280 -0.280 0.497 -0.087 -0.260 -0.186 -0.186 0.492 -0.190 -0.020 0.270 -0.102 -0.605 -0.190 -0.730 0.898 0.000 0.000 0.000 0.000 0.074 0.212 -0.441 0.074 0.469 0.300 -0.893 -0.241 -0.585 -0.585 0.152 0.637 0.632 -0.267 -1.062 0.190 0.564 -0.843 -0.459 0.306 0.531 -0.367 0.031 -0.400 0.052 -0.211 -0.130 0.245 0.727 0.142 -1.466 -0.186 -0.192 -0.170 -0.148 0.415 0.435 0.098 -0.395 -0.292 -0.835 0.433 -0.250 0.320 0.363 0.000 -0.485 0.000 0.372 0.328 -0.424 -0.503 0.093 0.383 -0.617 -0.032 -0.402 0.250 0.112 -0.040 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.494 -0.228 -0.388 -0.038 -0.147 -0.335 -0.147 0.486 0.672 -0.356 -0.508 -0.117 0.105 -0.051 -0.373 0.246 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.059 -0.322 0.163 0.163 0.464 0.142 -0.273 -0.536 0.252 0.466 -0.485 -0.485 -0.138 0.348 -0.874 0.348 0.263 -0.184 0.057 -0.184 -0.263 0.585 -0.585 0.000 0.473 0.193 -0.445 -0.445 -1.544 0.871 -0.807 0.330 0.760 -0.518 -0.562 -0.103 0.415 -0.646 -0.585 0.445 0.579 -0.421 0.093 -0.528 -0.536 0.271 0.096 0.049 0.495 -0.138 -0.138 -0.372 -0.061 0.169 -0.919 0.473 0.612 0.053 -0.599 -0.370 -0.388 0.984 -0.668 -0.668 -0.155 0.707 -0.615 -0.293 -0.115 0.662 -0.807 -0.115 -0.243 0.342 -0.196 0.020 -0.747 0.533 -0.970 0.533 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.425 -0.031 -0.575 0.010 0.133 -0.907 -0.433 0.705 0.425 0.010 0.010 -0.636 -0.874 0.306 0.126 0.173 0.608 -0.333 -0.277 -0.222 0.310 -1.644 -0.059 0.566 0.917 -0.718 -0.573 -0.265 0.104 0.256 -0.159 -0.259 0.678 0.000 -1.322 0.000 0.061 0.724 -0.716 -0.524 -0.190 0.202 0.395 -0.605 -0.874 0.541 -1.459 0.710 0.000 -0.322 -2.322 1.000 -0.087 0.497 -0.087 -0.503 0.567 0.052 -0.433 -0.433 -1.000 0.585 -1.000 0.585 0.640 -0.347 -0.347 -0.201 0.323 -0.739 -0.920 0.697 0.787 -0.607 -0.127 -0.510 -0.261 0.126 -0.121 0.208 0.479 0.043 -0.237 -0.459 -0.109 0.351 -2.524 0.699 0.811 -0.322 -0.267 -0.700 -0.524 0.177 0.177 0.061 0.138 0.000 -1.322 0.585 -0.339 0.381 -1.256 0.574 -0.018 0.099 -0.018 -0.068 -1.087 0.028 -0.213 0.720 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.549 0.380 -0.267 -1.306 1.156 -0.458 -1.133 -0.766 -1.110 -1.415 1.527 -1.840 -7.087 -7.087 1.992 -7.087 -7.087 -7.087 -7.087 1.992 0.777 -2.695 1.000 -2.918 1.436 -1.181 -1.021 -1.473 -2.280 -2.043 1.739 -2.229 -1.255 -0.229 -0.898 1.132 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.827 -0.587 -0.542 -0.195 0.430 -0.327 -0.315 0.072 0.251 -0.204 -0.161 0.067 0.329 -0.801 0.052 0.180 0.523 -0.383 -0.328 -0.001 0.222 -0.319 -0.008 0.053 0.213 0.019 -0.334 0.049 -0.322 -0.298 0.096 0.398 0.665 -0.438 -0.196 -0.315 0.299 -0.366 -0.186 0.156 0.081 -0.255 -0.031 0.171 -0.128 -0.483 0.230 0.260 0.524 -0.490 -0.794 0.348 0.097 -0.263 -0.162 0.267 -0.014 0.093 -0.321 0.192 -0.039 -0.729 -0.322 0.699 0.670 -0.231 -0.337 -0.386 0.277 -0.100 -0.275 0.041 -0.011 0.211 -0.254 0.017 -0.342 -0.190 -0.246 0.576 0.336 -0.011 -0.289 -0.109 -0.159 0.264 -0.317 0.139 0.035 0.110 -0.068 -0.085 -0.525 -0.164 0.157 0.376 0.376 0.046 0.077 -0.701 0.035 -0.133 0.042 0.049 -0.122 0.144 0.000 -0.034 -0.654 0.074 0.300 0.112 0.398 -0.123 -0.287 -0.083 -0.096 -0.250 -0.007 0.297 -0.157 0.205 -0.204 0.114 -0.656 -0.166 -0.151 0.654 0.736 -0.540 -0.021 -0.596 0.208 -0.286 0.159 -0.140 0.134 -0.025 -0.007 -0.112 -0.128 -0.350 0.260 0.142 0.154 -0.201 0.111 -0.093 0.327 -0.507 0.091 -0.034 0.134 0.075 -0.158 -0.069 -0.596 -0.235 0.326 0.306 0.516 -0.408 0.177 -0.545 0.384 -0.352 -0.162 0.026 0.160 -0.381 0.235 -0.093 -0.159 -0.391 0.338 0.108 0.301 -0.176 -0.222 0.037 0.145 -0.531 0.132 0.145 -0.088 -0.031 -0.115 0.211 -0.597 -0.531 -0.082 0.767 0.894 -0.872 -0.627 -0.078 0.501 -0.325 -0.619 0.184 0.113 -0.136 -0.427 0.339 0.329 -0.726 -0.539 0.537 0.220 0.099 -0.370 -0.014 0.300 -0.324 -0.292 0.206 0.031 0.205 -0.326 0.039 -0.459 -0.168 0.124 0.370 0.427 -0.162 -0.239 -0.129 0.411 -0.120 -0.585 0.116 -0.034 0.128 -0.176 0.063 -0.337 -0.422 0.167 0.422 0.325 -0.349 -0.580 0.371 0.184 -0.120 -0.355 0.217 -0.137 0.056 -0.318 0.320 -0.412 -0.332 -0.268 0.699 0.518 -0.210 -0.253 -0.210 0.399 -0.440 -0.170 0.077 0.001 0.069 -0.191 0.102 -0.040 -0.158 0.037 0.145 0.245 -0.019 -0.149 -0.111 0.269 -0.203 -0.160 0.043 -0.058 -0.079 -0.278 0.343 -0.404 -0.334 0.269 0.317 0.414 -0.137 -0.112 -0.263 0.094 -0.101 -0.233 0.200 0.132 0.004 -0.240 0.077 -0.440 -0.289 0.234 0.343 0.185 -0.091 -0.143 0.027 0.088 -0.287 -0.211 0.326 -0.339 0.109 -0.286 0.390 -0.756 -0.204 -0.076 0.670 0.455 -0.253 -0.050 -0.278 0.258 0.035 -0.397 0.029 0.101 0.157 -0.500 0.145 -0.264 -0.136 -0.040 0.362 0.369 -0.114 -0.105 -0.228 -0.317 0.511 -0.432 0.044 0.204 -0.153 -0.403 0.254 -0.574 0.236 -0.117 0.296 0.369 -0.196 0.147 -0.458 -0.106 0.157 -0.275 0.176 -0.085 0.174 -0.265 0.134 -0.666 0.270 0.039 0.185 0.180 -0.149 0.010 -0.062 -0.180 0.170 -0.306 0.242 -0.300 0.226 -0.137 0.149 -0.969 0.041 -0.014 0.555 0.533 -0.212 -0.052 -0.463 0.099 -0.552 0.403 -0.113 -0.026 0.208 -0.002 -0.211 -0.295 -0.051 -0.034 0.314 0.189 -0.069 0.104 -0.265 0.269 -0.503 0.323 -0.254 0.103 0.135 -0.235 -0.031 -0.653 0.122 0.293 0.071 0.476 -0.139 0.142 -0.743 0.212 -0.407 0.325 -0.260 -0.022 0.177 -0.004 -0.172 -0.510 -0.009 0.277 0.128 0.271 -0.273 0.129 -0.198 -0.019 -0.410 0.279 0.067 -0.095 0.243 -0.212 0.025 -0.818 -0.033 0.040 0.513 0.652 -0.440 -0.440 -0.067 0.322 -0.239 -0.229 0.069 0.126 0.102 -0.142 -0.106 0.020 -0.296 -0.220 0.393 0.331 -0.259 -0.283 0.117 -0.029 -0.160 -0.061 0.222 -0.026 0.016 -0.214 0.194 -0.728 0.038 0.067 0.402 0.511 -0.001 -0.329 -0.359 0.236 -0.190 -0.397 0.246 0.081 0.070 -0.156 -0.007 -0.244 -0.111 0.097 0.214 0.146 -0.264 -0.176 0.233 0.080 -0.029 -0.137 0.075 -0.224 0.119 -0.230 0.269 -0.634 -0.133 -0.139 0.619 0.468 -0.214 -0.125 -0.255 0.175 -0.165 -0.012 -0.018 0.127 0.044 -0.150 -0.036 0.000 -0.360 0.195 0.106 0.204 -0.061 -0.097 -0.067 0.187 -0.329 -0.090 0.171 -0.076 -0.076 -0.204 0.304 -0.415 -0.144 0.322 0.131 0.439 -0.434 0.034 -0.184 0.342 -0.275 -0.137 -0.004 0.129 0.085 -0.050 -0.186 -0.226 -0.375 0.159 0.330 0.240 -0.202 -0.566 0.350 -0.028 -0.105 -0.019 0.141 0.018 0.005 -0.138 0.105 -0.479 -0.537 0.045 0.643 0.415 -0.148 -0.085 -0.283 0.249 -0.276 0.000 -0.021 -0.028 0.173 -0.406 0.185 -0.297 -0.085 -0.128 0.410 0.057 0.020 -0.138 0.052 0.182 -0.018 -0.228 0.035 -0.048 0.269 -0.368 0.075 -0.554 0.118 0.018 0.288 0.171 0.003 0.009 -0.208 0.229 -0.119 -0.094 -0.045 -0.100 0.285 -0.355 0.093 -0.657 0.114 0.090 0.286 0.136 -0.051 -0.004 -0.092 -0.315 -0.086 0.178 0.168 -0.431 0.330 -0.047 0.048 -0.766 0.159 -0.035 0.400 0.495 -0.364 0.057 -0.370 0.465 -0.459 -0.025 -0.138 0.095 -0.127 0.139 -0.127 -0.087 -0.473 0.178 0.271 0.092 0.003 -0.008 -0.093 0.244 -0.364 0.051 0.004 -0.047 0.097 -0.002 -0.053 -0.504 -0.160 0.249 0.277 0.440 -0.368 0.188 -0.456 0.275 -0.196 -0.196 0.062 -0.286 -0.593 0.886 -0.579 -0.418 -0.243 0.231 0.302 0.231 0.021 -0.176 -0.111 0.187 -0.530 0.021 0.207 -0.248 0.186 -0.012 0.041 -0.628 -0.204 0.103 0.497 0.689 -0.374 -0.461 -0.168 0.638 -0.568 -0.367 -0.010 0.050 0.201 -0.229 -0.055 0.055 -0.520 0.000 0.337 0.165 -0.036 -0.249 0.087 0.058 -0.044 -0.189 0.153 -0.156 -0.023 -0.125 0.265 -0.491 -0.115 0.189 0.293 0.287 0.096 -0.283 -0.171 0.262 -0.251 -0.272 0.179 -0.152 0.230 -0.182 0.065 -0.380 -0.105 0.102 0.297 0.141 -0.007 -0.246 0.082 0.065 -0.070 -0.201 0.179 -0.309 0.103 -0.160 0.291 -0.441 -0.246 -0.220 0.643 0.648 -0.569 -0.503 0.075 0.392 -0.226 -0.632 0.249 0.110 0.103 -0.279 0.032 0.079 -0.513 -0.139 0.416 0.314 -0.280 -0.218 0.102 0.248 -0.299 -0.109 0.102 0.206 -0.137 -0.477 0.286 -0.305 -0.391 0.072 0.461 0.514 -0.387 -0.134 -0.158 0.248 -0.359 -0.175 0.198 0.082 -0.025 -0.225 0.141 -0.280 -0.280 0.046 0.401 0.364 -0.450 -0.709 0.453 0.076 -0.370 -0.162 0.354 -0.212 0.091 -0.454 0.423 -0.379 -0.942 -0.317 0.932 0.575 -0.321 -0.164 -0.291 0.052 -0.181 -0.181 0.262 -0.085 0.102 -0.400 0.295 -0.409 -0.045 -0.277 0.538 0.328 -0.113 0.076 -0.385 0.221 -0.130 -0.343 0.179 0.107 0.000 -0.164 0.044 -0.850 0.280 -0.193 0.440 0.103 -0.014 0.109 -0.223 -0.011 -0.029 -0.073 0.106 -0.236 0.272 -0.236 0.130 -0.461 0.154 0.022 0.196 0.133 -0.119 -0.181 0.139 -0.188 -0.097 -0.001 0.249 -0.211 0.182 -0.323 0.266 -0.918 0.004 -0.108 0.623 0.555 -0.595 -0.024 -0.175 0.324 -0.378 0.004 -0.035 0.047 0.199 -0.071 -0.206 -0.337 -0.497 0.170 0.459 0.247 -0.218 -0.052 -0.016 0.170 -0.415 0.040 0.133 -0.098 0.081 0.006 0.006 -0.555 -0.200 0.228 0.353 0.430 -0.336 0.058 -0.287 0.323 -0.332 -0.051 -0.015 0.029 0.017 0.083 -0.139 -0.457 -0.317 0.262 0.345 0.179 -0.126 -0.176 0.092 0.065 -0.208 -0.125 0.228 -0.260 0.119 -0.291 0.335 -0.787 -0.268 -0.093 0.725 0.666 -0.677 -0.677 0.217 0.395 -0.286 -0.369 0.125 0.124 0.045 -0.309 0.100 -0.100 -0.740 -0.277 0.716 0.177 -0.170 -0.140 0.103 0.060 -0.046 -0.283 0.223 0.077 -0.203 -0.146 0.229 -0.605 -0.231 0.009 0.569 0.361 -0.266 -0.055 -0.119 0.372 -0.396 -0.211 0.113 0.003 0.114 -0.173 0.040 -0.434 -0.326 -0.024 0.564 0.240 -0.329 -0.428 0.355 0.075 -0.313 -0.350 0.441 -0.147 -0.222 -0.385 0.560 -0.630 -0.612 -0.506 0.997 Intron LUT 5 4 4 0 0.000 0.856 -0.677 -0.528 -0.200 0.539 -0.492 -0.464 0.152 0.172 -0.061 -0.210 0.071 0.149 -0.730 0.041 0.333 0.418 -0.255 -0.370 0.073 0.302 -0.298 -0.343 0.220 0.146 -0.040 -0.218 0.085 -0.350 -0.286 0.103 0.402 0.637 -0.588 -0.142 -0.195 0.407 -0.399 -0.301 0.142 0.110 -0.140 -0.102 0.113 -0.201 -0.591 0.199 0.398 0.434 -0.564 -0.643 0.414 0.209 -0.359 -0.163 0.228 -0.040 0.045 -0.320 0.256 -0.233 -0.508 -0.248 0.682 0.662 -0.493 -0.252 -0.206 0.348 -0.305 -0.309 0.151 -0.048 0.127 -0.266 0.149 -0.217 -0.476 -0.009 0.513 0.215 -0.098 -0.072 -0.068 0.105 -0.011 -0.442 0.259 0.074 0.101 -0.168 -0.022 -0.392 -0.088 -0.078 0.433 0.296 -0.062 0.103 -0.434 0.159 -0.106 -0.181 0.101 -0.113 0.231 -0.157 0.007 -0.533 0.131 0.228 0.061 0.206 -0.138 -0.214 0.105 -0.106 -0.305 0.040 0.302 -0.071 0.222 -0.311 0.105 -0.928 -0.119 -0.028 0.653 0.753 -0.592 -0.183 -0.376 0.477 -0.505 -0.150 0.004 0.179 -0.003 -0.139 -0.057 -0.129 -0.662 0.301 0.289 0.064 -0.182 0.090 0.013 0.382 -0.313 -0.303 0.112 0.123 0.071 -0.189 -0.024 -0.463 -0.212 0.110 0.414 0.543 -0.453 0.118 -0.458 0.422 -0.396 -0.340 0.151 0.117 -0.185 0.089 -0.041 -0.167 -0.337 0.295 0.126 0.236 -0.193 -0.146 0.062 0.241 -0.413 -0.156 0.226 -0.076 -0.003 -0.151 0.204 -0.498 -0.449 0.056 0.604 0.681 -0.525 -0.622 0.073 0.427 -0.278 -0.583 0.217 0.159 -0.057 -0.511 0.287 -0.011 -0.673 -0.190 0.588 0.129 0.047 -0.251 0.047 0.278 -0.143 -0.457 0.206 0.015 0.147 -0.159 -0.021 -0.408 -0.154 0.117 0.337 0.534 -0.162 -0.278 -0.263 0.446 -0.199 -0.563 0.123 -0.130 0.168 -0.125 0.064 -0.310 -0.239 0.078 0.368 0.334 -0.319 -0.517 0.310 0.242 -0.165 -0.544 0.310 -0.067 0.052 -0.189 0.178 -0.409 -0.275 -0.254 0.662 0.589 -0.399 -0.250 -0.158 0.435 -0.305 -0.401 0.113 0.021 0.062 -0.174 0.078 -0.104 -0.340 0.142 0.235 0.211 -0.091 -0.145 -0.002 0.264 -0.280 -0.114 0.072 -0.059 0.019 -0.151 0.171 -0.544 -0.172 0.267 0.291 0.424 -0.227 -0.106 -0.194 0.361 -0.220 -0.327 0.084 0.057 -0.170 -0.062 0.155 -0.422 -0.331 0.376 0.216 0.252 -0.216 -0.231 0.132 0.251 -0.234 -0.311 0.206 -0.185 0.189 -0.283 0.212 -0.571 -0.301 -0.008 0.605 0.543 -0.311 -0.245 -0.163 0.239 -0.107 -0.409 0.186 0.097 0.022 -0.252 0.105 -0.244 -0.170 -0.005 0.345 0.316 -0.156 -0.116 -0.097 0.026 0.469 -0.754 0.007 0.105 0.145 -0.358 0.054 -0.674 0.157 -0.067 0.382 0.252 -0.119 0.028 -0.204 0.182 -0.084 -0.314 0.161 -0.061 0.048 -0.323 0.273 -0.537 0.064 0.181 0.178 0.263 -0.170 -0.137 0.003 -0.030 -0.030 -0.175 0.209 -0.360 0.236 -0.225 0.248 -0.906 -0.133 -0.009 0.642 0.579 -0.459 -0.086 -0.256 0.193 -0.405 0.207 -0.078 0.135 0.150 -0.161 -0.156 -0.169 -0.411 0.170 0.302 0.076 0.007 0.085 -0.183 0.273 -0.306 0.064 -0.093 0.079 0.200 -0.296 -0.028 -0.520 -0.038 0.167 0.270 0.395 -0.370 0.223 -0.427 0.287 -0.352 0.170 -0.199 0.173 0.093 -0.046 -0.255 -0.248 -0.417 0.430 0.087 0.296 -0.101 -0.085 -0.157 0.047 -0.247 0.096 0.078 -0.068 0.251 -0.267 0.036 -0.646 -0.204 0.055 0.540 0.730 -0.455 -0.567 -0.093 0.352 -0.102 -0.466 0.096 0.148 0.003 -0.231 0.052 0.025 -0.269 -0.070 0.263 0.269 0.001 -0.332 -0.000 0.063 -0.071 -0.190 0.172 -0.045 -0.012 -0.158 0.193 -0.490 -0.046 0.070 0.345 0.456 -0.218 -0.288 -0.075 0.364 -0.246 -0.451 0.187 0.037 0.045 -0.235 0.128 -0.322 -0.157 0.143 0.262 0.195 -0.213 -0.200 0.167 0.111 -0.017 -0.380 0.218 -0.187 0.166 -0.270 0.227 -0.578 -0.190 -0.104 0.607 0.504 -0.404 -0.158 -0.104 0.416 -0.239 -0.332 0.034 -0.006 0.045 -0.142 0.092 -0.208 -0.600 0.325 0.289 0.074 -0.025 -0.133 0.074 0.277 -0.344 -0.192 0.169 0.052 -0.114 -0.196 0.222 -0.351 -0.374 0.297 0.282 0.421 -0.354 0.086 -0.291 0.256 -0.306 -0.226 0.192 0.125 -0.204 -0.024 0.081 -0.324 -0.506 0.399 0.237 0.303 -0.353 -0.201 0.154 0.195 -0.252 -0.085 0.102 -0.103 0.050 -0.125 0.159 -0.470 -0.498 0.139 0.555 0.469 -0.198 -0.194 -0.202 0.293 -0.206 -0.180 0.035 0.097 0.177 -0.494 0.124 -0.427 -0.310 0.066 0.488 0.152 0.006 -0.308 0.107 0.152 -0.081 -0.235 0.130 0.072 0.190 -0.272 -0.030 -0.719 0.004 0.019 0.461 0.186 -0.108 0.028 -0.129 0.254 -0.156 -0.207 0.061 -0.175 0.310 -0.196 0.002 -0.652 0.089 0.289 0.109 0.164 0.055 -0.272 0.018 0.098 -0.183 -0.072 0.134 -0.185 0.298 -0.342 0.139 -0.793 -0.012 0.061 0.473 0.493 -0.346 0.005 -0.316 0.532 -0.557 0.024 -0.221 -0.025 0.003 0.208 -0.218 -0.304 -0.451 0.349 0.244 0.024 -0.064 0.089 -0.055 0.307 -0.187 -0.150 -0.024 0.052 0.101 -0.120 -0.043 -0.408 -0.208 0.237 0.265 0.571 -0.306 0.028 -0.545 0.459 -0.324 -0.356 0.064 0.023 -0.368 0.502 -0.335 -0.278 -0.273 0.321 0.135 0.128 -0.174 0.009 0.021 0.287 -0.375 -0.017 0.030 -0.057 0.128 -0.065 -0.014 -0.514 -0.278 0.085 0.500 0.468 -0.412 -0.291 0.068 0.387 -0.209 -0.461 0.138 0.018 0.069 -0.302 0.173 -0.162 -0.437 0.114 0.363 0.004 0.073 -0.142 0.055 0.036 0.049 -0.341 0.203 -0.180 0.057 -0.168 0.247 -0.578 -0.080 0.164 0.338 0.313 -0.021 -0.195 -0.154 0.379 -0.056 -0.517 0.055 -0.103 0.200 -0.286 0.137 -0.497 -0.214 0.256 0.305 0.149 -0.098 -0.305 0.198 0.220 -0.170 -0.387 0.240 -0.185 0.176 -0.283 0.225 -0.581 -0.175 -0.055 0.569 0.672 -0.632 -0.410 0.013 0.336 -0.217 -0.509 0.232 0.100 0.147 -0.249 -0.030 -0.059 -0.573 -0.012 0.461 0.242 -0.292 -0.022 0.023 0.237 -0.288 -0.253 0.219 0.193 -0.147 -0.114 0.042 -0.306 -0.442 0.099 0.469 0.456 -0.315 -0.086 -0.180 0.311 -0.322 -0.164 0.094 -0.006 0.024 -0.116 0.091 -0.243 -0.400 0.110 0.398 0.182 -0.422 -0.363 0.424 0.227 -0.366 -0.319 0.324 -0.055 -0.028 -0.266 0.293 -0.464 -0.599 -0.322 0.860 0.542 -0.401 -0.282 -0.052 0.179 -0.170 -0.276 0.205 -0.014 0.117 -0.489 0.279 -0.269 -0.287 -0.144 0.531 0.128 -0.050 0.095 -0.195 0.087 0.075 -0.409 0.179 0.131 0.100 -0.364 0.079 -0.646 0.114 -0.167 0.473 0.330 -0.319 0.029 -0.119 0.124 -0.207 -0.157 0.198 -0.035 0.043 -0.154 0.131 -0.454 0.011 0.051 0.294 0.202 -0.308 -0.101 0.150 -0.089 -0.125 -0.147 0.310 -0.430 0.312 -0.199 0.196 -0.779 -0.198 -0.090 0.683 0.539 -0.437 -0.112 -0.180 0.376 -0.298 -0.084 -0.081 -0.028 0.125 -0.110 0.003 -0.136 -0.616 0.187 0.377 0.107 -0.108 0.043 -0.051 0.344 -0.292 -0.315 0.151 0.046 0.091 -0.174 0.023 -0.606 -0.064 0.166 0.338 0.519 -0.421 -0.038 -0.241 0.401 -0.314 -0.269 0.064 0.174 -0.126 0.010 -0.076 -0.388 -0.315 0.272 0.292 0.141 -0.157 -0.024 0.024 0.254 -0.192 -0.260 0.133 -0.182 0.117 -0.319 0.302 -0.733 -0.396 -0.045 0.739 0.597 -0.520 -0.488 0.107 0.406 -0.479 -0.317 0.207 0.125 -0.084 -0.303 0.209 -0.189 -0.577 -0.193 0.658 0.163 -0.181 -0.064 0.059 0.177 -0.081 -0.505 0.286 0.050 -0.072 -0.132 0.139 -0.511 -0.236 -0.071 0.582 0.322 -0.337 -0.057 -0.005 0.484 -0.305 -0.512 0.125 -0.058 0.063 -0.188 0.159 -0.391 -0.327 0.061 0.482 0.215 -0.392 -0.324 0.354 0.161 -0.294 -0.523 0.454 -0.182 -0.079 -0.256 0.416 -0.608 -0.507 -0.430 0.924 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 -0.257 0.065 0.357 -0.257 -0.557 0.297 -0.303 0.357 -0.170 0.386 -0.350 0.028 -0.087 -0.257 0.202 0.100 -0.303 0.357 -0.170 0.028 -0.009 0.851 -0.450 -1.087 1.046 -1.257 0.328 -1.935 0.601 0.065 -0.557 -0.399 -0.350 0.809 0.266 -1.935 1.971 -5.257 -5.257 -5.257 -5.257 -5.257 -5.257 1.971 -5.257 -5.257 1.971 -5.257 -0.128 -0.557 0.601 -0.170 0.135 0.673 -0.865 -0.399 -0.614 0.297 0.471 -0.450 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.041 0.193 0.330 -0.807 0.871 -1.129 -0.544 0.041 -1.544 0.456 0.456 -0.129 -0.322 -0.322 0.330 0.193 0.041 0.041 -1.129 0.571 0.041 0.871 -1.544 -0.322 -3.129 -3.129 -3.129 1.871 1.871 -3.129 -3.129 -3.129 1.871 -3.129 -3.129 -3.129 TAG WMM 9 6 4 0 0.000 0.135 -0.213 0.650 -1.087 0.650 -0.865 0.028 -0.213 -0.865 0.576 0.234 -0.350 0.328 -1.087 0.328 0.028 0.650 -1.087 -0.350 0.234 -0.865 0.971 -0.213 -0.672 -3.672 -3.672 -3.672 1.913 1.913 -3.672 -3.672 -3.672 -3.672 -3.672 1.913 -3.672 TGA WMM 9 6 4 0 0.000 0.019 -0.769 0.771 -0.528 0.526 0.093 -0.322 -0.528 -1.059 0.816 0.093 -0.528 0.579 0.093 -0.141 -0.907 0.816 -0.769 -0.644 0.019 -0.528 0.579 0.295 -0.769 -4.229 -4.229 -4.229 1.941 -4.229 -4.229 1.941 -4.229 1.941 -4.229 -4.229 -4.229 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/Nasonia.hmm0000644000175000017500000013575211424066010015455 0ustar moellermoellerzoeHMM Nasonia 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.958564 Inter Esngl 0.041436 Inter ORF 1 Intron Eterm 0.150870 Intron Exon 0.849130 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.391931 0.332853 0.275216 0.577789 0.210058 0.212153 0.560606 0.246212 0.193182 0.591923 0.221041 0.187035 0.847318 0.152682 0.850816 0.149184 0.850707 0.149293 Einit 2 DEFINED 0 249 -7.721 -7.672 -7.625 -7.579 -7.534 -7.491 -7.449 -7.408 -7.368 -7.330 -7.292 -7.281 -7.270 -7.260 -7.249 -7.238 -7.228 -7.217 -7.207 -7.197 -7.186 -7.195 -7.204 -7.213 -7.221 -7.230 -7.239 -7.248 -7.257 -7.266 -7.275 -7.288 -7.301 -7.313 -7.326 -7.339 -7.352 -7.366 -7.379 -7.393 -7.406 -7.414 -7.423 -7.431 -7.439 -7.448 -7.456 -7.465 -7.474 -7.482 -7.491 -7.493 -7.495 -7.497 -7.499 -7.501 -7.503 -7.504 -7.506 -7.508 -7.510 -7.520 -7.530 -7.540 -7.550 -7.560 -7.570 -7.581 -7.591 -7.601 -7.612 -7.632 -7.653 -7.673 -7.694 -7.716 -7.737 -7.759 -7.782 -7.804 -7.827 -7.848 -7.870 -7.891 -7.913 -7.935 -7.958 -7.981 -8.004 -8.028 -8.052 -8.059 -8.066 -8.073 -8.081 -8.088 -8.095 -8.103 -8.110 -8.118 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.125 -8.133 -8.140 -8.148 -8.155 -8.163 -8.171 -8.179 -8.186 -8.194 -8.202 -8.196 -8.190 -8.183 -8.177 -8.171 -8.165 -8.158 -8.152 -8.146 -8.140 -8.165 -8.190 -8.215 -8.241 -8.267 -8.294 -8.321 -8.349 -8.377 -8.406 -8.432 -8.458 -8.485 -8.512 -8.540 -8.568 -8.597 -8.627 -8.657 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.688 -8.710 -8.733 -8.756 -8.779 -8.803 -8.827 -8.852 -8.877 -8.903 -8.929 -8.966 -9.004 -9.043 -9.084 -9.125 -9.168 -9.212 -9.257 -9.304 -9.352 -9.374 -9.395 -9.417 -9.439 -9.462 -9.485 -9.508 -9.532 -9.556 -9.581 -9.597 -9.614 -9.631 -9.648 -9.665 -9.683 -9.701 -9.719 -9.737 -9.756 -9.770 -9.784 -9.798 -9.813 -9.827 -9.842 -9.857 -9.872 -9.887 -9.902 -9.887 -9.872 -9.857 -9.842 -9.827 -9.813 -9.798 -9.784 -9.770 -9.756 -9.770 -9.784 -9.798 -9.813 -9.827 -9.842 -9.857 -9.872 -9.887 -9.902 -9.928 -9.955 -9.982 -10.009 -10.037 -10.066 -10.095 -10.125 -10.155 -10.186 -10.199 -10.212 -10.224 -10.237 -10.250 -10.264 -10.277 -10.290 -10.304 GEOMETRIC 250 -1 157 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -7.986 -7.953 -7.921 -7.889 -7.858 -7.827 -7.797 -7.768 -7.739 -7.711 -7.684 -7.672 -7.660 -7.648 -7.636 -7.625 -7.613 -7.602 -7.590 -7.579 -7.568 -7.572 -7.576 -7.580 -7.584 -7.588 -7.592 -7.597 -7.601 -7.605 -7.609 -7.624 -7.638 -7.653 -7.668 -7.684 -7.699 -7.714 -7.730 -7.746 -7.762 -7.771 -7.781 -7.790 -7.800 -7.809 -7.819 -7.828 -7.838 -7.848 -7.858 -7.861 -7.865 -7.869 -7.872 -7.876 -7.880 -7.884 -7.887 -7.891 -7.895 -7.898 -7.900 -7.903 -7.905 -7.908 -7.910 -7.913 -7.915 -7.918 -7.921 -7.933 -7.947 -7.960 -7.973 -7.986 -8.000 -8.014 -8.027 -8.041 -8.055 -8.047 -8.039 -8.030 -8.022 -8.014 -8.005 -7.997 -7.989 -7.981 -7.973 -7.980 -7.986 -7.993 -8.000 -8.007 -8.014 -8.021 -8.027 -8.034 -8.041 -8.044 -8.047 -8.050 -8.053 -8.055 -8.058 -8.061 -8.064 -8.067 -8.070 -8.064 -8.058 -8.053 -8.047 -8.041 -8.036 -8.030 -8.025 -8.019 -8.014 -8.019 -8.025 -8.030 -8.036 -8.041 -8.047 -8.053 -8.058 -8.064 -8.070 -8.090 -8.110 -8.131 -8.152 -8.173 -8.195 -8.217 -8.239 -8.262 -8.285 -8.307 -8.329 -8.351 -8.374 -8.397 -8.420 -8.444 -8.469 -8.493 -8.518 -8.520 -8.522 -8.524 -8.526 -8.528 -8.530 -8.532 -8.534 -8.536 -8.538 -8.568 -8.599 -8.630 -8.662 -8.694 -8.728 -8.762 -8.797 -8.833 -8.870 -8.867 -8.865 -8.862 -8.860 -8.857 -8.855 -8.853 -8.850 -8.848 -8.845 -8.835 -8.826 -8.816 -8.807 -8.797 -8.788 -8.778 -8.769 -8.760 -8.751 -8.776 -8.802 -8.828 -8.855 -8.882 -8.910 -8.939 -8.968 -8.997 -9.027 -9.036 -9.044 -9.053 -9.061 -9.070 -9.078 -9.087 -9.096 -9.104 -9.113 -9.140 -9.167 -9.195 -9.223 -9.252 -9.282 -9.312 -9.342 -9.374 -9.406 -9.446 -9.487 -9.530 -9.574 -9.619 -9.666 -9.714 -9.764 -9.816 -9.870 -9.875 -9.880 -9.885 -9.890 -9.895 -9.900 -9.905 -9.910 -9.915 -9.920 -9.941 -9.962 -9.984 -10.005 -10.027 -10.050 -10.072 -10.095 -10.119 GEOMETRIC 250 -1 197 Exon 2 DEFINED 0 249 -10.297 -10.224 -10.155 -10.089 -10.026 -9.966 -9.908 -9.852 -9.798 -9.747 -9.697 -9.635 -9.577 -9.520 -9.466 -9.413 -9.362 -9.314 -9.266 -9.221 -9.176 -9.144 -9.113 -9.083 -9.053 -9.024 -8.995 -8.967 -8.940 -8.913 -8.886 -8.868 -8.850 -8.832 -8.814 -8.796 -8.779 -8.762 -8.745 -8.728 -8.712 -8.693 -8.674 -8.655 -8.636 -8.618 -8.600 -8.582 -8.564 -8.547 -8.529 -8.520 -8.511 -8.501 -8.492 -8.483 -8.474 -8.465 -8.456 -8.447 -8.438 -8.427 -8.415 -8.404 -8.392 -8.381 -8.370 -8.359 -8.348 -8.337 -8.326 -8.312 -8.299 -8.285 -8.272 -8.259 -8.246 -8.233 -8.220 -8.207 -8.195 -8.192 -8.188 -8.185 -8.182 -8.179 -8.176 -8.172 -8.169 -8.166 -8.163 -8.158 -8.153 -8.147 -8.142 -8.137 -8.132 -8.127 -8.122 -8.117 -8.112 -8.111 -8.109 -8.108 -8.107 -8.106 -8.104 -8.103 -8.102 -8.101 -8.099 -8.098 -8.096 -8.095 -8.093 -8.092 -8.090 -8.089 -8.087 -8.086 -8.084 -8.079 -8.073 -8.067 -8.062 -8.056 -8.051 -8.045 -8.040 -8.034 -8.029 -8.021 -8.014 -8.006 -7.999 -7.991 -7.984 -7.976 -7.969 -7.962 -7.955 -7.956 -7.957 -7.958 -7.959 -7.960 -7.961 -7.962 -7.964 -7.965 -7.966 -7.969 -7.973 -7.976 -7.980 -7.983 -7.986 -7.990 -7.993 -7.997 -8.000 -8.015 -8.030 -8.045 -8.060 -8.076 -8.091 -8.107 -8.123 -8.139 -8.155 -8.161 -8.167 -8.173 -8.179 -8.185 -8.192 -8.198 -8.204 -8.210 -8.216 -8.226 -8.236 -8.246 -8.256 -8.266 -8.276 -8.286 -8.296 -8.307 -8.317 -8.327 -8.337 -8.347 -8.357 -8.367 -8.378 -8.388 -8.398 -8.409 -8.419 -8.420 -8.421 -8.421 -8.422 -8.422 -8.423 -8.424 -8.424 -8.425 -8.426 -8.444 -8.462 -8.481 -8.500 -8.519 -8.539 -8.559 -8.579 -8.599 -8.620 -8.632 -8.644 -8.657 -8.669 -8.682 -8.694 -8.707 -8.720 -8.733 -8.747 -8.753 -8.760 -8.767 -8.774 -8.780 -8.787 -8.794 -8.801 -8.808 -8.815 -8.832 -8.850 -8.869 -8.887 -8.906 -8.925 -8.944 -8.963 -8.983 GEOMETRIC 250 -1 216 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 425 ORF 2 DEFINED 0 249 -10.297 -10.224 -10.155 -10.089 -10.026 -9.966 -9.908 -9.852 -9.798 -9.747 -9.697 -9.635 -9.577 -9.520 -9.466 -9.413 -9.362 -9.314 -9.266 -9.221 -9.176 -9.144 -9.113 -9.083 -9.053 -9.024 -8.995 -8.967 -8.940 -8.913 -8.886 -8.868 -8.850 -8.832 -8.814 -8.796 -8.779 -8.762 -8.745 -8.728 -8.712 -8.693 -8.674 -8.655 -8.636 -8.618 -8.600 -8.582 -8.564 -8.547 -8.529 -8.520 -8.511 -8.501 -8.492 -8.483 -8.474 -8.465 -8.456 -8.447 -8.438 -8.427 -8.415 -8.404 -8.392 -8.381 -8.370 -8.359 -8.348 -8.337 -8.326 -8.312 -8.299 -8.285 -8.272 -8.259 -8.246 -8.233 -8.220 -8.207 -8.195 -8.192 -8.188 -8.185 -8.182 -8.179 -8.176 -8.172 -8.169 -8.166 -8.163 -8.158 -8.153 -8.147 -8.142 -8.137 -8.132 -8.127 -8.122 -8.117 -8.112 -8.111 -8.109 -8.108 -8.107 -8.106 -8.104 -8.103 -8.102 -8.101 -8.099 -8.098 -8.096 -8.095 -8.093 -8.092 -8.090 -8.089 -8.087 -8.086 -8.084 -8.079 -8.073 -8.067 -8.062 -8.056 -8.051 -8.045 -8.040 -8.034 -8.029 -8.021 -8.014 -8.006 -7.999 -7.991 -7.984 -7.976 -7.969 -7.962 -7.955 -7.956 -7.957 -7.958 -7.959 -7.960 -7.961 -7.962 -7.964 -7.965 -7.966 -7.969 -7.973 -7.976 -7.980 -7.983 -7.986 -7.990 -7.993 -7.997 -8.000 -8.015 -8.030 -8.045 -8.060 -8.076 -8.091 -8.107 -8.123 -8.139 -8.155 -8.161 -8.167 -8.173 -8.179 -8.185 -8.192 -8.198 -8.204 -8.210 -8.216 -8.226 -8.236 -8.246 -8.256 -8.266 -8.276 -8.286 -8.296 -8.307 -8.317 -8.327 -8.337 -8.347 -8.357 -8.367 -8.378 -8.388 -8.398 -8.409 -8.419 -8.420 -8.421 -8.421 -8.422 -8.422 -8.423 -8.424 -8.424 -8.425 -8.426 -8.444 -8.462 -8.481 -8.500 -8.519 -8.539 -8.559 -8.579 -8.599 -8.620 -8.632 -8.644 -8.657 -8.669 -8.682 -8.694 -8.707 -8.720 -8.733 -8.747 -8.753 -8.760 -8.767 -8.774 -8.780 -8.787 -8.794 -8.801 -8.808 -8.815 -8.832 -8.850 -8.869 -8.887 -8.906 -8.925 -8.944 -8.963 -8.983 GEOMETRIC 250 -1 216 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.602 -1.270 -1.282 0.727 0.645 -1.252 -1.328 0.694 0.618 -1.165 -1.624 0.761 0.716 -1.291 -1.664 0.708 0.697 -1.237 -1.579 0.696 0.679 -1.267 -1.524 0.710 0.666 -1.196 -1.429 0.683 0.711 -1.237 -1.495 0.663 0.619 -1.219 -1.383 0.724 0.547 -1.182 -1.344 0.769 0.482 -1.199 -1.419 0.843 0.483 -1.219 -1.542 0.872 0.408 -1.148 -1.457 0.893 0.360 -1.051 -1.426 0.897 0.225 -1.093 -1.446 0.997 0.193 -1.064 -1.549 1.026 0.109 -1.101 -1.668 1.098 0.182 -1.088 -1.520 1.033 0.172 -1.069 -1.556 1.040 0.157 -1.038 -1.450 1.023 0.095 -1.131 -1.376 1.064 -0.515 -1.261 -1.943 1.391 -0.714 -1.069 -2.684 1.464 0.444 -1.109 -0.584 0.594 -1.062 0.865 -4.190 0.718 1.999 -10.167 -10.167 -10.167 -10.167 -10.167 1.999 -10.167 0.501 -0.731 0.404 -0.601 0.162 -0.590 -0.509 0.598 0.348 -0.423 -0.393 0.286 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.529 -1.039 -0.146 0.222 0.235 -0.871 -0.407 0.606 0.385 -0.254 -0.907 0.403 0.070 -0.383 -0.079 0.307 0.845 -1.018 0.063 -0.589 0.738 -0.791 -0.658 0.164 0.491 -0.116 -1.163 0.293 -0.149 -0.397 -0.006 0.425 0.717 -0.926 -0.427 0.119 0.259 -0.426 -1.046 0.655 0.636 -0.058 -1.672 0.229 0.207 -0.544 -0.460 0.519 -8.216 0.767 -8.216 1.196 0.379 -0.643 -0.413 0.387 -8.032 0.082 0.440 0.661 0.306 -0.471 -0.003 0.063 0.396 -0.316 -0.046 -0.133 0.116 -0.215 -0.038 0.113 -0.077 0.357 -0.962 0.331 -0.290 0.049 0.080 0.125 0.274 -0.143 0.206 -0.451 0.242 -0.332 0.147 -0.127 0.370 0.162 -0.671 -0.058 -0.952 0.299 0.441 -0.160 0.083 -0.166 0.192 -0.140 -0.139 0.083 0.008 0.038 0.198 0.521 -1.281 0.009 -0.447 0.197 -0.063 0.218 -7.833 1.113 -7.833 0.871 -0.355 -0.496 0.485 0.150 -7.941 0.625 0.316 0.273 -0.693 -0.108 0.216 0.369 0.493 -0.600 0.300 -0.510 -0.072 -0.275 -0.060 0.337 0.150 0.170 -0.364 -0.017 -0.280 0.139 0.152 -0.052 0.318 -0.678 0.676 -0.914 0.344 -0.482 0.005 0.016 0.342 0.356 -0.914 -0.117 -0.852 0.245 0.273 0.074 0.329 -0.431 0.215 -0.249 -0.007 -0.328 -0.282 0.470 0.189 0.374 -2.099 0.412 -0.307 0.180 -0.072 0.147 -7.895 1.082 -7.895 0.906 -0.028 -0.299 0.132 0.151 -7.755 0.589 0.251 0.380 -0.257 -0.022 0.020 0.219 0.574 -0.793 -0.537 0.316 0.506 -0.532 -0.804 0.396 0.308 -0.057 -1.043 0.395 -0.061 -0.426 -0.266 0.551 0.635 -0.648 -0.200 -0.092 0.674 -0.893 -0.641 0.293 0.490 -0.141 -1.007 0.251 -0.436 -0.159 0.135 0.341 0.682 -0.668 -0.724 0.215 0.437 -0.523 -0.994 0.534 0.577 -0.220 -1.607 0.402 0.154 -0.535 -0.464 0.558 -8.341 0.819 -8.341 1.157 0.418 -0.509 -0.533 0.344 -7.947 0.114 0.357 0.708 0.257 -0.500 0.066 0.072 0.615 -0.803 -0.129 -0.028 0.439 -0.954 -0.291 0.391 0.383 -0.225 -0.784 0.333 0.136 -0.589 0.144 0.178 0.702 -0.858 0.000 -0.284 0.516 -0.908 -0.279 0.279 0.575 -0.257 -0.878 0.176 -0.399 -0.679 0.235 0.527 0.671 -0.872 -0.431 0.163 0.324 -0.536 -0.744 0.547 0.661 -0.306 -1.606 0.358 0.171 -0.480 -0.237 0.389 -7.241 0.959 -7.241 1.031 0.323 -0.683 -0.036 0.202 -6.898 0.021 0.672 0.468 0.180 -0.596 -0.008 0.276 0.356 -0.418 0.277 -0.396 0.003 -0.117 0.020 0.087 -0.036 0.294 -0.605 0.190 -0.177 0.067 0.067 0.030 0.317 -0.426 0.481 -0.701 0.411 -0.525 0.073 -0.115 0.278 0.261 -0.514 -0.170 -0.841 0.294 0.429 -0.202 -0.006 -0.216 0.409 -0.295 -0.391 0.165 -0.099 0.242 0.059 0.543 -1.269 0.120 -0.559 0.352 -0.035 0.096 -6.861 1.189 -6.861 0.768 -0.603 -0.119 0.581 -0.112 -7.238 0.575 0.405 0.237 -0.296 0.217 0.149 -0.130 0.494 -0.423 -0.077 -0.156 -0.331 -0.463 0.588 -0.034 0.007 0.296 -0.408 0.020 -0.013 -0.194 0.311 -0.161 0.357 -0.446 0.327 -0.452 0.104 -0.585 0.403 -0.094 0.306 0.241 -0.602 -0.115 -0.811 0.022 0.489 0.016 0.272 -0.286 0.050 -0.095 -0.069 -0.175 0.159 0.063 0.440 0.163 -1.496 0.226 -0.437 -0.048 0.423 -0.068 -6.814 1.175 -6.814 0.786 -0.291 -0.209 0.628 -0.372 -6.633 0.433 0.496 0.298 -0.323 0.152 -0.031 0.152 0.612 -0.896 -0.381 0.222 0.333 -0.771 -0.487 0.527 0.269 -0.311 -1.118 0.611 -0.054 -0.662 0.092 0.421 0.614 -0.838 0.061 -0.206 0.685 -1.137 -0.352 0.206 0.505 -0.090 -1.044 0.210 -0.322 -0.340 0.271 0.268 0.626 -0.718 -0.721 0.313 0.310 -0.395 -0.893 0.547 0.628 -0.392 -1.764 0.484 0.253 -0.537 -0.317 0.396 -7.725 0.905 -7.725 1.083 0.130 -0.534 -0.197 0.425 -7.581 0.379 0.338 0.517 0.121 -0.636 0.320 0.029 0.597 -0.738 -0.208 0.032 0.323 -0.719 -0.145 0.307 0.462 0.026 -0.867 0.078 0.150 -0.173 -0.088 0.087 0.517 -0.523 0.179 -0.431 0.525 -0.658 -0.351 0.194 0.558 -0.204 -0.648 0.030 -0.601 -0.326 0.483 0.195 0.649 -0.650 -0.581 0.171 0.348 -0.374 -1.118 0.581 0.646 -0.152 -1.690 0.293 0.225 -0.399 -0.399 0.394 -6.972 0.756 -6.972 1.198 0.453 -0.709 -0.147 0.159 -6.745 0.075 0.731 0.353 0.098 -0.324 -0.174 0.316 0.303 -0.312 0.097 -0.165 0.062 -0.017 -0.052 0.006 -0.265 0.579 -1.062 0.257 -0.243 0.118 -0.010 0.107 0.212 -0.427 0.301 -0.208 0.350 -0.471 -0.048 0.052 0.314 0.109 -0.419 -0.104 -0.617 0.274 0.245 -0.068 0.087 -0.245 0.288 -0.195 -0.282 0.145 -0.063 0.156 0.116 0.650 -1.582 0.019 -0.415 0.393 -0.216 0.105 -7.124 1.302 -7.124 0.604 -0.340 -0.429 0.521 0.046 -7.243 0.664 0.208 0.327 -0.532 0.350 0.062 -0.015 0.494 -0.583 0.011 -0.127 0.339 -0.690 -0.048 0.200 0.377 0.005 -0.553 0.023 0.048 -0.185 0.200 -0.093 0.403 -0.657 0.276 -0.264 0.339 -0.692 0.149 0.010 0.482 0.007 -0.592 -0.097 -0.591 -0.002 0.445 -0.035 0.392 -0.346 -0.161 0.009 0.085 -0.061 -0.377 0.275 0.434 -0.157 -1.600 0.509 -0.114 0.012 -0.050 0.140 -6.422 0.918 -6.422 1.062 0.093 -0.452 0.172 0.105 -6.248 0.195 0.546 0.466 -0.225 0.270 -0.174 0.074 0.651 -0.540 -0.776 0.211 0.638 -0.233 -1.082 0.165 0.094 0.131 -1.624 0.598 0.243 -0.520 -0.216 0.332 0.489 -0.519 -0.061 -0.089 0.673 -0.750 -0.475 0.126 0.485 -0.072 -0.803 0.105 -0.546 -0.033 0.079 0.357 0.506 -0.492 -0.884 0.409 0.223 -0.115 -0.948 0.476 0.621 -0.182 -2.073 0.426 0.053 -0.215 -0.323 0.380 -7.317 0.926 -7.317 1.062 0.423 -0.655 -0.540 0.419 -6.957 0.193 0.365 0.643 0.171 -0.616 0.119 0.183 0.754 -1.021 -0.382 0.075 0.540 -0.832 -0.294 0.225 0.467 -0.148 -1.050 0.301 0.147 -0.540 0.087 0.192 0.783 -0.887 -0.136 -0.271 0.636 -0.733 -0.489 0.178 0.451 -0.094 -1.018 0.266 -0.369 -0.130 0.025 0.372 0.659 -0.801 -0.557 0.224 0.323 -0.419 -0.984 0.581 0.706 -0.330 -1.354 0.242 0.146 -0.376 -0.416 0.458 -7.297 0.922 -7.297 1.065 0.340 -0.414 -0.446 0.322 -7.331 0.521 0.224 0.476 0.230 -0.461 -0.150 0.262 0.255 -0.316 0.160 -0.174 0.028 0.066 -0.118 0.017 0.035 0.264 -0.490 0.087 -0.223 0.116 0.075 0.009 0.312 -0.470 0.469 -0.617 0.086 -0.284 0.174 -0.017 0.273 0.391 -0.672 -0.230 -0.888 0.344 0.385 -0.177 -0.127 -0.037 0.277 -0.155 -0.387 0.382 -0.302 0.165 0.055 0.619 -1.455 0.084 -0.688 0.587 -0.228 0.033 -7.443 1.332 -7.443 0.557 -0.304 -0.059 0.392 -0.123 -7.514 0.826 0.201 0.101 -0.423 0.480 -0.079 -0.132 0.522 -0.561 0.012 -0.188 0.308 -0.351 -0.011 -0.022 0.347 0.051 -0.359 -0.133 -0.026 -0.241 0.173 0.063 0.507 -0.386 0.218 -0.621 0.398 -0.425 -0.102 0.008 0.389 0.394 -1.084 -0.144 -0.640 0.023 0.491 -0.094 0.443 -0.414 -0.238 0.059 0.080 -0.084 -0.675 0.458 0.279 0.279 -1.671 0.333 -0.221 0.089 -0.074 0.174 -7.660 1.121 -7.660 0.860 0.071 -0.256 0.038 0.119 -7.409 0.545 0.319 0.365 -0.190 -0.174 0.149 0.174 0.663 -0.856 -0.504 0.212 0.454 -0.513 -0.569 0.328 0.379 -0.189 -1.070 0.429 -0.049 -0.491 -0.102 0.475 0.626 -0.612 -0.220 -0.083 0.572 -0.657 -0.784 0.376 0.571 -0.005 -1.076 0.062 -0.402 -0.071 0.081 0.303 0.625 -0.692 -0.713 0.297 0.384 -0.394 -1.198 0.583 0.660 -0.314 -1.710 0.389 0.095 -0.416 -0.370 0.495 -8.186 0.672 -8.186 1.263 0.298 -0.649 -0.437 0.479 -8.032 0.235 0.398 0.586 0.277 -0.423 0.153 -0.104 frame1 LUT 5 4 4 0 0.000 0.344 -0.545 0.338 -0.356 0.596 -0.910 0.154 -0.245 0.473 -0.243 -0.005 -0.375 0.208 -0.372 0.277 -0.215 0.583 -0.677 0.231 -0.508 0.667 -0.818 0.245 -0.600 0.560 -0.095 -0.227 -0.445 0.063 -0.355 0.409 -0.242 0.510 -0.437 0.211 -0.557 0.616 -0.730 -0.079 -0.123 0.457 0.012 -0.207 -0.410 0.281 -0.328 0.205 -0.257 0.543 -0.321 -0.019 -0.404 0.768 -1.055 0.303 -0.781 0.368 -0.251 0.194 -0.464 0.054 -0.256 0.196 -0.031 0.498 -0.345 0.204 -0.625 0.640 -1.039 0.188 -0.295 0.207 0.338 -0.396 -0.284 0.045 0.008 -0.034 -0.021 0.354 -0.242 0.376 -0.789 0.666 -0.907 0.301 -0.625 0.372 0.180 0.043 -0.882 -0.050 0.053 0.400 -0.563 0.316 -0.400 0.325 -0.425 0.359 -0.641 0.488 -0.568 0.140 0.216 -0.044 -0.384 0.046 -0.066 0.102 -0.090 0.215 -0.160 0.243 -0.395 0.530 -1.159 0.530 -0.591 0.388 0.039 -0.115 -0.434 -0.150 -0.179 0.267 0.018 0.585 -0.818 0.386 -0.676 0.643 -1.213 0.261 -0.307 0.446 -0.278 0.150 -0.508 0.155 -0.602 0.479 -0.262 0.341 -0.652 0.496 -0.543 0.573 -0.860 0.360 -0.560 0.502 -0.175 0.036 -0.571 -0.036 -0.355 0.437 -0.170 0.565 -0.586 0.228 -0.551 0.625 -0.753 -0.037 -0.168 0.397 0.185 -0.108 -0.693 0.019 -0.164 0.423 -0.409 0.119 -0.331 0.409 -0.338 0.765 -0.992 0.212 -0.645 0.519 -0.146 0.142 -0.838 0.023 -0.351 0.302 -0.048 0.000 0.000 0.000 0.000 0.619 -0.910 0.194 -0.344 0.000 0.000 0.000 0.000 -0.053 -0.202 0.293 -0.087 0.522 -0.549 0.231 -0.502 0.604 -1.103 0.246 -0.273 0.475 -0.069 -0.129 -0.429 0.062 -0.279 0.390 -0.283 0.000 0.000 0.000 0.000 0.647 -0.587 0.148 -0.598 0.349 -0.312 0.219 -0.401 0.091 -0.127 0.228 -0.238 0.350 -0.332 0.246 -0.425 0.559 -0.664 0.242 -0.487 0.519 -0.255 -0.011 -0.441 -0.050 -0.486 0.325 0.094 0.268 -0.412 0.468 -0.598 0.584 -0.931 0.383 -0.573 0.345 -0.154 0.117 -0.422 0.268 -0.412 0.365 -0.404 0.340 -0.301 0.275 -0.490 0.473 -1.022 0.401 -0.323 0.547 -0.176 -0.115 -0.453 -0.015 -0.312 0.500 -0.339 0.355 -0.477 0.400 -0.549 0.657 -0.928 0.308 -0.599 0.402 0.181 -0.171 -0.607 0.177 -0.245 0.342 -0.399 0.381 -0.347 0.343 -0.636 0.638 -1.002 0.462 -0.816 0.389 -0.416 0.252 -0.416 -0.144 -0.131 0.433 -0.266 0.320 -0.478 0.484 -0.655 0.361 -0.330 0.302 -0.541 0.144 0.167 0.010 -0.384 -0.183 0.224 0.236 -0.371 0.170 -0.037 0.481 -0.985 0.462 -0.684 0.529 -0.845 0.434 -0.221 0.157 -0.566 -0.003 -0.163 0.450 -0.429 0.024 -0.277 0.477 -0.384 0.446 -0.989 0.566 -0.614 -0.051 0.160 0.521 -1.051 -0.157 0.225 0.286 -0.483 0.267 0.083 0.106 -0.597 0.370 -1.148 0.680 -0.613 0.279 0.062 0.158 -0.675 -0.164 -0.106 0.381 -0.190 0.321 -0.700 0.561 -0.599 0.283 -1.094 0.696 -0.525 0.241 -0.181 0.350 -0.596 0.057 -0.323 0.464 -0.356 0.259 -0.376 0.605 -0.965 0.223 -1.023 0.695 -0.470 0.412 -0.052 0.201 -0.850 -0.188 -0.319 0.640 -0.391 0.221 -0.587 0.582 -0.573 0.455 -0.792 0.433 -0.511 0.257 0.224 0.224 -1.092 0.046 -0.445 0.561 -0.400 0.185 -0.198 0.222 -0.277 0.386 -1.328 0.716 -0.614 0.325 -0.028 0.081 -0.496 -0.104 -0.324 0.420 -0.100 0.000 0.000 0.000 0.000 0.480 -0.694 0.306 -0.414 0.000 0.000 0.000 0.000 -0.003 -0.138 0.381 -0.339 0.444 -0.366 0.243 -0.556 0.426 -0.937 0.209 -0.033 0.347 -0.100 0.172 -0.580 0.059 -0.262 0.521 -0.536 0.000 0.000 0.000 0.000 0.397 -0.684 0.382 -0.399 0.308 -0.059 -0.053 -0.254 -0.037 0.075 0.265 -0.377 0.262 -0.345 0.252 -0.281 0.401 -0.420 0.308 -0.527 0.497 -0.238 0.203 -0.762 -0.151 -0.634 0.697 -0.261 0.609 -0.538 0.218 -0.683 0.572 -0.704 0.356 -0.690 0.664 -0.074 -0.054 -0.993 0.239 -0.156 0.096 -0.228 0.523 -0.329 0.139 -0.588 0.455 -0.677 0.415 -0.576 0.703 -0.246 -0.074 -0.788 -0.145 -0.207 0.489 -0.276 0.519 -0.327 0.081 -0.489 0.542 -0.615 0.140 -0.341 0.544 0.111 -0.237 -0.705 0.186 0.028 -0.011 -0.233 0.459 -0.261 0.149 -0.552 0.472 -0.774 0.550 -0.826 0.371 -0.068 0.101 -0.555 -0.001 -0.136 0.206 -0.093 0.402 -0.084 0.196 -0.761 0.590 -0.659 0.089 -0.326 0.026 0.639 -0.293 -0.718 0.074 0.268 -0.154 -0.244 0.407 -0.126 0.230 -0.773 0.544 -0.920 0.336 -0.412 0.382 0.110 -0.017 -0.668 0.022 0.022 0.272 -0.392 0.284 -0.188 0.181 -0.374 0.615 -1.046 0.217 -0.284 0.163 0.511 0.054 -1.261 0.286 0.098 -0.129 -0.329 0.241 0.051 -0.035 -0.311 0.474 -0.961 0.380 -0.329 0.266 0.269 -0.033 -0.701 -0.113 0.065 0.111 -0.075 0.514 -0.638 0.360 -0.630 0.489 -0.881 0.411 -0.466 0.464 -0.053 0.084 -0.746 0.119 -0.263 0.425 -0.439 0.303 -0.537 0.574 -0.765 0.571 -0.754 0.259 -0.465 0.540 0.032 -0.007 -0.919 -0.104 -0.176 0.465 -0.315 0.529 -0.367 0.022 -0.383 0.469 -0.644 0.178 -0.244 0.244 0.136 0.136 -0.694 0.142 -0.113 0.371 -0.559 0.019 0.033 0.281 -0.419 0.501 -0.877 0.473 -0.617 0.378 0.080 0.132 -0.868 -0.151 -0.224 0.285 0.035 0.000 0.000 0.000 0.000 0.690 -0.970 0.102 -0.316 0.000 0.000 0.000 0.000 0.086 0.036 0.153 -0.320 0.578 -0.354 0.073 -0.573 0.580 -0.873 0.196 -0.296 0.545 0.038 -0.302 -0.508 0.129 -0.169 0.289 -0.331 0.000 0.000 0.000 0.000 0.478 -0.456 0.181 -0.426 0.407 -0.220 0.109 -0.440 0.144 -0.014 0.108 -0.274 0.439 -0.292 0.107 -0.414 0.527 -0.379 0.153 -0.561 0.370 -0.110 0.148 -0.571 -0.067 -0.354 0.444 -0.148 0.613 -0.629 0.139 -0.469 0.714 -1.345 0.310 -0.463 0.632 -0.186 0.088 -0.977 0.260 -0.390 0.286 -0.287 0.444 -0.524 0.319 -0.520 0.647 -1.154 0.308 -0.421 0.493 -0.059 -0.059 -0.571 0.001 -0.312 0.472 -0.309 0.472 -0.519 0.319 -0.584 0.635 -0.850 0.259 -0.524 0.515 0.161 -0.365 -0.565 0.230 -0.049 0.084 -0.320 0.537 -0.339 -0.020 -0.374 0.711 -0.989 0.355 -0.785 0.340 -0.183 0.245 -0.583 0.011 -0.299 0.312 -0.092 0.422 -0.398 0.373 -0.722 0.514 -0.806 0.412 -0.579 0.313 0.242 -0.261 -0.435 -0.115 0.113 0.203 -0.245 0.344 -0.254 0.289 -0.578 0.591 -0.962 0.392 -0.581 0.378 -0.031 0.110 -0.640 0.062 -0.066 0.400 -0.552 0.168 -0.383 0.433 -0.396 0.490 -0.802 0.469 -0.649 0.145 0.107 0.120 -0.453 0.072 -0.017 0.031 -0.092 0.066 -0.064 0.363 -0.492 0.476 -1.223 0.535 -0.449 0.280 -0.030 0.166 -0.546 -0.132 -0.079 0.436 -0.343 0.647 -0.854 0.301 -0.625 0.660 -1.318 0.313 -0.365 0.508 -0.168 0.071 -0.650 0.176 -0.557 0.505 -0.373 0.313 -0.510 0.420 -0.478 0.772 -1.010 0.091 -0.453 0.479 -0.033 0.084 -0.813 -0.075 -0.423 0.663 -0.472 0.520 -0.565 0.233 -0.485 0.732 -0.844 0.013 -0.372 0.286 -0.191 0.187 -0.384 0.145 -0.381 0.363 -0.251 0.293 -0.161 0.126 -0.342 0.855 -0.968 -0.020 -0.529 0.461 -0.030 -0.018 -0.607 0.125 -0.355 0.405 -0.314 0.000 0.000 0.000 0.000 0.668 -1.073 0.251 -0.424 0.000 0.000 0.000 0.000 0.067 -0.211 0.290 -0.208 0.563 -0.550 0.105 -0.388 0.720 -1.169 0.144 -0.315 0.265 -0.164 0.152 -0.331 0.139 -0.207 0.327 -0.363 0.000 0.000 0.000 0.000 0.700 -0.772 0.078 -0.446 0.385 -0.366 0.109 -0.251 0.153 -0.231 0.327 -0.354 0.288 -0.218 0.116 -0.259 0.607 -0.568 0.084 -0.429 0.490 -0.315 0.206 -0.646 0.180 -0.412 0.517 -0.548 frame2 LUT 5 4 4 0 0.000 0.739 -0.465 -0.790 0.041 0.413 -0.052 -0.715 0.130 0.916 -0.349 -0.889 -0.343 -0.748 0.260 -0.989 0.768 0.828 -0.744 -0.515 -0.108 0.509 -0.422 -0.670 0.266 0.847 -0.476 -0.687 -0.215 -0.538 -0.040 -0.435 0.678 0.998 -0.845 -0.501 -0.436 0.496 -0.094 -0.754 0.085 1.034 -0.393 -0.844 -0.659 -0.383 0.160 -0.683 0.578 0.724 -0.534 -0.678 0.045 0.623 -0.127 -0.982 0.054 0.698 -0.215 -0.539 -0.272 -0.611 0.085 -1.150 0.875 0.695 -0.198 -0.723 -0.145 0.166 0.729 -1.642 -0.151 0.682 0.048 -0.882 -0.287 -1.038 0.400 -1.029 0.769 0.623 -0.507 -0.192 -0.183 0.314 -0.309 -0.959 0.522 0.783 -0.481 -0.487 -0.237 -0.770 0.353 -0.274 0.388 0.276 -0.023 -0.276 -0.030 0.289 0.448 -0.918 -0.177 0.823 -0.085 -0.932 -0.389 -0.607 0.408 -0.660 0.469 0.518 -0.122 -0.736 0.069 0.308 0.170 -0.866 0.122 0.546 -0.221 -0.202 -0.299 -0.705 0.104 -0.806 0.799 0.767 -0.777 -0.278 -0.167 0.519 -0.219 -0.714 0.135 0.812 -0.390 -0.421 -0.445 -0.867 0.274 -0.943 0.784 0.577 -0.686 0.212 -0.456 0.549 -0.199 -0.670 0.052 0.843 -0.533 -0.403 -0.399 -0.999 0.462 -0.626 0.560 0.654 -0.872 -0.240 0.048 0.442 -0.069 -0.591 0.035 0.950 -0.206 -1.088 -0.452 -0.407 0.209 -0.630 0.530 0.553 -0.467 -0.294 -0.009 0.527 0.188 -0.845 -0.212 0.630 -0.266 -0.189 -0.426 -0.791 0.265 -1.129 0.818 0.780 -0.417 -0.659 -0.151 0.394 0.318 -1.105 -0.038 0.781 -0.037 -0.991 -0.313 -1.101 0.224 -0.790 0.838 0.784 -0.425 -0.549 -0.234 0.593 -0.295 -0.939 0.208 0.899 -0.481 -0.747 -0.281 -0.430 0.184 -0.430 0.464 0.673 -0.523 -0.582 0.059 0.474 -0.066 -1.003 0.210 0.857 -0.167 -0.676 -0.574 -0.487 0.200 -0.690 0.602 0.638 -0.442 -0.886 0.223 0.549 0.030 -0.990 0.018 0.795 -0.357 -0.582 -0.294 -0.563 -0.015 -0.868 0.837 0.738 -0.487 -0.552 -0.095 0.896 -0.277 -1.127 -0.224 0.785 -0.093 -0.939 -0.291 -0.554 0.082 -0.711 0.722 0.594 -0.546 -0.263 -0.040 0.933 -0.601 -0.890 -0.165 0.701 -0.478 -0.427 -0.131 -0.616 -0.034 -0.413 0.696 0.645 -0.509 -0.226 -0.186 1.095 -0.569 -1.284 -0.360 0.887 -0.130 -0.752 -0.637 -0.525 0.083 -0.507 0.625 0.591 -0.389 -0.553 0.068 0.805 -0.249 -0.868 -0.212 0.493 -0.215 -0.089 -0.338 -0.603 0.093 -0.880 0.792 0.774 -0.386 -0.383 -0.400 0.167 0.835 -1.567 -0.404 0.682 0.017 -0.809 -0.299 -0.602 0.415 -1.278 0.674 0.623 -0.488 -0.178 -0.213 0.655 -0.119 -0.958 -0.014 0.954 -0.871 -0.550 -0.265 -0.515 0.134 -0.345 0.501 0.488 -0.370 -0.314 0.027 0.373 0.519 -1.090 -0.318 0.691 -0.133 -0.776 -0.169 -0.679 0.586 -1.278 0.548 0.424 -0.152 -0.629 0.153 0.331 0.402 -1.160 -0.039 0.474 -0.300 -0.148 -0.159 -0.486 0.277 -0.889 0.618 0.603 -0.506 -0.250 -0.095 0.500 -0.320 -0.340 -0.008 0.615 -0.133 -0.405 -0.321 -0.577 -0.008 -0.602 0.745 0.763 -0.764 -0.031 -0.444 0.730 -1.181 0.085 -0.252 0.862 -0.425 -0.529 -0.425 -0.293 0.223 -0.367 0.311 0.546 -0.454 -0.096 -0.194 0.301 -0.241 -0.257 0.118 0.953 -0.228 -0.748 -0.700 -0.309 -0.214 -0.639 0.755 0.457 -0.265 -0.763 0.270 0.411 -0.658 0.014 0.038 0.628 -0.356 -0.078 -0.462 -0.372 -0.036 -0.915 0.784 0.821 -0.586 -0.511 -0.209 0.325 0.153 -0.753 0.059 0.758 -0.157 -0.742 -0.297 -0.788 0.286 -0.866 0.725 0.640 -0.569 -0.325 -0.045 0.780 -0.992 -0.736 0.238 0.835 -0.633 -0.315 -0.381 -0.242 -0.056 -0.281 0.453 0.591 -0.343 -0.427 -0.056 0.691 -0.358 -0.934 0.113 0.810 -0.047 -0.845 -0.470 -0.592 0.446 -0.812 0.490 0.423 -0.275 -0.514 0.180 0.558 -0.315 -0.745 0.172 0.535 -0.154 -0.133 -0.432 -0.625 -0.101 -0.672 0.841 0.824 -0.700 -0.743 0.023 0.549 -0.180 -0.923 0.172 0.994 -0.395 -1.080 -0.368 -0.792 0.176 -0.920 0.819 0.680 -0.723 -0.333 -0.002 0.383 -0.173 -0.736 0.273 1.095 -0.809 -0.949 -0.367 -0.488 0.070 -0.517 0.621 0.869 -0.699 -0.452 -0.275 0.581 -0.174 -0.952 0.139 1.105 -0.391 -1.097 -0.691 -0.420 0.063 -0.504 0.588 0.602 -0.482 -0.694 0.200 0.337 0.156 -0.956 0.147 0.937 -0.335 -0.743 -0.524 -0.660 0.105 -1.046 0.854 0.647 -0.397 -0.452 -0.084 0.436 0.329 -1.462 0.040 0.465 0.406 -1.095 -0.276 -0.843 0.382 -1.264 0.785 0.791 -0.732 -0.351 -0.178 0.558 -0.672 -0.862 0.433 0.744 -0.076 -0.708 -0.387 -0.766 0.187 -0.349 0.574 0.447 -0.311 -0.253 -0.012 0.346 -0.082 -0.695 0.222 0.523 0.372 -0.972 -0.398 -0.677 0.269 -1.209 0.797 0.595 -0.351 -0.738 0.144 0.537 -0.486 -0.749 0.311 0.414 0.149 -0.354 -0.365 -0.637 0.081 -0.642 0.729 0.729 -0.750 -0.336 -0.065 0.556 0.146 -1.113 -0.057 0.505 -0.216 -0.154 -0.284 -0.453 -0.019 -0.919 0.810 0.661 -0.817 -0.165 -0.060 0.533 -0.339 -0.519 0.090 0.754 -0.656 -0.090 -0.436 -0.356 0.184 -0.370 0.388 0.674 -0.571 -0.715 0.166 0.239 0.262 -1.066 0.193 0.764 -0.220 -0.471 -0.471 -0.112 0.328 -0.785 0.309 0.383 -0.407 -0.209 0.107 0.438 -0.241 -0.671 0.228 0.220 -0.354 0.355 -0.369 -0.692 0.297 -1.049 0.739 0.866 -0.437 -0.849 -0.179 0.383 0.296 -1.350 0.106 0.776 0.066 -1.110 -0.364 -0.869 0.475 -1.078 0.669 0.766 -0.432 -0.628 -0.134 0.549 -0.409 -1.190 0.428 0.854 -0.378 -0.838 -0.212 -0.520 0.217 -0.290 0.404 0.638 -0.290 -0.594 -0.054 0.524 0.037 -0.740 -0.093 0.799 -0.128 -0.866 -0.327 -0.481 0.295 -0.589 0.477 0.608 -0.317 -0.967 0.216 0.504 -0.104 -0.836 0.126 0.713 -0.338 -0.462 -0.244 -0.689 0.238 -0.767 0.689 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.698 -0.575 -0.321 -0.143 0.552 -0.546 -0.611 0.256 0.803 -0.413 -0.679 -0.184 -0.476 -0.198 -0.222 0.634 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.603 -0.127 -0.686 -0.083 0.563 -0.001 -0.847 -0.048 0.584 -0.144 -0.316 -0.335 -0.538 0.007 -0.779 0.786 0.717 -0.403 -0.526 -0.143 0.403 0.382 -0.903 -0.252 0.750 -0.087 -0.799 -0.318 -1.189 0.655 -1.489 0.706 0.673 -0.673 -0.122 -0.218 0.530 -0.503 -0.684 0.297 0.828 -0.522 -0.395 -0.381 -0.765 0.521 -0.422 0.298 0.288 -0.230 -0.032 -0.077 0.287 0.331 -0.932 -0.003 0.715 -0.046 -0.686 -0.381 -1.043 0.661 -0.847 0.462 0.410 -0.112 -0.667 0.159 0.611 -0.124 -0.824 -0.015 0.562 -0.214 -0.093 -0.467 -0.831 0.455 -1.020 0.655 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.600 -0.650 -0.312 0.058 0.577 -0.191 -0.815 0.089 0.714 -0.346 -0.476 -0.228 -0.644 0.133 -0.456 0.618 0.669 -0.781 -0.399 0.098 0.436 -0.312 -0.802 0.343 0.821 -0.466 -0.534 -0.288 -0.432 -0.088 -0.348 0.616 0.509 -0.106 -0.785 0.093 0.312 0.069 -0.588 0.063 0.665 -0.191 -0.227 -0.547 -0.593 0.019 -0.800 0.807 0.832 -0.484 -0.617 -0.230 0.438 0.140 -0.938 0.031 0.873 -0.117 -0.883 -0.506 -0.866 0.305 -0.839 0.728 0.759 -0.422 -0.635 -0.123 0.494 -0.297 -0.823 0.278 0.717 -0.389 -0.344 -0.313 -0.707 0.154 -0.603 0.693 0.798 -0.605 -0.439 -0.207 0.701 -0.160 -0.869 -0.103 0.976 -0.234 -0.984 -0.561 -0.388 0.146 -0.811 0.641 0.502 -0.283 -0.769 0.233 0.513 -0.011 -0.980 0.102 0.680 -0.413 -0.194 -0.373 -0.468 0.118 -0.585 0.609 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.578 0.134 -0.593 -0.420 1.193 -0.854 -0.994 -0.603 -0.132 -1.458 1.110 -0.824 -10.169 -10.169 1.999 -10.169 -10.169 -10.169 -10.169 1.999 1.498 -3.847 -0.637 -1.108 1.265 -1.410 -2.510 0.064 0.173 -2.685 0.937 -0.317 -0.054 -1.116 -1.893 1.205 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.757 -0.982 -0.894 0.340 0.517 -1.000 -0.233 0.285 0.328 -0.262 -0.909 0.462 0.445 -0.738 -0.637 0.482 0.780 -0.788 -0.691 0.117 0.377 -0.991 -0.082 0.326 0.461 -0.167 -0.971 0.290 -0.058 -0.469 -0.119 0.482 0.629 -0.832 -0.399 0.182 0.420 -0.655 -0.234 0.235 0.451 -0.295 -0.618 0.222 0.375 -0.896 -0.319 0.448 0.691 -0.802 -1.073 0.419 0.512 -0.879 -0.100 0.134 0.492 -0.259 -1.244 0.418 0.177 -0.818 -0.572 0.704 0.626 -0.655 -0.671 0.256 0.651 -0.730 -0.158 -0.104 0.289 0.106 -1.004 0.267 0.437 -0.695 -0.648 0.476 0.466 -0.379 -0.446 0.158 0.301 -0.324 -0.095 0.046 0.407 -0.035 -0.548 0.021 0.147 -0.183 -0.260 0.236 0.260 -0.376 -0.252 0.254 0.314 -0.740 0.281 -0.084 0.264 0.141 -0.883 0.207 0.199 -0.475 -0.241 0.363 0.289 -0.396 -0.906 0.570 0.033 -0.834 0.284 0.260 0.188 0.041 -1.123 0.457 -0.074 -0.720 -0.354 0.732 0.794 -0.948 -0.528 0.077 0.321 -0.824 0.006 0.241 0.854 -0.329 -0.796 -0.285 0.265 -0.670 -0.451 0.525 0.352 -0.529 0.025 0.019 0.254 -0.698 0.046 0.213 0.373 0.161 -0.681 -0.054 -0.357 -0.179 0.021 0.402 0.413 -0.519 -0.223 0.156 0.324 -0.612 0.066 0.066 0.440 -0.249 -0.617 0.201 0.324 -0.584 -0.225 0.294 0.290 -0.577 -0.563 0.516 0.345 -0.844 0.116 0.123 0.193 -0.074 -0.773 0.402 -0.022 -0.622 -0.513 0.735 0.655 -0.860 -0.944 0.438 0.649 -0.897 -0.377 0.170 0.353 -0.234 -0.807 0.379 0.760 -1.098 -0.956 0.405 0.531 -0.605 -0.523 0.266 0.410 -0.442 -0.243 0.125 0.532 -0.321 -0.831 0.253 0.001 -0.138 -0.460 0.448 0.666 -0.758 -0.900 0.363 0.593 -0.860 -0.130 0.038 0.383 -0.086 -0.597 0.129 0.663 -0.949 -0.425 0.206 0.339 -0.735 -1.083 0.733 0.515 -0.887 -0.287 0.276 0.351 -0.361 -1.335 0.631 0.056 -0.745 -0.749 0.823 0.652 -0.633 -0.566 0.149 0.509 -0.884 -0.022 0.070 0.296 -0.218 -0.768 0.406 0.249 -0.609 -0.445 0.508 0.213 0.205 -0.497 -0.030 0.153 -0.740 0.127 0.260 0.183 0.044 -0.906 0.379 -0.236 -0.346 0.077 0.389 0.407 -0.527 -0.244 0.183 0.396 -0.514 -0.108 0.079 0.214 -0.142 -0.693 0.396 0.133 -0.273 -0.223 0.286 0.445 -0.309 -0.867 0.359 0.476 -0.761 0.022 0.006 0.242 -0.115 -1.065 0.501 0.010 -0.604 -0.610 0.749 0.502 -0.445 -0.366 0.101 0.246 -0.293 -0.178 0.156 -0.046 0.249 -0.479 0.171 0.135 -0.181 -0.521 0.404 0.215 -0.111 -0.276 0.122 -0.116 0.229 -0.240 0.082 0.388 0.135 -0.546 -0.138 -0.594 0.082 -0.097 0.426 0.031 -0.091 -0.039 0.092 -0.048 -0.192 0.332 -0.153 0.153 0.259 -0.510 -0.017 -0.172 0.085 -0.313 0.318 0.089 -0.134 -0.743 0.514 -0.307 -0.197 0.261 0.164 -0.035 0.213 -0.520 0.224 -0.192 -0.306 -0.274 0.574 0.547 -0.631 -0.353 0.150 0.034 -1.029 0.520 0.074 0.267 -0.095 -0.302 0.069 0.177 -0.457 -0.167 0.322 0.177 -0.168 -0.137 0.097 0.086 -0.773 0.535 -0.145 0.302 0.354 -0.881 -0.080 -0.381 -0.010 0.109 0.215 0.328 -0.545 0.116 -0.035 0.008 -0.560 0.296 0.121 0.399 -0.003 -0.306 -0.194 0.103 -0.464 -0.074 0.323 0.243 -0.342 -0.774 0.528 0.105 -0.690 0.450 -0.092 0.257 -0.045 -0.896 0.376 -0.129 -0.512 -0.310 0.657 0.603 -0.683 -0.961 0.427 0.457 -0.750 -0.472 0.392 0.385 -0.380 -0.832 0.448 0.586 -0.669 -0.812 0.379 0.326 -0.284 -0.567 0.323 0.084 -0.401 -0.083 0.309 0.420 -0.075 -0.706 0.138 -0.442 0.404 -0.380 0.229 0.398 -0.481 -0.636 0.403 0.270 -0.777 -0.076 0.335 0.389 0.007 -0.792 0.148 0.314 -0.544 -0.227 0.282 0.151 -0.342 -1.043 0.692 0.132 -0.530 -0.142 0.384 0.282 -0.220 -0.739 0.408 -0.179 -0.473 -0.477 0.747 0.807 -0.837 -0.777 0.146 0.541 -0.944 -0.088 0.116 0.506 -0.280 -0.663 0.169 0.366 -0.530 -0.494 0.388 0.462 -0.465 -0.246 0.077 0.254 -0.523 0.117 0.039 0.702 -0.387 -0.729 0.007 -0.097 -0.212 -0.042 0.299 0.377 -0.822 0.300 -0.144 0.268 -0.451 0.059 0.033 0.406 -0.090 -0.383 -0.046 0.350 -0.497 -0.163 0.169 0.624 -0.687 -0.844 0.357 0.330 -0.870 0.187 0.081 0.539 -0.249 -0.779 0.167 -0.004 -0.571 -0.513 0.704 0.560 -0.501 -0.528 0.170 0.477 -0.595 -0.137 0.051 0.017 0.358 -0.872 0.214 0.291 -0.317 -0.497 0.339 0.338 -0.482 -0.143 0.156 0.310 -0.543 0.137 -0.038 0.311 0.187 -0.521 -0.115 -0.262 0.056 -0.202 0.330 0.225 -0.368 0.122 -0.048 0.247 -0.671 0.370 -0.163 0.206 0.396 -0.666 -0.151 0.054 -0.181 -0.159 0.244 0.201 -0.150 -0.892 0.496 -0.098 -0.575 0.263 0.256 0.071 0.370 -0.787 0.107 -0.389 -0.227 -0.111 0.542 0.665 -0.827 -0.374 0.110 0.292 -0.791 0.095 0.177 0.402 -0.163 -0.216 -0.113 0.085 -0.382 -0.291 0.438 0.290 -0.356 -0.114 0.100 0.073 -0.587 0.316 0.054 0.252 0.025 -0.163 -0.156 -0.322 -0.053 0.085 0.232 0.346 -0.497 -0.015 0.044 0.048 -0.401 -0.043 0.309 0.402 -0.284 -0.079 -0.135 0.093 -0.194 -0.068 0.145 0.392 -0.456 -0.589 0.372 0.211 -0.761 0.367 -0.055 0.080 -0.183 -0.204 0.256 0.135 -0.601 -0.403 0.572 0.759 -1.035 -0.751 0.294 0.764 -0.992 -0.574 0.173 0.272 -0.159 -0.686 0.351 0.681 -0.835 -0.649 0.261 0.383 -0.507 -0.457 0.338 0.360 -0.646 -0.171 0.250 0.371 -0.134 -0.835 0.305 -0.276 -0.210 -0.119 0.474 0.444 -0.544 -0.512 0.324 0.409 -0.784 0.070 0.059 0.408 -0.282 -0.487 0.184 0.330 -0.730 0.107 0.088 0.302 -0.412 -0.870 0.554 0.313 -0.794 0.003 0.238 0.307 -0.190 -0.782 0.384 0.069 -0.642 -0.490 0.676 0.751 -0.869 -0.937 0.318 0.471 -0.593 -0.209 0.120 0.310 -0.364 -0.878 0.526 0.382 -0.821 -0.659 0.582 0.359 -0.402 -0.667 0.413 0.226 -0.997 -0.173 0.529 0.370 -0.208 -1.003 0.425 -0.149 -0.426 -0.338 0.644 0.637 -0.857 -0.546 0.273 0.351 -0.583 -0.185 0.235 0.174 -0.176 -0.906 0.539 0.187 -0.498 -0.510 0.538 0.222 -0.468 -1.015 0.693 0.465 -0.985 -0.147 0.277 0.221 -0.336 -1.102 0.657 0.155 -0.819 -0.685 0.763 0.561 -0.579 -0.492 0.194 0.342 -0.539 -0.205 0.236 0.141 -0.019 -0.843 0.436 0.071 -0.177 -0.720 0.544 0.327 -0.359 -0.453 0.305 0.250 -0.311 -0.120 0.117 0.229 0.168 -0.761 0.157 -0.358 0.263 -0.304 0.274 0.229 -0.329 -0.246 0.250 0.075 -0.505 0.282 0.036 0.187 0.145 -0.596 0.130 -0.027 -0.069 -0.374 0.372 0.265 -0.292 -1.034 0.578 -0.065 -0.557 -0.084 0.507 0.091 0.095 -0.859 0.396 -0.261 -0.176 -0.473 0.641 0.773 -0.955 -0.767 0.248 0.356 -0.894 -0.088 0.311 0.489 -0.323 -0.683 0.232 0.271 -0.855 -0.261 0.491 0.313 -0.481 -0.174 0.208 0.359 -0.819 -0.022 0.222 0.232 0.098 -0.694 0.185 -0.254 -0.369 0.190 0.318 0.512 -0.561 -0.418 0.198 0.301 -0.435 -0.122 0.150 0.361 -0.266 -0.434 0.194 0.164 -0.595 -0.051 0.324 0.258 -0.275 -1.107 0.599 0.419 -0.745 -0.036 0.126 0.100 -0.184 -1.213 0.693 0.069 -0.790 -0.257 0.619 0.698 -0.891 -0.965 0.407 0.561 -0.801 -0.432 0.274 0.369 -0.152 -0.953 0.369 0.372 -0.833 -0.921 0.693 0.600 -0.584 -0.780 0.304 0.439 -0.610 -0.312 0.243 0.353 -0.107 -0.867 0.317 -0.060 -0.186 -0.519 0.549 0.560 -0.639 -0.753 0.367 0.518 -0.609 -0.314 0.148 0.385 0.000 -0.797 0.162 0.402 -0.886 -0.564 0.547 0.315 -0.506 -1.262 0.709 0.393 -0.694 -0.398 0.389 0.286 -0.321 -1.144 0.612 0.061 -0.626 -0.746 0.776 Intron LUT 5 4 4 0 0.000 0.811 -0.938 -0.619 0.100 0.336 -0.903 0.142 0.137 0.224 0.091 -0.674 0.189 0.252 -0.360 -0.832 0.554 0.660 -0.378 -0.413 -0.153 0.024 -0.390 0.377 -0.119 0.565 0.020 -0.828 -0.084 -0.292 -0.004 -0.361 0.493 0.601 -0.934 0.223 -0.335 -0.144 -0.466 0.235 0.256 0.380 -0.301 -0.382 0.162 0.266 -0.476 -0.198 0.271 0.694 -0.699 -1.091 0.376 0.148 -0.504 0.376 -0.169 0.393 -0.057 -0.767 0.187 0.151 -0.475 -0.697 0.635 0.581 -0.637 -0.586 0.257 0.809 -1.164 0.138 -0.512 0.128 0.327 -0.584 -0.022 0.325 -0.213 -0.825 0.400 0.286 -0.182 -0.177 0.021 -0.032 -0.194 0.187 0.014 0.388 0.177 -0.425 -0.293 -0.079 0.092 -0.251 0.198 0.070 -0.306 0.153 0.041 -0.105 -0.940 0.800 -0.308 0.212 0.318 -0.451 -0.211 0.179 -0.284 -0.048 0.110 0.217 -0.190 -0.918 0.518 -0.590 -0.764 0.728 0.125 -0.063 0.341 -0.792 0.261 -0.359 -0.490 -0.507 0.851 0.781 -1.030 -0.157 -0.161 0.204 -1.152 0.487 -0.004 1.325 -0.703 -1.122 -1.249 0.272 -0.500 -0.373 0.393 0.198 -0.521 0.312 -0.130 -0.181 -0.565 0.644 -0.186 0.414 0.217 -0.547 -0.286 -0.675 0.235 -0.078 0.321 0.495 -0.988 0.197 -0.089 -0.131 -0.724 0.405 0.211 0.637 -0.386 -0.108 -0.411 0.598 -0.727 -0.023 -0.155 0.316 -0.710 -0.324 0.427 -0.139 -0.737 0.651 -0.119 0.105 0.014 -0.702 0.379 -0.219 -0.517 -0.491 0.791 0.575 -0.671 -0.883 0.422 0.604 -0.810 0.084 -0.235 0.336 0.109 -0.581 -0.014 0.871 -0.841 -1.060 0.180 0.436 -0.540 -0.368 0.244 0.080 -0.316 0.174 0.017 0.462 0.058 -0.621 -0.103 -0.304 0.456 -0.561 0.189 0.550 -0.713 -0.451 0.256 0.432 -0.926 0.328 -0.202 0.566 -0.089 -0.482 -0.213 0.573 -0.869 -0.175 0.110 0.316 -0.568 -1.041 0.673 0.212 -0.450 0.170 -0.022 0.333 -0.126 -0.987 0.400 -0.100 -0.335 -0.968 0.818 0.550 -0.365 -0.333 -0.050 0.192 -0.816 0.382 -0.020 0.031 0.198 -0.479 0.155 0.121 -0.337 -0.556 0.527 -0.419 0.842 -0.569 -0.349 -0.401 -0.351 0.343 0.251 0.087 0.401 -0.835 0.080 -0.631 0.291 -0.307 0.403 0.162 -0.393 0.314 -0.190 -0.107 -0.373 0.335 0.053 0.009 -0.031 -0.566 0.422 -0.059 -0.076 -0.015 0.140 0.361 -0.083 -0.921 0.314 0.060 -0.537 0.515 -0.253 0.125 0.171 -0.876 0.308 0.088 -0.341 -0.512 0.533 0.401 -0.386 -0.224 0.082 0.071 -0.302 0.139 0.053 0.055 0.380 -0.649 0.031 0.116 0.119 -1.029 0.422 0.061 0.204 -0.365 0.039 -0.704 0.407 0.212 -0.149 0.213 0.384 -0.485 -0.285 -0.912 0.674 -0.591 0.274 -0.027 -0.429 0.258 0.111 -0.270 -0.577 0.731 -0.251 0.068 0.428 -0.438 -0.204 -0.070 0.051 -0.187 0.180 0.009 -0.031 -1.146 0.644 -0.929 -0.291 0.495 0.320 -0.166 0.414 -0.739 0.236 -0.493 -0.014 -0.483 0.664 0.663 -0.729 -0.380 0.063 -0.319 -1.013 0.783 -0.026 0.380 0.075 -0.468 -0.116 -0.022 -0.190 -0.170 0.322 0.072 -0.036 0.003 -0.041 -0.542 -0.779 0.877 -0.161 0.084 0.572 -0.675 -0.274 -0.667 0.275 0.073 0.149 0.337 -0.631 0.165 -0.045 -0.466 -0.598 0.547 0.207 0.391 -0.060 -0.019 -0.429 0.149 -0.392 0.014 0.162 0.376 -0.528 -0.966 0.582 -0.336 -0.690 0.755 -0.151 -0.050 -0.050 -0.989 0.646 0.024 -0.372 -0.416 0.547 0.453 -0.650 -1.195 0.639 0.163 -0.847 -0.059 0.449 0.403 0.018 -0.769 0.109 0.720 -0.587 -0.905 0.205 0.154 0.064 -0.625 0.255 -0.471 -0.127 0.228 0.253 0.230 0.308 -0.631 -0.084 -1.553 1.365 -1.280 -0.574 0.332 -0.367 -0.606 0.388 0.186 -0.927 0.256 0.192 0.406 0.105 -0.606 -0.085 0.264 -0.405 -0.026 0.086 0.045 -0.333 -1.184 0.794 -0.524 -0.348 0.212 0.444 0.130 0.031 -0.595 0.289 -0.525 -0.117 -0.540 0.761 0.771 -0.869 -0.452 0.021 0.067 -0.866 0.463 0.036 0.496 0.130 -0.482 -0.359 0.122 -0.300 -0.657 0.551 0.336 0.077 -0.259 -0.239 -0.216 -0.467 0.405 0.127 0.550 0.053 -0.682 -0.192 -0.422 0.211 -0.149 0.257 -0.304 -1.519 1.218 -0.957 -0.324 -0.543 0.433 0.220 0.562 -0.189 -0.167 -0.404 0.086 -0.197 -0.112 0.190 0.586 -0.563 -0.878 0.354 -0.279 -0.628 0.734 -0.208 0.439 0.032 -0.707 0.014 -0.067 -0.324 -0.612 0.671 0.569 -0.435 -0.526 0.114 0.436 -0.866 0.222 -0.101 -0.130 0.643 -0.764 -0.096 0.285 -0.019 -0.745 0.261 0.336 -0.271 -0.077 -0.056 -0.277 -0.203 0.425 -0.053 0.218 0.446 -0.458 -0.422 -0.507 0.431 -0.284 0.172 0.137 -0.476 0.293 -0.064 -0.224 -1.070 0.954 -0.454 0.171 0.470 -0.442 -0.410 0.023 -0.150 0.036 0.080 0.196 -0.288 -1.011 0.623 -0.785 -0.756 0.641 0.343 -0.209 0.636 -0.804 0.011 -0.495 -0.101 -0.474 0.712 0.770 -1.119 -0.326 0.052 0.018 -1.110 0.559 0.071 0.630 -0.311 -0.115 -0.468 0.032 -0.478 -0.169 0.454 0.246 -0.384 0.080 -0.013 -0.166 -0.601 0.660 -0.202 0.322 0.204 -0.346 -0.301 -0.467 0.071 0.119 0.189 0.399 -0.848 0.212 -0.047 -0.258 -0.473 0.222 0.353 0.356 -0.504 0.462 -0.652 0.203 -0.391 0.057 0.064 0.521 -0.716 -1.082 0.570 0.015 -0.811 0.562 -0.085 0.327 -0.263 -0.481 0.258 0.019 -0.519 -0.457 0.642 0.616 -0.858 -0.483 0.263 0.723 -1.062 0.077 -0.294 0.251 0.057 -0.428 0.037 0.876 -0.955 -0.544 -0.053 0.297 -0.236 -0.239 0.104 -0.094 -0.248 0.315 -0.034 0.262 0.127 -0.642 0.095 -0.415 0.381 -0.211 0.116 0.409 -0.578 -0.007 0.011 0.215 -1.016 0.641 -0.348 0.428 -0.047 -0.175 -0.321 0.313 -0.867 0.620 -0.572 0.228 -0.453 -1.057 0.694 -0.184 -0.560 0.456 0.097 0.169 0.082 -0.751 0.291 -0.144 -0.290 -0.405 0.606 0.691 -0.669 -0.893 0.284 0.137 -0.757 0.444 -0.076 0.122 0.021 -0.686 0.351 0.214 -0.572 -0.724 0.643 -0.080 0.270 -0.420 0.139 -0.225 -0.500 0.308 0.262 0.151 0.227 -0.858 0.223 -0.365 0.064 -0.442 0.528 0.363 -0.618 0.042 0.046 -0.112 -0.333 0.221 0.158 0.169 -0.088 -0.684 0.393 0.131 -0.203 -0.424 0.368 -0.065 -0.118 -0.926 0.675 -0.055 -0.599 0.397 0.085 -0.027 0.182 -0.855 0.413 0.101 -0.500 -0.781 0.712 0.489 -0.570 -0.601 0.337 -0.006 -0.528 0.285 0.127 -0.035 0.438 -0.595 0.011 -0.137 0.147 -1.052 0.586 0.227 -0.209 -0.283 0.192 -0.388 -0.062 0.216 0.159 0.225 0.374 -0.578 -0.209 -0.797 0.638 -0.735 0.341 0.172 -0.549 0.090 0.171 -0.416 -0.740 0.726 -0.003 0.133 0.381 -0.488 -0.172 -0.211 0.111 -0.420 0.388 0.171 -0.307 -0.902 0.614 -1.440 -1.046 -0.250 1.205 -0.170 0.306 -0.661 0.314 -0.607 0.124 -0.750 0.730 0.772 -1.024 -0.946 0.358 0.081 -0.778 0.352 0.115 0.469 -0.141 -0.633 0.089 -0.029 -0.692 -0.214 0.622 -0.008 -0.246 0.111 0.114 -0.178 -0.607 0.524 0.031 -0.010 0.489 -0.560 -0.113 -0.577 0.016 0.096 0.322 0.526 -0.774 -0.250 0.181 -0.129 -0.493 0.147 0.342 0.421 -0.187 -0.420 0.049 0.268 -0.626 -0.174 0.335 0.106 -0.226 -1.049 0.665 -0.086 -0.621 0.329 0.203 -0.611 -0.096 -1.334 1.009 -0.254 -0.593 -0.405 0.802 0.552 -0.740 -1.168 0.576 0.449 -0.937 0.182 -0.032 0.305 0.136 -0.698 0.069 0.245 -0.552 -0.948 0.691 0.431 -0.359 -0.591 0.273 0.080 -0.297 0.030 0.148 0.401 0.200 -0.779 -0.078 -0.511 0.431 -0.928 0.511 0.592 -0.633 -0.789 0.344 0.279 -0.710 0.248 -0.017 0.472 0.071 -0.620 -0.134 0.135 -0.614 -0.459 0.605 0.215 -0.392 -1.122 0.694 0.080 -0.379 0.011 0.222 0.174 0.022 -1.027 0.450 -0.257 -0.211 -1.033 0.857 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.550 -0.947 -0.568 0.425 0.462 -0.520 -0.697 0.388 0.515 -0.697 -0.508 0.323 0.550 -1.013 -0.508 0.419 0.504 -0.671 -0.581 0.362 0.936 -0.229 -0.931 -0.496 1.486 -1.915 -0.931 -1.289 1.161 -0.752 -1.462 -0.310 1.021 -0.606 -0.619 -0.593 1.994 -7.439 -7.439 -7.439 -7.439 -7.439 -7.439 1.994 -7.439 -7.439 1.994 -7.439 0.169 -0.496 0.362 -0.181 0.510 0.425 -0.931 -0.496 0.241 -0.725 -0.055 0.323 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.646 -0.691 -0.081 -0.202 0.705 -0.501 -0.851 0.149 0.626 -1.131 -0.617 0.431 0.626 -0.479 -0.257 -0.149 0.465 -0.394 -0.691 0.309 0.585 -1.276 -0.457 0.442 -6.524 -6.524 -6.524 1.988 1.988 -6.524 -6.524 -6.524 1.988 -6.524 -6.524 -6.524 TAG WMM 9 6 4 0 0.000 0.720 -0.628 -0.043 -0.444 0.527 0.042 -0.840 -0.043 0.585 -0.766 -1.181 0.556 0.527 -0.444 0.339 -0.840 0.745 -0.695 -0.387 -0.087 0.305 -0.387 0.122 -0.133 -5.087 -5.087 -5.087 1.968 1.968 -5.087 -5.087 -5.087 -5.087 -5.087 1.968 -5.087 TGA WMM 9 6 4 0 0.000 0.637 -0.507 0.026 -0.469 0.531 -0.111 -1.000 0.176 0.455 -0.585 -0.585 0.374 0.435 -0.433 0.103 -0.263 0.415 -0.140 -0.469 0.052 -0.231 -0.170 -0.027 0.354 -5.755 -5.755 -5.755 1.980 -5.755 -5.755 1.980 -5.755 1.980 -5.755 -5.755 -5.755 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/thale0000644000175000017500000013467611424066010014406 0ustar moellermoellerzoeHMM At 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.801902 Inter Esngl 0.198098 Inter ORF 1 Intron Eterm 0.206953 Intron Exon 0.793047 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.521739 0.276680 0.201581 0.693027 0.142007 0.164966 0.678571 0.170330 0.151099 0.714286 0.122807 0.162907 0.798611 0.201389 0.795635 0.204365 0.774451 0.225549 Einit 2 DEFINED 0 249 -9.931 -9.858 -9.788 -9.721 -9.657 -9.596 -9.537 -9.481 -9.426 -9.374 -9.324 -9.297 -9.271 -9.245 -9.219 -9.194 -9.170 -9.146 -9.122 -9.099 -9.076 -9.072 -9.068 -9.064 -9.061 -9.057 -9.053 -9.049 -9.046 -9.042 -9.038 -9.005 -8.973 -8.942 -8.911 -8.881 -8.851 -8.822 -8.794 -8.766 -8.739 -8.712 -8.686 -8.660 -8.634 -8.609 -8.585 -8.561 -8.537 -8.514 -8.491 -8.458 -8.426 -8.395 -8.365 -8.335 -8.306 -8.277 -8.249 -8.221 -8.194 -8.166 -8.138 -8.110 -8.083 -8.057 -8.031 -8.005 -7.980 -7.956 -7.931 -7.935 -7.938 -7.942 -7.945 -7.949 -7.952 -7.956 -7.959 -7.963 -7.966 -7.979 -7.991 -8.004 -8.016 -8.029 -8.042 -8.055 -8.068 -8.081 -8.095 -8.120 -8.146 -8.172 -8.199 -8.226 -8.253 -8.282 -8.310 -8.340 -8.370 -8.388 -8.407 -8.426 -8.446 -8.466 -8.486 -8.506 -8.527 -8.548 -8.569 -8.566 -8.563 -8.561 -8.558 -8.556 -8.553 -8.550 -8.548 -8.545 -8.542 -8.545 -8.548 -8.550 -8.553 -8.556 -8.558 -8.561 -8.563 -8.566 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.569 -8.582 -8.596 -8.609 -8.623 -8.637 -8.651 -8.666 -8.680 -8.694 -8.709 -8.706 -8.703 -8.700 -8.697 -8.694 -8.691 -8.689 -8.686 -8.683 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.680 -8.691 -8.703 -8.715 -8.727 -8.739 -8.751 -8.763 -8.775 -8.788 -8.800 -8.813 -8.825 -8.838 -8.851 -8.864 -8.877 -8.891 -8.904 -8.918 -8.931 -8.952 -8.973 -8.995 -9.016 -9.038 -9.061 -9.083 -9.106 -9.130 -9.154 -9.158 -9.162 -9.166 -9.170 -9.174 -9.178 -9.182 -9.186 -9.190 -9.194 -9.186 -9.178 -9.170 -9.162 -9.154 -9.146 -9.138 -9.130 -9.122 -9.114 -9.118 -9.122 -9.126 -9.130 -9.134 -9.138 -9.142 -9.146 -9.150 -9.154 -9.150 -9.146 -9.142 -9.138 -9.134 -9.130 -9.126 -9.122 -9.118 -9.114 -9.158 -9.203 -9.249 -9.297 -9.346 -9.398 -9.451 -9.506 -9.563 GEOMETRIC 250 -1 283 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.239 -10.173 -10.109 -10.048 -9.990 -9.934 -9.880 -9.828 -9.778 -9.729 -9.683 -9.643 -9.604 -9.566 -9.529 -9.493 -9.458 -9.424 -9.391 -9.358 -9.326 -9.295 -9.265 -9.235 -9.205 -9.177 -9.148 -9.121 -9.094 -9.067 -9.041 -9.023 -9.004 -8.987 -8.969 -8.951 -8.934 -8.917 -8.900 -8.883 -8.867 -8.851 -8.835 -8.819 -8.803 -8.787 -8.772 -8.757 -8.741 -8.726 -8.712 -8.680 -8.648 -8.618 -8.588 -8.558 -8.529 -8.501 -8.473 -8.446 -8.419 -8.405 -8.391 -8.377 -8.363 -8.349 -8.335 -8.322 -8.308 -8.295 -8.282 -8.265 -8.247 -8.230 -8.214 -8.197 -8.181 -8.165 -8.148 -8.133 -8.117 -8.103 -8.090 -8.077 -8.063 -8.050 -8.037 -8.024 -8.012 -7.999 -7.987 -7.990 -7.994 -7.997 -8.001 -8.004 -8.008 -8.012 -8.015 -8.019 -8.023 -8.045 -8.067 -8.090 -8.113 -8.137 -8.160 -8.185 -8.210 -8.235 -8.260 -8.262 -8.265 -8.267 -8.269 -8.271 -8.273 -8.275 -8.278 -8.280 -8.282 -8.293 -8.304 -8.315 -8.326 -8.338 -8.349 -8.361 -8.372 -8.384 -8.396 -8.422 -8.449 -8.476 -8.504 -8.532 -8.561 -8.590 -8.620 -8.651 -8.683 -8.674 -8.665 -8.657 -8.648 -8.640 -8.632 -8.623 -8.615 -8.607 -8.598 -8.609 -8.620 -8.632 -8.643 -8.654 -8.665 -8.677 -8.688 -8.700 -8.712 -8.738 -8.766 -8.793 -8.822 -8.851 -8.880 -8.910 -8.941 -8.972 -9.004 -8.997 -8.990 -8.983 -8.976 -8.969 -8.962 -8.955 -8.948 -8.941 -8.934 -8.931 -8.927 -8.924 -8.920 -8.917 -8.914 -8.910 -8.907 -8.903 -8.900 -8.897 -8.893 -8.890 -8.887 -8.883 -8.880 -8.877 -8.874 -8.870 -8.867 -8.860 -8.854 -8.847 -8.841 -8.835 -8.828 -8.822 -8.815 -8.809 -8.803 -8.812 -8.822 -8.831 -8.841 -8.851 -8.860 -8.870 -8.880 -8.890 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.900 -8.917 -8.934 -8.951 -8.969 -8.987 -9.004 -9.023 -9.041 -9.060 -9.078 -9.105 -9.133 -9.160 -9.189 -9.218 -9.247 -9.278 -9.308 -9.340 GEOMETRIC 250 -1 280 Exon 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 146 ORF 2 DEFINED 0 249 -12.469 -12.295 -12.139 -11.998 -11.870 -11.753 -11.644 -11.543 -11.449 -11.360 -11.276 -11.055 -10.864 -10.694 -10.543 -10.406 -10.281 -10.166 -10.059 -9.960 -9.867 -9.702 -9.554 -9.420 -9.297 -9.184 -9.079 -8.981 -8.889 -8.803 -8.722 -8.605 -8.496 -8.396 -8.301 -8.213 -8.130 -8.051 -7.976 -7.905 -7.838 -7.781 -7.726 -7.673 -7.622 -7.573 -7.525 -7.479 -7.434 -7.391 -7.349 -7.317 -7.287 -7.257 -7.227 -7.198 -7.170 -7.142 -7.115 -7.088 -7.062 -7.056 -7.050 -7.043 -7.037 -7.031 -7.025 -7.019 -7.012 -7.006 -7.000 -7.005 -7.009 -7.014 -7.018 -7.023 -7.027 -7.032 -7.036 -7.041 -7.045 -7.058 -7.071 -7.085 -7.098 -7.112 -7.125 -7.139 -7.153 -7.167 -7.181 -7.194 -7.207 -7.220 -7.233 -7.246 -7.259 -7.273 -7.286 -7.300 -7.314 -7.326 -7.339 -7.351 -7.364 -7.377 -7.390 -7.403 -7.417 -7.430 -7.444 -7.468 -7.492 -7.518 -7.543 -7.569 -7.596 -7.623 -7.650 -7.678 -7.707 -7.725 -7.743 -7.761 -7.780 -7.799 -7.818 -7.837 -7.857 -7.877 -7.897 -7.917 -7.937 -7.957 -7.977 -7.998 -8.019 -8.040 -8.062 -8.084 -8.107 -8.134 -8.163 -8.192 -8.221 -8.251 -8.282 -8.314 -8.346 -8.379 -8.412 -8.422 -8.432 -8.442 -8.452 -8.463 -8.473 -8.483 -8.494 -8.504 -8.515 -8.526 -8.536 -8.547 -8.558 -8.569 -8.580 -8.591 -8.603 -8.614 -8.625 -8.646 -8.668 -8.689 -8.711 -8.733 -8.756 -8.779 -8.802 -8.826 -8.850 -8.862 -8.874 -8.886 -8.898 -8.910 -8.922 -8.935 -8.947 -8.960 -8.973 -8.989 -9.006 -9.023 -9.040 -9.057 -9.075 -9.093 -9.111 -9.129 -9.147 -9.156 -9.166 -9.175 -9.185 -9.194 -9.204 -9.214 -9.223 -9.233 -9.243 -9.251 -9.259 -9.266 -9.274 -9.282 -9.290 -9.298 -9.306 -9.314 -9.322 -9.339 -9.355 -9.372 -9.389 -9.406 -9.423 -9.441 -9.459 -9.477 -9.495 -9.527 -9.559 -9.593 -9.627 -9.662 -9.698 -9.734 -9.772 -9.810 -9.850 -9.860 -9.870 -9.881 -9.891 -9.901 -9.912 -9.922 -9.933 -9.944 GEOMETRIC 250 -1 141 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.304 -0.807 -0.836 0.708 0.139 -0.688 -0.707 0.736 0.068 -0.677 -0.754 0.793 0.132 -0.782 -0.731 0.782 0.108 -0.932 -0.558 0.781 0.064 -0.727 -0.758 0.815 0.086 -0.853 -0.790 0.853 -0.101 -0.758 -0.662 0.883 -0.230 -0.762 -0.603 0.926 -0.247 -0.819 -0.441 0.890 -0.313 -0.794 -0.600 0.970 -0.473 -0.790 -0.473 0.986 -0.381 -0.866 -0.654 1.034 -0.435 -0.857 -0.621 1.041 -0.403 -0.883 -0.640 1.042 -0.313 -0.879 -0.742 1.038 -0.425 -0.973 -0.500 1.027 -0.230 -0.853 -0.477 0.907 -0.284 -0.849 -0.684 1.001 -0.304 -0.861 -0.727 1.025 -0.318 -1.001 -0.537 1.006 -0.517 -0.918 -0.762 1.126 -0.640 -1.230 -1.321 1.340 0.086 -1.766 0.632 0.130 -2.225 1.429 -7.673 0.124 1.998 -9.258 -9.258 -9.258 -9.258 -9.258 1.998 -9.258 -0.049 -1.292 1.130 -1.197 -0.056 -0.762 -0.575 0.829 0.201 -0.807 -0.068 0.406 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.183 0.108 0.285 -0.280 0.249 0.098 -0.815 0.231 0.498 0.073 -0.497 -0.274 -0.852 0.357 0.387 -0.221 0.664 -0.853 0.124 -0.374 0.560 -1.016 -0.265 0.261 0.375 -0.429 -0.283 0.187 -0.460 0.290 -0.604 0.478 0.463 -0.768 -0.011 0.059 -0.085 -0.641 -1.029 0.945 0.644 -0.689 -0.511 0.157 -0.554 -0.383 0.124 0.549 . 0.993 . 1.007 0.251 -0.472 -0.882 0.629 . -0.258 1.043 0.142 -0.670 0.248 0.208 0.041 0.130 -0.126 0.197 -0.246 0.382 -0.426 -0.557 0.348 0.515 -0.355 -0.640 0.199 -0.630 -0.100 0.267 0.284 0.380 -0.344 -0.056 -0.076 0.320 -1.382 -0.131 0.541 -0.281 -0.700 -0.168 0.741 -0.951 0.389 -0.626 0.609 -0.040 -0.327 0.199 0.114 0.182 -0.198 -0.742 0.482 0.159 -0.500 -0.430 0.520 -0.690 -0.044 0.258 0.280 . 1.184 . 0.789 0.018 -0.449 -0.543 0.649 . 0.003 0.742 0.406 -0.814 0.186 0.256 0.136 0.332 -0.714 0.565 -0.616 0.225 -0.529 -0.486 0.510 0.547 -0.616 -0.078 -0.092 -0.663 -0.015 0.207 0.292 0.621 -1.644 0.334 -0.181 0.434 -1.241 -0.649 0.668 0.018 -1.037 -0.391 0.797 -0.596 -0.198 -0.452 0.796 0.352 -1.235 0.311 0.081 0.179 -0.986 -0.483 0.720 0.653 -0.957 -0.885 0.455 -1.156 -0.576 -0.109 0.966 . 0.877 . 1.114 0.308 -0.880 -0.836 0.730 . -0.750 0.969 0.535 -0.599 -0.100 -0.233 0.637 -0.078 -0.083 0.089 0.063 0.354 -0.464 -0.839 0.524 0.455 -0.121 -0.661 0.108 -0.512 0.077 0.179 0.153 0.007 -0.687 0.273 0.221 0.347 -1.284 -0.406 0.644 0.269 -0.700 -0.142 0.349 -0.791 0.308 -0.593 0.605 0.064 -0.875 -0.014 0.505 0.338 -0.980 -0.956 0.777 0.464 -0.912 -0.522 0.478 -0.745 -0.442 0.062 0.699 . 1.215 . 0.747 0.291 -0.500 -0.740 0.556 . -0.061 0.715 0.485 -0.931 0.398 0.279 -0.083 -0.002 -0.157 0.379 -0.314 0.363 -0.508 -0.479 0.371 0.524 -0.367 -0.292 -0.043 -0.732 0.059 0.603 -0.256 0.409 -0.670 0.185 -0.141 0.662 -1.871 0.058 0.142 0.093 -1.100 0.000 0.553 -0.829 0.014 -0.513 0.788 0.074 -0.979 0.434 0.123 0.205 -0.779 -0.936 0.801 0.629 -0.920 -0.245 0.113 -0.540 -0.558 0.169 0.593 . 0.963 . 1.036 0.481 -1.032 -0.609 0.546 . -0.745 1.192 0.162 -0.488 -0.006 0.351 0.022 0.223 -0.267 0.243 -0.289 0.035 0.279 -0.864 0.279 0.195 -0.127 -0.444 0.269 -0.695 0.003 -0.116 0.543 0.554 -0.253 -0.446 -0.061 0.573 -1.109 -0.524 0.436 -0.220 -0.408 -0.292 0.651 -0.483 0.227 -0.800 0.622 -0.219 -0.362 0.153 0.323 -0.335 0.400 -0.797 0.392 0.486 -0.676 -0.844 0.502 -1.175 0.389 -0.285 0.513 . 1.247 . 0.702 -0.228 0.100 -0.987 0.651 . 0.600 0.368 0.255 -0.635 0.293 -0.046 0.217 0.398 -0.982 0.241 -0.008 -0.110 -0.929 0.443 0.250 0.256 -0.380 -0.100 0.143 -0.687 -0.306 0.115 0.573 0.424 -1.317 0.383 -0.069 -0.015 -2.415 0.653 0.322 -0.164 -1.563 0.148 0.733 -0.747 -0.510 -0.940 1.125 -0.065 -1.307 0.539 0.248 -0.837 -1.422 0.775 0.440 0.652 -1.860 -0.708 0.624 -1.230 -1.197 0.232 0.973 . 0.636 . 1.291 -0.203 -1.399 0.133 0.727 . -0.733 1.111 0.309 -0.834 -0.525 0.228 0.654 0.309 -0.602 0.155 -0.017 0.122 -0.547 -0.916 0.763 0.301 -0.311 -0.156 0.090 -0.599 -0.167 0.180 0.397 0.232 -0.651 0.295 -0.056 0.220 -1.548 -0.414 0.801 -0.066 -0.716 -0.504 0.791 -0.721 0.139 -0.651 0.727 0.081 -1.105 0.170 0.436 0.101 -1.080 -1.013 0.970 0.443 -1.234 -1.086 0.802 -0.784 -0.645 -0.016 0.840 . 0.948 . 1.050 -0.024 -0.474 -1.042 0.856 . -0.019 0.409 0.753 -0.360 0.124 0.337 -0.204 0.126 0.136 -0.013 -0.289 0.478 -0.253 -1.126 0.389 0.710 -0.099 -0.796 -0.226 -0.857 0.504 0.213 -0.200 0.516 -0.702 0.152 -0.244 0.630 -1.023 -0.738 0.444 0.228 -0.901 -0.146 0.474 -0.412 -0.010 -0.850 0.766 0.179 -0.574 0.022 0.240 0.040 -0.522 -1.423 0.928 0.914 -0.895 -1.003 0.110 -0.569 -0.189 -0.189 0.652 . 1.112 . 0.879 0.512 -0.684 -0.727 0.430 . -0.170 0.859 0.376 -0.695 0.444 0.005 0.026 0.315 -0.229 0.107 -0.277 0.533 -0.034 -1.365 0.249 0.306 0.203 -0.870 0.092 -0.526 -0.050 -0.073 0.474 0.278 -0.292 -0.124 0.074 0.444 -0.457 -1.193 0.559 -0.594 -0.234 -0.193 0.689 -0.683 0.259 -0.969 0.740 0.157 -0.492 -0.067 0.286 -0.205 0.210 -0.712 0.449 0.236 -0.131 -1.102 0.529 -0.803 0.035 -0.403 0.719 . 1.036 . 0.963 0.037 -0.431 -0.763 0.716 . 0.516 0.380 0.344 -0.506 0.296 -0.066 0.155 0.421 -0.640 0.338 -0.404 0.255 -0.462 -0.562 0.489 0.658 -0.711 0.023 -0.332 -0.646 -0.050 0.116 0.391 0.669 -1.100 -0.060 -0.022 0.704 -1.903 -0.747 0.592 0.118 -1.637 -0.279 0.823 -0.524 -0.182 -0.524 0.789 0.347 -0.594 -0.222 0.273 0.392 -1.497 -1.030 0.883 1.038 -1.292 -1.624 0.279 -1.281 -0.267 -0.465 1.024 . 0.833 . 1.149 0.354 -0.907 -0.615 0.619 . -0.590 0.973 0.458 -0.424 -0.398 -0.250 0.727 0.306 0.086 -0.311 -0.159 0.115 -0.470 -0.725 0.669 0.291 -0.092 -0.852 0.361 -0.955 0.319 0.150 0.173 0.324 -0.308 -0.152 0.057 0.283 -0.766 -0.998 0.761 -0.106 -0.459 -0.563 0.737 -0.907 0.389 -1.074 0.751 0.199 -0.682 -0.146 0.406 0.058 -0.767 -0.977 0.898 0.417 -0.667 -1.013 0.622 -0.609 -0.651 -0.027 0.787 . 1.063 . 0.934 0.186 -0.488 -0.689 0.612 . 0.050 0.360 0.750 -0.216 0.079 0.192 -0.089 0.069 0.000 0.264 -0.415 0.284 0.061 -0.709 0.173 0.512 -0.104 -0.382 -0.191 -0.905 0.280 0.590 -0.422 0.531 -0.745 -0.012 -0.049 0.400 -1.324 -0.130 0.451 0.285 -0.668 -0.264 0.400 -0.213 -0.092 -0.429 0.542 0.101 -0.549 0.174 0.157 0.112 -0.594 -1.048 0.827 0.598 -0.604 -0.248 -0.019 -0.753 -0.157 0.150 0.485 . 1.068 . 0.928 0.295 -0.705 -0.336 0.452 . -0.004 0.893 0.197 -0.837 0.285 0.285 0.004 0.126 -0.206 0.286 -0.282 0.097 -0.148 -0.975 0.603 0.422 -0.182 -0.417 0.042 -0.623 0.325 0.008 0.127 0.361 -0.265 0.034 -0.219 0.274 -0.740 -0.835 0.707 -0.112 -0.621 -0.100 0.577 -1.041 0.796 -1.304 0.456 0.000 -0.308 -0.026 0.275 -0.430 0.188 -0.872 0.653 0.589 -0.803 -0.501 0.282 -1.084 0.460 -0.255 0.395 . 1.206 . 0.760 -0.013 -0.161 -1.161 0.738 . 0.334 0.245 0.637 -0.839 0.649 -0.027 -0.166 0.197 -0.703 0.493 -0.265 0.177 -0.629 -0.448 0.575 0.441 -0.592 0.001 -0.033 -0.511 -0.183 0.290 0.257 0.397 -1.358 0.530 -0.237 0.240 -1.744 -0.621 0.904 -0.358 -1.135 0.035 0.799 -0.790 -0.151 -0.561 0.882 0.178 -0.980 0.321 0.153 -0.285 -0.911 -0.412 0.923 0.717 -1.477 -0.559 0.399 -1.156 -0.684 0.320 0.748 . 0.796 . 1.179 0.086 -0.798 -0.341 0.654 . -0.742 0.860 0.667 -0.620 -0.078 0.159 0.363 0.152 -0.230 0.266 -0.263 -0.006 -0.059 -1.122 0.664 0.455 -0.347 -0.244 -0.002 -0.344 0.000 0.113 0.176 0.270 -0.616 0.246 -0.065 0.179 -0.892 -0.616 0.746 0.142 -0.419 -0.646 0.595 -0.931 0.217 -0.670 0.752 -0.054 -0.843 0.069 0.517 0.083 -0.842 -1.095 0.937 0.531 -0.936 -0.702 0.504 -0.928 -0.404 0.207 0.646 . 1.136 . 0.850 0.176 -0.469 -0.794 0.652 . -0.067 0.751 0.446 -0.573 0.383 0.404 -0.513 frame2 LUT 5 4 4 0 0.000 -0.543 -0.018 0.683 -0.472 0.253 -0.179 -0.020 -0.090 0.627 -0.245 0.005 -0.717 -0.523 -0.041 0.751 -0.623 0.530 -0.686 0.327 -0.556 0.514 -0.775 0.524 -0.865 0.360 -0.640 0.360 -0.339 -0.511 -0.194 0.611 -0.157 0.325 -0.586 0.497 -0.579 0.630 -0.374 -0.504 -0.035 0.816 -0.451 -0.132 -0.748 -0.285 -0.389 0.650 -0.239 -0.003 -0.616 0.491 -0.083 0.393 -0.396 -0.017 -0.092 0.226 -0.586 0.592 -0.607 -0.564 -0.029 0.834 -0.834 0.081 -0.106 0.564 -0.904 0.604 -0.423 -0.031 -0.405 0.686 -0.066 -0.869 -0.171 -0.413 0.059 0.490 -0.317 0.372 -0.242 0.248 -0.572 0.565 -1.392 0.537 -0.538 -0.032 -0.642 0.652 -0.305 -0.407 -0.251 0.651 -0.260 -0.026 -0.441 0.605 -0.395 0.238 -0.042 -0.042 -0.187 0.288 -0.345 -0.534 0.380 -0.341 -0.266 0.743 -0.504 0.274 -0.668 0.544 -0.506 0.415 -0.730 0.109 -0.022 0.515 -0.559 0.147 -0.348 -0.429 0.170 0.640 -0.800 -0.168 -0.794 1.007 -0.932 0.520 -0.473 0.065 -0.323 0.755 -0.496 -0.071 -0.620 -0.239 -0.439 0.685 -0.308 0.263 -0.918 0.661 -0.536 0.883 -1.300 0.190 -0.715 0.572 -1.211 0.487 -0.557 -0.217 -0.227 0.538 -0.264 0.410 -0.895 0.566 -0.614 0.349 -0.568 0.066 0.007 0.954 -0.816 -0.705 -0.183 -0.710 -0.111 0.578 -0.043 0.074 -0.643 0.582 -0.303 0.596 -0.877 -0.057 -0.024 0.552 -1.005 0.442 -0.563 -0.501 -0.087 0.655 -0.364 . . . . 0.573 -0.451 -0.222 -0.115 . . . . -0.477 -0.269 0.799 -0.490 0.312 -0.712 0.335 -0.172 0.415 -0.706 0.269 -0.237 0.497 -0.825 0.149 -0.127 -0.422 -0.053 0.404 -0.049 . . . . 0.585 -0.678 -0.138 -0.050 0.459 -0.416 0.307 -0.646 -0.545 -0.478 0.801 -0.226 -0.093 -0.175 0.653 -0.725 0.522 -0.570 -0.219 0.046 0.337 -0.476 0.355 -0.436 -0.538 -0.174 0.852 -0.690 -0.011 -0.634 0.678 -0.389 0.766 -0.616 -0.088 -0.502 0.696 -0.515 -0.048 -0.488 -0.440 -0.213 0.744 -0.463 0.350 -0.655 0.384 -0.349 0.679 -1.778 0.654 -0.906 0.303 -0.960 0.642 -0.532 -0.387 -0.080 0.568 -0.309 0.276 -1.074 0.758 -0.682 0.604 -0.447 -0.462 0.030 0.707 -0.293 -0.241 -0.504 -0.358 -0.381 0.746 -0.369 0.332 -0.820 0.237 -0.006 0.653 -0.635 -0.129 -0.203 0.296 -0.670 0.448 -0.360 -0.436 -0.263 0.869 -0.735 0.208 -0.587 0.648 -0.708 0.520 -0.230 0.022 -0.519 0.633 -0.029 -0.437 -0.452 -0.417 0.052 0.689 -0.732 0.676 -0.400 -0.055 -0.551 0.848 -1.447 0.397 -0.953 0.374 -0.821 0.345 -0.204 -0.173 -0.182 0.476 -0.249 -0.345 -0.417 0.689 -0.233 -0.017 0.336 -0.156 -0.232 0.588 -0.646 -0.424 0.154 -0.417 -0.074 0.759 -0.716 0.410 -0.764 0.538 -0.666 0.273 -0.192 -0.184 0.051 0.570 -0.553 0.204 -0.553 -0.341 0.002 0.602 -0.532 0.065 -0.903 0.842 -0.674 0.388 -0.732 0.554 -0.685 0.561 -0.374 -0.096 -0.291 -0.237 -0.324 0.711 -0.483 0.364 -0.717 0.634 -0.853 0.165 -2.063 1.077 -0.918 0.384 -1.013 0.595 -0.538 -0.248 -0.576 0.688 -0.190 0.342 -0.982 0.624 -0.545 -0.258 -1.130 0.923 -0.303 0.770 -0.855 -0.653 0.145 -0.474 -0.746 0.762 -0.017 0.141 -0.478 0.633 -0.671 0.245 -0.840 0.401 -0.095 0.505 -0.859 0.372 -0.444 -0.375 -0.422 0.737 -0.294 . . . . 0.560 -0.915 0.165 -0.194 . . . . -0.395 -0.769 0.864 -0.265 0.555 -0.663 0.212 -0.432 0.550 -0.865 0.254 -0.331 0.275 -0.591 0.334 -0.208 -0.397 -0.111 0.539 -0.214 . . . . 0.633 -0.575 -0.038 -0.315 0.516 -0.518 0.188 -0.450 -0.389 -0.503 0.611 0.006 0.207 -0.424 0.486 -0.514 0.460 -0.417 -0.565 0.263 0.485 -0.492 0.169 -0.387 -0.540 -0.648 1.042 -0.700 -0.258 -0.216 0.628 -0.401 0.772 -0.628 -0.228 -0.337 0.845 -0.167 -0.353 -0.917 -0.632 0.168 0.513 -0.315 0.435 -0.555 0.253 -0.366 0.802 -0.888 0.123 -0.672 0.439 -0.674 0.403 -0.525 -0.132 -0.088 0.337 -0.178 0.291 -0.627 0.424 -0.345 0.406 -0.675 -0.414 0.377 0.880 -0.355 -0.683 -0.406 -0.276 -0.317 0.427 0.039 0.280 -0.467 0.098 -0.013 0.588 -0.475 -0.108 -0.234 0.518 -0.482 0.274 -0.636 -0.436 0.162 0.584 -0.637 -0.015 -0.103 0.458 -0.503 0.466 -0.568 0.084 -0.179 0.641 0.161 -0.859 -0.373 -0.164 0.138 0.224 -0.253 0.240 0.046 0.055 -0.419 0.753 -0.921 0.211 -0.669 -0.068 -0.288 0.303 -0.010 -0.287 0.133 0.333 -0.278 0.085 -0.104 0.339 -0.426 0.319 0.046 -0.080 -0.369 0.292 0.218 -0.445 -0.188 -0.398 0.065 0.512 -0.379 0.260 -0.550 0.537 -0.580 0.343 -0.743 0.054 0.132 0.673 -0.363 -0.024 -0.634 -0.401 0.207 0.514 -0.598 -0.082 -0.745 0.877 -0.684 0.622 -0.476 -0.145 -0.257 0.742 -0.351 -0.058 -0.779 -0.182 -0.273 0.497 -0.186 0.529 -0.610 0.237 -0.466 0.809 -1.351 0.146 -0.416 0.599 -1.376 0.457 -0.459 -0.131 -0.267 0.394 -0.087 0.469 -0.715 0.322 -0.402 0.354 -0.693 -0.242 0.331 1.075 -0.501 -0.837 -0.674 -0.182 -0.050 0.095 0.117 0.169 -0.722 0.439 -0.129 0.632 -0.854 0.028 -0.189 0.684 -1.312 0.428 -0.630 -0.227 -0.188 0.324 0.023 . . . . 0.606 -0.515 0.012 -0.376 . . . . -0.320 -0.320 0.630 -0.233 0.392 -0.481 0.204 -0.287 0.694 -1.018 0.086 -0.274 0.206 -0.706 0.034 0.275 -0.446 0.116 0.201 0.047 . . . . 0.526 0.057 -0.322 -0.474 0.350 -0.278 0.225 -0.452 -0.156 -0.548 0.547 -0.063 0.084 -0.026 0.282 -0.431 0.426 -0.307 -0.574 0.234 0.432 -0.364 0.221 -0.499 -0.187 -0.084 0.516 -0.419 -0.271 -0.223 0.777 -0.735 0.463 -0.217 -0.157 -0.211 0.476 -0.329 0.150 -0.508 -0.278 -0.037 0.597 -0.540 0.405 -0.636 0.139 -0.103 0.382 -0.992 0.348 -0.117 0.472 -0.747 0.197 -0.199 -0.374 -0.082 0.474 -0.159 -0.079 -0.580 0.688 -0.371 0.245 -0.312 -0.361 0.300 0.633 -0.190 -0.266 -0.431 -0.138 -0.215 0.490 -0.277 0.143 -0.517 0.415 -0.212 0.435 -0.408 -0.034 -0.123 0.301 -0.596 0.471 -0.473 -0.177 -0.144 0.751 -0.922 0.124 -0.538 0.692 -0.723 0.550 -0.162 -0.251 -0.318 0.656 -0.179 -0.408 -0.344 -0.463 0.265 0.444 -0.488 0.309 -0.469 0.261 -0.251 0.581 -1.079 0.458 -0.607 0.218 -0.885 0.646 -0.453 -0.421 0.205 0.246 -0.128 0.187 -0.794 0.486 -0.178 0.126 0.216 -0.436 0.013 0.571 -0.773 -0.152 0.042 -0.254 0.007 0.541 -0.510 0.073 -0.333 0.459 -0.360 0.269 -0.288 -0.145 0.101 0.425 -0.395 0.076 -0.246 -0.562 0.255 0.574 -0.641 -0.011 -0.853 0.909 -0.793 0.504 -0.333 -0.174 -0.150 0.630 -0.439 -0.042 -0.427 -0.413 -0.203 0.736 -0.484 0.345 -0.900 0.532 -0.419 0.712 -0.898 -0.140 -0.123 0.271 -0.919 0.271 0.081 -0.344 -0.149 0.470 -0.112 0.310 -0.975 0.552 -0.348 0.234 -0.299 -0.148 0.149 0.828 -0.818 -0.359 -0.188 -0.447 -0.358 0.685 -0.187 0.230 -0.594 0.415 -0.267 0.358 -0.567 -0.163 0.202 0.604 -0.715 0.242 -0.538 -0.456 -0.066 0.642 -0.405 . . . . 0.425 -0.356 -0.102 -0.082 . . . . -0.501 -0.052 0.715 -0.540 0.318 -0.398 0.198 -0.240 0.492 -0.846 0.021 0.033 0.481 -0.961 -0.028 0.150 -0.663 0.109 0.166 0.225 . . . . 0.514 -0.407 -0.486 0.143 0.281 -0.704 0.482 -0.369 -0.417 -0.297 0.571 -0.072 -0.018 -0.363 0.595 -0.465 0.476 -0.331 -0.389 0.071 0.340 -0.570 0.400 -0.431 -0.218 -0.257 0.861 -1.039 frame2 LUT 5 4 4 0 0.000 0.196 0.068 -0.162 -0.132 0.165 0.121 -0.897 0.327 0.587 -0.172 -0.181 -0.457 -0.805 0.585 -0.191 0.073 0.783 -0.602 -0.804 0.068 0.421 -0.003 -0.481 -0.079 0.501 -0.256 -0.065 -0.337 -0.549 0.183 -0.516 0.567 0.957 -0.953 -0.576 -0.200 0.040 -0.332 -1.441 0.855 0.835 -0.270 -0.921 -0.220 -0.361 -0.029 -0.897 0.769 0.463 -0.456 -0.439 0.208 0.043 0.122 -1.425 0.593 0.306 -0.422 0.158 -0.149 -0.796 0.335 -0.753 0.650 0.370 0.014 -0.401 -0.089 0.137 0.209 -1.157 0.374 0.652 -0.122 -0.625 -0.215 -0.996 0.369 -0.581 0.622 0.577 -0.155 -1.128 0.205 0.148 -0.509 -0.455 0.545 0.183 -0.281 0.183 -0.141 -0.686 0.540 -1.511 0.654 0.201 -0.019 -0.539 0.233 0.235 0.127 -1.282 0.400 0.339 0.153 -0.690 0.005 -1.294 0.209 -0.763 0.885 0.429 -0.038 -0.380 -0.135 0.073 0.250 -0.967 0.319 0.402 -0.241 -0.099 -0.155 -0.518 0.373 -0.455 0.353 0.393 -0.479 0.091 -0.145 0.366 0.109 -0.775 0.068 0.547 -0.170 -0.225 -0.332 -1.174 0.439 -0.725 0.674 0.757 -0.713 -0.258 -0.212 0.490 -0.253 -0.253 -0.126 0.728 -0.507 0.043 -0.714 -0.785 0.290 -1.097 0.790 0.766 -0.916 -0.196 -0.158 0.357 -0.164 -1.275 0.499 0.708 -0.368 -0.722 -0.021 -1.072 -0.031 -0.745 0.963 0.464 -0.826 0.100 -0.023 0.082 0.152 -0.900 0.372 0.623 -0.780 0.055 -0.254 -0.836 0.303 -0.805 0.708 0.318 -0.151 -0.201 -0.026 -0.049 0.383 -1.062 0.323 0.530 -0.005 -0.505 -0.225 -0.776 0.239 -0.388 0.558 0.709 -0.379 -0.642 -0.065 0.361 0.074 -0.611 0.011 0.578 -0.239 -0.176 -0.368 -0.736 0.582 -1.063 0.510 0.674 -0.692 -0.382 0.026 0.380 -0.132 -1.458 0.508 0.697 -0.214 -0.445 -0.353 -0.854 0.241 -0.703 0.723 0.398 -0.279 -0.302 0.067 0.230 0.066 -1.179 0.421 0.424 -0.364 -0.120 -0.056 -0.697 0.347 -0.332 0.397 0.409 -0.119 -0.262 -0.124 0.862 -0.123 -1.302 -0.221 0.661 -0.288 -0.191 -0.465 -0.882 0.507 -0.119 0.158 0.634 -0.514 -0.526 0.074 0.671 -0.165 -0.165 -0.682 0.544 -0.268 -0.012 -0.473 -0.668 0.320 -0.452 0.476 0.689 -0.985 -0.209 0.024 0.350 -0.342 -1.672 0.698 0.704 -0.309 -0.673 -0.094 -0.716 0.055 -0.688 0.792 0.403 -0.539 -0.366 0.280 0.639 -0.162 -1.132 0.127 0.535 -0.778 -0.010 -0.037 -0.513 0.052 -0.543 0.656 0.480 -0.158 -0.213 -0.242 0.072 0.728 -1.276 -0.185 0.725 -0.231 -0.602 -0.258 -0.903 0.545 -0.671 0.462 0.783 -0.423 -1.456 0.226 0.371 -0.011 -0.596 0.074 0.647 -0.840 0.107 -0.326 -1.240 0.368 -1.240 0.897 0.184 -0.441 -0.217 0.341 -0.384 0.883 -1.296 -0.026 0.524 -0.278 -0.858 0.246 -0.948 0.379 -1.000 0.750 0.613 -0.313 -0.563 -0.015 0.080 0.509 -1.016 0.036 0.618 -0.506 -0.219 -0.149 -0.837 0.597 -0.882 0.469 0.302 -0.371 0.028 -0.037 0.112 -0.047 -0.339 0.216 0.401 0.284 -0.524 -0.383 -0.625 0.548 -0.895 0.435 0.792 -0.609 -0.403 -0.222 0.118 -1.248 0.391 0.241 0.177 -0.276 0.091 -0.032 -0.730 0.318 -0.936 0.703 0.485 -0.916 0.029 0.070 -0.315 -0.315 -0.315 0.668 0.763 -0.949 -1.000 0.363 -1.005 -0.313 -0.509 0.995 0.593 -0.509 -0.548 0.145 0.091 -0.121 -0.399 0.330 0.387 -0.556 0.085 -0.072 -0.585 0.031 -0.473 0.670 0.273 -0.464 0.078 0.016 0.388 -0.095 -0.882 0.278 0.582 0.038 -0.585 -0.305 -1.122 0.548 -0.224 0.289 0.744 -0.308 -0.799 -0.085 0.176 -0.308 -0.066 0.148 0.493 -0.228 -0.228 -0.178 -0.795 0.541 -1.119 0.593 0.665 -1.075 -0.212 0.105 0.495 -0.476 -1.142 0.505 0.698 -0.327 -0.729 -0.033 -0.787 -0.079 -1.050 0.993 0.422 -0.534 -0.175 0.116 0.336 -0.146 -1.297 0.513 0.568 -0.311 -0.331 -0.126 -0.663 0.186 -0.452 0.585 0.394 -0.085 -0.357 -0.055 0.418 -0.116 -1.093 0.348 0.838 -0.219 -0.437 -0.702 -0.978 0.668 -0.631 0.332 0.616 -0.474 -0.723 0.191 0.427 0.028 -0.573 -0.053 0.793 -0.388 -0.325 -0.507 -0.553 0.239 -0.585 0.557 0.752 -0.903 -0.471 0.084 0.171 -0.523 -1.499 0.868 1.075 -0.296 -1.535 -0.448 -0.384 -0.254 -0.940 0.906 0.401 -0.574 -0.646 0.453 0.195 0.086 -1.162 0.430 0.708 -0.452 -0.232 -0.352 -0.742 0.267 -0.736 0.677 0.454 -0.310 -0.326 0.037 0.320 0.030 -1.031 0.312 0.474 0.312 -0.585 -0.509 -0.892 0.527 -1.052 0.621 0.524 -0.310 -1.464 0.478 -0.060 -0.483 -0.388 0.642 -0.094 0.016 0.051 0.023 -1.027 0.567 -1.755 0.792 0.333 -0.444 -0.358 0.293 0.308 -0.096 -1.143 0.458 0.287 0.127 -1.232 0.335 -0.839 0.009 -1.106 0.978 0.531 -0.422 -0.289 -0.014 0.221 -0.120 -0.846 0.442 0.319 0.084 -0.372 -0.121 -0.852 0.546 -0.792 0.494 0.357 -0.292 -0.045 -0.100 0.441 0.125 -1.021 0.083 0.496 -0.173 -0.036 -0.459 -0.803 0.177 -0.573 0.699 0.855 -0.735 -0.720 -0.024 0.690 -0.745 -0.196 -0.125 0.410 -1.053 0.360 -0.143 -0.658 0.407 -0.743 0.529 0.821 -0.878 -0.536 -0.001 0.260 -0.635 -0.976 0.722 0.902 -0.533 -1.068 -0.054 -0.966 -0.074 -1.191 1.071 0.548 -0.448 -0.481 0.123 0.274 -0.007 -0.837 0.305 0.242 -0.581 0.369 -0.221 -0.662 0.221 -0.737 0.680 0.440 -0.131 -0.553 0.068 0.066 0.541 -1.749 0.264 0.605 0.166 -0.702 -0.429 -1.167 0.721 -0.856 0.437 0.551 -0.135 -0.989 0.164 0.196 0.128 -0.560 0.116 0.473 -0.109 -0.400 -0.109 -0.983 0.678 -1.172 0.536 0.654 -0.640 -0.600 0.171 0.171 -0.066 -1.376 0.617 0.778 -0.235 -1.110 -0.040 -0.733 -0.081 -0.971 0.958 0.539 -0.293 -0.435 -0.012 0.248 0.179 -1.261 0.337 0.533 -0.371 -0.268 -0.075 -0.802 0.503 -0.576 0.421 . . . . . . . . . . . . . . . . 0.603 -0.351 -0.439 -0.060 0.425 -0.002 -0.597 -0.002 0.594 -0.205 -0.087 -0.553 -0.534 0.135 -0.901 0.745 . . . . . . . . . . . . . . . . 0.432 -0.665 -0.149 0.162 -0.011 0.399 -1.411 0.393 0.529 -0.514 0.033 -0.263 -0.463 -0.098 -0.543 0.726 0.384 -0.319 0.025 -0.191 0.185 0.283 -0.974 0.185 0.564 -0.042 -0.266 -0.476 -1.354 0.894 -0.804 0.236 0.632 -0.185 -1.178 0.175 -0.105 -0.213 -0.392 0.531 0.483 -0.421 0.142 -0.410 -1.600 0.959 -1.907 0.546 0.477 -0.710 -0.299 0.244 0.148 0.148 -1.174 0.424 0.628 -0.651 -0.522 0.165 -1.131 0.587 -1.109 0.658 0.428 -0.263 -0.360 0.060 0.123 0.186 -1.195 0.419 0.385 -0.148 0.014 -0.356 -1.104 0.913 -0.910 0.164 . . . . . . . . . . . . . . . . 0.806 -0.973 -0.324 -0.084 0.435 -0.071 -0.203 -0.273 0.605 -0.541 -0.159 -0.159 -0.831 0.327 -0.698 0.649 0.581 -0.642 -0.109 -0.096 0.287 -0.110 -1.086 0.467 0.583 -0.272 -0.303 -0.212 -0.888 0.081 -0.574 0.791 0.468 -0.770 -0.136 0.164 0.042 0.231 -0.747 0.264 0.424 -0.576 0.135 -0.170 -1.042 0.100 -0.471 0.784 0.446 0.021 -0.249 -0.356 -0.046 0.558 -1.214 0.173 0.453 0.247 -0.216 -0.778 -1.127 0.821 -0.620 0.169 0.549 -0.245 -0.546 0.011 0.275 0.068 -0.705 0.175 0.646 -0.370 -0.403 -0.143 -1.006 0.311 -0.717 0.726 0.596 -0.673 -0.338 0.098 0.255 -0.022 -1.587 0.574 0.610 -0.372 -0.471 -0.030 -1.013 0.158 -0.949 0.903 0.580 -0.623 -0.292 0.055 0.205 -0.039 -1.284 0.550 0.403 -0.386 0.025 -0.161 -0.771 0.396 -0.314 0.372 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.473 0.473 -0.457 -1.015 1.359 -1.181 -1.530 -0.625 -1.431 -2.991 1.649 -1.444 -9.258 -9.258 1.998 -9.258 -9.258 -9.258 -9.258 1.998 1.381 -2.258 -1.098 -0.477 1.147 -0.977 -2.292 0.102 -0.247 -1.406 1.024 -0.422 -0.086 -0.840 -1.247 1.055 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.749 -0.623 -0.654 0.048 0.610 -0.315 -1.259 0.325 0.614 -0.650 -0.682 0.273 0.201 -0.406 -0.452 0.448 0.699 -0.629 -0.825 0.221 0.652 -0.395 -0.705 0.076 0.568 -0.901 -0.468 0.332 0.095 -0.391 -0.700 0.636 0.794 -0.969 -0.437 0.025 0.335 -0.414 -1.771 0.762 0.397 -1.006 -0.813 0.692 0.084 -0.633 -0.436 0.638 0.600 -0.919 -0.786 0.459 0.481 -0.658 -1.196 0.617 0.330 -0.947 -0.376 0.540 0.055 -0.664 -0.463 0.683 0.831 -0.734 -0.635 -0.035 0.836 -0.922 -0.958 0.230 0.658 -0.760 -0.688 0.277 0.142 -0.714 -0.273 0.545 0.742 -0.512 -1.095 0.212 0.643 -0.791 -1.230 0.520 0.320 -1.090 -0.137 0.457 -0.001 -0.244 -0.772 0.651 0.564 -0.578 -0.445 0.160 0.429 -0.358 -0.597 0.278 0.260 -0.440 -0.740 0.553 -0.054 -0.657 -0.065 0.533 0.550 -0.691 -0.631 0.346 0.271 -0.816 -1.078 0.809 0.466 -0.857 -0.740 0.554 -0.226 -0.571 -0.248 0.704 0.742 -0.968 -0.180 -0.100 0.587 -0.552 -0.980 0.389 0.922 -0.986 -0.713 -0.015 0.019 -0.600 -0.492 0.693 0.675 -1.017 -0.574 0.307 0.581 -0.404 -0.917 0.286 0.437 -0.984 -0.545 0.541 -0.009 -0.395 -0.524 0.633 0.676 -1.048 -0.379 0.201 0.310 -0.261 -1.244 0.589 0.308 -0.994 -0.636 0.693 0.468 -0.982 -0.666 0.566 0.506 -0.865 -0.367 0.328 0.486 -0.722 -1.209 0.642 0.495 -1.473 -0.287 0.497 -0.224 -0.811 -0.460 0.885 0.663 -0.769 -0.786 0.322 0.684 -0.801 -1.168 0.458 0.546 -0.793 -0.925 0.522 0.501 -0.745 -0.436 0.321 0.520 -0.688 -0.769 0.442 0.738 -0.714 -1.055 0.312 0.459 -0.953 -0.477 0.476 -0.192 -0.100 -0.575 0.604 0.476 -1.005 -0.651 0.560 0.728 -0.926 -1.394 0.523 0.318 -0.891 -0.480 0.582 0.046 -0.885 -0.245 0.662 0.315 -0.739 -0.398 0.483 0.416 -0.750 -1.075 0.675 0.347 -0.828 -0.475 0.531 -0.258 -0.557 -0.221 0.701 0.715 -0.629 -0.744 0.157 0.600 -0.583 -0.967 0.384 0.460 -0.789 -0.613 0.477 0.050 -0.366 -0.471 0.553 0.500 -0.315 -0.988 0.353 0.858 -1.114 -0.715 0.159 0.311 -0.771 -0.787 0.672 -0.042 -0.322 -0.585 0.644 0.480 -1.100 -0.029 0.213 0.273 -0.577 -1.249 0.766 -0.230 -1.117 -1.372 1.202 -0.051 -0.698 -0.469 0.762 0.439 -0.852 -0.872 0.626 0.599 -1.078 -1.123 0.634 0.278 -0.806 -0.654 0.660 -0.194 -0.632 -0.327 0.752 0.858 -0.666 -0.990 0.076 0.469 -0.254 -0.975 0.343 0.518 -0.609 -0.650 0.350 0.035 -0.418 -0.531 0.619 0.719 -0.533 -1.469 0.380 0.740 -0.600 -1.695 0.445 0.385 -0.503 -0.553 0.385 0.037 -0.287 -0.900 0.695 0.379 -0.316 -0.639 0.326 0.294 0.148 -0.881 0.167 0.324 -0.343 -1.154 0.595 0.040 -0.363 -0.639 0.634 0.667 -0.803 -0.635 0.257 0.086 -0.455 -1.362 0.864 0.474 -0.707 -0.559 0.401 -0.318 -0.360 -0.544 0.793 0.615 -0.806 -0.614 0.314 0.369 -0.423 -0.168 0.102 0.587 -0.836 -0.534 0.319 -0.190 -0.289 -0.473 0.664 0.272 -0.716 -0.290 0.450 0.507 -1.389 0.164 0.107 -0.052 -0.528 -0.467 0.694 -0.204 -0.566 -0.382 0.756 0.434 -0.995 -0.142 0.311 -0.004 -0.500 -0.013 0.384 0.354 -0.906 -1.125 0.790 -0.159 -0.718 -0.291 0.748 0.456 -0.771 -0.446 0.388 0.168 -0.854 -0.317 0.605 0.365 -1.055 -0.356 0.536 -0.158 -1.111 -0.325 0.882 0.600 -0.791 -0.867 0.441 0.511 -0.705 -1.153 0.596 0.384 -0.735 -0.754 0.586 0.266 -0.539 -0.394 0.431 0.498 -0.474 -0.778 0.361 0.489 -0.772 -0.784 0.516 0.458 -0.844 -0.590 0.490 -0.556 0.280 -0.546 0.507 0.507 -1.044 -0.614 0.526 0.556 -0.969 -1.446 0.724 0.222 -0.950 -0.790 0.797 -0.190 -0.811 -0.434 0.859 0.421 -0.561 -0.624 0.416 0.091 -0.682 -1.522 0.974 0.271 -0.703 -0.674 0.635 -0.369 -0.374 -0.327 0.729 0.625 -0.448 -0.638 0.113 0.582 -0.286 -1.240 0.333 0.853 -0.658 -0.821 -0.008 -0.089 -0.143 -0.533 0.549 0.664 -0.526 -0.855 0.225 0.735 -0.512 -0.949 0.159 0.723 -0.967 -0.724 0.302 -0.102 -0.306 -0.636 0.693 0.504 -1.002 -0.072 0.177 0.274 -0.631 -1.609 0.862 0.497 -0.955 -0.866 0.608 -0.084 -0.624 -0.489 0.761 0.398 -0.748 -0.770 0.586 0.402 -0.571 -1.078 0.616 0.589 -0.822 -0.518 0.301 -0.221 -0.349 -0.415 0.685 0.687 -0.644 -0.615 0.134 0.681 -0.509 -1.075 0.286 0.557 -0.452 -0.406 0.061 -0.020 -0.396 -0.261 0.505 0.573 -0.262 -0.976 0.226 1.088 -1.247 -1.612 0.170 0.094 -0.468 -0.293 0.479 -0.050 -0.285 -0.854 0.731 0.335 -0.488 -0.488 0.393 0.334 -0.180 -0.447 0.168 0.228 -0.285 -0.668 0.463 -0.191 -0.639 -0.251 0.715 0.462 -0.402 -0.522 0.226 0.271 -0.674 -1.208 0.794 0.482 -0.321 -0.642 0.216 -0.313 -0.289 -0.428 0.708 0.673 -0.851 -0.365 0.104 0.546 -0.308 -0.988 0.296 0.667 -0.855 -0.355 0.107 -0.136 -0.311 -0.598 0.699 0.489 -0.824 -0.274 0.269 0.303 0.014 -0.854 0.268 0.460 -1.117 -0.177 0.355 -0.157 -0.366 -0.665 0.763 0.633 -0.775 -0.664 0.302 0.182 0.214 -1.832 0.511 0.418 -1.234 -0.488 0.609 -0.170 -0.828 -0.823 0.987 0.681 -0.829 -0.805 0.335 0.415 -0.561 -0.932 0.551 0.482 -1.080 -0.265 0.377 -0.294 -0.735 -0.733 0.987 0.458 -0.655 -0.353 0.273 0.547 -0.693 -0.878 0.460 0.466 -0.662 -0.799 0.498 0.265 -0.607 -0.266 0.389 0.496 -0.410 -0.883 0.373 0.621 -0.488 -1.153 0.377 0.145 -0.766 -0.440 0.649 -0.371 -0.064 -0.674 0.717 0.456 -0.884 -0.362 0.388 0.505 -0.643 -1.187 0.586 0.218 -0.708 -0.334 0.518 -0.128 -0.953 -0.080 0.698 0.260 -0.459 -0.442 0.421 0.247 -0.737 -1.117 0.809 0.255 -0.791 -0.412 0.563 -0.355 -0.402 -0.238 0.690 0.636 -0.594 -0.648 0.196 0.524 -0.400 -1.231 0.463 0.519 -0.563 -0.727 0.363 0.129 -0.506 -0.496 0.578 0.458 -0.653 -0.747 0.480 0.737 -0.663 -1.155 0.325 0.380 -0.968 -0.475 0.553 0.086 -0.488 -0.663 0.672 0.446 -0.876 -0.361 0.394 0.188 -0.612 -1.696 0.924 0.283 -0.677 -0.275 0.413 0.019 -0.717 -0.549 0.761 0.196 -0.928 -0.832 0.822 0.407 -0.798 -1.259 0.749 0.236 -0.798 -0.576 0.657 -0.051 -0.737 -0.434 0.761 0.639 -0.670 -0.715 0.269 0.507 -0.542 -1.240 0.555 0.425 -0.767 -0.395 0.389 -0.025 -0.229 -0.423 0.504 0.466 -0.386 -1.050 0.454 0.498 -0.537 -1.250 0.563 0.314 -0.962 -0.169 0.437 -0.483 0.054 -0.931 0.784 0.475 -0.914 -0.598 0.504 0.174 -0.109 -1.174 0.586 0.396 -0.858 -0.822 0.648 -0.160 -0.167 -0.621 0.645 0.364 -0.650 -0.603 0.503 -0.047 -0.729 -1.546 1.061 0.310 -0.763 -0.738 0.652 -0.430 -0.001 -0.542 0.652 0.586 -0.908 -0.501 0.332 0.447 -0.560 -1.213 0.611 0.574 -0.852 -0.697 0.423 -0.172 -0.532 -0.331 0.701 0.282 -1.340 0.056 0.432 0.524 -0.755 -1.115 0.592 0.322 -1.048 -0.541 0.659 -0.176 -0.590 -0.736 0.887 0.459 -1.031 -0.561 0.544 0.301 -0.510 -1.369 0.748 0.231 -0.498 -0.619 0.553 -0.205 -0.779 -0.331 0.811 0.409 -0.957 -0.408 0.489 0.303 -0.909 -1.009 0.796 0.279 -1.210 -0.581 0.754 -0.400 -0.809 -0.269 0.881 0.531 -0.735 -0.668 0.406 0.482 -0.667 -1.212 0.624 0.334 -0.761 -0.555 0.554 0.077 -0.586 -0.376 0.593 0.356 -0.562 -0.598 0.466 0.353 -0.534 -1.217 0.680 0.473 -1.148 -0.736 0.642 -0.523 -0.133 -0.730 0.839 0.356 -0.913 -0.606 0.616 0.501 -0.867 -1.409 0.731 0.102 -0.877 -0.572 0.773 -0.225 -0.796 -0.356 0.838 0.249 -0.660 -0.428 0.522 0.149 -0.660 -1.270 0.882 0.156 -0.884 -0.282 0.605 -0.429 -0.503 -0.202 0.750 Intron LUT 5 4 4 0 0.000 0.439 -0.446 -0.612 0.328 0.529 -0.583 -1.678 0.657 0.238 -0.759 -0.363 0.538 -0.240 -0.354 -0.180 0.573 0.419 -0.752 -0.524 0.458 0.544 -0.661 -0.998 0.495 0.446 -1.058 -0.669 0.612 -0.160 -0.531 -0.473 0.759 0.640 -1.054 -0.509 0.330 0.209 -0.987 -2.222 1.087 -0.322 -1.562 -1.388 1.310 0.072 -0.824 -0.505 0.748 0.262 -0.757 -0.479 0.577 0.335 -0.869 -1.467 0.871 0.115 -0.683 -0.453 0.645 -0.323 -0.595 -0.267 0.772 0.530 -0.780 -0.443 0.309 0.797 -1.076 -1.715 0.569 0.207 -1.316 0.214 0.361 -0.090 -0.750 -0.283 0.717 0.498 -0.656 -0.863 0.489 0.225 -0.862 -1.238 0.893 0.214 -1.037 -0.167 0.548 -0.114 -0.605 -0.416 0.739 0.524 -1.011 -0.496 0.440 0.372 -0.766 -1.409 0.800 -0.413 -1.139 -0.380 1.019 -0.040 -1.112 -0.322 0.819 0.546 -0.782 -0.588 0.371 0.260 -1.132 -1.689 1.026 0.481 -0.918 -0.750 0.566 -0.305 -0.625 -0.173 0.727 0.466 -0.636 -0.422 0.297 0.376 -0.589 -2.069 0.847 0.480 -0.955 -0.381 0.403 -0.137 -0.827 -0.439 0.840 0.357 -1.196 -0.394 0.606 0.639 -1.197 -1.519 0.729 0.240 -1.219 -0.827 0.868 -0.067 -0.408 -0.495 0.661 0.531 -1.049 -0.646 0.519 0.250 -1.048 -1.303 0.942 0.061 -1.277 -0.862 0.996 0.750 -1.306 -0.948 0.481 0.453 -1.142 -0.418 0.515 0.276 -0.879 -1.612 0.940 0.566 -1.380 -0.689 0.600 -0.313 -0.782 -0.534 0.943 0.362 -0.545 -0.666 0.484 0.573 -0.839 -1.624 0.704 0.426 -0.765 -0.976 0.641 0.351 -0.704 -0.247 0.342 0.255 -0.743 -0.522 0.597 0.589 -0.675 -1.250 0.535 0.370 -1.105 -0.437 0.589 -0.302 -0.255 -0.445 0.692 0.345 -1.144 -0.698 0.732 0.770 -1.199 -1.840 0.659 0.109 -0.903 -0.943 0.900 -0.228 -0.920 -0.257 0.832 0.051 -0.690 -0.155 0.532 0.333 -0.871 -1.412 0.862 0.278 -0.669 -0.606 0.587 -0.397 -0.480 -0.084 0.660 0.403 -0.593 -0.580 0.429 0.422 -0.661 -1.479 0.739 0.120 -0.931 -0.131 0.561 -0.144 -0.522 -0.194 0.608 0.142 -0.592 -0.438 0.580 0.649 -0.823 -1.506 0.599 0.365 -0.979 -0.550 0.606 -0.212 -0.480 -0.340 0.704 0.329 -1.190 -0.129 0.476 0.078 -1.349 -1.594 1.151 -1.109 -2.093 -2.125 1.619 -0.075 -0.919 -0.441 0.836 0.297 -1.028 -0.721 0.744 0.420 -1.061 -1.700 0.907 0.184 -0.727 -0.594 0.676 -0.419 -0.629 -0.209 0.799 0.633 -0.609 -0.819 0.295 0.559 -0.458 -1.833 0.602 0.072 -1.030 0.268 0.328 -0.013 -0.634 -0.364 0.667 0.228 -0.396 -0.981 0.643 0.474 -0.686 -2.271 0.834 0.037 -1.170 -0.783 0.963 -0.245 -0.501 -0.529 0.813 0.135 -0.865 -0.246 0.594 0.664 -0.558 -1.728 0.520 0.251 -1.304 -0.719 0.846 0.237 -0.794 -0.563 0.648 0.535 -0.917 -0.618 0.454 0.228 -0.834 -1.819 0.989 0.345 -0.621 -0.691 0.546 -0.319 -0.502 -0.507 0.839 0.499 -0.874 -1.036 0.636 0.662 -0.767 -1.380 0.532 0.043 -0.832 -0.015 0.504 -0.240 -0.482 -0.454 0.772 -0.013 -1.013 0.209 0.441 0.386 -1.658 -1.073 0.927 0.219 -0.974 -0.459 0.678 0.040 -0.831 -0.345 0.698 0.484 -1.176 -0.498 0.537 0.140 -1.807 -0.807 1.029 -0.112 -1.615 -1.112 1.193 0.386 -1.322 -0.791 0.779 0.644 -1.041 -0.573 0.355 0.200 -0.616 -1.747 0.927 0.475 -1.085 -0.670 0.595 -0.359 -1.118 -0.335 0.976 0.325 -0.644 -0.659 0.560 0.479 -1.041 -1.562 0.833 0.150 -0.695 -0.643 0.707 0.079 -0.534 -0.082 0.388 0.287 -0.539 -0.647 0.539 0.426 -0.947 -1.391 0.812 0.377 -1.031 -0.428 0.554 -0.544 -0.071 -0.209 0.582 0.451 -1.136 -0.701 0.644 0.701 -1.228 -1.813 0.734 0.095 -1.144 -1.000 0.985 -0.294 -1.079 -0.431 0.978 0.207 -0.477 -0.506 0.509 0.032 -0.713 -2.005 1.083 0.192 -0.638 -0.759 0.700 -0.436 -0.383 -0.258 0.730 0.316 -0.312 -0.778 0.450 0.466 -0.467 -1.623 0.651 0.284 -0.703 -0.431 0.513 -0.386 -0.198 -0.351 0.659 0.259 -0.715 -0.569 0.604 0.639 -0.845 -1.601 0.639 0.520 -0.850 -0.680 0.472 -0.272 -0.452 -0.420 0.760 0.448 -0.978 -0.563 0.537 0.348 -1.106 -2.338 1.046 -0.177 -1.375 -1.499 1.249 -0.055 -0.789 -0.624 0.856 0.135 -0.604 -0.592 0.660 0.381 -0.849 -1.358 0.810 0.459 -0.750 -0.555 0.433 -0.407 -0.418 -0.333 0.769 0.452 -0.806 -0.618 0.494 0.688 -1.090 -1.696 0.688 0.095 -0.831 0.157 0.328 -0.278 -0.331 -0.331 0.665 0.510 -0.716 -0.851 0.499 0.348 -0.874 -1.585 0.886 -0.120 -0.396 -0.837 0.816 -0.372 -0.480 -0.668 0.911 0.018 -0.696 -0.130 0.543 0.650 -0.496 -2.719 0.650 0.000 -0.954 -0.867 0.953 0.158 -0.939 -0.823 0.846 0.316 -0.438 -0.414 0.341 0.305 -1.051 -1.489 0.945 0.445 -0.515 -0.724 0.415 -0.235 -0.442 -0.355 0.707 0.350 -0.698 -0.622 0.545 0.350 -0.664 -1.221 0.736 0.382 -1.096 -0.411 0.563 -0.318 -0.472 -0.495 0.821 -0.070 -1.333 0.216 0.574 0.620 -1.538 -1.238 0.762 -0.213 -0.585 -0.350 0.754 -0.256 -0.384 -0.594 0.794 0.504 -0.921 -0.895 0.600 0.309 -0.632 -1.276 0.768 0.304 -1.598 -0.354 0.724 0.226 -1.546 -0.672 0.895 0.757 -0.772 -1.137 0.344 0.422 -0.932 -1.651 0.862 0.598 -1.129 -0.707 0.502 -0.249 -0.799 -0.778 1.001 0.206 -0.742 0.027 0.298 0.335 -0.723 -1.072 0.729 0.366 -0.536 -0.937 0.584 0.189 -0.703 -0.030 0.341 0.161 -0.513 -0.529 0.574 0.382 -0.413 -1.700 0.712 0.100 -0.844 -0.322 0.652 -0.541 -0.208 -0.500 0.799 0.278 -1.103 -0.230 0.556 0.691 -1.139 -1.831 0.723 0.152 -0.862 -0.477 0.696 -0.245 -1.124 -0.140 0.840 0.045 -0.440 -0.233 0.465 0.103 -0.786 -1.469 0.989 0.248 -0.732 -0.608 0.636 -0.467 -0.385 -0.177 0.701 0.381 -0.352 -0.432 0.230 0.478 -0.465 -1.522 0.618 0.209 -0.530 -0.648 0.598 -0.109 -0.431 -0.300 0.603 0.139 -0.845 -0.300 0.613 0.649 -0.773 -1.652 0.612 -0.052 -0.798 -0.463 0.795 -0.192 -0.621 -0.375 0.768 0.367 -1.000 -0.441 0.559 0.076 -0.787 -2.279 1.111 0.244 -0.968 -0.550 0.697 -0.077 -0.867 -0.538 0.860 -0.075 -0.883 -0.608 0.889 0.242 -0.902 -1.443 0.937 0.152 -0.722 -0.619 0.706 -0.292 -0.661 -0.207 0.753 0.470 -0.856 -0.553 0.466 0.508 -0.923 -1.950 0.842 0.034 -1.096 0.122 0.506 -0.129 -0.392 -0.306 0.599 0.145 -0.699 -0.631 0.707 0.169 -0.614 -1.407 0.884 0.000 -0.880 -0.231 0.683 -0.692 -0.294 -0.425 0.864 0.413 -1.284 -0.836 0.764 0.470 -0.579 -1.362 0.638 0.007 -1.343 -0.735 1.000 -0.171 -0.688 -0.774 0.931 0.266 -0.722 -0.485 0.562 0.066 -1.031 -1.650 1.101 0.202 -0.838 -0.735 0.757 -0.406 -0.296 -0.325 0.707 0.481 -0.836 -0.602 0.471 0.387 -0.707 -1.868 0.852 0.332 -0.815 -0.638 0.614 -0.318 -0.637 -0.316 0.808 -0.144 -1.594 0.595 0.326 0.228 -0.791 -1.734 0.963 -0.031 -1.105 -0.309 0.807 -0.158 -0.764 -0.672 0.916 0.421 -1.220 -0.860 0.749 0.415 -1.134 -2.152 0.990 0.142 -1.120 -0.697 0.864 -0.040 -1.079 -0.429 0.857 0.279 -1.076 -0.133 0.486 0.238 -1.005 -1.538 0.984 0.210 -1.106 -0.650 0.801 -0.515 -0.810 -0.267 0.925 0.297 -0.519 -0.558 0.480 0.385 -0.770 -1.632 0.836 0.223 -0.771 -0.620 0.675 -0.053 -0.558 -0.120 0.523 0.042 -0.720 -0.219 0.589 0.308 -0.540 -1.743 0.829 0.392 -1.361 -0.706 0.753 -0.558 -0.280 -0.529 0.852 0.147 -1.055 -0.637 0.823 0.604 -1.109 -1.897 0.805 0.012 -0.887 -0.874 0.930 -0.425 -0.962 -0.238 0.921 0.033 -0.528 -0.241 0.523 0.153 -0.708 -1.543 0.951 0.147 -0.753 -0.360 0.604 -0.573 -0.426 -0.042 0.689 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.480 -0.636 0.005 -0.060 0.499 0.040 -0.622 -0.138 0.911 -0.865 -0.320 -0.378 0.944 -0.951 -0.080 -0.708 0.821 0.223 -1.723 -0.389 0.925 -0.488 -0.051 -1.242 1.993 -7.308 -7.308 -7.308 -7.308 -7.308 -7.308 1.993 -7.308 -7.308 1.993 -7.308 -0.354 -1.636 1.246 -0.933 0.184 0.742 -0.636 -0.865 -0.286 -1.138 0.550 0.336 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.464 -0.417 0.035 -0.239 0.464 -0.239 -0.536 0.116 0.035 -0.239 -0.111 0.265 0.357 -0.239 0.142 -0.380 0.265 -0.111 -0.343 0.116 -0.495 0.265 -0.239 0.312 -5.665 -5.665 -5.665 1.979 1.979 -5.665 -5.665 -5.665 1.979 -5.665 -5.665 -5.665 TAG WMM 9 6 4 0 0.000 0.367 -0.663 0.424 -0.441 0.337 0.000 -0.294 -0.119 0.000 -0.294 -0.724 0.659 -0.341 -0.204 0.585 -0.248 0.480 -0.078 -1.000 0.212 -0.248 0.037 -0.294 0.396 -5.248 -5.248 -5.248 1.971 1.971 -5.248 -5.248 -5.248 -5.248 -5.248 1.971 -5.248 TGA WMM 9 6 4 0 0.000 0.385 -0.744 0.097 0.040 0.531 0.078 -0.812 -0.104 -0.020 -0.104 -0.389 0.400 0.322 -0.389 0.097 -0.126 0.115 0.097 -0.710 0.306 -0.193 0.000 -0.678 0.585 -6.170 -6.170 -6.170 1.985 -6.170 -6.170 1.985 -6.170 1.985 -6.170 -6.170 -6.170 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/A.gambiae.hmm0000644000175000017500000013070711424066010015624 0ustar moellermoellerzoeHMM A.gambiae 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.8 Inter Esngl 0.2 Intron Eterm 0.3 Intron Exon 0.7 0.429683 0.361312 0.209005 0.737179 0.126068 0.136752 0.748201 0.129496 0.122302 0.726644 0.143599 0.129758 0.538327 0.461673 0.543947 0.456053 0.517820 0.482180 Einit 2 DEFINED 0 249 -8.100 -8.062 -8.025 -7.989 -7.953 -7.919 -7.885 -7.852 -7.820 -7.788 -7.757 -7.733 -7.709 -7.685 -7.661 -7.638 -7.616 -7.593 -7.572 -7.550 -7.529 -7.528 -7.528 -7.527 -7.527 -7.527 -7.526 -7.526 -7.526 -7.525 -7.525 -7.514 -7.504 -7.494 -7.483 -7.473 -7.463 -7.453 -7.443 -7.433 -7.423 -7.411 -7.400 -7.389 -7.377 -7.366 -7.355 -7.344 -7.333 -7.322 -7.312 -7.329 -7.346 -7.364 -7.382 -7.400 -7.419 -7.437 -7.456 -7.476 -7.495 -7.504 -7.512 -7.521 -7.529 -7.538 -7.547 -7.556 -7.565 -7.573 -7.582 -7.597 -7.612 -7.627 -7.642 -7.657 -7.672 -7.688 -7.703 -7.719 -7.735 -7.762 -7.790 -7.817 -7.846 -7.875 -7.904 -7.935 -7.965 -7.997 -8.029 -8.030 -8.031 -8.032 -8.033 -8.035 -8.036 -8.037 -8.038 -8.039 -8.040 -8.046 -8.053 -8.059 -8.066 -8.073 -8.079 -8.086 -8.093 -8.099 -8.106 -8.126 -8.146 -8.166 -8.187 -8.208 -8.230 -8.251 -8.273 -8.295 -8.318 -8.326 -8.334 -8.342 -8.350 -8.358 -8.366 -8.374 -8.382 -8.390 -8.399 -8.419 -8.439 -8.460 -8.481 -8.502 -8.524 -8.546 -8.568 -8.591 -8.614 -8.630 -8.647 -8.663 -8.680 -8.697 -8.714 -8.731 -8.748 -8.766 -8.784 -8.801 -8.819 -8.836 -8.854 -8.872 -8.891 -8.909 -8.928 -8.947 -8.966 -8.965 -8.964 -8.963 -8.962 -8.961 -8.960 -8.959 -8.958 -8.957 -8.956 -8.970 -8.983 -8.996 -9.010 -9.024 -9.038 -9.052 -9.066 -9.080 -9.095 -9.116 -9.138 -9.160 -9.182 -9.205 -9.228 -9.252 -9.276 -9.300 -9.325 -9.338 -9.351 -9.365 -9.378 -9.392 -9.406 -9.420 -9.434 -9.448 -9.462 -9.469 -9.477 -9.484 -9.491 -9.499 -9.506 -9.514 -9.521 -9.529 -9.536 -9.544 -9.551 -9.559 -9.567 -9.575 -9.582 -9.590 -9.598 -9.606 -9.614 -9.637 -9.660 -9.683 -9.707 -9.731 -9.756 -9.780 -9.806 -9.832 -9.858 -9.881 -9.904 -9.928 -9.952 -9.977 -10.002 -10.027 -10.053 -10.079 -10.106 -10.140 -10.175 -10.211 -10.248 -10.286 -10.325 -10.365 -10.406 -10.448 GEOMETRIC 250 -1 164 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.422 -10.358 -10.297 -10.239 -10.182 -10.128 -10.076 -10.025 -9.976 -9.929 -9.884 -9.865 -9.847 -9.828 -9.810 -9.793 -9.775 -9.758 -9.741 -9.724 -9.707 -9.688 -9.668 -9.649 -9.630 -9.611 -9.593 -9.574 -9.556 -9.539 -9.521 -9.504 -9.486 -9.469 -9.453 -9.436 -9.420 -9.403 -9.387 -9.372 -9.356 -9.337 -9.317 -9.299 -9.280 -9.262 -9.243 -9.225 -9.208 -9.190 -9.173 -9.146 -9.119 -9.093 -9.067 -9.042 -9.017 -8.992 -8.968 -8.945 -8.921 -8.902 -8.884 -8.865 -8.847 -8.828 -8.810 -8.793 -8.775 -8.758 -8.741 -8.731 -8.721 -8.711 -8.701 -8.691 -8.681 -8.671 -8.662 -8.652 -8.643 -8.638 -8.633 -8.628 -8.624 -8.619 -8.614 -8.610 -8.605 -8.600 -8.596 -8.593 -8.591 -8.589 -8.587 -8.584 -8.582 -8.580 -8.577 -8.575 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.573 -8.554 -8.536 -8.517 -8.499 -8.481 -8.464 -8.446 -8.429 -8.412 -8.395 -8.393 -8.391 -8.389 -8.387 -8.385 -8.383 -8.381 -8.379 -8.377 -8.376 -8.370 -8.364 -8.358 -8.352 -8.346 -8.340 -8.335 -8.329 -8.323 -8.317 -8.319 -8.321 -8.323 -8.325 -8.327 -8.329 -8.331 -8.333 -8.335 -8.337 -8.348 -8.360 -8.372 -8.383 -8.395 -8.407 -8.420 -8.432 -8.444 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.457 -8.467 -8.478 -8.489 -8.499 -8.510 -8.521 -8.532 -8.543 -8.554 -8.565 -8.562 -8.558 -8.554 -8.550 -8.547 -8.543 -8.539 -8.536 -8.532 -8.528 -8.543 -8.558 -8.573 -8.588 -8.603 -8.619 -8.635 -8.650 -8.666 -8.683 -8.695 -8.707 -8.720 -8.732 -8.745 -8.758 -8.771 -8.784 -8.797 -8.810 -8.809 -8.807 -8.805 -8.803 -8.802 -8.800 -8.798 -8.796 -8.795 -8.793 -8.826 -8.859 -8.894 -8.929 -8.965 -9.003 -9.041 -9.080 -9.120 -9.162 -9.147 -9.132 -9.118 -9.104 -9.090 -9.076 -9.062 -9.048 -9.034 -9.021 -9.022 -9.023 -9.024 -9.025 -9.026 -9.027 -9.028 -9.029 -9.030 GEOMETRIC 250 -1 295 Exon 2 DEFINED 0 249 -9.188 -9.322 -9.469 -9.633 -9.818 -10.030 -10.279 -10.581 -10.962 -11.481 -12.301 -12.155 -12.023 -11.903 -11.791 -11.688 -11.591 -11.500 -11.415 -11.335 -11.259 -11.159 -11.066 -10.979 -10.896 -10.818 -10.744 -10.674 -10.607 -10.543 -10.481 -10.429 -10.379 -10.331 -10.284 -10.238 -10.194 -10.152 -10.110 -10.070 -10.030 -9.960 -9.893 -9.829 -9.767 -9.709 -9.652 -9.597 -9.545 -9.494 -9.445 -9.385 -9.326 -9.270 -9.216 -9.164 -9.114 -9.065 -9.018 -8.973 -8.929 -8.883 -8.838 -8.795 -8.753 -8.712 -8.672 -8.634 -8.596 -8.560 -8.524 -8.497 -8.472 -8.446 -8.421 -8.396 -8.372 -8.349 -8.325 -8.302 -8.279 -8.254 -8.229 -8.205 -8.181 -8.157 -8.133 -8.110 -8.088 -8.066 -8.044 -8.038 -8.031 -8.025 -8.019 -8.013 -8.007 -8.001 -7.995 -7.989 -7.983 -7.985 -7.987 -7.989 -7.991 -7.994 -7.996 -7.998 -8.000 -8.002 -8.004 -7.998 -7.991 -7.985 -7.979 -7.972 -7.966 -7.960 -7.953 -7.947 -7.941 -7.938 -7.936 -7.934 -7.931 -7.929 -7.926 -7.924 -7.921 -7.919 -7.916 -7.909 -7.902 -7.895 -7.887 -7.880 -7.873 -7.866 -7.859 -7.852 -7.845 -7.840 -7.836 -7.831 -7.827 -7.822 -7.817 -7.813 -7.808 -7.804 -7.799 -7.803 -7.807 -7.811 -7.814 -7.818 -7.822 -7.826 -7.830 -7.833 -7.837 -7.848 -7.859 -7.870 -7.881 -7.892 -7.903 -7.915 -7.926 -7.938 -7.949 -7.967 -7.985 -8.004 -8.023 -8.041 -8.061 -8.080 -8.100 -8.120 -8.140 -8.157 -8.175 -8.192 -8.210 -8.228 -8.246 -8.265 -8.284 -8.303 -8.322 -8.337 -8.351 -8.366 -8.381 -8.396 -8.412 -8.427 -8.443 -8.459 -8.475 -8.487 -8.499 -8.511 -8.524 -8.536 -8.549 -8.561 -8.574 -8.587 -8.600 -8.597 -8.595 -8.592 -8.590 -8.587 -8.585 -8.582 -8.579 -8.577 -8.574 -8.592 -8.611 -8.629 -8.648 -8.667 -8.686 -8.706 -8.726 -8.746 -8.766 -8.771 -8.776 -8.781 -8.787 -8.792 -8.797 -8.802 -8.808 -8.813 -8.818 -8.839 -8.860 -8.881 -8.903 -8.924 -8.947 -8.969 -8.992 -9.016 GEOMETRIC 250 -1 238 Inter 1 GEOMETRIC 0 -1 1000 Intron 1 GEOMETRIC 0 -1 271 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.082 -0.219 -0.965 0.651 0.013 -0.243 -0.829 0.663 0.058 -0.224 -0.951 0.665 0.012 -0.109 -0.971 0.636 -0.161 -0.093 -0.968 0.728 -0.144 -0.071 -0.983 0.711 -0.203 -0.126 -0.925 0.756 -0.355 -0.012 -0.968 0.779 -0.452 0.007 -1.064 0.836 -0.489 -0.038 -0.883 0.825 -0.669 0.079 -1.055 0.874 -0.695 0.096 -1.090 0.882 -0.859 0.079 -0.948 0.906 -0.816 0.163 -1.096 0.883 -0.864 0.234 -1.141 0.865 -0.837 0.219 -1.064 0.846 -0.872 0.264 -1.497 0.925 -0.800 0.377 -1.423 0.811 -0.928 0.434 -1.439 0.811 -0.487 0.383 -1.308 0.658 -0.555 0.233 -1.272 0.791 -1.361 -0.006 -1.880 1.229 -1.272 -0.122 -2.086 1.282 0.200 -0.454 0.246 -0.096 -2.662 1.493 -7.919 0.034 1.999 -9.919 -9.919 -9.919 -9.919 -9.919 1.999 -9.919 0.219 -0.164 0.377 -0.632 0.051 -0.394 -0.396 0.529 0.128 0.052 -0.329 0.103 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.788 -0.074 0.792 -0.436 -0.538 -0.352 1.070 -1.222 -1.098 0.861 -0.982 0.276 -0.716 0.277 0.238 0.000 -0.069 -0.508 0.811 -0.765 -0.243 -1.173 1.253 -1.605 0.015 -0.122 0.447 -0.499 -0.670 -1.320 1.291 -0.931 -0.060 -0.498 0.469 -0.076 -0.105 -0.327 0.774 -0.830 0.254 0.209 -0.471 -0.105 -0.700 -0.829 1.089 -0.527 . 1.131 . 0.856 -0.642 -0.539 1.143 -1.113 . 0.180 0.588 0.448 -1.351 0.305 0.102 0.377 -0.296 0.186 0.450 -0.554 -0.890 0.305 0.891 -1.431 -2.001 1.072 -1.810 0.446 -1.453 0.529 0.107 0.157 -1.019 -0.052 0.752 -0.221 -0.619 -1.086 1.358 -1.666 -0.796 -0.025 0.667 -0.228 -1.545 -0.687 1.339 -0.981 -0.438 -0.298 0.407 0.166 -0.342 0.148 0.484 -0.505 -0.525 0.270 -0.344 0.390 -1.155 -0.256 1.041 -0.609 . 1.507 . 0.210 -1.153 -0.001 1.132 -1.475 . 0.448 0.456 0.339 -3.201 0.728 -0.889 0.761 -0.347 -0.184 0.933 -1.237 -1.034 -0.363 1.310 -1.973 -1.910 1.289 -2.047 0.068 -0.848 0.313 0.517 -0.375 -0.429 -0.385 1.005 -1.046 -0.406 -0.251 1.087 -1.832 -0.714 0.476 0.317 -0.408 -1.260 -1.083 1.476 -1.608 -0.053 -0.180 0.572 -0.585 -0.070 -0.124 0.755 -1.179 -0.353 0.880 -1.479 0.026 -0.953 -0.833 1.292 -1.077 . 1.543 . 0.119 -1.003 -0.212 1.218 -1.680 . 0.542 0.402 0.291 -2.805 0.824 -0.793 0.594 -0.204 -0.190 0.432 -0.142 -0.647 -0.056 0.961 -1.142 -0.825 0.834 -1.051 0.226 -1.143 0.036 0.544 0.089 -0.263 -0.172 0.659 -0.513 -0.637 -0.502 1.107 -1.010 -0.475 0.118 0.355 -0.127 -1.183 -0.682 1.317 -1.169 0.003 -0.389 0.212 0.105 -0.263 0.088 0.546 -0.634 0.071 0.318 -0.418 -0.066 -0.983 -0.631 1.106 -0.523 . 1.381 . 0.481 -0.747 0.119 0.884 -1.082 . 0.415 0.694 0.069 -0.953 0.349 0.501 -0.331 -0.267 0.209 0.474 -0.680 -0.280 0.017 0.762 -1.093 -0.627 0.881 -0.753 -0.125 -0.890 0.345 0.398 -0.195 -0.117 -0.236 0.868 -1.308 -0.204 -0.733 1.189 -2.002 -0.501 0.607 0.236 -0.757 -1.149 -0.507 1.288 -1.308 0.392 -0.363 0.035 -0.175 0.273 0.033 0.174 -0.643 0.444 0.024 -0.463 -0.157 -0.319 -0.415 0.736 -0.353 . 1.533 . 0.145 -0.621 0.116 0.815 -0.983 . 0.473 0.680 0.014 -0.852 0.478 0.099 -0.027 -0.252 0.432 0.459 -1.195 -0.996 0.917 0.268 -1.299 -1.401 1.392 -2.010 -0.419 -1.357 0.969 -0.117 -0.453 -0.580 -0.307 0.907 -0.626 -0.279 -0.939 1.221 -1.629 -0.970 0.621 0.271 -0.424 -1.241 -0.123 1.067 -0.828 -0.318 0.040 0.317 -0.114 -0.561 0.878 -0.351 -0.515 -0.651 0.667 -0.639 0.181 -0.992 0.454 0.542 -0.576 . 1.590 . -0.016 -1.201 0.476 0.935 -1.931 . 0.849 0.414 -0.207 -2.183 1.231 -0.847 -0.189 -0.206 0.393 0.531 -1.415 -1.158 0.702 0.730 -1.905 -1.206 1.335 -1.385 -0.597 -1.402 0.879 0.342 -0.958 -0.432 0.307 0.773 -1.677 -0.665 0.335 0.901 -2.058 -1.196 1.138 -0.302 -0.860 -1.498 0.101 1.157 -1.542 0.215 0.226 0.070 -0.690 -0.380 0.823 -0.031 -1.048 -0.500 1.127 -1.295 -0.512 -0.799 0.242 0.828 -1.095 . 1.818 . -1.077 -1.187 0.805 0.621 -1.858 . 0.893 0.600 -0.673 -2.384 1.215 -0.459 -0.399 0.062 0.200 0.004 -0.314 -0.405 0.492 0.082 -0.358 -0.468 0.927 -1.410 0.000 -0.979 0.491 -0.097 0.204 0.165 -0.100 0.431 -0.743 0.009 -0.054 0.614 -0.998 -0.611 0.634 -0.341 0.006 -0.549 -0.350 0.886 -0.549 0.254 -0.308 -0.096 0.090 -0.293 0.660 -0.722 -0.004 -0.048 0.500 -0.942 0.135 -0.384 -0.173 0.511 -0.118 . 1.593 . -0.024 -0.679 0.620 0.413 -0.979 . 0.895 0.358 -0.219 -0.687 0.594 0.208 -0.484 -0.213 -0.238 0.601 -0.372 -0.632 -0.177 1.018 -1.168 -0.392 0.685 -0.640 -0.016 -0.619 0.025 0.381 0.041 -0.621 -0.114 0.848 -0.676 -0.466 -0.881 1.246 -1.466 -0.098 0.345 0.150 -0.544 -0.921 -0.679 1.288 -1.301 -0.008 -0.115 0.267 -0.186 0.028 -0.460 0.600 -0.438 0.540 0.352 -1.117 -0.307 -0.142 -0.762 0.851 -0.513 . 1.381 . 0.481 -0.755 -0.482 1.222 -1.482 . 0.393 0.854 -0.186 -1.158 0.374 0.467 -0.193 -0.221 0.102 0.501 -0.614 -0.876 0.439 0.756 -1.286 -1.689 1.341 -2.112 -0.112 -1.478 0.776 0.041 -0.152 -0.698 0.088 0.788 -0.750 -0.684 -0.340 1.171 -1.575 -0.842 0.385 0.441 -0.360 -1.632 -0.583 1.296 -0.850 -0.137 -0.162 0.326 -0.085 -0.358 0.609 -0.066 -0.437 -0.621 0.643 -1.056 0.386 -0.933 0.150 0.711 -0.454 . 1.556 . 0.083 -1.096 -0.035 1.158 -1.620 . 0.783 0.579 -0.348 -2.083 1.146 -0.643 -0.136 -0.325 0.034 0.672 -0.775 -0.953 -0.135 1.179 -1.695 -0.651 1.055 -1.126 -0.274 -0.562 0.331 0.450 -0.516 -0.463 0.085 0.764 -0.957 -0.314 -0.083 0.952 -1.660 -0.912 0.855 0.065 -0.703 -1.337 -0.386 1.322 -1.564 -0.030 0.135 0.432 -0.803 -0.402 0.342 0.653 -1.312 -0.622 1.069 -1.557 -0.133 -0.687 -0.295 1.085 -1.177 . 1.705 . -0.433 -0.969 0.349 0.964 -1.914 . 0.784 0.503 -0.216 -1.976 0.861 0.140 -0.273 0.200 0.223 -0.024 -0.513 -0.840 0.371 0.857 -1.567 -1.339 1.082 -1.488 0.179 -1.167 0.539 0.286 -0.181 -0.244 -0.104 0.627 -0.554 -0.264 -0.030 0.809 -1.198 -0.527 0.584 -0.191 -0.103 -0.885 -0.334 1.095 -0.919 0.040 -0.031 -0.031 0.021 -0.519 0.537 0.403 -0.918 -0.161 0.675 -1.167 0.088 -0.920 -0.293 0.869 -0.270 . 1.515 . 0.190 -1.011 0.235 0.947 -1.324 . 0.634 0.447 0.117 -1.270 0.328 0.761 -0.656 -0.207 0.043 0.527 -0.594 -0.710 -0.070 1.017 -1.276 -0.727 1.042 -0.825 -0.373 -0.404 -0.152 0.568 -0.215 -0.324 -0.216 0.957 -1.324 -0.236 -1.204 1.245 -1.532 -0.448 0.520 0.407 -0.978 -1.001 -1.073 1.362 -1.138 0.210 -0.370 0.303 -0.259 -0.115 -0.041 0.565 -0.678 0.351 0.302 -0.518 -0.334 -0.731 -0.743 1.086 -0.562 . 1.346 . 0.544 -0.638 -0.255 1.079 -1.295 . 0.393 0.682 0.114 -1.217 0.432 -0.113 0.375 -0.562 0.399 0.569 -0.942 -1.011 0.731 0.540 -1.357 -1.944 1.430 -2.456 -0.211 -1.278 0.897 -0.133 -0.298 -1.112 0.125 0.844 -0.618 -0.713 -0.324 1.207 -1.821 -1.174 0.708 0.342 -0.608 -1.519 -0.209 1.196 -1.013 -0.673 -0.076 0.444 0.089 -0.769 0.631 0.202 -0.485 -0.694 0.645 -0.567 0.193 -0.993 0.136 0.842 -0.722 . 1.659 . -0.247 -1.625 0.431 1.020 -1.735 . 0.906 0.202 -0.034 -2.667 1.268 -1.277 0.030 -0.442 0.205 0.810 -1.483 -1.283 0.472 0.964 -1.992 -1.139 1.327 -1.092 -0.817 -1.057 0.552 0.481 -0.606 -0.647 0.019 0.973 -1.376 -0.482 0.062 0.957 -1.744 -0.861 0.975 -0.088 -0.880 -1.481 -0.354 1.324 -1.493 -0.070 0.142 0.402 -0.683 -0.553 0.708 0.356 -1.301 -0.353 1.041 -1.146 -0.498 -0.928 -0.386 1.158 -1.067 . 1.763 . -0.723 -1.620 0.597 0.915 -1.851 . 0.966 0.420 -0.497 -2.269 0.884 -0.369 0.231 -0.145 0.256 0.338 -0.647 -0.919 0.742 0.503 -1.388 -1.973 1.309 -2.053 0.037 -1.072 0.445 0.424 -0.286 -0.146 -0.051 0.561 -0.610 -0.222 -0.029 0.669 -0.802 -0.351 0.659 -0.262 -0.316 -0.814 -0.079 0.900 -0.692 -0.027 -0.296 0.285 -0.021 -0.592 0.685 0.172 -0.731 -0.099 0.631 -0.466 -0.333 -0.906 -0.278 0.956 -0.511 . 1.479 . 0.279 -0.840 0.495 0.664 -1.160 . 0.735 0.294 0.150 -0.832 0.584 0.326 -0.544 frame2 LUT 5 4 4 0 0.000 0.122 0.086 0.122 -0.391 0.450 -0.545 0.136 -0.236 0.033 0.019 0.236 -0.346 -0.453 0.003 0.752 -0.777 0.235 0.240 -0.096 -0.500 0.348 -1.248 0.746 -0.671 0.069 0.025 0.242 -0.414 0.106 -0.088 0.507 -0.832 0.653 0.053 -0.225 -0.903 0.517 -0.602 0.007 -0.143 0.343 0.394 -0.042 -1.166 -0.544 -0.494 0.917 -0.481 -0.057 0.231 0.011 -0.222 0.459 -0.735 0.512 -0.741 0.080 -0.037 0.278 -0.404 -0.296 0.062 0.398 -0.278 0.429 0.013 -0.183 -0.389 0.299 -0.589 0.206 -0.072 -0.072 0.413 -0.112 -0.335 -0.703 0.566 -0.034 -0.108 0.146 0.265 -0.088 -0.414 0.225 -0.606 0.516 -0.426 0.296 -0.281 0.233 -0.370 -0.318 -0.024 0.418 -0.187 0.175 -0.131 -0.318 0.209 0.547 -0.417 0.042 -0.396 -0.359 0.144 -0.114 0.253 -0.325 -0.095 0.545 -0.311 0.223 0.130 0.002 -0.442 0.340 -0.914 0.637 -0.626 -0.124 0.312 -0.065 -0.176 -0.344 0.109 0.273 -0.112 0.557 -0.470 0.153 -0.525 0.264 -0.811 0.429 -0.179 -0.241 0.093 0.286 -0.205 -0.373 0.051 0.375 -0.161 0.249 0.187 0.070 -0.682 0.341 -0.485 0.658 -1.180 0.174 -0.179 0.341 -0.470 -0.239 -0.149 0.681 -0.628 0.214 -0.251 -0.199 0.175 0.432 -0.993 0.375 -0.232 -0.059 0.403 -0.205 -0.234 -0.271 -0.439 0.784 -0.490 0.180 0.117 0.282 -0.820 0.407 -0.551 0.613 -1.112 -0.101 0.243 -0.052 -0.121 -0.380 0.032 0.247 0.032 . . . . 0.230 -0.509 0.306 -0.170 . . . . -1.170 0.534 0.242 -0.113 0.104 0.061 -0.242 0.052 0.458 -0.768 0.443 -0.557 0.154 -0.130 0.081 -0.127 -0.218 0.155 0.212 -0.203 . . . . 0.336 -0.345 0.050 -0.128 0.340 -0.198 0.050 -0.274 -0.180 -0.286 0.524 -0.219 0.259 -0.219 0.331 -0.545 0.109 0.055 0.114 -0.321 0.060 0.274 0.118 -0.594 -0.252 -0.115 0.269 0.046 0.438 -0.090 0.052 -0.581 0.468 -0.485 0.067 -0.226 -0.069 0.221 0.293 -0.609 -0.739 0.554 0.564 -1.138 0.210 0.451 -0.375 -0.505 0.454 -1.034 0.606 -0.690 0.148 0.126 0.250 -0.708 -0.153 -0.453 0.742 -0.519 0.554 0.199 -0.161 -1.031 0.510 -0.416 -0.024 -0.247 0.407 -0.166 0.469 -1.326 -0.276 -0.470 0.916 -0.823 -0.276 0.862 -0.560 -0.560 0.291 -0.346 0.355 -0.493 0.248 -0.009 0.184 -0.550 -0.218 0.204 0.383 -0.547 0.606 -0.029 -0.219 -0.648 0.228 -0.134 0.283 -0.512 -0.076 0.364 0.035 -0.434 -1.018 0.880 -0.018 -0.559 0.113 0.187 0.028 -0.395 0.281 -1.122 0.812 -0.812 0.231 -0.223 0.400 -0.621 -0.679 -0.472 0.654 0.112 0.231 0.117 -0.165 -0.235 0.557 -0.425 0.151 -0.571 -0.405 0.277 0.240 -0.230 -0.227 -0.124 0.709 -0.754 0.216 0.322 -0.099 -0.612 0.531 -0.996 0.500 -0.645 -0.052 0.363 -0.076 -0.320 -0.274 0.195 0.294 -0.318 0.393 -0.048 0.213 -0.836 0.292 -0.397 0.424 -0.566 -0.372 0.342 0.382 -0.607 -0.486 0.407 0.378 -0.598 -0.050 0.682 -0.291 -0.705 0.388 -0.256 0.326 -0.737 0.244 -0.130 0.233 -0.460 -0.112 -0.173 0.569 -0.505 -0.052 0.035 0.094 -0.084 0.657 -0.756 0.280 -0.698 -0.710 0.509 -0.085 0.032 -0.272 -0.795 1.007 -0.772 -0.147 0.641 -0.142 -0.663 0.197 -0.642 0.782 -1.017 -0.235 0.413 -0.156 -0.119 -0.201 -0.114 0.570 -0.471 . . . . 0.265 -0.149 0.274 -0.541 . . . . -1.094 0.966 0.016 -0.819 0.087 0.451 -0.431 -0.270 0.501 -0.670 0.308 -0.478 0.152 0.029 0.208 -0.487 0.035 -0.376 0.429 -0.220 . . . . 0.346 -0.087 -0.048 -0.286 0.335 -0.201 0.160 -0.413 -0.688 0.201 0.789 -0.995 0.778 -0.036 -0.211 -1.165 0.181 0.180 -0.017 -0.424 -0.003 0.374 0.228 -0.904 -0.041 -0.207 0.558 -0.536 0.499 -0.057 0.140 -0.934 0.112 -0.296 0.652 -0.906 -0.004 0.193 0.545 -1.320 -0.751 0.293 0.792 -1.152 0.126 0.462 0.017 -0.946 0.236 -1.176 0.930 -1.075 0.052 0.102 0.515 -1.116 -0.293 -0.391 0.931 -0.959 0.577 0.008 0.098 -1.209 0.274 -0.511 0.535 -0.645 0.311 0.101 0.254 -1.017 -0.522 -0.583 1.071 -0.902 -0.256 0.634 0.072 -0.839 0.105 -0.757 0.885 -1.039 0.010 -0.059 0.585 -0.906 -0.469 -0.055 0.769 -0.709 0.446 0.185 -0.003 -0.990 0.188 -0.389 0.589 -0.754 -0.251 0.522 0.275 -0.960 -0.710 0.797 0.160 -0.907 0.009 0.570 -0.065 -0.853 -0.051 -0.396 0.885 -1.224 0.061 -0.238 0.655 -0.904 -0.214 -0.074 0.483 -0.339 0.455 0.063 -0.074 -0.656 0.566 -0.507 0.342 -0.867 -0.410 0.291 0.396 -0.498 -0.184 -0.247 0.796 -0.887 0.358 0.098 0.265 -1.163 0.148 -1.406 1.065 -1.244 -0.015 0.234 0.311 -0.752 -0.162 -0.153 0.527 -0.383 0.390 -0.247 0.497 -1.200 0.322 -0.914 0.760 -0.925 -0.170 0.184 0.545 -0.954 -0.612 0.202 0.681 -0.755 0.125 0.448 0.161 -1.229 0.306 -0.525 0.778 -1.498 -0.031 -0.341 0.730 -0.805 -0.216 -0.289 0.797 -0.778 0.189 0.232 -0.013 -0.526 0.492 -0.666 0.525 -0.929 -0.502 0.916 -0.227 -0.857 -0.214 -0.504 0.918 -0.882 0.197 0.297 0.284 -1.294 0.173 -1.066 1.128 -2.253 -0.088 0.242 0.344 -0.719 -0.261 -0.283 0.739 -0.569 . . . . 0.204 -0.562 0.655 -0.746 . . . . -1.007 0.811 0.199 -0.738 0.149 0.542 -0.368 -0.597 -0.055 -0.620 0.869 -0.837 -0.017 0.082 0.420 -0.702 -0.274 -0.144 0.536 -0.291 . . . . 0.256 -0.308 0.438 -0.636 0.333 -0.133 0.289 -0.720 -0.491 -0.113 0.816 -0.730 0.143 0.260 0.270 -1.022 0.045 -0.153 0.513 -0.639 -0.134 0.342 0.465 -1.184 -0.078 -0.204 0.608 -0.599 0.568 -0.243 0.093 -0.723 0.294 -0.421 0.331 -0.378 0.056 0.295 0.262 -0.905 -0.478 0.119 0.650 -0.676 0.219 0.196 0.009 -0.546 0.260 -1.083 0.797 -0.756 0.026 0.196 0.371 -0.880 0.110 -0.263 0.608 -0.828 0.743 -0.505 0.031 -0.739 0.480 -0.809 0.127 -0.085 0.686 -0.195 -0.051 -0.858 -0.047 -0.386 0.677 -0.582 0.025 0.314 0.143 -0.656 0.031 -0.817 0.798 -0.572 -0.043 0.152 0.416 -0.775 -0.235 -0.110 0.579 -0.454 0.524 0.072 -0.054 -0.869 0.271 -0.243 0.444 -0.768 -0.310 0.617 -0.002 -0.597 -0.665 0.692 -0.021 -0.380 0.058 0.354 0.078 -0.676 0.383 -0.950 0.678 -0.790 -0.030 -0.173 0.552 -0.582 -0.198 -0.115 0.421 -0.208 0.072 0.169 -0.119 -0.146 0.401 -0.429 0.234 -0.394 -0.415 0.254 0.145 -0.072 -0.136 -0.060 0.491 -0.463 0.249 0.087 0.256 -0.848 0.295 -1.371 0.908 -0.971 -0.302 0.403 0.189 -0.461 0.015 0.038 0.236 -0.349 0.536 -0.369 0.279 -0.830 0.208 -0.564 0.531 -0.467 -0.240 0.212 0.472 -0.718 -0.281 0.051 0.478 -0.419 0.173 0.231 0.024 -0.552 0.153 -0.360 0.715 -1.099 0.010 -0.052 0.514 -0.736 -0.463 -0.107 0.785 -0.683 0.102 0.054 0.064 -0.246 0.502 -0.432 0.336 -0.785 -0.416 0.549 -0.215 -0.111 -0.377 -0.769 0.985 -0.591 0.213 0.062 0.280 -0.780 -0.042 -0.646 1.016 -1.441 -0.115 0.232 0.263 -0.511 -0.245 -0.214 0.600 -0.362 . . . . 0.119 -0.561 0.591 -0.456 . . . . -0.677 0.529 0.370 -0.646 0.320 0.273 -0.472 -0.284 0.240 -0.724 0.627 -0.579 -0.004 0.161 0.257 -0.536 -0.047 -0.265 0.433 -0.236 . . . . 0.177 -0.278 0.171 -0.123 0.220 -0.120 0.184 -0.361 -0.484 -0.103 0.745 -0.561 0.360 0.139 0.112 -0.906 0.225 -0.066 0.250 -0.541 -0.133 0.269 0.430 -0.900 0.135 -0.110 0.497 -0.827 frame2 LUT 5 4 4 0 0.000 0.484 0.175 -1.162 0.036 0.176 0.345 -0.369 -0.276 0.294 0.422 -0.604 -0.366 -0.715 0.701 -0.411 0.019 0.658 -0.503 -0.971 0.271 0.297 -0.377 0.028 -0.027 0.659 -0.494 -0.235 -0.215 -0.045 -0.189 -0.240 0.386 0.995 -0.809 -1.358 0.065 0.231 -0.999 -0.182 0.530 0.802 -0.326 -0.759 -0.205 0.240 -0.358 -0.431 0.375 0.421 0.137 -1.066 0.117 -0.108 0.140 -0.396 0.275 0.026 0.257 -0.136 -0.190 -0.918 0.109 -0.800 0.862 0.361 0.302 -1.269 0.094 -0.200 0.538 -0.991 0.231 0.211 0.421 -0.938 -0.026 -1.140 0.522 -0.810 0.622 0.632 -0.142 -0.782 -0.056 0.176 -0.626 0.143 0.160 0.538 -0.721 0.059 -0.152 -0.499 0.095 0.095 0.210 0.411 -0.340 -1.401 0.587 -0.063 -0.354 -0.718 0.725 0.395 0.002 -0.781 0.139 -0.120 -0.252 -0.726 0.710 -0.095 0.644 -0.628 -0.228 -0.024 0.418 -0.556 0.000 -0.282 0.394 -0.099 -0.105 -0.827 0.566 -0.856 0.489 0.685 -0.494 -0.434 -0.086 0.352 -0.115 0.189 -0.597 0.340 0.266 -0.522 -0.259 -0.174 0.155 -0.874 0.541 0.667 -0.545 -0.331 -0.102 0.391 -0.517 -0.052 0.036 0.722 -0.748 -0.060 -0.329 -0.190 -0.013 -0.406 0.462 0.974 -0.726 -1.424 0.081 0.491 -0.749 0.106 -0.114 0.935 -0.065 -0.807 -0.837 -0.465 -0.465 -0.465 0.869 0.262 0.255 -0.592 -0.084 0.105 0.150 -0.371 0.059 0.215 0.287 -0.188 -0.432 -1.689 0.435 -1.068 0.896 0.604 0.077 -1.088 -0.067 -0.084 -0.106 -0.313 0.403 0.307 0.425 -0.863 -0.200 -1.281 0.376 -0.576 0.696 0.727 -0.427 -1.219 0.228 0.203 -0.463 0.057 0.115 0.734 -0.610 -0.444 -0.079 0.029 -0.150 -0.014 0.122 0.747 -0.400 -1.285 0.206 0.229 -0.448 -0.387 0.411 0.602 -0.038 -0.589 -0.245 -0.253 0.029 -0.376 0.454 0.358 0.211 -1.221 0.179 -0.075 0.116 -0.324 0.225 0.060 0.455 -0.434 -0.241 -0.894 0.317 -0.549 0.616 0.422 0.258 -1.025 -0.040 0.602 0.139 -0.566 -0.504 0.366 0.380 -0.439 -0.573 -0.925 0.668 -0.638 0.312 0.499 -0.228 -1.008 0.306 0.728 -0.669 -0.115 -0.338 0.682 -0.409 -0.312 -0.258 -0.112 -0.153 0.088 0.153 0.739 -0.633 -1.303 0.356 0.621 -0.876 -0.571 0.315 0.747 -0.237 -0.690 -0.228 0.024 -0.317 -0.259 0.427 0.244 0.276 -1.493 0.322 0.207 0.024 -0.566 0.207 -0.063 0.292 -0.108 -0.167 -0.538 0.258 -0.762 0.610 0.607 0.215 -1.237 -0.165 -0.065 0.699 -0.983 -0.129 0.179 0.546 -1.204 -0.037 -0.820 0.715 -1.245 0.454 0.790 -0.192 -0.970 -0.176 0.670 -0.684 0.053 -0.416 0.640 -0.659 0.057 -0.380 -0.544 0.345 -0.108 0.158 0.645 -0.363 -1.307 0.327 0.117 -0.187 -0.868 0.574 0.662 0.046 -0.910 -0.229 0.119 -0.037 -0.786 0.443 0.246 0.573 -0.779 -0.427 0.217 0.615 -0.686 -0.546 -0.202 0.550 -0.253 -0.273 -0.549 0.750 -0.736 0.049 0.555 -0.180 -0.385 -0.180 0.117 0.135 -0.124 -0.152 0.317 0.169 -0.406 -0.191 -0.689 0.506 -0.445 0.292 0.842 -0.381 -1.379 0.078 0.539 -0.607 0.259 -0.527 0.873 -1.057 -0.331 -0.163 0.007 -0.214 -0.145 0.298 0.913 -0.544 -1.859 0.208 0.118 -0.525 -0.400 0.547 0.734 0.142 -0.878 -0.537 0.002 -0.652 -0.779 0.831 0.311 0.295 -1.312 0.176 0.052 0.052 0.027 -0.140 0.196 0.177 -0.205 -0.222 -0.926 0.350 -0.507 0.581 0.509 0.222 -1.107 -0.078 0.358 0.031 -0.490 -0.023 0.446 0.374 -1.001 -0.248 -1.328 0.731 -0.374 0.227 0.751 -0.226 -0.887 -0.119 0.392 -0.533 0.245 -0.301 0.655 -0.736 0.184 -0.538 -0.268 -0.033 0.223 0.036 0.772 -0.452 -1.535 0.282 0.176 -0.579 -0.427 0.543 0.659 0.060 -1.153 -0.107 -0.135 -0.086 -0.384 0.465 0.264 0.417 -0.730 -0.216 -0.003 0.555 -0.207 -0.585 -0.125 0.530 -0.028 -0.603 -0.668 0.731 -0.483 -0.006 0.577 -0.081 -0.880 0.028 0.232 0.111 -0.044 -0.365 0.637 0.230 -0.495 -0.830 -0.595 0.590 -0.217 -0.041 0.597 -0.510 -0.863 0.305 0.421 -0.641 0.054 -0.026 0.991 -0.918 -0.373 -0.493 0.068 -0.384 -0.134 0.350 0.937 -1.025 -1.572 0.331 0.249 -1.327 -0.247 0.651 1.010 -0.582 -0.910 -0.347 0.167 -0.672 -0.377 0.565 0.374 -0.055 -1.013 0.318 -0.243 -0.002 -0.197 0.361 0.461 0.028 -0.246 -0.395 -0.569 -0.016 -0.543 0.723 0.644 0.042 -1.029 -0.123 -0.141 0.232 -0.736 0.399 0.005 0.701 -0.691 -0.411 -1.034 0.606 -1.188 0.633 0.733 -0.281 -0.907 -0.027 0.354 -0.548 0.044 0.010 0.452 -0.271 -0.037 -0.271 -0.484 0.179 0.140 0.072 0.574 -0.464 -1.473 0.512 0.098 -0.644 -1.095 0.865 0.534 0.235 -0.810 -0.313 0.027 -0.167 -0.866 0.625 0.286 0.127 -0.528 -0.007 0.295 0.407 -0.507 -0.429 -0.152 0.585 -0.118 -0.559 -0.714 0.691 -0.441 0.055 0.472 0.077 -0.601 -0.155 0.354 -0.122 -0.310 -0.006 0.157 0.197 0.082 -0.557 -0.453 0.103 -0.397 0.522 0.664 -0.380 -0.883 0.144 0.624 -0.694 0.122 -0.411 0.677 -0.860 0.068 -0.318 0.077 -0.162 -0.112 0.171 0.826 0.002 -2.014 -0.031 -0.136 -0.759 -0.612 0.883 0.577 0.342 -1.008 -0.427 0.051 -0.537 -1.063 0.845 0.190 0.244 -0.679 0.072 0.060 -0.049 -0.144 0.119 -0.113 0.076 0.354 -0.428 -1.009 0.543 -0.729 0.529 0.722 0.047 -1.390 -0.095 0.194 0.020 -0.268 0.016 0.248 0.508 -0.931 -0.207 -1.504 0.629 -0.564 0.510 0.568 -0.161 -1.072 0.199 0.396 -0.171 -0.152 -0.158 0.608 -0.530 -0.041 -0.301 -0.168 0.005 0.214 -0.079 0.803 -0.392 -1.757 0.260 0.049 -0.486 -0.507 0.630 0.653 0.005 -1.156 -0.036 -0.172 -0.153 -0.365 0.522 0.294 0.251 -0.622 -0.098 -0.083 0.342 -0.004 -0.337 0.047 0.295 -0.028 -0.397 -0.537 0.528 -0.209 0.006 . . . . . . . . . . . . . . . . 0.619 -0.290 -0.961 0.179 0.289 -0.722 0.174 0.062 0.732 -0.539 -0.289 -0.264 0.126 -0.155 -0.328 0.280 . . . . . . . . . . . . . . . . 0.533 -0.128 -0.614 -0.022 -0.146 -0.034 -0.353 0.419 0.142 0.183 0.064 -0.481 -0.390 0.254 -0.988 0.623 0.677 0.113 -1.147 -0.205 -0.144 0.384 -0.712 0.237 0.214 0.595 -0.867 -0.355 -1.150 0.968 -1.229 0.223 0.558 0.007 -0.570 -0.235 0.249 -0.824 0.339 -0.026 0.398 -0.373 0.063 -0.208 -0.378 0.258 -0.045 0.091 0.513 -0.532 -1.231 0.541 0.102 -0.530 -0.721 0.703 0.507 -0.045 -0.623 -0.058 -0.171 0.090 -0.754 0.541 0.070 0.444 -0.434 -0.234 0.091 0.408 -0.067 -0.614 -0.170 0.459 -0.030 -0.402 -0.891 0.883 -1.012 0.165 . . . . . . . . . . . . . . . . 0.649 -0.357 -0.934 0.173 0.294 -0.431 0.051 -0.006 0.622 -0.736 -0.167 -0.045 -0.223 -0.175 -0.082 0.392 0.555 -0.289 -0.947 0.256 0.338 -0.675 -0.249 0.342 0.748 -0.358 -0.408 -0.347 -0.375 -0.142 -0.210 0.544 0.449 0.184 -0.725 -0.161 -0.496 0.298 -0.691 0.528 0.183 0.280 -0.081 -0.505 -1.096 0.147 -0.915 0.922 0.653 -0.112 -0.627 -0.228 0.115 0.080 0.043 -0.269 0.350 0.283 -0.678 -0.179 -0.947 0.366 -0.731 0.669 0.731 -0.414 -1.093 0.164 0.160 -0.489 -0.016 0.240 0.737 -0.721 -0.155 -0.271 -0.074 -0.233 -0.153 0.379 0.726 -0.702 -1.090 0.335 -0.042 -0.527 -0.079 0.473 0.453 0.315 -0.826 -0.280 -0.636 -0.073 -0.548 0.784 0.410 0.194 -1.253 0.147 -0.050 -0.288 -0.585 0.630 0.171 0.296 -0.545 -0.057 -0.613 0.436 -0.509 0.368 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.627 -0.046 -0.325 -0.538 0.942 -0.433 -0.659 -0.503 -0.840 -1.724 1.397 -0.986 -9.919 -9.919 1.999 -9.919 -9.919 -9.919 -9.919 1.999 1.708 -5.460 -0.845 -2.710 1.559 -1.448 -1.720 -1.380 -2.118 -3.411 1.798 -2.334 -0.980 -0.974 -1.268 1.361 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.642 -0.302 -0.694 0.015 0.653 -0.463 -0.208 -0.258 0.221 -0.022 -0.319 0.067 0.236 -0.413 -0.106 0.192 0.566 -0.256 -0.438 -0.083 0.459 -0.311 0.023 -0.315 0.387 -0.193 -0.193 -0.085 -0.026 -0.296 0.127 0.153 0.731 -0.879 -0.284 -0.036 0.480 -0.695 -0.082 0.061 0.323 -0.441 -0.136 0.141 0.115 -0.829 0.283 0.186 0.616 -0.541 -0.703 0.221 0.363 -0.448 0.106 -0.143 0.124 -0.243 -0.329 0.344 -0.014 -0.509 -0.149 0.491 0.647 -0.150 -0.884 -0.013 0.861 -0.583 -0.470 -0.333 0.007 0.201 -0.574 0.232 -0.098 -0.249 -0.419 0.562 0.253 0.048 -0.420 0.037 0.240 -0.107 -0.128 -0.036 0.164 -0.216 -0.140 0.153 -0.349 -0.176 -0.131 0.502 0.315 -0.290 -0.523 0.312 0.302 -0.429 -0.072 0.102 0.003 -0.058 -0.344 0.321 -0.137 -0.489 0.069 0.411 0.305 0.008 -0.651 0.166 0.126 -0.036 -0.168 0.061 -0.077 -0.009 -0.471 0.419 -0.414 -0.147 -0.384 0.660 0.650 -0.534 -0.164 -0.239 0.533 -0.519 0.080 -0.324 0.663 -0.206 -0.469 -0.273 0.045 -0.447 0.026 0.283 0.404 -0.439 0.083 -0.183 0.347 -0.358 0.159 -0.266 0.250 -0.044 -0.225 -0.021 -0.333 -0.262 0.261 0.231 0.610 -0.712 -0.118 -0.086 0.365 -0.433 0.063 -0.109 0.324 -0.242 -0.103 -0.042 0.149 -0.792 0.240 0.179 0.364 -0.237 -0.191 -0.017 0.245 -0.366 0.241 -0.223 0.021 -0.193 -0.328 0.394 -0.427 -0.378 -0.098 0.634 0.712 -0.654 -0.874 0.239 0.676 -0.506 -0.368 -0.116 0.232 -0.041 -0.613 0.262 0.096 -0.534 -0.396 0.567 0.381 -0.294 -0.565 0.271 0.298 -0.315 -0.102 0.049 0.252 -0.227 -0.371 0.240 -0.256 -0.148 -0.070 0.387 0.497 -0.595 -0.618 0.351 0.443 -0.584 -0.268 0.193 0.215 -0.236 -0.332 0.257 0.012 -0.765 -0.007 0.493 0.382 -0.351 -0.730 0.390 0.244 -0.057 -0.252 0.021 0.118 -0.096 -0.534 0.365 -0.157 -0.378 -0.300 0.605 0.543 0.001 -0.762 -0.069 0.636 -0.265 -0.322 -0.296 0.036 0.194 -0.271 0.003 -0.051 -0.163 -0.195 0.343 0.043 0.589 -0.592 -0.319 0.508 -0.369 0.037 -0.363 0.143 0.124 -0.235 -0.064 -0.261 -0.191 0.076 0.305 0.497 -0.438 -0.352 0.093 0.603 -0.632 -0.311 0.042 0.292 -0.121 -0.302 0.064 -0.094 -0.561 0.177 0.328 0.359 0.061 -0.789 0.132 0.344 -0.218 -0.035 -0.160 0.053 0.030 -0.436 0.266 -0.338 -0.231 -0.326 0.641 0.502 0.013 -0.703 -0.058 0.173 0.339 -0.486 -0.162 -0.148 0.496 -0.614 0.048 -0.415 0.196 -0.473 0.469 0.191 0.044 -0.510 0.170 -0.032 0.415 -0.290 -0.200 -0.026 -0.045 -0.100 0.158 -0.658 0.118 -0.259 0.531 0.333 -0.221 -0.476 0.219 0.109 0.083 -0.279 0.053 0.144 0.032 -0.413 0.166 -0.282 -0.211 -0.117 0.477 0.150 0.164 -0.665 0.189 -0.159 0.303 -0.271 0.059 -0.445 0.364 -0.488 0.340 -0.662 0.191 -0.421 0.565 0.478 -0.059 -0.394 -0.174 0.165 -0.178 0.090 -0.104 0.167 0.307 -0.469 -0.125 -0.350 0.106 -0.076 0.251 0.261 0.196 -0.408 -0.148 0.297 -0.105 0.074 -0.343 0.002 0.246 -0.408 0.083 -0.505 0.002 0.143 0.251 0.498 -0.312 -0.207 -0.127 0.319 -0.177 -0.107 -0.090 0.081 0.094 -0.185 -0.008 -0.091 -0.450 0.229 0.211 0.163 0.276 -0.514 -0.045 0.067 -0.018 0.116 -0.182 -0.241 0.113 -0.500 0.449 -0.582 -0.050 -0.269 0.619 0.535 -0.248 -0.961 0.257 0.305 -0.114 -0.415 0.126 0.137 0.215 -0.728 0.183 -0.208 -0.069 -0.452 0.536 0.310 -0.001 -0.749 0.222 0.183 -0.011 -0.135 -0.057 0.128 0.002 -0.293 0.124 -0.549 0.466 -0.440 0.261 0.482 -0.364 -0.793 0.320 0.244 -0.319 -0.568 0.422 0.231 -0.023 -0.564 0.220 -0.108 -0.356 -0.050 0.405 0.313 0.034 -0.866 0.245 0.054 0.058 -0.400 0.217 -0.017 0.137 -0.419 0.220 -0.443 0.000 -0.364 0.572 0.520 -0.319 -0.365 -0.017 0.328 -0.350 0.160 -0.246 0.270 0.029 -0.085 -0.267 -0.122 -0.246 0.122 0.201 0.210 -0.106 -0.012 -0.117 0.316 -0.527 0.344 -0.337 0.453 -0.282 -0.033 -0.266 -0.261 -0.108 0.180 0.144 0.370 -0.934 0.366 -0.160 0.379 -0.673 0.098 0.003 0.427 -0.426 -0.040 -0.091 -0.155 -0.549 0.300 0.248 0.468 -0.294 -0.347 0.022 0.165 -0.519 0.443 -0.283 0.206 -0.148 -0.053 -0.030 -0.364 -0.320 -0.054 0.545 0.578 -0.210 -0.567 -0.047 0.422 -0.153 -0.142 -0.227 -0.252 0.511 -0.414 -0.022 -0.295 0.008 -0.218 0.400 0.264 -0.032 -0.275 -0.008 0.036 -0.159 0.174 -0.072 -0.076 0.002 -0.014 0.083 -0.411 -0.232 0.124 0.386 0.315 -0.466 -0.241 0.245 0.253 -0.427 0.089 0.001 -0.042 0.120 -0.260 0.147 -0.163 -0.513 0.183 0.345 0.208 0.073 -0.431 0.073 -0.052 -0.095 0.130 0.007 -0.312 0.281 -0.233 0.175 -0.481 -0.010 -0.186 0.497 0.514 -0.466 -0.096 -0.132 0.432 -0.410 0.246 -0.490 0.074 -0.014 0.059 -0.128 -0.248 -0.331 0.265 0.216 0.343 -0.177 -0.030 -0.206 0.379 -0.355 0.283 -0.512 0.130 -0.107 0.121 -0.168 -0.351 -0.261 0.308 0.193 0.604 -0.600 -0.037 -0.242 0.321 -0.345 0.084 -0.146 0.155 -0.370 0.273 -0.146 -0.148 -0.793 0.299 0.368 0.407 -0.127 -0.117 -0.258 0.203 -0.282 0.357 -0.423 -0.204 -0.121 0.155 0.135 -0.603 -0.272 0.012 0.590 0.491 -0.512 -0.116 -0.043 0.422 -0.355 0.034 -0.227 0.081 0.028 -0.360 0.194 -0.230 -0.294 0.098 0.335 0.385 -0.165 -0.421 0.078 0.200 -0.207 0.072 -0.100 -0.057 -0.182 -0.186 0.354 -0.324 -0.114 0.085 0.282 0.435 -0.530 -0.264 0.167 0.255 -0.473 0.083 0.039 0.062 -0.143 -0.407 0.375 -0.352 -0.921 0.708 0.078 0.307 -0.165 -0.546 0.246 0.119 -0.158 0.057 -0.033 -0.115 -0.070 -0.307 0.396 -0.417 -0.372 0.034 0.541 0.572 -0.358 -0.750 0.186 0.540 -0.458 -0.147 -0.128 0.047 0.029 -0.507 0.313 -0.001 -0.504 -0.199 0.510 0.267 -0.104 -0.330 0.099 0.384 -0.421 0.034 -0.114 0.176 -0.016 -0.233 0.043 0.018 -0.474 -0.040 0.372 0.625 -0.778 -0.271 0.065 0.498 -0.652 -0.199 0.112 0.327 -0.207 -0.408 0.171 0.083 -0.905 0.119 0.402 0.326 -0.443 -0.669 0.466 0.337 -0.453 -0.058 0.065 0.025 -0.170 -0.414 0.426 -0.244 -0.576 -0.351 0.766 0.508 -0.208 -0.746 0.158 0.336 -0.118 -0.414 0.092 -0.176 0.321 -0.729 0.336 -0.382 0.114 -0.488 0.523 0.187 -0.105 -0.284 0.152 0.163 -0.011 -0.203 0.028 0.062 -0.271 0.093 0.085 -0.503 -0.058 -0.193 0.545 0.298 -0.520 -0.461 0.429 0.069 -0.206 -0.277 0.332 0.012 -0.126 -0.405 0.401 -0.256 -0.235 -0.188 0.521 0.191 -0.081 -0.554 0.301 -0.261 -0.230 -0.298 0.585 -0.369 0.113 -0.359 0.448 -0.631 0.108 -0.446 0.625 0.502 -0.370 -0.299 -0.003 0.416 -0.324 -0.028 -0.175 0.102 0.080 -0.428 0.172 -0.166 -0.384 0.068 0.372 0.258 -0.214 -0.143 0.051 0.274 -0.307 0.153 -0.200 -0.080 0.070 -0.331 0.274 -0.400 -0.313 0.324 0.246 0.533 -0.527 -0.183 -0.031 0.308 -0.224 -0.076 -0.064 0.161 -0.163 -0.191 0.154 -0.172 -0.702 0.345 0.295 0.275 -0.108 -0.513 0.216 0.225 -0.141 -0.081 -0.031 -0.510 -0.220 -0.715 0.872 -0.608 -0.526 -0.041 0.746 0.615 -0.506 -0.813 0.257 0.474 -0.313 -0.407 0.073 0.084 0.012 -0.622 0.359 -0.322 -0.311 -0.466 0.740 0.395 -0.285 -0.589 0.262 0.263 -0.161 -0.205 0.054 0.124 -0.173 -0.280 0.263 -0.248 -0.218 -0.317 0.581 0.543 -0.558 -0.679 0.310 0.322 -0.412 -0.374 0.295 0.097 -0.121 -0.437 0.347 -0.193 -0.837 -0.066 0.687 0.312 -0.266 -0.737 0.408 0.130 -0.114 -0.289 0.218 -0.111 0.011 -0.520 0.453 -0.301 -0.354 -0.261 0.652 Intron LUT 5 4 4 0 0.000 0.641 -0.334 -0.721 0.057 0.622 -0.401 -0.292 -0.172 0.216 -0.044 -0.297 0.077 0.178 -0.495 -0.033 0.241 0.513 -0.253 -0.461 0.010 0.453 -0.252 -0.064 -0.261 0.375 -0.160 -0.247 -0.051 -0.028 -0.264 0.069 0.186 0.669 -0.847 -0.231 0.003 0.494 -0.646 -0.121 0.046 0.185 -0.490 -0.080 0.270 0.135 -0.875 0.295 0.176 0.561 -0.575 -0.658 0.287 0.375 -0.465 0.058 -0.094 0.116 -0.274 -0.302 0.354 -0.026 -0.551 -0.127 0.505 0.643 -0.211 -0.914 0.062 0.902 -0.598 -0.571 -0.327 0.048 0.080 -0.490 0.259 -0.060 -0.339 -0.402 0.579 0.276 0.057 -0.574 0.108 0.290 -0.069 -0.278 -0.001 0.178 -0.241 -0.210 0.213 -0.360 -0.110 -0.233 0.530 0.301 -0.243 -0.633 0.354 0.315 -0.410 -0.172 0.158 -0.053 -0.119 -0.331 0.401 -0.084 -0.544 -0.011 0.463 0.327 -0.059 -0.657 0.204 0.161 -0.028 -0.249 0.083 0.001 -0.043 -0.529 0.418 -0.407 -0.221 -0.411 0.710 0.650 -0.627 -0.206 -0.125 0.571 -0.513 0.000 -0.298 0.665 -0.270 -0.433 -0.243 0.074 -0.507 0.026 0.293 0.406 -0.463 -0.057 -0.016 0.399 -0.396 0.002 -0.121 0.232 -0.055 -0.237 0.022 -0.233 -0.263 0.096 0.318 0.644 -0.743 -0.225 -0.024 0.345 -0.344 -0.097 0.011 0.333 -0.362 -0.062 0.007 0.296 -0.898 0.126 0.194 0.399 -0.359 -0.159 0.008 0.239 -0.357 0.179 -0.142 0.019 -0.246 -0.326 0.429 -0.407 -0.478 -0.092 0.668 0.621 -0.583 -0.895 0.330 0.677 -0.498 -0.438 -0.067 0.206 -0.045 -0.646 0.308 0.128 -0.588 -0.406 0.573 0.384 -0.352 -0.661 0.355 0.277 -0.289 -0.216 0.150 0.267 -0.229 -0.425 0.262 -0.235 -0.141 -0.180 0.444 0.472 -0.621 -0.666 0.414 0.440 -0.606 -0.325 0.248 0.178 -0.300 -0.295 0.312 -0.019 -0.781 0.016 0.506 0.379 -0.341 -0.764 0.402 0.270 -0.074 -0.335 0.071 0.147 -0.128 -0.502 0.346 -0.163 -0.389 -0.300 0.614 0.541 -0.032 -0.747 -0.042 0.613 -0.215 -0.363 -0.266 0.014 0.179 -0.281 0.050 -0.111 -0.214 -0.162 0.399 -0.025 0.632 -0.603 -0.305 0.514 -0.261 -0.073 -0.346 0.139 0.145 -0.254 -0.067 -0.263 -0.136 0.016 0.316 0.427 -0.332 -0.263 0.040 0.608 -0.575 -0.344 0.024 0.175 -0.095 -0.312 0.176 -0.086 -0.597 0.153 0.362 0.373 0.006 -0.793 0.169 0.361 -0.210 -0.094 -0.130 0.031 0.037 -0.455 0.290 -0.338 -0.281 -0.321 0.665 0.510 -0.026 -0.757 0.003 0.183 0.288 -0.539 -0.066 -0.104 0.422 -0.564 0.075 -0.395 0.092 -0.465 0.536 0.176 0.042 -0.647 0.266 -0.021 0.407 -0.336 -0.159 -0.083 -0.078 -0.133 0.258 -0.659 0.102 -0.364 0.601 0.231 -0.203 -0.483 0.313 0.081 0.087 -0.293 0.089 0.201 -0.114 -0.336 0.182 -0.246 -0.262 -0.139 0.501 0.172 0.133 -0.713 0.223 -0.174 0.310 -0.425 0.175 -0.451 0.319 -0.516 0.403 -0.668 0.155 -0.486 0.626 0.463 -0.113 -0.448 -0.053 0.190 -0.211 0.043 -0.052 0.176 0.204 -0.483 0.005 -0.356 0.011 -0.049 0.316 0.235 0.192 -0.428 -0.093 0.267 -0.071 0.035 -0.286 -0.073 0.285 -0.409 0.109 -0.504 -0.001 0.052 0.332 0.511 -0.446 -0.189 -0.053 0.290 -0.251 -0.169 0.067 0.073 -0.091 -0.054 0.065 -0.068 -0.470 0.184 0.249 0.208 0.149 -0.473 0.022 0.100 -0.058 0.055 -0.107 -0.222 -0.006 -0.427 0.488 -0.572 -0.105 -0.266 0.647 0.466 -0.177 -1.055 0.326 0.293 -0.146 -0.425 0.172 0.158 0.170 -0.743 0.216 -0.222 -0.117 -0.389 0.542 0.285 -0.037 -0.750 0.278 0.163 0.099 -0.216 -0.077 0.056 0.021 -0.330 0.201 -0.618 0.525 -0.487 0.258 0.409 -0.305 -0.750 0.344 0.190 -0.293 -0.582 0.460 0.150 -0.074 -0.525 0.317 -0.180 -0.448 -0.017 0.481 0.302 0.030 -0.900 0.275 0.006 0.105 -0.457 0.253 -0.033 0.118 -0.400 0.239 -0.504 0.025 -0.386 0.597 0.498 -0.326 -0.370 0.023 0.302 -0.307 0.124 -0.202 0.246 -0.052 -0.053 -0.176 -0.153 -0.286 0.159 0.219 0.213 -0.066 -0.109 -0.062 0.306 -0.480 0.244 -0.213 0.452 -0.315 -0.060 -0.203 -0.264 -0.073 0.146 0.150 0.294 -0.868 0.389 -0.126 0.416 -0.641 0.055 -0.020 0.239 -0.417 0.042 0.058 -0.116 -0.574 0.305 0.227 0.434 -0.305 -0.381 0.100 0.203 -0.532 0.424 -0.295 0.213 -0.215 -0.055 0.024 -0.379 -0.320 -0.084 0.572 0.565 -0.291 -0.600 0.061 0.467 -0.175 -0.249 -0.167 -0.267 0.434 -0.376 0.067 -0.251 -0.112 -0.156 0.419 0.278 -0.084 -0.366 0.095 0.013 -0.081 0.054 0.010 -0.137 0.022 -0.080 0.175 -0.342 -0.263 0.067 0.411 0.322 -0.496 -0.290 0.290 0.276 -0.419 0.036 0.023 -0.119 0.054 -0.171 0.204 -0.184 -0.566 0.171 0.398 0.227 0.017 -0.453 0.121 0.001 -0.107 -0.012 0.110 -0.284 0.227 -0.247 0.221 -0.471 -0.057 -0.197 0.531 0.512 -0.529 -0.140 -0.040 0.445 -0.424 0.143 -0.342 0.072 -0.117 0.068 -0.031 -0.277 -0.436 0.293 0.275 0.352 -0.172 -0.084 -0.164 0.349 -0.257 0.135 -0.337 0.157 -0.131 0.054 -0.099 -0.354 -0.324 0.290 0.258 0.607 -0.649 -0.054 -0.191 0.320 -0.348 0.048 -0.101 0.123 -0.437 0.319 -0.113 -0.149 -0.839 0.290 0.397 0.567 -0.255 -0.217 -0.286 0.215 -0.258 0.257 -0.306 -0.152 -0.234 0.164 0.175 -0.619 -0.371 0.047 0.626 0.371 -0.613 0.151 -0.085 0.459 -0.345 -0.066 -0.180 0.061 0.007 -0.297 0.187 -0.239 -0.408 0.150 0.367 0.357 -0.130 -0.499 0.135 0.210 -0.149 -0.023 -0.064 -0.067 -0.148 -0.290 0.406 -0.320 -0.086 0.008 0.324 0.360 -0.498 -0.177 0.169 0.268 -0.482 0.028 0.084 -0.001 -0.191 -0.351 0.423 -0.450 -0.988 0.789 0.052 0.293 -0.184 -0.626 0.318 0.099 -0.140 -0.025 0.056 -0.136 -0.064 -0.282 0.391 -0.495 -0.365 0.012 0.590 0.553 -0.412 -0.711 0.227 0.537 -0.404 -0.221 -0.097 0.022 -0.093 -0.559 0.452 -0.052 -0.614 -0.123 0.550 0.223 -0.128 -0.302 0.146 0.433 -0.349 -0.102 -0.100 0.167 -0.047 -0.291 0.127 0.072 -0.473 -0.118 0.386 0.624 -0.761 -0.345 0.113 0.518 -0.605 -0.286 0.125 0.303 -0.242 -0.387 0.209 0.090 -0.811 0.022 0.433 0.256 -0.491 -0.671 0.552 0.331 -0.459 -0.104 0.116 -0.020 -0.199 -0.429 0.485 -0.216 -0.576 -0.342 0.748 0.490 -0.275 -0.719 0.216 0.360 -0.177 -0.488 0.162 -0.080 0.158 -0.617 0.364 -0.402 0.015 -0.436 0.579 0.218 -0.129 -0.380 0.207 0.161 0.011 -0.328 0.107 0.042 -0.309 0.065 0.160 -0.493 -0.079 -0.284 0.605 0.311 -0.606 -0.545 0.502 0.076 -0.226 -0.347 0.384 0.015 -0.220 -0.380 0.446 -0.267 -0.265 -0.237 0.573 0.231 -0.157 -0.542 0.313 -0.278 -0.283 -0.469 0.706 -0.353 0.044 -0.380 0.503 -0.666 0.059 -0.438 0.669 0.524 -0.452 -0.354 0.068 0.375 -0.317 -0.097 -0.052 0.050 -0.002 -0.408 0.278 -0.220 -0.452 0.113 0.411 0.242 -0.188 -0.204 0.100 0.332 -0.261 -0.044 -0.094 -0.055 0.034 -0.402 0.329 -0.326 -0.354 0.212 0.335 0.540 -0.592 -0.224 0.037 0.348 -0.313 -0.144 0.025 0.172 -0.288 -0.186 0.233 -0.102 -0.786 0.298 0.333 0.282 -0.199 -0.547 0.297 0.201 -0.184 -0.169 0.113 -0.606 -0.324 -0.765 0.968 -0.600 -0.609 -0.052 0.782 0.575 -0.493 -0.822 0.304 0.500 -0.338 -0.474 0.104 0.060 -0.049 -0.591 0.408 -0.317 -0.408 -0.432 0.768 0.372 -0.300 -0.623 0.315 0.259 -0.114 -0.295 0.089 0.130 -0.179 -0.348 0.306 -0.279 -0.187 -0.409 0.627 0.532 -0.593 -0.706 0.355 0.341 -0.422 -0.464 0.336 0.105 -0.199 -0.447 0.400 -0.242 -0.825 -0.066 0.709 0.279 -0.288 -0.743 0.454 0.173 -0.099 -0.403 0.242 -0.124 0.019 -0.511 0.451 -0.337 -0.353 -0.287 0.683 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.236 -0.187 0.020 -0.105 0.060 0.097 -0.332 0.129 0.266 0.625 -0.481 -0.891 1.243 -1.308 -0.147 -1.617 0.727 0.220 -0.862 -0.666 0.618 0.126 0.120 -1.805 1.998 -8.816 -8.816 -8.816 -8.816 -8.816 -8.816 1.998 -8.816 -8.816 1.998 -8.816 0.189 -0.734 0.570 -0.369 0.341 0.321 -0.723 -0.187 -0.349 0.036 0.328 -0.099 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.385 -0.059 0.151 -0.682 0.663 -0.288 -0.494 -0.172 -0.122 0.047 0.220 -0.180 0.243 -0.296 0.324 -0.413 0.547 -0.225 -0.630 0.053 -0.458 0.028 0.415 -0.122 -7.780 -7.780 -7.780 1.995 1.995 -7.780 -7.780 -7.780 1.995 -7.780 -7.780 -7.780 TAG WMM 9 6 4 0 0.000 0.352 -0.031 0.089 -0.555 0.524 -0.322 -0.434 0.030 -0.262 0.018 0.352 -0.190 0.135 -0.190 0.333 -0.385 0.647 -0.555 -0.277 -0.108 -0.233 -0.176 0.409 -0.095 -6.877 -6.877 -6.877 1.991 1.991 -6.877 -6.877 -6.877 -6.877 -6.877 1.991 -6.877 TGA WMM 9 6 4 0 0.000 0.298 -0.151 0.278 -0.604 0.443 -0.282 -0.252 -0.032 -0.138 -0.138 0.434 -0.267 0.434 -0.208 0.148 -0.566 0.975 -0.786 -0.566 -0.360 -0.151 0.055 0.159 -0.084 -6.852 -6.852 -6.852 1.991 -6.852 -6.852 1.991 -6.852 1.991 -6.852 -6.852 -6.852 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/ciona0000644000175000017500000013104611424066010014366 0ustar moellermoellerzoeHMM Ciona 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.917255 Inter Esngl 0.082745 Intron Eterm 0.157106 Intron Exon 0.842894 0.392339 0.370682 0.236979 0.562665 0.232495 0.204840 0.509398 0.288147 0.202455 0.554192 0.236946 0.208862 0.845706 0.154294 0.840756 0.159244 0.840513 0.159487 Einit 2 DEFINED 0 249 -9.529 -9.450 -9.374 -9.303 -9.234 -9.169 -9.107 -9.047 -8.990 -8.934 -8.881 -8.846 -8.811 -8.777 -8.744 -8.712 -8.680 -8.649 -8.619 -8.589 -8.560 -8.519 -8.480 -8.441 -8.403 -8.366 -8.330 -8.295 -8.261 -8.228 -8.195 -8.169 -8.143 -8.118 -8.093 -8.069 -8.045 -8.021 -7.998 -7.975 -7.952 -7.939 -7.925 -7.911 -7.898 -7.885 -7.872 -7.859 -7.846 -7.833 -7.821 -7.805 -7.790 -7.776 -7.761 -7.747 -7.732 -7.718 -7.704 -7.690 -7.676 -7.673 -7.669 -7.666 -7.662 -7.659 -7.655 -7.652 -7.648 -7.645 -7.641 -7.638 -7.634 -7.631 -7.627 -7.624 -7.621 -7.617 -7.614 -7.610 -7.607 -7.603 -7.599 -7.594 -7.590 -7.586 -7.582 -7.578 -7.574 -7.569 -7.565 -7.563 -7.560 -7.558 -7.556 -7.553 -7.551 -7.548 -7.546 -7.544 -7.541 -7.546 -7.551 -7.556 -7.561 -7.566 -7.572 -7.577 -7.582 -7.587 -7.592 -7.599 -7.606 -7.613 -7.620 -7.627 -7.634 -7.641 -7.649 -7.656 -7.663 -7.672 -7.681 -7.690 -7.699 -7.709 -7.718 -7.727 -7.737 -7.746 -7.755 -7.764 -7.772 -7.781 -7.790 -7.798 -7.807 -7.816 -7.825 -7.833 -7.842 -7.861 -7.880 -7.899 -7.918 -7.938 -7.958 -7.978 -7.999 -8.019 -8.041 -8.056 -8.071 -8.087 -8.103 -8.118 -8.135 -8.151 -8.167 -8.184 -8.201 -8.221 -8.242 -8.263 -8.285 -8.306 -8.328 -8.351 -8.373 -8.397 -8.420 -8.445 -8.471 -8.497 -8.524 -8.551 -8.578 -8.607 -8.635 -8.665 -8.695 -8.704 -8.713 -8.722 -8.731 -8.740 -8.750 -8.759 -8.769 -8.778 -8.788 -8.803 -8.819 -8.834 -8.850 -8.866 -8.882 -8.899 -8.915 -8.932 -8.949 -8.960 -8.970 -8.981 -8.991 -9.002 -9.013 -9.024 -9.035 -9.046 -9.057 -9.076 -9.094 -9.113 -9.132 -9.151 -9.170 -9.190 -9.210 -9.230 -9.251 -9.269 -9.288 -9.307 -9.326 -9.345 -9.365 -9.385 -9.405 -9.426 -9.447 -9.470 -9.493 -9.517 -9.541 -9.565 -9.590 -9.616 -9.641 -9.668 -9.695 -9.708 -9.721 -9.735 -9.749 -9.762 -9.776 -9.790 -9.805 -9.819 GEOMETRIC 250 -1 169 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.634 -10.530 -10.433 -10.342 -10.257 -10.176 -10.099 -10.027 -9.957 -9.891 -9.828 -9.770 -9.713 -9.659 -9.606 -9.556 -9.507 -9.460 -9.414 -9.370 -9.327 -9.300 -9.273 -9.247 -9.221 -9.196 -9.171 -9.147 -9.123 -9.100 -9.076 -9.048 -9.020 -8.993 -8.966 -8.939 -8.913 -8.888 -8.863 -8.838 -8.814 -8.798 -8.781 -8.765 -8.749 -8.733 -8.718 -8.702 -8.687 -8.672 -8.657 -8.637 -8.618 -8.598 -8.579 -8.561 -8.542 -8.524 -8.506 -8.488 -8.470 -8.446 -8.422 -8.398 -8.375 -8.352 -8.330 -8.308 -8.286 -8.265 -8.243 -8.232 -8.221 -8.209 -8.198 -8.187 -8.176 -8.165 -8.154 -8.143 -8.132 -8.114 -8.095 -8.077 -8.059 -8.041 -8.023 -8.006 -7.989 -7.972 -7.955 -7.946 -7.936 -7.927 -7.918 -7.908 -7.899 -7.890 -7.881 -7.872 -7.863 -7.859 -7.855 -7.852 -7.848 -7.844 -7.840 -7.836 -7.832 -7.828 -7.824 -7.815 -7.807 -7.798 -7.789 -7.781 -7.772 -7.764 -7.756 -7.747 -7.739 -7.741 -7.743 -7.745 -7.747 -7.749 -7.751 -7.753 -7.755 -7.757 -7.759 -7.758 -7.757 -7.756 -7.756 -7.755 -7.754 -7.753 -7.752 -7.751 -7.750 -7.755 -7.761 -7.767 -7.772 -7.778 -7.784 -7.790 -7.795 -7.801 -7.807 -7.816 -7.825 -7.834 -7.844 -7.853 -7.863 -7.872 -7.882 -7.891 -7.901 -7.911 -7.921 -7.931 -7.941 -7.952 -7.962 -7.973 -7.983 -7.994 -8.005 -8.013 -8.022 -8.031 -8.040 -8.049 -8.058 -8.068 -8.077 -8.086 -8.095 -8.105 -8.115 -8.125 -8.136 -8.146 -8.156 -8.166 -8.177 -8.187 -8.198 -8.212 -8.227 -8.241 -8.256 -8.271 -8.286 -8.301 -8.316 -8.331 -8.347 -8.360 -8.373 -8.385 -8.398 -8.412 -8.425 -8.438 -8.452 -8.465 -8.479 -8.501 -8.523 -8.545 -8.568 -8.591 -8.614 -8.638 -8.662 -8.687 -8.712 -8.732 -8.753 -8.773 -8.794 -8.815 -8.837 -8.859 -8.881 -8.904 -8.927 -8.946 -8.964 -8.984 -9.003 -9.023 -9.043 -9.063 -9.083 -9.104 -9.125 -9.147 -9.169 -9.192 -9.214 -9.238 -9.261 -9.285 -9.310 -9.334 GEOMETRIC 250 -1 211 Exon 2 DEFINED 0 249 -13.250 -13.040 -12.857 -12.695 -12.549 -12.417 -12.295 -12.183 -12.080 -11.983 -11.892 -11.739 -11.600 -11.474 -11.358 -11.250 -11.150 -11.056 -10.968 -10.886 -10.807 -10.686 -10.574 -10.470 -10.373 -10.282 -10.196 -10.116 -10.039 -9.967 -9.897 -9.814 -9.735 -9.661 -9.590 -9.522 -9.457 -9.396 -9.336 -9.279 -9.224 -9.154 -9.086 -9.022 -8.960 -8.901 -8.844 -8.790 -8.737 -8.686 -8.637 -8.579 -8.523 -8.469 -8.417 -8.366 -8.318 -8.271 -8.225 -8.181 -8.138 -8.099 -8.060 -8.022 -7.985 -7.949 -7.914 -7.880 -7.846 -7.813 -7.781 -7.747 -7.713 -7.681 -7.649 -7.617 -7.586 -7.556 -7.527 -7.498 -7.470 -7.443 -7.416 -7.390 -7.364 -7.339 -7.314 -7.290 -7.266 -7.242 -7.219 -7.201 -7.184 -7.167 -7.150 -7.133 -7.116 -7.100 -7.083 -7.067 -7.051 -7.043 -7.035 -7.027 -7.020 -7.012 -7.004 -6.996 -6.988 -6.981 -6.973 -6.970 -6.967 -6.964 -6.961 -6.959 -6.956 -6.953 -6.950 -6.947 -6.944 -6.951 -6.957 -6.963 -6.969 -6.975 -6.981 -6.988 -6.994 -7.000 -7.006 -7.020 -7.033 -7.046 -7.060 -7.073 -7.087 -7.101 -7.115 -7.129 -7.143 -7.157 -7.170 -7.184 -7.197 -7.211 -7.225 -7.239 -7.254 -7.268 -7.283 -7.302 -7.322 -7.342 -7.363 -7.383 -7.404 -7.426 -7.447 -7.469 -7.492 -7.514 -7.537 -7.560 -7.583 -7.607 -7.631 -7.655 -7.680 -7.706 -7.732 -7.755 -7.779 -7.803 -7.827 -7.852 -7.878 -7.903 -7.930 -7.956 -7.984 -8.012 -8.040 -8.069 -8.099 -8.129 -8.160 -8.191 -8.224 -8.257 -8.290 -8.324 -8.358 -8.393 -8.429 -8.465 -8.503 -8.542 -8.582 -8.623 -8.665 -8.697 -8.730 -8.764 -8.799 -8.834 -8.871 -8.908 -8.946 -8.986 -9.026 -9.064 -9.103 -9.143 -9.184 -9.226 -9.269 -9.314 -9.360 -9.408 -9.457 -9.498 -9.540 -9.582 -9.627 -9.672 -9.719 -9.768 -9.818 -9.870 -9.925 -9.964 -10.003 -10.045 -10.087 -10.131 -10.175 -10.222 -10.270 -10.319 -10.371 -10.411 -10.452 -10.495 -10.538 -10.583 -10.630 -10.678 -10.728 -10.779 GEOMETRIC 250 -1 133 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 443 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.511 -0.749 -1.120 0.604 0.486 -0.728 -1.189 0.639 0.492 -0.766 -1.223 0.658 0.520 -0.848 -1.354 0.696 0.570 -0.847 -1.465 0.676 0.625 -0.885 -1.587 0.663 0.653 -0.821 -1.588 0.613 0.649 -0.734 -1.621 0.591 0.650 -0.684 -1.602 0.565 0.608 -0.602 -1.471 0.543 0.470 -0.523 -1.366 0.614 0.371 -0.517 -1.368 0.697 0.305 -0.571 -1.300 0.754 0.226 -0.575 -1.320 0.815 0.128 -0.600 -1.407 0.904 0.055 -0.678 -1.518 0.991 -0.152 -0.770 -1.705 1.143 -0.141 -0.770 -1.573 1.119 -0.053 -0.683 -1.639 1.066 -0.018 -0.424 -1.727 0.976 -0.111 -0.511 -1.498 1.014 -0.373 -0.394 -2.137 1.164 -0.758 -0.188 -2.517 1.238 0.592 -0.446 -0.844 0.268 -2.083 1.422 -4.729 0.068 2.001 -13.117 -13.117 -13.117 -13.117 -13.117 2.001 -13.117 0.358 -1.137 0.790 -0.898 -0.006 -0.613 -0.737 0.810 0.320 -0.475 -0.236 0.245 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.289 -0.171 -0.143 -0.023 0.533 -0.493 -1.071 0.451 0.409 -0.381 -0.910 0.457 0.013 -0.508 0.224 0.164 0.903 -0.928 -0.458 -0.190 0.859 -1.014 -0.975 0.242 0.828 -0.856 -0.990 0.225 -0.294 -0.722 -0.194 0.769 0.700 -0.772 -0.615 0.186 0.579 -0.914 -0.963 0.549 0.698 -0.556 -0.678 0.102 -0.286 -0.782 -0.264 0.820 . 0.728 . 1.229 0.455 -0.568 -0.706 0.424 . 0.169 0.407 0.632 0.077 -0.257 -0.156 0.276 0.375 0.180 -0.391 -0.308 0.625 -0.298 -0.798 0.096 0.281 0.186 -0.993 0.195 -0.617 -0.142 0.333 0.242 0.640 -0.531 -0.117 -0.273 0.698 -0.433 -0.578 -0.048 0.703 -0.560 -0.773 0.149 -0.730 -0.105 -0.179 0.664 0.416 -0.074 -0.438 -0.033 0.468 -0.437 -0.808 0.386 0.341 -0.352 -0.269 0.164 -0.434 0.190 -0.077 0.228 . 1.163 . 0.816 0.370 -0.285 -0.392 0.169 . 0.307 0.495 0.437 -0.511 -0.114 -0.028 0.479 0.748 -0.759 -0.025 -0.420 0.666 -0.613 -0.348 -0.038 0.524 -0.270 -0.262 -0.154 -0.310 -0.518 0.426 0.203 0.851 -1.209 -0.020 -0.362 0.852 -0.950 -0.585 0.016 0.778 -0.873 -0.771 0.206 -0.426 -0.655 0.117 0.619 0.746 -0.992 -0.211 -0.065 0.638 -0.918 -0.343 0.172 0.560 -0.640 -0.357 0.141 -0.492 -0.681 0.099 0.673 . 0.656 . 1.278 0.593 -0.671 -0.259 0.040 . -0.139 0.756 0.489 -0.223 -0.508 -0.008 0.532 0.724 -0.421 -0.748 0.009 0.740 -0.743 -0.818 0.221 0.519 -0.187 -1.031 0.263 -0.240 -0.678 -0.060 0.650 0.666 -0.745 -0.364 0.056 0.800 -0.915 -0.949 0.276 0.479 -0.718 -0.607 0.424 -0.383 -0.598 -0.413 0.865 0.553 -0.467 -0.657 0.233 0.576 -0.903 -0.988 0.556 0.528 -0.680 -0.538 0.317 -0.351 -0.663 -0.104 0.726 . 0.810 . 1.168 0.616 -0.500 -0.830 0.260 . 0.087 0.450 0.652 0.093 -0.258 -0.143 0.253 0.334 -0.086 -0.093 -0.218 0.593 -0.371 -1.055 0.307 0.177 -0.111 -0.618 0.370 -0.110 -0.357 0.293 0.094 0.850 -0.856 -0.107 -0.481 0.815 -0.665 -0.932 0.118 0.676 -0.606 -0.799 0.228 -0.528 -0.580 0.087 0.656 0.504 -0.747 -0.306 0.235 0.593 -0.797 -0.775 0.413 0.604 -0.686 -0.314 0.076 -0.306 -0.926 0.213 0.590 . 0.980 . 1.020 0.612 -0.575 -0.761 0.276 . 0.165 0.628 0.415 -0.048 -0.346 0.019 0.302 0.149 0.252 -0.142 -0.333 0.350 0.094 -0.923 0.177 -0.149 0.250 -0.743 0.391 -0.603 -0.104 0.399 0.128 0.484 -0.268 -0.172 -0.179 0.683 -0.637 -0.748 0.209 0.281 -0.341 -0.642 0.438 -0.654 -0.091 -0.074 0.562 0.184 -0.160 -0.292 0.205 0.220 -0.256 -1.032 0.593 0.134 -0.274 -0.417 0.408 -0.594 -0.241 0.317 0.317 . 1.205 . 0.762 0.373 0.003 -0.639 0.085 . 0.484 0.424 0.333 -0.456 -0.010 0.122 0.250 0.515 -0.099 -0.294 -0.283 0.400 -0.111 -0.338 -0.054 0.082 -0.095 -0.278 0.239 -0.343 -0.208 0.338 0.114 0.702 -0.654 -0.345 -0.073 0.702 -0.498 -0.577 -0.008 0.410 -0.414 -0.419 0.229 -0.498 -0.284 -0.010 0.564 0.384 -0.422 -0.263 0.157 0.489 -0.405 -0.424 0.132 0.415 -0.546 -0.265 0.202 -0.585 -0.551 0.272 0.530 . 0.924 . 1.073 0.868 -0.759 -0.423 -0.255 . -0.079 0.559 0.660 -0.340 -0.280 -0.026 0.490 0.620 -0.321 -0.451 -0.103 0.712 -0.585 -1.062 0.282 0.179 -0.094 -0.813 0.446 -0.281 -0.593 0.144 0.495 0.617 -0.590 -0.347 0.023 0.661 -0.713 -1.058 0.410 0.213 -0.540 -0.890 0.690 -0.570 -0.260 -0.253 0.724 0.457 -0.569 -0.455 0.291 0.421 -0.612 -1.262 0.669 0.286 -0.631 -0.649 0.582 -0.182 -0.872 0.165 0.537 . 0.990 . 1.010 0.594 -0.477 -0.876 0.296 . 0.187 0.160 0.803 0.079 -0.273 0.157 0.001 0.527 -0.163 -0.307 -0.223 0.580 -0.437 -0.843 0.274 0.576 -0.368 -0.725 0.175 -0.188 -0.355 0.289 0.162 0.774 -0.773 -0.287 -0.176 0.745 -0.871 -0.871 0.298 0.823 -0.888 -0.934 0.223 -0.860 -0.373 -0.363 0.926 0.446 -0.555 -0.547 0.348 0.606 -0.919 -0.830 0.471 0.708 -0.978 -0.464 0.182 -0.360 -0.739 -0.049 0.727 . 0.851 . 1.135 0.554 -0.480 -0.597 0.206 . 0.173 0.410 0.627 -0.122 -0.288 -0.004 0.338 0.321 0.177 -0.248 -0.363 0.516 -0.254 -0.570 0.082 0.206 0.046 -0.952 0.376 -0.724 -0.109 0.342 0.262 0.443 -0.222 -0.195 -0.138 0.655 -0.439 -0.607 0.044 0.630 -0.370 -0.778 0.131 -0.894 0.048 -0.499 0.783 0.200 0.066 -0.363 0.039 0.267 -0.320 -0.694 0.462 0.219 -0.330 -0.139 0.179 -0.757 -0.147 0.207 0.434 . 1.294 . 0.630 0.468 -0.171 -0.544 0.061 . 0.287 0.379 0.566 -0.384 -0.043 0.202 0.154 0.632 -0.482 -0.111 -0.307 0.697 -0.432 -0.404 -0.180 0.339 -0.356 -0.064 -0.004 -0.349 -0.455 0.333 0.294 0.664 -0.897 0.015 -0.203 0.773 -0.893 -0.246 -0.137 0.633 -0.565 -0.637 0.176 -0.686 -0.529 0.121 0.676 0.490 -0.626 -0.170 0.083 0.667 -1.081 -0.190 0.089 0.427 -0.856 -0.386 0.420 -0.689 -0.831 0.533 0.455 . 0.762 . 1.205 0.706 -0.741 -0.054 -0.309 . -0.302 0.783 0.554 -0.444 -0.408 0.312 0.344 0.710 -0.117 -0.876 -0.156 0.757 -0.526 -0.761 0.036 0.318 0.033 -1.033 0.311 -0.326 -0.499 0.044 0.550 0.543 -0.344 -0.370 -0.027 0.674 -0.718 -0.788 0.284 0.358 -0.526 -0.825 0.546 -0.719 -0.159 -0.585 0.872 0.492 -0.200 -0.710 0.153 0.472 -0.721 -0.774 0.508 0.433 -0.763 -0.451 0.411 -0.376 -0.699 0.102 0.624 . 1.066 . 0.931 0.644 -0.543 -0.577 0.112 . 0.069 0.520 0.602 0.099 -0.325 0.172 0.006 0.520 -0.154 -0.181 -0.348 0.572 -0.557 -0.899 0.376 0.429 -0.176 -0.762 0.238 -0.209 -0.561 0.399 0.187 0.859 -0.995 -0.123 -0.384 0.749 -0.718 -0.806 0.189 0.742 -0.873 -0.963 0.343 -0.488 -0.706 -0.041 0.767 0.659 -0.636 -0.584 0.151 0.563 -0.978 -0.743 0.504 0.640 -0.607 -0.520 0.122 -0.324 -1.045 0.066 0.739 . 0.921 . 1.075 0.508 -0.585 -0.661 0.355 . 0.032 0.506 0.640 -0.164 -0.329 -0.216 0.537 0.243 0.242 -0.306 -0.277 0.498 -0.211 -0.890 0.244 -0.246 0.213 -1.084 0.609 -0.433 -0.093 0.219 0.212 0.500 -0.368 -0.172 -0.114 0.760 -0.656 -0.507 -0.046 0.441 -0.558 -0.560 0.361 -0.686 0.153 -0.301 0.541 0.238 -0.038 -0.603 0.249 0.302 -0.406 -0.886 0.558 0.235 -0.362 -0.315 0.311 -0.388 -0.227 0.064 0.419 . 1.205 . 0.761 0.478 -0.189 -0.611 0.104 . 0.367 0.284 0.578 -0.589 0.256 -0.093 0.268 0.585 -0.323 -0.109 -0.371 0.491 -0.523 -0.040 -0.111 0.324 -0.233 -0.252 0.082 -0.484 -0.339 0.477 0.141 0.656 -1.039 0.074 -0.176 0.718 -0.672 -0.498 0.027 0.493 -0.562 -0.453 0.245 -0.620 -0.604 0.168 0.649 0.533 -0.628 -0.338 0.157 0.468 -0.818 -0.469 0.408 0.510 -0.634 -0.362 0.206 -0.612 -0.670 0.299 0.572 . 0.878 . 1.113 0.531 -0.577 -0.286 0.090 . -0.036 0.547 0.644 -0.501 -0.383 0.186 0.474 0.706 -0.170 -0.690 -0.217 0.517 -0.421 -1.001 0.403 0.242 -0.128 -1.054 0.507 -0.175 -0.514 -0.081 0.555 0.766 -0.757 -0.560 0.042 0.684 -0.598 -1.147 0.357 0.532 -0.986 -0.885 0.592 -0.279 -0.407 -0.338 0.705 0.593 -0.536 -0.751 0.273 0.310 -0.572 -1.104 0.698 0.457 -0.853 -0.703 0.545 -0.306 -0.842 0.123 0.626 . 0.858 . 1.129 0.577 -0.392 -0.935 0.291 . 0.187 0.169 0.797 0.261 -0.130 -0.050 -0.117 frame2 LUT 5 4 4 0 0.000 0.005 -0.052 0.368 -0.431 0.603 -0.400 -0.179 -0.253 0.570 -0.458 -0.209 -0.117 0.081 -0.488 0.622 -0.535 0.516 -0.461 0.033 -0.287 0.877 -0.543 -0.233 -0.675 0.479 -0.541 0.027 -0.153 -0.289 -0.658 0.626 0.006 0.600 -0.645 0.028 -0.277 0.858 -0.795 -0.156 -0.486 0.546 -0.573 -0.072 -0.125 -0.323 -0.508 0.483 0.138 0.355 -0.293 -0.375 0.181 0.657 -0.391 -0.038 -0.543 0.369 -0.414 0.189 -0.291 -0.118 -0.189 0.549 -0.437 0.310 -0.045 0.269 -0.772 0.670 -0.239 -0.073 -0.711 0.599 -0.122 -0.325 -0.380 -0.039 -0.292 0.283 -0.010 0.544 -0.318 0.184 -0.726 0.537 0.187 -0.084 -1.101 0.489 -0.455 0.082 -0.305 -0.472 -0.306 0.713 -0.268 0.554 -0.136 0.011 -0.704 0.600 -0.321 -0.172 -0.329 0.503 -0.377 0.099 -0.430 -0.092 -0.132 0.398 -0.266 0.463 0.224 -0.314 -0.622 0.666 -0.508 0.171 -0.774 0.282 -0.174 0.267 -0.526 -0.228 -0.267 0.670 -0.466 0.459 -0.718 0.498 -0.724 0.636 -0.431 0.031 -0.549 0.478 -0.581 0.242 -0.403 -0.181 -0.755 0.702 -0.155 0.602 -0.748 0.258 -0.533 0.919 -0.714 0.040 -1.084 0.412 -0.550 0.103 -0.131 -0.417 -0.508 0.713 -0.138 0.649 -0.850 0.212 -0.476 0.637 -0.512 -0.024 -0.397 0.294 -0.876 0.470 -0.243 -0.531 -0.418 0.437 0.270 0.613 -0.663 0.098 -0.378 0.682 -0.426 0.066 -0.725 0.495 -0.985 0.360 -0.317 -0.237 -0.387 0.584 -0.173 . . . . 0.705 -0.495 0.030 -0.647 . . . . -0.232 -0.551 0.450 0.137 0.500 -0.454 0.072 -0.313 0.728 -0.545 -0.018 -0.577 0.167 -0.561 0.408 -0.197 -0.370 -0.477 0.666 -0.120 . . . . 0.679 -0.794 0.131 -0.460 0.526 -0.717 0.224 -0.351 -0.145 -0.558 0.528 -0.037 0.442 -0.227 -0.199 -0.126 0.496 -0.308 -0.152 -0.181 0.170 -0.501 0.434 -0.290 -0.133 -0.346 0.568 -0.287 0.060 -0.031 0.416 -0.634 0.575 -0.160 -0.276 -0.340 0.435 -0.302 -0.220 -0.032 -0.135 -0.354 0.730 -0.626 0.447 -0.287 0.166 -0.524 0.771 -0.310 -0.141 -0.786 0.340 -0.318 0.069 -0.179 -0.535 -0.604 0.841 -0.218 0.418 -0.508 0.329 -0.506 0.812 -0.796 0.006 -0.590 0.544 -0.738 0.143 -0.254 -0.251 -0.573 0.684 -0.183 0.227 -0.105 -0.072 -0.076 0.771 -0.587 0.023 -0.708 0.256 -0.372 0.322 -0.353 -0.178 -0.280 0.701 -0.583 0.036 0.189 0.273 -0.675 0.539 0.037 -0.165 -0.669 0.199 0.022 -0.088 -0.159 -0.276 -0.202 0.625 -0.390 0.326 -0.007 0.010 -0.425 0.578 -0.137 0.028 -0.792 0.419 -0.381 0.034 -0.198 -0.310 -0.296 0.761 -0.547 0.337 -0.090 0.086 -0.443 0.632 -0.254 -0.313 -0.309 0.444 -0.406 0.108 -0.310 -0.146 -0.279 0.609 -0.421 0.395 0.333 -0.438 -0.541 0.602 -0.247 0.058 -0.740 -0.038 0.029 0.395 -0.534 -0.172 -0.237 0.766 -0.829 0.254 -0.281 0.382 -0.553 0.448 -0.139 0.012 -0.476 0.317 -0.462 0.186 -0.167 -0.105 -0.464 0.573 -0.222 0.504 -0.344 -0.061 -0.259 0.738 -0.370 0.009 -0.858 0.402 -0.408 -0.191 0.068 -0.363 -0.436 0.700 -0.219 0.475 -0.437 0.189 -0.452 0.487 -0.338 0.109 -0.456 0.477 -0.800 0.278 -0.283 -0.238 -0.487 0.521 0.005 0.351 -0.139 -0.139 -0.139 1.059 -0.782 -0.193 -1.120 0.223 -0.560 0.231 -0.028 -0.220 -0.258 0.549 -0.248 . . . . 0.687 -0.168 -0.401 -0.428 . . . . -0.275 -0.443 0.695 -0.289 0.438 -0.180 -0.078 -0.294 0.669 -0.235 -0.167 -0.579 -0.062 -0.234 0.126 0.138 -0.289 -0.469 0.765 -0.398 . . . . 0.631 -0.373 -0.273 -0.232 0.345 -0.550 0.208 -0.165 -0.044 -0.552 0.635 -0.332 0.396 0.025 -0.320 -0.208 0.516 -0.106 -0.389 -0.188 0.034 -0.331 0.364 -0.161 0.027 -0.442 0.660 -0.587 0.349 -0.119 0.185 -0.581 0.596 -0.326 -0.008 -0.524 0.696 -0.442 -0.270 -0.296 -0.058 -0.478 0.636 -0.382 0.466 -0.485 0.101 -0.265 0.777 -0.611 -0.032 -0.615 0.217 -0.656 -0.079 0.330 -0.698 -0.424 0.529 0.257 0.542 -0.538 0.224 -0.540 0.796 -0.876 0.126 -0.673 0.604 -0.803 -0.142 0.000 -0.323 -0.416 0.537 0.001 0.373 -0.321 -0.214 0.060 0.703 -0.479 0.147 -0.869 0.284 -0.448 0.301 -0.292 -0.332 -0.324 0.700 -0.354 0.193 -0.062 0.370 -0.721 0.585 -0.293 0.125 -0.751 0.429 -0.157 -0.275 -0.104 -0.126 -0.322 0.417 -0.077 0.315 -0.127 0.177 -0.495 0.502 -0.003 0.087 -0.933 0.323 -0.445 0.102 -0.087 -0.443 -0.263 0.503 0.019 0.277 0.072 0.110 -0.604 0.556 -0.232 -0.039 -0.505 0.411 -0.278 0.064 -0.321 -0.271 -0.234 0.558 -0.237 0.347 0.295 -0.282 -0.559 0.582 -0.590 0.232 -0.590 0.129 -0.158 0.312 -0.379 -0.101 -0.359 0.707 -0.608 0.447 -0.563 0.388 -0.619 0.596 -0.427 0.203 -0.753 0.418 -0.438 0.228 -0.405 -0.110 -0.552 0.558 -0.122 0.601 -0.673 0.271 -0.622 0.684 -0.746 0.371 -0.990 0.307 -0.376 0.127 -0.151 -0.652 -0.456 0.698 0.017 0.694 -0.782 0.222 -0.658 0.596 -0.712 0.237 -0.515 0.432 -0.718 0.171 -0.124 -0.436 -0.551 0.586 0.108 0.529 -0.413 -0.033 -0.270 0.640 -0.498 0.339 -1.095 0.218 -0.757 0.477 -0.229 -0.415 -0.332 0.684 -0.236 . . . . 0.769 -0.417 0.024 -0.916 . . . . -0.225 -0.574 0.484 0.103 0.293 -0.111 -0.053 -0.177 0.652 -0.538 0.121 -0.616 0.008 -0.299 0.182 0.066 -0.388 -0.351 0.508 0.042 . . . . 0.610 -0.497 0.109 -0.541 0.401 -0.525 0.127 -0.164 -0.153 -0.422 0.509 -0.103 0.496 -0.077 -0.326 -0.245 0.514 -0.316 0.065 -0.469 0.075 -0.411 0.440 -0.254 -0.029 -0.356 0.536 -0.342 0.305 -0.243 0.328 -0.591 0.455 -0.322 -0.158 -0.100 0.626 -0.534 -0.273 -0.091 -0.056 -0.633 0.679 -0.336 0.546 -0.581 0.077 -0.293 0.789 -0.550 -0.161 -0.526 0.417 -0.782 -0.164 0.252 -0.445 -0.760 0.658 0.135 0.655 -0.712 0.079 -0.398 0.807 -1.017 0.012 -0.418 0.673 -0.850 0.017 -0.253 -0.329 -0.758 0.568 0.177 0.419 -0.289 -0.394 0.116 0.635 -0.553 0.022 -0.415 0.391 -0.571 0.172 -0.170 -0.197 -0.323 0.507 -0.141 0.310 0.022 0.076 -0.534 0.441 -0.103 -0.223 -0.227 0.318 -0.182 -0.430 0.176 -0.043 -0.235 0.345 -0.137 0.468 -0.237 -0.051 -0.317 0.600 -0.215 0.036 -0.743 0.334 -0.497 0.093 -0.052 -0.310 -0.268 0.622 -0.278 0.516 -0.071 -0.215 -0.402 0.454 -0.247 -0.320 -0.020 0.267 -0.209 -0.001 -0.101 -0.034 -0.221 0.364 -0.187 0.324 0.358 -0.703 -0.231 0.578 -0.568 -0.050 -0.206 -0.081 0.088 0.034 -0.047 -0.217 -0.009 0.561 -0.577 0.441 -0.549 0.412 -0.672 0.438 -0.374 0.243 -0.534 0.472 -0.552 0.161 -0.299 -0.219 -0.587 0.752 -0.339 0.489 -0.603 0.167 -0.295 0.751 -0.437 -0.038 -0.725 0.312 -0.631 0.068 0.090 -0.440 -0.514 0.752 -0.187 0.671 -0.777 0.128 -0.453 0.533 -0.463 -0.081 -0.181 0.512 -0.996 0.295 -0.242 -0.226 -0.704 0.588 0.039 0.451 -0.298 -0.107 -0.167 0.819 -0.491 -0.195 -0.621 0.266 -0.765 0.271 0.003 -0.253 -0.400 0.620 -0.207 . . . . 0.590 -0.377 -0.163 -0.266 . . . . -0.060 -0.495 0.451 -0.054 0.640 -0.450 -0.276 -0.179 0.688 -0.266 -0.229 -0.507 0.198 -0.531 0.057 0.165 -0.147 -0.465 0.606 -0.235 . . . . 0.516 -0.316 -0.274 -0.090 0.471 -0.773 0.055 -0.014 -0.077 -0.494 0.453 -0.039 0.587 -0.189 -0.520 -0.115 0.425 -0.144 -0.431 0.015 0.158 -0.341 0.135 -0.005 0.213 -0.283 0.477 -0.673 frame2 LUT 5 4 4 0 0.000 0.481 -0.156 -0.499 -0.001 0.377 -0.079 -0.760 0.220 0.745 -0.290 -0.792 -0.108 -0.217 0.296 -0.353 0.174 0.650 -0.362 -0.534 -0.057 0.620 0.089 -1.065 -0.118 0.724 -0.458 -0.272 -0.337 -0.665 -0.051 -0.417 0.727 0.995 -0.969 -0.898 -0.060 0.676 -0.541 -0.539 0.038 1.026 -0.683 -0.675 -0.487 -1.006 -0.096 -1.004 1.048 0.704 -0.564 -1.342 0.378 0.347 -0.007 -0.725 0.174 0.655 -0.501 -0.227 -0.211 -0.504 0.178 -0.761 0.654 0.400 0.083 -0.388 -0.222 0.432 0.304 -1.094 -0.078 0.592 -0.033 -0.729 -0.134 -1.003 0.320 -0.399 0.580 0.650 -0.181 -0.795 -0.041 0.357 0.592 -1.309 -0.306 0.758 -0.659 -0.282 -0.229 -0.789 0.438 -0.605 0.494 0.574 -0.365 -0.479 0.025 0.567 -0.024 -1.322 0.183 0.775 -0.467 -0.542 -0.186 -0.964 0.474 -0.740 0.585 0.569 0.023 -1.289 0.125 0.324 0.198 -0.809 0.044 0.437 -0.292 -0.120 -0.136 -0.770 0.168 -0.426 0.629 0.647 -0.770 -0.042 -0.189 0.534 -0.174 -0.671 0.053 0.679 -0.317 -0.368 -0.285 -0.519 0.045 -0.335 0.563 0.677 -0.496 -0.279 -0.205 0.839 -0.034 -1.048 -0.413 0.760 -0.468 -0.374 -0.302 -0.631 0.241 -0.654 0.620 0.895 -1.075 -0.506 -0.057 0.632 -0.255 -0.667 -0.026 0.826 -0.810 -0.376 -0.173 -1.127 -0.129 -0.885 1.061 0.646 -0.659 -0.491 0.125 0.420 -0.035 -0.384 -0.120 0.710 -0.749 -0.031 -0.338 -0.608 0.009 -0.821 0.825 0.640 -0.227 -0.660 -0.067 0.546 0.115 -0.841 -0.153 0.651 -0.072 -0.880 -0.097 -0.845 0.160 -0.722 0.782 0.588 -0.181 -0.748 0.027 0.430 -0.008 -0.631 0.018 0.403 -0.226 -0.190 -0.080 -0.566 0.018 -0.524 0.693 0.675 -0.365 -0.650 -0.015 0.613 -0.177 -1.003 0.120 0.738 -0.273 -0.565 -0.271 -0.665 -0.034 -0.630 0.805 0.663 -0.364 -1.346 0.317 0.322 -0.042 -0.576 0.148 0.647 -0.372 -0.329 -0.209 -0.617 0.199 -0.521 0.588 0.444 -0.127 -0.429 -0.028 0.582 -0.165 -1.053 0.175 0.580 -0.045 -0.671 -0.140 -0.315 0.230 -0.228 0.226 0.526 -0.210 -0.380 -0.110 0.678 0.169 -1.074 -0.321 0.670 -0.369 -0.449 -0.148 -0.831 -0.117 -0.102 0.663 0.892 -1.097 -0.619 0.037 0.757 -0.707 -0.555 0.023 1.040 -0.887 -0.642 -0.391 -0.908 -0.365 -0.512 0.992 0.626 -0.594 -0.717 0.245 0.372 -0.219 -0.628 0.262 0.582 -0.511 -0.146 -0.157 -0.434 0.019 -0.580 0.658 0.428 0.017 -0.350 -0.221 0.337 0.509 -1.000 -0.297 0.638 -0.148 -0.579 -0.199 -0.716 0.367 -0.501 0.480 0.631 -0.097 -0.911 -0.023 0.432 0.588 -1.247 -0.462 0.779 -0.503 -0.361 -0.322 -0.495 0.395 -0.996 0.559 0.591 -0.435 -0.574 0.115 0.305 0.287 -1.208 0.153 0.885 -0.862 -0.501 -0.158 -0.524 -0.160 -0.517 0.775 0.646 -0.028 -1.330 0.079 0.222 0.425 -0.823 -0.111 0.490 -0.370 -0.080 -0.191 -0.411 0.425 -0.797 0.411 0.471 -0.271 -0.232 -0.099 0.421 0.094 -0.628 -0.079 0.551 -0.073 -0.500 -0.188 -0.618 0.150 -0.350 0.540 0.625 -0.430 -0.399 -0.064 0.640 -0.292 -0.281 -0.319 0.775 -0.535 -0.440 -0.215 -0.692 0.152 -0.468 0.629 0.891 -0.835 -0.595 -0.117 0.675 0.058 -0.570 -0.538 0.991 -0.705 -0.584 -0.449 -0.864 -0.187 -0.826 1.006 0.723 -0.553 -0.501 -0.057 0.529 -0.570 0.104 -0.306 0.671 -0.577 -0.140 -0.268 -0.442 0.067 -0.582 0.630 0.612 -0.203 -0.371 -0.270 0.607 0.008 -0.692 -0.230 0.667 0.052 -0.845 -0.289 -0.905 0.354 -0.147 0.361 0.338 0.063 -0.720 0.117 0.345 0.034 -0.551 0.033 0.323 0.006 -0.196 -0.198 -0.689 0.364 -0.648 0.540 0.645 -0.476 -0.595 0.077 0.537 -0.309 -1.109 0.354 0.847 -0.507 -0.848 -0.086 -0.598 -0.232 -0.425 0.801 0.560 -0.148 -1.299 0.284 0.336 -0.084 -0.605 0.185 0.425 -0.116 -0.131 -0.283 -0.407 0.303 -0.547 0.409 0.645 -0.327 -0.582 -0.042 0.525 -0.207 -0.855 0.191 0.882 -0.270 -0.840 -0.378 -0.249 0.023 -0.231 0.368 0.499 -0.351 -0.547 0.161 0.548 0.054 -0.912 -0.046 0.688 -0.681 -0.612 0.151 -0.937 -0.099 -0.484 0.871 0.839 -0.979 -0.622 0.077 0.666 -0.665 -0.613 0.175 1.034 -0.762 -0.853 -0.307 -1.067 -0.318 -0.911 1.130 0.665 -0.603 -1.074 0.357 0.305 -0.121 -0.518 0.197 0.785 -0.576 -0.403 -0.235 -0.431 -0.015 -0.557 0.668 0.476 -0.222 -0.310 -0.082 0.476 0.059 -0.932 0.061 0.482 0.172 -0.831 -0.129 -0.969 0.242 -0.614 0.725 0.442 -0.210 -0.930 0.324 0.446 0.316 -1.276 -0.030 0.647 -0.280 -0.468 -0.172 -0.782 0.348 -0.900 0.687 0.502 -0.662 -0.432 0.276 0.430 -0.369 -1.060 0.484 0.632 -0.175 -0.501 -0.220 -0.933 -0.302 -0.531 0.980 0.479 -0.007 -1.358 0.288 0.341 -0.101 -0.662 0.225 0.330 -0.081 -0.300 -0.021 -0.479 0.151 -0.547 0.573 0.560 -0.433 -0.317 -0.025 0.542 0.097 -1.018 -0.028 0.600 -0.201 -0.290 -0.328 -0.431 -0.017 -0.700 0.726 0.662 -0.606 -0.364 -0.024 0.884 -0.376 -0.889 -0.244 0.626 -0.619 -0.107 -0.190 -0.598 -0.039 -0.406 0.688 0.783 -0.644 -0.653 0.004 0.701 -0.109 -0.897 -0.136 0.574 -0.572 -0.271 0.014 -0.790 -0.307 -0.768 1.019 0.461 -0.509 -0.414 0.226 0.450 -0.334 -0.224 -0.022 0.362 -0.629 0.166 -0.080 -0.477 0.006 -0.504 0.652 0.698 -0.145 -0.728 -0.201 0.627 0.112 -0.852 -0.285 0.602 0.151 -0.984 -0.209 -0.775 0.204 -0.456 0.618 0.262 0.126 -0.864 0.214 0.346 0.067 -0.779 0.136 0.399 -0.363 -0.242 0.081 -0.660 0.208 -0.900 0.745 0.648 -0.352 -0.825 0.118 0.468 -0.280 -0.988 0.366 0.745 -0.338 -0.928 0.010 -0.949 -0.260 -0.572 0.981 0.511 -0.141 -1.270 0.326 0.332 -0.134 -0.394 0.096 0.475 -0.338 -0.148 -0.126 -0.504 0.135 -0.382 0.515 . . . . . . . . . . . . . . . . 0.523 -0.383 -0.328 -0.001 0.647 0.021 -1.084 -0.078 0.648 -0.334 -0.451 -0.140 -0.654 -0.230 -0.364 0.795 . . . . . . . . . . . . . . . . 0.674 -0.509 -1.045 0.283 0.343 -0.179 -0.618 0.259 0.639 -0.447 -0.219 -0.234 -0.387 -0.080 -0.759 0.764 0.487 -0.081 -0.309 -0.241 0.372 0.218 -0.929 0.025 0.509 0.020 -0.707 -0.074 -0.999 0.554 -0.478 0.394 0.518 -0.181 -0.671 0.082 0.466 0.234 -0.910 -0.135 0.729 -0.481 -0.301 -0.296 -0.659 0.609 -0.858 0.366 0.708 -0.461 -0.589 -0.036 0.340 -0.007 -1.004 0.311 0.805 -0.475 -0.640 -0.165 -0.877 0.049 -0.521 0.786 0.427 -0.060 -1.123 0.307 0.252 0.139 -0.642 0.093 0.407 -0.190 -0.255 -0.059 -0.844 0.599 -0.747 0.414 . . . . . . . . . . . . . . . . 0.595 -0.450 -0.447 0.034 0.701 0.110 -1.099 -0.272 0.682 -0.365 -0.414 -0.204 -0.737 0.044 -0.211 0.590 0.670 -0.632 -0.353 -0.029 0.607 -0.288 -0.927 0.179 0.682 -0.513 -0.279 -0.200 -0.738 -0.046 -0.461 0.770 0.599 -0.371 -0.684 0.124 0.372 0.062 -0.568 -0.018 0.563 -0.606 -0.038 -0.165 -0.781 -0.012 -0.459 0.765 0.897 -0.560 -0.591 -0.329 0.500 -0.064 -0.702 0.020 0.797 -0.196 -0.893 -0.234 -0.809 0.381 -0.465 0.488 0.498 -0.158 -0.663 0.084 0.411 -0.241 -0.604 0.221 0.442 -0.307 -0.227 -0.031 -0.542 -0.065 -0.322 0.639 0.837 -0.709 -0.791 0.033 0.350 -0.249 -1.129 0.513 0.849 -0.556 -0.905 -0.023 -0.751 -0.165 -0.702 0.926 0.675 -0.372 -1.210 0.261 0.359 -0.142 -0.762 0.289 0.583 -0.413 -0.279 -0.109 -0.336 0.290 -0.662 0.436 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.617 0.294 -0.653 -0.726 1.379 -1.218 -1.424 -0.747 -0.707 -2.529 1.491 -1.308 -13.118 -13.118 2.000 -13.118 -13.118 -13.118 -13.118 2.000 1.375 -3.387 -0.303 -0.999 1.334 -1.974 -1.089 -0.407 -0.464 -2.263 1.328 -0.848 -0.164 -1.487 -1.284 1.226 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.534 -0.295 -0.787 0.211 0.747 -0.657 -0.734 0.120 0.214 -0.476 -0.591 0.543 0.533 -0.907 -0.311 0.280 0.567 -0.439 -0.500 0.102 0.639 -0.412 -0.613 0.053 0.362 -0.467 -0.500 0.361 -0.016 -0.847 -0.127 0.622 0.675 -0.606 -0.681 0.167 0.619 -0.754 -0.455 0.191 0.085 -0.450 -0.585 0.623 0.059 -0.972 -0.367 0.743 0.463 -0.606 -0.986 0.546 0.550 -0.620 -0.508 0.241 0.056 -0.457 -0.523 0.619 0.192 -0.826 -0.409 0.623 0.597 -0.272 -0.747 0.088 0.557 -0.135 -0.566 -0.085 0.194 -0.285 -0.736 0.521 0.269 -0.904 -0.361 0.567 0.518 -0.285 -0.490 0.050 0.570 -0.074 -0.794 -0.016 0.132 -0.238 -0.602 0.483 0.047 -0.506 -0.223 0.491 0.429 -0.152 -0.410 0.001 0.395 -0.331 -0.374 0.162 -0.097 -0.362 -0.370 0.598 0.074 -0.220 -0.343 0.380 0.410 -0.276 -1.016 0.434 0.279 -0.411 -0.314 0.298 -0.184 -0.264 -0.705 0.743 -0.052 -0.763 -0.352 0.733 0.670 -0.597 -0.582 0.111 0.710 -0.496 -0.466 -0.102 0.382 -0.398 -0.493 0.296 0.270 -1.027 -0.125 0.471 0.483 -0.534 -0.200 0.059 0.683 -0.652 -0.606 0.139 0.273 -0.348 -0.388 0.312 -0.081 -0.868 0.109 0.514 0.583 -0.640 -0.679 0.306 0.534 -0.498 -0.386 0.109 0.042 -0.631 -0.224 0.555 0.059 -0.950 0.064 0.481 0.552 -0.757 -0.443 0.271 0.487 -0.789 -0.047 0.074 0.070 -0.616 -0.245 0.540 0.132 -0.978 -0.370 0.698 0.753 -0.507 -0.982 0.144 0.740 -0.557 -0.609 -0.008 0.244 -0.455 -0.454 0.439 0.535 -1.138 -0.643 0.542 0.395 -0.411 -0.410 0.239 0.448 -0.412 -0.773 0.377 0.043 -0.313 -0.579 0.581 -0.027 -0.767 -0.187 0.635 0.626 -0.311 -0.770 0.090 0.601 -0.662 -0.604 0.255 -0.080 -0.405 0.005 0.373 0.188 -0.955 -0.355 0.644 0.445 -0.444 -0.924 0.461 0.508 -0.582 -0.750 0.395 -0.140 -0.312 -0.653 0.723 0.176 -0.807 -0.530 0.684 0.513 -0.358 -0.517 0.129 0.612 -0.422 -0.657 0.125 0.131 -0.285 -0.489 0.456 0.291 -0.785 -0.240 0.432 0.450 -0.405 -0.353 0.132 0.465 -0.102 -0.884 0.197 0.343 -0.211 -0.603 0.274 -0.088 -0.882 0.149 0.493 0.657 -0.539 -0.549 0.072 0.658 -0.651 -0.506 0.113 0.148 -0.432 -0.467 0.514 0.075 -0.824 -0.163 0.574 0.323 -0.350 -0.695 0.430 0.550 -0.721 -0.649 0.369 -0.088 -0.259 -0.334 0.516 -0.052 -0.635 -0.358 0.688 0.560 -0.122 -0.646 -0.048 0.470 -0.086 -0.611 0.026 0.138 -0.107 -0.440 0.304 0.096 -0.558 -0.177 0.451 0.178 -0.008 -0.748 0.355 0.689 0.089 -0.934 -0.319 0.001 0.039 -0.612 0.398 0.336 -0.739 -0.197 0.340 0.517 -0.306 -0.573 0.122 0.307 -0.222 -0.514 0.270 0.087 -0.257 -0.407 0.430 0.049 -0.807 -0.129 0.565 0.367 -0.051 -1.199 0.389 0.489 -0.501 -0.248 0.067 -0.108 -0.167 -0.372 0.494 -0.167 -0.722 -0.254 0.735 0.665 -0.534 -0.535 0.047 0.428 -0.443 -0.407 0.221 0.161 -0.436 -0.169 0.325 0.107 -0.587 -0.308 0.535 0.416 -0.503 -0.358 0.238 0.532 -0.381 -0.342 -0.003 0.193 -0.149 -0.616 0.382 0.017 -0.917 0.018 0.532 0.640 -0.500 -0.605 0.107 0.484 -0.440 -0.105 -0.097 0.208 -0.396 -0.314 0.358 0.116 -0.645 -0.272 0.534 0.489 -0.757 -0.758 0.499 0.843 -0.793 -0.470 -0.141 -0.020 -0.427 -0.390 0.592 -0.067 -0.923 -0.227 0.734 0.733 -0.421 -1.087 0.163 0.536 -0.329 -0.917 0.293 0.253 -0.352 -0.616 0.457 0.515 -1.222 -0.327 0.428 0.279 -0.121 -0.618 0.281 0.483 -0.018 -0.765 0.037 -0.179 -0.086 -0.764 0.665 -0.053 -0.625 -0.058 0.513 0.552 -0.449 -0.889 0.335 0.417 -0.400 -0.857 0.438 -0.056 -0.363 -0.438 0.606 0.212 -0.901 -0.277 0.567 0.361 -0.174 -1.054 0.430 0.407 -0.308 -0.598 0.270 -0.117 -0.262 -0.473 0.607 0.128 -0.847 -0.265 0.603 0.595 -0.332 -0.730 0.127 0.687 -0.531 -0.652 0.086 0.457 -0.318 -0.726 0.288 0.339 -0.909 -0.113 0.354 0.323 -0.120 -0.353 0.064 0.616 -0.640 -0.360 0.066 0.134 -0.535 -0.851 0.730 -0.228 -0.637 0.032 0.566 0.635 -0.556 -0.574 0.131 0.674 -0.639 -0.435 0.033 0.310 -0.609 -0.716 0.581 -0.084 -0.659 -0.285 0.680 0.444 -0.521 -0.927 0.503 0.589 -0.734 -0.252 0.076 0.077 -0.531 -0.198 0.466 -0.030 -0.814 -0.367 0.745 0.481 -0.287 -0.613 0.177 0.579 -0.425 -0.458 0.047 0.126 -0.196 -0.560 0.441 0.143 -0.896 -0.103 0.514 0.366 -0.213 -0.521 0.204 0.661 -0.237 -0.549 -0.173 0.144 -0.104 -0.583 0.375 0.279 -0.725 -0.209 0.397 0.415 -0.223 -0.291 -0.011 0.290 -0.253 -0.316 0.183 -0.041 -0.300 -0.218 0.439 -0.017 -0.660 0.007 0.458 0.375 -0.152 -0.972 0.372 0.345 -0.458 -0.329 0.269 -0.234 -0.132 -0.473 0.601 0.007 -0.643 -0.239 0.592 0.734 -0.708 -0.382 -0.062 0.839 -0.525 -0.495 -0.310 0.307 -0.387 -0.327 0.264 0.510 -1.057 -0.397 0.418 0.526 -0.497 -0.194 -0.032 0.594 -0.574 -0.446 0.117 0.031 -0.136 -0.345 0.357 0.002 -0.687 0.085 0.397 0.613 -0.129 -0.562 -0.186 0.730 -0.623 -0.266 -0.217 0.164 -0.987 0.099 0.382 0.144 -1.208 0.165 0.423 0.644 -0.805 -0.600 0.270 0.541 -0.592 -0.322 0.113 -0.189 -0.709 -0.175 0.701 0.037 -0.899 -0.200 0.648 0.609 -0.322 -0.676 0.068 0.727 -0.542 -0.765 0.098 -0.071 -0.243 -0.240 0.440 0.422 -1.086 -0.372 0.502 0.152 -0.065 -0.596 0.346 0.315 0.202 -0.814 0.052 -0.112 -0.224 -0.704 0.682 0.023 -0.665 -0.088 0.498 0.363 -0.076 -0.610 0.151 0.405 -0.376 -0.732 0.383 -0.238 -0.394 -0.045 0.508 0.075 -0.709 -0.339 0.627 0.388 -0.277 -0.844 0.389 0.448 -0.504 -0.565 0.327 -0.292 -0.311 -0.371 0.682 0.183 -0.803 -0.489 0.659 0.620 -0.370 -0.821 0.168 0.608 -0.612 -0.783 0.311 0.140 -0.307 -0.691 0.556 0.364 -1.039 -0.394 0.551 0.389 -0.458 -0.320 0.217 0.679 -0.394 -0.681 0.021 0.186 -0.473 -0.590 0.563 0.154 -1.070 -0.031 0.518 0.721 -0.576 -0.755 0.123 0.652 -0.706 -0.447 0.114 0.077 -0.261 -0.366 0.416 0.272 -1.192 -0.399 0.674 0.315 -0.637 -0.805 0.624 0.426 -0.316 -0.704 0.309 0.030 -0.509 -0.582 0.685 0.006 -0.911 -0.544 0.830 0.625 -0.428 -0.652 0.109 0.510 -0.408 -0.574 0.203 0.011 -0.234 -0.529 0.535 0.247 -0.874 -0.376 0.582 0.529 -0.404 -0.501 0.130 0.749 -0.015 -0.801 -0.404 0.084 -0.124 -0.457 0.372 0.118 -0.499 -0.108 0.355 0.570 -0.410 -0.572 0.125 0.278 -0.397 -0.338 0.307 -0.007 -0.302 -0.523 0.583 -0.051 -0.693 -0.092 0.564 0.350 -0.503 -0.983 0.599 0.304 -0.452 -0.474 0.394 -0.326 -0.255 -0.483 0.722 -0.112 -0.433 -0.405 0.659 0.633 -0.600 -0.638 0.198 0.447 -0.617 0.041 -0.065 0.209 -0.471 -0.186 0.314 0.128 -0.827 -0.141 0.523 0.468 -0.650 -0.278 0.208 0.570 -0.358 -0.669 0.145 0.094 -0.286 -0.407 0.442 0.028 -0.827 0.029 0.482 0.637 -0.547 -0.598 0.137 0.500 -0.472 -0.403 0.148 0.278 -0.667 -0.121 0.308 0.213 -0.917 -0.139 0.489 0.429 -0.688 -0.730 0.516 0.462 -0.341 -0.517 0.181 -0.065 -0.545 -0.439 0.697 -0.060 -1.035 -0.409 0.848 0.798 -0.576 -1.038 0.142 0.543 -0.297 -0.734 0.173 0.104 -0.374 -0.443 0.504 0.375 -1.032 -0.548 0.614 0.467 -0.595 -0.582 0.365 0.503 -0.157 -0.758 0.130 0.039 -0.332 -0.577 0.593 0.074 -0.771 -0.129 0.533 0.678 -0.587 -0.838 0.233 0.494 -0.491 -0.743 0.359 0.077 -0.529 -0.508 0.631 0.093 -1.107 -0.335 0.745 0.525 -0.568 -0.898 0.433 0.411 -0.432 -0.689 0.388 -0.157 -0.436 -0.536 0.744 0.268 -0.761 -0.522 0.594 Intron LUT 5 4 4 0 0.000 0.654 -0.434 -1.032 0.260 0.835 -0.610 -1.167 0.158 0.054 -0.589 -0.495 0.667 0.566 -1.025 -0.397 0.343 0.481 -0.374 -0.571 0.214 0.549 -0.199 -0.965 0.206 0.400 -0.520 -0.463 0.331 -0.007 -0.883 -0.255 0.700 0.576 -0.491 -0.840 0.308 0.613 -0.655 -0.726 0.300 -0.197 -0.668 -0.714 0.918 0.149 -1.120 -0.445 0.763 0.479 -0.705 -1.044 0.592 0.526 -0.463 -0.892 0.374 0.011 -0.592 -0.506 0.700 0.226 -0.996 -0.491 0.694 0.602 -0.355 -0.884 0.212 0.551 0.018 -0.884 -0.028 0.024 -0.461 -0.547 0.653 0.370 -1.142 -0.425 0.595 0.413 -0.243 -0.581 0.209 0.669 -0.037 -1.188 -0.005 -0.023 -0.296 -0.679 0.657 0.105 -0.472 -0.347 0.504 0.195 0.013 -0.283 0.034 0.416 -0.281 -0.489 0.177 -0.499 -0.381 -0.222 0.738 0.195 -0.425 -0.342 0.403 0.483 -0.449 -1.102 0.489 0.399 -0.483 -0.541 0.354 -0.274 -0.471 -0.713 0.881 0.095 -1.054 -0.441 0.777 0.608 -0.522 -0.910 0.318 0.793 -0.419 -0.927 -0.009 0.163 -0.560 -0.301 0.476 0.308 -1.179 -0.136 0.496 0.410 -0.446 -0.346 0.203 0.736 -0.661 -1.071 0.295 0.230 -0.415 -0.285 0.329 0.011 -1.032 -0.009 0.594 0.368 -0.449 -1.012 0.567 0.508 -0.348 -0.751 0.261 -0.281 -0.746 -0.222 0.785 0.338 -1.184 0.106 0.286 0.679 -0.966 -0.533 0.258 0.524 -0.809 -0.269 0.217 0.072 -0.863 -0.213 0.619 0.279 -1.308 -0.408 0.704 0.703 -0.462 -1.055 0.220 0.833 -0.527 -0.995 0.032 0.194 -0.516 -0.408 0.488 0.626 -1.303 -0.690 0.517 0.358 -0.375 -0.544 0.335 0.447 -0.340 -1.300 0.527 -0.080 -0.344 -0.556 0.665 0.007 -0.816 -0.332 0.707 0.632 -0.364 -0.724 0.094 0.600 -0.499 -0.908 0.315 -0.376 -0.478 0.179 0.464 0.229 -1.080 -0.359 0.656 0.466 -0.500 -1.043 0.512 0.610 -0.594 -1.139 0.440 -0.190 -0.420 -0.628 0.790 0.218 -0.980 -0.665 0.765 0.537 -0.429 -0.588 0.191 0.587 -0.273 -0.960 0.210 -0.039 -0.486 -0.231 0.546 0.325 -1.012 -0.273 0.510 0.348 -0.380 -0.322 0.212 0.335 0.197 -1.491 0.306 0.380 -0.199 -0.600 0.224 0.005 -0.891 0.032 0.521 0.683 -0.514 -0.623 0.064 0.596 -0.367 -0.744 0.158 -0.248 -0.664 -0.630 0.911 0.108 -0.840 -0.109 0.523 0.327 -0.318 -0.774 0.443 0.510 -0.539 -1.060 0.494 -0.216 -0.285 -0.269 0.574 0.043 -0.649 -0.489 0.696 0.589 -0.108 -0.811 -0.003 0.608 -0.177 -0.826 0.039 0.093 -0.394 -0.164 0.356 0.185 -0.797 -0.084 0.427 0.014 -0.057 -0.670 0.485 0.722 0.202 -1.396 -0.287 -0.306 0.188 -0.806 0.566 0.432 -0.964 -0.179 0.328 0.525 -0.290 -0.691 0.168 0.330 -0.151 -0.693 0.292 0.008 -0.137 -0.540 0.482 0.081 -0.844 -0.112 0.545 0.441 -0.140 -1.244 0.392 0.667 -0.672 -0.332 -0.014 -0.163 -0.233 -0.320 0.541 -0.015 -1.072 -0.251 0.760 0.654 -0.548 -0.714 0.180 0.427 -0.516 -0.715 0.430 -0.061 -0.576 0.147 0.337 0.137 -0.540 -0.463 0.572 0.307 -0.469 -0.447 0.386 0.548 -0.340 -0.550 0.092 0.170 -0.155 -0.634 0.414 0.085 -0.921 -0.048 0.529 0.664 -0.393 -0.889 0.156 0.454 -0.229 -0.257 -0.089 -0.061 -0.266 -0.334 0.502 0.259 -0.641 -0.376 0.477 0.598 -0.932 -0.983 0.543 0.746 -0.600 -0.596 0.003 -0.206 -0.450 -0.251 0.642 0.092 -1.093 -0.298 0.725 0.735 -0.387 -1.275 0.211 0.542 -0.197 -1.382 0.365 0.131 -0.454 -0.409 0.507 0.515 -1.315 -0.367 0.479 0.130 -0.065 -0.765 0.445 0.540 0.107 -1.282 0.082 -0.394 -0.069 -0.950 0.822 0.070 -0.871 -0.097 0.554 0.424 -0.286 -0.983 0.414 0.402 -0.295 -1.212 0.519 -0.406 -0.284 -0.288 0.683 0.211 -0.844 -0.417 0.619 0.410 -0.234 -1.153 0.455 0.418 -0.185 -0.921 0.329 -0.191 -0.357 -0.464 0.694 0.205 -1.005 -0.356 0.649 0.642 -0.339 -0.957 0.180 0.788 -0.430 -1.008 0.047 0.358 -0.559 -0.512 0.421 0.437 -1.165 -0.058 0.310 0.249 0.016 -0.468 0.108 0.564 -0.565 -0.621 0.258 0.079 -0.438 -0.747 0.687 -0.201 -0.723 0.116 0.527 0.637 -0.441 -0.922 0.239 0.736 -0.473 -0.777 0.044 -0.043 -0.838 -1.028 0.985 -0.030 -0.884 -0.267 0.720 0.526 -0.593 -1.085 0.511 0.589 -0.711 -0.474 0.220 -0.134 -0.653 -0.103 0.606 0.027 -1.000 -0.474 0.817 0.454 -0.306 -0.612 0.223 0.650 -0.366 -0.535 -0.052 -0.089 -0.227 -0.230 0.436 0.221 -1.145 -0.019 0.480 0.261 -0.174 -0.531 0.290 0.707 -0.222 -0.750 -0.127 0.029 -0.198 -0.434 0.452 0.400 -0.801 -0.158 0.275 0.288 -0.197 -0.165 0.022 0.252 -0.065 -0.354 0.099 -0.310 -0.405 0.111 0.442 0.048 -0.746 0.131 0.351 0.446 -0.177 -1.153 0.382 0.445 -0.429 -0.494 0.246 -0.299 -0.196 -0.515 0.691 0.199 -0.874 -0.310 0.584 0.721 -0.721 -0.504 0.056 0.924 -0.389 -0.838 -0.359 0.136 -0.442 -0.289 0.429 0.688 -1.418 -0.505 0.389 0.501 -0.368 -0.448 0.107 0.689 -0.547 -0.813 0.182 -0.091 -0.111 -0.366 0.443 -0.010 -0.726 0.066 0.438 0.520 0.002 -0.719 -0.063 0.842 -0.503 -0.570 -0.272 -0.119 -0.977 0.136 0.558 0.209 -1.486 0.262 0.365 0.867 -1.180 -0.772 0.201 0.539 -0.364 -0.719 0.217 -0.080 -1.003 -0.294 0.799 0.083 -1.056 -0.192 0.664 0.447 -0.320 -0.320 0.048 0.716 -0.485 -1.000 0.193 -0.229 -0.285 -0.030 0.430 0.387 -1.266 -0.146 0.457 0.125 -0.124 -0.716 0.468 0.254 0.276 -1.236 0.229 -0.351 -0.232 -0.838 0.852 0.111 -0.823 -0.129 0.526 0.213 -0.194 -0.158 0.099 0.338 -0.174 -0.965 0.420 -0.645 -0.451 0.199 0.566 0.134 -0.730 -0.348 0.599 0.328 -0.237 -0.991 0.479 0.467 -0.556 -0.911 0.492 -0.431 -0.436 -0.286 0.765 0.203 -0.976 -0.552 0.730 0.655 -0.459 -0.999 0.259 0.637 -0.565 -1.125 0.390 0.017 -0.397 -0.756 0.711 0.393 -1.167 -0.367 0.552 0.298 -0.441 -0.388 0.344 0.728 -0.191 -1.156 0.026 0.149 -0.488 -0.592 0.599 0.233 -1.203 -0.165 0.583 0.697 -0.493 -0.808 0.133 0.757 -0.606 -0.800 0.110 -0.010 -0.293 -0.335 0.483 0.335 -1.278 -0.418 0.658 0.332 -0.772 -0.949 0.712 0.439 -0.113 -1.168 0.349 -0.011 -0.668 -0.603 0.782 0.055 -0.958 -0.710 0.876 0.627 -0.522 -0.742 0.216 0.551 -0.293 -0.986 0.280 -0.171 -0.383 -0.229 0.577 0.321 -1.155 -0.433 0.643 0.509 -0.492 -0.458 0.186 0.899 -0.095 -1.229 -0.372 -0.018 -0.139 -0.296 0.368 0.271 -0.633 -0.207 0.359 0.550 -0.336 -0.664 0.154 0.322 -0.478 -0.413 0.357 -0.235 -0.248 -0.446 0.654 0.002 -0.853 -0.100 0.596 0.455 -0.716 -1.049 0.620 0.416 -0.448 -0.743 0.417 -0.408 -0.405 -0.421 0.803 0.059 -0.664 -0.528 0.708 0.653 -0.722 -0.944 0.380 0.594 -0.467 -0.491 0.078 -0.011 -0.599 -0.043 0.461 0.228 -0.933 -0.278 0.566 0.351 -0.701 -0.346 0.404 0.605 -0.168 -1.135 0.181 0.119 -0.341 -0.400 0.451 0.182 -0.886 -0.131 0.497 0.584 -0.556 -0.715 0.277 0.559 -0.360 -0.716 0.188 0.060 -0.709 -0.100 0.498 0.369 -1.023 -0.214 0.437 0.502 -0.955 -0.891 0.613 0.437 -0.265 -0.874 0.343 -0.213 -0.659 -0.345 0.780 0.019 -1.172 -0.543 0.893 0.803 -0.570 -1.163 0.183 0.646 -0.237 -1.212 0.208 0.035 -0.413 -0.380 0.542 0.417 -1.108 -0.612 0.629 0.378 -0.614 -0.651 0.496 0.567 -0.086 -1.195 0.188 0.001 -0.300 -0.616 0.618 0.179 -0.832 -0.196 0.520 0.646 -0.540 -1.000 0.318 0.489 -0.292 -1.162 0.415 -0.151 -0.524 -0.343 0.692 0.108 -1.072 -0.438 0.773 0.556 -0.646 -0.987 0.471 0.510 -0.359 -1.155 0.431 -0.195 -0.573 -0.525 0.815 0.265 -0.924 -0.713 0.733 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.368 -0.821 -0.245 0.378 0.331 -0.466 -0.644 0.463 0.566 -0.215 -0.734 0.081 1.212 -1.401 -0.234 -1.137 0.883 -0.436 -0.893 -0.184 0.710 -0.242 -0.669 -0.166 2.000 -10.497 -10.497 -10.497 -10.497 -10.497 -10.497 2.000 -10.497 -10.497 2.000 -10.497 0.240 -0.867 0.395 -0.060 0.427 0.377 -0.877 -0.295 0.118 -0.685 -0.035 0.400 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.466 -0.558 0.095 -0.199 0.494 -0.267 -0.733 0.213 0.398 -0.617 -0.292 0.279 0.521 -0.702 -0.095 0.020 0.392 -0.496 -0.761 0.474 0.295 -0.922 -0.107 0.398 -9.591 -9.591 -9.591 1.999 1.999 -9.591 -9.591 -9.591 1.999 -9.591 -9.591 -9.591 TAG WMM 9 6 4 0 0.000 0.269 -0.381 0.156 -0.132 0.485 -0.373 -0.635 0.245 0.304 -0.445 -0.373 0.332 0.419 -0.711 -0.056 0.124 0.250 -0.366 -0.626 0.472 0.224 -1.001 0.034 0.388 -7.920 -7.920 -7.920 1.996 1.996 -7.920 -7.920 -7.920 -7.920 -7.920 1.996 -7.920 TGA WMM 9 6 4 0 0.000 0.436 -0.514 0.080 -0.168 0.480 -0.343 -0.537 0.173 0.298 -0.532 -0.257 0.313 0.431 -0.652 0.171 -0.168 0.223 -0.158 -0.456 0.271 0.159 -0.692 0.133 0.223 -8.827 -8.827 -8.827 1.998 -8.827 -8.827 1.998 -8.827 1.998 -8.827 -8.827 -8.827 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/B.mori.hmm0000644000175000017500000013621711424066010015210 0ustar moellermoellerzoeHMM B.mori 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.843218 Inter Esngl 0.156782 Inter ORF 1 Intron Eterm 0.191292 Intron Exon 0.808708 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.432237 0.357914 0.209849 0.570049 0.230952 0.199000 0.540336 0.259090 0.200573 0.557630 0.242079 0.200291 0.802613 0.197387 0.804182 0.195818 0.826297 0.173703 Einit 2 DEFINED 0 249 -8.217 -8.175 -8.134 -8.094 -8.055 -8.017 -7.981 -7.945 -7.910 -7.876 -7.842 -7.835 -7.828 -7.821 -7.814 -7.807 -7.800 -7.793 -7.786 -7.779 -7.772 -7.781 -7.790 -7.800 -7.809 -7.818 -7.828 -7.837 -7.847 -7.857 -7.866 -7.859 -7.851 -7.843 -7.836 -7.828 -7.821 -7.814 -7.806 -7.799 -7.792 -7.788 -7.784 -7.781 -7.777 -7.773 -7.770 -7.766 -7.763 -7.759 -7.755 -7.757 -7.759 -7.761 -7.763 -7.765 -7.767 -7.769 -7.771 -7.773 -7.775 -7.777 -7.778 -7.780 -7.782 -7.783 -7.785 -7.786 -7.788 -7.789 -7.791 -7.795 -7.799 -7.803 -7.807 -7.811 -7.816 -7.820 -7.824 -7.828 -7.832 -7.837 -7.843 -7.848 -7.853 -7.858 -7.864 -7.869 -7.874 -7.880 -7.885 -7.879 -7.873 -7.867 -7.862 -7.856 -7.850 -7.844 -7.839 -7.833 -7.827 -7.834 -7.840 -7.847 -7.853 -7.860 -7.866 -7.873 -7.880 -7.886 -7.893 -7.896 -7.899 -7.902 -7.904 -7.907 -7.910 -7.913 -7.916 -7.919 -7.922 -7.927 -7.932 -7.937 -7.942 -7.947 -7.952 -7.958 -7.963 -7.968 -7.973 -7.987 -8.001 -8.015 -8.030 -8.044 -8.059 -8.074 -8.089 -8.104 -8.119 -8.133 -8.147 -8.161 -8.175 -8.189 -8.203 -8.218 -8.233 -8.248 -8.263 -8.274 -8.286 -8.299 -8.311 -8.323 -8.336 -8.348 -8.361 -8.374 -8.386 -8.400 -8.413 -8.426 -8.440 -8.454 -8.468 -8.482 -8.496 -8.510 -8.524 -8.532 -8.540 -8.548 -8.556 -8.564 -8.573 -8.581 -8.589 -8.597 -8.606 -8.621 -8.636 -8.651 -8.667 -8.682 -8.698 -8.714 -8.730 -8.747 -8.763 -8.788 -8.813 -8.838 -8.864 -8.890 -8.917 -8.944 -8.972 -9.000 -9.029 -9.048 -9.067 -9.087 -9.107 -9.127 -9.147 -9.168 -9.189 -9.210 -9.232 -9.250 -9.268 -9.286 -9.305 -9.324 -9.343 -9.363 -9.383 -9.403 -9.423 -9.446 -9.469 -9.492 -9.516 -9.540 -9.565 -9.590 -9.615 -9.641 -9.668 -9.682 -9.697 -9.712 -9.727 -9.742 -9.757 -9.773 -9.789 -9.804 -9.820 -9.832 -9.844 -9.856 -9.868 -9.880 -9.892 -9.904 -9.917 -9.929 GEOMETRIC 250 -1 184 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -9.718 -9.674 -9.631 -9.590 -9.550 -9.511 -9.473 -9.435 -9.399 -9.364 -9.330 -9.322 -9.315 -9.307 -9.300 -9.293 -9.286 -9.278 -9.271 -9.264 -9.257 -9.258 -9.258 -9.259 -9.260 -9.261 -9.261 -9.262 -9.263 -9.264 -9.264 -9.256 -9.248 -9.240 -9.232 -9.224 -9.216 -9.208 -9.200 -9.192 -9.184 -9.167 -9.150 -9.133 -9.117 -9.100 -9.084 -9.068 -9.052 -9.037 -9.021 -8.986 -8.951 -8.917 -8.884 -8.852 -8.820 -8.789 -8.759 -8.729 -8.700 -8.679 -8.659 -8.638 -8.618 -8.599 -8.579 -8.560 -8.541 -8.523 -8.504 -8.488 -8.473 -8.458 -8.442 -8.427 -8.413 -8.398 -8.383 -8.369 -8.355 -8.338 -8.321 -8.305 -8.289 -8.272 -8.257 -8.241 -8.225 -8.210 -8.195 -8.191 -8.186 -8.182 -8.178 -8.174 -8.170 -8.166 -8.162 -8.158 -8.154 -8.146 -8.138 -8.130 -8.122 -8.114 -8.106 -8.098 -8.091 -8.083 -8.075 -8.065 -8.054 -8.043 -8.033 -8.022 -8.012 -8.002 -7.991 -7.981 -7.971 -7.964 -7.956 -7.948 -7.941 -7.934 -7.926 -7.919 -7.912 -7.904 -7.897 -7.890 -7.884 -7.877 -7.871 -7.864 -7.858 -7.852 -7.845 -7.839 -7.833 -7.831 -7.829 -7.827 -7.825 -7.823 -7.820 -7.818 -7.816 -7.814 -7.812 -7.816 -7.820 -7.824 -7.828 -7.832 -7.836 -7.840 -7.844 -7.848 -7.852 -7.863 -7.875 -7.887 -7.899 -7.912 -7.924 -7.936 -7.949 -7.961 -7.974 -7.984 -7.994 -8.004 -8.014 -8.024 -8.034 -8.044 -8.055 -8.065 -8.075 -8.088 -8.101 -8.115 -8.128 -8.141 -8.155 -8.169 -8.182 -8.196 -8.210 -8.226 -8.242 -8.259 -8.275 -8.292 -8.309 -8.326 -8.343 -8.361 -8.378 -8.389 -8.399 -8.409 -8.420 -8.431 -8.441 -8.452 -8.463 -8.474 -8.485 -8.499 -8.513 -8.527 -8.541 -8.556 -8.570 -8.585 -8.600 -8.615 -8.630 -8.652 -8.675 -8.697 -8.721 -8.744 -8.768 -8.792 -8.817 -8.842 -8.868 -8.882 -8.897 -8.912 -8.928 -8.943 -8.959 -8.974 -8.990 -9.006 -9.023 -9.044 -9.065 -9.087 -9.109 -9.131 -9.154 -9.177 -9.200 -9.224 GEOMETRIC 250 -1 269 Exon 2 DEFINED 0 249 -14.485 -14.336 -14.201 -14.078 -13.964 -13.858 -13.760 -13.668 -13.582 -13.500 -13.423 -13.277 -13.144 -13.022 -12.910 -12.806 -12.708 -12.617 -12.532 -12.451 -12.375 -12.245 -12.126 -12.016 -11.913 -11.818 -11.728 -11.644 -11.565 -11.489 -11.417 -11.306 -11.202 -11.105 -11.015 -10.930 -10.849 -10.773 -10.700 -10.631 -10.566 -10.466 -10.373 -10.285 -10.203 -10.124 -10.050 -9.980 -9.913 -9.849 -9.787 -9.705 -9.626 -9.552 -9.482 -9.415 -9.351 -9.289 -9.230 -9.174 -9.119 -9.052 -8.987 -8.926 -8.866 -8.810 -8.755 -8.702 -8.651 -8.602 -8.555 -8.502 -8.452 -8.403 -8.356 -8.310 -8.265 -8.222 -8.181 -8.140 -8.100 -8.060 -8.021 -7.983 -7.946 -7.910 -7.875 -7.841 -7.807 -7.774 -7.742 -7.713 -7.685 -7.658 -7.630 -7.604 -7.578 -7.552 -7.527 -7.502 -7.478 -7.459 -7.440 -7.422 -7.403 -7.385 -7.368 -7.350 -7.333 -7.316 -7.299 -7.287 -7.276 -7.265 -7.253 -7.242 -7.231 -7.221 -7.210 -7.199 -7.188 -7.185 -7.181 -7.177 -7.174 -7.170 -7.166 -7.163 -7.159 -7.155 -7.152 -7.153 -7.155 -7.156 -7.157 -7.159 -7.160 -7.162 -7.163 -7.165 -7.166 -7.172 -7.179 -7.186 -7.192 -7.199 -7.206 -7.212 -7.219 -7.226 -7.233 -7.243 -7.254 -7.265 -7.276 -7.287 -7.298 -7.310 -7.321 -7.333 -7.344 -7.357 -7.369 -7.382 -7.395 -7.408 -7.421 -7.435 -7.448 -7.461 -7.475 -7.492 -7.509 -7.527 -7.544 -7.562 -7.580 -7.598 -7.617 -7.635 -7.654 -7.672 -7.690 -7.708 -7.726 -7.745 -7.763 -7.783 -7.802 -7.821 -7.841 -7.863 -7.885 -7.907 -7.930 -7.953 -7.977 -8.001 -8.025 -8.049 -8.075 -8.099 -8.124 -8.150 -8.176 -8.202 -8.229 -8.257 -8.285 -8.313 -8.343 -8.370 -8.399 -8.428 -8.457 -8.487 -8.518 -8.549 -8.582 -8.614 -8.648 -8.676 -8.704 -8.733 -8.763 -8.793 -8.824 -8.856 -8.888 -8.921 -8.955 -8.986 -9.019 -9.052 -9.086 -9.121 -9.156 -9.193 -9.231 -9.269 -9.309 -9.340 -9.373 -9.406 -9.440 -9.475 -9.510 -9.547 -9.584 -9.623 GEOMETRIC 250 -1 185 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 930 ORF 2 DEFINED 0 249 -14.485 -14.336 -14.201 -14.078 -13.964 -13.858 -13.760 -13.668 -13.582 -13.500 -13.423 -13.277 -13.144 -13.022 -12.910 -12.806 -12.708 -12.617 -12.532 -12.451 -12.375 -12.245 -12.126 -12.016 -11.913 -11.818 -11.728 -11.644 -11.565 -11.489 -11.417 -11.306 -11.202 -11.105 -11.015 -10.930 -10.849 -10.773 -10.700 -10.631 -10.566 -10.466 -10.373 -10.285 -10.203 -10.124 -10.050 -9.980 -9.913 -9.849 -9.787 -9.705 -9.626 -9.552 -9.482 -9.415 -9.351 -9.289 -9.230 -9.174 -9.119 -9.052 -8.987 -8.926 -8.866 -8.810 -8.755 -8.702 -8.651 -8.602 -8.555 -8.502 -8.452 -8.403 -8.356 -8.310 -8.265 -8.222 -8.181 -8.140 -8.100 -8.060 -8.021 -7.983 -7.946 -7.910 -7.875 -7.841 -7.807 -7.774 -7.742 -7.713 -7.685 -7.658 -7.630 -7.604 -7.578 -7.552 -7.527 -7.502 -7.478 -7.459 -7.440 -7.422 -7.403 -7.385 -7.368 -7.350 -7.333 -7.316 -7.299 -7.287 -7.276 -7.265 -7.253 -7.242 -7.231 -7.221 -7.210 -7.199 -7.188 -7.185 -7.181 -7.177 -7.174 -7.170 -7.166 -7.163 -7.159 -7.155 -7.152 -7.153 -7.155 -7.156 -7.157 -7.159 -7.160 -7.162 -7.163 -7.165 -7.166 -7.172 -7.179 -7.186 -7.192 -7.199 -7.206 -7.212 -7.219 -7.226 -7.233 -7.243 -7.254 -7.265 -7.276 -7.287 -7.298 -7.310 -7.321 -7.333 -7.344 -7.357 -7.369 -7.382 -7.395 -7.408 -7.421 -7.435 -7.448 -7.461 -7.475 -7.492 -7.509 -7.527 -7.544 -7.562 -7.580 -7.598 -7.617 -7.635 -7.654 -7.672 -7.690 -7.708 -7.726 -7.745 -7.763 -7.783 -7.802 -7.821 -7.841 -7.863 -7.885 -7.907 -7.930 -7.953 -7.977 -8.001 -8.025 -8.049 -8.075 -8.099 -8.124 -8.150 -8.176 -8.202 -8.229 -8.257 -8.285 -8.313 -8.343 -8.370 -8.399 -8.428 -8.457 -8.487 -8.518 -8.549 -8.582 -8.614 -8.648 -8.676 -8.704 -8.733 -8.763 -8.793 -8.824 -8.856 -8.888 -8.921 -8.955 -8.986 -9.019 -9.052 -9.086 -9.121 -9.156 -9.193 -9.231 -9.269 -9.309 -9.340 -9.373 -9.406 -9.440 -9.475 -9.510 -9.547 -9.584 -9.623 GEOMETRIC 250 -1 185 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.533 -0.890 -0.859 0.548 0.532 -0.924 -0.929 0.587 0.576 -0.921 -1.027 0.576 0.600 -0.901 -1.054 0.554 0.637 -0.925 -1.118 0.544 0.669 -0.928 -1.115 0.510 0.673 -0.946 -1.035 0.485 0.658 -0.939 -0.988 0.483 0.578 -0.857 -0.955 0.527 0.482 -0.847 -0.867 0.586 0.355 -0.854 -0.799 0.674 0.324 -0.801 -0.878 0.707 0.249 -0.791 -0.904 0.766 0.209 -0.825 -0.934 0.814 0.104 -0.914 -0.987 0.920 -0.030 -0.915 -0.979 0.990 -0.136 -1.019 -1.114 1.096 -0.099 -0.754 -1.309 1.052 -0.111 -0.655 -1.162 0.997 -0.083 -0.790 -0.761 0.919 -0.175 -0.780 -0.822 0.979 -1.456 -0.784 -1.547 1.442 -1.151 -0.686 -2.072 1.431 0.242 -0.587 -0.573 0.571 -2.481 1.531 -6.119 -0.114 2.002 -13.940 -13.940 -13.940 -13.940 -13.940 2.002 -13.940 0.276 -1.056 0.841 -0.934 -0.039 -0.570 -0.570 0.754 0.247 -0.250 -0.086 0.053 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.359 -0.376 -0.205 0.111 0.393 -0.531 -0.454 0.339 0.438 -0.236 -0.503 0.125 0.340 -0.512 0.049 -0.001 0.622 -0.616 0.069 -0.398 0.461 -0.712 -0.192 0.186 0.218 -0.030 -0.677 0.301 0.019 -0.333 0.297 -0.052 0.568 -0.430 -0.326 -0.033 0.062 -0.223 -0.381 0.413 0.455 0.009 -0.927 0.133 -0.047 -0.368 0.110 0.237 -12.197 0.938 -12.197 1.059 0.263 -0.653 -0.265 0.413 -11.940 0.217 0.549 0.459 0.245 -0.202 0.012 -0.094 0.231 0.008 -0.021 -0.260 -0.045 -0.101 0.214 -0.092 0.198 0.260 -0.512 -0.068 -0.147 0.113 0.157 -0.151 0.001 0.200 0.304 -0.700 -0.277 -0.075 0.260 0.040 -0.195 0.617 -0.190 -0.482 -0.851 0.293 0.638 -0.591 0.114 0.117 0.064 -0.344 -0.630 0.197 0.324 -0.065 0.168 0.392 -0.617 -0.133 -0.738 0.100 0.572 -0.248 -11.995 1.363 -11.995 0.514 -0.472 0.119 0.170 0.095 -11.997 0.670 0.518 -0.034 -0.494 0.547 0.040 -0.319 0.461 -0.319 0.220 -0.606 -0.151 0.112 -0.018 0.044 0.199 0.125 -0.077 -0.298 0.038 0.132 0.152 -0.384 0.109 -0.013 0.434 -0.788 -0.201 -0.003 0.283 -0.128 -0.205 0.492 -0.139 -0.291 -0.578 -0.107 0.844 -0.723 0.254 -0.145 0.266 -0.514 -0.523 0.135 0.278 -0.010 0.044 0.506 -0.816 -0.029 -0.666 0.147 0.492 -0.223 -11.673 1.363 -11.673 0.514 -0.229 -0.051 0.091 0.159 -11.569 0.669 0.507 -0.017 -0.524 0.517 -0.095 -0.093 0.613 -0.530 -0.533 0.121 0.512 -0.602 -0.481 0.261 0.503 -0.296 -0.819 0.264 0.177 -0.523 -0.096 0.308 0.504 -0.361 -0.064 -0.239 0.333 -0.548 -0.242 0.276 0.216 -0.011 -0.659 0.279 -0.054 -0.131 0.213 -0.052 0.573 -0.434 -0.590 0.148 0.191 -0.314 -0.676 0.514 0.554 -0.142 -1.150 0.233 -0.019 -0.364 -0.101 0.382 -12.019 0.988 -12.019 1.012 0.302 -0.474 -0.262 0.279 -11.526 0.105 0.609 0.485 0.243 -0.190 0.103 -0.208 0.519 -0.401 -0.329 0.020 0.594 -0.755 -0.339 0.147 0.418 -0.177 -0.585 0.154 0.335 -0.589 0.212 -0.127 0.562 -0.592 0.130 -0.386 0.451 -0.717 0.043 -0.008 0.307 -0.097 -0.595 0.222 -0.074 -0.254 0.385 -0.143 0.560 -0.436 -0.281 -0.053 0.151 -0.155 -0.384 0.293 0.674 -0.150 -0.740 -0.144 -0.004 -0.331 0.085 0.198 -11.212 1.017 -11.212 0.982 0.489 -0.782 -0.103 0.115 -10.791 0.160 0.619 0.429 0.144 -0.057 -0.036 -0.062 0.246 0.046 0.100 -0.494 -0.037 0.143 0.021 -0.142 -0.070 0.355 -0.240 -0.117 -0.078 0.269 0.079 -0.337 0.204 0.046 0.323 -0.824 -0.340 0.167 0.380 -0.348 -0.554 0.712 -0.105 -0.413 -0.748 0.342 0.594 -0.673 0.082 0.207 0.074 -0.446 -0.875 0.707 0.113 -0.433 -0.082 0.544 -0.524 -0.148 -0.831 0.317 0.551 -0.460 -10.938 1.458 -10.938 0.324 -0.226 0.268 0.275 -0.452 -11.134 0.687 0.512 -0.053 -0.338 0.725 -0.116 -0.661 0.320 -0.069 0.033 -0.366 -0.055 0.060 0.173 -0.204 0.090 0.300 -0.162 -0.303 0.144 -0.032 0.258 -0.471 -0.237 0.336 0.467 -0.979 -0.614 0.307 0.533 -0.593 -0.612 0.759 0.068 -0.727 -1.166 0.103 1.029 -1.183 0.028 0.155 0.276 -0.608 -0.814 0.243 0.544 -0.340 -0.032 0.640 -0.316 -0.600 -0.758 0.143 0.693 -0.539 -11.350 1.352 -11.350 0.533 -0.089 -0.149 0.358 -0.192 -11.451 0.691 0.548 -0.115 -0.491 0.498 -0.003 -0.187 0.684 -0.638 -0.389 -0.019 0.495 -0.523 -0.528 0.265 0.433 -0.426 -0.661 0.348 0.283 -0.554 -0.086 0.215 0.491 -0.324 0.026 -0.363 0.270 -0.491 0.021 0.096 -0.007 0.096 -0.470 0.279 -0.181 -0.166 0.460 -0.233 0.603 -0.467 -0.616 0.144 0.144 -0.156 -0.608 0.424 0.474 -0.253 -1.046 0.365 -0.023 -0.294 0.035 0.232 -11.296 1.099 -11.296 0.894 0.369 -0.530 -0.017 0.040 -11.336 0.197 0.593 0.428 0.307 -0.314 0.243 -0.368 0.516 -0.263 -0.316 -0.099 0.255 -0.405 -0.350 0.342 0.543 -0.160 -0.438 -0.137 0.156 -0.308 0.218 -0.127 0.301 -0.110 0.130 -0.420 0.161 -0.343 -0.077 0.197 0.167 0.187 -0.529 0.065 -0.390 0.068 0.332 -0.106 0.353 -0.078 -0.337 -0.023 -0.146 0.020 -0.384 0.396 0.396 0.029 -0.708 0.073 -0.259 -0.090 0.165 0.142 -10.871 1.075 -10.871 0.920 0.154 -0.379 -0.180 0.306 -10.554 0.308 0.592 0.326 -0.030 0.050 -0.072 0.048 0.113 0.084 0.219 -0.525 -0.282 0.191 0.225 -0.205 -0.203 0.565 -0.555 -0.042 -0.398 0.406 0.172 -0.340 -0.012 0.208 0.350 -0.789 -0.549 0.250 0.230 -0.067 -0.540 0.903 -0.353 -0.601 -1.033 0.526 0.527 -0.666 -0.146 0.289 0.227 -0.505 -1.318 0.523 0.443 -0.317 -0.381 0.738 -0.357 -0.352 -1.298 0.244 0.772 -0.512 -11.229 1.424 -11.229 0.395 -0.504 0.316 0.221 -0.177 -11.441 0.658 0.603 -0.148 -0.192 0.670 -0.156 -0.653 0.338 -0.165 0.163 -0.465 -0.164 0.212 -0.038 -0.036 0.261 -0.057 -0.004 -0.247 0.062 0.186 0.130 -0.466 0.000 0.027 0.445 -0.689 -0.282 0.132 0.278 -0.202 -0.463 0.581 0.016 -0.383 -0.904 0.041 0.854 -0.668 -0.043 0.192 0.187 -0.419 -0.667 0.135 0.392 -0.059 -0.022 0.594 -0.721 -0.153 -0.739 0.222 0.545 -0.367 -10.567 1.369 -10.567 0.501 -0.261 -0.016 0.192 0.048 -10.520 0.493 0.672 -0.002 -0.669 0.637 -0.102 -0.176 0.654 -0.367 -0.595 -0.017 0.444 -0.359 -0.569 0.246 0.387 -0.014 -0.961 0.249 0.120 -0.204 -0.184 0.220 0.412 -0.120 0.018 -0.441 0.118 -0.190 -0.039 0.091 -0.095 0.256 -0.530 0.235 -0.412 0.159 0.279 -0.123 0.450 -0.162 -0.683 0.160 -0.055 -0.141 -0.403 0.459 0.420 -0.088 -1.142 0.342 -0.174 -0.186 -0.001 0.304 -10.766 1.121 -10.766 0.868 0.238 -0.316 -0.106 0.122 -10.703 0.230 0.613 0.376 -0.216 0.158 0.099 -0.071 0.596 -0.471 -0.315 -0.055 0.451 -0.592 -0.253 0.177 0.469 -0.282 -0.321 -0.011 0.318 -0.677 0.220 -0.054 0.556 -0.528 0.139 -0.443 0.333 -0.680 0.082 0.080 0.337 -0.238 -0.545 0.267 -0.202 -0.186 0.433 -0.149 0.586 -0.351 -0.424 -0.044 0.097 -0.227 -0.305 0.341 0.602 -0.172 -0.767 0.010 -0.130 -0.313 0.204 0.175 -11.168 1.117 -11.168 0.872 0.319 -0.551 -0.027 0.122 -11.127 0.231 0.508 0.489 0.008 0.035 -0.032 -0.012 0.260 0.056 0.026 -0.425 -0.124 0.127 0.091 -0.113 0.052 0.265 -0.367 -0.021 -0.046 0.238 0.036 -0.275 0.233 0.114 0.233 -0.818 -0.194 -0.199 0.453 -0.175 -0.174 0.443 -0.245 -0.136 -0.779 0.289 0.607 -0.572 0.131 0.156 -0.086 -0.236 -0.673 0.455 0.016 -0.014 0.033 0.390 -0.665 0.051 -0.774 0.237 0.484 -0.255 -11.383 1.436 -11.383 0.371 -0.329 0.274 0.131 -0.153 -11.528 0.724 0.308 0.151 -0.475 0.710 -0.139 -0.441 0.292 -0.153 0.222 -0.495 -0.099 -0.007 0.212 -0.132 0.129 0.051 0.061 -0.274 -0.070 -0.030 0.397 -0.414 0.069 -0.022 0.536 -0.953 -0.204 -0.034 0.365 -0.205 -0.364 0.451 0.124 -0.384 -0.914 0.024 0.940 -0.904 0.095 0.085 0.150 -0.391 -0.524 0.168 0.296 -0.069 0.115 0.485 -0.811 -0.079 -0.779 0.084 0.718 -0.490 -11.863 1.361 -11.863 0.516 -0.270 -0.024 0.305 -0.071 -11.896 0.677 0.489 -0.004 -0.591 0.557 0.001 -0.211 0.621 -0.574 -0.387 0.036 0.390 -0.461 -0.450 0.300 0.415 -0.373 -0.613 0.311 0.222 -0.469 -0.083 0.222 0.607 -0.461 -0.050 -0.350 0.328 -0.515 -0.218 0.245 0.291 -0.242 -0.591 0.341 -0.029 -0.219 0.253 -0.045 0.602 -0.536 -0.561 0.156 0.113 -0.147 -0.718 0.493 0.496 -0.270 -1.064 0.359 -0.093 -0.311 0.044 0.293 -11.627 0.993 -11.627 1.006 0.329 -0.496 -0.271 0.271 -11.409 0.172 0.518 0.527 0.314 -0.187 0.207 -0.467 frame1 LUT 5 4 4 0 0.000 0.190 -0.249 0.312 -0.365 0.581 -0.840 0.284 -0.458 0.738 -0.527 -0.044 -0.581 0.315 -0.529 0.379 -0.391 0.361 -0.458 0.228 -0.294 0.512 -0.661 0.393 -0.671 0.463 -0.336 0.084 -0.378 0.103 -0.358 0.479 -0.410 0.398 -0.291 0.212 -0.500 0.494 -0.802 0.257 -0.280 0.650 -0.224 -0.021 -0.764 0.179 -0.318 0.379 -0.386 0.244 -0.310 0.126 -0.124 0.592 -0.786 0.434 -0.830 0.339 -0.445 0.316 -0.405 0.228 -0.478 0.411 -0.355 0.425 -0.320 0.283 -0.646 0.565 -0.615 0.296 -0.644 0.483 0.002 -0.272 -0.372 -0.126 -0.053 -0.001 0.164 0.243 -0.222 0.379 -0.602 0.444 -0.500 0.362 -0.627 0.323 -0.072 0.206 -0.635 0.020 -0.022 0.305 -0.385 0.175 -0.083 0.387 -0.691 0.392 -0.616 0.518 -0.729 0.450 -0.190 0.133 -0.599 0.064 0.005 0.225 -0.354 0.211 -0.063 0.255 -0.531 0.510 -0.490 0.270 -0.604 0.270 -0.133 0.176 -0.410 -0.015 -0.091 0.378 -0.374 0.425 -0.557 0.386 -0.576 0.438 -0.755 0.386 -0.423 0.565 -0.314 0.020 -0.510 0.111 -0.494 0.413 -0.187 0.080 -0.216 0.399 -0.388 0.485 -0.571 0.380 -0.676 0.221 -0.121 0.222 -0.418 -0.000 -0.218 0.465 -0.396 0.272 -0.307 0.291 -0.395 0.296 -0.696 0.348 -0.181 0.428 -0.204 0.089 -0.469 -0.138 -0.047 0.444 -0.390 0.171 -0.089 0.169 -0.304 0.595 -0.688 0.357 -0.764 0.304 -0.239 0.210 -0.394 0.005 -0.247 0.371 -0.217 0.000 0.000 0.000 0.000 0.539 -0.653 0.302 -0.561 0.000 0.000 0.000 0.000 -0.154 -0.308 0.307 0.079 0.311 -0.354 0.290 -0.407 0.503 -0.632 0.315 -0.529 0.397 -0.288 0.109 -0.348 0.090 -0.226 0.394 -0.384 0.000 0.000 0.000 0.000 0.327 -0.587 0.375 -0.353 0.370 -0.269 0.207 -0.466 -0.028 -0.117 0.374 -0.320 0.273 -0.272 0.337 -0.515 0.409 -0.449 0.175 -0.303 0.485 -0.489 0.225 -0.475 0.114 -0.556 0.450 -0.198 0.208 -0.263 0.405 -0.539 0.500 -0.604 0.314 -0.548 0.471 -0.132 0.019 -0.539 0.203 -0.321 0.405 -0.466 0.264 -0.343 0.341 -0.427 0.477 -0.770 0.595 -0.967 -0.055 0.232 0.113 -0.356 -0.010 -0.197 0.458 -0.394 0.183 -0.146 0.414 -0.669 0.346 -0.623 0.476 -0.537 0.671 -0.310 0.154 -1.033 0.063 -0.160 0.418 -0.465 0.092 -0.088 0.253 -0.318 0.615 -0.667 0.404 -0.958 0.259 -0.264 0.273 -0.392 0.043 -0.265 0.500 -0.468 0.192 -0.163 0.451 -0.743 0.322 -0.415 0.469 -0.700 0.116 0.281 -0.050 -0.444 -0.222 0.233 0.132 -0.198 0.099 -0.081 0.472 -0.746 0.038 -0.563 0.810 -0.882 -0.181 0.422 0.294 -0.858 -0.071 0.082 0.445 -0.672 -0.124 0.182 0.463 -0.813 0.001 -0.268 0.680 -0.820 -0.078 0.269 0.324 -0.745 -0.180 0.181 0.354 -0.502 0.123 0.104 0.218 -0.570 0.563 -0.681 0.448 -0.901 -0.165 0.350 0.217 -0.576 -0.006 -0.028 0.417 -0.541 0.186 -0.411 0.592 -0.730 0.282 -0.420 0.489 -0.659 0.323 -0.063 0.256 -0.743 0.073 -0.325 0.442 -0.338 -0.080 0.006 0.485 -0.622 0.172 -0.672 0.740 -0.796 -0.497 0.607 0.218 -0.724 -0.167 -0.032 0.385 -0.276 -0.002 -0.147 0.583 -0.735 0.112 -0.796 0.650 -0.370 0.257 -0.019 0.301 -0.770 0.025 -0.070 0.460 -0.612 0.066 0.001 0.241 -0.376 0.582 -0.811 0.468 -0.863 -0.152 0.189 0.245 -0.369 -0.037 -0.213 0.372 -0.203 0.000 0.000 0.000 0.000 0.446 -0.404 0.320 -0.658 0.000 0.000 0.000 0.000 -0.145 -0.173 0.422 -0.203 0.180 -0.253 0.277 -0.292 0.362 -0.620 0.512 -0.648 -0.113 0.301 0.029 -0.282 -0.023 -0.255 0.563 -0.513 0.000 0.000 0.000 0.000 0.248 -0.532 0.540 -0.586 0.135 -0.145 0.266 -0.330 -0.121 0.105 0.425 -0.592 0.134 -0.158 0.461 -0.667 0.417 -0.336 0.260 -0.567 0.294 -0.331 0.356 -0.516 0.080 -0.664 0.674 -0.482 0.237 -0.081 0.144 -0.376 0.531 -0.552 0.194 -0.457 0.598 -0.146 -0.050 -0.697 0.142 -0.242 0.257 -0.224 0.216 -0.331 0.328 -0.343 0.414 -0.466 0.391 -0.662 0.061 0.069 0.165 -0.345 -0.133 -0.130 0.438 -0.287 0.193 0.007 0.182 -0.478 0.303 -0.665 0.476 -0.426 0.559 -0.047 -0.044 -0.766 -0.025 0.017 0.315 -0.395 0.088 -0.083 0.018 -0.029 0.470 -0.385 0.316 -0.727 0.149 -0.023 0.204 -0.405 -0.004 -0.309 0.434 -0.244 0.174 0.005 0.305 -0.659 0.205 -0.316 0.469 -0.600 0.105 0.376 -0.193 -0.411 -0.235 0.250 -0.172 0.102 0.127 -0.037 0.280 -0.477 0.030 -0.303 0.618 -0.658 -0.260 0.594 0.149 -0.871 -0.261 0.207 0.209 -0.225 -0.310 0.371 0.383 -0.747 -0.294 -0.231 0.733 -0.578 -0.436 0.589 0.242 -0.800 -0.357 0.338 0.195 -0.304 -0.049 0.266 0.099 -0.395 0.364 -0.713 0.505 -0.549 -0.391 0.366 0.293 -0.467 -0.157 0.076 0.283 -0.265 0.204 -0.268 0.415 -0.546 0.296 -0.491 0.427 -0.481 0.310 0.035 0.074 -0.550 0.094 -0.241 0.321 -0.257 0.004 -0.119 0.441 -0.476 0.290 -0.674 0.647 -0.776 -0.496 0.343 0.501 -0.720 -0.295 -0.041 0.520 -0.360 -0.018 0.016 0.410 -0.572 -0.044 -0.754 0.695 -0.290 -0.089 0.217 0.444 -0.896 -0.045 0.091 0.396 -0.624 -0.029 0.061 0.178 -0.242 0.435 -0.543 0.434 -0.711 -0.194 0.152 0.279 -0.320 -0.117 -0.072 0.329 -0.200 0.000 0.000 0.000 0.000 0.392 -0.363 0.243 -0.459 0.000 0.000 0.000 0.000 -0.175 -0.104 0.198 0.052 0.073 -0.090 0.242 -0.275 0.332 -0.263 0.353 -0.666 -0.116 0.155 0.186 -0.275 -0.125 -0.010 0.338 -0.276 0.000 0.000 0.000 0.000 -0.012 -0.506 0.633 -0.409 0.104 0.021 0.214 -0.413 -0.223 0.203 0.365 -0.505 0.236 -0.121 0.205 -0.416 0.278 -0.214 0.184 -0.341 0.283 -0.190 0.198 -0.396 -0.039 -0.338 0.423 -0.160 0.435 -0.654 0.334 -0.411 0.608 -0.835 0.191 -0.369 0.616 -0.267 0.002 -0.656 0.200 -0.612 0.406 -0.198 0.376 -0.563 0.325 -0.372 0.632 -0.849 0.351 -0.692 0.401 -0.378 0.130 -0.294 0.080 -0.506 0.534 -0.339 0.403 -0.434 0.287 -0.479 0.500 -0.934 0.309 -0.280 0.728 -0.430 -0.036 -0.675 0.098 -0.489 0.418 -0.184 0.297 -0.388 0.172 -0.183 0.586 -0.732 0.382 -0.751 0.330 -0.418 0.310 -0.406 0.025 -0.500 0.495 -0.208 0.341 -0.345 0.417 -0.712 0.504 -0.663 0.347 -0.560 0.396 0.002 -0.261 -0.238 -0.091 0.010 0.142 -0.072 0.177 -0.194 0.348 -0.468 0.332 -0.527 0.540 -0.754 0.184 -0.092 0.174 -0.327 0.005 -0.082 0.420 -0.486 0.090 -0.058 0.350 -0.514 0.293 -0.609 0.466 -0.438 0.201 -0.013 0.069 -0.303 -0.106 0.081 0.273 -0.314 0.111 0.049 0.236 -0.498 0.450 -0.489 0.320 -0.571 0.195 -0.070 0.137 -0.316 -0.034 0.047 0.339 -0.464 0.413 -0.651 0.497 -0.688 0.476 -0.819 0.426 -0.518 0.554 -0.357 0.172 -0.678 0.100 -0.666 0.607 -0.369 0.175 -0.352 0.446 -0.463 0.489 -0.661 0.402 -0.638 0.184 -0.266 0.359 -0.417 -0.074 -0.346 0.639 -0.501 0.272 -0.381 0.385 -0.476 0.343 -0.676 0.280 -0.165 0.415 -0.349 0.176 -0.412 0.008 -0.388 0.560 -0.403 0.183 -0.109 0.253 -0.423 0.521 -0.717 0.405 -0.660 0.328 -0.341 0.275 -0.424 0.045 -0.498 0.542 -0.315 0.000 0.000 0.000 0.000 0.583 -0.857 0.301 -0.478 0.000 0.000 0.000 0.000 -0.021 -0.477 0.388 -0.018 0.356 -0.470 0.288 -0.363 0.520 -0.682 0.333 -0.549 0.346 -0.419 0.172 -0.226 0.151 -0.431 0.489 -0.425 0.000 0.000 0.000 0.000 0.403 -0.664 0.328 -0.337 0.363 -0.402 0.257 -0.391 0.004 -0.282 0.426 -0.266 0.248 -0.273 0.363 -0.517 0.417 -0.480 0.198 -0.321 0.479 -0.614 0.294 -0.460 0.211 -0.551 0.617 -0.675 frame2 LUT 5 4 4 0 0.000 0.517 -0.296 -0.621 0.144 0.414 -0.065 -0.695 0.130 0.852 -0.372 -0.740 -0.280 -0.283 0.095 -0.592 0.533 0.632 -0.475 -0.508 0.039 0.459 -0.035 -0.800 0.105 0.634 -0.326 -0.343 -0.214 -0.322 -0.109 -0.480 0.638 0.968 -0.738 -0.642 -0.315 0.282 0.050 -0.755 0.210 0.933 -0.216 -0.783 -0.625 -0.382 0.070 -0.704 0.650 0.704 -0.542 -0.881 0.190 0.408 0.188 -1.057 0.074 0.740 -0.468 -0.543 -0.118 -0.533 0.062 -1.125 0.853 0.550 -0.046 -0.701 -0.071 0.398 0.457 -1.406 -0.100 0.667 -0.096 -0.902 -0.087 -0.727 0.247 -1.045 0.786 0.386 -0.108 -0.259 -0.105 0.146 -0.028 -0.780 0.411 0.510 -0.163 -0.234 -0.265 -0.672 0.096 -0.370 0.613 0.623 -0.197 -0.528 -0.161 0.254 0.191 -0.957 0.203 0.604 0.045 -0.673 -0.285 -0.501 0.201 -0.507 0.526 0.553 -0.218 -0.662 0.058 0.204 0.468 -1.149 0.020 0.686 -0.393 -0.449 -0.158 -0.778 0.207 -0.563 0.665 0.601 -0.493 -0.292 -0.064 0.369 -0.052 -0.571 0.099 0.761 -0.256 -0.549 -0.350 -0.367 -0.001 -0.763 0.710 0.504 -0.265 -0.221 -0.165 0.307 -0.006 -0.573 0.130 0.565 -0.217 -0.178 -0.365 -0.455 0.269 -0.618 0.500 0.822 -0.702 -0.445 -0.180 0.348 -0.124 -0.692 0.252 0.879 -0.294 -0.920 -0.291 -0.647 0.195 -0.851 0.733 0.698 -0.331 -0.641 -0.086 0.343 0.286 -0.853 -0.060 0.779 -0.339 -0.411 -0.433 -0.930 0.419 -1.082 0.736 0.640 -0.262 -0.747 0.017 0.445 0.326 -1.219 -0.065 0.712 0.026 -0.980 -0.256 -0.850 0.275 -0.864 0.754 0.639 -0.314 -0.533 -0.077 0.307 -0.278 -0.506 0.303 0.688 -0.301 -0.425 -0.263 -0.509 0.058 -0.356 0.561 0.649 -0.462 -0.535 0.022 0.333 -0.014 -0.883 0.272 0.711 -0.109 -0.567 -0.395 -0.536 0.172 -0.583 0.600 0.714 -0.545 -0.858 0.167 0.427 0.151 -0.969 0.049 0.815 -0.530 -0.598 -0.172 -0.317 -0.027 -0.620 0.646 0.550 -0.382 -0.492 0.082 0.622 -0.148 -0.979 0.073 0.711 -0.165 -0.636 -0.274 -0.270 -0.026 -0.459 0.547 0.482 -0.254 -0.404 0.013 0.509 -0.201 -0.410 -0.067 0.493 -0.023 -0.413 -0.223 -0.328 0.014 -0.122 0.350 0.709 -0.587 -0.371 -0.111 0.417 -0.136 -0.766 0.222 0.739 0.069 -0.624 -0.660 -0.278 -0.122 -0.361 0.563 0.635 -0.573 -0.658 0.191 0.429 0.132 -0.897 0.030 0.558 -0.242 -0.383 -0.128 -0.561 0.018 -0.936 0.838 0.547 -0.144 -0.598 -0.039 0.243 0.683 -1.214 -0.359 0.681 -0.143 -0.725 -0.176 -0.511 0.360 -1.261 0.676 0.456 -0.084 -0.401 -0.108 -0.062 0.544 -0.543 -0.154 0.426 0.201 -0.402 -0.415 -0.457 0.398 -0.554 0.348 0.544 -0.151 -0.497 -0.101 0.041 0.554 -0.739 -0.146 0.559 0.124 -0.683 -0.297 -0.323 0.247 -0.555 0.415 0.689 -0.369 -0.751 0.027 0.235 0.505 -0.909 -0.198 0.709 -0.407 -0.375 -0.252 -0.421 0.357 -0.808 0.487 0.460 -0.327 -0.124 -0.136 0.329 -0.020 -0.321 -0.063 0.476 0.108 -0.335 -0.437 -0.426 0.137 -0.334 0.446 0.292 -0.082 -0.229 -0.032 -0.069 -0.350 0.222 0.132 0.321 0.237 -0.305 -0.392 -0.527 0.296 0.121 -0.013 0.654 -0.376 -0.322 -0.224 -0.042 -0.180 -0.049 0.237 0.736 0.068 -0.627 -0.647 -0.213 0.174 -0.323 0.275 0.708 -0.496 -0.710 0.066 0.124 -0.283 -0.044 0.161 0.585 -0.110 -0.320 -0.373 -0.630 0.201 -0.514 0.589 0.607 -0.250 -0.500 -0.107 0.421 0.110 -0.887 0.059 0.727 -0.076 -0.865 -0.238 -0.818 0.359 -0.665 0.604 0.508 -0.166 -0.535 -0.005 0.319 -0.583 -0.111 0.213 0.384 0.080 -0.205 -0.376 -0.692 0.341 -0.203 0.317 0.639 -0.275 -0.512 -0.128 0.264 -0.225 -0.499 0.306 0.519 0.184 -0.749 -0.259 -0.420 0.218 -0.287 0.345 0.599 -0.546 -0.585 0.181 0.470 -0.262 -0.477 0.087 0.541 -0.361 -0.181 -0.176 -0.451 -0.009 -0.461 0.631 0.630 -0.419 -0.698 0.122 0.461 -0.160 -0.792 0.203 0.911 -0.318 -0.813 -0.418 -0.338 -0.042 -0.551 0.637 0.537 -0.393 -0.339 -0.004 0.216 -0.008 -0.551 0.215 0.720 -0.265 -0.491 -0.306 -0.427 0.031 -0.390 0.557 0.783 -0.594 -0.405 -0.214 0.188 -0.117 -0.519 0.311 0.875 -0.141 -0.711 -0.626 -0.455 -0.065 -0.382 0.630 0.647 -0.577 -0.761 0.231 0.223 0.216 -0.912 0.189 0.892 -0.543 -0.661 -0.277 -0.484 0.050 -0.944 0.791 0.495 -0.172 -0.528 0.014 0.350 0.253 -1.033 0.063 0.449 0.363 -0.959 -0.260 -0.742 0.239 -1.083 0.807 0.407 -0.222 -0.347 0.043 0.099 -0.117 -0.320 0.270 0.279 0.349 -0.409 -0.396 -0.499 0.088 -0.318 0.514 0.445 -0.115 -0.393 -0.069 -0.054 0.066 -0.486 0.351 0.189 0.512 -0.427 -0.536 -0.573 0.167 -0.188 0.409 0.538 -0.379 -0.771 0.254 0.241 0.035 -0.741 0.258 0.503 -0.008 -0.475 -0.203 -0.862 0.153 -0.615 0.753 0.619 -0.289 -0.529 -0.070 0.538 0.029 -0.814 -0.060 0.483 -0.155 -0.185 -0.279 -0.217 0.050 -0.623 0.541 0.354 -0.174 -0.229 -0.026 0.126 -0.260 -0.232 0.290 0.293 -0.032 0.069 -0.420 -0.427 0.180 -0.334 0.411 0.923 -0.579 -0.724 -0.270 0.114 -0.021 -0.314 0.174 0.494 -0.046 -0.096 -0.542 -0.206 0.249 -0.652 0.388 0.405 -0.253 -0.699 0.288 0.285 -0.193 -0.449 0.232 0.456 -0.267 -0.034 -0.287 -0.590 0.189 -0.675 0.650 0.565 -0.077 -0.888 0.045 0.302 0.346 -1.099 0.041 0.652 0.105 -1.067 -0.191 -0.811 0.265 -0.882 0.753 0.485 -0.126 -0.497 -0.035 0.332 -0.334 -0.161 0.076 0.555 -0.188 -0.328 -0.223 -0.500 0.178 -0.253 0.404 0.629 -0.120 -0.746 -0.094 0.075 -0.034 -0.540 0.359 0.572 0.098 -0.814 -0.193 -0.599 0.239 -0.311 0.436 0.618 -0.385 -0.906 0.221 0.374 0.061 -0.780 0.110 0.678 -0.404 -0.532 -0.070 -0.470 0.003 -0.531 0.663 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.593 -0.388 -0.389 -0.053 0.513 -0.220 -0.515 0.021 0.625 -0.281 -0.302 -0.281 -0.299 -0.102 -0.289 0.523 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.607 -0.393 -0.583 0.067 0.405 0.182 -1.005 0.061 0.736 -0.438 -0.327 -0.322 -0.430 -0.090 -0.897 0.833 0.547 -0.179 -0.456 -0.110 0.423 0.392 -1.149 -0.159 0.660 -0.075 -0.741 -0.197 -0.776 0.487 -1.064 0.619 0.428 -0.180 -0.241 -0.111 0.109 -0.022 -0.235 0.120 0.508 -0.254 -0.142 -0.263 -0.761 0.361 -0.329 0.411 0.616 -0.139 -0.483 -0.244 0.154 0.220 -0.770 0.185 0.650 0.013 -0.677 -0.327 -0.629 0.303 -0.437 0.466 0.505 -0.287 -0.399 0.004 0.186 0.281 -0.683 0.035 0.697 -0.400 -0.311 -0.296 -0.762 0.444 -0.742 0.538 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.499 -0.238 -0.336 -0.080 0.164 -0.102 -0.311 0.191 0.445 -0.212 -0.079 -0.270 -0.544 0.128 -0.128 0.385 0.582 -0.408 -0.390 -0.020 0.196 -0.331 -0.368 0.362 0.663 -0.250 -0.307 -0.381 -0.580 0.038 -0.251 0.550 0.638 -0.293 -0.822 0.087 0.208 0.160 -0.610 0.101 0.651 -0.279 -0.337 -0.298 -0.693 0.228 -0.778 0.703 0.755 -0.500 -0.542 -0.122 0.472 0.091 -1.010 0.072 0.843 -0.199 -0.863 -0.348 -0.766 0.250 -0.944 0.768 0.580 -0.327 -0.468 -0.022 0.332 -0.186 -0.654 0.294 0.555 -0.299 -0.237 -0.202 -0.443 -0.007 -0.564 0.672 0.832 -0.487 -0.545 -0.284 0.388 0.059 -0.949 0.178 0.861 -0.104 -0.819 -0.542 -0.373 0.056 -0.691 0.650 0.560 -0.444 -0.591 0.172 0.434 0.136 -0.983 0.063 0.671 -0.429 -0.330 -0.202 -0.290 0.111 -0.719 0.580 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.484 0.302 -0.480 -0.620 1.266 -0.806 -1.222 -0.752 -0.861 -2.012 1.502 -1.434 -13.942 -13.942 2.000 -13.942 -13.942 -13.942 -13.942 2.000 1.305 -2.258 -0.057 -1.482 1.433 -1.089 -2.226 -0.700 -0.967 -1.993 1.473 -1.120 -0.528 -1.031 -1.566 1.309 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.813 -0.789 -1.110 0.264 0.604 -0.703 -0.513 0.220 0.308 -0.476 -0.596 0.466 0.573 -0.904 -0.501 0.346 0.575 -0.435 -0.711 0.213 0.443 -0.527 -0.263 0.154 0.273 -0.256 -0.496 0.316 0.285 -0.645 -0.372 0.454 0.587 -0.549 -0.502 0.149 0.492 -0.489 -0.424 0.183 0.214 -0.354 -0.382 0.368 0.228 -0.592 -0.284 0.427 0.709 -0.811 -0.958 0.357 0.475 -0.743 -0.336 0.288 0.322 -0.474 -0.781 0.534 0.371 -0.879 -0.628 0.601 0.695 -0.570 -0.872 0.215 0.577 -0.561 -0.447 0.133 0.339 -0.156 -0.780 0.328 0.299 -0.629 -0.704 0.594 0.141 0.161 -0.351 -0.006 0.382 -0.544 -0.100 0.108 0.239 -0.294 -0.181 0.166 0.420 -0.549 -0.389 0.281 0.489 -0.334 -0.414 0.075 0.399 -0.482 -0.098 0.044 0.045 0.076 -0.475 0.256 0.219 -0.280 -0.395 0.324 0.421 -0.339 -0.678 0.317 0.521 -0.508 -0.304 0.073 0.321 -0.336 -0.446 0.293 0.253 -0.447 -0.638 0.519 0.687 -0.594 -0.588 0.087 0.537 -0.460 -0.348 0.051 0.404 -0.229 -0.377 0.076 0.337 -0.771 -0.300 0.420 0.488 -0.380 -0.271 0.000 0.083 -0.003 -0.052 -0.032 0.341 -0.305 -0.236 0.104 0.008 -0.036 -0.295 0.268 0.535 -0.378 -0.395 0.030 0.411 -0.487 -0.339 0.221 0.029 -0.067 -0.335 0.301 0.353 -0.332 -0.168 0.054 0.539 -0.545 -0.540 0.232 0.321 -0.359 -0.215 0.149 0.231 -0.481 -0.203 0.312 0.125 -0.580 -0.581 0.653 0.769 -0.975 -1.091 0.398 0.619 -0.614 -0.616 0.212 0.406 -0.512 -0.556 0.371 0.369 -0.834 -0.845 0.670 0.444 -0.455 -0.566 0.304 0.364 -0.420 -0.207 0.137 0.425 -0.413 -0.495 0.259 0.350 -0.365 -0.458 0.288 0.643 -0.518 -0.661 0.148 0.413 -0.517 -0.230 0.160 0.300 -0.402 -0.295 0.260 0.344 -0.526 -0.515 0.418 0.517 -0.628 -1.020 0.514 0.487 -0.545 -0.375 0.191 0.318 -0.480 -0.839 0.563 0.252 -0.657 -0.734 0.654 0.595 -0.488 -0.770 0.251 0.559 -0.738 -0.209 0.086 0.344 -0.363 -0.395 0.254 0.472 -0.797 -0.466 0.393 0.428 -0.259 -0.350 0.048 0.349 -0.240 -0.259 0.062 0.281 -0.390 -0.113 0.133 0.118 -0.515 -0.082 0.346 0.490 -0.365 -0.449 0.120 0.186 -0.052 -0.316 0.131 0.082 -0.432 -0.334 0.492 0.396 -0.699 -0.109 0.190 0.458 -0.453 -0.510 0.256 0.416 -0.562 -0.380 0.287 0.232 -0.561 -0.433 0.493 0.148 -0.684 -0.607 0.690 0.623 -0.524 -0.655 0.176 -0.082 0.468 -0.733 0.098 -0.043 -0.335 -0.322 0.522 0.225 -0.243 -0.552 0.383 -0.102 0.415 -0.850 0.239 0.145 -0.145 -0.138 0.112 -0.109 0.397 -0.529 0.087 0.043 -0.286 -0.304 0.422 0.437 -0.331 -0.481 0.183 -0.048 0.095 -0.009 -0.044 0.126 -0.101 -0.634 0.413 -0.165 -0.232 0.097 0.247 0.240 0.163 -0.876 0.208 0.180 -0.163 -0.349 0.249 0.136 -0.166 -0.232 0.211 -0.006 -0.186 -0.389 0.445 0.493 -0.462 -0.406 0.154 0.183 -0.320 0.046 0.044 0.287 0.023 -0.521 0.093 0.221 -0.518 -0.314 0.414 0.245 -0.183 -0.406 0.239 0.314 -0.145 -0.037 -0.188 0.084 0.054 -0.168 0.018 -0.038 -0.275 -0.068 0.317 0.277 -0.144 -0.353 0.138 0.102 -0.343 -0.063 0.240 0.104 -0.222 -0.351 0.360 0.072 -0.360 0.081 0.153 0.545 -0.515 -0.597 0.239 0.234 -0.276 0.010 -0.013 0.358 -0.394 -0.428 0.280 -0.072 -0.481 -0.238 0.570 0.555 -0.624 -0.514 0.240 0.358 0.033 -0.770 0.149 0.174 -0.303 -0.551 0.463 0.205 -0.712 -0.402 0.565 0.394 -0.146 -0.455 0.075 0.441 -0.473 -0.218 0.087 0.119 -0.104 -0.536 0.372 -0.078 -0.227 -0.232 0.429 0.477 -0.482 -0.317 0.123 -0.053 0.201 -0.478 0.224 0.289 -0.357 -0.811 0.514 0.109 -0.430 -0.089 0.309 0.509 -0.603 -0.460 0.252 0.581 -0.673 -0.319 0.104 0.389 -0.540 -0.642 0.446 0.133 -0.683 -0.412 0.612 0.545 -0.444 -0.949 0.365 0.433 -0.599 -0.344 0.266 0.236 -0.210 -0.425 0.279 0.335 -0.676 -0.369 0.420 0.324 -0.504 -0.408 0.367 0.152 -0.474 -0.204 0.379 0.356 -0.500 -0.430 0.346 0.027 -0.473 -0.232 0.495 0.434 -0.388 -0.383 0.161 0.061 -0.164 -0.430 0.402 0.188 -0.222 -0.318 0.265 0.068 -0.473 -0.148 0.410 0.478 -0.599 -0.654 0.391 0.117 -0.213 -0.189 0.234 0.286 -0.597 -0.347 0.415 0.075 -0.609 -0.540 0.681 0.458 -0.494 -0.753 0.404 0.273 -0.336 -0.205 0.179 0.184 -0.133 -0.557 0.347 0.039 -0.540 -0.646 0.719 0.238 0.036 -0.534 0.144 0.455 -0.137 -0.432 -0.031 -0.252 0.123 -0.354 0.366 0.353 -0.345 -0.556 0.328 0.256 -0.040 -0.291 0.023 0.007 -0.075 0.153 -0.098 -0.088 0.026 0.062 -0.005 -0.033 -0.366 -0.220 0.473 0.277 -0.345 -0.504 0.375 0.352 -0.405 -0.104 0.054 0.113 -0.186 -0.582 0.455 0.191 -0.199 -0.511 0.362 0.568 -0.494 -0.555 0.172 0.187 -0.368 -0.009 0.128 0.088 -0.050 -0.178 0.120 0.092 -0.247 -0.238 0.314 0.186 -0.563 0.317 -0.090 0.189 -0.248 -0.015 0.041 0.090 -0.043 0.140 -0.212 -0.078 -0.125 0.033 0.155 0.425 -0.319 -0.360 0.106 0.019 -0.522 -0.090 0.434 -0.142 0.262 -0.191 0.026 0.086 -0.499 0.243 0.067 0.116 -0.116 0.000 -0.010 0.282 -0.422 -0.126 0.164 -0.075 -0.716 0.573 -0.068 0.117 -0.522 -0.566 0.626 0.549 -0.479 -0.911 0.364 0.396 -0.065 -0.666 0.134 0.188 -0.589 -0.018 0.273 0.206 -0.796 -0.437 0.616 0.381 -0.258 -0.548 0.236 0.471 -0.554 -0.147 0.042 0.185 -0.021 -0.565 0.265 0.155 -0.242 -0.252 0.264 0.473 -0.450 -0.288 0.086 0.279 -0.465 -0.207 0.258 -0.071 -0.388 -0.076 0.417 0.144 -0.691 -0.174 0.475 0.417 -0.271 -0.738 0.306 0.362 -0.491 -0.273 0.233 0.185 -0.459 -0.672 0.593 -0.069 -0.468 -0.434 0.663 0.722 -0.939 -1.051 0.430 0.558 -0.617 -0.555 0.257 0.185 -0.345 -0.656 0.528 0.466 -1.110 -0.562 0.564 0.525 -0.569 -0.720 0.355 0.457 -0.693 -0.482 0.370 0.261 -0.480 -0.570 0.497 0.183 -0.832 -0.061 0.427 0.456 -0.491 -0.808 0.429 0.308 -0.366 -0.365 0.274 -0.031 -0.232 -0.646 0.614 0.236 -0.784 -0.282 0.504 0.496 -0.742 -0.834 0.517 0.413 -0.816 -0.365 0.405 0.244 -0.751 -0.557 0.624 0.233 -1.041 -0.653 0.768 0.619 -0.694 -0.659 0.278 0.460 -0.464 -0.300 0.122 0.093 -0.284 -0.651 0.561 0.143 -0.466 -0.731 0.650 0.235 -0.152 -0.431 0.240 0.352 -0.538 -0.119 0.157 0.213 -0.134 -0.237 0.112 0.124 -0.311 -0.411 0.436 0.456 -0.407 -0.566 0.261 0.090 -0.255 -0.090 0.212 0.232 -0.392 -0.518 0.449 0.031 -0.199 -0.220 0.320 0.347 -0.351 -0.835 0.469 0.578 -0.793 -0.328 0.181 0.095 -0.196 -0.699 0.529 0.044 -0.341 -0.430 0.523 0.632 -0.770 -0.390 0.138 0.458 -0.458 -0.241 0.073 0.452 -0.204 -0.753 0.226 0.271 -0.935 -0.240 0.510 0.345 -0.372 -0.509 0.326 0.199 -0.387 -0.222 0.299 0.154 -0.305 -0.322 0.354 0.021 -0.435 -0.288 0.513 0.486 -0.237 -0.434 0.016 0.214 -0.460 0.057 0.102 -0.057 0.153 -0.594 0.339 0.318 -0.751 -0.017 0.228 0.464 -0.567 -0.608 0.366 0.415 -0.639 -0.418 0.352 0.365 -0.709 -0.570 0.513 0.107 -0.801 -0.498 0.715 0.661 -0.867 -0.881 0.409 0.480 -0.661 -0.466 0.320 0.312 -0.576 -0.540 0.485 0.158 -0.973 -0.798 0.848 0.443 -0.449 -0.662 0.351 0.484 -0.592 -0.389 0.232 0.309 -0.453 -0.467 0.387 0.149 -0.376 -0.396 0.444 0.615 -0.575 -0.513 0.133 0.280 -0.459 -0.426 0.394 0.310 -0.293 -0.668 0.395 0.279 -0.819 -0.382 0.539 0.492 -0.705 -0.975 0.557 0.561 -0.706 -0.518 0.279 0.294 -0.698 -0.779 0.655 0.180 -0.896 -0.714 0.783 Intron LUT 5 4 4 0 0.000 0.862 -0.827 -1.134 0.217 0.558 -0.596 -0.547 0.240 0.282 -0.488 -0.481 0.438 0.570 -0.889 -0.511 0.349 0.513 -0.344 -0.678 0.215 0.429 -0.432 -0.248 0.097 0.166 -0.188 -0.405 0.316 0.293 -0.597 -0.424 0.453 0.526 -0.522 -0.404 0.148 0.571 -0.540 -0.450 0.131 0.035 -0.480 -0.336 0.552 0.248 -0.531 -0.318 0.399 0.681 -0.785 -0.867 0.343 0.424 -0.661 -0.350 0.312 0.286 -0.296 -0.757 0.459 0.351 -0.854 -0.631 0.610 0.649 -0.490 -0.802 0.198 0.580 -0.488 -0.490 0.112 0.259 -0.080 -0.658 0.290 0.282 -0.511 -0.633 0.524 -0.023 0.309 -0.285 -0.064 0.403 -0.583 -0.098 0.105 0.211 -0.325 -0.084 0.138 0.330 -0.541 -0.331 0.334 0.406 -0.294 -0.283 0.052 0.491 -0.529 -0.182 0.028 -0.127 0.229 -0.454 0.242 0.236 -0.213 -0.454 0.298 0.385 -0.342 -0.616 0.325 0.578 -0.487 -0.399 0.050 0.259 -0.251 -0.274 0.184 0.290 -0.411 -0.662 0.478 0.670 -0.542 -0.555 0.059 0.565 -0.339 -0.427 -0.020 0.372 -0.265 -0.225 0.026 0.340 -0.803 -0.166 0.344 0.483 -0.410 -0.181 -0.048 -0.084 0.223 -0.097 -0.069 0.369 -0.365 -0.139 0.035 -0.048 0.137 -0.373 0.215 0.460 -0.274 -0.378 0.039 0.467 -0.508 -0.399 0.209 -0.131 -0.032 -0.381 0.424 0.430 -0.335 -0.060 -0.151 0.570 -0.590 -0.573 0.237 0.279 -0.209 -0.259 0.119 0.159 -0.557 0.038 0.235 0.132 -0.493 -0.649 0.638 0.715 -0.902 -1.053 0.424 0.593 -0.597 -0.667 0.264 0.420 -0.541 -0.466 0.322 0.405 -0.817 -0.786 0.612 0.387 -0.436 -0.456 0.291 0.364 -0.466 -0.147 0.119 0.345 -0.404 -0.400 0.283 0.388 -0.355 -0.523 0.279 0.580 -0.526 -0.533 0.163 0.378 -0.526 -0.136 0.133 0.210 -0.499 -0.109 0.273 0.310 -0.419 -0.541 0.406 0.473 -0.523 -1.006 0.504 0.464 -0.519 -0.401 0.221 0.281 -0.320 -0.797 0.494 0.220 -0.637 -0.718 0.664 0.552 -0.373 -0.782 0.239 0.492 -0.685 -0.074 0.031 0.295 -0.413 -0.184 0.192 0.509 -0.812 -0.493 0.375 0.360 -0.183 -0.264 0.004 0.297 -0.109 -0.354 0.086 0.201 -0.460 0.092 0.081 0.093 -0.465 -0.076 0.334 0.463 -0.286 -0.420 0.075 0.079 0.107 -0.351 0.114 -0.171 -0.613 -0.346 0.740 0.560 -0.755 -0.151 0.047 0.359 -0.394 -0.429 0.279 0.409 -0.555 -0.461 0.339 0.185 -0.541 -0.347 0.474 0.217 -0.684 -0.593 0.634 0.565 -0.489 -0.588 0.192 -0.222 0.661 -0.911 0.043 -0.177 -0.395 -0.206 0.574 0.231 -0.131 -0.498 0.269 -0.320 0.597 -1.038 0.262 0.142 -0.155 -0.158 0.140 -0.241 0.480 -0.628 0.153 0.013 -0.310 -0.260 0.432 0.455 -0.403 -0.526 0.237 -0.020 0.142 -0.062 -0.070 0.127 -0.225 -0.731 0.536 -0.234 -0.269 0.213 0.215 0.161 0.261 -0.932 0.214 0.160 -0.184 -0.439 0.339 0.066 -0.140 -0.055 0.115 0.000 -0.083 -0.323 0.330 0.466 -0.469 -0.301 0.117 0.129 -0.331 0.103 0.053 0.227 0.132 -0.492 0.032 0.189 -0.488 -0.258 0.391 0.146 -0.211 -0.408 0.352 0.337 -0.022 -0.175 -0.208 0.046 0.055 -0.115 0.008 -0.094 -0.299 -0.063 0.372 0.204 -0.095 -0.376 0.191 0.191 -0.473 -0.276 0.392 -0.065 -0.337 -0.302 0.527 0.119 -0.454 0.142 0.112 0.583 -0.528 -0.649 0.228 0.139 -0.140 -0.019 0.007 0.423 -0.377 -0.414 0.188 -0.100 -0.527 -0.152 0.559 0.468 -0.553 -0.387 0.226 0.339 0.228 -0.955 0.068 0.103 -0.275 -0.450 0.451 0.252 -0.700 -0.400 0.522 0.329 0.003 -0.416 -0.011 0.444 -0.433 -0.291 0.114 0.078 -0.089 -0.592 0.423 -0.149 -0.164 -0.261 0.455 0.391 -0.492 -0.187 0.137 -0.205 0.378 -0.607 0.235 0.211 -0.446 -0.846 0.634 0.104 -0.424 -0.060 0.287 0.459 -0.589 -0.386 0.257 0.607 -0.688 -0.407 0.140 0.413 -0.531 -0.600 0.397 0.108 -0.671 -0.415 0.627 0.497 -0.383 -0.976 0.393 0.380 -0.503 -0.442 0.330 0.115 -0.156 -0.227 0.221 0.314 -0.605 -0.332 0.383 0.239 -0.470 -0.421 0.434 0.046 -0.408 -0.303 0.489 0.407 -0.674 -0.362 0.344 0.028 -0.369 -0.303 0.481 0.388 -0.330 -0.389 0.179 -0.084 -0.079 -0.600 0.536 0.046 -0.290 -0.395 0.474 0.088 -0.416 -0.181 0.385 0.402 -0.622 -0.595 0.450 0.025 -0.083 -0.274 0.277 0.248 -0.647 -0.223 0.397 0.002 -0.515 -0.519 0.679 0.420 -0.450 -0.809 0.443 0.191 -0.263 -0.170 0.185 0.215 -0.177 -0.448 0.288 -0.009 -0.559 -0.661 0.761 0.144 0.202 -0.505 0.057 0.564 -0.100 -0.660 -0.065 -0.398 -0.027 -0.351 0.562 0.450 -0.312 -0.611 0.231 0.238 0.008 -0.308 0.011 0.055 -0.049 0.124 -0.145 -0.043 -0.106 0.148 -0.011 -0.030 -0.516 -0.280 0.583 0.252 -0.372 -0.452 0.384 0.373 -0.395 -0.115 0.031 0.133 -0.165 -0.552 0.411 0.204 -0.110 -0.505 0.283 0.527 -0.504 -0.504 0.199 0.051 -0.292 0.006 0.193 0.007 0.062 -0.161 0.080 0.085 -0.220 -0.176 0.257 0.054 -0.699 0.508 -0.114 0.200 -0.213 -0.091 0.071 0.075 -0.051 0.190 -0.250 -0.153 -0.028 0.094 0.073 0.349 -0.239 -0.352 0.131 0.054 -0.586 -0.203 0.513 -0.263 0.261 -0.170 0.111 0.106 -0.539 0.363 -0.076 0.178 -0.101 0.050 -0.150 0.237 -0.324 -0.200 0.205 -0.061 -0.881 0.724 -0.241 0.197 -0.513 -0.617 0.586 0.456 -0.399 -0.691 0.323 0.320 0.086 -0.725 0.118 0.210 -0.735 0.109 0.220 0.237 -0.823 -0.364 0.565 0.285 -0.200 -0.463 0.245 0.495 -0.637 -0.162 0.076 0.160 0.038 -0.633 0.276 0.143 -0.170 -0.270 0.236 0.396 -0.544 0.101 -0.111 0.264 -0.535 -0.149 0.272 -0.189 -0.534 0.027 0.499 0.076 -0.720 -0.116 0.501 0.381 -0.185 -0.664 0.247 0.321 -0.527 -0.291 0.310 0.118 -0.446 -0.657 0.629 -0.156 -0.361 -0.350 0.622 0.715 -0.904 -1.029 0.416 0.558 -0.498 -0.646 0.239 0.084 -0.345 -0.570 0.565 0.479 -1.144 -0.510 0.538 0.509 -0.551 -0.605 0.307 0.509 -0.522 -0.554 0.263 0.166 -0.409 -0.580 0.542 0.147 -0.825 0.088 0.340 0.399 -0.403 -0.851 0.455 0.277 -0.252 -0.449 0.282 -0.086 -0.128 -0.568 0.554 0.269 -0.769 -0.309 0.486 0.436 -0.705 -0.740 0.521 0.369 -0.727 -0.430 0.446 0.205 -0.695 -0.492 0.603 0.208 -1.009 -0.614 0.761 0.601 -0.753 -0.548 0.269 0.452 -0.391 -0.248 0.039 -0.020 -0.257 -0.508 0.559 0.151 -0.420 -0.681 0.602 0.080 -0.069 -0.268 0.213 0.300 -0.422 -0.139 0.156 0.159 -0.100 -0.136 0.057 0.114 -0.270 -0.462 0.446 0.447 -0.363 -0.538 0.227 0.028 -0.203 -0.134 0.264 0.183 -0.464 -0.543 0.539 -0.033 -0.077 -0.209 0.275 0.345 -0.316 -0.874 0.466 0.620 -0.803 -0.412 0.187 0.015 0.002 -0.678 0.447 0.011 -0.276 -0.371 0.478 0.584 -0.765 -0.251 0.100 0.382 -0.342 -0.290 0.124 0.375 -0.172 -0.798 0.311 0.269 -0.972 -0.141 0.463 0.264 -0.332 -0.432 0.337 0.070 -0.211 -0.225 0.300 0.049 -0.258 -0.285 0.388 -0.051 -0.423 -0.355 0.592 0.384 -0.127 -0.331 -0.023 0.162 -0.444 0.069 0.133 -0.294 0.226 -0.560 0.418 0.411 -0.839 0.050 0.106 0.425 -0.573 -0.528 0.369 0.282 -0.509 -0.464 0.440 0.337 -0.729 -0.491 0.508 0.157 -0.742 -0.503 0.661 0.620 -0.751 -0.836 0.388 0.470 -0.686 -0.494 0.360 0.325 -0.537 -0.471 0.419 0.185 -0.968 -0.839 0.842 0.416 -0.360 -0.514 0.246 0.513 -0.588 -0.377 0.186 0.291 -0.399 -0.369 0.315 0.127 -0.290 -0.377 0.401 0.584 -0.605 -0.371 0.098 0.210 -0.501 -0.439 0.484 0.234 -0.293 -0.615 0.438 0.291 -0.805 -0.374 0.519 0.442 -0.658 -0.960 0.579 0.521 -0.667 -0.562 0.331 0.309 -0.654 -0.788 0.629 0.118 -0.908 -0.799 0.854 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.371 -0.512 -0.276 0.239 0.355 -0.276 -0.571 0.291 0.376 -0.399 -0.436 0.271 0.323 -0.540 -0.187 0.245 0.188 -0.191 -0.473 0.340 0.414 0.246 -0.605 -0.274 1.171 -1.032 -0.167 -1.424 0.973 -0.203 -1.125 -0.483 0.781 -0.203 -0.155 -0.938 2.002 -11.799 -11.799 -11.799 -11.799 -11.799 -11.799 2.002 -11.799 -11.799 2.002 -11.799 0.183 -0.662 0.396 -0.113 0.224 0.432 -0.720 -0.180 -0.154 -0.194 0.137 0.181 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.440 -0.476 0.181 -0.340 0.573 -0.367 -0.623 0.122 0.300 -0.226 -0.420 0.222 0.557 -0.546 -0.052 -0.184 0.636 -0.519 -0.710 0.187 0.158 -0.450 -0.160 0.333 -10.720 -10.720 -10.720 2.001 2.001 -10.720 -10.720 -10.720 2.001 -10.720 -10.720 -10.720 TAG WMM 9 6 4 0 0.000 0.328 -0.240 0.100 -0.275 0.480 -0.311 -0.446 0.090 0.066 0.027 -0.259 0.136 0.386 -0.292 0.029 -0.224 0.439 -0.224 -0.531 0.132 0.057 -0.193 -0.038 0.152 -9.528 -9.528 -9.528 1.999 1.999 -9.528 -9.528 -9.528 -9.528 -9.528 1.999 -9.528 TGA WMM 9 6 4 0 0.000 0.314 -0.346 0.224 -0.319 0.490 -0.292 -0.480 0.086 -0.014 0.090 -0.050 -0.030 0.366 -0.328 0.140 -0.299 0.604 -0.455 -0.576 0.111 -0.206 -0.268 0.291 0.111 -10.163 -10.163 -10.163 1.999 -10.163 -10.163 1.999 -10.163 1.999 -10.163 -10.163 -10.163 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/brugia0000644000175000017500000013000111424066010014534 0ustar moellermoellerzoeHMM B.malayi 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.914392 Inter Esngl 0.085608 Intron Eterm 0.240850 Intron Exon 0.759150 0.476255 0.313433 0.210312 0.693548 0.173021 0.133431 0.669039 0.236655 0.094306 0.700252 0.146096 0.153652 0.754519 0.245481 0.755359 0.244641 0.778986 0.221014 Einit 2 DEFINED 0 249 -8.115 -8.061 -8.009 -7.958 -7.909 -7.862 -7.816 -7.771 -7.728 -7.687 -7.646 -7.624 -7.603 -7.581 -7.560 -7.540 -7.519 -7.499 -7.480 -7.460 -7.441 -7.434 -7.427 -7.420 -7.413 -7.406 -7.400 -7.393 -7.386 -7.380 -7.373 -7.362 -7.352 -7.341 -7.330 -7.320 -7.310 -7.299 -7.289 -7.279 -7.269 -7.281 -7.292 -7.304 -7.316 -7.328 -7.340 -7.352 -7.365 -7.377 -7.390 -7.389 -7.388 -7.387 -7.386 -7.385 -7.385 -7.384 -7.383 -7.382 -7.381 -7.380 -7.378 -7.376 -7.375 -7.373 -7.371 -7.370 -7.368 -7.366 -7.365 -7.384 -7.403 -7.423 -7.443 -7.463 -7.483 -7.504 -7.525 -7.546 -7.568 -7.564 -7.560 -7.557 -7.553 -7.549 -7.545 -7.542 -7.538 -7.534 -7.530 -7.537 -7.543 -7.550 -7.557 -7.563 -7.570 -7.577 -7.583 -7.590 -7.597 -7.609 -7.622 -7.635 -7.648 -7.661 -7.674 -7.688 -7.701 -7.715 -7.728 -7.731 -7.733 -7.735 -7.737 -7.739 -7.741 -7.743 -7.745 -7.748 -7.750 -7.766 -7.782 -7.799 -7.816 -7.833 -7.850 -7.868 -7.885 -7.903 -7.921 -7.934 -7.948 -7.962 -7.975 -7.989 -8.003 -8.018 -8.032 -8.046 -8.061 -8.068 -8.074 -8.081 -8.088 -8.095 -8.102 -8.109 -8.115 -8.122 -8.129 -8.149 -8.169 -8.189 -8.210 -8.231 -8.252 -8.274 -8.295 -8.318 -8.340 -8.368 -8.396 -8.425 -8.455 -8.485 -8.516 -8.547 -8.579 -8.612 -8.646 -8.693 -8.741 -8.791 -8.843 -8.897 -8.953 -9.011 -9.072 -9.135 -9.201 -9.210 -9.219 -9.228 -9.237 -9.246 -9.255 -9.264 -9.274 -9.283 -9.292 -9.277 -9.261 -9.246 -9.231 -9.216 -9.201 -9.187 -9.172 -9.158 -9.143 -9.166 -9.189 -9.213 -9.237 -9.261 -9.286 -9.311 -9.337 -9.363 -9.390 -9.400 -9.410 -9.420 -9.430 -9.441 -9.451 -9.462 -9.472 -9.483 -9.494 -9.530 -9.568 -9.606 -9.646 -9.687 -9.728 -9.771 -9.816 -9.862 -9.909 -9.978 -10.050 -10.127 -10.207 -10.292 -10.383 -10.480 -10.583 -10.695 -10.816 -10.780 -10.745 -10.712 -10.678 -10.646 -10.614 -10.583 -10.553 -10.523 GEOMETRIC 250 -1 103 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -8.238 -8.204 -8.171 -8.138 -8.106 -8.075 -8.044 -8.015 -7.985 -7.957 -7.928 -7.914 -7.900 -7.885 -7.871 -7.857 -7.844 -7.830 -7.816 -7.803 -7.790 -7.780 -7.770 -7.760 -7.751 -7.741 -7.731 -7.722 -7.713 -7.703 -7.694 -7.698 -7.702 -7.706 -7.710 -7.715 -7.719 -7.723 -7.727 -7.731 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.730 -7.725 -7.720 -7.715 -7.709 -7.704 -7.699 -7.694 -7.689 -7.684 -7.682 -7.680 -7.677 -7.675 -7.673 -7.671 -7.669 -7.667 -7.665 -7.663 -7.680 -7.696 -7.713 -7.729 -7.746 -7.764 -7.781 -7.799 -7.816 -7.834 -7.820 -7.805 -7.791 -7.777 -7.762 -7.748 -7.735 -7.721 -7.707 -7.694 -7.704 -7.715 -7.725 -7.736 -7.746 -7.757 -7.768 -7.779 -7.790 -7.801 -7.800 -7.799 -7.797 -7.796 -7.795 -7.794 -7.793 -7.792 -7.791 -7.790 -7.784 -7.779 -7.773 -7.768 -7.762 -7.757 -7.752 -7.746 -7.741 -7.736 -7.740 -7.744 -7.748 -7.753 -7.757 -7.761 -7.766 -7.770 -7.774 -7.779 -7.773 -7.768 -7.762 -7.757 -7.752 -7.746 -7.741 -7.736 -7.730 -7.725 -7.751 -7.777 -7.803 -7.830 -7.857 -7.885 -7.914 -7.943 -7.973 -8.003 -8.012 -8.021 -8.030 -8.039 -8.048 -8.058 -8.067 -8.076 -8.086 -8.095 -8.101 -8.106 -8.112 -8.117 -8.123 -8.128 -8.134 -8.139 -8.145 -8.151 -8.174 -8.197 -8.220 -8.244 -8.269 -8.293 -8.319 -8.344 -8.370 -8.397 -8.400 -8.404 -8.407 -8.410 -8.414 -8.417 -8.421 -8.424 -8.427 -8.431 -8.459 -8.487 -8.516 -8.545 -8.575 -8.606 -8.637 -8.669 -8.702 -8.736 -8.761 -8.788 -8.814 -8.841 -8.869 -8.897 -8.926 -8.955 -8.985 -9.016 -9.052 -9.090 -9.128 -9.168 -9.208 -9.250 -9.293 -9.338 -9.384 -9.431 -9.445 -9.459 -9.473 -9.487 -9.501 -9.516 -9.530 -9.545 -9.560 -9.575 -9.587 -9.598 -9.610 -9.622 -9.633 -9.645 -9.657 -9.669 -9.682 -9.694 -9.710 -9.727 -9.744 -9.761 -9.779 -9.796 -9.814 -9.832 -9.850 GEOMETRIC 250 -1 124 Exon 2 DEFINED 0 249 -11.043 -10.940 -10.845 -10.756 -10.671 -10.592 -10.516 -10.445 -10.377 -10.311 -10.249 -10.147 -10.052 -9.963 -9.879 -9.800 -9.724 -9.653 -9.585 -9.520 -9.458 -9.412 -9.368 -9.326 -9.285 -9.244 -9.205 -9.167 -9.130 -9.094 -9.059 -9.011 -8.965 -8.920 -8.876 -8.834 -8.793 -8.753 -8.714 -8.676 -8.640 -8.591 -8.543 -8.498 -8.453 -8.410 -8.368 -8.328 -8.288 -8.250 -8.212 -8.178 -8.144 -8.111 -8.078 -8.047 -8.016 -7.985 -7.955 -7.926 -7.898 -7.868 -7.840 -7.811 -7.784 -7.756 -7.730 -7.703 -7.678 -7.652 -7.627 -7.606 -7.585 -7.564 -7.543 -7.523 -7.503 -7.483 -7.464 -7.445 -7.426 -7.414 -7.402 -7.390 -7.379 -7.367 -7.355 -7.344 -7.333 -7.322 -7.310 -7.307 -7.303 -7.299 -7.295 -7.291 -7.287 -7.284 -7.280 -7.276 -7.272 -7.273 -7.273 -7.274 -7.274 -7.275 -7.275 -7.276 -7.276 -7.277 -7.277 -7.284 -7.292 -7.299 -7.307 -7.314 -7.322 -7.329 -7.337 -7.344 -7.352 -7.364 -7.376 -7.387 -7.399 -7.412 -7.424 -7.436 -7.449 -7.461 -7.474 -7.487 -7.501 -7.515 -7.529 -7.543 -7.557 -7.571 -7.586 -7.601 -7.616 -7.621 -7.627 -7.633 -7.638 -7.644 -7.650 -7.656 -7.662 -7.667 -7.673 -7.680 -7.687 -7.694 -7.701 -7.708 -7.715 -7.722 -7.729 -7.736 -7.743 -7.765 -7.786 -7.808 -7.830 -7.853 -7.876 -7.900 -7.923 -7.948 -7.972 -7.987 -8.002 -8.018 -8.033 -8.049 -8.064 -8.080 -8.096 -8.113 -8.129 -8.150 -8.172 -8.193 -8.215 -8.237 -8.260 -8.283 -8.307 -8.330 -8.354 -8.377 -8.400 -8.423 -8.447 -8.471 -8.495 -8.520 -8.546 -8.571 -8.598 -8.618 -8.638 -8.659 -8.680 -8.701 -8.723 -8.745 -8.768 -8.790 -8.813 -8.824 -8.835 -8.846 -8.858 -8.869 -8.880 -8.892 -8.904 -8.915 -8.927 -8.964 -9.001 -9.040 -9.080 -9.121 -9.163 -9.206 -9.251 -9.297 -9.345 -9.380 -9.415 -9.452 -9.490 -9.529 -9.569 -9.610 -9.652 -9.695 -9.740 -9.766 -9.793 -9.820 -9.848 -9.876 -9.905 -9.934 -9.965 -9.995 GEOMETRIC 250 -1 145 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 225 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.303 -0.974 -0.970 0.805 0.351 -0.985 -1.058 0.798 0.231 -0.963 -1.291 0.930 0.226 -1.062 -1.159 0.929 0.383 -1.168 -1.452 0.915 0.341 -1.462 -1.348 0.984 -1.386 -1.909 -2.401 1.661 -2.639 -2.686 -3.627 1.849 -0.467 -1.537 -0.510 1.157 -1.483 1.146 -4.723 0.477 1.999 -9.581 -9.581 -9.581 -9.581 -9.581 1.999 -9.581 0.269 -1.058 0.804 -0.813 0.225 -0.777 -0.581 0.660 0.393 -0.610 -0.268 0.264 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.545 -1.498 -0.096 0.324 0.695 -1.351 -0.475 0.345 0.516 -0.587 -0.977 0.481 -0.400 -1.086 0.108 0.760 0.665 -1.513 0.207 -0.137 1.036 -2.327 -0.319 -0.075 0.403 -0.909 -1.025 0.725 -0.401 -1.394 0.405 0.621 0.805 -1.327 -0.667 0.293 0.637 -1.344 -0.717 0.529 0.777 -1.310 -1.965 0.702 -0.146 -0.890 0.017 0.628 . 0.072 . 1.560 0.790 -1.640 -0.084 0.009 . -0.079 0.561 0.658 -0.109 -0.706 0.401 0.189 0.605 -0.846 -0.419 0.232 0.577 -0.452 -0.934 0.327 -0.219 -0.051 -0.492 0.550 -0.384 -0.213 -0.033 0.479 0.079 -0.797 0.432 0.027 0.974 -1.511 -0.026 -0.511 0.402 -0.322 -1.091 0.494 -0.557 0.017 0.061 0.339 0.532 -1.145 -0.645 0.548 0.630 -1.263 -1.263 0.695 0.628 -0.333 -1.277 0.320 -0.738 -0.187 0.159 0.491 . 0.614 . 1.304 0.591 -0.626 0.201 -0.522 . 0.087 0.597 0.511 -0.083 0.161 -0.316 0.182 0.749 -2.122 0.278 -0.190 0.781 -1.783 -0.184 0.152 0.809 -0.793 -0.450 -0.092 -0.154 -0.815 0.310 0.371 0.592 -1.514 0.284 -0.113 1.012 -1.919 -0.481 0.004 0.425 -0.916 -1.095 0.731 -0.526 -1.275 -0.044 0.943 0.751 -1.456 -0.294 0.185 0.653 -0.953 -0.742 0.394 0.548 -0.882 -1.707 0.756 -0.334 -1.117 0.171 0.695 . 0.373 . 1.436 0.674 -1.619 0.181 -0.082 . -0.190 0.934 0.279 -0.252 -0.434 0.482 0.034 0.511 -1.196 -0.254 0.378 0.467 -0.479 -0.809 0.411 0.260 -0.093 -1.394 0.570 -0.793 -0.187 0.198 0.483 0.212 -1.279 0.302 0.259 0.955 -1.461 -0.106 -0.380 0.385 -0.550 -0.956 0.580 -0.600 -0.157 0.096 0.460 0.759 -1.321 -0.544 0.289 0.548 -0.918 -0.828 0.531 0.461 -0.785 -1.694 0.794 -0.064 -0.812 -0.393 0.776 . 0.534 . 1.352 0.480 -0.407 -0.211 -0.018 . -0.118 0.531 0.708 -0.310 -0.213 0.402 0.014 0.655 -1.467 -0.307 0.328 0.824 -1.271 -0.695 0.261 0.244 -0.152 -1.400 0.620 -0.248 -0.575 0.345 0.283 0.812 -1.749 -0.047 -0.030 1.048 -2.404 -0.905 0.275 0.336 -0.758 -1.211 0.778 -0.776 -1.166 0.441 0.690 0.774 -1.299 -0.796 0.386 0.967 -1.504 -1.006 0.256 1.091 -1.435 -2.287 0.372 0.012 -1.210 -0.109 0.707 . 0.419 . 1.413 0.894 -1.303 -0.465 0.016 . 0.143 0.365 0.685 -0.185 -0.395 0.112 0.355 0.841 -1.481 -0.196 -0.033 0.164 -0.282 -0.854 0.588 -0.161 -0.107 -1.889 0.931 -0.336 -0.547 0.144 0.504 0.672 -1.733 0.157 -0.013 0.690 -1.147 -1.954 0.746 0.255 -1.369 -0.706 0.853 -0.773 -1.135 0.701 0.415 0.877 -1.352 -0.961 0.332 0.771 -1.350 -1.672 0.667 0.626 -0.849 -3.561 0.861 0.124 -0.366 -0.394 0.457 . 0.887 . 1.105 0.873 -0.851 -0.620 -0.053 . -0.087 -0.194 1.128 -0.049 0.037 -0.317 0.268 0.776 -1.683 0.060 -0.098 0.909 -1.110 -0.270 -0.270 0.578 -0.857 -0.937 0.519 -0.656 -0.476 0.562 0.227 0.690 -1.343 0.072 -0.087 0.863 -2.137 0.151 -0.247 0.742 -0.666 -0.559 0.026 -0.474 -1.229 -0.120 0.951 0.663 -1.704 -0.987 0.683 0.906 -1.314 -1.273 0.390 0.578 -0.651 -1.522 0.606 0.027 -0.905 0.145 0.424 . 0.423 . 1.411 0.490 -1.226 -0.127 0.324 . -0.200 0.990 0.193 -0.063 -0.363 0.269 0.084 0.737 -1.263 -0.729 0.394 0.351 -1.072 -0.741 0.723 -0.181 -0.465 -0.316 0.670 -0.579 -0.413 -0.191 0.768 0.425 -1.435 0.361 0.006 0.830 -1.680 -0.725 0.385 0.526 -0.528 -1.769 0.654 -0.642 -0.477 -0.087 0.765 0.456 -1.408 -1.058 0.825 0.496 -1.204 -1.294 0.805 0.486 -0.906 -1.663 0.808 0.057 -1.145 -0.326 0.774 . 0.171 . 1.523 0.638 -0.708 -0.734 0.299 . -0.014 0.466 0.704 0.000 -0.379 0.194 0.120 0.753 -1.658 -0.172 0.151 0.557 -1.057 -0.086 0.145 0.379 -1.039 -0.962 0.765 -0.096 -1.156 0.446 0.325 0.810 -1.855 0.000 -0.043 1.284 -2.406 -0.893 -0.255 0.524 -1.222 -1.415 0.815 -0.058 -2.073 -0.336 1.007 0.845 -1.900 -0.559 0.329 0.776 -0.959 -0.798 0.261 0.608 -0.743 -1.945 0.695 0.187 -1.700 -0.232 0.768 . -0.043 . 1.599 1.186 -1.296 -1.136 -0.214 . -0.163 0.784 0.470 0.251 -0.764 0.120 0.183 0.908 -1.130 -0.372 -0.161 0.283 -0.251 -0.645 0.383 0.042 -0.097 -2.009 0.838 -0.881 -0.376 0.029 0.736 0.590 -1.258 -0.307 0.343 0.733 -3.790 -0.246 0.508 0.618 -2.531 -2.361 1.069 -0.218 -1.059 -0.120 0.799 0.788 -1.332 -0.510 0.232 0.788 -0.739 -2.126 0.531 0.203 -1.312 -1.312 1.031 -0.083 -0.411 -0.381 0.619 . 0.675 . 1.265 0.569 -0.308 -0.525 0.020 . 0.326 0.472 0.444 0.316 -0.171 -0.273 0.056 0.664 -1.034 -0.146 0.033 0.676 -1.363 -0.678 0.474 0.341 -1.033 0.095 0.234 -0.624 -1.094 0.051 0.885 0.576 -1.444 0.272 -0.098 1.230 -2.408 -1.185 0.037 0.468 -1.252 -1.252 0.830 -0.069 -1.349 0.189 0.598 0.450 -0.789 -0.679 0.517 0.520 -1.435 -0.077 0.320 0.836 -1.852 -1.437 0.650 0.221 -1.644 -0.242 0.739 . 0.618 . 1.302 0.864 -1.585 -0.037 -0.198 . 0.315 0.257 0.642 0.004 -0.847 0.572 -0.067 0.732 -1.013 -0.760 0.325 0.641 -0.741 -0.649 0.269 -0.282 0.158 -0.771 0.562 -0.686 -0.310 0.151 0.547 0.656 -1.534 0.144 -0.039 1.154 -2.551 -0.752 0.015 0.276 -0.852 -1.069 0.814 -0.338 -0.807 -0.563 0.971 0.726 -1.525 -0.912 0.553 0.513 -1.030 -1.041 0.675 0.244 -0.658 -1.747 0.914 -0.055 -0.640 -0.558 0.780 . 0.471 . 1.386 0.744 -0.770 -0.576 0.095 . 0.245 0.333 0.637 -0.041 -0.407 0.464 -0.160 0.617 -1.041 -0.405 0.293 0.927 -0.906 -0.654 -0.105 0.312 0.142 -0.828 0.127 -0.280 -0.456 0.211 0.368 0.738 -1.268 0.023 -0.150 1.119 -2.122 -0.753 0.007 0.661 -0.675 -1.020 0.378 -0.268 -1.140 0.531 0.345 0.742 -1.103 -0.310 0.078 0.653 -1.617 -0.724 0.581 0.663 -0.462 -1.807 0.490 0.096 -1.276 -0.030 0.621 . 0.510 . 1.365 0.918 -1.195 -0.374 -0.149 . 0.153 0.555 0.504 -0.215 -0.445 0.092 0.420 0.586 -1.012 -0.101 0.098 0.156 -0.491 -1.049 0.758 -0.170 -0.244 -1.000 0.821 -0.756 0.093 -0.182 0.546 0.173 -1.053 0.138 0.368 0.981 -2.115 -0.241 -0.076 0.179 -1.174 -1.300 1.013 -0.018 -0.446 -0.549 0.673 0.664 -0.855 -0.551 0.239 0.758 -1.137 -1.564 0.600 0.352 -1.027 -0.889 0.760 -0.126 -0.345 -0.733 0.761 . 0.678 . 1.263 0.300 -0.537 -0.236 0.300 . -0.369 0.613 0.762 -0.609 0.226 0.061 0.179 0.730 -1.612 -0.059 0.076 1.048 -1.537 -0.692 -0.044 0.405 -0.380 -0.736 0.386 -0.243 -0.814 0.414 0.327 0.685 -1.420 0.077 -0.054 0.965 -1.791 -0.807 0.248 0.579 -0.670 -1.182 0.523 -0.057 -0.953 -0.168 0.707 0.869 -1.528 -0.698 0.275 0.766 -1.175 -1.035 0.453 0.547 -0.740 -2.062 0.766 -0.086 -0.895 0.049 0.571 . 0.284 . 1.476 1.031 -1.145 -0.433 -0.388 . 0.504 0.354 0.382 -0.055 -0.387 0.241 0.126 0.478 -1.135 -0.195 0.354 0.232 -0.673 -0.684 0.656 -0.290 -0.018 -0.947 0.745 -0.967 -0.242 -0.087 0.767 0.482 -1.455 0.009 0.302 0.864 -1.593 -0.394 0.121 0.424 -0.744 -1.076 0.666 -0.743 -0.529 -0.139 0.849 0.547 -1.288 -0.959 0.692 0.452 -0.963 -0.933 0.674 0.298 -0.531 -1.563 0.799 -0.522 -0.739 0.070 0.727 . 0.059 . 1.565 0.395 -0.812 -0.034 0.188 . 0.132 0.443 0.627 -0.063 -0.044 0.224 -0.145 frame2 LUT 5 4 4 0 0.000 -0.100 -0.371 0.619 -0.401 0.652 -1.129 0.441 -0.703 0.635 -0.196 0.012 -0.823 -0.167 -0.471 0.718 -0.428 0.276 -0.205 0.204 -0.377 -0.051 -0.799 0.786 -0.443 0.524 -0.355 0.071 -0.454 -0.427 -0.524 0.830 -0.352 0.509 -0.288 0.221 -0.753 0.655 -1.099 0.378 -0.602 0.786 -0.154 0.120 -1.787 -0.056 -0.772 0.798 -0.485 0.190 0.185 -0.055 -0.395 0.842 -0.525 0.274 -1.720 0.404 -0.080 0.216 -0.812 -0.198 -0.183 0.561 -0.374 0.186 -0.031 0.295 -0.607 0.755 -0.876 0.124 -0.561 0.002 0.119 -0.077 -0.051 -0.255 -0.112 0.265 0.051 -0.287 0.190 0.643 -1.064 0.207 -1.651 1.035 -1.066 0.289 -0.162 0.377 -0.773 -0.839 -0.477 1.192 -1.193 0.144 0.062 0.068 -0.317 0.478 -0.474 -0.065 -0.101 0.553 0.110 -0.595 -0.338 -0.300 -0.510 0.757 -0.329 0.158 0.086 -0.034 -0.241 0.562 -1.128 0.068 0.026 0.329 -0.195 0.385 -0.826 -0.408 0.218 0.541 -0.671 0.278 -0.652 0.502 -0.445 0.340 -0.929 0.643 -0.627 0.428 -0.172 0.245 -0.782 -0.266 -0.526 0.724 -0.282 0.169 -0.313 0.558 -0.739 0.404 -0.574 0.602 -1.039 0.191 0.077 0.233 -0.672 -0.275 -0.505 0.787 -0.428 0.057 0.386 -0.028 -0.575 0.625 -0.507 0.123 -0.588 0.499 0.254 -0.768 -0.309 -0.408 -0.330 0.748 -0.374 0.217 -0.080 0.229 -0.476 0.793 -0.962 0.260 -0.846 0.552 -0.195 0.233 -1.043 -0.250 -0.740 0.886 -0.490 . . . . 0.738 -0.358 -0.231 -0.515 . . . . -0.130 -0.072 0.424 -0.334 0.037 -0.166 0.267 -0.186 0.425 -1.353 0.771 -0.838 0.505 -0.488 0.198 -0.473 -0.241 -0.101 0.587 -0.475 . . . . 0.716 -1.068 0.000 -0.183 0.535 -0.269 0.204 -0.812 -0.358 0.052 0.549 -0.475 -0.035 0.247 -0.171 -0.075 0.467 -0.137 -0.145 -0.314 0.115 0.195 0.341 -0.984 -0.224 -0.321 0.532 -0.156 0.339 -0.287 0.180 -0.354 0.524 -0.949 0.392 -0.450 0.423 0.061 0.069 -0.818 -0.137 -0.092 0.332 -0.163 0.438 -0.615 0.321 -0.429 0.981 -1.459 0.126 -0.807 0.119 0.014 0.286 -0.544 -0.398 -1.148 0.906 -0.126 0.229 -0.214 0.261 -0.381 0.778 -0.742 0.033 -0.590 1.087 -0.425 -0.656 -1.010 -0.319 -0.693 0.655 0.008 0.066 -0.121 -0.486 0.401 0.481 -0.142 0.194 -0.852 0.274 -0.024 0.329 -0.859 -0.421 -0.063 0.489 -0.164 0.095 0.030 0.452 -0.880 -0.193 0.170 0.170 -0.193 0.379 0.066 -0.275 -0.275 -0.465 0.086 0.504 -0.329 0.153 -0.142 0.411 -0.616 0.308 -1.807 0.308 0.308 0.721 -0.122 0.038 -1.303 0.030 -0.385 0.712 -0.800 0.076 -0.413 0.471 -0.306 0.613 -0.213 0.028 -0.766 0.788 -0.553 -0.067 -0.652 -0.062 -0.498 0.461 -0.062 0.279 -0.118 0.197 -0.476 1.000 -1.234 -0.152 -0.567 0.288 -0.180 0.331 -0.647 -0.225 0.068 0.556 -0.675 0.414 -0.738 0.495 -0.602 0.628 -0.831 0.197 -0.423 0.675 -0.005 -0.245 -0.829 -0.161 -0.399 0.637 -0.336 0.249 -0.176 -0.094 -0.016 0.789 -1.644 0.789 -2.158 0.533 -0.467 -0.467 0.146 0.007 -0.605 0.820 -0.804 0.418 -0.145 -0.069 -0.310 0.978 -0.244 -0.279 -1.467 0.636 -0.061 -0.395 -0.459 -0.068 -0.747 0.756 -0.393 -0.180 0.195 0.030 -0.071 0.751 -1.327 0.108 -0.249 0.565 -0.465 0.236 -0.692 -0.176 -0.475 0.717 -0.413 . . . . 0.727 -0.563 -0.085 -0.464 . . . . -0.322 -0.093 0.483 -0.210 0.029 -0.164 0.213 -0.109 0.852 -1.110 -0.110 -0.313 0.156 -0.564 0.232 0.049 -0.417 -0.019 0.445 -0.149 . . . . 0.560 -0.929 -0.381 0.301 0.430 -0.570 0.353 -0.511 0.081 -0.233 0.496 -0.555 0.052 0.040 -0.170 0.065 0.592 -0.084 -0.517 -0.234 0.084 0.098 0.263 -0.578 -0.272 -0.204 0.474 -0.128 0.304 -0.328 0.300 -0.440 0.926 -0.851 -0.053 -0.781 0.463 -0.190 0.125 -0.611 -0.085 -0.363 0.558 -0.309 0.364 -0.210 0.162 -0.454 0.579 -0.780 0.089 -0.216 0.348 -0.585 0.320 -0.300 -0.431 -0.399 0.655 -0.112 0.477 -0.146 0.401 -1.381 0.428 -0.820 0.502 -0.572 0.988 -0.358 0.035 -2.242 0.225 -0.649 0.646 -0.671 0.334 -0.165 -0.374 0.106 0.669 -1.340 0.447 -0.617 0.432 -0.336 0.128 -0.386 -0.273 -0.406 0.727 -0.390 0.182 -0.097 0.466 -0.865 0.257 -0.634 0.224 -0.010 0.328 0.000 -0.415 -0.007 -0.193 0.174 0.249 -0.306 -0.233 -0.233 0.684 -0.532 0.445 -1.095 0.803 -1.233 0.426 -1.127 0.625 -0.607 -0.870 -0.768 1.042 -0.311 0.406 0.089 -0.031 -0.660 0.462 -0.447 0.209 -0.447 0.144 -0.604 0.074 0.244 -0.464 -0.198 0.775 -0.530 0.555 -0.040 -0.485 -0.245 0.966 -0.762 -0.369 -0.552 0.568 -0.263 0.201 -0.902 0.000 -0.148 0.481 -0.510 0.104 -0.548 0.588 -0.439 0.673 -1.319 0.443 -0.633 0.549 -0.318 0.157 -0.690 -0.169 -0.442 0.781 -0.609 0.498 -0.227 -0.011 -0.433 0.959 -1.041 0.303 -1.572 0.431 0.190 0.133 -1.269 -0.263 -0.317 0.671 -0.374 0.225 0.318 0.190 -1.172 -0.041 -0.282 0.468 -0.282 1.050 -0.189 -0.373 -1.833 -0.005 -0.801 0.657 -0.232 -0.134 0.008 0.052 0.066 0.848 -0.786 0.084 -0.837 0.465 -0.395 0.231 -0.545 -0.125 -0.388 0.715 -0.561 . . . . 0.755 -0.625 0.232 -1.031 . . . . -0.162 -0.359 0.507 -0.143 0.035 0.217 -0.184 -0.101 -0.312 -0.419 0.525 0.010 0.485 -0.721 0.279 -0.358 -0.658 -0.009 0.515 -0.083 . . . . 0.472 -0.656 -0.224 0.166 0.430 -0.494 0.077 -0.172 -0.309 -0.141 0.576 -0.331 0.089 0.183 -0.134 -0.169 0.325 -0.228 0.248 -0.504 0.457 -0.200 0.247 -0.811 -0.360 -0.170 0.509 -0.139 0.292 -0.452 0.360 -0.393 0.269 -1.003 0.467 -0.130 0.482 0.043 0.145 -1.097 -0.234 -0.105 0.603 -0.511 0.355 -0.352 0.235 -0.396 0.780 -1.163 0.264 -0.655 0.484 -0.150 0.162 -0.785 -0.481 -0.626 0.927 -0.447 0.828 -0.313 -0.356 -0.646 0.606 -0.884 0.316 -0.532 0.754 -0.322 -0.444 -0.361 -0.138 -0.445 0.704 -0.459 0.417 0.186 -0.081 -0.782 0.627 -0.638 0.200 -0.590 0.113 -0.061 0.211 -0.317 -0.253 -0.045 0.557 -0.473 0.323 -0.206 0.412 -0.856 0.501 -0.760 -0.166 0.142 0.121 0.051 -0.306 0.095 -0.052 0.137 0.300 -0.503 -0.108 0.132 0.359 -0.528 0.233 -1.236 0.805 -0.615 0.335 -0.511 0.589 -0.908 -0.724 -0.151 0.948 -0.824 0.190 -0.271 0.326 -0.365 0.630 -0.618 -0.130 -0.173 0.509 -0.263 -0.019 -0.403 -0.128 -0.328 0.567 -0.309 0.146 -0.038 -0.066 -0.052 0.689 -0.904 0.315 -0.714 0.297 -0.519 0.529 -0.665 -0.360 0.053 0.475 -0.333 0.298 -0.437 0.478 -0.646 0.283 -0.339 0.332 -0.447 0.203 0.004 0.268 -0.640 -0.074 -0.464 0.681 -0.471 0.255 -0.125 0.211 -0.450 0.575 -0.700 0.384 -0.759 0.274 -0.216 0.426 -0.770 -0.170 -0.536 0.773 -0.489 0.309 0.299 -0.212 -0.583 0.459 -0.715 0.149 -0.140 0.872 -0.186 -0.461 -0.824 -0.258 -0.640 0.716 -0.186 0.279 -0.212 0.035 -0.154 0.683 -0.674 0.198 -0.688 0.400 -0.026 0.252 -0.977 -0.212 -0.621 0.795 -0.414 . . . . 0.578 -0.566 0.130 -0.441 . . . . -0.406 -0.147 0.534 -0.162 0.212 -0.057 -0.041 -0.138 0.497 -1.149 0.506 -0.478 0.269 -0.320 0.420 -0.609 -0.597 -0.016 0.624 -0.307 . . . . 0.577 -0.733 -0.182 0.036 0.239 -0.501 0.101 0.058 -0.371 -0.125 0.619 -0.371 -0.054 0.195 -0.280 0.095 0.486 -0.223 0.061 -0.514 0.118 -0.097 0.517 -0.865 -0.078 -0.192 0.730 -0.949 frame2 LUT 5 4 4 0 0.000 0.522 -0.359 -0.648 0.196 0.324 -0.212 -0.073 -0.097 0.458 -0.220 0.072 -0.481 -0.599 -0.157 -0.405 0.755 0.742 -0.566 -0.636 0.012 0.746 -0.597 -0.047 -0.528 0.895 -0.671 -0.320 -0.491 -0.682 -0.464 0.044 0.696 1.165 -0.851 -1.214 -0.374 0.680 -0.691 -0.401 0.030 0.847 -0.411 -0.232 -0.744 -0.272 -0.138 -0.629 0.693 0.608 -0.560 -1.221 0.453 0.496 0.035 -0.049 -0.742 0.706 -0.184 -0.432 -0.421 -0.677 -0.064 -0.884 0.908 0.433 -0.050 -0.937 0.216 0.175 0.277 -0.328 -0.212 0.003 0.160 -0.608 0.292 -0.723 0.432 -1.252 0.701 0.523 0.150 -1.217 0.034 0.531 -1.000 0.385 -0.415 0.851 -1.048 -0.063 -0.404 -0.267 -0.202 -0.372 0.610 0.748 -0.438 -0.553 -0.151 0.702 -0.371 -1.100 0.181 0.787 0.017 -0.547 -0.790 -0.591 -0.040 -1.017 0.902 0.590 -0.187 -1.656 0.377 0.244 0.136 -0.136 -0.310 0.416 -0.316 0.066 -0.294 -0.406 0.417 -0.687 0.366 0.696 -0.687 -0.451 0.039 0.304 -0.018 -0.358 -0.004 0.826 -0.273 -0.420 -0.617 -1.454 -0.011 0.072 0.670 0.663 -0.833 -0.275 0.042 0.555 -0.883 0.463 -0.713 1.176 -0.869 -0.547 -0.976 -0.209 -0.066 -1.094 0.775 0.894 -0.542 -0.796 -0.186 0.788 -0.816 -0.138 -0.330 1.171 -0.507 -0.993 -0.882 -1.121 -0.536 0.081 0.842 0.621 -0.562 -0.772 0.262 0.453 -0.303 0.276 -0.712 0.682 -0.180 -0.174 -0.674 -0.881 0.312 -0.536 0.610 0.565 -0.182 -0.681 0.022 -0.011 0.226 -0.045 -0.203 0.158 0.463 -0.522 -0.304 -0.891 0.146 -0.363 0.656 0.835 -0.750 -1.000 0.166 0.301 -0.092 0.042 -0.322 1.054 -0.484 -1.053 -0.462 -0.688 0.299 -0.771 0.645 0.747 -0.660 -0.876 0.193 0.575 -0.385 -0.385 -0.031 0.849 -0.357 -0.755 -0.277 -0.568 0.210 -0.812 0.677 0.588 -0.350 -0.990 0.273 0.250 -0.058 0.035 -0.275 0.587 -0.147 -0.335 -0.320 -0.697 0.190 -0.518 0.627 0.302 -0.553 -0.997 0.664 0.428 -0.178 -0.223 -0.129 0.354 0.117 -0.208 -0.374 -0.459 -0.075 -0.484 0.686 0.482 -0.314 -0.454 0.096 0.697 -0.763 -0.144 -0.178 0.731 -0.367 -0.200 -0.527 -0.807 -0.289 -0.159 0.778 1.025 -0.814 -1.281 -0.022 0.833 -0.756 -0.720 0.027 0.808 -0.087 -0.880 -0.387 -0.655 -0.240 -0.324 0.782 0.529 -0.372 -1.453 0.505 0.170 0.085 -0.149 -0.133 0.505 -0.175 -0.290 -0.189 -0.320 -0.140 -0.676 0.736 0.611 -0.233 -1.128 0.220 0.038 0.993 -0.945 -1.110 -0.320 -0.583 1.059 -1.156 -0.876 0.467 -0.643 0.519 0.382 -0.569 -0.083 0.109 0.100 -0.107 -0.348 0.280 0.469 -1.232 0.927 -1.791 -0.443 -0.195 -0.355 0.686 0.981 -0.970 -1.308 0.154 0.746 0.324 -0.919 -0.884 0.937 -1.175 0.379 -1.544 -0.547 -0.248 -0.585 0.854 0.279 -0.123 -1.230 0.529 0.380 0.771 -0.927 -1.103 -0.349 -0.735 1.102 -1.097 -0.696 0.498 -1.309 0.648 0.703 -0.527 -0.829 0.157 0.437 -0.214 0.169 -0.600 0.471 -0.060 -0.094 -0.478 -1.083 -0.202 -0.070 0.771 0.393 -0.946 -0.489 0.541 0.468 -1.307 -0.095 0.352 0.785 -0.978 -0.092 -0.267 -0.290 -0.644 -1.113 1.057 1.109 -0.551 -2.494 -0.025 0.391 -0.538 -0.447 0.341 1.191 -0.716 -0.939 -0.769 -0.577 -0.577 -0.528 0.975 0.865 -0.796 -1.320 0.265 0.276 -0.461 0.044 0.044 0.710 -0.354 -0.025 -0.740 -0.380 -0.250 -0.935 0.901 0.881 -0.510 -1.344 0.087 -0.224 0.463 -0.391 0.004 0.878 -0.104 -0.782 -0.619 -1.201 0.344 -0.513 0.674 0.421 0.030 -0.731 0.053 0.731 -0.615 -0.342 -0.155 0.564 -0.250 -0.227 -0.274 -0.739 0.351 -0.446 0.476 1.142 -1.068 -1.585 -0.025 0.650 -0.518 -0.575 0.086 1.129 -0.408 -1.106 -0.749 -0.766 -0.100 -0.023 0.580 0.149 0.016 -0.837 0.401 0.311 -0.037 -0.142 -0.187 0.321 0.120 -0.211 -0.322 -0.509 0.048 -0.455 0.617 0.501 -0.612 -0.637 0.364 0.375 -0.102 -0.408 0.025 0.762 -0.032 -0.683 -0.509 -0.495 -0.179 -0.821 0.881 0.807 -0.757 -0.587 -0.010 0.599 -0.673 -0.231 0.009 0.925 -0.624 -0.499 -0.424 -0.410 -0.296 -0.061 0.560 1.099 -1.001 -1.022 -0.207 0.699 -1.028 -0.380 0.160 1.163 -0.340 -0.768 -1.379 -0.342 -0.588 -0.639 0.928 0.621 -0.632 -1.434 0.532 0.162 -0.095 -0.280 0.165 0.657 -0.222 -0.065 -0.713 -0.775 -0.133 -0.922 0.983 0.657 -0.594 -0.919 0.301 0.071 0.492 -0.656 -0.138 0.285 0.343 -0.687 -0.165 -0.812 0.093 -0.847 0.854 0.953 -1.086 -0.706 -0.030 1.115 -1.979 -0.358 -0.322 0.755 -0.696 -0.386 -0.105 -0.610 -0.330 -0.511 0.886 1.038 -0.717 -1.218 -0.138 0.733 -0.207 -1.109 0.011 1.046 -0.626 -0.948 -0.379 -1.230 0.135 -0.645 0.877 0.313 0.024 -1.004 0.313 0.493 -0.105 -0.151 -0.391 0.545 -0.188 -0.188 -0.348 -0.699 0.140 -0.710 0.740 0.789 -0.886 -0.528 0.053 0.014 0.878 -0.814 -0.778 0.535 0.227 -0.457 -0.617 -0.606 -0.229 -0.630 0.883 0.910 -0.611 -0.796 -0.168 0.236 0.096 -0.517 0.077 0.867 -0.492 -0.328 -0.582 -0.131 -0.707 -1.472 1.080 0.993 -0.734 -0.592 -0.423 0.515 0.636 -1.163 -0.807 1.383 -0.603 -1.603 -1.304 -1.928 0.224 -1.098 1.072 0.287 -0.219 -0.807 0.432 -0.169 0.225 0.184 -0.312 0.625 -0.290 -0.181 -0.400 -0.741 -0.111 -0.932 0.965 0.380 0.227 -1.193 0.126 0.173 0.199 -0.558 0.065 0.426 0.165 -0.827 -0.042 -1.024 0.302 -0.614 0.698 0.703 -0.115 -1.076 -0.037 0.364 -0.199 -0.301 0.042 0.789 -0.623 -0.929 0.135 -0.635 -0.423 -0.182 0.790 1.039 -0.590 -1.590 -0.076 0.787 -0.483 -0.923 0.045 1.022 -0.603 -1.111 -0.238 -0.903 0.162 -0.385 0.660 0.502 -0.201 -1.414 0.421 0.445 -0.241 -0.526 0.135 0.571 -0.094 -0.386 -0.301 -0.648 0.201 -0.496 0.589 . . . . . . . . . . . . . . . . 0.925 -0.945 -0.945 0.087 0.641 -0.590 -0.561 0.135 1.027 -0.828 -0.757 -0.308 0.082 -0.512 0.101 0.225 . . . . . . . . . . . . . . . . 0.373 -0.418 -1.141 0.588 0.601 0.054 -0.149 -0.878 0.465 -0.128 -0.212 -0.250 -0.581 -0.430 -0.525 0.922 0.540 -0.063 -0.878 0.063 0.260 0.092 -0.717 0.175 0.464 0.129 -1.193 0.123 -1.524 0.466 -0.953 0.811 0.525 -0.613 -0.520 0.275 0.596 -0.819 -0.288 0.141 0.621 -0.831 0.324 -0.628 -1.359 0.480 -0.607 0.641 0.588 -0.546 -0.530 0.163 0.789 -0.376 -0.807 -0.104 0.679 -0.342 -0.557 -0.105 -0.340 0.098 -1.047 0.728 0.309 0.056 -0.873 0.234 0.505 -0.149 -0.280 -0.226 0.251 -0.051 -0.028 -0.212 -1.117 0.582 -0.950 0.609 . . . . . . . . . . . . . . . . 0.741 -0.464 -0.767 0.022 0.544 0.000 -0.337 -0.415 0.828 -0.526 -0.553 -0.236 -0.201 -0.338 -0.380 0.651 0.513 -0.468 -0.859 0.377 0.819 -0.957 -0.512 0.027 1.108 -0.784 -1.018 -0.378 -0.123 -0.445 -0.045 0.462 0.676 -0.299 -0.859 0.053 0.233 0.350 -0.112 -0.678 0.597 -0.078 -0.078 -0.757 -0.643 -0.050 -0.384 0.702 0.408 0.076 -0.773 0.048 -0.095 0.573 -0.356 -0.332 0.250 0.404 -0.908 -0.067 -1.237 0.447 -0.585 0.628 0.582 -0.414 -1.313 0.433 0.261 -0.147 -0.075 -0.075 1.037 -1.070 -0.448 -0.436 -0.284 -0.231 -0.777 0.801 0.811 -0.547 -0.856 0.011 0.404 0.095 -0.627 -0.056 0.976 -0.083 -0.993 -0.769 -0.284 0.080 -0.900 0.665 0.295 -0.036 -1.273 0.469 0.188 0.054 -0.268 -0.011 0.457 -0.262 -0.116 -0.199 -0.640 0.010 -0.432 0.687 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.681 0.088 -0.329 -0.895 1.268 -0.867 -1.357 -0.615 -0.165 -2.004 1.256 -1.089 -9.581 -9.581 1.999 -9.581 -9.581 -9.581 -9.581 1.999 1.156 -2.570 -1.081 0.177 1.090 -1.717 -1.627 0.312 -0.232 -1.627 0.954 -0.172 -0.314 -1.019 -1.813 1.274 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.877 -1.201 -0.747 0.179 0.713 -0.983 -0.832 0.370 0.567 -0.631 -0.721 0.341 0.242 -1.097 -0.352 0.647 0.689 -1.011 -0.544 0.270 0.717 -1.285 -0.513 0.316 0.763 -0.650 -0.517 -0.049 -0.188 -0.880 -0.056 0.693 0.905 -1.417 -0.642 0.153 0.893 -1.122 -1.043 0.261 0.816 -0.850 -0.786 0.143 0.210 -1.002 -0.154 0.531 0.679 -1.027 -0.883 0.449 0.728 -0.705 -0.722 0.168 0.637 -0.587 -0.823 0.280 0.073 -0.672 -0.749 0.787 0.798 -0.766 -1.029 0.243 0.725 -1.041 -0.970 0.434 0.308 -0.316 -1.062 0.565 0.090 -0.586 -0.680 0.718 0.398 -0.362 -0.593 0.312 0.700 -1.426 -0.603 0.428 0.479 -0.464 -0.464 0.209 -0.145 -0.443 -0.204 0.577 0.769 -0.766 -0.777 0.169 0.543 -0.833 -0.889 0.527 0.404 -0.607 -0.664 0.474 0.124 -0.443 -0.324 0.460 0.460 -0.410 -0.995 0.455 0.386 -0.362 -0.934 0.477 0.495 -0.441 -0.784 0.348 -0.075 -0.174 -0.710 0.635 0.796 -1.275 -0.438 0.154 0.893 -1.302 -0.852 0.243 0.840 -0.882 -0.663 0.050 0.222 -0.909 -0.274 0.559 0.502 -0.883 -0.222 0.244 0.807 -0.951 -0.590 0.097 0.649 -0.498 -0.462 -0.003 0.247 -1.053 -0.148 0.514 0.876 -1.190 -0.699 0.152 0.683 -0.915 -0.580 0.256 0.764 -0.955 -0.825 0.289 0.236 -1.083 -0.105 0.506 0.650 -0.821 -0.614 0.276 0.694 -0.808 -0.586 0.195 0.594 -0.588 -0.461 0.136 0.061 -0.692 -0.407 0.663 0.618 -0.939 -0.790 0.450 0.599 -0.636 -0.937 0.400 0.376 -0.302 -0.960 0.462 0.172 -0.727 -0.555 0.667 0.320 -0.652 -0.510 0.498 0.687 -0.987 -0.774 0.380 0.558 -0.647 -0.778 0.385 -0.099 -0.585 -0.219 0.623 0.743 -1.003 -0.784 0.318 0.685 -0.999 -0.961 0.463 0.633 -0.774 -0.728 0.334 0.136 -0.784 -0.402 0.645 0.449 -0.680 -0.810 0.526 0.650 -0.497 -0.910 0.251 0.271 -0.190 -0.711 0.385 -0.142 -0.338 -0.517 0.681 0.612 -0.965 -0.856 0.493 0.673 -0.911 -0.935 0.434 0.348 -0.311 -0.740 0.404 0.280 -0.765 -0.624 0.631 0.261 -0.287 -0.737 0.467 0.652 -0.990 -0.516 0.294 0.428 -0.694 -0.874 0.576 -0.268 -0.762 -0.075 0.705 0.856 -1.143 -1.000 0.307 0.890 -1.166 -0.854 0.199 0.445 -1.170 -1.009 0.763 0.059 -1.047 -0.083 0.613 0.406 -0.731 -0.971 0.644 0.584 -0.795 -0.705 0.390 0.368 -0.122 -0.893 0.324 -0.046 -0.611 -0.757 0.836 0.693 -0.633 -0.749 0.194 0.336 -0.336 -0.984 0.526 0.344 -0.319 -0.892 0.475 -0.048 -0.291 -0.605 0.640 0.122 -0.036 -0.860 0.471 0.278 -0.053 -1.307 0.506 0.621 -0.257 -0.821 0.082 -0.251 0.104 -0.689 0.551 0.650 -0.752 -0.811 0.342 0.592 -0.585 -1.050 0.425 0.772 -0.520 -1.383 0.277 0.121 -0.458 -0.489 0.558 0.422 -0.357 -1.005 0.466 0.414 -0.305 -0.966 0.429 0.233 -0.124 -0.988 0.488 -0.226 -0.140 -0.945 0.781 0.715 -0.970 -0.520 0.203 0.554 -0.587 -0.619 0.281 0.825 -0.743 -0.587 -0.052 0.212 -0.874 -0.142 0.475 0.358 -0.616 -0.321 0.340 0.858 -0.926 -1.170 0.283 0.471 -0.777 -0.529 0.419 0.171 -0.912 -0.331 0.631 0.865 -1.135 -0.821 0.211 0.863 -1.203 -0.638 0.143 0.788 -0.958 -0.843 0.264 0.038 -0.852 -0.003 0.508 0.481 -0.891 -0.555 0.469 0.555 -0.590 -0.695 0.320 0.326 -0.561 -0.249 0.295 -0.203 -0.438 -0.321 0.671 0.625 -1.002 -1.082 0.571 0.450 -0.475 -1.021 0.508 0.562 -0.390 -0.937 0.308 -0.107 -0.374 -0.606 0.716 0.180 -0.574 -0.563 0.603 0.526 -0.113 -1.609 0.387 0.492 -0.753 -0.679 0.460 -0.453 0.023 -0.474 0.617 0.668 -0.991 -0.935 0.469 0.633 -1.031 -1.253 0.624 0.717 -0.810 -0.735 0.244 0.023 -0.648 -0.495 0.711 0.292 -0.551 -0.917 0.644 0.558 -0.451 -1.099 0.411 0.280 -0.375 -0.598 0.438 -0.394 -0.258 -0.649 0.820 0.580 -1.075 -0.621 0.465 0.667 -1.184 -0.837 0.497 0.408 -0.547 -0.645 0.432 0.235 -1.182 -0.309 0.656 0.469 -1.028 -0.219 0.341 0.676 -0.935 -0.432 0.186 0.618 -0.786 -0.751 0.369 -0.197 -1.046 -0.027 0.732 0.662 -1.103 -0.190 0.106 0.752 -1.068 -0.729 0.305 0.825 -1.017 -0.359 -0.067 0.113 -1.233 -0.082 0.630 0.644 -1.125 -0.733 0.462 0.757 -1.103 -0.627 0.260 0.620 -0.563 -0.578 0.159 -0.013 -0.900 -0.345 0.753 0.710 -0.798 -0.734 0.248 0.439 -0.906 -1.149 0.731 0.257 -0.266 -0.751 0.464 0.129 -0.627 -0.437 0.604 0.322 -0.599 -0.569 0.501 0.712 -1.051 -0.627 0.301 0.426 -0.710 -0.640 0.489 -0.050 -0.470 -0.287 0.578 0.557 -0.698 -0.531 0.288 0.726 -0.852 -1.239 0.453 0.539 -1.039 -0.973 0.634 0.067 -0.539 -0.070 0.391 0.540 -0.634 -0.912 0.455 0.649 -0.779 -0.679 0.292 0.314 -0.372 -0.703 0.455 0.087 -0.429 -0.502 0.574 0.652 -1.303 -0.272 0.257 0.721 -1.226 -0.414 0.231 0.579 -0.830 -0.098 0.013 0.183 -1.156 -0.065 0.546 0.587 -0.937 -0.270 0.198 0.866 -1.403 -0.425 0.076 0.166 -0.226 -0.078 0.105 0.005 -0.855 0.031 0.508 0.716 -0.984 -0.196 -0.030 0.664 -1.522 -0.453 0.419 0.642 -1.351 0.234 -0.198 0.161 -0.763 0.080 0.305 0.384 -0.606 -0.398 0.355 0.532 -1.029 -0.273 0.306 0.443 -0.623 -0.084 0.068 -0.066 -0.983 -0.245 0.761 0.534 -1.012 -0.617 0.489 0.460 -0.650 -0.740 0.473 0.172 -0.523 -0.554 0.582 0.016 -0.833 -0.329 0.706 0.127 -0.535 -0.430 0.561 0.594 -0.360 -1.122 0.325 0.294 -0.283 -0.883 0.495 -0.293 -0.422 -0.408 0.752 0.600 -0.875 -0.760 0.431 0.754 -1.487 -0.883 0.501 0.460 -0.682 -0.626 0.436 -0.040 -0.810 -0.145 0.635 0.293 -0.782 -0.750 0.677 0.606 -0.646 -0.892 0.379 0.273 -0.376 -0.529 0.409 -0.119 -0.506 -0.410 0.698 0.671 -1.019 -0.823 0.432 0.729 -1.108 -0.854 0.406 0.330 -0.410 -0.553 0.388 0.143 -1.009 -0.502 0.759 0.454 -0.705 -0.424 0.347 0.670 -1.223 -0.596 0.399 0.415 -0.681 -0.427 0.377 -0.063 -0.908 -0.084 0.648 0.717 -1.190 -0.627 0.345 0.898 -1.367 -1.264 0.414 0.672 -0.870 -0.965 0.431 0.236 -1.258 -0.303 0.672 0.469 -1.021 -1.034 0.710 0.799 -0.832 -0.902 0.218 0.243 -0.211 -0.677 0.408 -0.008 -0.723 -0.653 0.819 0.790 -0.764 -0.879 0.187 0.388 -0.736 -0.971 0.661 0.216 -0.558 -0.883 0.693 -0.121 -0.324 -1.048 0.846 0.291 -0.589 -0.482 0.481 0.523 -0.526 -1.007 0.456 0.359 -0.803 -0.236 0.373 -0.146 -0.379 -0.498 0.695 0.597 -0.933 -0.440 0.295 0.654 -1.313 -0.994 0.606 0.272 -0.495 -0.804 0.595 0.099 -0.447 -0.901 0.731 0.486 -0.513 -1.021 0.491 0.403 -0.742 -0.812 0.595 0.292 -0.362 -0.909 0.551 -0.393 -0.309 -0.736 0.872 0.832 -1.266 -0.554 0.167 0.707 -0.770 -0.743 0.244 0.570 -0.721 -0.614 0.328 0.293 -0.863 -0.238 0.461 0.417 -0.869 -0.432 0.460 0.793 -1.043 -0.754 0.250 0.527 -0.602 -0.522 0.268 0.146 -1.072 -0.240 0.651 0.855 -1.321 -0.772 0.269 0.747 -0.893 -0.893 0.316 0.827 -1.087 -0.812 0.245 0.229 -0.911 -0.047 0.410 0.491 -0.712 -0.753 0.476 0.750 -0.597 -0.718 0.070 0.486 -0.684 -0.632 0.413 -0.034 -0.711 -0.273 0.664 0.616 -0.927 -0.898 0.490 0.405 -0.658 -0.909 0.594 0.282 -0.319 -0.645 0.425 -0.126 -0.628 -0.611 0.833 0.268 -0.950 -0.378 0.594 0.534 -0.786 -0.934 0.534 0.392 -0.731 -0.572 0.498 -0.188 -0.508 -0.316 0.692 0.680 -0.983 -0.970 0.466 0.637 -1.241 -1.213 0.669 0.472 -0.707 -0.819 0.520 -0.110 -0.779 -0.463 0.820 0.418 -0.688 -0.861 0.578 0.514 -0.547 -1.087 0.503 0.311 -0.351 -0.795 0.485 -0.236 -0.493 -0.669 0.857 Intron LUT 5 4 4 0 0.000 0.856 -1.465 -0.849 0.348 0.627 -1.230 -1.188 0.669 0.423 -0.971 -0.499 0.528 0.069 -1.148 -0.502 0.843 0.562 -1.110 -0.489 0.431 0.712 -1.590 -0.766 0.527 0.634 -0.971 -0.606 0.357 -0.187 -0.992 -0.102 0.754 0.802 -1.264 -0.722 0.304 0.775 -1.504 -1.065 0.544 0.333 -1.220 -1.269 0.923 0.255 -1.289 -0.382 0.705 0.587 -1.358 -0.760 0.602 0.638 -0.928 -0.794 0.425 0.617 -0.821 -0.749 0.385 -0.014 -0.833 -0.807 0.909 0.813 -1.135 -1.001 0.366 0.689 -1.290 -1.314 0.656 0.283 -0.932 -0.393 0.582 0.075 -1.056 -0.869 0.940 0.443 -0.639 -0.554 0.397 0.739 -1.275 -0.671 0.367 0.406 -0.757 -0.717 0.561 -0.224 -0.497 -0.417 0.754 0.701 -1.176 -0.532 0.310 0.673 -0.824 -0.895 0.382 0.412 -1.604 -1.263 0.944 0.273 -0.956 -0.684 0.726 0.443 -0.775 -0.849 0.586 0.580 -1.056 -1.154 0.655 0.359 -0.371 -0.980 0.524 -0.060 -0.524 -0.785 0.820 0.794 -1.439 -0.588 0.301 0.743 -1.376 -0.898 0.490 0.740 -0.969 -0.642 0.237 0.123 -1.213 -0.348 0.760 0.412 -0.999 -0.344 0.466 0.765 -1.319 -0.713 0.367 0.469 -0.877 -0.374 0.378 0.105 -1.224 -0.144 0.670 0.914 -1.431 -0.775 0.214 0.635 -1.860 -1.053 0.757 0.754 -0.987 -0.744 0.278 0.595 -1.478 -0.636 0.572 0.778 -0.969 -0.728 0.227 0.718 -0.922 -0.906 0.372 0.620 -0.733 -0.580 0.255 -0.120 -0.643 -0.699 0.866 0.569 -1.126 -0.847 0.587 0.614 -0.885 -1.206 0.580 0.208 -0.479 -0.905 0.672 0.224 -0.978 -0.627 0.745 0.268 -0.807 -0.429 0.567 0.630 -1.007 -0.855 0.487 0.645 -0.781 -0.667 0.291 -0.180 -0.789 -0.165 0.719 0.723 -1.289 -0.782 0.443 0.674 -1.465 -0.990 0.622 0.571 -0.851 -0.851 0.491 0.018 -0.839 -0.306 0.696 0.427 -0.827 -0.812 0.606 0.639 -0.690 -1.132 0.450 0.375 -0.429 -0.895 0.508 -0.188 -0.459 -0.747 0.847 0.617 -1.194 -1.059 0.632 0.676 -1.450 -0.981 0.613 0.315 -0.816 -0.401 0.517 0.150 -0.930 -0.647 0.788 0.289 -0.834 -0.522 0.605 0.624 -1.876 -0.514 0.572 0.480 -1.383 -0.520 0.609 -0.002 -1.229 -0.233 0.786 0.779 -1.242 -1.042 0.460 0.601 -1.387 -0.849 0.628 -0.236 -1.433 -1.523 1.282 0.156 -1.094 -0.523 0.783 0.423 -0.947 -0.975 0.706 0.432 -0.519 -0.885 0.497 0.211 -0.308 -0.951 0.602 -0.247 -0.703 -1.005 1.032 0.873 -1.332 -0.967 0.333 0.209 -1.014 -1.149 0.925 0.484 -1.080 -0.590 0.550 0.069 -0.682 -0.798 0.810 0.135 -0.582 -0.432 0.577 0.499 -0.300 -1.148 0.404 0.351 -0.739 -0.484 0.496 0.115 -0.397 -0.200 0.364 0.745 -1.248 -0.980 0.481 0.723 -1.277 -1.157 0.574 0.415 -0.803 -0.644 0.539 0.457 -0.798 -0.954 0.619 0.370 -0.736 -0.716 0.584 0.557 -1.055 -1.250 0.702 0.348 -0.486 -0.721 0.492 -0.103 -0.471 -0.782 0.820 0.856 -1.350 -0.537 0.149 0.814 -0.748 -0.771 0.085 0.312 -0.726 -0.289 0.417 0.396 -1.057 -0.514 0.588 0.318 -0.833 -0.414 0.528 0.911 -1.120 -0.786 0.111 0.057 -0.474 -1.252 0.864 -0.261 -0.963 0.055 0.690 0.859 -1.627 -1.070 0.471 0.788 -1.570 -0.540 0.321 0.736 -0.892 -1.477 0.523 0.420 -1.230 -0.605 0.658 0.489 -0.809 -0.596 0.447 0.291 -0.458 -1.081 0.656 0.352 -0.568 -0.499 0.425 0.009 -0.921 -0.643 0.868 0.488 -0.810 -1.032 0.621 0.399 -0.706 -0.963 0.637 0.210 -0.467 -0.976 0.688 -0.021 -0.889 -0.450 0.801 0.228 -1.115 -0.353 0.664 0.591 -0.835 -0.968 0.508 0.389 -0.491 -0.831 0.502 -0.266 -0.474 -0.362 0.740 0.671 -1.167 -0.664 0.413 0.671 -1.438 -1.426 0.736 0.599 -1.211 -0.649 0.501 0.177 -0.906 -0.879 0.842 0.397 -0.758 -1.027 0.679 0.553 -0.672 -1.223 0.562 0.418 -0.419 -0.797 0.422 -0.279 -0.442 -0.748 0.883 0.552 -1.441 -0.668 0.619 0.686 -1.614 -1.307 0.732 0.205 -0.827 -0.484 0.650 0.108 -1.034 -0.549 0.808 0.398 -1.075 -0.356 0.512 0.675 -1.785 -0.719 0.590 0.577 -0.694 -0.598 0.298 -0.135 -1.664 -0.021 0.838 0.711 -1.282 -0.608 0.373 0.799 -2.053 -0.858 0.553 0.453 -1.240 -0.847 0.724 0.122 -1.296 -0.365 0.790 0.516 -1.191 -0.712 0.606 0.689 -1.351 -0.817 0.514 0.477 -0.867 -0.493 0.432 -0.082 -1.048 -0.647 0.951 0.728 -1.106 -0.714 0.344 0.353 -0.853 -1.518 0.864 0.031 -0.679 -0.321 0.635 0.244 -0.781 -0.710 0.698 0.383 -0.610 -0.455 0.390 0.513 -0.902 -0.437 0.378 0.320 -1.442 -0.644 0.802 0.043 -1.779 -0.254 0.880 0.708 -1.379 -0.482 0.341 0.407 -0.738 -1.269 0.731 0.436 -0.876 -1.011 0.683 0.452 -1.240 -1.040 0.784 0.526 -0.697 -0.786 0.447 0.365 -0.642 -0.820 0.590 0.476 -0.641 -0.938 0.532 -0.083 -0.530 -0.660 0.791 0.676 -1.463 -0.394 0.354 0.635 -1.850 -0.445 0.521 0.371 -0.998 0.037 0.239 0.094 -1.146 -0.138 0.653 0.395 -1.035 -0.064 0.311 0.571 -1.364 -0.866 0.657 0.325 -0.273 -0.334 0.172 0.174 -1.060 -0.320 0.670 0.933 -1.330 -0.391 -0.103 0.676 -1.752 0.084 0.065 0.415 -0.521 -0.521 0.348 0.498 -1.013 -0.508 0.474 0.753 -1.110 -0.807 0.357 0.720 -1.080 -0.817 0.393 0.710 -0.986 -0.426 0.157 0.105 -1.089 -0.421 0.772 0.347 -1.170 -0.127 0.452 0.427 -1.207 -0.638 0.660 0.283 -0.548 -0.639 0.543 0.010 -0.975 -0.208 0.695 0.143 -0.750 -0.350 0.601 0.631 -0.989 -0.837 0.472 0.450 -0.928 -0.652 0.557 -0.293 -0.702 -0.521 0.904 0.540 -1.033 -0.565 0.467 0.557 -1.623 -0.867 0.727 0.368 -1.310 -0.807 0.794 -0.009 -1.209 -0.091 0.709 0.287 -0.862 -0.519 0.615 0.626 -0.831 -0.912 0.447 0.315 -0.509 -0.542 0.451 -0.222 -0.564 -0.489 0.810 0.659 -1.140 -0.996 0.552 0.567 -1.415 -1.030 0.726 0.173 -0.626 -0.673 0.676 0.096 -1.141 -0.603 0.863 0.220 -1.063 0.038 0.411 0.729 -1.575 -0.658 0.458 0.300 -0.665 -0.512 0.523 -0.072 -1.296 -0.142 0.795 0.817 -1.395 -0.780 0.351 0.660 -1.469 -0.890 0.603 0.644 -0.943 -1.041 0.517 0.192 -1.337 -0.325 0.735 0.411 -1.224 -0.911 0.775 0.787 -0.922 -1.171 0.381 0.365 -0.389 -0.809 0.462 -0.137 -0.885 -0.782 0.976 0.784 -1.109 -0.721 0.272 0.410 -1.243 -1.385 0.900 0.061 -0.709 -0.503 0.713 -0.128 -0.742 -0.970 0.983 0.359 -1.129 -0.276 0.521 0.468 -1.483 -0.471 0.621 0.251 -0.834 -0.320 0.534 -0.075 -0.854 -0.652 0.896 0.597 -1.354 -0.496 0.473 0.728 -1.494 -1.168 0.626 0.203 -0.534 -1.216 0.788 -0.017 -0.858 -0.664 0.871 0.485 -0.872 -0.546 0.454 0.453 -1.053 -0.946 0.705 0.307 -0.534 -0.928 0.629 -0.178 -0.493 -0.964 0.921 0.816 -1.388 -0.541 0.227 0.695 -1.013 -0.932 0.445 0.559 -0.931 -0.599 0.425 0.373 -1.087 -0.619 0.663 0.298 -1.293 0.107 0.363 0.596 -1.477 -0.744 0.616 0.307 -0.610 -0.286 0.365 0.044 -1.395 -0.317 0.837 0.842 -1.302 -0.752 0.273 0.555 -1.327 -0.614 0.564 0.739 -0.966 -1.232 0.479 0.414 -1.151 -0.355 0.522 0.671 -1.172 -0.557 0.361 0.603 -0.944 -0.689 0.423 0.446 -0.597 -0.711 0.449 -0.053 -0.870 -0.568 0.859 0.623 -0.993 -0.948 0.525 0.492 -0.908 -1.208 0.703 0.351 -0.505 -0.964 0.592 -0.124 -0.813 -0.598 0.889 0.098 -1.128 0.111 0.477 0.723 -1.112 -1.155 0.523 0.449 -0.833 -0.567 0.484 -0.105 -0.868 -0.399 0.819 0.670 -1.011 -0.868 0.449 0.750 -1.414 -1.509 0.671 0.534 -0.898 -1.084 0.626 0.127 -0.867 -0.684 0.797 0.445 -0.959 -0.615 0.557 0.637 -0.812 -1.187 0.523 0.367 -0.355 -0.920 0.486 -0.256 -0.694 -0.909 1.009 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.371 -1.026 -0.156 0.399 0.343 -0.383 -0.596 0.382 0.827 -0.758 -0.336 -0.248 1.036 -1.197 0.039 -1.040 0.930 -1.011 -0.563 -0.117 1.180 -1.663 -0.553 -0.441 1.995 -7.640 -7.640 -7.640 -7.640 -7.640 -7.640 1.995 -7.640 -7.640 1.995 -7.640 0.382 -0.733 0.510 -0.574 0.273 0.504 -0.596 -0.490 0.180 -0.954 -0.132 0.525 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.637 -0.796 -0.044 -0.154 0.510 -0.629 -0.500 0.290 0.165 -0.420 -0.480 0.500 0.371 -0.542 -0.015 0.043 0.359 -0.075 -0.440 0.043 0.580 -0.986 -0.440 0.336 -6.629 -6.629 -6.629 1.989 1.989 -6.629 -6.629 -6.629 1.989 -6.629 -6.629 -6.629 TAG WMM 9 6 4 0 0.000 0.370 -0.243 0.313 -0.687 0.735 -0.687 -1.161 0.342 -0.161 -0.331 -0.524 0.691 0.254 -0.377 -0.083 0.129 0.450 -1.083 -0.121 0.313 0.129 -1.243 0.313 0.313 -5.331 -5.331 -5.331 1.973 1.973 -5.331 -5.331 -5.331 -5.331 -5.331 1.973 -5.331 TGA WMM 9 6 4 0 0.000 0.529 -0.568 0.345 -0.709 0.720 -0.503 -1.294 0.309 0.028 -0.503 -0.294 0.545 0.195 -0.440 -0.064 0.215 0.678 -0.409 -1.087 0.234 -0.239 -0.017 -0.380 0.481 -5.994 -5.994 -5.994 1.983 -5.994 -5.994 1.983 -5.994 1.983 -5.994 -5.994 -5.994 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/B.malayi.hmm0000644000175000017500000013000111424066010015477 0ustar moellermoellerzoeHMM B.malayi 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.914392 Inter Esngl 0.085608 Intron Eterm 0.240850 Intron Exon 0.759150 0.476255 0.313433 0.210312 0.693548 0.173021 0.133431 0.669039 0.236655 0.094306 0.700252 0.146096 0.153652 0.754519 0.245481 0.755359 0.244641 0.778986 0.221014 Einit 2 DEFINED 0 249 -8.115 -8.061 -8.009 -7.958 -7.909 -7.862 -7.816 -7.771 -7.728 -7.687 -7.646 -7.624 -7.603 -7.581 -7.560 -7.540 -7.519 -7.499 -7.480 -7.460 -7.441 -7.434 -7.427 -7.420 -7.413 -7.406 -7.400 -7.393 -7.386 -7.380 -7.373 -7.362 -7.352 -7.341 -7.330 -7.320 -7.310 -7.299 -7.289 -7.279 -7.269 -7.281 -7.292 -7.304 -7.316 -7.328 -7.340 -7.352 -7.365 -7.377 -7.390 -7.389 -7.388 -7.387 -7.386 -7.385 -7.385 -7.384 -7.383 -7.382 -7.381 -7.380 -7.378 -7.376 -7.375 -7.373 -7.371 -7.370 -7.368 -7.366 -7.365 -7.384 -7.403 -7.423 -7.443 -7.463 -7.483 -7.504 -7.525 -7.546 -7.568 -7.564 -7.560 -7.557 -7.553 -7.549 -7.545 -7.542 -7.538 -7.534 -7.530 -7.537 -7.543 -7.550 -7.557 -7.563 -7.570 -7.577 -7.583 -7.590 -7.597 -7.609 -7.622 -7.635 -7.648 -7.661 -7.674 -7.688 -7.701 -7.715 -7.728 -7.731 -7.733 -7.735 -7.737 -7.739 -7.741 -7.743 -7.745 -7.748 -7.750 -7.766 -7.782 -7.799 -7.816 -7.833 -7.850 -7.868 -7.885 -7.903 -7.921 -7.934 -7.948 -7.962 -7.975 -7.989 -8.003 -8.018 -8.032 -8.046 -8.061 -8.068 -8.074 -8.081 -8.088 -8.095 -8.102 -8.109 -8.115 -8.122 -8.129 -8.149 -8.169 -8.189 -8.210 -8.231 -8.252 -8.274 -8.295 -8.318 -8.340 -8.368 -8.396 -8.425 -8.455 -8.485 -8.516 -8.547 -8.579 -8.612 -8.646 -8.693 -8.741 -8.791 -8.843 -8.897 -8.953 -9.011 -9.072 -9.135 -9.201 -9.210 -9.219 -9.228 -9.237 -9.246 -9.255 -9.264 -9.274 -9.283 -9.292 -9.277 -9.261 -9.246 -9.231 -9.216 -9.201 -9.187 -9.172 -9.158 -9.143 -9.166 -9.189 -9.213 -9.237 -9.261 -9.286 -9.311 -9.337 -9.363 -9.390 -9.400 -9.410 -9.420 -9.430 -9.441 -9.451 -9.462 -9.472 -9.483 -9.494 -9.530 -9.568 -9.606 -9.646 -9.687 -9.728 -9.771 -9.816 -9.862 -9.909 -9.978 -10.050 -10.127 -10.207 -10.292 -10.383 -10.480 -10.583 -10.695 -10.816 -10.780 -10.745 -10.712 -10.678 -10.646 -10.614 -10.583 -10.553 -10.523 GEOMETRIC 250 -1 103 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -8.238 -8.204 -8.171 -8.138 -8.106 -8.075 -8.044 -8.015 -7.985 -7.957 -7.928 -7.914 -7.900 -7.885 -7.871 -7.857 -7.844 -7.830 -7.816 -7.803 -7.790 -7.780 -7.770 -7.760 -7.751 -7.741 -7.731 -7.722 -7.713 -7.703 -7.694 -7.698 -7.702 -7.706 -7.710 -7.715 -7.719 -7.723 -7.727 -7.731 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.736 -7.730 -7.725 -7.720 -7.715 -7.709 -7.704 -7.699 -7.694 -7.689 -7.684 -7.682 -7.680 -7.677 -7.675 -7.673 -7.671 -7.669 -7.667 -7.665 -7.663 -7.680 -7.696 -7.713 -7.729 -7.746 -7.764 -7.781 -7.799 -7.816 -7.834 -7.820 -7.805 -7.791 -7.777 -7.762 -7.748 -7.735 -7.721 -7.707 -7.694 -7.704 -7.715 -7.725 -7.736 -7.746 -7.757 -7.768 -7.779 -7.790 -7.801 -7.800 -7.799 -7.797 -7.796 -7.795 -7.794 -7.793 -7.792 -7.791 -7.790 -7.784 -7.779 -7.773 -7.768 -7.762 -7.757 -7.752 -7.746 -7.741 -7.736 -7.740 -7.744 -7.748 -7.753 -7.757 -7.761 -7.766 -7.770 -7.774 -7.779 -7.773 -7.768 -7.762 -7.757 -7.752 -7.746 -7.741 -7.736 -7.730 -7.725 -7.751 -7.777 -7.803 -7.830 -7.857 -7.885 -7.914 -7.943 -7.973 -8.003 -8.012 -8.021 -8.030 -8.039 -8.048 -8.058 -8.067 -8.076 -8.086 -8.095 -8.101 -8.106 -8.112 -8.117 -8.123 -8.128 -8.134 -8.139 -8.145 -8.151 -8.174 -8.197 -8.220 -8.244 -8.269 -8.293 -8.319 -8.344 -8.370 -8.397 -8.400 -8.404 -8.407 -8.410 -8.414 -8.417 -8.421 -8.424 -8.427 -8.431 -8.459 -8.487 -8.516 -8.545 -8.575 -8.606 -8.637 -8.669 -8.702 -8.736 -8.761 -8.788 -8.814 -8.841 -8.869 -8.897 -8.926 -8.955 -8.985 -9.016 -9.052 -9.090 -9.128 -9.168 -9.208 -9.250 -9.293 -9.338 -9.384 -9.431 -9.445 -9.459 -9.473 -9.487 -9.501 -9.516 -9.530 -9.545 -9.560 -9.575 -9.587 -9.598 -9.610 -9.622 -9.633 -9.645 -9.657 -9.669 -9.682 -9.694 -9.710 -9.727 -9.744 -9.761 -9.779 -9.796 -9.814 -9.832 -9.850 GEOMETRIC 250 -1 124 Exon 2 DEFINED 0 249 -11.043 -10.940 -10.845 -10.756 -10.671 -10.592 -10.516 -10.445 -10.377 -10.311 -10.249 -10.147 -10.052 -9.963 -9.879 -9.800 -9.724 -9.653 -9.585 -9.520 -9.458 -9.412 -9.368 -9.326 -9.285 -9.244 -9.205 -9.167 -9.130 -9.094 -9.059 -9.011 -8.965 -8.920 -8.876 -8.834 -8.793 -8.753 -8.714 -8.676 -8.640 -8.591 -8.543 -8.498 -8.453 -8.410 -8.368 -8.328 -8.288 -8.250 -8.212 -8.178 -8.144 -8.111 -8.078 -8.047 -8.016 -7.985 -7.955 -7.926 -7.898 -7.868 -7.840 -7.811 -7.784 -7.756 -7.730 -7.703 -7.678 -7.652 -7.627 -7.606 -7.585 -7.564 -7.543 -7.523 -7.503 -7.483 -7.464 -7.445 -7.426 -7.414 -7.402 -7.390 -7.379 -7.367 -7.355 -7.344 -7.333 -7.322 -7.310 -7.307 -7.303 -7.299 -7.295 -7.291 -7.287 -7.284 -7.280 -7.276 -7.272 -7.273 -7.273 -7.274 -7.274 -7.275 -7.275 -7.276 -7.276 -7.277 -7.277 -7.284 -7.292 -7.299 -7.307 -7.314 -7.322 -7.329 -7.337 -7.344 -7.352 -7.364 -7.376 -7.387 -7.399 -7.412 -7.424 -7.436 -7.449 -7.461 -7.474 -7.487 -7.501 -7.515 -7.529 -7.543 -7.557 -7.571 -7.586 -7.601 -7.616 -7.621 -7.627 -7.633 -7.638 -7.644 -7.650 -7.656 -7.662 -7.667 -7.673 -7.680 -7.687 -7.694 -7.701 -7.708 -7.715 -7.722 -7.729 -7.736 -7.743 -7.765 -7.786 -7.808 -7.830 -7.853 -7.876 -7.900 -7.923 -7.948 -7.972 -7.987 -8.002 -8.018 -8.033 -8.049 -8.064 -8.080 -8.096 -8.113 -8.129 -8.150 -8.172 -8.193 -8.215 -8.237 -8.260 -8.283 -8.307 -8.330 -8.354 -8.377 -8.400 -8.423 -8.447 -8.471 -8.495 -8.520 -8.546 -8.571 -8.598 -8.618 -8.638 -8.659 -8.680 -8.701 -8.723 -8.745 -8.768 -8.790 -8.813 -8.824 -8.835 -8.846 -8.858 -8.869 -8.880 -8.892 -8.904 -8.915 -8.927 -8.964 -9.001 -9.040 -9.080 -9.121 -9.163 -9.206 -9.251 -9.297 -9.345 -9.380 -9.415 -9.452 -9.490 -9.529 -9.569 -9.610 -9.652 -9.695 -9.740 -9.766 -9.793 -9.820 -9.848 -9.876 -9.905 -9.934 -9.965 -9.995 GEOMETRIC 250 -1 145 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 225 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.303 -0.974 -0.970 0.805 0.351 -0.985 -1.058 0.798 0.231 -0.963 -1.291 0.930 0.226 -1.062 -1.159 0.929 0.383 -1.168 -1.452 0.915 0.341 -1.462 -1.348 0.984 -1.386 -1.909 -2.401 1.661 -2.639 -2.686 -3.627 1.849 -0.467 -1.537 -0.510 1.157 -1.483 1.146 -4.723 0.477 1.999 -9.581 -9.581 -9.581 -9.581 -9.581 1.999 -9.581 0.269 -1.058 0.804 -0.813 0.225 -0.777 -0.581 0.660 0.393 -0.610 -0.268 0.264 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.545 -1.498 -0.096 0.324 0.695 -1.351 -0.475 0.345 0.516 -0.587 -0.977 0.481 -0.400 -1.086 0.108 0.760 0.665 -1.513 0.207 -0.137 1.036 -2.327 -0.319 -0.075 0.403 -0.909 -1.025 0.725 -0.401 -1.394 0.405 0.621 0.805 -1.327 -0.667 0.293 0.637 -1.344 -0.717 0.529 0.777 -1.310 -1.965 0.702 -0.146 -0.890 0.017 0.628 . 0.072 . 1.560 0.790 -1.640 -0.084 0.009 . -0.079 0.561 0.658 -0.109 -0.706 0.401 0.189 0.605 -0.846 -0.419 0.232 0.577 -0.452 -0.934 0.327 -0.219 -0.051 -0.492 0.550 -0.384 -0.213 -0.033 0.479 0.079 -0.797 0.432 0.027 0.974 -1.511 -0.026 -0.511 0.402 -0.322 -1.091 0.494 -0.557 0.017 0.061 0.339 0.532 -1.145 -0.645 0.548 0.630 -1.263 -1.263 0.695 0.628 -0.333 -1.277 0.320 -0.738 -0.187 0.159 0.491 . 0.614 . 1.304 0.591 -0.626 0.201 -0.522 . 0.087 0.597 0.511 -0.083 0.161 -0.316 0.182 0.749 -2.122 0.278 -0.190 0.781 -1.783 -0.184 0.152 0.809 -0.793 -0.450 -0.092 -0.154 -0.815 0.310 0.371 0.592 -1.514 0.284 -0.113 1.012 -1.919 -0.481 0.004 0.425 -0.916 -1.095 0.731 -0.526 -1.275 -0.044 0.943 0.751 -1.456 -0.294 0.185 0.653 -0.953 -0.742 0.394 0.548 -0.882 -1.707 0.756 -0.334 -1.117 0.171 0.695 . 0.373 . 1.436 0.674 -1.619 0.181 -0.082 . -0.190 0.934 0.279 -0.252 -0.434 0.482 0.034 0.511 -1.196 -0.254 0.378 0.467 -0.479 -0.809 0.411 0.260 -0.093 -1.394 0.570 -0.793 -0.187 0.198 0.483 0.212 -1.279 0.302 0.259 0.955 -1.461 -0.106 -0.380 0.385 -0.550 -0.956 0.580 -0.600 -0.157 0.096 0.460 0.759 -1.321 -0.544 0.289 0.548 -0.918 -0.828 0.531 0.461 -0.785 -1.694 0.794 -0.064 -0.812 -0.393 0.776 . 0.534 . 1.352 0.480 -0.407 -0.211 -0.018 . -0.118 0.531 0.708 -0.310 -0.213 0.402 0.014 0.655 -1.467 -0.307 0.328 0.824 -1.271 -0.695 0.261 0.244 -0.152 -1.400 0.620 -0.248 -0.575 0.345 0.283 0.812 -1.749 -0.047 -0.030 1.048 -2.404 -0.905 0.275 0.336 -0.758 -1.211 0.778 -0.776 -1.166 0.441 0.690 0.774 -1.299 -0.796 0.386 0.967 -1.504 -1.006 0.256 1.091 -1.435 -2.287 0.372 0.012 -1.210 -0.109 0.707 . 0.419 . 1.413 0.894 -1.303 -0.465 0.016 . 0.143 0.365 0.685 -0.185 -0.395 0.112 0.355 0.841 -1.481 -0.196 -0.033 0.164 -0.282 -0.854 0.588 -0.161 -0.107 -1.889 0.931 -0.336 -0.547 0.144 0.504 0.672 -1.733 0.157 -0.013 0.690 -1.147 -1.954 0.746 0.255 -1.369 -0.706 0.853 -0.773 -1.135 0.701 0.415 0.877 -1.352 -0.961 0.332 0.771 -1.350 -1.672 0.667 0.626 -0.849 -3.561 0.861 0.124 -0.366 -0.394 0.457 . 0.887 . 1.105 0.873 -0.851 -0.620 -0.053 . -0.087 -0.194 1.128 -0.049 0.037 -0.317 0.268 0.776 -1.683 0.060 -0.098 0.909 -1.110 -0.270 -0.270 0.578 -0.857 -0.937 0.519 -0.656 -0.476 0.562 0.227 0.690 -1.343 0.072 -0.087 0.863 -2.137 0.151 -0.247 0.742 -0.666 -0.559 0.026 -0.474 -1.229 -0.120 0.951 0.663 -1.704 -0.987 0.683 0.906 -1.314 -1.273 0.390 0.578 -0.651 -1.522 0.606 0.027 -0.905 0.145 0.424 . 0.423 . 1.411 0.490 -1.226 -0.127 0.324 . -0.200 0.990 0.193 -0.063 -0.363 0.269 0.084 0.737 -1.263 -0.729 0.394 0.351 -1.072 -0.741 0.723 -0.181 -0.465 -0.316 0.670 -0.579 -0.413 -0.191 0.768 0.425 -1.435 0.361 0.006 0.830 -1.680 -0.725 0.385 0.526 -0.528 -1.769 0.654 -0.642 -0.477 -0.087 0.765 0.456 -1.408 -1.058 0.825 0.496 -1.204 -1.294 0.805 0.486 -0.906 -1.663 0.808 0.057 -1.145 -0.326 0.774 . 0.171 . 1.523 0.638 -0.708 -0.734 0.299 . -0.014 0.466 0.704 0.000 -0.379 0.194 0.120 0.753 -1.658 -0.172 0.151 0.557 -1.057 -0.086 0.145 0.379 -1.039 -0.962 0.765 -0.096 -1.156 0.446 0.325 0.810 -1.855 0.000 -0.043 1.284 -2.406 -0.893 -0.255 0.524 -1.222 -1.415 0.815 -0.058 -2.073 -0.336 1.007 0.845 -1.900 -0.559 0.329 0.776 -0.959 -0.798 0.261 0.608 -0.743 -1.945 0.695 0.187 -1.700 -0.232 0.768 . -0.043 . 1.599 1.186 -1.296 -1.136 -0.214 . -0.163 0.784 0.470 0.251 -0.764 0.120 0.183 0.908 -1.130 -0.372 -0.161 0.283 -0.251 -0.645 0.383 0.042 -0.097 -2.009 0.838 -0.881 -0.376 0.029 0.736 0.590 -1.258 -0.307 0.343 0.733 -3.790 -0.246 0.508 0.618 -2.531 -2.361 1.069 -0.218 -1.059 -0.120 0.799 0.788 -1.332 -0.510 0.232 0.788 -0.739 -2.126 0.531 0.203 -1.312 -1.312 1.031 -0.083 -0.411 -0.381 0.619 . 0.675 . 1.265 0.569 -0.308 -0.525 0.020 . 0.326 0.472 0.444 0.316 -0.171 -0.273 0.056 0.664 -1.034 -0.146 0.033 0.676 -1.363 -0.678 0.474 0.341 -1.033 0.095 0.234 -0.624 -1.094 0.051 0.885 0.576 -1.444 0.272 -0.098 1.230 -2.408 -1.185 0.037 0.468 -1.252 -1.252 0.830 -0.069 -1.349 0.189 0.598 0.450 -0.789 -0.679 0.517 0.520 -1.435 -0.077 0.320 0.836 -1.852 -1.437 0.650 0.221 -1.644 -0.242 0.739 . 0.618 . 1.302 0.864 -1.585 -0.037 -0.198 . 0.315 0.257 0.642 0.004 -0.847 0.572 -0.067 0.732 -1.013 -0.760 0.325 0.641 -0.741 -0.649 0.269 -0.282 0.158 -0.771 0.562 -0.686 -0.310 0.151 0.547 0.656 -1.534 0.144 -0.039 1.154 -2.551 -0.752 0.015 0.276 -0.852 -1.069 0.814 -0.338 -0.807 -0.563 0.971 0.726 -1.525 -0.912 0.553 0.513 -1.030 -1.041 0.675 0.244 -0.658 -1.747 0.914 -0.055 -0.640 -0.558 0.780 . 0.471 . 1.386 0.744 -0.770 -0.576 0.095 . 0.245 0.333 0.637 -0.041 -0.407 0.464 -0.160 0.617 -1.041 -0.405 0.293 0.927 -0.906 -0.654 -0.105 0.312 0.142 -0.828 0.127 -0.280 -0.456 0.211 0.368 0.738 -1.268 0.023 -0.150 1.119 -2.122 -0.753 0.007 0.661 -0.675 -1.020 0.378 -0.268 -1.140 0.531 0.345 0.742 -1.103 -0.310 0.078 0.653 -1.617 -0.724 0.581 0.663 -0.462 -1.807 0.490 0.096 -1.276 -0.030 0.621 . 0.510 . 1.365 0.918 -1.195 -0.374 -0.149 . 0.153 0.555 0.504 -0.215 -0.445 0.092 0.420 0.586 -1.012 -0.101 0.098 0.156 -0.491 -1.049 0.758 -0.170 -0.244 -1.000 0.821 -0.756 0.093 -0.182 0.546 0.173 -1.053 0.138 0.368 0.981 -2.115 -0.241 -0.076 0.179 -1.174 -1.300 1.013 -0.018 -0.446 -0.549 0.673 0.664 -0.855 -0.551 0.239 0.758 -1.137 -1.564 0.600 0.352 -1.027 -0.889 0.760 -0.126 -0.345 -0.733 0.761 . 0.678 . 1.263 0.300 -0.537 -0.236 0.300 . -0.369 0.613 0.762 -0.609 0.226 0.061 0.179 0.730 -1.612 -0.059 0.076 1.048 -1.537 -0.692 -0.044 0.405 -0.380 -0.736 0.386 -0.243 -0.814 0.414 0.327 0.685 -1.420 0.077 -0.054 0.965 -1.791 -0.807 0.248 0.579 -0.670 -1.182 0.523 -0.057 -0.953 -0.168 0.707 0.869 -1.528 -0.698 0.275 0.766 -1.175 -1.035 0.453 0.547 -0.740 -2.062 0.766 -0.086 -0.895 0.049 0.571 . 0.284 . 1.476 1.031 -1.145 -0.433 -0.388 . 0.504 0.354 0.382 -0.055 -0.387 0.241 0.126 0.478 -1.135 -0.195 0.354 0.232 -0.673 -0.684 0.656 -0.290 -0.018 -0.947 0.745 -0.967 -0.242 -0.087 0.767 0.482 -1.455 0.009 0.302 0.864 -1.593 -0.394 0.121 0.424 -0.744 -1.076 0.666 -0.743 -0.529 -0.139 0.849 0.547 -1.288 -0.959 0.692 0.452 -0.963 -0.933 0.674 0.298 -0.531 -1.563 0.799 -0.522 -0.739 0.070 0.727 . 0.059 . 1.565 0.395 -0.812 -0.034 0.188 . 0.132 0.443 0.627 -0.063 -0.044 0.224 -0.145 frame2 LUT 5 4 4 0 0.000 -0.100 -0.371 0.619 -0.401 0.652 -1.129 0.441 -0.703 0.635 -0.196 0.012 -0.823 -0.167 -0.471 0.718 -0.428 0.276 -0.205 0.204 -0.377 -0.051 -0.799 0.786 -0.443 0.524 -0.355 0.071 -0.454 -0.427 -0.524 0.830 -0.352 0.509 -0.288 0.221 -0.753 0.655 -1.099 0.378 -0.602 0.786 -0.154 0.120 -1.787 -0.056 -0.772 0.798 -0.485 0.190 0.185 -0.055 -0.395 0.842 -0.525 0.274 -1.720 0.404 -0.080 0.216 -0.812 -0.198 -0.183 0.561 -0.374 0.186 -0.031 0.295 -0.607 0.755 -0.876 0.124 -0.561 0.002 0.119 -0.077 -0.051 -0.255 -0.112 0.265 0.051 -0.287 0.190 0.643 -1.064 0.207 -1.651 1.035 -1.066 0.289 -0.162 0.377 -0.773 -0.839 -0.477 1.192 -1.193 0.144 0.062 0.068 -0.317 0.478 -0.474 -0.065 -0.101 0.553 0.110 -0.595 -0.338 -0.300 -0.510 0.757 -0.329 0.158 0.086 -0.034 -0.241 0.562 -1.128 0.068 0.026 0.329 -0.195 0.385 -0.826 -0.408 0.218 0.541 -0.671 0.278 -0.652 0.502 -0.445 0.340 -0.929 0.643 -0.627 0.428 -0.172 0.245 -0.782 -0.266 -0.526 0.724 -0.282 0.169 -0.313 0.558 -0.739 0.404 -0.574 0.602 -1.039 0.191 0.077 0.233 -0.672 -0.275 -0.505 0.787 -0.428 0.057 0.386 -0.028 -0.575 0.625 -0.507 0.123 -0.588 0.499 0.254 -0.768 -0.309 -0.408 -0.330 0.748 -0.374 0.217 -0.080 0.229 -0.476 0.793 -0.962 0.260 -0.846 0.552 -0.195 0.233 -1.043 -0.250 -0.740 0.886 -0.490 . . . . 0.738 -0.358 -0.231 -0.515 . . . . -0.130 -0.072 0.424 -0.334 0.037 -0.166 0.267 -0.186 0.425 -1.353 0.771 -0.838 0.505 -0.488 0.198 -0.473 -0.241 -0.101 0.587 -0.475 . . . . 0.716 -1.068 0.000 -0.183 0.535 -0.269 0.204 -0.812 -0.358 0.052 0.549 -0.475 -0.035 0.247 -0.171 -0.075 0.467 -0.137 -0.145 -0.314 0.115 0.195 0.341 -0.984 -0.224 -0.321 0.532 -0.156 0.339 -0.287 0.180 -0.354 0.524 -0.949 0.392 -0.450 0.423 0.061 0.069 -0.818 -0.137 -0.092 0.332 -0.163 0.438 -0.615 0.321 -0.429 0.981 -1.459 0.126 -0.807 0.119 0.014 0.286 -0.544 -0.398 -1.148 0.906 -0.126 0.229 -0.214 0.261 -0.381 0.778 -0.742 0.033 -0.590 1.087 -0.425 -0.656 -1.010 -0.319 -0.693 0.655 0.008 0.066 -0.121 -0.486 0.401 0.481 -0.142 0.194 -0.852 0.274 -0.024 0.329 -0.859 -0.421 -0.063 0.489 -0.164 0.095 0.030 0.452 -0.880 -0.193 0.170 0.170 -0.193 0.379 0.066 -0.275 -0.275 -0.465 0.086 0.504 -0.329 0.153 -0.142 0.411 -0.616 0.308 -1.807 0.308 0.308 0.721 -0.122 0.038 -1.303 0.030 -0.385 0.712 -0.800 0.076 -0.413 0.471 -0.306 0.613 -0.213 0.028 -0.766 0.788 -0.553 -0.067 -0.652 -0.062 -0.498 0.461 -0.062 0.279 -0.118 0.197 -0.476 1.000 -1.234 -0.152 -0.567 0.288 -0.180 0.331 -0.647 -0.225 0.068 0.556 -0.675 0.414 -0.738 0.495 -0.602 0.628 -0.831 0.197 -0.423 0.675 -0.005 -0.245 -0.829 -0.161 -0.399 0.637 -0.336 0.249 -0.176 -0.094 -0.016 0.789 -1.644 0.789 -2.158 0.533 -0.467 -0.467 0.146 0.007 -0.605 0.820 -0.804 0.418 -0.145 -0.069 -0.310 0.978 -0.244 -0.279 -1.467 0.636 -0.061 -0.395 -0.459 -0.068 -0.747 0.756 -0.393 -0.180 0.195 0.030 -0.071 0.751 -1.327 0.108 -0.249 0.565 -0.465 0.236 -0.692 -0.176 -0.475 0.717 -0.413 . . . . 0.727 -0.563 -0.085 -0.464 . . . . -0.322 -0.093 0.483 -0.210 0.029 -0.164 0.213 -0.109 0.852 -1.110 -0.110 -0.313 0.156 -0.564 0.232 0.049 -0.417 -0.019 0.445 -0.149 . . . . 0.560 -0.929 -0.381 0.301 0.430 -0.570 0.353 -0.511 0.081 -0.233 0.496 -0.555 0.052 0.040 -0.170 0.065 0.592 -0.084 -0.517 -0.234 0.084 0.098 0.263 -0.578 -0.272 -0.204 0.474 -0.128 0.304 -0.328 0.300 -0.440 0.926 -0.851 -0.053 -0.781 0.463 -0.190 0.125 -0.611 -0.085 -0.363 0.558 -0.309 0.364 -0.210 0.162 -0.454 0.579 -0.780 0.089 -0.216 0.348 -0.585 0.320 -0.300 -0.431 -0.399 0.655 -0.112 0.477 -0.146 0.401 -1.381 0.428 -0.820 0.502 -0.572 0.988 -0.358 0.035 -2.242 0.225 -0.649 0.646 -0.671 0.334 -0.165 -0.374 0.106 0.669 -1.340 0.447 -0.617 0.432 -0.336 0.128 -0.386 -0.273 -0.406 0.727 -0.390 0.182 -0.097 0.466 -0.865 0.257 -0.634 0.224 -0.010 0.328 0.000 -0.415 -0.007 -0.193 0.174 0.249 -0.306 -0.233 -0.233 0.684 -0.532 0.445 -1.095 0.803 -1.233 0.426 -1.127 0.625 -0.607 -0.870 -0.768 1.042 -0.311 0.406 0.089 -0.031 -0.660 0.462 -0.447 0.209 -0.447 0.144 -0.604 0.074 0.244 -0.464 -0.198 0.775 -0.530 0.555 -0.040 -0.485 -0.245 0.966 -0.762 -0.369 -0.552 0.568 -0.263 0.201 -0.902 0.000 -0.148 0.481 -0.510 0.104 -0.548 0.588 -0.439 0.673 -1.319 0.443 -0.633 0.549 -0.318 0.157 -0.690 -0.169 -0.442 0.781 -0.609 0.498 -0.227 -0.011 -0.433 0.959 -1.041 0.303 -1.572 0.431 0.190 0.133 -1.269 -0.263 -0.317 0.671 -0.374 0.225 0.318 0.190 -1.172 -0.041 -0.282 0.468 -0.282 1.050 -0.189 -0.373 -1.833 -0.005 -0.801 0.657 -0.232 -0.134 0.008 0.052 0.066 0.848 -0.786 0.084 -0.837 0.465 -0.395 0.231 -0.545 -0.125 -0.388 0.715 -0.561 . . . . 0.755 -0.625 0.232 -1.031 . . . . -0.162 -0.359 0.507 -0.143 0.035 0.217 -0.184 -0.101 -0.312 -0.419 0.525 0.010 0.485 -0.721 0.279 -0.358 -0.658 -0.009 0.515 -0.083 . . . . 0.472 -0.656 -0.224 0.166 0.430 -0.494 0.077 -0.172 -0.309 -0.141 0.576 -0.331 0.089 0.183 -0.134 -0.169 0.325 -0.228 0.248 -0.504 0.457 -0.200 0.247 -0.811 -0.360 -0.170 0.509 -0.139 0.292 -0.452 0.360 -0.393 0.269 -1.003 0.467 -0.130 0.482 0.043 0.145 -1.097 -0.234 -0.105 0.603 -0.511 0.355 -0.352 0.235 -0.396 0.780 -1.163 0.264 -0.655 0.484 -0.150 0.162 -0.785 -0.481 -0.626 0.927 -0.447 0.828 -0.313 -0.356 -0.646 0.606 -0.884 0.316 -0.532 0.754 -0.322 -0.444 -0.361 -0.138 -0.445 0.704 -0.459 0.417 0.186 -0.081 -0.782 0.627 -0.638 0.200 -0.590 0.113 -0.061 0.211 -0.317 -0.253 -0.045 0.557 -0.473 0.323 -0.206 0.412 -0.856 0.501 -0.760 -0.166 0.142 0.121 0.051 -0.306 0.095 -0.052 0.137 0.300 -0.503 -0.108 0.132 0.359 -0.528 0.233 -1.236 0.805 -0.615 0.335 -0.511 0.589 -0.908 -0.724 -0.151 0.948 -0.824 0.190 -0.271 0.326 -0.365 0.630 -0.618 -0.130 -0.173 0.509 -0.263 -0.019 -0.403 -0.128 -0.328 0.567 -0.309 0.146 -0.038 -0.066 -0.052 0.689 -0.904 0.315 -0.714 0.297 -0.519 0.529 -0.665 -0.360 0.053 0.475 -0.333 0.298 -0.437 0.478 -0.646 0.283 -0.339 0.332 -0.447 0.203 0.004 0.268 -0.640 -0.074 -0.464 0.681 -0.471 0.255 -0.125 0.211 -0.450 0.575 -0.700 0.384 -0.759 0.274 -0.216 0.426 -0.770 -0.170 -0.536 0.773 -0.489 0.309 0.299 -0.212 -0.583 0.459 -0.715 0.149 -0.140 0.872 -0.186 -0.461 -0.824 -0.258 -0.640 0.716 -0.186 0.279 -0.212 0.035 -0.154 0.683 -0.674 0.198 -0.688 0.400 -0.026 0.252 -0.977 -0.212 -0.621 0.795 -0.414 . . . . 0.578 -0.566 0.130 -0.441 . . . . -0.406 -0.147 0.534 -0.162 0.212 -0.057 -0.041 -0.138 0.497 -1.149 0.506 -0.478 0.269 -0.320 0.420 -0.609 -0.597 -0.016 0.624 -0.307 . . . . 0.577 -0.733 -0.182 0.036 0.239 -0.501 0.101 0.058 -0.371 -0.125 0.619 -0.371 -0.054 0.195 -0.280 0.095 0.486 -0.223 0.061 -0.514 0.118 -0.097 0.517 -0.865 -0.078 -0.192 0.730 -0.949 frame2 LUT 5 4 4 0 0.000 0.522 -0.359 -0.648 0.196 0.324 -0.212 -0.073 -0.097 0.458 -0.220 0.072 -0.481 -0.599 -0.157 -0.405 0.755 0.742 -0.566 -0.636 0.012 0.746 -0.597 -0.047 -0.528 0.895 -0.671 -0.320 -0.491 -0.682 -0.464 0.044 0.696 1.165 -0.851 -1.214 -0.374 0.680 -0.691 -0.401 0.030 0.847 -0.411 -0.232 -0.744 -0.272 -0.138 -0.629 0.693 0.608 -0.560 -1.221 0.453 0.496 0.035 -0.049 -0.742 0.706 -0.184 -0.432 -0.421 -0.677 -0.064 -0.884 0.908 0.433 -0.050 -0.937 0.216 0.175 0.277 -0.328 -0.212 0.003 0.160 -0.608 0.292 -0.723 0.432 -1.252 0.701 0.523 0.150 -1.217 0.034 0.531 -1.000 0.385 -0.415 0.851 -1.048 -0.063 -0.404 -0.267 -0.202 -0.372 0.610 0.748 -0.438 -0.553 -0.151 0.702 -0.371 -1.100 0.181 0.787 0.017 -0.547 -0.790 -0.591 -0.040 -1.017 0.902 0.590 -0.187 -1.656 0.377 0.244 0.136 -0.136 -0.310 0.416 -0.316 0.066 -0.294 -0.406 0.417 -0.687 0.366 0.696 -0.687 -0.451 0.039 0.304 -0.018 -0.358 -0.004 0.826 -0.273 -0.420 -0.617 -1.454 -0.011 0.072 0.670 0.663 -0.833 -0.275 0.042 0.555 -0.883 0.463 -0.713 1.176 -0.869 -0.547 -0.976 -0.209 -0.066 -1.094 0.775 0.894 -0.542 -0.796 -0.186 0.788 -0.816 -0.138 -0.330 1.171 -0.507 -0.993 -0.882 -1.121 -0.536 0.081 0.842 0.621 -0.562 -0.772 0.262 0.453 -0.303 0.276 -0.712 0.682 -0.180 -0.174 -0.674 -0.881 0.312 -0.536 0.610 0.565 -0.182 -0.681 0.022 -0.011 0.226 -0.045 -0.203 0.158 0.463 -0.522 -0.304 -0.891 0.146 -0.363 0.656 0.835 -0.750 -1.000 0.166 0.301 -0.092 0.042 -0.322 1.054 -0.484 -1.053 -0.462 -0.688 0.299 -0.771 0.645 0.747 -0.660 -0.876 0.193 0.575 -0.385 -0.385 -0.031 0.849 -0.357 -0.755 -0.277 -0.568 0.210 -0.812 0.677 0.588 -0.350 -0.990 0.273 0.250 -0.058 0.035 -0.275 0.587 -0.147 -0.335 -0.320 -0.697 0.190 -0.518 0.627 0.302 -0.553 -0.997 0.664 0.428 -0.178 -0.223 -0.129 0.354 0.117 -0.208 -0.374 -0.459 -0.075 -0.484 0.686 0.482 -0.314 -0.454 0.096 0.697 -0.763 -0.144 -0.178 0.731 -0.367 -0.200 -0.527 -0.807 -0.289 -0.159 0.778 1.025 -0.814 -1.281 -0.022 0.833 -0.756 -0.720 0.027 0.808 -0.087 -0.880 -0.387 -0.655 -0.240 -0.324 0.782 0.529 -0.372 -1.453 0.505 0.170 0.085 -0.149 -0.133 0.505 -0.175 -0.290 -0.189 -0.320 -0.140 -0.676 0.736 0.611 -0.233 -1.128 0.220 0.038 0.993 -0.945 -1.110 -0.320 -0.583 1.059 -1.156 -0.876 0.467 -0.643 0.519 0.382 -0.569 -0.083 0.109 0.100 -0.107 -0.348 0.280 0.469 -1.232 0.927 -1.791 -0.443 -0.195 -0.355 0.686 0.981 -0.970 -1.308 0.154 0.746 0.324 -0.919 -0.884 0.937 -1.175 0.379 -1.544 -0.547 -0.248 -0.585 0.854 0.279 -0.123 -1.230 0.529 0.380 0.771 -0.927 -1.103 -0.349 -0.735 1.102 -1.097 -0.696 0.498 -1.309 0.648 0.703 -0.527 -0.829 0.157 0.437 -0.214 0.169 -0.600 0.471 -0.060 -0.094 -0.478 -1.083 -0.202 -0.070 0.771 0.393 -0.946 -0.489 0.541 0.468 -1.307 -0.095 0.352 0.785 -0.978 -0.092 -0.267 -0.290 -0.644 -1.113 1.057 1.109 -0.551 -2.494 -0.025 0.391 -0.538 -0.447 0.341 1.191 -0.716 -0.939 -0.769 -0.577 -0.577 -0.528 0.975 0.865 -0.796 -1.320 0.265 0.276 -0.461 0.044 0.044 0.710 -0.354 -0.025 -0.740 -0.380 -0.250 -0.935 0.901 0.881 -0.510 -1.344 0.087 -0.224 0.463 -0.391 0.004 0.878 -0.104 -0.782 -0.619 -1.201 0.344 -0.513 0.674 0.421 0.030 -0.731 0.053 0.731 -0.615 -0.342 -0.155 0.564 -0.250 -0.227 -0.274 -0.739 0.351 -0.446 0.476 1.142 -1.068 -1.585 -0.025 0.650 -0.518 -0.575 0.086 1.129 -0.408 -1.106 -0.749 -0.766 -0.100 -0.023 0.580 0.149 0.016 -0.837 0.401 0.311 -0.037 -0.142 -0.187 0.321 0.120 -0.211 -0.322 -0.509 0.048 -0.455 0.617 0.501 -0.612 -0.637 0.364 0.375 -0.102 -0.408 0.025 0.762 -0.032 -0.683 -0.509 -0.495 -0.179 -0.821 0.881 0.807 -0.757 -0.587 -0.010 0.599 -0.673 -0.231 0.009 0.925 -0.624 -0.499 -0.424 -0.410 -0.296 -0.061 0.560 1.099 -1.001 -1.022 -0.207 0.699 -1.028 -0.380 0.160 1.163 -0.340 -0.768 -1.379 -0.342 -0.588 -0.639 0.928 0.621 -0.632 -1.434 0.532 0.162 -0.095 -0.280 0.165 0.657 -0.222 -0.065 -0.713 -0.775 -0.133 -0.922 0.983 0.657 -0.594 -0.919 0.301 0.071 0.492 -0.656 -0.138 0.285 0.343 -0.687 -0.165 -0.812 0.093 -0.847 0.854 0.953 -1.086 -0.706 -0.030 1.115 -1.979 -0.358 -0.322 0.755 -0.696 -0.386 -0.105 -0.610 -0.330 -0.511 0.886 1.038 -0.717 -1.218 -0.138 0.733 -0.207 -1.109 0.011 1.046 -0.626 -0.948 -0.379 -1.230 0.135 -0.645 0.877 0.313 0.024 -1.004 0.313 0.493 -0.105 -0.151 -0.391 0.545 -0.188 -0.188 -0.348 -0.699 0.140 -0.710 0.740 0.789 -0.886 -0.528 0.053 0.014 0.878 -0.814 -0.778 0.535 0.227 -0.457 -0.617 -0.606 -0.229 -0.630 0.883 0.910 -0.611 -0.796 -0.168 0.236 0.096 -0.517 0.077 0.867 -0.492 -0.328 -0.582 -0.131 -0.707 -1.472 1.080 0.993 -0.734 -0.592 -0.423 0.515 0.636 -1.163 -0.807 1.383 -0.603 -1.603 -1.304 -1.928 0.224 -1.098 1.072 0.287 -0.219 -0.807 0.432 -0.169 0.225 0.184 -0.312 0.625 -0.290 -0.181 -0.400 -0.741 -0.111 -0.932 0.965 0.380 0.227 -1.193 0.126 0.173 0.199 -0.558 0.065 0.426 0.165 -0.827 -0.042 -1.024 0.302 -0.614 0.698 0.703 -0.115 -1.076 -0.037 0.364 -0.199 -0.301 0.042 0.789 -0.623 -0.929 0.135 -0.635 -0.423 -0.182 0.790 1.039 -0.590 -1.590 -0.076 0.787 -0.483 -0.923 0.045 1.022 -0.603 -1.111 -0.238 -0.903 0.162 -0.385 0.660 0.502 -0.201 -1.414 0.421 0.445 -0.241 -0.526 0.135 0.571 -0.094 -0.386 -0.301 -0.648 0.201 -0.496 0.589 . . . . . . . . . . . . . . . . 0.925 -0.945 -0.945 0.087 0.641 -0.590 -0.561 0.135 1.027 -0.828 -0.757 -0.308 0.082 -0.512 0.101 0.225 . . . . . . . . . . . . . . . . 0.373 -0.418 -1.141 0.588 0.601 0.054 -0.149 -0.878 0.465 -0.128 -0.212 -0.250 -0.581 -0.430 -0.525 0.922 0.540 -0.063 -0.878 0.063 0.260 0.092 -0.717 0.175 0.464 0.129 -1.193 0.123 -1.524 0.466 -0.953 0.811 0.525 -0.613 -0.520 0.275 0.596 -0.819 -0.288 0.141 0.621 -0.831 0.324 -0.628 -1.359 0.480 -0.607 0.641 0.588 -0.546 -0.530 0.163 0.789 -0.376 -0.807 -0.104 0.679 -0.342 -0.557 -0.105 -0.340 0.098 -1.047 0.728 0.309 0.056 -0.873 0.234 0.505 -0.149 -0.280 -0.226 0.251 -0.051 -0.028 -0.212 -1.117 0.582 -0.950 0.609 . . . . . . . . . . . . . . . . 0.741 -0.464 -0.767 0.022 0.544 0.000 -0.337 -0.415 0.828 -0.526 -0.553 -0.236 -0.201 -0.338 -0.380 0.651 0.513 -0.468 -0.859 0.377 0.819 -0.957 -0.512 0.027 1.108 -0.784 -1.018 -0.378 -0.123 -0.445 -0.045 0.462 0.676 -0.299 -0.859 0.053 0.233 0.350 -0.112 -0.678 0.597 -0.078 -0.078 -0.757 -0.643 -0.050 -0.384 0.702 0.408 0.076 -0.773 0.048 -0.095 0.573 -0.356 -0.332 0.250 0.404 -0.908 -0.067 -1.237 0.447 -0.585 0.628 0.582 -0.414 -1.313 0.433 0.261 -0.147 -0.075 -0.075 1.037 -1.070 -0.448 -0.436 -0.284 -0.231 -0.777 0.801 0.811 -0.547 -0.856 0.011 0.404 0.095 -0.627 -0.056 0.976 -0.083 -0.993 -0.769 -0.284 0.080 -0.900 0.665 0.295 -0.036 -1.273 0.469 0.188 0.054 -0.268 -0.011 0.457 -0.262 -0.116 -0.199 -0.640 0.010 -0.432 0.687 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.681 0.088 -0.329 -0.895 1.268 -0.867 -1.357 -0.615 -0.165 -2.004 1.256 -1.089 -9.581 -9.581 1.999 -9.581 -9.581 -9.581 -9.581 1.999 1.156 -2.570 -1.081 0.177 1.090 -1.717 -1.627 0.312 -0.232 -1.627 0.954 -0.172 -0.314 -1.019 -1.813 1.274 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.877 -1.201 -0.747 0.179 0.713 -0.983 -0.832 0.370 0.567 -0.631 -0.721 0.341 0.242 -1.097 -0.352 0.647 0.689 -1.011 -0.544 0.270 0.717 -1.285 -0.513 0.316 0.763 -0.650 -0.517 -0.049 -0.188 -0.880 -0.056 0.693 0.905 -1.417 -0.642 0.153 0.893 -1.122 -1.043 0.261 0.816 -0.850 -0.786 0.143 0.210 -1.002 -0.154 0.531 0.679 -1.027 -0.883 0.449 0.728 -0.705 -0.722 0.168 0.637 -0.587 -0.823 0.280 0.073 -0.672 -0.749 0.787 0.798 -0.766 -1.029 0.243 0.725 -1.041 -0.970 0.434 0.308 -0.316 -1.062 0.565 0.090 -0.586 -0.680 0.718 0.398 -0.362 -0.593 0.312 0.700 -1.426 -0.603 0.428 0.479 -0.464 -0.464 0.209 -0.145 -0.443 -0.204 0.577 0.769 -0.766 -0.777 0.169 0.543 -0.833 -0.889 0.527 0.404 -0.607 -0.664 0.474 0.124 -0.443 -0.324 0.460 0.460 -0.410 -0.995 0.455 0.386 -0.362 -0.934 0.477 0.495 -0.441 -0.784 0.348 -0.075 -0.174 -0.710 0.635 0.796 -1.275 -0.438 0.154 0.893 -1.302 -0.852 0.243 0.840 -0.882 -0.663 0.050 0.222 -0.909 -0.274 0.559 0.502 -0.883 -0.222 0.244 0.807 -0.951 -0.590 0.097 0.649 -0.498 -0.462 -0.003 0.247 -1.053 -0.148 0.514 0.876 -1.190 -0.699 0.152 0.683 -0.915 -0.580 0.256 0.764 -0.955 -0.825 0.289 0.236 -1.083 -0.105 0.506 0.650 -0.821 -0.614 0.276 0.694 -0.808 -0.586 0.195 0.594 -0.588 -0.461 0.136 0.061 -0.692 -0.407 0.663 0.618 -0.939 -0.790 0.450 0.599 -0.636 -0.937 0.400 0.376 -0.302 -0.960 0.462 0.172 -0.727 -0.555 0.667 0.320 -0.652 -0.510 0.498 0.687 -0.987 -0.774 0.380 0.558 -0.647 -0.778 0.385 -0.099 -0.585 -0.219 0.623 0.743 -1.003 -0.784 0.318 0.685 -0.999 -0.961 0.463 0.633 -0.774 -0.728 0.334 0.136 -0.784 -0.402 0.645 0.449 -0.680 -0.810 0.526 0.650 -0.497 -0.910 0.251 0.271 -0.190 -0.711 0.385 -0.142 -0.338 -0.517 0.681 0.612 -0.965 -0.856 0.493 0.673 -0.911 -0.935 0.434 0.348 -0.311 -0.740 0.404 0.280 -0.765 -0.624 0.631 0.261 -0.287 -0.737 0.467 0.652 -0.990 -0.516 0.294 0.428 -0.694 -0.874 0.576 -0.268 -0.762 -0.075 0.705 0.856 -1.143 -1.000 0.307 0.890 -1.166 -0.854 0.199 0.445 -1.170 -1.009 0.763 0.059 -1.047 -0.083 0.613 0.406 -0.731 -0.971 0.644 0.584 -0.795 -0.705 0.390 0.368 -0.122 -0.893 0.324 -0.046 -0.611 -0.757 0.836 0.693 -0.633 -0.749 0.194 0.336 -0.336 -0.984 0.526 0.344 -0.319 -0.892 0.475 -0.048 -0.291 -0.605 0.640 0.122 -0.036 -0.860 0.471 0.278 -0.053 -1.307 0.506 0.621 -0.257 -0.821 0.082 -0.251 0.104 -0.689 0.551 0.650 -0.752 -0.811 0.342 0.592 -0.585 -1.050 0.425 0.772 -0.520 -1.383 0.277 0.121 -0.458 -0.489 0.558 0.422 -0.357 -1.005 0.466 0.414 -0.305 -0.966 0.429 0.233 -0.124 -0.988 0.488 -0.226 -0.140 -0.945 0.781 0.715 -0.970 -0.520 0.203 0.554 -0.587 -0.619 0.281 0.825 -0.743 -0.587 -0.052 0.212 -0.874 -0.142 0.475 0.358 -0.616 -0.321 0.340 0.858 -0.926 -1.170 0.283 0.471 -0.777 -0.529 0.419 0.171 -0.912 -0.331 0.631 0.865 -1.135 -0.821 0.211 0.863 -1.203 -0.638 0.143 0.788 -0.958 -0.843 0.264 0.038 -0.852 -0.003 0.508 0.481 -0.891 -0.555 0.469 0.555 -0.590 -0.695 0.320 0.326 -0.561 -0.249 0.295 -0.203 -0.438 -0.321 0.671 0.625 -1.002 -1.082 0.571 0.450 -0.475 -1.021 0.508 0.562 -0.390 -0.937 0.308 -0.107 -0.374 -0.606 0.716 0.180 -0.574 -0.563 0.603 0.526 -0.113 -1.609 0.387 0.492 -0.753 -0.679 0.460 -0.453 0.023 -0.474 0.617 0.668 -0.991 -0.935 0.469 0.633 -1.031 -1.253 0.624 0.717 -0.810 -0.735 0.244 0.023 -0.648 -0.495 0.711 0.292 -0.551 -0.917 0.644 0.558 -0.451 -1.099 0.411 0.280 -0.375 -0.598 0.438 -0.394 -0.258 -0.649 0.820 0.580 -1.075 -0.621 0.465 0.667 -1.184 -0.837 0.497 0.408 -0.547 -0.645 0.432 0.235 -1.182 -0.309 0.656 0.469 -1.028 -0.219 0.341 0.676 -0.935 -0.432 0.186 0.618 -0.786 -0.751 0.369 -0.197 -1.046 -0.027 0.732 0.662 -1.103 -0.190 0.106 0.752 -1.068 -0.729 0.305 0.825 -1.017 -0.359 -0.067 0.113 -1.233 -0.082 0.630 0.644 -1.125 -0.733 0.462 0.757 -1.103 -0.627 0.260 0.620 -0.563 -0.578 0.159 -0.013 -0.900 -0.345 0.753 0.710 -0.798 -0.734 0.248 0.439 -0.906 -1.149 0.731 0.257 -0.266 -0.751 0.464 0.129 -0.627 -0.437 0.604 0.322 -0.599 -0.569 0.501 0.712 -1.051 -0.627 0.301 0.426 -0.710 -0.640 0.489 -0.050 -0.470 -0.287 0.578 0.557 -0.698 -0.531 0.288 0.726 -0.852 -1.239 0.453 0.539 -1.039 -0.973 0.634 0.067 -0.539 -0.070 0.391 0.540 -0.634 -0.912 0.455 0.649 -0.779 -0.679 0.292 0.314 -0.372 -0.703 0.455 0.087 -0.429 -0.502 0.574 0.652 -1.303 -0.272 0.257 0.721 -1.226 -0.414 0.231 0.579 -0.830 -0.098 0.013 0.183 -1.156 -0.065 0.546 0.587 -0.937 -0.270 0.198 0.866 -1.403 -0.425 0.076 0.166 -0.226 -0.078 0.105 0.005 -0.855 0.031 0.508 0.716 -0.984 -0.196 -0.030 0.664 -1.522 -0.453 0.419 0.642 -1.351 0.234 -0.198 0.161 -0.763 0.080 0.305 0.384 -0.606 -0.398 0.355 0.532 -1.029 -0.273 0.306 0.443 -0.623 -0.084 0.068 -0.066 -0.983 -0.245 0.761 0.534 -1.012 -0.617 0.489 0.460 -0.650 -0.740 0.473 0.172 -0.523 -0.554 0.582 0.016 -0.833 -0.329 0.706 0.127 -0.535 -0.430 0.561 0.594 -0.360 -1.122 0.325 0.294 -0.283 -0.883 0.495 -0.293 -0.422 -0.408 0.752 0.600 -0.875 -0.760 0.431 0.754 -1.487 -0.883 0.501 0.460 -0.682 -0.626 0.436 -0.040 -0.810 -0.145 0.635 0.293 -0.782 -0.750 0.677 0.606 -0.646 -0.892 0.379 0.273 -0.376 -0.529 0.409 -0.119 -0.506 -0.410 0.698 0.671 -1.019 -0.823 0.432 0.729 -1.108 -0.854 0.406 0.330 -0.410 -0.553 0.388 0.143 -1.009 -0.502 0.759 0.454 -0.705 -0.424 0.347 0.670 -1.223 -0.596 0.399 0.415 -0.681 -0.427 0.377 -0.063 -0.908 -0.084 0.648 0.717 -1.190 -0.627 0.345 0.898 -1.367 -1.264 0.414 0.672 -0.870 -0.965 0.431 0.236 -1.258 -0.303 0.672 0.469 -1.021 -1.034 0.710 0.799 -0.832 -0.902 0.218 0.243 -0.211 -0.677 0.408 -0.008 -0.723 -0.653 0.819 0.790 -0.764 -0.879 0.187 0.388 -0.736 -0.971 0.661 0.216 -0.558 -0.883 0.693 -0.121 -0.324 -1.048 0.846 0.291 -0.589 -0.482 0.481 0.523 -0.526 -1.007 0.456 0.359 -0.803 -0.236 0.373 -0.146 -0.379 -0.498 0.695 0.597 -0.933 -0.440 0.295 0.654 -1.313 -0.994 0.606 0.272 -0.495 -0.804 0.595 0.099 -0.447 -0.901 0.731 0.486 -0.513 -1.021 0.491 0.403 -0.742 -0.812 0.595 0.292 -0.362 -0.909 0.551 -0.393 -0.309 -0.736 0.872 0.832 -1.266 -0.554 0.167 0.707 -0.770 -0.743 0.244 0.570 -0.721 -0.614 0.328 0.293 -0.863 -0.238 0.461 0.417 -0.869 -0.432 0.460 0.793 -1.043 -0.754 0.250 0.527 -0.602 -0.522 0.268 0.146 -1.072 -0.240 0.651 0.855 -1.321 -0.772 0.269 0.747 -0.893 -0.893 0.316 0.827 -1.087 -0.812 0.245 0.229 -0.911 -0.047 0.410 0.491 -0.712 -0.753 0.476 0.750 -0.597 -0.718 0.070 0.486 -0.684 -0.632 0.413 -0.034 -0.711 -0.273 0.664 0.616 -0.927 -0.898 0.490 0.405 -0.658 -0.909 0.594 0.282 -0.319 -0.645 0.425 -0.126 -0.628 -0.611 0.833 0.268 -0.950 -0.378 0.594 0.534 -0.786 -0.934 0.534 0.392 -0.731 -0.572 0.498 -0.188 -0.508 -0.316 0.692 0.680 -0.983 -0.970 0.466 0.637 -1.241 -1.213 0.669 0.472 -0.707 -0.819 0.520 -0.110 -0.779 -0.463 0.820 0.418 -0.688 -0.861 0.578 0.514 -0.547 -1.087 0.503 0.311 -0.351 -0.795 0.485 -0.236 -0.493 -0.669 0.857 Intron LUT 5 4 4 0 0.000 0.856 -1.465 -0.849 0.348 0.627 -1.230 -1.188 0.669 0.423 -0.971 -0.499 0.528 0.069 -1.148 -0.502 0.843 0.562 -1.110 -0.489 0.431 0.712 -1.590 -0.766 0.527 0.634 -0.971 -0.606 0.357 -0.187 -0.992 -0.102 0.754 0.802 -1.264 -0.722 0.304 0.775 -1.504 -1.065 0.544 0.333 -1.220 -1.269 0.923 0.255 -1.289 -0.382 0.705 0.587 -1.358 -0.760 0.602 0.638 -0.928 -0.794 0.425 0.617 -0.821 -0.749 0.385 -0.014 -0.833 -0.807 0.909 0.813 -1.135 -1.001 0.366 0.689 -1.290 -1.314 0.656 0.283 -0.932 -0.393 0.582 0.075 -1.056 -0.869 0.940 0.443 -0.639 -0.554 0.397 0.739 -1.275 -0.671 0.367 0.406 -0.757 -0.717 0.561 -0.224 -0.497 -0.417 0.754 0.701 -1.176 -0.532 0.310 0.673 -0.824 -0.895 0.382 0.412 -1.604 -1.263 0.944 0.273 -0.956 -0.684 0.726 0.443 -0.775 -0.849 0.586 0.580 -1.056 -1.154 0.655 0.359 -0.371 -0.980 0.524 -0.060 -0.524 -0.785 0.820 0.794 -1.439 -0.588 0.301 0.743 -1.376 -0.898 0.490 0.740 -0.969 -0.642 0.237 0.123 -1.213 -0.348 0.760 0.412 -0.999 -0.344 0.466 0.765 -1.319 -0.713 0.367 0.469 -0.877 -0.374 0.378 0.105 -1.224 -0.144 0.670 0.914 -1.431 -0.775 0.214 0.635 -1.860 -1.053 0.757 0.754 -0.987 -0.744 0.278 0.595 -1.478 -0.636 0.572 0.778 -0.969 -0.728 0.227 0.718 -0.922 -0.906 0.372 0.620 -0.733 -0.580 0.255 -0.120 -0.643 -0.699 0.866 0.569 -1.126 -0.847 0.587 0.614 -0.885 -1.206 0.580 0.208 -0.479 -0.905 0.672 0.224 -0.978 -0.627 0.745 0.268 -0.807 -0.429 0.567 0.630 -1.007 -0.855 0.487 0.645 -0.781 -0.667 0.291 -0.180 -0.789 -0.165 0.719 0.723 -1.289 -0.782 0.443 0.674 -1.465 -0.990 0.622 0.571 -0.851 -0.851 0.491 0.018 -0.839 -0.306 0.696 0.427 -0.827 -0.812 0.606 0.639 -0.690 -1.132 0.450 0.375 -0.429 -0.895 0.508 -0.188 -0.459 -0.747 0.847 0.617 -1.194 -1.059 0.632 0.676 -1.450 -0.981 0.613 0.315 -0.816 -0.401 0.517 0.150 -0.930 -0.647 0.788 0.289 -0.834 -0.522 0.605 0.624 -1.876 -0.514 0.572 0.480 -1.383 -0.520 0.609 -0.002 -1.229 -0.233 0.786 0.779 -1.242 -1.042 0.460 0.601 -1.387 -0.849 0.628 -0.236 -1.433 -1.523 1.282 0.156 -1.094 -0.523 0.783 0.423 -0.947 -0.975 0.706 0.432 -0.519 -0.885 0.497 0.211 -0.308 -0.951 0.602 -0.247 -0.703 -1.005 1.032 0.873 -1.332 -0.967 0.333 0.209 -1.014 -1.149 0.925 0.484 -1.080 -0.590 0.550 0.069 -0.682 -0.798 0.810 0.135 -0.582 -0.432 0.577 0.499 -0.300 -1.148 0.404 0.351 -0.739 -0.484 0.496 0.115 -0.397 -0.200 0.364 0.745 -1.248 -0.980 0.481 0.723 -1.277 -1.157 0.574 0.415 -0.803 -0.644 0.539 0.457 -0.798 -0.954 0.619 0.370 -0.736 -0.716 0.584 0.557 -1.055 -1.250 0.702 0.348 -0.486 -0.721 0.492 -0.103 -0.471 -0.782 0.820 0.856 -1.350 -0.537 0.149 0.814 -0.748 -0.771 0.085 0.312 -0.726 -0.289 0.417 0.396 -1.057 -0.514 0.588 0.318 -0.833 -0.414 0.528 0.911 -1.120 -0.786 0.111 0.057 -0.474 -1.252 0.864 -0.261 -0.963 0.055 0.690 0.859 -1.627 -1.070 0.471 0.788 -1.570 -0.540 0.321 0.736 -0.892 -1.477 0.523 0.420 -1.230 -0.605 0.658 0.489 -0.809 -0.596 0.447 0.291 -0.458 -1.081 0.656 0.352 -0.568 -0.499 0.425 0.009 -0.921 -0.643 0.868 0.488 -0.810 -1.032 0.621 0.399 -0.706 -0.963 0.637 0.210 -0.467 -0.976 0.688 -0.021 -0.889 -0.450 0.801 0.228 -1.115 -0.353 0.664 0.591 -0.835 -0.968 0.508 0.389 -0.491 -0.831 0.502 -0.266 -0.474 -0.362 0.740 0.671 -1.167 -0.664 0.413 0.671 -1.438 -1.426 0.736 0.599 -1.211 -0.649 0.501 0.177 -0.906 -0.879 0.842 0.397 -0.758 -1.027 0.679 0.553 -0.672 -1.223 0.562 0.418 -0.419 -0.797 0.422 -0.279 -0.442 -0.748 0.883 0.552 -1.441 -0.668 0.619 0.686 -1.614 -1.307 0.732 0.205 -0.827 -0.484 0.650 0.108 -1.034 -0.549 0.808 0.398 -1.075 -0.356 0.512 0.675 -1.785 -0.719 0.590 0.577 -0.694 -0.598 0.298 -0.135 -1.664 -0.021 0.838 0.711 -1.282 -0.608 0.373 0.799 -2.053 -0.858 0.553 0.453 -1.240 -0.847 0.724 0.122 -1.296 -0.365 0.790 0.516 -1.191 -0.712 0.606 0.689 -1.351 -0.817 0.514 0.477 -0.867 -0.493 0.432 -0.082 -1.048 -0.647 0.951 0.728 -1.106 -0.714 0.344 0.353 -0.853 -1.518 0.864 0.031 -0.679 -0.321 0.635 0.244 -0.781 -0.710 0.698 0.383 -0.610 -0.455 0.390 0.513 -0.902 -0.437 0.378 0.320 -1.442 -0.644 0.802 0.043 -1.779 -0.254 0.880 0.708 -1.379 -0.482 0.341 0.407 -0.738 -1.269 0.731 0.436 -0.876 -1.011 0.683 0.452 -1.240 -1.040 0.784 0.526 -0.697 -0.786 0.447 0.365 -0.642 -0.820 0.590 0.476 -0.641 -0.938 0.532 -0.083 -0.530 -0.660 0.791 0.676 -1.463 -0.394 0.354 0.635 -1.850 -0.445 0.521 0.371 -0.998 0.037 0.239 0.094 -1.146 -0.138 0.653 0.395 -1.035 -0.064 0.311 0.571 -1.364 -0.866 0.657 0.325 -0.273 -0.334 0.172 0.174 -1.060 -0.320 0.670 0.933 -1.330 -0.391 -0.103 0.676 -1.752 0.084 0.065 0.415 -0.521 -0.521 0.348 0.498 -1.013 -0.508 0.474 0.753 -1.110 -0.807 0.357 0.720 -1.080 -0.817 0.393 0.710 -0.986 -0.426 0.157 0.105 -1.089 -0.421 0.772 0.347 -1.170 -0.127 0.452 0.427 -1.207 -0.638 0.660 0.283 -0.548 -0.639 0.543 0.010 -0.975 -0.208 0.695 0.143 -0.750 -0.350 0.601 0.631 -0.989 -0.837 0.472 0.450 -0.928 -0.652 0.557 -0.293 -0.702 -0.521 0.904 0.540 -1.033 -0.565 0.467 0.557 -1.623 -0.867 0.727 0.368 -1.310 -0.807 0.794 -0.009 -1.209 -0.091 0.709 0.287 -0.862 -0.519 0.615 0.626 -0.831 -0.912 0.447 0.315 -0.509 -0.542 0.451 -0.222 -0.564 -0.489 0.810 0.659 -1.140 -0.996 0.552 0.567 -1.415 -1.030 0.726 0.173 -0.626 -0.673 0.676 0.096 -1.141 -0.603 0.863 0.220 -1.063 0.038 0.411 0.729 -1.575 -0.658 0.458 0.300 -0.665 -0.512 0.523 -0.072 -1.296 -0.142 0.795 0.817 -1.395 -0.780 0.351 0.660 -1.469 -0.890 0.603 0.644 -0.943 -1.041 0.517 0.192 -1.337 -0.325 0.735 0.411 -1.224 -0.911 0.775 0.787 -0.922 -1.171 0.381 0.365 -0.389 -0.809 0.462 -0.137 -0.885 -0.782 0.976 0.784 -1.109 -0.721 0.272 0.410 -1.243 -1.385 0.900 0.061 -0.709 -0.503 0.713 -0.128 -0.742 -0.970 0.983 0.359 -1.129 -0.276 0.521 0.468 -1.483 -0.471 0.621 0.251 -0.834 -0.320 0.534 -0.075 -0.854 -0.652 0.896 0.597 -1.354 -0.496 0.473 0.728 -1.494 -1.168 0.626 0.203 -0.534 -1.216 0.788 -0.017 -0.858 -0.664 0.871 0.485 -0.872 -0.546 0.454 0.453 -1.053 -0.946 0.705 0.307 -0.534 -0.928 0.629 -0.178 -0.493 -0.964 0.921 0.816 -1.388 -0.541 0.227 0.695 -1.013 -0.932 0.445 0.559 -0.931 -0.599 0.425 0.373 -1.087 -0.619 0.663 0.298 -1.293 0.107 0.363 0.596 -1.477 -0.744 0.616 0.307 -0.610 -0.286 0.365 0.044 -1.395 -0.317 0.837 0.842 -1.302 -0.752 0.273 0.555 -1.327 -0.614 0.564 0.739 -0.966 -1.232 0.479 0.414 -1.151 -0.355 0.522 0.671 -1.172 -0.557 0.361 0.603 -0.944 -0.689 0.423 0.446 -0.597 -0.711 0.449 -0.053 -0.870 -0.568 0.859 0.623 -0.993 -0.948 0.525 0.492 -0.908 -1.208 0.703 0.351 -0.505 -0.964 0.592 -0.124 -0.813 -0.598 0.889 0.098 -1.128 0.111 0.477 0.723 -1.112 -1.155 0.523 0.449 -0.833 -0.567 0.484 -0.105 -0.868 -0.399 0.819 0.670 -1.011 -0.868 0.449 0.750 -1.414 -1.509 0.671 0.534 -0.898 -1.084 0.626 0.127 -0.867 -0.684 0.797 0.445 -0.959 -0.615 0.557 0.637 -0.812 -1.187 0.523 0.367 -0.355 -0.920 0.486 -0.256 -0.694 -0.909 1.009 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.371 -1.026 -0.156 0.399 0.343 -0.383 -0.596 0.382 0.827 -0.758 -0.336 -0.248 1.036 -1.197 0.039 -1.040 0.930 -1.011 -0.563 -0.117 1.180 -1.663 -0.553 -0.441 1.995 -7.640 -7.640 -7.640 -7.640 -7.640 -7.640 1.995 -7.640 -7.640 1.995 -7.640 0.382 -0.733 0.510 -0.574 0.273 0.504 -0.596 -0.490 0.180 -0.954 -0.132 0.525 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.637 -0.796 -0.044 -0.154 0.510 -0.629 -0.500 0.290 0.165 -0.420 -0.480 0.500 0.371 -0.542 -0.015 0.043 0.359 -0.075 -0.440 0.043 0.580 -0.986 -0.440 0.336 -6.629 -6.629 -6.629 1.989 1.989 -6.629 -6.629 -6.629 1.989 -6.629 -6.629 -6.629 TAG WMM 9 6 4 0 0.000 0.370 -0.243 0.313 -0.687 0.735 -0.687 -1.161 0.342 -0.161 -0.331 -0.524 0.691 0.254 -0.377 -0.083 0.129 0.450 -1.083 -0.121 0.313 0.129 -1.243 0.313 0.313 -5.331 -5.331 -5.331 1.973 1.973 -5.331 -5.331 -5.331 -5.331 -5.331 1.973 -5.331 TGA WMM 9 6 4 0 0.000 0.529 -0.568 0.345 -0.709 0.720 -0.503 -1.294 0.309 0.028 -0.503 -0.294 0.545 0.195 -0.440 -0.064 0.215 0.678 -0.409 -1.087 0.234 -0.239 -0.017 -0.380 0.481 -5.994 -5.994 -5.994 1.983 -5.994 -5.994 1.983 -5.994 1.983 -5.994 -5.994 -5.994 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/D.melanogaster.hmm0000644000175000017500000022516411424066010016725 0ustar moellermoellerzoeHMM D.melanogster 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.750831 Inter Esngl 0.249169 Inter ORF 1 Intron Eterm 0.233230 Intron Exon 0.766770 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.429204 0.378319 0.192478 0.576562 0.245312 0.178125 0.580508 0.243644 0.175847 0.604278 0.192513 0.203209 0.755396 0.244604 0.769829 0.230171 0.783080 0.216920 Einit 2 DEFINED 0 249 -9.107 -9.047 -8.989 -8.934 -8.880 -8.829 -8.779 -8.731 -8.685 -8.640 -8.596 -8.551 -8.507 -8.464 -8.423 -8.383 -8.344 -8.305 -8.268 -8.232 -8.197 -8.162 -8.129 -8.096 -8.064 -8.032 -8.001 -7.971 -7.942 -7.913 -7.884 -7.855 -7.825 -7.797 -7.769 -7.742 -7.715 -7.688 -7.662 -7.637 -7.612 -7.620 -7.627 -7.635 -7.643 -7.651 -7.659 -7.667 -7.675 -7.683 -7.692 -7.698 -7.705 -7.711 -7.718 -7.725 -7.731 -7.738 -7.745 -7.752 -7.759 -7.762 -7.766 -7.769 -7.772 -7.776 -7.779 -7.783 -7.786 -7.790 -7.793 -7.831 -7.869 -7.909 -7.949 -7.991 -8.034 -8.078 -8.124 -8.171 -8.220 -8.204 -8.187 -8.171 -8.155 -8.140 -8.124 -8.109 -8.094 -8.078 -8.064 -8.053 -8.042 -8.032 -8.022 -8.011 -8.001 -7.991 -7.981 -7.971 -7.961 -7.965 -7.969 -7.973 -7.977 -7.981 -7.985 -7.989 -7.993 -7.997 -8.001 -8.022 -8.042 -8.064 -8.085 -8.107 -8.129 -8.151 -8.174 -8.197 -8.220 -8.244 -8.268 -8.293 -8.318 -8.344 -8.370 -8.396 -8.423 -8.451 -8.479 -8.496 -8.513 -8.530 -8.548 -8.566 -8.584 -8.603 -8.621 -8.640 -8.659 -8.675 -8.692 -8.708 -8.725 -8.742 -8.759 -8.776 -8.793 -8.811 -8.829 -8.840 -8.851 -8.862 -8.873 -8.884 -8.895 -8.907 -8.918 -8.930 -8.942 -8.977 -9.013 -9.051 -9.089 -9.129 -9.169 -9.211 -9.254 -9.298 -9.344 -9.338 -9.333 -9.328 -9.323 -9.318 -9.313 -9.308 -9.303 -9.298 -9.293 -9.308 -9.323 -9.338 -9.354 -9.370 -9.385 -9.401 -9.418 -9.434 -9.451 -9.473 -9.496 -9.519 -9.542 -9.566 -9.590 -9.615 -9.640 -9.666 -9.692 -9.653 -9.615 -9.578 -9.542 -9.507 -9.473 -9.439 -9.407 -9.375 -9.344 -9.380 -9.418 -9.456 -9.496 -9.536 -9.578 -9.621 -9.666 -9.711 -9.759 -9.772 -9.786 -9.800 -9.815 -9.829 -9.844 -9.858 -9.873 -9.888 -9.903 -9.880 -9.858 -9.836 -9.815 -9.793 -9.772 -9.752 -9.731 -9.711 -9.692 -9.705 -9.718 -9.731 -9.745 -9.759 -9.772 -9.786 -9.800 -9.815 GEOMETRIC 250 -1 256 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.254 -10.161 -10.073 -9.991 -9.913 -9.839 -9.768 -9.701 -9.637 -9.576 -9.517 -9.499 -9.482 -9.466 -9.449 -9.433 -9.416 -9.400 -9.384 -9.369 -9.353 -9.369 -9.384 -9.400 -9.416 -9.433 -9.449 -9.466 -9.482 -9.499 -9.517 -9.488 -9.460 -9.433 -9.406 -9.379 -9.353 -9.328 -9.303 -9.278 -9.254 -9.239 -9.225 -9.211 -9.197 -9.183 -9.170 -9.156 -9.143 -9.129 -9.116 -9.094 -9.073 -9.052 -9.031 -9.011 -8.991 -8.971 -8.951 -8.932 -8.913 -8.909 -8.905 -8.901 -8.898 -8.894 -8.890 -8.886 -8.883 -8.879 -8.875 -8.853 -8.831 -8.810 -8.789 -8.768 -8.748 -8.728 -8.708 -8.688 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.631 -8.624 -8.618 -8.612 -8.606 -8.600 -8.594 -8.588 -8.582 -8.576 -8.570 -8.564 -8.558 -8.552 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.543 -8.540 -8.537 -8.534 -8.531 -8.528 -8.525 -8.522 -8.520 -8.517 -8.537 -8.558 -8.579 -8.600 -8.621 -8.643 -8.665 -8.688 -8.711 -8.734 -8.728 -8.721 -8.714 -8.708 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.650 -8.631 -8.612 -8.594 -8.576 -8.558 -8.540 -8.522 -8.505 -8.488 -8.508 -8.528 -8.549 -8.570 -8.591 -8.612 -8.634 -8.656 -8.678 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.640 -8.643 -8.646 -8.650 -8.653 -8.656 -8.659 -8.662 -8.665 -8.669 -8.685 -8.701 -8.718 -8.734 -8.751 -8.768 -8.785 -8.803 -8.821 -8.839 -8.860 -8.883 -8.905 -8.928 -8.951 -8.975 -8.999 -9.023 -9.048 -9.073 -9.103 -9.134 -9.165 -9.197 -9.230 -9.263 -9.298 -9.333 -9.369 -9.406 -9.384 -9.364 -9.343 -9.323 -9.303 -9.283 -9.263 -9.244 -9.225 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.225 -9.244 -9.263 -9.283 -9.303 -9.323 -9.343 -9.364 -9.384 GEOMETRIC 250 -1 417 Exon 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 378 ORF 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.558 -0.604 -0.566 0.257 0.401 0.014 -0.780 0.121 0.109 -0.083 -1.154 0.612 0.139 -0.693 -0.408 0.610 0.305 -0.358 -0.773 0.484 0.856 -0.222 -0.933 -0.305 0.707 -1.615 -0.807 0.555 0.512 -0.453 -0.758 0.324 0.652 -1.070 -1.222 0.608 0.415 -0.170 -1.170 0.415 0.234 -0.087 -0.503 0.234 0.079 -0.821 -0.143 0.557 0.671 -0.780 -0.932 0.380 0.072 0.024 -0.561 0.327 0.468 -0.197 -0.532 0.074 0.090 -0.669 -0.254 0.554 I-36 LUT 3 2 4 0 0.000 0.515 -0.222 -1.037 0.295 0.234 -0.350 -1.087 0.650 0.368 -0.080 -0.539 0.105 0.060 -0.512 -0.512 0.636 0.439 -0.112 -1.597 0.473 0.528 0.218 -0.967 -0.178 0.387 0.206 -1.379 0.206 0.057 -0.184 -0.943 0.642 0.608 -0.907 -1.014 0.534 0.415 -0.459 -0.874 0.479 -0.030 0.086 -0.615 0.385 -0.149 -0.865 0.328 0.372 0.524 -0.337 -1.415 0.481 0.468 0.346 -1.157 -0.157 0.510 -0.186 -0.585 0.043 0.129 -0.445 -0.544 0.571 I-35 LUT 3 2 4 0 0.000 0.631 -0.789 -0.450 0.190 0.581 -0.711 -0.390 0.176 0.678 -0.222 -1.129 0.119 0.389 -0.652 -0.355 0.348 0.519 -0.907 -0.819 0.553 -0.048 0.300 -0.923 0.350 0.348 -0.290 -0.874 0.447 0.272 -0.336 -0.406 0.316 0.520 -0.640 -0.921 0.482 0.089 -0.134 -0.844 0.554 0.720 -0.213 -0.350 -0.503 0.263 -1.322 -0.404 0.718 0.364 -0.330 -0.610 0.337 0.327 -0.075 -0.635 0.205 0.331 -0.369 -0.867 0.505 0.129 -0.579 -0.937 0.778 I-34 LUT 3 2 4 0 0.000 0.548 -0.739 -0.872 0.477 0.429 -0.199 -0.751 0.249 0.650 -0.972 -1.350 0.613 0.224 -0.336 -0.800 0.551 0.448 -0.367 -1.426 0.574 0.575 0.030 -0.854 -0.095 0.978 -0.481 -1.259 -0.159 0.237 -0.256 -0.552 0.381 0.754 -0.865 -0.672 0.186 0.577 -0.182 -0.883 0.117 0.549 -0.036 -0.773 -0.036 0.201 -0.121 0.142 -0.273 0.599 -0.542 -1.307 0.479 -0.268 -0.204 -0.268 0.557 0.441 -0.807 -0.637 0.515 0.129 -0.727 -0.767 0.778 I-33 LUT 3 2 4 0 0.000 0.385 -0.129 -0.510 0.108 0.259 -0.098 -1.157 0.506 0.397 0.156 -1.304 0.220 0.209 -0.322 -0.322 0.316 0.267 0.038 -1.361 0.465 0.642 0.035 -1.773 0.166 0.601 -0.858 -1.051 0.534 0.066 -0.218 -0.218 0.303 0.637 -0.454 -0.729 0.152 0.851 -1.087 -0.865 0.234 0.450 -0.550 -1.036 0.549 0.387 -0.893 -0.531 0.547 0.460 -0.562 -0.977 0.525 0.438 -0.867 -0.954 0.661 0.454 -0.151 -0.987 0.293 0.228 -0.120 -1.094 0.525 I-32 LUT 3 2 4 0 0.000 0.507 -0.407 -1.026 0.415 0.041 0.119 -1.042 0.485 0.307 -0.352 -0.352 0.258 0.206 -1.000 -0.146 0.528 0.448 0.033 -1.311 0.274 0.476 0.139 -0.408 -0.408 0.812 -0.550 -0.550 -0.188 0.320 -0.796 -0.506 0.558 0.566 -0.644 -0.644 0.310 0.505 0.046 -1.632 0.294 -0.087 0.234 -1.087 0.497 0.105 -0.217 -0.539 0.461 0.682 -0.413 -1.622 0.400 0.072 0.072 -0.776 0.394 0.255 -0.309 -0.441 0.337 0.151 -0.579 -0.827 0.728 I-31 LUT 3 2 4 0 0.000 0.335 -0.298 -1.269 0.595 0.415 -0.924 -1.204 0.770 0.454 -0.283 -0.730 0.270 0.279 -0.364 -0.229 0.210 0.247 -0.298 -0.561 0.403 0.517 0.039 -0.681 -0.124 0.678 -0.611 -1.459 0.467 0.308 -0.392 -0.170 0.152 0.508 -0.585 -0.684 0.366 -0.182 0.117 -0.713 0.510 0.787 -0.503 -0.865 0.028 0.744 -1.426 -0.339 0.218 0.562 -0.261 -1.023 0.260 -0.029 0.135 -1.350 0.613 0.259 -0.347 -0.548 0.415 0.052 -0.425 -0.663 0.666 I-30 LUT 3 2 4 0 0.000 0.249 -0.236 -0.821 0.482 0.141 -0.131 -1.667 0.739 0.772 -0.036 -1.773 0.035 0.252 -0.463 -0.463 0.442 0.451 -0.515 -0.737 0.415 0.612 -0.388 -0.668 0.109 0.444 0.163 -1.059 0.057 0.156 -0.322 -0.485 0.456 0.469 -1.379 -0.379 0.547 0.363 -0.807 -0.807 0.652 0.744 -0.104 -0.619 -0.426 0.046 -1.080 -0.732 0.920 0.544 -0.456 -1.206 0.464 0.012 -0.140 -0.807 0.597 0.543 -0.367 -0.924 0.311 0.202 -0.190 -0.730 0.454 I-29 LUT 3 2 4 0 0.000 0.346 -0.218 -1.654 0.634 0.224 -0.176 -1.235 0.606 0.462 -0.170 -1.492 0.462 0.293 -0.665 -0.888 0.681 0.130 -0.548 -0.963 0.773 0.184 -0.340 -0.880 0.614 0.292 0.292 -0.807 -0.030 0.637 -1.000 -0.778 0.445 0.378 -0.700 -0.478 0.452 0.415 0.139 -1.524 0.284 0.637 -0.363 -1.585 0.415 0.286 -0.773 -0.898 0.730 0.539 -0.869 -0.985 0.580 0.110 0.023 -0.890 0.449 0.491 -0.209 -0.546 0.064 0.093 -0.352 -0.263 0.397 I-28 LUT 3 2 4 0 0.000 0.476 -0.109 -1.372 0.373 0.026 -0.533 -1.196 0.891 0.193 -0.019 -1.097 0.488 0.298 -0.287 -0.683 0.409 0.389 -0.428 -1.498 0.672 0.646 -0.276 -0.617 -0.064 0.383 -0.064 -0.202 -0.202 0.061 -0.465 -0.465 0.592 0.278 -0.307 -1.044 0.580 0.204 -0.138 -1.044 0.541 0.697 0.250 -1.624 -0.209 0.308 -1.070 0.000 0.363 0.757 -0.877 -2.034 0.605 0.000 -0.107 -0.052 0.147 0.716 -0.637 -0.720 0.147 0.218 -0.448 -0.579 0.520 I-27 LUT 3 2 4 0 0.000 0.227 -0.630 -1.084 0.776 0.024 -0.025 -1.883 0.790 0.389 -0.322 -1.459 0.611 0.284 -0.231 -0.939 0.494 0.293 0.013 -1.209 0.415 0.451 -0.134 -0.397 -0.056 0.368 -0.047 -0.495 0.046 0.322 -0.193 -1.541 0.615 0.633 -0.807 -1.030 0.473 0.287 -0.182 -1.075 0.510 0.715 -0.478 -0.285 -0.285 0.212 -1.078 -0.441 0.706 0.553 -0.670 -1.544 0.643 0.694 -0.574 -1.333 0.393 0.380 -0.170 -0.977 0.380 0.100 -0.381 -0.540 0.558 I-26 LUT 3 2 4 0 0.000 0.267 -0.200 -1.755 0.705 0.280 -0.348 -2.222 0.837 0.139 0.213 -2.524 0.646 0.238 -0.387 -0.884 0.598 0.585 -0.476 -1.300 0.459 0.450 -0.036 -0.451 -0.110 0.274 -0.104 -0.841 0.381 0.488 -0.607 -1.159 0.578 0.559 -0.482 -1.110 0.430 0.593 -0.761 -1.609 0.654 0.379 0.000 -1.737 0.485 0.574 -0.967 -0.726 0.481 0.978 -0.779 -2.637 0.363 0.256 0.104 -1.896 0.549 0.515 -0.527 -0.914 0.430 0.321 -0.524 -0.939 0.617 I-25 LUT 3 2 4 0 0.000 0.227 0.012 -1.695 0.597 0.142 -0.399 -1.158 0.757 -0.415 0.415 -1.263 0.585 0.317 -0.879 -0.663 0.659 0.356 -0.381 -1.059 0.558 0.081 0.464 -1.443 0.257 0.678 -0.322 -1.544 0.330 0.632 -0.449 -1.150 0.342 0.678 -1.322 -0.862 0.536 -0.373 -0.132 -1.026 0.868 -0.322 -0.644 -0.059 0.678 0.585 -1.138 -1.138 0.670 0.712 -0.500 -1.858 0.464 0.356 0.079 -0.718 0.079 0.559 -0.322 -1.763 0.518 0.198 -0.360 -0.802 0.585 I-24 LUT 3 2 4 0 0.000 0.076 0.076 -1.441 0.607 0.011 -0.269 -1.617 0.877 -0.123 -0.123 -1.346 0.824 0.275 -0.632 -1.495 0.840 0.360 -0.204 -1.268 0.520 0.707 -1.030 -0.914 0.430 0.253 -0.095 -0.970 0.445 0.634 -0.481 -1.066 0.326 0.193 -0.170 -1.392 0.667 -0.064 0.177 -1.524 0.646 0.415 -0.807 -0.070 0.193 0.270 -0.730 -0.868 0.717 1.006 -0.567 -2.304 0.156 0.341 -0.322 -1.000 0.519 0.471 -0.266 -1.336 0.471 0.482 -1.000 -1.387 0.783 I-23 LUT 3 2 4 0 0.000 -0.063 -0.285 -1.963 0.975 -0.042 -0.322 -1.807 0.958 0.135 0.234 -0.865 0.234 0.306 -0.781 -1.026 0.758 0.379 0.057 -2.135 0.517 0.377 -0.097 -1.459 0.488 0.744 -0.841 -1.841 0.574 0.496 -0.478 -0.893 0.415 0.119 -0.042 -0.959 0.515 0.086 -0.155 -1.030 0.633 0.567 -0.433 -2.755 0.705 0.415 -1.222 -1.222 0.856 1.012 -0.573 -2.471 0.178 -0.068 -0.376 -1.598 0.960 0.491 -0.303 -1.888 0.598 0.429 -0.528 -1.184 0.604 I-22 LUT 3 2 4 0 0.000 0.193 -0.113 -1.988 0.749 0.101 -0.408 -1.787 0.914 -0.392 0.067 -1.392 0.856 0.126 -0.311 -0.983 0.675 0.515 -0.807 -1.030 0.595 0.522 0.037 -1.478 0.238 0.700 0.459 -1.415 -0.678 0.883 -0.799 -0.924 0.076 -0.181 -0.087 -1.503 0.867 -0.188 -0.550 -1.358 1.035 0.322 0.807 -2.000 -0.415 -0.129 -0.670 -1.129 1.000 0.918 -0.729 -2.170 0.363 0.329 0.081 -2.112 0.541 0.794 -0.404 -1.170 0.093 0.325 -0.514 -1.085 0.656 I-21 LUT 3 2 4 0 0.000 0.065 -0.006 -2.719 0.853 -0.242 0.379 -1.943 0.672 -0.555 0.352 -2.555 0.905 0.210 -0.568 -0.712 0.640 0.652 -0.107 -2.485 0.402 0.234 -0.239 -0.709 0.449 0.193 0.515 -1.222 0.000 0.809 -0.614 -1.557 0.328 0.370 -0.700 -1.022 0.678 -0.064 -0.716 -1.939 1.120 -1.170 -0.170 -1.170 1.152 0.415 -0.865 -1.087 0.720 0.936 -0.746 -3.409 0.481 0.284 -0.021 -1.021 0.383 0.101 -0.278 -0.793 0.610 0.309 -0.691 -0.892 0.680 I-20 LUT 3 2 4 0 0.000 0.249 -0.153 -2.260 0.768 0.337 -0.733 -1.248 0.778 0.193 0.363 -1.807 0.363 0.173 -0.525 -0.769 0.670 0.206 -0.453 -2.700 0.972 0.325 -0.170 -0.822 0.371 0.343 0.343 -1.358 0.102 0.673 -1.209 -1.402 0.673 0.447 -0.138 -1.459 0.447 0.193 -1.030 -1.615 1.029 -0.392 0.193 -1.392 0.778 0.276 -1.926 -0.078 0.659 1.046 -0.954 -2.369 0.294 0.222 -0.322 -1.000 0.617 0.685 -0.693 -0.899 0.307 0.055 -0.631 -0.482 0.678 I-19 LUT 3 2 4 0 0.000 0.337 -0.090 -2.948 0.738 0.130 -0.478 -1.411 0.858 0.126 -0.722 -2.044 1.043 0.133 -0.199 -0.784 0.538 0.496 -0.843 -1.761 0.797 0.531 -0.363 -0.710 0.222 0.146 0.146 -0.555 0.146 0.263 -0.368 -0.862 0.561 0.524 -0.415 -1.678 0.585 0.159 -0.104 -0.619 0.381 0.193 -0.070 -0.807 0.415 -0.298 -0.883 -0.298 0.872 1.031 -0.630 -3.839 0.311 0.441 -0.284 -1.485 0.550 0.251 -0.749 -0.597 0.636 0.372 -0.476 -1.128 0.613 I-18 LUT 3 2 4 0 0.000 -0.028 0.038 -2.221 0.830 0.175 -0.147 -0.431 0.294 -0.115 0.107 -1.115 0.621 0.276 -0.089 -0.842 0.368 0.199 -0.170 -1.948 0.769 0.436 -0.181 -0.766 0.234 -0.115 0.174 -1.285 0.621 0.118 -0.426 -0.841 0.689 0.459 -1.000 -1.415 0.807 0.890 -0.358 -1.036 -0.188 -0.459 -0.044 -1.459 0.956 0.067 -1.222 -0.305 0.778 0.974 -1.078 -2.833 0.507 0.000 -0.080 -0.962 0.623 -0.255 0.144 -1.014 0.643 0.109 -0.703 -0.522 0.688 I-17 LUT 3 2 4 0 0.000 0.290 -0.084 -2.254 0.700 -0.392 -0.222 -0.890 0.881 0.041 -0.129 -1.129 0.678 0.127 -0.953 -0.559 0.776 0.337 -0.026 -2.511 0.659 0.481 0.274 -1.619 0.097 0.415 -0.132 -1.248 0.415 -0.369 -0.047 -0.784 0.746 -0.426 -0.426 -0.619 0.896 -0.781 0.126 -0.781 0.804 -0.524 -0.939 0.284 0.646 -0.110 -0.550 -0.550 0.772 0.732 -0.821 -2.728 0.698 0.072 -0.011 -0.850 0.487 -0.218 0.251 -1.597 0.696 -0.234 -0.234 -1.258 0.912 I-16 LUT 3 2 4 0 0.000 0.149 -0.266 -1.958 0.850 0.138 0.181 -1.447 0.485 0.322 0.170 -2.000 0.459 -0.098 -0.123 -0.843 0.669 0.385 -1.030 -2.293 1.000 0.186 -0.087 -0.672 0.372 0.720 0.028 -2.087 0.135 -0.350 0.234 -1.009 0.625 0.049 -0.688 -1.273 0.949 0.485 0.000 -1.100 0.181 0.245 -0.433 -0.755 0.567 0.136 -1.048 -1.338 1.016 0.478 -0.721 -3.891 0.951 -0.222 -0.175 -0.807 0.753 -0.054 0.000 -1.433 0.737 -0.401 -0.079 -0.941 0.828 I-15 LUT 3 2 4 0 0.000 0.441 -0.118 -2.196 0.588 -0.322 0.152 -1.170 0.718 0.245 -0.433 -0.433 0.415 -0.131 -0.345 -1.131 0.882 0.639 -0.498 -3.820 0.734 0.000 0.107 -1.000 0.509 0.333 0.152 -2.170 0.493 -0.194 0.084 -1.151 0.692 0.226 -1.022 -1.700 1.022 0.052 -0.295 -0.948 0.705 0.074 0.074 -2.248 0.752 0.000 -1.000 -0.862 0.963 0.471 -0.290 -3.138 0.750 -0.159 0.030 -1.126 0.700 0.027 0.226 -1.027 0.401 -0.393 -0.193 -0.845 0.853 I-14 LUT 3 2 4 0 0.000 0.093 -0.032 -4.492 0.934 -0.280 0.415 -1.672 0.613 -1.392 -0.392 -0.392 1.067 -0.111 0.176 -1.111 0.567 0.471 -0.658 -3.658 0.927 0.224 -0.428 -0.733 0.572 0.469 0.300 -1.700 0.107 -0.858 0.081 -0.799 0.861 0.337 -0.132 -2.248 0.691 0.193 0.280 -2.807 0.585 -1.459 0.126 -0.459 0.862 0.172 -0.980 -1.828 1.060 0.252 -0.346 -2.306 0.864 -0.561 0.147 -0.713 0.682 0.130 -0.143 -1.728 0.764 -0.510 -0.288 -0.854 0.945 I-13 LUT 3 2 4 0 0.000 0.225 -0.138 -2.097 0.756 -0.111 -0.295 -1.170 0.860 -0.415 0.322 -2.000 0.807 -0.280 -0.037 -1.087 0.792 0.604 -0.059 -3.644 0.526 0.126 -0.012 -1.334 0.605 0.333 0.152 -1.170 0.245 -0.911 0.089 -0.734 0.851 -0.350 -0.865 -3.672 1.372 -0.184 0.356 -1.644 0.604 0.485 -0.322 -0.737 0.263 -0.322 -1.152 -0.737 1.104 0.459 -0.798 -3.322 0.963 -0.463 0.290 -0.505 0.430 -0.349 -0.041 -0.654 0.685 -0.751 -0.099 -1.004 0.981 I-12 LUT 3 2 4 0 0.000 0.112 -0.040 -3.209 0.878 -0.154 -0.154 -1.476 0.882 0.322 -0.415 -2.000 0.807 -0.302 -0.370 -1.268 1.000 0.000 -0.241 -4.700 1.081 0.011 0.297 -0.596 0.141 0.505 -0.784 -1.369 0.690 -0.783 -0.091 -1.396 1.071 -0.126 -0.415 -1.000 0.874 -0.059 0.057 -0.837 0.526 0.052 -0.170 -1.170 0.705 0.078 -0.585 -0.710 0.737 -0.041 -0.710 -5.170 1.256 -0.403 0.021 -1.127 0.825 -0.428 -0.176 -1.120 0.935 -0.702 -0.140 -1.065 1.000 I-11 LUT 3 2 4 0 0.000 0.363 -0.485 -3.807 0.948 -0.154 0.048 -0.306 0.332 0.000 0.000 0.000 0.000 -0.459 -0.097 -1.530 0.994 -0.087 -0.503 -3.672 1.186 -0.135 -0.483 -1.135 0.940 -0.423 -0.182 -2.298 1.117 -0.761 -0.089 -1.428 1.069 0.611 -0.974 -2.781 0.862 0.033 0.661 -0.256 -0.841 -0.939 0.476 -0.939 0.646 -0.693 -0.208 -0.600 0.892 0.154 -0.380 -4.238 1.047 -0.648 0.303 -1.854 0.888 -0.381 0.071 -2.044 0.956 -0.932 -0.092 -1.092 1.049 I-10 LUT 3 2 4 0 0.000 0.057 -0.036 -3.943 0.940 -0.122 -0.122 -1.624 0.878 0.000 0.000 -1.000 0.585 -0.704 -0.133 -1.941 1.147 0.332 0.048 -2.891 0.654 -0.659 0.138 -1.100 0.848 0.152 0.152 -1.433 0.493 -0.538 0.032 -1.492 0.951 0.415 -0.363 -3.170 0.830 -0.644 0.263 -0.474 0.526 0.093 0.093 -1.907 0.678 -0.276 -0.524 -0.939 0.968 -0.095 -0.233 -5.140 1.127 -0.459 0.389 -1.258 0.628 0.206 -0.115 -2.379 0.791 -0.588 -0.355 -0.801 0.985 I-9 LUT 3 2 4 0 0.000 -0.014 0.286 -4.714 0.809 0.032 -0.404 -1.032 0.794 -0.807 0.193 -0.807 0.778 -0.459 0.234 -1.459 0.793 0.308 0.363 -4.392 0.515 0.111 0.294 -1.398 0.394 -0.379 0.300 -0.700 0.469 -0.256 -0.292 -1.054 0.898 0.135 0.028 -2.672 0.787 -0.907 0.756 -0.907 0.316 0.000 -0.585 0.000 0.415 0.395 -0.605 -0.605 0.454 -0.179 -0.442 -5.349 1.236 -0.322 0.490 -0.679 0.227 -0.624 0.376 -1.335 0.729 -0.744 0.164 -0.804 0.774 I-8 LUT 3 2 4 0 0.000 0.613 -0.585 -4.672 0.819 -0.585 0.186 -1.213 0.819 -0.322 -0.322 -0.322 0.678 -0.352 0.207 -1.430 0.758 0.066 -0.218 -4.741 1.040 0.326 0.197 -0.528 -0.141 0.368 0.368 -1.954 0.216 -0.446 0.424 -1.719 0.696 0.322 -0.193 -2.000 0.700 0.441 0.363 -1.485 0.000 0.284 0.061 -1.524 0.476 -0.828 -0.150 -0.690 0.938 -0.373 -0.464 -4.418 1.296 -0.197 0.285 -0.880 0.450 -0.346 0.239 -1.609 0.770 -0.529 -0.029 -1.073 0.889 I-7 LUT 3 2 4 0 0.000 -0.258 -0.081 -2.781 1.052 -0.285 0.037 -1.700 0.885 0.415 -0.585 -0.585 0.415 -0.483 0.163 -1.768 0.904 0.000 0.160 -5.087 0.890 0.197 0.166 -1.657 0.500 -0.141 0.579 -2.229 0.472 -0.505 0.373 -2.290 0.844 -0.531 0.387 -3.700 0.943 -0.170 0.482 -1.977 0.546 -1.087 -0.087 -1.087 1.082 -0.515 0.202 -1.737 0.888 -0.392 0.048 -5.200 1.122 -0.316 0.619 -1.720 0.441 -0.569 0.772 -2.154 0.478 -0.687 0.208 -1.613 0.923 I-6 LUT 3 2 4 0 0.000 -0.233 -0.467 -4.555 1.253 -1.194 0.059 -1.573 1.128 0.193 -0.807 -0.807 0.778 -1.290 0.117 -2.229 1.197 -1.471 -0.843 -4.931 1.608 -0.233 0.257 -2.273 0.805 -0.737 0.263 -2.322 1.000 -1.592 0.080 -2.271 1.266 -0.585 -0.363 -1.170 1.078 -2.150 0.658 -1.828 0.938 -0.585 0.000 0.000 0.415 -2.503 0.160 -1.503 1.234 -0.970 -0.892 -5.140 1.547 -1.489 0.391 -1.778 1.029 -1.123 -0.123 -1.346 1.157 -1.222 0.029 -1.757 1.173 I-5 LUT 3 2 4 0 0.000 0.219 -0.322 -3.781 0.974 -0.737 0.181 -2.322 1.047 0.778 -0.807 -0.807 0.193 -2.082 -1.690 -3.497 1.751 0.212 0.337 -4.248 0.610 -0.126 0.605 -1.885 0.369 0.308 -0.222 -1.807 0.695 -2.774 -2.234 -1.986 1.761 0.497 -0.503 -2.087 0.720 -1.322 0.553 -1.907 0.900 0.000 0.737 -1.585 0.000 -1.346 -2.346 -2.931 1.713 0.067 -0.305 -4.392 1.067 -0.642 0.763 -1.764 0.452 -0.026 -0.132 -2.833 0.974 -1.896 -0.735 -2.283 1.548 I-4 LUT 3 2 4 0 0.000 0.910 0.126 -1.459 -0.585 0.919 -0.611 -0.322 -0.611 0.000 0.000 0.000 0.000 -0.098 -0.349 -0.041 0.388 1.319 -1.080 -3.539 -0.080 0.933 -0.993 0.036 -0.829 0.571 -0.322 -1.129 0.330 -0.080 -0.585 -0.047 0.505 1.126 -1.044 -1.044 -0.237 0.000 -0.485 0.363 0.000 0.193 0.193 0.193 -0.807 -0.322 -0.474 0.263 0.356 0.888 -0.366 -4.066 0.393 0.500 -1.273 0.351 -0.158 0.442 -0.143 -0.268 -0.143 -0.763 -0.561 0.274 0.608 I-3 LUT 3 2 4 0 0.000 -1.021 1.351 -5.109 -0.109 -2.524 1.334 -3.524 0.284 -1.700 1.107 -1.700 0.300 -1.954 1.133 -3.954 0.569 -1.941 1.621 -5.401 -0.646 -2.087 1.135 -3.672 0.576 -2.433 1.637 -4.755 -0.585 -3.129 1.156 -4.129 0.678 -1.503 1.082 -3.087 0.497 -2.459 1.348 -2.459 0.126 -2.170 1.290 -2.170 0.152 -1.644 1.057 -2.644 0.526 -1.480 1.215 -5.728 0.381 -2.041 1.335 -5.741 0.281 -4.166 1.692 -6.488 -0.511 -2.942 1.140 -5.849 0.721 A LUT 3 2 4 0 0.000 1.911 -3.644 -3.644 -3.644 1.988 -6.488 -6.488 -6.488 0.000 0.000 0.000 0.000 1.969 -5.129 -5.129 -5.129 1.752 -2.248 -2.248 -2.248 1.979 -5.687 -5.687 -5.687 0.000 0.000 0.000 0.000 1.958 -4.700 -4.700 -4.700 1.585 -1.585 -1.585 -1.585 1.989 -6.615 -6.615 -6.615 0.000 0.000 0.000 0.000 1.951 -4.492 -4.492 -4.492 1.798 -2.524 -2.524 -2.524 1.987 -6.409 -6.409 -6.409 0.678 -0.322 -0.322 -0.322 1.983 -5.966 -5.966 -5.966 G LUT 3 2 4 0 0.000 -4.524 -4.524 1.952 -4.524 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.328 -8.328 1.997 -8.328 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.322 -0.322 0.678 -0.322 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.160 -7.160 1.992 -7.160 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.380 -0.373 0.360 -0.638 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.072 -0.380 -0.835 0.782 0.067 -0.222 -0.862 0.628 -0.120 0.111 -1.023 0.593 -0.441 -0.417 0.127 0.508 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.799 -0.097 -1.566 -0.019 0.282 -0.158 -0.506 0.244 0.000 0.431 -0.716 0.061 -0.042 -0.202 0.249 -0.042 0.497 0.082 -1.087 0.082 0.415 -0.144 -0.305 -0.070 0.219 0.219 0.026 -0.611 -0.090 0.240 0.138 -0.361 0.473 -0.293 -0.155 -0.155 0.159 -0.104 -0.472 0.302 0.138 0.485 -0.621 -0.234 -0.228 -0.043 0.403 -0.228 -0.230 0.713 -2.346 0.391 0.368 0.046 -0.047 -0.495 -0.388 0.279 0.225 -0.228 -0.676 0.364 0.109 0.012 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.520 -0.140 0.757 -0.503 -0.362 0.305 0.338 -0.470 -0.642 0.553 -0.328 0.132 -0.785 0.258 0.494 -0.296 -0.051 -0.890 1.069 -1.333 0.072 0.186 0.407 -1.043 -0.223 0.622 -0.251 -0.388 -0.794 -0.780 1.162 -0.728 -0.121 -0.550 0.601 -0.183 -0.392 0.498 -0.046 -0.222 0.652 0.441 -1.637 -0.415 -1.042 -0.268 0.859 -0.201 . 1.178 . 0.796 -0.649 0.360 0.543 -0.685 . 0.722 0.606 -0.271 -1.311 0.404 0.626 -0.454 -0.948 0.205 0.634 -0.363 -0.405 0.614 0.144 -0.714 -1.342 1.076 -0.991 -0.009 -0.858 0.501 0.217 -0.198 -0.571 -0.227 0.901 -0.724 -0.007 0.345 0.420 -1.334 -0.401 0.864 -0.357 -0.639 -1.057 -0.409 1.202 -1.104 -0.755 -0.029 0.616 -0.159 -0.789 1.131 -0.753 -0.650 0.313 0.808 -1.552 -0.588 -1.048 -0.231 0.931 -0.401 . 1.345 . 0.546 -0.799 0.478 0.626 -1.031 . 0.959 0.423 -0.483 -2.257 0.670 -0.060 0.311 -0.845 0.125 0.843 -0.840 -0.626 0.515 0.423 -0.780 -1.130 1.068 -0.776 -0.214 -1.236 0.626 0.302 -0.323 -0.446 -0.332 1.044 -1.285 0.040 0.249 0.481 -1.364 -0.246 0.660 -0.170 -0.540 -1.005 -0.683 1.307 -1.304 -0.781 -0.328 0.862 -0.315 -0.691 0.602 0.197 -0.480 -0.031 0.945 -2.235 -0.178 -1.799 -0.356 1.228 -0.766 . 1.496 . 0.238 -0.719 0.568 0.528 -1.098 . 1.113 0.302 -0.726 -2.465 0.961 0.096 -0.316 -0.654 0.003 0.396 0.066 -0.364 0.347 0.517 -0.944 -0.850 0.810 -0.832 0.176 -0.379 0.017 0.300 -0.017 -0.443 -0.031 0.758 -0.749 -0.371 0.621 0.345 -1.257 -0.641 0.894 -0.627 -0.229 -1.105 -0.385 1.218 -1.177 -0.399 -0.111 0.454 -0.080 -0.708 0.928 -0.206 -0.695 0.090 0.867 -1.352 -0.475 -1.361 -0.196 1.080 -0.683 . 1.204 . 0.762 -0.582 0.423 0.539 -0.893 . 0.877 0.338 -0.153 -1.126 0.227 0.727 -0.483 -0.461 -0.160 0.494 -0.043 -0.019 0.112 0.215 -0.375 -0.572 0.457 -0.406 0.263 -0.675 -0.141 0.492 0.085 -0.148 -0.606 0.831 -0.596 0.171 0.107 0.248 -0.713 -0.387 0.810 -0.650 -0.244 -1.101 -0.441 1.141 -0.755 -0.465 -0.545 0.586 0.122 -0.250 0.402 -0.213 -0.036 0.685 0.103 -1.350 -0.111 -1.233 -0.505 0.905 -0.003 . 1.070 . 0.926 -0.523 0.323 0.552 -0.770 . 0.714 0.209 0.267 -1.205 0.304 0.446 -0.045 -0.800 -0.068 0.769 -0.382 -0.464 0.723 -0.100 -0.532 -1.522 1.021 -1.109 0.212 -1.166 0.431 0.181 0.101 -0.538 -0.201 0.883 -0.745 0.063 0.092 0.440 -0.908 -0.572 0.821 -0.627 -0.131 -1.251 -0.369 1.181 -0.892 -0.433 -0.355 0.571 -0.011 -0.962 1.180 -1.187 -0.356 0.162 0.825 -1.709 -0.315 -1.221 0.089 0.741 -0.259 . 1.312 . 0.601 -0.753 0.599 0.562 -1.269 . 1.016 0.325 -0.465 -2.544 0.929 -0.142 0.025 -0.578 0.062 0.323 0.050 -0.185 0.281 0.483 -0.978 -0.622 0.690 -0.543 0.072 -0.990 0.157 0.529 -0.091 -0.498 -0.166 0.904 -0.918 -0.137 0.444 0.436 -1.405 -0.369 0.631 -0.403 -0.119 -1.339 -0.435 1.311 -1.382 -0.417 -0.211 0.542 -0.104 -0.478 0.539 0.162 -0.494 0.224 0.756 -1.859 -0.204 -1.461 -0.405 1.145 -0.578 . 1.439 . 0.366 -0.836 0.409 0.695 -1.020 . 0.871 0.488 -0.379 -1.817 0.477 0.448 -0.058 -0.425 -0.096 0.437 -0.050 -0.340 0.154 0.132 0.003 -0.684 0.794 -0.737 0.063 -0.473 -0.205 0.062 0.452 -0.013 -0.768 0.812 -0.587 0.141 0.147 0.110 -0.491 -0.247 0.648 -0.923 0.088 -0.837 -0.879 1.204 -0.756 -0.147 -0.492 0.430 0.054 -0.390 0.671 -0.922 0.159 0.253 0.679 -1.439 -0.254 -0.912 -0.335 0.828 -0.151 . 0.988 . 1.012 -0.239 0.227 0.419 -0.631 . 0.710 0.459 -0.015 -1.029 -0.088 0.776 -0.224 -0.427 -0.066 0.399 -0.026 -0.428 0.458 -0.093 -0.081 -0.503 0.378 -0.421 0.320 -0.869 0.249 0.446 -0.150 -0.442 -0.369 0.887 -0.644 -0.123 0.451 0.005 -0.491 -0.236 0.796 -0.783 -0.262 -1.195 -0.312 1.082 -0.641 -0.338 -0.605 0.431 0.267 -0.222 0.447 -0.538 0.126 0.795 0.362 -2.152 -0.405 -0.985 -0.476 0.964 -0.276 . 1.120 . 0.870 -0.498 0.553 0.318 -0.791 . 0.787 0.483 -0.189 -1.511 0.719 0.362 -0.479 -0.833 0.114 0.679 -0.405 -0.539 0.886 -0.398 -0.506 -1.823 1.205 -1.504 0.084 -1.243 0.536 0.218 -0.052 -0.554 -0.137 0.920 -0.950 -0.228 0.559 0.375 -1.409 -0.717 0.817 -0.286 -0.305 -1.220 -0.355 1.167 -0.878 -0.572 -0.200 0.600 -0.087 -0.999 1.256 -1.315 -0.496 -0.003 0.919 -2.013 -0.211 -1.453 0.197 0.754 -0.317 . 1.296 . 0.628 -1.073 0.989 -0.025 -0.845 . 0.897 0.393 -0.279 -2.392 0.919 -0.155 0.029 -0.451 0.184 0.457 -0.396 -0.183 0.324 0.100 -0.330 -0.878 0.876 -0.620 -0.043 -0.501 0.417 0.053 -0.119 -0.419 -0.143 0.877 -0.975 0.191 0.365 0.215 -1.287 -0.246 0.627 -0.212 -0.417 -0.967 -0.435 1.224 -1.276 -0.372 -0.247 0.478 -0.012 -0.521 0.740 -0.209 -0.379 0.232 0.947 -2.623 -0.444 -1.690 -0.164 1.153 -0.799 . 1.301 . 0.619 -0.601 0.518 0.518 -1.067 . 0.658 0.725 -0.377 -1.687 0.757 0.132 -0.145 -0.371 0.150 0.031 0.132 -0.307 0.426 -0.288 0.041 -1.248 0.941 -1.248 0.308 -1.354 0.284 0.199 0.314 -0.549 -0.202 0.802 -0.507 -0.379 0.453 0.239 -0.551 -0.594 0.961 -0.835 -0.268 -1.132 -0.429 1.213 -1.051 -0.315 -0.055 0.215 0.102 -0.825 0.986 -0.739 -0.225 0.109 0.761 -1.705 -0.120 -1.124 -0.020 0.939 -0.649 . 1.106 . 0.885 -0.696 0.722 0.358 -1.149 . 0.798 0.294 0.051 -1.274 0.564 0.443 -0.416 -0.680 -0.002 0.642 -0.293 -0.528 0.635 -0.059 -0.334 -0.642 0.608 -0.439 0.134 -0.702 0.081 0.542 -0.198 -0.167 -0.469 0.827 -0.706 -0.129 0.641 0.074 -1.078 -0.121 0.772 -0.744 -0.366 -0.949 0.017 0.763 -0.370 -0.334 -0.165 0.357 0.049 -0.469 0.823 -0.574 -0.257 0.252 0.765 -1.469 -0.417 -1.167 -0.102 0.671 0.044 . 1.265 . 0.675 -0.723 0.674 0.277 -0.768 . 0.974 0.183 -0.151 -1.219 0.659 -0.149 0.123 -1.124 0.123 0.809 -0.513 -0.872 1.096 -0.369 -0.884 -2.061 1.136 -1.251 0.193 -1.263 0.823 0.009 -0.307 -0.738 -0.247 0.973 -0.749 -0.375 0.553 0.404 -1.189 -0.887 0.860 -0.351 -0.218 -1.476 -0.231 1.174 -0.908 -0.996 -0.151 0.609 0.101 -1.052 1.218 -0.948 -0.571 0.022 0.776 -1.418 -0.156 -1.529 0.414 0.633 -0.376 . 1.465 . 0.310 -1.085 0.722 0.480 -1.047 . 1.091 0.293 -0.635 -2.375 1.053 -0.706 0.163 -0.775 0.107 0.758 -0.626 -0.852 0.947 -0.123 -0.735 -1.058 0.961 -0.366 -0.327 -1.257 0.450 0.480 -0.285 -0.477 -0.181 0.942 -1.065 -0.314 0.815 0.112 -1.495 -0.264 0.834 -0.823 -0.288 -1.461 0.091 1.107 -1.257 -0.767 0.039 0.706 -0.408 -1.061 1.140 -0.673 -0.536 -0.267 1.099 -2.359 -0.267 -1.609 0.134 0.984 -0.747 . 1.476 . 0.285 -1.270 1.003 0.210 -1.238 . 1.000 0.542 -0.878 -2.198 0.943 -0.026 -0.189 -0.425 -0.007 0.562 -0.352 -0.392 0.791 -0.164 -0.701 -1.601 0.974 -0.732 0.143 -0.618 0.230 0.243 -0.012 -0.190 -0.219 0.765 -0.826 -0.322 0.589 0.220 -0.914 -0.365 0.810 -0.551 -0.344 -0.828 -0.275 1.031 -0.820 -0.213 -0.147 0.315 -0.015 -0.663 1.070 -0.801 -0.525 0.127 0.796 -1.503 -0.288 -1.112 -0.192 1.016 -0.644 . 1.364 . 0.512 -0.831 0.627 0.351 -0.693 . 0.823 0.592 -0.468 -0.999 0.424 0.575 -0.581 frame2 LUT 5 4 4 0 0.000 0.096 0.218 0.012 -0.397 0.381 -0.615 0.243 -0.215 0.227 -0.047 0.320 -0.706 -0.202 0.018 0.750 -1.196 0.082 -0.123 0.284 -0.312 0.567 -0.505 0.103 -0.437 -0.208 0.415 0.513 -1.419 -0.324 0.066 0.586 -0.613 0.369 -0.134 -0.037 -0.281 0.604 -0.735 0.279 -0.587 0.077 -0.098 0.702 -1.379 -0.343 -0.076 0.709 -0.672 0.149 -0.049 0.129 -0.266 0.151 -0.202 0.448 -0.608 -0.119 0.093 0.580 -0.950 -0.327 -0.057 0.785 -0.949 0.304 0.292 -0.180 -0.603 0.283 -0.068 0.035 -0.314 -0.113 0.561 0.168 -1.072 -0.736 0.646 0.284 -0.696 -0.073 0.385 0.259 -0.871 0.899 -1.367 0.091 -0.553 -0.211 0.568 0.332 -1.341 -0.388 0.081 0.472 -0.338 0.073 0.204 -0.003 -0.325 0.484 -0.292 -0.047 -0.292 -0.232 0.164 0.720 -1.392 -0.582 0.313 0.377 -0.339 0.427 0.092 -0.048 -0.683 0.628 -0.394 -0.341 -0.145 -0.280 0.359 0.579 -1.320 0.093 0.154 -0.049 -0.227 0.160 -0.105 0.430 -0.723 0.298 -0.766 0.388 -0.194 -0.105 0.103 0.511 -0.809 -0.465 -0.004 0.720 -0.664 -0.230 -0.221 0.770 -0.777 0.623 -0.539 0.194 -0.671 -0.519 0.045 0.976 -1.721 -0.599 -0.069 0.905 -0.962 -0.097 -0.097 0.477 -0.437 0.435 -0.974 0.617 -0.722 -0.083 0.313 0.424 -1.083 -1.061 0.368 0.775 -0.948 0.286 -0.231 0.107 -0.231 0.579 -0.342 0.076 -0.593 -0.399 0.291 0.695 -1.326 -0.296 0.152 0.360 -0.339 . . . . 0.196 -0.194 0.230 -0.308 . . . . -0.289 0.202 0.489 -0.671 -0.121 -0.003 0.303 -0.237 0.318 -0.482 0.286 -0.289 -0.244 0.353 0.497 -1.098 -0.459 0.050 0.632 -0.540 . . . . 0.295 -0.094 0.093 -0.378 0.368 -0.047 -0.004 -0.428 -0.833 0.400 0.788 -1.347 0.484 -0.296 0.177 -0.607 0.075 0.013 0.342 -0.579 -0.288 0.210 0.626 -1.057 -0.085 -0.203 0.652 -0.696 0.316 -0.020 -0.040 -0.330 0.504 -0.606 0.096 -0.224 0.079 -0.071 0.397 -0.568 -0.522 0.281 0.650 -0.946 0.146 -0.113 0.193 -0.275 0.617 -0.768 0.069 -0.269 -0.635 0.414 0.652 -1.143 -0.611 0.169 0.565 -0.432 0.206 -0.191 0.227 -0.322 0.637 -0.794 0.187 -0.455 0.406 -0.043 0.459 -1.601 -0.944 0.022 0.716 -0.284 -0.099 0.265 -0.068 -0.135 0.432 -0.437 0.240 -0.451 0.088 -0.052 0.361 -0.540 -0.314 -0.008 0.664 -0.699 0.271 0.088 0.079 -0.570 0.380 -0.291 0.051 -0.242 0.055 0.227 0.286 -0.806 -0.918 0.688 0.321 -0.711 -0.107 0.232 0.371 -0.729 0.832 -1.398 0.084 -0.357 -0.425 0.607 0.393 -1.254 -0.194 -0.167 0.660 -0.609 -0.071 0.185 0.005 -0.140 0.448 -0.321 0.064 -0.340 0.215 0.127 0.411 -1.258 -0.707 0.321 0.488 -0.441 0.644 -0.241 -0.134 -0.555 0.823 -0.994 -0.122 -0.305 -0.210 0.292 0.532 -1.105 0.251 -0.037 0.186 -0.519 0.287 -0.043 0.145 -0.507 0.460 -0.934 0.338 -0.256 0.035 -0.323 0.656 -0.735 -0.565 0.079 0.744 -0.755 -0.288 -0.067 0.615 -0.525 0.402 -0.499 0.248 -0.352 -0.625 -0.072 0.877 -0.827 -0.918 0.053 0.824 -0.594 0.095 -0.115 0.378 -0.496 0.506 -1.020 0.488 -0.547 -0.159 0.115 0.586 -0.943 -0.797 0.057 0.810 -0.664 0.391 -0.091 -0.046 -0.355 0.359 -0.372 0.036 -0.121 -0.283 -0.092 0.825 -1.094 -0.316 -0.148 0.362 0.014 . . . . 0.422 -0.550 0.228 -0.311 . . . . -0.438 0.270 0.577 -0.825 0.142 0.226 -0.094 -0.340 0.724 -0.892 0.025 -0.336 -0.233 0.427 0.325 -0.858 -0.310 -0.122 0.650 -0.503 . . . . 0.418 -0.337 0.154 -0.397 0.137 0.065 0.170 -0.454 -1.020 0.268 0.796 -0.822 0.658 -0.288 -0.090 -0.594 0.260 -0.116 0.131 -0.350 -0.115 -0.115 0.763 -1.132 -0.037 -0.376 0.829 -1.065 0.192 0.205 -0.239 -0.221 0.472 -0.508 0.067 -0.214 0.211 0.165 0.213 -0.831 -0.428 0.413 0.529 -1.053 0.121 0.050 0.168 -0.407 0.824 -0.559 -0.239 -0.508 -0.141 0.461 0.436 -1.463 -0.416 0.076 0.562 -0.473 0.285 -0.133 -0.034 -0.163 0.664 -0.751 0.037 -0.330 0.365 -0.015 0.473 -1.580 -0.696 0.335 0.584 -0.683 0.096 0.117 -0.067 -0.164 0.548 -0.529 0.138 -0.426 0.137 0.203 0.235 -0.804 -0.177 -0.064 0.585 -0.603 0.285 0.449 -0.531 -0.466 0.535 -0.482 0.057 -0.332 -0.219 0.589 0.129 -0.883 -0.672 0.755 -0.082 -0.436 -0.206 0.378 0.273 -0.678 0.916 -1.082 0.098 -0.809 -0.611 0.563 0.477 -1.073 -0.571 0.300 0.443 -0.440 0.029 0.350 -0.185 -0.278 0.651 -0.301 -0.048 -0.619 -0.188 0.320 0.502 -1.127 -0.880 0.734 0.086 -0.448 0.637 -0.121 -0.242 -0.557 0.642 -0.543 -0.395 -0.011 -0.137 0.334 0.479 -1.196 0.368 0.186 -0.426 -0.273 0.366 0.064 -0.053 -0.510 0.612 -0.984 0.142 -0.212 0.073 0.113 0.368 -0.797 -0.436 0.299 0.583 -0.909 -0.180 0.101 0.518 -0.708 0.890 -0.789 -0.073 -0.695 -0.525 0.122 0.862 -1.325 -0.554 0.291 0.622 -0.845 0.032 -0.119 -0.004 0.083 0.722 -1.063 0.250 -0.551 -0.181 0.543 0.368 -1.432 -0.778 0.588 0.478 -0.939 0.457 -0.328 -0.055 -0.204 0.969 -0.959 -0.531 -0.257 -0.216 0.206 0.611 -1.127 0.104 0.065 0.093 -0.300 . . . . 0.499 -0.456 0.197 -0.492 . . . . -0.488 0.466 0.408 -0.788 -0.017 0.081 0.172 -0.273 0.769 -1.020 0.073 -0.413 -0.413 0.627 0.280 -1.029 -0.205 -0.079 0.606 -0.591 . . . . 0.351 -0.201 0.186 -0.480 0.070 0.070 0.110 -0.284 -0.794 0.523 0.504 -0.818 0.619 -0.338 0.027 -0.613 0.280 -0.029 0.154 -0.530 -0.083 0.243 0.461 -1.010 -0.098 -0.134 0.691 -0.890 0.477 -0.302 -0.020 -0.302 0.354 -0.517 0.212 -0.209 0.228 0.095 0.218 -0.743 -0.087 0.293 0.391 -0.938 0.130 -0.063 0.217 -0.347 0.577 -0.428 0.003 -0.391 -0.152 0.177 0.575 -1.058 -0.618 0.232 0.517 -0.428 0.500 0.007 -0.463 -0.225 0.459 -0.449 -0.044 -0.116 0.349 -0.104 0.421 -1.129 -0.670 -0.061 0.638 -0.223 0.113 -0.184 0.047 0.007 0.382 -0.130 0.051 -0.420 -0.153 0.380 0.259 -0.731 -0.238 -0.028 0.592 -0.591 0.327 0.051 -0.089 -0.378 0.451 -0.206 -0.089 -0.276 -0.223 0.424 0.108 -0.466 -0.885 0.628 0.363 -0.675 -0.144 0.277 0.220 -0.477 0.622 -0.874 0.255 -0.470 -0.661 0.510 0.540 -1.031 -0.790 0.172 0.595 -0.350 -0.120 0.110 0.183 -0.209 0.587 -0.264 -0.032 -0.540 -0.126 0.218 0.560 -1.164 -0.715 0.569 0.265 -0.504 0.320 -0.009 -0.061 -0.324 0.675 -0.557 -0.260 -0.171 -0.301 0.293 0.547 -0.996 0.229 0.178 -0.032 -0.477 0.519 -0.312 0.108 -0.548 0.365 -0.515 0.066 -0.051 -0.041 0.104 0.429 -0.720 -0.393 0.083 0.581 -0.550 -0.252 -0.066 0.582 -0.500 0.513 -0.356 0.136 -0.529 -0.412 -0.274 0.962 -1.080 -0.699 0.282 0.744 -1.021 0.022 -0.070 0.343 -0.388 0.627 -0.606 0.112 -0.478 -0.275 0.177 0.627 -1.003 -0.847 0.166 0.699 -0.518 0.538 -0.228 -0.015 -0.505 0.428 -0.079 -0.281 -0.176 -0.280 0.063 0.774 -1.246 0.043 0.010 0.290 -0.434 . . . . 0.327 -0.290 0.041 -0.155 . . . . -0.433 0.293 0.490 -0.667 0.082 -0.093 0.275 -0.333 0.505 -0.488 0.263 -0.584 -0.436 0.362 0.545 -0.953 -0.621 0.047 0.721 -0.582 . . . . 0.143 -0.154 0.219 -0.263 -0.159 0.003 0.392 -0.340 -0.936 0.438 0.589 -0.693 0.715 -0.615 0.215 -0.878 0.004 0.080 0.313 -0.519 -0.362 -0.018 0.812 -1.062 0.110 -0.290 0.649 -0.905 frame2 LUT 5 4 4 0 0.000 0.671 -0.331 -1.286 0.266 0.118 -0.387 -0.438 0.497 0.417 -0.095 -0.785 0.199 -0.410 0.370 -0.539 0.340 0.776 -0.521 -0.859 0.055 0.564 -1.044 -0.464 0.391 0.925 -0.523 -0.283 -0.776 -0.322 0.194 -0.437 0.398 0.831 -0.526 -1.114 0.090 0.266 -0.324 -0.205 0.178 0.875 -0.174 -0.662 -0.626 -0.360 0.125 -0.257 0.371 0.486 -0.295 -0.727 0.239 -0.166 0.320 -0.656 0.294 -0.077 0.103 0.069 -0.107 -1.252 0.419 -0.662 0.688 0.477 0.184 -1.071 -0.005 0.151 0.455 -0.716 -0.135 0.359 0.388 -0.598 -0.419 -0.991 0.755 -1.027 0.399 0.436 0.043 -0.722 0.016 0.662 -0.908 -0.766 0.375 0.605 -0.204 -0.299 -0.327 -0.236 0.113 -0.347 0.360 0.417 0.017 -0.670 0.035 -0.098 0.475 -0.839 0.158 0.652 0.043 -0.585 -0.450 -0.538 0.199 -0.521 0.553 0.229 0.011 -0.496 0.153 -0.344 0.429 -0.853 0.392 -0.047 0.138 0.123 -0.247 -0.984 0.522 -0.789 0.565 0.610 -0.487 -0.063 -0.315 -0.105 0.039 -0.144 0.186 0.511 0.215 -0.466 -0.536 -0.912 0.410 -0.679 0.599 0.539 -0.501 -0.036 -0.210 0.605 -0.695 -0.795 0.362 0.806 -0.693 -0.001 -0.657 -0.380 0.444 -0.612 0.283 0.667 -0.862 -0.447 0.175 0.330 -0.292 0.163 -0.309 1.035 -0.291 -0.996 -0.663 -0.179 0.078 -0.594 0.484 0.393 -0.262 -0.159 -0.063 -0.149 0.373 -0.447 0.097 -0.017 0.218 0.093 -0.355 -1.317 0.567 -0.572 0.531 0.408 -0.194 -0.829 0.306 -0.166 0.498 -0.631 0.071 0.449 0.409 -1.159 -0.219 -0.746 0.403 -1.014 0.666 0.785 -0.434 -1.085 0.092 0.452 -1.565 -0.443 0.640 0.970 -0.470 -0.583 -0.616 -0.276 0.100 -0.216 0.312 0.619 -0.330 -0.878 0.169 0.249 -0.326 -0.305 0.268 0.703 -0.114 -0.506 -0.428 -0.432 0.257 -0.313 0.332 0.597 -0.374 -0.896 0.237 0.019 0.002 -0.244 0.191 0.280 -0.109 -0.215 -0.005 -0.765 0.280 -0.347 0.497 0.648 -0.336 -0.853 0.121 0.781 -0.706 -0.926 0.192 0.341 0.033 -0.509 0.010 -0.880 0.481 -0.893 0.607 0.598 -0.338 -0.774 0.151 0.886 -1.049 -0.937 0.197 0.933 -0.417 -0.459 -0.704 -0.325 0.097 -0.493 0.507 0.582 -0.456 -0.587 0.148 0.858 -0.656 -0.600 -0.163 0.750 0.063 -0.778 -0.533 -0.445 -0.123 -0.398 0.667 0.275 -0.237 -0.537 0.324 0.199 0.195 -0.430 -0.050 -0.127 0.219 -0.120 0.000 -1.159 0.250 -0.842 0.852 0.613 0.120 -0.666 -0.408 0.042 0.646 -1.077 -0.103 0.317 0.200 -0.671 -0.032 -0.829 0.756 -1.324 0.431 0.573 -0.012 -0.733 -0.122 0.882 -0.641 -0.694 -0.155 0.635 -0.369 -0.306 -0.212 -0.371 0.285 -0.484 0.371 0.795 -0.448 -0.768 -0.082 0.248 0.525 -1.039 -0.173 0.802 0.054 -0.820 -0.618 -0.135 0.163 -0.354 0.248 0.368 -0.074 -0.348 -0.039 0.018 0.493 -0.646 -0.088 -0.146 0.038 0.397 -0.409 -0.882 0.595 -1.000 0.533 0.853 -0.406 -0.968 -0.109 0.095 -0.209 -0.016 0.108 0.346 0.068 -0.581 0.017 -1.096 0.423 -0.877 0.720 0.640 -0.380 -0.829 0.151 0.666 -1.945 -0.280 0.412 0.947 -0.917 -0.407 -0.344 -0.060 0.019 -0.420 0.355 0.847 -0.754 -0.676 -0.026 0.419 -0.547 0.097 -0.138 0.907 -0.037 -1.268 -0.445 -0.188 -0.010 -0.660 0.581 0.570 -0.122 -0.774 0.017 -0.065 -0.233 0.054 0.207 0.187 -0.070 0.181 -0.367 -0.937 0.172 -0.726 0.804 0.700 -0.423 -0.632 -0.023 0.236 -0.293 -0.794 0.515 0.668 -0.093 -0.753 -0.184 -0.649 0.535 -0.850 0.442 0.731 -0.319 -0.784 -0.063 0.560 -1.979 -0.531 0.660 0.900 -0.798 -0.410 -0.310 -0.283 0.099 -0.536 0.503 0.579 -0.376 -0.755 0.193 0.272 -0.295 -0.339 0.247 0.669 -0.044 -0.445 -0.503 -0.455 0.180 -0.215 0.351 0.815 -0.477 -0.880 -0.031 0.411 -0.371 -0.589 0.300 0.471 -0.239 -0.103 -0.259 -0.636 0.285 -0.715 0.613 0.595 -0.400 -0.753 0.187 0.121 -0.581 -0.405 0.574 0.688 -0.053 -1.077 -0.073 -0.687 0.432 -0.671 0.487 0.658 -0.504 -0.964 0.269 0.451 -1.016 -0.355 0.440 1.218 -0.833 -0.874 -0.817 -0.162 0.026 -0.712 0.563 0.822 -0.612 -1.080 0.144 0.441 -0.702 -0.396 0.343 0.957 -0.233 -0.876 -0.592 -0.331 -0.095 -0.405 0.598 0.414 -0.403 -0.889 0.456 -0.134 -0.003 -0.410 0.420 0.496 -0.057 -0.296 -0.296 -0.684 0.206 -0.547 0.623 0.506 0.030 -0.831 -0.005 0.002 0.277 -0.829 0.292 0.043 0.780 -0.989 -0.417 -0.874 0.705 -1.201 0.475 0.605 -0.144 -0.761 -0.023 0.654 -1.272 -0.528 0.399 0.529 0.108 -0.428 -0.443 -0.535 0.162 -0.349 0.491 0.574 -0.480 -0.710 0.242 0.260 0.099 -0.823 0.221 0.617 0.292 -0.755 -0.624 -0.226 0.098 -0.763 0.571 0.452 -0.200 -0.554 0.112 0.012 0.083 -0.659 0.378 -0.079 0.435 -0.022 -0.481 -0.839 0.340 -0.632 0.613 0.657 -0.271 -0.800 0.029 0.063 -0.078 -0.367 0.301 -0.126 0.468 -0.149 -0.324 -1.041 0.565 -0.958 0.603 0.623 -0.479 -0.493 0.045 0.773 -1.526 -0.781 0.445 0.671 -0.854 0.253 -0.593 0.071 0.177 -0.521 0.167 0.653 -0.821 -0.558 0.242 0.554 -0.393 -0.359 -0.013 0.904 -0.138 -0.669 -0.759 -0.619 0.432 -1.519 0.723 0.361 -0.236 -0.322 0.093 0.321 -0.244 -0.463 0.240 0.082 -0.187 0.441 -0.503 -0.494 0.459 -0.692 0.375 0.791 -0.292 -1.462 0.123 0.205 -0.085 -0.670 0.352 0.468 0.070 -0.798 -0.012 -0.789 0.613 -1.137 0.523 0.750 -0.168 -1.055 -0.079 0.534 -1.627 -0.894 0.757 0.840 -0.651 -0.328 -0.364 -0.075 -0.068 -0.426 0.436 0.546 -0.209 -1.203 0.311 0.041 -0.021 -0.345 0.261 0.598 0.075 -0.629 -0.348 -0.718 0.326 -0.098 0.268 0.669 -0.384 -0.720 0.051 0.205 0.033 -0.413 0.101 0.310 -0.236 -0.034 -0.097 -0.587 0.372 -0.384 0.349 . . . . . . . . . . . . . . . . 0.723 -0.421 -0.978 0.131 0.623 -1.082 -0.384 0.288 0.932 -0.354 -0.480 -0.754 -0.097 -0.164 -0.442 0.523 . . . . . . . . . . . . . . . . 0.269 -0.331 -0.775 0.501 0.050 0.040 -0.355 0.208 0.048 0.113 -0.276 0.083 -0.951 -0.028 -0.424 0.813 0.577 0.014 -0.692 -0.185 -0.087 0.359 -0.538 0.120 0.354 0.354 -0.558 -0.386 -1.281 0.958 -1.281 0.304 0.413 0.012 -0.580 -0.014 0.314 -1.054 -0.338 0.569 0.490 -0.236 -0.009 -0.409 -0.703 0.555 -0.387 0.204 0.628 -0.343 -0.864 0.159 0.134 0.201 -0.707 0.190 0.593 0.125 -0.495 -0.531 -0.512 0.641 -0.658 0.144 0.346 -0.121 -0.467 0.118 -0.171 0.358 -0.509 0.173 0.087 0.041 0.206 -0.406 -1.386 0.684 -0.585 0.427 . . . . . . . . . . . . . . . . 0.626 -0.392 -0.817 0.172 0.358 -0.752 -0.378 0.438 0.787 -0.669 -0.174 -0.398 -0.238 0.184 -0.238 0.225 0.731 -0.379 -0.806 -0.002 0.225 -0.895 -0.121 0.458 0.694 -0.228 -0.467 -0.314 -0.657 0.242 -0.257 0.429 0.439 -0.173 -0.947 0.309 -0.070 0.363 -0.367 -0.020 0.237 0.049 -0.038 -0.298 -1.784 0.216 -0.282 0.787 0.696 -0.311 -0.577 -0.146 -0.379 0.353 -0.563 0.353 0.628 0.202 -0.784 -0.467 -1.129 0.712 -1.129 0.534 0.626 -0.339 -0.959 0.203 0.215 -0.758 -0.143 0.424 0.907 -0.523 -0.549 -0.425 -0.128 0.016 -0.329 0.353 0.516 -0.174 -0.347 -0.157 0.150 -0.091 -0.376 0.240 0.606 0.101 -0.415 -0.610 -0.465 0.252 -0.416 0.417 0.543 -0.468 -0.721 0.279 0.070 0.039 -0.807 0.434 0.274 -0.061 -0.167 -0.087 -0.565 0.148 -0.307 0.493 Donor SDT 2 0 4 2 0.000 GT SAM 15 3 4 15 0.000 E-3 LUT 3 2 4 0 0.000 0.516 -0.091 -0.058 -0.577 0.678 -0.145 -0.322 -0.524 0.794 -0.322 -0.049 -1.000 0.112 0.142 0.016 -0.314 0.579 0.220 -0.719 -0.446 1.152 -0.629 -0.629 -1.044 1.048 0.048 -0.668 -1.891 0.146 0.089 0.089 -0.385 0.538 -0.145 0.020 -0.666 0.580 -0.218 0.013 -0.654 1.101 0.351 -0.939 -4.109 -0.918 0.082 0.305 0.234 0.561 0.239 -1.471 -0.024 0.935 0.122 -0.766 -1.280 0.396 0.366 -0.265 -0.827 -0.075 0.340 -0.075 -0.258 E-2 LUT 3 2 4 0 0.000 0.993 -0.503 -0.834 -0.430 1.213 -1.388 -0.651 -0.594 1.061 -0.038 -0.939 -1.261 0.515 -0.415 -0.222 -0.052 1.313 -1.365 -0.687 -0.986 1.631 -2.672 -1.350 -1.503 1.302 -0.967 -0.726 -1.256 0.110 -0.807 0.667 -0.392 1.258 -1.000 -0.939 -0.769 1.487 -1.411 -0.963 -1.700 1.149 -0.288 -0.790 -1.375 -1.426 0.481 -0.104 0.381 0.928 -0.784 -0.867 -0.047 1.400 -1.112 -0.878 -1.499 0.886 -0.044 -0.401 -1.237 -0.138 0.026 0.348 -0.322 E-1 LUT 3 2 4 0 0.000 -1.025 -2.347 1.506 -1.084 -0.556 -1.184 1.239 -0.943 -0.700 -0.531 1.206 -1.379 -1.254 -1.632 1.368 -0.562 -0.425 -2.540 1.490 -1.862 -0.233 -1.970 1.200 -0.747 -0.670 -0.807 1.330 -1.807 -2.248 -1.026 1.525 -1.248 -0.652 -2.611 1.418 -0.923 -1.000 -2.138 1.373 -0.553 -0.022 -1.215 1.148 -1.437 -2.426 -1.426 1.661 -1.841 -0.178 -1.619 0.966 -0.256 -0.730 -1.382 1.096 -0.190 -0.970 -2.233 1.533 -1.385 -1.907 -1.229 1.472 -0.907 G LUT 3 2 4 0 0.000 -5.401 -5.401 1.974 -5.401 -3.672 -3.672 1.913 -3.672 -7.498 -7.498 1.994 -7.498 -4.895 -4.895 1.963 -4.895 -3.615 -3.615 1.909 -3.615 -2.700 -2.700 1.823 -2.700 -5.508 -5.508 1.976 -5.508 -3.672 -3.672 1.913 -3.672 -3.781 -3.781 1.919 -3.781 -3.322 -3.322 1.888 -3.322 -5.700 -5.700 1.979 -5.700 -2.907 -2.907 1.848 -2.907 -2.524 -2.524 1.798 -2.524 -2.858 -2.858 1.842 -2.858 -5.693 -5.693 1.979 -5.693 -3.322 -3.322 1.888 -3.322 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.150 -6.150 -6.150 1.985 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.066 -5.066 -5.066 1.967 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.353 -8.353 -8.353 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.833 -5.833 -5.833 1.981 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.258 -4.338 0.473 -2.548 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.570 -2.185 -1.600 -1.056 1.245 -1.755 -0.755 -0.433 1.684 -1.944 -1.233 -3.316 1.066 -1.841 -1.104 0.218 I+3 LUT 3 2 4 0 0.000 -1.853 -3.116 1.754 -2.087 -0.607 -3.066 1.393 -0.744 -1.822 -2.044 1.710 -2.307 -1.160 -3.160 1.635 -1.575 -2.248 -2.248 1.752 -2.248 -0.322 -0.322 0.678 -0.322 -0.807 -0.807 1.193 -0.807 -1.000 -1.000 1.322 -1.000 -3.773 -4.510 1.935 -4.095 -1.555 -1.555 1.533 -1.233 -4.229 -4.229 1.921 -3.229 -2.322 -2.322 1.766 -2.322 -2.585 -3.585 1.874 -3.585 -0.170 -1.170 1.152 -1.170 -0.700 -0.700 1.300 -1.700 -2.807 -1.807 1.652 -1.222 I+4 LUT 3 2 4 0 0.000 -0.102 -1.382 -0.868 1.096 -1.044 -0.459 -1.044 1.204 -1.170 -1.272 -3.150 1.599 -0.230 -1.346 -0.609 1.069 0.152 -0.170 -0.585 0.415 0.585 0.000 -1.000 0.000 -1.087 -1.602 -2.824 1.613 0.497 -1.087 -0.503 0.497 -1.459 -1.459 0.126 1.126 -0.322 -1.322 -0.322 1.000 -0.898 -0.965 -2.036 1.437 -0.170 -1.170 -0.170 0.830 0.074 0.559 -1.248 0.074 -1.000 0.000 0.585 0.000 -1.276 -1.106 -2.276 1.544 -1.087 -1.087 1.234 -0.503 I+5 LUT 3 2 4 0 0.000 0.363 -0.485 -0.222 0.193 0.922 0.074 -2.248 -0.248 0.152 -0.170 -0.170 0.152 0.948 -1.807 -0.348 0.000 0.678 -0.322 -0.322 -0.322 0.862 0.126 -1.459 -0.459 -0.322 -0.322 -0.322 0.678 1.193 -2.807 -0.807 0.000 0.400 -0.899 -0.600 0.570 0.621 -0.753 -0.923 0.423 0.842 0.049 -1.858 -0.158 0.405 -1.005 -0.202 0.388 0.284 -0.939 -0.939 0.798 0.126 -0.459 -0.459 0.541 0.356 0.356 -1.644 0.163 0.830 -0.492 -0.170 -0.684 I+6 LUT 3 2 4 0 0.000 0.817 -1.392 -0.585 0.252 0.000 -0.170 -0.363 0.415 0.159 -0.426 -0.841 0.661 0.431 -0.823 -0.823 0.606 0.415 -0.443 -0.858 0.464 1.038 -0.402 -0.888 -0.624 0.652 -0.485 0.000 -0.485 0.310 -0.342 -0.150 0.098 0.890 -0.773 -1.773 0.343 0.142 0.312 -0.858 0.142 -0.585 -0.585 0.737 0.000 -0.051 -0.858 -0.273 0.727 -0.024 -0.073 -0.392 0.382 0.398 0.150 -0.627 -0.113 0.037 -0.038 -0.119 0.110 -0.079 -0.974 -0.284 0.785 I+7 LUT 3 2 4 0 0.000 0.510 -0.253 -1.287 0.408 0.618 -0.382 -0.798 0.168 0.157 0.114 -1.346 0.496 0.282 -0.212 -1.126 0.548 0.505 -0.217 -0.369 -0.080 0.415 -0.170 -0.170 -0.170 0.447 0.447 -0.652 -0.652 -0.044 -0.237 0.204 0.043 0.898 -0.599 -1.365 0.121 0.109 0.225 -1.306 0.431 0.670 -0.372 -0.372 -0.212 0.013 -0.420 -0.934 0.782 0.380 -0.568 -1.205 0.669 0.348 0.064 -0.759 0.126 0.503 -0.234 -0.181 -0.234 -0.110 -0.316 -0.209 0.491 I+8 LUT 3 2 4 0 0.000 0.489 -0.274 -0.656 0.182 0.333 0.000 -0.755 0.199 0.519 0.578 -0.896 -0.896 0.177 0.091 -0.617 0.204 0.479 -0.138 -0.585 0.043 0.818 -0.369 -1.080 -0.016 0.365 -0.423 -0.182 0.117 0.112 -0.151 -0.987 0.598 0.311 -0.367 -0.204 0.159 0.334 0.000 -0.202 -0.202 0.170 -0.193 0.087 -0.093 -0.263 -0.415 0.273 0.273 0.188 -0.104 -0.726 0.407 0.133 0.245 -0.553 0.052 0.155 0.012 -0.386 0.155 -0.245 -0.245 -0.161 0.504 I+9 LUT 3 2 4 0 0.000 0.585 -0.491 -0.794 0.277 0.213 0.139 -1.301 0.415 0.276 -0.013 -1.068 0.402 0.076 -0.147 -0.291 0.294 0.146 -0.185 -0.385 0.320 0.290 0.199 -0.667 0.000 0.263 -0.042 -0.322 0.041 0.139 -0.598 -0.124 0.402 0.319 -0.954 -0.080 0.368 0.696 -0.056 -1.496 0.089 -0.024 0.069 -0.471 0.317 -0.363 -0.263 0.415 0.078 0.178 -0.341 -0.119 0.212 -0.105 0.494 -0.626 0.020 0.232 -0.277 0.193 -0.222 0.107 -0.613 -0.028 0.366 I+10 LUT 3 2 4 0 0.000 0.245 -0.170 -0.518 0.296 0.611 -0.694 -0.694 0.306 0.074 0.074 -0.926 0.453 0.431 -0.500 -0.642 0.383 0.774 -0.354 -0.861 -0.064 0.318 -0.154 -0.465 0.177 0.317 0.157 -0.230 -0.346 -0.164 -0.267 -0.215 0.501 0.482 -0.821 -0.921 0.594 0.618 -0.178 -0.967 0.097 0.314 -0.303 -0.209 0.112 -0.737 -0.396 0.214 0.566 0.066 -0.412 -0.175 0.396 0.402 -0.376 -0.183 0.039 -0.109 -0.109 -0.021 0.213 0.160 -0.626 -0.162 0.423 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.672 -0.479 -0.634 0.064 0.610 -0.497 -0.549 0.114 0.066 -0.030 -0.437 0.305 0.287 -0.602 -0.116 0.260 0.723 -0.467 -0.498 -0.124 0.634 -0.088 -0.341 -0.478 0.538 -0.074 -0.414 -0.239 0.027 -0.467 -0.086 0.395 0.692 -0.809 -0.206 -0.079 0.396 -0.211 -0.267 -0.016 0.387 -0.085 -0.259 -0.130 -0.042 -0.610 0.110 0.372 0.556 -0.718 -0.894 0.469 0.396 -0.287 -0.114 -0.089 0.026 -0.006 -0.265 0.207 0.112 -0.689 -0.186 0.505 0.725 -0.305 -0.799 -0.054 0.890 -0.621 -0.805 -0.115 0.253 0.240 -0.628 -0.029 0.375 -0.736 -0.526 0.494 0.459 -0.112 -0.356 -0.123 0.654 -0.069 -0.683 -0.235 0.603 0.201 -0.716 -0.469 -0.035 -0.309 -0.155 0.399 0.639 -0.491 -0.366 -0.066 0.495 0.028 -0.630 -0.112 0.349 0.166 -0.366 -0.272 0.129 -0.504 -0.122 0.359 0.594 -0.436 -0.753 0.212 0.297 -0.273 -0.134 0.046 0.193 0.099 -0.259 -0.074 -0.174 -0.614 -0.219 0.679 0.786 -0.653 -0.384 -0.196 0.574 -0.296 -0.410 -0.083 0.404 0.054 -0.365 -0.214 0.317 -0.519 -0.249 0.281 0.499 -0.547 0.100 -0.268 0.769 -0.367 -0.263 -0.541 0.480 -0.216 -0.046 -0.367 -0.202 -0.346 0.267 0.191 0.561 -0.624 -0.058 -0.128 0.560 -0.383 -0.113 -0.262 0.288 -0.218 0.030 -0.154 0.043 -0.661 0.330 0.111 0.492 -0.424 -0.479 0.178 0.381 -0.236 -0.058 -0.171 -0.025 0.099 -0.063 -0.016 -0.238 -0.564 -0.036 0.585 0.787 -0.795 -0.852 0.195 0.756 -0.499 -0.674 -0.034 0.319 -0.037 -0.716 0.226 0.550 -0.984 -0.491 0.399 0.568 -0.634 -0.344 0.119 0.489 -0.155 -0.327 -0.149 0.547 -0.038 -0.502 -0.220 -0.014 -0.270 -0.038 0.270 0.631 -0.643 -0.487 0.134 0.556 -0.190 -0.469 -0.105 0.157 0.200 -0.203 -0.205 0.252 -0.752 -0.003 0.283 0.595 -0.693 -0.737 0.346 0.352 -0.095 -0.247 -0.082 0.138 -0.001 -0.512 0.263 0.066 -0.404 -0.330 0.487 0.566 -0.443 -0.618 0.179 0.623 -0.514 -0.712 0.200 0.033 -0.062 -0.450 0.363 -0.118 -0.434 -0.331 0.626 0.167 0.306 -0.559 -0.056 0.476 -0.063 -0.479 -0.097 0.053 0.295 -0.487 0.033 -0.675 -0.133 -0.110 0.618 0.485 -0.403 -0.263 0.016 0.560 -0.333 -0.608 0.105 0.263 0.096 -0.406 -0.034 -0.528 -0.351 0.015 0.596 0.374 -0.400 -0.976 0.524 0.221 -0.106 -0.230 0.075 -0.161 0.098 -0.313 0.299 -0.342 -0.467 -0.538 0.847 0.618 -0.278 -0.474 -0.119 0.374 0.063 -0.827 0.133 -0.002 0.409 -0.567 -0.001 -0.237 -0.090 -0.554 0.614 0.296 -0.019 -0.348 0.000 0.329 0.171 -0.659 -0.023 0.251 0.314 -0.494 -0.222 -0.522 -0.050 -0.106 0.494 0.533 -0.454 -0.361 0.063 0.236 0.334 -1.093 0.128 0.103 0.407 -0.356 -0.289 -0.267 -0.193 -0.193 0.505 0.497 -0.336 -0.746 0.263 -0.098 0.111 -0.279 0.216 -0.240 0.311 -0.153 0.019 -0.455 -0.260 -0.303 0.700 0.707 -0.496 -0.621 0.012 0.269 -0.393 -0.230 0.240 0.091 0.035 -0.315 0.146 -0.046 -0.510 -0.183 0.535 0.209 -0.159 -0.102 0.024 0.346 -0.026 -0.238 -0.154 0.066 0.057 -0.301 0.140 -0.787 -0.007 0.149 0.397 0.532 -0.602 -0.196 0.032 0.345 -0.325 -0.136 0.031 -0.107 0.182 -0.001 -0.092 -0.429 -0.429 0.177 0.470 0.351 -0.490 -0.485 0.376 0.116 -0.290 0.043 0.095 -0.300 0.001 -0.202 0.398 -0.586 -0.464 -0.107 0.748 0.521 -0.462 -0.689 0.286 0.445 -0.314 -0.647 0.258 0.218 0.076 -0.605 0.170 0.202 -0.467 -0.454 0.482 0.399 -0.199 -0.440 0.102 0.370 -0.229 -0.384 0.122 0.269 0.080 -0.415 -0.017 -0.464 0.096 -0.144 0.380 0.501 -0.318 -0.477 0.089 0.242 -0.050 -0.470 0.176 -0.072 0.413 -0.258 -0.183 -0.214 -0.385 0.014 0.446 0.583 -0.605 -0.660 0.277 0.182 -0.170 -0.341 0.248 0.010 -0.048 -0.141 0.163 -0.354 -0.325 -0.237 0.651 0.666 -0.641 -0.667 0.191 0.330 -0.427 -0.452 0.343 0.171 -0.045 -0.336 0.154 0.035 -0.454 -0.130 0.413 0.404 -0.317 -0.153 -0.037 0.550 -0.084 -0.468 -0.203 0.455 -0.093 -0.202 -0.282 -0.379 -0.297 0.044 0.471 0.528 -0.784 0.103 -0.146 0.493 -0.441 -0.239 0.013 0.423 -0.113 -0.137 -0.277 -0.187 -0.581 0.199 0.385 0.465 -0.493 -0.608 0.325 0.052 -0.093 -0.113 0.139 0.230 -0.191 -0.033 -0.039 -0.229 -0.560 -0.204 0.678 0.596 -0.201 -0.780 0.051 0.614 -0.412 -0.860 0.223 -0.033 0.507 -0.551 -0.122 0.065 -0.510 -0.528 0.640 0.390 -0.199 -0.202 -0.075 0.622 -0.036 -0.493 -0.368 0.038 0.384 -0.251 -0.271 -0.426 -0.186 0.071 0.407 0.510 -0.515 -0.226 0.031 0.342 -0.033 -0.581 0.120 0.088 0.356 -0.363 -0.185 -0.183 -0.522 0.114 0.423 0.641 -0.477 -0.640 0.111 0.077 -0.055 -0.299 0.226 -0.187 0.368 -0.188 -0.070 -0.099 -0.480 -0.384 0.663 0.859 -0.832 -0.646 -0.022 0.491 -0.411 -0.466 0.162 0.073 0.101 -0.010 -0.180 -0.088 -0.470 -0.068 0.469 0.485 -0.570 -0.028 -0.080 0.890 -0.542 -0.491 -0.417 0.295 -0.256 0.143 -0.266 -0.325 -0.413 0.196 0.384 0.762 -0.958 -0.269 -0.059 0.367 -0.390 -0.074 -0.004 0.137 -0.111 0.166 -0.230 -0.175 -0.489 0.153 0.367 0.661 -0.931 -0.434 0.206 0.383 -0.460 -0.192 0.130 0.031 -0.256 0.287 -0.118 -0.297 -0.500 -0.163 0.665 0.589 -0.795 -0.352 0.184 0.661 -0.726 -0.483 0.136 0.189 -0.014 -0.482 0.206 0.148 -0.582 -0.258 0.473 0.354 -0.409 -0.139 0.086 0.401 -0.309 -0.339 0.114 0.121 0.131 -0.280 -0.008 -0.316 -0.315 0.257 0.261 0.443 -0.563 0.047 -0.104 0.347 -0.248 -0.199 0.021 0.066 0.138 -0.021 -0.206 -0.287 -0.796 0.613 0.104 0.510 -0.577 -0.495 0.258 0.204 -0.214 -0.145 0.112 -0.063 0.043 -0.222 0.208 -0.216 -0.451 -0.260 0.653 0.508 -0.608 -0.799 0.430 0.371 -0.249 -0.796 0.367 -0.035 0.063 -0.793 0.488 0.069 -0.729 -0.441 0.688 0.370 -0.364 -0.773 0.428 0.505 -0.084 -0.752 0.062 0.379 -0.068 -0.625 0.134 -0.088 -0.340 -0.573 0.675 0.493 -0.656 -0.440 0.288 0.295 -0.118 -0.773 0.340 0.141 0.003 -0.325 0.134 -0.177 -0.650 -0.470 0.812 0.171 -0.721 -1.048 0.835 0.184 -0.341 -0.352 0.368 -0.127 -0.074 -0.563 0.543 -0.085 -0.817 -0.623 0.880 0.489 -0.454 -0.624 0.285 0.454 -0.301 -0.884 0.353 -0.088 0.316 -0.717 0.271 -0.092 -0.267 -0.685 0.686 0.267 -0.138 -0.400 0.176 0.404 0.094 -0.683 -0.021 0.162 0.155 -0.474 0.067 -0.601 -0.045 -0.117 0.535 0.483 -0.714 -0.378 0.290 0.298 0.018 -0.891 0.285 0.068 0.121 -0.391 0.139 -0.148 -0.293 -0.446 0.630 0.321 -0.439 -0.595 0.434 -0.048 -0.210 -0.465 0.530 -0.219 0.138 -0.300 0.296 -0.255 -0.335 -0.332 0.655 0.693 -0.713 -0.626 0.171 0.430 -0.281 -0.700 0.279 -0.031 -0.021 -0.553 0.437 0.020 -0.868 -0.204 0.650 0.371 -0.500 -0.137 0.125 0.591 -0.314 -0.385 -0.114 0.207 -0.135 -0.153 0.052 -0.414 -0.224 0.212 0.305 0.619 -0.741 -0.265 0.048 0.366 -0.042 -0.552 0.081 -0.045 0.075 -0.153 0.109 -0.242 -0.351 -0.063 0.499 0.330 -0.478 -0.701 0.496 0.229 -0.245 -0.326 0.246 -0.403 -0.088 -0.392 0.624 -0.451 -0.699 -0.077 0.770 0.622 -0.777 -0.690 0.331 0.465 -0.354 -0.651 0.264 -0.049 0.094 -0.581 0.376 0.018 -0.710 -0.457 0.721 0.453 -0.490 -0.375 0.199 0.419 -0.063 -0.489 -0.009 0.235 0.011 -0.393 0.076 -0.222 -0.310 -0.199 0.550 0.577 -0.584 -0.508 0.186 0.412 -0.022 -0.729 0.112 -0.176 0.373 -0.279 -0.007 -0.137 -0.682 -0.170 0.659 0.501 -0.708 -0.823 0.493 0.143 -0.017 -0.309 0.138 -0.205 0.021 -0.325 0.400 -0.183 -0.336 -0.371 0.636 Intron LUT 5 4 4 0 0.000 0.675 -0.523 -0.597 0.065 0.593 -0.505 -0.598 0.172 0.011 -0.044 -0.374 0.322 0.230 -0.636 -0.035 0.273 0.700 -0.486 -0.459 -0.098 0.603 -0.061 -0.305 -0.488 0.515 -0.050 -0.404 -0.237 -0.075 -0.450 -0.061 0.444 0.663 -0.844 -0.153 -0.058 0.339 -0.157 -0.298 0.035 0.319 -0.128 -0.190 -0.058 -0.100 -0.607 0.121 0.404 0.537 -0.743 -0.832 0.475 0.423 -0.257 -0.217 -0.055 0.000 0.019 -0.194 0.154 0.102 -0.725 -0.164 0.515 0.706 -0.320 -0.816 -0.000 0.875 -0.614 -0.797 -0.093 0.210 0.257 -0.533 -0.063 0.307 -0.759 -0.448 0.525 0.463 -0.129 -0.406 -0.070 0.669 -0.067 -0.730 -0.230 0.625 0.214 -0.738 -0.517 -0.167 -0.270 -0.091 0.423 0.624 -0.375 -0.380 -0.122 0.470 0.071 -0.756 -0.041 0.301 0.184 -0.282 -0.305 0.099 -0.467 -0.084 0.336 0.601 -0.411 -0.805 0.213 0.273 -0.282 -0.082 0.035 0.190 0.120 -0.225 -0.125 -0.251 -0.599 -0.196 0.702 0.798 -0.690 -0.404 -0.176 0.600 -0.349 -0.450 -0.049 0.353 0.030 -0.268 -0.199 0.307 -0.550 -0.209 0.281 0.453 -0.530 0.120 -0.230 0.769 -0.379 -0.277 -0.512 0.434 -0.227 -0.038 -0.285 -0.288 -0.286 0.272 0.205 0.565 -0.605 -0.069 -0.137 0.612 -0.390 -0.230 -0.225 0.271 -0.279 0.093 -0.147 0.076 -0.726 0.373 0.064 0.500 -0.480 -0.451 0.185 0.362 -0.244 -0.049 -0.146 -0.007 0.060 0.033 -0.092 -0.321 -0.561 0.013 0.598 0.786 -0.828 -0.870 0.221 0.712 -0.468 -0.676 0.018 0.345 -0.051 -0.706 0.203 0.461 -0.904 -0.383 0.403 0.567 -0.677 -0.395 0.179 0.469 -0.119 -0.362 -0.125 0.447 0.044 -0.480 -0.170 -0.091 -0.243 -0.004 0.286 0.605 -0.619 -0.460 0.138 0.555 -0.149 -0.498 -0.119 0.090 0.244 -0.160 -0.225 0.175 -0.657 0.031 0.281 0.603 -0.712 -0.738 0.346 0.363 -0.055 -0.300 -0.090 0.144 0.013 -0.469 0.219 0.011 -0.355 -0.287 0.476 0.556 -0.455 -0.611 0.196 0.585 -0.530 -0.724 0.265 -0.043 -0.093 -0.376 0.402 -0.196 -0.429 -0.288 0.647 0.146 0.261 -0.502 -0.017 0.434 -0.000 -0.492 -0.092 0.029 0.269 -0.453 0.062 -0.787 -0.107 -0.164 0.678 0.409 -0.332 -0.226 0.032 0.546 -0.318 -0.668 0.149 0.166 0.059 -0.343 0.067 -0.599 -0.326 0.007 0.621 0.451 -0.481 -0.997 0.501 0.219 -0.091 -0.289 0.109 -0.177 0.123 -0.298 0.278 -0.355 -0.468 -0.576 0.867 0.638 -0.260 -0.483 -0.163 0.364 0.094 -0.902 0.151 0.018 0.404 -0.539 -0.035 -0.258 -0.138 -0.547 0.651 0.246 0.008 -0.355 0.038 0.300 0.195 -0.715 0.021 0.221 0.301 -0.390 -0.253 -0.675 -0.010 -0.110 0.540 0.551 -0.427 -0.348 0.008 0.260 0.335 -1.232 0.157 0.043 0.441 -0.314 -0.309 -0.381 -0.128 -0.249 0.561 0.525 -0.287 -0.919 0.278 -0.124 0.133 -0.270 0.209 -0.294 0.348 -0.163 0.026 -0.518 -0.245 -0.294 0.716 0.699 -0.494 -0.643 0.037 0.266 -0.354 -0.321 0.280 0.030 0.024 -0.239 0.158 -0.203 -0.543 -0.064 0.574 0.205 -0.155 -0.097 0.020 0.346 0.014 -0.327 -0.118 0.011 0.014 -0.215 0.165 -0.897 -0.049 0.185 0.443 0.514 -0.544 -0.205 0.027 0.326 -0.313 -0.205 0.102 -0.172 0.196 0.036 -0.087 -0.447 -0.521 0.219 0.491 0.355 -0.508 -0.496 0.388 0.107 -0.233 -0.025 0.124 -0.301 0.011 -0.124 0.337 -0.654 -0.505 -0.072 0.772 0.491 -0.436 -0.825 0.368 0.368 -0.260 -0.681 0.323 0.212 0.047 -0.603 0.202 0.158 -0.492 -0.450 0.528 0.365 -0.196 -0.446 0.143 0.337 -0.242 -0.416 0.191 0.231 0.069 -0.376 0.009 -0.545 0.090 -0.118 0.411 0.490 -0.279 -0.496 0.087 0.212 -0.019 -0.536 0.220 -0.136 0.450 -0.230 -0.199 -0.317 -0.298 -0.014 0.478 0.587 -0.598 -0.665 0.271 0.165 -0.178 -0.413 0.315 -0.008 -0.025 -0.106 0.128 -0.416 -0.308 -0.212 0.659 0.687 -0.732 -0.671 0.214 0.296 -0.411 -0.505 0.395 0.133 -0.108 -0.261 0.190 -0.002 -0.520 -0.055 0.424 0.413 -0.329 -0.142 -0.050 0.560 -0.078 -0.475 -0.218 0.428 -0.065 -0.131 -0.347 -0.455 -0.297 0.079 0.485 0.515 -0.735 0.010 -0.054 0.491 -0.400 -0.350 0.073 0.315 -0.105 -0.035 -0.234 -0.200 -0.587 0.214 0.383 0.456 -0.448 -0.641 0.326 0.040 -0.058 -0.204 0.193 0.228 -0.198 0.026 -0.091 -0.301 -0.540 -0.149 0.677 0.624 -0.250 -0.856 0.092 0.630 -0.475 -0.917 0.267 -0.056 0.498 -0.496 -0.126 0.015 -0.556 -0.446 0.655 0.379 -0.232 -0.210 -0.025 0.630 -0.027 -0.565 -0.331 -0.018 0.400 -0.196 -0.286 -0.539 -0.133 0.042 0.455 0.514 -0.501 -0.306 0.080 0.315 0.047 -0.685 0.139 0.013 0.393 -0.325 -0.185 -0.195 -0.470 0.084 0.427 0.656 -0.472 -0.649 0.091 0.097 -0.008 -0.344 0.200 -0.216 0.388 -0.175 -0.083 -0.139 -0.495 -0.392 0.696 0.892 -0.893 -0.674 -0.030 0.442 -0.410 -0.527 0.257 0.008 0.075 0.061 -0.155 -0.185 -0.526 0.024 0.495 0.487 -0.578 -0.039 -0.066 0.908 -0.515 -0.568 -0.416 0.278 -0.286 0.160 -0.235 -0.394 -0.391 0.201 0.408 0.787 -1.007 -0.288 -0.062 0.378 -0.452 -0.072 0.026 0.087 -0.097 0.203 -0.231 -0.219 -0.504 0.180 0.382 0.723 -0.941 -0.446 0.130 0.348 -0.484 -0.176 0.173 0.074 -0.289 0.307 -0.165 -0.348 -0.517 -0.138 0.684 0.536 -0.840 -0.188 0.155 0.639 -0.731 -0.462 0.156 0.160 0.024 -0.381 0.135 0.116 -0.525 -0.207 0.439 0.328 -0.451 -0.117 0.126 0.385 -0.309 -0.359 0.147 0.066 0.138 -0.240 0.009 -0.412 -0.307 0.307 0.266 0.397 -0.568 0.156 -0.161 0.345 -0.210 -0.251 0.035 0.005 0.173 0.036 -0.244 -0.369 -0.758 0.627 0.124 0.471 -0.570 -0.500 0.303 0.188 -0.204 -0.160 0.135 -0.083 0.084 -0.196 0.167 -0.288 -0.420 -0.222 0.656 0.505 -0.640 -0.770 0.436 0.351 -0.220 -0.887 0.407 -0.090 0.011 -0.760 0.548 0.005 -0.744 -0.373 0.702 0.357 -0.418 -0.681 0.430 0.479 -0.040 -0.814 0.090 0.311 -0.040 -0.564 0.152 -0.186 -0.258 -0.582 0.693 0.498 -0.705 -0.467 0.323 0.296 -0.127 -0.836 0.375 0.062 -0.066 -0.227 0.197 -0.171 -0.649 -0.468 0.808 0.184 -0.728 -1.004 0.817 0.178 -0.317 -0.492 0.438 -0.160 -0.032 -0.450 0.480 -0.111 -0.786 -0.614 0.880 0.448 -0.435 -0.626 0.320 0.393 -0.281 -0.904 0.411 -0.109 0.309 -0.674 0.272 -0.164 -0.285 -0.636 0.716 0.200 -0.131 -0.438 0.263 0.386 0.156 -0.754 -0.020 0.077 0.145 -0.443 0.142 -0.729 -0.034 -0.123 0.586 0.483 -0.652 -0.351 0.241 0.270 0.070 -1.008 0.319 0.008 0.138 -0.338 0.142 -0.207 -0.259 -0.470 0.657 0.334 -0.462 -0.637 0.454 -0.087 -0.202 -0.467 0.551 -0.223 0.163 -0.287 0.268 -0.361 -0.324 -0.310 0.692 0.673 -0.707 -0.605 0.184 0.444 -0.311 -0.789 0.328 -0.156 -0.042 -0.519 0.519 -0.056 -0.882 -0.107 0.648 0.349 -0.464 -0.150 0.137 0.615 -0.327 -0.432 -0.106 0.152 -0.127 -0.064 0.024 -0.525 -0.193 0.269 0.293 0.611 -0.724 -0.255 0.041 0.387 -0.057 -0.605 0.102 -0.119 0.072 -0.103 0.134 -0.291 -0.343 -0.049 0.513 0.281 -0.488 -0.644 0.518 0.251 -0.227 -0.359 0.234 -0.447 -0.089 -0.318 0.608 -0.554 -0.699 -0.021 0.781 0.612 -0.767 -0.730 0.358 0.437 -0.368 -0.651 0.304 -0.044 0.100 -0.551 0.351 -0.065 -0.668 -0.397 0.727 0.412 -0.512 -0.327 0.228 0.379 -0.032 -0.511 0.028 0.187 0.019 -0.348 0.087 -0.292 -0.293 -0.185 0.573 0.519 -0.518 -0.462 0.193 0.393 0.004 -0.805 0.153 -0.290 0.424 -0.229 -0.019 -0.302 -0.574 -0.132 0.682 0.469 -0.697 -0.842 0.527 0.123 0.006 -0.331 0.152 -0.257 0.092 -0.290 0.355 -0.253 -0.269 -0.381 0.644 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 2 1 4 0 0.000 0.787 -0.229 -0.399 -0.592 0.533 -0.095 -0.185 -0.439 0.272 0.226 -0.204 -0.406 0.141 -0.331 -0.241 0.329 N-11 LUT 2 1 4 0 0.000 0.762 -0.904 0.020 -0.404 0.729 -0.175 -0.271 -0.670 0.404 0.056 -0.131 -0.465 0.300 -0.215 -0.630 0.335 N-10 LUT 2 1 4 0 0.000 0.551 -0.573 0.073 -0.303 0.403 0.541 -0.164 -1.597 0.393 0.488 -0.896 -0.422 -0.234 0.181 -0.596 0.438 N-9 LUT 2 1 4 0 0.000 0.633 -0.570 -0.060 -0.293 0.691 -0.517 0.051 -0.620 0.566 -0.034 -0.404 -0.345 0.034 0.122 -0.265 0.079 N-8 LUT 2 1 4 0 0.000 0.038 0.272 -0.402 0.013 0.404 0.259 -0.741 -0.181 0.330 0.778 -0.544 -1.544 0.122 0.244 -0.878 0.244 N-7 LUT 2 1 4 0 0.000 0.340 0.056 -0.008 -0.513 0.471 0.200 -0.800 -0.166 0.135 1.000 -1.672 -0.766 -0.055 -0.101 -0.148 0.267 N-6 LUT 2 1 4 0 0.000 0.268 -0.254 0.415 -0.681 0.670 -0.585 0.015 -0.452 0.293 0.206 -0.094 -0.546 -0.033 -0.863 0.426 0.176 N-5 LUT 2 1 4 0 0.000 0.385 -0.329 -0.091 -0.060 0.222 -0.152 0.093 -0.206 -0.058 0.783 -1.024 -0.274 -0.503 0.234 -0.503 0.497 N-4 LUT 2 1 4 0 0.000 0.582 0.558 -1.179 -0.764 0.407 0.590 -0.569 -1.016 -0.275 1.190 -0.919 -1.459 -0.493 0.881 -0.724 -0.248 N-3 LUT 2 1 4 0 0.000 1.315 -1.426 -0.069 -2.426 1.484 -3.055 -0.033 -3.248 1.257 -0.984 -0.355 -1.636 0.951 -1.016 0.168 -1.154 N-2 LUT 2 1 4 0 0.000 1.114 -0.410 -0.819 -0.956 0.564 0.284 -1.202 -0.202 0.813 0.038 -0.750 -0.686 -1.000 0.459 -0.678 0.585 N-1 LUT 2 1 4 0 0.000 0.909 -0.482 0.250 -2.209 0.585 0.613 -0.840 -1.280 0.201 0.364 0.081 -0.984 0.131 0.716 -1.110 -0.322 A LUT 2 1 4 0 0.000 1.982 -5.913 -5.913 -5.913 1.975 -5.426 -5.426 -5.426 1.969 -5.140 -5.140 -5.140 1.926 -3.907 -3.907 -3.907 T LUT 2 1 4 0 0.000 -7.234 -7.234 -7.234 1.993 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.234 -7.234 1.993 -7.234 E+1 LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.024 -0.664 0.587 -0.234 0.000 0.000 0.000 0.000 E+2 LUT 2 1 4 0 0.000 0.522 0.269 0.000 -1.478 0.339 0.430 -0.807 -0.293 0.248 0.805 -0.752 -1.084 -1.574 1.252 -1.711 -0.033 E+3 LUT 2 1 4 0 0.000 -0.090 0.269 -0.127 -0.090 -0.882 0.481 0.364 -0.367 -0.600 0.758 -1.015 0.207 -0.954 -0.147 0.505 0.216 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.297 -0.398 0.133 -0.127 0.393 -0.246 -0.353 0.084 -0.703 0.254 0.225 0.034 0.297 -0.309 0.117 -0.185 0.532 -0.444 -0.647 0.240 -0.309 0.532 -0.166 -0.225 -6.375 -6.375 -6.375 1.987 1.987 -6.375 -6.375 -6.375 1.987 -6.375 -6.375 -6.375 TAG WMM 9 6 4 0 0.000 0.373 -0.364 0.239 -0.419 0.581 -0.475 -0.075 -0.261 -1.075 0.451 0.166 0.051 0.340 -0.391 0.436 -0.693 0.892 -0.871 -0.727 -0.010 -0.475 0.436 0.051 -0.165 -6.119 -6.119 -6.119 1.984 1.984 -6.119 -6.119 -6.119 -6.119 -6.119 1.984 -6.119 TGA WMM 9 6 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/minimal.hmm0000644000175000017500000002574211424066010015510 0ustar moellermoellerzoeHMM minimal.hmm 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.977636 Inter Esngl 0.022364 Intron Eterm 0.160251 Intron Exon 0.839749 0.488562 0.297386 0.214052 0.594784 0.189567 0.215649 0.557522 0.222503 0.219975 0.582938 0.194313 0.222749 0.816676 0.183324 0.862282 0.137718 0.861538 0.138462 Einit 2 DEFINED 0 249 -9.508 -9.398 -9.295 -9.200 -9.110 -9.026 -8.946 -8.870 -8.799 -8.730 -8.665 -8.609 -8.556 -8.504 -8.454 -8.406 -8.359 -8.314 -8.270 -8.227 -8.186 -8.141 -8.097 -8.055 -8.014 -7.974 -7.934 -7.897 -7.859 -7.823 -7.788 -7.759 -7.730 -7.702 -7.674 -7.647 -7.621 -7.594 -7.569 -7.544 -7.519 -7.493 -7.468 -7.444 -7.420 -7.396 -7.373 -7.350 -7.327 -7.305 -7.283 -7.266 -7.249 -7.232 -7.215 -7.199 -7.183 -7.167 -7.151 -7.135 -7.120 -7.125 -7.130 -7.134 -7.139 -7.144 -7.149 -7.154 -7.159 -7.164 -7.169 -7.183 -7.196 -7.210 -7.224 -7.238 -7.252 -7.266 -7.281 -7.295 -7.310 -7.321 -7.333 -7.344 -7.355 -7.367 -7.378 -7.390 -7.402 -7.414 -7.426 -7.441 -7.456 -7.471 -7.487 -7.503 -7.519 -7.535 -7.551 -7.568 -7.584 -7.590 -7.596 -7.601 -7.607 -7.613 -7.618 -7.624 -7.630 -7.636 -7.641 -7.655 -7.670 -7.684 -7.698 -7.713 -7.728 -7.743 -7.758 -7.773 -7.788 -7.804 -7.819 -7.835 -7.851 -7.868 -7.884 -7.901 -7.917 -7.934 -7.952 -7.972 -7.993 -8.014 -8.035 -8.056 -8.078 -8.101 -8.123 -8.146 -8.169 -8.186 -8.203 -8.221 -8.238 -8.256 -8.274 -8.292 -8.310 -8.329 -8.348 -8.376 -8.406 -8.436 -8.466 -8.498 -8.529 -8.562 -8.596 -8.630 -8.665 -8.677 -8.689 -8.701 -8.713 -8.725 -8.738 -8.750 -8.763 -8.775 -8.788 -8.806 -8.825 -8.843 -8.862 -8.881 -8.901 -8.920 -8.940 -8.960 -8.981 -8.990 -8.999 -9.008 -9.017 -9.026 -9.035 -9.044 -9.053 -9.063 -9.072 -9.078 -9.085 -9.091 -9.097 -9.104 -9.110 -9.117 -9.123 -9.130 -9.136 -9.173 -9.210 -9.249 -9.288 -9.329 -9.371 -9.414 -9.458 -9.504 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.551 -9.573 -9.596 -9.618 -9.641 -9.665 -9.689 -9.713 -9.738 -9.763 -9.788 -9.793 -9.799 -9.804 -9.809 -9.814 -9.819 -9.825 -9.830 -9.835 -9.841 -9.846 -9.851 -9.857 -9.862 -9.868 -9.873 -9.879 -9.884 -9.890 GEOMETRIC 250 -1 127 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -11.438 -11.375 -11.315 -11.257 -11.202 -11.148 -11.097 -11.047 -10.999 -10.953 -10.907 -10.875 -10.842 -10.811 -10.780 -10.750 -10.720 -10.691 -10.663 -10.635 -10.608 -10.555 -10.504 -10.454 -10.406 -10.360 -10.315 -10.272 -10.229 -10.188 -10.148 -10.023 -9.907 -9.801 -9.701 -9.608 -9.520 -9.438 -9.360 -9.286 -9.216 -9.148 -9.084 -9.023 -8.964 -8.907 -8.853 -8.801 -8.750 -8.701 -8.654 -8.621 -8.590 -8.559 -8.529 -8.499 -8.470 -8.442 -8.414 -8.387 -8.360 -8.334 -8.308 -8.282 -8.257 -8.233 -8.209 -8.185 -8.162 -8.139 -8.116 -8.091 -8.066 -8.041 -8.017 -7.993 -7.970 -7.947 -7.924 -7.902 -7.880 -7.873 -7.866 -7.860 -7.853 -7.846 -7.840 -7.833 -7.827 -7.820 -7.813 -7.784 -7.755 -7.726 -7.699 -7.671 -7.644 -7.618 -7.592 -7.567 -7.542 -7.532 -7.523 -7.513 -7.504 -7.494 -7.485 -7.476 -7.466 -7.457 -7.448 -7.449 -7.450 -7.451 -7.452 -7.453 -7.454 -7.455 -7.456 -7.457 -7.458 -7.469 -7.481 -7.492 -7.504 -7.515 -7.527 -7.539 -7.550 -7.562 -7.574 -7.596 -7.617 -7.639 -7.661 -7.683 -7.706 -7.729 -7.752 -7.776 -7.801 -7.802 -7.803 -7.804 -7.806 -7.807 -7.808 -7.810 -7.811 -7.812 -7.813 -7.817 -7.821 -7.825 -7.829 -7.833 -7.837 -7.841 -7.845 -7.849 -7.853 -7.862 -7.872 -7.881 -7.891 -7.901 -7.910 -7.920 -7.930 -7.940 -7.950 -7.953 -7.955 -7.958 -7.961 -7.964 -7.967 -7.970 -7.973 -7.976 -7.979 -8.014 -8.050 -8.087 -8.126 -8.165 -8.205 -8.247 -8.290 -8.334 -8.379 -8.418 -8.458 -8.499 -8.542 -8.586 -8.631 -8.677 -8.725 -8.775 -8.827 -8.840 -8.853 -8.866 -8.880 -8.894 -8.907 -8.921 -8.935 -8.950 -8.964 -8.996 -9.029 -9.063 -9.097 -9.132 -9.168 -9.205 -9.243 -9.282 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.330 -9.337 -9.345 -9.352 -9.360 -9.368 -9.375 -9.383 -9.391 -9.398 -9.395 -9.391 -9.387 -9.383 -9.379 -9.375 -9.371 -9.368 -9.364 GEOMETRIC 250 -1 185 Exon 2 DEFINED 0 249 -17.003 -16.155 -15.625 -15.238 -14.933 -14.681 -14.467 -14.281 -14.116 -13.968 -13.833 -13.667 -13.518 -13.383 -13.259 -13.145 -13.040 -12.942 -12.850 -12.763 -12.681 -12.424 -12.206 -12.017 -11.850 -11.700 -11.564 -11.440 -11.325 -11.219 -11.121 -10.933 -10.767 -10.618 -10.483 -10.359 -10.246 -10.140 -10.042 -9.950 -9.864 -9.747 -9.639 -9.538 -9.444 -9.356 -9.273 -9.194 -9.119 -9.049 -8.981 -8.889 -8.803 -8.721 -8.644 -8.571 -8.501 -8.435 -8.371 -8.310 -8.252 -8.206 -8.162 -8.119 -8.078 -8.038 -7.998 -7.960 -7.923 -7.886 -7.851 -7.829 -7.808 -7.786 -7.765 -7.745 -7.724 -7.704 -7.685 -7.665 -7.646 -7.640 -7.635 -7.629 -7.624 -7.619 -7.613 -7.608 -7.602 -7.597 -7.592 -7.586 -7.579 -7.573 -7.567 -7.560 -7.554 -7.548 -7.542 -7.536 -7.530 -7.532 -7.535 -7.537 -7.539 -7.542 -7.544 -7.547 -7.549 -7.552 -7.554 -7.553 -7.553 -7.552 -7.551 -7.550 -7.549 -7.548 -7.548 -7.547 -7.546 -7.549 -7.552 -7.555 -7.558 -7.560 -7.563 -7.566 -7.569 -7.572 -7.575 -7.595 -7.615 -7.635 -7.656 -7.677 -7.698 -7.720 -7.742 -7.764 -7.787 -7.803 -7.819 -7.836 -7.853 -7.870 -7.888 -7.905 -7.923 -7.941 -7.959 -7.977 -7.995 -8.014 -8.033 -8.052 -8.071 -8.091 -8.111 -8.131 -8.152 -8.176 -8.200 -8.225 -8.250 -8.275 -8.302 -8.328 -8.355 -8.383 -8.411 -8.423 -8.436 -8.448 -8.461 -8.474 -8.487 -8.500 -8.513 -8.526 -8.540 -8.553 -8.567 -8.581 -8.595 -8.609 -8.623 -8.637 -8.652 -8.667 -8.681 -8.696 -8.711 -8.727 -8.742 -8.758 -8.774 -8.790 -8.806 -8.822 -8.838 -8.848 -8.857 -8.866 -8.875 -8.884 -8.894 -8.903 -8.913 -8.922 -8.932 -8.943 -8.954 -8.964 -8.975 -8.987 -8.998 -9.009 -9.020 -9.032 -9.043 -9.058 -9.074 -9.089 -9.105 -9.121 -9.137 -9.153 -9.169 -9.186 -9.202 -9.213 -9.225 -9.236 -9.247 -9.259 -9.270 -9.282 -9.293 -9.305 -9.317 -9.324 -9.331 -9.338 -9.345 -9.352 -9.359 -9.367 -9.374 -9.381 GEOMETRIC 250 -1 230 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 304 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.440 -0.800 -1.561 0.790 0.452 -0.664 -1.565 0.734 0.546 -0.660 -1.787 0.694 0.681 -1.267 -1.862 0.771 0.743 -1.716 -1.906 0.811 0.175 -1.667 -2.024 1.208 -2.278 -2.834 -4.043 1.845 -5.146 -4.228 -6.441 1.966 -1.458 -0.723 -1.433 1.411 -2.982 1.737 -7.579 -0.906 1.999 -9.900 -9.900 -9.900 -9.900 -9.900 1.999 -9.900 0.684 -0.753 0.351 -0.929 0.220 -0.506 -0.606 0.560 0.235 -0.166 -0.481 0.281 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 3 2 4 0 0.000 0.379 -0.640 -0.031 0.110 0.457 -0.540 -0.680 0.395 0.648 -0.283 -1.481 0.325 -1.544 -0.140 0.263 0.632 0.737 -0.815 -0.173 -0.189 1.143 -1.640 -0.371 -0.521 0.564 -0.774 -0.859 0.470 -0.995 0.115 -0.292 0.677 0.427 -0.784 -0.317 0.347 0.299 -0.306 -1.001 0.547 1.304 -1.108 -1.874 -0.333 -0.717 -0.115 -0.212 0.682 . 0.818 . 1.162 0.461 -0.566 -0.273 0.164 . 0.219 0.486 0.521 -1.036 0.459 0.087 0.105 frame2 LUT 3 2 4 0 0.000 0.259 -0.386 0.370 -0.423 0.487 -0.960 0.318 -0.255 0.474 -0.032 -0.057 -0.576 -0.282 -0.071 0.514 -0.326 0.462 -0.358 -0.029 -0.215 0.488 -0.850 0.541 -0.766 0.543 -0.790 0.187 -0.275 -0.761 0.125 0.694 -0.512 0.508 -0.595 0.194 -0.373 0.406 -0.334 0.021 -0.205 0.515 -0.055 -0.122 -0.535 -0.505 -0.072 0.732 -0.550 0.176 -0.178 -0.133 0.104 0.509 -0.599 0.208 -0.393 0.496 -0.478 0.265 -0.577 -0.694 0.197 0.560 -0.393 frame2 LUT 3 2 4 0 0.000 0.535 -0.308 -0.915 0.278 0.336 -0.007 -0.556 0.087 0.665 -0.112 -0.753 -0.160 -0.844 0.367 -0.664 0.606 0.726 -0.195 -0.919 -0.084 0.329 -0.192 -0.150 -0.048 0.781 -0.468 -0.212 -0.525 -0.194 0.282 -0.631 0.338 0.819 -0.554 -0.870 0.011 0.392 -0.094 -1.027 0.333 0.917 -0.073 -0.982 -0.610 -0.646 0.084 -0.512 0.678 0.315 -0.237 -1.067 0.516 0.326 -0.006 -0.515 0.072 0.540 -0.255 -0.159 -0.300 -0.826 0.381 -0.700 0.602 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.642 -0.079 -0.387 -0.458 1.179 -0.792 -1.242 -0.443 -0.391 -2.106 1.305 -0.903 -9.900 -9.900 1.999 -9.900 -9.900 -9.900 -9.900 1.999 1.187 -4.093 -0.012 -0.572 1.405 -1.657 -1.491 -0.558 -1.393 -2.561 1.584 -1.149 -0.325 -1.357 -1.615 1.313 NN TRM 0 0 0 0 0.000 Inter LUT 3 2 4 0 0.000 0.869 -0.885 -1.237 0.272 0.479 -0.437 -0.700 0.324 0.527 -0.486 -0.767 0.331 -0.141 -0.548 -0.825 0.884 0.550 -0.374 -0.699 0.199 0.326 -0.056 -0.533 0.129 0.336 -0.215 -0.465 0.204 -0.347 0.076 -0.529 0.552 0.779 -0.800 -0.579 0.057 0.335 -0.180 -0.497 0.198 0.339 -0.196 -0.450 0.176 -0.203 -0.470 -0.330 0.690 0.440 -0.610 -0.804 0.501 0.336 -0.345 -0.791 0.457 0.356 -0.406 -0.731 0.447 -0.660 -0.304 -0.758 0.975 Intron LUT 3 2 4 0 0.000 1.060 -1.253 -1.395 0.158 0.536 -0.477 -0.790 0.325 0.401 -0.513 -0.548 0.373 -0.121 -0.842 -0.836 0.973 0.740 -0.711 -0.395 -0.061 0.458 -0.315 -0.246 -0.031 0.465 -0.429 -0.153 -0.033 0.019 -0.349 -0.309 0.480 0.927 -1.032 -0.547 -0.112 0.402 -0.126 -0.565 0.120 0.280 -0.223 -0.448 0.259 0.036 -0.762 -0.295 0.651 0.611 -0.775 -0.573 0.282 0.528 -0.449 -0.537 0.184 0.501 -0.485 -0.504 0.220 -0.591 -0.542 -0.755 1.041 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.078 -0.178 -0.583 0.478 0.138 -0.168 -0.464 0.361 0.410 0.227 -0.378 -0.451 1.203 -0.821 -0.253 -1.773 0.998 -0.477 -0.477 -0.821 1.016 -0.624 -0.275 -0.993 1.993 -7.297 -7.297 -7.297 -7.297 -7.297 -7.297 1.993 -7.297 -7.297 1.993 -7.297 0.296 -0.529 0.281 -0.209 0.025 0.561 -0.343 -0.477 -0.137 -0.147 -0.030 0.273 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.419 -0.042 -0.025 -0.497 0.571 -0.385 -0.451 0.025 0.072 -0.042 -0.222 0.163 -0.111 -0.301 0.419 -0.111 0.768 -0.723 -1.322 0.369 0.317 -0.042 -1.059 0.382 -6.451 -6.451 -6.451 1.988 1.988 -6.451 -6.451 -6.451 1.988 -6.451 -6.451 -6.451 TAG WMM 9 6 4 0 0.000 0.481 0.033 -0.311 -0.367 0.512 -0.488 -0.204 -0.011 0.159 -0.204 -0.311 0.274 -0.011 -0.426 -0.057 0.381 0.603 -0.488 -1.552 0.512 -0.153 -0.204 0.159 0.159 -5.011 -5.011 -5.011 1.966 1.966 -5.011 -5.011 -5.011 -5.011 -5.011 1.966 -5.011 TGA WMM 9 6 4 0 0.000 0.388 -0.313 -0.143 -0.027 0.360 -0.143 -0.225 -0.065 0.009 -0.268 -0.225 0.388 0.272 -0.669 -0.065 0.272 0.494 -0.612 -0.728 0.415 -0.506 -0.225 -0.065 0.570 -5.313 -5.313 -5.313 1.973 -5.313 -5.313 1.973 -5.313 1.973 -5.313 -5.313 -5.313 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam46-ro.hmm0000644000175000017500000023367711424066010015434 0ustar moellermoellerzoeHMM mammal 8 16 8 8 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Repeat 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.857945 Inter Esngl 0.142055 Inter ORF 1 Inter Repeat 1 Intron Eterm 0.150792 Intron Exon 0.849208 Intron ORF 1 Intron Repeat 1 ORF Inter 1 ORF Intron 1 Repeat Inter 1 Repeat Intron 1 0.406787 0.387572 0.205642 0.575090 0.234724 0.190186 0.532648 0.274575 0.192777 0.563693 0.232238 0.204069 0.856370 0.143630 0.836030 0.163970 0.853164 0.146836 Einit 2 DEFINED 0 249 -9.594 -9.460 -9.338 -9.226 -9.121 -9.024 -8.933 -8.847 -8.766 -8.689 -8.616 -8.563 -8.513 -8.463 -8.416 -8.370 -8.325 -8.282 -8.240 -8.199 -8.159 -8.113 -8.068 -8.024 -7.982 -7.941 -7.901 -7.862 -7.824 -7.787 -7.751 -7.723 -7.696 -7.669 -7.642 -7.616 -7.591 -7.566 -7.541 -7.517 -7.493 -7.480 -7.467 -7.455 -7.442 -7.430 -7.418 -7.406 -7.393 -7.381 -7.370 -7.358 -7.347 -7.335 -7.324 -7.313 -7.302 -7.291 -7.280 -7.269 -7.258 -7.260 -7.261 -7.263 -7.264 -7.266 -7.268 -7.269 -7.271 -7.272 -7.274 -7.281 -7.288 -7.295 -7.302 -7.309 -7.317 -7.324 -7.331 -7.338 -7.346 -7.358 -7.370 -7.382 -7.395 -7.407 -7.420 -7.433 -7.446 -7.459 -7.472 -7.481 -7.491 -7.500 -7.510 -7.519 -7.529 -7.539 -7.549 -7.559 -7.568 -7.576 -7.584 -7.592 -7.600 -7.608 -7.616 -7.624 -7.632 -7.640 -7.648 -7.664 -7.681 -7.697 -7.714 -7.731 -7.748 -7.765 -7.783 -7.801 -7.819 -7.834 -7.850 -7.866 -7.882 -7.898 -7.915 -7.931 -7.948 -7.965 -7.983 -8.011 -8.039 -8.068 -8.098 -8.128 -8.159 -8.191 -8.223 -8.256 -8.290 -8.311 -8.332 -8.354 -8.376 -8.399 -8.422 -8.445 -8.468 -8.492 -8.517 -8.538 -8.560 -8.582 -8.605 -8.628 -8.651 -8.675 -8.699 -8.723 -8.748 -8.765 -8.782 -8.800 -8.818 -8.835 -8.853 -8.872 -8.890 -8.909 -8.928 -8.938 -8.948 -8.958 -8.969 -8.979 -8.989 -9.000 -9.010 -9.021 -9.031 -9.058 -9.084 -9.111 -9.139 -9.167 -9.196 -9.226 -9.256 -9.286 -9.317 -9.328 -9.338 -9.349 -9.359 -9.370 -9.380 -9.391 -9.402 -9.413 -9.424 -9.443 -9.462 -9.482 -9.502 -9.522 -9.543 -9.563 -9.585 -9.606 -9.628 -9.632 -9.637 -9.642 -9.646 -9.651 -9.656 -9.661 -9.665 -9.670 -9.675 -9.699 -9.723 -9.748 -9.773 -9.799 -9.825 -9.852 -9.879 -9.907 -9.935 -9.957 -9.979 -10.001 -10.024 -10.047 -10.070 -10.094 -10.118 -10.142 -10.167 -10.179 -10.191 -10.203 -10.215 -10.227 -10.240 -10.252 -10.264 -10.277 GEOMETRIC 250 -1 151 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.522 -10.382 -10.255 -10.138 -10.030 -9.930 -9.836 -9.747 -9.664 -9.586 -9.511 -9.444 -9.380 -9.319 -9.260 -9.204 -9.150 -9.097 -9.047 -8.998 -8.951 -8.915 -8.880 -8.846 -8.812 -8.779 -8.747 -8.716 -8.686 -8.656 -8.626 -8.595 -8.565 -8.535 -8.506 -8.477 -8.449 -8.422 -8.395 -8.368 -8.342 -8.331 -8.320 -8.309 -8.298 -8.287 -8.276 -8.266 -8.255 -8.245 -8.234 -8.200 -8.166 -8.133 -8.101 -8.070 -8.039 -8.009 -7.980 -7.951 -7.923 -7.902 -7.882 -7.862 -7.842 -7.823 -7.804 -7.785 -7.766 -7.748 -7.730 -7.720 -7.710 -7.700 -7.691 -7.681 -7.672 -7.663 -7.653 -7.644 -7.635 -7.624 -7.614 -7.604 -7.594 -7.584 -7.574 -7.564 -7.554 -7.545 -7.535 -7.545 -7.555 -7.565 -7.575 -7.585 -7.596 -7.606 -7.616 -7.627 -7.638 -7.644 -7.650 -7.656 -7.662 -7.668 -7.674 -7.680 -7.687 -7.693 -7.699 -7.704 -7.709 -7.714 -7.719 -7.723 -7.728 -7.733 -7.738 -7.743 -7.748 -7.752 -7.756 -7.759 -7.763 -7.767 -7.771 -7.774 -7.778 -7.782 -7.786 -7.793 -7.801 -7.808 -7.815 -7.823 -7.830 -7.838 -7.846 -7.853 -7.861 -7.871 -7.881 -7.891 -7.902 -7.912 -7.923 -7.933 -7.944 -7.955 -7.965 -7.974 -7.983 -7.993 -8.002 -8.011 -8.020 -8.030 -8.039 -8.049 -8.058 -8.068 -8.078 -8.088 -8.097 -8.107 -8.117 -8.127 -8.137 -8.148 -8.158 -8.171 -8.184 -8.197 -8.210 -8.223 -8.237 -8.250 -8.264 -8.278 -8.292 -8.305 -8.319 -8.333 -8.347 -8.361 -8.376 -8.390 -8.405 -8.419 -8.434 -8.462 -8.490 -8.519 -8.548 -8.578 -8.609 -8.640 -8.673 -8.705 -8.739 -8.769 -8.800 -8.832 -8.865 -8.898 -8.932 -8.967 -9.003 -9.040 -9.078 -9.098 -9.119 -9.140 -9.161 -9.183 -9.205 -9.227 -9.250 -9.273 -9.296 -9.326 -9.356 -9.386 -9.417 -9.449 -9.482 -9.515 -9.550 -9.585 -9.620 -9.636 -9.653 -9.669 -9.686 -9.702 -9.719 -9.736 -9.754 -9.771 -9.789 -9.815 -9.841 -9.868 -9.895 -9.923 -9.951 -9.980 -10.009 -10.039 GEOMETRIC 250 -1 205 Exon 2 DEFINED 0 249 -12.731 -12.475 -12.258 -12.069 -11.902 -11.753 -11.617 -11.493 -11.379 -11.274 -11.175 -10.985 -10.818 -10.668 -10.532 -10.407 -10.293 -10.187 -10.088 -9.996 -9.909 -9.786 -9.672 -9.567 -9.469 -9.377 -9.291 -9.209 -9.132 -9.059 -8.990 -8.905 -8.825 -8.750 -8.678 -8.610 -8.544 -8.482 -8.422 -8.364 -8.309 -8.249 -8.192 -8.137 -8.083 -8.032 -7.983 -7.935 -7.888 -7.843 -7.800 -7.758 -7.717 -7.678 -7.639 -7.601 -7.565 -7.529 -7.494 -7.460 -7.427 -7.399 -7.372 -7.345 -7.318 -7.293 -7.267 -7.242 -7.218 -7.193 -7.170 -7.153 -7.137 -7.121 -7.105 -7.089 -7.073 -7.058 -7.042 -7.027 -7.012 -7.006 -7.000 -6.994 -6.989 -6.983 -6.977 -6.971 -6.965 -6.960 -6.954 -6.954 -6.953 -6.953 -6.953 -6.952 -6.952 -6.952 -6.951 -6.951 -6.950 -6.959 -6.968 -6.977 -6.985 -6.994 -7.003 -7.012 -7.021 -7.030 -7.040 -7.052 -7.065 -7.078 -7.091 -7.104 -7.117 -7.130 -7.144 -7.157 -7.171 -7.184 -7.198 -7.212 -7.226 -7.240 -7.254 -7.268 -7.283 -7.297 -7.312 -7.330 -7.348 -7.366 -7.384 -7.403 -7.422 -7.441 -7.460 -7.480 -7.500 -7.518 -7.537 -7.556 -7.575 -7.595 -7.615 -7.635 -7.655 -7.676 -7.697 -7.719 -7.741 -7.763 -7.785 -7.808 -7.832 -7.856 -7.880 -7.904 -7.929 -7.956 -7.983 -8.010 -8.038 -8.067 -8.096 -8.126 -8.156 -8.187 -8.219 -8.247 -8.277 -8.307 -8.337 -8.368 -8.400 -8.433 -8.466 -8.500 -8.535 -8.567 -8.599 -8.632 -8.665 -8.700 -8.735 -8.771 -8.808 -8.846 -8.886 -8.919 -8.954 -8.989 -9.026 -9.063 -9.101 -9.140 -9.181 -9.222 -9.265 -9.301 -9.339 -9.377 -9.416 -9.457 -9.498 -9.541 -9.585 -9.631 -9.678 -9.715 -9.754 -9.793 -9.834 -9.876 -9.919 -9.964 -10.009 -10.057 -10.106 -10.145 -10.186 -10.228 -10.271 -10.315 -10.360 -10.408 -10.456 -10.507 -10.559 -10.593 -10.627 -10.662 -10.698 -10.735 -10.773 -10.812 -10.852 -10.894 -10.936 -10.949 -10.962 -10.976 -10.989 -11.003 -11.016 -11.030 -11.044 -11.058 GEOMETRIC 250 -1 121 Inter 1 GEOMETRIC 0 -1 5000 Intron 1 GEOMETRIC 0 -1 1373 ORF 2 DEFINED 0 249 -12.731 -12.475 -12.258 -12.069 -11.902 -11.753 -11.617 -11.493 -11.379 -11.274 -11.175 -10.985 -10.818 -10.668 -10.532 -10.407 -10.293 -10.187 -10.088 -9.996 -9.909 -9.786 -9.672 -9.567 -9.469 -9.377 -9.291 -9.209 -9.132 -9.059 -8.990 -8.905 -8.825 -8.750 -8.678 -8.610 -8.544 -8.482 -8.422 -8.364 -8.309 -8.249 -8.192 -8.137 -8.083 -8.032 -7.983 -7.935 -7.888 -7.843 -7.800 -7.758 -7.717 -7.678 -7.639 -7.601 -7.565 -7.529 -7.494 -7.460 -7.427 -7.399 -7.372 -7.345 -7.318 -7.293 -7.267 -7.242 -7.218 -7.193 -7.170 -7.153 -7.137 -7.121 -7.105 -7.089 -7.073 -7.058 -7.042 -7.027 -7.012 -7.006 -7.000 -6.994 -6.989 -6.983 -6.977 -6.971 -6.965 -6.960 -6.954 -6.954 -6.953 -6.953 -6.953 -6.952 -6.952 -6.952 -6.951 -6.951 -6.950 -6.959 -6.968 -6.977 -6.985 -6.994 -7.003 -7.012 -7.021 -7.030 -7.040 -7.052 -7.065 -7.078 -7.091 -7.104 -7.117 -7.130 -7.144 -7.157 -7.171 -7.184 -7.198 -7.212 -7.226 -7.240 -7.254 -7.268 -7.283 -7.297 -7.312 -7.330 -7.348 -7.366 -7.384 -7.403 -7.422 -7.441 -7.460 -7.480 -7.500 -7.518 -7.537 -7.556 -7.575 -7.595 -7.615 -7.635 -7.655 -7.676 -7.697 -7.719 -7.741 -7.763 -7.785 -7.808 -7.832 -7.856 -7.880 -7.904 -7.929 -7.956 -7.983 -8.010 -8.038 -8.067 -8.096 -8.126 -8.156 -8.187 -8.219 -8.247 -8.277 -8.307 -8.337 -8.368 -8.400 -8.433 -8.466 -8.500 -8.535 -8.567 -8.599 -8.632 -8.665 -8.700 -8.735 -8.771 -8.808 -8.846 -8.886 -8.919 -8.954 -8.989 -9.026 -9.063 -9.101 -9.140 -9.181 -9.222 -9.265 -9.301 -9.339 -9.377 -9.416 -9.457 -9.498 -9.541 -9.585 -9.631 -9.678 -9.715 -9.754 -9.793 -9.834 -9.876 -9.919 -9.964 -10.009 -10.057 -10.106 -10.145 -10.186 -10.228 -10.271 -10.315 -10.360 -10.408 -10.456 -10.507 -10.559 -10.593 -10.627 -10.662 -10.698 -10.735 -10.773 -10.812 -10.852 -10.894 -10.936 -10.949 -10.962 -10.976 -10.989 -11.003 -11.016 -11.030 -11.044 -11.058 GEOMETRIC 250 -1 121 Repeat 1 CONSTANT 0 -1 0 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.350 -0.308 -0.034 -0.088 0.368 0.218 -1.914 0.357 -0.008 -0.126 0.106 0.019 -0.361 -0.463 0.322 0.317 -0.216 -0.143 0.331 -0.036 0.075 0.246 -2.257 0.634 -0.858 0.025 0.292 0.271 -0.745 0.035 0.324 0.172 0.162 -0.380 0.300 -0.182 -0.015 0.439 -1.932 0.477 0.077 -0.116 0.159 -0.143 -0.752 0.064 0.341 0.130 0.172 -0.230 -0.080 0.104 0.026 0.249 -2.751 0.718 -0.163 -0.236 0.161 0.189 -0.563 0.069 -0.186 0.480 I-36 LUT 3 2 4 0 0.000 0.245 -0.384 0.171 -0.116 0.462 -0.064 -1.746 0.452 0.040 -0.015 0.061 -0.090 -0.420 -0.265 0.259 0.291 -0.443 -0.021 0.425 -0.095 0.151 0.307 -2.095 0.504 -0.329 0.060 0.233 -0.021 -0.844 -0.046 0.465 0.130 0.226 -0.129 0.186 -0.362 -0.058 0.425 -2.500 0.604 0.126 0.048 0.048 -0.250 -0.488 -0.163 0.345 0.167 0.178 -0.207 -0.103 0.099 0.030 0.276 -2.297 0.646 -0.165 -0.179 0.038 0.261 -0.731 0.017 -0.115 0.548 I-35 LUT 3 2 4 0 0.000 0.161 -0.286 0.075 0.012 0.303 0.251 -1.697 0.342 0.034 -0.019 0.065 -0.085 -0.413 -0.254 0.233 0.305 -0.566 -0.090 0.476 -0.009 0.155 0.251 -2.298 0.579 -0.498 -0.120 0.288 0.202 -0.774 -0.041 0.408 0.158 -0.031 -0.057 0.331 -0.319 0.094 0.355 -2.013 0.491 0.161 0.043 0.083 -0.336 -0.515 -0.019 0.260 0.158 0.383 -0.121 -0.322 -0.034 0.153 0.241 -2.903 0.653 -0.082 -0.260 -0.003 0.289 -0.712 -0.073 0.013 0.516 I-34 LUT 3 2 4 0 0.000 0.392 -0.358 -0.138 -0.002 0.167 0.131 -1.985 0.613 -0.023 -0.045 0.077 -0.012 -0.291 -0.307 0.206 0.288 -0.404 -0.120 0.337 0.085 0.202 0.109 -1.782 0.566 -0.245 -0.013 0.209 0.013 -0.849 0.006 0.412 0.151 0.197 -0.066 0.136 -0.323 0.022 0.201 -2.139 0.686 -0.026 -0.120 0.152 -0.020 -0.483 -0.191 0.378 0.149 0.504 -0.449 -0.240 0.004 0.043 0.221 -2.304 0.680 -0.005 -0.185 -0.082 0.238 -0.680 0.078 -0.112 0.480 I-33 LUT 3 2 4 0 0.000 0.331 -0.222 -0.106 -0.065 0.384 0.100 -2.163 0.485 0.089 -0.043 -0.073 0.022 -0.162 -0.227 0.166 0.177 -0.468 -0.077 0.275 0.162 0.189 0.144 -1.888 0.570 -0.534 -0.260 0.307 0.307 -0.995 0.066 0.426 0.148 0.055 -0.067 0.289 -0.350 -0.036 0.332 -2.297 0.644 0.057 0.086 -0.066 -0.085 -0.623 -0.093 0.312 0.229 0.411 -0.369 -0.259 0.084 0.063 0.019 -2.489 0.819 0.019 -0.236 0.002 0.184 -0.613 -0.032 -0.146 0.550 I-32 LUT 3 2 4 0 0.000 0.116 -0.102 -0.054 0.031 0.339 0.101 -2.416 0.561 -0.001 -0.107 -0.019 0.118 -0.426 -0.394 0.212 0.418 -0.494 0.035 0.290 0.061 0.084 0.176 -2.020 0.645 -0.585 0.078 -0.082 0.415 -0.981 0.139 0.342 0.170 0.036 -0.008 0.121 -0.164 -0.019 0.218 -2.391 0.730 -0.025 0.132 -0.099 -0.018 -0.558 -0.114 0.397 0.111 0.479 -0.470 -0.450 0.205 0.177 0.190 -3.049 0.685 0.211 -0.245 -0.304 0.249 -0.481 -0.024 -0.250 0.545 I-31 LUT 3 2 4 0 0.000 0.280 -0.185 -0.205 0.055 0.293 0.142 -2.368 0.563 -0.019 -0.044 -0.212 0.239 -0.299 -0.412 0.303 0.265 -0.575 0.074 0.216 0.156 -0.031 0.138 -2.348 0.787 -0.516 -0.194 0.069 0.462 -0.737 0.023 0.308 0.197 0.197 0.065 -0.061 -0.235 0.002 0.413 -2.182 0.533 0.057 0.029 -0.113 0.022 -0.531 -0.122 0.342 0.165 0.480 -0.301 -0.562 0.158 0.030 0.090 -2.865 0.830 0.161 -0.355 -0.195 0.295 -0.395 -0.073 -0.141 0.467 I-30 LUT 3 2 4 0 0.000 0.152 -0.132 -0.202 0.147 0.415 -0.014 -2.184 0.543 -0.028 0.011 -0.145 0.146 -0.479 -0.495 0.310 0.415 -0.443 0.164 0.115 0.085 0.128 0.156 -2.284 0.667 -1.072 0.023 0.276 0.376 -0.869 0.111 0.396 0.079 -0.054 -0.013 0.000 0.065 0.017 0.312 -2.598 0.662 -0.221 0.115 0.057 0.027 -0.678 -0.121 0.369 0.220 0.611 -0.324 -0.423 -0.108 0.110 0.105 -2.918 0.777 0.150 -0.238 -0.219 0.243 -0.600 0.013 -0.315 0.611 I-29 LUT 3 2 4 0 0.000 0.240 0.037 -0.347 0.010 0.128 0.184 -2.048 0.613 -0.091 0.160 -0.379 0.233 -0.413 -0.267 0.203 0.341 -0.368 -0.001 0.163 0.145 -0.063 0.265 -2.369 0.720 -0.626 0.160 0.071 0.244 -0.872 0.224 0.288 0.091 -0.049 0.072 0.058 -0.087 -0.009 0.192 -1.965 0.685 -0.060 0.024 -0.183 0.193 -0.489 -0.080 0.238 0.217 0.690 -0.254 -0.757 -0.064 0.248 0.082 -3.142 0.714 0.202 -0.361 -0.306 0.336 -0.481 -0.069 -0.263 0.582 I-28 LUT 3 2 4 0 0.000 0.167 -0.127 -0.260 0.172 0.338 0.109 -1.974 0.488 -0.156 -0.040 0.113 0.068 -0.374 -0.374 0.221 0.369 -0.399 0.133 -0.100 0.277 -0.152 0.256 -2.324 0.770 -0.512 -0.076 0.181 0.283 -0.645 0.127 0.225 0.137 0.044 0.050 -0.066 -0.031 -0.191 0.322 -2.217 0.731 -0.045 0.023 -0.028 0.048 -0.410 -0.094 0.165 0.250 0.680 -0.312 -0.801 0.026 0.147 0.064 -2.932 0.779 0.282 -0.416 -0.367 0.333 -0.316 -0.039 -0.426 0.564 I-27 LUT 3 2 4 0 0.000 0.068 -0.023 -0.372 0.257 0.138 0.273 -2.302 0.574 -0.111 0.059 -0.445 0.376 -0.455 -0.143 0.108 0.365 -0.540 0.295 -0.077 0.186 0.070 0.152 -2.464 0.730 -0.286 -0.089 0.029 0.287 -0.861 0.191 0.246 0.166 -0.142 0.312 -0.214 -0.014 -0.232 0.193 -2.615 0.882 -0.051 -0.154 -0.119 0.281 -0.520 -0.011 0.233 0.183 0.838 -0.618 -0.838 0.003 0.263 -0.006 -3.126 0.757 0.261 -0.285 -0.518 0.359 -0.285 -0.101 -0.355 0.551 I-26 LUT 3 2 4 0 0.000 0.163 0.007 -0.426 0.178 0.064 0.123 -1.898 0.676 0.006 0.100 -0.329 0.175 -0.485 -0.222 0.183 0.371 -0.514 0.238 -0.257 0.359 -0.185 0.200 -2.215 0.812 -0.550 0.227 -0.657 0.597 -0.872 0.271 0.162 0.174 -0.276 0.228 -0.057 0.058 -0.408 0.206 -2.787 0.962 -0.361 0.130 -0.277 0.381 -0.456 -0.384 0.269 0.379 0.827 -0.424 -0.888 -0.087 0.167 0.079 -3.202 0.775 0.440 -0.283 -0.598 0.215 -0.317 -0.173 -0.433 0.651 I-25 LUT 3 2 4 0 0.000 0.141 0.218 -0.603 0.106 0.086 -0.046 -1.829 0.756 -0.460 0.238 -0.347 0.388 -0.435 -0.399 0.157 0.472 -0.400 0.131 -0.126 0.299 -0.162 0.097 -2.541 0.899 -0.555 0.200 -0.197 0.376 -0.835 0.156 0.254 0.179 -0.076 0.200 -0.342 0.155 -0.392 0.308 -2.692 0.884 -0.386 0.136 -0.263 0.382 -0.381 -0.187 0.201 0.269 0.897 -0.512 -1.093 -0.047 0.296 -0.034 -3.163 0.752 0.424 -0.410 -0.693 0.364 -0.295 -0.221 -0.463 0.679 I-24 LUT 3 2 4 0 0.000 0.135 -0.101 -0.483 0.326 0.032 0.100 -2.233 0.760 -0.265 0.400 -0.613 0.257 -0.627 -0.260 0.210 0.444 -0.479 0.355 -0.182 0.166 -0.246 0.156 -2.613 0.910 -0.554 0.016 -0.298 0.580 -0.698 0.127 0.206 0.187 -0.442 0.520 -0.519 0.179 -0.292 0.306 -2.816 0.852 -0.184 0.168 -0.500 0.366 -0.681 -0.140 0.349 0.257 0.869 -0.338 -1.131 -0.112 0.329 -0.184 -2.926 0.793 0.543 -0.351 -0.874 0.279 -0.488 -0.058 -0.437 0.667 I-23 LUT 3 2 4 0 0.000 -0.013 0.160 -0.811 0.403 0.038 0.233 -2.103 0.646 -0.108 0.186 -0.551 0.324 -0.447 -0.230 0.116 0.411 -0.640 0.273 -0.295 0.416 -0.175 0.233 -2.366 0.803 -0.482 -0.092 0.245 0.215 -0.813 0.146 0.138 0.291 0.014 0.369 -0.518 0.000 -0.326 0.212 -2.839 0.929 -0.423 0.221 -0.044 0.162 -0.640 0.147 0.235 0.104 0.944 -0.612 -1.311 0.026 0.300 -0.060 -3.060 0.757 0.462 -0.474 -0.699 0.364 -0.566 -0.024 -0.486 0.702 I-22 LUT 3 2 4 0 0.000 0.008 0.141 -0.530 0.262 0.024 0.246 -2.080 0.642 -0.327 0.174 -0.351 0.368 -0.672 -0.168 0.200 0.415 -0.632 0.179 -0.236 0.458 -0.253 0.258 -2.051 0.786 -0.883 -0.008 -0.468 0.799 -1.045 0.167 0.276 0.241 -0.433 0.602 -0.506 0.054 -0.336 0.288 -2.623 0.868 -0.281 0.220 -0.355 0.299 -1.024 0.010 0.212 0.425 0.817 -0.406 -1.397 0.142 0.002 -0.027 -3.719 0.957 0.442 -0.391 -0.927 0.436 -0.710 0.064 -0.591 0.748 I-21 LUT 3 2 4 0 0.000 -0.205 0.289 -0.573 0.308 0.008 0.275 -2.189 0.646 -0.327 0.444 -0.562 0.220 -0.697 -0.093 0.016 0.520 -0.547 0.183 -0.216 0.400 -0.182 0.217 -2.182 0.795 -0.252 -0.008 -0.252 0.407 -1.210 0.250 0.200 0.299 -0.456 0.566 -0.561 0.154 -0.231 0.170 -2.621 0.895 -0.370 0.053 -0.173 0.381 -0.964 -0.023 0.221 0.420 0.717 -0.261 -1.095 0.075 -0.038 0.109 -3.300 0.885 0.221 -0.439 -0.621 0.533 -0.891 -0.018 -0.513 0.826 I-20 LUT 3 2 4 0 0.000 -0.021 0.194 -0.689 0.322 -0.106 0.365 -1.970 0.611 -0.339 0.186 -0.327 0.350 -0.678 -0.221 0.161 0.483 -0.783 0.236 -0.276 0.501 -0.475 0.370 -2.381 0.845 -0.673 -0.072 -0.444 0.754 -1.454 0.169 0.194 0.451 -0.638 0.594 -0.585 0.241 -0.409 0.235 -2.603 0.930 -0.810 0.232 -0.233 0.490 -1.149 0.187 0.094 0.426 0.723 -0.161 -1.608 0.172 -0.308 0.025 -3.289 1.051 0.059 -0.416 -0.729 0.683 -1.106 0.013 -0.572 0.890 I-19 LUT 3 2 4 0 0.000 -0.034 0.219 -0.756 0.342 -0.021 0.312 -1.944 0.598 -0.226 0.497 -0.691 0.155 -0.745 -0.114 0.132 0.469 -0.840 0.272 -0.507 0.614 -0.304 0.324 -2.360 0.802 -0.425 -0.697 -0.269 0.855 -1.609 0.362 0.103 0.393 -0.419 0.305 -0.487 0.383 -0.807 0.303 -2.057 0.967 -0.756 0.018 -0.123 0.562 -1.098 -0.142 0.293 0.487 0.330 -0.199 -1.373 0.571 -0.393 0.107 -3.388 1.047 -0.118 -0.232 -0.902 0.759 -1.381 0.067 -0.493 0.893 I-18 LUT 3 2 4 0 0.000 -0.034 0.189 -0.918 0.438 -0.078 0.211 -1.590 0.644 -0.352 0.266 -0.549 0.412 -0.903 -0.047 0.169 0.458 -0.911 0.322 -0.524 0.607 -0.514 0.305 -2.520 0.918 -1.052 -0.244 -0.210 0.855 -1.918 0.340 0.004 0.553 -0.382 0.533 -0.639 0.194 -0.574 0.342 -2.395 0.903 -0.592 0.230 -0.177 0.355 -1.595 0.123 0.091 0.600 0.240 -0.093 -1.836 0.679 -0.810 0.242 -3.577 1.113 -0.567 -0.197 -0.835 0.920 -1.498 0.067 -0.549 0.937 I-17 LUT 3 2 4 0 0.000 0.140 -0.089 -1.005 0.546 -0.288 0.228 -1.954 0.809 -0.509 0.423 -0.917 0.513 -1.218 -0.080 0.136 0.609 -0.776 0.205 -0.776 0.748 -0.835 0.351 -2.420 0.984 -0.719 -0.533 -0.368 0.946 -1.898 0.310 0.041 0.549 -0.474 0.441 -0.438 0.244 -0.719 0.471 -2.549 0.876 -0.626 0.231 -0.165 0.363 -1.373 0.152 0.094 0.521 0.074 -0.046 -1.945 0.782 -1.073 0.246 -3.007 1.147 -0.946 -0.152 -0.810 1.008 -1.668 0.031 -0.554 0.987 I-16 LUT 3 2 4 0 0.000 -0.168 0.285 -1.290 0.568 -0.644 0.483 -2.243 0.809 -0.284 0.221 -0.595 0.434 -1.032 -0.249 -0.019 0.751 -1.146 0.400 -1.225 0.849 -0.955 0.350 -2.185 0.993 -1.381 0.178 -1.044 1.000 -1.982 0.308 0.023 0.578 -0.494 0.323 -1.012 0.626 -0.483 0.243 -2.943 0.979 -0.348 -0.030 -0.139 0.408 -1.718 0.060 0.217 0.577 0.003 -0.330 -1.852 0.945 -1.128 0.220 -3.666 1.201 -0.954 -0.112 -0.573 0.916 -1.530 0.040 -0.556 0.960 I-15 LUT 3 2 4 0 0.000 0.174 0.148 -2.022 0.602 -0.433 0.393 -2.822 0.852 -0.550 0.048 -0.253 0.530 -1.443 0.063 -0.080 0.715 -0.700 0.276 -1.448 0.853 -1.014 0.350 -2.575 1.044 -1.313 -0.191 -0.494 1.009 -2.456 0.285 0.013 0.670 -0.469 0.263 -1.538 0.794 -1.084 0.329 -2.590 1.075 -0.804 0.310 -0.852 0.708 -1.603 0.246 0.020 0.556 -0.248 -0.094 -2.558 1.036 -1.422 0.346 -3.592 1.184 -1.660 0.058 -0.802 1.049 -1.557 0.149 -0.562 0.906 I-14 LUT 3 2 4 0 0.000 -0.192 0.324 -2.448 0.757 -0.845 0.496 -2.615 0.903 -1.280 0.556 -0.840 0.640 -1.293 -0.023 -0.253 0.823 -0.724 0.259 -2.256 0.992 -1.193 0.416 -2.769 1.058 -2.373 0.312 -0.425 0.864 -2.350 0.375 -0.083 0.644 -0.358 0.373 -1.521 0.657 -1.027 0.276 -2.331 1.070 -1.186 0.077 -0.420 0.814 -1.817 0.088 0.065 0.684 -0.561 -0.103 -3.261 1.193 -1.404 0.174 -3.320 1.259 -1.283 -0.059 -0.933 1.074 -1.857 0.131 -0.590 0.974 I-13 LUT 3 2 4 0 0.000 0.140 0.302 -3.445 0.654 -0.735 0.379 -2.532 0.946 -0.755 0.304 -0.639 0.614 -1.923 -0.053 -0.295 0.969 -1.193 0.392 -2.476 1.050 -1.249 0.441 -2.901 1.062 -1.737 0.138 -1.074 1.087 -2.874 0.334 -0.133 0.758 -0.170 0.163 -2.354 0.844 -1.437 0.219 -3.258 1.240 -1.206 0.074 -0.248 0.741 -1.880 0.106 0.062 0.686 -0.178 -0.043 -4.664 1.075 -1.688 0.085 -3.654 1.350 -1.591 -0.055 -0.952 1.130 -2.105 0.236 -0.685 0.976 I-12 LUT 3 2 4 0 0.000 -0.406 0.269 -3.238 0.951 -0.949 0.280 -2.485 1.063 -1.202 0.383 -1.524 0.936 -1.724 -0.235 -0.387 1.058 -1.381 0.158 -2.637 1.226 -1.228 0.383 -2.924 1.096 -1.541 -0.046 -0.913 1.109 -2.666 0.279 -0.315 0.868 -0.284 0.074 -2.570 0.969 -1.668 0.323 -3.739 1.239 -1.493 0.396 -0.724 0.785 -2.216 0.091 -0.234 0.902 -0.504 -0.139 -5.109 1.237 -1.814 0.186 -3.499 1.316 -1.567 -0.018 -1.106 1.144 -1.861 0.128 -0.725 1.019 I-11 LUT 3 2 4 0 0.000 0.027 0.000 -4.143 0.945 -0.937 0.263 -3.322 1.123 -2.209 0.598 -1.209 0.878 -2.149 0.051 -0.646 1.070 -1.198 0.205 -4.105 1.235 -1.378 0.145 -2.738 1.238 -2.404 -0.234 -0.741 1.240 -3.006 0.278 -0.429 0.941 -0.459 -0.138 -2.652 1.140 -1.976 -0.063 -3.363 1.428 -1.573 -0.059 -0.540 1.011 -2.028 -0.055 -0.651 1.108 -0.490 -0.182 -6.883 1.262 -1.842 0.112 -3.788 1.361 -1.769 -0.024 -1.202 1.194 -2.183 0.144 -0.766 1.061 I-10 LUT 3 2 4 0 0.000 -0.256 0.360 -4.748 0.881 -0.882 0.167 -3.723 1.175 -1.087 -1.087 -1.087 1.372 -1.887 0.120 -0.682 1.014 -1.341 0.547 -4.966 1.079 -1.405 0.287 -2.849 1.178 -2.273 -0.051 -1.158 1.251 -3.014 0.470 -0.582 0.866 -0.928 0.328 -4.098 1.111 -1.948 0.122 -3.048 1.340 -1.361 -0.120 -0.535 1.000 -2.217 0.135 -0.242 0.881 -0.581 0.010 -5.690 1.205 -2.009 0.141 -3.861 1.367 -1.821 -0.212 -1.105 1.256 -1.984 0.144 -0.700 1.019 I-9 LUT 3 2 4 0 0.000 0.059 0.059 -3.401 0.866 -0.736 0.431 -3.464 0.971 0.415 -0.170 -1.170 0.415 -1.606 0.159 -0.469 0.874 -0.594 0.494 -5.401 0.930 -1.222 0.539 -3.118 1.002 -1.241 0.206 -0.700 0.854 -2.584 0.438 -0.325 0.748 -0.608 0.426 -2.678 0.883 -1.574 0.616 -2.873 0.996 -0.941 0.085 -0.841 0.896 -2.040 0.381 -0.161 0.642 -0.450 0.078 -5.877 1.135 -1.803 0.186 -3.928 1.328 -1.653 -0.552 -1.336 1.381 -2.030 0.350 -0.537 0.841 I-8 LUT 3 2 4 0 0.000 -0.336 0.394 -5.693 0.906 -0.722 0.492 -2.907 0.891 0.621 0.621 -1.700 -0.700 -1.502 0.584 -0.987 0.717 -0.596 0.536 -6.683 0.909 -0.758 0.504 -2.888 0.892 -0.751 -0.135 -0.658 0.896 -2.537 0.669 -0.506 0.617 -0.415 0.459 -2.737 0.787 -1.248 0.616 -3.418 0.966 -1.076 0.207 -0.278 0.629 -2.016 0.545 -0.343 0.590 -0.516 0.046 -6.943 1.176 -1.496 0.448 -4.064 1.152 -1.513 -0.137 -1.189 1.203 -1.651 0.485 -0.779 0.765 I-7 LUT 3 2 4 0 0.000 0.163 0.231 -4.229 0.725 -0.490 0.636 -3.055 0.691 0.415 -0.170 -1.170 0.415 -1.295 0.083 -0.858 0.986 -0.792 0.580 -5.529 0.931 -0.785 0.556 -3.364 0.889 -1.335 -0.151 -0.794 1.088 -2.187 0.580 -0.522 0.668 -0.410 0.268 -3.539 0.969 -1.157 0.792 -2.830 0.748 -0.838 0.267 -0.359 0.544 -1.645 0.360 -0.202 0.611 -0.115 0.227 -7.058 0.925 -1.498 0.481 -3.820 1.124 -1.215 0.126 -0.971 0.977 -1.782 0.489 -0.875 0.816 I-6 LUT 3 2 4 0 0.000 -0.256 0.176 -5.234 1.005 -1.278 0.820 -4.337 0.826 0.541 0.126 0.126 -1.459 -2.366 0.354 -1.168 1.058 -0.874 0.252 -5.732 1.166 -1.296 0.720 -3.741 0.904 -2.621 -0.135 -1.036 1.286 -2.716 0.669 -1.172 0.859 -0.697 0.030 -2.095 1.089 -1.745 1.056 -3.511 0.618 -1.145 0.324 -0.845 0.798 -2.420 0.490 -0.971 0.925 -0.725 -0.025 -6.047 1.261 -1.710 0.542 -4.184 1.127 -1.543 -0.068 -1.543 1.239 -2.287 0.426 -1.436 1.058 I-5 LUT 3 2 4 0 0.000 0.092 0.212 -4.432 0.791 -1.016 0.480 -2.823 0.978 -0.585 -0.170 0.415 0.152 -3.270 -0.800 -1.685 1.590 -0.618 0.512 -3.770 0.887 -1.284 0.681 -3.349 0.917 -1.322 -0.244 -0.585 1.063 -3.096 0.001 -1.391 1.323 0.203 0.091 -3.534 0.764 -1.527 0.473 -3.807 1.133 -0.459 0.257 -0.512 0.461 -3.099 -0.680 -1.691 1.560 -0.200 0.220 -3.824 0.922 -1.645 0.793 -4.299 0.924 -0.704 0.047 -0.856 0.848 -2.480 -0.057 -1.429 1.315 I-4 LUT 3 2 4 0 0.000 0.995 0.171 -1.869 -0.717 0.617 0.202 -1.383 -0.101 -0.392 -1.392 0.608 0.415 -0.426 -0.127 0.140 0.308 0.612 0.399 -3.360 0.079 0.530 0.278 -1.653 0.036 -0.415 0.147 0.515 -0.485 -0.790 0.094 0.585 -0.227 0.536 -0.193 0.263 -1.074 0.394 0.426 -2.497 0.222 0.522 0.037 0.141 -1.198 -0.836 -0.003 0.373 0.197 1.072 0.005 -2.883 -0.397 0.222 0.589 -2.264 0.165 0.253 -0.303 0.384 -0.530 -0.875 0.062 0.024 0.479 I-3 LUT 3 2 4 0 0.000 -1.928 1.398 -6.098 0.121 -3.028 1.364 -5.488 0.358 -3.476 1.734 -4.476 -0.891 -2.300 1.219 -4.415 0.508 -2.190 1.673 -8.665 -0.764 -2.442 1.315 -6.652 0.398 -3.205 1.501 -6.375 0.068 -2.747 1.295 -6.332 0.469 -1.599 1.633 -6.243 -0.851 -2.107 1.469 -5.807 -0.026 -2.477 1.661 -6.384 -0.629 -1.975 1.165 -3.435 0.496 -1.412 1.491 -8.343 -0.304 -2.662 1.268 -7.632 0.515 -2.632 1.504 -6.078 -0.018 -2.293 1.305 -6.625 0.396 A LUT 3 2 4 0 0.000 1.984 -6.087 -6.087 -6.087 1.998 -9.453 -9.453 -9.453 0.678 -0.322 -0.322 -0.322 1.994 -7.437 -7.437 -7.437 1.977 -5.585 -5.585 -5.585 1.998 -9.461 -9.461 -9.461 1.485 -1.322 -1.322 -1.322 1.997 -8.598 -8.598 -8.598 1.968 -5.077 -5.077 -5.077 1.998 -9.281 -9.281 -9.281 1.621 -1.700 -1.700 -1.700 1.995 -7.679 -7.679 -7.679 1.980 -5.735 -5.735 -5.735 1.998 -9.422 -9.422 -9.422 1.737 -2.170 -2.170 -2.170 1.997 -8.557 -8.557 -8.557 G LUT 3 2 4 0 0.000 -7.644 -7.644 1.995 -7.644 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.405 -11.405 2.000 -11.405 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -3.087 -3.087 1.867 -3.087 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -10.154 -10.154 1.999 -10.154 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.039 -0.842 1.015 -1.161 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.026 -0.624 -0.303 0.606 -0.135 0.097 -1.607 0.758 0.102 -0.418 -0.526 0.569 -1.007 -0.751 0.607 0.470 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.521 -0.165 -0.586 0.010 0.383 0.129 -1.400 0.291 0.163 0.056 -0.175 -0.066 -0.603 -0.046 0.370 0.111 0.160 0.046 -0.870 0.381 0.312 -0.012 -1.417 0.478 -0.392 0.110 0.368 -0.205 -0.749 -0.076 0.535 0.010 0.425 -0.251 -0.097 -0.181 0.240 0.039 -1.680 0.565 0.335 0.017 -0.418 -0.032 -0.415 -0.348 0.534 0.024 -0.710 0.731 -2.380 0.620 0.211 0.057 -1.508 0.537 0.106 -0.261 0.246 -0.146 -0.861 0.212 -0.134 0.464 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.239 -0.156 0.565 -0.367 0.300 0.404 -1.322 0.064 0.084 0.131 -0.018 -0.222 -0.774 0.289 0.335 -0.103 -0.378 -0.335 0.850 -0.655 0.314 0.339 -1.665 0.234 0.063 0.102 0.292 -0.605 -1.170 -0.050 0.847 -0.339 0.179 -0.330 0.360 -0.342 0.007 0.614 -1.813 0.239 0.286 0.383 -0.208 -0.712 -0.887 0.006 0.765 -0.403 . 1.146 . 0.838 -0.023 0.469 -1.863 0.440 . 0.245 0.412 0.569 -1.000 0.446 -0.398 0.463 -0.213 0.075 0.602 -0.822 0.190 0.509 -0.863 -0.175 -0.237 0.630 -0.441 -0.205 -1.781 0.697 0.260 -0.167 -0.843 -0.042 0.934 -0.835 0.169 0.391 -1.122 0.144 -0.236 0.318 0.370 -0.709 -1.647 0.127 1.032 -0.881 -0.605 0.146 0.647 -0.579 -0.317 0.838 -0.775 -0.278 -0.357 0.598 0.280 -1.024 -1.769 0.091 1.094 -0.978 . 1.291 . 0.636 -0.168 0.559 -0.929 0.153 . 0.536 0.541 0.131 -1.548 0.747 -0.132 0.094 -0.084 -0.400 0.848 -1.005 0.153 0.574 -1.007 -0.150 -0.127 0.343 0.127 -0.468 -1.624 0.509 0.515 -0.280 -0.752 -0.350 1.089 -1.019 0.082 0.459 -1.126 0.149 -0.405 0.406 0.470 -0.904 -1.500 -0.122 1.147 -0.962 -0.117 -0.287 0.741 -0.769 -0.256 0.715 -1.252 0.140 -0.239 0.702 -0.186 -0.628 -1.448 -0.064 1.055 -0.740 . 1.259 . 0.684 -0.147 0.530 -1.214 0.289 . 0.282 0.614 0.327 -1.445 0.592 -0.274 0.377 0.290 -0.311 0.320 -0.468 0.223 0.513 -1.487 0.069 -0.260 0.541 -0.378 -0.088 -1.063 0.427 0.026 0.213 -0.578 -0.183 0.880 -0.715 0.130 0.353 -1.642 0.387 0.045 0.067 0.338 -0.606 -1.302 0.155 0.769 -0.363 -0.004 -0.049 0.376 -0.438 -0.218 0.717 -1.836 0.282 0.039 0.420 0.041 -0.724 -1.289 0.176 0.850 -0.603 . 1.196 . 0.774 -0.103 0.503 -1.696 0.426 . 0.476 0.493 0.265 -1.051 0.389 -0.002 0.274 -0.075 -0.469 0.626 -0.348 0.277 0.314 -1.319 0.195 0.171 0.009 -0.087 -0.110 -0.796 0.073 0.454 0.004 -0.590 -0.239 0.957 -0.871 0.191 0.322 -1.454 0.314 -0.456 0.122 0.636 -0.669 -1.407 -0.144 1.026 -0.554 0.011 -0.259 0.519 -0.466 0.002 0.614 -1.514 0.161 0.313 0.199 0.102 -0.898 -1.142 -0.089 0.888 -0.403 . 1.084 . 0.910 -0.093 0.523 -1.690 0.396 . 0.096 0.809 0.238 -1.004 0.303 -0.303 0.543 -0.170 -0.063 0.723 -0.991 0.013 0.664 -0.841 -0.237 -0.700 0.726 -0.211 -0.207 -1.901 0.711 0.376 -0.327 -0.941 -0.189 1.097 -1.112 0.433 -0.175 -0.648 0.171 -0.271 0.149 0.675 -1.103 -1.781 0.008 1.132 -0.968 -0.791 0.038 0.907 -0.944 -0.437 0.767 -0.498 -0.233 -0.386 0.516 0.412 -1.075 -1.761 0.033 1.142 -1.075 . 1.299 . 0.622 -0.235 0.649 -0.980 0.104 . 0.570 0.567 0.047 -1.702 0.784 -0.041 -0.002 -0.297 -0.478 0.947 -0.889 -0.139 0.655 -0.739 -0.124 -0.338 0.440 0.103 -0.362 -1.370 0.121 0.684 -0.122 -1.186 -0.102 1.140 -1.237 -0.267 0.489 -0.246 -0.118 -0.807 0.675 0.479 -1.191 -2.209 0.017 1.266 -1.443 -0.499 -0.154 0.781 -0.567 -0.603 0.710 -0.271 -0.190 -0.288 0.601 0.095 -0.747 -1.682 -0.071 1.206 -1.220 . 1.282 . 0.650 -0.431 0.683 -0.661 0.029 . 0.314 0.783 0.052 -1.327 0.648 -0.074 0.117 0.168 -0.318 0.524 -0.654 0.260 0.407 -1.491 0.165 -0.261 0.520 -0.245 -0.171 -1.011 0.383 0.243 0.024 -0.756 -0.207 0.974 -0.793 0.288 0.059 -1.326 0.421 0.125 -0.321 0.651 -0.894 -1.329 -0.098 1.018 -0.640 -0.124 -0.200 0.585 -0.491 -0.006 0.580 -1.523 0.216 0.129 0.258 0.096 -0.639 -1.257 -0.010 0.963 -0.647 . 1.272 . 0.664 -0.019 0.543 -1.692 0.318 . 0.353 0.570 0.308 -1.221 0.464 0.232 0.024 0.042 -0.230 0.446 -0.404 0.274 0.456 -1.555 0.109 0.120 0.296 -0.161 -0.339 -0.980 0.309 0.197 0.147 -0.462 -0.179 0.806 -0.638 0.147 0.495 -1.817 0.263 -0.261 0.246 0.458 -0.724 -1.336 0.157 0.756 -0.322 -0.014 -0.100 0.403 -0.407 -0.007 0.629 -1.670 0.194 0.196 0.377 -0.263 -0.470 -1.104 0.244 0.665 -0.388 . 1.226 . 0.732 0.004 0.493 -1.937 0.410 . 0.579 0.579 0.016 -0.980 0.407 -0.425 0.508 -0.126 -0.109 0.662 -0.800 0.057 0.690 -1.050 -0.212 -0.712 0.796 -0.401 -0.158 -1.924 0.792 0.275 -0.332 -0.958 0.049 0.908 -0.801 -0.067 0.504 -1.009 0.177 -0.465 0.565 0.332 -0.894 -1.873 0.241 0.975 -0.785 -1.055 0.091 0.834 -0.576 -0.671 0.908 -0.556 -0.295 -0.789 0.792 0.174 -0.833 -1.873 0.265 0.993 -0.904 . 1.360 . 0.519 -0.426 0.745 -1.301 0.231 . 0.671 0.449 0.060 -1.846 0.921 -0.452 0.134 -0.000 -0.326 0.722 -0.855 0.242 0.553 -1.213 -0.122 -0.043 0.373 0.163 -0.702 -1.242 0.449 0.460 -0.258 -0.869 -0.205 1.073 -1.055 -0.098 0.557 -1.173 0.204 -0.460 0.435 0.551 -1.133 -1.616 0.060 1.059 -0.868 -0.238 0.091 0.527 -0.630 -0.228 0.750 -1.281 0.075 -0.120 0.833 -0.824 -0.447 -1.159 0.236 0.796 -0.648 . 1.397 . 0.450 -0.162 0.653 -1.682 0.290 . 0.445 0.759 -0.080 -1.459 0.541 -0.327 0.469 0.165 -0.013 0.247 -0.513 -0.012 0.801 -1.832 -0.022 -0.477 0.564 -0.502 0.133 -1.124 0.555 0.107 -0.008 -0.656 -0.032 0.779 -0.575 -0.012 0.464 -1.957 0.455 -0.399 0.249 0.288 -0.266 -1.507 0.147 0.825 -0.379 -0.134 0.167 0.302 -0.447 -0.233 0.737 -1.714 0.235 -0.107 0.415 0.039 -0.494 -1.382 0.221 0.813 -0.528 . 1.307 . 0.609 -0.284 0.501 -1.869 0.574 . 0.405 0.464 0.374 -1.125 0.489 0.003 0.184 0.027 -0.546 0.633 -0.424 0.306 0.330 -1.415 0.179 0.054 0.158 -0.098 -0.133 -0.851 -0.089 0.353 0.296 -0.274 -0.612 1.038 -1.103 0.118 0.305 -1.655 0.446 0.198 -0.141 0.466 -0.825 -1.078 -0.153 0.932 -0.475 0.251 -0.367 0.362 -0.416 0.040 0.495 -1.802 0.351 0.388 0.163 -0.165 -0.556 -0.814 -0.174 0.775 -0.263 . 1.028 . 0.971 0.022 0.378 -1.961 0.514 . 0.061 0.497 0.629 -0.961 0.076 -0.322 0.707 -0.335 0.142 0.550 -0.644 -0.066 0.730 -1.220 -0.063 -0.738 0.824 -0.468 -0.142 -1.838 0.749 0.179 -0.140 -0.981 -0.117 1.023 -0.893 0.034 0.365 -1.016 0.256 -0.050 0.177 0.408 -0.796 -1.603 0.098 1.033 -0.849 -0.693 0.223 0.532 -0.379 -0.464 0.931 -1.055 -0.171 -0.376 0.494 0.269 -0.698 -1.667 0.240 0.989 -0.946 . 1.298 . 0.625 -0.405 0.802 -1.656 0.244 . 0.648 0.451 0.092 -1.651 0.889 -0.313 0.034 -0.218 -0.353 0.814 -0.740 0.040 0.583 -1.122 0.021 -0.269 0.436 0.052 -0.358 -1.452 0.340 0.554 -0.150 -1.100 -0.295 1.176 -1.124 -0.149 0.591 -1.270 0.235 -0.707 0.419 0.585 -0.862 -1.584 -0.109 1.156 -0.967 -0.230 -0.120 0.564 -0.418 -0.289 0.701 -1.393 0.232 -0.182 0.630 -0.107 -0.639 -1.227 -0.150 1.028 -0.660 . 1.230 . 0.727 -0.401 0.645 -1.467 0.397 . 0.433 0.521 0.280 -1.578 0.479 -0.045 0.380 0.215 -0.238 0.387 -0.549 0.132 0.564 -1.738 0.171 -0.094 0.338 -0.364 0.031 -1.072 0.338 -0.069 0.387 -0.587 -0.181 0.833 -0.577 0.147 0.250 -1.747 0.491 0.322 -0.258 0.355 -0.656 -1.244 0.115 0.795 -0.395 0.046 -0.032 0.191 -0.239 -0.076 0.561 -2.080 0.421 0.179 0.252 -0.076 -0.458 -1.229 0.078 0.791 -0.344 . 1.011 . 0.988 -0.294 0.492 -2.274 0.652 . 0.485 0.523 0.218 -0.797 0.399 0.110 0.037 frame2 LUT 5 4 4 0 0.000 0.030 -0.240 0.566 -0.617 0.604 0.249 -1.093 -0.281 0.474 -0.044 0.150 -0.911 -0.250 -0.363 0.889 -0.916 -0.135 -0.419 0.776 -0.667 0.763 0.071 -1.374 -0.206 -0.206 0.012 0.394 -0.304 -0.704 0.147 0.707 -0.629 0.442 -0.286 0.376 -0.932 0.618 0.243 -1.292 -0.194 0.661 -0.025 -0.041 -1.106 -0.418 -0.319 0.865 -0.670 0.217 -0.332 0.489 -0.644 0.616 0.338 -1.129 -0.422 0.312 -0.391 0.500 -0.782 -0.282 -0.075 0.712 -0.763 0.236 -0.413 0.757 -1.391 0.571 0.203 -1.017 -0.203 0.333 0.168 -0.037 -0.639 -0.560 0.032 0.688 -0.539 -0.206 -0.117 0.786 -1.038 0.585 0.127 -1.134 -0.070 -0.202 0.216 0.257 -0.369 -0.884 0.126 0.783 -0.629 0.147 -0.306 0.670 -1.020 0.319 0.210 -1.227 0.224 0.403 -0.007 0.218 -0.947 -0.769 -0.064 0.668 -0.205 0.208 -0.154 0.537 -1.016 0.667 0.008 -1.681 0.130 0.122 -0.043 0.512 -0.956 -0.669 0.426 0.357 -0.421 0.204 -0.543 0.752 -1.067 0.581 0.133 -1.050 -0.112 0.349 -0.113 0.346 -0.914 -0.697 -0.614 1.104 -0.786 -0.193 -0.440 0.910 -0.973 0.720 0.021 -1.213 -0.141 -0.150 0.024 0.508 -0.600 -0.771 -0.226 0.971 -0.740 0.160 -0.258 0.701 -1.251 0.439 0.175 -1.009 0.027 0.422 -0.180 0.455 -1.300 -0.920 -0.203 0.976 -0.652 -0.029 -0.281 0.632 -0.627 0.751 0.173 -1.535 -0.244 0.137 -0.367 0.605 -0.727 -0.623 0.266 0.574 -0.601 . . . . 0.477 0.243 -0.909 -0.165 . . . . -0.382 -0.579 0.923 -0.584 -0.184 -0.460 0.849 -0.757 0.629 0.106 -1.223 -0.076 0.006 -0.515 0.683 -0.534 -0.803 0.059 0.771 -0.558 . . . . 0.648 0.263 -1.421 -0.218 0.418 -0.228 0.342 -0.881 -0.323 -0.473 1.002 -1.067 0.344 -0.186 0.349 -0.789 0.498 0.292 -1.604 0.049 0.025 -0.069 0.544 -0.807 -0.571 -0.295 0.922 -0.696 -0.060 -0.268 0.737 -0.882 0.551 0.141 -0.691 -0.299 0.357 -0.174 0.213 -0.570 -0.550 -0.602 1.110 -1.002 -0.597 -0.334 1.042 -1.041 0.741 -0.186 -0.884 -0.140 -0.679 0.001 0.757 -0.546 -1.006 -0.106 0.999 -0.799 0.144 -0.427 0.740 -1.056 0.505 0.164 -0.692 -0.249 0.543 -0.028 0.166 -1.181 -0.864 -0.489 1.176 -1.063 -0.052 -0.535 0.737 -0.560 0.491 0.146 -0.706 -0.193 0.155 -0.300 0.532 -0.670 -0.802 -0.112 0.947 -0.805 -0.044 -0.383 0.975 -1.745 0.428 0.192 -0.564 -0.259 0.152 0.083 0.322 -0.788 -0.954 -0.048 0.958 -0.803 -0.544 -0.054 0.921 -1.126 0.831 -0.396 -0.625 -0.299 -0.522 0.166 0.674 -0.769 -1.083 0.044 0.940 -0.792 -0.004 -0.604 0.914 -1.119 0.348 0.198 -0.865 0.045 0.111 0.068 0.571 -1.370 -0.611 -0.143 0.870 -0.708 -0.032 -0.085 0.726 -1.233 0.646 0.045 -1.394 0.033 -0.160 0.079 0.633 -1.004 -0.669 0.359 0.494 -0.557 -0.273 -0.459 0.948 -0.956 0.337 0.106 -0.328 -0.211 0.056 -0.070 0.493 -0.735 -0.906 -0.654 1.216 -0.976 -0.734 -0.236 1.076 -1.182 0.519 -0.100 -0.429 -0.166 -1.259 0.307 0.919 -1.139 -1.027 -0.009 0.975 -0.862 -0.221 -0.444 1.018 -1.389 0.334 -0.063 -0.478 0.090 0.130 0.028 0.641 -1.616 -1.165 -0.200 1.072 -0.785 -0.528 -0.149 0.865 -0.776 0.580 0.079 -1.257 0.043 -0.273 -0.156 0.697 -0.613 -0.715 0.020 0.660 -0.328 . . . . 0.527 0.065 -0.659 -0.186 . . . . -0.630 -0.679 1.141 -0.935 -0.660 -0.345 1.093 -1.165 0.607 -0.017 -1.077 0.022 -1.039 0.006 0.996 -0.956 -0.890 -0.148 1.003 -0.853 . . . . 0.408 0.274 -1.049 -0.029 0.318 -0.222 0.385 -0.763 -0.662 -0.506 1.142 -1.130 0.175 -0.058 0.423 -0.812 0.432 0.270 -0.965 -0.102 -0.086 -0.187 0.695 -0.834 -0.701 -0.497 1.155 -1.154 0.090 -0.117 0.535 -0.825 0.499 0.262 -0.860 -0.258 0.452 -0.023 0.167 -0.930 -0.514 -0.313 0.931 -0.767 -0.465 -0.215 0.905 -0.885 0.542 0.208 -1.048 -0.143 -0.719 0.165 0.724 -0.692 -1.093 0.213 0.764 -0.570 0.304 -0.107 0.495 -1.227 0.409 0.259 -0.753 -0.180 0.632 0.118 -0.159 -1.092 -0.771 -0.218 0.932 -0.629 0.130 -0.507 0.511 -0.365 0.402 0.382 -0.838 -0.293 0.141 -0.088 0.441 -0.740 -0.755 -0.012 0.854 -0.717 -0.039 -0.258 0.859 -1.409 0.438 0.238 -0.717 -0.222 0.205 0.284 0.074 -0.793 -0.812 0.123 0.720 -0.527 -0.394 -0.003 0.788 -0.959 0.501 0.101 -0.794 -0.097 -0.701 0.453 0.526 -0.798 -1.164 0.146 0.795 -0.489 -0.192 0.058 0.688 -1.079 0.262 0.226 -0.993 0.174 -0.025 0.444 0.278 -1.171 -1.087 0.184 0.678 -0.334 0.075 0.176 0.432 -1.096 0.529 0.117 -1.626 0.200 -0.164 0.217 0.507 -0.930 -0.774 0.557 0.273 -0.443 -0.043 -0.408 0.840 -1.041 0.519 0.129 -0.731 -0.199 0.229 0.102 0.327 -1.000 -0.758 -0.451 1.093 -0.877 -0.516 -0.456 1.064 -1.056 0.569 0.057 -0.762 -0.173 -0.762 0.155 0.829 -0.942 -1.163 -0.046 1.000 -0.774 0.123 -0.200 0.688 -1.218 0.443 0.165 -0.846 -0.055 0.416 0.179 0.205 -1.394 -0.808 -0.010 0.942 -0.959 -0.288 -0.002 0.680 -0.784 0.637 0.240 -1.465 -0.149 -0.064 -0.072 0.624 -0.861 -0.684 0.258 0.553 -0.484 . . . . 0.451 0.296 -0.815 -0.258 . . . . -0.532 -0.386 0.875 -0.496 -0.594 -0.177 0.919 -0.830 0.450 0.237 -1.346 0.087 -0.604 -0.087 0.867 -0.795 -0.899 0.074 0.815 -0.618 . . . . 0.392 0.292 -0.840 -0.145 0.289 0.045 0.176 -0.698 -0.712 -0.248 1.020 -0.944 0.276 0.063 0.252 -0.855 0.393 0.371 -1.217 -0.054 -0.127 -0.013 0.606 -0.806 -0.694 -0.314 1.015 -0.845 0.257 -0.416 0.566 -0.798 0.502 0.265 -1.202 -0.078 0.544 -0.167 0.190 -0.969 -0.398 -0.292 0.888 -0.801 -0.065 -0.556 0.853 -0.842 0.760 -0.065 -1.453 -0.021 0.050 -0.261 0.415 -0.327 -0.759 -0.114 0.817 -0.467 0.403 -0.466 0.550 -1.031 0.646 0.304 -1.519 -0.231 0.640 0.016 -0.129 -0.953 -0.486 -0.310 0.886 -0.664 0.265 -0.389 0.428 -0.535 0.552 0.327 -1.224 -0.231 0.253 -0.340 0.425 -0.565 -0.555 0.014 0.681 -0.500 0.035 -0.483 0.942 -1.563 0.548 0.237 -0.983 -0.228 0.353 0.005 0.109 -0.641 -0.499 -0.076 0.723 -0.530 -0.176 -0.456 0.925 -1.039 0.676 0.000 -0.834 -0.249 -0.312 -0.021 0.635 -0.609 -0.862 0.039 0.875 -0.764 0.290 -0.759 0.758 -1.014 0.236 0.338 -1.437 0.250 0.370 -0.122 0.396 -1.080 -0.892 -0.050 0.735 -0.268 0.048 0.040 0.606 -1.267 0.488 0.265 -1.700 0.122 0.004 -0.020 0.528 -0.811 -0.542 0.422 0.398 -0.608 -0.030 -0.588 0.866 -0.909 0.535 0.217 -1.099 -0.118 0.304 -0.168 0.404 -0.858 -0.644 -0.613 1.134 -0.966 -0.337 -0.596 1.001 -0.876 0.665 0.067 -1.255 -0.078 -0.533 -0.029 0.723 -0.561 -0.800 -0.237 0.991 -0.761 0.116 -0.523 0.821 -1.138 0.456 0.071 -1.171 0.180 0.463 -0.242 0.482 -1.397 -0.883 -0.373 1.013 -0.581 -0.131 -0.183 0.644 -0.638 0.664 0.208 -1.775 -0.047 -0.050 -0.299 0.708 -0.767 -0.586 0.120 0.630 -0.515 . . . . 0.497 0.223 -1.038 -0.097 . . . . -0.405 -0.465 0.923 -0.680 -0.195 -0.706 0.957 -0.807 0.597 0.083 -1.548 0.119 -0.406 -0.219 0.889 -0.905 -0.761 -0.028 0.863 -0.713 . . . . 0.387 0.393 -1.395 -0.002 0.357 -0.254 0.255 -0.540 -0.363 -0.251 0.860 -0.816 0.273 -0.142 0.226 -0.482 0.404 0.388 -1.486 0.016 0.016 -0.075 0.598 -0.927 -0.316 -0.480 1.016 -1.128 frame2 LUT 5 4 4 0 0.000 0.490 -0.307 -0.381 0.028 0.304 -0.117 -0.975 0.417 0.600 -0.088 -0.379 -0.369 -0.114 0.021 -0.216 0.264 0.420 -0.539 -0.259 0.188 0.107 0.026 -0.857 0.436 0.387 -0.322 -0.174 0.009 -0.470 -0.084 -0.061 0.461 0.830 -0.628 -0.467 -0.231 0.250 -0.103 -0.829 0.397 0.903 -0.175 -0.793 -0.584 -0.319 -0.007 -0.297 0.475 0.679 -0.596 -0.911 0.269 0.133 0.229 -1.181 0.368 0.527 -0.337 -0.127 -0.231 -0.374 0.348 -1.232 0.613 0.594 -0.235 -0.311 -0.261 0.286 0.250 -1.400 0.278 0.657 -0.111 -0.455 -0.381 -0.952 0.538 -0.638 0.473 0.359 -0.238 -0.433 0.175 0.230 -0.118 -0.980 0.484 0.318 -0.509 -0.240 0.267 -0.528 -0.107 -0.112 0.539 0.235 -0.270 -0.182 0.153 -0.245 -0.050 -1.376 0.852 0.484 -0.103 -0.328 -0.195 -0.682 0.236 -0.016 0.275 0.364 0.028 -0.794 0.159 0.112 0.156 -0.967 0.371 0.239 -0.204 -0.110 0.035 -0.750 0.284 -0.716 0.659 0.561 -0.624 0.006 -0.197 0.362 0.008 -1.231 0.360 0.730 -0.207 -0.379 -0.500 -0.511 0.258 -0.263 0.344 0.298 -0.401 0.112 -0.102 0.183 -0.074 -0.639 0.348 0.545 -0.308 -0.075 -0.352 -0.659 0.333 -0.132 0.256 0.692 -0.511 -0.242 -0.255 0.177 -0.092 -0.842 0.457 0.783 -0.114 -0.635 -0.490 -0.803 0.282 -0.195 0.419 0.597 -0.299 -0.410 -0.117 0.237 0.121 -0.995 0.301 0.565 -0.289 -0.047 -0.447 -0.606 0.448 -0.954 0.549 0.755 -0.567 -0.432 -0.159 0.503 0.064 -1.067 0.084 0.776 -0.005 -0.813 -0.471 -0.767 0.044 -0.378 0.688 0.343 -0.168 -0.552 0.213 0.277 -0.394 -0.502 0.402 0.452 -0.080 -0.537 -0.005 -0.553 0.094 -0.207 0.469 0.673 -0.459 -0.474 -0.062 0.244 -0.189 -1.096 0.557 0.681 -0.097 -0.506 -0.400 -0.416 -0.019 -0.240 0.503 0.789 -0.458 -0.907 0.016 0.371 -0.010 -0.883 0.229 0.534 -0.219 -0.247 -0.233 -0.483 0.313 -0.828 0.564 0.483 -0.544 0.016 -0.144 0.601 -0.245 -1.207 0.270 0.597 -0.283 -0.235 -0.293 -0.118 -0.147 -0.069 0.290 0.237 -0.233 -0.058 0.014 0.293 -0.233 -0.772 0.421 0.296 -0.222 -0.164 0.033 -0.575 -0.121 0.165 0.365 0.589 -0.543 -0.151 -0.138 0.333 -0.266 -0.993 0.492 0.801 -0.038 -0.699 -0.584 -0.386 -0.108 -0.000 0.386 0.504 -0.233 -0.545 0.063 0.365 -0.138 -0.898 0.342 0.498 -0.309 -0.054 -0.290 -0.314 0.151 -0.901 0.632 0.602 -0.229 -0.050 -0.593 0.092 0.633 -1.330 -0.021 0.736 -0.128 -0.431 -0.562 -0.713 0.575 -0.462 0.232 0.493 -0.388 -0.092 -0.168 0.335 -0.052 -0.644 0.181 0.637 -0.240 -0.286 -0.362 -0.338 0.081 -0.219 0.369 0.366 -0.277 0.095 -0.290 -0.350 0.424 -0.922 0.429 0.598 -0.141 -0.248 -0.439 -0.542 0.449 -0.248 0.145 0.532 -0.121 -0.540 -0.080 0.109 0.515 -1.026 0.002 0.448 -0.180 -0.151 -0.231 -0.681 0.532 -0.806 0.442 0.357 -0.825 0.090 0.126 0.389 -0.165 -0.854 0.316 0.539 -0.368 -0.085 -0.270 -0.126 -0.096 -0.287 0.410 0.303 -0.578 0.028 0.107 0.148 -0.846 -0.398 0.657 0.257 -0.139 -0.031 -0.123 -0.423 -0.131 0.077 0.363 0.590 -0.606 -0.076 -0.169 0.180 -0.359 -0.477 0.453 0.727 -0.093 -0.448 -0.570 -0.477 0.101 -0.273 0.465 0.297 -0.156 -0.195 0.000 0.170 -0.147 -0.660 0.421 0.189 -0.329 0.114 -0.026 -0.665 0.247 -0.592 0.603 0.716 -0.413 -0.249 -0.388 0.637 -0.233 -1.014 0.136 0.849 -0.248 -0.493 -0.629 -0.344 -0.043 -0.097 0.385 0.310 -0.262 -0.336 0.182 0.217 -0.418 -0.796 0.598 -0.003 -0.203 0.049 0.136 -0.453 -0.022 -0.234 0.520 0.649 -0.408 -0.218 -0.289 0.274 -0.309 -0.964 0.556 0.643 -0.109 -0.445 -0.364 -0.547 0.212 -0.012 0.222 0.486 -0.207 -0.669 0.143 0.128 -0.035 -0.570 0.331 0.220 -0.167 0.014 -0.097 -0.766 0.414 -0.660 0.533 0.666 -0.589 -0.398 -0.014 0.416 -0.351 -0.986 0.461 0.928 -0.393 -0.531 -0.636 -0.296 -0.218 -0.163 0.518 0.335 -0.414 -0.218 0.175 0.102 0.029 -0.941 0.470 0.579 -0.418 -0.355 -0.036 -0.551 -0.035 -0.106 0.498 0.786 -0.658 -0.389 -0.187 0.247 -0.323 -0.919 0.570 1.011 -0.240 -0.854 -0.772 -0.567 0.022 -0.150 0.494 0.568 -0.402 -0.841 0.266 0.067 0.170 -1.026 0.418 0.676 -0.351 -0.299 -0.311 -0.372 0.266 -1.047 0.624 0.688 -0.397 -0.318 -0.274 0.378 0.025 -1.315 0.357 0.586 0.214 -0.544 -0.613 -0.644 0.586 -0.799 0.361 0.392 -0.325 -0.362 0.153 0.278 -0.307 -0.752 0.471 0.374 0.026 -0.459 -0.061 -0.778 0.096 -0.289 0.613 0.291 -0.070 -0.121 -0.145 -0.140 -0.126 -0.744 0.659 0.241 0.447 -0.485 -0.435 -0.784 0.427 -0.291 0.330 0.353 0.024 -0.894 0.224 0.143 0.007 -0.902 0.439 0.240 0.107 -0.365 -0.050 -0.984 0.432 -0.708 0.617 0.679 -0.444 -0.240 -0.292 0.349 -0.038 -0.963 0.310 0.675 -0.237 -0.137 -0.632 -0.700 0.260 -0.589 0.606 0.304 -0.385 -0.148 0.133 0.220 -0.318 -0.570 0.444 0.171 -0.230 0.157 -0.141 -0.431 0.105 -0.219 0.405 0.878 -0.397 -0.638 -0.394 0.089 0.030 -1.039 0.515 0.749 -0.075 -0.527 -0.565 -0.609 0.497 -0.825 0.453 0.182 0.130 -0.486 0.080 0.188 0.052 -0.730 0.288 0.179 -0.305 0.168 -0.097 -0.618 0.364 -0.895 0.607 0.775 -0.144 -0.946 -0.210 0.435 0.200 -1.091 0.042 0.792 -0.100 -0.628 -0.540 -0.727 0.322 -0.623 0.581 0.176 -0.082 -0.508 0.289 0.115 -0.205 -0.826 0.571 -0.093 -0.111 -0.088 0.258 -0.473 0.072 -0.399 0.556 0.644 -0.150 -0.723 -0.105 0.077 -0.163 -0.978 0.626 0.596 -0.085 -0.562 -0.203 -0.679 0.200 -0.186 0.431 0.440 -0.239 -0.822 0.299 0.224 0.080 -0.840 0.283 0.235 -0.209 0.008 -0.070 -0.657 0.348 -0.878 0.631 . . . . . . . . . . . . . . . . 0.421 -0.330 -0.201 -0.005 0.267 -0.342 -0.642 0.451 0.555 -0.584 -0.208 -0.004 -0.432 -0.221 -0.033 0.509 . . . . . . . . . . . . . . . . 0.768 -0.540 -0.886 0.095 0.369 -0.073 -1.043 0.348 0.683 -0.442 -0.251 -0.290 -0.300 0.102 -0.996 0.690 0.663 -0.465 0.013 -0.550 0.221 0.252 -1.162 0.259 0.712 -0.131 -0.353 -0.587 -1.263 0.761 -0.778 0.385 0.298 -0.377 -0.051 0.050 0.245 -0.138 -0.820 0.422 0.462 -0.366 -0.188 -0.045 -0.589 0.155 -0.144 0.397 0.250 -0.115 0.115 -0.313 -0.161 0.078 -1.326 0.724 0.457 -0.080 -0.156 -0.352 -1.298 0.720 -0.490 0.303 0.364 0.138 -0.533 -0.118 0.146 0.208 -0.993 0.305 0.371 -0.170 -0.117 -0.159 -1.131 0.767 -0.761 0.323 . . . . . . . . . . . . . . . . 0.338 -0.372 -0.024 -0.029 0.296 -0.265 -0.666 0.390 0.213 -0.216 0.166 -0.221 -0.555 0.005 0.087 0.326 0.605 -0.472 -0.252 -0.122 0.206 -0.438 -1.048 0.700 0.661 -0.272 -0.338 -0.323 -0.423 -0.061 -0.035 0.400 0.656 -0.258 -0.510 -0.175 0.236 0.113 -1.038 0.326 0.424 -0.319 0.117 -0.373 -0.628 0.361 -0.697 0.538 0.888 -0.706 -0.612 -0.182 0.542 -0.089 -1.061 0.168 0.820 -0.205 -0.495 -0.606 -0.521 0.294 -0.830 0.599 0.247 -0.208 -0.223 0.125 0.255 -0.446 -0.721 0.552 0.382 -0.418 -0.141 0.059 -0.464 0.097 -0.218 0.429 0.671 -0.500 -0.395 -0.089 0.102 -0.048 -1.374 0.654 0.689 -0.102 -0.541 -0.380 -0.603 0.298 -0.327 0.395 0.668 -0.394 -0.739 0.072 0.195 -0.051 -1.147 0.525 0.536 -0.279 -0.183 -0.244 -0.507 0.411 -0.803 0.479 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.604 0.219 -0.093 -1.399 0.632 0.619 -1.543 -0.809 0.601 0.527 -0.410 -1.789 -0.408 0.608 0.255 -0.918 0.289 0.325 0.078 -1.088 0.692 0.435 -1.321 -0.660 0.317 0.444 -0.261 -0.837 -0.589 0.736 0.164 -0.866 0.537 0.216 -0.149 -1.041 0.504 0.653 -1.787 -0.474 0.961 0.480 -0.859 -3.226 -0.702 0.682 0.129 -0.542 0.424 0.597 -0.859 -0.751 0.667 0.709 -2.232 -0.826 0.290 0.600 -0.152 -1.471 -0.320 0.759 -0.230 -0.613 E-2 LUT 3 2 4 0 0.000 1.415 -1.345 -1.072 -1.110 1.610 -1.814 -2.705 -0.971 1.466 -1.086 -1.597 -1.195 0.058 -0.239 0.108 0.047 1.398 -1.530 -0.929 -1.021 1.562 -1.582 -2.296 -0.974 1.413 -1.439 -1.081 -1.013 -0.464 -0.258 0.554 -0.043 1.423 -1.403 -1.180 -1.004 1.584 -1.691 -2.345 -1.015 1.625 -1.597 -1.746 -1.800 -0.056 -0.541 0.543 -0.163 1.361 -1.068 -2.170 -0.450 1.485 -1.503 -2.112 -0.699 1.259 -0.905 -1.055 -0.757 -0.023 -0.249 0.067 0.172 E-1 LUT 3 2 4 0 0.000 -1.658 -3.502 1.787 -2.798 0.129 -1.445 0.937 -0.678 -0.310 -1.883 1.306 -1.153 -2.511 -2.833 1.787 -2.096 -1.777 -3.693 1.819 -3.291 -0.210 -1.753 0.982 -0.210 -0.853 -2.474 1.573 -1.783 -3.026 -2.611 1.792 -1.996 -1.825 -3.622 1.780 -2.300 -0.231 -1.757 0.894 -0.009 -0.832 -2.190 1.618 -2.730 -2.971 -2.971 1.813 -2.109 -1.285 -2.084 1.620 -1.839 -0.386 -1.883 1.045 -0.151 -1.099 -3.401 1.602 -1.308 -2.476 -2.752 1.700 -1.245 G LUT 3 2 4 0 0.000 -7.626 -7.626 1.995 -7.626 -5.852 -5.852 1.981 -5.852 -11.137 -11.137 2.000 -11.137 -6.551 -6.551 1.988 -6.551 -6.618 -6.618 1.989 -6.618 -5.077 -5.077 1.968 -5.077 -7.728 -7.728 1.995 -7.728 -6.488 -6.488 1.988 -6.488 -6.114 -6.114 1.984 -6.114 -4.409 -4.409 1.948 -4.409 -8.338 -8.338 1.997 -8.338 -5.358 -5.358 1.973 -5.358 -4.459 -4.459 1.950 -4.459 -4.426 -4.426 1.949 -4.426 -8.956 -8.956 1.998 -8.956 -5.349 -5.349 1.973 -5.349 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.585 -8.585 -8.585 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.036 -7.036 -7.036 1.992 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.680 -11.680 -11.680 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.035 -8.035 -8.035 1.996 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.249 -3.296 0.516 -3.451 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.359 -1.330 -0.950 -0.943 1.612 -2.613 -2.531 -0.723 1.787 -2.851 -1.788 -3.043 0.519 -1.962 0.273 0.140 I+3 LUT 3 2 4 0 0.000 -1.282 -1.804 1.595 -1.833 -0.046 -0.492 0.324 0.096 -1.750 -2.431 1.743 -2.561 -1.836 -1.116 1.505 -1.251 -4.005 -4.741 1.921 -3.157 0.000 -2.322 0.848 0.000 -2.392 -2.392 1.608 -0.807 -4.044 -0.874 1.710 -3.044 -3.782 -3.814 1.921 -3.864 -1.503 -0.628 1.270 -0.766 -4.140 -3.555 1.930 -4.403 -4.484 -2.676 1.874 -2.899 -2.098 -3.098 1.809 -2.776 -2.755 -2.755 1.493 -0.170 -2.273 -2.051 1.742 -2.273 -3.728 -2.728 1.827 -2.143 I+4 LUT 3 2 4 0 0.000 -0.131 -0.509 0.508 -0.056 0.106 -0.041 -0.987 0.533 -0.632 -0.695 -0.621 1.061 -0.721 -0.686 0.660 0.252 -1.099 -0.758 1.124 -0.391 0.244 -0.477 -0.642 0.542 -1.176 -0.962 -0.428 1.202 -0.934 -0.934 0.889 0.138 0.027 -0.558 0.764 -0.728 -0.644 0.019 0.019 0.415 -0.339 -0.566 -0.889 0.995 -0.066 -0.744 0.888 -0.744 -0.369 -0.839 0.548 0.268 -0.366 0.956 -2.559 0.157 -0.903 -1.189 -0.339 1.161 -0.868 -0.435 0.168 0.668 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.894 -0.802 -0.546 -0.179 0.697 0.015 -2.281 0.217 0.331 -0.372 -0.000 -0.044 0.324 -0.622 0.105 0.034 0.250 -0.363 0.069 -0.023 0.401 0.250 -2.408 0.381 -0.116 -0.268 -0.091 0.387 -0.569 0.171 0.134 0.141 0.420 -0.468 0.167 -0.292 0.550 0.135 -2.068 0.262 0.313 -0.109 -0.086 -0.171 -0.161 -0.374 0.381 0.045 0.518 -0.475 -0.345 0.086 0.257 0.354 -2.314 0.407 0.145 -0.388 -0.026 0.200 0.001 -0.315 -0.391 0.519 0.711 -0.563 -0.062 -0.458 1.016 -0.327 -2.026 -0.097 0.266 -0.326 0.152 -0.170 -0.019 -0.500 0.236 0.175 -0.307 0.055 0.183 0.025 0.482 0.067 -1.769 0.336 -0.272 0.074 -0.238 0.347 -0.797 0.172 0.361 0.018 -0.016 -0.559 0.457 -0.059 0.042 0.702 -1.677 0.044 0.022 -0.371 0.284 -0.010 -0.488 -0.482 0.653 -0.002 0.271 -0.265 -0.072 0.015 0.382 0.233 -2.130 0.370 -0.034 -0.057 -0.084 0.161 -0.421 -0.219 0.069 0.427 0.530 -0.621 0.070 -0.223 0.639 0.016 -1.783 0.190 0.459 -0.313 0.070 -0.375 -0.231 -0.333 0.413 0.032 -0.107 -0.155 0.381 -0.200 0.455 -0.117 -1.987 0.541 0.157 -0.202 0.004 0.019 -0.417 -0.132 0.478 -0.081 0.318 -0.548 0.391 -0.400 0.443 -0.142 -1.528 0.473 0.291 -0.151 -0.116 -0.070 -0.366 -0.278 0.450 0.047 0.146 -0.494 0.335 -0.116 0.363 0.091 -2.452 0.552 0.139 -0.153 0.024 -0.025 -0.389 0.007 -0.181 0.433 0.689 -0.788 -0.407 0.076 0.859 -0.227 -2.365 0.186 0.284 -0.192 -0.162 0.019 0.364 -0.793 -0.126 0.287 -0.276 0.021 0.163 0.056 0.213 0.318 -2.217 0.464 -0.268 0.203 -0.227 0.219 -0.682 0.165 0.161 0.186 0.282 -0.481 0.208 -0.132 0.339 0.262 -2.339 0.421 0.063 -0.167 -0.002 0.092 -0.120 -0.482 0.332 0.144 0.211 -0.267 -0.221 0.206 0.261 0.073 -2.764 0.681 -0.003 -0.157 -0.166 0.280 -0.206 -0.387 -0.350 0.663 0.428 -0.400 0.087 -0.261 0.617 0.189 -2.382 0.183 0.108 -0.228 0.091 0.005 -0.084 -0.288 0.154 0.170 -0.681 0.435 0.214 -0.211 0.462 0.072 -1.934 0.389 -0.564 0.338 -0.050 0.129 -0.957 -0.158 0.547 0.173 0.123 -0.520 0.501 -0.324 0.244 0.454 -2.259 0.307 0.147 0.138 -0.063 -0.260 -0.534 -0.323 0.587 0.011 -0.018 -0.247 0.065 0.168 0.140 0.123 -2.432 0.699 -0.231 -0.133 0.102 0.218 -0.553 -0.197 -0.222 0.668 0.401 -0.396 0.411 -0.761 0.280 0.457 -1.679 0.139 -0.244 0.219 0.367 -0.510 -0.660 0.097 0.306 0.086 -0.316 -0.226 0.698 -0.475 0.524 0.045 -1.504 0.236 -0.321 -0.005 0.447 -0.251 -0.946 0.091 0.483 0.027 -0.431 -0.573 1.017 -0.831 -0.260 0.802 -1.081 -0.077 -0.469 0.133 0.671 -0.763 -0.831 0.099 0.614 -0.257 0.055 -0.274 0.330 -0.190 0.095 0.518 -2.016 0.325 -0.267 -0.174 0.344 0.019 -0.739 0.109 0.025 0.384 0.092 0.021 0.172 -0.333 0.401 0.137 -1.521 0.301 0.256 -0.496 0.320 -0.238 -0.750 0.115 0.189 0.243 -0.734 0.164 0.526 -0.254 -0.057 0.259 -1.619 0.601 -0.802 0.614 0.244 -0.490 -1.116 0.137 0.472 0.073 -0.082 -0.713 0.689 -0.264 -0.285 0.416 -1.152 0.481 0.021 -0.004 0.202 -0.256 -0.700 -0.348 0.738 -0.103 0.031 -0.428 0.229 0.088 -0.031 0.101 -2.016 0.767 -0.072 -0.183 0.166 0.065 -0.581 -0.098 -0.098 0.549 0.328 -0.510 0.045 0.015 0.539 -0.028 -2.487 0.473 0.192 -0.192 0.173 -0.226 -0.043 -0.344 0.075 0.249 -0.356 -0.029 0.540 -0.349 0.114 0.337 -2.104 0.509 -0.190 -0.279 0.545 -0.250 -0.840 0.065 0.458 0.031 -0.043 -0.365 0.621 -0.484 0.216 0.439 -2.283 0.353 -0.068 -0.147 0.488 -0.435 -0.263 -0.055 0.355 -0.112 0.184 -0.264 0.120 -0.082 0.049 0.438 -2.719 0.545 0.005 -0.247 0.208 -0.002 -0.465 -0.062 -0.001 0.399 0.316 -0.382 0.083 -0.107 0.353 -0.021 -2.192 0.603 0.231 -0.273 0.182 -0.210 -0.211 -0.346 0.197 0.267 -0.365 -0.289 0.622 -0.208 0.417 0.051 -2.233 0.501 -0.440 -0.303 0.501 0.052 -0.603 -0.048 0.291 0.202 0.086 -0.144 0.258 -0.255 0.248 0.380 -1.985 0.331 0.020 0.226 -0.095 -0.185 -0.512 -0.259 0.313 0.288 0.200 -0.395 0.091 0.036 0.262 0.109 -2.054 0.567 -0.060 -0.391 0.379 -0.033 -0.064 -0.283 -0.268 0.476 0.265 -0.323 0.270 -0.336 0.480 -0.092 -1.581 0.414 0.059 -0.253 0.203 -0.047 -0.506 -0.251 0.438 0.139 -0.467 0.040 0.449 -0.179 0.445 -0.016 -1.454 0.361 -0.018 -0.199 0.355 -0.215 -1.219 0.343 0.474 -0.131 -0.458 -0.395 0.506 0.127 -0.052 0.462 -0.507 -0.068 -0.129 -0.161 0.483 -0.334 -1.135 -0.498 1.022 -0.310 0.143 -0.089 0.062 -0.133 0.460 -0.009 -2.326 0.516 -0.184 -0.376 0.482 -0.070 -0.628 -0.012 0.046 0.410 0.281 -0.581 0.414 -0.352 0.542 -0.047 -1.911 0.390 0.104 -0.543 0.482 -0.249 -0.559 -0.323 0.246 0.418 -0.436 -0.390 0.671 -0.144 0.456 -0.210 -1.539 0.505 -0.711 -0.073 0.431 0.124 -0.771 -0.101 0.638 -0.112 0.090 -0.620 0.494 -0.190 0.375 -0.135 -1.223 0.448 0.202 -0.168 -0.015 -0.044 -0.628 -0.326 0.427 0.275 0.122 -0.451 0.272 -0.040 0.373 -0.091 -2.395 0.656 -0.052 -0.483 0.464 -0.088 -0.650 -0.210 0.019 0.570 0.272 -0.548 0.013 0.137 0.595 -0.042 -2.284 0.392 0.281 -0.004 -0.156 -0.169 -0.103 -0.565 0.095 0.405 -0.609 -0.003 0.473 -0.062 0.042 0.266 -2.392 0.658 -0.535 0.060 0.263 0.094 -0.942 0.305 0.133 0.198 -0.094 -0.385 0.482 -0.151 0.261 0.059 -1.875 0.573 -0.200 -0.014 0.159 0.032 -0.665 -0.593 0.866 -0.179 0.134 -0.262 0.064 0.034 0.343 0.072 -2.421 0.579 -0.220 -0.195 0.167 0.195 -0.628 -0.152 -0.036 0.563 0.592 -0.799 -0.189 0.058 0.482 -0.041 -2.274 0.510 0.288 -0.377 -0.070 0.078 -0.064 -0.311 -0.186 0.441 -0.208 -0.413 0.430 0.052 0.383 0.039 -2.402 0.564 -0.341 -0.429 0.019 0.540 -0.385 -0.288 0.162 0.375 0.320 -0.552 0.268 -0.209 0.232 0.189 -2.582 0.603 0.292 -0.219 -0.061 -0.062 -0.107 -0.300 0.113 0.237 0.082 -0.643 -0.274 0.560 0.233 -0.007 -2.688 0.744 -0.098 -0.486 -0.221 0.579 -0.348 -0.605 -0.579 0.916 0.534 -0.741 0.349 -0.558 0.360 0.018 -1.773 0.498 0.066 -0.080 0.103 -0.100 -0.416 -0.225 0.106 0.399 -0.402 -0.270 0.523 -0.034 0.595 -0.079 -1.812 0.331 -0.453 0.173 -0.050 0.234 -0.851 -0.027 0.443 0.144 0.254 -0.976 0.622 -0.395 -0.305 0.296 -1.453 0.675 -0.417 0.206 0.379 -0.327 -0.674 -0.266 0.522 0.144 0.039 -0.147 0.103 -0.006 0.113 0.068 -2.109 0.712 -0.186 -0.157 -0.117 0.381 -0.526 -0.035 -0.141 0.509 0.305 -0.302 0.085 -0.163 0.377 0.157 -2.232 0.458 0.142 -0.089 0.063 -0.132 -0.369 -0.209 0.227 0.251 -0.386 -0.235 0.511 -0.060 0.109 0.042 -2.408 0.768 -0.564 0.115 0.050 0.270 -0.780 -0.204 0.486 0.200 0.269 -0.777 0.477 -0.288 0.084 0.174 -1.917 0.630 0.361 -0.288 0.011 -0.169 -0.551 -0.289 0.465 0.161 0.136 -0.661 0.087 0.271 0.121 0.041 -2.540 0.776 -0.312 -0.504 -0.189 0.689 -0.612 -0.400 -0.057 0.702 0.642 -0.732 -0.280 0.019 0.724 -0.220 -2.445 0.385 0.131 -0.139 -0.084 0.075 -0.110 -0.684 -0.344 0.734 -0.131 -0.307 0.271 0.099 0.186 0.135 -2.612 0.679 0.135 -0.430 0.011 0.204 -0.694 -0.019 0.135 0.375 0.317 -0.706 0.371 -0.239 0.203 0.118 -2.717 0.688 -0.083 -0.175 0.254 -0.033 -0.269 -0.478 0.015 0.528 0.365 -0.736 -0.330 0.396 0.068 0.089 -2.989 0.818 -0.054 -0.512 -0.097 0.486 -0.442 -0.629 -0.479 0.926 Intron LUT 5 4 4 0 0.000 0.896 -0.814 -0.556 -0.167 0.704 0.015 -2.337 0.218 0.329 -0.381 -0.004 -0.031 0.327 -0.628 0.101 0.037 0.243 -0.368 0.066 -0.007 0.400 0.252 -2.494 0.393 -0.109 -0.307 -0.115 0.423 -0.569 0.184 0.125 0.137 0.413 -0.473 0.172 -0.283 0.561 0.127 -2.126 0.267 0.308 -0.111 -0.094 -0.154 -0.154 -0.385 0.386 0.040 0.504 -0.468 -0.335 0.092 0.253 0.363 -2.372 0.410 0.142 -0.388 -0.025 0.201 0.006 -0.325 -0.393 0.522 0.713 -0.569 -0.061 -0.458 1.029 -0.337 -2.062 -0.107 0.267 -0.344 0.162 -0.167 -0.012 -0.513 0.244 0.167 -0.333 0.059 0.177 0.048 0.496 0.054 -1.828 0.344 -0.279 0.041 -0.292 0.412 -0.803 0.177 0.361 0.017 -0.039 -0.622 0.468 -0.010 0.050 0.737 -1.949 0.055 0.024 -0.422 0.289 0.022 -0.464 -0.531 0.654 0.013 0.274 -0.276 -0.072 0.020 0.389 0.234 -2.192 0.374 -0.040 -0.053 -0.090 0.169 -0.412 -0.231 0.074 0.427 0.527 -0.629 0.067 -0.209 0.651 0.014 -1.821 0.185 0.463 -0.323 0.063 -0.362 -0.224 -0.335 0.412 0.030 -0.112 -0.154 0.377 -0.188 0.467 -0.135 -2.083 0.558 0.218 -0.280 -0.071 0.086 -0.411 -0.139 0.480 -0.081 0.312 -0.558 0.394 -0.386 0.459 -0.155 -1.601 0.483 0.295 -0.156 -0.131 -0.054 -0.358 -0.290 0.452 0.048 0.140 -0.498 0.348 -0.124 0.370 0.084 -2.537 0.561 0.137 -0.144 0.021 -0.028 -0.387 0.007 -0.185 0.434 0.673 -0.784 -0.399 0.092 0.867 -0.225 -2.384 0.174 0.287 -0.193 -0.169 0.023 0.368 -0.797 -0.123 0.281 -0.290 0.026 0.160 0.065 0.218 0.319 -2.264 0.466 -0.274 0.198 -0.252 0.247 -0.685 0.172 0.157 0.185 0.274 -0.492 0.218 -0.125 0.339 0.269 -2.393 0.422 0.057 -0.169 -0.006 0.103 -0.125 -0.488 0.337 0.146 0.196 -0.258 -0.217 0.211 0.269 0.058 -2.811 0.689 0.008 -0.158 -0.176 0.279 -0.202 -0.397 -0.355 0.668 0.432 -0.407 0.085 -0.259 0.628 0.191 -2.472 0.179 0.108 -0.233 0.088 0.013 -0.090 -0.296 0.157 0.178 -0.700 0.443 0.208 -0.202 0.478 0.057 -2.000 0.397 -0.570 0.337 -0.064 0.145 -0.965 -0.160 0.552 0.173 0.115 -0.532 0.505 -0.311 0.248 0.459 -2.376 0.317 0.141 0.143 -0.073 -0.248 -0.531 -0.332 0.593 0.008 -0.028 -0.247 0.070 0.172 0.147 0.115 -2.476 0.705 -0.236 -0.129 0.099 0.221 -0.550 -0.202 -0.221 0.669 0.406 -0.403 0.418 -0.779 0.283 0.462 -1.739 0.146 -0.253 0.220 0.371 -0.509 -0.661 0.088 0.318 0.082 -0.318 -0.241 0.704 -0.468 0.547 0.044 -1.655 0.252 -0.270 -0.133 0.453 -0.168 -0.947 0.077 0.489 0.032 -0.458 -0.611 1.033 -0.807 -0.165 0.806 -1.454 -0.008 -0.516 0.105 0.702 -0.741 -0.820 0.081 0.621 -0.254 0.050 -0.284 0.335 -0.183 0.109 0.517 -2.084 0.327 -0.267 -0.187 0.348 0.026 -0.737 0.102 0.031 0.384 0.100 0.045 0.140 -0.332 0.466 0.103 -1.782 0.327 0.289 -0.577 0.311 -0.206 -0.748 0.121 0.179 0.245 -0.740 0.176 0.484 -0.196 0.013 0.202 -2.155 0.693 -0.751 0.597 0.131 -0.326 -1.112 0.107 0.467 0.109 -0.118 -0.752 0.681 -0.182 -0.224 0.436 -1.685 0.565 0.034 -0.040 0.174 -0.193 -0.674 -0.399 0.752 -0.103 0.033 -0.442 0.211 0.115 -0.021 0.075 -2.305 0.814 -0.060 -0.191 0.148 0.080 -0.561 -0.113 -0.099 0.550 0.325 -0.520 0.040 0.031 0.544 -0.034 -2.569 0.482 0.193 -0.195 0.170 -0.221 -0.037 -0.348 0.078 0.243 -0.364 -0.028 0.541 -0.346 0.118 0.336 -2.221 0.524 -0.158 -0.353 0.550 -0.222 -0.839 0.059 0.460 0.034 -0.056 -0.367 0.630 -0.484 0.230 0.446 -2.419 0.354 -0.076 -0.147 0.492 -0.432 -0.253 -0.058 0.355 -0.118 0.173 -0.261 0.124 -0.076 0.053 0.429 -2.800 0.558 0.012 -0.254 0.204 0.002 -0.462 -0.070 -0.000 0.402 0.315 -0.382 0.079 -0.101 0.354 -0.028 -2.254 0.615 0.231 -0.281 0.180 -0.201 -0.215 -0.353 0.196 0.275 -0.380 -0.298 0.629 -0.198 0.432 0.037 -2.359 0.516 -0.431 -0.398 0.539 0.064 -0.596 -0.049 0.289 0.202 0.074 -0.136 0.250 -0.236 0.262 0.382 -2.123 0.343 0.011 0.233 -0.112 -0.166 -0.505 -0.273 0.318 0.288 0.192 -0.402 0.102 0.039 0.265 0.107 -2.098 0.573 -0.062 -0.399 0.387 -0.035 -0.045 -0.293 -0.273 0.472 0.256 -0.320 0.270 -0.325 0.488 -0.102 -1.623 0.423 0.064 -0.284 0.202 -0.025 -0.501 -0.268 0.451 0.132 -0.483 0.041 0.448 -0.164 0.480 -0.053 -1.562 0.381 0.077 -0.408 0.349 -0.123 -1.226 0.348 0.477 -0.140 -0.461 -0.471 0.476 0.216 0.021 0.497 -0.762 -0.023 -0.079 -0.291 0.465 -0.225 -1.122 -0.588 1.051 -0.317 0.149 -0.096 0.060 -0.131 0.490 -0.043 -2.449 0.527 -0.181 -0.409 0.495 -0.065 -0.618 -0.025 0.050 0.412 0.275 -0.581 0.410 -0.334 0.555 -0.056 -2.015 0.402 0.107 -0.574 0.480 -0.224 -0.562 -0.332 0.240 0.430 -0.446 -0.396 0.667 -0.123 0.483 -0.240 -1.671 0.527 -0.682 -0.114 0.353 0.233 -0.764 -0.112 0.643 -0.114 0.083 -0.639 0.491 -0.162 0.411 -0.149 -1.386 0.471 0.212 -0.200 -0.026 -0.016 -0.630 -0.343 0.425 0.290 0.131 -0.461 0.266 -0.035 0.386 -0.111 -2.513 0.671 -0.046 -0.486 0.457 -0.082 -0.651 -0.221 0.023 0.575 0.257 -0.560 0.024 0.150 0.600 -0.044 -2.331 0.395 0.289 -0.002 -0.167 -0.170 -0.105 -0.576 0.104 0.406 -0.623 -0.010 0.480 -0.054 0.054 0.253 -2.519 0.674 -0.496 0.010 0.244 0.137 -0.951 0.311 0.125 0.204 -0.106 -0.404 0.495 -0.142 0.268 0.056 -1.945 0.582 -0.205 -0.014 0.148 0.048 -0.663 -0.607 0.873 -0.183 0.125 -0.262 0.072 0.034 0.357 0.059 -2.465 0.581 -0.224 -0.198 0.170 0.198 -0.630 -0.155 -0.033 0.564 0.594 -0.811 -0.192 0.063 0.491 -0.041 -2.319 0.508 0.290 -0.383 -0.075 0.086 -0.070 -0.305 -0.194 0.448 -0.219 -0.418 0.438 0.053 0.388 0.032 -2.461 0.572 -0.344 -0.450 0.004 0.563 -0.379 -0.291 0.159 0.375 0.316 -0.557 0.272 -0.204 0.229 0.188 -2.652 0.614 0.289 -0.218 -0.067 -0.054 -0.096 -0.303 0.110 0.232 0.072 -0.648 -0.264 0.563 0.236 -0.020 -2.734 0.753 -0.101 -0.491 -0.221 0.583 -0.346 -0.612 -0.584 0.919 0.536 -0.754 0.360 -0.569 0.361 0.011 -1.806 0.508 0.061 -0.078 0.103 -0.096 -0.406 -0.229 0.111 0.392 -0.417 -0.276 0.523 -0.018 0.617 -0.096 -1.893 0.335 -0.437 0.149 -0.127 0.306 -0.856 -0.034 0.450 0.144 0.268 -1.030 0.626 -0.391 -0.279 0.280 -1.770 0.738 -0.445 0.218 0.378 -0.317 -0.671 -0.291 0.533 0.148 0.031 -0.150 0.107 0.000 0.119 0.056 -2.130 0.719 -0.193 -0.163 -0.123 0.394 -0.523 -0.041 -0.141 0.511 0.301 -0.291 0.077 -0.159 0.381 0.158 -2.317 0.467 0.138 -0.087 0.058 -0.125 -0.362 -0.200 0.220 0.246 -0.396 -0.237 0.512 -0.050 0.109 0.037 -2.495 0.781 -0.546 0.065 0.020 0.327 -0.780 -0.211 0.489 0.202 0.268 -0.800 0.483 -0.280 0.088 0.172 -1.988 0.640 0.369 -0.295 -0.004 -0.159 -0.548 -0.294 0.467 0.161 0.129 -0.672 0.096 0.274 0.124 0.030 -2.583 0.784 -0.316 -0.506 -0.192 0.694 -0.614 -0.409 -0.050 0.703 0.639 -0.736 -0.281 0.028 0.733 -0.228 -2.476 0.383 0.128 -0.138 -0.091 0.084 -0.111 -0.689 -0.346 0.737 -0.136 -0.305 0.268 0.107 0.193 0.126 -2.739 0.692 0.168 -0.496 -0.016 0.237 -0.700 -0.021 0.132 0.382 0.313 -0.719 0.381 -0.238 0.203 0.118 -2.807 0.697 -0.094 -0.169 0.254 -0.027 -0.271 -0.485 0.016 0.532 0.355 -0.747 -0.320 0.404 0.076 0.076 -3.041 0.824 -0.050 -0.522 -0.100 0.490 -0.450 -0.645 -0.483 0.936 Repeat LUT 1 0 5 0 0 -1 -1 -1 -1 1 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 -0.140 0.463 0.531 -1.895 -0.026 0.296 -0.132 -0.189 -0.019 0.383 0.218 -0.872 -0.449 0.938 -0.828 -0.342 -0.534 -0.144 0.874 -0.807 -0.117 0.371 -0.189 -0.141 -0.816 0.272 0.809 -1.079 -1.347 0.589 0.196 -0.063 0.415 -0.229 0.295 -0.769 -0.216 0.281 -0.081 -0.031 0.315 0.193 -0.167 -0.469 -1.322 0.456 0.543 -0.374 -0.713 0.205 0.641 -0.561 -0.405 0.575 -0.570 0.113 -0.517 0.180 -0.090 0.297 -1.520 0.542 0.007 0.251 N-11 LUT 3 2 4 0 0.000 0.324 -0.038 0.402 -1.145 -0.193 0.524 -0.541 0.000 0.082 0.193 0.193 -0.608 -0.541 0.322 -1.415 0.755 -0.721 0.547 0.654 -1.476 0.027 0.243 -0.178 -0.130 -0.919 0.805 0.285 -0.984 -0.668 0.211 0.309 -0.037 0.128 -0.024 0.317 -0.562 -0.585 0.360 -0.074 0.138 -0.025 0.534 -0.130 -0.610 -1.273 0.548 0.178 -0.010 -0.066 0.182 0.457 -0.896 -0.389 0.316 -1.055 0.595 -0.610 0.439 0.056 -0.075 -1.469 0.396 -0.322 0.607 N-10 LUT 3 2 4 0 0.000 0.311 -0.619 0.512 -0.552 0.460 0.260 -0.835 -0.207 0.118 0.352 -0.095 -0.510 -0.649 0.646 -1.524 0.535 -0.923 0.165 0.850 -0.864 0.115 0.346 -0.413 -0.160 -0.430 0.570 0.289 -0.860 -0.966 0.282 0.444 -0.133 0.179 -0.143 0.709 -1.612 0.010 0.187 -0.191 -0.032 -0.260 0.706 -0.043 -0.829 -1.470 0.193 0.499 0.115 -0.150 0.172 0.310 -0.449 -0.108 0.173 -0.745 0.431 -0.419 0.405 0.129 -0.261 -1.161 -0.017 0.205 0.497 N-9 LUT 3 2 4 0 0.000 0.163 -0.506 0.589 -0.573 0.322 0.129 -0.476 -0.093 -0.048 0.206 0.134 -0.356 -0.605 0.454 -0.190 0.132 -0.697 -0.234 1.138 -1.585 0.022 -0.162 0.259 -0.162 -1.161 -0.121 1.095 -1.009 -1.415 0.382 0.636 -0.381 0.347 -0.653 0.806 -1.538 -0.023 -0.222 0.290 -0.095 0.128 0.008 0.292 -0.562 -1.132 0.167 0.722 -0.373 0.038 -0.122 0.697 -1.209 0.008 0.157 -0.428 0.185 -0.337 0.068 0.407 -0.261 -1.388 0.569 0.016 0.168 N-8 LUT 3 2 4 0 0.000 0.166 0.340 -0.119 -0.534 0.074 0.627 -0.926 -0.189 -0.173 0.638 -0.059 -0.746 -0.495 0.631 -0.632 0.133 -0.993 0.110 0.896 -0.841 -0.210 0.341 0.064 -0.279 -1.275 0.820 0.331 -0.828 -1.184 0.566 0.138 -0.029 0.063 0.098 0.538 -1.207 -0.556 0.590 -0.174 -0.108 -0.338 0.576 0.090 -0.613 -0.957 0.043 0.656 -0.186 -0.518 0.345 0.415 -0.518 -0.615 0.743 -0.807 0.140 -0.022 0.393 0.037 -0.563 -1.269 0.316 0.093 0.349 N-7 LUT 3 2 4 0 0.000 -0.239 -0.423 0.899 -0.883 0.227 0.549 -1.188 -0.110 0.014 0.286 -0.100 -0.255 -0.358 0.642 -1.188 0.286 -0.301 -0.109 0.822 -1.021 -0.333 0.596 -0.676 0.096 -0.861 0.383 0.673 -0.861 -0.237 0.188 0.362 -0.459 0.069 0.157 0.391 -0.931 -0.044 0.473 -0.237 -0.334 0.039 0.443 -0.076 -0.591 -1.499 0.260 0.582 -0.070 -0.093 0.248 0.170 -0.415 -0.489 0.364 -0.688 0.464 -0.350 0.650 -0.350 -0.213 -0.861 0.318 0.213 0.061 N-6 LUT 3 2 4 0 0.000 0.000 -0.771 1.049 -1.536 0.175 -0.369 0.216 -0.096 -0.015 -0.015 0.590 -0.956 -0.524 0.284 -0.021 0.139 -1.131 -0.527 1.280 -1.251 -0.326 -0.556 0.674 -0.110 -0.541 0.044 0.760 -0.764 -1.515 -0.383 1.082 -0.383 -0.576 -0.799 1.171 -0.991 -0.064 0.135 0.050 -0.136 0.015 -0.045 0.570 -0.899 -1.939 -0.408 0.958 0.061 0.380 -0.568 0.325 -0.375 0.017 -0.017 -0.205 0.180 -0.594 -0.295 0.636 -0.047 -0.977 -0.023 0.577 0.023 N-5 LUT 3 2 4 0 0.000 -0.309 0.402 0.361 -0.768 0.105 0.505 -1.539 0.216 -0.100 0.543 0.085 -0.864 -0.670 0.678 -0.807 0.263 -0.932 -0.102 0.957 -0.732 -0.345 0.385 -0.307 0.135 -1.054 0.670 0.441 -0.813 -1.211 0.395 0.288 0.047 -0.238 0.084 0.739 -1.238 -0.272 0.300 -0.543 0.327 0.087 0.126 0.067 -0.322 -0.820 0.389 0.134 0.038 -0.273 -0.399 0.897 -0.858 -0.254 0.403 -1.254 0.505 -0.763 0.329 0.364 -0.204 -1.470 0.404 0.032 0.371 N-4 LUT 3 2 4 0 0.000 0.268 -0.016 0.415 -1.080 0.678 0.478 -1.492 -0.617 0.069 0.579 -0.032 -1.059 -1.342 1.208 -1.565 -0.062 -0.254 -0.047 0.904 -1.632 0.082 0.705 -0.314 -0.977 -0.154 0.772 0.225 -2.154 -0.660 0.836 0.147 -1.075 -0.238 0.169 0.648 -1.118 0.228 0.756 -0.522 -1.174 0.199 0.607 -0.031 -1.513 -0.892 0.883 0.108 -0.892 0.294 -0.369 0.368 -0.495 -0.314 1.160 -1.899 -0.530 0.119 0.515 -0.085 -0.881 -0.962 0.920 -0.165 -0.509 N-3 LUT 3 2 4 0 0.000 0.720 -1.194 0.749 -2.087 1.466 -0.977 -0.890 -2.392 1.044 -1.430 0.488 -2.600 -0.248 -0.248 0.691 -0.511 0.314 -2.512 1.257 -2.387 1.292 -1.631 0.196 -3.585 0.585 -2.415 1.129 -3.000 0.315 -1.194 0.988 -1.573 0.930 -3.143 0.857 -2.558 1.265 -2.312 0.273 -2.412 1.335 -2.285 0.200 -3.022 0.322 -0.737 1.000 -2.737 0.678 -1.322 0.888 -2.737 1.076 -1.266 0.251 -1.802 0.958 -1.429 0.456 -1.670 0.756 -0.907 0.462 -1.322 N-2 LUT 3 2 4 0 0.000 0.733 0.263 -0.322 -1.563 0.752 -0.663 -1.663 0.453 0.235 0.859 -1.131 -0.856 0.216 0.746 -1.369 -0.369 0.184 0.442 0.111 -1.231 0.446 0.492 -1.338 -0.260 -0.474 1.263 -0.871 -1.585 -0.415 1.059 -0.778 -0.778 0.745 0.180 -0.498 -1.048 0.767 -0.385 -1.233 0.146 0.058 1.012 -0.965 -1.218 -0.858 0.464 -0.536 0.464 0.000 0.619 0.147 -1.485 0.385 -0.155 -1.030 0.385 -0.128 1.100 -1.557 -0.734 -0.678 0.585 0.170 -0.415 N-1 LUT 3 2 4 0 0.000 -0.252 -0.110 1.055 -2.682 -0.817 1.403 -1.217 -1.486 -0.406 0.494 0.698 -2.225 -1.449 1.645 -2.150 -1.828 -0.568 -0.916 1.458 -4.375 -0.158 0.666 0.229 -1.536 -0.202 0.646 0.061 -0.939 -2.346 0.927 0.391 -0.761 -0.381 0.678 0.444 -1.878 -1.063 1.350 -0.654 -1.572 -0.483 0.517 0.581 -1.483 -1.322 1.138 0.000 -1.322 -0.170 -0.433 0.567 -0.170 -0.206 1.341 -1.585 -1.907 0.000 0.415 0.415 -1.585 -1.273 1.049 -0.273 -0.536 A LUT 3 2 4 0 0.000 1.974 -5.366 -5.366 -5.366 1.980 -5.801 -5.801 -5.801 1.989 -6.615 -6.615 -6.615 1.893 -3.392 -3.392 -3.392 1.971 -5.248 -5.248 -5.248 1.994 -7.433 -7.433 -7.433 1.972 -5.267 -5.267 -5.267 1.953 -4.539 -4.539 -4.539 1.953 -4.539 -4.539 -4.539 1.975 -5.435 -5.435 -5.435 1.977 -5.562 -5.562 -5.562 1.862 -3.044 -3.044 -3.044 1.853 -2.954 -2.954 -2.954 1.980 -5.788 -5.788 -5.788 1.931 -4.000 -4.000 -4.000 1.874 -3.170 -3.170 -3.170 T LUT 3 2 4 0 0.000 -6.745 -6.745 -6.745 1.990 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.340 -8.340 -8.340 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.620 -7.620 -7.620 1.994 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.585 -5.585 -5.585 1.977 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.394 -9.394 1.998 -9.394 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.426 -0.836 1.076 -0.769 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.531 -0.377 0.152 -0.568 -0.420 0.779 -1.144 0.117 0.014 1.056 -0.766 -1.628 -2.389 1.288 -0.855 -0.297 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -0.776 0.169 0.861 -1.072 -0.120 0.263 -0.322 0.111 -1.253 0.455 0.198 0.088 -1.652 0.295 0.710 -0.290 -0.888 -1.040 1.345 -1.209 -0.517 -0.331 0.210 0.432 -0.939 0.383 0.564 -0.524 -1.558 -0.728 1.360 -1.027 -0.667 -0.310 0.935 -0.617 -0.935 -0.020 0.620 -0.068 -0.302 0.294 0.381 -0.599 -2.075 -0.298 1.183 -0.561 -2.459 0.541 -2.459 1.126 -1.085 0.012 0.343 0.324 -3.858 -0.536 1.351 -0.536 -2.070 0.466 0.466 0.000 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.291 -0.206 0.239 -0.455 0.554 -0.089 -0.533 -0.150 -0.076 0.012 0.260 -0.242 0.301 -0.164 0.072 -0.279 0.498 -0.213 -0.766 0.186 -0.310 0.388 -0.083 -0.089 -7.864 -7.864 -7.864 1.995 1.995 -7.864 -7.864 -7.864 1.995 -7.864 -7.864 -7.864 TAG WMM 9 6 4 0 0.000 0.380 -0.228 0.153 -0.449 0.369 -0.068 -0.292 -0.092 -0.311 0.315 0.278 -0.439 0.278 0.009 -0.092 -0.246 0.220 -0.193 -0.535 0.345 -0.579 0.392 0.265 -0.292 -7.568 -7.568 -7.568 1.994 1.994 -7.568 -7.568 -7.568 -7.568 -7.568 1.994 -7.568 TGA WMM 9 6 4 0 0.000 0.237 -0.080 0.274 -0.586 0.468 -0.059 -0.479 -0.090 -0.299 0.220 0.224 -0.228 0.128 0.128 0.054 -0.367 0.617 -0.299 -0.890 0.155 -0.624 0.710 0.274 -0.984 -8.194 -8.194 -8.194 1.996 -8.194 -8.194 1.996 -8.194 1.996 -8.194 -8.194 -8.194 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/worm0000644000175000017500000013501411424066010014260 0ustar moellermoellerzoeHMM Ce 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.977636 Inter Esngl 0.022364 Inter ORF 1 Intron Eterm 0.160251 Intron Exon 0.839749 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.488562 0.297386 0.214052 0.594784 0.189567 0.215649 0.557522 0.222503 0.219975 0.582938 0.194313 0.222749 0.816676 0.183324 0.862282 0.137718 0.861538 0.138462 Einit 2 DEFINED 0 249 -9.426 -9.329 -9.239 -9.153 -9.073 -8.996 -8.924 -8.855 -8.789 -8.726 -8.665 -8.610 -8.556 -8.505 -8.455 -8.406 -8.360 -8.315 -8.271 -8.228 -8.187 -8.142 -8.098 -8.055 -8.014 -7.974 -7.935 -7.897 -7.860 -7.824 -7.789 -7.760 -7.731 -7.703 -7.675 -7.648 -7.621 -7.595 -7.569 -7.544 -7.519 -7.494 -7.469 -7.444 -7.420 -7.397 -7.373 -7.350 -7.328 -7.305 -7.283 -7.266 -7.249 -7.233 -7.216 -7.200 -7.183 -7.167 -7.152 -7.136 -7.120 -7.125 -7.130 -7.135 -7.140 -7.145 -7.150 -7.155 -7.160 -7.165 -7.170 -7.183 -7.197 -7.211 -7.225 -7.239 -7.253 -7.267 -7.282 -7.296 -7.311 -7.322 -7.333 -7.344 -7.356 -7.367 -7.379 -7.391 -7.402 -7.414 -7.426 -7.441 -7.457 -7.472 -7.488 -7.503 -7.519 -7.536 -7.552 -7.568 -7.585 -7.591 -7.596 -7.602 -7.608 -7.613 -7.619 -7.625 -7.630 -7.636 -7.642 -7.656 -7.670 -7.685 -7.699 -7.714 -7.728 -7.743 -7.758 -7.773 -7.789 -7.804 -7.820 -7.836 -7.852 -7.868 -7.885 -7.901 -7.918 -7.935 -7.952 -7.973 -7.993 -8.014 -8.035 -8.057 -8.079 -8.101 -8.124 -8.147 -8.170 -8.187 -8.204 -8.221 -8.239 -8.256 -8.274 -8.292 -8.311 -8.329 -8.348 -8.377 -8.406 -8.436 -8.467 -8.498 -8.530 -8.563 -8.596 -8.630 -8.665 -8.677 -8.689 -8.701 -8.714 -8.726 -8.738 -8.751 -8.763 -8.776 -8.789 -8.807 -8.825 -8.844 -8.863 -8.882 -8.901 -8.921 -8.941 -8.961 -8.981 -8.990 -8.999 -9.008 -9.017 -9.026 -9.035 -9.045 -9.054 -9.063 -9.073 -9.079 -9.085 -9.092 -9.098 -9.104 -9.111 -9.117 -9.124 -9.130 -9.137 -9.173 -9.211 -9.249 -9.289 -9.329 -9.371 -9.414 -9.459 -9.505 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.574 -9.596 -9.619 -9.642 -9.665 -9.689 -9.714 -9.738 -9.763 -9.789 -9.794 -9.799 -9.804 -9.810 -9.815 -9.820 -9.825 -9.831 -9.836 -9.841 -9.847 -9.852 -9.857 -9.863 -9.868 -9.874 -9.879 -9.885 -9.890 GEOMETRIC 250 -1 127 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -11.438 -11.375 -11.315 -11.257 -11.202 -11.148 -11.097 -11.047 -10.999 -10.953 -10.907 -10.875 -10.842 -10.811 -10.780 -10.750 -10.720 -10.691 -10.663 -10.635 -10.608 -10.555 -10.504 -10.454 -10.406 -10.360 -10.315 -10.272 -10.229 -10.188 -10.148 -10.023 -9.907 -9.801 -9.701 -9.608 -9.520 -9.438 -9.360 -9.286 -9.216 -9.148 -9.084 -9.023 -8.964 -8.907 -8.853 -8.801 -8.750 -8.701 -8.654 -8.621 -8.590 -8.559 -8.529 -8.499 -8.470 -8.442 -8.414 -8.387 -8.360 -8.334 -8.308 -8.282 -8.257 -8.233 -8.209 -8.185 -8.162 -8.139 -8.116 -8.091 -8.066 -8.041 -8.017 -7.993 -7.970 -7.947 -7.924 -7.902 -7.880 -7.873 -7.866 -7.860 -7.853 -7.846 -7.840 -7.833 -7.827 -7.820 -7.813 -7.784 -7.755 -7.726 -7.699 -7.671 -7.644 -7.618 -7.592 -7.567 -7.542 -7.532 -7.523 -7.513 -7.504 -7.494 -7.485 -7.476 -7.466 -7.457 -7.448 -7.449 -7.450 -7.451 -7.452 -7.453 -7.454 -7.455 -7.456 -7.457 -7.458 -7.469 -7.481 -7.492 -7.504 -7.515 -7.527 -7.539 -7.550 -7.562 -7.574 -7.596 -7.617 -7.639 -7.661 -7.683 -7.706 -7.729 -7.752 -7.776 -7.801 -7.802 -7.803 -7.804 -7.806 -7.807 -7.808 -7.810 -7.811 -7.812 -7.813 -7.817 -7.821 -7.825 -7.829 -7.833 -7.837 -7.841 -7.845 -7.849 -7.853 -7.862 -7.872 -7.881 -7.891 -7.901 -7.910 -7.920 -7.930 -7.940 -7.950 -7.953 -7.955 -7.958 -7.961 -7.964 -7.967 -7.970 -7.973 -7.976 -7.979 -8.014 -8.050 -8.087 -8.126 -8.165 -8.205 -8.247 -8.290 -8.334 -8.379 -8.418 -8.458 -8.499 -8.542 -8.586 -8.631 -8.677 -8.725 -8.775 -8.827 -8.840 -8.853 -8.866 -8.880 -8.894 -8.907 -8.921 -8.935 -8.950 -8.964 -8.996 -9.029 -9.063 -9.097 -9.132 -9.168 -9.205 -9.243 -9.282 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.330 -9.337 -9.345 -9.352 -9.360 -9.368 -9.375 -9.383 -9.391 -9.398 -9.395 -9.391 -9.387 -9.383 -9.379 -9.375 -9.371 -9.368 -9.364 GEOMETRIC 250 -1 185 Exon 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 304 ORF 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.566 -0.823 -1.163 0.592 0.629 -0.682 -1.408 0.540 0.614 -0.734 -1.400 0.578 0.608 -0.707 -1.360 0.563 0.615 -0.732 -1.376 0.572 0.620 -0.697 -1.325 0.540 0.644 -0.737 -1.512 0.581 0.712 -0.747 -1.556 0.521 0.777 -0.788 -1.778 0.515 0.883 -0.931 -1.804 0.443 1.024 -1.052 -1.926 0.305 1.034 -1.062 -1.891 0.287 0.769 -0.863 -1.967 0.592 0.591 -0.780 -1.534 0.663 0.502 -0.783 -1.543 0.746 0.446 -0.791 -1.556 0.797 0.457 -0.655 -1.556 0.741 0.554 -0.651 -1.778 0.698 0.690 -1.258 -1.852 0.775 0.752 -1.711 -1.897 0.817 0.184 -1.658 -2.021 1.215 -2.269 -2.836 -4.033 1.853 -5.137 -4.219 -6.432 1.974 -1.448 -0.714 -1.424 1.420 -2.973 1.746 -7.569 -0.897 2.008 -9.891 -9.891 -9.891 -9.891 -9.891 2.008 -9.891 0.693 -0.744 0.360 -0.923 0.229 -0.497 -0.599 0.569 0.244 -0.157 -0.471 0.289 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.292 -0.792 0.070 0.200 0.198 -0.545 -0.661 0.618 0.723 -0.470 -1.516 0.354 -1.500 -0.183 0.489 0.446 0.820 -1.012 -0.057 -0.363 1.158 -1.708 -0.488 -0.417 0.817 -1.016 -0.571 0.098 -0.886 -0.071 -0.323 0.772 0.619 -1.009 -0.287 0.198 0.251 -0.418 -1.040 0.656 1.369 -1.011 -2.047 -0.560 -0.747 -0.402 -0.203 0.831 . 0.674 . 1.266 0.471 -0.710 -0.292 0.246 . 0.021 0.770 0.355 -0.815 0.314 0.208 0.046 0.215 -0.421 0.025 0.104 0.323 -0.241 -0.441 0.223 0.381 -0.246 -1.709 0.631 -1.810 -0.009 0.175 0.671 0.571 -0.533 0.002 -0.283 1.079 -1.233 -0.165 -0.812 0.271 -0.246 -1.459 0.666 -0.852 0.173 0.027 0.378 0.216 -0.566 0.030 0.192 0.099 -0.124 -0.323 0.278 1.182 -1.074 -1.424 -0.178 -1.037 0.136 0.223 0.318 . 1.005 . 0.995 0.190 -0.931 0.170 0.274 . 0.182 0.510 0.528 -1.963 0.385 0.140 0.417 0.376 -1.038 0.477 -0.280 0.351 -0.705 -0.270 0.359 0.923 -0.294 -1.245 -0.206 -2.051 -0.292 0.357 0.732 0.587 -0.647 0.204 -0.500 1.128 -1.541 -0.093 -0.905 0.544 -0.935 -0.412 0.343 -1.410 0.213 0.086 0.488 0.428 -1.026 -0.087 0.289 0.095 -0.490 -0.453 0.575 1.416 -1.653 -1.881 -0.431 -1.877 0.007 -0.021 0.797 . 0.923 . 1.074 0.339 -0.758 0.151 0.047 . 0.430 0.180 0.604 -1.320 0.204 0.235 0.346 0.182 -0.581 -0.072 0.317 0.491 -0.873 -0.582 0.466 0.443 -0.222 -1.585 0.536 -1.678 -0.460 0.282 0.803 0.647 -0.702 -0.195 -0.081 1.179 -1.786 -0.339 -0.610 0.709 -0.897 -0.851 0.350 -0.963 -0.039 -0.262 0.748 0.368 -0.934 -0.179 0.381 0.285 -0.826 -0.932 0.760 1.349 -1.726 -1.462 -0.346 -0.776 -0.495 0.029 0.753 . 0.558 . 1.338 0.362 -0.638 -0.188 0.256 . -0.027 0.570 0.618 -0.681 0.098 0.513 -0.186 0.481 -0.910 -0.190 0.257 0.475 -1.094 -0.822 0.656 0.596 -0.401 -1.369 0.426 -1.434 -0.372 0.326 0.681 0.787 -1.078 -0.136 -0.168 1.121 -2.082 -0.213 -0.462 0.471 -1.084 -0.766 0.637 -1.091 -0.411 -0.282 0.968 0.500 -0.719 -0.497 0.344 0.497 -0.695 -1.069 0.579 1.506 -1.246 -2.159 -0.961 -0.632 -0.271 -0.497 0.862 . 0.744 . 1.218 0.610 -0.885 -0.469 0.275 . 0.090 0.604 0.501 -1.148 0.396 0.014 0.291 0.105 -0.158 0.141 -0.111 0.382 -0.090 -0.585 0.126 0.467 -0.043 -1.805 0.445 -1.414 0.442 -0.017 0.354 0.558 -0.562 -0.319 0.069 1.232 -2.228 -0.228 -0.775 0.419 -0.593 -1.252 0.660 -0.656 0.242 -0.146 0.355 0.200 -0.461 -0.183 0.315 -0.053 0.584 -1.425 0.219 1.176 -0.665 -1.746 -0.300 -0.740 0.463 -0.502 0.397 . 1.113 . 0.877 0.614 -0.393 -0.161 -0.298 . 0.434 0.390 0.420 -1.415 0.951 -0.061 -0.447 0.483 -0.957 -0.127 0.228 0.386 -1.194 0.142 0.205 0.688 -0.177 -1.177 0.088 -1.598 -0.453 0.237 0.816 0.623 -1.535 0.235 -0.092 0.742 -1.405 0.319 -0.511 0.452 -0.505 -0.892 0.474 -1.039 -0.372 0.524 0.381 0.400 -1.126 -0.251 0.467 0.269 -0.969 -0.045 0.394 1.255 -0.879 -1.954 -0.302 -0.939 -0.583 0.052 0.827 . 0.702 . 1.247 0.332 -1.114 0.283 0.087 . 0.068 0.216 0.840 -1.318 0.162 0.380 0.238 0.609 -0.648 -0.503 0.178 0.584 -0.740 -0.872 0.438 0.717 -0.528 -2.017 0.501 -1.523 0.006 -0.165 0.812 0.859 -1.010 -0.438 -0.072 1.272 -2.130 -0.478 -0.645 0.314 -0.569 -1.192 0.719 -0.875 -0.074 -0.695 0.916 0.450 -0.877 -1.073 0.691 0.386 -0.381 -1.347 0.616 1.387 -1.341 -2.237 -0.363 -0.275 -0.066 -0.438 0.566 . 0.365 . 1.439 0.552 -0.634 -0.885 0.431 . 0.128 0.128 0.859 -0.646 0.180 0.180 0.131 0.570 -0.754 -0.336 0.176 0.415 -0.475 -1.197 0.595 0.794 -0.702 -1.330 0.327 -1.275 -0.123 0.386 0.445 0.874 -1.045 -0.277 -0.223 1.151 -1.451 -0.815 -0.242 0.476 -0.753 -0.651 0.463 -1.129 0.086 -0.849 0.946 0.555 -0.918 -0.376 0.300 0.538 -0.161 -1.964 0.483 1.234 -1.013 -1.868 -0.187 -0.759 -0.283 -0.621 0.954 . 0.652 . 1.280 0.445 -0.428 -0.523 0.262 . 0.187 0.482 0.551 -0.828 0.541 -0.241 0.183 0.239 -0.418 0.187 -0.100 0.572 -0.153 -0.913 0.115 0.487 -0.441 -1.457 0.582 -1.724 0.173 0.205 0.503 0.668 -0.868 -0.010 -0.201 1.014 -1.239 -0.065 -0.735 0.384 -0.524 -1.070 0.608 -0.465 -0.021 -0.124 0.456 0.213 -0.568 0.203 0.023 0.166 0.305 -0.972 0.180 1.045 -0.978 -1.394 0.068 -1.082 0.399 -0.082 0.338 . 0.991 . 1.009 0.469 -0.169 -0.230 -0.195 . 0.217 0.497 0.512 -1.382 0.920 -0.457 -0.007 0.477 -0.865 -0.018 0.099 0.633 -0.592 -0.386 0.029 0.730 -0.255 -0.945 -0.023 -0.925 -0.358 0.255 0.585 0.595 -0.650 -0.173 -0.051 0.794 -1.480 -0.077 -0.060 0.481 -1.069 -0.484 0.499 -1.301 0.359 -0.509 0.686 0.166 -1.052 -0.052 0.517 0.199 -0.538 -0.589 0.584 1.324 -1.034 -2.404 -0.288 -0.327 -0.631 -0.304 0.805 . 0.879 . 1.111 0.357 -0.616 0.137 -0.049 . 0.209 0.472 0.544 -1.061 0.348 -0.264 0.500 0.535 -0.271 -0.996 0.288 0.437 -0.181 -0.889 0.292 0.729 -0.179 -2.262 0.323 -1.458 -0.028 0.062 0.689 0.789 -0.950 -0.282 -0.101 1.049 -1.399 -0.512 -0.233 0.358 -0.740 -1.062 0.714 -1.392 0.094 -0.576 0.911 0.497 -0.711 -0.720 0.455 0.446 -0.348 -1.501 0.584 1.252 -1.192 -2.225 -0.050 -0.676 0.059 -0.328 0.619 . 0.671 . 1.268 0.455 -0.534 -0.307 0.177 . 0.172 0.366 0.664 -0.828 0.231 0.029 0.313 0.555 -0.498 -0.364 0.065 0.692 -0.491 -1.115 0.277 0.576 -0.266 -0.915 0.198 -1.386 -0.148 0.254 0.607 0.830 -0.677 -0.291 -0.358 0.973 -0.926 -0.642 -0.201 0.668 -0.799 -0.427 0.128 -0.613 0.011 -0.404 0.663 0.539 -0.628 -0.577 0.298 0.384 -0.322 -1.005 0.482 1.420 -0.611 -2.296 -1.103 -0.718 -0.303 -0.176 0.762 . 0.536 . 1.351 0.664 -0.468 -0.390 -0.106 . 0.345 0.536 0.357 -0.887 0.568 -0.381 0.273 0.204 -0.277 -0.085 0.111 0.512 -0.214 -1.114 0.321 0.461 -0.205 -1.663 0.526 -1.977 0.336 -0.042 0.597 0.622 -0.546 -0.124 -0.221 1.214 -1.396 -0.589 -0.655 0.525 -0.665 -1.392 0.632 -0.968 0.248 -0.129 0.472 0.272 -0.320 -0.218 0.178 -0.032 0.467 -1.295 0.301 1.189 -0.676 -1.669 -0.360 -1.082 0.442 -0.544 0.569 . 1.230 . 0.726 0.320 0.001 -0.177 -0.206 . 0.270 0.477 0.488 -2.098 1.050 -0.275 -0.201 0.497 -0.761 -0.027 0.025 0.714 -0.777 -0.593 0.155 0.775 0.172 -1.550 -0.286 -1.328 -0.373 0.417 0.580 0.746 -0.677 -0.148 -0.332 1.109 -1.537 -0.447 -0.386 0.591 -0.970 -0.610 0.409 -1.294 0.756 -0.446 0.226 0.539 -0.946 -0.273 0.264 0.410 -0.764 -0.852 0.612 1.182 -0.696 -2.429 -0.107 -0.574 -0.277 -0.212 0.713 . 0.957 . 1.041 0.621 -0.939 -0.235 0.126 . 0.703 0.283 0.209 -1.177 0.749 -0.229 0.035 0.501 -0.647 -0.409 0.254 0.429 -0.311 -0.921 0.399 0.584 -0.346 -1.784 0.510 -1.591 -0.080 0.157 0.684 0.815 -0.793 -0.496 -0.067 1.243 -1.695 -0.627 -0.562 0.673 -0.774 -0.912 0.367 -0.854 0.234 -0.400 0.597 0.399 -0.717 -0.502 0.450 0.289 -0.144 -1.252 0.539 1.347 -1.115 -2.031 -0.416 -0.598 -0.048 -0.062 0.500 . 0.612 . 1.306 0.383 -0.254 -0.481 0.189 . 0.274 0.545 0.414 -0.801 0.551 0.151 -0.234 frame2 LUT 5 4 4 0 0.000 -0.098 -0.139 0.460 -0.354 0.311 -0.929 0.106 0.212 0.606 -0.303 -0.221 -0.306 -0.356 -0.087 0.728 -0.690 0.440 -0.308 -0.130 -0.118 0.302 -0.897 0.629 -0.550 0.583 -0.763 0.103 -0.253 -0.780 0.083 0.804 -0.707 0.446 -0.618 0.294 -0.397 0.334 -0.305 -0.051 -0.051 0.740 -0.016 -0.318 -0.893 -0.491 -0.223 0.817 -0.579 0.368 -0.540 -0.270 0.253 0.608 -0.898 0.344 -0.577 0.326 -0.261 0.278 -0.516 -0.715 0.151 0.632 -0.453 0.149 -0.074 0.288 -0.472 0.362 -1.197 0.566 -0.326 0.288 0.081 -0.143 -0.295 -0.429 0.183 0.244 -0.091 0.308 -0.105 0.131 -0.440 0.369 -0.606 0.726 -1.334 0.519 -0.416 0.047 -0.350 -0.749 0.210 0.640 -0.536 0.482 -0.466 0.183 -0.426 0.275 0.226 0.134 -0.935 0.626 -0.212 -0.171 -0.503 -0.903 0.137 0.919 -1.074 -0.046 0.094 -0.127 0.067 0.328 -0.694 0.375 -0.270 0.477 -0.575 0.360 -0.615 -1.224 0.546 0.355 -0.263 0.060 -0.623 0.669 -0.477 0.266 -1.358 0.707 -0.369 0.272 0.107 0.037 -0.535 -0.537 -0.322 0.829 -0.446 0.402 -0.462 0.208 -0.326 0.489 -0.955 0.616 -0.867 0.505 -0.625 0.225 -0.388 -0.840 0.088 0.796 -0.639 0.339 -0.547 0.304 -0.293 -0.121 -0.205 0.535 -0.389 0.370 0.447 -0.691 -0.463 -1.103 0.195 0.822 -0.684 -0.032 0.028 -0.107 0.103 0.589 -1.064 0.441 -0.600 0.712 -0.627 -0.024 -0.453 -0.676 0.283 0.473 -0.378 . . . . 0.510 -0.746 0.226 -0.306 . . . . -0.651 -0.032 0.467 0.005 0.382 -0.477 0.116 -0.160 0.452 -0.671 0.399 -0.544 0.545 -0.749 0.208 -0.338 -0.856 0.130 0.646 -0.343 . . . . 0.419 -0.334 -0.282 0.067 0.361 -0.199 0.220 -0.557 -0.493 -0.114 0.719 -0.477 0.177 -0.413 -0.012 0.172 0.156 -0.132 0.122 -0.177 0.557 -0.897 0.428 -0.629 -0.628 -0.434 0.777 -0.153 0.390 -0.514 0.215 -0.271 0.332 -1.027 0.299 0.030 0.400 -0.300 0.164 -0.419 -0.309 -0.153 0.509 -0.200 0.505 -0.596 -0.239 0.100 0.451 -0.748 0.478 -0.634 0.446 -1.133 0.084 0.167 -0.802 -0.143 0.682 -0.125 0.708 -0.960 0.168 -0.455 0.566 -0.724 0.101 -0.248 0.726 0.026 -0.389 -0.827 -0.270 -0.464 0.706 -0.297 0.353 -0.544 -0.209 0.228 0.646 -0.950 0.219 -0.409 0.387 -0.310 0.102 -0.300 -0.795 0.035 0.586 -0.155 0.166 0.005 0.130 -0.358 0.440 -0.776 0.514 -0.664 0.139 0.042 0.100 -0.326 -0.472 0.516 0.097 -0.359 0.234 -0.285 0.234 -0.273 0.091 -1.052 0.963 -0.993 0.540 -0.710 0.078 -0.185 -0.794 0.324 0.707 -0.889 0.490 -0.451 -0.002 -0.209 0.239 -0.058 0.264 -0.604 0.467 0.173 -0.258 -0.611 -0.482 0.345 0.527 -0.804 0.157 0.201 -0.085 -0.334 0.148 -0.242 0.339 -0.356 0.445 -0.453 0.155 -0.332 -1.048 0.572 0.358 -0.419 0.165 -0.666 0.550 -0.350 0.291 -1.201 0.625 -0.324 0.385 -0.154 0.012 -0.345 -0.321 -0.306 0.614 -0.218 0.344 -0.616 0.248 -0.167 0.415 -1.251 0.673 -0.617 0.483 -1.167 0.127 0.092 -0.775 -0.291 0.832 -0.291 0.444 -0.669 0.360 -0.461 0.178 -0.755 0.560 -0.320 0.084 0.390 -0.573 -0.063 -0.694 -0.166 0.805 -0.427 0.017 -0.199 -0.038 0.193 0.382 -1.005 0.601 -0.553 0.195 -0.495 0.395 -0.267 -1.084 0.015 0.724 -0.207 . . . . 0.528 -0.581 0.151 -0.360 . . . . -0.413 0.085 0.437 -0.263 0.491 -0.481 -0.441 0.191 0.620 -0.653 0.040 -0.322 0.321 -0.841 0.183 0.080 -0.816 -0.038 0.650 -0.171 . . . . 0.453 -0.337 -0.337 0.066 0.538 -0.468 0.117 -0.433 -0.233 -0.388 0.834 -0.732 0.198 -0.255 -0.730 0.497 0.365 -0.122 -0.246 -0.074 0.546 -0.762 0.287 -0.454 -0.629 -0.620 0.828 -0.108 0.504 -0.452 0.147 -0.428 0.709 -0.925 0.036 -0.299 0.604 -0.048 0.023 -1.008 0.007 -0.017 0.376 -0.496 0.479 -0.151 -0.077 -0.400 0.486 -0.522 0.478 -0.973 0.439 -0.781 0.269 -0.222 -0.351 -0.088 0.734 -0.707 0.642 -0.558 0.095 -0.531 0.835 -0.467 -0.595 -0.268 0.773 -0.068 -0.284 -0.953 -0.130 -0.617 0.609 -0.139 0.535 -0.609 -0.290 0.107 0.617 -0.584 0.075 -0.423 0.416 -0.188 0.185 -0.619 -0.406 0.155 0.437 -0.362 0.247 -0.042 0.083 -0.353 0.712 -1.082 0.212 -0.451 0.371 0.094 -0.291 -0.284 -0.308 0.227 0.140 -0.120 0.425 -0.131 0.082 -0.544 0.574 -0.967 0.675 -1.311 0.584 -0.688 0.162 -0.393 -0.703 0.120 0.793 -0.819 0.502 -0.264 -0.036 -0.366 0.657 0.000 -0.177 -0.893 0.675 0.090 -0.454 -0.717 -0.491 0.265 0.632 -0.896 -0.026 -0.086 0.088 0.018 0.706 -0.929 0.186 -0.503 0.619 -0.438 0.220 -0.833 -0.710 0.464 0.304 -0.369 0.432 -0.579 0.406 -0.608 0.580 -1.087 0.399 -0.481 0.643 0.066 -0.258 -0.849 0.065 -0.161 0.368 -0.378 0.639 -0.459 -0.112 -0.340 0.546 -1.189 0.806 -1.500 0.732 -0.689 0.002 -0.480 -0.665 0.461 0.399 -0.568 0.435 -0.416 0.103 -0.279 0.250 -0.517 0.420 -0.371 0.526 0.163 -0.644 -0.322 -0.553 0.050 0.656 -0.498 -0.088 -0.187 0.048 0.198 0.700 -0.782 0.099 -0.467 0.331 -0.143 0.187 -0.518 -0.428 0.290 0.345 -0.389 . . . . 0.729 -0.713 -0.151 -0.266 . . . . -0.068 0.159 0.097 -0.218 0.392 -0.264 -0.171 -0.048 0.439 -0.491 0.469 -0.868 0.627 -0.848 0.105 -0.277 -0.783 0.210 0.649 -0.527 . . . . 0.627 -0.322 -0.486 -0.087 0.590 -0.199 -0.165 -0.451 -0.124 -0.227 0.575 -0.437 0.134 -0.197 -0.074 0.111 0.518 -0.276 -0.192 -0.206 0.541 -0.662 0.306 -0.563 -0.464 -0.446 0.701 -0.127 0.316 -0.336 0.259 -0.383 0.684 -0.882 -0.003 -0.229 0.480 0.040 0.252 -1.373 -0.188 -0.047 0.489 -0.414 0.583 -0.466 -0.060 -0.290 0.581 -0.778 0.420 -0.778 0.392 -0.733 0.531 -0.642 -0.921 -0.117 0.865 -0.457 0.759 -0.803 -0.037 -0.395 0.759 -0.869 -0.121 -0.250 0.905 0.253 -0.680 -1.680 -0.387 -0.263 0.727 -0.420 0.513 -0.577 -0.132 -0.014 0.863 -0.885 0.131 -0.877 0.378 -0.351 0.399 -0.741 -0.581 0.200 0.564 -0.506 0.257 -0.143 0.140 -0.326 0.558 -0.786 0.125 -0.222 0.458 0.039 -0.233 -0.419 -0.456 0.342 0.021 -0.015 0.435 -0.227 -0.055 -0.267 0.382 -0.600 0.635 -1.046 0.703 -0.821 0.147 -0.517 -0.584 0.180 0.630 -0.615 0.381 -0.630 0.170 -0.110 0.263 -0.087 0.114 -0.365 0.555 0.020 -0.191 -0.641 -0.915 0.265 0.679 -0.585 -0.140 0.275 -0.140 -0.037 0.428 -0.629 0.374 -0.490 0.628 -0.582 0.193 -0.637 -1.071 0.706 0.325 -0.644 0.392 -0.768 0.515 -0.575 0.482 -1.234 0.508 -0.403 0.567 0.157 -0.181 -0.940 -0.247 -0.383 0.726 -0.442 0.561 -0.478 -0.079 -0.217 0.663 -1.257 0.520 -0.824 0.622 -0.894 0.137 -0.280 -0.855 0.413 0.547 -0.612 0.578 -0.630 0.171 -0.443 0.098 -0.265 0.284 -0.185 0.451 0.405 -0.727 -0.504 -0.648 -0.135 0.779 -0.443 0.204 -0.084 -0.104 -0.038 0.647 -1.235 0.363 -0.467 0.628 -0.248 0.018 -0.736 -0.584 0.283 0.542 -0.599 . . . . 0.568 -0.778 0.257 -0.436 . . . . -0.219 0.126 0.303 -0.293 0.684 -0.577 -0.314 -0.122 0.479 -0.653 0.475 -0.785 0.476 -0.944 0.437 -0.443 -0.730 -0.038 0.772 -0.482 . . . . 0.374 -0.393 -0.131 0.041 0.414 -0.412 0.209 -0.396 -0.170 -0.243 0.719 -0.688 0.281 -0.342 -0.223 0.189 0.437 -0.350 0.082 -0.317 0.628 -1.045 0.452 -0.731 -0.402 -0.448 0.971 -0.864 frame2 LUT 5 4 4 0 0.000 0.502 -0.331 -0.838 0.298 0.201 0.047 -0.170 -0.107 0.696 -0.247 -0.696 -0.120 -0.637 0.237 -0.173 0.369 0.721 -0.297 -0.970 0.039 0.184 0.029 -0.465 0.163 0.711 -0.521 -0.085 -0.468 -0.101 0.059 -0.702 0.497 1.075 -0.613 -1.038 -0.411 0.341 -0.097 -0.792 0.288 0.988 -0.140 -0.879 -0.824 -0.424 -0.132 -0.509 0.713 0.496 -0.537 -1.120 0.526 0.396 0.017 -0.363 -0.161 0.566 -0.265 -0.150 -0.347 -0.582 0.124 -0.676 0.693 0.310 -0.199 -0.772 0.382 0.183 0.334 -0.903 0.097 0.613 -0.118 -1.002 0.070 -1.150 0.462 -0.872 0.701 0.769 0.103 -1.194 -0.349 0.250 -0.047 -0.207 -0.034 0.817 -0.462 -0.212 -0.625 0.087 0.272 -0.635 0.120 0.450 -0.069 -0.887 0.188 -0.034 0.494 -1.019 0.165 0.842 -0.123 -0.883 -0.420 -0.954 0.210 -0.181 0.531 0.275 0.017 -1.289 0.453 0.162 0.356 -0.669 -0.041 0.643 -0.320 -0.216 -0.365 -0.864 0.601 -0.696 0.397 0.668 -0.594 -0.357 -0.047 0.306 -0.080 -0.124 -0.152 0.700 0.071 -0.925 -0.325 -0.534 0.318 -0.575 0.476 0.731 -0.434 -0.292 -0.353 0.524 0.054 -0.271 -0.524 0.854 -0.725 0.005 -0.778 -0.607 0.725 -0.821 0.169 0.973 -0.967 -0.666 -0.160 0.437 -0.068 -1.115 0.300 1.145 -0.779 -0.993 -0.507 -1.215 0.469 -0.700 0.650 0.073 -0.217 -0.424 0.425 0.595 -0.373 -0.505 0.018 0.613 -0.456 0.028 -0.471 -0.591 0.266 -0.591 0.555 0.430 -0.345 -1.224 0.523 0.124 0.206 -0.372 -0.023 0.567 -0.112 -1.060 0.155 -1.217 0.382 -0.891 0.788 0.782 -0.251 -0.894 -0.148 0.320 -0.254 0.003 -0.135 0.849 -0.468 -0.340 -0.544 0.157 0.188 -0.848 0.252 0.535 -0.462 -0.591 0.216 0.376 -0.156 -0.813 0.305 0.710 -0.074 -0.587 -0.418 -0.627 0.218 -0.451 0.543 0.203 -0.232 -1.497 0.717 0.228 -0.027 -0.487 0.181 0.600 -0.253 -0.309 -0.254 -0.724 0.264 -0.496 0.570 0.536 -0.554 -1.015 0.459 0.616 -0.492 -0.647 0.161 0.458 -0.011 -0.647 -0.007 -0.679 0.181 -0.542 0.637 0.689 -0.396 -0.850 0.101 0.462 -0.367 -0.076 -0.155 0.665 -0.387 -0.233 -0.323 -0.449 0.089 -0.383 0.523 0.851 -0.503 -0.801 -0.126 0.724 -0.298 -1.292 0.171 0.974 0.177 -1.150 -1.137 -0.547 -0.159 -0.660 0.837 0.288 -0.300 -1.105 0.587 0.576 -0.158 -0.471 -0.167 0.429 -0.202 -0.165 -0.165 -0.650 -0.037 -0.544 0.767 0.271 0.242 -1.268 0.257 0.109 0.340 -0.907 0.166 0.669 -0.215 -0.711 -0.093 -0.889 0.575 -1.161 0.607 0.640 -0.226 -0.609 -0.103 0.573 -0.244 -0.427 -0.113 0.976 -0.997 -0.075 -0.778 0.105 0.344 -0.788 0.105 0.565 -0.226 -0.977 0.210 -0.135 0.631 -1.524 0.254 0.923 -0.123 -1.161 -0.437 -0.273 0.221 -0.895 0.555 0.039 0.470 -1.068 0.151 0.188 0.355 -0.923 0.077 0.656 -0.512 -0.042 -0.412 -0.807 0.815 -0.952 0.204 0.538 -0.605 -0.557 0.276 0.361 -0.522 0.014 0.014 0.781 -0.184 -0.900 -0.208 -0.878 0.385 -0.666 0.603 0.887 -0.785 -0.506 -0.207 0.238 -0.370 0.179 -0.128 0.828 -0.807 -0.010 -0.601 -0.574 0.277 -0.606 0.546 0.939 -0.754 -0.438 -0.412 0.430 -0.241 -0.372 0.048 1.060 -0.148 -2.270 -0.313 -0.896 -0.283 -0.398 0.912 0.367 -0.097 -0.891 0.305 0.315 -0.497 -0.186 0.225 0.495 -0.260 -0.043 -0.349 -0.689 0.319 -0.595 0.556 0.446 -0.182 -1.486 0.484 0.181 0.123 -0.567 0.140 0.495 0.095 -0.705 -0.138 -1.245 0.467 -1.037 0.773 0.721 -0.194 -1.121 0.026 0.254 -0.224 0.204 -0.322 0.708 -0.487 -0.170 -0.389 -0.238 0.537 -0.708 0.122 0.953 -0.760 -1.147 0.031 0.115 0.038 -1.034 0.488 0.943 -0.088 -1.182 -0.522 -0.908 0.119 -0.281 0.640 0.099 -0.128 -1.858 0.797 0.214 -0.021 -0.564 0.236 0.396 -0.189 -0.270 -0.033 -1.139 0.328 -0.651 0.726 0.695 -0.553 -1.019 0.270 0.375 -0.380 -0.209 0.097 0.882 -0.320 -0.686 -0.445 -0.577 0.263 -0.435 0.475 0.721 -0.159 -0.989 -0.071 0.272 0.023 -0.324 -0.033 0.889 -0.469 -0.373 -0.612 -0.165 0.165 -0.618 0.418 1.032 -0.694 -1.074 -0.213 0.611 -0.283 -1.086 0.237 1.211 -0.414 -1.095 -1.101 -0.367 -0.130 -0.687 0.757 0.571 -0.631 -0.996 0.451 0.368 0.029 -0.375 -0.124 0.743 -0.340 -0.198 -0.589 -0.975 0.377 -0.916 0.733 0.448 -0.372 -0.993 0.445 0.318 0.004 -0.977 0.314 0.366 0.292 -1.257 0.095 -1.096 0.337 -0.863 0.782 0.781 -0.056 -0.758 -0.457 0.447 -0.395 -0.164 -0.024 0.665 -0.039 -0.373 -0.579 0.217 0.096 -0.687 0.200 0.561 -0.378 -0.761 0.220 0.027 0.169 -1.310 0.540 0.755 0.362 -1.577 -0.530 -1.046 -0.079 -0.505 0.899 0.241 -0.098 -0.794 0.386 0.347 0.069 -0.809 0.147 0.414 0.078 -0.285 -0.337 -0.990 0.725 -0.773 0.332 0.762 -0.390 -0.825 -0.034 0.545 0.118 -0.658 -0.284 0.664 -0.127 -0.463 -0.369 -0.512 0.239 -0.590 0.540 0.840 -0.414 -0.510 -0.401 0.365 -0.237 -0.204 -0.007 0.711 -0.753 0.234 -0.753 -0.361 0.696 -1.250 0.240 1.014 -0.793 -0.844 -0.242 0.507 -0.308 -1.191 0.415 1.029 -0.237 -0.675 -1.044 -0.405 -0.205 -0.501 0.740 0.212 -0.104 -0.479 0.255 0.338 -0.280 -0.567 0.307 0.130 -0.547 0.429 -0.192 -0.661 0.283 -0.760 0.642 0.504 -0.087 -1.953 0.467 0.233 -0.033 -0.944 0.409 0.588 0.008 -1.610 0.219 -1.047 0.254 -0.930 0.847 0.657 -0.135 -0.959 -0.003 0.047 -0.175 0.185 -0.082 0.762 -0.371 -0.473 -0.303 0.097 0.208 -0.587 0.150 0.827 -0.567 -1.534 0.270 0.218 -0.131 -1.605 0.674 1.038 0.045 -2.010 -0.585 -0.716 -0.022 -0.443 0.741 0.108 -0.145 -1.307 0.690 0.257 -0.089 -0.329 0.097 0.513 -0.198 -0.327 -0.145 -0.740 0.306 -0.682 0.625 . . . . . . . . . . . . . . . . 0.610 -0.206 -1.040 0.164 0.260 -0.080 -0.339 0.092 0.807 -0.556 -0.355 -0.343 -0.336 0.042 -0.407 0.509 . . . . . . . . . . . . . . . . 0.496 -0.403 -1.152 0.469 0.409 0.089 -0.644 -0.046 0.557 -0.372 -0.230 -0.146 -0.693 0.105 -0.654 0.740 0.427 -0.124 -0.933 0.279 0.379 0.114 -1.316 0.281 0.477 0.043 -0.725 -0.040 -1.524 0.702 -1.072 0.632 0.621 0.052 -0.800 -0.233 0.364 -0.300 -0.195 0.038 0.842 -0.563 -0.164 -0.647 -0.135 0.442 -0.422 -0.022 0.658 -0.548 -0.901 0.266 0.129 0.250 -1.046 0.302 0.730 0.093 -0.773 -0.537 -1.055 0.429 -0.456 0.530 -0.167 0.497 -0.666 0.095 0.285 0.185 -0.496 -0.095 0.352 -0.141 0.162 -0.518 -1.410 1.053 -1.014 0.075 . . . . . . . . . . . . . . . . 0.828 -0.246 -0.936 -0.219 0.309 -0.142 -0.211 -0.013 0.820 -0.612 -0.131 -0.583 -0.829 0.593 -0.597 0.342 0.672 -0.622 -0.499 0.070 0.518 -0.529 -0.998 0.458 0.702 -0.341 -0.380 -0.294 -0.768 0.224 -0.443 0.594 0.499 -0.208 -1.069 0.315 0.409 -0.179 -0.512 0.120 0.661 -0.339 -0.360 -0.236 -0.842 0.363 -0.431 0.501 0.442 -0.304 -0.802 0.331 0.217 0.003 -0.652 0.262 0.671 -0.062 -0.854 -0.157 -1.397 0.402 -0.672 0.741 0.717 -0.155 -1.319 0.081 0.432 -0.339 -0.272 0.045 0.720 -0.460 -0.069 -0.572 -0.398 0.203 -0.529 0.483 0.778 -0.670 -0.683 0.048 0.336 -0.161 -1.023 0.435 0.863 0.037 -1.103 -0.535 -0.734 0.240 -0.620 0.648 0.179 -0.549 -1.231 0.814 0.315 -0.128 -0.865 0.369 0.445 -0.211 -0.259 -0.090 -0.897 0.233 -0.779 0.770 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.641 -0.079 -0.386 -0.456 1.179 -0.793 -1.241 -0.442 -0.390 -2.105 1.305 -0.905 -9.899 -9.899 1.999 -9.899 -9.899 -9.899 -9.899 1.999 1.188 -4.092 -0.014 -0.575 1.405 -1.666 -1.490 -0.557 -1.392 -2.560 1.583 -1.148 -0.326 -1.356 -1.619 1.313 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.961 -1.048 -1.580 0.305 0.436 -0.563 -0.816 0.488 0.207 -0.612 -0.890 0.724 -0.164 -0.649 -0.833 0.932 0.673 -0.614 -0.952 0.305 0.482 -0.325 -0.501 0.135 0.502 -0.725 -0.420 0.300 -0.092 -0.607 -0.451 0.743 0.885 -1.030 -0.533 -0.039 0.247 -0.300 -0.821 0.521 0.231 -0.595 -0.548 0.566 -0.184 -1.031 -0.338 0.879 0.545 -0.891 -0.888 0.547 0.371 -0.577 -0.251 0.258 0.313 -0.570 -0.786 0.589 -0.519 -0.739 -0.743 1.074 0.874 -0.828 -1.055 0.167 0.705 -0.512 -0.847 0.154 0.347 -0.714 -0.613 0.550 -0.097 -0.723 -0.770 0.905 0.753 -0.301 -0.950 -0.021 0.410 0.097 -0.712 -0.012 0.494 -0.385 -0.558 0.197 0.048 -0.173 -0.451 0.431 0.728 -0.610 -0.517 -0.014 0.323 -0.308 -0.197 0.097 0.341 -0.507 -0.489 0.397 -0.252 -0.417 -0.268 0.661 0.338 -0.225 -0.664 0.321 0.389 -0.333 -0.629 0.322 0.523 -0.653 -0.722 0.402 -0.754 -0.517 -0.653 1.051 1.033 -1.206 -0.723 -0.129 0.558 -0.569 -0.409 0.139 0.692 -0.472 -0.536 -0.039 -0.094 -0.707 -0.494 0.800 0.536 -0.608 -0.301 0.114 0.367 -0.520 -0.456 0.361 0.338 -0.155 -0.222 -0.027 -0.252 -0.213 -0.323 0.584 0.897 -1.201 -0.334 -0.136 0.472 -0.435 -0.400 0.157 0.394 -0.541 -0.023 0.022 0.392 -1.195 -0.182 0.453 0.534 -0.564 -0.507 0.229 0.445 -0.723 -0.588 0.451 0.511 -0.590 -0.430 0.224 -0.540 -0.856 -0.607 1.072 0.807 -1.091 -1.247 0.444 0.562 -0.527 -0.895 0.369 0.449 -0.699 -0.564 0.424 0.049 -0.781 -0.872 0.877 0.711 -0.682 -0.679 0.156 0.423 -0.153 -0.488 0.065 0.790 -0.825 -0.476 -0.017 -0.130 -0.113 -0.359 0.467 0.712 -0.760 -0.596 0.150 0.495 -0.346 -0.801 0.299 0.322 -0.455 -0.353 0.308 -0.058 -0.857 -0.350 0.768 0.537 -0.828 -0.877 0.527 0.492 -0.351 -0.722 0.267 0.478 -0.474 -0.618 0.305 -0.687 -0.449 -1.026 1.108 1.097 -1.180 -1.578 0.118 0.527 -0.684 -0.923 0.495 0.444 -0.548 -0.713 0.428 -0.182 -0.967 -1.070 1.091 0.522 -0.064 -0.934 0.116 0.435 -0.229 -0.571 0.166 0.310 -0.346 -0.470 0.323 -0.324 -0.507 -0.375 0.788 0.942 -0.934 -0.708 -0.085 0.224 -0.359 -0.476 0.415 -0.079 -0.375 -0.752 0.755 0.054 -0.861 -0.414 0.732 0.583 -0.735 -0.945 0.467 0.502 -0.513 -0.813 0.394 0.261 -0.477 -0.745 0.572 -0.724 -0.633 -0.961 1.161 0.984 -0.913 -1.309 0.120 0.273 0.020 -0.642 0.185 0.517 -0.513 -0.576 0.260 -0.261 -0.249 -0.884 0.833 0.687 -0.378 -0.995 0.161 0.007 0.485 -0.694 -0.032 0.177 0.083 -0.554 0.175 -0.206 0.189 -0.649 0.439 0.814 -0.779 -0.674 0.046 -0.076 0.383 -0.414 -0.005 0.321 -0.225 -0.514 0.257 -0.104 -0.284 -0.426 0.589 0.578 -0.360 -0.658 0.130 0.170 -0.013 -0.887 0.426 0.529 -0.269 -0.865 0.237 -0.670 -0.045 -0.647 0.818 1.151 -1.289 -1.455 0.007 0.583 -0.560 -0.349 0.055 0.694 -0.445 -0.784 0.094 -0.279 -0.909 -0.720 1.026 0.595 -0.513 -0.399 0.042 0.093 0.077 -0.418 0.177 0.135 0.290 -0.460 -0.071 -0.312 -0.168 -0.229 0.538 0.962 -1.185 -0.356 -0.267 0.499 -0.439 -0.216 -0.017 0.289 -0.609 -0.158 0.295 0.094 -0.689 -0.272 0.569 0.590 -0.758 -0.480 0.246 0.367 -0.615 -0.324 0.332 0.178 -0.470 -0.266 0.395 -0.755 -0.632 -0.658 1.090 0.948 -1.029 -1.370 0.255 0.677 -0.500 -1.070 0.285 0.618 -0.837 -0.439 0.224 -0.114 -0.604 -0.851 0.898 0.707 -0.404 -1.149 0.216 0.415 -0.186 -0.561 0.150 0.414 -0.448 -0.450 0.266 -0.288 0.281 -0.668 0.419 1.058 -1.055 -1.175 -0.009 0.338 -0.109 -0.806 0.306 0.566 -0.429 -0.582 0.149 0.165 -0.476 -0.430 0.504 0.456 -0.580 -0.816 0.476 0.320 -0.232 -1.282 0.574 0.451 -0.531 -0.707 0.409 -0.572 -0.382 -0.845 1.002 1.130 -1.212 -1.612 0.075 0.598 -0.632 -0.765 0.325 0.623 -0.468 -0.621 0.121 0.003 -1.009 -0.856 0.962 0.581 -0.260 -0.720 0.087 0.479 -0.224 -0.570 0.105 0.441 -0.351 -0.440 0.165 0.030 -0.571 -0.404 0.632 0.802 -0.828 -0.274 -0.208 0.573 -0.369 -0.885 0.259 0.359 -0.585 -0.407 0.375 -0.036 -1.040 -0.394 0.830 0.630 -0.851 -0.866 0.432 0.425 -0.621 -0.584 0.422 0.492 -0.770 -0.349 0.290 -0.653 -0.935 -0.960 1.219 0.939 -0.804 -1.110 0.067 0.590 -0.338 -0.771 0.160 0.356 -0.210 -0.332 0.085 -0.076 -0.570 -0.669 0.806 0.770 -0.310 -0.902 -0.069 0.630 -0.088 -0.473 -0.338 0.526 0.011 -0.588 -0.173 0.451 -0.294 -0.480 0.138 0.798 -0.555 -0.583 -0.130 0.065 0.013 0.052 -0.140 0.271 0.010 -0.296 -0.040 -0.150 -0.153 -0.135 0.366 0.624 -0.507 -0.681 0.178 0.410 -0.122 -0.839 0.256 0.596 -0.211 -0.674 -0.003 -0.237 -0.179 -0.790 0.757 1.093 -1.341 -0.903 -0.094 0.532 -0.314 -0.493 0.056 0.537 -0.215 -0.295 -0.196 -0.157 -0.767 -0.552 0.875 0.708 -0.516 -0.410 -0.128 0.401 -0.555 -0.123 0.111 0.086 0.029 0.168 -0.332 -0.334 0.026 -0.373 0.502 0.893 -0.937 -0.378 -0.233 0.183 -0.537 0.065 0.176 0.175 -0.758 0.420 -0.086 -0.052 -0.443 -0.182 0.504 0.639 -0.672 -0.363 0.053 0.440 -0.547 -0.568 0.361 0.495 -0.647 -0.227 0.135 -0.389 -0.786 -0.730 1.038 0.626 -1.004 -0.235 0.149 0.503 -0.421 -0.696 0.286 0.318 -0.814 -0.192 0.389 -0.090 -0.809 -0.513 0.839 0.588 -0.476 -0.704 0.219 0.351 -0.090 -0.518 0.120 0.387 -0.419 -0.384 0.237 -0.131 0.080 -0.473 0.389 0.555 -0.969 0.148 -0.134 0.455 -0.254 -0.593 0.172 0.150 -0.214 -0.284 0.270 -0.208 -0.484 0.050 0.468 0.413 -0.669 -0.416 0.368 0.508 -0.485 -0.808 0.369 0.361 -0.479 -0.516 0.377 -0.699 -0.502 -0.782 1.068 1.022 -1.135 -1.476 0.208 0.496 -0.443 -1.107 0.475 0.310 -0.286 -0.955 0.510 -0.084 -0.957 -1.078 1.048 0.576 -0.618 -0.408 0.143 0.403 -0.397 -0.477 0.263 0.294 -0.454 -0.199 0.230 -0.136 -0.446 -0.314 0.634 0.875 -1.008 -0.639 0.037 0.383 -0.326 -0.888 0.441 0.092 0.253 -0.900 0.271 -0.173 -0.652 -0.580 0.854 0.441 -0.850 -0.827 0.608 0.577 -0.651 -0.699 0.328 0.403 -0.566 -0.708 0.475 -0.480 -0.623 -0.901 1.069 0.938 -1.005 -1.253 0.222 0.522 -0.398 -1.022 0.392 0.509 -0.490 -0.721 0.331 -0.180 -0.292 -0.871 0.811 0.609 -0.611 -0.262 -0.020 0.344 0.072 -0.582 0.016 0.393 -0.265 -0.375 0.116 -0.175 0.059 -0.496 0.447 0.775 -1.052 -0.814 0.308 0.276 -0.134 -0.613 0.291 0.342 -0.127 -0.693 0.260 -0.314 -0.224 -0.458 0.689 0.512 -0.585 -0.436 0.225 0.226 -0.427 -0.702 0.558 0.613 -0.501 -0.688 0.193 -0.602 0.073 -0.617 0.711 1.097 -1.248 -1.173 -0.005 0.516 -0.399 -0.468 0.123 0.502 -0.293 -0.818 0.264 0.041 -0.781 -0.523 0.760 0.671 -0.624 -0.441 0.031 0.448 -0.603 -0.396 0.285 0.164 -0.128 -0.357 0.243 -0.373 0.218 -0.417 0.396 1.023 -1.331 -0.503 -0.209 0.464 -0.357 -0.523 0.194 0.350 -0.329 -0.399 0.228 -0.022 -0.800 -0.071 0.574 0.463 -0.758 -0.186 0.203 0.445 -0.599 -0.544 0.370 0.351 -0.382 -0.822 0.477 -0.565 -0.497 -0.574 0.959 1.010 -1.156 -1.363 0.199 0.598 -0.430 -0.962 0.300 0.484 -0.539 -0.555 0.301 -0.135 -0.613 -0.942 0.937 0.624 -0.932 0.066 -0.172 0.618 -0.269 -0.660 0.004 0.631 -0.580 -0.397 0.033 -0.151 -0.109 -0.418 0.509 0.987 -1.131 -0.715 -0.072 0.559 -0.195 -0.842 0.132 0.481 -0.261 -0.630 0.168 -0.079 -0.611 -0.409 0.718 0.706 -0.935 -0.711 0.304 0.593 -0.369 -0.848 0.216 0.565 -0.546 -0.566 0.214 -0.607 -0.239 -0.731 0.921 Intron LUT 5 4 4 0 0.000 1.007 -1.148 -1.698 0.299 0.412 -0.573 -0.881 0.540 0.155 -0.592 -0.907 0.757 -0.214 -0.672 -0.900 0.981 0.700 -0.650 -0.987 0.303 0.506 -0.280 -0.504 0.073 0.521 -0.857 -0.358 0.302 -0.029 -0.720 -0.407 0.730 0.911 -1.094 -0.632 0.009 0.214 -0.295 -0.844 0.554 0.115 -0.769 -0.608 0.744 -0.184 -1.108 -0.336 0.898 0.545 -0.938 -0.857 0.552 0.369 -0.600 -0.136 0.188 0.325 -0.615 -0.745 0.583 -0.539 -0.816 -0.750 1.104 0.959 -0.987 -1.097 0.117 0.739 -0.551 -0.857 0.132 0.309 -0.831 -0.457 0.557 -0.073 -0.888 -0.740 0.934 0.849 -0.413 -0.893 -0.137 0.472 -0.037 -0.577 -0.047 0.638 -0.537 -0.537 0.092 0.195 -0.400 -0.480 0.465 0.798 -0.675 -0.600 -0.037 0.384 -0.356 -0.262 0.112 0.419 -0.529 -0.711 0.442 -0.063 -0.600 -0.305 0.654 0.390 -0.217 -0.604 0.228 0.430 -0.342 -0.576 0.255 0.580 -0.789 -0.755 0.415 -0.704 -0.622 -0.669 1.075 1.105 -1.360 -0.873 -0.131 0.560 -0.533 -0.554 0.206 0.631 -0.430 -0.509 0.009 -0.095 -0.847 -0.538 0.864 0.584 -0.693 -0.250 0.058 0.330 -0.560 -0.447 0.413 0.346 -0.147 -0.197 -0.070 -0.179 -0.217 -0.339 0.552 0.971 -1.383 -0.404 -0.151 0.504 -0.475 -0.538 0.231 0.386 -0.654 0.008 0.074 0.557 -1.417 -0.213 0.369 0.625 -0.713 -0.483 0.179 0.495 -0.887 -0.611 0.480 0.602 -0.658 -0.439 0.151 -0.513 -1.006 -0.640 1.111 0.824 -1.144 -1.221 0.431 0.562 -0.604 -0.912 0.416 0.446 -0.650 -0.470 0.355 0.077 -0.865 -0.892 0.893 0.801 -0.723 -0.672 0.035 0.463 -0.228 -0.422 0.031 0.881 -1.009 -0.380 -0.162 0.044 -0.394 -0.268 0.462 0.745 -0.770 -0.534 0.067 0.533 -0.299 -0.862 0.251 0.324 -0.515 -0.342 0.333 -0.024 -0.939 -0.335 0.767 0.623 -0.876 -0.831 0.436 0.535 -0.348 -0.645 0.171 0.536 -0.523 -0.507 0.203 -0.710 -0.506 -1.069 1.142 1.188 -1.350 -1.657 0.019 0.576 -0.697 -1.036 0.490 0.429 -0.626 -0.589 0.423 -0.142 -1.177 -1.203 1.149 0.621 -0.191 -0.949 0.095 0.456 -0.273 -0.602 0.191 0.355 -0.407 -0.257 0.176 -0.146 -0.707 -0.325 0.753 1.023 -1.005 -0.731 -0.207 0.099 -0.316 -0.307 0.397 -0.293 -0.443 -0.850 0.921 0.128 -0.999 -0.402 0.722 0.606 -0.852 -0.858 0.457 0.530 -0.710 -0.631 0.377 0.258 -0.527 -0.655 0.561 -0.618 -0.836 -1.035 1.202 1.110 -1.181 -1.268 -0.021 0.317 -0.005 -0.729 0.207 0.600 -0.662 -0.447 0.162 -0.137 -0.495 -0.816 0.859 0.856 -0.495 -0.960 -0.049 0.048 0.431 -0.572 -0.081 0.332 -0.001 -0.374 -0.043 0.023 -0.088 -0.453 0.392 0.928 -0.954 -0.692 -0.056 0.049 0.339 -0.414 -0.074 0.372 -0.270 -0.414 0.171 0.124 -0.481 -0.328 0.482 0.679 -0.442 -0.512 -0.056 0.295 -0.066 -0.823 0.325 0.607 -0.312 -0.785 0.125 -0.528 -0.229 -0.551 0.824 1.272 -1.524 -1.707 -0.104 0.736 -0.595 -0.554 -0.013 0.752 -0.542 -0.703 0.021 -0.269 -1.097 -0.748 1.075 0.683 -0.777 -0.317 0.011 0.177 0.032 -0.468 0.169 0.287 0.182 -0.417 -0.157 -0.190 -0.343 -0.124 0.503 1.070 -1.322 -0.468 -0.362 0.594 -0.477 -0.284 -0.073 0.285 -0.694 -0.011 0.228 0.286 -0.969 -0.315 0.552 0.732 -0.926 -0.431 0.099 0.478 -0.644 -0.265 0.182 0.343 -0.603 -0.207 0.271 -0.558 -0.757 -0.715 1.084 1.037 -1.163 -1.353 0.150 0.816 -0.506 -1.330 0.186 0.624 -0.813 -0.371 0.158 0.006 -0.924 -0.754 0.908 0.870 -0.624 -1.085 0.074 0.518 -0.325 -0.511 0.095 0.510 -0.668 -0.192 0.099 0.021 0.002 -0.523 0.365 1.163 -1.278 -1.100 -0.181 0.416 -0.093 -0.849 0.230 0.566 -0.538 -0.409 0.107 0.262 -0.628 -0.485 0.525 0.536 -0.681 -0.545 0.311 0.458 -0.281 -1.250 0.468 0.543 -0.556 -0.635 0.285 -0.465 -0.538 -0.833 1.018 1.195 -1.410 -1.704 0.038 0.655 -0.655 -0.861 0.310 0.549 -0.500 -0.531 0.186 -0.016 -1.206 -0.906 1.031 0.624 -0.320 -0.721 0.073 0.567 -0.260 -0.607 0.038 0.364 -0.399 -0.373 0.242 0.117 -0.741 -0.432 0.656 0.870 -0.905 -0.433 -0.155 0.568 -0.357 -0.946 0.285 0.181 -0.637 -0.435 0.569 -0.082 -1.198 -0.398 0.896 0.714 -0.979 -0.896 0.395 0.538 -0.597 -0.578 0.283 0.498 -0.901 -0.262 0.285 -0.656 -1.141 -1.097 1.290 1.040 -1.021 -1.142 -0.004 0.637 -0.324 -0.871 0.136 0.269 -0.196 -0.138 0.019 -0.010 -0.632 -0.610 0.771 0.941 -0.501 -1.020 -0.185 0.839 -0.310 -0.552 -0.469 0.625 -0.104 -0.606 -0.202 0.654 -0.546 -0.394 -0.029 0.904 -0.739 -0.674 -0.148 -0.011 0.057 -0.067 0.018 0.343 -0.043 -0.408 0.011 0.021 -0.245 -0.147 0.308 0.717 -0.621 -0.822 0.189 0.439 -0.126 -0.752 0.182 0.727 -0.248 -0.753 -0.138 -0.058 -0.249 -0.829 0.709 1.155 -1.455 -1.037 -0.120 0.476 -0.262 -0.489 0.088 0.527 -0.232 -0.276 -0.182 -0.199 -0.870 -0.527 0.916 0.806 -0.589 -0.477 -0.204 0.425 -0.784 -0.001 0.109 0.136 0.042 0.136 -0.372 -0.302 -0.099 -0.268 0.511 0.928 -1.013 -0.411 -0.235 0.149 -0.667 0.074 0.273 0.182 -0.970 0.424 0.018 0.068 -0.578 -0.221 0.510 0.783 -0.823 -0.443 -0.032 0.501 -0.585 -0.570 0.316 0.640 -0.751 -0.271 0.027 -0.274 -0.920 -0.709 1.023 0.562 -1.122 0.067 0.023 0.491 -0.429 -0.607 0.258 0.215 -0.884 -0.091 0.442 -0.082 -0.939 -0.324 0.795 0.724 -0.638 -0.635 0.087 0.438 -0.300 -0.307 0.036 0.389 -0.485 -0.225 0.163 0.067 -0.105 -0.455 0.371 0.519 -1.198 0.440 -0.369 0.578 -0.338 -0.672 0.123 0.168 -0.228 -0.254 0.244 -0.197 -0.529 0.080 0.463 0.473 -0.807 -0.248 0.261 0.563 -0.592 -0.680 0.304 0.460 -0.586 -0.365 0.240 -0.658 -0.670 -0.711 1.089 1.089 -1.274 -1.540 0.158 0.534 -0.426 -1.156 0.443 0.253 -0.336 -0.962 0.588 -0.079 -1.124 -1.066 1.082 0.638 -0.845 -0.278 0.088 0.430 -0.440 -0.447 0.241 0.327 -0.543 -0.188 0.241 -0.063 -0.643 -0.236 0.635 0.950 -1.167 -0.647 -0.023 0.440 -0.333 -0.945 0.411 0.066 0.225 -0.797 0.274 -0.146 -0.741 -0.567 0.866 0.508 -0.917 -0.801 0.560 0.619 -0.736 -0.652 0.296 0.441 -0.557 -0.629 0.397 -0.436 -0.723 -0.941 1.094 1.028 -1.187 -1.273 0.147 0.611 -0.484 -0.963 0.315 0.463 -0.472 -0.521 0.268 -0.059 -0.439 -0.775 0.781 0.656 -0.786 -0.002 -0.241 0.420 -0.028 -0.550 -0.003 0.505 -0.435 -0.328 0.063 0.001 -0.053 -0.381 0.342 0.824 -1.234 -0.811 0.304 0.261 -0.212 -0.624 0.367 0.379 -0.093 -0.756 0.226 -0.111 -0.448 -0.349 0.638 0.576 -0.678 -0.282 0.088 0.368 -0.497 -0.561 0.404 0.727 -0.569 -0.534 -0.028 -0.376 -0.082 -0.549 0.679 1.175 -1.372 -1.210 -0.116 0.572 -0.457 -0.473 0.090 0.436 -0.360 -0.724 0.336 0.075 -0.976 -0.440 0.767 0.723 -0.793 -0.287 -0.070 0.467 -0.681 -0.316 0.252 0.239 -0.214 -0.252 0.161 -0.188 0.066 -0.347 0.367 1.083 -1.468 -0.503 -0.297 0.433 -0.379 -0.510 0.238 0.322 -0.314 -0.378 0.234 0.119 -0.953 -0.072 0.532 0.545 -0.934 0.005 0.020 0.556 -0.777 -0.428 0.266 0.422 -0.391 -0.732 0.374 -0.472 -0.640 -0.628 0.993 1.066 -1.181 -1.339 0.098 0.682 -0.481 -0.977 0.227 0.433 -0.471 -0.493 0.284 -0.054 -0.705 -0.884 0.912 0.641 -1.188 0.316 -0.402 0.770 -0.441 -0.549 -0.193 0.692 -0.674 -0.263 -0.114 0.045 -0.332 -0.264 0.423 1.036 -1.193 -0.661 -0.185 0.660 -0.242 -0.888 0.048 0.472 -0.284 -0.581 0.167 0.036 -0.703 -0.364 0.663 0.785 -0.967 -0.616 0.155 0.741 -0.462 -0.781 0.030 0.632 -0.620 -0.450 0.095 -0.605 -0.294 -0.719 0.941 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.078 -0.178 -0.583 0.478 0.138 -0.168 -0.464 0.361 0.410 0.227 -0.378 -0.451 1.203 -0.821 -0.253 -1.773 0.998 -0.477 -0.477 -0.821 1.016 -0.624 -0.275 -0.993 1.993 -7.297 -7.297 -7.297 -7.297 -7.297 -7.297 1.993 -7.297 -7.297 1.993 -7.297 0.296 -0.529 0.281 -0.209 0.025 0.561 -0.343 -0.477 -0.137 -0.147 -0.030 0.273 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.419 -0.042 -0.025 -0.497 0.571 -0.385 -0.451 0.025 0.072 -0.042 -0.222 0.163 -0.111 -0.301 0.419 -0.111 0.768 -0.723 -1.322 0.369 0.317 -0.042 -1.059 0.382 -6.451 -6.451 -6.451 1.988 1.988 -6.451 -6.451 -6.451 1.988 -6.451 -6.451 -6.451 TAG WMM 9 6 4 0 0.000 0.481 0.033 -0.311 -0.367 0.512 -0.488 -0.204 -0.011 0.159 -0.204 -0.311 0.274 -0.011 -0.426 -0.057 0.381 0.603 -0.488 -1.552 0.512 -0.153 -0.204 0.159 0.159 -5.011 -5.011 -5.011 1.966 1.966 -5.011 -5.011 -5.011 -5.011 -5.011 1.966 -5.011 TGA WMM 9 6 4 0 0.000 0.388 -0.313 -0.143 -0.027 0.360 -0.143 -0.225 -0.065 0.009 -0.268 -0.225 0.388 0.272 -0.669 -0.065 0.272 0.494 -0.612 -0.728 0.415 -0.506 -0.225 -0.065 0.570 -5.313 -5.313 -5.313 1.973 -5.313 -5.313 1.973 -5.313 1.973 -5.313 -5.313 -5.313 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/Acanium.hmm0000644000175000017500000013151611424066010015434 0ustar moellermoellerzoeHMM Acanium.hmm 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.852754 Inter Esngl 0.147246 Intron Eterm 0.129065 Intron Exon 0.870935 0.527950 0.277433 0.194617 0.676269 0.151088 0.172643 0.628653 0.173443 0.197903 0.643937 0.184109 0.171954 0.856652 0.143348 0.887114 0.112886 0.895915 0.104085 Einit 2 DEFINED 0 249 -9.207 -9.129 -9.055 -8.984 -8.917 -8.852 -8.791 -8.732 -8.675 -8.620 -8.568 -8.518 -8.469 -8.422 -8.377 -8.333 -8.290 -8.248 -8.208 -8.169 -8.130 -8.106 -8.082 -8.059 -8.036 -8.013 -7.991 -7.969 -7.947 -7.926 -7.905 -7.872 -7.839 -7.808 -7.777 -7.747 -7.717 -7.688 -7.660 -7.632 -7.605 -7.593 -7.582 -7.571 -7.559 -7.548 -7.537 -7.526 -7.515 -7.505 -7.494 -7.483 -7.473 -7.462 -7.452 -7.442 -7.431 -7.421 -7.411 -7.401 -7.391 -7.381 -7.371 -7.362 -7.352 -7.342 -7.333 -7.323 -7.314 -7.304 -7.295 -7.308 -7.321 -7.334 -7.347 -7.360 -7.374 -7.387 -7.401 -7.415 -7.429 -7.437 -7.446 -7.454 -7.463 -7.471 -7.480 -7.489 -7.498 -7.507 -7.515 -7.526 -7.536 -7.546 -7.556 -7.566 -7.577 -7.587 -7.598 -7.609 -7.619 -7.629 -7.640 -7.650 -7.661 -7.671 -7.682 -7.692 -7.703 -7.714 -7.725 -7.728 -7.731 -7.734 -7.737 -7.741 -7.744 -7.747 -7.750 -7.753 -7.756 -7.771 -7.785 -7.799 -7.814 -7.829 -7.843 -7.859 -7.874 -7.889 -7.905 -7.924 -7.944 -7.964 -7.985 -8.005 -8.027 -8.048 -8.070 -8.092 -8.114 -8.144 -8.174 -8.205 -8.237 -8.270 -8.303 -8.337 -8.372 -8.408 -8.444 -8.482 -8.520 -8.560 -8.601 -8.643 -8.686 -8.730 -8.776 -8.824 -8.873 -8.891 -8.910 -8.928 -8.947 -8.966 -8.985 -9.005 -9.025 -9.045 -9.066 -9.079 -9.093 -9.107 -9.121 -9.135 -9.149 -9.163 -9.178 -9.192 -9.207 -9.215 -9.223 -9.231 -9.239 -9.247 -9.255 -9.263 -9.271 -9.280 -9.288 -9.295 -9.301 -9.308 -9.314 -9.321 -9.327 -9.334 -9.341 -9.347 -9.354 -9.387 -9.420 -9.453 -9.488 -9.524 -9.560 -9.597 -9.636 -9.675 -9.715 -9.744 -9.774 -9.804 -9.835 -9.866 -9.898 -9.931 -9.965 -9.999 -10.034 -10.059 -10.085 -10.111 -10.137 -10.164 -10.191 -10.219 -10.248 -10.277 -10.307 -10.301 -10.295 -10.290 -10.284 -10.279 -10.273 -10.268 -10.262 -10.257 -10.251 -10.244 -10.237 -10.230 -10.223 -10.216 -10.209 -10.202 -10.195 -10.188 GEOMETRIC 250 -1 170 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.045 -10.013 -9.981 -9.950 -9.920 -9.891 -9.862 -9.833 -9.805 -9.778 -9.751 -9.710 -9.670 -9.631 -9.593 -9.556 -9.520 -9.485 -9.451 -9.417 -9.384 -9.336 -9.289 -9.244 -9.200 -9.158 -9.116 -9.076 -9.037 -8.999 -8.962 -8.938 -8.915 -8.891 -8.868 -8.846 -8.824 -8.802 -8.781 -8.759 -8.739 -8.717 -8.697 -8.676 -8.656 -8.636 -8.616 -8.597 -8.577 -8.558 -8.540 -8.516 -8.492 -8.469 -8.447 -8.424 -8.402 -8.381 -8.359 -8.338 -8.317 -8.305 -8.292 -8.280 -8.268 -8.255 -8.243 -8.231 -8.220 -8.208 -8.196 -8.181 -8.166 -8.152 -8.137 -8.123 -8.108 -8.094 -8.080 -8.066 -8.053 -8.029 -8.005 -7.982 -7.959 -7.937 -7.915 -7.893 -7.871 -7.850 -7.829 -7.811 -7.792 -7.774 -7.756 -7.739 -7.721 -7.704 -7.687 -7.670 -7.653 -7.646 -7.639 -7.631 -7.624 -7.617 -7.610 -7.603 -7.595 -7.588 -7.581 -7.576 -7.570 -7.565 -7.559 -7.553 -7.548 -7.542 -7.537 -7.532 -7.526 -7.529 -7.532 -7.534 -7.537 -7.540 -7.542 -7.545 -7.548 -7.551 -7.553 -7.561 -7.569 -7.577 -7.585 -7.593 -7.601 -7.609 -7.617 -7.625 -7.633 -7.640 -7.647 -7.654 -7.661 -7.668 -7.675 -7.683 -7.690 -7.697 -7.705 -7.716 -7.728 -7.740 -7.752 -7.764 -7.776 -7.788 -7.801 -7.813 -7.826 -7.842 -7.858 -7.875 -7.891 -7.908 -7.925 -7.942 -7.960 -7.978 -7.995 -8.019 -8.043 -8.067 -8.091 -8.117 -8.142 -8.168 -8.194 -8.221 -8.249 -8.271 -8.294 -8.317 -8.341 -8.365 -8.389 -8.414 -8.439 -8.465 -8.491 -8.517 -8.543 -8.570 -8.597 -8.624 -8.652 -8.681 -8.710 -8.740 -8.770 -8.800 -8.831 -8.862 -8.893 -8.926 -8.959 -8.993 -9.028 -9.064 -9.100 -9.119 -9.138 -9.157 -9.176 -9.196 -9.216 -9.236 -9.257 -9.278 -9.299 -9.322 -9.346 -9.370 -9.394 -9.419 -9.445 -9.470 -9.497 -9.523 -9.551 -9.565 -9.580 -9.594 -9.609 -9.624 -9.639 -9.655 -9.670 -9.686 -9.701 -9.698 -9.694 -9.690 -9.687 -9.683 -9.680 -9.676 -9.672 -9.669 GEOMETRIC 250 -1 210 Exon 2 DEFINED 0 249 -13.351 -13.197 -13.058 -12.931 -12.815 -12.707 -12.606 -12.513 -12.425 -12.342 -12.263 -12.110 -11.972 -11.846 -11.730 -11.623 -11.523 -11.429 -11.342 -11.259 -11.181 -11.025 -10.885 -10.757 -10.639 -10.530 -10.429 -10.335 -10.246 -10.163 -10.084 -9.957 -9.840 -9.732 -9.632 -9.538 -9.449 -9.366 -9.288 -9.213 -9.142 -9.039 -8.943 -8.853 -8.768 -8.688 -8.612 -8.539 -8.471 -8.405 -8.342 -8.268 -8.198 -8.131 -8.068 -8.006 -7.948 -7.891 -7.837 -7.785 -7.734 -7.688 -7.644 -7.601 -7.559 -7.518 -7.479 -7.440 -7.403 -7.366 -7.331 -7.306 -7.282 -7.258 -7.234 -7.211 -7.189 -7.166 -7.144 -7.122 -7.101 -7.086 -7.071 -7.056 -7.041 -7.026 -7.012 -6.998 -6.984 -6.970 -6.956 -6.952 -6.949 -6.946 -6.942 -6.939 -6.936 -6.933 -6.929 -6.926 -6.923 -6.927 -6.932 -6.937 -6.942 -6.946 -6.951 -6.956 -6.961 -6.965 -6.970 -6.977 -6.983 -6.989 -6.996 -7.002 -7.009 -7.016 -7.022 -7.029 -7.035 -7.047 -7.058 -7.069 -7.080 -7.092 -7.103 -7.115 -7.126 -7.138 -7.150 -7.168 -7.187 -7.206 -7.225 -7.244 -7.264 -7.284 -7.304 -7.325 -7.345 -7.368 -7.390 -7.413 -7.436 -7.460 -7.484 -7.509 -7.533 -7.559 -7.585 -7.611 -7.638 -7.666 -7.694 -7.723 -7.752 -7.782 -7.813 -7.844 -7.876 -7.912 -7.948 -7.986 -8.024 -8.064 -8.104 -8.146 -8.190 -8.234 -8.280 -8.314 -8.349 -8.385 -8.421 -8.459 -8.497 -8.537 -8.578 -8.620 -8.663 -8.697 -8.731 -8.767 -8.803 -8.840 -8.878 -8.917 -8.957 -8.999 -9.041 -9.075 -9.110 -9.146 -9.183 -9.221 -9.259 -9.299 -9.340 -9.382 -9.426 -9.459 -9.492 -9.527 -9.562 -9.598 -9.635 -9.673 -9.713 -9.753 -9.794 -9.825 -9.857 -9.890 -9.923 -9.957 -9.992 -10.028 -10.065 -10.102 -10.141 -10.169 -10.197 -10.225 -10.255 -10.285 -10.315 -10.346 -10.378 -10.410 -10.444 -10.466 -10.489 -10.512 -10.536 -10.559 -10.584 -10.608 -10.634 -10.659 -10.685 -10.696 -10.707 -10.718 -10.729 -10.740 -10.751 -10.762 -10.773 -10.785 GEOMETRIC 250 -1 148 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 540 Acceptor SDT 2 1 4 2 0.000 AG WMM 20 16 4 0 0.000 0.662 -0.746 -1.049 0.420 0.714 -0.795 -1.166 0.420 0.526 -0.713 -1.164 0.589 0.301 -0.561 -0.891 0.633 0.144 -0.506 -0.810 0.697 0.083 -0.516 -0.750 0.720 0.077 -0.441 -0.916 0.747 0.124 -0.383 -1.089 0.742 0.062 -0.464 -1.170 0.838 0.173 -0.660 -1.293 0.873 -0.022 -1.064 -1.253 1.082 -1.521 -1.781 -2.360 1.663 -4.465 -3.036 -5.479 1.930 -1.456 -0.457 -1.018 1.271 -1.884 1.437 -5.399 -0.005 2.000 -12.193 -12.193 -12.193 -12.193 -12.193 2.000 -12.193 0.389 -0.804 0.686 -0.974 0.151 -0.530 -0.632 0.634 0.126 -0.154 -0.191 0.181 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.041 -0.345 0.403 -0.215 0.171 -0.127 -0.114 0.048 0.179 -0.029 -0.074 -0.093 -0.604 0.183 0.215 0.065 0.467 -0.673 0.320 -0.430 0.530 -0.663 -0.095 -0.017 0.455 -0.170 -0.431 -0.003 -0.558 -0.027 0.364 0.073 0.476 -0.506 0.117 -0.285 0.211 -0.245 -0.231 0.198 0.705 -0.138 -0.856 -0.139 -0.474 -0.125 0.381 0.085 -9.535 1.063 -9.535 0.932 0.069 -0.018 -0.096 0.039 -9.990 0.267 0.659 0.283 -0.729 0.444 0.014 0.037 0.122 -0.089 0.272 -0.389 0.040 0.092 -0.245 0.087 0.063 0.212 -0.309 -0.015 -0.719 0.381 0.123 0.003 0.090 -0.194 0.278 -0.237 0.446 -0.470 -0.209 0.071 0.228 0.159 -0.846 0.209 -0.638 0.308 0.101 0.066 0.138 -0.019 0.003 -0.135 -0.076 0.055 -0.461 0.363 0.259 0.137 -0.839 0.196 -0.548 0.225 0.204 -0.007 -10.030 1.202 -10.030 0.764 0.072 -0.165 0.035 0.046 -9.993 0.408 0.517 0.311 -1.307 0.720 -0.019 -0.056 0.267 -0.673 0.649 -0.734 0.113 -0.145 0.213 -0.225 0.204 -0.002 0.020 -0.259 -0.800 0.208 0.303 0.053 0.255 -0.643 0.584 -0.584 0.484 -0.925 0.134 -0.033 0.475 -0.063 -0.518 -0.067 -0.666 -0.041 0.571 -0.133 0.274 -0.550 0.309 -0.203 0.198 -0.412 -0.128 0.247 0.579 -0.110 -1.118 0.162 -0.439 -0.201 0.460 0.024 -9.679 1.186 -9.679 0.785 0.164 -0.279 0.208 -0.151 -9.612 0.420 0.648 0.130 -1.057 0.504 0.210 -0.084 0.138 -0.250 0.255 -0.208 0.020 0.004 -0.192 0.147 0.082 0.082 -0.052 -0.122 -0.801 0.135 0.199 0.238 0.169 -0.312 0.304 -0.259 0.493 -0.698 -0.232 0.170 0.272 0.111 -0.762 0.166 -0.806 0.157 0.276 0.140 0.196 -0.248 0.120 -0.111 0.013 -0.213 -0.335 0.417 0.552 -0.071 -0.942 0.087 -0.656 -0.099 0.355 0.205 -9.316 1.095 -9.316 0.896 -0.006 -0.135 -0.047 0.171 -9.399 0.329 0.567 0.334 -0.991 0.420 0.208 0.006 0.300 -0.532 0.229 -0.144 0.324 -0.470 -0.077 0.109 0.265 -0.037 -0.124 -0.142 -0.404 0.013 0.212 0.107 0.371 -0.791 0.322 -0.186 0.512 -0.851 -0.127 0.142 0.421 -0.181 -0.519 0.113 -0.452 -0.203 0.370 0.148 0.467 -0.547 -0.005 -0.095 0.300 -0.516 -0.322 0.345 0.841 -0.484 -0.751 -0.154 -0.293 -0.337 0.346 0.165 -9.179 1.045 -9.179 0.951 0.242 -0.353 -0.055 0.100 -9.530 0.256 0.660 0.292 -0.859 0.452 -0.054 0.160 0.145 -0.164 0.267 -0.325 0.121 -0.004 -0.325 0.159 0.014 0.268 -0.457 0.080 -0.481 0.313 -0.063 0.116 0.145 -0.177 0.199 -0.214 0.502 -0.794 -0.175 0.165 0.299 0.014 -0.865 0.276 -0.611 0.255 0.088 0.122 0.316 -0.227 -0.028 -0.121 0.060 -0.136 -0.596 0.471 0.563 -0.035 -1.434 0.234 -0.412 0.031 0.195 0.114 -9.225 1.156 -9.225 0.823 0.242 -0.093 -0.281 0.080 -8.926 0.570 0.308 0.351 -0.796 0.593 -0.031 -0.095 0.288 -0.636 0.422 -0.330 0.205 -0.447 0.191 -0.040 0.257 -0.112 -0.125 -0.055 -0.490 0.085 0.271 0.030 0.297 -0.738 0.537 -0.472 0.546 -0.881 -0.029 0.023 0.422 -0.225 -0.397 0.064 -0.430 -0.195 0.478 -0.012 0.266 -0.384 -0.027 0.069 0.105 -0.510 -0.186 0.425 0.549 -0.295 -0.979 0.280 -0.319 -0.268 0.421 0.042 -8.943 1.161 -8.943 0.815 0.315 -0.436 0.120 -0.104 -8.833 0.330 0.620 0.268 -0.804 0.435 0.151 -0.051 0.234 -0.384 0.240 -0.190 0.205 -0.190 -0.268 0.190 0.047 0.053 -0.223 0.101 -0.585 0.010 0.200 0.235 0.241 -0.477 0.241 -0.124 0.496 -0.756 -0.417 0.320 0.250 -0.069 -0.886 0.396 -0.524 0.001 0.229 0.179 0.286 -0.424 0.012 0.039 0.037 -0.274 -0.650 0.594 0.707 -0.317 -1.207 0.178 -0.450 -0.294 0.300 0.288 -9.057 1.046 -9.057 0.950 0.118 -0.226 -0.244 0.281 -9.199 0.346 0.448 0.447 -0.799 0.361 0.192 -0.003 0.278 -0.473 0.280 -0.230 0.376 -0.410 -0.038 -0.035 0.457 -0.291 -0.160 -0.128 -0.404 -0.035 0.319 0.030 0.347 -0.545 0.247 -0.224 0.679 -0.885 -0.228 0.005 0.549 -0.384 -0.532 0.110 -0.415 0.010 0.264 0.060 0.424 -0.468 0.072 -0.177 0.325 -0.375 -0.333 0.241 0.675 -0.319 -0.827 0.055 -0.374 -0.301 0.405 0.127 -8.744 1.073 -8.744 0.920 0.304 -0.294 -0.002 -0.072 -9.151 0.248 0.620 0.349 -0.769 0.465 -0.107 0.143 0.268 -0.205 0.202 -0.363 0.149 -0.125 -0.236 0.170 0.147 0.205 -0.545 0.078 -0.469 0.102 0.145 0.135 0.275 -0.306 0.274 -0.374 0.592 -0.485 -0.431 0.052 0.218 0.142 -0.701 0.162 -0.589 0.197 -0.031 0.275 0.279 -0.165 -0.194 0.030 0.057 -0.013 -0.573 0.374 0.447 0.110 -1.304 0.205 -0.473 0.107 0.002 0.265 -9.123 1.170 -9.123 0.804 0.222 -0.103 -0.127 -0.020 -9.077 0.428 0.456 0.357 -0.843 0.619 -0.106 -0.034 0.348 -0.515 0.341 -0.395 0.295 -0.296 0.057 -0.122 0.296 -0.127 -0.150 -0.067 -0.388 -0.058 0.248 0.121 0.354 -0.666 0.409 -0.388 0.575 -0.840 0.010 -0.082 0.345 -0.135 -0.315 0.021 -0.363 -0.025 0.255 0.066 0.330 -0.416 -0.082 0.069 0.290 -0.511 -0.148 0.230 0.627 -0.117 -1.133 0.108 -0.219 -0.319 0.337 0.105 -8.495 1.067 -8.495 0.925 0.341 -0.325 -0.011 -0.086 -8.487 0.390 0.713 0.068 -0.503 0.251 0.134 0.010 0.331 -0.176 -0.064 -0.152 0.223 -0.180 -0.141 0.061 0.140 0.086 -0.422 0.125 -0.570 0.057 0.160 0.225 0.275 -0.550 0.254 -0.129 0.490 -0.581 -0.444 0.254 0.294 0.011 -0.874 0.288 -0.639 0.065 0.170 0.247 0.316 -0.342 -0.141 0.083 0.108 -0.285 -0.572 0.515 0.628 -0.144 -1.239 0.172 -0.505 -0.124 0.234 0.266 -8.689 1.054 -8.689 0.940 0.192 -0.187 -0.123 0.086 -8.893 0.231 0.460 0.535 -0.871 0.377 0.091 0.123 0.230 -0.355 0.231 -0.198 0.244 -0.139 -0.102 -0.035 0.255 -0.017 -0.003 -0.285 -0.523 0.055 0.169 0.189 0.326 -0.685 0.387 -0.291 0.456 -0.546 -0.137 0.048 0.490 -0.205 -0.412 -0.034 -0.625 0.012 0.380 0.059 0.386 -0.479 0.054 -0.092 0.151 -0.123 -0.357 0.252 0.707 -0.340 -0.661 -0.082 -0.459 -0.210 0.388 0.136 -8.566 1.092 -8.566 0.897 0.090 -0.083 -0.031 0.018 -9.111 0.451 0.525 0.253 -1.003 0.560 -0.155 0.175 0.086 -0.045 0.240 -0.343 -0.068 0.025 -0.285 0.272 -0.023 0.289 -0.406 0.055 -0.674 0.354 0.017 0.115 0.087 -0.236 0.323 -0.255 0.467 -0.582 -0.315 0.197 0.304 0.059 -0.696 0.146 -0.737 0.221 0.153 0.167 0.111 -0.026 -0.023 -0.069 -0.042 0.072 -0.611 0.404 0.419 0.144 -1.115 0.133 -0.678 0.320 -0.015 0.185 -10.000 1.257 -10.000 0.685 0.133 0.010 -0.232 0.063 -9.857 0.593 0.313 0.319 -1.111 0.807 -0.236 -0.092 0.169 -0.366 0.433 -0.416 0.254 -0.286 0.042 -0.062 0.184 0.154 -0.065 -0.331 -0.567 0.109 0.321 -0.004 0.238 -0.587 0.511 -0.453 0.501 -0.682 -0.024 -0.032 0.448 -0.177 -0.331 -0.064 -0.589 -0.051 0.414 0.053 0.206 -0.394 0.093 0.027 0.079 -0.332 -0.287 0.411 0.581 -0.119 -1.184 0.194 -0.414 -0.189 0.356 0.128 -9.572 1.160 -9.572 0.818 0.189 -0.221 0.082 -0.083 -9.593 0.518 0.515 0.186 -0.987 0.571 0.047 -0.034 0.068 -0.120 0.073 -0.029 -0.037 0.011 -0.248 0.233 0.052 0.157 -0.211 -0.023 -0.719 0.048 0.207 0.269 0.163 -0.323 0.240 -0.153 0.383 -0.494 -0.396 0.294 0.251 0.060 -0.612 0.154 -0.676 0.084 0.209 0.212 0.184 -0.267 -0.064 0.106 -0.019 -0.115 -0.506 0.470 0.536 -0.108 -1.081 0.201 -0.631 -0.058 0.217 0.300 -9.381 1.032 -9.381 0.966 -0.004 -0.115 -0.148 0.235 -9.792 0.465 0.322 0.452 -0.935 0.530 0.037 0.010 frame1 LUT 5 4 4 0 0.000 -0.033 -0.102 0.445 -0.454 0.379 -0.489 0.289 -0.386 0.394 -0.211 0.278 -0.714 -0.365 0.063 0.624 -0.648 0.225 -0.196 0.243 -0.368 0.510 -0.350 0.147 -0.547 0.390 -0.113 0.092 -0.517 -0.224 0.010 0.532 -0.532 0.419 -0.359 0.339 -0.693 0.473 -0.421 0.206 -0.492 0.637 -0.166 -0.093 -0.700 -0.268 -0.170 0.623 -0.433 0.184 -0.080 0.286 -0.518 0.424 -0.240 0.276 -0.734 0.217 -0.129 0.335 -0.596 -0.510 0.131 0.473 -0.296 0.087 0.087 0.342 -0.717 0.286 -0.255 0.132 -0.241 0.170 0.108 -0.022 -0.300 -0.391 0.221 0.406 -0.421 0.021 0.064 0.331 -0.550 0.540 -0.612 0.256 -0.520 0.213 0.105 0.023 -0.417 -0.278 0.180 0.486 -0.640 0.131 -0.088 0.327 -0.495 0.330 -0.085 0.016 -0.341 0.427 -0.052 -0.056 -0.456 -0.537 0.258 0.464 -0.442 -0.043 0.111 0.293 -0.466 0.422 -0.420 0.314 -0.578 0.200 0.009 0.210 -0.539 -0.674 0.252 0.430 -0.261 0.241 -0.386 0.557 -0.781 0.290 -0.525 0.409 -0.408 0.304 -0.060 0.299 -0.796 -0.438 -0.092 0.754 -0.652 0.100 -0.211 0.526 -0.680 0.423 -0.563 0.445 -0.687 0.367 -0.140 0.169 -0.559 -0.437 -0.010 0.735 -0.728 0.259 -0.309 0.419 -0.602 0.375 -0.622 0.399 -0.446 0.518 -0.056 -0.097 -0.575 -0.396 -0.028 0.634 -0.499 0.009 -0.056 0.382 -0.456 0.398 -0.446 0.345 -0.560 0.304 -0.131 0.257 -0.606 -0.518 0.056 0.541 -0.309 0.000 0.000 0.000 0.000 0.286 -0.345 0.286 -0.370 0.000 0.000 0.000 0.000 -0.475 0.138 0.524 -0.432 0.094 -0.079 0.280 -0.373 0.573 -0.695 0.276 -0.549 0.320 -0.059 0.022 -0.365 -0.397 0.124 0.551 -0.544 0.000 0.000 0.000 0.000 0.339 -0.346 0.229 -0.366 0.463 -0.372 0.215 -0.539 -0.490 -0.008 0.593 -0.349 -0.123 0.033 0.272 -0.232 0.200 -0.069 0.210 -0.431 0.263 -0.075 0.164 -0.453 -0.666 -0.068 0.645 -0.232 0.193 -0.335 0.420 -0.462 0.396 -0.525 0.240 -0.307 0.374 -0.265 0.305 -0.653 -0.155 -0.069 0.565 -0.580 0.165 -0.330 0.331 -0.276 0.542 -0.569 0.081 -0.301 0.335 -0.245 0.173 -0.383 -0.234 -0.054 0.585 -0.543 0.416 -0.545 0.366 -0.531 0.356 -0.599 0.373 -0.387 0.742 -0.420 -0.027 -0.739 -0.266 -0.213 0.663 -0.470 0.089 -0.120 0.268 -0.300 0.434 -0.463 0.266 -0.471 0.191 -0.165 0.345 -0.521 -0.635 0.077 0.567 -0.286 0.203 -0.050 0.376 -0.771 0.251 -0.217 0.153 -0.255 0.316 0.017 -0.038 -0.379 -0.344 0.268 0.367 -0.477 0.008 0.050 0.252 -0.380 0.486 -0.713 0.294 -0.390 0.351 -0.030 0.058 -0.506 -0.336 0.148 0.492 -0.529 0.164 -0.057 0.273 -0.495 0.336 -0.256 0.151 -0.341 0.409 0.240 -0.340 -0.512 -0.339 0.094 0.544 -0.547 -0.060 0.126 0.228 -0.361 0.439 -0.444 0.192 -0.381 0.255 -0.060 0.269 -0.638 -0.490 0.151 0.433 -0.274 0.242 -0.404 0.498 -0.624 0.355 -0.613 0.274 -0.221 0.326 -0.207 0.217 -0.478 -0.308 -0.044 0.592 -0.484 0.131 -0.231 0.376 -0.404 0.460 -0.533 0.247 -0.421 0.328 -0.290 0.159 -0.304 -0.333 0.025 0.590 -0.550 0.295 -0.401 0.338 -0.413 0.361 -0.624 0.268 -0.213 0.492 -0.207 -0.210 -0.214 -0.276 -0.290 0.719 -0.494 -0.085 -0.064 0.411 -0.376 0.432 -0.598 0.272 -0.354 0.272 -0.119 0.243 -0.539 -0.432 -0.040 0.564 -0.309 0.000 0.000 0.000 0.000 0.365 -0.428 0.245 -0.351 0.000 0.000 0.000 0.000 -0.429 0.096 0.558 -0.481 0.068 -0.072 0.211 -0.248 0.496 -0.593 0.165 -0.312 0.287 -0.184 0.075 -0.240 -0.317 -0.051 0.520 -0.327 0.000 0.000 0.000 0.000 0.341 -0.340 0.024 -0.110 0.488 -0.257 0.154 -0.625 -0.293 -0.151 0.560 -0.305 -0.197 0.004 0.303 -0.167 0.334 -0.290 0.133 -0.279 0.225 -0.096 0.237 -0.480 -0.445 -0.292 0.668 -0.218 0.296 -0.241 0.317 -0.556 0.441 -0.655 0.270 -0.319 0.539 -0.258 0.152 -0.737 -0.195 -0.012 0.533 -0.541 0.306 -0.359 0.300 -0.410 0.593 -0.603 0.232 -0.603 0.401 -0.200 0.086 -0.419 -0.261 -0.130 0.559 -0.361 0.381 -0.432 0.343 -0.540 0.542 -0.454 0.235 -0.649 0.723 -0.306 -0.074 -0.759 -0.229 -0.155 0.535 -0.323 0.133 -0.226 0.344 -0.359 0.447 -0.312 0.162 -0.489 0.297 -0.234 0.295 -0.526 -0.559 0.132 0.494 -0.292 0.265 -0.024 0.324 -0.828 0.457 -0.438 0.079 -0.263 0.283 0.073 -0.086 -0.342 -0.254 0.083 0.422 -0.391 0.141 -0.065 0.306 -0.504 0.659 -0.630 0.174 -0.630 0.311 -0.138 0.068 -0.318 -0.209 0.066 0.441 -0.453 0.155 -0.080 0.220 -0.366 0.486 -0.260 0.034 -0.432 0.320 0.031 -0.278 -0.144 -0.192 0.051 0.360 -0.312 0.042 0.065 0.285 -0.502 0.570 -0.502 0.145 -0.509 0.314 -0.148 0.184 -0.477 -0.484 0.115 0.434 -0.233 0.303 -0.374 0.475 -0.726 0.476 -0.563 0.275 -0.470 0.440 -0.153 0.150 -0.657 -0.148 -0.120 0.575 -0.540 0.198 -0.280 0.385 -0.466 0.549 -0.621 0.317 -0.641 0.402 -0.249 0.140 -0.443 -0.177 -0.169 0.670 -0.656 0.339 -0.322 0.361 -0.619 0.554 -0.568 0.198 -0.493 0.574 -0.013 -0.168 -0.666 -0.101 -0.218 0.568 -0.464 0.076 -0.118 0.353 -0.421 0.536 -0.392 0.133 -0.533 0.282 -0.143 0.174 -0.414 -0.299 -0.119 0.502 -0.234 0.000 0.000 0.000 0.000 0.471 -0.439 0.160 -0.397 0.000 0.000 0.000 0.000 -0.370 0.036 0.549 -0.437 0.125 -0.132 0.237 -0.289 0.576 -0.756 0.206 -0.388 0.376 -0.108 -0.104 -0.245 -0.351 0.033 0.446 -0.267 0.000 0.000 0.000 0.000 0.478 -0.405 0.122 -0.391 0.480 -0.337 0.095 -0.424 -0.390 -0.048 0.531 -0.279 -0.157 -0.028 0.323 -0.198 0.377 -0.192 0.055 -0.346 0.386 -0.262 0.102 -0.347 -0.609 -0.085 0.602 -0.179 0.295 -0.268 0.344 -0.570 0.349 -0.313 0.237 -0.429 0.406 -0.164 0.333 -0.937 -0.308 0.014 0.579 -0.539 0.245 -0.346 0.348 -0.405 0.543 -0.591 0.212 -0.473 0.274 -0.244 0.343 -0.561 -0.336 -0.040 0.631 -0.543 0.351 -0.399 0.453 -0.744 0.381 -0.264 0.232 -0.533 0.640 -0.378 0.056 -0.662 -0.302 -0.142 0.674 -0.542 0.149 0.002 0.185 -0.410 0.370 -0.225 0.269 -0.628 0.135 -0.162 0.437 -0.612 -0.579 0.070 0.575 -0.338 0.196 0.036 0.306 -0.755 0.461 -0.373 -0.015 -0.215 0.193 0.111 0.000 -0.365 -0.326 0.257 0.309 -0.380 -0.015 0.036 0.340 -0.473 0.568 -0.673 0.253 -0.518 0.268 -0.072 0.083 -0.347 -0.324 0.069 0.580 -0.605 0.187 -0.086 0.250 -0.454 0.262 -0.197 0.155 -0.295 0.325 0.028 -0.054 -0.388 -0.382 0.192 0.404 -0.383 -0.062 0.292 0.098 -0.421 0.531 -0.396 0.127 -0.508 0.166 -0.001 0.258 -0.549 -0.569 0.251 0.416 -0.319 0.194 -0.337 0.568 -0.781 0.292 -0.483 0.334 -0.324 0.335 -0.112 0.283 -0.745 -0.404 -0.041 0.670 -0.553 0.133 -0.131 0.296 -0.391 0.453 -0.481 0.211 -0.401 0.336 -0.142 0.190 -0.535 -0.387 0.035 0.648 -0.634 0.295 -0.395 0.382 -0.495 0.417 -0.380 0.208 -0.430 0.448 -0.009 -0.188 -0.390 -0.335 -0.117 0.708 -0.617 0.029 0.092 0.258 -0.480 0.450 -0.481 0.280 -0.508 0.274 -0.130 0.352 -0.736 -0.500 -0.006 0.624 -0.404 0.000 0.000 0.000 0.000 0.323 -0.281 0.198 -0.362 0.000 0.000 0.000 0.000 -0.260 0.043 0.457 -0.392 0.166 -0.008 0.079 -0.274 0.473 -0.601 0.214 -0.336 0.180 -0.097 0.186 -0.333 -0.469 -0.055 0.567 -0.263 0.000 0.000 0.000 0.000 0.341 -0.259 0.083 -0.253 0.225 -0.040 0.172 -0.450 -0.443 -0.069 0.568 -0.271 -0.118 0.090 0.119 -0.108 0.251 -0.237 0.163 -0.248 0.243 -0.173 0.274 -0.473 -0.653 -0.038 0.667 -0.317 frame2 LUT 5 4 4 0 0.000 0.356 -0.202 -0.515 0.203 0.091 -0.043 -0.321 0.219 0.579 -0.004 -0.544 -0.281 -0.608 0.152 -0.272 0.490 0.517 -0.296 -0.546 0.097 0.407 -0.277 -0.673 0.289 0.748 -0.316 -0.547 -0.264 -0.246 0.135 -0.323 0.333 0.955 -0.687 -0.724 -0.260 0.264 -0.259 -0.394 0.267 0.940 -0.275 -1.075 -0.359 -0.520 0.106 -0.581 0.639 0.372 -0.288 -0.689 0.341 0.005 0.148 -0.383 0.166 0.416 -0.110 -0.232 -0.172 -0.793 0.282 -0.882 0.735 0.381 0.064 -0.511 -0.072 0.030 0.399 -0.721 0.075 0.402 0.138 -0.630 -0.101 -1.144 0.483 -0.448 0.502 0.252 0.073 -0.669 0.174 0.214 -0.070 -0.685 0.339 0.564 -0.194 -0.679 0.032 -0.347 0.292 -0.527 0.373 0.653 -0.246 -0.690 -0.052 0.103 0.019 -0.736 0.392 0.810 -0.245 -0.895 -0.209 -0.904 0.261 -0.794 0.757 0.140 0.087 -0.686 0.279 0.117 0.222 -0.479 0.045 0.353 -0.015 -0.291 -0.127 -1.095 0.503 -0.608 0.545 0.512 -0.531 -0.038 -0.140 0.076 -0.057 -0.133 0.102 0.611 -0.062 -0.412 -0.390 -0.891 0.061 -0.102 0.571 0.466 -0.295 -0.211 -0.090 0.369 -0.231 -0.382 0.122 0.864 -0.404 -0.429 -0.553 -0.399 0.345 -0.473 0.323 0.779 -0.733 -0.454 -0.070 0.281 -0.256 -0.467 0.291 0.962 -0.297 -1.146 -0.346 -0.551 -0.025 -0.540 0.720 0.326 -0.185 -0.341 0.107 0.282 -0.001 -0.351 0.000 0.600 -0.225 -0.248 -0.346 -0.964 0.428 -0.609 0.572 0.441 -0.133 -0.471 0.013 0.007 0.202 -0.345 0.081 0.487 0.106 -0.707 -0.136 -1.060 0.366 -0.532 0.623 0.570 -0.073 -0.745 -0.046 0.321 -0.307 -0.419 0.256 0.834 -0.217 -0.827 -0.333 -0.216 0.248 -0.349 0.222 0.636 -0.423 -0.586 0.049 0.201 -0.069 -0.533 0.270 0.764 -0.151 -0.597 -0.435 -0.572 0.142 -0.591 0.641 0.231 -0.206 -0.590 0.374 -0.065 0.103 -0.347 0.243 0.565 -0.138 -0.473 -0.166 -0.980 0.435 -0.617 0.575 0.478 -0.361 -0.539 0.190 0.404 -0.218 -0.444 0.114 0.494 0.043 -0.393 -0.322 -0.809 0.177 -0.264 0.552 0.495 -0.444 -0.598 0.257 0.287 -0.371 -0.481 0.368 0.663 -0.315 -0.500 -0.143 -0.341 0.121 -0.351 0.421 0.804 -0.684 -0.672 0.006 0.328 -0.249 -0.637 0.334 0.813 -0.125 -0.885 -0.350 -0.589 0.058 -0.465 0.651 0.245 -0.238 -0.572 0.372 0.069 -0.086 -0.269 0.238 0.411 -0.107 -0.257 -0.145 -0.895 0.315 -0.819 0.724 0.404 -0.015 -0.482 -0.042 0.085 0.495 -0.788 -0.072 0.483 0.111 -0.578 -0.231 -0.919 0.619 -0.796 0.443 0.274 0.038 -0.596 0.141 0.348 -0.020 -0.649 0.142 0.599 -0.246 -0.439 -0.145 -0.404 0.393 -0.900 0.481 0.762 -0.564 -0.723 0.030 0.094 0.306 -0.975 0.248 0.848 -0.056 -1.195 -0.319 -0.618 0.273 -0.956 0.700 0.170 0.041 -0.632 0.264 0.077 0.496 -0.670 -0.142 0.373 -0.188 -0.188 -0.074 -0.976 0.653 -0.966 0.493 0.428 -0.424 -0.350 0.169 0.122 -0.075 -0.256 0.170 0.517 -0.015 -0.562 -0.149 -0.781 0.068 -0.307 0.643 0.467 -0.328 -0.456 0.127 0.175 -0.414 -0.281 0.376 0.820 -0.381 -0.636 -0.281 -0.486 0.152 -0.462 0.535 0.800 -0.791 -0.677 0.078 0.094 -0.452 -0.318 0.485 0.793 -0.390 -1.076 0.041 -0.551 0.040 -0.718 0.750 0.356 -0.249 -0.668 0.321 0.030 -0.217 -0.116 0.258 0.607 -0.150 -0.338 -0.351 -0.959 0.203 -0.623 0.753 0.418 -0.047 -0.589 0.044 0.125 0.122 -0.398 0.087 0.465 0.161 -0.471 -0.358 -0.912 0.336 -0.354 0.510 0.476 -0.114 -0.688 0.090 0.316 -0.288 -0.363 0.213 0.716 -0.355 -0.493 -0.210 -0.234 0.297 -0.560 0.314 0.813 -0.528 -0.667 -0.119 0.246 -0.292 -0.443 0.335 0.919 -0.158 -1.008 -0.484 -0.618 0.183 -0.644 0.654 0.053 -0.197 -0.451 0.442 0.050 -0.089 -0.334 0.300 0.419 -0.131 -0.245 -0.142 -0.977 0.430 -0.539 0.542 0.515 -0.422 -0.478 0.146 0.337 -0.421 -0.253 0.202 0.759 -0.094 -0.660 -0.439 -0.721 0.119 -0.193 0.519 0.547 -0.424 -0.484 0.110 0.409 -0.437 -0.514 0.302 0.869 -0.466 -0.718 -0.248 -0.276 -0.040 -0.346 0.500 0.926 -0.728 -0.751 -0.149 0.348 -0.328 -0.467 0.272 1.017 -0.325 -1.147 -0.461 -0.452 0.038 -0.670 0.690 0.293 -0.457 -0.428 0.382 0.066 -0.042 -0.399 0.292 0.687 -0.218 -0.450 -0.325 -0.944 0.250 -0.756 0.765 0.629 -0.356 -0.522 -0.036 0.168 0.167 -0.687 0.179 0.479 0.249 -0.758 -0.275 -0.829 0.295 -0.563 0.616 0.465 -0.207 -0.518 0.078 0.311 -0.285 -0.626 0.368 0.681 -0.047 -0.668 -0.322 -0.268 0.120 -0.748 0.573 0.770 -0.579 -0.784 0.063 0.264 -0.137 -0.950 0.457 0.801 0.021 -1.312 -0.250 -0.719 0.200 -0.955 0.789 0.301 -0.201 -0.576 0.296 0.209 0.126 -0.528 0.083 0.456 0.058 -0.469 -0.209 -0.750 0.403 -0.785 0.588 0.556 -0.355 -0.413 -0.004 0.290 0.103 -0.483 -0.018 0.516 -0.110 -0.318 -0.250 -0.593 0.164 -0.462 0.576 0.457 -0.247 -0.368 0.014 0.417 -0.262 -0.519 0.180 0.736 -0.539 -0.282 -0.278 -0.267 0.174 -0.609 0.470 0.837 -0.636 -0.797 -0.008 0.287 -0.091 -0.552 0.214 0.809 -0.317 -0.888 -0.145 -0.442 0.154 -0.740 0.635 0.208 -0.256 -0.330 0.278 0.261 -0.132 -0.288 0.098 0.354 -0.285 0.018 -0.172 -0.546 0.214 -0.700 0.623 0.511 -0.114 -0.754 0.081 0.153 0.153 -0.471 0.078 0.509 0.116 -0.726 -0.170 -0.927 0.280 -0.449 0.611 0.350 -0.075 -0.583 0.149 0.312 -0.133 -0.485 0.179 0.668 -0.239 -0.641 -0.116 -0.256 0.255 -0.442 0.303 0.821 -0.678 -0.800 0.048 0.168 -0.070 -0.642 0.360 0.884 -0.192 -1.210 -0.239 -0.693 -0.010 -0.723 0.834 0.249 -0.145 -0.578 0.307 -0.011 0.043 -0.268 0.197 0.467 -0.243 -0.348 -0.019 -0.979 0.298 -0.652 0.702 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.588 -0.425 -0.475 0.046 0.352 -0.449 -0.462 0.339 0.714 -0.244 -0.503 -0.305 -0.265 0.015 -0.193 0.359 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.419 -0.342 -0.521 0.236 0.080 0.089 -0.220 0.029 0.523 -0.174 -0.268 -0.240 -0.854 0.238 -0.715 0.729 0.445 -0.088 -0.485 -0.024 0.095 0.247 -0.624 0.132 0.477 0.151 -0.637 -0.227 -1.152 0.651 -0.786 0.485 0.297 0.018 -0.510 0.080 0.327 -0.213 -0.608 0.295 0.674 -0.204 -0.590 -0.198 -0.576 0.357 -0.657 0.500 0.677 -0.419 -0.620 0.004 0.122 -0.092 -0.653 0.419 0.789 0.003 -1.077 -0.328 -0.980 0.344 -0.946 0.769 0.187 0.155 -0.609 0.128 0.085 0.212 -0.408 0.038 0.411 -0.030 -0.325 -0.165 -1.166 0.700 -0.952 0.498 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.467 -0.276 -0.457 0.089 0.225 -0.181 -0.485 0.304 0.678 -0.289 -0.401 -0.280 -0.682 0.357 -0.422 0.433 0.644 -0.425 -0.617 0.056 0.249 -0.125 -0.496 0.245 0.766 -0.122 -0.844 -0.281 -0.602 0.148 -0.365 0.543 0.343 -0.207 -0.628 0.285 0.115 0.078 -0.394 0.138 0.436 -0.192 -0.119 -0.233 -1.216 0.360 -0.740 0.755 0.385 -0.069 -0.520 0.062 0.032 0.211 -0.440 0.115 0.361 0.244 -0.490 -0.287 -1.060 0.381 -0.415 0.554 0.549 -0.170 -0.698 0.044 0.301 -0.386 -0.384 0.306 0.706 -0.245 -0.565 -0.236 -0.437 0.145 -0.433 0.501 0.790 -0.613 -0.580 -0.077 0.195 -0.191 -0.441 0.313 0.809 -0.063 -0.959 -0.366 -0.768 0.188 -0.580 0.683 0.127 -0.132 -0.488 0.358 0.080 -0.013 -0.438 0.279 0.469 -0.085 -0.331 -0.187 -1.060 0.375 -0.533 0.616 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.637 0.081 -0.230 -0.904 1.305 -0.910 -1.347 -0.727 -0.665 -2.304 1.471 -1.341 -12.193 -12.193 2.000 -12.193 -12.193 -12.193 -12.193 2.000 0.906 -3.546 0.402 -0.475 1.231 -1.408 -0.967 -0.393 -1.423 -2.844 1.577 -0.994 -0.616 -0.985 -1.504 1.313 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.549 -0.486 -0.478 0.144 0.378 -0.366 -0.291 0.147 0.298 -0.191 -0.247 0.073 -0.071 -0.300 -0.112 0.390 0.374 -0.336 -0.197 0.055 0.435 -0.355 -0.438 0.173 0.370 -0.128 -0.332 -0.003 -0.174 -0.202 0.051 0.273 0.691 -0.672 -0.181 -0.191 0.400 -0.442 -0.316 0.190 0.514 -0.288 -0.420 0.008 -0.113 -0.441 0.096 0.345 0.424 -0.452 -0.387 0.218 0.239 -0.146 -0.277 0.125 0.250 -0.231 -0.172 0.100 -0.384 -0.119 -0.381 0.628 0.403 -0.141 -0.263 -0.094 0.355 -0.169 -0.482 0.159 0.117 0.056 -0.392 0.156 -0.152 -0.080 -0.127 0.308 0.100 0.018 -0.236 0.093 0.427 -0.319 -0.486 0.189 0.126 0.141 -0.501 0.137 -0.183 0.096 -0.190 0.232 0.417 -0.292 -0.157 -0.072 0.304 -0.218 -0.301 0.130 0.309 -0.050 -0.423 0.070 -0.205 -0.041 -0.084 0.284 -0.058 0.063 -0.318 0.254 0.243 -0.157 -0.277 0.130 0.019 0.050 -0.305 0.192 -0.712 0.191 -0.191 0.456 0.527 -0.560 -0.005 -0.177 0.309 -0.288 -0.077 -0.008 0.386 -0.195 -0.156 -0.117 -0.247 -0.242 0.126 0.287 0.220 -0.295 0.103 -0.080 0.399 -0.481 -0.095 0.041 0.324 -0.084 -0.225 -0.076 -0.285 -0.146 0.231 0.141 0.532 -0.625 -0.079 -0.061 0.303 -0.406 -0.129 0.133 0.358 -0.274 -0.268 0.085 -0.040 -0.443 0.257 0.134 0.180 -0.236 -0.064 0.086 0.295 -0.327 -0.045 0.010 0.206 -0.144 -0.048 -0.037 -0.485 -0.071 -0.098 0.484 0.513 -0.471 -0.462 0.171 0.305 -0.266 -0.364 0.208 0.207 -0.152 -0.296 0.178 -0.153 -0.282 -0.163 0.470 0.184 -0.164 -0.190 0.130 0.429 -0.506 -0.409 0.259 0.436 -0.098 -0.544 0.039 -0.294 0.027 -0.043 0.257 0.512 -0.523 -0.205 0.015 0.361 -0.489 -0.304 0.255 0.467 -0.321 -0.360 0.053 -0.056 -0.463 0.001 0.392 -0.066 -0.110 -0.339 0.409 0.223 -0.231 -0.336 0.250 0.154 -0.102 -0.411 0.267 -0.589 -0.001 -0.316 0.615 0.556 -0.546 -0.376 0.103 0.412 -0.396 -0.294 0.129 0.301 -0.221 -0.170 0.030 -0.035 -0.280 -0.044 0.300 0.154 -0.211 -0.182 0.191 0.362 -0.381 -0.341 0.211 0.225 -0.037 -0.324 0.081 -0.305 -0.257 0.127 0.335 0.624 -0.620 -0.192 -0.100 0.401 -0.543 -0.284 0.229 0.453 -0.328 -0.370 0.084 -0.119 -0.477 0.128 0.342 0.070 -0.258 -0.227 0.333 0.267 -0.246 -0.235 0.143 0.086 -0.199 -0.160 0.230 -0.555 -0.008 -0.257 0.573 0.463 -0.224 -0.327 -0.047 0.200 -0.091 -0.413 0.215 0.213 0.024 -0.347 0.054 -0.282 -0.040 -0.138 0.374 0.021 0.023 -0.227 0.157 0.143 0.312 -0.665 0.034 0.113 0.116 -0.430 0.127 -0.293 0.083 -0.122 0.271 0.454 -0.342 -0.215 -0.030 0.148 -0.047 -0.203 0.078 0.364 -0.017 -0.551 0.060 -0.201 -0.164 -0.075 0.365 0.020 -0.012 -0.282 0.229 0.262 -0.099 -0.428 0.168 0.140 -0.048 -0.193 0.079 -0.553 0.158 -0.210 0.420 0.498 -0.547 -0.164 0.015 0.241 -0.309 -0.043 0.057 0.320 -0.163 -0.152 -0.062 -0.199 -0.223 0.066 0.293 0.077 -0.202 0.042 0.065 0.248 -0.254 -0.043 0.004 0.084 0.085 -0.077 -0.103 -0.387 -0.062 0.183 0.191 0.477 -0.438 -0.207 0.006 0.160 -0.390 0.018 0.148 0.365 -0.368 -0.249 0.132 -0.204 -0.272 0.167 0.240 0.084 -0.147 -0.130 0.168 0.259 -0.301 -0.044 0.032 0.131 -0.069 -0.056 -0.016 -0.520 -0.043 -0.094 0.480 0.293 -0.220 -0.419 0.224 0.295 -0.238 -0.475 0.269 0.144 -0.101 -0.231 0.151 -0.212 -0.244 -0.091 0.437 0.137 -0.218 -0.237 0.254 0.391 -0.387 -0.535 0.304 0.296 -0.092 -0.542 0.198 -0.339 0.027 -0.092 0.325 0.488 -0.501 -0.236 0.059 0.260 -0.394 -0.357 0.334 0.503 -0.306 -0.478 0.079 -0.174 -0.399 0.027 0.418 -0.112 -0.131 -0.308 0.436 0.220 -0.185 -0.531 0.337 0.109 -0.114 -0.347 0.277 -0.630 0.015 -0.249 0.587 0.567 -0.547 -0.444 0.136 0.378 -0.476 -0.279 0.210 0.448 -0.277 -0.294 -0.008 -0.093 -0.381 0.017 0.360 0.287 -0.406 -0.105 0.132 0.449 -0.388 -0.309 0.089 0.386 -0.087 -0.467 0.040 -0.210 -0.207 0.049 0.303 0.622 -0.726 -0.152 -0.063 0.379 -0.540 -0.250 0.227 0.520 -0.440 -0.290 0.016 -0.119 -0.486 0.085 0.383 0.244 -0.397 -0.256 0.286 0.304 -0.252 -0.272 0.134 0.284 -0.216 -0.250 0.111 -0.505 -0.156 -0.283 0.656 0.484 -0.327 -0.318 0.003 0.282 -0.180 -0.388 0.186 0.237 0.079 -0.499 0.080 -0.225 -0.106 -0.114 0.369 0.192 -0.067 -0.192 0.040 0.471 -0.283 -0.522 0.132 0.095 0.258 -0.455 0.010 -0.265 -0.019 -0.198 0.388 0.361 -0.226 -0.249 0.027 0.148 -0.247 -0.095 0.155 0.267 0.125 -0.566 0.044 -0.352 -0.070 -0.015 0.350 0.033 -0.077 -0.215 0.222 0.326 -0.180 -0.384 0.134 0.107 0.054 -0.346 0.135 -0.558 0.127 -0.248 0.472 0.523 -0.517 -0.095 -0.108 0.289 -0.222 -0.077 -0.040 0.326 -0.157 -0.115 -0.111 -0.114 -0.299 0.038 0.306 0.215 -0.377 0.176 -0.090 0.364 -0.412 -0.042 -0.014 0.192 -0.034 -0.018 -0.162 -0.196 -0.224 0.149 0.217 0.533 -0.599 -0.056 -0.103 0.243 -0.391 0.037 0.040 0.068 -0.434 0.415 -0.187 -0.037 -0.386 0.129 0.222 0.284 -0.302 -0.092 0.046 0.309 -0.220 -0.240 0.078 0.166 -0.141 -0.035 -0.008 -0.393 -0.220 -0.081 0.521 0.399 -0.393 -0.418 0.228 0.417 -0.398 -0.396 0.197 0.207 -0.174 -0.338 0.225 -0.185 -0.345 -0.054 0.453 0.111 -0.239 -0.172 0.245 0.426 -0.461 -0.331 0.183 0.203 0.044 -0.549 0.182 -0.324 -0.084 -0.018 0.345 0.452 -0.616 -0.179 0.132 0.333 -0.474 -0.293 0.268 0.385 -0.232 -0.404 0.121 -0.232 -0.563 0.093 0.491 -0.041 -0.181 -0.277 0.402 0.239 -0.229 -0.435 0.295 0.124 -0.234 -0.395 0.378 -0.607 -0.088 -0.322 0.681 0.464 -0.550 -0.405 0.242 0.365 -0.253 -0.413 0.166 0.229 -0.203 -0.111 0.047 -0.019 -0.367 -0.175 0.435 0.179 -0.462 -0.099 0.273 0.284 -0.256 -0.403 0.249 0.255 -0.239 -0.223 0.141 -0.143 -0.266 0.060 0.288 0.506 -0.666 -0.142 0.061 0.319 -0.350 -0.320 0.223 0.358 -0.337 -0.330 0.177 -0.099 -0.497 0.055 0.399 0.146 -0.314 -0.282 0.342 0.175 -0.083 -0.289 0.149 0.121 -0.233 -0.277 0.307 -0.476 -0.100 -0.311 0.624 0.453 -0.252 -0.321 -0.012 0.243 -0.203 -0.545 0.336 0.222 0.025 -0.393 0.078 -0.350 -0.039 -0.262 0.494 0.014 -0.079 -0.133 0.178 0.335 -0.244 -0.485 0.238 0.125 0.084 -0.471 0.174 -0.383 0.040 -0.138 0.374 0.394 -0.402 -0.287 0.150 0.185 -0.203 -0.359 0.281 0.368 -0.085 -0.496 0.081 -0.314 -0.076 -0.155 0.432 -0.026 0.011 -0.264 0.236 0.221 -0.179 -0.462 0.293 0.074 0.067 -0.323 0.138 -0.681 0.262 -0.276 0.434 0.452 -0.512 -0.066 -0.035 0.310 -0.298 -0.098 0.019 0.255 -0.096 -0.136 -0.057 -0.241 -0.239 0.066 0.333 0.150 -0.284 -0.008 0.104 0.338 -0.474 -0.257 0.238 0.207 -0.057 -0.249 0.061 -0.323 -0.144 0.166 0.231 0.490 -0.595 -0.098 -0.001 0.264 -0.373 -0.134 0.158 0.291 -0.204 -0.354 0.171 -0.206 -0.347 0.159 0.299 0.050 -0.147 -0.157 0.221 0.264 -0.221 -0.212 0.109 0.180 -0.194 -0.187 0.156 -0.493 -0.099 -0.070 0.489 0.358 -0.312 -0.473 0.254 0.180 -0.166 -0.468 0.325 0.149 -0.113 -0.234 0.160 -0.303 -0.298 -0.298 0.644 0.162 -0.289 -0.273 0.304 0.374 -0.479 -0.514 0.364 0.299 -0.138 -0.478 0.193 -0.405 -0.069 -0.067 0.419 0.493 -0.550 -0.249 0.096 0.249 -0.415 -0.481 0.428 0.349 -0.191 -0.433 0.150 -0.268 -0.432 -0.098 0.579 -0.159 -0.167 -0.386 0.535 0.146 -0.223 -0.495 0.409 0.126 -0.092 -0.412 0.286 -0.713 0.026 -0.328 0.655 Intron LUT 5 4 4 0 0.000 0.611 -0.624 -0.606 0.223 0.390 -0.441 -0.377 0.243 0.230 -0.320 -0.213 0.217 -0.072 -0.384 -0.210 0.504 0.361 -0.435 -0.249 0.182 0.435 -0.410 -0.525 0.263 0.342 -0.217 -0.340 0.114 -0.170 -0.300 -0.003 0.380 0.733 -0.811 -0.224 -0.134 0.375 -0.536 -0.380 0.316 0.343 -0.525 -0.534 0.428 -0.015 -0.624 0.063 0.397 0.385 -0.516 -0.416 0.317 0.275 -0.193 -0.398 0.209 0.303 -0.279 -0.266 0.152 -0.428 -0.197 -0.495 0.744 0.445 -0.263 -0.331 0.016 0.319 -0.215 -0.605 0.303 0.093 -0.078 -0.327 0.251 -0.139 -0.250 -0.214 0.474 0.092 -0.042 -0.248 0.165 0.437 -0.315 -0.638 0.263 0.069 0.099 -0.531 0.248 -0.142 -0.042 -0.235 0.348 0.491 -0.413 -0.204 -0.036 0.301 -0.359 -0.305 0.237 0.202 -0.193 -0.461 0.320 -0.156 -0.216 -0.092 0.382 0.009 -0.046 -0.349 0.311 0.258 -0.174 -0.429 0.233 -0.005 0.017 -0.314 0.248 -0.632 0.097 -0.363 0.592 0.580 -0.653 -0.164 -0.033 0.365 -0.400 -0.135 0.062 0.282 -0.210 -0.072 -0.047 -0.186 -0.419 0.024 0.439 0.221 -0.348 0.084 -0.016 0.398 -0.560 -0.204 0.184 0.337 -0.136 -0.215 -0.051 -0.285 -0.211 0.185 0.237 0.583 -0.792 -0.126 0.011 0.332 -0.545 -0.195 0.242 0.308 -0.475 -0.216 0.240 0.176 -0.841 0.189 0.229 0.247 -0.371 -0.063 0.114 0.285 -0.318 -0.157 0.115 0.282 -0.256 -0.086 0.005 -0.492 -0.176 -0.210 0.622 0.475 -0.511 -0.530 0.281 0.355 -0.355 -0.524 0.315 0.168 -0.203 -0.323 0.273 -0.221 -0.384 -0.234 0.609 0.169 -0.223 -0.240 0.229 0.460 -0.536 -0.594 0.347 0.416 -0.155 -0.607 0.152 -0.276 -0.076 -0.123 0.386 0.576 -0.650 -0.200 0.002 0.418 -0.622 -0.433 0.349 0.382 -0.433 -0.330 0.215 -0.087 -0.578 -0.034 0.498 -0.056 -0.167 -0.405 0.477 0.310 -0.258 -0.557 0.315 0.168 -0.139 -0.424 0.290 -0.604 -0.015 -0.494 0.716 0.588 -0.638 -0.466 0.176 0.375 -0.462 -0.363 0.262 0.204 -0.306 -0.116 0.160 -0.077 -0.398 -0.146 0.474 0.140 -0.370 -0.184 0.315 0.369 -0.428 -0.459 0.308 0.219 -0.088 -0.360 0.159 -0.254 -0.373 0.049 0.438 0.651 -0.743 -0.235 -0.025 0.398 -0.624 -0.374 0.335 0.287 -0.600 -0.510 0.504 -0.070 -0.632 0.063 0.440 0.105 -0.352 -0.242 0.373 0.265 -0.242 -0.414 0.266 0.096 -0.172 -0.238 0.257 -0.598 -0.061 -0.394 0.696 0.456 -0.314 -0.326 0.037 0.196 -0.155 -0.530 0.338 0.151 -0.113 -0.261 0.177 -0.280 -0.196 -0.214 0.528 0.047 -0.047 -0.315 0.257 0.106 0.318 -0.794 0.138 0.158 0.020 -0.425 0.170 -0.312 0.012 -0.189 0.389 0.536 -0.489 -0.286 0.025 0.099 -0.082 -0.241 0.187 0.311 -0.113 -0.535 0.196 -0.094 -0.306 -0.199 0.468 0.051 -0.130 -0.278 0.294 0.225 -0.098 -0.584 0.298 0.099 -0.054 -0.221 0.148 -0.557 0.092 -0.338 0.550 0.544 -0.643 -0.248 0.084 0.244 -0.411 -0.084 0.164 0.254 -0.228 -0.128 0.055 -0.193 -0.408 -0.015 0.467 0.060 -0.218 0.029 0.107 0.244 -0.273 -0.114 0.090 0.088 0.099 -0.139 -0.062 -0.309 -0.162 0.111 0.285 0.551 -0.661 -0.198 0.043 0.210 -0.478 0.018 0.154 0.360 -0.446 -0.259 0.198 -0.027 -0.504 0.105 0.307 0.174 -0.291 -0.137 0.195 0.275 -0.316 -0.203 0.162 0.224 -0.130 -0.088 -0.033 -0.494 -0.133 -0.213 0.600 0.331 -0.363 -0.476 0.317 0.285 -0.311 -0.582 0.386 0.139 -0.177 -0.261 0.238 -0.201 -0.365 -0.173 0.553 0.110 -0.316 -0.255 0.356 0.395 -0.433 -0.686 0.403 0.276 -0.179 -0.542 0.286 -0.344 -0.033 -0.175 0.432 0.511 -0.613 -0.247 0.109 0.249 -0.479 -0.470 0.456 0.481 -0.438 -0.453 0.184 -0.122 -0.510 -0.110 0.538 -0.161 -0.129 -0.372 0.504 0.271 -0.207 -0.736 0.407 0.127 -0.145 -0.410 0.323 -0.664 -0.029 -0.401 0.706 0.604 -0.696 -0.562 0.245 0.409 -0.550 -0.389 0.294 0.312 -0.360 -0.172 0.126 -0.076 -0.551 -0.069 0.501 0.284 -0.490 -0.151 0.227 0.473 -0.451 -0.439 0.193 0.347 -0.124 -0.467 0.121 -0.235 -0.394 0.004 0.471 0.674 -0.870 -0.199 -0.019 0.386 -0.663 -0.273 0.304 0.359 -0.623 -0.347 0.358 -0.063 -0.709 0.002 0.515 0.225 -0.502 -0.278 0.379 0.312 -0.281 -0.377 0.221 0.223 -0.254 -0.277 0.225 -0.487 -0.269 -0.439 0.781 0.508 -0.398 -0.326 0.030 0.241 -0.201 -0.500 0.312 0.148 0.036 -0.446 0.179 -0.218 -0.211 -0.124 0.442 0.175 -0.104 -0.225 0.117 0.455 -0.343 -0.623 0.253 0.051 0.296 -0.506 0.046 -0.225 -0.156 -0.256 0.495 0.409 -0.319 -0.324 0.100 0.153 -0.291 -0.103 0.189 0.180 0.105 -0.613 0.187 -0.324 -0.150 -0.062 0.425 0.055 -0.168 -0.292 0.327 0.337 -0.206 -0.550 0.248 0.074 0.085 -0.448 0.206 -0.515 0.027 -0.350 0.582 0.568 -0.649 -0.196 0.009 0.319 -0.260 -0.169 0.040 0.267 -0.229 -0.062 -0.021 -0.109 -0.451 -0.012 0.432 0.242 -0.407 0.093 -0.005 0.460 -0.519 -0.197 0.076 0.150 -0.058 -0.029 -0.075 -0.161 -0.275 0.097 0.274 0.549 -0.712 -0.089 -0.020 0.251 -0.585 0.064 0.135 0.116 -0.635 0.410 -0.085 0.077 -0.642 0.092 0.308 0.458 -0.535 -0.226 0.112 0.352 -0.259 -0.311 0.114 0.399 -0.293 -0.133 -0.068 -0.257 -0.320 -0.234 0.597 0.290 -0.577 -0.105 0.235 0.358 -0.468 -0.352 0.278 0.150 -0.280 -0.218 0.271 -0.223 -0.490 -0.016 0.528 0.125 -0.299 -0.192 0.288 0.383 -0.446 -0.506 0.331 0.216 0.039 -0.598 0.202 -0.329 -0.199 -0.060 0.458 0.381 -0.805 0.120 0.054 0.338 -0.611 -0.330 0.363 0.336 -0.401 -0.257 0.194 -0.229 -0.631 -0.006 0.590 -0.075 -0.275 -0.154 0.407 0.254 -0.255 -0.608 0.393 0.062 -0.214 -0.351 0.389 -0.642 -0.145 -0.416 0.770 0.500 -0.631 -0.535 0.322 0.341 -0.330 -0.489 0.293 0.127 -0.249 -0.213 0.268 -0.086 -0.442 -0.285 0.586 0.109 -0.578 -0.064 0.374 0.329 -0.280 -0.609 0.339 0.214 -0.310 -0.287 0.280 -0.204 -0.344 -0.043 0.458 0.578 -0.814 -0.194 0.089 0.362 -0.520 -0.443 0.358 0.261 -0.456 -0.433 0.414 -0.096 -0.652 -0.025 0.531 0.132 -0.374 -0.257 0.374 0.229 -0.167 -0.428 0.255 0.072 -0.259 -0.296 0.377 -0.530 -0.169 -0.482 0.767 0.484 -0.393 -0.363 0.087 0.254 -0.243 -0.626 0.395 0.119 -0.065 -0.346 0.228 -0.347 -0.208 -0.335 0.637 -0.022 -0.227 -0.001 0.216 0.348 -0.318 -0.631 0.355 0.139 0.019 -0.454 0.209 -0.392 -0.055 -0.217 0.501 0.449 -0.577 -0.265 0.180 0.199 -0.352 -0.428 0.407 0.311 -0.178 -0.499 0.224 -0.289 -0.274 -0.215 0.579 -0.051 -0.114 -0.230 0.331 0.248 -0.238 -0.595 0.381 0.051 0.040 -0.343 0.198 -0.686 0.162 -0.391 0.583 0.473 -0.609 -0.168 0.092 0.277 -0.323 -0.187 0.151 0.218 -0.217 -0.196 0.142 -0.277 -0.422 0.011 0.506 0.089 -0.352 0.080 0.132 0.372 -0.501 -0.312 0.255 0.210 -0.153 -0.284 0.166 -0.311 -0.240 0.132 0.324 0.527 -0.775 -0.150 0.102 0.245 -0.470 -0.207 0.295 0.292 -0.374 -0.353 0.289 -0.088 -0.478 0.061 0.376 0.132 -0.308 -0.080 0.202 0.271 -0.262 -0.331 0.220 0.213 -0.189 -0.187 0.118 -0.535 -0.158 -0.219 0.636 0.355 -0.441 -0.437 0.317 0.243 -0.207 -0.706 0.419 0.079 -0.185 -0.261 0.298 -0.346 -0.382 -0.387 0.750 0.034 -0.462 0.033 0.295 0.454 -0.559 -0.714 0.424 0.295 -0.196 -0.564 0.291 -0.366 -0.158 -0.174 0.527 0.547 -0.669 -0.281 0.121 0.345 -0.536 -0.655 0.491 0.330 -0.361 -0.463 0.309 -0.273 -0.528 -0.218 0.695 -0.151 -0.264 -0.277 0.527 0.275 -0.248 -0.775 0.448 0.122 -0.100 -0.468 0.328 -0.702 -0.022 -0.513 0.765 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.185 -0.264 -0.094 0.128 0.140 -0.152 -0.358 0.291 0.079 -0.168 -0.090 0.165 0.169 -0.281 -0.419 0.396 0.264 -0.105 -0.619 0.301 0.450 -0.018 -0.247 -0.291 1.140 -0.790 -0.083 -1.793 0.931 -0.473 -0.366 -0.710 0.934 -0.525 -0.139 -0.999 2.004 -9.458 -9.458 -9.458 -9.458 -9.458 -9.458 2.004 -9.458 -9.458 2.004 -9.458 0.123 -0.490 0.475 -0.281 0.245 0.423 -0.700 -0.196 -0.152 -0.110 -0.143 0.359 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.429 -0.170 -0.041 -0.335 0.515 -0.520 -0.776 0.367 -0.121 -0.094 -0.087 0.266 0.129 -0.101 0.207 -0.288 0.588 -0.594 -0.787 0.328 0.266 -0.029 -0.391 0.077 -7.842 -7.842 -7.842 1.995 1.995 -7.842 -7.842 -7.842 1.995 -7.842 -7.842 -7.842 TAG WMM 9 6 4 0 0.000 0.327 -0.128 0.094 -0.389 0.486 -0.428 -0.488 0.193 -0.028 -0.185 -0.244 0.372 0.127 -0.152 -0.028 0.038 0.261 -0.399 -0.757 0.537 -0.058 -0.073 0.224 -0.120 -7.628 -7.628 -7.628 1.995 1.995 -7.628 -7.628 -7.628 -7.628 -7.628 1.995 -7.628 TGA WMM 9 6 4 0 0.000 0.470 -0.549 0.051 -0.160 0.466 -0.230 -0.512 0.090 -0.088 -0.126 -0.260 0.387 0.371 -0.361 0.021 -0.132 0.240 -0.476 -0.303 0.367 -0.455 -0.183 0.286 0.227 -8.148 -8.148 -8.148 1.996 -8.148 -8.148 1.996 -8.148 1.996 -8.148 -8.148 -8.148 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/C.elegans.hmm0000644000175000017500000017137311424066010015663 0ustar moellermoellerzoeHMM C.elegans 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 1 -1 explicit ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.977636 Inter Esngl 0.022364 Inter ORF 1 Intron Eterm 0.160251 Intron Exon 0.839749 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.488562 0.297386 0.214052 0.594784 0.189567 0.215649 0.557522 0.222503 0.219975 0.582938 0.194313 0.222749 0.816676 0.183324 0.862282 0.137718 0.861538 0.138462 Einit 2 DEFINED 0 249 -9.426 -9.329 -9.239 -9.153 -9.073 -8.996 -8.924 -8.855 -8.789 -8.726 -8.665 -8.610 -8.556 -8.505 -8.455 -8.406 -8.360 -8.315 -8.271 -8.228 -8.187 -8.142 -8.098 -8.055 -8.014 -7.974 -7.935 -7.897 -7.860 -7.824 -7.789 -7.760 -7.731 -7.703 -7.675 -7.648 -7.621 -7.595 -7.569 -7.544 -7.519 -7.494 -7.469 -7.444 -7.420 -7.397 -7.373 -7.350 -7.328 -7.305 -7.283 -7.266 -7.249 -7.233 -7.216 -7.200 -7.183 -7.167 -7.152 -7.136 -7.120 -7.125 -7.130 -7.135 -7.140 -7.145 -7.150 -7.155 -7.160 -7.165 -7.170 -7.183 -7.197 -7.211 -7.225 -7.239 -7.253 -7.267 -7.282 -7.296 -7.311 -7.322 -7.333 -7.344 -7.356 -7.367 -7.379 -7.391 -7.402 -7.414 -7.426 -7.441 -7.457 -7.472 -7.488 -7.503 -7.519 -7.536 -7.552 -7.568 -7.585 -7.591 -7.596 -7.602 -7.608 -7.613 -7.619 -7.625 -7.630 -7.636 -7.642 -7.656 -7.670 -7.685 -7.699 -7.714 -7.728 -7.743 -7.758 -7.773 -7.789 -7.804 -7.820 -7.836 -7.852 -7.868 -7.885 -7.901 -7.918 -7.935 -7.952 -7.973 -7.993 -8.014 -8.035 -8.057 -8.079 -8.101 -8.124 -8.147 -8.170 -8.187 -8.204 -8.221 -8.239 -8.256 -8.274 -8.292 -8.311 -8.329 -8.348 -8.377 -8.406 -8.436 -8.467 -8.498 -8.530 -8.563 -8.596 -8.630 -8.665 -8.677 -8.689 -8.701 -8.714 -8.726 -8.738 -8.751 -8.763 -8.776 -8.789 -8.807 -8.825 -8.844 -8.863 -8.882 -8.901 -8.921 -8.941 -8.961 -8.981 -8.990 -8.999 -9.008 -9.017 -9.026 -9.035 -9.045 -9.054 -9.063 -9.073 -9.079 -9.085 -9.092 -9.098 -9.104 -9.111 -9.117 -9.124 -9.130 -9.137 -9.173 -9.211 -9.249 -9.289 -9.329 -9.371 -9.414 -9.459 -9.505 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.574 -9.596 -9.619 -9.642 -9.665 -9.689 -9.714 -9.738 -9.763 -9.789 -9.794 -9.799 -9.804 -9.810 -9.815 -9.820 -9.825 -9.831 -9.836 -9.841 -9.847 -9.852 -9.857 -9.863 -9.868 -9.874 -9.879 -9.885 -9.890 GEOMETRIC 250 -1 127 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -11.438 -11.375 -11.315 -11.257 -11.202 -11.148 -11.097 -11.047 -10.999 -10.953 -10.907 -10.875 -10.842 -10.811 -10.780 -10.750 -10.720 -10.691 -10.663 -10.635 -10.608 -10.555 -10.504 -10.454 -10.406 -10.360 -10.315 -10.272 -10.229 -10.188 -10.148 -10.023 -9.907 -9.801 -9.701 -9.608 -9.520 -9.438 -9.360 -9.286 -9.216 -9.148 -9.084 -9.023 -8.964 -8.907 -8.853 -8.801 -8.750 -8.701 -8.654 -8.621 -8.590 -8.559 -8.529 -8.499 -8.470 -8.442 -8.414 -8.387 -8.360 -8.334 -8.308 -8.282 -8.257 -8.233 -8.209 -8.185 -8.162 -8.139 -8.116 -8.091 -8.066 -8.041 -8.017 -7.993 -7.970 -7.947 -7.924 -7.902 -7.880 -7.873 -7.866 -7.860 -7.853 -7.846 -7.840 -7.833 -7.827 -7.820 -7.813 -7.784 -7.755 -7.726 -7.699 -7.671 -7.644 -7.618 -7.592 -7.567 -7.542 -7.532 -7.523 -7.513 -7.504 -7.494 -7.485 -7.476 -7.466 -7.457 -7.448 -7.449 -7.450 -7.451 -7.452 -7.453 -7.454 -7.455 -7.456 -7.457 -7.458 -7.469 -7.481 -7.492 -7.504 -7.515 -7.527 -7.539 -7.550 -7.562 -7.574 -7.596 -7.617 -7.639 -7.661 -7.683 -7.706 -7.729 -7.752 -7.776 -7.801 -7.802 -7.803 -7.804 -7.806 -7.807 -7.808 -7.810 -7.811 -7.812 -7.813 -7.817 -7.821 -7.825 -7.829 -7.833 -7.837 -7.841 -7.845 -7.849 -7.853 -7.862 -7.872 -7.881 -7.891 -7.901 -7.910 -7.920 -7.930 -7.940 -7.950 -7.953 -7.955 -7.958 -7.961 -7.964 -7.967 -7.970 -7.973 -7.976 -7.979 -8.014 -8.050 -8.087 -8.126 -8.165 -8.205 -8.247 -8.290 -8.334 -8.379 -8.418 -8.458 -8.499 -8.542 -8.586 -8.631 -8.677 -8.725 -8.775 -8.827 -8.840 -8.853 -8.866 -8.880 -8.894 -8.907 -8.921 -8.935 -8.950 -8.964 -8.996 -9.029 -9.063 -9.097 -9.132 -9.168 -9.205 -9.243 -9.282 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.330 -9.337 -9.345 -9.352 -9.360 -9.368 -9.375 -9.383 -9.391 -9.398 -9.395 -9.391 -9.387 -9.383 -9.379 -9.375 -9.371 -9.368 -9.364 GEOMETRIC 250 -1 185 Exon 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Inter 1 GEOMETRIC 0 -1 500 Intron 2 DEFINED 0 249 . -18.251 -17.251 -16.666 -16.251 -15.929 -15.666 -15.443 -15.251 -15.081 -14.929 -10.251 -9.279 -8.704 -8.294 -7.975 -7.713 -7.492 -7.301 -7.132 -6.980 -6.917 -6.856 -6.798 -6.742 -6.688 -6.637 -6.586 -6.538 -6.491 -6.446 -6.436 -6.426 -6.416 -6.406 -6.396 -6.386 -6.376 -6.367 -6.357 -6.348 -6.341 -6.334 -6.328 -6.321 -6.314 -6.308 -6.301 -6.295 -6.288 -6.282 -6.359 -6.441 -6.528 -6.620 -6.718 -6.824 -6.938 -7.062 -7.197 -7.347 -7.442 -7.544 -7.653 -7.772 -7.901 -8.043 -8.200 -8.377 -8.578 -8.812 -8.843 -8.875 -8.907 -8.941 -8.975 -9.009 -9.045 -9.082 -9.119 -9.158 -9.180 -9.203 -9.226 -9.250 -9.273 -9.298 -9.322 -9.347 -9.373 -9.399 -9.413 -9.428 -9.443 -9.458 -9.473 -9.488 -9.503 -9.519 -9.534 -9.550 -9.567 -9.584 -9.601 -9.618 -9.636 -9.654 -9.672 -9.690 -9.708 -9.727 -9.752 -9.777 -9.802 -9.828 -9.854 -9.881 -9.908 -9.936 -9.964 -9.993 -10.004 -10.014 -10.025 -10.035 -10.046 -10.057 -10.068 -10.079 -10.090 -10.101 -10.117 -10.134 -10.151 -10.167 -10.185 -10.202 -10.219 -10.237 -10.255 -10.273 -10.286 -10.299 -10.312 -10.325 -10.338 -10.351 -10.364 -10.378 -10.391 -10.405 -10.401 -10.398 -10.394 -10.390 -10.386 -10.383 -10.379 -10.375 -10.372 -10.368 -10.373 -10.378 -10.383 -10.388 -10.393 -10.398 -10.403 -10.408 -10.413 -10.418 -10.423 -10.428 -10.433 -10.438 -10.443 -10.448 -10.454 -10.459 -10.464 -10.469 -10.463 -10.456 -10.450 -10.443 -10.437 -10.430 -10.424 -10.418 -10.411 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.405 -10.410 -10.415 -10.420 -10.425 -10.430 -10.436 -10.441 -10.446 -10.451 -10.456 -10.461 -10.467 -10.472 -10.477 -10.482 -10.488 -10.493 -10.498 -10.504 -10.509 -10.519 -10.528 -10.538 -10.547 -10.557 -10.567 -10.577 -10.587 -10.597 -10.607 -10.615 -10.624 -10.633 -10.642 -10.651 -10.660 -10.669 -10.678 -10.687 -10.696 -10.710 -10.724 -10.738 -10.752 -10.767 -10.781 -10.796 -10.811 -10.826 GEOMETRIC 250 -1 304 ORF 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Acceptor SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.440 -0.797 -1.562 0.790 0.451 -0.662 -1.562 0.734 0.547 -0.657 -1.784 0.692 0.683 -1.265 -1.859 0.768 0.745 -1.718 -1.903 0.810 0.178 -1.664 -2.027 1.208 -2.276 -2.843 -4.040 1.847 -5.143 -4.225 -6.438 1.967 -1.455 -0.720 -1.430 1.413 -2.979 1.740 -7.576 -0.903 2.001 -9.898 -9.898 -9.898 -9.898 -9.898 2.001 -9.898 0.686 -0.751 0.354 -0.929 0.222 -0.503 -0.606 0.563 0.238 -0.163 -0.478 0.282 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.292 -0.792 0.070 0.200 0.198 -0.545 -0.661 0.618 0.723 -0.470 -1.516 0.354 -1.500 -0.183 0.489 0.446 0.820 -1.012 -0.057 -0.363 1.158 -1.708 -0.488 -0.417 0.817 -1.016 -0.571 0.098 -0.886 -0.071 -0.323 0.772 0.619 -1.009 -0.287 0.198 0.251 -0.418 -1.040 0.656 1.369 -1.011 -2.047 -0.560 -0.747 -0.402 -0.203 0.831 . 0.674 . 1.266 0.471 -0.710 -0.292 0.246 . 0.021 0.770 0.355 -0.815 0.314 0.208 0.046 0.215 -0.421 0.025 0.104 0.323 -0.241 -0.441 0.223 0.381 -0.246 -1.709 0.631 -1.810 -0.009 0.175 0.671 0.571 -0.533 0.002 -0.283 1.079 -1.233 -0.165 -0.812 0.271 -0.246 -1.459 0.666 -0.852 0.173 0.027 0.378 0.216 -0.566 0.030 0.192 0.099 -0.124 -0.323 0.278 1.182 -1.074 -1.424 -0.178 -1.037 0.136 0.223 0.318 . 1.005 . 0.995 0.190 -0.931 0.170 0.274 . 0.182 0.510 0.528 -1.963 0.385 0.140 0.417 0.376 -1.038 0.477 -0.280 0.351 -0.705 -0.270 0.359 0.923 -0.294 -1.245 -0.206 -2.051 -0.292 0.357 0.732 0.587 -0.647 0.204 -0.500 1.128 -1.541 -0.093 -0.905 0.544 -0.935 -0.412 0.343 -1.410 0.213 0.086 0.488 0.428 -1.026 -0.087 0.289 0.095 -0.490 -0.453 0.575 1.416 -1.653 -1.881 -0.431 -1.877 0.007 -0.021 0.797 . 0.923 . 1.074 0.339 -0.758 0.151 0.047 . 0.430 0.180 0.604 -1.320 0.204 0.235 0.346 0.182 -0.581 -0.072 0.317 0.491 -0.873 -0.582 0.466 0.443 -0.222 -1.585 0.536 -1.678 -0.460 0.282 0.803 0.647 -0.702 -0.195 -0.081 1.179 -1.786 -0.339 -0.610 0.709 -0.897 -0.851 0.350 -0.963 -0.039 -0.262 0.748 0.368 -0.934 -0.179 0.381 0.285 -0.826 -0.932 0.760 1.349 -1.726 -1.462 -0.346 -0.776 -0.495 0.029 0.753 . 0.558 . 1.338 0.362 -0.638 -0.188 0.256 . -0.027 0.570 0.618 -0.681 0.098 0.513 -0.186 0.481 -0.910 -0.190 0.257 0.475 -1.094 -0.822 0.656 0.596 -0.401 -1.369 0.426 -1.434 -0.372 0.326 0.681 0.787 -1.078 -0.136 -0.168 1.121 -2.082 -0.213 -0.462 0.471 -1.084 -0.766 0.637 -1.091 -0.411 -0.282 0.968 0.500 -0.719 -0.497 0.344 0.497 -0.695 -1.069 0.579 1.506 -1.246 -2.159 -0.961 -0.632 -0.271 -0.497 0.862 . 0.744 . 1.218 0.610 -0.885 -0.469 0.275 . 0.090 0.604 0.501 -1.148 0.396 0.014 0.291 0.105 -0.158 0.141 -0.111 0.382 -0.090 -0.585 0.126 0.467 -0.043 -1.805 0.445 -1.414 0.442 -0.017 0.354 0.558 -0.562 -0.319 0.069 1.232 -2.228 -0.228 -0.775 0.419 -0.593 -1.252 0.660 -0.656 0.242 -0.146 0.355 0.200 -0.461 -0.183 0.315 -0.053 0.584 -1.425 0.219 1.176 -0.665 -1.746 -0.300 -0.740 0.463 -0.502 0.397 . 1.113 . 0.877 0.614 -0.393 -0.161 -0.298 . 0.434 0.390 0.420 -1.415 0.951 -0.061 -0.447 0.483 -0.957 -0.127 0.228 0.386 -1.194 0.142 0.205 0.688 -0.177 -1.177 0.088 -1.598 -0.453 0.237 0.816 0.623 -1.535 0.235 -0.092 0.742 -1.405 0.319 -0.511 0.452 -0.505 -0.892 0.474 -1.039 -0.372 0.524 0.381 0.400 -1.126 -0.251 0.467 0.269 -0.969 -0.045 0.394 1.255 -0.879 -1.954 -0.302 -0.939 -0.583 0.052 0.827 . 0.702 . 1.247 0.332 -1.114 0.283 0.087 . 0.068 0.216 0.840 -1.318 0.162 0.380 0.238 0.609 -0.648 -0.503 0.178 0.584 -0.740 -0.872 0.438 0.717 -0.528 -2.017 0.501 -1.523 0.006 -0.165 0.812 0.859 -1.010 -0.438 -0.072 1.272 -2.130 -0.478 -0.645 0.314 -0.569 -1.192 0.719 -0.875 -0.074 -0.695 0.916 0.450 -0.877 -1.073 0.691 0.386 -0.381 -1.347 0.616 1.387 -1.341 -2.237 -0.363 -0.275 -0.066 -0.438 0.566 . 0.365 . 1.439 0.552 -0.634 -0.885 0.431 . 0.128 0.128 0.859 -0.646 0.180 0.180 0.131 0.570 -0.754 -0.336 0.176 0.415 -0.475 -1.197 0.595 0.794 -0.702 -1.330 0.327 -1.275 -0.123 0.386 0.445 0.874 -1.045 -0.277 -0.223 1.151 -1.451 -0.815 -0.242 0.476 -0.753 -0.651 0.463 -1.129 0.086 -0.849 0.946 0.555 -0.918 -0.376 0.300 0.538 -0.161 -1.964 0.483 1.234 -1.013 -1.868 -0.187 -0.759 -0.283 -0.621 0.954 . 0.652 . 1.280 0.445 -0.428 -0.523 0.262 . 0.187 0.482 0.551 -0.828 0.541 -0.241 0.183 0.239 -0.418 0.187 -0.100 0.572 -0.153 -0.913 0.115 0.487 -0.441 -1.457 0.582 -1.724 0.173 0.205 0.503 0.668 -0.868 -0.010 -0.201 1.014 -1.239 -0.065 -0.735 0.384 -0.524 -1.070 0.608 -0.465 -0.021 -0.124 0.456 0.213 -0.568 0.203 0.023 0.166 0.305 -0.972 0.180 1.045 -0.978 -1.394 0.068 -1.082 0.399 -0.082 0.338 . 0.991 . 1.009 0.469 -0.169 -0.230 -0.195 . 0.217 0.497 0.512 -1.382 0.920 -0.457 -0.007 0.477 -0.865 -0.018 0.099 0.633 -0.592 -0.386 0.029 0.730 -0.255 -0.945 -0.023 -0.925 -0.358 0.255 0.585 0.595 -0.650 -0.173 -0.051 0.794 -1.480 -0.077 -0.060 0.481 -1.069 -0.484 0.499 -1.301 0.359 -0.509 0.686 0.166 -1.052 -0.052 0.517 0.199 -0.538 -0.589 0.584 1.324 -1.034 -2.404 -0.288 -0.327 -0.631 -0.304 0.805 . 0.879 . 1.111 0.357 -0.616 0.137 -0.049 . 0.209 0.472 0.544 -1.061 0.348 -0.264 0.500 0.535 -0.271 -0.996 0.288 0.437 -0.181 -0.889 0.292 0.729 -0.179 -2.262 0.323 -1.458 -0.028 0.062 0.689 0.789 -0.950 -0.282 -0.101 1.049 -1.399 -0.512 -0.233 0.358 -0.740 -1.062 0.714 -1.392 0.094 -0.576 0.911 0.497 -0.711 -0.720 0.455 0.446 -0.348 -1.501 0.584 1.252 -1.192 -2.225 -0.050 -0.676 0.059 -0.328 0.619 . 0.671 . 1.268 0.455 -0.534 -0.307 0.177 . 0.172 0.366 0.664 -0.828 0.231 0.029 0.313 0.555 -0.498 -0.364 0.065 0.692 -0.491 -1.115 0.277 0.576 -0.266 -0.915 0.198 -1.386 -0.148 0.254 0.607 0.830 -0.677 -0.291 -0.358 0.973 -0.926 -0.642 -0.201 0.668 -0.799 -0.427 0.128 -0.613 0.011 -0.404 0.663 0.539 -0.628 -0.577 0.298 0.384 -0.322 -1.005 0.482 1.420 -0.611 -2.296 -1.103 -0.718 -0.303 -0.176 0.762 . 0.536 . 1.351 0.664 -0.468 -0.390 -0.106 . 0.345 0.536 0.357 -0.887 0.568 -0.381 0.273 0.204 -0.277 -0.085 0.111 0.512 -0.214 -1.114 0.321 0.461 -0.205 -1.663 0.526 -1.977 0.336 -0.042 0.597 0.622 -0.546 -0.124 -0.221 1.214 -1.396 -0.589 -0.655 0.525 -0.665 -1.392 0.632 -0.968 0.248 -0.129 0.472 0.272 -0.320 -0.218 0.178 -0.032 0.467 -1.295 0.301 1.189 -0.676 -1.669 -0.360 -1.082 0.442 -0.544 0.569 . 1.230 . 0.726 0.320 0.001 -0.177 -0.206 . 0.270 0.477 0.488 -2.098 1.050 -0.275 -0.201 0.497 -0.761 -0.027 0.025 0.714 -0.777 -0.593 0.155 0.775 0.172 -1.550 -0.286 -1.328 -0.373 0.417 0.580 0.746 -0.677 -0.148 -0.332 1.109 -1.537 -0.447 -0.386 0.591 -0.970 -0.610 0.409 -1.294 0.756 -0.446 0.226 0.539 -0.946 -0.273 0.264 0.410 -0.764 -0.852 0.612 1.182 -0.696 -2.429 -0.107 -0.574 -0.277 -0.212 0.713 . 0.957 . 1.041 0.621 -0.939 -0.235 0.126 . 0.703 0.283 0.209 -1.177 0.749 -0.229 0.035 0.501 -0.647 -0.409 0.254 0.429 -0.311 -0.921 0.399 0.584 -0.346 -1.784 0.510 -1.591 -0.080 0.157 0.684 0.815 -0.793 -0.496 -0.067 1.243 -1.695 -0.627 -0.562 0.673 -0.774 -0.912 0.367 -0.854 0.234 -0.400 0.597 0.399 -0.717 -0.502 0.450 0.289 -0.144 -1.252 0.539 1.347 -1.115 -2.031 -0.416 -0.598 -0.048 -0.062 0.500 . 0.612 . 1.306 0.383 -0.254 -0.481 0.189 . 0.274 0.545 0.414 -0.801 0.551 0.151 -0.234 frame2 LUT 5 4 4 0 0.000 -0.098 -0.139 0.460 -0.354 0.311 -0.929 0.106 0.212 0.606 -0.303 -0.221 -0.306 -0.356 -0.087 0.728 -0.690 0.440 -0.308 -0.130 -0.118 0.302 -0.897 0.629 -0.550 0.583 -0.763 0.103 -0.253 -0.780 0.083 0.804 -0.707 0.446 -0.618 0.294 -0.397 0.334 -0.305 -0.051 -0.051 0.740 -0.016 -0.318 -0.893 -0.491 -0.223 0.817 -0.579 0.368 -0.540 -0.270 0.253 0.608 -0.898 0.344 -0.577 0.326 -0.261 0.278 -0.516 -0.715 0.151 0.632 -0.453 0.149 -0.074 0.288 -0.472 0.362 -1.197 0.566 -0.326 0.288 0.081 -0.143 -0.295 -0.429 0.183 0.244 -0.091 0.308 -0.105 0.131 -0.440 0.369 -0.606 0.726 -1.334 0.519 -0.416 0.047 -0.350 -0.749 0.210 0.640 -0.536 0.482 -0.466 0.183 -0.426 0.275 0.226 0.134 -0.935 0.626 -0.212 -0.171 -0.503 -0.903 0.137 0.919 -1.074 -0.046 0.094 -0.127 0.067 0.328 -0.694 0.375 -0.270 0.477 -0.575 0.360 -0.615 -1.224 0.546 0.355 -0.263 0.060 -0.623 0.669 -0.477 0.266 -1.358 0.707 -0.369 0.272 0.107 0.037 -0.535 -0.537 -0.322 0.829 -0.446 0.402 -0.462 0.208 -0.326 0.489 -0.955 0.616 -0.867 0.505 -0.625 0.225 -0.388 -0.840 0.088 0.796 -0.639 0.339 -0.547 0.304 -0.293 -0.121 -0.205 0.535 -0.389 0.370 0.447 -0.691 -0.463 -1.103 0.195 0.822 -0.684 -0.032 0.028 -0.107 0.103 0.589 -1.064 0.441 -0.600 0.712 -0.627 -0.024 -0.453 -0.676 0.283 0.473 -0.378 . . . . 0.510 -0.746 0.226 -0.306 . . . . -0.651 -0.032 0.467 0.005 0.382 -0.477 0.116 -0.160 0.452 -0.671 0.399 -0.544 0.545 -0.749 0.208 -0.338 -0.856 0.130 0.646 -0.343 . . . . 0.419 -0.334 -0.282 0.067 0.361 -0.199 0.220 -0.557 -0.493 -0.114 0.719 -0.477 0.177 -0.413 -0.012 0.172 0.156 -0.132 0.122 -0.177 0.557 -0.897 0.428 -0.629 -0.628 -0.434 0.777 -0.153 0.390 -0.514 0.215 -0.271 0.332 -1.027 0.299 0.030 0.400 -0.300 0.164 -0.419 -0.309 -0.153 0.509 -0.200 0.505 -0.596 -0.239 0.100 0.451 -0.748 0.478 -0.634 0.446 -1.133 0.084 0.167 -0.802 -0.143 0.682 -0.125 0.708 -0.960 0.168 -0.455 0.566 -0.724 0.101 -0.248 0.726 0.026 -0.389 -0.827 -0.270 -0.464 0.706 -0.297 0.353 -0.544 -0.209 0.228 0.646 -0.950 0.219 -0.409 0.387 -0.310 0.102 -0.300 -0.795 0.035 0.586 -0.155 0.166 0.005 0.130 -0.358 0.440 -0.776 0.514 -0.664 0.139 0.042 0.100 -0.326 -0.472 0.516 0.097 -0.359 0.234 -0.285 0.234 -0.273 0.091 -1.052 0.963 -0.993 0.540 -0.710 0.078 -0.185 -0.794 0.324 0.707 -0.889 0.490 -0.451 -0.002 -0.209 0.239 -0.058 0.264 -0.604 0.467 0.173 -0.258 -0.611 -0.482 0.345 0.527 -0.804 0.157 0.201 -0.085 -0.334 0.148 -0.242 0.339 -0.356 0.445 -0.453 0.155 -0.332 -1.048 0.572 0.358 -0.419 0.165 -0.666 0.550 -0.350 0.291 -1.201 0.625 -0.324 0.385 -0.154 0.012 -0.345 -0.321 -0.306 0.614 -0.218 0.344 -0.616 0.248 -0.167 0.415 -1.251 0.673 -0.617 0.483 -1.167 0.127 0.092 -0.775 -0.291 0.832 -0.291 0.444 -0.669 0.360 -0.461 0.178 -0.755 0.560 -0.320 0.084 0.390 -0.573 -0.063 -0.694 -0.166 0.805 -0.427 0.017 -0.199 -0.038 0.193 0.382 -1.005 0.601 -0.553 0.195 -0.495 0.395 -0.267 -1.084 0.015 0.724 -0.207 . . . . 0.528 -0.581 0.151 -0.360 . . . . -0.413 0.085 0.437 -0.263 0.491 -0.481 -0.441 0.191 0.620 -0.653 0.040 -0.322 0.321 -0.841 0.183 0.080 -0.816 -0.038 0.650 -0.171 . . . . 0.453 -0.337 -0.337 0.066 0.538 -0.468 0.117 -0.433 -0.233 -0.388 0.834 -0.732 0.198 -0.255 -0.730 0.497 0.365 -0.122 -0.246 -0.074 0.546 -0.762 0.287 -0.454 -0.629 -0.620 0.828 -0.108 0.504 -0.452 0.147 -0.428 0.709 -0.925 0.036 -0.299 0.604 -0.048 0.023 -1.008 0.007 -0.017 0.376 -0.496 0.479 -0.151 -0.077 -0.400 0.486 -0.522 0.478 -0.973 0.439 -0.781 0.269 -0.222 -0.351 -0.088 0.734 -0.707 0.642 -0.558 0.095 -0.531 0.835 -0.467 -0.595 -0.268 0.773 -0.068 -0.284 -0.953 -0.130 -0.617 0.609 -0.139 0.535 -0.609 -0.290 0.107 0.617 -0.584 0.075 -0.423 0.416 -0.188 0.185 -0.619 -0.406 0.155 0.437 -0.362 0.247 -0.042 0.083 -0.353 0.712 -1.082 0.212 -0.451 0.371 0.094 -0.291 -0.284 -0.308 0.227 0.140 -0.120 0.425 -0.131 0.082 -0.544 0.574 -0.967 0.675 -1.311 0.584 -0.688 0.162 -0.393 -0.703 0.120 0.793 -0.819 0.502 -0.264 -0.036 -0.366 0.657 0.000 -0.177 -0.893 0.675 0.090 -0.454 -0.717 -0.491 0.265 0.632 -0.896 -0.026 -0.086 0.088 0.018 0.706 -0.929 0.186 -0.503 0.619 -0.438 0.220 -0.833 -0.710 0.464 0.304 -0.369 0.432 -0.579 0.406 -0.608 0.580 -1.087 0.399 -0.481 0.643 0.066 -0.258 -0.849 0.065 -0.161 0.368 -0.378 0.639 -0.459 -0.112 -0.340 0.546 -1.189 0.806 -1.500 0.732 -0.689 0.002 -0.480 -0.665 0.461 0.399 -0.568 0.435 -0.416 0.103 -0.279 0.250 -0.517 0.420 -0.371 0.526 0.163 -0.644 -0.322 -0.553 0.050 0.656 -0.498 -0.088 -0.187 0.048 0.198 0.700 -0.782 0.099 -0.467 0.331 -0.143 0.187 -0.518 -0.428 0.290 0.345 -0.389 . . . . 0.729 -0.713 -0.151 -0.266 . . . . -0.068 0.159 0.097 -0.218 0.392 -0.264 -0.171 -0.048 0.439 -0.491 0.469 -0.868 0.627 -0.848 0.105 -0.277 -0.783 0.210 0.649 -0.527 . . . . 0.627 -0.322 -0.486 -0.087 0.590 -0.199 -0.165 -0.451 -0.124 -0.227 0.575 -0.437 0.134 -0.197 -0.074 0.111 0.518 -0.276 -0.192 -0.206 0.541 -0.662 0.306 -0.563 -0.464 -0.446 0.701 -0.127 0.316 -0.336 0.259 -0.383 0.684 -0.882 -0.003 -0.229 0.480 0.040 0.252 -1.373 -0.188 -0.047 0.489 -0.414 0.583 -0.466 -0.060 -0.290 0.581 -0.778 0.420 -0.778 0.392 -0.733 0.531 -0.642 -0.921 -0.117 0.865 -0.457 0.759 -0.803 -0.037 -0.395 0.759 -0.869 -0.121 -0.250 0.905 0.253 -0.680 -1.680 -0.387 -0.263 0.727 -0.420 0.513 -0.577 -0.132 -0.014 0.863 -0.885 0.131 -0.877 0.378 -0.351 0.399 -0.741 -0.581 0.200 0.564 -0.506 0.257 -0.143 0.140 -0.326 0.558 -0.786 0.125 -0.222 0.458 0.039 -0.233 -0.419 -0.456 0.342 0.021 -0.015 0.435 -0.227 -0.055 -0.267 0.382 -0.600 0.635 -1.046 0.703 -0.821 0.147 -0.517 -0.584 0.180 0.630 -0.615 0.381 -0.630 0.170 -0.110 0.263 -0.087 0.114 -0.365 0.555 0.020 -0.191 -0.641 -0.915 0.265 0.679 -0.585 -0.140 0.275 -0.140 -0.037 0.428 -0.629 0.374 -0.490 0.628 -0.582 0.193 -0.637 -1.071 0.706 0.325 -0.644 0.392 -0.768 0.515 -0.575 0.482 -1.234 0.508 -0.403 0.567 0.157 -0.181 -0.940 -0.247 -0.383 0.726 -0.442 0.561 -0.478 -0.079 -0.217 0.663 -1.257 0.520 -0.824 0.622 -0.894 0.137 -0.280 -0.855 0.413 0.547 -0.612 0.578 -0.630 0.171 -0.443 0.098 -0.265 0.284 -0.185 0.451 0.405 -0.727 -0.504 -0.648 -0.135 0.779 -0.443 0.204 -0.084 -0.104 -0.038 0.647 -1.235 0.363 -0.467 0.628 -0.248 0.018 -0.736 -0.584 0.283 0.542 -0.599 . . . . 0.568 -0.778 0.257 -0.436 . . . . -0.219 0.126 0.303 -0.293 0.684 -0.577 -0.314 -0.122 0.479 -0.653 0.475 -0.785 0.476 -0.944 0.437 -0.443 -0.730 -0.038 0.772 -0.482 . . . . 0.374 -0.393 -0.131 0.041 0.414 -0.412 0.209 -0.396 -0.170 -0.243 0.719 -0.688 0.281 -0.342 -0.223 0.189 0.437 -0.350 0.082 -0.317 0.628 -1.045 0.452 -0.731 -0.402 -0.448 0.971 -0.864 frame2 LUT 5 4 4 0 0.000 0.502 -0.331 -0.838 0.298 0.201 0.047 -0.170 -0.107 0.696 -0.247 -0.696 -0.120 -0.637 0.237 -0.173 0.369 0.721 -0.297 -0.970 0.039 0.184 0.029 -0.465 0.163 0.711 -0.521 -0.085 -0.468 -0.101 0.059 -0.702 0.497 1.075 -0.613 -1.038 -0.411 0.341 -0.097 -0.792 0.288 0.988 -0.140 -0.879 -0.824 -0.424 -0.132 -0.509 0.713 0.496 -0.537 -1.120 0.526 0.396 0.017 -0.363 -0.161 0.566 -0.265 -0.150 -0.347 -0.582 0.124 -0.676 0.693 0.310 -0.199 -0.772 0.382 0.183 0.334 -0.903 0.097 0.613 -0.118 -1.002 0.070 -1.150 0.462 -0.872 0.701 0.769 0.103 -1.194 -0.349 0.250 -0.047 -0.207 -0.034 0.817 -0.462 -0.212 -0.625 0.087 0.272 -0.635 0.120 0.450 -0.069 -0.887 0.188 -0.034 0.494 -1.019 0.165 0.842 -0.123 -0.883 -0.420 -0.954 0.210 -0.181 0.531 0.275 0.017 -1.289 0.453 0.162 0.356 -0.669 -0.041 0.643 -0.320 -0.216 -0.365 -0.864 0.601 -0.696 0.397 0.668 -0.594 -0.357 -0.047 0.306 -0.080 -0.124 -0.152 0.700 0.071 -0.925 -0.325 -0.534 0.318 -0.575 0.476 0.731 -0.434 -0.292 -0.353 0.524 0.054 -0.271 -0.524 0.854 -0.725 0.005 -0.778 -0.607 0.725 -0.821 0.169 0.973 -0.967 -0.666 -0.160 0.437 -0.068 -1.115 0.300 1.145 -0.779 -0.993 -0.507 -1.215 0.469 -0.700 0.650 0.073 -0.217 -0.424 0.425 0.595 -0.373 -0.505 0.018 0.613 -0.456 0.028 -0.471 -0.591 0.266 -0.591 0.555 0.430 -0.345 -1.224 0.523 0.124 0.206 -0.372 -0.023 0.567 -0.112 -1.060 0.155 -1.217 0.382 -0.891 0.788 0.782 -0.251 -0.894 -0.148 0.320 -0.254 0.003 -0.135 0.849 -0.468 -0.340 -0.544 0.157 0.188 -0.848 0.252 0.535 -0.462 -0.591 0.216 0.376 -0.156 -0.813 0.305 0.710 -0.074 -0.587 -0.418 -0.627 0.218 -0.451 0.543 0.203 -0.232 -1.497 0.717 0.228 -0.027 -0.487 0.181 0.600 -0.253 -0.309 -0.254 -0.724 0.264 -0.496 0.570 0.536 -0.554 -1.015 0.459 0.616 -0.492 -0.647 0.161 0.458 -0.011 -0.647 -0.007 -0.679 0.181 -0.542 0.637 0.689 -0.396 -0.850 0.101 0.462 -0.367 -0.076 -0.155 0.665 -0.387 -0.233 -0.323 -0.449 0.089 -0.383 0.523 0.851 -0.503 -0.801 -0.126 0.724 -0.298 -1.292 0.171 0.974 0.177 -1.150 -1.137 -0.547 -0.159 -0.660 0.837 0.288 -0.300 -1.105 0.587 0.576 -0.158 -0.471 -0.167 0.429 -0.202 -0.165 -0.165 -0.650 -0.037 -0.544 0.767 0.271 0.242 -1.268 0.257 0.109 0.340 -0.907 0.166 0.669 -0.215 -0.711 -0.093 -0.889 0.575 -1.161 0.607 0.640 -0.226 -0.609 -0.103 0.573 -0.244 -0.427 -0.113 0.976 -0.997 -0.075 -0.778 0.105 0.344 -0.788 0.105 0.565 -0.226 -0.977 0.210 -0.135 0.631 -1.524 0.254 0.923 -0.123 -1.161 -0.437 -0.273 0.221 -0.895 0.555 0.039 0.470 -1.068 0.151 0.188 0.355 -0.923 0.077 0.656 -0.512 -0.042 -0.412 -0.807 0.815 -0.952 0.204 0.538 -0.605 -0.557 0.276 0.361 -0.522 0.014 0.014 0.781 -0.184 -0.900 -0.208 -0.878 0.385 -0.666 0.603 0.887 -0.785 -0.506 -0.207 0.238 -0.370 0.179 -0.128 0.828 -0.807 -0.010 -0.601 -0.574 0.277 -0.606 0.546 0.939 -0.754 -0.438 -0.412 0.430 -0.241 -0.372 0.048 1.060 -0.148 -2.270 -0.313 -0.896 -0.283 -0.398 0.912 0.367 -0.097 -0.891 0.305 0.315 -0.497 -0.186 0.225 0.495 -0.260 -0.043 -0.349 -0.689 0.319 -0.595 0.556 0.446 -0.182 -1.486 0.484 0.181 0.123 -0.567 0.140 0.495 0.095 -0.705 -0.138 -1.245 0.467 -1.037 0.773 0.721 -0.194 -1.121 0.026 0.254 -0.224 0.204 -0.322 0.708 -0.487 -0.170 -0.389 -0.238 0.537 -0.708 0.122 0.953 -0.760 -1.147 0.031 0.115 0.038 -1.034 0.488 0.943 -0.088 -1.182 -0.522 -0.908 0.119 -0.281 0.640 0.099 -0.128 -1.858 0.797 0.214 -0.021 -0.564 0.236 0.396 -0.189 -0.270 -0.033 -1.139 0.328 -0.651 0.726 0.695 -0.553 -1.019 0.270 0.375 -0.380 -0.209 0.097 0.882 -0.320 -0.686 -0.445 -0.577 0.263 -0.435 0.475 0.721 -0.159 -0.989 -0.071 0.272 0.023 -0.324 -0.033 0.889 -0.469 -0.373 -0.612 -0.165 0.165 -0.618 0.418 1.032 -0.694 -1.074 -0.213 0.611 -0.283 -1.086 0.237 1.211 -0.414 -1.095 -1.101 -0.367 -0.130 -0.687 0.757 0.571 -0.631 -0.996 0.451 0.368 0.029 -0.375 -0.124 0.743 -0.340 -0.198 -0.589 -0.975 0.377 -0.916 0.733 0.448 -0.372 -0.993 0.445 0.318 0.004 -0.977 0.314 0.366 0.292 -1.257 0.095 -1.096 0.337 -0.863 0.782 0.781 -0.056 -0.758 -0.457 0.447 -0.395 -0.164 -0.024 0.665 -0.039 -0.373 -0.579 0.217 0.096 -0.687 0.200 0.561 -0.378 -0.761 0.220 0.027 0.169 -1.310 0.540 0.755 0.362 -1.577 -0.530 -1.046 -0.079 -0.505 0.899 0.241 -0.098 -0.794 0.386 0.347 0.069 -0.809 0.147 0.414 0.078 -0.285 -0.337 -0.990 0.725 -0.773 0.332 0.762 -0.390 -0.825 -0.034 0.545 0.118 -0.658 -0.284 0.664 -0.127 -0.463 -0.369 -0.512 0.239 -0.590 0.540 0.840 -0.414 -0.510 -0.401 0.365 -0.237 -0.204 -0.007 0.711 -0.753 0.234 -0.753 -0.361 0.696 -1.250 0.240 1.014 -0.793 -0.844 -0.242 0.507 -0.308 -1.191 0.415 1.029 -0.237 -0.675 -1.044 -0.405 -0.205 -0.501 0.740 0.212 -0.104 -0.479 0.255 0.338 -0.280 -0.567 0.307 0.130 -0.547 0.429 -0.192 -0.661 0.283 -0.760 0.642 0.504 -0.087 -1.953 0.467 0.233 -0.033 -0.944 0.409 0.588 0.008 -1.610 0.219 -1.047 0.254 -0.930 0.847 0.657 -0.135 -0.959 -0.003 0.047 -0.175 0.185 -0.082 0.762 -0.371 -0.473 -0.303 0.097 0.208 -0.587 0.150 0.827 -0.567 -1.534 0.270 0.218 -0.131 -1.605 0.674 1.038 0.045 -2.010 -0.585 -0.716 -0.022 -0.443 0.741 0.108 -0.145 -1.307 0.690 0.257 -0.089 -0.329 0.097 0.513 -0.198 -0.327 -0.145 -0.740 0.306 -0.682 0.625 . . . . . . . . . . . . . . . . 0.610 -0.206 -1.040 0.164 0.260 -0.080 -0.339 0.092 0.807 -0.556 -0.355 -0.343 -0.336 0.042 -0.407 0.509 . . . . . . . . . . . . . . . . 0.496 -0.403 -1.152 0.469 0.409 0.089 -0.644 -0.046 0.557 -0.372 -0.230 -0.146 -0.693 0.105 -0.654 0.740 0.427 -0.124 -0.933 0.279 0.379 0.114 -1.316 0.281 0.477 0.043 -0.725 -0.040 -1.524 0.702 -1.072 0.632 0.621 0.052 -0.800 -0.233 0.364 -0.300 -0.195 0.038 0.842 -0.563 -0.164 -0.647 -0.135 0.442 -0.422 -0.022 0.658 -0.548 -0.901 0.266 0.129 0.250 -1.046 0.302 0.730 0.093 -0.773 -0.537 -1.055 0.429 -0.456 0.530 -0.167 0.497 -0.666 0.095 0.285 0.185 -0.496 -0.095 0.352 -0.141 0.162 -0.518 -1.410 1.053 -1.014 0.075 . . . . . . . . . . . . . . . . 0.828 -0.246 -0.936 -0.219 0.309 -0.142 -0.211 -0.013 0.820 -0.612 -0.131 -0.583 -0.829 0.593 -0.597 0.342 0.672 -0.622 -0.499 0.070 0.518 -0.529 -0.998 0.458 0.702 -0.341 -0.380 -0.294 -0.768 0.224 -0.443 0.594 0.499 -0.208 -1.069 0.315 0.409 -0.179 -0.512 0.120 0.661 -0.339 -0.360 -0.236 -0.842 0.363 -0.431 0.501 0.442 -0.304 -0.802 0.331 0.217 0.003 -0.652 0.262 0.671 -0.062 -0.854 -0.157 -1.397 0.402 -0.672 0.741 0.717 -0.155 -1.319 0.081 0.432 -0.339 -0.272 0.045 0.720 -0.460 -0.069 -0.572 -0.398 0.203 -0.529 0.483 0.778 -0.670 -0.683 0.048 0.336 -0.161 -1.023 0.435 0.863 0.037 -1.103 -0.535 -0.734 0.240 -0.620 0.648 0.179 -0.549 -1.231 0.814 0.315 -0.128 -0.865 0.369 0.445 -0.211 -0.259 -0.090 -0.897 0.233 -0.779 0.770 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.734 -0.552 -0.431 -0.132 0.881 -0.105 -0.879 -0.547 1.136 -0.120 -0.735 -1.828 0.158 0.123 -0.178 -0.135 0.564 -0.278 -0.006 -0.514 1.263 -0.791 -1.322 -0.684 1.037 -0.341 -0.160 -1.926 0.022 0.065 0.148 -0.267 0.691 -0.267 -0.309 -0.419 0.967 -0.532 -0.807 -0.355 1.494 -0.708 -0.914 -4.615 -0.363 0.199 0.000 0.103 0.443 0.104 -1.076 0.126 0.857 -0.018 -0.971 -0.532 0.765 0.085 -0.023 -1.968 0.000 0.310 -0.191 -0.177 E-2 LUT 3 2 4 0 0.000 1.190 -0.956 -1.385 -0.286 1.480 -1.327 -2.082 -0.797 1.371 -0.436 -2.260 -1.102 0.117 -0.084 -0.422 0.293 1.275 -0.957 -0.829 -0.991 1.522 -1.412 -1.312 -1.519 1.553 -1.492 -1.322 -1.684 0.035 -0.275 -0.459 0.507 1.251 -1.439 -1.091 -0.355 1.415 -1.433 -2.018 -0.482 1.636 -0.949 -3.534 -1.797 -2.358 0.102 -0.550 1.035 0.931 -0.275 -1.769 -0.039 1.522 -1.442 -1.267 -1.539 1.418 -1.259 -1.366 -0.937 -0.217 0.120 -0.406 0.376 E-1 LUT 3 2 4 0 0.000 -0.117 -2.409 1.299 -1.224 -0.118 -2.865 1.069 -0.246 0.655 -1.515 0.459 -0.515 -1.180 -1.788 1.221 -0.092 -0.677 -2.635 1.575 -2.087 -0.195 -2.121 1.415 -2.121 0.507 -2.248 1.074 -1.926 -1.459 -0.694 1.173 -0.389 -0.816 -1.961 1.395 -0.876 -0.396 -2.322 1.163 -0.322 0.135 -0.672 0.913 -1.350 -2.018 -2.340 1.591 -0.880 -0.174 -1.683 1.059 -0.477 0.008 -1.992 1.207 -1.203 -0.090 -1.044 0.838 -0.344 -1.188 -2.188 1.369 -0.397 G LUT 3 2 4 0 0.000 -6.669 -6.669 1.989 -6.669 -4.807 -4.807 1.961 -4.807 -8.481 -8.481 1.997 -8.481 -5.839 -5.839 1.981 -5.839 -5.011 -5.011 1.966 -5.011 -2.807 -2.807 1.837 -2.807 -6.331 -6.331 1.986 -6.331 -4.443 -4.443 1.949 -4.443 -5.077 -5.077 1.968 -5.077 -3.392 -3.392 1.893 -3.392 -5.476 -5.476 1.975 -5.476 -4.000 -4.000 1.931 -4.000 -4.190 -4.190 1.939 -4.190 -3.781 -3.781 1.919 -3.781 -6.798 -6.798 1.990 -6.798 -5.180 -5.180 1.970 -5.180 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.516 -7.516 -7.516 1.994 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.814 -5.814 -5.814 1.981 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.206 -9.206 -9.206 1.998 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.003 -7.003 -7.003 1.992 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.188 -4.092 -0.013 -0.575 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.350 -1.424 -1.431 -0.501 1.439 -1.298 -1.561 -0.883 1.787 -2.533 -2.083 -2.846 0.819 -1.576 -1.009 0.489 I+3 LUT 3 2 4 0 0.000 -0.959 -2.253 1.455 -0.904 -0.439 -1.986 1.171 -0.401 -0.322 -1.979 1.439 -2.095 -1.108 -1.899 1.239 -0.140 -1.841 -2.426 1.744 -2.426 -1.170 -1.170 1.152 -0.170 0.585 -1.000 0.585 -1.000 -1.459 0.541 0.541 -0.459 -3.159 -4.224 1.893 -3.039 -0.874 -1.874 1.184 -0.138 -2.298 -2.883 1.790 -2.298 -3.170 -1.585 1.637 -1.170 -2.165 -4.165 1.795 -1.995 -2.248 -2.833 1.811 -2.833 -3.375 -2.375 1.691 -1.053 -2.032 -1.932 1.465 -0.447 I+4 LUT 3 2 4 0 0.000 0.516 -1.203 -1.981 0.913 0.263 -0.791 -1.170 0.830 -0.549 -1.390 -2.253 1.446 -0.070 -1.392 -2.267 1.298 0.503 -2.585 0.115 0.415 0.752 0.074 -0.663 -0.663 -1.222 -1.527 -0.188 1.231 -0.728 -1.728 0.360 0.857 0.778 -1.293 -0.030 -0.155 0.263 -0.737 0.485 -0.322 -0.379 -1.164 -1.630 1.300 -1.700 -0.700 -0.700 1.300 0.462 0.069 -1.609 0.317 0.503 -1.000 -0.126 0.222 -0.521 -1.757 -1.541 1.413 -0.181 -1.087 -1.387 1.179 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.961 -1.048 -1.580 0.305 0.436 -0.563 -0.816 0.488 0.207 -0.612 -0.890 0.724 -0.164 -0.649 -0.833 0.932 0.673 -0.614 -0.952 0.305 0.482 -0.325 -0.501 0.135 0.502 -0.725 -0.420 0.300 -0.092 -0.607 -0.451 0.743 0.885 -1.030 -0.533 -0.039 0.247 -0.300 -0.821 0.521 0.231 -0.595 -0.548 0.566 -0.184 -1.031 -0.338 0.879 0.545 -0.891 -0.888 0.547 0.371 -0.577 -0.251 0.258 0.313 -0.570 -0.786 0.589 -0.519 -0.739 -0.743 1.074 0.874 -0.828 -1.055 0.167 0.705 -0.512 -0.847 0.154 0.347 -0.714 -0.613 0.550 -0.097 -0.723 -0.770 0.905 0.753 -0.301 -0.950 -0.021 0.410 0.097 -0.712 -0.012 0.494 -0.385 -0.558 0.197 0.048 -0.173 -0.451 0.431 0.728 -0.610 -0.517 -0.014 0.323 -0.308 -0.197 0.097 0.341 -0.507 -0.489 0.397 -0.252 -0.417 -0.268 0.661 0.338 -0.225 -0.664 0.321 0.389 -0.333 -0.629 0.322 0.523 -0.653 -0.722 0.402 -0.754 -0.517 -0.653 1.051 1.033 -1.206 -0.723 -0.129 0.558 -0.569 -0.409 0.139 0.692 -0.472 -0.536 -0.039 -0.094 -0.707 -0.494 0.800 0.536 -0.608 -0.301 0.114 0.367 -0.520 -0.456 0.361 0.338 -0.155 -0.222 -0.027 -0.252 -0.213 -0.323 0.584 0.897 -1.201 -0.334 -0.136 0.472 -0.435 -0.400 0.157 0.394 -0.541 -0.023 0.022 0.392 -1.195 -0.182 0.453 0.534 -0.564 -0.507 0.229 0.445 -0.723 -0.588 0.451 0.511 -0.590 -0.430 0.224 -0.540 -0.856 -0.607 1.072 0.807 -1.091 -1.247 0.444 0.562 -0.527 -0.895 0.369 0.449 -0.699 -0.564 0.424 0.049 -0.781 -0.872 0.877 0.711 -0.682 -0.679 0.156 0.423 -0.153 -0.488 0.065 0.790 -0.825 -0.476 -0.017 -0.130 -0.113 -0.359 0.467 0.712 -0.760 -0.596 0.150 0.495 -0.346 -0.801 0.299 0.322 -0.455 -0.353 0.308 -0.058 -0.857 -0.350 0.768 0.537 -0.828 -0.877 0.527 0.492 -0.351 -0.722 0.267 0.478 -0.474 -0.618 0.305 -0.687 -0.449 -1.026 1.108 1.097 -1.180 -1.578 0.118 0.527 -0.684 -0.923 0.495 0.444 -0.548 -0.713 0.428 -0.182 -0.967 -1.070 1.091 0.522 -0.064 -0.934 0.116 0.435 -0.229 -0.571 0.166 0.310 -0.346 -0.470 0.323 -0.324 -0.507 -0.375 0.788 0.942 -0.934 -0.708 -0.085 0.224 -0.359 -0.476 0.415 -0.079 -0.375 -0.752 0.755 0.054 -0.861 -0.414 0.732 0.583 -0.735 -0.945 0.467 0.502 -0.513 -0.813 0.394 0.261 -0.477 -0.745 0.572 -0.724 -0.633 -0.961 1.161 0.984 -0.913 -1.309 0.120 0.273 0.020 -0.642 0.185 0.517 -0.513 -0.576 0.260 -0.261 -0.249 -0.884 0.833 0.687 -0.378 -0.995 0.161 0.007 0.485 -0.694 -0.032 0.177 0.083 -0.554 0.175 -0.206 0.189 -0.649 0.439 0.814 -0.779 -0.674 0.046 -0.076 0.383 -0.414 -0.005 0.321 -0.225 -0.514 0.257 -0.104 -0.284 -0.426 0.589 0.578 -0.360 -0.658 0.130 0.170 -0.013 -0.887 0.426 0.529 -0.269 -0.865 0.237 -0.670 -0.045 -0.647 0.818 1.151 -1.289 -1.455 0.007 0.583 -0.560 -0.349 0.055 0.694 -0.445 -0.784 0.094 -0.279 -0.909 -0.720 1.026 0.595 -0.513 -0.399 0.042 0.093 0.077 -0.418 0.177 0.135 0.290 -0.460 -0.071 -0.312 -0.168 -0.229 0.538 0.962 -1.185 -0.356 -0.267 0.499 -0.439 -0.216 -0.017 0.289 -0.609 -0.158 0.295 0.094 -0.689 -0.272 0.569 0.590 -0.758 -0.480 0.246 0.367 -0.615 -0.324 0.332 0.178 -0.470 -0.266 0.395 -0.755 -0.632 -0.658 1.090 0.948 -1.029 -1.370 0.255 0.677 -0.500 -1.070 0.285 0.618 -0.837 -0.439 0.224 -0.114 -0.604 -0.851 0.898 0.707 -0.404 -1.149 0.216 0.415 -0.186 -0.561 0.150 0.414 -0.448 -0.450 0.266 -0.288 0.281 -0.668 0.419 1.058 -1.055 -1.175 -0.009 0.338 -0.109 -0.806 0.306 0.566 -0.429 -0.582 0.149 0.165 -0.476 -0.430 0.504 0.456 -0.580 -0.816 0.476 0.320 -0.232 -1.282 0.574 0.451 -0.531 -0.707 0.409 -0.572 -0.382 -0.845 1.002 1.130 -1.212 -1.612 0.075 0.598 -0.632 -0.765 0.325 0.623 -0.468 -0.621 0.121 0.003 -1.009 -0.856 0.962 0.581 -0.260 -0.720 0.087 0.479 -0.224 -0.570 0.105 0.441 -0.351 -0.440 0.165 0.030 -0.571 -0.404 0.632 0.802 -0.828 -0.274 -0.208 0.573 -0.369 -0.885 0.259 0.359 -0.585 -0.407 0.375 -0.036 -1.040 -0.394 0.830 0.630 -0.851 -0.866 0.432 0.425 -0.621 -0.584 0.422 0.492 -0.770 -0.349 0.290 -0.653 -0.935 -0.960 1.219 0.939 -0.804 -1.110 0.067 0.590 -0.338 -0.771 0.160 0.356 -0.210 -0.332 0.085 -0.076 -0.570 -0.669 0.806 0.770 -0.310 -0.902 -0.069 0.630 -0.088 -0.473 -0.338 0.526 0.011 -0.588 -0.173 0.451 -0.294 -0.480 0.138 0.798 -0.555 -0.583 -0.130 0.065 0.013 0.052 -0.140 0.271 0.010 -0.296 -0.040 -0.150 -0.153 -0.135 0.366 0.624 -0.507 -0.681 0.178 0.410 -0.122 -0.839 0.256 0.596 -0.211 -0.674 -0.003 -0.237 -0.179 -0.790 0.757 1.093 -1.341 -0.903 -0.094 0.532 -0.314 -0.493 0.056 0.537 -0.215 -0.295 -0.196 -0.157 -0.767 -0.552 0.875 0.708 -0.516 -0.410 -0.128 0.401 -0.555 -0.123 0.111 0.086 0.029 0.168 -0.332 -0.334 0.026 -0.373 0.502 0.893 -0.937 -0.378 -0.233 0.183 -0.537 0.065 0.176 0.175 -0.758 0.420 -0.086 -0.052 -0.443 -0.182 0.504 0.639 -0.672 -0.363 0.053 0.440 -0.547 -0.568 0.361 0.495 -0.647 -0.227 0.135 -0.389 -0.786 -0.730 1.038 0.626 -1.004 -0.235 0.149 0.503 -0.421 -0.696 0.286 0.318 -0.814 -0.192 0.389 -0.090 -0.809 -0.513 0.839 0.588 -0.476 -0.704 0.219 0.351 -0.090 -0.518 0.120 0.387 -0.419 -0.384 0.237 -0.131 0.080 -0.473 0.389 0.555 -0.969 0.148 -0.134 0.455 -0.254 -0.593 0.172 0.150 -0.214 -0.284 0.270 -0.208 -0.484 0.050 0.468 0.413 -0.669 -0.416 0.368 0.508 -0.485 -0.808 0.369 0.361 -0.479 -0.516 0.377 -0.699 -0.502 -0.782 1.068 1.022 -1.135 -1.476 0.208 0.496 -0.443 -1.107 0.475 0.310 -0.286 -0.955 0.510 -0.084 -0.957 -1.078 1.048 0.576 -0.618 -0.408 0.143 0.403 -0.397 -0.477 0.263 0.294 -0.454 -0.199 0.230 -0.136 -0.446 -0.314 0.634 0.875 -1.008 -0.639 0.037 0.383 -0.326 -0.888 0.441 0.092 0.253 -0.900 0.271 -0.173 -0.652 -0.580 0.854 0.441 -0.850 -0.827 0.608 0.577 -0.651 -0.699 0.328 0.403 -0.566 -0.708 0.475 -0.480 -0.623 -0.901 1.069 0.938 -1.005 -1.253 0.222 0.522 -0.398 -1.022 0.392 0.509 -0.490 -0.721 0.331 -0.180 -0.292 -0.871 0.811 0.609 -0.611 -0.262 -0.020 0.344 0.072 -0.582 0.016 0.393 -0.265 -0.375 0.116 -0.175 0.059 -0.496 0.447 0.775 -1.052 -0.814 0.308 0.276 -0.134 -0.613 0.291 0.342 -0.127 -0.693 0.260 -0.314 -0.224 -0.458 0.689 0.512 -0.585 -0.436 0.225 0.226 -0.427 -0.702 0.558 0.613 -0.501 -0.688 0.193 -0.602 0.073 -0.617 0.711 1.097 -1.248 -1.173 -0.005 0.516 -0.399 -0.468 0.123 0.502 -0.293 -0.818 0.264 0.041 -0.781 -0.523 0.760 0.671 -0.624 -0.441 0.031 0.448 -0.603 -0.396 0.285 0.164 -0.128 -0.357 0.243 -0.373 0.218 -0.417 0.396 1.023 -1.331 -0.503 -0.209 0.464 -0.357 -0.523 0.194 0.350 -0.329 -0.399 0.228 -0.022 -0.800 -0.071 0.574 0.463 -0.758 -0.186 0.203 0.445 -0.599 -0.544 0.370 0.351 -0.382 -0.822 0.477 -0.565 -0.497 -0.574 0.959 1.010 -1.156 -1.363 0.199 0.598 -0.430 -0.962 0.300 0.484 -0.539 -0.555 0.301 -0.135 -0.613 -0.942 0.937 0.624 -0.932 0.066 -0.172 0.618 -0.269 -0.660 0.004 0.631 -0.580 -0.397 0.033 -0.151 -0.109 -0.418 0.509 0.987 -1.131 -0.715 -0.072 0.559 -0.195 -0.842 0.132 0.481 -0.261 -0.630 0.168 -0.079 -0.611 -0.409 0.718 0.706 -0.935 -0.711 0.304 0.593 -0.369 -0.848 0.216 0.565 -0.546 -0.566 0.214 -0.607 -0.239 -0.731 0.921 Intron LUT 5 4 4 0 0.000 1.007 -1.148 -1.698 0.299 0.412 -0.573 -0.881 0.540 0.155 -0.592 -0.907 0.757 -0.214 -0.672 -0.900 0.981 0.700 -0.650 -0.987 0.303 0.506 -0.280 -0.504 0.073 0.521 -0.857 -0.358 0.302 -0.029 -0.720 -0.407 0.730 0.911 -1.094 -0.632 0.009 0.214 -0.295 -0.844 0.554 0.115 -0.769 -0.608 0.744 -0.184 -1.108 -0.336 0.898 0.545 -0.938 -0.857 0.552 0.369 -0.600 -0.136 0.188 0.325 -0.615 -0.745 0.583 -0.539 -0.816 -0.750 1.104 0.959 -0.987 -1.097 0.117 0.739 -0.551 -0.857 0.132 0.309 -0.831 -0.457 0.557 -0.073 -0.888 -0.740 0.934 0.849 -0.413 -0.893 -0.137 0.472 -0.037 -0.577 -0.047 0.638 -0.537 -0.537 0.092 0.195 -0.400 -0.480 0.465 0.798 -0.675 -0.600 -0.037 0.384 -0.356 -0.262 0.112 0.419 -0.529 -0.711 0.442 -0.063 -0.600 -0.305 0.654 0.390 -0.217 -0.604 0.228 0.430 -0.342 -0.576 0.255 0.580 -0.789 -0.755 0.415 -0.704 -0.622 -0.669 1.075 1.105 -1.360 -0.873 -0.131 0.560 -0.533 -0.554 0.206 0.631 -0.430 -0.509 0.009 -0.095 -0.847 -0.538 0.864 0.584 -0.693 -0.250 0.058 0.330 -0.560 -0.447 0.413 0.346 -0.147 -0.197 -0.070 -0.179 -0.217 -0.339 0.552 0.971 -1.383 -0.404 -0.151 0.504 -0.475 -0.538 0.231 0.386 -0.654 0.008 0.074 0.557 -1.417 -0.213 0.369 0.625 -0.713 -0.483 0.179 0.495 -0.887 -0.611 0.480 0.602 -0.658 -0.439 0.151 -0.513 -1.006 -0.640 1.111 0.824 -1.144 -1.221 0.431 0.562 -0.604 -0.912 0.416 0.446 -0.650 -0.470 0.355 0.077 -0.865 -0.892 0.893 0.801 -0.723 -0.672 0.035 0.463 -0.228 -0.422 0.031 0.881 -1.009 -0.380 -0.162 0.044 -0.394 -0.268 0.462 0.745 -0.770 -0.534 0.067 0.533 -0.299 -0.862 0.251 0.324 -0.515 -0.342 0.333 -0.024 -0.939 -0.335 0.767 0.623 -0.876 -0.831 0.436 0.535 -0.348 -0.645 0.171 0.536 -0.523 -0.507 0.203 -0.710 -0.506 -1.069 1.142 1.188 -1.350 -1.657 0.019 0.576 -0.697 -1.036 0.490 0.429 -0.626 -0.589 0.423 -0.142 -1.177 -1.203 1.149 0.621 -0.191 -0.949 0.095 0.456 -0.273 -0.602 0.191 0.355 -0.407 -0.257 0.176 -0.146 -0.707 -0.325 0.753 1.023 -1.005 -0.731 -0.207 0.099 -0.316 -0.307 0.397 -0.293 -0.443 -0.850 0.921 0.128 -0.999 -0.402 0.722 0.606 -0.852 -0.858 0.457 0.530 -0.710 -0.631 0.377 0.258 -0.527 -0.655 0.561 -0.618 -0.836 -1.035 1.202 1.110 -1.181 -1.268 -0.021 0.317 -0.005 -0.729 0.207 0.600 -0.662 -0.447 0.162 -0.137 -0.495 -0.816 0.859 0.856 -0.495 -0.960 -0.049 0.048 0.431 -0.572 -0.081 0.332 -0.001 -0.374 -0.043 0.023 -0.088 -0.453 0.392 0.928 -0.954 -0.692 -0.056 0.049 0.339 -0.414 -0.074 0.372 -0.270 -0.414 0.171 0.124 -0.481 -0.328 0.482 0.679 -0.442 -0.512 -0.056 0.295 -0.066 -0.823 0.325 0.607 -0.312 -0.785 0.125 -0.528 -0.229 -0.551 0.824 1.272 -1.524 -1.707 -0.104 0.736 -0.595 -0.554 -0.013 0.752 -0.542 -0.703 0.021 -0.269 -1.097 -0.748 1.075 0.683 -0.777 -0.317 0.011 0.177 0.032 -0.468 0.169 0.287 0.182 -0.417 -0.157 -0.190 -0.343 -0.124 0.503 1.070 -1.322 -0.468 -0.362 0.594 -0.477 -0.284 -0.073 0.285 -0.694 -0.011 0.228 0.286 -0.969 -0.315 0.552 0.732 -0.926 -0.431 0.099 0.478 -0.644 -0.265 0.182 0.343 -0.603 -0.207 0.271 -0.558 -0.757 -0.715 1.084 1.037 -1.163 -1.353 0.150 0.816 -0.506 -1.330 0.186 0.624 -0.813 -0.371 0.158 0.006 -0.924 -0.754 0.908 0.870 -0.624 -1.085 0.074 0.518 -0.325 -0.511 0.095 0.510 -0.668 -0.192 0.099 0.021 0.002 -0.523 0.365 1.163 -1.278 -1.100 -0.181 0.416 -0.093 -0.849 0.230 0.566 -0.538 -0.409 0.107 0.262 -0.628 -0.485 0.525 0.536 -0.681 -0.545 0.311 0.458 -0.281 -1.250 0.468 0.543 -0.556 -0.635 0.285 -0.465 -0.538 -0.833 1.018 1.195 -1.410 -1.704 0.038 0.655 -0.655 -0.861 0.310 0.549 -0.500 -0.531 0.186 -0.016 -1.206 -0.906 1.031 0.624 -0.320 -0.721 0.073 0.567 -0.260 -0.607 0.038 0.364 -0.399 -0.373 0.242 0.117 -0.741 -0.432 0.656 0.870 -0.905 -0.433 -0.155 0.568 -0.357 -0.946 0.285 0.181 -0.637 -0.435 0.569 -0.082 -1.198 -0.398 0.896 0.714 -0.979 -0.896 0.395 0.538 -0.597 -0.578 0.283 0.498 -0.901 -0.262 0.285 -0.656 -1.141 -1.097 1.290 1.040 -1.021 -1.142 -0.004 0.637 -0.324 -0.871 0.136 0.269 -0.196 -0.138 0.019 -0.010 -0.632 -0.610 0.771 0.941 -0.501 -1.020 -0.185 0.839 -0.310 -0.552 -0.469 0.625 -0.104 -0.606 -0.202 0.654 -0.546 -0.394 -0.029 0.904 -0.739 -0.674 -0.148 -0.011 0.057 -0.067 0.018 0.343 -0.043 -0.408 0.011 0.021 -0.245 -0.147 0.308 0.717 -0.621 -0.822 0.189 0.439 -0.126 -0.752 0.182 0.727 -0.248 -0.753 -0.138 -0.058 -0.249 -0.829 0.709 1.155 -1.455 -1.037 -0.120 0.476 -0.262 -0.489 0.088 0.527 -0.232 -0.276 -0.182 -0.199 -0.870 -0.527 0.916 0.806 -0.589 -0.477 -0.204 0.425 -0.784 -0.001 0.109 0.136 0.042 0.136 -0.372 -0.302 -0.099 -0.268 0.511 0.928 -1.013 -0.411 -0.235 0.149 -0.667 0.074 0.273 0.182 -0.970 0.424 0.018 0.068 -0.578 -0.221 0.510 0.783 -0.823 -0.443 -0.032 0.501 -0.585 -0.570 0.316 0.640 -0.751 -0.271 0.027 -0.274 -0.920 -0.709 1.023 0.562 -1.122 0.067 0.023 0.491 -0.429 -0.607 0.258 0.215 -0.884 -0.091 0.442 -0.082 -0.939 -0.324 0.795 0.724 -0.638 -0.635 0.087 0.438 -0.300 -0.307 0.036 0.389 -0.485 -0.225 0.163 0.067 -0.105 -0.455 0.371 0.519 -1.198 0.440 -0.369 0.578 -0.338 -0.672 0.123 0.168 -0.228 -0.254 0.244 -0.197 -0.529 0.080 0.463 0.473 -0.807 -0.248 0.261 0.563 -0.592 -0.680 0.304 0.460 -0.586 -0.365 0.240 -0.658 -0.670 -0.711 1.089 1.089 -1.274 -1.540 0.158 0.534 -0.426 -1.156 0.443 0.253 -0.336 -0.962 0.588 -0.079 -1.124 -1.066 1.082 0.638 -0.845 -0.278 0.088 0.430 -0.440 -0.447 0.241 0.327 -0.543 -0.188 0.241 -0.063 -0.643 -0.236 0.635 0.950 -1.167 -0.647 -0.023 0.440 -0.333 -0.945 0.411 0.066 0.225 -0.797 0.274 -0.146 -0.741 -0.567 0.866 0.508 -0.917 -0.801 0.560 0.619 -0.736 -0.652 0.296 0.441 -0.557 -0.629 0.397 -0.436 -0.723 -0.941 1.094 1.028 -1.187 -1.273 0.147 0.611 -0.484 -0.963 0.315 0.463 -0.472 -0.521 0.268 -0.059 -0.439 -0.775 0.781 0.656 -0.786 -0.002 -0.241 0.420 -0.028 -0.550 -0.003 0.505 -0.435 -0.328 0.063 0.001 -0.053 -0.381 0.342 0.824 -1.234 -0.811 0.304 0.261 -0.212 -0.624 0.367 0.379 -0.093 -0.756 0.226 -0.111 -0.448 -0.349 0.638 0.576 -0.678 -0.282 0.088 0.368 -0.497 -0.561 0.404 0.727 -0.569 -0.534 -0.028 -0.376 -0.082 -0.549 0.679 1.175 -1.372 -1.210 -0.116 0.572 -0.457 -0.473 0.090 0.436 -0.360 -0.724 0.336 0.075 -0.976 -0.440 0.767 0.723 -0.793 -0.287 -0.070 0.467 -0.681 -0.316 0.252 0.239 -0.214 -0.252 0.161 -0.188 0.066 -0.347 0.367 1.083 -1.468 -0.503 -0.297 0.433 -0.379 -0.510 0.238 0.322 -0.314 -0.378 0.234 0.119 -0.953 -0.072 0.532 0.545 -0.934 0.005 0.020 0.556 -0.777 -0.428 0.266 0.422 -0.391 -0.732 0.374 -0.472 -0.640 -0.628 0.993 1.066 -1.181 -1.339 0.098 0.682 -0.481 -0.977 0.227 0.433 -0.471 -0.493 0.284 -0.054 -0.705 -0.884 0.912 0.641 -1.188 0.316 -0.402 0.770 -0.441 -0.549 -0.193 0.692 -0.674 -0.263 -0.114 0.045 -0.332 -0.264 0.423 1.036 -1.193 -0.661 -0.185 0.660 -0.242 -0.888 0.048 0.472 -0.284 -0.581 0.167 0.036 -0.703 -0.364 0.663 0.785 -0.967 -0.616 0.155 0.741 -0.462 -0.781 0.030 0.632 -0.620 -0.450 0.095 -0.605 -0.294 -0.719 0.941 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 0.844 -0.478 -2.285 0.358 0.522 0.037 -1.285 0.174 0.497 -1.087 -0.087 0.234 -0.868 -0.190 -1.868 1.202 0.969 -0.233 -0.555 -0.970 0.526 -1.644 -0.059 0.356 0.263 -1.322 -0.322 0.678 -0.841 0.274 -0.104 0.381 1.000 -1.087 -0.503 -0.280 0.093 -0.322 0.415 -0.322 0.284 -0.202 -0.202 0.061 0.000 0.000 -0.585 0.415 0.322 -0.263 -2.000 0.737 0.970 -0.155 -2.615 -0.030 0.193 -0.392 -0.070 0.193 -1.145 0.012 -1.676 1.155 N-11 LUT 3 2 4 0 0.000 0.596 -0.100 -1.684 0.316 -0.441 -0.078 0.074 0.337 0.778 -1.392 -0.392 0.193 -0.536 0.049 -1.536 0.949 0.135 -0.087 0.234 -0.350 1.000 -0.379 -0.700 -0.700 0.720 -0.087 -0.503 -0.503 -0.503 -0.280 -0.503 0.819 0.368 -0.147 -0.954 0.368 -0.322 0.678 -1.907 0.415 0.541 -0.874 -0.138 0.126 -0.585 -0.322 -0.585 0.900 0.330 -1.544 0.041 0.456 0.585 -0.193 -1.000 0.170 0.363 -0.485 -1.222 0.652 -0.830 0.044 -1.093 0.954 N-10 LUT 3 2 4 0 0.000 0.846 -0.301 -1.787 0.139 0.574 -0.256 -0.426 -0.104 0.571 0.330 -0.807 -0.544 -1.100 -0.206 -1.907 1.263 0.146 -0.233 -0.233 0.253 1.000 -0.280 -1.087 -0.503 0.936 -0.202 -1.524 -0.202 -0.285 0.415 -1.285 0.522 0.541 -1.044 0.278 -0.237 0.193 -0.222 -0.222 0.193 0.415 0.093 -1.907 0.415 -1.115 -0.115 -0.379 0.885 0.715 -0.963 -0.478 0.174 0.824 0.157 -0.931 -0.761 0.746 -0.632 -1.369 0.368 -1.194 0.234 -1.573 1.036 N-9 LUT 3 2 4 0 0.000 0.688 -0.469 -1.848 0.474 0.541 -0.459 -1.044 0.415 0.322 -0.415 -0.678 0.459 -0.213 -0.503 -0.865 0.913 0.644 -1.000 0.248 -0.415 0.637 -2.170 -0.170 0.415 0.798 -0.202 -0.202 -0.939 -1.273 0.312 -0.273 0.601 0.308 -0.585 -0.392 0.415 -0.059 0.163 -0.322 0.163 -1.459 0.541 -1.459 0.862 -1.700 -0.700 0.469 0.759 0.505 0.046 -2.954 0.505 0.326 -0.366 -0.744 0.457 -1.524 -0.202 -0.524 1.061 -1.242 -0.135 -1.242 1.166 N-8 LUT 3 2 4 0 0.000 0.300 -0.826 -0.285 0.469 0.637 -1.585 -0.363 0.415 0.956 -0.237 -0.237 -1.459 -0.632 -0.047 -2.369 1.133 -0.268 -0.268 0.857 -0.921 0.363 -0.222 0.193 -0.485 0.052 -0.170 0.415 -0.433 0.360 0.360 -1.406 0.079 0.798 0.061 -0.939 -0.524 0.263 0.485 -0.737 -0.322 0.900 -0.322 -0.907 -0.322 -1.369 -0.632 -0.147 1.046 0.142 -0.858 -0.536 0.727 0.941 -0.837 -0.644 -0.184 -0.544 0.456 -0.807 0.456 -1.261 0.547 -2.038 0.909 N-7 LUT 3 2 4 0 0.000 0.442 -0.558 -2.728 0.857 0.322 -1.000 -0.415 0.585 0.322 -0.263 0.000 -0.126 -0.837 -1.322 -1.644 1.444 -0.406 -0.921 0.973 -0.406 0.646 -0.939 -0.202 0.061 0.621 -1.115 -0.379 0.300 -0.678 -0.415 -0.415 0.907 -0.170 -0.585 -0.363 0.737 0.000 -0.485 -0.222 0.515 0.798 -0.202 -0.524 -0.524 -0.202 -0.939 -1.524 1.177 0.193 0.308 -0.807 0.067 0.982 -0.982 -1.304 0.156 0.710 -0.459 -0.459 -0.138 -1.713 0.117 -0.883 1.048 N-6 LUT 3 2 4 0 0.000 0.222 0.222 -1.263 0.322 1.119 -1.544 -0.544 -0.322 0.343 0.227 -0.188 -0.550 -1.100 -0.737 -1.585 1.379 0.300 -1.215 0.836 -0.852 0.710 -0.874 -0.459 0.126 0.816 -0.644 -1.059 0.163 -0.837 0.356 -0.184 0.356 0.447 -0.652 -0.290 0.241 0.348 0.348 -0.138 -0.874 0.356 -0.059 -0.644 0.163 -0.807 -1.222 -0.222 1.100 0.300 0.759 -0.700 -1.115 0.724 0.061 -0.939 -0.354 0.000 0.515 -0.485 -0.222 -1.242 -0.036 -1.773 1.207 N-5 LUT 3 2 4 0 0.000 0.868 0.255 -1.511 -0.663 0.621 -0.963 -1.700 0.715 0.767 -1.555 -0.095 0.030 -1.322 -0.152 -1.000 1.138 -0.170 -0.433 0.889 -0.948 1.057 -1.644 -0.059 -0.644 0.608 -0.070 0.193 -1.392 -0.644 0.163 0.163 0.163 0.300 0.037 -0.115 -0.285 0.322 -0.678 -0.415 0.459 0.193 -1.392 -0.392 0.778 -0.433 -0.755 -0.755 1.052 0.631 0.046 -0.632 -0.369 0.727 -0.158 -1.051 -0.051 -0.369 0.631 0.046 -0.632 -1.680 0.218 -0.970 1.010 N-4 LUT 3 2 4 0 0.000 0.690 -0.147 -0.495 -0.369 0.756 -0.322 -0.170 -0.684 0.710 0.628 -0.874 -1.874 -0.322 0.794 -1.907 0.263 -0.369 -0.954 1.175 -1.147 0.816 -0.322 0.163 -1.644 0.348 -0.138 0.348 -0.874 -0.170 0.316 -0.032 -0.170 0.678 -0.515 -0.515 0.000 0.476 0.798 -0.524 -2.524 0.312 -0.273 -1.858 0.727 0.515 0.000 -0.222 -0.485 -0.263 0.737 0.000 -1.000 1.069 -0.471 -0.609 -0.931 0.913 0.234 -1.503 -0.766 -0.511 0.895 -1.663 0.167 N-3 LUT 3 2 4 0 0.000 1.568 -1.273 -0.858 -3.858 1.358 -2.285 -0.115 -1.700 1.327 -1.883 -0.182 -1.561 0.700 -1.415 0.170 -0.193 1.080 -2.129 0.678 -4.129 1.263 -1.544 -0.129 -1.544 1.294 -0.954 -0.632 -1.369 -0.585 -0.170 0.637 -0.170 1.485 -2.644 -0.644 -1.322 1.144 -0.663 -0.441 -1.248 0.415 -0.170 0.152 -0.585 1.177 -2.524 0.284 -1.524 1.120 -0.716 -0.064 -1.939 1.201 -0.051 -1.273 -1.636 1.100 0.000 -1.222 -1.222 0.000 0.893 -0.637 -1.000 N-2 LUT 3 2 4 0 0.000 1.000 -0.485 -1.222 -0.222 1.212 -0.663 -1.248 -0.663 1.026 -0.196 -0.974 -0.781 0.263 0.263 -0.322 -0.322 0.684 -0.870 0.589 -1.548 1.322 -1.000 -1.000 -1.000 0.541 0.415 -0.459 -1.044 0.234 0.497 -0.503 -0.503 1.193 -1.682 -0.360 -0.682 0.752 0.337 -0.248 -2.248 0.107 0.107 -0.700 0.300 0.778 -0.807 -0.807 0.193 0.822 -0.104 -0.104 -1.426 1.667 -0.766 -3.087 -3.087 0.700 0.000 -0.193 -1.000 0.678 -0.322 -1.322 0.263 N-1 LUT 3 2 4 0 0.000 1.403 -1.032 -1.492 -0.968 0.811 -0.132 -0.373 -0.833 1.280 -0.933 -0.933 -0.933 0.515 0.363 -1.222 -0.222 -0.585 -1.722 1.570 -4.044 0.415 0.152 -0.170 -0.585 0.541 0.541 -0.459 -1.459 -0.170 -1.170 0.415 0.415 1.047 -0.206 -0.907 -0.907 0.453 0.074 0.074 -0.926 0.874 -1.000 -1.000 0.222 0.874 -1.000 0.222 -1.000 0.541 -2.459 0.710 -0.459 1.093 -0.322 -0.322 -1.907 0.830 -0.170 -1.170 -0.170 1.093 -0.322 -0.907 -0.907 A LUT 3 2 4 0 0.000 1.974 -5.401 -5.401 -5.401 1.890 -3.358 -3.358 -3.358 1.946 -4.358 -4.358 -4.358 1.874 -3.170 -3.170 -3.170 1.914 -3.700 -3.700 -3.700 1.853 -2.954 -2.954 -2.954 1.837 -2.807 -2.807 -2.807 1.720 -2.087 -2.087 -2.087 1.937 -4.129 -4.129 -4.129 1.766 -2.322 -2.322 -2.322 1.720 -2.087 -2.087 -2.087 1.778 -2.392 -2.392 -2.392 1.890 -3.358 -3.358 -3.358 1.816 -2.644 -2.644 -2.644 1.737 -2.170 -2.170 -2.170 1.766 -2.322 -2.322 -2.322 T LUT 3 2 4 0 0.000 -6.322 -6.322 -6.322 1.986 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -4.714 -4.714 -4.714 1.958 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.055 -5.055 -5.055 1.967 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -4.358 -4.358 -4.358 1.946 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.295 -7.295 1.993 -7.295 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.298 -0.526 0.275 -0.207 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.363 0.086 0.167 -0.914 0.147 -0.052 -0.348 0.193 0.314 0.290 -0.200 -0.592 -2.119 1.481 -2.119 -0.419 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.126 -0.044 -0.344 0.204 0.126 -0.781 -0.081 0.467 -1.536 0.786 -0.858 0.464 -0.273 -0.858 0.601 0.142 0.372 -0.503 0.082 -0.087 1.000 -1.907 -0.322 -0.100 0.816 -0.644 -0.322 -0.322 -2.129 -0.129 0.871 0.041 -0.170 -0.277 -0.277 0.546 0.046 -0.784 -0.254 0.631 -0.032 -0.170 -0.492 0.508 -0.544 0.571 -0.322 0.041 -1.459 0.862 -1.459 0.541 -0.059 -0.396 0.485 -0.184 -1.459 0.126 0.862 -0.459 -1.858 0.601 -0.273 0.464 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.419 -0.042 -0.025 -0.497 0.571 -0.385 -0.451 0.025 0.072 -0.042 -0.222 0.163 -0.111 -0.301 0.419 -0.111 0.768 -0.723 -1.322 0.369 0.317 -0.042 -1.059 0.382 -6.451 -6.451 -6.451 1.988 1.988 -6.451 -6.451 -6.451 1.988 -6.451 -6.451 -6.451 TAG WMM 9 6 4 0 0.000 0.481 0.033 -0.311 -0.367 0.512 -0.488 -0.204 -0.011 0.159 -0.204 -0.311 0.274 -0.011 -0.426 -0.057 0.381 0.603 -0.488 -1.552 0.512 -0.153 -0.204 0.159 0.159 -5.011 -5.011 -5.011 1.966 1.966 -5.011 -5.011 -5.011 -5.011 -5.011 1.966 -5.011 TGA WMM 9 6 4 0 0.000 0.388 -0.313 -0.143 -0.027 0.360 -0.143 -0.225 -0.065 0.009 -0.268 -0.225 0.388 0.272 -0.669 -0.065 0.272 0.494 -0.612 -0.728 0.415 -0.506 -0.225 -0.065 0.570 -5.313 -5.313 -5.313 1.973 -5.313 -5.313 1.973 -5.313 1.973 -5.313 -5.313 -5.313 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/Ce.hmm0000644000175000017500000013501411424066010014403 0ustar moellermoellerzoeHMM Ce 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.977636 Inter Esngl 0.022364 Inter ORF 1 Intron Eterm 0.160251 Intron Exon 0.839749 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.488562 0.297386 0.214052 0.594784 0.189567 0.215649 0.557522 0.222503 0.219975 0.582938 0.194313 0.222749 0.816676 0.183324 0.862282 0.137718 0.861538 0.138462 Einit 2 DEFINED 0 249 -9.426 -9.329 -9.239 -9.153 -9.073 -8.996 -8.924 -8.855 -8.789 -8.726 -8.665 -8.610 -8.556 -8.505 -8.455 -8.406 -8.360 -8.315 -8.271 -8.228 -8.187 -8.142 -8.098 -8.055 -8.014 -7.974 -7.935 -7.897 -7.860 -7.824 -7.789 -7.760 -7.731 -7.703 -7.675 -7.648 -7.621 -7.595 -7.569 -7.544 -7.519 -7.494 -7.469 -7.444 -7.420 -7.397 -7.373 -7.350 -7.328 -7.305 -7.283 -7.266 -7.249 -7.233 -7.216 -7.200 -7.183 -7.167 -7.152 -7.136 -7.120 -7.125 -7.130 -7.135 -7.140 -7.145 -7.150 -7.155 -7.160 -7.165 -7.170 -7.183 -7.197 -7.211 -7.225 -7.239 -7.253 -7.267 -7.282 -7.296 -7.311 -7.322 -7.333 -7.344 -7.356 -7.367 -7.379 -7.391 -7.402 -7.414 -7.426 -7.441 -7.457 -7.472 -7.488 -7.503 -7.519 -7.536 -7.552 -7.568 -7.585 -7.591 -7.596 -7.602 -7.608 -7.613 -7.619 -7.625 -7.630 -7.636 -7.642 -7.656 -7.670 -7.685 -7.699 -7.714 -7.728 -7.743 -7.758 -7.773 -7.789 -7.804 -7.820 -7.836 -7.852 -7.868 -7.885 -7.901 -7.918 -7.935 -7.952 -7.973 -7.993 -8.014 -8.035 -8.057 -8.079 -8.101 -8.124 -8.147 -8.170 -8.187 -8.204 -8.221 -8.239 -8.256 -8.274 -8.292 -8.311 -8.329 -8.348 -8.377 -8.406 -8.436 -8.467 -8.498 -8.530 -8.563 -8.596 -8.630 -8.665 -8.677 -8.689 -8.701 -8.714 -8.726 -8.738 -8.751 -8.763 -8.776 -8.789 -8.807 -8.825 -8.844 -8.863 -8.882 -8.901 -8.921 -8.941 -8.961 -8.981 -8.990 -8.999 -9.008 -9.017 -9.026 -9.035 -9.045 -9.054 -9.063 -9.073 -9.079 -9.085 -9.092 -9.098 -9.104 -9.111 -9.117 -9.124 -9.130 -9.137 -9.173 -9.211 -9.249 -9.289 -9.329 -9.371 -9.414 -9.459 -9.505 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.552 -9.574 -9.596 -9.619 -9.642 -9.665 -9.689 -9.714 -9.738 -9.763 -9.789 -9.794 -9.799 -9.804 -9.810 -9.815 -9.820 -9.825 -9.831 -9.836 -9.841 -9.847 -9.852 -9.857 -9.863 -9.868 -9.874 -9.879 -9.885 -9.890 GEOMETRIC 250 -1 127 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -11.438 -11.375 -11.315 -11.257 -11.202 -11.148 -11.097 -11.047 -10.999 -10.953 -10.907 -10.875 -10.842 -10.811 -10.780 -10.750 -10.720 -10.691 -10.663 -10.635 -10.608 -10.555 -10.504 -10.454 -10.406 -10.360 -10.315 -10.272 -10.229 -10.188 -10.148 -10.023 -9.907 -9.801 -9.701 -9.608 -9.520 -9.438 -9.360 -9.286 -9.216 -9.148 -9.084 -9.023 -8.964 -8.907 -8.853 -8.801 -8.750 -8.701 -8.654 -8.621 -8.590 -8.559 -8.529 -8.499 -8.470 -8.442 -8.414 -8.387 -8.360 -8.334 -8.308 -8.282 -8.257 -8.233 -8.209 -8.185 -8.162 -8.139 -8.116 -8.091 -8.066 -8.041 -8.017 -7.993 -7.970 -7.947 -7.924 -7.902 -7.880 -7.873 -7.866 -7.860 -7.853 -7.846 -7.840 -7.833 -7.827 -7.820 -7.813 -7.784 -7.755 -7.726 -7.699 -7.671 -7.644 -7.618 -7.592 -7.567 -7.542 -7.532 -7.523 -7.513 -7.504 -7.494 -7.485 -7.476 -7.466 -7.457 -7.448 -7.449 -7.450 -7.451 -7.452 -7.453 -7.454 -7.455 -7.456 -7.457 -7.458 -7.469 -7.481 -7.492 -7.504 -7.515 -7.527 -7.539 -7.550 -7.562 -7.574 -7.596 -7.617 -7.639 -7.661 -7.683 -7.706 -7.729 -7.752 -7.776 -7.801 -7.802 -7.803 -7.804 -7.806 -7.807 -7.808 -7.810 -7.811 -7.812 -7.813 -7.817 -7.821 -7.825 -7.829 -7.833 -7.837 -7.841 -7.845 -7.849 -7.853 -7.862 -7.872 -7.881 -7.891 -7.901 -7.910 -7.920 -7.930 -7.940 -7.950 -7.953 -7.955 -7.958 -7.961 -7.964 -7.967 -7.970 -7.973 -7.976 -7.979 -8.014 -8.050 -8.087 -8.126 -8.165 -8.205 -8.247 -8.290 -8.334 -8.379 -8.418 -8.458 -8.499 -8.542 -8.586 -8.631 -8.677 -8.725 -8.775 -8.827 -8.840 -8.853 -8.866 -8.880 -8.894 -8.907 -8.921 -8.935 -8.950 -8.964 -8.996 -9.029 -9.063 -9.097 -9.132 -9.168 -9.205 -9.243 -9.282 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.322 -9.330 -9.337 -9.345 -9.352 -9.360 -9.368 -9.375 -9.383 -9.391 -9.398 -9.395 -9.391 -9.387 -9.383 -9.379 -9.375 -9.371 -9.368 -9.364 GEOMETRIC 250 -1 185 Exon 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 304 ORF 2 DEFINED 0 249 -13.419 -13.456 -13.493 -13.532 -13.571 -13.612 -13.654 -13.697 -13.741 -13.787 -13.834 -13.668 -13.519 -13.383 -13.260 -13.146 -13.041 -12.942 -12.850 -12.764 -12.682 -12.425 -12.207 -12.018 -11.850 -11.700 -11.564 -11.440 -11.326 -11.220 -11.121 -10.934 -10.768 -10.619 -10.484 -10.360 -10.246 -10.141 -10.043 -9.951 -9.864 -9.748 -9.639 -9.539 -9.445 -9.357 -9.273 -9.195 -9.120 -9.049 -8.982 -8.890 -8.803 -8.722 -8.645 -8.571 -8.502 -8.435 -8.372 -8.311 -8.252 -8.207 -8.163 -8.120 -8.079 -8.038 -7.999 -7.961 -7.923 -7.887 -7.852 -7.830 -7.808 -7.787 -7.766 -7.745 -7.725 -7.705 -7.685 -7.666 -7.646 -7.641 -7.636 -7.630 -7.625 -7.619 -7.614 -7.608 -7.603 -7.598 -7.593 -7.586 -7.580 -7.574 -7.567 -7.561 -7.555 -7.549 -7.543 -7.536 -7.530 -7.533 -7.535 -7.538 -7.540 -7.543 -7.545 -7.547 -7.550 -7.552 -7.555 -7.554 -7.553 -7.552 -7.552 -7.551 -7.550 -7.549 -7.548 -7.547 -7.547 -7.550 -7.552 -7.555 -7.558 -7.561 -7.564 -7.567 -7.570 -7.573 -7.576 -7.595 -7.616 -7.636 -7.657 -7.678 -7.699 -7.720 -7.742 -7.765 -7.787 -7.804 -7.820 -7.837 -7.854 -7.871 -7.888 -7.906 -7.923 -7.941 -7.960 -7.978 -7.996 -8.015 -8.034 -8.053 -8.072 -8.092 -8.112 -8.132 -8.152 -8.176 -8.201 -8.225 -8.250 -8.276 -8.302 -8.329 -8.356 -8.383 -8.412 -8.424 -8.436 -8.449 -8.462 -8.475 -8.488 -8.501 -8.514 -8.527 -8.540 -8.554 -8.568 -8.582 -8.595 -8.610 -8.624 -8.638 -8.653 -8.667 -8.682 -8.697 -8.712 -8.727 -8.743 -8.758 -8.774 -8.790 -8.806 -8.823 -8.839 -8.848 -8.857 -8.867 -8.876 -8.885 -8.894 -8.904 -8.913 -8.923 -8.933 -8.943 -8.954 -8.965 -8.976 -8.987 -8.998 -9.010 -9.021 -9.032 -9.044 -9.059 -9.074 -9.090 -9.106 -9.121 -9.137 -9.154 -9.170 -9.186 -9.203 -9.214 -9.225 -9.236 -9.248 -9.259 -9.271 -9.282 -9.294 -9.306 -9.318 -9.325 -9.332 -9.339 -9.346 -9.353 -9.360 -9.367 -9.375 -9.382 GEOMETRIC 250 -1 229 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.566 -0.823 -1.163 0.592 0.629 -0.682 -1.408 0.540 0.614 -0.734 -1.400 0.578 0.608 -0.707 -1.360 0.563 0.615 -0.732 -1.376 0.572 0.620 -0.697 -1.325 0.540 0.644 -0.737 -1.512 0.581 0.712 -0.747 -1.556 0.521 0.777 -0.788 -1.778 0.515 0.883 -0.931 -1.804 0.443 1.024 -1.052 -1.926 0.305 1.034 -1.062 -1.891 0.287 0.769 -0.863 -1.967 0.592 0.591 -0.780 -1.534 0.663 0.502 -0.783 -1.543 0.746 0.446 -0.791 -1.556 0.797 0.457 -0.655 -1.556 0.741 0.554 -0.651 -1.778 0.698 0.690 -1.258 -1.852 0.775 0.752 -1.711 -1.897 0.817 0.184 -1.658 -2.021 1.215 -2.269 -2.836 -4.033 1.853 -5.137 -4.219 -6.432 1.974 -1.448 -0.714 -1.424 1.420 -2.973 1.746 -7.569 -0.897 2.008 -9.891 -9.891 -9.891 -9.891 -9.891 2.008 -9.891 0.693 -0.744 0.360 -0.923 0.229 -0.497 -0.599 0.569 0.244 -0.157 -0.471 0.289 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.292 -0.792 0.070 0.200 0.198 -0.545 -0.661 0.618 0.723 -0.470 -1.516 0.354 -1.500 -0.183 0.489 0.446 0.820 -1.012 -0.057 -0.363 1.158 -1.708 -0.488 -0.417 0.817 -1.016 -0.571 0.098 -0.886 -0.071 -0.323 0.772 0.619 -1.009 -0.287 0.198 0.251 -0.418 -1.040 0.656 1.369 -1.011 -2.047 -0.560 -0.747 -0.402 -0.203 0.831 . 0.674 . 1.266 0.471 -0.710 -0.292 0.246 . 0.021 0.770 0.355 -0.815 0.314 0.208 0.046 0.215 -0.421 0.025 0.104 0.323 -0.241 -0.441 0.223 0.381 -0.246 -1.709 0.631 -1.810 -0.009 0.175 0.671 0.571 -0.533 0.002 -0.283 1.079 -1.233 -0.165 -0.812 0.271 -0.246 -1.459 0.666 -0.852 0.173 0.027 0.378 0.216 -0.566 0.030 0.192 0.099 -0.124 -0.323 0.278 1.182 -1.074 -1.424 -0.178 -1.037 0.136 0.223 0.318 . 1.005 . 0.995 0.190 -0.931 0.170 0.274 . 0.182 0.510 0.528 -1.963 0.385 0.140 0.417 0.376 -1.038 0.477 -0.280 0.351 -0.705 -0.270 0.359 0.923 -0.294 -1.245 -0.206 -2.051 -0.292 0.357 0.732 0.587 -0.647 0.204 -0.500 1.128 -1.541 -0.093 -0.905 0.544 -0.935 -0.412 0.343 -1.410 0.213 0.086 0.488 0.428 -1.026 -0.087 0.289 0.095 -0.490 -0.453 0.575 1.416 -1.653 -1.881 -0.431 -1.877 0.007 -0.021 0.797 . 0.923 . 1.074 0.339 -0.758 0.151 0.047 . 0.430 0.180 0.604 -1.320 0.204 0.235 0.346 0.182 -0.581 -0.072 0.317 0.491 -0.873 -0.582 0.466 0.443 -0.222 -1.585 0.536 -1.678 -0.460 0.282 0.803 0.647 -0.702 -0.195 -0.081 1.179 -1.786 -0.339 -0.610 0.709 -0.897 -0.851 0.350 -0.963 -0.039 -0.262 0.748 0.368 -0.934 -0.179 0.381 0.285 -0.826 -0.932 0.760 1.349 -1.726 -1.462 -0.346 -0.776 -0.495 0.029 0.753 . 0.558 . 1.338 0.362 -0.638 -0.188 0.256 . -0.027 0.570 0.618 -0.681 0.098 0.513 -0.186 0.481 -0.910 -0.190 0.257 0.475 -1.094 -0.822 0.656 0.596 -0.401 -1.369 0.426 -1.434 -0.372 0.326 0.681 0.787 -1.078 -0.136 -0.168 1.121 -2.082 -0.213 -0.462 0.471 -1.084 -0.766 0.637 -1.091 -0.411 -0.282 0.968 0.500 -0.719 -0.497 0.344 0.497 -0.695 -1.069 0.579 1.506 -1.246 -2.159 -0.961 -0.632 -0.271 -0.497 0.862 . 0.744 . 1.218 0.610 -0.885 -0.469 0.275 . 0.090 0.604 0.501 -1.148 0.396 0.014 0.291 0.105 -0.158 0.141 -0.111 0.382 -0.090 -0.585 0.126 0.467 -0.043 -1.805 0.445 -1.414 0.442 -0.017 0.354 0.558 -0.562 -0.319 0.069 1.232 -2.228 -0.228 -0.775 0.419 -0.593 -1.252 0.660 -0.656 0.242 -0.146 0.355 0.200 -0.461 -0.183 0.315 -0.053 0.584 -1.425 0.219 1.176 -0.665 -1.746 -0.300 -0.740 0.463 -0.502 0.397 . 1.113 . 0.877 0.614 -0.393 -0.161 -0.298 . 0.434 0.390 0.420 -1.415 0.951 -0.061 -0.447 0.483 -0.957 -0.127 0.228 0.386 -1.194 0.142 0.205 0.688 -0.177 -1.177 0.088 -1.598 -0.453 0.237 0.816 0.623 -1.535 0.235 -0.092 0.742 -1.405 0.319 -0.511 0.452 -0.505 -0.892 0.474 -1.039 -0.372 0.524 0.381 0.400 -1.126 -0.251 0.467 0.269 -0.969 -0.045 0.394 1.255 -0.879 -1.954 -0.302 -0.939 -0.583 0.052 0.827 . 0.702 . 1.247 0.332 -1.114 0.283 0.087 . 0.068 0.216 0.840 -1.318 0.162 0.380 0.238 0.609 -0.648 -0.503 0.178 0.584 -0.740 -0.872 0.438 0.717 -0.528 -2.017 0.501 -1.523 0.006 -0.165 0.812 0.859 -1.010 -0.438 -0.072 1.272 -2.130 -0.478 -0.645 0.314 -0.569 -1.192 0.719 -0.875 -0.074 -0.695 0.916 0.450 -0.877 -1.073 0.691 0.386 -0.381 -1.347 0.616 1.387 -1.341 -2.237 -0.363 -0.275 -0.066 -0.438 0.566 . 0.365 . 1.439 0.552 -0.634 -0.885 0.431 . 0.128 0.128 0.859 -0.646 0.180 0.180 0.131 0.570 -0.754 -0.336 0.176 0.415 -0.475 -1.197 0.595 0.794 -0.702 -1.330 0.327 -1.275 -0.123 0.386 0.445 0.874 -1.045 -0.277 -0.223 1.151 -1.451 -0.815 -0.242 0.476 -0.753 -0.651 0.463 -1.129 0.086 -0.849 0.946 0.555 -0.918 -0.376 0.300 0.538 -0.161 -1.964 0.483 1.234 -1.013 -1.868 -0.187 -0.759 -0.283 -0.621 0.954 . 0.652 . 1.280 0.445 -0.428 -0.523 0.262 . 0.187 0.482 0.551 -0.828 0.541 -0.241 0.183 0.239 -0.418 0.187 -0.100 0.572 -0.153 -0.913 0.115 0.487 -0.441 -1.457 0.582 -1.724 0.173 0.205 0.503 0.668 -0.868 -0.010 -0.201 1.014 -1.239 -0.065 -0.735 0.384 -0.524 -1.070 0.608 -0.465 -0.021 -0.124 0.456 0.213 -0.568 0.203 0.023 0.166 0.305 -0.972 0.180 1.045 -0.978 -1.394 0.068 -1.082 0.399 -0.082 0.338 . 0.991 . 1.009 0.469 -0.169 -0.230 -0.195 . 0.217 0.497 0.512 -1.382 0.920 -0.457 -0.007 0.477 -0.865 -0.018 0.099 0.633 -0.592 -0.386 0.029 0.730 -0.255 -0.945 -0.023 -0.925 -0.358 0.255 0.585 0.595 -0.650 -0.173 -0.051 0.794 -1.480 -0.077 -0.060 0.481 -1.069 -0.484 0.499 -1.301 0.359 -0.509 0.686 0.166 -1.052 -0.052 0.517 0.199 -0.538 -0.589 0.584 1.324 -1.034 -2.404 -0.288 -0.327 -0.631 -0.304 0.805 . 0.879 . 1.111 0.357 -0.616 0.137 -0.049 . 0.209 0.472 0.544 -1.061 0.348 -0.264 0.500 0.535 -0.271 -0.996 0.288 0.437 -0.181 -0.889 0.292 0.729 -0.179 -2.262 0.323 -1.458 -0.028 0.062 0.689 0.789 -0.950 -0.282 -0.101 1.049 -1.399 -0.512 -0.233 0.358 -0.740 -1.062 0.714 -1.392 0.094 -0.576 0.911 0.497 -0.711 -0.720 0.455 0.446 -0.348 -1.501 0.584 1.252 -1.192 -2.225 -0.050 -0.676 0.059 -0.328 0.619 . 0.671 . 1.268 0.455 -0.534 -0.307 0.177 . 0.172 0.366 0.664 -0.828 0.231 0.029 0.313 0.555 -0.498 -0.364 0.065 0.692 -0.491 -1.115 0.277 0.576 -0.266 -0.915 0.198 -1.386 -0.148 0.254 0.607 0.830 -0.677 -0.291 -0.358 0.973 -0.926 -0.642 -0.201 0.668 -0.799 -0.427 0.128 -0.613 0.011 -0.404 0.663 0.539 -0.628 -0.577 0.298 0.384 -0.322 -1.005 0.482 1.420 -0.611 -2.296 -1.103 -0.718 -0.303 -0.176 0.762 . 0.536 . 1.351 0.664 -0.468 -0.390 -0.106 . 0.345 0.536 0.357 -0.887 0.568 -0.381 0.273 0.204 -0.277 -0.085 0.111 0.512 -0.214 -1.114 0.321 0.461 -0.205 -1.663 0.526 -1.977 0.336 -0.042 0.597 0.622 -0.546 -0.124 -0.221 1.214 -1.396 -0.589 -0.655 0.525 -0.665 -1.392 0.632 -0.968 0.248 -0.129 0.472 0.272 -0.320 -0.218 0.178 -0.032 0.467 -1.295 0.301 1.189 -0.676 -1.669 -0.360 -1.082 0.442 -0.544 0.569 . 1.230 . 0.726 0.320 0.001 -0.177 -0.206 . 0.270 0.477 0.488 -2.098 1.050 -0.275 -0.201 0.497 -0.761 -0.027 0.025 0.714 -0.777 -0.593 0.155 0.775 0.172 -1.550 -0.286 -1.328 -0.373 0.417 0.580 0.746 -0.677 -0.148 -0.332 1.109 -1.537 -0.447 -0.386 0.591 -0.970 -0.610 0.409 -1.294 0.756 -0.446 0.226 0.539 -0.946 -0.273 0.264 0.410 -0.764 -0.852 0.612 1.182 -0.696 -2.429 -0.107 -0.574 -0.277 -0.212 0.713 . 0.957 . 1.041 0.621 -0.939 -0.235 0.126 . 0.703 0.283 0.209 -1.177 0.749 -0.229 0.035 0.501 -0.647 -0.409 0.254 0.429 -0.311 -0.921 0.399 0.584 -0.346 -1.784 0.510 -1.591 -0.080 0.157 0.684 0.815 -0.793 -0.496 -0.067 1.243 -1.695 -0.627 -0.562 0.673 -0.774 -0.912 0.367 -0.854 0.234 -0.400 0.597 0.399 -0.717 -0.502 0.450 0.289 -0.144 -1.252 0.539 1.347 -1.115 -2.031 -0.416 -0.598 -0.048 -0.062 0.500 . 0.612 . 1.306 0.383 -0.254 -0.481 0.189 . 0.274 0.545 0.414 -0.801 0.551 0.151 -0.234 frame2 LUT 5 4 4 0 0.000 -0.098 -0.139 0.460 -0.354 0.311 -0.929 0.106 0.212 0.606 -0.303 -0.221 -0.306 -0.356 -0.087 0.728 -0.690 0.440 -0.308 -0.130 -0.118 0.302 -0.897 0.629 -0.550 0.583 -0.763 0.103 -0.253 -0.780 0.083 0.804 -0.707 0.446 -0.618 0.294 -0.397 0.334 -0.305 -0.051 -0.051 0.740 -0.016 -0.318 -0.893 -0.491 -0.223 0.817 -0.579 0.368 -0.540 -0.270 0.253 0.608 -0.898 0.344 -0.577 0.326 -0.261 0.278 -0.516 -0.715 0.151 0.632 -0.453 0.149 -0.074 0.288 -0.472 0.362 -1.197 0.566 -0.326 0.288 0.081 -0.143 -0.295 -0.429 0.183 0.244 -0.091 0.308 -0.105 0.131 -0.440 0.369 -0.606 0.726 -1.334 0.519 -0.416 0.047 -0.350 -0.749 0.210 0.640 -0.536 0.482 -0.466 0.183 -0.426 0.275 0.226 0.134 -0.935 0.626 -0.212 -0.171 -0.503 -0.903 0.137 0.919 -1.074 -0.046 0.094 -0.127 0.067 0.328 -0.694 0.375 -0.270 0.477 -0.575 0.360 -0.615 -1.224 0.546 0.355 -0.263 0.060 -0.623 0.669 -0.477 0.266 -1.358 0.707 -0.369 0.272 0.107 0.037 -0.535 -0.537 -0.322 0.829 -0.446 0.402 -0.462 0.208 -0.326 0.489 -0.955 0.616 -0.867 0.505 -0.625 0.225 -0.388 -0.840 0.088 0.796 -0.639 0.339 -0.547 0.304 -0.293 -0.121 -0.205 0.535 -0.389 0.370 0.447 -0.691 -0.463 -1.103 0.195 0.822 -0.684 -0.032 0.028 -0.107 0.103 0.589 -1.064 0.441 -0.600 0.712 -0.627 -0.024 -0.453 -0.676 0.283 0.473 -0.378 . . . . 0.510 -0.746 0.226 -0.306 . . . . -0.651 -0.032 0.467 0.005 0.382 -0.477 0.116 -0.160 0.452 -0.671 0.399 -0.544 0.545 -0.749 0.208 -0.338 -0.856 0.130 0.646 -0.343 . . . . 0.419 -0.334 -0.282 0.067 0.361 -0.199 0.220 -0.557 -0.493 -0.114 0.719 -0.477 0.177 -0.413 -0.012 0.172 0.156 -0.132 0.122 -0.177 0.557 -0.897 0.428 -0.629 -0.628 -0.434 0.777 -0.153 0.390 -0.514 0.215 -0.271 0.332 -1.027 0.299 0.030 0.400 -0.300 0.164 -0.419 -0.309 -0.153 0.509 -0.200 0.505 -0.596 -0.239 0.100 0.451 -0.748 0.478 -0.634 0.446 -1.133 0.084 0.167 -0.802 -0.143 0.682 -0.125 0.708 -0.960 0.168 -0.455 0.566 -0.724 0.101 -0.248 0.726 0.026 -0.389 -0.827 -0.270 -0.464 0.706 -0.297 0.353 -0.544 -0.209 0.228 0.646 -0.950 0.219 -0.409 0.387 -0.310 0.102 -0.300 -0.795 0.035 0.586 -0.155 0.166 0.005 0.130 -0.358 0.440 -0.776 0.514 -0.664 0.139 0.042 0.100 -0.326 -0.472 0.516 0.097 -0.359 0.234 -0.285 0.234 -0.273 0.091 -1.052 0.963 -0.993 0.540 -0.710 0.078 -0.185 -0.794 0.324 0.707 -0.889 0.490 -0.451 -0.002 -0.209 0.239 -0.058 0.264 -0.604 0.467 0.173 -0.258 -0.611 -0.482 0.345 0.527 -0.804 0.157 0.201 -0.085 -0.334 0.148 -0.242 0.339 -0.356 0.445 -0.453 0.155 -0.332 -1.048 0.572 0.358 -0.419 0.165 -0.666 0.550 -0.350 0.291 -1.201 0.625 -0.324 0.385 -0.154 0.012 -0.345 -0.321 -0.306 0.614 -0.218 0.344 -0.616 0.248 -0.167 0.415 -1.251 0.673 -0.617 0.483 -1.167 0.127 0.092 -0.775 -0.291 0.832 -0.291 0.444 -0.669 0.360 -0.461 0.178 -0.755 0.560 -0.320 0.084 0.390 -0.573 -0.063 -0.694 -0.166 0.805 -0.427 0.017 -0.199 -0.038 0.193 0.382 -1.005 0.601 -0.553 0.195 -0.495 0.395 -0.267 -1.084 0.015 0.724 -0.207 . . . . 0.528 -0.581 0.151 -0.360 . . . . -0.413 0.085 0.437 -0.263 0.491 -0.481 -0.441 0.191 0.620 -0.653 0.040 -0.322 0.321 -0.841 0.183 0.080 -0.816 -0.038 0.650 -0.171 . . . . 0.453 -0.337 -0.337 0.066 0.538 -0.468 0.117 -0.433 -0.233 -0.388 0.834 -0.732 0.198 -0.255 -0.730 0.497 0.365 -0.122 -0.246 -0.074 0.546 -0.762 0.287 -0.454 -0.629 -0.620 0.828 -0.108 0.504 -0.452 0.147 -0.428 0.709 -0.925 0.036 -0.299 0.604 -0.048 0.023 -1.008 0.007 -0.017 0.376 -0.496 0.479 -0.151 -0.077 -0.400 0.486 -0.522 0.478 -0.973 0.439 -0.781 0.269 -0.222 -0.351 -0.088 0.734 -0.707 0.642 -0.558 0.095 -0.531 0.835 -0.467 -0.595 -0.268 0.773 -0.068 -0.284 -0.953 -0.130 -0.617 0.609 -0.139 0.535 -0.609 -0.290 0.107 0.617 -0.584 0.075 -0.423 0.416 -0.188 0.185 -0.619 -0.406 0.155 0.437 -0.362 0.247 -0.042 0.083 -0.353 0.712 -1.082 0.212 -0.451 0.371 0.094 -0.291 -0.284 -0.308 0.227 0.140 -0.120 0.425 -0.131 0.082 -0.544 0.574 -0.967 0.675 -1.311 0.584 -0.688 0.162 -0.393 -0.703 0.120 0.793 -0.819 0.502 -0.264 -0.036 -0.366 0.657 0.000 -0.177 -0.893 0.675 0.090 -0.454 -0.717 -0.491 0.265 0.632 -0.896 -0.026 -0.086 0.088 0.018 0.706 -0.929 0.186 -0.503 0.619 -0.438 0.220 -0.833 -0.710 0.464 0.304 -0.369 0.432 -0.579 0.406 -0.608 0.580 -1.087 0.399 -0.481 0.643 0.066 -0.258 -0.849 0.065 -0.161 0.368 -0.378 0.639 -0.459 -0.112 -0.340 0.546 -1.189 0.806 -1.500 0.732 -0.689 0.002 -0.480 -0.665 0.461 0.399 -0.568 0.435 -0.416 0.103 -0.279 0.250 -0.517 0.420 -0.371 0.526 0.163 -0.644 -0.322 -0.553 0.050 0.656 -0.498 -0.088 -0.187 0.048 0.198 0.700 -0.782 0.099 -0.467 0.331 -0.143 0.187 -0.518 -0.428 0.290 0.345 -0.389 . . . . 0.729 -0.713 -0.151 -0.266 . . . . -0.068 0.159 0.097 -0.218 0.392 -0.264 -0.171 -0.048 0.439 -0.491 0.469 -0.868 0.627 -0.848 0.105 -0.277 -0.783 0.210 0.649 -0.527 . . . . 0.627 -0.322 -0.486 -0.087 0.590 -0.199 -0.165 -0.451 -0.124 -0.227 0.575 -0.437 0.134 -0.197 -0.074 0.111 0.518 -0.276 -0.192 -0.206 0.541 -0.662 0.306 -0.563 -0.464 -0.446 0.701 -0.127 0.316 -0.336 0.259 -0.383 0.684 -0.882 -0.003 -0.229 0.480 0.040 0.252 -1.373 -0.188 -0.047 0.489 -0.414 0.583 -0.466 -0.060 -0.290 0.581 -0.778 0.420 -0.778 0.392 -0.733 0.531 -0.642 -0.921 -0.117 0.865 -0.457 0.759 -0.803 -0.037 -0.395 0.759 -0.869 -0.121 -0.250 0.905 0.253 -0.680 -1.680 -0.387 -0.263 0.727 -0.420 0.513 -0.577 -0.132 -0.014 0.863 -0.885 0.131 -0.877 0.378 -0.351 0.399 -0.741 -0.581 0.200 0.564 -0.506 0.257 -0.143 0.140 -0.326 0.558 -0.786 0.125 -0.222 0.458 0.039 -0.233 -0.419 -0.456 0.342 0.021 -0.015 0.435 -0.227 -0.055 -0.267 0.382 -0.600 0.635 -1.046 0.703 -0.821 0.147 -0.517 -0.584 0.180 0.630 -0.615 0.381 -0.630 0.170 -0.110 0.263 -0.087 0.114 -0.365 0.555 0.020 -0.191 -0.641 -0.915 0.265 0.679 -0.585 -0.140 0.275 -0.140 -0.037 0.428 -0.629 0.374 -0.490 0.628 -0.582 0.193 -0.637 -1.071 0.706 0.325 -0.644 0.392 -0.768 0.515 -0.575 0.482 -1.234 0.508 -0.403 0.567 0.157 -0.181 -0.940 -0.247 -0.383 0.726 -0.442 0.561 -0.478 -0.079 -0.217 0.663 -1.257 0.520 -0.824 0.622 -0.894 0.137 -0.280 -0.855 0.413 0.547 -0.612 0.578 -0.630 0.171 -0.443 0.098 -0.265 0.284 -0.185 0.451 0.405 -0.727 -0.504 -0.648 -0.135 0.779 -0.443 0.204 -0.084 -0.104 -0.038 0.647 -1.235 0.363 -0.467 0.628 -0.248 0.018 -0.736 -0.584 0.283 0.542 -0.599 . . . . 0.568 -0.778 0.257 -0.436 . . . . -0.219 0.126 0.303 -0.293 0.684 -0.577 -0.314 -0.122 0.479 -0.653 0.475 -0.785 0.476 -0.944 0.437 -0.443 -0.730 -0.038 0.772 -0.482 . . . . 0.374 -0.393 -0.131 0.041 0.414 -0.412 0.209 -0.396 -0.170 -0.243 0.719 -0.688 0.281 -0.342 -0.223 0.189 0.437 -0.350 0.082 -0.317 0.628 -1.045 0.452 -0.731 -0.402 -0.448 0.971 -0.864 frame2 LUT 5 4 4 0 0.000 0.502 -0.331 -0.838 0.298 0.201 0.047 -0.170 -0.107 0.696 -0.247 -0.696 -0.120 -0.637 0.237 -0.173 0.369 0.721 -0.297 -0.970 0.039 0.184 0.029 -0.465 0.163 0.711 -0.521 -0.085 -0.468 -0.101 0.059 -0.702 0.497 1.075 -0.613 -1.038 -0.411 0.341 -0.097 -0.792 0.288 0.988 -0.140 -0.879 -0.824 -0.424 -0.132 -0.509 0.713 0.496 -0.537 -1.120 0.526 0.396 0.017 -0.363 -0.161 0.566 -0.265 -0.150 -0.347 -0.582 0.124 -0.676 0.693 0.310 -0.199 -0.772 0.382 0.183 0.334 -0.903 0.097 0.613 -0.118 -1.002 0.070 -1.150 0.462 -0.872 0.701 0.769 0.103 -1.194 -0.349 0.250 -0.047 -0.207 -0.034 0.817 -0.462 -0.212 -0.625 0.087 0.272 -0.635 0.120 0.450 -0.069 -0.887 0.188 -0.034 0.494 -1.019 0.165 0.842 -0.123 -0.883 -0.420 -0.954 0.210 -0.181 0.531 0.275 0.017 -1.289 0.453 0.162 0.356 -0.669 -0.041 0.643 -0.320 -0.216 -0.365 -0.864 0.601 -0.696 0.397 0.668 -0.594 -0.357 -0.047 0.306 -0.080 -0.124 -0.152 0.700 0.071 -0.925 -0.325 -0.534 0.318 -0.575 0.476 0.731 -0.434 -0.292 -0.353 0.524 0.054 -0.271 -0.524 0.854 -0.725 0.005 -0.778 -0.607 0.725 -0.821 0.169 0.973 -0.967 -0.666 -0.160 0.437 -0.068 -1.115 0.300 1.145 -0.779 -0.993 -0.507 -1.215 0.469 -0.700 0.650 0.073 -0.217 -0.424 0.425 0.595 -0.373 -0.505 0.018 0.613 -0.456 0.028 -0.471 -0.591 0.266 -0.591 0.555 0.430 -0.345 -1.224 0.523 0.124 0.206 -0.372 -0.023 0.567 -0.112 -1.060 0.155 -1.217 0.382 -0.891 0.788 0.782 -0.251 -0.894 -0.148 0.320 -0.254 0.003 -0.135 0.849 -0.468 -0.340 -0.544 0.157 0.188 -0.848 0.252 0.535 -0.462 -0.591 0.216 0.376 -0.156 -0.813 0.305 0.710 -0.074 -0.587 -0.418 -0.627 0.218 -0.451 0.543 0.203 -0.232 -1.497 0.717 0.228 -0.027 -0.487 0.181 0.600 -0.253 -0.309 -0.254 -0.724 0.264 -0.496 0.570 0.536 -0.554 -1.015 0.459 0.616 -0.492 -0.647 0.161 0.458 -0.011 -0.647 -0.007 -0.679 0.181 -0.542 0.637 0.689 -0.396 -0.850 0.101 0.462 -0.367 -0.076 -0.155 0.665 -0.387 -0.233 -0.323 -0.449 0.089 -0.383 0.523 0.851 -0.503 -0.801 -0.126 0.724 -0.298 -1.292 0.171 0.974 0.177 -1.150 -1.137 -0.547 -0.159 -0.660 0.837 0.288 -0.300 -1.105 0.587 0.576 -0.158 -0.471 -0.167 0.429 -0.202 -0.165 -0.165 -0.650 -0.037 -0.544 0.767 0.271 0.242 -1.268 0.257 0.109 0.340 -0.907 0.166 0.669 -0.215 -0.711 -0.093 -0.889 0.575 -1.161 0.607 0.640 -0.226 -0.609 -0.103 0.573 -0.244 -0.427 -0.113 0.976 -0.997 -0.075 -0.778 0.105 0.344 -0.788 0.105 0.565 -0.226 -0.977 0.210 -0.135 0.631 -1.524 0.254 0.923 -0.123 -1.161 -0.437 -0.273 0.221 -0.895 0.555 0.039 0.470 -1.068 0.151 0.188 0.355 -0.923 0.077 0.656 -0.512 -0.042 -0.412 -0.807 0.815 -0.952 0.204 0.538 -0.605 -0.557 0.276 0.361 -0.522 0.014 0.014 0.781 -0.184 -0.900 -0.208 -0.878 0.385 -0.666 0.603 0.887 -0.785 -0.506 -0.207 0.238 -0.370 0.179 -0.128 0.828 -0.807 -0.010 -0.601 -0.574 0.277 -0.606 0.546 0.939 -0.754 -0.438 -0.412 0.430 -0.241 -0.372 0.048 1.060 -0.148 -2.270 -0.313 -0.896 -0.283 -0.398 0.912 0.367 -0.097 -0.891 0.305 0.315 -0.497 -0.186 0.225 0.495 -0.260 -0.043 -0.349 -0.689 0.319 -0.595 0.556 0.446 -0.182 -1.486 0.484 0.181 0.123 -0.567 0.140 0.495 0.095 -0.705 -0.138 -1.245 0.467 -1.037 0.773 0.721 -0.194 -1.121 0.026 0.254 -0.224 0.204 -0.322 0.708 -0.487 -0.170 -0.389 -0.238 0.537 -0.708 0.122 0.953 -0.760 -1.147 0.031 0.115 0.038 -1.034 0.488 0.943 -0.088 -1.182 -0.522 -0.908 0.119 -0.281 0.640 0.099 -0.128 -1.858 0.797 0.214 -0.021 -0.564 0.236 0.396 -0.189 -0.270 -0.033 -1.139 0.328 -0.651 0.726 0.695 -0.553 -1.019 0.270 0.375 -0.380 -0.209 0.097 0.882 -0.320 -0.686 -0.445 -0.577 0.263 -0.435 0.475 0.721 -0.159 -0.989 -0.071 0.272 0.023 -0.324 -0.033 0.889 -0.469 -0.373 -0.612 -0.165 0.165 -0.618 0.418 1.032 -0.694 -1.074 -0.213 0.611 -0.283 -1.086 0.237 1.211 -0.414 -1.095 -1.101 -0.367 -0.130 -0.687 0.757 0.571 -0.631 -0.996 0.451 0.368 0.029 -0.375 -0.124 0.743 -0.340 -0.198 -0.589 -0.975 0.377 -0.916 0.733 0.448 -0.372 -0.993 0.445 0.318 0.004 -0.977 0.314 0.366 0.292 -1.257 0.095 -1.096 0.337 -0.863 0.782 0.781 -0.056 -0.758 -0.457 0.447 -0.395 -0.164 -0.024 0.665 -0.039 -0.373 -0.579 0.217 0.096 -0.687 0.200 0.561 -0.378 -0.761 0.220 0.027 0.169 -1.310 0.540 0.755 0.362 -1.577 -0.530 -1.046 -0.079 -0.505 0.899 0.241 -0.098 -0.794 0.386 0.347 0.069 -0.809 0.147 0.414 0.078 -0.285 -0.337 -0.990 0.725 -0.773 0.332 0.762 -0.390 -0.825 -0.034 0.545 0.118 -0.658 -0.284 0.664 -0.127 -0.463 -0.369 -0.512 0.239 -0.590 0.540 0.840 -0.414 -0.510 -0.401 0.365 -0.237 -0.204 -0.007 0.711 -0.753 0.234 -0.753 -0.361 0.696 -1.250 0.240 1.014 -0.793 -0.844 -0.242 0.507 -0.308 -1.191 0.415 1.029 -0.237 -0.675 -1.044 -0.405 -0.205 -0.501 0.740 0.212 -0.104 -0.479 0.255 0.338 -0.280 -0.567 0.307 0.130 -0.547 0.429 -0.192 -0.661 0.283 -0.760 0.642 0.504 -0.087 -1.953 0.467 0.233 -0.033 -0.944 0.409 0.588 0.008 -1.610 0.219 -1.047 0.254 -0.930 0.847 0.657 -0.135 -0.959 -0.003 0.047 -0.175 0.185 -0.082 0.762 -0.371 -0.473 -0.303 0.097 0.208 -0.587 0.150 0.827 -0.567 -1.534 0.270 0.218 -0.131 -1.605 0.674 1.038 0.045 -2.010 -0.585 -0.716 -0.022 -0.443 0.741 0.108 -0.145 -1.307 0.690 0.257 -0.089 -0.329 0.097 0.513 -0.198 -0.327 -0.145 -0.740 0.306 -0.682 0.625 . . . . . . . . . . . . . . . . 0.610 -0.206 -1.040 0.164 0.260 -0.080 -0.339 0.092 0.807 -0.556 -0.355 -0.343 -0.336 0.042 -0.407 0.509 . . . . . . . . . . . . . . . . 0.496 -0.403 -1.152 0.469 0.409 0.089 -0.644 -0.046 0.557 -0.372 -0.230 -0.146 -0.693 0.105 -0.654 0.740 0.427 -0.124 -0.933 0.279 0.379 0.114 -1.316 0.281 0.477 0.043 -0.725 -0.040 -1.524 0.702 -1.072 0.632 0.621 0.052 -0.800 -0.233 0.364 -0.300 -0.195 0.038 0.842 -0.563 -0.164 -0.647 -0.135 0.442 -0.422 -0.022 0.658 -0.548 -0.901 0.266 0.129 0.250 -1.046 0.302 0.730 0.093 -0.773 -0.537 -1.055 0.429 -0.456 0.530 -0.167 0.497 -0.666 0.095 0.285 0.185 -0.496 -0.095 0.352 -0.141 0.162 -0.518 -1.410 1.053 -1.014 0.075 . . . . . . . . . . . . . . . . 0.828 -0.246 -0.936 -0.219 0.309 -0.142 -0.211 -0.013 0.820 -0.612 -0.131 -0.583 -0.829 0.593 -0.597 0.342 0.672 -0.622 -0.499 0.070 0.518 -0.529 -0.998 0.458 0.702 -0.341 -0.380 -0.294 -0.768 0.224 -0.443 0.594 0.499 -0.208 -1.069 0.315 0.409 -0.179 -0.512 0.120 0.661 -0.339 -0.360 -0.236 -0.842 0.363 -0.431 0.501 0.442 -0.304 -0.802 0.331 0.217 0.003 -0.652 0.262 0.671 -0.062 -0.854 -0.157 -1.397 0.402 -0.672 0.741 0.717 -0.155 -1.319 0.081 0.432 -0.339 -0.272 0.045 0.720 -0.460 -0.069 -0.572 -0.398 0.203 -0.529 0.483 0.778 -0.670 -0.683 0.048 0.336 -0.161 -1.023 0.435 0.863 0.037 -1.103 -0.535 -0.734 0.240 -0.620 0.648 0.179 -0.549 -1.231 0.814 0.315 -0.128 -0.865 0.369 0.445 -0.211 -0.259 -0.090 -0.897 0.233 -0.779 0.770 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.641 -0.079 -0.386 -0.456 1.179 -0.793 -1.241 -0.442 -0.390 -2.105 1.305 -0.905 -9.899 -9.899 1.999 -9.899 -9.899 -9.899 -9.899 1.999 1.188 -4.092 -0.014 -0.575 1.405 -1.666 -1.490 -0.557 -1.392 -2.560 1.583 -1.148 -0.326 -1.356 -1.619 1.313 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.961 -1.048 -1.580 0.305 0.436 -0.563 -0.816 0.488 0.207 -0.612 -0.890 0.724 -0.164 -0.649 -0.833 0.932 0.673 -0.614 -0.952 0.305 0.482 -0.325 -0.501 0.135 0.502 -0.725 -0.420 0.300 -0.092 -0.607 -0.451 0.743 0.885 -1.030 -0.533 -0.039 0.247 -0.300 -0.821 0.521 0.231 -0.595 -0.548 0.566 -0.184 -1.031 -0.338 0.879 0.545 -0.891 -0.888 0.547 0.371 -0.577 -0.251 0.258 0.313 -0.570 -0.786 0.589 -0.519 -0.739 -0.743 1.074 0.874 -0.828 -1.055 0.167 0.705 -0.512 -0.847 0.154 0.347 -0.714 -0.613 0.550 -0.097 -0.723 -0.770 0.905 0.753 -0.301 -0.950 -0.021 0.410 0.097 -0.712 -0.012 0.494 -0.385 -0.558 0.197 0.048 -0.173 -0.451 0.431 0.728 -0.610 -0.517 -0.014 0.323 -0.308 -0.197 0.097 0.341 -0.507 -0.489 0.397 -0.252 -0.417 -0.268 0.661 0.338 -0.225 -0.664 0.321 0.389 -0.333 -0.629 0.322 0.523 -0.653 -0.722 0.402 -0.754 -0.517 -0.653 1.051 1.033 -1.206 -0.723 -0.129 0.558 -0.569 -0.409 0.139 0.692 -0.472 -0.536 -0.039 -0.094 -0.707 -0.494 0.800 0.536 -0.608 -0.301 0.114 0.367 -0.520 -0.456 0.361 0.338 -0.155 -0.222 -0.027 -0.252 -0.213 -0.323 0.584 0.897 -1.201 -0.334 -0.136 0.472 -0.435 -0.400 0.157 0.394 -0.541 -0.023 0.022 0.392 -1.195 -0.182 0.453 0.534 -0.564 -0.507 0.229 0.445 -0.723 -0.588 0.451 0.511 -0.590 -0.430 0.224 -0.540 -0.856 -0.607 1.072 0.807 -1.091 -1.247 0.444 0.562 -0.527 -0.895 0.369 0.449 -0.699 -0.564 0.424 0.049 -0.781 -0.872 0.877 0.711 -0.682 -0.679 0.156 0.423 -0.153 -0.488 0.065 0.790 -0.825 -0.476 -0.017 -0.130 -0.113 -0.359 0.467 0.712 -0.760 -0.596 0.150 0.495 -0.346 -0.801 0.299 0.322 -0.455 -0.353 0.308 -0.058 -0.857 -0.350 0.768 0.537 -0.828 -0.877 0.527 0.492 -0.351 -0.722 0.267 0.478 -0.474 -0.618 0.305 -0.687 -0.449 -1.026 1.108 1.097 -1.180 -1.578 0.118 0.527 -0.684 -0.923 0.495 0.444 -0.548 -0.713 0.428 -0.182 -0.967 -1.070 1.091 0.522 -0.064 -0.934 0.116 0.435 -0.229 -0.571 0.166 0.310 -0.346 -0.470 0.323 -0.324 -0.507 -0.375 0.788 0.942 -0.934 -0.708 -0.085 0.224 -0.359 -0.476 0.415 -0.079 -0.375 -0.752 0.755 0.054 -0.861 -0.414 0.732 0.583 -0.735 -0.945 0.467 0.502 -0.513 -0.813 0.394 0.261 -0.477 -0.745 0.572 -0.724 -0.633 -0.961 1.161 0.984 -0.913 -1.309 0.120 0.273 0.020 -0.642 0.185 0.517 -0.513 -0.576 0.260 -0.261 -0.249 -0.884 0.833 0.687 -0.378 -0.995 0.161 0.007 0.485 -0.694 -0.032 0.177 0.083 -0.554 0.175 -0.206 0.189 -0.649 0.439 0.814 -0.779 -0.674 0.046 -0.076 0.383 -0.414 -0.005 0.321 -0.225 -0.514 0.257 -0.104 -0.284 -0.426 0.589 0.578 -0.360 -0.658 0.130 0.170 -0.013 -0.887 0.426 0.529 -0.269 -0.865 0.237 -0.670 -0.045 -0.647 0.818 1.151 -1.289 -1.455 0.007 0.583 -0.560 -0.349 0.055 0.694 -0.445 -0.784 0.094 -0.279 -0.909 -0.720 1.026 0.595 -0.513 -0.399 0.042 0.093 0.077 -0.418 0.177 0.135 0.290 -0.460 -0.071 -0.312 -0.168 -0.229 0.538 0.962 -1.185 -0.356 -0.267 0.499 -0.439 -0.216 -0.017 0.289 -0.609 -0.158 0.295 0.094 -0.689 -0.272 0.569 0.590 -0.758 -0.480 0.246 0.367 -0.615 -0.324 0.332 0.178 -0.470 -0.266 0.395 -0.755 -0.632 -0.658 1.090 0.948 -1.029 -1.370 0.255 0.677 -0.500 -1.070 0.285 0.618 -0.837 -0.439 0.224 -0.114 -0.604 -0.851 0.898 0.707 -0.404 -1.149 0.216 0.415 -0.186 -0.561 0.150 0.414 -0.448 -0.450 0.266 -0.288 0.281 -0.668 0.419 1.058 -1.055 -1.175 -0.009 0.338 -0.109 -0.806 0.306 0.566 -0.429 -0.582 0.149 0.165 -0.476 -0.430 0.504 0.456 -0.580 -0.816 0.476 0.320 -0.232 -1.282 0.574 0.451 -0.531 -0.707 0.409 -0.572 -0.382 -0.845 1.002 1.130 -1.212 -1.612 0.075 0.598 -0.632 -0.765 0.325 0.623 -0.468 -0.621 0.121 0.003 -1.009 -0.856 0.962 0.581 -0.260 -0.720 0.087 0.479 -0.224 -0.570 0.105 0.441 -0.351 -0.440 0.165 0.030 -0.571 -0.404 0.632 0.802 -0.828 -0.274 -0.208 0.573 -0.369 -0.885 0.259 0.359 -0.585 -0.407 0.375 -0.036 -1.040 -0.394 0.830 0.630 -0.851 -0.866 0.432 0.425 -0.621 -0.584 0.422 0.492 -0.770 -0.349 0.290 -0.653 -0.935 -0.960 1.219 0.939 -0.804 -1.110 0.067 0.590 -0.338 -0.771 0.160 0.356 -0.210 -0.332 0.085 -0.076 -0.570 -0.669 0.806 0.770 -0.310 -0.902 -0.069 0.630 -0.088 -0.473 -0.338 0.526 0.011 -0.588 -0.173 0.451 -0.294 -0.480 0.138 0.798 -0.555 -0.583 -0.130 0.065 0.013 0.052 -0.140 0.271 0.010 -0.296 -0.040 -0.150 -0.153 -0.135 0.366 0.624 -0.507 -0.681 0.178 0.410 -0.122 -0.839 0.256 0.596 -0.211 -0.674 -0.003 -0.237 -0.179 -0.790 0.757 1.093 -1.341 -0.903 -0.094 0.532 -0.314 -0.493 0.056 0.537 -0.215 -0.295 -0.196 -0.157 -0.767 -0.552 0.875 0.708 -0.516 -0.410 -0.128 0.401 -0.555 -0.123 0.111 0.086 0.029 0.168 -0.332 -0.334 0.026 -0.373 0.502 0.893 -0.937 -0.378 -0.233 0.183 -0.537 0.065 0.176 0.175 -0.758 0.420 -0.086 -0.052 -0.443 -0.182 0.504 0.639 -0.672 -0.363 0.053 0.440 -0.547 -0.568 0.361 0.495 -0.647 -0.227 0.135 -0.389 -0.786 -0.730 1.038 0.626 -1.004 -0.235 0.149 0.503 -0.421 -0.696 0.286 0.318 -0.814 -0.192 0.389 -0.090 -0.809 -0.513 0.839 0.588 -0.476 -0.704 0.219 0.351 -0.090 -0.518 0.120 0.387 -0.419 -0.384 0.237 -0.131 0.080 -0.473 0.389 0.555 -0.969 0.148 -0.134 0.455 -0.254 -0.593 0.172 0.150 -0.214 -0.284 0.270 -0.208 -0.484 0.050 0.468 0.413 -0.669 -0.416 0.368 0.508 -0.485 -0.808 0.369 0.361 -0.479 -0.516 0.377 -0.699 -0.502 -0.782 1.068 1.022 -1.135 -1.476 0.208 0.496 -0.443 -1.107 0.475 0.310 -0.286 -0.955 0.510 -0.084 -0.957 -1.078 1.048 0.576 -0.618 -0.408 0.143 0.403 -0.397 -0.477 0.263 0.294 -0.454 -0.199 0.230 -0.136 -0.446 -0.314 0.634 0.875 -1.008 -0.639 0.037 0.383 -0.326 -0.888 0.441 0.092 0.253 -0.900 0.271 -0.173 -0.652 -0.580 0.854 0.441 -0.850 -0.827 0.608 0.577 -0.651 -0.699 0.328 0.403 -0.566 -0.708 0.475 -0.480 -0.623 -0.901 1.069 0.938 -1.005 -1.253 0.222 0.522 -0.398 -1.022 0.392 0.509 -0.490 -0.721 0.331 -0.180 -0.292 -0.871 0.811 0.609 -0.611 -0.262 -0.020 0.344 0.072 -0.582 0.016 0.393 -0.265 -0.375 0.116 -0.175 0.059 -0.496 0.447 0.775 -1.052 -0.814 0.308 0.276 -0.134 -0.613 0.291 0.342 -0.127 -0.693 0.260 -0.314 -0.224 -0.458 0.689 0.512 -0.585 -0.436 0.225 0.226 -0.427 -0.702 0.558 0.613 -0.501 -0.688 0.193 -0.602 0.073 -0.617 0.711 1.097 -1.248 -1.173 -0.005 0.516 -0.399 -0.468 0.123 0.502 -0.293 -0.818 0.264 0.041 -0.781 -0.523 0.760 0.671 -0.624 -0.441 0.031 0.448 -0.603 -0.396 0.285 0.164 -0.128 -0.357 0.243 -0.373 0.218 -0.417 0.396 1.023 -1.331 -0.503 -0.209 0.464 -0.357 -0.523 0.194 0.350 -0.329 -0.399 0.228 -0.022 -0.800 -0.071 0.574 0.463 -0.758 -0.186 0.203 0.445 -0.599 -0.544 0.370 0.351 -0.382 -0.822 0.477 -0.565 -0.497 -0.574 0.959 1.010 -1.156 -1.363 0.199 0.598 -0.430 -0.962 0.300 0.484 -0.539 -0.555 0.301 -0.135 -0.613 -0.942 0.937 0.624 -0.932 0.066 -0.172 0.618 -0.269 -0.660 0.004 0.631 -0.580 -0.397 0.033 -0.151 -0.109 -0.418 0.509 0.987 -1.131 -0.715 -0.072 0.559 -0.195 -0.842 0.132 0.481 -0.261 -0.630 0.168 -0.079 -0.611 -0.409 0.718 0.706 -0.935 -0.711 0.304 0.593 -0.369 -0.848 0.216 0.565 -0.546 -0.566 0.214 -0.607 -0.239 -0.731 0.921 Intron LUT 5 4 4 0 0.000 1.007 -1.148 -1.698 0.299 0.412 -0.573 -0.881 0.540 0.155 -0.592 -0.907 0.757 -0.214 -0.672 -0.900 0.981 0.700 -0.650 -0.987 0.303 0.506 -0.280 -0.504 0.073 0.521 -0.857 -0.358 0.302 -0.029 -0.720 -0.407 0.730 0.911 -1.094 -0.632 0.009 0.214 -0.295 -0.844 0.554 0.115 -0.769 -0.608 0.744 -0.184 -1.108 -0.336 0.898 0.545 -0.938 -0.857 0.552 0.369 -0.600 -0.136 0.188 0.325 -0.615 -0.745 0.583 -0.539 -0.816 -0.750 1.104 0.959 -0.987 -1.097 0.117 0.739 -0.551 -0.857 0.132 0.309 -0.831 -0.457 0.557 -0.073 -0.888 -0.740 0.934 0.849 -0.413 -0.893 -0.137 0.472 -0.037 -0.577 -0.047 0.638 -0.537 -0.537 0.092 0.195 -0.400 -0.480 0.465 0.798 -0.675 -0.600 -0.037 0.384 -0.356 -0.262 0.112 0.419 -0.529 -0.711 0.442 -0.063 -0.600 -0.305 0.654 0.390 -0.217 -0.604 0.228 0.430 -0.342 -0.576 0.255 0.580 -0.789 -0.755 0.415 -0.704 -0.622 -0.669 1.075 1.105 -1.360 -0.873 -0.131 0.560 -0.533 -0.554 0.206 0.631 -0.430 -0.509 0.009 -0.095 -0.847 -0.538 0.864 0.584 -0.693 -0.250 0.058 0.330 -0.560 -0.447 0.413 0.346 -0.147 -0.197 -0.070 -0.179 -0.217 -0.339 0.552 0.971 -1.383 -0.404 -0.151 0.504 -0.475 -0.538 0.231 0.386 -0.654 0.008 0.074 0.557 -1.417 -0.213 0.369 0.625 -0.713 -0.483 0.179 0.495 -0.887 -0.611 0.480 0.602 -0.658 -0.439 0.151 -0.513 -1.006 -0.640 1.111 0.824 -1.144 -1.221 0.431 0.562 -0.604 -0.912 0.416 0.446 -0.650 -0.470 0.355 0.077 -0.865 -0.892 0.893 0.801 -0.723 -0.672 0.035 0.463 -0.228 -0.422 0.031 0.881 -1.009 -0.380 -0.162 0.044 -0.394 -0.268 0.462 0.745 -0.770 -0.534 0.067 0.533 -0.299 -0.862 0.251 0.324 -0.515 -0.342 0.333 -0.024 -0.939 -0.335 0.767 0.623 -0.876 -0.831 0.436 0.535 -0.348 -0.645 0.171 0.536 -0.523 -0.507 0.203 -0.710 -0.506 -1.069 1.142 1.188 -1.350 -1.657 0.019 0.576 -0.697 -1.036 0.490 0.429 -0.626 -0.589 0.423 -0.142 -1.177 -1.203 1.149 0.621 -0.191 -0.949 0.095 0.456 -0.273 -0.602 0.191 0.355 -0.407 -0.257 0.176 -0.146 -0.707 -0.325 0.753 1.023 -1.005 -0.731 -0.207 0.099 -0.316 -0.307 0.397 -0.293 -0.443 -0.850 0.921 0.128 -0.999 -0.402 0.722 0.606 -0.852 -0.858 0.457 0.530 -0.710 -0.631 0.377 0.258 -0.527 -0.655 0.561 -0.618 -0.836 -1.035 1.202 1.110 -1.181 -1.268 -0.021 0.317 -0.005 -0.729 0.207 0.600 -0.662 -0.447 0.162 -0.137 -0.495 -0.816 0.859 0.856 -0.495 -0.960 -0.049 0.048 0.431 -0.572 -0.081 0.332 -0.001 -0.374 -0.043 0.023 -0.088 -0.453 0.392 0.928 -0.954 -0.692 -0.056 0.049 0.339 -0.414 -0.074 0.372 -0.270 -0.414 0.171 0.124 -0.481 -0.328 0.482 0.679 -0.442 -0.512 -0.056 0.295 -0.066 -0.823 0.325 0.607 -0.312 -0.785 0.125 -0.528 -0.229 -0.551 0.824 1.272 -1.524 -1.707 -0.104 0.736 -0.595 -0.554 -0.013 0.752 -0.542 -0.703 0.021 -0.269 -1.097 -0.748 1.075 0.683 -0.777 -0.317 0.011 0.177 0.032 -0.468 0.169 0.287 0.182 -0.417 -0.157 -0.190 -0.343 -0.124 0.503 1.070 -1.322 -0.468 -0.362 0.594 -0.477 -0.284 -0.073 0.285 -0.694 -0.011 0.228 0.286 -0.969 -0.315 0.552 0.732 -0.926 -0.431 0.099 0.478 -0.644 -0.265 0.182 0.343 -0.603 -0.207 0.271 -0.558 -0.757 -0.715 1.084 1.037 -1.163 -1.353 0.150 0.816 -0.506 -1.330 0.186 0.624 -0.813 -0.371 0.158 0.006 -0.924 -0.754 0.908 0.870 -0.624 -1.085 0.074 0.518 -0.325 -0.511 0.095 0.510 -0.668 -0.192 0.099 0.021 0.002 -0.523 0.365 1.163 -1.278 -1.100 -0.181 0.416 -0.093 -0.849 0.230 0.566 -0.538 -0.409 0.107 0.262 -0.628 -0.485 0.525 0.536 -0.681 -0.545 0.311 0.458 -0.281 -1.250 0.468 0.543 -0.556 -0.635 0.285 -0.465 -0.538 -0.833 1.018 1.195 -1.410 -1.704 0.038 0.655 -0.655 -0.861 0.310 0.549 -0.500 -0.531 0.186 -0.016 -1.206 -0.906 1.031 0.624 -0.320 -0.721 0.073 0.567 -0.260 -0.607 0.038 0.364 -0.399 -0.373 0.242 0.117 -0.741 -0.432 0.656 0.870 -0.905 -0.433 -0.155 0.568 -0.357 -0.946 0.285 0.181 -0.637 -0.435 0.569 -0.082 -1.198 -0.398 0.896 0.714 -0.979 -0.896 0.395 0.538 -0.597 -0.578 0.283 0.498 -0.901 -0.262 0.285 -0.656 -1.141 -1.097 1.290 1.040 -1.021 -1.142 -0.004 0.637 -0.324 -0.871 0.136 0.269 -0.196 -0.138 0.019 -0.010 -0.632 -0.610 0.771 0.941 -0.501 -1.020 -0.185 0.839 -0.310 -0.552 -0.469 0.625 -0.104 -0.606 -0.202 0.654 -0.546 -0.394 -0.029 0.904 -0.739 -0.674 -0.148 -0.011 0.057 -0.067 0.018 0.343 -0.043 -0.408 0.011 0.021 -0.245 -0.147 0.308 0.717 -0.621 -0.822 0.189 0.439 -0.126 -0.752 0.182 0.727 -0.248 -0.753 -0.138 -0.058 -0.249 -0.829 0.709 1.155 -1.455 -1.037 -0.120 0.476 -0.262 -0.489 0.088 0.527 -0.232 -0.276 -0.182 -0.199 -0.870 -0.527 0.916 0.806 -0.589 -0.477 -0.204 0.425 -0.784 -0.001 0.109 0.136 0.042 0.136 -0.372 -0.302 -0.099 -0.268 0.511 0.928 -1.013 -0.411 -0.235 0.149 -0.667 0.074 0.273 0.182 -0.970 0.424 0.018 0.068 -0.578 -0.221 0.510 0.783 -0.823 -0.443 -0.032 0.501 -0.585 -0.570 0.316 0.640 -0.751 -0.271 0.027 -0.274 -0.920 -0.709 1.023 0.562 -1.122 0.067 0.023 0.491 -0.429 -0.607 0.258 0.215 -0.884 -0.091 0.442 -0.082 -0.939 -0.324 0.795 0.724 -0.638 -0.635 0.087 0.438 -0.300 -0.307 0.036 0.389 -0.485 -0.225 0.163 0.067 -0.105 -0.455 0.371 0.519 -1.198 0.440 -0.369 0.578 -0.338 -0.672 0.123 0.168 -0.228 -0.254 0.244 -0.197 -0.529 0.080 0.463 0.473 -0.807 -0.248 0.261 0.563 -0.592 -0.680 0.304 0.460 -0.586 -0.365 0.240 -0.658 -0.670 -0.711 1.089 1.089 -1.274 -1.540 0.158 0.534 -0.426 -1.156 0.443 0.253 -0.336 -0.962 0.588 -0.079 -1.124 -1.066 1.082 0.638 -0.845 -0.278 0.088 0.430 -0.440 -0.447 0.241 0.327 -0.543 -0.188 0.241 -0.063 -0.643 -0.236 0.635 0.950 -1.167 -0.647 -0.023 0.440 -0.333 -0.945 0.411 0.066 0.225 -0.797 0.274 -0.146 -0.741 -0.567 0.866 0.508 -0.917 -0.801 0.560 0.619 -0.736 -0.652 0.296 0.441 -0.557 -0.629 0.397 -0.436 -0.723 -0.941 1.094 1.028 -1.187 -1.273 0.147 0.611 -0.484 -0.963 0.315 0.463 -0.472 -0.521 0.268 -0.059 -0.439 -0.775 0.781 0.656 -0.786 -0.002 -0.241 0.420 -0.028 -0.550 -0.003 0.505 -0.435 -0.328 0.063 0.001 -0.053 -0.381 0.342 0.824 -1.234 -0.811 0.304 0.261 -0.212 -0.624 0.367 0.379 -0.093 -0.756 0.226 -0.111 -0.448 -0.349 0.638 0.576 -0.678 -0.282 0.088 0.368 -0.497 -0.561 0.404 0.727 -0.569 -0.534 -0.028 -0.376 -0.082 -0.549 0.679 1.175 -1.372 -1.210 -0.116 0.572 -0.457 -0.473 0.090 0.436 -0.360 -0.724 0.336 0.075 -0.976 -0.440 0.767 0.723 -0.793 -0.287 -0.070 0.467 -0.681 -0.316 0.252 0.239 -0.214 -0.252 0.161 -0.188 0.066 -0.347 0.367 1.083 -1.468 -0.503 -0.297 0.433 -0.379 -0.510 0.238 0.322 -0.314 -0.378 0.234 0.119 -0.953 -0.072 0.532 0.545 -0.934 0.005 0.020 0.556 -0.777 -0.428 0.266 0.422 -0.391 -0.732 0.374 -0.472 -0.640 -0.628 0.993 1.066 -1.181 -1.339 0.098 0.682 -0.481 -0.977 0.227 0.433 -0.471 -0.493 0.284 -0.054 -0.705 -0.884 0.912 0.641 -1.188 0.316 -0.402 0.770 -0.441 -0.549 -0.193 0.692 -0.674 -0.263 -0.114 0.045 -0.332 -0.264 0.423 1.036 -1.193 -0.661 -0.185 0.660 -0.242 -0.888 0.048 0.472 -0.284 -0.581 0.167 0.036 -0.703 -0.364 0.663 0.785 -0.967 -0.616 0.155 0.741 -0.462 -0.781 0.030 0.632 -0.620 -0.450 0.095 -0.605 -0.294 -0.719 0.941 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.078 -0.178 -0.583 0.478 0.138 -0.168 -0.464 0.361 0.410 0.227 -0.378 -0.451 1.203 -0.821 -0.253 -1.773 0.998 -0.477 -0.477 -0.821 1.016 -0.624 -0.275 -0.993 1.993 -7.297 -7.297 -7.297 -7.297 -7.297 -7.297 1.993 -7.297 -7.297 1.993 -7.297 0.296 -0.529 0.281 -0.209 0.025 0.561 -0.343 -0.477 -0.137 -0.147 -0.030 0.273 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.419 -0.042 -0.025 -0.497 0.571 -0.385 -0.451 0.025 0.072 -0.042 -0.222 0.163 -0.111 -0.301 0.419 -0.111 0.768 -0.723 -1.322 0.369 0.317 -0.042 -1.059 0.382 -6.451 -6.451 -6.451 1.988 1.988 -6.451 -6.451 -6.451 1.988 -6.451 -6.451 -6.451 TAG WMM 9 6 4 0 0.000 0.481 0.033 -0.311 -0.367 0.512 -0.488 -0.204 -0.011 0.159 -0.204 -0.311 0.274 -0.011 -0.426 -0.057 0.381 0.603 -0.488 -1.552 0.512 -0.153 -0.204 0.159 0.159 -5.011 -5.011 -5.011 1.966 1.966 -5.011 -5.011 -5.011 -5.011 -5.011 1.966 -5.011 TGA WMM 9 6 4 0 0.000 0.388 -0.313 -0.143 -0.027 0.360 -0.143 -0.225 -0.065 0.009 -0.268 -0.225 0.388 0.272 -0.669 -0.065 0.272 0.494 -0.612 -0.728 0.415 -0.506 -0.225 -0.065 0.570 -5.313 -5.313 -5.313 1.973 -5.313 -5.313 1.973 -5.313 1.973 -5.313 -5.313 -5.313 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/Dm.hmm0000644000175000017500000013475211424066010014424 0ustar moellermoellerzoeHMM Dm 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.750831 Inter Esngl 0.249169 Inter ORF 1 Intron Eterm 0.233230 Intron Exon 0.766770 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.429204 0.378319 0.192478 0.576562 0.245312 0.178125 0.580508 0.243644 0.175847 0.604278 0.192513 0.203209 0.755396 0.244604 0.769829 0.230171 0.783080 0.216920 Einit 2 DEFINED 0 249 -9.107 -9.047 -8.989 -8.934 -8.880 -8.829 -8.779 -8.731 -8.685 -8.640 -8.596 -8.551 -8.507 -8.464 -8.423 -8.383 -8.344 -8.305 -8.268 -8.232 -8.197 -8.162 -8.129 -8.096 -8.064 -8.032 -8.001 -7.971 -7.942 -7.913 -7.884 -7.855 -7.825 -7.797 -7.769 -7.742 -7.715 -7.688 -7.662 -7.637 -7.612 -7.620 -7.627 -7.635 -7.643 -7.651 -7.659 -7.667 -7.675 -7.683 -7.692 -7.698 -7.705 -7.711 -7.718 -7.725 -7.731 -7.738 -7.745 -7.752 -7.759 -7.762 -7.766 -7.769 -7.772 -7.776 -7.779 -7.783 -7.786 -7.790 -7.793 -7.831 -7.869 -7.909 -7.949 -7.991 -8.034 -8.078 -8.124 -8.171 -8.220 -8.204 -8.187 -8.171 -8.155 -8.140 -8.124 -8.109 -8.094 -8.078 -8.064 -8.053 -8.042 -8.032 -8.022 -8.011 -8.001 -7.991 -7.981 -7.971 -7.961 -7.965 -7.969 -7.973 -7.977 -7.981 -7.985 -7.989 -7.993 -7.997 -8.001 -8.022 -8.042 -8.064 -8.085 -8.107 -8.129 -8.151 -8.174 -8.197 -8.220 -8.244 -8.268 -8.293 -8.318 -8.344 -8.370 -8.396 -8.423 -8.451 -8.479 -8.496 -8.513 -8.530 -8.548 -8.566 -8.584 -8.603 -8.621 -8.640 -8.659 -8.675 -8.692 -8.708 -8.725 -8.742 -8.759 -8.776 -8.793 -8.811 -8.829 -8.840 -8.851 -8.862 -8.873 -8.884 -8.895 -8.907 -8.918 -8.930 -8.942 -8.977 -9.013 -9.051 -9.089 -9.129 -9.169 -9.211 -9.254 -9.298 -9.344 -9.338 -9.333 -9.328 -9.323 -9.318 -9.313 -9.308 -9.303 -9.298 -9.293 -9.308 -9.323 -9.338 -9.354 -9.370 -9.385 -9.401 -9.418 -9.434 -9.451 -9.473 -9.496 -9.519 -9.542 -9.566 -9.590 -9.615 -9.640 -9.666 -9.692 -9.653 -9.615 -9.578 -9.542 -9.507 -9.473 -9.439 -9.407 -9.375 -9.344 -9.380 -9.418 -9.456 -9.496 -9.536 -9.578 -9.621 -9.666 -9.711 -9.759 -9.772 -9.786 -9.800 -9.815 -9.829 -9.844 -9.858 -9.873 -9.888 -9.903 -9.880 -9.858 -9.836 -9.815 -9.793 -9.772 -9.752 -9.731 -9.711 -9.692 -9.705 -9.718 -9.731 -9.745 -9.759 -9.772 -9.786 -9.800 -9.815 GEOMETRIC 250 -1 256 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.254 -10.161 -10.073 -9.991 -9.913 -9.839 -9.768 -9.701 -9.637 -9.576 -9.517 -9.499 -9.482 -9.466 -9.449 -9.433 -9.416 -9.400 -9.384 -9.369 -9.353 -9.369 -9.384 -9.400 -9.416 -9.433 -9.449 -9.466 -9.482 -9.499 -9.517 -9.488 -9.460 -9.433 -9.406 -9.379 -9.353 -9.328 -9.303 -9.278 -9.254 -9.239 -9.225 -9.211 -9.197 -9.183 -9.170 -9.156 -9.143 -9.129 -9.116 -9.094 -9.073 -9.052 -9.031 -9.011 -8.991 -8.971 -8.951 -8.932 -8.913 -8.909 -8.905 -8.901 -8.898 -8.894 -8.890 -8.886 -8.883 -8.879 -8.875 -8.853 -8.831 -8.810 -8.789 -8.768 -8.748 -8.728 -8.708 -8.688 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.631 -8.624 -8.618 -8.612 -8.606 -8.600 -8.594 -8.588 -8.582 -8.576 -8.570 -8.564 -8.558 -8.552 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.543 -8.540 -8.537 -8.534 -8.531 -8.528 -8.525 -8.522 -8.520 -8.517 -8.537 -8.558 -8.579 -8.600 -8.621 -8.643 -8.665 -8.688 -8.711 -8.734 -8.728 -8.721 -8.714 -8.708 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.650 -8.631 -8.612 -8.594 -8.576 -8.558 -8.540 -8.522 -8.505 -8.488 -8.508 -8.528 -8.549 -8.570 -8.591 -8.612 -8.634 -8.656 -8.678 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.640 -8.643 -8.646 -8.650 -8.653 -8.656 -8.659 -8.662 -8.665 -8.669 -8.685 -8.701 -8.718 -8.734 -8.751 -8.768 -8.785 -8.803 -8.821 -8.839 -8.860 -8.883 -8.905 -8.928 -8.951 -8.975 -8.999 -9.023 -9.048 -9.073 -9.103 -9.134 -9.165 -9.197 -9.230 -9.263 -9.298 -9.333 -9.369 -9.406 -9.384 -9.364 -9.343 -9.323 -9.303 -9.283 -9.263 -9.244 -9.225 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.225 -9.244 -9.263 -9.283 -9.303 -9.323 -9.343 -9.364 -9.384 GEOMETRIC 250 -1 417 Exon 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 378 ORF 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.361 -0.376 -1.046 0.547 0.461 -0.391 -1.368 0.559 0.377 -0.338 -1.174 0.553 0.435 -0.431 -1.431 0.619 0.402 -0.419 -1.556 0.670 0.431 -0.364 -1.471 0.599 0.377 -0.330 -1.496 0.634 0.415 -0.561 -1.229 0.645 0.413 -0.407 -1.368 0.613 0.265 -0.319 -1.135 0.626 0.103 -0.254 -1.257 0.741 0.055 -0.191 -1.345 0.760 0.046 -0.164 -1.383 0.760 -0.109 -0.087 -1.415 0.814 -0.178 -0.102 -1.257 0.822 -0.261 -0.181 -1.447 0.940 -0.376 -0.112 -1.548 0.974 -0.323 -0.071 -1.539 0.931 -0.290 0.144 -1.301 0.743 -0.174 0.083 -1.496 0.767 -0.360 0.297 -2.208 0.831 -1.161 0.037 -2.236 1.212 -0.992 -0.341 -2.530 1.343 0.149 -0.610 -0.007 0.313 -2.447 1.402 -7.923 0.230 1.999 -8.923 -8.923 -8.923 -8.923 -8.923 1.999 -8.923 0.381 -0.372 0.361 -0.637 -0.112 -0.181 -0.689 0.655 0.141 0.063 -0.171 -0.049 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.520 -0.140 0.757 -0.503 -0.362 0.305 0.338 -0.470 -0.642 0.553 -0.328 0.132 -0.785 0.258 0.494 -0.296 -0.051 -0.890 1.069 -1.333 0.072 0.186 0.407 -1.043 -0.223 0.622 -0.251 -0.388 -0.794 -0.780 1.162 -0.728 -0.121 -0.550 0.601 -0.183 -0.392 0.498 -0.046 -0.222 0.652 0.441 -1.637 -0.415 -1.042 -0.268 0.859 -0.201 . 1.178 . 0.796 -0.649 0.360 0.543 -0.685 . 0.722 0.606 -0.271 -1.311 0.404 0.626 -0.454 -0.948 0.205 0.634 -0.363 -0.405 0.614 0.144 -0.714 -1.342 1.076 -0.991 -0.009 -0.858 0.501 0.217 -0.198 -0.571 -0.227 0.901 -0.724 -0.007 0.345 0.420 -1.334 -0.401 0.864 -0.357 -0.639 -1.057 -0.409 1.202 -1.104 -0.755 -0.029 0.616 -0.159 -0.789 1.131 -0.753 -0.650 0.313 0.808 -1.552 -0.588 -1.048 -0.231 0.931 -0.401 . 1.345 . 0.546 -0.799 0.478 0.626 -1.031 . 0.959 0.423 -0.483 -2.257 0.670 -0.060 0.311 -0.845 0.125 0.843 -0.840 -0.626 0.515 0.423 -0.780 -1.130 1.068 -0.776 -0.214 -1.236 0.626 0.302 -0.323 -0.446 -0.332 1.044 -1.285 0.040 0.249 0.481 -1.364 -0.246 0.660 -0.170 -0.540 -1.005 -0.683 1.307 -1.304 -0.781 -0.328 0.862 -0.315 -0.691 0.602 0.197 -0.480 -0.031 0.945 -2.235 -0.178 -1.799 -0.356 1.228 -0.766 . 1.496 . 0.238 -0.719 0.568 0.528 -1.098 . 1.113 0.302 -0.726 -2.465 0.961 0.096 -0.316 -0.654 0.003 0.396 0.066 -0.364 0.347 0.517 -0.944 -0.850 0.810 -0.832 0.176 -0.379 0.017 0.300 -0.017 -0.443 -0.031 0.758 -0.749 -0.371 0.621 0.345 -1.257 -0.641 0.894 -0.627 -0.229 -1.105 -0.385 1.218 -1.177 -0.399 -0.111 0.454 -0.080 -0.708 0.928 -0.206 -0.695 0.090 0.867 -1.352 -0.475 -1.361 -0.196 1.080 -0.683 . 1.204 . 0.762 -0.582 0.423 0.539 -0.893 . 0.877 0.338 -0.153 -1.126 0.227 0.727 -0.483 -0.461 -0.160 0.494 -0.043 -0.019 0.112 0.215 -0.375 -0.572 0.457 -0.406 0.263 -0.675 -0.141 0.492 0.085 -0.148 -0.606 0.831 -0.596 0.171 0.107 0.248 -0.713 -0.387 0.810 -0.650 -0.244 -1.101 -0.441 1.141 -0.755 -0.465 -0.545 0.586 0.122 -0.250 0.402 -0.213 -0.036 0.685 0.103 -1.350 -0.111 -1.233 -0.505 0.905 -0.003 . 1.070 . 0.926 -0.523 0.323 0.552 -0.770 . 0.714 0.209 0.267 -1.205 0.304 0.446 -0.045 -0.800 -0.068 0.769 -0.382 -0.464 0.723 -0.100 -0.532 -1.522 1.021 -1.109 0.212 -1.166 0.431 0.181 0.101 -0.538 -0.201 0.883 -0.745 0.063 0.092 0.440 -0.908 -0.572 0.821 -0.627 -0.131 -1.251 -0.369 1.181 -0.892 -0.433 -0.355 0.571 -0.011 -0.962 1.180 -1.187 -0.356 0.162 0.825 -1.709 -0.315 -1.221 0.089 0.741 -0.259 . 1.312 . 0.601 -0.753 0.599 0.562 -1.269 . 1.016 0.325 -0.465 -2.544 0.929 -0.142 0.025 -0.578 0.062 0.323 0.050 -0.185 0.281 0.483 -0.978 -0.622 0.690 -0.543 0.072 -0.990 0.157 0.529 -0.091 -0.498 -0.166 0.904 -0.918 -0.137 0.444 0.436 -1.405 -0.369 0.631 -0.403 -0.119 -1.339 -0.435 1.311 -1.382 -0.417 -0.211 0.542 -0.104 -0.478 0.539 0.162 -0.494 0.224 0.756 -1.859 -0.204 -1.461 -0.405 1.145 -0.578 . 1.439 . 0.366 -0.836 0.409 0.695 -1.020 . 0.871 0.488 -0.379 -1.817 0.477 0.448 -0.058 -0.425 -0.096 0.437 -0.050 -0.340 0.154 0.132 0.003 -0.684 0.794 -0.737 0.063 -0.473 -0.205 0.062 0.452 -0.013 -0.768 0.812 -0.587 0.141 0.147 0.110 -0.491 -0.247 0.648 -0.923 0.088 -0.837 -0.879 1.204 -0.756 -0.147 -0.492 0.430 0.054 -0.390 0.671 -0.922 0.159 0.253 0.679 -1.439 -0.254 -0.912 -0.335 0.828 -0.151 . 0.988 . 1.012 -0.239 0.227 0.419 -0.631 . 0.710 0.459 -0.015 -1.029 -0.088 0.776 -0.224 -0.427 -0.066 0.399 -0.026 -0.428 0.458 -0.093 -0.081 -0.503 0.378 -0.421 0.320 -0.869 0.249 0.446 -0.150 -0.442 -0.369 0.887 -0.644 -0.123 0.451 0.005 -0.491 -0.236 0.796 -0.783 -0.262 -1.195 -0.312 1.082 -0.641 -0.338 -0.605 0.431 0.267 -0.222 0.447 -0.538 0.126 0.795 0.362 -2.152 -0.405 -0.985 -0.476 0.964 -0.276 . 1.120 . 0.870 -0.498 0.553 0.318 -0.791 . 0.787 0.483 -0.189 -1.511 0.719 0.362 -0.479 -0.833 0.114 0.679 -0.405 -0.539 0.886 -0.398 -0.506 -1.823 1.205 -1.504 0.084 -1.243 0.536 0.218 -0.052 -0.554 -0.137 0.920 -0.950 -0.228 0.559 0.375 -1.409 -0.717 0.817 -0.286 -0.305 -1.220 -0.355 1.167 -0.878 -0.572 -0.200 0.600 -0.087 -0.999 1.256 -1.315 -0.496 -0.003 0.919 -2.013 -0.211 -1.453 0.197 0.754 -0.317 . 1.296 . 0.628 -1.073 0.989 -0.025 -0.845 . 0.897 0.393 -0.279 -2.392 0.919 -0.155 0.029 -0.451 0.184 0.457 -0.396 -0.183 0.324 0.100 -0.330 -0.878 0.876 -0.620 -0.043 -0.501 0.417 0.053 -0.119 -0.419 -0.143 0.877 -0.975 0.191 0.365 0.215 -1.287 -0.246 0.627 -0.212 -0.417 -0.967 -0.435 1.224 -1.276 -0.372 -0.247 0.478 -0.012 -0.521 0.740 -0.209 -0.379 0.232 0.947 -2.623 -0.444 -1.690 -0.164 1.153 -0.799 . 1.301 . 0.619 -0.601 0.518 0.518 -1.067 . 0.658 0.725 -0.377 -1.687 0.757 0.132 -0.145 -0.371 0.150 0.031 0.132 -0.307 0.426 -0.288 0.041 -1.248 0.941 -1.248 0.308 -1.354 0.284 0.199 0.314 -0.549 -0.202 0.802 -0.507 -0.379 0.453 0.239 -0.551 -0.594 0.961 -0.835 -0.268 -1.132 -0.429 1.213 -1.051 -0.315 -0.055 0.215 0.102 -0.825 0.986 -0.739 -0.225 0.109 0.761 -1.705 -0.120 -1.124 -0.020 0.939 -0.649 . 1.106 . 0.885 -0.696 0.722 0.358 -1.149 . 0.798 0.294 0.051 -1.274 0.564 0.443 -0.416 -0.680 -0.002 0.642 -0.293 -0.528 0.635 -0.059 -0.334 -0.642 0.608 -0.439 0.134 -0.702 0.081 0.542 -0.198 -0.167 -0.469 0.827 -0.706 -0.129 0.641 0.074 -1.078 -0.121 0.772 -0.744 -0.366 -0.949 0.017 0.763 -0.370 -0.334 -0.165 0.357 0.049 -0.469 0.823 -0.574 -0.257 0.252 0.765 -1.469 -0.417 -1.167 -0.102 0.671 0.044 . 1.265 . 0.675 -0.723 0.674 0.277 -0.768 . 0.974 0.183 -0.151 -1.219 0.659 -0.149 0.123 -1.124 0.123 0.809 -0.513 -0.872 1.096 -0.369 -0.884 -2.061 1.136 -1.251 0.193 -1.263 0.823 0.009 -0.307 -0.738 -0.247 0.973 -0.749 -0.375 0.553 0.404 -1.189 -0.887 0.860 -0.351 -0.218 -1.476 -0.231 1.174 -0.908 -0.996 -0.151 0.609 0.101 -1.052 1.218 -0.948 -0.571 0.022 0.776 -1.418 -0.156 -1.529 0.414 0.633 -0.376 . 1.465 . 0.310 -1.085 0.722 0.480 -1.047 . 1.091 0.293 -0.635 -2.375 1.053 -0.706 0.163 -0.775 0.107 0.758 -0.626 -0.852 0.947 -0.123 -0.735 -1.058 0.961 -0.366 -0.327 -1.257 0.450 0.480 -0.285 -0.477 -0.181 0.942 -1.065 -0.314 0.815 0.112 -1.495 -0.264 0.834 -0.823 -0.288 -1.461 0.091 1.107 -1.257 -0.767 0.039 0.706 -0.408 -1.061 1.140 -0.673 -0.536 -0.267 1.099 -2.359 -0.267 -1.609 0.134 0.984 -0.747 . 1.476 . 0.285 -1.270 1.003 0.210 -1.238 . 1.000 0.542 -0.878 -2.198 0.943 -0.026 -0.189 -0.425 -0.007 0.562 -0.352 -0.392 0.791 -0.164 -0.701 -1.601 0.974 -0.732 0.143 -0.618 0.230 0.243 -0.012 -0.190 -0.219 0.765 -0.826 -0.322 0.589 0.220 -0.914 -0.365 0.810 -0.551 -0.344 -0.828 -0.275 1.031 -0.820 -0.213 -0.147 0.315 -0.015 -0.663 1.070 -0.801 -0.525 0.127 0.796 -1.503 -0.288 -1.112 -0.192 1.016 -0.644 . 1.364 . 0.512 -0.831 0.627 0.351 -0.693 . 0.823 0.592 -0.468 -0.999 0.424 0.575 -0.581 frame2 LUT 5 4 4 0 0.000 0.096 0.218 0.012 -0.397 0.381 -0.615 0.243 -0.215 0.227 -0.047 0.320 -0.706 -0.202 0.018 0.750 -1.196 0.082 -0.123 0.284 -0.312 0.567 -0.505 0.103 -0.437 -0.208 0.415 0.513 -1.419 -0.324 0.066 0.586 -0.613 0.369 -0.134 -0.037 -0.281 0.604 -0.735 0.279 -0.587 0.077 -0.098 0.702 -1.379 -0.343 -0.076 0.709 -0.672 0.149 -0.049 0.129 -0.266 0.151 -0.202 0.448 -0.608 -0.119 0.093 0.580 -0.950 -0.327 -0.057 0.785 -0.949 0.304 0.292 -0.180 -0.603 0.283 -0.068 0.035 -0.314 -0.113 0.561 0.168 -1.072 -0.736 0.646 0.284 -0.696 -0.073 0.385 0.259 -0.871 0.899 -1.367 0.091 -0.553 -0.211 0.568 0.332 -1.341 -0.388 0.081 0.472 -0.338 0.073 0.204 -0.003 -0.325 0.484 -0.292 -0.047 -0.292 -0.232 0.164 0.720 -1.392 -0.582 0.313 0.377 -0.339 0.427 0.092 -0.048 -0.683 0.628 -0.394 -0.341 -0.145 -0.280 0.359 0.579 -1.320 0.093 0.154 -0.049 -0.227 0.160 -0.105 0.430 -0.723 0.298 -0.766 0.388 -0.194 -0.105 0.103 0.511 -0.809 -0.465 -0.004 0.720 -0.664 -0.230 -0.221 0.770 -0.777 0.623 -0.539 0.194 -0.671 -0.519 0.045 0.976 -1.721 -0.599 -0.069 0.905 -0.962 -0.097 -0.097 0.477 -0.437 0.435 -0.974 0.617 -0.722 -0.083 0.313 0.424 -1.083 -1.061 0.368 0.775 -0.948 0.286 -0.231 0.107 -0.231 0.579 -0.342 0.076 -0.593 -0.399 0.291 0.695 -1.326 -0.296 0.152 0.360 -0.339 . . . . 0.196 -0.194 0.230 -0.308 . . . . -0.289 0.202 0.489 -0.671 -0.121 -0.003 0.303 -0.237 0.318 -0.482 0.286 -0.289 -0.244 0.353 0.497 -1.098 -0.459 0.050 0.632 -0.540 . . . . 0.295 -0.094 0.093 -0.378 0.368 -0.047 -0.004 -0.428 -0.833 0.400 0.788 -1.347 0.484 -0.296 0.177 -0.607 0.075 0.013 0.342 -0.579 -0.288 0.210 0.626 -1.057 -0.085 -0.203 0.652 -0.696 0.316 -0.020 -0.040 -0.330 0.504 -0.606 0.096 -0.224 0.079 -0.071 0.397 -0.568 -0.522 0.281 0.650 -0.946 0.146 -0.113 0.193 -0.275 0.617 -0.768 0.069 -0.269 -0.635 0.414 0.652 -1.143 -0.611 0.169 0.565 -0.432 0.206 -0.191 0.227 -0.322 0.637 -0.794 0.187 -0.455 0.406 -0.043 0.459 -1.601 -0.944 0.022 0.716 -0.284 -0.099 0.265 -0.068 -0.135 0.432 -0.437 0.240 -0.451 0.088 -0.052 0.361 -0.540 -0.314 -0.008 0.664 -0.699 0.271 0.088 0.079 -0.570 0.380 -0.291 0.051 -0.242 0.055 0.227 0.286 -0.806 -0.918 0.688 0.321 -0.711 -0.107 0.232 0.371 -0.729 0.832 -1.398 0.084 -0.357 -0.425 0.607 0.393 -1.254 -0.194 -0.167 0.660 -0.609 -0.071 0.185 0.005 -0.140 0.448 -0.321 0.064 -0.340 0.215 0.127 0.411 -1.258 -0.707 0.321 0.488 -0.441 0.644 -0.241 -0.134 -0.555 0.823 -0.994 -0.122 -0.305 -0.210 0.292 0.532 -1.105 0.251 -0.037 0.186 -0.519 0.287 -0.043 0.145 -0.507 0.460 -0.934 0.338 -0.256 0.035 -0.323 0.656 -0.735 -0.565 0.079 0.744 -0.755 -0.288 -0.067 0.615 -0.525 0.402 -0.499 0.248 -0.352 -0.625 -0.072 0.877 -0.827 -0.918 0.053 0.824 -0.594 0.095 -0.115 0.378 -0.496 0.506 -1.020 0.488 -0.547 -0.159 0.115 0.586 -0.943 -0.797 0.057 0.810 -0.664 0.391 -0.091 -0.046 -0.355 0.359 -0.372 0.036 -0.121 -0.283 -0.092 0.825 -1.094 -0.316 -0.148 0.362 0.014 . . . . 0.422 -0.550 0.228 -0.311 . . . . -0.438 0.270 0.577 -0.825 0.142 0.226 -0.094 -0.340 0.724 -0.892 0.025 -0.336 -0.233 0.427 0.325 -0.858 -0.310 -0.122 0.650 -0.503 . . . . 0.418 -0.337 0.154 -0.397 0.137 0.065 0.170 -0.454 -1.020 0.268 0.796 -0.822 0.658 -0.288 -0.090 -0.594 0.260 -0.116 0.131 -0.350 -0.115 -0.115 0.763 -1.132 -0.037 -0.376 0.829 -1.065 0.192 0.205 -0.239 -0.221 0.472 -0.508 0.067 -0.214 0.211 0.165 0.213 -0.831 -0.428 0.413 0.529 -1.053 0.121 0.050 0.168 -0.407 0.824 -0.559 -0.239 -0.508 -0.141 0.461 0.436 -1.463 -0.416 0.076 0.562 -0.473 0.285 -0.133 -0.034 -0.163 0.664 -0.751 0.037 -0.330 0.365 -0.015 0.473 -1.580 -0.696 0.335 0.584 -0.683 0.096 0.117 -0.067 -0.164 0.548 -0.529 0.138 -0.426 0.137 0.203 0.235 -0.804 -0.177 -0.064 0.585 -0.603 0.285 0.449 -0.531 -0.466 0.535 -0.482 0.057 -0.332 -0.219 0.589 0.129 -0.883 -0.672 0.755 -0.082 -0.436 -0.206 0.378 0.273 -0.678 0.916 -1.082 0.098 -0.809 -0.611 0.563 0.477 -1.073 -0.571 0.300 0.443 -0.440 0.029 0.350 -0.185 -0.278 0.651 -0.301 -0.048 -0.619 -0.188 0.320 0.502 -1.127 -0.880 0.734 0.086 -0.448 0.637 -0.121 -0.242 -0.557 0.642 -0.543 -0.395 -0.011 -0.137 0.334 0.479 -1.196 0.368 0.186 -0.426 -0.273 0.366 0.064 -0.053 -0.510 0.612 -0.984 0.142 -0.212 0.073 0.113 0.368 -0.797 -0.436 0.299 0.583 -0.909 -0.180 0.101 0.518 -0.708 0.890 -0.789 -0.073 -0.695 -0.525 0.122 0.862 -1.325 -0.554 0.291 0.622 -0.845 0.032 -0.119 -0.004 0.083 0.722 -1.063 0.250 -0.551 -0.181 0.543 0.368 -1.432 -0.778 0.588 0.478 -0.939 0.457 -0.328 -0.055 -0.204 0.969 -0.959 -0.531 -0.257 -0.216 0.206 0.611 -1.127 0.104 0.065 0.093 -0.300 . . . . 0.499 -0.456 0.197 -0.492 . . . . -0.488 0.466 0.408 -0.788 -0.017 0.081 0.172 -0.273 0.769 -1.020 0.073 -0.413 -0.413 0.627 0.280 -1.029 -0.205 -0.079 0.606 -0.591 . . . . 0.351 -0.201 0.186 -0.480 0.070 0.070 0.110 -0.284 -0.794 0.523 0.504 -0.818 0.619 -0.338 0.027 -0.613 0.280 -0.029 0.154 -0.530 -0.083 0.243 0.461 -1.010 -0.098 -0.134 0.691 -0.890 0.477 -0.302 -0.020 -0.302 0.354 -0.517 0.212 -0.209 0.228 0.095 0.218 -0.743 -0.087 0.293 0.391 -0.938 0.130 -0.063 0.217 -0.347 0.577 -0.428 0.003 -0.391 -0.152 0.177 0.575 -1.058 -0.618 0.232 0.517 -0.428 0.500 0.007 -0.463 -0.225 0.459 -0.449 -0.044 -0.116 0.349 -0.104 0.421 -1.129 -0.670 -0.061 0.638 -0.223 0.113 -0.184 0.047 0.007 0.382 -0.130 0.051 -0.420 -0.153 0.380 0.259 -0.731 -0.238 -0.028 0.592 -0.591 0.327 0.051 -0.089 -0.378 0.451 -0.206 -0.089 -0.276 -0.223 0.424 0.108 -0.466 -0.885 0.628 0.363 -0.675 -0.144 0.277 0.220 -0.477 0.622 -0.874 0.255 -0.470 -0.661 0.510 0.540 -1.031 -0.790 0.172 0.595 -0.350 -0.120 0.110 0.183 -0.209 0.587 -0.264 -0.032 -0.540 -0.126 0.218 0.560 -1.164 -0.715 0.569 0.265 -0.504 0.320 -0.009 -0.061 -0.324 0.675 -0.557 -0.260 -0.171 -0.301 0.293 0.547 -0.996 0.229 0.178 -0.032 -0.477 0.519 -0.312 0.108 -0.548 0.365 -0.515 0.066 -0.051 -0.041 0.104 0.429 -0.720 -0.393 0.083 0.581 -0.550 -0.252 -0.066 0.582 -0.500 0.513 -0.356 0.136 -0.529 -0.412 -0.274 0.962 -1.080 -0.699 0.282 0.744 -1.021 0.022 -0.070 0.343 -0.388 0.627 -0.606 0.112 -0.478 -0.275 0.177 0.627 -1.003 -0.847 0.166 0.699 -0.518 0.538 -0.228 -0.015 -0.505 0.428 -0.079 -0.281 -0.176 -0.280 0.063 0.774 -1.246 0.043 0.010 0.290 -0.434 . . . . 0.327 -0.290 0.041 -0.155 . . . . -0.433 0.293 0.490 -0.667 0.082 -0.093 0.275 -0.333 0.505 -0.488 0.263 -0.584 -0.436 0.362 0.545 -0.953 -0.621 0.047 0.721 -0.582 . . . . 0.143 -0.154 0.219 -0.263 -0.159 0.003 0.392 -0.340 -0.936 0.438 0.589 -0.693 0.715 -0.615 0.215 -0.878 0.004 0.080 0.313 -0.519 -0.362 -0.018 0.812 -1.062 0.110 -0.290 0.649 -0.905 frame2 LUT 5 4 4 0 0.000 0.671 -0.331 -1.286 0.266 0.118 -0.387 -0.438 0.497 0.417 -0.095 -0.785 0.199 -0.410 0.370 -0.539 0.340 0.776 -0.521 -0.859 0.055 0.564 -1.044 -0.464 0.391 0.925 -0.523 -0.283 -0.776 -0.322 0.194 -0.437 0.398 0.831 -0.526 -1.114 0.090 0.266 -0.324 -0.205 0.178 0.875 -0.174 -0.662 -0.626 -0.360 0.125 -0.257 0.371 0.486 -0.295 -0.727 0.239 -0.166 0.320 -0.656 0.294 -0.077 0.103 0.069 -0.107 -1.252 0.419 -0.662 0.688 0.477 0.184 -1.071 -0.005 0.151 0.455 -0.716 -0.135 0.359 0.388 -0.598 -0.419 -0.991 0.755 -1.027 0.399 0.436 0.043 -0.722 0.016 0.662 -0.908 -0.766 0.375 0.605 -0.204 -0.299 -0.327 -0.236 0.113 -0.347 0.360 0.417 0.017 -0.670 0.035 -0.098 0.475 -0.839 0.158 0.652 0.043 -0.585 -0.450 -0.538 0.199 -0.521 0.553 0.229 0.011 -0.496 0.153 -0.344 0.429 -0.853 0.392 -0.047 0.138 0.123 -0.247 -0.984 0.522 -0.789 0.565 0.610 -0.487 -0.063 -0.315 -0.105 0.039 -0.144 0.186 0.511 0.215 -0.466 -0.536 -0.912 0.410 -0.679 0.599 0.539 -0.501 -0.036 -0.210 0.605 -0.695 -0.795 0.362 0.806 -0.693 -0.001 -0.657 -0.380 0.444 -0.612 0.283 0.667 -0.862 -0.447 0.175 0.330 -0.292 0.163 -0.309 1.035 -0.291 -0.996 -0.663 -0.179 0.078 -0.594 0.484 0.393 -0.262 -0.159 -0.063 -0.149 0.373 -0.447 0.097 -0.017 0.218 0.093 -0.355 -1.317 0.567 -0.572 0.531 0.408 -0.194 -0.829 0.306 -0.166 0.498 -0.631 0.071 0.449 0.409 -1.159 -0.219 -0.746 0.403 -1.014 0.666 0.785 -0.434 -1.085 0.092 0.452 -1.565 -0.443 0.640 0.970 -0.470 -0.583 -0.616 -0.276 0.100 -0.216 0.312 0.619 -0.330 -0.878 0.169 0.249 -0.326 -0.305 0.268 0.703 -0.114 -0.506 -0.428 -0.432 0.257 -0.313 0.332 0.597 -0.374 -0.896 0.237 0.019 0.002 -0.244 0.191 0.280 -0.109 -0.215 -0.005 -0.765 0.280 -0.347 0.497 0.648 -0.336 -0.853 0.121 0.781 -0.706 -0.926 0.192 0.341 0.033 -0.509 0.010 -0.880 0.481 -0.893 0.607 0.598 -0.338 -0.774 0.151 0.886 -1.049 -0.937 0.197 0.933 -0.417 -0.459 -0.704 -0.325 0.097 -0.493 0.507 0.582 -0.456 -0.587 0.148 0.858 -0.656 -0.600 -0.163 0.750 0.063 -0.778 -0.533 -0.445 -0.123 -0.398 0.667 0.275 -0.237 -0.537 0.324 0.199 0.195 -0.430 -0.050 -0.127 0.219 -0.120 0.000 -1.159 0.250 -0.842 0.852 0.613 0.120 -0.666 -0.408 0.042 0.646 -1.077 -0.103 0.317 0.200 -0.671 -0.032 -0.829 0.756 -1.324 0.431 0.573 -0.012 -0.733 -0.122 0.882 -0.641 -0.694 -0.155 0.635 -0.369 -0.306 -0.212 -0.371 0.285 -0.484 0.371 0.795 -0.448 -0.768 -0.082 0.248 0.525 -1.039 -0.173 0.802 0.054 -0.820 -0.618 -0.135 0.163 -0.354 0.248 0.368 -0.074 -0.348 -0.039 0.018 0.493 -0.646 -0.088 -0.146 0.038 0.397 -0.409 -0.882 0.595 -1.000 0.533 0.853 -0.406 -0.968 -0.109 0.095 -0.209 -0.016 0.108 0.346 0.068 -0.581 0.017 -1.096 0.423 -0.877 0.720 0.640 -0.380 -0.829 0.151 0.666 -1.945 -0.280 0.412 0.947 -0.917 -0.407 -0.344 -0.060 0.019 -0.420 0.355 0.847 -0.754 -0.676 -0.026 0.419 -0.547 0.097 -0.138 0.907 -0.037 -1.268 -0.445 -0.188 -0.010 -0.660 0.581 0.570 -0.122 -0.774 0.017 -0.065 -0.233 0.054 0.207 0.187 -0.070 0.181 -0.367 -0.937 0.172 -0.726 0.804 0.700 -0.423 -0.632 -0.023 0.236 -0.293 -0.794 0.515 0.668 -0.093 -0.753 -0.184 -0.649 0.535 -0.850 0.442 0.731 -0.319 -0.784 -0.063 0.560 -1.979 -0.531 0.660 0.900 -0.798 -0.410 -0.310 -0.283 0.099 -0.536 0.503 0.579 -0.376 -0.755 0.193 0.272 -0.295 -0.339 0.247 0.669 -0.044 -0.445 -0.503 -0.455 0.180 -0.215 0.351 0.815 -0.477 -0.880 -0.031 0.411 -0.371 -0.589 0.300 0.471 -0.239 -0.103 -0.259 -0.636 0.285 -0.715 0.613 0.595 -0.400 -0.753 0.187 0.121 -0.581 -0.405 0.574 0.688 -0.053 -1.077 -0.073 -0.687 0.432 -0.671 0.487 0.658 -0.504 -0.964 0.269 0.451 -1.016 -0.355 0.440 1.218 -0.833 -0.874 -0.817 -0.162 0.026 -0.712 0.563 0.822 -0.612 -1.080 0.144 0.441 -0.702 -0.396 0.343 0.957 -0.233 -0.876 -0.592 -0.331 -0.095 -0.405 0.598 0.414 -0.403 -0.889 0.456 -0.134 -0.003 -0.410 0.420 0.496 -0.057 -0.296 -0.296 -0.684 0.206 -0.547 0.623 0.506 0.030 -0.831 -0.005 0.002 0.277 -0.829 0.292 0.043 0.780 -0.989 -0.417 -0.874 0.705 -1.201 0.475 0.605 -0.144 -0.761 -0.023 0.654 -1.272 -0.528 0.399 0.529 0.108 -0.428 -0.443 -0.535 0.162 -0.349 0.491 0.574 -0.480 -0.710 0.242 0.260 0.099 -0.823 0.221 0.617 0.292 -0.755 -0.624 -0.226 0.098 -0.763 0.571 0.452 -0.200 -0.554 0.112 0.012 0.083 -0.659 0.378 -0.079 0.435 -0.022 -0.481 -0.839 0.340 -0.632 0.613 0.657 -0.271 -0.800 0.029 0.063 -0.078 -0.367 0.301 -0.126 0.468 -0.149 -0.324 -1.041 0.565 -0.958 0.603 0.623 -0.479 -0.493 0.045 0.773 -1.526 -0.781 0.445 0.671 -0.854 0.253 -0.593 0.071 0.177 -0.521 0.167 0.653 -0.821 -0.558 0.242 0.554 -0.393 -0.359 -0.013 0.904 -0.138 -0.669 -0.759 -0.619 0.432 -1.519 0.723 0.361 -0.236 -0.322 0.093 0.321 -0.244 -0.463 0.240 0.082 -0.187 0.441 -0.503 -0.494 0.459 -0.692 0.375 0.791 -0.292 -1.462 0.123 0.205 -0.085 -0.670 0.352 0.468 0.070 -0.798 -0.012 -0.789 0.613 -1.137 0.523 0.750 -0.168 -1.055 -0.079 0.534 -1.627 -0.894 0.757 0.840 -0.651 -0.328 -0.364 -0.075 -0.068 -0.426 0.436 0.546 -0.209 -1.203 0.311 0.041 -0.021 -0.345 0.261 0.598 0.075 -0.629 -0.348 -0.718 0.326 -0.098 0.268 0.669 -0.384 -0.720 0.051 0.205 0.033 -0.413 0.101 0.310 -0.236 -0.034 -0.097 -0.587 0.372 -0.384 0.349 . . . . . . . . . . . . . . . . 0.723 -0.421 -0.978 0.131 0.623 -1.082 -0.384 0.288 0.932 -0.354 -0.480 -0.754 -0.097 -0.164 -0.442 0.523 . . . . . . . . . . . . . . . . 0.269 -0.331 -0.775 0.501 0.050 0.040 -0.355 0.208 0.048 0.113 -0.276 0.083 -0.951 -0.028 -0.424 0.813 0.577 0.014 -0.692 -0.185 -0.087 0.359 -0.538 0.120 0.354 0.354 -0.558 -0.386 -1.281 0.958 -1.281 0.304 0.413 0.012 -0.580 -0.014 0.314 -1.054 -0.338 0.569 0.490 -0.236 -0.009 -0.409 -0.703 0.555 -0.387 0.204 0.628 -0.343 -0.864 0.159 0.134 0.201 -0.707 0.190 0.593 0.125 -0.495 -0.531 -0.512 0.641 -0.658 0.144 0.346 -0.121 -0.467 0.118 -0.171 0.358 -0.509 0.173 0.087 0.041 0.206 -0.406 -1.386 0.684 -0.585 0.427 . . . . . . . . . . . . . . . . 0.626 -0.392 -0.817 0.172 0.358 -0.752 -0.378 0.438 0.787 -0.669 -0.174 -0.398 -0.238 0.184 -0.238 0.225 0.731 -0.379 -0.806 -0.002 0.225 -0.895 -0.121 0.458 0.694 -0.228 -0.467 -0.314 -0.657 0.242 -0.257 0.429 0.439 -0.173 -0.947 0.309 -0.070 0.363 -0.367 -0.020 0.237 0.049 -0.038 -0.298 -1.784 0.216 -0.282 0.787 0.696 -0.311 -0.577 -0.146 -0.379 0.353 -0.563 0.353 0.628 0.202 -0.784 -0.467 -1.129 0.712 -1.129 0.534 0.626 -0.339 -0.959 0.203 0.215 -0.758 -0.143 0.424 0.907 -0.523 -0.549 -0.425 -0.128 0.016 -0.329 0.353 0.516 -0.174 -0.347 -0.157 0.150 -0.091 -0.376 0.240 0.606 0.101 -0.415 -0.610 -0.465 0.252 -0.416 0.417 0.543 -0.468 -0.721 0.279 0.070 0.039 -0.807 0.434 0.274 -0.061 -0.167 -0.087 -0.565 0.148 -0.307 0.493 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.569 0.065 -0.276 -0.633 1.109 -0.729 -0.610 -0.774 -0.789 -1.890 1.427 -1.110 -8.923 -8.923 1.998 -8.923 -8.923 -8.923 -8.923 1.998 1.258 -4.338 0.473 -2.548 1.594 -2.103 -1.440 -1.400 -2.195 -3.464 1.811 -2.448 -1.016 -1.223 -2.338 1.526 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.672 -0.479 -0.634 0.064 0.610 -0.497 -0.549 0.114 0.066 -0.030 -0.437 0.305 0.287 -0.602 -0.116 0.260 0.723 -0.467 -0.498 -0.124 0.634 -0.088 -0.341 -0.478 0.538 -0.074 -0.414 -0.239 0.027 -0.467 -0.086 0.395 0.692 -0.809 -0.206 -0.079 0.396 -0.211 -0.267 -0.016 0.387 -0.085 -0.259 -0.130 -0.042 -0.610 0.110 0.372 0.556 -0.718 -0.894 0.469 0.396 -0.287 -0.114 -0.089 0.026 -0.006 -0.265 0.207 0.112 -0.689 -0.186 0.505 0.725 -0.305 -0.799 -0.054 0.890 -0.621 -0.805 -0.115 0.253 0.240 -0.628 -0.029 0.375 -0.736 -0.526 0.494 0.459 -0.112 -0.356 -0.123 0.654 -0.069 -0.683 -0.235 0.603 0.201 -0.716 -0.469 -0.035 -0.309 -0.155 0.399 0.639 -0.491 -0.366 -0.066 0.495 0.028 -0.630 -0.112 0.349 0.166 -0.366 -0.272 0.129 -0.504 -0.122 0.359 0.594 -0.436 -0.753 0.212 0.297 -0.273 -0.134 0.046 0.193 0.099 -0.259 -0.074 -0.174 -0.614 -0.219 0.679 0.786 -0.653 -0.384 -0.196 0.574 -0.296 -0.410 -0.083 0.404 0.054 -0.365 -0.214 0.317 -0.519 -0.249 0.281 0.499 -0.547 0.100 -0.268 0.769 -0.367 -0.263 -0.541 0.480 -0.216 -0.046 -0.367 -0.202 -0.346 0.267 0.191 0.561 -0.624 -0.058 -0.128 0.560 -0.383 -0.113 -0.262 0.288 -0.218 0.030 -0.154 0.043 -0.661 0.330 0.111 0.492 -0.424 -0.479 0.178 0.381 -0.236 -0.058 -0.171 -0.025 0.099 -0.063 -0.016 -0.238 -0.564 -0.036 0.585 0.787 -0.795 -0.852 0.195 0.756 -0.499 -0.674 -0.034 0.319 -0.037 -0.716 0.226 0.550 -0.984 -0.491 0.399 0.568 -0.634 -0.344 0.119 0.489 -0.155 -0.327 -0.149 0.547 -0.038 -0.502 -0.220 -0.014 -0.270 -0.038 0.270 0.631 -0.643 -0.487 0.134 0.556 -0.190 -0.469 -0.105 0.157 0.200 -0.203 -0.205 0.252 -0.752 -0.003 0.283 0.595 -0.693 -0.737 0.346 0.352 -0.095 -0.247 -0.082 0.138 -0.001 -0.512 0.263 0.066 -0.404 -0.330 0.487 0.566 -0.443 -0.618 0.179 0.623 -0.514 -0.712 0.200 0.033 -0.062 -0.450 0.363 -0.118 -0.434 -0.331 0.626 0.167 0.306 -0.559 -0.056 0.476 -0.063 -0.479 -0.097 0.053 0.295 -0.487 0.033 -0.675 -0.133 -0.110 0.618 0.485 -0.403 -0.263 0.016 0.560 -0.333 -0.608 0.105 0.263 0.096 -0.406 -0.034 -0.528 -0.351 0.015 0.596 0.374 -0.400 -0.976 0.524 0.221 -0.106 -0.230 0.075 -0.161 0.098 -0.313 0.299 -0.342 -0.467 -0.538 0.847 0.618 -0.278 -0.474 -0.119 0.374 0.063 -0.827 0.133 -0.002 0.409 -0.567 -0.001 -0.237 -0.090 -0.554 0.614 0.296 -0.019 -0.348 0.000 0.329 0.171 -0.659 -0.023 0.251 0.314 -0.494 -0.222 -0.522 -0.050 -0.106 0.494 0.533 -0.454 -0.361 0.063 0.236 0.334 -1.093 0.128 0.103 0.407 -0.356 -0.289 -0.267 -0.193 -0.193 0.505 0.497 -0.336 -0.746 0.263 -0.098 0.111 -0.279 0.216 -0.240 0.311 -0.153 0.019 -0.455 -0.260 -0.303 0.700 0.707 -0.496 -0.621 0.012 0.269 -0.393 -0.230 0.240 0.091 0.035 -0.315 0.146 -0.046 -0.510 -0.183 0.535 0.209 -0.159 -0.102 0.024 0.346 -0.026 -0.238 -0.154 0.066 0.057 -0.301 0.140 -0.787 -0.007 0.149 0.397 0.532 -0.602 -0.196 0.032 0.345 -0.325 -0.136 0.031 -0.107 0.182 -0.001 -0.092 -0.429 -0.429 0.177 0.470 0.351 -0.490 -0.485 0.376 0.116 -0.290 0.043 0.095 -0.300 0.001 -0.202 0.398 -0.586 -0.464 -0.107 0.748 0.521 -0.462 -0.689 0.286 0.445 -0.314 -0.647 0.258 0.218 0.076 -0.605 0.170 0.202 -0.467 -0.454 0.482 0.399 -0.199 -0.440 0.102 0.370 -0.229 -0.384 0.122 0.269 0.080 -0.415 -0.017 -0.464 0.096 -0.144 0.380 0.501 -0.318 -0.477 0.089 0.242 -0.050 -0.470 0.176 -0.072 0.413 -0.258 -0.183 -0.214 -0.385 0.014 0.446 0.583 -0.605 -0.660 0.277 0.182 -0.170 -0.341 0.248 0.010 -0.048 -0.141 0.163 -0.354 -0.325 -0.237 0.651 0.666 -0.641 -0.667 0.191 0.330 -0.427 -0.452 0.343 0.171 -0.045 -0.336 0.154 0.035 -0.454 -0.130 0.413 0.404 -0.317 -0.153 -0.037 0.550 -0.084 -0.468 -0.203 0.455 -0.093 -0.202 -0.282 -0.379 -0.297 0.044 0.471 0.528 -0.784 0.103 -0.146 0.493 -0.441 -0.239 0.013 0.423 -0.113 -0.137 -0.277 -0.187 -0.581 0.199 0.385 0.465 -0.493 -0.608 0.325 0.052 -0.093 -0.113 0.139 0.230 -0.191 -0.033 -0.039 -0.229 -0.560 -0.204 0.678 0.596 -0.201 -0.780 0.051 0.614 -0.412 -0.860 0.223 -0.033 0.507 -0.551 -0.122 0.065 -0.510 -0.528 0.640 0.390 -0.199 -0.202 -0.075 0.622 -0.036 -0.493 -0.368 0.038 0.384 -0.251 -0.271 -0.426 -0.186 0.071 0.407 0.510 -0.515 -0.226 0.031 0.342 -0.033 -0.581 0.120 0.088 0.356 -0.363 -0.185 -0.183 -0.522 0.114 0.423 0.641 -0.477 -0.640 0.111 0.077 -0.055 -0.299 0.226 -0.187 0.368 -0.188 -0.070 -0.099 -0.480 -0.384 0.663 0.859 -0.832 -0.646 -0.022 0.491 -0.411 -0.466 0.162 0.073 0.101 -0.010 -0.180 -0.088 -0.470 -0.068 0.469 0.485 -0.570 -0.028 -0.080 0.890 -0.542 -0.491 -0.417 0.295 -0.256 0.143 -0.266 -0.325 -0.413 0.196 0.384 0.762 -0.958 -0.269 -0.059 0.367 -0.390 -0.074 -0.004 0.137 -0.111 0.166 -0.230 -0.175 -0.489 0.153 0.367 0.661 -0.931 -0.434 0.206 0.383 -0.460 -0.192 0.130 0.031 -0.256 0.287 -0.118 -0.297 -0.500 -0.163 0.665 0.589 -0.795 -0.352 0.184 0.661 -0.726 -0.483 0.136 0.189 -0.014 -0.482 0.206 0.148 -0.582 -0.258 0.473 0.354 -0.409 -0.139 0.086 0.401 -0.309 -0.339 0.114 0.121 0.131 -0.280 -0.008 -0.316 -0.315 0.257 0.261 0.443 -0.563 0.047 -0.104 0.347 -0.248 -0.199 0.021 0.066 0.138 -0.021 -0.206 -0.287 -0.796 0.613 0.104 0.510 -0.577 -0.495 0.258 0.204 -0.214 -0.145 0.112 -0.063 0.043 -0.222 0.208 -0.216 -0.451 -0.260 0.653 0.508 -0.608 -0.799 0.430 0.371 -0.249 -0.796 0.367 -0.035 0.063 -0.793 0.488 0.069 -0.729 -0.441 0.688 0.370 -0.364 -0.773 0.428 0.505 -0.084 -0.752 0.062 0.379 -0.068 -0.625 0.134 -0.088 -0.340 -0.573 0.675 0.493 -0.656 -0.440 0.288 0.295 -0.118 -0.773 0.340 0.141 0.003 -0.325 0.134 -0.177 -0.650 -0.470 0.812 0.171 -0.721 -1.048 0.835 0.184 -0.341 -0.352 0.368 -0.127 -0.074 -0.563 0.543 -0.085 -0.817 -0.623 0.880 0.489 -0.454 -0.624 0.285 0.454 -0.301 -0.884 0.353 -0.088 0.316 -0.717 0.271 -0.092 -0.267 -0.685 0.686 0.267 -0.138 -0.400 0.176 0.404 0.094 -0.683 -0.021 0.162 0.155 -0.474 0.067 -0.601 -0.045 -0.117 0.535 0.483 -0.714 -0.378 0.290 0.298 0.018 -0.891 0.285 0.068 0.121 -0.391 0.139 -0.148 -0.293 -0.446 0.630 0.321 -0.439 -0.595 0.434 -0.048 -0.210 -0.465 0.530 -0.219 0.138 -0.300 0.296 -0.255 -0.335 -0.332 0.655 0.693 -0.713 -0.626 0.171 0.430 -0.281 -0.700 0.279 -0.031 -0.021 -0.553 0.437 0.020 -0.868 -0.204 0.650 0.371 -0.500 -0.137 0.125 0.591 -0.314 -0.385 -0.114 0.207 -0.135 -0.153 0.052 -0.414 -0.224 0.212 0.305 0.619 -0.741 -0.265 0.048 0.366 -0.042 -0.552 0.081 -0.045 0.075 -0.153 0.109 -0.242 -0.351 -0.063 0.499 0.330 -0.478 -0.701 0.496 0.229 -0.245 -0.326 0.246 -0.403 -0.088 -0.392 0.624 -0.451 -0.699 -0.077 0.770 0.622 -0.777 -0.690 0.331 0.465 -0.354 -0.651 0.264 -0.049 0.094 -0.581 0.376 0.018 -0.710 -0.457 0.721 0.453 -0.490 -0.375 0.199 0.419 -0.063 -0.489 -0.009 0.235 0.011 -0.393 0.076 -0.222 -0.310 -0.199 0.550 0.577 -0.584 -0.508 0.186 0.412 -0.022 -0.729 0.112 -0.176 0.373 -0.279 -0.007 -0.137 -0.682 -0.170 0.659 0.501 -0.708 -0.823 0.493 0.143 -0.017 -0.309 0.138 -0.205 0.021 -0.325 0.400 -0.183 -0.336 -0.371 0.636 Intron LUT 5 4 4 0 0.000 0.675 -0.523 -0.597 0.065 0.593 -0.505 -0.598 0.172 0.011 -0.044 -0.374 0.322 0.230 -0.636 -0.035 0.273 0.700 -0.486 -0.459 -0.098 0.603 -0.061 -0.305 -0.488 0.515 -0.050 -0.404 -0.237 -0.075 -0.450 -0.061 0.444 0.663 -0.844 -0.153 -0.058 0.339 -0.157 -0.298 0.035 0.319 -0.128 -0.190 -0.058 -0.100 -0.607 0.121 0.404 0.537 -0.743 -0.832 0.475 0.423 -0.257 -0.217 -0.055 0.000 0.019 -0.194 0.154 0.102 -0.725 -0.164 0.515 0.706 -0.320 -0.816 -0.000 0.875 -0.614 -0.797 -0.093 0.210 0.257 -0.533 -0.063 0.307 -0.759 -0.448 0.525 0.463 -0.129 -0.406 -0.070 0.669 -0.067 -0.730 -0.230 0.625 0.214 -0.738 -0.517 -0.167 -0.270 -0.091 0.423 0.624 -0.375 -0.380 -0.122 0.470 0.071 -0.756 -0.041 0.301 0.184 -0.282 -0.305 0.099 -0.467 -0.084 0.336 0.601 -0.411 -0.805 0.213 0.273 -0.282 -0.082 0.035 0.190 0.120 -0.225 -0.125 -0.251 -0.599 -0.196 0.702 0.798 -0.690 -0.404 -0.176 0.600 -0.349 -0.450 -0.049 0.353 0.030 -0.268 -0.199 0.307 -0.550 -0.209 0.281 0.453 -0.530 0.120 -0.230 0.769 -0.379 -0.277 -0.512 0.434 -0.227 -0.038 -0.285 -0.288 -0.286 0.272 0.205 0.565 -0.605 -0.069 -0.137 0.612 -0.390 -0.230 -0.225 0.271 -0.279 0.093 -0.147 0.076 -0.726 0.373 0.064 0.500 -0.480 -0.451 0.185 0.362 -0.244 -0.049 -0.146 -0.007 0.060 0.033 -0.092 -0.321 -0.561 0.013 0.598 0.786 -0.828 -0.870 0.221 0.712 -0.468 -0.676 0.018 0.345 -0.051 -0.706 0.203 0.461 -0.904 -0.383 0.403 0.567 -0.677 -0.395 0.179 0.469 -0.119 -0.362 -0.125 0.447 0.044 -0.480 -0.170 -0.091 -0.243 -0.004 0.286 0.605 -0.619 -0.460 0.138 0.555 -0.149 -0.498 -0.119 0.090 0.244 -0.160 -0.225 0.175 -0.657 0.031 0.281 0.603 -0.712 -0.738 0.346 0.363 -0.055 -0.300 -0.090 0.144 0.013 -0.469 0.219 0.011 -0.355 -0.287 0.476 0.556 -0.455 -0.611 0.196 0.585 -0.530 -0.724 0.265 -0.043 -0.093 -0.376 0.402 -0.196 -0.429 -0.288 0.647 0.146 0.261 -0.502 -0.017 0.434 -0.000 -0.492 -0.092 0.029 0.269 -0.453 0.062 -0.787 -0.107 -0.164 0.678 0.409 -0.332 -0.226 0.032 0.546 -0.318 -0.668 0.149 0.166 0.059 -0.343 0.067 -0.599 -0.326 0.007 0.621 0.451 -0.481 -0.997 0.501 0.219 -0.091 -0.289 0.109 -0.177 0.123 -0.298 0.278 -0.355 -0.468 -0.576 0.867 0.638 -0.260 -0.483 -0.163 0.364 0.094 -0.902 0.151 0.018 0.404 -0.539 -0.035 -0.258 -0.138 -0.547 0.651 0.246 0.008 -0.355 0.038 0.300 0.195 -0.715 0.021 0.221 0.301 -0.390 -0.253 -0.675 -0.010 -0.110 0.540 0.551 -0.427 -0.348 0.008 0.260 0.335 -1.232 0.157 0.043 0.441 -0.314 -0.309 -0.381 -0.128 -0.249 0.561 0.525 -0.287 -0.919 0.278 -0.124 0.133 -0.270 0.209 -0.294 0.348 -0.163 0.026 -0.518 -0.245 -0.294 0.716 0.699 -0.494 -0.643 0.037 0.266 -0.354 -0.321 0.280 0.030 0.024 -0.239 0.158 -0.203 -0.543 -0.064 0.574 0.205 -0.155 -0.097 0.020 0.346 0.014 -0.327 -0.118 0.011 0.014 -0.215 0.165 -0.897 -0.049 0.185 0.443 0.514 -0.544 -0.205 0.027 0.326 -0.313 -0.205 0.102 -0.172 0.196 0.036 -0.087 -0.447 -0.521 0.219 0.491 0.355 -0.508 -0.496 0.388 0.107 -0.233 -0.025 0.124 -0.301 0.011 -0.124 0.337 -0.654 -0.505 -0.072 0.772 0.491 -0.436 -0.825 0.368 0.368 -0.260 -0.681 0.323 0.212 0.047 -0.603 0.202 0.158 -0.492 -0.450 0.528 0.365 -0.196 -0.446 0.143 0.337 -0.242 -0.416 0.191 0.231 0.069 -0.376 0.009 -0.545 0.090 -0.118 0.411 0.490 -0.279 -0.496 0.087 0.212 -0.019 -0.536 0.220 -0.136 0.450 -0.230 -0.199 -0.317 -0.298 -0.014 0.478 0.587 -0.598 -0.665 0.271 0.165 -0.178 -0.413 0.315 -0.008 -0.025 -0.106 0.128 -0.416 -0.308 -0.212 0.659 0.687 -0.732 -0.671 0.214 0.296 -0.411 -0.505 0.395 0.133 -0.108 -0.261 0.190 -0.002 -0.520 -0.055 0.424 0.413 -0.329 -0.142 -0.050 0.560 -0.078 -0.475 -0.218 0.428 -0.065 -0.131 -0.347 -0.455 -0.297 0.079 0.485 0.515 -0.735 0.010 -0.054 0.491 -0.400 -0.350 0.073 0.315 -0.105 -0.035 -0.234 -0.200 -0.587 0.214 0.383 0.456 -0.448 -0.641 0.326 0.040 -0.058 -0.204 0.193 0.228 -0.198 0.026 -0.091 -0.301 -0.540 -0.149 0.677 0.624 -0.250 -0.856 0.092 0.630 -0.475 -0.917 0.267 -0.056 0.498 -0.496 -0.126 0.015 -0.556 -0.446 0.655 0.379 -0.232 -0.210 -0.025 0.630 -0.027 -0.565 -0.331 -0.018 0.400 -0.196 -0.286 -0.539 -0.133 0.042 0.455 0.514 -0.501 -0.306 0.080 0.315 0.047 -0.685 0.139 0.013 0.393 -0.325 -0.185 -0.195 -0.470 0.084 0.427 0.656 -0.472 -0.649 0.091 0.097 -0.008 -0.344 0.200 -0.216 0.388 -0.175 -0.083 -0.139 -0.495 -0.392 0.696 0.892 -0.893 -0.674 -0.030 0.442 -0.410 -0.527 0.257 0.008 0.075 0.061 -0.155 -0.185 -0.526 0.024 0.495 0.487 -0.578 -0.039 -0.066 0.908 -0.515 -0.568 -0.416 0.278 -0.286 0.160 -0.235 -0.394 -0.391 0.201 0.408 0.787 -1.007 -0.288 -0.062 0.378 -0.452 -0.072 0.026 0.087 -0.097 0.203 -0.231 -0.219 -0.504 0.180 0.382 0.723 -0.941 -0.446 0.130 0.348 -0.484 -0.176 0.173 0.074 -0.289 0.307 -0.165 -0.348 -0.517 -0.138 0.684 0.536 -0.840 -0.188 0.155 0.639 -0.731 -0.462 0.156 0.160 0.024 -0.381 0.135 0.116 -0.525 -0.207 0.439 0.328 -0.451 -0.117 0.126 0.385 -0.309 -0.359 0.147 0.066 0.138 -0.240 0.009 -0.412 -0.307 0.307 0.266 0.397 -0.568 0.156 -0.161 0.345 -0.210 -0.251 0.035 0.005 0.173 0.036 -0.244 -0.369 -0.758 0.627 0.124 0.471 -0.570 -0.500 0.303 0.188 -0.204 -0.160 0.135 -0.083 0.084 -0.196 0.167 -0.288 -0.420 -0.222 0.656 0.505 -0.640 -0.770 0.436 0.351 -0.220 -0.887 0.407 -0.090 0.011 -0.760 0.548 0.005 -0.744 -0.373 0.702 0.357 -0.418 -0.681 0.430 0.479 -0.040 -0.814 0.090 0.311 -0.040 -0.564 0.152 -0.186 -0.258 -0.582 0.693 0.498 -0.705 -0.467 0.323 0.296 -0.127 -0.836 0.375 0.062 -0.066 -0.227 0.197 -0.171 -0.649 -0.468 0.808 0.184 -0.728 -1.004 0.817 0.178 -0.317 -0.492 0.438 -0.160 -0.032 -0.450 0.480 -0.111 -0.786 -0.614 0.880 0.448 -0.435 -0.626 0.320 0.393 -0.281 -0.904 0.411 -0.109 0.309 -0.674 0.272 -0.164 -0.285 -0.636 0.716 0.200 -0.131 -0.438 0.263 0.386 0.156 -0.754 -0.020 0.077 0.145 -0.443 0.142 -0.729 -0.034 -0.123 0.586 0.483 -0.652 -0.351 0.241 0.270 0.070 -1.008 0.319 0.008 0.138 -0.338 0.142 -0.207 -0.259 -0.470 0.657 0.334 -0.462 -0.637 0.454 -0.087 -0.202 -0.467 0.551 -0.223 0.163 -0.287 0.268 -0.361 -0.324 -0.310 0.692 0.673 -0.707 -0.605 0.184 0.444 -0.311 -0.789 0.328 -0.156 -0.042 -0.519 0.519 -0.056 -0.882 -0.107 0.648 0.349 -0.464 -0.150 0.137 0.615 -0.327 -0.432 -0.106 0.152 -0.127 -0.064 0.024 -0.525 -0.193 0.269 0.293 0.611 -0.724 -0.255 0.041 0.387 -0.057 -0.605 0.102 -0.119 0.072 -0.103 0.134 -0.291 -0.343 -0.049 0.513 0.281 -0.488 -0.644 0.518 0.251 -0.227 -0.359 0.234 -0.447 -0.089 -0.318 0.608 -0.554 -0.699 -0.021 0.781 0.612 -0.767 -0.730 0.358 0.437 -0.368 -0.651 0.304 -0.044 0.100 -0.551 0.351 -0.065 -0.668 -0.397 0.727 0.412 -0.512 -0.327 0.228 0.379 -0.032 -0.511 0.028 0.187 0.019 -0.348 0.087 -0.292 -0.293 -0.185 0.573 0.519 -0.518 -0.462 0.193 0.393 0.004 -0.805 0.153 -0.290 0.424 -0.229 -0.019 -0.302 -0.574 -0.132 0.682 0.469 -0.697 -0.842 0.527 0.123 0.006 -0.331 0.152 -0.257 0.092 -0.290 0.355 -0.253 -0.269 -0.381 0.644 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 0.359 -0.363 0.226 -0.376 0.088 0.218 -0.351 -0.014 0.167 0.805 -0.841 -0.807 1.355 -1.807 -0.054 -2.376 0.961 -0.178 -0.841 -0.710 0.661 0.167 -0.125 -1.401 1.993 -7.234 -7.234 -7.234 -7.234 -7.234 -7.234 1.993 -7.234 -7.234 1.993 -7.234 0.024 -0.664 0.587 -0.234 0.115 0.761 -0.679 -0.742 -0.604 0.403 0.115 -0.094 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.297 -0.398 0.133 -0.127 0.393 -0.246 -0.353 0.084 -0.703 0.254 0.225 0.034 0.297 -0.309 0.117 -0.185 0.532 -0.444 -0.647 0.240 -0.309 0.532 -0.166 -0.225 -6.375 -6.375 -6.375 1.987 1.987 -6.375 -6.375 -6.375 1.987 -6.375 -6.375 -6.375 TAG WMM 9 6 4 0 0.000 0.373 -0.364 0.239 -0.419 0.581 -0.475 -0.075 -0.261 -1.075 0.451 0.166 0.051 0.340 -0.391 0.436 -0.693 0.892 -0.871 -0.727 -0.010 -0.475 0.436 0.051 -0.165 -6.119 -6.119 -6.119 1.984 1.984 -6.119 -6.119 -6.119 -6.119 -6.119 1.984 -6.119 TGA WMM 9 6 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam46.hmm0000644000175000017500000022741411424066010015006 0ustar moellermoellerzoeHMM mammal 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.857945 Inter Esngl 0.142055 Intron Eterm 0.150792 Intron Exon 0.849208 0.406787 0.387572 0.205642 0.575090 0.234724 0.190186 0.532648 0.274575 0.192777 0.563693 0.232238 0.204069 0.856370 0.143630 0.836030 0.163970 0.853164 0.146836 Einit 2 DEFINED 0 249 -9.594 -9.460 -9.338 -9.226 -9.121 -9.024 -8.933 -8.847 -8.766 -8.689 -8.616 -8.563 -8.513 -8.463 -8.416 -8.370 -8.325 -8.282 -8.240 -8.199 -8.159 -8.113 -8.068 -8.024 -7.982 -7.941 -7.901 -7.862 -7.824 -7.787 -7.751 -7.723 -7.696 -7.669 -7.642 -7.616 -7.591 -7.566 -7.541 -7.517 -7.493 -7.480 -7.467 -7.455 -7.442 -7.430 -7.418 -7.406 -7.393 -7.381 -7.370 -7.358 -7.347 -7.335 -7.324 -7.313 -7.302 -7.291 -7.280 -7.269 -7.258 -7.260 -7.261 -7.263 -7.264 -7.266 -7.268 -7.269 -7.271 -7.272 -7.274 -7.281 -7.288 -7.295 -7.302 -7.309 -7.317 -7.324 -7.331 -7.338 -7.346 -7.358 -7.370 -7.382 -7.395 -7.407 -7.420 -7.433 -7.446 -7.459 -7.472 -7.481 -7.491 -7.500 -7.510 -7.519 -7.529 -7.539 -7.549 -7.559 -7.568 -7.576 -7.584 -7.592 -7.600 -7.608 -7.616 -7.624 -7.632 -7.640 -7.648 -7.664 -7.681 -7.697 -7.714 -7.731 -7.748 -7.765 -7.783 -7.801 -7.819 -7.834 -7.850 -7.866 -7.882 -7.898 -7.915 -7.931 -7.948 -7.965 -7.983 -8.011 -8.039 -8.068 -8.098 -8.128 -8.159 -8.191 -8.223 -8.256 -8.290 -8.311 -8.332 -8.354 -8.376 -8.399 -8.422 -8.445 -8.468 -8.492 -8.517 -8.538 -8.560 -8.582 -8.605 -8.628 -8.651 -8.675 -8.699 -8.723 -8.748 -8.765 -8.782 -8.800 -8.818 -8.835 -8.853 -8.872 -8.890 -8.909 -8.928 -8.938 -8.948 -8.958 -8.969 -8.979 -8.989 -9.000 -9.010 -9.021 -9.031 -9.058 -9.084 -9.111 -9.139 -9.167 -9.196 -9.226 -9.256 -9.286 -9.317 -9.328 -9.338 -9.349 -9.359 -9.370 -9.380 -9.391 -9.402 -9.413 -9.424 -9.443 -9.462 -9.482 -9.502 -9.522 -9.543 -9.563 -9.585 -9.606 -9.628 -9.632 -9.637 -9.642 -9.646 -9.651 -9.656 -9.661 -9.665 -9.670 -9.675 -9.699 -9.723 -9.748 -9.773 -9.799 -9.825 -9.852 -9.879 -9.907 -9.935 -9.957 -9.979 -10.001 -10.024 -10.047 -10.070 -10.094 -10.118 -10.142 -10.167 -10.179 -10.191 -10.203 -10.215 -10.227 -10.240 -10.252 -10.264 -10.277 GEOMETRIC 250 -1 151 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.522 -10.382 -10.255 -10.138 -10.030 -9.930 -9.836 -9.747 -9.664 -9.586 -9.511 -9.444 -9.380 -9.319 -9.260 -9.204 -9.150 -9.097 -9.047 -8.998 -8.951 -8.915 -8.880 -8.846 -8.812 -8.779 -8.747 -8.716 -8.686 -8.656 -8.626 -8.595 -8.565 -8.535 -8.506 -8.477 -8.449 -8.422 -8.395 -8.368 -8.342 -8.331 -8.320 -8.309 -8.298 -8.287 -8.276 -8.266 -8.255 -8.245 -8.234 -8.200 -8.166 -8.133 -8.101 -8.070 -8.039 -8.009 -7.980 -7.951 -7.923 -7.902 -7.882 -7.862 -7.842 -7.823 -7.804 -7.785 -7.766 -7.748 -7.730 -7.720 -7.710 -7.700 -7.691 -7.681 -7.672 -7.663 -7.653 -7.644 -7.635 -7.624 -7.614 -7.604 -7.594 -7.584 -7.574 -7.564 -7.554 -7.545 -7.535 -7.545 -7.555 -7.565 -7.575 -7.585 -7.596 -7.606 -7.616 -7.627 -7.638 -7.644 -7.650 -7.656 -7.662 -7.668 -7.674 -7.680 -7.687 -7.693 -7.699 -7.704 -7.709 -7.714 -7.719 -7.723 -7.728 -7.733 -7.738 -7.743 -7.748 -7.752 -7.756 -7.759 -7.763 -7.767 -7.771 -7.774 -7.778 -7.782 -7.786 -7.793 -7.801 -7.808 -7.815 -7.823 -7.830 -7.838 -7.846 -7.853 -7.861 -7.871 -7.881 -7.891 -7.902 -7.912 -7.923 -7.933 -7.944 -7.955 -7.965 -7.974 -7.983 -7.993 -8.002 -8.011 -8.020 -8.030 -8.039 -8.049 -8.058 -8.068 -8.078 -8.088 -8.097 -8.107 -8.117 -8.127 -8.137 -8.148 -8.158 -8.171 -8.184 -8.197 -8.210 -8.223 -8.237 -8.250 -8.264 -8.278 -8.292 -8.305 -8.319 -8.333 -8.347 -8.361 -8.376 -8.390 -8.405 -8.419 -8.434 -8.462 -8.490 -8.519 -8.548 -8.578 -8.609 -8.640 -8.673 -8.705 -8.739 -8.769 -8.800 -8.832 -8.865 -8.898 -8.932 -8.967 -9.003 -9.040 -9.078 -9.098 -9.119 -9.140 -9.161 -9.183 -9.205 -9.227 -9.250 -9.273 -9.296 -9.326 -9.356 -9.386 -9.417 -9.449 -9.482 -9.515 -9.550 -9.585 -9.620 -9.636 -9.653 -9.669 -9.686 -9.702 -9.719 -9.736 -9.754 -9.771 -9.789 -9.815 -9.841 -9.868 -9.895 -9.923 -9.951 -9.980 -10.009 -10.039 GEOMETRIC 250 -1 205 Exon 2 DEFINED 0 249 -12.731 -12.475 -12.258 -12.069 -11.902 -11.753 -11.617 -11.493 -11.379 -11.274 -11.175 -10.985 -10.818 -10.668 -10.532 -10.407 -10.293 -10.187 -10.088 -9.996 -9.909 -9.786 -9.672 -9.567 -9.469 -9.377 -9.291 -9.209 -9.132 -9.059 -8.990 -8.905 -8.825 -8.750 -8.678 -8.610 -8.544 -8.482 -8.422 -8.364 -8.309 -8.249 -8.192 -8.137 -8.083 -8.032 -7.983 -7.935 -7.888 -7.843 -7.800 -7.758 -7.717 -7.678 -7.639 -7.601 -7.565 -7.529 -7.494 -7.460 -7.427 -7.399 -7.372 -7.345 -7.318 -7.293 -7.267 -7.242 -7.218 -7.193 -7.170 -7.153 -7.137 -7.121 -7.105 -7.089 -7.073 -7.058 -7.042 -7.027 -7.012 -7.006 -7.000 -6.994 -6.989 -6.983 -6.977 -6.971 -6.965 -6.960 -6.954 -6.954 -6.953 -6.953 -6.953 -6.952 -6.952 -6.952 -6.951 -6.951 -6.950 -6.959 -6.968 -6.977 -6.985 -6.994 -7.003 -7.012 -7.021 -7.030 -7.040 -7.052 -7.065 -7.078 -7.091 -7.104 -7.117 -7.130 -7.144 -7.157 -7.171 -7.184 -7.198 -7.212 -7.226 -7.240 -7.254 -7.268 -7.283 -7.297 -7.312 -7.330 -7.348 -7.366 -7.384 -7.403 -7.422 -7.441 -7.460 -7.480 -7.500 -7.518 -7.537 -7.556 -7.575 -7.595 -7.615 -7.635 -7.655 -7.676 -7.697 -7.719 -7.741 -7.763 -7.785 -7.808 -7.832 -7.856 -7.880 -7.904 -7.929 -7.956 -7.983 -8.010 -8.038 -8.067 -8.096 -8.126 -8.156 -8.187 -8.219 -8.247 -8.277 -8.307 -8.337 -8.368 -8.400 -8.433 -8.466 -8.500 -8.535 -8.567 -8.599 -8.632 -8.665 -8.700 -8.735 -8.771 -8.808 -8.846 -8.886 -8.919 -8.954 -8.989 -9.026 -9.063 -9.101 -9.140 -9.181 -9.222 -9.265 -9.301 -9.339 -9.377 -9.416 -9.457 -9.498 -9.541 -9.585 -9.631 -9.678 -9.715 -9.754 -9.793 -9.834 -9.876 -9.919 -9.964 -10.009 -10.057 -10.106 -10.145 -10.186 -10.228 -10.271 -10.315 -10.360 -10.408 -10.456 -10.507 -10.559 -10.593 -10.627 -10.662 -10.698 -10.735 -10.773 -10.812 -10.852 -10.894 -10.936 -10.949 -10.962 -10.976 -10.989 -11.003 -11.016 -11.030 -11.044 -11.058 GEOMETRIC 250 -1 121 Inter 1 GEOMETRIC 0 -1 5000 Intron 1 GEOMETRIC 0 -1 1373 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.350 -0.308 -0.034 -0.088 0.368 0.218 -1.914 0.357 -0.008 -0.126 0.106 0.019 -0.361 -0.463 0.322 0.317 -0.216 -0.143 0.331 -0.036 0.075 0.246 -2.257 0.634 -0.858 0.025 0.292 0.271 -0.745 0.035 0.324 0.172 0.162 -0.380 0.300 -0.182 -0.015 0.439 -1.932 0.477 0.077 -0.116 0.159 -0.143 -0.752 0.064 0.341 0.130 0.172 -0.230 -0.080 0.104 0.026 0.249 -2.751 0.718 -0.163 -0.236 0.161 0.189 -0.563 0.069 -0.186 0.480 I-36 LUT 3 2 4 0 0.000 0.245 -0.384 0.171 -0.116 0.462 -0.064 -1.746 0.452 0.040 -0.015 0.061 -0.090 -0.420 -0.265 0.259 0.291 -0.443 -0.021 0.425 -0.095 0.151 0.307 -2.095 0.504 -0.329 0.060 0.233 -0.021 -0.844 -0.046 0.465 0.130 0.226 -0.129 0.186 -0.362 -0.058 0.425 -2.500 0.604 0.126 0.048 0.048 -0.250 -0.488 -0.163 0.345 0.167 0.178 -0.207 -0.103 0.099 0.030 0.276 -2.297 0.646 -0.165 -0.179 0.038 0.261 -0.731 0.017 -0.115 0.548 I-35 LUT 3 2 4 0 0.000 0.161 -0.286 0.075 0.012 0.303 0.251 -1.697 0.342 0.034 -0.019 0.065 -0.085 -0.413 -0.254 0.233 0.305 -0.566 -0.090 0.476 -0.009 0.155 0.251 -2.298 0.579 -0.498 -0.120 0.288 0.202 -0.774 -0.041 0.408 0.158 -0.031 -0.057 0.331 -0.319 0.094 0.355 -2.013 0.491 0.161 0.043 0.083 -0.336 -0.515 -0.019 0.260 0.158 0.383 -0.121 -0.322 -0.034 0.153 0.241 -2.903 0.653 -0.082 -0.260 -0.003 0.289 -0.712 -0.073 0.013 0.516 I-34 LUT 3 2 4 0 0.000 0.392 -0.358 -0.138 -0.002 0.167 0.131 -1.985 0.613 -0.023 -0.045 0.077 -0.012 -0.291 -0.307 0.206 0.288 -0.404 -0.120 0.337 0.085 0.202 0.109 -1.782 0.566 -0.245 -0.013 0.209 0.013 -0.849 0.006 0.412 0.151 0.197 -0.066 0.136 -0.323 0.022 0.201 -2.139 0.686 -0.026 -0.120 0.152 -0.020 -0.483 -0.191 0.378 0.149 0.504 -0.449 -0.240 0.004 0.043 0.221 -2.304 0.680 -0.005 -0.185 -0.082 0.238 -0.680 0.078 -0.112 0.480 I-33 LUT 3 2 4 0 0.000 0.331 -0.222 -0.106 -0.065 0.384 0.100 -2.163 0.485 0.089 -0.043 -0.073 0.022 -0.162 -0.227 0.166 0.177 -0.468 -0.077 0.275 0.162 0.189 0.144 -1.888 0.570 -0.534 -0.260 0.307 0.307 -0.995 0.066 0.426 0.148 0.055 -0.067 0.289 -0.350 -0.036 0.332 -2.297 0.644 0.057 0.086 -0.066 -0.085 -0.623 -0.093 0.312 0.229 0.411 -0.369 -0.259 0.084 0.063 0.019 -2.489 0.819 0.019 -0.236 0.002 0.184 -0.613 -0.032 -0.146 0.550 I-32 LUT 3 2 4 0 0.000 0.116 -0.102 -0.054 0.031 0.339 0.101 -2.416 0.561 -0.001 -0.107 -0.019 0.118 -0.426 -0.394 0.212 0.418 -0.494 0.035 0.290 0.061 0.084 0.176 -2.020 0.645 -0.585 0.078 -0.082 0.415 -0.981 0.139 0.342 0.170 0.036 -0.008 0.121 -0.164 -0.019 0.218 -2.391 0.730 -0.025 0.132 -0.099 -0.018 -0.558 -0.114 0.397 0.111 0.479 -0.470 -0.450 0.205 0.177 0.190 -3.049 0.685 0.211 -0.245 -0.304 0.249 -0.481 -0.024 -0.250 0.545 I-31 LUT 3 2 4 0 0.000 0.280 -0.185 -0.205 0.055 0.293 0.142 -2.368 0.563 -0.019 -0.044 -0.212 0.239 -0.299 -0.412 0.303 0.265 -0.575 0.074 0.216 0.156 -0.031 0.138 -2.348 0.787 -0.516 -0.194 0.069 0.462 -0.737 0.023 0.308 0.197 0.197 0.065 -0.061 -0.235 0.002 0.413 -2.182 0.533 0.057 0.029 -0.113 0.022 -0.531 -0.122 0.342 0.165 0.480 -0.301 -0.562 0.158 0.030 0.090 -2.865 0.830 0.161 -0.355 -0.195 0.295 -0.395 -0.073 -0.141 0.467 I-30 LUT 3 2 4 0 0.000 0.152 -0.132 -0.202 0.147 0.415 -0.014 -2.184 0.543 -0.028 0.011 -0.145 0.146 -0.479 -0.495 0.310 0.415 -0.443 0.164 0.115 0.085 0.128 0.156 -2.284 0.667 -1.072 0.023 0.276 0.376 -0.869 0.111 0.396 0.079 -0.054 -0.013 0.000 0.065 0.017 0.312 -2.598 0.662 -0.221 0.115 0.057 0.027 -0.678 -0.121 0.369 0.220 0.611 -0.324 -0.423 -0.108 0.110 0.105 -2.918 0.777 0.150 -0.238 -0.219 0.243 -0.600 0.013 -0.315 0.611 I-29 LUT 3 2 4 0 0.000 0.240 0.037 -0.347 0.010 0.128 0.184 -2.048 0.613 -0.091 0.160 -0.379 0.233 -0.413 -0.267 0.203 0.341 -0.368 -0.001 0.163 0.145 -0.063 0.265 -2.369 0.720 -0.626 0.160 0.071 0.244 -0.872 0.224 0.288 0.091 -0.049 0.072 0.058 -0.087 -0.009 0.192 -1.965 0.685 -0.060 0.024 -0.183 0.193 -0.489 -0.080 0.238 0.217 0.690 -0.254 -0.757 -0.064 0.248 0.082 -3.142 0.714 0.202 -0.361 -0.306 0.336 -0.481 -0.069 -0.263 0.582 I-28 LUT 3 2 4 0 0.000 0.167 -0.127 -0.260 0.172 0.338 0.109 -1.974 0.488 -0.156 -0.040 0.113 0.068 -0.374 -0.374 0.221 0.369 -0.399 0.133 -0.100 0.277 -0.152 0.256 -2.324 0.770 -0.512 -0.076 0.181 0.283 -0.645 0.127 0.225 0.137 0.044 0.050 -0.066 -0.031 -0.191 0.322 -2.217 0.731 -0.045 0.023 -0.028 0.048 -0.410 -0.094 0.165 0.250 0.680 -0.312 -0.801 0.026 0.147 0.064 -2.932 0.779 0.282 -0.416 -0.367 0.333 -0.316 -0.039 -0.426 0.564 I-27 LUT 3 2 4 0 0.000 0.068 -0.023 -0.372 0.257 0.138 0.273 -2.302 0.574 -0.111 0.059 -0.445 0.376 -0.455 -0.143 0.108 0.365 -0.540 0.295 -0.077 0.186 0.070 0.152 -2.464 0.730 -0.286 -0.089 0.029 0.287 -0.861 0.191 0.246 0.166 -0.142 0.312 -0.214 -0.014 -0.232 0.193 -2.615 0.882 -0.051 -0.154 -0.119 0.281 -0.520 -0.011 0.233 0.183 0.838 -0.618 -0.838 0.003 0.263 -0.006 -3.126 0.757 0.261 -0.285 -0.518 0.359 -0.285 -0.101 -0.355 0.551 I-26 LUT 3 2 4 0 0.000 0.163 0.007 -0.426 0.178 0.064 0.123 -1.898 0.676 0.006 0.100 -0.329 0.175 -0.485 -0.222 0.183 0.371 -0.514 0.238 -0.257 0.359 -0.185 0.200 -2.215 0.812 -0.550 0.227 -0.657 0.597 -0.872 0.271 0.162 0.174 -0.276 0.228 -0.057 0.058 -0.408 0.206 -2.787 0.962 -0.361 0.130 -0.277 0.381 -0.456 -0.384 0.269 0.379 0.827 -0.424 -0.888 -0.087 0.167 0.079 -3.202 0.775 0.440 -0.283 -0.598 0.215 -0.317 -0.173 -0.433 0.651 I-25 LUT 3 2 4 0 0.000 0.141 0.218 -0.603 0.106 0.086 -0.046 -1.829 0.756 -0.460 0.238 -0.347 0.388 -0.435 -0.399 0.157 0.472 -0.400 0.131 -0.126 0.299 -0.162 0.097 -2.541 0.899 -0.555 0.200 -0.197 0.376 -0.835 0.156 0.254 0.179 -0.076 0.200 -0.342 0.155 -0.392 0.308 -2.692 0.884 -0.386 0.136 -0.263 0.382 -0.381 -0.187 0.201 0.269 0.897 -0.512 -1.093 -0.047 0.296 -0.034 -3.163 0.752 0.424 -0.410 -0.693 0.364 -0.295 -0.221 -0.463 0.679 I-24 LUT 3 2 4 0 0.000 0.135 -0.101 -0.483 0.326 0.032 0.100 -2.233 0.760 -0.265 0.400 -0.613 0.257 -0.627 -0.260 0.210 0.444 -0.479 0.355 -0.182 0.166 -0.246 0.156 -2.613 0.910 -0.554 0.016 -0.298 0.580 -0.698 0.127 0.206 0.187 -0.442 0.520 -0.519 0.179 -0.292 0.306 -2.816 0.852 -0.184 0.168 -0.500 0.366 -0.681 -0.140 0.349 0.257 0.869 -0.338 -1.131 -0.112 0.329 -0.184 -2.926 0.793 0.543 -0.351 -0.874 0.279 -0.488 -0.058 -0.437 0.667 I-23 LUT 3 2 4 0 0.000 -0.013 0.160 -0.811 0.403 0.038 0.233 -2.103 0.646 -0.108 0.186 -0.551 0.324 -0.447 -0.230 0.116 0.411 -0.640 0.273 -0.295 0.416 -0.175 0.233 -2.366 0.803 -0.482 -0.092 0.245 0.215 -0.813 0.146 0.138 0.291 0.014 0.369 -0.518 0.000 -0.326 0.212 -2.839 0.929 -0.423 0.221 -0.044 0.162 -0.640 0.147 0.235 0.104 0.944 -0.612 -1.311 0.026 0.300 -0.060 -3.060 0.757 0.462 -0.474 -0.699 0.364 -0.566 -0.024 -0.486 0.702 I-22 LUT 3 2 4 0 0.000 0.008 0.141 -0.530 0.262 0.024 0.246 -2.080 0.642 -0.327 0.174 -0.351 0.368 -0.672 -0.168 0.200 0.415 -0.632 0.179 -0.236 0.458 -0.253 0.258 -2.051 0.786 -0.883 -0.008 -0.468 0.799 -1.045 0.167 0.276 0.241 -0.433 0.602 -0.506 0.054 -0.336 0.288 -2.623 0.868 -0.281 0.220 -0.355 0.299 -1.024 0.010 0.212 0.425 0.817 -0.406 -1.397 0.142 0.002 -0.027 -3.719 0.957 0.442 -0.391 -0.927 0.436 -0.710 0.064 -0.591 0.748 I-21 LUT 3 2 4 0 0.000 -0.205 0.289 -0.573 0.308 0.008 0.275 -2.189 0.646 -0.327 0.444 -0.562 0.220 -0.697 -0.093 0.016 0.520 -0.547 0.183 -0.216 0.400 -0.182 0.217 -2.182 0.795 -0.252 -0.008 -0.252 0.407 -1.210 0.250 0.200 0.299 -0.456 0.566 -0.561 0.154 -0.231 0.170 -2.621 0.895 -0.370 0.053 -0.173 0.381 -0.964 -0.023 0.221 0.420 0.717 -0.261 -1.095 0.075 -0.038 0.109 -3.300 0.885 0.221 -0.439 -0.621 0.533 -0.891 -0.018 -0.513 0.826 I-20 LUT 3 2 4 0 0.000 -0.021 0.194 -0.689 0.322 -0.106 0.365 -1.970 0.611 -0.339 0.186 -0.327 0.350 -0.678 -0.221 0.161 0.483 -0.783 0.236 -0.276 0.501 -0.475 0.370 -2.381 0.845 -0.673 -0.072 -0.444 0.754 -1.454 0.169 0.194 0.451 -0.638 0.594 -0.585 0.241 -0.409 0.235 -2.603 0.930 -0.810 0.232 -0.233 0.490 -1.149 0.187 0.094 0.426 0.723 -0.161 -1.608 0.172 -0.308 0.025 -3.289 1.051 0.059 -0.416 -0.729 0.683 -1.106 0.013 -0.572 0.890 I-19 LUT 3 2 4 0 0.000 -0.034 0.219 -0.756 0.342 -0.021 0.312 -1.944 0.598 -0.226 0.497 -0.691 0.155 -0.745 -0.114 0.132 0.469 -0.840 0.272 -0.507 0.614 -0.304 0.324 -2.360 0.802 -0.425 -0.697 -0.269 0.855 -1.609 0.362 0.103 0.393 -0.419 0.305 -0.487 0.383 -0.807 0.303 -2.057 0.967 -0.756 0.018 -0.123 0.562 -1.098 -0.142 0.293 0.487 0.330 -0.199 -1.373 0.571 -0.393 0.107 -3.388 1.047 -0.118 -0.232 -0.902 0.759 -1.381 0.067 -0.493 0.893 I-18 LUT 3 2 4 0 0.000 -0.034 0.189 -0.918 0.438 -0.078 0.211 -1.590 0.644 -0.352 0.266 -0.549 0.412 -0.903 -0.047 0.169 0.458 -0.911 0.322 -0.524 0.607 -0.514 0.305 -2.520 0.918 -1.052 -0.244 -0.210 0.855 -1.918 0.340 0.004 0.553 -0.382 0.533 -0.639 0.194 -0.574 0.342 -2.395 0.903 -0.592 0.230 -0.177 0.355 -1.595 0.123 0.091 0.600 0.240 -0.093 -1.836 0.679 -0.810 0.242 -3.577 1.113 -0.567 -0.197 -0.835 0.920 -1.498 0.067 -0.549 0.937 I-17 LUT 3 2 4 0 0.000 0.140 -0.089 -1.005 0.546 -0.288 0.228 -1.954 0.809 -0.509 0.423 -0.917 0.513 -1.218 -0.080 0.136 0.609 -0.776 0.205 -0.776 0.748 -0.835 0.351 -2.420 0.984 -0.719 -0.533 -0.368 0.946 -1.898 0.310 0.041 0.549 -0.474 0.441 -0.438 0.244 -0.719 0.471 -2.549 0.876 -0.626 0.231 -0.165 0.363 -1.373 0.152 0.094 0.521 0.074 -0.046 -1.945 0.782 -1.073 0.246 -3.007 1.147 -0.946 -0.152 -0.810 1.008 -1.668 0.031 -0.554 0.987 I-16 LUT 3 2 4 0 0.000 -0.168 0.285 -1.290 0.568 -0.644 0.483 -2.243 0.809 -0.284 0.221 -0.595 0.434 -1.032 -0.249 -0.019 0.751 -1.146 0.400 -1.225 0.849 -0.955 0.350 -2.185 0.993 -1.381 0.178 -1.044 1.000 -1.982 0.308 0.023 0.578 -0.494 0.323 -1.012 0.626 -0.483 0.243 -2.943 0.979 -0.348 -0.030 -0.139 0.408 -1.718 0.060 0.217 0.577 0.003 -0.330 -1.852 0.945 -1.128 0.220 -3.666 1.201 -0.954 -0.112 -0.573 0.916 -1.530 0.040 -0.556 0.960 I-15 LUT 3 2 4 0 0.000 0.174 0.148 -2.022 0.602 -0.433 0.393 -2.822 0.852 -0.550 0.048 -0.253 0.530 -1.443 0.063 -0.080 0.715 -0.700 0.276 -1.448 0.853 -1.014 0.350 -2.575 1.044 -1.313 -0.191 -0.494 1.009 -2.456 0.285 0.013 0.670 -0.469 0.263 -1.538 0.794 -1.084 0.329 -2.590 1.075 -0.804 0.310 -0.852 0.708 -1.603 0.246 0.020 0.556 -0.248 -0.094 -2.558 1.036 -1.422 0.346 -3.592 1.184 -1.660 0.058 -0.802 1.049 -1.557 0.149 -0.562 0.906 I-14 LUT 3 2 4 0 0.000 -0.192 0.324 -2.448 0.757 -0.845 0.496 -2.615 0.903 -1.280 0.556 -0.840 0.640 -1.293 -0.023 -0.253 0.823 -0.724 0.259 -2.256 0.992 -1.193 0.416 -2.769 1.058 -2.373 0.312 -0.425 0.864 -2.350 0.375 -0.083 0.644 -0.358 0.373 -1.521 0.657 -1.027 0.276 -2.331 1.070 -1.186 0.077 -0.420 0.814 -1.817 0.088 0.065 0.684 -0.561 -0.103 -3.261 1.193 -1.404 0.174 -3.320 1.259 -1.283 -0.059 -0.933 1.074 -1.857 0.131 -0.590 0.974 I-13 LUT 3 2 4 0 0.000 0.140 0.302 -3.445 0.654 -0.735 0.379 -2.532 0.946 -0.755 0.304 -0.639 0.614 -1.923 -0.053 -0.295 0.969 -1.193 0.392 -2.476 1.050 -1.249 0.441 -2.901 1.062 -1.737 0.138 -1.074 1.087 -2.874 0.334 -0.133 0.758 -0.170 0.163 -2.354 0.844 -1.437 0.219 -3.258 1.240 -1.206 0.074 -0.248 0.741 -1.880 0.106 0.062 0.686 -0.178 -0.043 -4.664 1.075 -1.688 0.085 -3.654 1.350 -1.591 -0.055 -0.952 1.130 -2.105 0.236 -0.685 0.976 I-12 LUT 3 2 4 0 0.000 -0.406 0.269 -3.238 0.951 -0.949 0.280 -2.485 1.063 -1.202 0.383 -1.524 0.936 -1.724 -0.235 -0.387 1.058 -1.381 0.158 -2.637 1.226 -1.228 0.383 -2.924 1.096 -1.541 -0.046 -0.913 1.109 -2.666 0.279 -0.315 0.868 -0.284 0.074 -2.570 0.969 -1.668 0.323 -3.739 1.239 -1.493 0.396 -0.724 0.785 -2.216 0.091 -0.234 0.902 -0.504 -0.139 -5.109 1.237 -1.814 0.186 -3.499 1.316 -1.567 -0.018 -1.106 1.144 -1.861 0.128 -0.725 1.019 I-11 LUT 3 2 4 0 0.000 0.027 0.000 -4.143 0.945 -0.937 0.263 -3.322 1.123 -2.209 0.598 -1.209 0.878 -2.149 0.051 -0.646 1.070 -1.198 0.205 -4.105 1.235 -1.378 0.145 -2.738 1.238 -2.404 -0.234 -0.741 1.240 -3.006 0.278 -0.429 0.941 -0.459 -0.138 -2.652 1.140 -1.976 -0.063 -3.363 1.428 -1.573 -0.059 -0.540 1.011 -2.028 -0.055 -0.651 1.108 -0.490 -0.182 -6.883 1.262 -1.842 0.112 -3.788 1.361 -1.769 -0.024 -1.202 1.194 -2.183 0.144 -0.766 1.061 I-10 LUT 3 2 4 0 0.000 -0.256 0.360 -4.748 0.881 -0.882 0.167 -3.723 1.175 -1.087 -1.087 -1.087 1.372 -1.887 0.120 -0.682 1.014 -1.341 0.547 -4.966 1.079 -1.405 0.287 -2.849 1.178 -2.273 -0.051 -1.158 1.251 -3.014 0.470 -0.582 0.866 -0.928 0.328 -4.098 1.111 -1.948 0.122 -3.048 1.340 -1.361 -0.120 -0.535 1.000 -2.217 0.135 -0.242 0.881 -0.581 0.010 -5.690 1.205 -2.009 0.141 -3.861 1.367 -1.821 -0.212 -1.105 1.256 -1.984 0.144 -0.700 1.019 I-9 LUT 3 2 4 0 0.000 0.059 0.059 -3.401 0.866 -0.736 0.431 -3.464 0.971 0.415 -0.170 -1.170 0.415 -1.606 0.159 -0.469 0.874 -0.594 0.494 -5.401 0.930 -1.222 0.539 -3.118 1.002 -1.241 0.206 -0.700 0.854 -2.584 0.438 -0.325 0.748 -0.608 0.426 -2.678 0.883 -1.574 0.616 -2.873 0.996 -0.941 0.085 -0.841 0.896 -2.040 0.381 -0.161 0.642 -0.450 0.078 -5.877 1.135 -1.803 0.186 -3.928 1.328 -1.653 -0.552 -1.336 1.381 -2.030 0.350 -0.537 0.841 I-8 LUT 3 2 4 0 0.000 -0.336 0.394 -5.693 0.906 -0.722 0.492 -2.907 0.891 0.621 0.621 -1.700 -0.700 -1.502 0.584 -0.987 0.717 -0.596 0.536 -6.683 0.909 -0.758 0.504 -2.888 0.892 -0.751 -0.135 -0.658 0.896 -2.537 0.669 -0.506 0.617 -0.415 0.459 -2.737 0.787 -1.248 0.616 -3.418 0.966 -1.076 0.207 -0.278 0.629 -2.016 0.545 -0.343 0.590 -0.516 0.046 -6.943 1.176 -1.496 0.448 -4.064 1.152 -1.513 -0.137 -1.189 1.203 -1.651 0.485 -0.779 0.765 I-7 LUT 3 2 4 0 0.000 0.163 0.231 -4.229 0.725 -0.490 0.636 -3.055 0.691 0.415 -0.170 -1.170 0.415 -1.295 0.083 -0.858 0.986 -0.792 0.580 -5.529 0.931 -0.785 0.556 -3.364 0.889 -1.335 -0.151 -0.794 1.088 -2.187 0.580 -0.522 0.668 -0.410 0.268 -3.539 0.969 -1.157 0.792 -2.830 0.748 -0.838 0.267 -0.359 0.544 -1.645 0.360 -0.202 0.611 -0.115 0.227 -7.058 0.925 -1.498 0.481 -3.820 1.124 -1.215 0.126 -0.971 0.977 -1.782 0.489 -0.875 0.816 I-6 LUT 3 2 4 0 0.000 -0.256 0.176 -5.234 1.005 -1.278 0.820 -4.337 0.826 0.541 0.126 0.126 -1.459 -2.366 0.354 -1.168 1.058 -0.874 0.252 -5.732 1.166 -1.296 0.720 -3.741 0.904 -2.621 -0.135 -1.036 1.286 -2.716 0.669 -1.172 0.859 -0.697 0.030 -2.095 1.089 -1.745 1.056 -3.511 0.618 -1.145 0.324 -0.845 0.798 -2.420 0.490 -0.971 0.925 -0.725 -0.025 -6.047 1.261 -1.710 0.542 -4.184 1.127 -1.543 -0.068 -1.543 1.239 -2.287 0.426 -1.436 1.058 I-5 LUT 3 2 4 0 0.000 0.092 0.212 -4.432 0.791 -1.016 0.480 -2.823 0.978 -0.585 -0.170 0.415 0.152 -3.270 -0.800 -1.685 1.590 -0.618 0.512 -3.770 0.887 -1.284 0.681 -3.349 0.917 -1.322 -0.244 -0.585 1.063 -3.096 0.001 -1.391 1.323 0.203 0.091 -3.534 0.764 -1.527 0.473 -3.807 1.133 -0.459 0.257 -0.512 0.461 -3.099 -0.680 -1.691 1.560 -0.200 0.220 -3.824 0.922 -1.645 0.793 -4.299 0.924 -0.704 0.047 -0.856 0.848 -2.480 -0.057 -1.429 1.315 I-4 LUT 3 2 4 0 0.000 0.995 0.171 -1.869 -0.717 0.617 0.202 -1.383 -0.101 -0.392 -1.392 0.608 0.415 -0.426 -0.127 0.140 0.308 0.612 0.399 -3.360 0.079 0.530 0.278 -1.653 0.036 -0.415 0.147 0.515 -0.485 -0.790 0.094 0.585 -0.227 0.536 -0.193 0.263 -1.074 0.394 0.426 -2.497 0.222 0.522 0.037 0.141 -1.198 -0.836 -0.003 0.373 0.197 1.072 0.005 -2.883 -0.397 0.222 0.589 -2.264 0.165 0.253 -0.303 0.384 -0.530 -0.875 0.062 0.024 0.479 I-3 LUT 3 2 4 0 0.000 -1.928 1.398 -6.098 0.121 -3.028 1.364 -5.488 0.358 -3.476 1.734 -4.476 -0.891 -2.300 1.219 -4.415 0.508 -2.190 1.673 -8.665 -0.764 -2.442 1.315 -6.652 0.398 -3.205 1.501 -6.375 0.068 -2.747 1.295 -6.332 0.469 -1.599 1.633 -6.243 -0.851 -2.107 1.469 -5.807 -0.026 -2.477 1.661 -6.384 -0.629 -1.975 1.165 -3.435 0.496 -1.412 1.491 -8.343 -0.304 -2.662 1.268 -7.632 0.515 -2.632 1.504 -6.078 -0.018 -2.293 1.305 -6.625 0.396 A LUT 3 2 4 0 0.000 1.984 -6.087 -6.087 -6.087 1.998 -9.453 -9.453 -9.453 0.678 -0.322 -0.322 -0.322 1.994 -7.437 -7.437 -7.437 1.977 -5.585 -5.585 -5.585 1.998 -9.461 -9.461 -9.461 1.485 -1.322 -1.322 -1.322 1.997 -8.598 -8.598 -8.598 1.968 -5.077 -5.077 -5.077 1.998 -9.281 -9.281 -9.281 1.621 -1.700 -1.700 -1.700 1.995 -7.679 -7.679 -7.679 1.980 -5.735 -5.735 -5.735 1.998 -9.422 -9.422 -9.422 1.737 -2.170 -2.170 -2.170 1.997 -8.557 -8.557 -8.557 G LUT 3 2 4 0 0.000 -7.644 -7.644 1.995 -7.644 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.405 -11.405 2.000 -11.405 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -3.087 -3.087 1.867 -3.087 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -10.154 -10.154 1.999 -10.154 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.039 -0.842 1.015 -1.161 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.026 -0.624 -0.303 0.606 -0.135 0.097 -1.607 0.758 0.102 -0.418 -0.526 0.569 -1.007 -0.751 0.607 0.470 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.521 -0.165 -0.586 0.010 0.383 0.129 -1.400 0.291 0.163 0.056 -0.175 -0.066 -0.603 -0.046 0.370 0.111 0.160 0.046 -0.870 0.381 0.312 -0.012 -1.417 0.478 -0.392 0.110 0.368 -0.205 -0.749 -0.076 0.535 0.010 0.425 -0.251 -0.097 -0.181 0.240 0.039 -1.680 0.565 0.335 0.017 -0.418 -0.032 -0.415 -0.348 0.534 0.024 -0.710 0.731 -2.380 0.620 0.211 0.057 -1.508 0.537 0.106 -0.261 0.246 -0.146 -0.861 0.212 -0.134 0.464 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.239 -0.156 0.565 -0.367 0.300 0.404 -1.322 0.064 0.084 0.131 -0.018 -0.222 -0.774 0.289 0.335 -0.103 -0.378 -0.335 0.850 -0.655 0.314 0.339 -1.665 0.234 0.063 0.102 0.292 -0.605 -1.170 -0.050 0.847 -0.339 0.179 -0.330 0.360 -0.342 0.007 0.614 -1.813 0.239 0.286 0.383 -0.208 -0.712 -0.887 0.006 0.765 -0.403 . 1.146 . 0.838 -0.023 0.469 -1.863 0.440 . 0.245 0.412 0.569 -1.000 0.446 -0.398 0.463 -0.213 0.075 0.602 -0.822 0.190 0.509 -0.863 -0.175 -0.237 0.630 -0.441 -0.205 -1.781 0.697 0.260 -0.167 -0.843 -0.042 0.934 -0.835 0.169 0.391 -1.122 0.144 -0.236 0.318 0.370 -0.709 -1.647 0.127 1.032 -0.881 -0.605 0.146 0.647 -0.579 -0.317 0.838 -0.775 -0.278 -0.357 0.598 0.280 -1.024 -1.769 0.091 1.094 -0.978 . 1.291 . 0.636 -0.168 0.559 -0.929 0.153 . 0.536 0.541 0.131 -1.548 0.747 -0.132 0.094 -0.084 -0.400 0.848 -1.005 0.153 0.574 -1.007 -0.150 -0.127 0.343 0.127 -0.468 -1.624 0.509 0.515 -0.280 -0.752 -0.350 1.089 -1.019 0.082 0.459 -1.126 0.149 -0.405 0.406 0.470 -0.904 -1.500 -0.122 1.147 -0.962 -0.117 -0.287 0.741 -0.769 -0.256 0.715 -1.252 0.140 -0.239 0.702 -0.186 -0.628 -1.448 -0.064 1.055 -0.740 . 1.259 . 0.684 -0.147 0.530 -1.214 0.289 . 0.282 0.614 0.327 -1.445 0.592 -0.274 0.377 0.290 -0.311 0.320 -0.468 0.223 0.513 -1.487 0.069 -0.260 0.541 -0.378 -0.088 -1.063 0.427 0.026 0.213 -0.578 -0.183 0.880 -0.715 0.130 0.353 -1.642 0.387 0.045 0.067 0.338 -0.606 -1.302 0.155 0.769 -0.363 -0.004 -0.049 0.376 -0.438 -0.218 0.717 -1.836 0.282 0.039 0.420 0.041 -0.724 -1.289 0.176 0.850 -0.603 . 1.196 . 0.774 -0.103 0.503 -1.696 0.426 . 0.476 0.493 0.265 -1.051 0.389 -0.002 0.274 -0.075 -0.469 0.626 -0.348 0.277 0.314 -1.319 0.195 0.171 0.009 -0.087 -0.110 -0.796 0.073 0.454 0.004 -0.590 -0.239 0.957 -0.871 0.191 0.322 -1.454 0.314 -0.456 0.122 0.636 -0.669 -1.407 -0.144 1.026 -0.554 0.011 -0.259 0.519 -0.466 0.002 0.614 -1.514 0.161 0.313 0.199 0.102 -0.898 -1.142 -0.089 0.888 -0.403 . 1.084 . 0.910 -0.093 0.523 -1.690 0.396 . 0.096 0.809 0.238 -1.004 0.303 -0.303 0.543 -0.170 -0.063 0.723 -0.991 0.013 0.664 -0.841 -0.237 -0.700 0.726 -0.211 -0.207 -1.901 0.711 0.376 -0.327 -0.941 -0.189 1.097 -1.112 0.433 -0.175 -0.648 0.171 -0.271 0.149 0.675 -1.103 -1.781 0.008 1.132 -0.968 -0.791 0.038 0.907 -0.944 -0.437 0.767 -0.498 -0.233 -0.386 0.516 0.412 -1.075 -1.761 0.033 1.142 -1.075 . 1.299 . 0.622 -0.235 0.649 -0.980 0.104 . 0.570 0.567 0.047 -1.702 0.784 -0.041 -0.002 -0.297 -0.478 0.947 -0.889 -0.139 0.655 -0.739 -0.124 -0.338 0.440 0.103 -0.362 -1.370 0.121 0.684 -0.122 -1.186 -0.102 1.140 -1.237 -0.267 0.489 -0.246 -0.118 -0.807 0.675 0.479 -1.191 -2.209 0.017 1.266 -1.443 -0.499 -0.154 0.781 -0.567 -0.603 0.710 -0.271 -0.190 -0.288 0.601 0.095 -0.747 -1.682 -0.071 1.206 -1.220 . 1.282 . 0.650 -0.431 0.683 -0.661 0.029 . 0.314 0.783 0.052 -1.327 0.648 -0.074 0.117 0.168 -0.318 0.524 -0.654 0.260 0.407 -1.491 0.165 -0.261 0.520 -0.245 -0.171 -1.011 0.383 0.243 0.024 -0.756 -0.207 0.974 -0.793 0.288 0.059 -1.326 0.421 0.125 -0.321 0.651 -0.894 -1.329 -0.098 1.018 -0.640 -0.124 -0.200 0.585 -0.491 -0.006 0.580 -1.523 0.216 0.129 0.258 0.096 -0.639 -1.257 -0.010 0.963 -0.647 . 1.272 . 0.664 -0.019 0.543 -1.692 0.318 . 0.353 0.570 0.308 -1.221 0.464 0.232 0.024 0.042 -0.230 0.446 -0.404 0.274 0.456 -1.555 0.109 0.120 0.296 -0.161 -0.339 -0.980 0.309 0.197 0.147 -0.462 -0.179 0.806 -0.638 0.147 0.495 -1.817 0.263 -0.261 0.246 0.458 -0.724 -1.336 0.157 0.756 -0.322 -0.014 -0.100 0.403 -0.407 -0.007 0.629 -1.670 0.194 0.196 0.377 -0.263 -0.470 -1.104 0.244 0.665 -0.388 . 1.226 . 0.732 0.004 0.493 -1.937 0.410 . 0.579 0.579 0.016 -0.980 0.407 -0.425 0.508 -0.126 -0.109 0.662 -0.800 0.057 0.690 -1.050 -0.212 -0.712 0.796 -0.401 -0.158 -1.924 0.792 0.275 -0.332 -0.958 0.049 0.908 -0.801 -0.067 0.504 -1.009 0.177 -0.465 0.565 0.332 -0.894 -1.873 0.241 0.975 -0.785 -1.055 0.091 0.834 -0.576 -0.671 0.908 -0.556 -0.295 -0.789 0.792 0.174 -0.833 -1.873 0.265 0.993 -0.904 . 1.360 . 0.519 -0.426 0.745 -1.301 0.231 . 0.671 0.449 0.060 -1.846 0.921 -0.452 0.134 -0.000 -0.326 0.722 -0.855 0.242 0.553 -1.213 -0.122 -0.043 0.373 0.163 -0.702 -1.242 0.449 0.460 -0.258 -0.869 -0.205 1.073 -1.055 -0.098 0.557 -1.173 0.204 -0.460 0.435 0.551 -1.133 -1.616 0.060 1.059 -0.868 -0.238 0.091 0.527 -0.630 -0.228 0.750 -1.281 0.075 -0.120 0.833 -0.824 -0.447 -1.159 0.236 0.796 -0.648 . 1.397 . 0.450 -0.162 0.653 -1.682 0.290 . 0.445 0.759 -0.080 -1.459 0.541 -0.327 0.469 0.165 -0.013 0.247 -0.513 -0.012 0.801 -1.832 -0.022 -0.477 0.564 -0.502 0.133 -1.124 0.555 0.107 -0.008 -0.656 -0.032 0.779 -0.575 -0.012 0.464 -1.957 0.455 -0.399 0.249 0.288 -0.266 -1.507 0.147 0.825 -0.379 -0.134 0.167 0.302 -0.447 -0.233 0.737 -1.714 0.235 -0.107 0.415 0.039 -0.494 -1.382 0.221 0.813 -0.528 . 1.307 . 0.609 -0.284 0.501 -1.869 0.574 . 0.405 0.464 0.374 -1.125 0.489 0.003 0.184 0.027 -0.546 0.633 -0.424 0.306 0.330 -1.415 0.179 0.054 0.158 -0.098 -0.133 -0.851 -0.089 0.353 0.296 -0.274 -0.612 1.038 -1.103 0.118 0.305 -1.655 0.446 0.198 -0.141 0.466 -0.825 -1.078 -0.153 0.932 -0.475 0.251 -0.367 0.362 -0.416 0.040 0.495 -1.802 0.351 0.388 0.163 -0.165 -0.556 -0.814 -0.174 0.775 -0.263 . 1.028 . 0.971 0.022 0.378 -1.961 0.514 . 0.061 0.497 0.629 -0.961 0.076 -0.322 0.707 -0.335 0.142 0.550 -0.644 -0.066 0.730 -1.220 -0.063 -0.738 0.824 -0.468 -0.142 -1.838 0.749 0.179 -0.140 -0.981 -0.117 1.023 -0.893 0.034 0.365 -1.016 0.256 -0.050 0.177 0.408 -0.796 -1.603 0.098 1.033 -0.849 -0.693 0.223 0.532 -0.379 -0.464 0.931 -1.055 -0.171 -0.376 0.494 0.269 -0.698 -1.667 0.240 0.989 -0.946 . 1.298 . 0.625 -0.405 0.802 -1.656 0.244 . 0.648 0.451 0.092 -1.651 0.889 -0.313 0.034 -0.218 -0.353 0.814 -0.740 0.040 0.583 -1.122 0.021 -0.269 0.436 0.052 -0.358 -1.452 0.340 0.554 -0.150 -1.100 -0.295 1.176 -1.124 -0.149 0.591 -1.270 0.235 -0.707 0.419 0.585 -0.862 -1.584 -0.109 1.156 -0.967 -0.230 -0.120 0.564 -0.418 -0.289 0.701 -1.393 0.232 -0.182 0.630 -0.107 -0.639 -1.227 -0.150 1.028 -0.660 . 1.230 . 0.727 -0.401 0.645 -1.467 0.397 . 0.433 0.521 0.280 -1.578 0.479 -0.045 0.380 0.215 -0.238 0.387 -0.549 0.132 0.564 -1.738 0.171 -0.094 0.338 -0.364 0.031 -1.072 0.338 -0.069 0.387 -0.587 -0.181 0.833 -0.577 0.147 0.250 -1.747 0.491 0.322 -0.258 0.355 -0.656 -1.244 0.115 0.795 -0.395 0.046 -0.032 0.191 -0.239 -0.076 0.561 -2.080 0.421 0.179 0.252 -0.076 -0.458 -1.229 0.078 0.791 -0.344 . 1.011 . 0.988 -0.294 0.492 -2.274 0.652 . 0.485 0.523 0.218 -0.797 0.399 0.110 0.037 frame2 LUT 5 4 4 0 0.000 0.030 -0.240 0.566 -0.617 0.604 0.249 -1.093 -0.281 0.474 -0.044 0.150 -0.911 -0.250 -0.363 0.889 -0.916 -0.135 -0.419 0.776 -0.667 0.763 0.071 -1.374 -0.206 -0.206 0.012 0.394 -0.304 -0.704 0.147 0.707 -0.629 0.442 -0.286 0.376 -0.932 0.618 0.243 -1.292 -0.194 0.661 -0.025 -0.041 -1.106 -0.418 -0.319 0.865 -0.670 0.217 -0.332 0.489 -0.644 0.616 0.338 -1.129 -0.422 0.312 -0.391 0.500 -0.782 -0.282 -0.075 0.712 -0.763 0.236 -0.413 0.757 -1.391 0.571 0.203 -1.017 -0.203 0.333 0.168 -0.037 -0.639 -0.560 0.032 0.688 -0.539 -0.206 -0.117 0.786 -1.038 0.585 0.127 -1.134 -0.070 -0.202 0.216 0.257 -0.369 -0.884 0.126 0.783 -0.629 0.147 -0.306 0.670 -1.020 0.319 0.210 -1.227 0.224 0.403 -0.007 0.218 -0.947 -0.769 -0.064 0.668 -0.205 0.208 -0.154 0.537 -1.016 0.667 0.008 -1.681 0.130 0.122 -0.043 0.512 -0.956 -0.669 0.426 0.357 -0.421 0.204 -0.543 0.752 -1.067 0.581 0.133 -1.050 -0.112 0.349 -0.113 0.346 -0.914 -0.697 -0.614 1.104 -0.786 -0.193 -0.440 0.910 -0.973 0.720 0.021 -1.213 -0.141 -0.150 0.024 0.508 -0.600 -0.771 -0.226 0.971 -0.740 0.160 -0.258 0.701 -1.251 0.439 0.175 -1.009 0.027 0.422 -0.180 0.455 -1.300 -0.920 -0.203 0.976 -0.652 -0.029 -0.281 0.632 -0.627 0.751 0.173 -1.535 -0.244 0.137 -0.367 0.605 -0.727 -0.623 0.266 0.574 -0.601 . . . . 0.477 0.243 -0.909 -0.165 . . . . -0.382 -0.579 0.923 -0.584 -0.184 -0.460 0.849 -0.757 0.629 0.106 -1.223 -0.076 0.006 -0.515 0.683 -0.534 -0.803 0.059 0.771 -0.558 . . . . 0.648 0.263 -1.421 -0.218 0.418 -0.228 0.342 -0.881 -0.323 -0.473 1.002 -1.067 0.344 -0.186 0.349 -0.789 0.498 0.292 -1.604 0.049 0.025 -0.069 0.544 -0.807 -0.571 -0.295 0.922 -0.696 -0.060 -0.268 0.737 -0.882 0.551 0.141 -0.691 -0.299 0.357 -0.174 0.213 -0.570 -0.550 -0.602 1.110 -1.002 -0.597 -0.334 1.042 -1.041 0.741 -0.186 -0.884 -0.140 -0.679 0.001 0.757 -0.546 -1.006 -0.106 0.999 -0.799 0.144 -0.427 0.740 -1.056 0.505 0.164 -0.692 -0.249 0.543 -0.028 0.166 -1.181 -0.864 -0.489 1.176 -1.063 -0.052 -0.535 0.737 -0.560 0.491 0.146 -0.706 -0.193 0.155 -0.300 0.532 -0.670 -0.802 -0.112 0.947 -0.805 -0.044 -0.383 0.975 -1.745 0.428 0.192 -0.564 -0.259 0.152 0.083 0.322 -0.788 -0.954 -0.048 0.958 -0.803 -0.544 -0.054 0.921 -1.126 0.831 -0.396 -0.625 -0.299 -0.522 0.166 0.674 -0.769 -1.083 0.044 0.940 -0.792 -0.004 -0.604 0.914 -1.119 0.348 0.198 -0.865 0.045 0.111 0.068 0.571 -1.370 -0.611 -0.143 0.870 -0.708 -0.032 -0.085 0.726 -1.233 0.646 0.045 -1.394 0.033 -0.160 0.079 0.633 -1.004 -0.669 0.359 0.494 -0.557 -0.273 -0.459 0.948 -0.956 0.337 0.106 -0.328 -0.211 0.056 -0.070 0.493 -0.735 -0.906 -0.654 1.216 -0.976 -0.734 -0.236 1.076 -1.182 0.519 -0.100 -0.429 -0.166 -1.259 0.307 0.919 -1.139 -1.027 -0.009 0.975 -0.862 -0.221 -0.444 1.018 -1.389 0.334 -0.063 -0.478 0.090 0.130 0.028 0.641 -1.616 -1.165 -0.200 1.072 -0.785 -0.528 -0.149 0.865 -0.776 0.580 0.079 -1.257 0.043 -0.273 -0.156 0.697 -0.613 -0.715 0.020 0.660 -0.328 . . . . 0.527 0.065 -0.659 -0.186 . . . . -0.630 -0.679 1.141 -0.935 -0.660 -0.345 1.093 -1.165 0.607 -0.017 -1.077 0.022 -1.039 0.006 0.996 -0.956 -0.890 -0.148 1.003 -0.853 . . . . 0.408 0.274 -1.049 -0.029 0.318 -0.222 0.385 -0.763 -0.662 -0.506 1.142 -1.130 0.175 -0.058 0.423 -0.812 0.432 0.270 -0.965 -0.102 -0.086 -0.187 0.695 -0.834 -0.701 -0.497 1.155 -1.154 0.090 -0.117 0.535 -0.825 0.499 0.262 -0.860 -0.258 0.452 -0.023 0.167 -0.930 -0.514 -0.313 0.931 -0.767 -0.465 -0.215 0.905 -0.885 0.542 0.208 -1.048 -0.143 -0.719 0.165 0.724 -0.692 -1.093 0.213 0.764 -0.570 0.304 -0.107 0.495 -1.227 0.409 0.259 -0.753 -0.180 0.632 0.118 -0.159 -1.092 -0.771 -0.218 0.932 -0.629 0.130 -0.507 0.511 -0.365 0.402 0.382 -0.838 -0.293 0.141 -0.088 0.441 -0.740 -0.755 -0.012 0.854 -0.717 -0.039 -0.258 0.859 -1.409 0.438 0.238 -0.717 -0.222 0.205 0.284 0.074 -0.793 -0.812 0.123 0.720 -0.527 -0.394 -0.003 0.788 -0.959 0.501 0.101 -0.794 -0.097 -0.701 0.453 0.526 -0.798 -1.164 0.146 0.795 -0.489 -0.192 0.058 0.688 -1.079 0.262 0.226 -0.993 0.174 -0.025 0.444 0.278 -1.171 -1.087 0.184 0.678 -0.334 0.075 0.176 0.432 -1.096 0.529 0.117 -1.626 0.200 -0.164 0.217 0.507 -0.930 -0.774 0.557 0.273 -0.443 -0.043 -0.408 0.840 -1.041 0.519 0.129 -0.731 -0.199 0.229 0.102 0.327 -1.000 -0.758 -0.451 1.093 -0.877 -0.516 -0.456 1.064 -1.056 0.569 0.057 -0.762 -0.173 -0.762 0.155 0.829 -0.942 -1.163 -0.046 1.000 -0.774 0.123 -0.200 0.688 -1.218 0.443 0.165 -0.846 -0.055 0.416 0.179 0.205 -1.394 -0.808 -0.010 0.942 -0.959 -0.288 -0.002 0.680 -0.784 0.637 0.240 -1.465 -0.149 -0.064 -0.072 0.624 -0.861 -0.684 0.258 0.553 -0.484 . . . . 0.451 0.296 -0.815 -0.258 . . . . -0.532 -0.386 0.875 -0.496 -0.594 -0.177 0.919 -0.830 0.450 0.237 -1.346 0.087 -0.604 -0.087 0.867 -0.795 -0.899 0.074 0.815 -0.618 . . . . 0.392 0.292 -0.840 -0.145 0.289 0.045 0.176 -0.698 -0.712 -0.248 1.020 -0.944 0.276 0.063 0.252 -0.855 0.393 0.371 -1.217 -0.054 -0.127 -0.013 0.606 -0.806 -0.694 -0.314 1.015 -0.845 0.257 -0.416 0.566 -0.798 0.502 0.265 -1.202 -0.078 0.544 -0.167 0.190 -0.969 -0.398 -0.292 0.888 -0.801 -0.065 -0.556 0.853 -0.842 0.760 -0.065 -1.453 -0.021 0.050 -0.261 0.415 -0.327 -0.759 -0.114 0.817 -0.467 0.403 -0.466 0.550 -1.031 0.646 0.304 -1.519 -0.231 0.640 0.016 -0.129 -0.953 -0.486 -0.310 0.886 -0.664 0.265 -0.389 0.428 -0.535 0.552 0.327 -1.224 -0.231 0.253 -0.340 0.425 -0.565 -0.555 0.014 0.681 -0.500 0.035 -0.483 0.942 -1.563 0.548 0.237 -0.983 -0.228 0.353 0.005 0.109 -0.641 -0.499 -0.076 0.723 -0.530 -0.176 -0.456 0.925 -1.039 0.676 0.000 -0.834 -0.249 -0.312 -0.021 0.635 -0.609 -0.862 0.039 0.875 -0.764 0.290 -0.759 0.758 -1.014 0.236 0.338 -1.437 0.250 0.370 -0.122 0.396 -1.080 -0.892 -0.050 0.735 -0.268 0.048 0.040 0.606 -1.267 0.488 0.265 -1.700 0.122 0.004 -0.020 0.528 -0.811 -0.542 0.422 0.398 -0.608 -0.030 -0.588 0.866 -0.909 0.535 0.217 -1.099 -0.118 0.304 -0.168 0.404 -0.858 -0.644 -0.613 1.134 -0.966 -0.337 -0.596 1.001 -0.876 0.665 0.067 -1.255 -0.078 -0.533 -0.029 0.723 -0.561 -0.800 -0.237 0.991 -0.761 0.116 -0.523 0.821 -1.138 0.456 0.071 -1.171 0.180 0.463 -0.242 0.482 -1.397 -0.883 -0.373 1.013 -0.581 -0.131 -0.183 0.644 -0.638 0.664 0.208 -1.775 -0.047 -0.050 -0.299 0.708 -0.767 -0.586 0.120 0.630 -0.515 . . . . 0.497 0.223 -1.038 -0.097 . . . . -0.405 -0.465 0.923 -0.680 -0.195 -0.706 0.957 -0.807 0.597 0.083 -1.548 0.119 -0.406 -0.219 0.889 -0.905 -0.761 -0.028 0.863 -0.713 . . . . 0.387 0.393 -1.395 -0.002 0.357 -0.254 0.255 -0.540 -0.363 -0.251 0.860 -0.816 0.273 -0.142 0.226 -0.482 0.404 0.388 -1.486 0.016 0.016 -0.075 0.598 -0.927 -0.316 -0.480 1.016 -1.128 frame2 LUT 5 4 4 0 0.000 0.490 -0.307 -0.381 0.028 0.304 -0.117 -0.975 0.417 0.600 -0.088 -0.379 -0.369 -0.114 0.021 -0.216 0.264 0.420 -0.539 -0.259 0.188 0.107 0.026 -0.857 0.436 0.387 -0.322 -0.174 0.009 -0.470 -0.084 -0.061 0.461 0.830 -0.628 -0.467 -0.231 0.250 -0.103 -0.829 0.397 0.903 -0.175 -0.793 -0.584 -0.319 -0.007 -0.297 0.475 0.679 -0.596 -0.911 0.269 0.133 0.229 -1.181 0.368 0.527 -0.337 -0.127 -0.231 -0.374 0.348 -1.232 0.613 0.594 -0.235 -0.311 -0.261 0.286 0.250 -1.400 0.278 0.657 -0.111 -0.455 -0.381 -0.952 0.538 -0.638 0.473 0.359 -0.238 -0.433 0.175 0.230 -0.118 -0.980 0.484 0.318 -0.509 -0.240 0.267 -0.528 -0.107 -0.112 0.539 0.235 -0.270 -0.182 0.153 -0.245 -0.050 -1.376 0.852 0.484 -0.103 -0.328 -0.195 -0.682 0.236 -0.016 0.275 0.364 0.028 -0.794 0.159 0.112 0.156 -0.967 0.371 0.239 -0.204 -0.110 0.035 -0.750 0.284 -0.716 0.659 0.561 -0.624 0.006 -0.197 0.362 0.008 -1.231 0.360 0.730 -0.207 -0.379 -0.500 -0.511 0.258 -0.263 0.344 0.298 -0.401 0.112 -0.102 0.183 -0.074 -0.639 0.348 0.545 -0.308 -0.075 -0.352 -0.659 0.333 -0.132 0.256 0.692 -0.511 -0.242 -0.255 0.177 -0.092 -0.842 0.457 0.783 -0.114 -0.635 -0.490 -0.803 0.282 -0.195 0.419 0.597 -0.299 -0.410 -0.117 0.237 0.121 -0.995 0.301 0.565 -0.289 -0.047 -0.447 -0.606 0.448 -0.954 0.549 0.755 -0.567 -0.432 -0.159 0.503 0.064 -1.067 0.084 0.776 -0.005 -0.813 -0.471 -0.767 0.044 -0.378 0.688 0.343 -0.168 -0.552 0.213 0.277 -0.394 -0.502 0.402 0.452 -0.080 -0.537 -0.005 -0.553 0.094 -0.207 0.469 0.673 -0.459 -0.474 -0.062 0.244 -0.189 -1.096 0.557 0.681 -0.097 -0.506 -0.400 -0.416 -0.019 -0.240 0.503 0.789 -0.458 -0.907 0.016 0.371 -0.010 -0.883 0.229 0.534 -0.219 -0.247 -0.233 -0.483 0.313 -0.828 0.564 0.483 -0.544 0.016 -0.144 0.601 -0.245 -1.207 0.270 0.597 -0.283 -0.235 -0.293 -0.118 -0.147 -0.069 0.290 0.237 -0.233 -0.058 0.014 0.293 -0.233 -0.772 0.421 0.296 -0.222 -0.164 0.033 -0.575 -0.121 0.165 0.365 0.589 -0.543 -0.151 -0.138 0.333 -0.266 -0.993 0.492 0.801 -0.038 -0.699 -0.584 -0.386 -0.108 -0.000 0.386 0.504 -0.233 -0.545 0.063 0.365 -0.138 -0.898 0.342 0.498 -0.309 -0.054 -0.290 -0.314 0.151 -0.901 0.632 0.602 -0.229 -0.050 -0.593 0.092 0.633 -1.330 -0.021 0.736 -0.128 -0.431 -0.562 -0.713 0.575 -0.462 0.232 0.493 -0.388 -0.092 -0.168 0.335 -0.052 -0.644 0.181 0.637 -0.240 -0.286 -0.362 -0.338 0.081 -0.219 0.369 0.366 -0.277 0.095 -0.290 -0.350 0.424 -0.922 0.429 0.598 -0.141 -0.248 -0.439 -0.542 0.449 -0.248 0.145 0.532 -0.121 -0.540 -0.080 0.109 0.515 -1.026 0.002 0.448 -0.180 -0.151 -0.231 -0.681 0.532 -0.806 0.442 0.357 -0.825 0.090 0.126 0.389 -0.165 -0.854 0.316 0.539 -0.368 -0.085 -0.270 -0.126 -0.096 -0.287 0.410 0.303 -0.578 0.028 0.107 0.148 -0.846 -0.398 0.657 0.257 -0.139 -0.031 -0.123 -0.423 -0.131 0.077 0.363 0.590 -0.606 -0.076 -0.169 0.180 -0.359 -0.477 0.453 0.727 -0.093 -0.448 -0.570 -0.477 0.101 -0.273 0.465 0.297 -0.156 -0.195 0.000 0.170 -0.147 -0.660 0.421 0.189 -0.329 0.114 -0.026 -0.665 0.247 -0.592 0.603 0.716 -0.413 -0.249 -0.388 0.637 -0.233 -1.014 0.136 0.849 -0.248 -0.493 -0.629 -0.344 -0.043 -0.097 0.385 0.310 -0.262 -0.336 0.182 0.217 -0.418 -0.796 0.598 -0.003 -0.203 0.049 0.136 -0.453 -0.022 -0.234 0.520 0.649 -0.408 -0.218 -0.289 0.274 -0.309 -0.964 0.556 0.643 -0.109 -0.445 -0.364 -0.547 0.212 -0.012 0.222 0.486 -0.207 -0.669 0.143 0.128 -0.035 -0.570 0.331 0.220 -0.167 0.014 -0.097 -0.766 0.414 -0.660 0.533 0.666 -0.589 -0.398 -0.014 0.416 -0.351 -0.986 0.461 0.928 -0.393 -0.531 -0.636 -0.296 -0.218 -0.163 0.518 0.335 -0.414 -0.218 0.175 0.102 0.029 -0.941 0.470 0.579 -0.418 -0.355 -0.036 -0.551 -0.035 -0.106 0.498 0.786 -0.658 -0.389 -0.187 0.247 -0.323 -0.919 0.570 1.011 -0.240 -0.854 -0.772 -0.567 0.022 -0.150 0.494 0.568 -0.402 -0.841 0.266 0.067 0.170 -1.026 0.418 0.676 -0.351 -0.299 -0.311 -0.372 0.266 -1.047 0.624 0.688 -0.397 -0.318 -0.274 0.378 0.025 -1.315 0.357 0.586 0.214 -0.544 -0.613 -0.644 0.586 -0.799 0.361 0.392 -0.325 -0.362 0.153 0.278 -0.307 -0.752 0.471 0.374 0.026 -0.459 -0.061 -0.778 0.096 -0.289 0.613 0.291 -0.070 -0.121 -0.145 -0.140 -0.126 -0.744 0.659 0.241 0.447 -0.485 -0.435 -0.784 0.427 -0.291 0.330 0.353 0.024 -0.894 0.224 0.143 0.007 -0.902 0.439 0.240 0.107 -0.365 -0.050 -0.984 0.432 -0.708 0.617 0.679 -0.444 -0.240 -0.292 0.349 -0.038 -0.963 0.310 0.675 -0.237 -0.137 -0.632 -0.700 0.260 -0.589 0.606 0.304 -0.385 -0.148 0.133 0.220 -0.318 -0.570 0.444 0.171 -0.230 0.157 -0.141 -0.431 0.105 -0.219 0.405 0.878 -0.397 -0.638 -0.394 0.089 0.030 -1.039 0.515 0.749 -0.075 -0.527 -0.565 -0.609 0.497 -0.825 0.453 0.182 0.130 -0.486 0.080 0.188 0.052 -0.730 0.288 0.179 -0.305 0.168 -0.097 -0.618 0.364 -0.895 0.607 0.775 -0.144 -0.946 -0.210 0.435 0.200 -1.091 0.042 0.792 -0.100 -0.628 -0.540 -0.727 0.322 -0.623 0.581 0.176 -0.082 -0.508 0.289 0.115 -0.205 -0.826 0.571 -0.093 -0.111 -0.088 0.258 -0.473 0.072 -0.399 0.556 0.644 -0.150 -0.723 -0.105 0.077 -0.163 -0.978 0.626 0.596 -0.085 -0.562 -0.203 -0.679 0.200 -0.186 0.431 0.440 -0.239 -0.822 0.299 0.224 0.080 -0.840 0.283 0.235 -0.209 0.008 -0.070 -0.657 0.348 -0.878 0.631 . . . . . . . . . . . . . . . . 0.421 -0.330 -0.201 -0.005 0.267 -0.342 -0.642 0.451 0.555 -0.584 -0.208 -0.004 -0.432 -0.221 -0.033 0.509 . . . . . . . . . . . . . . . . 0.768 -0.540 -0.886 0.095 0.369 -0.073 -1.043 0.348 0.683 -0.442 -0.251 -0.290 -0.300 0.102 -0.996 0.690 0.663 -0.465 0.013 -0.550 0.221 0.252 -1.162 0.259 0.712 -0.131 -0.353 -0.587 -1.263 0.761 -0.778 0.385 0.298 -0.377 -0.051 0.050 0.245 -0.138 -0.820 0.422 0.462 -0.366 -0.188 -0.045 -0.589 0.155 -0.144 0.397 0.250 -0.115 0.115 -0.313 -0.161 0.078 -1.326 0.724 0.457 -0.080 -0.156 -0.352 -1.298 0.720 -0.490 0.303 0.364 0.138 -0.533 -0.118 0.146 0.208 -0.993 0.305 0.371 -0.170 -0.117 -0.159 -1.131 0.767 -0.761 0.323 . . . . . . . . . . . . . . . . 0.338 -0.372 -0.024 -0.029 0.296 -0.265 -0.666 0.390 0.213 -0.216 0.166 -0.221 -0.555 0.005 0.087 0.326 0.605 -0.472 -0.252 -0.122 0.206 -0.438 -1.048 0.700 0.661 -0.272 -0.338 -0.323 -0.423 -0.061 -0.035 0.400 0.656 -0.258 -0.510 -0.175 0.236 0.113 -1.038 0.326 0.424 -0.319 0.117 -0.373 -0.628 0.361 -0.697 0.538 0.888 -0.706 -0.612 -0.182 0.542 -0.089 -1.061 0.168 0.820 -0.205 -0.495 -0.606 -0.521 0.294 -0.830 0.599 0.247 -0.208 -0.223 0.125 0.255 -0.446 -0.721 0.552 0.382 -0.418 -0.141 0.059 -0.464 0.097 -0.218 0.429 0.671 -0.500 -0.395 -0.089 0.102 -0.048 -1.374 0.654 0.689 -0.102 -0.541 -0.380 -0.603 0.298 -0.327 0.395 0.668 -0.394 -0.739 0.072 0.195 -0.051 -1.147 0.525 0.536 -0.279 -0.183 -0.244 -0.507 0.411 -0.803 0.479 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.604 0.219 -0.093 -1.399 0.632 0.619 -1.543 -0.809 0.601 0.527 -0.410 -1.789 -0.408 0.608 0.255 -0.918 0.289 0.325 0.078 -1.088 0.692 0.435 -1.321 -0.660 0.317 0.444 -0.261 -0.837 -0.589 0.736 0.164 -0.866 0.537 0.216 -0.149 -1.041 0.504 0.653 -1.787 -0.474 0.961 0.480 -0.859 -3.226 -0.702 0.682 0.129 -0.542 0.424 0.597 -0.859 -0.751 0.667 0.709 -2.232 -0.826 0.290 0.600 -0.152 -1.471 -0.320 0.759 -0.230 -0.613 E-2 LUT 3 2 4 0 0.000 1.415 -1.345 -1.072 -1.110 1.610 -1.814 -2.705 -0.971 1.466 -1.086 -1.597 -1.195 0.058 -0.239 0.108 0.047 1.398 -1.530 -0.929 -1.021 1.562 -1.582 -2.296 -0.974 1.413 -1.439 -1.081 -1.013 -0.464 -0.258 0.554 -0.043 1.423 -1.403 -1.180 -1.004 1.584 -1.691 -2.345 -1.015 1.625 -1.597 -1.746 -1.800 -0.056 -0.541 0.543 -0.163 1.361 -1.068 -2.170 -0.450 1.485 -1.503 -2.112 -0.699 1.259 -0.905 -1.055 -0.757 -0.023 -0.249 0.067 0.172 E-1 LUT 3 2 4 0 0.000 -1.658 -3.502 1.787 -2.798 0.129 -1.445 0.937 -0.678 -0.310 -1.883 1.306 -1.153 -2.511 -2.833 1.787 -2.096 -1.777 -3.693 1.819 -3.291 -0.210 -1.753 0.982 -0.210 -0.853 -2.474 1.573 -1.783 -3.026 -2.611 1.792 -1.996 -1.825 -3.622 1.780 -2.300 -0.231 -1.757 0.894 -0.009 -0.832 -2.190 1.618 -2.730 -2.971 -2.971 1.813 -2.109 -1.285 -2.084 1.620 -1.839 -0.386 -1.883 1.045 -0.151 -1.099 -3.401 1.602 -1.308 -2.476 -2.752 1.700 -1.245 G LUT 3 2 4 0 0.000 -7.626 -7.626 1.995 -7.626 -5.852 -5.852 1.981 -5.852 -11.137 -11.137 2.000 -11.137 -6.551 -6.551 1.988 -6.551 -6.618 -6.618 1.989 -6.618 -5.077 -5.077 1.968 -5.077 -7.728 -7.728 1.995 -7.728 -6.488 -6.488 1.988 -6.488 -6.114 -6.114 1.984 -6.114 -4.409 -4.409 1.948 -4.409 -8.338 -8.338 1.997 -8.338 -5.358 -5.358 1.973 -5.358 -4.459 -4.459 1.950 -4.459 -4.426 -4.426 1.949 -4.426 -8.956 -8.956 1.998 -8.956 -5.349 -5.349 1.973 -5.349 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.585 -8.585 -8.585 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.036 -7.036 -7.036 1.992 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.680 -11.680 -11.680 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.035 -8.035 -8.035 1.996 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.249 -3.296 0.516 -3.451 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.359 -1.330 -0.950 -0.943 1.612 -2.613 -2.531 -0.723 1.787 -2.851 -1.788 -3.043 0.519 -1.962 0.273 0.140 I+3 LUT 3 2 4 0 0.000 -1.282 -1.804 1.595 -1.833 -0.046 -0.492 0.324 0.096 -1.750 -2.431 1.743 -2.561 -1.836 -1.116 1.505 -1.251 -4.005 -4.741 1.921 -3.157 0.000 -2.322 0.848 0.000 -2.392 -2.392 1.608 -0.807 -4.044 -0.874 1.710 -3.044 -3.782 -3.814 1.921 -3.864 -1.503 -0.628 1.270 -0.766 -4.140 -3.555 1.930 -4.403 -4.484 -2.676 1.874 -2.899 -2.098 -3.098 1.809 -2.776 -2.755 -2.755 1.493 -0.170 -2.273 -2.051 1.742 -2.273 -3.728 -2.728 1.827 -2.143 I+4 LUT 3 2 4 0 0.000 -0.131 -0.509 0.508 -0.056 0.106 -0.041 -0.987 0.533 -0.632 -0.695 -0.621 1.061 -0.721 -0.686 0.660 0.252 -1.099 -0.758 1.124 -0.391 0.244 -0.477 -0.642 0.542 -1.176 -0.962 -0.428 1.202 -0.934 -0.934 0.889 0.138 0.027 -0.558 0.764 -0.728 -0.644 0.019 0.019 0.415 -0.339 -0.566 -0.889 0.995 -0.066 -0.744 0.888 -0.744 -0.369 -0.839 0.548 0.268 -0.366 0.956 -2.559 0.157 -0.903 -1.189 -0.339 1.161 -0.868 -0.435 0.168 0.668 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.894 -0.802 -0.546 -0.179 0.697 0.015 -2.281 0.217 0.331 -0.372 -0.000 -0.044 0.324 -0.622 0.105 0.034 0.250 -0.363 0.069 -0.023 0.401 0.250 -2.408 0.381 -0.116 -0.268 -0.091 0.387 -0.569 0.171 0.134 0.141 0.420 -0.468 0.167 -0.292 0.550 0.135 -2.068 0.262 0.313 -0.109 -0.086 -0.171 -0.161 -0.374 0.381 0.045 0.518 -0.475 -0.345 0.086 0.257 0.354 -2.314 0.407 0.145 -0.388 -0.026 0.200 0.001 -0.315 -0.391 0.519 0.711 -0.563 -0.062 -0.458 1.016 -0.327 -2.026 -0.097 0.266 -0.326 0.152 -0.170 -0.019 -0.500 0.236 0.175 -0.307 0.055 0.183 0.025 0.482 0.067 -1.769 0.336 -0.272 0.074 -0.238 0.347 -0.797 0.172 0.361 0.018 -0.016 -0.559 0.457 -0.059 0.042 0.702 -1.677 0.044 0.022 -0.371 0.284 -0.010 -0.488 -0.482 0.653 -0.002 0.271 -0.265 -0.072 0.015 0.382 0.233 -2.130 0.370 -0.034 -0.057 -0.084 0.161 -0.421 -0.219 0.069 0.427 0.530 -0.621 0.070 -0.223 0.639 0.016 -1.783 0.190 0.459 -0.313 0.070 -0.375 -0.231 -0.333 0.413 0.032 -0.107 -0.155 0.381 -0.200 0.455 -0.117 -1.987 0.541 0.157 -0.202 0.004 0.019 -0.417 -0.132 0.478 -0.081 0.318 -0.548 0.391 -0.400 0.443 -0.142 -1.528 0.473 0.291 -0.151 -0.116 -0.070 -0.366 -0.278 0.450 0.047 0.146 -0.494 0.335 -0.116 0.363 0.091 -2.452 0.552 0.139 -0.153 0.024 -0.025 -0.389 0.007 -0.181 0.433 0.689 -0.788 -0.407 0.076 0.859 -0.227 -2.365 0.186 0.284 -0.192 -0.162 0.019 0.364 -0.793 -0.126 0.287 -0.276 0.021 0.163 0.056 0.213 0.318 -2.217 0.464 -0.268 0.203 -0.227 0.219 -0.682 0.165 0.161 0.186 0.282 -0.481 0.208 -0.132 0.339 0.262 -2.339 0.421 0.063 -0.167 -0.002 0.092 -0.120 -0.482 0.332 0.144 0.211 -0.267 -0.221 0.206 0.261 0.073 -2.764 0.681 -0.003 -0.157 -0.166 0.280 -0.206 -0.387 -0.350 0.663 0.428 -0.400 0.087 -0.261 0.617 0.189 -2.382 0.183 0.108 -0.228 0.091 0.005 -0.084 -0.288 0.154 0.170 -0.681 0.435 0.214 -0.211 0.462 0.072 -1.934 0.389 -0.564 0.338 -0.050 0.129 -0.957 -0.158 0.547 0.173 0.123 -0.520 0.501 -0.324 0.244 0.454 -2.259 0.307 0.147 0.138 -0.063 -0.260 -0.534 -0.323 0.587 0.011 -0.018 -0.247 0.065 0.168 0.140 0.123 -2.432 0.699 -0.231 -0.133 0.102 0.218 -0.553 -0.197 -0.222 0.668 0.401 -0.396 0.411 -0.761 0.280 0.457 -1.679 0.139 -0.244 0.219 0.367 -0.510 -0.660 0.097 0.306 0.086 -0.316 -0.226 0.698 -0.475 0.524 0.045 -1.504 0.236 -0.321 -0.005 0.447 -0.251 -0.946 0.091 0.483 0.027 -0.431 -0.573 1.017 -0.831 -0.260 0.802 -1.081 -0.077 -0.469 0.133 0.671 -0.763 -0.831 0.099 0.614 -0.257 0.055 -0.274 0.330 -0.190 0.095 0.518 -2.016 0.325 -0.267 -0.174 0.344 0.019 -0.739 0.109 0.025 0.384 0.092 0.021 0.172 -0.333 0.401 0.137 -1.521 0.301 0.256 -0.496 0.320 -0.238 -0.750 0.115 0.189 0.243 -0.734 0.164 0.526 -0.254 -0.057 0.259 -1.619 0.601 -0.802 0.614 0.244 -0.490 -1.116 0.137 0.472 0.073 -0.082 -0.713 0.689 -0.264 -0.285 0.416 -1.152 0.481 0.021 -0.004 0.202 -0.256 -0.700 -0.348 0.738 -0.103 0.031 -0.428 0.229 0.088 -0.031 0.101 -2.016 0.767 -0.072 -0.183 0.166 0.065 -0.581 -0.098 -0.098 0.549 0.328 -0.510 0.045 0.015 0.539 -0.028 -2.487 0.473 0.192 -0.192 0.173 -0.226 -0.043 -0.344 0.075 0.249 -0.356 -0.029 0.540 -0.349 0.114 0.337 -2.104 0.509 -0.190 -0.279 0.545 -0.250 -0.840 0.065 0.458 0.031 -0.043 -0.365 0.621 -0.484 0.216 0.439 -2.283 0.353 -0.068 -0.147 0.488 -0.435 -0.263 -0.055 0.355 -0.112 0.184 -0.264 0.120 -0.082 0.049 0.438 -2.719 0.545 0.005 -0.247 0.208 -0.002 -0.465 -0.062 -0.001 0.399 0.316 -0.382 0.083 -0.107 0.353 -0.021 -2.192 0.603 0.231 -0.273 0.182 -0.210 -0.211 -0.346 0.197 0.267 -0.365 -0.289 0.622 -0.208 0.417 0.051 -2.233 0.501 -0.440 -0.303 0.501 0.052 -0.603 -0.048 0.291 0.202 0.086 -0.144 0.258 -0.255 0.248 0.380 -1.985 0.331 0.020 0.226 -0.095 -0.185 -0.512 -0.259 0.313 0.288 0.200 -0.395 0.091 0.036 0.262 0.109 -2.054 0.567 -0.060 -0.391 0.379 -0.033 -0.064 -0.283 -0.268 0.476 0.265 -0.323 0.270 -0.336 0.480 -0.092 -1.581 0.414 0.059 -0.253 0.203 -0.047 -0.506 -0.251 0.438 0.139 -0.467 0.040 0.449 -0.179 0.445 -0.016 -1.454 0.361 -0.018 -0.199 0.355 -0.215 -1.219 0.343 0.474 -0.131 -0.458 -0.395 0.506 0.127 -0.052 0.462 -0.507 -0.068 -0.129 -0.161 0.483 -0.334 -1.135 -0.498 1.022 -0.310 0.143 -0.089 0.062 -0.133 0.460 -0.009 -2.326 0.516 -0.184 -0.376 0.482 -0.070 -0.628 -0.012 0.046 0.410 0.281 -0.581 0.414 -0.352 0.542 -0.047 -1.911 0.390 0.104 -0.543 0.482 -0.249 -0.559 -0.323 0.246 0.418 -0.436 -0.390 0.671 -0.144 0.456 -0.210 -1.539 0.505 -0.711 -0.073 0.431 0.124 -0.771 -0.101 0.638 -0.112 0.090 -0.620 0.494 -0.190 0.375 -0.135 -1.223 0.448 0.202 -0.168 -0.015 -0.044 -0.628 -0.326 0.427 0.275 0.122 -0.451 0.272 -0.040 0.373 -0.091 -2.395 0.656 -0.052 -0.483 0.464 -0.088 -0.650 -0.210 0.019 0.570 0.272 -0.548 0.013 0.137 0.595 -0.042 -2.284 0.392 0.281 -0.004 -0.156 -0.169 -0.103 -0.565 0.095 0.405 -0.609 -0.003 0.473 -0.062 0.042 0.266 -2.392 0.658 -0.535 0.060 0.263 0.094 -0.942 0.305 0.133 0.198 -0.094 -0.385 0.482 -0.151 0.261 0.059 -1.875 0.573 -0.200 -0.014 0.159 0.032 -0.665 -0.593 0.866 -0.179 0.134 -0.262 0.064 0.034 0.343 0.072 -2.421 0.579 -0.220 -0.195 0.167 0.195 -0.628 -0.152 -0.036 0.563 0.592 -0.799 -0.189 0.058 0.482 -0.041 -2.274 0.510 0.288 -0.377 -0.070 0.078 -0.064 -0.311 -0.186 0.441 -0.208 -0.413 0.430 0.052 0.383 0.039 -2.402 0.564 -0.341 -0.429 0.019 0.540 -0.385 -0.288 0.162 0.375 0.320 -0.552 0.268 -0.209 0.232 0.189 -2.582 0.603 0.292 -0.219 -0.061 -0.062 -0.107 -0.300 0.113 0.237 0.082 -0.643 -0.274 0.560 0.233 -0.007 -2.688 0.744 -0.098 -0.486 -0.221 0.579 -0.348 -0.605 -0.579 0.916 0.534 -0.741 0.349 -0.558 0.360 0.018 -1.773 0.498 0.066 -0.080 0.103 -0.100 -0.416 -0.225 0.106 0.399 -0.402 -0.270 0.523 -0.034 0.595 -0.079 -1.812 0.331 -0.453 0.173 -0.050 0.234 -0.851 -0.027 0.443 0.144 0.254 -0.976 0.622 -0.395 -0.305 0.296 -1.453 0.675 -0.417 0.206 0.379 -0.327 -0.674 -0.266 0.522 0.144 0.039 -0.147 0.103 -0.006 0.113 0.068 -2.109 0.712 -0.186 -0.157 -0.117 0.381 -0.526 -0.035 -0.141 0.509 0.305 -0.302 0.085 -0.163 0.377 0.157 -2.232 0.458 0.142 -0.089 0.063 -0.132 -0.369 -0.209 0.227 0.251 -0.386 -0.235 0.511 -0.060 0.109 0.042 -2.408 0.768 -0.564 0.115 0.050 0.270 -0.780 -0.204 0.486 0.200 0.269 -0.777 0.477 -0.288 0.084 0.174 -1.917 0.630 0.361 -0.288 0.011 -0.169 -0.551 -0.289 0.465 0.161 0.136 -0.661 0.087 0.271 0.121 0.041 -2.540 0.776 -0.312 -0.504 -0.189 0.689 -0.612 -0.400 -0.057 0.702 0.642 -0.732 -0.280 0.019 0.724 -0.220 -2.445 0.385 0.131 -0.139 -0.084 0.075 -0.110 -0.684 -0.344 0.734 -0.131 -0.307 0.271 0.099 0.186 0.135 -2.612 0.679 0.135 -0.430 0.011 0.204 -0.694 -0.019 0.135 0.375 0.317 -0.706 0.371 -0.239 0.203 0.118 -2.717 0.688 -0.083 -0.175 0.254 -0.033 -0.269 -0.478 0.015 0.528 0.365 -0.736 -0.330 0.396 0.068 0.089 -2.989 0.818 -0.054 -0.512 -0.097 0.486 -0.442 -0.629 -0.479 0.926 Intron LUT 5 4 4 0 0.000 0.896 -0.814 -0.556 -0.167 0.704 0.015 -2.337 0.218 0.329 -0.381 -0.004 -0.031 0.327 -0.628 0.101 0.037 0.243 -0.368 0.066 -0.007 0.400 0.252 -2.494 0.393 -0.109 -0.307 -0.115 0.423 -0.569 0.184 0.125 0.137 0.413 -0.473 0.172 -0.283 0.561 0.127 -2.126 0.267 0.308 -0.111 -0.094 -0.154 -0.154 -0.385 0.386 0.040 0.504 -0.468 -0.335 0.092 0.253 0.363 -2.372 0.410 0.142 -0.388 -0.025 0.201 0.006 -0.325 -0.393 0.522 0.713 -0.569 -0.061 -0.458 1.029 -0.337 -2.062 -0.107 0.267 -0.344 0.162 -0.167 -0.012 -0.513 0.244 0.167 -0.333 0.059 0.177 0.048 0.496 0.054 -1.828 0.344 -0.279 0.041 -0.292 0.412 -0.803 0.177 0.361 0.017 -0.039 -0.622 0.468 -0.010 0.050 0.737 -1.949 0.055 0.024 -0.422 0.289 0.022 -0.464 -0.531 0.654 0.013 0.274 -0.276 -0.072 0.020 0.389 0.234 -2.192 0.374 -0.040 -0.053 -0.090 0.169 -0.412 -0.231 0.074 0.427 0.527 -0.629 0.067 -0.209 0.651 0.014 -1.821 0.185 0.463 -0.323 0.063 -0.362 -0.224 -0.335 0.412 0.030 -0.112 -0.154 0.377 -0.188 0.467 -0.135 -2.083 0.558 0.218 -0.280 -0.071 0.086 -0.411 -0.139 0.480 -0.081 0.312 -0.558 0.394 -0.386 0.459 -0.155 -1.601 0.483 0.295 -0.156 -0.131 -0.054 -0.358 -0.290 0.452 0.048 0.140 -0.498 0.348 -0.124 0.370 0.084 -2.537 0.561 0.137 -0.144 0.021 -0.028 -0.387 0.007 -0.185 0.434 0.673 -0.784 -0.399 0.092 0.867 -0.225 -2.384 0.174 0.287 -0.193 -0.169 0.023 0.368 -0.797 -0.123 0.281 -0.290 0.026 0.160 0.065 0.218 0.319 -2.264 0.466 -0.274 0.198 -0.252 0.247 -0.685 0.172 0.157 0.185 0.274 -0.492 0.218 -0.125 0.339 0.269 -2.393 0.422 0.057 -0.169 -0.006 0.103 -0.125 -0.488 0.337 0.146 0.196 -0.258 -0.217 0.211 0.269 0.058 -2.811 0.689 0.008 -0.158 -0.176 0.279 -0.202 -0.397 -0.355 0.668 0.432 -0.407 0.085 -0.259 0.628 0.191 -2.472 0.179 0.108 -0.233 0.088 0.013 -0.090 -0.296 0.157 0.178 -0.700 0.443 0.208 -0.202 0.478 0.057 -2.000 0.397 -0.570 0.337 -0.064 0.145 -0.965 -0.160 0.552 0.173 0.115 -0.532 0.505 -0.311 0.248 0.459 -2.376 0.317 0.141 0.143 -0.073 -0.248 -0.531 -0.332 0.593 0.008 -0.028 -0.247 0.070 0.172 0.147 0.115 -2.476 0.705 -0.236 -0.129 0.099 0.221 -0.550 -0.202 -0.221 0.669 0.406 -0.403 0.418 -0.779 0.283 0.462 -1.739 0.146 -0.253 0.220 0.371 -0.509 -0.661 0.088 0.318 0.082 -0.318 -0.241 0.704 -0.468 0.547 0.044 -1.655 0.252 -0.270 -0.133 0.453 -0.168 -0.947 0.077 0.489 0.032 -0.458 -0.611 1.033 -0.807 -0.165 0.806 -1.454 -0.008 -0.516 0.105 0.702 -0.741 -0.820 0.081 0.621 -0.254 0.050 -0.284 0.335 -0.183 0.109 0.517 -2.084 0.327 -0.267 -0.187 0.348 0.026 -0.737 0.102 0.031 0.384 0.100 0.045 0.140 -0.332 0.466 0.103 -1.782 0.327 0.289 -0.577 0.311 -0.206 -0.748 0.121 0.179 0.245 -0.740 0.176 0.484 -0.196 0.013 0.202 -2.155 0.693 -0.751 0.597 0.131 -0.326 -1.112 0.107 0.467 0.109 -0.118 -0.752 0.681 -0.182 -0.224 0.436 -1.685 0.565 0.034 -0.040 0.174 -0.193 -0.674 -0.399 0.752 -0.103 0.033 -0.442 0.211 0.115 -0.021 0.075 -2.305 0.814 -0.060 -0.191 0.148 0.080 -0.561 -0.113 -0.099 0.550 0.325 -0.520 0.040 0.031 0.544 -0.034 -2.569 0.482 0.193 -0.195 0.170 -0.221 -0.037 -0.348 0.078 0.243 -0.364 -0.028 0.541 -0.346 0.118 0.336 -2.221 0.524 -0.158 -0.353 0.550 -0.222 -0.839 0.059 0.460 0.034 -0.056 -0.367 0.630 -0.484 0.230 0.446 -2.419 0.354 -0.076 -0.147 0.492 -0.432 -0.253 -0.058 0.355 -0.118 0.173 -0.261 0.124 -0.076 0.053 0.429 -2.800 0.558 0.012 -0.254 0.204 0.002 -0.462 -0.070 -0.000 0.402 0.315 -0.382 0.079 -0.101 0.354 -0.028 -2.254 0.615 0.231 -0.281 0.180 -0.201 -0.215 -0.353 0.196 0.275 -0.380 -0.298 0.629 -0.198 0.432 0.037 -2.359 0.516 -0.431 -0.398 0.539 0.064 -0.596 -0.049 0.289 0.202 0.074 -0.136 0.250 -0.236 0.262 0.382 -2.123 0.343 0.011 0.233 -0.112 -0.166 -0.505 -0.273 0.318 0.288 0.192 -0.402 0.102 0.039 0.265 0.107 -2.098 0.573 -0.062 -0.399 0.387 -0.035 -0.045 -0.293 -0.273 0.472 0.256 -0.320 0.270 -0.325 0.488 -0.102 -1.623 0.423 0.064 -0.284 0.202 -0.025 -0.501 -0.268 0.451 0.132 -0.483 0.041 0.448 -0.164 0.480 -0.053 -1.562 0.381 0.077 -0.408 0.349 -0.123 -1.226 0.348 0.477 -0.140 -0.461 -0.471 0.476 0.216 0.021 0.497 -0.762 -0.023 -0.079 -0.291 0.465 -0.225 -1.122 -0.588 1.051 -0.317 0.149 -0.096 0.060 -0.131 0.490 -0.043 -2.449 0.527 -0.181 -0.409 0.495 -0.065 -0.618 -0.025 0.050 0.412 0.275 -0.581 0.410 -0.334 0.555 -0.056 -2.015 0.402 0.107 -0.574 0.480 -0.224 -0.562 -0.332 0.240 0.430 -0.446 -0.396 0.667 -0.123 0.483 -0.240 -1.671 0.527 -0.682 -0.114 0.353 0.233 -0.764 -0.112 0.643 -0.114 0.083 -0.639 0.491 -0.162 0.411 -0.149 -1.386 0.471 0.212 -0.200 -0.026 -0.016 -0.630 -0.343 0.425 0.290 0.131 -0.461 0.266 -0.035 0.386 -0.111 -2.513 0.671 -0.046 -0.486 0.457 -0.082 -0.651 -0.221 0.023 0.575 0.257 -0.560 0.024 0.150 0.600 -0.044 -2.331 0.395 0.289 -0.002 -0.167 -0.170 -0.105 -0.576 0.104 0.406 -0.623 -0.010 0.480 -0.054 0.054 0.253 -2.519 0.674 -0.496 0.010 0.244 0.137 -0.951 0.311 0.125 0.204 -0.106 -0.404 0.495 -0.142 0.268 0.056 -1.945 0.582 -0.205 -0.014 0.148 0.048 -0.663 -0.607 0.873 -0.183 0.125 -0.262 0.072 0.034 0.357 0.059 -2.465 0.581 -0.224 -0.198 0.170 0.198 -0.630 -0.155 -0.033 0.564 0.594 -0.811 -0.192 0.063 0.491 -0.041 -2.319 0.508 0.290 -0.383 -0.075 0.086 -0.070 -0.305 -0.194 0.448 -0.219 -0.418 0.438 0.053 0.388 0.032 -2.461 0.572 -0.344 -0.450 0.004 0.563 -0.379 -0.291 0.159 0.375 0.316 -0.557 0.272 -0.204 0.229 0.188 -2.652 0.614 0.289 -0.218 -0.067 -0.054 -0.096 -0.303 0.110 0.232 0.072 -0.648 -0.264 0.563 0.236 -0.020 -2.734 0.753 -0.101 -0.491 -0.221 0.583 -0.346 -0.612 -0.584 0.919 0.536 -0.754 0.360 -0.569 0.361 0.011 -1.806 0.508 0.061 -0.078 0.103 -0.096 -0.406 -0.229 0.111 0.392 -0.417 -0.276 0.523 -0.018 0.617 -0.096 -1.893 0.335 -0.437 0.149 -0.127 0.306 -0.856 -0.034 0.450 0.144 0.268 -1.030 0.626 -0.391 -0.279 0.280 -1.770 0.738 -0.445 0.218 0.378 -0.317 -0.671 -0.291 0.533 0.148 0.031 -0.150 0.107 0.000 0.119 0.056 -2.130 0.719 -0.193 -0.163 -0.123 0.394 -0.523 -0.041 -0.141 0.511 0.301 -0.291 0.077 -0.159 0.381 0.158 -2.317 0.467 0.138 -0.087 0.058 -0.125 -0.362 -0.200 0.220 0.246 -0.396 -0.237 0.512 -0.050 0.109 0.037 -2.495 0.781 -0.546 0.065 0.020 0.327 -0.780 -0.211 0.489 0.202 0.268 -0.800 0.483 -0.280 0.088 0.172 -1.988 0.640 0.369 -0.295 -0.004 -0.159 -0.548 -0.294 0.467 0.161 0.129 -0.672 0.096 0.274 0.124 0.030 -2.583 0.784 -0.316 -0.506 -0.192 0.694 -0.614 -0.409 -0.050 0.703 0.639 -0.736 -0.281 0.028 0.733 -0.228 -2.476 0.383 0.128 -0.138 -0.091 0.084 -0.111 -0.689 -0.346 0.737 -0.136 -0.305 0.268 0.107 0.193 0.126 -2.739 0.692 0.168 -0.496 -0.016 0.237 -0.700 -0.021 0.132 0.382 0.313 -0.719 0.381 -0.238 0.203 0.118 -2.807 0.697 -0.094 -0.169 0.254 -0.027 -0.271 -0.485 0.016 0.532 0.355 -0.747 -0.320 0.404 0.076 0.076 -3.041 0.824 -0.050 -0.522 -0.100 0.490 -0.450 -0.645 -0.483 0.936 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 -0.140 0.463 0.531 -1.895 -0.026 0.296 -0.132 -0.189 -0.019 0.383 0.218 -0.872 -0.449 0.938 -0.828 -0.342 -0.534 -0.144 0.874 -0.807 -0.117 0.371 -0.189 -0.141 -0.816 0.272 0.809 -1.079 -1.347 0.589 0.196 -0.063 0.415 -0.229 0.295 -0.769 -0.216 0.281 -0.081 -0.031 0.315 0.193 -0.167 -0.469 -1.322 0.456 0.543 -0.374 -0.713 0.205 0.641 -0.561 -0.405 0.575 -0.570 0.113 -0.517 0.180 -0.090 0.297 -1.520 0.542 0.007 0.251 N-11 LUT 3 2 4 0 0.000 0.324 -0.038 0.402 -1.145 -0.193 0.524 -0.541 0.000 0.082 0.193 0.193 -0.608 -0.541 0.322 -1.415 0.755 -0.721 0.547 0.654 -1.476 0.027 0.243 -0.178 -0.130 -0.919 0.805 0.285 -0.984 -0.668 0.211 0.309 -0.037 0.128 -0.024 0.317 -0.562 -0.585 0.360 -0.074 0.138 -0.025 0.534 -0.130 -0.610 -1.273 0.548 0.178 -0.010 -0.066 0.182 0.457 -0.896 -0.389 0.316 -1.055 0.595 -0.610 0.439 0.056 -0.075 -1.469 0.396 -0.322 0.607 N-10 LUT 3 2 4 0 0.000 0.311 -0.619 0.512 -0.552 0.460 0.260 -0.835 -0.207 0.118 0.352 -0.095 -0.510 -0.649 0.646 -1.524 0.535 -0.923 0.165 0.850 -0.864 0.115 0.346 -0.413 -0.160 -0.430 0.570 0.289 -0.860 -0.966 0.282 0.444 -0.133 0.179 -0.143 0.709 -1.612 0.010 0.187 -0.191 -0.032 -0.260 0.706 -0.043 -0.829 -1.470 0.193 0.499 0.115 -0.150 0.172 0.310 -0.449 -0.108 0.173 -0.745 0.431 -0.419 0.405 0.129 -0.261 -1.161 -0.017 0.205 0.497 N-9 LUT 3 2 4 0 0.000 0.163 -0.506 0.589 -0.573 0.322 0.129 -0.476 -0.093 -0.048 0.206 0.134 -0.356 -0.605 0.454 -0.190 0.132 -0.697 -0.234 1.138 -1.585 0.022 -0.162 0.259 -0.162 -1.161 -0.121 1.095 -1.009 -1.415 0.382 0.636 -0.381 0.347 -0.653 0.806 -1.538 -0.023 -0.222 0.290 -0.095 0.128 0.008 0.292 -0.562 -1.132 0.167 0.722 -0.373 0.038 -0.122 0.697 -1.209 0.008 0.157 -0.428 0.185 -0.337 0.068 0.407 -0.261 -1.388 0.569 0.016 0.168 N-8 LUT 3 2 4 0 0.000 0.166 0.340 -0.119 -0.534 0.074 0.627 -0.926 -0.189 -0.173 0.638 -0.059 -0.746 -0.495 0.631 -0.632 0.133 -0.993 0.110 0.896 -0.841 -0.210 0.341 0.064 -0.279 -1.275 0.820 0.331 -0.828 -1.184 0.566 0.138 -0.029 0.063 0.098 0.538 -1.207 -0.556 0.590 -0.174 -0.108 -0.338 0.576 0.090 -0.613 -0.957 0.043 0.656 -0.186 -0.518 0.345 0.415 -0.518 -0.615 0.743 -0.807 0.140 -0.022 0.393 0.037 -0.563 -1.269 0.316 0.093 0.349 N-7 LUT 3 2 4 0 0.000 -0.239 -0.423 0.899 -0.883 0.227 0.549 -1.188 -0.110 0.014 0.286 -0.100 -0.255 -0.358 0.642 -1.188 0.286 -0.301 -0.109 0.822 -1.021 -0.333 0.596 -0.676 0.096 -0.861 0.383 0.673 -0.861 -0.237 0.188 0.362 -0.459 0.069 0.157 0.391 -0.931 -0.044 0.473 -0.237 -0.334 0.039 0.443 -0.076 -0.591 -1.499 0.260 0.582 -0.070 -0.093 0.248 0.170 -0.415 -0.489 0.364 -0.688 0.464 -0.350 0.650 -0.350 -0.213 -0.861 0.318 0.213 0.061 N-6 LUT 3 2 4 0 0.000 0.000 -0.771 1.049 -1.536 0.175 -0.369 0.216 -0.096 -0.015 -0.015 0.590 -0.956 -0.524 0.284 -0.021 0.139 -1.131 -0.527 1.280 -1.251 -0.326 -0.556 0.674 -0.110 -0.541 0.044 0.760 -0.764 -1.515 -0.383 1.082 -0.383 -0.576 -0.799 1.171 -0.991 -0.064 0.135 0.050 -0.136 0.015 -0.045 0.570 -0.899 -1.939 -0.408 0.958 0.061 0.380 -0.568 0.325 -0.375 0.017 -0.017 -0.205 0.180 -0.594 -0.295 0.636 -0.047 -0.977 -0.023 0.577 0.023 N-5 LUT 3 2 4 0 0.000 -0.309 0.402 0.361 -0.768 0.105 0.505 -1.539 0.216 -0.100 0.543 0.085 -0.864 -0.670 0.678 -0.807 0.263 -0.932 -0.102 0.957 -0.732 -0.345 0.385 -0.307 0.135 -1.054 0.670 0.441 -0.813 -1.211 0.395 0.288 0.047 -0.238 0.084 0.739 -1.238 -0.272 0.300 -0.543 0.327 0.087 0.126 0.067 -0.322 -0.820 0.389 0.134 0.038 -0.273 -0.399 0.897 -0.858 -0.254 0.403 -1.254 0.505 -0.763 0.329 0.364 -0.204 -1.470 0.404 0.032 0.371 N-4 LUT 3 2 4 0 0.000 0.268 -0.016 0.415 -1.080 0.678 0.478 -1.492 -0.617 0.069 0.579 -0.032 -1.059 -1.342 1.208 -1.565 -0.062 -0.254 -0.047 0.904 -1.632 0.082 0.705 -0.314 -0.977 -0.154 0.772 0.225 -2.154 -0.660 0.836 0.147 -1.075 -0.238 0.169 0.648 -1.118 0.228 0.756 -0.522 -1.174 0.199 0.607 -0.031 -1.513 -0.892 0.883 0.108 -0.892 0.294 -0.369 0.368 -0.495 -0.314 1.160 -1.899 -0.530 0.119 0.515 -0.085 -0.881 -0.962 0.920 -0.165 -0.509 N-3 LUT 3 2 4 0 0.000 0.720 -1.194 0.749 -2.087 1.466 -0.977 -0.890 -2.392 1.044 -1.430 0.488 -2.600 -0.248 -0.248 0.691 -0.511 0.314 -2.512 1.257 -2.387 1.292 -1.631 0.196 -3.585 0.585 -2.415 1.129 -3.000 0.315 -1.194 0.988 -1.573 0.930 -3.143 0.857 -2.558 1.265 -2.312 0.273 -2.412 1.335 -2.285 0.200 -3.022 0.322 -0.737 1.000 -2.737 0.678 -1.322 0.888 -2.737 1.076 -1.266 0.251 -1.802 0.958 -1.429 0.456 -1.670 0.756 -0.907 0.462 -1.322 N-2 LUT 3 2 4 0 0.000 0.733 0.263 -0.322 -1.563 0.752 -0.663 -1.663 0.453 0.235 0.859 -1.131 -0.856 0.216 0.746 -1.369 -0.369 0.184 0.442 0.111 -1.231 0.446 0.492 -1.338 -0.260 -0.474 1.263 -0.871 -1.585 -0.415 1.059 -0.778 -0.778 0.745 0.180 -0.498 -1.048 0.767 -0.385 -1.233 0.146 0.058 1.012 -0.965 -1.218 -0.858 0.464 -0.536 0.464 0.000 0.619 0.147 -1.485 0.385 -0.155 -1.030 0.385 -0.128 1.100 -1.557 -0.734 -0.678 0.585 0.170 -0.415 N-1 LUT 3 2 4 0 0.000 -0.252 -0.110 1.055 -2.682 -0.817 1.403 -1.217 -1.486 -0.406 0.494 0.698 -2.225 -1.449 1.645 -2.150 -1.828 -0.568 -0.916 1.458 -4.375 -0.158 0.666 0.229 -1.536 -0.202 0.646 0.061 -0.939 -2.346 0.927 0.391 -0.761 -0.381 0.678 0.444 -1.878 -1.063 1.350 -0.654 -1.572 -0.483 0.517 0.581 -1.483 -1.322 1.138 0.000 -1.322 -0.170 -0.433 0.567 -0.170 -0.206 1.341 -1.585 -1.907 0.000 0.415 0.415 -1.585 -1.273 1.049 -0.273 -0.536 A LUT 3 2 4 0 0.000 1.974 -5.366 -5.366 -5.366 1.980 -5.801 -5.801 -5.801 1.989 -6.615 -6.615 -6.615 1.893 -3.392 -3.392 -3.392 1.971 -5.248 -5.248 -5.248 1.994 -7.433 -7.433 -7.433 1.972 -5.267 -5.267 -5.267 1.953 -4.539 -4.539 -4.539 1.953 -4.539 -4.539 -4.539 1.975 -5.435 -5.435 -5.435 1.977 -5.562 -5.562 -5.562 1.862 -3.044 -3.044 -3.044 1.853 -2.954 -2.954 -2.954 1.980 -5.788 -5.788 -5.788 1.931 -4.000 -4.000 -4.000 1.874 -3.170 -3.170 -3.170 T LUT 3 2 4 0 0.000 -6.745 -6.745 -6.745 1.990 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.340 -8.340 -8.340 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.620 -7.620 -7.620 1.994 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.585 -5.585 -5.585 1.977 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.394 -9.394 1.998 -9.394 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.426 -0.836 1.076 -0.769 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.531 -0.377 0.152 -0.568 -0.420 0.779 -1.144 0.117 0.014 1.056 -0.766 -1.628 -2.389 1.288 -0.855 -0.297 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -0.776 0.169 0.861 -1.072 -0.120 0.263 -0.322 0.111 -1.253 0.455 0.198 0.088 -1.652 0.295 0.710 -0.290 -0.888 -1.040 1.345 -1.209 -0.517 -0.331 0.210 0.432 -0.939 0.383 0.564 -0.524 -1.558 -0.728 1.360 -1.027 -0.667 -0.310 0.935 -0.617 -0.935 -0.020 0.620 -0.068 -0.302 0.294 0.381 -0.599 -2.075 -0.298 1.183 -0.561 -2.459 0.541 -2.459 1.126 -1.085 0.012 0.343 0.324 -3.858 -0.536 1.351 -0.536 -2.070 0.466 0.466 0.000 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.291 -0.206 0.239 -0.455 0.554 -0.089 -0.533 -0.150 -0.076 0.012 0.260 -0.242 0.301 -0.164 0.072 -0.279 0.498 -0.213 -0.766 0.186 -0.310 0.388 -0.083 -0.089 -7.864 -7.864 -7.864 1.995 1.995 -7.864 -7.864 -7.864 1.995 -7.864 -7.864 -7.864 TAG WMM 9 6 4 0 0.000 0.380 -0.228 0.153 -0.449 0.369 -0.068 -0.292 -0.092 -0.311 0.315 0.278 -0.439 0.278 0.009 -0.092 -0.246 0.220 -0.193 -0.535 0.345 -0.579 0.392 0.265 -0.292 -7.568 -7.568 -7.568 1.994 1.994 -7.568 -7.568 -7.568 -7.568 -7.568 1.994 -7.568 TGA WMM 9 6 4 0 0.000 0.237 -0.080 0.274 -0.586 0.468 -0.059 -0.479 -0.090 -0.299 0.220 0.224 -0.228 0.128 0.128 0.054 -0.367 0.617 -0.299 -0.890 0.155 -0.624 0.710 0.274 -0.984 -8.194 -8.194 -8.194 1.996 -8.194 -8.194 1.996 -8.194 1.996 -8.194 -8.194 -8.194 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam54-ro.hmm0000644000175000017500000023404011424066010015414 0ustar moellermoellerzoeHMM mammal 8 16 8 8 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Repeat 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.858651 Inter Esngl 0.141349 Inter ORF 1 Inter Repeat 1 Intron Eterm 0.158934 Intron Exon 0.841066 Intron ORF 1 Intron Repeat 1 ORF Inter 1 ORF Intron 1 Repeat Inter 1 Repeat Intron 1 0.411326 0.391133 0.197542 0.571272 0.241102 0.187625 0.525130 0.300259 0.174611 0.556701 0.240795 0.202504 0.843360 0.156640 0.833719 0.166281 0.847442 0.152558 Einit 2 DEFINED 0 249 -9.618 -9.485 -9.363 -9.251 -9.147 -9.050 -8.959 -8.873 -8.792 -8.716 -8.643 -8.582 -8.524 -8.468 -8.414 -8.362 -8.312 -8.263 -8.216 -8.171 -8.127 -8.083 -8.041 -8.000 -7.960 -7.921 -7.883 -7.846 -7.810 -7.775 -7.740 -7.709 -7.677 -7.647 -7.617 -7.588 -7.559 -7.531 -7.503 -7.476 -7.450 -7.444 -7.438 -7.432 -7.426 -7.420 -7.414 -7.408 -7.402 -7.396 -7.391 -7.381 -7.372 -7.362 -7.353 -7.344 -7.335 -7.326 -7.317 -7.308 -7.299 -7.301 -7.304 -7.306 -7.309 -7.311 -7.314 -7.316 -7.319 -7.321 -7.324 -7.343 -7.362 -7.381 -7.401 -7.421 -7.442 -7.462 -7.483 -7.504 -7.526 -7.537 -7.549 -7.561 -7.573 -7.585 -7.597 -7.609 -7.621 -7.634 -7.646 -7.668 -7.690 -7.713 -7.736 -7.759 -7.783 -7.807 -7.831 -7.856 -7.881 -7.896 -7.910 -7.925 -7.940 -7.955 -7.971 -7.986 -8.002 -8.017 -8.033 -8.039 -8.045 -8.051 -8.057 -8.062 -8.068 -8.074 -8.080 -8.086 -8.092 -8.107 -8.121 -8.136 -8.151 -8.167 -8.182 -8.198 -8.213 -8.229 -8.245 -8.263 -8.280 -8.298 -8.316 -8.334 -8.352 -8.371 -8.390 -8.409 -8.428 -8.444 -8.460 -8.476 -8.492 -8.508 -8.525 -8.542 -8.559 -8.576 -8.594 -8.608 -8.622 -8.636 -8.651 -8.665 -8.680 -8.695 -8.710 -8.725 -8.740 -8.748 -8.755 -8.763 -8.770 -8.778 -8.785 -8.793 -8.801 -8.808 -8.816 -8.825 -8.833 -8.842 -8.851 -8.859 -8.868 -8.877 -8.886 -8.895 -8.904 -8.908 -8.913 -8.917 -8.922 -8.926 -8.931 -8.936 -8.940 -8.945 -8.949 -8.958 -8.967 -8.975 -8.984 -8.993 -9.002 -9.010 -9.019 -9.028 -9.037 -9.048 -9.059 -9.070 -9.081 -9.092 -9.103 -9.114 -9.126 -9.137 -9.149 -9.164 -9.179 -9.195 -9.211 -9.227 -9.243 -9.259 -9.275 -9.292 -9.309 -9.335 -9.361 -9.388 -9.416 -9.444 -9.473 -9.502 -9.532 -9.563 -9.594 -9.626 -9.658 -9.692 -9.726 -9.761 -9.797 -9.833 -9.871 -9.910 -9.949 -9.976 -10.003 -10.031 -10.059 -10.088 -10.117 -10.147 -10.178 -10.209 GEOMETRIC 250 -1 166 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.178 -10.094 -10.014 -9.939 -9.868 -9.799 -9.734 -9.672 -9.612 -9.555 -9.500 -9.450 -9.402 -9.355 -9.310 -9.266 -9.224 -9.182 -9.142 -9.103 -9.065 -9.026 -8.987 -8.950 -8.913 -8.878 -8.843 -8.809 -8.776 -8.744 -8.712 -8.680 -8.649 -8.619 -8.589 -8.560 -8.532 -8.504 -8.476 -8.449 -8.423 -8.413 -8.404 -8.394 -8.385 -8.376 -8.366 -8.357 -8.348 -8.339 -8.330 -8.311 -8.292 -8.274 -8.256 -8.238 -8.220 -8.202 -8.185 -8.168 -8.151 -8.136 -8.120 -8.105 -8.090 -8.076 -8.061 -8.047 -8.032 -8.018 -8.004 -8.002 -8.001 -7.999 -7.998 -7.996 -7.994 -7.993 -7.991 -7.990 -7.988 -7.969 -7.951 -7.932 -7.914 -7.896 -7.879 -7.861 -7.844 -7.827 -7.810 -7.802 -7.794 -7.786 -7.778 -7.770 -7.762 -7.755 -7.747 -7.739 -7.732 -7.734 -7.736 -7.738 -7.740 -7.742 -7.744 -7.746 -7.748 -7.750 -7.752 -7.745 -7.739 -7.733 -7.726 -7.720 -7.714 -7.708 -7.702 -7.695 -7.689 -7.694 -7.699 -7.704 -7.709 -7.714 -7.718 -7.723 -7.728 -7.733 -7.738 -7.748 -7.758 -7.767 -7.777 -7.787 -7.797 -7.807 -7.818 -7.828 -7.838 -7.849 -7.861 -7.873 -7.884 -7.896 -7.908 -7.920 -7.932 -7.944 -7.957 -7.979 -8.002 -8.025 -8.048 -8.071 -8.096 -8.120 -8.145 -8.170 -8.196 -8.216 -8.237 -8.258 -8.279 -8.300 -8.322 -8.344 -8.366 -8.389 -8.412 -8.421 -8.431 -8.440 -8.449 -8.458 -8.468 -8.477 -8.486 -8.496 -8.505 -8.515 -8.524 -8.533 -8.542 -8.551 -8.561 -8.570 -8.580 -8.589 -8.599 -8.605 -8.611 -8.617 -8.623 -8.629 -8.636 -8.642 -8.648 -8.654 -8.661 -8.678 -8.695 -8.713 -8.730 -8.748 -8.766 -8.785 -8.804 -8.822 -8.842 -8.868 -8.894 -8.921 -8.948 -8.976 -9.005 -9.034 -9.064 -9.094 -9.125 -9.149 -9.174 -9.200 -9.226 -9.252 -9.279 -9.306 -9.334 -9.362 -9.391 -9.407 -9.423 -9.439 -9.455 -9.472 -9.489 -9.505 -9.523 -9.540 -9.557 -9.568 -9.579 -9.589 -9.600 -9.611 -9.622 -9.633 -9.644 -9.656 GEOMETRIC 250 -1 216 Exon 2 DEFINED 0 249 -12.298 -12.050 -11.838 -11.654 -11.490 -11.343 -11.210 -11.088 -10.975 -10.871 -10.773 -10.620 -10.481 -10.354 -10.238 -10.130 -10.030 -9.936 -9.848 -9.765 -9.687 -9.576 -9.474 -9.378 -9.288 -9.204 -9.124 -9.048 -8.977 -8.908 -8.843 -8.771 -8.702 -8.637 -8.574 -8.514 -8.457 -8.401 -8.348 -8.296 -8.247 -8.191 -8.138 -8.087 -8.037 -7.990 -7.943 -7.898 -7.855 -7.813 -7.771 -7.736 -7.701 -7.667 -7.634 -7.602 -7.570 -7.539 -7.509 -7.479 -7.450 -7.429 -7.409 -7.389 -7.369 -7.350 -7.331 -7.312 -7.293 -7.275 -7.256 -7.242 -7.227 -7.212 -7.198 -7.184 -7.169 -7.155 -7.141 -7.128 -7.114 -7.107 -7.101 -7.094 -7.088 -7.082 -7.075 -7.069 -7.062 -7.056 -7.050 -7.050 -7.051 -7.051 -7.052 -7.052 -7.053 -7.053 -7.054 -7.054 -7.055 -7.058 -7.061 -7.064 -7.067 -7.070 -7.073 -7.076 -7.080 -7.083 -7.086 -7.096 -7.107 -7.117 -7.128 -7.139 -7.149 -7.160 -7.171 -7.182 -7.193 -7.206 -7.218 -7.231 -7.243 -7.256 -7.269 -7.282 -7.296 -7.309 -7.322 -7.338 -7.355 -7.371 -7.388 -7.404 -7.421 -7.439 -7.456 -7.474 -7.491 -7.513 -7.534 -7.556 -7.578 -7.600 -7.623 -7.646 -7.670 -7.694 -7.718 -7.738 -7.759 -7.779 -7.800 -7.821 -7.843 -7.865 -7.887 -7.910 -7.933 -7.957 -7.982 -8.008 -8.033 -8.060 -8.086 -8.114 -8.141 -8.170 -8.199 -8.225 -8.251 -8.278 -8.305 -8.333 -8.362 -8.391 -8.420 -8.451 -8.481 -8.507 -8.534 -8.561 -8.588 -8.616 -8.644 -8.674 -8.703 -8.734 -8.764 -8.795 -8.826 -8.857 -8.890 -8.923 -8.957 -8.991 -9.027 -9.063 -9.101 -9.138 -9.177 -9.216 -9.257 -9.299 -9.342 -9.387 -9.433 -9.480 -9.529 -9.562 -9.595 -9.628 -9.663 -9.699 -9.735 -9.772 -9.811 -9.850 -9.891 -9.926 -9.962 -9.999 -10.036 -10.075 -10.115 -10.156 -10.199 -10.242 -10.287 -10.314 -10.342 -10.370 -10.398 -10.427 -10.457 -10.487 -10.518 -10.550 -10.582 -10.609 -10.636 -10.664 -10.692 -10.721 -10.750 -10.780 -10.811 -10.842 GEOMETRIC 250 -1 125 Inter 1 GEOMETRIC 0 -1 1000 Intron 1 GEOMETRIC 0 -1 811 ORF 2 DEFINED 0 249 -12.298 -12.050 -11.838 -11.654 -11.490 -11.343 -11.210 -11.088 -10.975 -10.871 -10.773 -10.620 -10.481 -10.354 -10.238 -10.130 -10.030 -9.936 -9.848 -9.765 -9.687 -9.576 -9.474 -9.378 -9.288 -9.204 -9.124 -9.048 -8.977 -8.908 -8.843 -8.771 -8.702 -8.637 -8.574 -8.514 -8.457 -8.401 -8.348 -8.296 -8.247 -8.191 -8.138 -8.087 -8.037 -7.990 -7.943 -7.898 -7.855 -7.813 -7.771 -7.736 -7.701 -7.667 -7.634 -7.602 -7.570 -7.539 -7.509 -7.479 -7.450 -7.429 -7.409 -7.389 -7.369 -7.350 -7.331 -7.312 -7.293 -7.275 -7.256 -7.242 -7.227 -7.212 -7.198 -7.184 -7.169 -7.155 -7.141 -7.128 -7.114 -7.107 -7.101 -7.094 -7.088 -7.082 -7.075 -7.069 -7.062 -7.056 -7.050 -7.050 -7.051 -7.051 -7.052 -7.052 -7.053 -7.053 -7.054 -7.054 -7.055 -7.058 -7.061 -7.064 -7.067 -7.070 -7.073 -7.076 -7.080 -7.083 -7.086 -7.096 -7.107 -7.117 -7.128 -7.139 -7.149 -7.160 -7.171 -7.182 -7.193 -7.206 -7.218 -7.231 -7.243 -7.256 -7.269 -7.282 -7.296 -7.309 -7.322 -7.338 -7.355 -7.371 -7.388 -7.404 -7.421 -7.439 -7.456 -7.474 -7.491 -7.513 -7.534 -7.556 -7.578 -7.600 -7.623 -7.646 -7.670 -7.694 -7.718 -7.738 -7.759 -7.779 -7.800 -7.821 -7.843 -7.865 -7.887 -7.910 -7.933 -7.957 -7.982 -8.008 -8.033 -8.060 -8.086 -8.114 -8.141 -8.170 -8.199 -8.225 -8.251 -8.278 -8.305 -8.333 -8.362 -8.391 -8.420 -8.451 -8.481 -8.507 -8.534 -8.561 -8.588 -8.616 -8.644 -8.674 -8.703 -8.734 -8.764 -8.795 -8.826 -8.857 -8.890 -8.923 -8.957 -8.991 -9.027 -9.063 -9.101 -9.138 -9.177 -9.216 -9.257 -9.299 -9.342 -9.387 -9.433 -9.480 -9.529 -9.562 -9.595 -9.628 -9.663 -9.699 -9.735 -9.772 -9.811 -9.850 -9.891 -9.926 -9.962 -9.999 -10.036 -10.075 -10.115 -10.156 -10.199 -10.242 -10.287 -10.314 -10.342 -10.370 -10.398 -10.427 -10.457 -10.487 -10.518 -10.550 -10.582 -10.609 -10.636 -10.664 -10.692 -10.721 -10.750 -10.780 -10.811 -10.842 GEOMETRIC 250 -1 125 Repeat 1 CONSTANT 0 -1 0 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 -0.240 -0.227 0.599 -0.350 0.029 0.633 -1.472 0.095 -0.444 0.042 0.627 -0.535 -1.104 0.285 0.490 -0.133 -0.892 0.069 0.757 -0.469 -0.129 0.573 -1.543 0.327 -0.826 0.190 0.502 -0.187 -1.411 0.268 0.686 -0.302 -0.231 -0.276 0.710 -0.544 -0.182 0.713 -1.815 0.257 -0.280 0.111 0.535 -0.626 -0.936 0.124 0.729 -0.454 -0.075 0.046 0.203 -0.207 -0.248 0.568 -2.030 0.517 -0.450 -0.025 0.473 -0.157 -1.008 0.345 0.197 0.120 I-36 LUT 3 2 4 0 0.000 -0.015 -0.064 0.496 -0.636 -0.070 0.689 -1.587 0.141 -0.288 0.243 0.409 -0.578 -0.746 0.084 0.778 -0.668 -1.039 0.100 0.757 -0.412 -0.160 0.557 -1.670 0.400 -0.645 0.126 0.637 -0.485 -1.483 0.349 0.656 -0.335 -0.338 0.086 0.592 -0.642 -0.068 0.614 -1.803 0.298 -0.462 0.101 0.512 -0.367 -0.973 0.221 0.659 -0.422 0.123 -0.202 0.191 -0.151 -0.381 0.677 -2.529 0.547 -0.412 0.075 0.482 -0.324 -1.000 0.184 0.383 0.084 I-35 LUT 3 2 4 0 0.000 -0.059 0.000 0.359 -0.400 0.161 0.601 -1.816 0.113 -0.260 0.171 0.412 -0.498 -1.063 0.290 0.478 -0.142 -0.767 0.006 0.776 -0.523 0.031 0.525 -1.864 0.339 -0.798 0.268 0.531 -0.366 -1.444 0.276 0.682 -0.290 -0.328 0.145 0.551 -0.661 -0.273 0.651 -1.642 0.358 -0.388 0.218 0.482 -0.564 -1.100 0.174 0.746 -0.458 -0.181 0.127 0.259 -0.270 -0.266 0.702 -2.294 0.419 -0.295 -0.102 0.479 -0.219 -0.958 0.413 0.161 0.050 I-34 LUT 3 2 4 0 0.000 -0.080 0.014 0.576 -0.854 0.233 0.409 -1.803 0.276 -0.335 0.080 0.599 -0.654 -1.127 0.111 0.476 0.099 -0.925 0.086 0.708 -0.361 -0.129 0.537 -1.692 0.406 -0.916 0.205 0.490 -0.130 -1.287 0.405 0.592 -0.397 -0.197 0.193 0.525 -0.873 -0.105 0.562 -1.590 0.336 -0.390 0.273 0.426 -0.546 -1.225 0.323 0.577 -0.271 0.154 0.111 0.224 -0.646 -0.152 0.612 -2.152 0.429 -0.219 -0.018 0.357 -0.197 -1.062 0.494 0.128 0.028 I-33 LUT 3 2 4 0 0.000 -0.011 -0.126 0.423 -0.415 -0.200 0.710 -1.438 0.169 -0.526 0.236 0.523 -0.534 -0.868 0.191 0.583 -0.299 -0.921 0.158 0.647 -0.340 -0.050 0.403 -1.519 0.447 -0.799 0.232 0.554 -0.353 -1.394 0.311 0.711 -0.431 -0.418 0.015 0.670 -0.623 -0.247 0.750 -1.851 0.261 -0.307 0.348 0.337 -0.609 -1.192 0.207 0.758 -0.480 0.028 -0.210 0.191 -0.036 -0.283 0.618 -2.510 0.554 -0.082 -0.066 0.320 -0.232 -0.872 0.464 -0.002 0.105 I-32 LUT 3 2 4 0 0.000 -0.416 0.069 0.561 -0.462 -0.073 0.652 -1.787 0.249 -0.241 0.251 0.349 -0.534 -0.984 0.239 0.415 -0.028 -0.841 0.200 0.673 -0.517 -0.116 0.490 -1.716 0.453 -0.533 0.188 0.441 -0.300 -1.365 0.373 0.594 -0.310 -0.627 0.174 0.628 -0.559 -0.218 0.641 -2.050 0.422 -0.355 0.285 0.311 -0.397 -1.100 0.186 0.651 -0.277 -0.051 0.156 0.210 -0.388 -0.184 0.609 -2.289 0.475 -0.076 -0.141 0.383 -0.252 -0.863 0.357 0.082 0.152 I-31 LUT 3 2 4 0 0.000 -0.226 -0.029 0.456 -0.335 -0.097 0.668 -1.803 0.250 -0.426 0.284 0.363 -0.411 -0.893 0.174 0.564 -0.227 -0.802 0.312 0.575 -0.524 -0.135 0.595 -1.801 0.370 -0.760 0.173 0.425 -0.090 -1.313 0.324 0.655 -0.376 -0.299 0.242 0.469 -0.688 -0.329 0.722 -1.802 0.342 -0.376 0.259 0.365 -0.425 -1.195 0.316 0.573 -0.268 0.400 -0.081 -0.162 -0.249 -0.147 0.567 -2.451 0.518 0.082 0.025 0.091 -0.219 -1.110 0.458 0.037 0.185 I-30 LUT 3 2 4 0 0.000 -0.228 0.048 0.314 -0.203 -0.113 0.674 -1.783 0.250 -0.379 0.284 0.376 -0.483 -0.777 0.114 0.557 -0.213 -1.217 0.328 0.625 -0.372 -0.096 0.523 -1.639 0.386 -1.010 0.257 0.467 -0.111 -1.349 0.375 0.691 -0.523 -0.406 0.411 0.461 -0.891 -0.378 0.728 -2.021 0.408 -0.428 0.435 0.250 -0.484 -0.977 0.320 0.463 -0.209 0.248 0.129 0.015 -0.497 0.115 0.436 -2.217 0.432 0.033 -0.080 0.155 -0.125 -0.583 0.406 -0.048 0.058 I-29 LUT 3 2 4 0 0.000 -0.243 0.264 0.182 -0.287 -0.097 0.569 -1.743 0.359 -0.288 0.438 0.163 -0.503 -0.939 0.274 0.494 -0.215 -0.818 0.303 0.474 -0.303 -0.144 0.523 -1.658 0.423 -0.830 0.350 0.121 0.104 -1.419 0.437 0.588 -0.379 -0.619 0.375 0.405 -0.459 -0.393 0.706 -1.774 0.395 -0.517 0.308 0.317 -0.290 -1.074 0.311 0.656 -0.495 0.502 -0.051 -0.078 -0.575 -0.051 0.521 -2.664 0.528 0.157 -0.168 0.187 -0.223 -0.947 0.520 -0.076 0.136 I-28 LUT 3 2 4 0 0.000 -0.255 0.458 0.150 -0.558 -0.163 0.697 -1.879 0.279 -0.540 0.540 0.151 -0.419 -0.910 0.274 0.485 -0.219 -1.008 0.327 0.416 -0.130 -0.150 0.563 -1.923 0.441 -1.027 0.557 0.027 0.027 -1.232 0.481 0.468 -0.330 -0.479 0.505 0.162 -0.427 -0.395 0.761 -2.129 0.396 -0.515 0.346 0.176 -0.153 -0.951 0.249 0.597 -0.356 0.289 0.213 -0.277 -0.333 -0.082 0.479 -2.630 0.585 0.206 0.070 -0.091 -0.220 -0.834 0.585 -0.108 0.016 I-27 LUT 3 2 4 0 0.000 -0.115 0.191 0.271 -0.457 -0.388 0.776 -1.915 0.332 -0.620 0.435 0.287 -0.363 -0.771 0.415 0.317 -0.260 -0.737 0.400 0.357 -0.322 -0.146 0.490 -2.204 0.561 -0.403 0.182 0.026 0.126 -1.307 0.480 0.543 -0.427 -0.690 0.589 0.150 -0.384 -0.506 0.756 -1.911 0.423 -0.395 0.544 -0.167 -0.167 -1.338 0.375 0.601 -0.338 0.480 -0.266 -0.219 -0.129 0.134 0.459 -2.902 0.480 0.252 -0.065 0.039 -0.276 -0.758 0.402 -0.110 0.216 I-26 LUT 3 2 4 0 0.000 -0.158 0.365 0.066 -0.380 -0.281 0.723 -2.044 0.361 -0.383 0.457 -0.030 -0.183 -0.599 0.368 0.326 -0.330 -1.008 0.527 0.143 -0.062 -0.285 0.585 -2.133 0.537 -0.709 0.163 0.182 0.182 -1.264 0.459 0.476 -0.289 -0.775 0.524 0.211 -0.287 -0.641 0.681 -2.274 0.631 -0.490 0.520 0.095 -0.347 -1.214 0.289 0.594 -0.254 0.507 -0.073 -0.272 -0.322 0.172 0.410 -3.049 0.510 0.403 -0.109 -0.239 -0.146 -0.841 0.512 -0.096 0.111 I-25 LUT 3 2 4 0 0.000 -0.359 0.487 -0.082 -0.194 -0.175 0.627 -1.753 0.349 -0.503 0.503 -0.113 -0.071 -0.857 0.269 0.430 -0.159 -0.786 0.441 0.306 -0.275 -0.328 0.597 -2.050 0.535 -0.886 0.545 0.178 -0.203 -1.500 0.520 0.440 -0.226 -0.903 0.677 0.133 -0.378 -0.580 0.688 -2.402 0.615 -0.894 0.532 0.023 0.000 -1.155 0.325 0.510 -0.194 0.553 -0.118 -0.412 -0.219 0.196 0.328 -2.958 0.556 0.603 -0.139 -0.375 -0.320 -0.645 0.355 -0.149 0.238 I-24 LUT 3 2 4 0 0.000 -0.278 0.494 -0.135 -0.224 -0.264 0.659 -2.057 0.430 -0.681 0.656 -0.071 -0.238 -0.621 0.402 0.282 -0.299 -0.996 0.535 0.170 -0.113 -0.306 0.461 -2.050 0.654 -0.510 0.195 0.033 0.176 -1.383 0.483 0.452 -0.233 -0.960 0.769 -0.008 -0.344 -0.802 0.713 -2.299 0.664 -0.630 0.513 -0.091 -0.018 -1.302 0.305 0.619 -0.280 0.680 0.166 -0.618 -0.679 0.184 0.335 -3.365 0.590 0.675 -0.228 -0.557 -0.200 -0.634 0.434 -0.234 0.207 I-23 LUT 3 2 4 0 0.000 -0.280 0.713 -0.637 -0.161 -0.165 0.634 -1.573 0.287 -0.759 0.640 -0.179 -0.048 -0.760 0.214 0.477 -0.222 -1.116 0.493 0.241 -0.075 -0.343 0.558 -2.238 0.611 -0.555 0.445 -0.389 0.257 -1.416 0.582 0.420 -0.339 -0.600 0.825 -0.137 -0.600 -0.885 0.683 -2.351 0.729 -0.679 0.637 -0.268 -0.014 -1.313 0.513 0.364 -0.178 0.652 0.109 -0.632 -0.505 0.088 0.407 -3.103 0.580 0.602 -0.052 -0.677 -0.165 -0.829 0.479 -0.168 0.206 I-22 LUT 3 2 4 0 0.000 -0.463 0.602 -0.363 -0.030 -0.300 0.683 -1.955 0.405 -0.661 0.820 -0.297 -0.342 -1.155 0.430 0.453 -0.260 -0.903 0.633 -0.040 -0.086 -0.487 0.578 -2.268 0.665 -0.836 0.534 -0.173 0.144 -1.419 0.509 0.420 -0.210 -1.015 0.969 -0.193 -0.571 -0.765 0.562 -2.121 0.770 -0.802 0.593 -0.319 0.158 -1.422 0.422 0.473 -0.153 0.676 0.000 -0.763 -0.300 0.289 0.217 -3.060 0.581 0.583 -0.026 -0.768 -0.100 -0.900 0.505 -0.209 0.239 I-21 LUT 3 2 4 0 0.000 -0.427 0.829 -0.540 -0.336 -0.308 0.671 -1.776 0.387 -0.462 0.651 -0.476 -0.023 -0.881 0.385 0.354 -0.196 -0.961 0.631 -0.062 -0.029 -0.299 0.471 -2.130 0.653 -0.625 0.476 -0.076 0.017 -1.500 0.515 0.335 -0.064 -1.277 1.015 -0.320 -0.386 -0.954 0.578 -2.007 0.801 -0.664 0.475 -0.201 0.149 -1.673 0.526 0.454 -0.190 0.682 -0.021 -0.939 -0.170 0.077 0.403 -3.101 0.591 0.685 -0.147 -0.871 -0.085 -0.964 0.554 -0.323 0.287 I-20 LUT 3 2 4 0 0.000 -0.622 0.707 -0.444 -0.025 -0.200 0.766 -1.892 0.212 -0.724 0.711 -0.420 0.013 -1.150 0.281 0.478 -0.086 -0.980 0.573 -0.127 0.124 -0.652 0.610 -2.164 0.691 -0.818 0.405 -0.221 0.323 -1.846 0.552 0.428 -0.136 -0.887 0.899 -0.233 -0.427 -0.786 0.745 -2.510 0.650 -1.111 0.464 0.091 0.128 -1.668 0.531 0.302 0.012 0.418 0.266 -0.688 -0.251 -0.160 0.415 -2.776 0.701 0.435 0.018 -0.738 0.051 -0.973 0.507 -0.284 0.319 I-19 LUT 3 2 4 0 0.000 -0.443 0.723 -0.572 -0.087 -0.337 0.728 -1.894 0.360 -0.859 0.764 -0.401 -0.011 -1.376 0.403 0.410 -0.054 -0.943 0.680 -0.050 -0.134 -0.505 0.596 -2.194 0.646 -0.984 0.659 -0.121 -0.006 -2.013 0.586 0.340 -0.022 -0.694 0.959 -0.483 -0.469 -0.946 0.760 -2.290 0.663 -0.764 0.580 -0.129 0.003 -1.730 0.292 0.650 -0.145 0.301 0.288 -0.955 0.045 -0.192 0.432 -2.859 0.712 0.178 0.065 -0.636 0.238 -1.372 0.475 -0.290 0.491 I-18 LUT 3 2 4 0 0.000 -0.442 0.510 -0.264 0.010 -0.322 0.765 -1.827 0.285 -0.672 0.705 -0.350 -0.061 -1.547 0.387 0.292 0.171 -1.241 0.727 -0.277 0.133 -0.485 0.575 -1.972 0.624 -1.306 0.524 0.027 0.187 -1.831 0.493 0.322 0.085 -1.470 1.139 -0.501 -0.455 -0.785 0.843 -2.456 0.530 -1.019 0.663 -0.190 0.066 -1.641 0.617 0.292 -0.118 -0.031 0.357 -0.944 0.288 -0.619 0.489 -2.965 0.862 -0.021 -0.026 -0.620 0.467 -1.607 0.522 -0.213 0.457 I-17 LUT 3 2 4 0 0.000 -0.566 0.710 -1.019 0.257 -0.559 0.901 -2.109 0.290 -1.000 0.827 -0.353 -0.084 -1.222 0.492 0.307 -0.108 -0.966 0.711 -0.410 0.135 -0.818 0.675 -2.060 0.675 -2.228 0.888 -0.005 -0.090 -2.203 0.565 0.293 0.109 -1.248 1.051 -0.482 -0.337 -1.429 0.837 -1.711 0.620 -0.857 0.530 -0.179 0.165 -2.168 0.579 0.417 -0.077 -0.366 0.406 -1.103 0.519 -1.069 0.630 -2.647 0.861 -0.449 0.246 -0.547 0.483 -1.622 0.644 -0.221 0.327 I-16 LUT 3 2 4 0 0.000 -0.368 0.578 -0.477 0.020 -0.666 0.780 -2.043 0.495 -1.136 0.639 -0.136 0.108 -1.507 0.522 0.117 0.173 -1.150 0.771 -0.771 0.329 -0.729 0.646 -1.953 0.654 -1.421 0.429 0.093 0.279 -2.278 0.668 0.175 0.106 -1.589 0.996 -0.473 -0.070 -0.962 0.849 -2.284 0.565 -1.176 0.647 0.018 -0.031 -2.058 0.471 0.407 0.067 -0.388 0.378 -2.295 0.793 -1.444 0.698 -3.133 0.923 -1.088 0.333 -0.519 0.653 -2.156 0.630 -0.349 0.528 I-15 LUT 3 2 4 0 0.000 -0.769 0.725 -0.566 0.117 -0.803 0.885 -2.040 0.419 -0.456 0.641 -0.391 -0.075 -1.622 0.478 0.262 0.115 -1.376 0.867 -0.643 0.202 -1.003 0.721 -2.201 0.709 -1.848 0.663 -0.082 0.256 -2.616 0.640 0.174 0.202 -1.235 0.861 -1.005 0.334 -1.010 0.811 -2.205 0.616 -1.173 0.567 -0.186 0.258 -2.149 0.654 0.222 0.049 -1.000 0.640 -1.087 0.556 -1.361 0.678 -3.096 0.922 -1.401 0.507 -0.788 0.697 -2.309 0.675 -0.469 0.565 I-14 LUT 3 2 4 0 0.000 -0.576 0.902 -1.576 0.171 -0.888 0.816 -2.007 0.537 -1.546 0.791 -0.472 0.272 -1.633 0.609 -0.184 0.347 -1.421 0.696 -1.053 0.608 -0.959 0.689 -2.018 0.702 -2.143 0.718 -0.050 0.217 -2.667 0.684 0.085 0.233 -0.883 0.657 -0.838 0.403 -1.379 0.929 -2.379 0.603 -1.369 0.667 -0.228 0.228 -2.311 0.596 0.155 0.231 -1.387 0.613 -1.579 0.810 -1.786 0.602 -3.019 1.049 -1.578 0.484 -0.697 0.722 -2.380 0.617 -0.435 0.617 I-13 LUT 3 2 4 0 0.000 -0.605 0.833 -1.605 0.302 -1.000 0.905 -2.607 0.549 -1.040 0.857 -0.509 0.000 -1.886 0.436 -0.123 0.545 -1.529 0.986 -1.424 0.379 -1.218 0.684 -2.124 0.794 -1.575 0.635 -0.459 0.469 -2.624 0.654 0.093 0.260 -1.108 1.008 -1.412 0.201 -1.628 0.950 -2.628 0.663 -1.516 0.566 -0.112 0.315 -2.174 0.666 0.250 0.004 -1.061 0.605 -2.597 0.876 -1.814 0.581 -3.182 1.077 -1.671 0.366 -0.694 0.831 -2.733 0.668 -0.483 0.628 I-12 LUT 3 2 4 0 0.000 -0.819 0.793 -1.819 0.503 -1.582 1.029 -2.405 0.523 -1.778 1.030 -0.678 0.059 -2.421 0.671 -0.145 0.397 -1.921 0.881 -3.050 0.827 -1.140 0.683 -2.325 0.800 -2.242 0.928 -0.657 0.324 -2.730 0.756 -0.078 0.278 -1.178 0.949 -1.841 0.432 -2.058 0.852 -2.236 0.802 -1.725 0.670 -0.414 0.439 -2.558 0.694 0.048 0.237 -0.868 0.687 -3.106 0.788 -2.076 0.591 -3.468 1.115 -1.900 0.405 -0.813 0.879 -2.232 0.701 -0.721 0.637 I-11 LUT 3 2 4 0 0.000 -0.807 0.958 -3.129 0.456 -1.349 0.711 -2.904 0.877 -1.874 0.541 -0.290 0.541 -2.618 0.736 -0.618 0.604 -1.209 0.660 -3.588 0.929 -1.530 0.601 -2.301 0.952 -2.380 0.637 -0.885 0.776 -3.220 0.606 -0.151 0.556 -1.492 0.447 -2.492 1.073 -1.952 0.706 -3.289 1.006 -2.267 0.501 -0.360 0.676 -2.884 0.570 0.122 0.369 -1.615 0.349 -3.937 1.223 -1.999 0.527 -3.262 1.141 -1.868 0.307 -0.833 0.947 -2.474 0.583 -0.523 0.701 I-10 LUT 3 2 4 0 0.000 -0.822 0.580 -4.629 0.925 -1.382 1.146 -3.342 0.383 -0.202 -0.202 -0.939 0.798 -1.816 0.703 -0.478 0.454 -1.618 0.940 -3.466 0.736 -1.442 0.690 -2.232 0.853 -2.934 0.750 -0.612 0.616 -3.089 0.707 -0.077 0.380 -1.209 0.906 -2.472 0.598 -1.754 0.842 -3.273 0.854 -1.807 0.453 -0.078 0.484 -2.569 0.807 -0.064 0.170 -1.403 0.775 -3.651 0.873 -2.198 0.624 -3.433 1.103 -1.747 0.208 -0.829 0.988 -2.799 0.696 -0.466 0.597 I-9 LUT 3 2 4 0 0.000 -0.092 0.567 -3.340 0.567 -2.073 0.796 -2.348 0.871 -1.322 0.485 -1.322 0.848 -2.927 0.764 -0.020 0.243 -1.259 0.880 -5.651 0.784 -1.312 0.672 -2.507 0.871 -1.892 0.674 -1.069 0.729 -2.667 0.677 0.039 0.283 -1.471 1.047 -2.609 0.496 -2.030 0.892 -2.374 0.771 -1.845 0.415 -0.538 0.765 -2.201 0.884 -0.136 0.038 -1.227 0.556 -5.870 1.060 -1.988 0.478 -3.539 1.182 -1.833 0.047 -1.084 1.147 -2.353 0.618 -0.384 0.588 I-8 LUT 3 2 4 0 0.000 -0.899 0.826 -2.015 0.529 -1.082 1.129 -2.700 0.247 -0.322 0.263 0.263 -0.322 -1.716 0.911 -0.295 0.000 -1.213 0.917 -5.213 0.726 -0.840 0.682 -2.093 0.680 -1.637 0.363 0.064 0.429 -2.445 0.810 0.025 0.065 -1.033 1.096 -3.033 0.324 -1.327 0.984 -2.596 0.545 -1.877 0.599 0.054 0.232 -1.834 0.902 0.032 -0.271 -0.869 0.807 -6.039 0.755 -1.657 0.732 -3.029 0.925 -1.767 0.513 -0.842 0.783 -2.492 0.868 -0.305 0.248 I-7 LUT 3 2 4 0 0.000 -0.913 1.038 -4.820 0.465 -1.251 1.108 -2.453 0.313 -0.222 0.515 -0.222 -0.222 -1.728 0.957 -0.513 0.079 -1.516 1.259 -6.217 0.315 -1.188 0.848 -2.784 0.692 -1.813 0.684 -0.377 0.421 -2.311 0.895 -0.305 0.176 -1.055 1.174 -3.470 0.230 -1.993 1.228 -4.508 0.446 -1.856 0.752 -0.467 0.396 -2.844 0.874 -0.020 0.059 -1.599 0.995 -6.299 0.734 -2.201 0.893 -3.796 0.890 -2.200 0.676 -0.942 0.735 -2.399 0.980 -1.051 0.438 I-6 LUT 3 2 4 0 0.000 -0.183 1.065 -3.183 -0.124 -1.750 1.379 -3.876 0.048 -0.807 0.193 -0.807 0.778 -2.815 1.106 -1.163 0.332 -1.591 1.085 -5.363 0.606 -1.462 1.164 -3.261 0.370 -2.532 0.789 -0.816 0.614 -2.877 1.117 -0.837 0.183 -1.322 0.794 -2.585 0.766 -2.531 1.401 -3.338 0.121 -1.150 0.771 -0.440 0.145 -2.762 1.138 -0.976 0.194 -1.248 0.666 -5.948 0.982 -2.522 1.087 -3.638 0.698 -1.827 0.440 -0.815 0.842 -2.611 0.985 -1.423 0.569 I-5 LUT 3 2 4 0 0.000 0.171 0.358 -3.687 0.599 -1.744 1.081 -3.414 0.578 -0.585 1.000 0.000 -1.585 -3.007 0.122 -1.038 1.202 -1.306 1.089 -2.830 0.409 -1.590 0.996 -3.050 0.635 -1.115 0.692 -0.331 0.174 -3.044 0.450 -0.964 1.000 -0.627 0.571 -0.807 0.373 -2.732 0.909 -3.658 0.921 -1.606 0.628 -0.336 0.415 -3.111 0.098 -1.003 1.211 -0.830 0.773 -3.263 0.700 -2.844 1.139 -3.984 0.674 -1.225 0.461 -0.647 0.638 -3.184 0.570 -1.069 0.948 I-4 LUT 3 2 4 0 0.000 0.427 0.463 -0.895 -0.435 0.382 0.846 -1.722 -0.747 0.212 0.074 0.659 -2.248 -1.194 0.331 0.607 -0.356 0.294 0.808 -1.426 -0.619 0.380 0.604 -1.150 -0.456 -0.753 0.165 0.918 -1.338 -1.118 0.165 0.915 -0.907 -0.027 0.226 0.630 -1.728 0.050 0.916 -1.491 -0.469 0.168 0.225 0.431 -1.476 -1.190 0.488 0.628 -0.704 0.126 0.862 -2.838 -0.072 -0.240 0.949 -1.710 -0.125 -0.280 0.067 0.815 -1.438 -1.257 0.443 0.341 -0.065 I-3 LUT 3 2 4 0 0.000 -2.796 1.789 -5.966 -1.381 -2.967 1.624 -6.426 -0.360 -3.143 1.796 -4.728 -1.406 -2.818 1.490 -3.555 -0.052 -3.468 1.845 -8.860 -1.670 -3.105 1.579 -8.372 -0.162 -3.501 1.768 -5.308 -1.060 -4.087 1.664 -5.672 -0.412 -2.150 1.749 -4.735 -1.413 -3.280 1.640 -5.087 -0.415 -2.654 1.802 -5.157 -1.612 -3.524 1.626 -4.524 -0.354 -2.713 1.703 -7.414 -0.770 -3.860 1.557 -8.905 -0.019 -3.101 1.749 -6.949 -0.958 -3.420 1.518 -5.313 0.024 A LUT 3 2 4 0 0.000 1.951 -4.476 -4.476 -4.476 1.998 -9.355 -9.355 -9.355 0.678 -0.322 -0.322 -0.322 1.985 -6.180 -6.180 -6.180 1.966 -5.000 -5.000 -5.000 1.999 -9.917 -9.917 -9.917 1.000 -0.585 -0.585 -0.585 1.996 -8.208 -8.208 -8.208 1.959 -4.728 -4.728 -4.728 1.999 -9.589 -9.589 -9.589 1.621 -1.700 -1.700 -1.700 1.990 -6.778 -6.778 -6.778 1.913 -3.672 -3.672 -3.672 1.998 -8.920 -8.920 -8.920 1.720 -2.087 -2.087 -2.087 1.992 -7.142 -7.142 -7.142 G LUT 3 2 4 0 0.000 -6.504 -6.504 1.988 -6.504 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.488 -11.488 2.000 -11.488 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -2.858 -2.858 1.842 -2.858 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.267 -9.267 1.998 -9.267 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.198 -0.722 1.081 -1.299 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.316 -0.229 -0.007 0.431 -0.404 0.288 -1.287 0.691 -0.043 -0.197 -0.261 0.403 -1.403 -0.352 0.790 0.150 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.385 0.099 -0.183 -0.431 0.393 0.128 -0.818 0.038 -0.093 0.286 0.132 -0.419 -1.431 0.474 0.466 -0.219 0.164 0.261 -0.585 0.021 0.158 0.158 -1.252 0.432 -0.428 -0.092 0.555 -0.235 -1.125 0.402 0.685 -0.706 -0.044 -0.080 0.430 -0.439 0.047 0.440 -1.524 0.336 0.183 0.236 -0.383 -0.119 -0.822 -0.255 0.888 -0.424 -1.052 1.070 -2.555 0.320 -0.025 0.497 -1.268 0.251 -0.189 -0.051 0.420 -0.286 -1.463 0.720 -0.149 0.122 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.723 0.012 0.847 -0.769 -0.094 0.801 -1.042 -0.260 -0.613 0.597 0.226 -0.591 -1.603 0.681 0.507 -0.630 -0.999 -0.062 1.061 -1.134 -0.223 0.732 -1.125 0.035 -0.613 0.521 0.470 -0.925 -1.725 0.173 1.047 -0.987 -0.414 0.036 0.655 -0.622 -0.326 0.931 -1.551 -0.067 -0.263 0.644 0.118 -0.948 -1.342 0.126 1.053 -1.188 . 1.289 . 0.639 -0.407 0.805 -1.262 0.114 . 0.540 0.509 0.168 -2.207 0.921 -0.229 0.051 -0.888 0.251 0.869 -1.173 -0.075 0.718 -0.326 -0.718 -1.029 1.075 -0.530 -0.494 -2.465 0.938 0.423 -0.831 -1.410 0.138 1.087 -1.324 -0.150 0.642 -0.831 -0.034 -0.737 0.658 0.439 -1.098 -2.130 0.071 1.254 -1.573 -1.152 0.279 0.904 -1.104 -0.882 1.046 -0.438 -0.613 -1.043 0.834 0.371 -1.189 -2.700 0.155 1.322 -2.101 . 1.510 . 0.205 -0.371 0.763 -0.504 -0.279 . 0.675 0.625 -0.217 -2.776 1.155 -0.367 -0.231 -0.624 -0.098 1.034 -1.437 -0.135 0.776 -0.528 -0.548 -0.799 0.753 0.188 -0.737 -2.345 0.794 0.587 -0.817 -1.319 -0.145 1.238 -1.572 -0.237 0.712 -0.679 -0.171 -1.071 0.549 0.708 -1.227 -1.999 -0.151 1.340 -1.657 -0.751 -0.006 0.956 -1.091 -0.588 0.910 -0.778 -0.196 -0.807 0.949 -0.134 -0.769 -1.889 0.014 1.279 -1.774 . 1.464 . 0.311 -0.385 0.761 -0.778 -0.066 . 0.578 0.657 -0.105 -2.583 1.036 -0.433 0.060 -0.322 -0.015 0.704 -0.783 -0.188 0.887 -1.202 -0.255 -1.273 1.121 -0.703 -0.329 -1.984 0.939 0.162 -0.492 -1.179 0.130 0.985 -1.046 -0.153 0.686 -1.249 0.099 -0.566 0.531 0.417 -0.875 -1.674 0.198 1.040 -1.050 -0.586 0.192 0.729 -0.906 -0.456 1.024 -1.530 -0.166 -0.522 0.631 0.296 -0.925 -1.804 0.273 1.087 -1.393 . 1.391 . 0.461 -0.402 0.847 -1.395 0.089 . 0.477 0.719 -0.057 -2.196 1.040 -0.327 -0.108 -0.639 -0.078 0.920 -0.946 -0.014 0.745 -1.047 -0.236 -0.481 0.476 0.263 -0.530 -1.370 0.306 0.774 -0.585 -1.296 0.025 1.130 -1.370 -0.059 0.658 -1.139 0.012 -0.769 0.293 0.793 -1.133 -1.690 0.030 1.189 -1.360 -0.582 -0.057 0.818 -0.717 -0.326 0.876 -1.324 -0.047 -0.331 0.611 0.263 -1.067 -1.436 -0.111 1.217 -1.395 . 1.468 . 0.303 -0.299 0.754 -1.261 0.117 . 0.362 0.876 -0.186 -1.537 0.609 0.150 0.029 -0.858 0.181 0.941 -1.342 -0.178 0.814 -0.562 -0.556 -1.338 1.066 -0.293 -0.525 -2.691 0.938 0.461 -0.857 -1.341 0.017 1.147 -1.404 0.224 0.123 -0.419 -0.007 -0.699 0.407 0.707 -1.233 -2.123 -0.050 1.309 -1.613 -1.428 0.209 1.048 -1.305 -0.854 1.049 -0.283 -0.849 -0.930 0.784 0.433 -1.310 -2.556 0.084 1.350 -2.177 . 1.484 . 0.267 -0.448 0.805 -0.712 -0.138 . 0.716 0.642 -0.327 -2.650 1.178 -0.303 -0.382 -0.578 -0.238 1.040 -1.230 -0.336 0.816 -0.353 -0.590 -0.864 0.821 0.151 -0.803 -1.741 0.242 0.941 -0.741 -2.001 0.162 1.256 -2.045 -0.678 0.768 -0.046 -0.508 -1.409 0.807 0.686 -1.922 -2.412 -0.142 1.423 -2.155 -1.124 0.162 0.975 -1.130 -0.937 0.921 -0.128 -0.579 -0.765 0.832 0.229 -1.122 -2.236 -0.121 1.376 -1.872 . 1.642 . -0.186 -0.666 0.894 -0.384 -0.424 . 0.619 0.743 -0.340 -2.213 0.906 0.162 -0.338 -0.675 0.026 0.916 -1.093 0.054 0.790 -1.417 -0.219 -0.775 0.849 -0.313 -0.306 -1.807 0.619 0.587 -0.566 -1.085 -0.034 1.084 -1.210 0.188 0.337 -0.955 0.114 -0.307 0.041 0.785 -1.184 -1.673 -0.090 1.227 -1.299 -0.676 0.008 0.890 -0.956 -0.372 0.869 -1.159 -0.070 -0.339 0.497 0.346 -0.924 -1.783 0.031 1.218 -1.468 . 1.373 . 0.496 -0.287 0.780 -1.320 0.087 . 0.513 0.642 0.018 -1.820 0.862 0.164 -0.361 -0.519 0.080 0.712 -0.720 -0.022 0.707 -1.064 -0.144 -0.511 0.668 0.122 -0.688 -1.751 0.766 0.285 -0.350 -1.033 0.176 0.943 -1.123 -0.410 0.865 -1.352 0.049 -0.684 0.618 0.447 -1.058 -1.447 0.283 0.903 -0.870 -0.527 0.247 0.649 -0.861 -0.466 0.984 -1.445 -0.102 -0.326 0.694 0.015 -0.800 -1.503 0.464 0.838 -1.057 . 1.413 . 0.419 -0.393 0.906 -1.380 -0.029 . 0.473 0.867 -0.344 -2.069 0.969 -0.396 0.061 -0.796 0.118 0.973 -1.409 -0.312 0.911 -0.633 -0.579 -1.346 1.148 -0.499 -0.550 -2.761 1.018 0.315 -0.779 -1.549 0.237 1.059 -1.339 -0.236 0.718 -0.808 -0.098 -0.986 0.837 0.323 -1.125 -2.128 0.200 1.178 -1.477 -1.435 0.339 1.004 -1.474 -1.175 1.050 -0.126 -0.810 -1.326 1.016 0.157 -1.108 -2.681 0.261 1.255 -1.944 . 1.552 . 0.094 -0.657 0.950 -0.910 -0.149 . 0.799 0.598 -0.422 -2.947 1.275 -0.668 -0.284 -0.652 0.011 0.968 -1.323 -0.046 0.766 -0.752 -0.440 -0.735 0.691 0.278 -0.805 -2.269 0.726 0.632 -0.764 -1.399 -0.042 1.188 -1.433 -0.295 0.734 -0.767 -0.098 -1.045 0.609 0.646 -1.234 -1.829 0.007 1.216 -1.357 -0.807 0.283 0.789 -1.047 -0.402 0.884 -1.035 -0.136 -0.676 1.022 -0.680 -0.477 -1.688 0.409 0.983 -1.374 . 1.567 . 0.053 -0.629 0.896 -1.027 0.002 . 0.539 0.867 -0.468 -1.838 0.861 -0.112 -0.030 -0.697 0.376 0.638 -0.918 -0.317 1.068 -1.795 -0.300 -1.085 1.112 -0.525 -0.574 -2.256 0.992 0.081 -0.428 -1.079 0.117 0.959 -1.005 -0.358 0.782 -1.575 0.220 -0.780 0.724 0.302 -0.908 -1.537 0.274 1.018 -1.248 -0.840 0.429 0.629 -0.866 -0.523 1.034 -1.407 -0.186 -0.689 0.755 0.162 -0.802 -1.830 0.231 1.129 -1.481 . 1.456 . 0.329 -0.664 0.951 -1.570 0.137 . 0.625 0.570 -0.040 -2.264 0.969 -0.083 -0.167 -0.628 -0.302 0.936 -0.670 0.118 0.699 -1.280 -0.186 -0.714 0.797 -0.059 -0.528 -1.325 0.376 0.629 -0.402 -1.079 -0.284 1.183 -1.200 -0.255 0.787 -1.624 0.153 -0.634 0.351 0.655 -0.986 -1.558 -0.033 1.158 -1.150 -0.336 -0.018 0.718 -0.799 -0.330 0.829 -1.484 0.098 -0.348 0.655 0.113 -0.841 -1.246 0.031 1.128 -1.430 . 1.261 . 0.681 -0.425 0.719 -1.261 0.253 . 0.274 0.749 0.151 -2.000 0.571 -0.076 0.396 -1.022 0.367 0.782 -1.002 -0.541 1.018 -0.851 -0.448 -1.421 1.184 -0.741 -0.405 -2.928 1.088 0.227 -0.806 -1.380 0.028 1.119 -1.236 -0.173 0.622 -0.735 -0.039 -0.441 0.475 0.450 -0.980 -2.116 0.127 1.223 -1.546 -1.376 0.472 0.756 -0.891 -0.875 1.122 -0.850 -0.467 -0.987 0.775 0.417 -1.154 -2.308 0.241 1.221 -1.809 . 1.537 . 0.135 -0.667 1.012 -1.157 -0.143 . 0.793 0.556 -0.327 -2.782 1.266 -0.695 -0.265 -0.987 -0.036 1.073 -1.266 -0.374 0.897 -0.802 -0.335 -1.200 0.874 0.053 -0.525 -2.098 0.570 0.715 -0.643 -1.642 -0.053 1.263 -1.666 -0.616 0.922 -0.985 -0.078 -1.262 0.635 0.669 -1.186 -2.039 -0.056 1.312 -1.682 -0.914 0.169 0.864 -0.929 -0.637 0.957 -1.068 -0.092 -0.922 0.923 0.011 -0.814 -1.648 -0.014 1.235 -1.569 . 1.508 . 0.209 -0.619 0.892 -1.028 0.004 . 0.608 0.670 -0.176 -2.446 0.814 0.006 0.077 -0.535 0.136 0.718 -0.821 -0.270 0.865 -1.163 -0.147 -1.125 0.961 -0.547 -0.136 -2.078 0.972 -0.053 -0.256 -1.088 -0.013 1.035 -1.031 -0.265 0.655 -1.323 0.255 -0.147 0.049 0.604 -0.884 -1.506 0.131 1.018 -0.923 -0.717 0.309 0.642 -0.756 -0.640 0.982 -1.711 0.109 -0.437 0.558 0.325 -0.899 -1.778 0.259 1.063 -1.244 . 1.254 . 0.692 -0.597 0.871 -1.784 0.286 . 0.557 0.670 -0.094 -1.766 0.832 0.027 -0.141 frame2 LUT 5 4 4 0 0.000 -0.270 0.087 0.654 -0.902 0.395 0.425 -0.913 -0.302 0.245 0.116 0.312 -1.032 -0.709 -0.324 1.074 -1.047 -0.806 0.011 0.983 -1.171 0.548 0.335 -1.132 -0.286 -0.474 0.470 0.460 -0.945 -1.120 0.205 0.872 -0.845 0.048 0.157 0.526 -1.282 0.152 0.730 -1.128 -0.373 0.370 0.271 0.156 -1.370 -1.117 0.008 0.939 -0.697 -0.274 -0.250 0.840 -0.883 0.343 0.458 -0.841 -0.322 -0.051 -0.114 0.719 -1.104 -1.033 0.051 1.042 -1.262 -0.101 -0.094 0.827 -1.484 0.448 0.382 -0.843 -0.367 -0.024 0.412 0.295 -1.124 -0.754 0.331 0.629 -0.731 -0.956 0.233 0.915 -1.239 0.292 0.547 -0.931 -0.340 -0.993 0.702 0.482 -1.075 -1.447 0.347 0.894 -0.992 -0.390 -0.010 0.871 -1.271 0.275 0.318 -0.953 0.039 -0.004 0.487 0.321 -1.505 -0.985 0.131 0.759 -0.499 -0.527 0.359 0.630 -1.070 0.501 0.215 -1.481 0.092 -0.307 0.262 0.594 -1.050 -0.638 0.659 0.310 -0.892 -0.212 -0.146 0.872 -1.309 0.434 0.366 -0.812 -0.339 0.008 0.101 0.615 -1.359 -0.994 -0.549 1.307 -1.555 -1.063 -0.078 1.148 -1.484 0.442 0.391 -0.959 -0.293 -1.034 0.339 0.791 -0.953 -1.353 -0.063 1.162 -1.272 -0.274 -0.142 0.916 -1.400 0.282 0.409 -0.805 -0.176 -0.094 0.135 0.710 -1.606 -1.273 -0.022 1.104 -1.144 -0.593 0.144 0.743 -0.842 0.517 0.372 -1.446 -0.139 -0.204 0.039 0.657 -0.921 -0.711 0.413 0.616 -0.929 . . . . 0.309 0.360 -0.687 -0.224 . . . . -0.693 -0.693 1.193 -1.069 -0.910 -0.021 1.021 -1.142 0.315 0.432 -1.228 -0.028 -0.863 0.336 0.748 -0.975 -1.014 0.223 0.830 -0.835 . . . . 0.119 0.482 -0.813 -0.078 0.248 0.093 0.379 -1.167 -1.056 0.031 1.026 -1.116 -0.046 0.221 0.409 -0.894 0.247 0.478 -1.025 -0.106 -0.426 0.317 0.628 -1.104 -0.986 -0.279 1.118 -0.998 -0.388 -0.291 0.913 -0.899 0.276 0.323 -0.426 -0.332 0.190 -0.111 0.413 -0.735 -1.003 -0.740 1.350 -1.501 -1.273 0.088 1.078 -1.279 0.467 0.015 -0.606 -0.074 -1.448 0.410 0.825 -0.907 -1.123 -0.119 1.066 -0.924 -0.112 -0.237 0.848 -1.228 0.235 0.413 -0.493 -0.356 0.291 0.095 0.455 -1.568 -1.233 -0.386 1.267 -1.313 -0.569 -0.293 0.951 -0.794 0.279 0.263 -0.486 -0.197 -0.082 -0.132 0.630 -0.749 -1.265 -0.089 1.150 -1.238 -0.370 -0.285 1.054 -1.607 0.207 0.368 -0.370 -0.356 -0.141 0.235 0.472 -0.919 -1.327 -0.007 1.099 -1.110 -0.988 0.118 1.031 -1.448 0.626 -0.266 -0.249 -0.350 -0.897 0.370 0.799 -1.215 -1.275 0.002 1.122 -1.289 -0.233 -0.434 1.013 -1.352 0.228 0.272 -0.562 -0.083 -0.206 0.321 0.688 -1.874 -1.126 -0.146 1.085 -0.951 -0.478 0.219 0.780 -1.323 0.615 0.066 -1.250 0.002 -0.611 0.271 0.754 -1.147 -0.865 0.445 0.614 -0.839 -0.790 -0.268 1.078 -1.060 -0.015 0.260 -0.098 -0.187 -0.224 -0.024 0.701 -0.904 -1.741 -0.741 1.433 -1.312 -1.516 0.118 1.122 -1.363 0.262 0.027 -0.153 -0.180 -2.178 0.707 0.841 -1.492 -1.740 0.038 1.148 -1.129 -0.849 -0.119 1.148 -1.696 0.000 0.245 -0.158 -0.123 -0.348 0.263 0.814 -1.959 -1.314 -0.279 1.182 -0.988 -1.222 0.032 0.939 -0.663 0.471 0.159 -1.163 0.072 -0.775 0.130 0.826 -0.866 -0.718 0.411 0.499 -0.623 . . . . 0.296 0.313 -0.402 -0.372 . . . . -0.975 -0.783 1.325 -1.308 -1.348 -0.092 1.205 -1.460 0.414 0.150 -0.761 -0.048 -1.487 0.331 0.993 -1.343 -1.184 -0.128 1.094 -0.972 . . . . 0.129 0.466 -0.637 -0.182 0.068 0.002 0.507 -0.919 -1.103 -0.359 1.252 -1.423 -0.438 0.085 0.686 -0.756 0.145 0.450 -0.690 -0.139 -0.540 0.045 0.875 -1.163 -1.399 -0.549 1.356 -1.405 -0.181 0.060 0.610 -0.866 0.242 0.486 -0.641 -0.367 0.244 0.153 0.325 -1.148 -0.987 -0.356 1.160 -1.062 -1.166 0.108 1.037 -1.235 0.330 0.361 -0.870 -0.134 -1.203 0.525 0.680 -0.930 -1.368 0.280 0.860 -0.779 -0.225 0.282 0.678 -1.605 0.122 0.523 -0.522 -0.362 0.318 0.406 0.129 -1.580 -1.365 0.078 1.103 -1.295 -0.376 -0.024 0.684 -0.645 0.158 0.502 -0.504 -0.390 -0.145 0.126 0.559 -0.913 -1.319 0.173 1.039 -1.264 -0.546 0.154 0.901 -1.579 0.186 0.458 -0.463 -0.389 -0.112 0.450 0.338 -1.170 -1.207 0.175 0.925 -0.892 -1.128 0.287 0.949 -1.353 0.217 0.379 -0.535 -0.239 -1.390 0.729 0.589 -1.130 -1.614 0.215 0.978 -0.882 -0.686 0.142 0.890 -1.243 0.125 0.232 -0.506 0.044 -0.420 0.639 0.488 -1.772 -1.205 0.232 0.853 -0.774 -0.579 0.534 0.545 -1.240 0.514 0.212 -1.417 0.056 -0.637 0.461 0.627 -1.198 -0.917 0.679 0.281 -0.611 -0.548 -0.059 0.973 -1.350 0.276 0.301 -0.383 -0.341 0.017 0.296 0.437 -1.298 -1.189 -0.460 1.288 -1.351 -1.451 0.038 1.163 -1.442 0.323 0.274 -0.485 -0.276 -1.478 0.533 0.868 -1.440 -1.564 -0.071 1.184 -1.194 -0.456 0.217 0.829 -1.588 0.259 0.300 -0.577 -0.149 -0.271 0.538 0.445 -1.486 -1.167 -0.005 1.054 -1.055 -1.042 0.378 0.708 -0.782 0.624 0.285 -1.333 -0.246 -0.356 0.167 0.635 -0.883 -1.156 0.569 0.447 -0.505 . . . . 0.169 0.546 -0.594 -0.408 . . . . -1.007 -0.499 1.178 -0.910 -1.368 0.173 1.051 -1.275 0.260 0.426 -1.047 -0.036 -1.368 0.190 0.996 -1.068 -1.205 0.202 0.942 -1.014 . . . . 0.095 0.515 -0.497 -0.334 0.043 0.177 0.371 -0.871 -1.271 0.018 1.161 -1.573 -0.249 0.396 0.569 -1.476 0.159 0.540 -0.845 -0.197 -0.515 0.263 0.690 -1.038 -1.398 -0.319 1.298 -1.472 -0.014 -0.361 0.751 -0.868 0.339 0.367 -0.835 -0.176 0.498 -0.105 0.247 -1.089 -0.578 -0.259 0.998 -1.007 -0.923 0.077 1.013 -1.319 0.482 0.301 -1.351 -0.030 -0.733 0.092 0.852 -0.922 -1.032 0.035 0.992 -1.005 -0.105 -0.213 0.824 -1.194 0.323 0.471 -0.993 -0.215 0.354 0.006 0.389 -1.294 -0.573 -0.161 0.972 -1.085 -0.409 -0.187 0.720 -0.471 0.285 0.526 -1.014 -0.240 -0.043 -0.158 0.589 -0.669 -1.135 0.173 0.865 -0.746 -0.463 -0.463 1.137 -1.516 0.155 0.523 -0.708 -0.256 0.084 0.123 0.434 -1.000 -0.940 0.174 0.898 -1.037 -0.989 -0.055 1.097 -1.339 0.381 0.291 -0.559 -0.330 -0.954 0.161 0.867 -0.886 -1.367 0.075 1.097 -1.253 -0.181 -0.491 1.007 -1.334 0.046 0.428 -0.884 0.113 -0.089 0.244 0.651 -1.712 -1.000 0.102 0.951 -1.016 -0.650 0.292 0.828 -1.458 0.477 0.329 -1.477 -0.011 -0.394 0.261 0.655 -1.099 -0.925 0.558 0.395 -0.542 -0.444 -0.242 0.983 -1.176 0.323 0.397 -0.841 -0.193 0.025 0.000 0.601 -1.104 -1.292 -0.719 1.364 -1.283 -1.136 -0.115 1.210 -1.698 0.416 0.356 -1.057 -0.144 -1.418 0.313 1.003 -1.400 -1.347 -0.174 1.162 -1.048 -0.493 -0.235 1.093 -1.710 0.201 0.330 -1.075 0.162 -0.191 0.106 0.826 -1.858 -1.211 -0.335 1.122 -0.738 -0.785 0.215 0.788 -0.911 0.509 0.317 -1.779 0.056 -0.421 0.021 0.778 -0.935 -0.933 0.334 0.630 -0.581 . . . . 0.234 0.295 -0.655 -0.056 . . . . -0.891 -0.379 1.081 -0.794 -0.929 -0.180 1.063 -0.991 0.342 0.294 -1.268 0.126 -1.076 0.119 0.941 -0.943 -0.940 0.050 0.926 -0.880 . . . . 0.175 0.479 -0.942 -0.063 -0.007 0.102 0.449 -0.821 -1.103 -0.131 1.128 -1.198 -0.156 0.327 0.480 -1.139 -0.035 0.520 -1.046 0.145 -0.497 0.074 0.819 -1.076 -0.815 -0.311 1.172 -1.429 frame2 LUT 5 4 4 0 0.000 0.478 -0.168 -0.346 -0.105 0.274 -0.270 -0.618 0.390 0.473 -0.120 -0.157 -0.332 0.009 -0.004 -0.081 0.073 0.351 -0.378 -0.315 0.203 0.057 -0.044 -0.699 0.459 0.209 -0.182 -0.180 0.111 -0.443 -0.054 -0.058 0.423 0.687 -0.430 -0.437 -0.136 0.044 -0.101 -0.540 0.431 0.723 -0.012 -0.574 -0.544 -0.301 0.039 -0.157 0.338 0.535 -0.358 -0.701 0.209 0.020 0.159 -0.756 0.353 0.232 -0.126 0.094 -0.249 -0.269 0.280 -0.828 0.478 0.264 0.109 0.051 -0.547 0.031 0.395 -1.313 0.334 0.448 0.130 -0.239 -0.527 -0.774 0.603 -0.460 0.226 0.308 -0.127 -0.380 0.109 0.077 -0.058 -0.786 0.490 0.228 -0.198 -0.261 0.166 -0.457 -0.037 -0.126 0.465 -0.052 0.301 -0.127 -0.171 -0.326 0.051 -1.057 0.753 0.326 0.143 -0.279 -0.289 -1.267 0.387 0.131 0.241 0.164 0.246 -0.667 0.090 -0.024 0.124 -0.618 0.351 0.184 -0.157 -0.071 0.021 -0.790 0.379 -0.491 0.495 0.424 -0.351 0.301 -0.639 0.333 0.177 -0.691 -0.014 0.564 0.026 -0.146 -0.738 -0.223 0.217 -0.303 0.227 0.243 -0.222 0.166 -0.256 -0.009 0.078 -0.542 0.338 0.289 -0.144 0.070 -0.281 -0.800 0.342 -0.077 0.275 0.641 -0.321 -0.074 -0.536 -0.054 0.195 -0.680 0.342 0.573 0.067 -0.400 -0.500 -0.960 0.386 -0.220 0.401 0.279 -0.046 -0.031 -0.253 -0.152 0.570 -0.902 0.111 0.391 -0.179 0.141 -0.510 -0.573 0.494 -0.715 0.390 0.599 -0.366 -0.299 -0.158 0.324 0.204 -0.959 0.114 0.667 0.013 -0.365 -0.674 -0.907 0.209 -0.342 0.606 0.395 -0.083 -0.680 0.159 0.092 -0.353 -0.375 0.465 0.349 -0.072 -0.366 -0.001 -0.454 0.021 -0.143 0.433 0.609 -0.236 -0.509 -0.115 0.075 -0.199 -0.854 0.606 0.564 0.004 -0.419 -0.374 -0.529 0.142 -0.174 0.397 0.558 -0.192 -0.636 0.013 0.018 0.027 -0.505 0.337 0.399 -0.111 -0.176 -0.200 -0.313 0.386 -0.845 0.413 0.351 -0.279 0.106 -0.279 0.401 -0.127 -0.853 0.275 0.591 -0.152 -0.084 -0.619 -0.233 0.005 0.200 -0.005 0.184 -0.129 -0.074 -0.001 0.070 -0.128 -0.537 0.429 0.199 -0.314 0.028 0.040 -0.539 -0.177 0.209 0.346 0.459 -0.420 -0.001 -0.187 0.151 -0.138 -0.670 0.436 0.604 0.077 -0.364 -0.626 -0.366 -0.109 0.074 0.315 0.441 -0.141 -0.298 -0.115 0.077 0.096 -0.547 0.254 0.330 -0.223 0.045 -0.228 -0.613 0.221 -0.657 0.629 0.281 0.015 0.344 -0.982 -0.251 0.752 -1.118 0.021 0.400 0.155 0.056 -0.922 -0.958 0.869 -0.547 -0.037 0.236 -0.078 0.059 -0.264 0.108 0.189 -0.489 0.097 0.423 -0.046 0.000 -0.534 -0.569 0.192 -0.015 0.256 -0.075 -0.037 0.580 -0.781 -0.401 0.568 -0.770 0.231 0.312 0.119 0.085 -0.708 -0.992 0.646 0.040 -0.145 0.094 0.201 -0.042 -0.301 -0.244 0.644 -0.658 -0.060 0.309 -0.080 0.147 -0.498 -1.016 0.678 -0.456 0.234 0.399 -0.703 0.266 -0.209 0.083 0.108 -0.572 0.252 0.438 -0.086 0.009 -0.522 -0.392 -0.266 0.326 0.205 0.137 -0.382 0.106 0.080 -0.004 -0.766 -0.144 0.595 0.088 0.193 -0.124 -0.190 -0.421 -0.095 0.173 0.250 0.477 -0.412 0.098 -0.346 -0.102 -0.023 -0.300 0.347 0.720 0.070 -0.409 -0.863 -0.544 0.183 -0.149 0.353 -0.097 0.028 0.077 -0.013 -0.275 -0.348 -0.180 0.590 0.094 -0.141 0.037 -0.001 -0.758 0.206 -0.256 0.503 0.512 -0.334 0.094 -0.488 0.488 -0.244 -0.699 0.186 0.606 -0.065 -0.152 -0.685 -0.554 0.110 0.146 0.180 0.306 -0.200 -0.291 0.106 -0.118 -0.409 -0.431 0.663 -0.118 -0.046 0.088 0.066 -0.361 -0.125 -0.134 0.478 0.412 -0.070 0.089 -0.614 0.098 -0.313 -0.640 0.568 0.464 0.100 -0.253 -0.495 -0.644 0.361 0.093 0.012 0.268 -0.145 -0.253 0.074 -0.187 -0.135 -0.129 0.375 -0.028 -0.107 0.203 -0.091 -0.786 0.339 -0.472 0.521 0.644 -0.492 -0.324 -0.108 0.227 -0.216 -0.560 0.368 0.781 -0.110 -0.339 -0.824 -0.123 0.022 -0.212 0.267 0.260 -0.240 -0.127 0.056 -0.083 0.046 -0.658 0.475 0.517 -0.277 -0.161 -0.236 -0.601 0.065 -0.053 0.412 0.643 -0.395 -0.374 -0.141 0.003 -0.199 -0.548 0.529 0.805 -0.031 -0.597 -0.704 -0.488 0.099 -0.134 0.384 0.381 -0.114 -0.708 0.216 -0.195 0.295 -0.860 0.431 0.530 -0.225 -0.107 -0.373 -0.381 0.241 -0.986 0.628 0.454 -0.093 -0.070 -0.435 0.047 0.208 -0.965 0.378 0.295 0.412 -0.271 -0.705 -1.180 0.700 -0.466 0.276 0.240 -0.085 -0.289 0.082 0.085 -0.221 -0.429 0.421 0.279 0.162 -0.312 -0.214 -0.809 0.205 -0.115 0.436 -0.075 0.134 0.193 -0.304 -0.357 0.026 -0.644 0.643 -0.002 0.507 -0.114 -0.607 -1.185 0.657 -0.145 0.109 0.154 0.242 -0.575 0.048 -0.087 0.176 -0.755 0.418 0.088 0.220 -0.173 -0.176 -1.060 0.582 -0.720 0.503 0.486 -0.225 0.036 -0.477 0.124 0.317 -0.754 0.100 0.464 -0.010 0.146 -0.941 -0.807 0.501 -0.441 0.353 0.155 -0.146 -0.026 0.001 0.016 -0.169 -0.303 0.366 0.087 -0.108 0.283 -0.334 -0.550 0.165 -0.017 0.273 0.582 0.025 -0.322 -0.544 -0.194 0.339 -0.956 0.428 0.511 0.170 -0.200 -0.787 -0.885 0.773 -0.750 0.209 -0.153 0.301 -0.335 0.106 -0.247 0.441 -0.603 0.190 -0.070 -0.185 0.352 -0.165 -0.527 0.462 -0.774 0.426 0.534 0.029 -0.519 -0.264 0.251 0.197 -0.749 0.096 0.668 0.138 -0.513 -0.713 -0.585 0.438 -0.345 0.253 0.150 0.015 -0.546 0.257 -0.097 -0.084 -0.729 0.602 -0.208 -0.114 -0.014 0.288 -0.390 0.026 -0.362 0.527 0.528 0.068 -0.566 -0.262 -0.089 -0.111 -0.678 0.593 0.434 0.095 -0.412 -0.270 -0.708 0.332 -0.016 0.189 0.132 0.099 -0.667 0.267 -0.162 0.074 -0.443 0.398 -0.020 -0.202 0.126 0.074 -0.668 0.349 -0.462 0.455 . . . . . . . . . . . . . . . . 0.336 -0.241 -0.262 0.081 0.096 -0.353 -0.418 0.486 0.396 -0.276 -0.130 -0.083 -0.297 -0.225 -0.014 0.422 . . . . . . . . . . . . . . . . 0.410 -0.091 -0.590 0.094 0.172 -0.008 -0.543 0.254 0.585 -0.284 -0.140 -0.375 -0.182 0.195 -0.775 0.474 0.400 -0.114 0.176 -0.675 -0.120 0.465 -1.275 0.363 0.538 0.009 -0.071 -0.760 -1.556 0.897 -0.285 -0.033 0.174 -0.272 0.017 0.045 0.105 -0.016 -0.615 0.360 0.242 -0.305 0.067 -0.058 -0.672 0.310 -0.062 0.233 0.136 -0.207 0.533 -0.766 -0.372 0.346 -0.893 0.504 0.273 0.059 -0.040 -0.363 -1.382 0.782 0.141 -0.332 0.237 0.120 -0.266 -0.148 -0.190 0.405 -0.756 0.271 0.158 -0.074 0.082 -0.191 -1.192 0.876 -0.691 0.147 . . . . . . . . . . . . . . . . 0.259 -0.122 -0.010 -0.166 0.060 -0.116 -0.430 0.371 0.150 -0.141 0.190 -0.247 -0.589 0.073 0.283 0.093 0.409 -0.304 0.021 -0.239 0.081 -0.463 -0.702 0.680 0.402 0.006 -0.119 -0.407 -0.672 -0.014 0.113 0.379 0.408 0.029 -0.465 -0.107 -0.027 0.323 -0.845 0.276 0.283 -0.185 0.143 -0.322 -0.799 0.536 -0.495 0.340 0.456 -0.312 -0.119 -0.149 0.408 0.024 -0.929 0.178 0.643 -0.052 -0.163 -0.784 -0.535 0.272 0.050 0.093 0.257 -0.107 -0.372 0.143 0.079 -0.403 -0.552 0.590 0.369 -0.290 -0.146 -0.019 -0.577 0.309 -0.228 0.307 0.467 -0.323 0.055 -0.360 -0.003 -0.053 -0.974 0.613 0.477 0.163 -0.377 -0.477 -0.638 0.433 -0.179 0.169 0.611 -0.230 -0.714 0.015 -0.201 0.096 -0.924 0.617 0.474 -0.214 -0.060 -0.341 -0.611 0.470 -0.574 0.366 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.078 0.342 0.419 -1.555 0.549 0.777 -1.467 -1.116 0.504 0.636 -0.300 -2.213 -0.818 0.615 0.668 -1.680 -0.015 0.603 -0.075 -0.883 0.595 0.509 -1.238 -0.638 -0.120 0.757 -0.201 -0.943 -0.817 0.861 0.183 -1.058 0.158 0.489 -0.009 -1.039 0.419 0.744 -1.601 -0.601 0.771 0.642 -0.782 -2.725 -0.943 0.748 0.322 -0.862 -0.432 1.200 -0.914 -1.217 0.708 0.679 -2.000 -0.954 0.211 0.698 -0.105 -1.789 -0.636 0.814 0.005 -0.749 E-2 LUT 3 2 4 0 0.000 1.279 -1.377 -0.485 -1.079 1.501 -1.369 -2.197 -0.823 1.429 -0.831 -1.453 -1.398 -0.138 0.014 0.253 -0.170 1.360 -0.976 -0.963 -1.283 1.504 -1.522 -1.964 -0.838 1.271 -0.910 -0.688 -1.206 -0.598 -0.186 0.828 -0.547 1.294 -1.108 -0.740 -1.041 1.504 -1.500 -1.759 -0.959 1.518 -0.941 -1.857 -1.563 -0.657 -0.012 0.865 -0.855 0.868 -0.097 -1.664 -0.114 1.393 -0.965 -1.813 -0.794 1.176 -0.804 -0.764 -0.790 -0.298 0.170 0.222 -0.160 E-1 LUT 3 2 4 0 0.000 -2.615 -3.820 1.853 -2.714 -0.264 -1.486 1.304 -1.548 -0.869 -2.368 1.538 -1.498 -3.115 -3.215 1.829 -2.164 -2.342 -3.512 1.860 -3.562 -0.396 -2.170 1.193 -0.452 -1.008 -2.103 1.618 -2.314 -2.987 -2.876 1.851 -2.931 -1.940 -3.056 1.776 -2.368 -0.719 -1.623 1.177 -0.311 -0.826 -2.165 1.599 -2.445 -4.639 -3.639 1.874 -2.224 -1.590 -2.146 1.606 -1.327 -0.390 -2.033 1.276 -0.811 -1.161 -3.182 1.670 -1.947 -3.663 -2.547 1.718 -1.119 G LUT 3 2 4 0 0.000 -6.801 -6.801 1.990 -6.801 -5.679 -5.679 1.979 -5.679 -10.922 -10.922 1.999 -10.922 -6.234 -6.234 1.986 -6.234 -6.455 -6.455 1.988 -6.455 -5.066 -5.066 1.967 -5.066 -8.110 -8.110 1.996 -8.110 -6.134 -6.134 1.985 -6.134 -5.913 -5.913 1.982 -5.913 -4.409 -4.409 1.948 -4.409 -8.499 -8.499 1.997 -8.499 -4.977 -4.977 1.965 -4.977 -3.615 -3.615 1.909 -3.615 -3.907 -3.907 1.926 -3.907 -8.732 -8.732 1.997 -8.732 -4.728 -4.728 1.959 -4.728 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.070 -8.070 -8.070 1.996 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.883 -6.883 -6.883 1.991 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.551 -11.551 -11.551 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.647 -7.647 -7.647 1.995 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.668 -2.739 1.133 -3.877 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.131 -0.935 -0.391 -0.931 1.571 -2.376 -2.492 -0.601 1.701 -2.237 -1.343 -2.812 0.511 -1.489 0.280 0.006 I+3 LUT 3 2 4 0 0.000 -1.738 -1.827 1.692 -2.409 -0.438 0.053 0.323 -0.039 -2.112 -1.803 1.728 -2.565 -2.421 -0.823 1.542 -1.573 -5.658 -5.658 1.942 -3.073 -1.858 -1.273 1.142 0.142 -1.170 -2.755 1.705 -2.755 -4.524 -1.716 1.851 -4.524 -3.984 -3.797 1.935 -4.598 -1.160 -0.627 1.274 -1.042 -3.697 -4.019 1.930 -4.282 -6.145 -2.560 1.921 -5.145 -1.923 -4.508 1.867 -4.508 -0.644 -1.644 0.941 0.163 -3.285 -3.285 1.885 -3.285 -3.022 -2.022 1.785 -2.437 I+4 LUT 3 2 4 0 0.000 -0.899 -0.422 0.882 -0.193 0.075 0.169 -0.975 0.394 -0.863 -0.404 -0.120 0.827 -1.297 -0.866 1.202 -0.428 -1.490 -0.185 0.946 -0.256 0.168 0.089 -1.253 0.478 -1.256 -0.488 0.256 0.744 -1.310 -0.562 0.953 -0.023 -0.468 -0.916 1.180 -1.053 -0.839 0.461 -0.539 0.461 -0.762 -0.038 -0.568 0.817 -0.182 -0.713 1.024 -1.075 0.415 -0.115 0.415 -1.285 -0.924 1.237 -3.011 -0.011 -1.014 -0.767 0.137 0.862 -1.109 -0.939 0.979 0.061 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 1.024 -0.909 -0.560 -0.406 0.571 0.221 -1.889 0.110 0.206 -0.251 0.199 -0.220 0.241 -0.502 0.220 -0.079 0.078 -0.242 0.307 -0.216 0.124 0.496 -2.031 0.328 -0.289 -0.081 0.196 0.125 -0.904 0.373 0.282 -0.067 0.267 -0.300 0.349 -0.494 0.317 0.382 -1.581 0.159 0.103 -0.028 0.194 -0.319 -0.484 -0.204 0.631 -0.205 0.566 -0.325 -0.245 -0.189 0.043 0.617 -1.956 0.236 0.053 -0.294 0.239 -0.049 -0.074 -0.137 -0.332 0.429 0.649 -0.532 0.174 -0.708 0.881 -0.047 -1.624 -0.209 0.122 -0.166 0.372 -0.462 -0.272 -0.211 0.442 -0.074 -0.530 0.155 0.399 -0.193 0.266 0.345 -1.520 0.238 -0.407 0.231 0.056 0.046 -1.185 0.327 0.549 -0.247 -0.227 -0.428 0.626 -0.219 -0.076 0.726 -1.137 -0.086 -0.183 -0.228 0.525 -0.275 -0.959 -0.222 0.854 -0.285 0.205 -0.099 0.109 -0.260 0.204 0.466 -1.815 0.242 -0.193 0.092 0.138 -0.061 -0.757 -0.026 0.276 0.282 0.386 -0.508 0.299 -0.397 0.477 0.274 -1.449 0.046 0.263 -0.165 0.330 -0.620 -0.551 -0.135 0.627 -0.213 -0.361 -0.052 0.626 -0.488 0.214 0.197 -1.647 0.458 -0.094 0.006 0.299 -0.272 -0.734 0.007 0.689 -0.355 0.068 -0.439 0.636 -0.600 0.238 0.153 -1.271 0.373 0.126 -0.015 0.143 -0.296 -0.722 -0.133 0.717 -0.255 -0.051 -0.452 0.641 -0.426 0.198 0.351 -2.096 0.426 0.052 -0.106 0.264 -0.263 -0.660 0.196 -0.020 0.305 0.694 -0.723 -0.252 -0.095 0.829 0.003 -2.100 -0.017 0.177 -0.093 0.115 -0.236 0.276 -0.599 0.016 0.161 -0.568 0.256 0.323 -0.184 0.038 0.525 -1.941 0.349 -0.469 0.426 -0.064 -0.033 -1.062 0.383 0.344 -0.077 0.049 -0.357 0.478 -0.337 0.207 0.450 -1.926 0.283 -0.087 -0.126 0.332 -0.179 -0.517 -0.259 0.549 0.004 0.032 -0.017 -0.008 -0.007 0.138 0.286 -2.430 0.580 -0.186 0.007 0.098 0.065 -0.373 -0.265 -0.239 0.631 0.341 -0.312 0.300 -0.523 0.528 0.407 -2.030 -0.018 -0.037 -0.145 0.350 -0.241 -0.320 -0.031 0.331 -0.055 -0.944 0.453 0.480 -0.482 0.167 0.387 -1.659 0.324 -0.739 0.370 0.181 -0.037 -1.320 0.047 0.652 -0.007 -0.132 -0.387 0.718 -0.560 0.039 0.625 -1.826 0.200 -0.017 0.167 0.205 -0.440 -0.898 -0.153 0.794 -0.268 -0.167 -0.141 0.312 -0.058 -0.113 0.441 -2.205 0.586 -0.393 -0.045 0.329 0.018 -0.853 0.130 -0.103 0.507 0.183 -0.262 0.624 -1.030 0.145 0.617 -1.406 -0.025 -0.404 0.280 0.565 -0.861 -1.060 0.344 0.441 -0.163 -0.635 -0.058 0.831 -0.698 0.442 0.060 -1.086 0.174 -0.572 0.264 0.498 -0.484 -1.282 0.252 0.639 -0.251 -0.650 -0.417 1.103 -1.105 -0.379 0.831 -0.731 -0.235 -0.622 0.186 0.766 -0.968 -1.317 0.248 0.781 -0.531 -0.180 -0.128 0.531 -0.400 -0.010 0.644 -1.758 0.200 -0.455 -0.010 0.500 -0.213 -1.041 0.334 0.214 0.129 -0.076 0.016 0.430 -0.530 0.231 0.359 -1.043 0.082 0.053 -0.386 0.572 -0.492 -1.156 0.287 0.379 0.044 -1.084 0.173 0.799 -0.596 -0.293 0.533 -1.158 0.367 -1.029 0.544 0.518 -0.689 -1.489 0.249 0.646 -0.167 -0.333 -0.530 0.875 -0.559 -0.420 0.563 -0.774 0.252 -0.156 0.057 0.460 -0.544 -1.102 -0.174 0.926 -0.420 -0.141 -0.315 0.489 -0.176 -0.267 0.445 -1.665 0.577 -0.278 -0.134 0.432 -0.129 -0.945 0.140 0.072 0.409 0.190 -0.407 0.234 -0.106 0.360 0.228 -2.256 0.418 0.063 -0.128 0.435 -0.539 -0.273 -0.149 0.303 0.052 -0.610 0.056 0.717 -0.595 -0.044 0.510 -1.775 0.394 -0.499 -0.084 0.706 -0.480 -1.071 0.178 0.626 -0.237 -0.368 -0.210 0.834 -0.790 0.090 0.591 -1.825 0.197 -0.286 -0.100 0.693 -0.666 -0.608 0.142 0.570 -0.404 -0.012 -0.176 0.380 -0.284 -0.196 0.685 -2.404 0.412 -0.175 -0.169 0.451 -0.222 -0.783 0.139 0.221 0.204 0.139 -0.170 0.285 -0.337 0.193 0.292 -1.793 0.427 -0.020 -0.132 0.456 -0.455 -0.542 -0.093 0.433 0.037 -0.625 -0.125 0.788 -0.499 0.139 0.402 -1.876 0.384 -0.764 -0.049 0.626 -0.151 -0.970 0.205 0.433 -0.020 -0.088 -0.024 0.410 -0.421 0.055 0.542 -1.574 0.225 -0.136 0.237 0.194 -0.381 -0.800 -0.055 0.537 0.018 0.072 -0.249 0.299 -0.188 0.148 0.307 -1.665 0.421 -0.207 -0.331 0.598 -0.277 -0.121 -0.009 -0.115 0.218 0.094 -0.209 0.466 -0.543 0.330 0.184 -1.314 0.269 -0.141 -0.101 0.492 -0.406 -0.893 0.007 0.607 -0.099 -0.672 0.140 0.646 -0.503 0.216 0.304 -1.236 0.238 -0.368 0.097 0.529 -0.487 -1.586 0.421 0.634 -0.366 -0.720 -0.304 0.738 -0.128 -0.331 0.552 -0.273 -0.134 -0.456 0.009 0.714 -0.679 -1.545 -0.167 1.062 -0.557 0.052 0.038 0.220 -0.374 0.298 0.287 -1.973 0.373 -0.347 -0.203 0.621 -0.309 -0.957 0.241 0.235 0.172 0.059 -0.488 0.655 -0.576 0.435 0.179 -1.441 0.198 -0.110 -0.351 0.668 -0.515 -0.935 -0.193 0.550 0.186 -0.743 -0.250 0.868 -0.442 0.219 0.159 -1.227 0.370 -0.888 0.024 0.659 -0.212 -1.188 0.064 0.799 -0.366 -0.158 -0.350 0.682 -0.483 0.181 0.147 -0.966 0.319 0.024 0.106 0.036 -0.182 -0.981 -0.104 0.692 -0.078 -0.064 -0.272 0.485 -0.293 0.221 0.218 -1.977 0.503 -0.150 -0.418 0.631 -0.319 -0.945 0.058 0.186 0.381 0.096 -0.474 0.208 0.079 0.446 0.254 -1.851 0.224 0.135 0.080 0.148 -0.441 -0.407 -0.341 0.275 0.317 -0.896 0.192 0.631 -0.374 -0.167 0.557 -2.062 0.484 -0.804 0.179 0.518 -0.212 -1.348 0.479 0.345 -0.084 -0.399 -0.225 0.714 -0.422 0.106 0.327 -1.499 0.396 -0.420 0.055 0.488 -0.302 -1.027 -0.291 0.957 -0.415 -0.011 -0.164 0.304 -0.185 0.210 0.307 -2.061 0.450 -0.416 -0.088 0.449 -0.082 -0.895 0.118 0.106 0.379 0.577 -0.719 -0.060 -0.087 0.373 0.221 -1.895 0.345 0.127 -0.256 0.200 -0.117 -0.286 0.032 -0.190 0.357 -0.285 -0.332 0.660 -0.313 0.136 0.368 -2.017 0.447 -0.488 -0.275 0.296 0.302 -0.541 -0.016 0.287 0.144 0.115 -0.476 0.556 -0.459 0.025 0.383 -2.130 0.536 0.154 -0.135 0.232 -0.319 -0.236 -0.098 0.302 -0.024 -0.007 -0.500 -0.097 0.447 0.005 0.278 -2.420 0.676 -0.248 -0.403 0.081 0.426 -0.524 -0.473 -0.541 0.924 0.388 -0.652 0.574 -0.820 0.174 0.290 -1.467 0.365 -0.138 0.064 0.357 -0.387 -0.770 0.064 0.280 0.207 -0.665 -0.137 0.707 -0.273 0.394 0.159 -1.512 0.285 -0.635 0.237 0.244 -0.010 -1.202 0.159 0.617 -0.128 0.070 -0.878 0.807 -0.608 -0.435 0.478 -1.070 0.477 -0.580 0.211 0.573 -0.542 -1.072 -0.066 0.741 -0.156 -0.161 0.033 0.314 -0.254 -0.037 0.326 -1.825 0.575 -0.364 -0.029 0.147 0.183 -0.824 0.141 0.100 0.335 0.109 -0.153 0.298 -0.336 0.202 0.457 -1.845 0.262 -0.076 0.014 0.346 -0.376 -0.746 0.043 0.457 0.001 -0.605 -0.146 0.764 -0.432 -0.089 0.378 -1.974 0.590 -0.777 0.125 0.395 0.015 -1.183 -0.010 0.685 -0.062 -0.018 -0.567 0.700 -0.488 -0.054 0.400 -1.615 0.476 0.103 -0.129 0.315 -0.382 -0.927 -0.076 0.709 -0.167 0.096 -0.567 0.255 0.087 -0.101 0.395 -2.239 0.624 -0.406 -0.351 0.108 0.468 -0.868 -0.144 0.125 0.542 0.561 -0.589 -0.118 -0.091 0.716 -0.009 -2.198 0.197 -0.042 0.048 0.103 -0.118 -0.332 -0.480 -0.286 0.739 -0.268 -0.111 0.417 -0.138 -0.012 0.393 -2.242 0.569 -0.003 -0.190 0.210 -0.045 -0.989 0.207 0.318 0.132 0.171 -0.608 0.625 -0.564 0.122 0.328 -2.268 0.535 -0.278 -0.080 0.527 -0.343 -0.455 -0.195 0.217 0.304 0.237 -0.611 -0.126 0.322 -0.118 0.316 -2.693 0.747 -0.177 -0.371 0.130 0.320 -0.694 -0.608 -0.438 0.991 Intron LUT 5 4 4 0 0.000 1.048 -0.957 -0.610 -0.393 0.588 0.228 -2.001 0.105 0.212 -0.276 0.182 -0.182 0.255 -0.532 0.210 -0.061 0.072 -0.259 0.303 -0.185 0.128 0.499 -2.188 0.350 -0.257 -0.176 0.185 0.191 -0.935 0.406 0.268 -0.077 0.255 -0.303 0.351 -0.473 0.349 0.367 -1.703 0.175 0.092 -0.028 0.166 -0.267 -0.470 -0.233 0.653 -0.228 0.513 -0.286 -0.219 -0.164 0.035 0.636 -2.056 0.240 0.047 -0.299 0.249 -0.050 -0.054 -0.158 -0.339 0.433 0.671 -0.553 0.158 -0.712 0.910 -0.065 -1.668 -0.233 0.128 -0.209 0.384 -0.440 -0.258 -0.248 0.469 -0.094 -0.576 0.156 0.388 -0.143 0.294 0.324 -1.617 0.258 -0.411 0.186 -0.021 0.169 -1.212 0.333 0.553 -0.249 -0.283 -0.526 0.655 -0.137 -0.043 0.774 -1.505 -0.048 -0.209 -0.295 0.546 -0.218 -0.917 -0.293 0.877 -0.290 0.206 -0.100 0.104 -0.254 0.229 0.459 -1.917 0.249 -0.200 0.094 0.121 -0.038 -0.745 -0.063 0.289 0.292 0.394 -0.531 0.279 -0.359 0.503 0.266 -1.501 0.039 0.266 -0.186 0.327 -0.590 -0.550 -0.149 0.639 -0.221 -0.378 -0.043 0.614 -0.454 0.241 0.157 -1.782 0.498 -0.023 -0.125 0.256 -0.146 -0.709 -0.006 0.691 -0.363 0.052 -0.477 0.646 -0.558 0.274 0.124 -1.387 0.400 0.132 -0.017 0.110 -0.258 -0.705 -0.164 0.731 -0.261 -0.067 -0.478 0.669 -0.440 0.223 0.324 -2.231 0.453 0.064 -0.106 0.254 -0.263 -0.649 0.189 -0.024 0.309 0.635 -0.691 -0.229 -0.037 0.858 -0.008 -2.143 -0.049 0.191 -0.104 0.096 -0.219 0.294 -0.615 0.025 0.141 -0.616 0.275 0.309 -0.154 0.046 0.528 -2.051 0.361 -0.473 0.422 -0.127 0.034 -1.078 0.400 0.337 -0.083 0.024 -0.378 0.492 -0.310 0.210 0.468 -2.048 0.285 -0.100 -0.132 0.321 -0.143 -0.523 -0.271 0.554 0.010 -0.025 0.018 0.007 -0.001 0.169 0.254 -2.558 0.597 -0.169 0.032 0.051 0.073 -0.385 -0.288 -0.249 0.654 0.367 -0.333 0.294 -0.535 0.575 0.401 -2.189 -0.044 -0.041 -0.161 0.348 -0.216 -0.374 -0.045 0.357 -0.031 -0.994 0.458 0.482 -0.458 0.203 0.360 -1.765 0.347 -0.741 0.364 0.169 -0.015 -1.355 0.033 0.666 -0.001 -0.147 -0.416 0.731 -0.539 0.066 0.625 -2.017 0.219 -0.024 0.176 0.182 -0.411 -0.904 -0.182 0.819 -0.286 -0.184 -0.143 0.317 -0.046 -0.095 0.425 -2.322 0.606 -0.395 -0.039 0.321 0.025 -0.862 0.128 -0.106 0.514 0.203 -0.275 0.635 -1.088 0.164 0.615 -1.477 -0.017 -0.434 0.282 0.578 -0.859 -1.075 0.338 0.461 -0.177 -0.647 -0.084 0.843 -0.680 0.488 0.040 -1.260 0.204 -0.512 0.126 0.506 -0.346 -1.301 0.228 0.663 -0.253 -0.689 -0.504 1.142 -1.098 -0.254 0.830 -1.091 -0.130 -0.714 0.152 0.801 -0.898 -1.312 0.227 0.805 -0.557 -0.181 -0.158 0.540 -0.381 0.021 0.635 -1.855 0.209 -0.448 -0.037 0.503 -0.192 -1.041 0.322 0.232 0.124 -0.072 0.048 0.381 -0.490 0.346 0.328 -1.383 0.124 0.112 -0.534 0.574 -0.435 -1.172 0.304 0.369 0.043 -1.113 0.195 0.761 -0.519 -0.194 0.464 -1.669 0.518 -0.968 0.467 0.486 -0.502 -1.511 0.199 0.651 -0.104 -0.394 -0.628 0.885 -0.424 -0.312 0.578 -1.309 0.377 -0.140 0.017 0.431 -0.448 -1.060 -0.257 0.968 -0.460 -0.106 -0.372 0.473 -0.137 -0.232 0.398 -2.021 0.664 -0.236 -0.159 0.411 -0.111 -0.924 0.124 0.060 0.423 0.196 -0.429 0.209 -0.065 0.376 0.196 -2.407 0.453 0.077 -0.136 0.425 -0.529 -0.258 -0.145 0.310 0.028 -0.620 0.063 0.712 -0.584 -0.030 0.507 -1.946 0.422 -0.443 -0.203 0.709 -0.394 -1.070 0.167 0.637 -0.243 -0.402 -0.217 0.851 -0.788 0.126 0.595 -1.997 0.199 -0.309 -0.111 0.706 -0.653 -0.587 0.135 0.569 -0.411 -0.025 -0.173 0.386 -0.280 -0.181 0.675 -2.542 0.432 -0.157 -0.181 0.445 -0.218 -0.789 0.133 0.229 0.205 0.135 -0.161 0.275 -0.327 0.210 0.275 -1.903 0.450 -0.028 -0.152 0.459 -0.426 -0.554 -0.097 0.437 0.044 -0.664 -0.152 0.806 -0.473 0.169 0.384 -2.051 0.410 -0.760 -0.180 0.681 -0.115 -0.960 0.201 0.432 -0.018 -0.109 -0.009 0.393 -0.384 0.085 0.546 -1.765 0.246 -0.152 0.253 0.160 -0.338 -0.787 -0.086 0.550 0.020 0.065 -0.276 0.314 -0.177 0.176 0.288 -1.731 0.430 -0.211 -0.353 0.610 -0.274 -0.073 -0.035 -0.124 0.208 0.076 -0.200 0.467 -0.529 0.358 0.151 -1.393 0.296 -0.134 -0.161 0.501 -0.360 -0.886 -0.036 0.639 -0.110 -0.708 0.138 0.649 -0.475 0.282 0.242 -1.381 0.283 -0.255 -0.112 0.533 -0.341 -1.603 0.427 0.641 -0.382 -0.756 -0.407 0.712 0.022 -0.257 0.618 -0.593 -0.051 -0.424 -0.126 0.718 -0.528 -1.552 -0.300 1.120 -0.571 0.079 0.032 0.210 -0.388 0.365 0.228 -2.163 0.398 -0.333 -0.266 0.640 -0.293 -0.938 0.215 0.253 0.171 0.052 -0.502 0.655 -0.551 0.472 0.157 -1.557 0.212 -0.106 -0.406 0.674 -0.472 -0.957 -0.215 0.556 0.206 -0.775 -0.260 0.866 -0.400 0.266 0.121 -1.393 0.411 -0.846 -0.043 0.576 -0.026 -1.183 0.040 0.813 -0.370 -0.178 -0.391 0.685 -0.425 0.243 0.121 -1.175 0.363 0.041 0.072 0.015 -0.136 -0.985 -0.139 0.703 -0.061 -0.055 -0.283 0.478 -0.282 0.262 0.177 -2.137 0.529 -0.122 -0.447 0.621 -0.306 -0.954 0.056 0.192 0.381 0.056 -0.507 0.225 0.121 0.465 0.236 -1.934 0.239 0.152 0.086 0.127 -0.442 -0.412 -0.364 0.288 0.322 -0.943 0.182 0.648 -0.362 -0.152 0.551 -2.250 0.510 -0.751 0.117 0.496 -0.134 -1.364 0.490 0.331 -0.076 -0.435 -0.273 0.744 -0.400 0.132 0.317 -1.619 0.414 -0.430 0.060 0.473 -0.274 -1.013 -0.317 0.968 -0.423 -0.022 -0.180 0.315 -0.170 0.254 0.270 -2.131 0.457 -0.419 -0.093 0.452 -0.081 -0.902 0.114 0.113 0.379 0.602 -0.741 -0.092 -0.081 0.412 0.200 -1.949 0.335 0.131 -0.274 0.190 -0.093 -0.324 0.065 -0.214 0.370 -0.304 -0.349 0.679 -0.315 0.153 0.354 -2.104 0.461 -0.461 -0.336 0.272 0.349 -0.520 -0.017 0.270 0.148 0.100 -0.486 0.565 -0.444 0.027 0.379 -2.300 0.563 0.150 -0.137 0.212 -0.282 -0.201 -0.103 0.299 -0.046 -0.036 -0.501 -0.082 0.457 0.017 0.262 -2.526 0.692 -0.248 -0.415 0.064 0.447 -0.518 -0.495 -0.556 0.935 0.413 -0.703 0.594 -0.876 0.178 0.273 -1.515 0.390 -0.142 0.061 0.358 -0.380 -0.758 0.049 0.297 0.196 -0.691 -0.143 0.702 -0.238 0.440 0.127 -1.634 0.298 -0.621 0.185 0.183 0.108 -1.208 0.141 0.634 -0.132 0.085 -0.979 0.810 -0.559 -0.382 0.454 -1.460 0.584 -0.627 0.221 0.581 -0.534 -1.051 -0.115 0.777 -0.182 -0.173 0.043 0.317 -0.257 -0.008 0.298 -1.858 0.585 -0.372 -0.038 0.133 0.210 -0.821 0.123 0.111 0.339 0.109 -0.131 0.284 -0.338 0.214 0.467 -1.945 0.260 -0.076 0.007 0.341 -0.359 -0.750 0.063 0.458 -0.019 -0.624 -0.150 0.768 -0.420 -0.084 0.363 -2.086 0.618 -0.747 0.038 0.377 0.110 -1.198 -0.028 0.696 -0.053 -0.025 -0.620 0.713 -0.460 -0.034 0.390 -1.718 0.494 0.121 -0.135 0.291 -0.361 -0.933 -0.085 0.724 -0.182 0.094 -0.606 0.265 0.103 -0.098 0.374 -2.283 0.646 -0.400 -0.358 0.111 0.467 -0.865 -0.161 0.146 0.536 0.554 -0.598 -0.118 -0.075 0.749 -0.031 -2.272 0.181 -0.055 0.060 0.083 -0.097 -0.329 -0.496 -0.287 0.744 -0.278 -0.110 0.408 -0.117 0.006 0.389 -2.431 0.585 0.070 -0.296 0.168 0.017 -1.005 0.210 0.311 0.144 0.169 -0.640 0.642 -0.570 0.138 0.325 -2.419 0.547 -0.289 -0.076 0.530 -0.342 -0.449 -0.204 0.215 0.309 0.220 -0.632 -0.091 0.323 -0.092 0.285 -2.790 0.765 -0.159 -0.386 0.118 0.327 -0.708 -0.658 -0.448 1.015 Repeat LUT 1 0 5 0 0 -1 -1 -1 -1 1 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 0.049 0.142 0.727 -2.273 -0.510 0.639 -1.033 0.324 -0.343 0.469 0.469 -1.177 -1.728 0.732 -0.268 0.272 -0.830 0.222 0.970 -1.678 -0.063 0.292 -0.044 -0.237 -0.620 0.353 0.556 -0.731 -2.019 0.495 0.713 -0.505 -0.533 0.504 0.389 -0.781 -0.554 0.592 -0.021 -0.276 -0.334 0.451 0.469 -1.134 -1.282 0.468 0.718 -0.835 0.330 0.041 0.456 -1.544 -0.919 0.879 -1.195 0.257 -0.743 0.515 0.225 -0.313 -1.369 0.505 0.461 -0.291 N-11 LUT 3 2 4 0 0.000 -0.263 0.000 0.688 -0.848 0.000 0.874 -0.819 -0.737 -0.288 0.483 0.269 -0.790 -0.888 0.697 -0.209 -0.040 -0.967 0.159 0.966 -1.256 -0.415 0.619 -0.392 -0.070 -0.658 0.550 0.507 -1.056 -1.781 0.522 0.348 0.000 -0.524 0.415 0.415 -0.649 -0.121 0.496 -0.273 -0.247 -0.322 0.485 0.404 -1.068 -1.268 0.594 0.226 -0.143 -0.663 0.212 0.659 -0.663 -0.297 0.764 -1.104 0.033 -0.170 0.462 -0.134 -0.282 -0.492 0.462 -0.244 0.093 N-10 LUT 3 2 4 0 0.000 -0.159 -0.159 0.978 -2.066 -0.135 0.839 -0.855 -0.419 -0.085 0.601 0.172 -1.273 -0.807 0.652 -0.637 0.280 -0.697 -0.385 1.187 -1.555 -0.297 0.542 -0.218 -0.199 -0.954 0.505 0.724 -1.276 -1.535 0.587 0.444 -0.337 -0.322 0.278 0.701 -1.469 -0.391 0.609 -0.188 -0.261 0.058 0.421 0.104 -0.874 -1.248 0.121 0.895 -0.663 -0.778 -0.126 0.663 -0.126 -0.722 0.564 -0.722 0.389 -0.093 0.129 0.209 -0.300 -1.222 0.747 -0.222 0.051 N-9 LUT 3 2 4 0 0.000 -0.110 -0.451 0.772 -0.657 0.039 -0.183 0.139 -0.013 -0.209 -0.013 0.791 -1.271 -1.170 0.596 0.209 -0.170 -1.298 -0.220 1.233 -1.380 -0.318 0.294 0.153 -0.218 -0.891 0.382 0.882 -1.668 -1.551 0.366 0.722 -0.473 -0.623 0.348 0.799 -1.566 -0.397 0.451 0.281 -0.603 -0.356 0.481 0.206 -0.578 -0.839 -0.369 1.133 -1.080 -1.615 0.292 1.029 -1.293 -0.585 0.861 -0.743 -0.121 -0.614 0.415 0.601 -1.009 -1.102 0.358 0.121 0.220 N-8 LUT 3 2 4 0 0.000 -0.344 0.204 0.541 -0.722 -0.285 1.060 -1.170 -0.622 -0.530 0.624 0.506 -1.530 -1.263 0.874 -0.778 0.222 -1.426 0.381 0.949 -1.339 -0.378 0.635 -0.600 0.025 -1.354 0.579 0.596 -0.726 -1.412 0.670 0.333 -0.371 -0.312 0.273 0.609 -1.119 -0.772 0.684 -0.346 0.030 -0.029 0.467 -0.090 -0.519 -2.524 0.284 0.686 0.000 -1.000 0.415 0.663 -0.778 -0.766 1.000 -1.280 0.000 -0.314 0.625 -0.091 -0.484 -1.476 0.569 0.279 -0.083 N-7 LUT 3 2 4 0 0.000 -0.170 0.345 0.345 -0.807 -0.355 0.922 -0.663 -0.532 -0.198 0.493 0.160 -0.729 -0.644 0.678 0.057 -0.474 -0.907 -0.322 1.152 -1.170 -0.335 0.542 -0.079 -0.313 -1.123 0.824 0.529 -1.609 -0.911 0.376 0.674 -0.800 -0.208 0.137 0.711 -1.330 -0.500 0.873 -0.572 -0.343 -0.016 0.683 -0.080 -1.124 -1.301 0.506 0.476 -0.354 -1.087 -0.087 1.000 -0.766 -0.276 0.557 -0.817 0.183 -0.142 0.524 0.087 -0.752 -1.369 0.548 -0.369 0.461 N-6 LUT 3 2 4 0 0.000 -0.605 -0.190 1.020 -1.190 0.082 -0.087 0.135 -0.149 -0.463 0.193 0.682 -0.923 -1.524 0.936 -0.354 -0.064 -1.147 -0.330 1.306 -1.839 -0.156 -0.108 0.522 -0.438 -0.745 0.024 0.943 -1.108 -1.206 0.007 0.949 -0.665 -0.916 -0.538 1.301 -1.653 -0.375 0.420 0.237 -0.489 -0.315 0.128 0.792 -1.430 -1.459 -0.290 1.155 -0.759 -0.222 -0.637 1.100 -1.485 -0.403 0.500 -0.072 -0.188 -0.743 0.257 0.664 -0.682 -1.248 0.131 0.716 -0.248 N-5 LUT 3 2 4 0 0.000 -0.215 -0.022 0.885 -1.700 -0.212 0.750 -0.553 -0.372 -0.221 0.451 0.254 -0.781 -0.926 1.000 -0.078 -0.926 -1.329 0.182 1.130 -1.844 -0.446 0.509 -0.228 -0.016 -1.489 0.483 0.887 -1.332 -1.923 0.350 0.492 0.077 -0.346 -0.538 0.902 -0.609 -1.300 0.787 -0.196 -0.007 -0.187 0.502 0.087 -0.638 -0.984 0.257 0.415 -0.051 -0.652 0.447 0.348 -0.459 -0.411 0.830 -1.870 0.259 -0.563 0.501 0.148 -0.322 -1.441 0.922 -0.547 0.074 N-4 LUT 3 2 4 0 0.000 -0.115 -0.022 0.836 -1.700 0.319 0.904 -0.768 -1.768 -0.136 0.771 0.186 -2.021 0.253 1.089 -1.970 -1.233 -1.611 0.710 0.891 -2.459 0.138 0.906 -0.645 -1.371 -0.855 0.812 0.484 -1.773 -1.924 0.974 0.449 -1.296 -0.361 0.735 0.376 -1.946 -0.117 0.815 -0.612 -0.589 -0.459 0.898 0.000 -1.290 -1.047 0.835 0.320 -1.047 -1.129 1.041 0.041 -1.129 -0.031 0.858 -0.660 -0.797 0.109 0.739 0.012 -2.038 -1.555 0.969 0.200 -0.854 N-3 LUT 3 2 4 0 0.000 0.585 -1.193 0.858 -2.000 1.174 -1.115 -0.156 -1.379 0.951 -0.760 0.366 -2.412 -0.115 0.469 0.300 -1.115 -0.189 -1.511 1.386 -2.663 1.014 -1.410 0.461 -2.135 0.277 -1.062 1.098 -2.565 -0.051 -1.399 1.251 -1.858 0.766 -1.737 0.888 -2.737 1.032 -1.431 0.431 -2.083 1.026 -1.459 0.576 -3.196 -0.437 -0.852 1.300 -2.022 0.387 -0.531 0.759 -1.700 1.057 -1.046 0.243 -1.994 0.160 -0.181 0.795 -1.918 0.245 -0.755 0.889 -1.433 N-2 LUT 3 2 4 0 0.000 -0.359 0.687 0.272 -1.313 0.322 0.585 -0.778 -0.585 -0.343 1.187 -1.291 -0.928 -0.939 0.646 -0.524 0.284 -0.359 0.489 0.468 -1.205 0.271 0.427 -0.466 -0.466 -1.000 1.243 -0.383 -1.447 -0.730 0.717 0.132 -0.605 0.217 0.376 0.100 -1.096 0.225 -0.228 0.109 -0.154 -0.495 1.169 -0.624 -1.349 -1.222 0.363 0.515 -0.222 -0.369 1.133 -0.254 -2.369 0.376 0.376 -0.624 -0.402 -0.105 0.850 -0.449 -0.902 -0.737 0.678 0.485 -1.322 N-1 LUT 3 2 4 0 0.000 -1.069 0.078 1.157 -2.069 -1.253 1.523 -1.119 -2.026 -0.585 0.695 0.641 -2.692 -2.026 1.706 -2.248 -1.833 -1.290 -0.138 1.348 -2.874 -0.290 1.241 -0.874 -1.874 -1.858 0.312 1.049 -1.273 -1.807 1.100 0.441 -2.222 -0.899 0.764 0.686 -2.676 -2.056 1.488 -0.646 -1.661 -0.675 0.691 0.556 -1.790 -2.511 1.144 0.167 -1.026 -0.322 0.000 1.000 -2.322 -0.637 1.193 -1.807 -0.348 -0.773 0.227 0.890 -1.358 -1.170 1.333 -0.433 -1.755 A LUT 3 2 4 0 0.000 1.932 -4.022 -4.022 -4.022 1.973 -5.349 -5.349 -5.349 1.984 -6.071 -6.071 -6.071 1.816 -2.644 -2.644 -2.644 1.957 -4.687 -4.687 -4.687 1.994 -7.594 -7.594 -7.594 1.972 -5.267 -5.267 -5.267 1.949 -4.443 -4.443 -4.443 1.952 -4.524 -4.524 -4.524 1.981 -5.864 -5.864 -5.864 1.982 -5.913 -5.913 -5.913 1.871 -3.129 -3.129 -3.129 1.752 -2.248 -2.248 -2.248 1.979 -5.665 -5.665 -5.665 1.928 -3.954 -3.954 -3.954 1.830 -2.755 -2.755 -2.755 T LUT 3 2 4 0 0.000 -6.061 -6.061 -6.061 1.984 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.409 -8.409 -8.409 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.480 -7.480 -7.480 1.994 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.340 -5.340 -5.340 1.973 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.283 -9.283 1.998 -9.283 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.376 -0.582 1.021 -0.912 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.172 0.106 0.459 -1.243 -0.126 0.584 -0.780 0.003 0.232 0.873 -0.493 -1.815 -2.214 1.068 -0.384 -0.117 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -1.031 -0.212 0.925 -0.419 -0.470 0.778 -0.596 -0.148 -1.494 0.687 0.243 -0.231 -2.170 0.415 1.152 -2.170 -0.929 -0.629 1.348 -1.822 -0.464 0.379 0.070 -0.112 -1.193 0.322 1.000 -1.678 -1.054 -0.295 1.267 -1.755 -0.878 -0.229 1.079 -1.027 -0.921 0.360 0.506 -0.380 -0.745 0.255 0.722 -0.833 -2.217 -0.080 1.268 -1.217 -2.392 1.415 -2.392 -0.070 -0.476 0.382 0.016 -0.049 -4.066 -0.259 1.182 -0.259 -1.322 0.888 0.202 -0.737 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 -0.020 0.131 0.286 -0.517 0.546 -0.114 -0.138 -0.501 -0.501 0.459 0.249 -0.454 0.014 0.079 0.171 -0.308 0.277 0.161 -0.599 0.014 -0.549 0.657 -0.176 -0.227 -7.008 -7.008 -7.008 1.992 1.992 -7.008 -7.008 -7.008 1.992 -7.008 -7.008 -7.008 TAG WMM 9 6 4 0 0.000 -0.049 0.111 0.403 -0.664 0.325 -0.164 -0.229 0.002 -0.869 0.626 0.397 -0.757 0.219 0.009 0.023 -0.297 0.219 0.044 -0.306 -0.005 -0.757 0.733 0.285 -0.922 -7.664 -7.664 -7.664 1.995 1.995 -7.664 -7.664 -7.664 -7.664 -7.664 1.995 -7.664 TGA WMM 9 6 4 0 0.000 -0.029 0.206 0.250 -0.560 0.253 0.152 -0.197 -0.278 -0.693 0.490 0.398 -0.599 -0.139 0.261 0.239 -0.486 0.338 -0.097 -0.486 0.121 -1.421 1.058 0.344 -1.863 -8.387 -8.387 -8.387 1.997 -8.387 -8.387 1.997 -8.387 1.997 -8.387 -8.387 -8.387 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam39.hmm0000644000175000017500000023006111424066010015000 0ustar moellermoellerzoeHMM mammal 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.861976 Inter Esngl 0.138024 Intron Eterm 0.139237 Intron Exon 0.860763 0.421945 0.380910 0.197145 0.576764 0.227001 0.196235 0.525958 0.276807 0.197234 0.556318 0.238690 0.204992 0.863083 0.136917 0.860330 0.139670 0.856594 0.143406 Einit 2 DEFINED 0 249 -9.384 -9.290 -9.201 -9.118 -9.039 -8.965 -8.894 -8.826 -8.762 -8.700 -8.640 -8.599 -8.558 -8.519 -8.481 -8.444 -8.407 -8.372 -8.337 -8.304 -8.271 -8.235 -8.199 -8.165 -8.131 -8.099 -8.067 -8.035 -8.004 -7.974 -7.945 -7.911 -7.878 -7.845 -7.814 -7.783 -7.753 -7.723 -7.694 -7.665 -7.637 -7.623 -7.609 -7.595 -7.581 -7.567 -7.554 -7.540 -7.527 -7.514 -7.501 -7.486 -7.471 -7.457 -7.443 -7.429 -7.415 -7.401 -7.387 -7.373 -7.360 -7.356 -7.352 -7.348 -7.344 -7.340 -7.336 -7.333 -7.329 -7.325 -7.321 -7.323 -7.324 -7.326 -7.327 -7.329 -7.330 -7.332 -7.333 -7.335 -7.336 -7.350 -7.364 -7.377 -7.391 -7.405 -7.419 -7.434 -7.448 -7.463 -7.478 -7.492 -7.508 -7.523 -7.538 -7.554 -7.569 -7.585 -7.601 -7.618 -7.634 -7.641 -7.649 -7.656 -7.664 -7.671 -7.679 -7.686 -7.694 -7.701 -7.709 -7.727 -7.744 -7.762 -7.780 -7.799 -7.817 -7.836 -7.855 -7.875 -7.895 -7.906 -7.918 -7.930 -7.943 -7.955 -7.967 -7.980 -7.992 -8.005 -8.018 -8.023 -8.028 -8.033 -8.038 -8.043 -8.048 -8.053 -8.058 -8.063 -8.068 -8.082 -8.096 -8.110 -8.124 -8.139 -8.153 -8.168 -8.183 -8.198 -8.213 -8.224 -8.235 -8.246 -8.257 -8.268 -8.280 -8.291 -8.303 -8.314 -8.326 -8.347 -8.368 -8.389 -8.411 -8.433 -8.455 -8.478 -8.501 -8.524 -8.548 -8.580 -8.613 -8.646 -8.681 -8.716 -8.752 -8.789 -8.827 -8.866 -8.906 -8.924 -8.942 -8.960 -8.978 -8.997 -9.016 -9.035 -9.055 -9.074 -9.094 -9.111 -9.128 -9.145 -9.162 -9.180 -9.198 -9.215 -9.234 -9.252 -9.271 -9.289 -9.307 -9.325 -9.344 -9.363 -9.382 -9.401 -9.421 -9.440 -9.461 -9.470 -9.479 -9.488 -9.497 -9.506 -9.516 -9.525 -9.535 -9.544 -9.554 -9.588 -9.623 -9.658 -9.695 -9.733 -9.771 -9.811 -9.852 -9.894 -9.937 -9.974 -10.011 -10.049 -10.089 -10.130 -10.171 -10.215 -10.259 -10.305 -10.352 -10.356 -10.360 -10.365 -10.369 -10.373 -10.377 -10.382 -10.386 -10.390 GEOMETRIC 250 -1 155 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -9.859 -9.761 -9.669 -9.582 -9.501 -9.424 -9.351 -9.281 -9.214 -9.151 -9.090 -9.026 -8.964 -8.905 -8.849 -8.794 -8.742 -8.691 -8.642 -8.595 -8.549 -8.511 -8.474 -8.437 -8.402 -8.368 -8.334 -8.301 -8.269 -8.238 -8.207 -8.190 -8.173 -8.156 -8.139 -8.123 -8.106 -8.090 -8.074 -8.059 -8.043 -8.034 -8.024 -8.015 -8.005 -7.996 -7.987 -7.977 -7.968 -7.959 -7.950 -7.937 -7.924 -7.912 -7.899 -7.887 -7.874 -7.862 -7.850 -7.838 -7.826 -7.818 -7.810 -7.803 -7.795 -7.787 -7.779 -7.772 -7.764 -7.757 -7.749 -7.752 -7.756 -7.759 -7.763 -7.766 -7.770 -7.773 -7.777 -7.780 -7.784 -7.774 -7.763 -7.754 -7.744 -7.734 -7.724 -7.714 -7.705 -7.695 -7.686 -7.683 -7.680 -7.678 -7.675 -7.673 -7.670 -7.668 -7.665 -7.662 -7.660 -7.664 -7.668 -7.671 -7.675 -7.679 -7.683 -7.687 -7.691 -7.695 -7.699 -7.694 -7.690 -7.685 -7.680 -7.676 -7.671 -7.667 -7.662 -7.658 -7.653 -7.657 -7.660 -7.663 -7.666 -7.669 -7.673 -7.676 -7.679 -7.682 -7.686 -7.701 -7.717 -7.732 -7.748 -7.765 -7.781 -7.797 -7.814 -7.831 -7.848 -7.853 -7.857 -7.862 -7.867 -7.872 -7.877 -7.882 -7.886 -7.891 -7.896 -7.900 -7.904 -7.909 -7.913 -7.917 -7.921 -7.926 -7.930 -7.934 -7.938 -7.954 -7.970 -7.986 -8.002 -8.018 -8.035 -8.052 -8.068 -8.086 -8.103 -8.125 -8.147 -8.170 -8.193 -8.216 -8.240 -8.264 -8.289 -8.314 -8.339 -8.368 -8.397 -8.426 -8.457 -8.488 -8.519 -8.552 -8.585 -8.619 -8.653 -8.690 -8.728 -8.767 -8.807 -8.848 -8.890 -8.934 -8.979 -9.025 -9.073 -9.095 -9.118 -9.141 -9.164 -9.188 -9.212 -9.237 -9.262 -9.288 -9.314 -9.343 -9.373 -9.404 -9.436 -9.468 -9.501 -9.535 -9.569 -9.604 -9.641 -9.648 -9.656 -9.664 -9.671 -9.679 -9.687 -9.695 -9.703 -9.711 -9.719 -9.728 -9.738 -9.747 -9.757 -9.766 -9.776 -9.786 -9.796 -9.805 -9.815 -9.823 -9.830 -9.837 -9.844 -9.852 -9.859 -9.866 -9.874 -9.881 GEOMETRIC 250 -1 189 Exon 2 DEFINED 0 249 -12.671 -12.408 -12.185 -11.993 -11.823 -11.671 -11.533 -11.408 -11.292 -11.185 -11.086 -10.904 -10.743 -10.598 -10.466 -10.345 -10.234 -10.131 -10.034 -9.944 -9.859 -9.733 -9.618 -9.511 -9.412 -9.319 -9.232 -9.150 -9.072 -8.998 -8.928 -8.845 -8.766 -8.692 -8.622 -8.554 -8.490 -8.428 -8.369 -8.313 -8.258 -8.201 -8.146 -8.093 -8.042 -7.992 -7.945 -7.899 -7.854 -7.810 -7.768 -7.728 -7.690 -7.652 -7.615 -7.579 -7.544 -7.510 -7.476 -7.444 -7.412 -7.388 -7.364 -7.341 -7.318 -7.295 -7.273 -7.251 -7.229 -7.208 -7.187 -7.171 -7.155 -7.139 -7.123 -7.107 -7.092 -7.077 -7.062 -7.047 -7.032 -7.024 -7.017 -7.009 -7.001 -6.994 -6.986 -6.978 -6.971 -6.963 -6.956 -6.957 -6.957 -6.958 -6.959 -6.959 -6.960 -6.961 -6.961 -6.962 -6.963 -6.969 -6.976 -6.982 -6.989 -6.996 -7.003 -7.009 -7.016 -7.023 -7.030 -7.039 -7.048 -7.057 -7.067 -7.076 -7.086 -7.095 -7.105 -7.114 -7.124 -7.139 -7.154 -7.169 -7.184 -7.200 -7.215 -7.231 -7.247 -7.263 -7.280 -7.297 -7.314 -7.331 -7.349 -7.367 -7.385 -7.403 -7.422 -7.441 -7.460 -7.478 -7.497 -7.516 -7.536 -7.555 -7.575 -7.595 -7.616 -7.636 -7.657 -7.682 -7.707 -7.732 -7.758 -7.785 -7.812 -7.839 -7.867 -7.895 -7.924 -7.952 -7.981 -8.010 -8.040 -8.070 -8.101 -8.133 -8.165 -8.199 -8.233 -8.261 -8.290 -8.320 -8.351 -8.382 -8.414 -8.446 -8.480 -8.514 -8.549 -8.582 -8.617 -8.653 -8.689 -8.727 -8.765 -8.805 -8.845 -8.887 -8.930 -8.963 -8.997 -9.031 -9.067 -9.103 -9.140 -9.179 -9.218 -9.258 -9.300 -9.339 -9.379 -9.420 -9.463 -9.506 -9.551 -9.598 -9.646 -9.696 -9.747 -9.786 -9.826 -9.867 -9.909 -9.952 -9.997 -10.043 -10.091 -10.141 -10.192 -10.222 -10.253 -10.285 -10.317 -10.350 -10.384 -10.419 -10.455 -10.491 -10.529 -10.564 -10.601 -10.639 -10.677 -10.717 -10.758 -10.800 -10.843 -10.888 -10.934 -10.961 -10.989 -11.018 -11.048 -11.077 -11.108 -11.139 -11.171 -11.204 GEOMETRIC 250 -1 119 Inter 1 GEOMETRIC 0 -1 25000 Intron 1 GEOMETRIC 0 -1 1661 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.586 -0.783 -0.515 0.285 0.461 -0.459 -2.196 0.747 0.313 -0.501 -0.554 0.455 0.121 -1.068 -0.101 0.588 -0.078 -0.390 -0.233 0.525 0.415 -0.282 -2.647 0.752 -0.170 -0.548 -0.622 0.830 -0.337 -0.524 -0.056 0.633 0.506 -0.655 -0.128 0.043 0.556 -0.217 -2.380 0.564 0.364 -0.405 -0.361 0.238 0.013 -0.743 -0.142 0.573 0.586 -0.815 -0.756 0.420 0.443 -0.421 -3.228 0.837 -0.006 -0.552 -0.399 0.645 -0.143 -0.647 -0.500 0.807 I-36 LUT 3 2 4 0 0.000 0.594 -0.673 -0.645 0.292 0.487 -0.565 -2.508 0.805 0.432 -0.568 -0.650 0.422 0.191 -0.858 -0.096 0.455 0.055 -0.605 -0.119 0.468 0.281 0.020 -3.257 0.736 0.495 -0.907 -0.627 0.495 -0.346 -0.536 -0.045 0.636 0.591 -0.790 -0.169 0.036 0.574 -0.472 -3.204 0.750 0.436 -0.371 -0.486 0.214 0.065 -0.691 -0.015 0.427 0.509 -0.687 -0.748 0.444 0.431 -0.588 -2.495 0.855 0.193 -0.568 -0.463 0.543 -0.122 -0.590 -0.433 0.745 I-35 LUT 3 2 4 0 0.000 0.607 -0.742 -0.540 0.253 0.463 -0.548 -2.396 0.805 0.321 -0.445 -0.473 0.374 0.104 -0.973 -0.080 0.555 -0.016 -0.333 -0.069 0.338 0.315 0.023 -2.773 0.672 0.014 -0.381 -1.459 0.894 -0.303 -0.460 -0.064 0.591 0.483 -0.710 -0.347 0.269 0.463 -0.310 -2.895 0.749 0.547 -0.494 -0.582 0.215 -0.058 -0.611 -0.026 0.488 0.578 -0.760 -0.930 0.477 0.328 -0.326 -2.896 0.859 0.191 -0.423 -0.429 0.454 -0.169 -0.502 -0.328 0.685 I-34 LUT 3 2 4 0 0.000 0.545 -0.727 -0.543 0.322 0.541 -0.576 -2.172 0.724 0.482 -0.685 -0.504 0.352 0.055 -0.795 -0.212 0.606 -0.010 -0.536 -0.273 0.575 0.280 -0.080 -2.609 0.745 -0.410 -0.073 -0.199 0.512 -0.273 -0.413 -0.054 0.543 0.586 -0.811 -0.360 0.201 0.426 -0.255 -2.896 0.752 0.320 -0.313 -0.436 0.272 0.074 -0.745 -0.032 0.457 0.527 -0.739 -0.782 0.464 0.455 -0.411 -2.995 0.808 0.171 -0.579 -0.626 0.639 -0.163 -0.505 -0.565 0.788 I-33 LUT 3 2 4 0 0.000 0.587 -0.748 -0.742 0.384 0.534 -0.748 -2.931 0.868 0.311 -0.608 -0.496 0.479 0.066 -0.790 -0.286 0.636 0.096 -0.350 -0.389 0.468 0.375 -0.485 -2.277 0.834 -0.284 -0.720 0.193 0.515 -0.140 -0.646 -0.031 0.561 0.603 -0.708 -0.362 0.126 0.556 -0.356 -2.647 0.667 0.231 -0.197 -0.540 0.341 -0.045 -0.752 -0.045 0.554 0.549 -0.756 -0.792 0.451 0.251 -0.254 -3.061 0.888 0.213 -0.605 -0.687 0.644 -0.141 -0.524 -0.661 0.820 I-32 LUT 3 2 4 0 0.000 0.529 -0.592 -0.628 0.318 0.441 -0.386 -2.718 0.786 0.215 -0.693 -0.366 0.531 0.075 -0.911 -0.156 0.601 -0.176 -0.184 -0.304 0.511 0.305 -0.029 -3.164 0.743 -0.059 -0.556 -1.059 0.911 -0.374 -0.516 0.073 0.563 0.535 -0.640 -0.346 0.167 0.324 -0.393 -2.666 0.871 0.284 -0.474 -0.439 0.405 -0.011 -0.844 0.055 0.497 0.570 -0.612 -0.775 0.353 0.249 -0.286 -3.094 0.906 0.315 -0.614 -0.878 0.641 -0.248 -0.537 -0.499 0.816 I-31 LUT 3 2 4 0 0.000 0.543 -0.727 -0.625 0.367 0.494 -0.463 -2.425 0.749 0.352 -0.506 -0.610 0.448 0.109 -1.050 -0.181 0.638 -0.072 -0.421 -0.367 0.610 0.177 -0.314 -2.861 0.947 -0.569 -0.668 -0.668 1.048 -0.270 -0.538 -0.054 0.603 0.545 -0.579 -0.450 0.189 0.330 -0.180 -3.382 0.820 0.256 -0.401 -0.401 0.369 -0.073 -0.849 -0.086 0.634 0.683 -0.747 -1.083 0.408 0.421 -0.501 -3.275 0.888 0.373 -0.553 -0.785 0.530 -0.183 -0.460 -0.568 0.781 I-30 LUT 3 2 4 0 0.000 0.526 -0.692 -0.962 0.514 0.508 -0.526 -2.316 0.751 0.321 -0.523 -0.757 0.549 0.086 -0.900 -0.220 0.627 0.016 -0.566 -0.422 0.648 0.274 -0.245 -2.647 0.838 -0.369 -0.452 -0.291 0.746 -0.133 -0.369 -0.339 0.607 0.491 -0.409 -0.616 0.250 0.377 -0.189 -2.613 0.731 0.348 -0.763 -0.787 0.640 -0.080 -0.681 -0.120 0.595 0.721 -0.692 -0.927 0.271 0.338 -0.522 -3.007 0.937 0.353 -0.640 -0.839 0.606 -0.171 -0.545 -0.576 0.812 I-29 LUT 3 2 4 0 0.000 0.519 -0.687 -0.819 0.464 0.439 -0.411 -2.753 0.803 0.295 -0.420 -0.781 0.530 0.089 -0.887 -0.259 0.641 0.130 -0.446 -0.214 0.388 0.294 -0.333 -2.532 0.854 -0.157 -0.420 -0.494 0.718 -0.298 -0.528 -0.029 0.598 0.428 -0.280 -0.589 0.222 0.122 -0.280 -2.972 0.971 0.363 -0.577 -0.675 0.503 0.011 -0.623 -0.268 0.598 0.800 -0.790 -1.235 0.328 0.567 -0.730 -4.287 0.898 0.417 -0.758 -0.816 0.590 -0.133 -0.547 -0.527 0.774 I-28 LUT 3 2 4 0 0.000 0.431 -0.584 -0.930 0.546 0.578 -0.694 -2.682 0.794 0.113 -0.446 -0.725 0.660 0.006 -0.925 -0.243 0.699 -0.105 -0.280 -0.478 0.612 0.326 -0.383 -3.015 0.892 -0.682 -0.179 -0.566 0.862 -0.062 -0.368 -0.172 0.464 0.310 -0.555 -0.511 0.462 0.134 -0.499 -2.437 1.007 0.138 -0.540 -0.719 0.682 -0.100 -0.826 -0.288 0.752 0.972 -1.002 -1.489 0.241 0.358 -0.611 -3.655 0.989 0.339 -0.679 -0.867 0.644 -0.220 -0.618 -0.683 0.901 I-27 LUT 3 2 4 0 0.000 0.365 -0.511 -0.811 0.526 0.235 -0.391 -2.420 0.906 0.108 -0.441 -0.790 0.685 0.065 -0.962 -0.225 0.665 -0.005 -0.312 -0.682 0.655 0.396 -0.354 -2.566 0.794 -0.305 -0.692 -0.807 1.000 -0.146 -0.411 -0.245 0.586 0.375 -0.618 -0.657 0.503 0.146 -0.287 -2.662 0.938 0.037 -0.462 -0.711 0.711 0.051 -0.783 -0.053 0.505 0.888 -0.743 -1.590 0.287 0.387 -0.659 -3.412 0.975 0.433 -0.790 -0.807 0.585 -0.011 -0.628 -0.702 0.804 I-26 LUT 3 2 4 0 0.000 0.342 -0.371 -1.111 0.582 0.466 -0.603 -2.499 0.835 0.204 -0.389 -1.024 0.671 0.116 -0.927 -0.296 0.656 -0.023 -0.208 -0.678 0.609 0.136 -0.359 -2.506 0.960 -0.570 -0.663 -0.110 0.822 -0.249 -0.407 -0.169 0.599 0.417 -0.290 -0.870 0.379 0.167 -0.060 -3.198 0.855 0.227 -0.475 -1.313 0.772 0.005 -0.763 -0.089 0.553 0.914 -0.995 -1.520 0.340 0.459 -0.453 -4.177 0.880 0.423 -0.755 -1.125 0.686 0.007 -0.666 -0.794 0.838 I-25 LUT 3 2 4 0 0.000 0.396 -0.293 -1.232 0.528 0.288 -0.568 -2.673 0.962 0.033 -0.322 -0.907 0.717 0.029 -0.924 -0.318 0.723 0.002 -0.352 -0.563 0.622 0.184 -0.252 -2.796 0.911 -0.170 -1.532 -0.092 0.870 -0.422 -0.313 -0.152 0.631 0.384 -0.022 -1.031 0.288 -0.136 -0.372 -3.103 1.138 0.067 -0.644 -0.781 0.792 0.023 -0.696 -0.311 0.642 0.967 -0.816 -1.742 0.237 0.380 -0.602 -4.501 0.997 0.456 -0.601 -1.360 0.659 -0.029 -0.669 -0.782 0.856 I-24 LUT 3 2 4 0 0.000 0.296 -0.428 -1.237 0.682 0.406 -0.525 -2.455 0.846 0.185 -0.556 -0.955 0.738 0.074 -1.070 -0.247 0.704 0.075 -0.431 -0.694 0.666 0.115 -0.177 -2.749 0.914 -1.020 -0.489 -0.868 1.168 -0.365 -0.371 -0.180 0.648 0.129 -0.027 -0.939 0.489 0.123 -0.342 -2.585 0.968 -0.158 -0.108 -1.158 0.789 0.056 -0.977 -0.152 0.635 0.950 -0.757 -1.828 0.256 0.268 -0.531 -3.475 1.010 0.517 -0.762 -1.347 0.666 -0.125 -0.554 -0.825 0.878 I-23 LUT 3 2 4 0 0.000 0.368 -0.410 -1.206 0.608 0.336 -0.310 -2.592 0.820 0.133 -0.447 -1.204 0.796 0.069 -0.938 -0.201 0.641 -0.052 -0.218 -0.752 0.662 -0.102 0.003 -2.423 0.910 -0.293 -0.222 -0.527 0.707 -0.420 -0.267 -0.137 0.597 0.243 -0.160 -1.190 0.569 -0.183 -0.348 -2.392 1.100 0.082 -0.186 -1.216 0.707 -0.280 -0.748 -0.056 0.695 0.975 -0.987 -1.900 0.335 0.318 -0.520 -3.419 0.973 0.480 -0.825 -1.333 0.717 -0.153 -0.572 -0.939 0.931 I-22 LUT 3 2 4 0 0.000 0.409 -0.352 -1.255 0.556 0.239 -0.456 -2.897 0.969 -0.087 -0.292 -0.717 0.708 -0.176 -0.999 -0.251 0.828 -0.238 -0.230 -0.815 0.792 0.089 -0.457 -3.194 1.069 -0.474 -0.474 -0.474 0.880 -0.383 -0.424 -0.235 0.712 0.139 -0.231 -0.971 0.620 -0.066 -0.434 -2.803 1.112 -0.207 -0.270 -0.807 0.793 -0.308 -0.585 -0.219 0.737 0.828 -0.748 -1.741 0.411 0.167 -0.367 -3.572 1.013 0.201 -0.679 -1.031 0.796 -0.397 -0.558 -0.736 0.972 I-21 LUT 3 2 4 0 0.000 0.471 -0.422 -1.378 0.568 0.242 -0.434 -2.702 0.943 0.073 -0.287 -0.726 0.608 -0.137 -0.923 -0.126 0.720 0.002 -0.377 -0.878 0.752 -0.284 0.070 -2.579 0.972 -0.115 -1.285 -0.285 0.885 -0.617 -0.372 -0.228 0.784 0.213 -0.098 -1.019 0.499 0.036 -0.262 -3.150 1.020 0.111 -0.191 -0.513 0.426 -0.497 -0.696 -0.158 0.830 0.785 -0.869 -1.643 0.495 0.083 -0.376 -3.492 1.058 0.155 -0.702 -1.235 0.885 -0.520 -0.565 -0.744 1.021 I-20 LUT 3 2 4 0 0.000 0.415 -0.387 -1.302 0.582 0.354 -0.343 -2.508 0.814 0.252 -0.444 -0.640 0.519 -0.157 -0.765 -0.186 0.710 -0.190 -0.310 -0.775 0.792 -0.307 -0.028 -2.855 1.051 -0.569 -0.306 -1.016 1.016 -0.710 -0.470 -0.175 0.832 0.334 -0.223 -0.857 0.412 0.040 0.131 -3.899 0.856 -0.049 0.078 -0.750 0.468 -0.399 -0.683 -0.191 0.801 0.633 -0.765 -1.858 0.664 -0.016 -0.277 -3.774 1.079 0.041 -0.771 -1.099 0.940 -0.640 -0.543 -0.870 1.087 I-19 LUT 3 2 4 0 0.000 0.411 -0.459 -1.286 0.616 0.156 -0.526 -2.215 0.982 0.050 -0.339 -1.117 0.776 -0.229 -0.814 -0.242 0.792 -0.160 -0.473 -1.125 0.946 -0.254 -0.040 -3.040 1.048 -1.000 -0.415 -0.234 0.926 -1.058 -0.179 -0.363 0.894 0.362 -0.136 -1.470 0.530 -0.302 -0.190 -2.704 1.110 -0.281 -0.256 -0.792 0.817 -0.806 -0.906 -0.228 1.029 0.524 -0.595 -2.463 0.781 -0.305 -0.189 -3.505 1.154 -0.175 -0.572 -0.914 0.934 -0.778 -0.502 -0.767 1.086 I-18 LUT 3 2 4 0 0.000 0.409 -0.367 -1.492 0.624 0.070 -0.310 -2.425 0.969 -0.110 -0.358 -0.965 0.832 -0.439 -0.841 -0.243 0.895 -0.207 -0.313 -1.061 0.887 -0.357 0.191 -2.817 0.953 -0.722 -0.170 -0.459 0.830 -1.217 -0.231 -0.393 0.968 0.240 -0.130 -1.536 0.642 -0.229 -0.141 -3.091 1.086 -0.236 -0.364 -0.286 0.636 -0.800 -0.482 -0.187 0.873 0.240 -0.574 -2.558 0.983 -0.545 -0.238 -3.709 1.257 -0.482 -0.514 -1.147 1.092 -0.885 -0.447 -0.833 1.113 I-17 LUT 3 2 4 0 0.000 0.481 -0.319 -1.976 0.631 0.078 -0.416 -2.524 1.015 -0.178 -0.494 -1.064 0.947 -0.513 -0.806 -0.251 0.916 0.097 -0.465 -1.710 0.926 -0.448 0.133 -3.142 1.040 -1.032 -0.585 -0.585 1.123 -1.532 -0.292 -0.287 1.013 0.419 -0.372 -1.723 0.667 -0.546 -0.016 -2.939 1.135 -0.585 -0.490 -0.553 0.956 -1.012 -0.745 -0.072 0.968 0.151 -0.604 -2.564 1.044 -0.548 -0.208 -4.044 1.257 -0.617 -0.486 -1.219 1.140 -1.050 -0.564 -0.805 1.182 I-16 LUT 3 2 4 0 0.000 0.504 -0.958 -1.679 0.812 0.091 -0.503 -2.624 1.048 -0.369 -0.732 -1.452 1.175 -0.521 -0.938 -0.446 1.034 -0.150 -0.238 -2.226 1.026 -0.793 0.214 -3.364 1.115 -1.340 -0.092 -0.755 1.052 -1.447 -0.234 -0.411 1.022 0.389 -0.485 -1.692 0.737 -0.290 -0.067 -3.138 1.080 -0.371 -0.609 -0.850 1.012 -0.813 -0.842 -0.260 1.027 0.163 -0.527 -2.640 1.019 -0.663 -0.253 -3.150 1.273 -0.869 -0.457 -1.178 1.190 -1.010 -0.402 -1.015 1.171 I-15 LUT 3 2 4 0 0.000 0.391 -0.391 -2.322 0.787 -0.328 -0.093 -2.521 1.064 -0.297 -0.382 -1.619 1.066 -0.729 -0.661 -0.521 1.048 -0.355 -0.411 -2.162 1.165 -0.555 -0.084 -2.481 1.136 -1.000 -0.212 -1.000 1.095 -1.621 -0.108 -0.404 0.994 0.193 -0.056 -2.165 0.742 -0.610 -0.214 -3.121 1.244 -0.744 -0.203 -0.788 0.967 -1.043 -0.465 -0.205 0.943 0.092 -0.576 -3.113 1.102 -0.827 -0.144 -3.634 1.293 -0.617 -0.610 -1.584 1.238 -1.081 -0.440 -0.943 1.183 I-14 LUT 3 2 4 0 0.000 0.462 -0.690 -3.037 0.911 -0.406 -0.173 -3.099 1.164 -0.659 -0.100 -0.659 0.848 -0.710 -0.623 -0.493 1.021 -0.594 -0.328 -2.728 1.257 -0.956 0.108 -3.509 1.214 -1.508 -0.508 -2.186 1.446 -1.931 -0.113 -0.406 1.042 0.227 -0.293 -2.740 0.898 -0.471 -0.134 -2.719 1.147 -0.924 -0.296 -0.296 0.883 -1.475 -0.459 -0.224 1.040 0.004 -0.744 -3.725 1.217 -0.799 -0.252 -3.384 1.316 -0.957 -0.458 -1.148 1.205 -1.099 -0.433 -0.947 1.185 I-13 LUT 3 2 4 0 0.000 0.474 -0.570 -4.233 0.914 -0.346 -0.346 -3.136 1.210 -0.243 0.098 -1.342 0.757 -1.071 -0.856 -0.516 1.184 -0.371 -0.356 -4.573 1.265 -0.921 0.109 -3.388 1.200 -1.532 -0.092 -1.340 1.215 -1.794 -0.213 -0.545 1.113 -0.065 -0.328 -3.235 1.099 -0.773 -0.188 -3.550 1.293 -0.647 -0.690 -0.927 1.148 -1.405 -0.526 -0.300 1.081 -0.122 -0.658 -4.726 1.269 -1.241 -0.321 -4.308 1.447 -1.220 -0.581 -1.320 1.323 -1.438 -0.341 -1.151 1.258 I-12 LUT 3 2 4 0 0.000 0.255 -0.659 -5.644 1.107 -0.610 -0.724 -3.070 1.390 -0.273 -1.273 -1.858 1.312 -1.135 -0.877 -0.782 1.274 -0.205 -0.581 -5.062 1.283 -1.052 0.074 -3.503 1.249 -1.248 -0.511 -1.026 1.255 -2.229 -0.278 -0.757 1.245 0.343 -0.432 -4.095 0.950 -1.385 -0.135 -3.436 1.386 -0.700 -0.650 -1.508 1.260 -1.171 -0.645 -0.750 1.215 -0.325 -0.388 -4.692 1.262 -1.050 -0.266 -4.408 1.400 -1.216 -0.642 -1.567 1.374 -1.549 -0.377 -1.177 1.290 I-11 LUT 3 2 4 0 0.000 0.255 -0.614 -4.369 1.074 -0.783 -0.651 -3.162 1.417 -0.503 -0.503 -2.087 1.234 -1.337 -0.748 -1.095 1.345 -0.796 -0.555 -3.577 1.411 -0.996 -0.161 -2.911 1.305 -0.585 -1.170 -1.170 1.290 -2.386 -0.312 -0.950 1.313 -0.091 -0.396 -3.899 1.160 -1.006 -0.675 -4.375 1.499 -0.674 -0.366 -1.366 1.143 -1.554 -0.803 -0.623 1.285 -0.378 -0.566 -7.664 1.350 -1.177 -0.378 -4.015 1.447 -1.174 -0.700 -1.512 1.373 -1.546 -0.471 -1.152 1.314 I-10 LUT 3 2 4 0 0.000 0.211 -0.625 -6.647 1.127 -0.986 -0.426 -4.308 1.433 -1.170 -1.170 -2.170 1.531 -1.047 -0.761 -0.887 1.254 -0.557 -0.166 -5.488 1.267 -1.399 0.280 -4.373 1.238 -1.632 -0.632 -1.632 1.438 -2.143 -0.234 -0.826 1.238 -0.214 -0.214 -3.799 1.140 -1.033 -0.466 -3.203 1.422 -0.518 -0.518 -1.392 1.152 -1.644 -0.388 -0.716 1.206 -0.286 -0.628 -7.617 1.338 -1.414 -0.205 -3.914 1.428 -1.433 -0.844 -1.752 1.473 -1.496 -0.350 -1.197 1.278 I-9 LUT 3 2 4 0 0.000 0.082 -0.357 -6.547 1.104 -0.336 0.108 -3.682 1.037 -0.807 -0.807 0.193 0.778 -0.911 -0.348 -0.859 1.092 -0.160 -0.094 -5.160 1.098 -1.086 0.291 -3.653 1.155 -0.939 -0.524 -2.524 1.383 -2.056 -0.060 -0.555 1.083 0.193 -0.271 -5.129 1.000 -1.403 -0.192 -3.066 1.393 -1.041 -0.282 0.165 0.651 -1.244 -0.216 -0.536 1.019 -0.236 -0.465 -6.760 1.274 -1.032 -0.186 -3.900 1.359 -1.246 -0.607 -1.695 1.386 -1.130 -0.101 -0.906 1.055 I-8 LUT 3 2 4 0 0.000 0.104 -0.256 -5.596 1.048 -0.027 -0.063 -2.541 0.918 -0.585 0.415 0.415 -0.585 -0.844 -0.245 -0.801 1.018 -0.404 -0.018 -6.633 1.168 -0.775 0.384 -3.046 0.992 -1.273 -0.273 -0.688 1.096 -1.530 0.198 -0.786 0.946 0.188 -0.332 -4.238 1.010 -0.747 0.211 -3.292 1.101 -0.700 -0.700 -0.164 0.908 -1.223 -0.051 -0.643 0.975 -0.101 -0.516 -7.032 1.239 -1.078 -0.026 -3.797 1.306 -1.032 -0.486 -1.646 1.309 -1.203 0.021 -1.116 1.063 I-7 LUT 3 2 4 0 0.000 0.326 -0.616 -6.864 1.061 -0.311 -0.091 -3.030 1.093 -0.807 -0.807 0.193 0.778 -1.049 -0.286 -1.137 1.165 -0.213 -0.339 -5.369 1.216 -0.631 0.163 -3.254 1.091 -1.070 -0.807 -0.807 1.252 -1.513 0.169 -0.848 0.978 0.090 -0.206 -4.080 1.007 -0.600 0.173 -4.185 1.110 -0.418 -0.418 -0.954 0.991 -1.176 -0.055 -0.774 1.007 0.081 -0.554 -7.902 1.174 -0.730 0.113 -4.349 1.180 -0.739 -0.574 -1.303 1.216 -1.179 -0.006 -1.122 1.072 I-6 LUT 3 2 4 0 0.000 0.109 -0.881 -6.129 1.241 -0.345 0.011 -3.574 1.085 0.000 -1.000 -1.000 1.000 -1.821 -0.761 -1.363 1.453 -1.059 -0.222 -6.288 1.406 -1.036 0.367 -3.877 1.108 -0.301 -1.109 -0.524 1.021 -1.922 0.068 -1.664 1.246 -0.342 -0.565 -2.565 1.243 -1.298 0.226 -4.298 1.247 -1.653 -0.238 -1.779 1.347 -1.945 -0.407 -1.170 1.346 -0.390 -0.781 -5.536 1.397 -1.316 0.007 -5.091 1.358 -1.012 -0.830 -1.888 1.418 -1.442 -0.273 -1.699 1.320 I-5 LUT 3 2 4 0 0.000 0.542 -0.648 -3.798 0.875 -0.643 -0.216 -2.766 1.234 0.152 -0.170 -2.170 0.830 -2.267 -1.276 -2.324 1.669 -0.189 -0.118 -3.804 1.091 -0.784 0.351 -3.649 1.046 -1.907 -0.684 -0.684 1.316 -2.316 -0.530 -1.674 1.482 0.120 -0.130 -2.532 0.870 -1.007 0.215 -4.592 1.202 -0.208 0.044 -1.015 0.685 -2.284 -1.439 -1.936 1.662 0.321 -0.558 -3.981 1.006 -0.961 0.247 -4.253 1.168 -0.348 -0.509 -1.615 1.128 -1.618 -0.613 -1.890 1.460 I-4 LUT 3 2 4 0 0.000 1.228 -0.533 -3.118 -0.231 0.788 -0.362 -2.114 0.338 0.720 -2.087 0.613 -0.766 -0.015 -0.791 -0.149 0.614 0.960 -0.301 -3.564 0.212 0.682 -0.001 -2.861 0.332 -0.230 -1.346 0.317 0.593 -0.401 -0.218 0.060 0.423 1.090 -0.774 -0.610 -0.663 0.717 -0.179 -2.541 0.379 0.220 -0.719 0.504 -0.304 -0.484 -0.537 -0.082 0.723 1.237 -0.693 -3.948 -0.059 0.484 0.189 -2.841 0.403 0.467 -0.558 -0.090 -0.002 -0.423 -0.467 -0.447 0.846 I-3 LUT 3 2 4 0 0.000 -1.511 1.197 -8.003 0.436 -1.982 0.915 -5.304 0.876 -4.000 1.644 -4.000 -0.415 -1.775 0.651 -4.775 1.071 -1.464 1.280 -8.165 0.270 -1.841 0.817 -6.622 0.963 -2.511 1.000 -4.833 0.840 -1.869 0.789 -5.350 0.981 -1.980 1.350 -5.150 0.225 -2.492 1.073 -5.077 0.756 -1.315 1.313 -4.775 0.108 -2.413 0.675 -3.735 1.098 -0.901 1.118 -8.967 0.370 -2.060 0.858 -8.905 0.960 -1.943 1.166 -6.467 0.570 -1.681 0.943 -6.015 0.808 A LUT 3 2 4 0 0.000 1.991 -6.907 -6.907 -6.907 1.998 -9.317 -9.317 -9.317 0.678 -0.322 -0.322 -0.322 1.997 -8.475 -8.475 -8.475 1.978 -5.615 -5.615 -5.615 1.997 -8.488 -8.488 -8.488 1.000 -0.585 -0.585 -0.585 1.997 -8.569 -8.569 -8.569 1.974 -5.375 -5.375 -5.375 1.997 -8.486 -8.486 -8.486 1.485 -1.322 -1.322 -1.322 1.995 -7.830 -7.830 -7.830 1.990 -6.820 -6.820 -6.820 1.998 -9.448 -9.448 -9.448 1.853 -2.954 -2.954 -2.954 1.998 -9.426 -9.426 -9.426 G LUT 3 2 4 0 0.000 -8.324 -8.324 1.997 -8.324 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.002 -11.002 1.999 -11.002 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -3.322 -3.322 1.888 -3.322 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -10.687 -10.687 1.999 -10.687 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.138 -0.997 0.908 -0.936 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.173 -0.813 -0.556 0.699 0.222 -0.259 -2.199 0.832 0.193 -0.633 -0.600 0.635 -0.710 -0.706 0.279 0.644 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.737 -0.737 -1.121 0.349 0.586 -0.159 -2.060 0.447 0.349 -0.435 -0.466 0.337 -0.137 -0.554 0.144 0.383 0.552 -0.315 -1.080 0.330 0.388 -0.073 -1.522 0.478 0.087 -0.650 0.224 0.180 -0.425 -0.202 0.155 0.348 0.677 -0.779 -0.354 0.051 0.573 -0.317 -2.188 0.576 0.540 -0.466 -0.679 0.260 -0.112 -0.649 0.203 0.363 -0.278 0.226 -2.257 0.846 0.295 -0.101 -1.705 0.617 0.100 -0.239 0.141 -0.032 -0.500 -0.386 0.143 0.510 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.159 -0.602 0.249 0.051 0.536 -0.021 -2.038 0.402 0.494 -0.335 -0.285 -0.031 -0.338 -0.350 0.259 0.296 0.250 -0.858 0.527 -0.290 0.601 -0.230 -2.417 0.529 0.448 -0.385 -0.134 -0.061 -0.566 -0.363 0.379 0.317 0.627 -0.757 -0.133 -0.072 0.458 0.103 -2.304 0.433 0.734 -0.110 -0.590 -0.423 -0.230 -0.490 0.304 0.263 . 0.723 . 1.233 0.438 -0.079 -2.503 0.606 . -0.203 0.329 0.907 -0.161 -0.282 -0.330 0.574 0.385 -0.299 0.164 -0.394 0.579 -0.020 -1.311 0.159 0.240 0.122 -0.641 0.123 -0.890 0.095 0.268 0.249 -0.159 -0.474 0.678 -0.350 0.582 -0.204 -1.745 0.419 0.255 -0.003 0.126 -0.479 -0.903 -0.097 0.625 -0.017 -0.062 -0.316 0.409 -0.134 0.091 0.436 -1.028 0.126 -0.023 0.396 -0.088 -0.397 -1.028 -0.059 0.800 -0.306 . 0.965 . 1.034 0.145 0.232 -1.399 0.422 . 0.193 0.545 0.483 -0.618 0.249 -0.072 0.274 0.498 -0.867 0.439 -0.548 0.435 0.143 -1.309 0.189 0.446 -0.118 -0.226 -0.216 -0.663 -0.088 0.450 0.086 -0.052 -0.709 0.789 -0.522 0.457 0.025 -1.513 0.334 0.078 0.112 0.148 -0.405 -0.937 -0.282 0.793 -0.117 0.413 -0.643 0.347 -0.404 0.222 0.248 -1.555 0.385 0.320 0.145 -0.298 -0.264 -0.871 -0.290 0.597 0.166 . 0.823 . 1.157 0.319 0.046 -1.835 0.525 . 0.097 0.536 0.566 -0.590 -0.060 -0.202 0.592 0.563 -0.581 -0.113 -0.105 0.569 -0.115 -1.922 0.410 0.333 -0.099 -0.687 0.245 -0.563 -0.226 -0.039 0.580 0.023 -0.648 0.567 -0.212 0.575 -0.361 -2.473 0.633 0.320 -0.381 -0.014 -0.010 -0.859 -0.132 0.322 0.363 0.559 -0.466 -0.221 -0.081 0.360 0.105 -2.465 0.546 0.558 -0.118 -0.369 -0.265 -0.473 -0.365 0.454 0.180 . 0.647 . 1.283 0.212 0.039 -2.462 0.707 . -0.008 0.462 0.703 -0.407 -0.231 0.028 0.458 0.312 -0.742 0.193 0.025 0.734 -0.232 -1.920 0.289 0.406 -0.302 -0.495 0.207 -0.434 -0.591 0.382 0.370 -0.005 -0.735 0.687 -0.334 0.617 -0.439 -1.902 0.547 0.304 -0.474 0.247 -0.220 -0.639 -0.445 0.616 0.126 0.467 -0.668 0.006 -0.023 0.391 0.097 -2.115 0.474 0.742 -0.194 -0.429 -0.494 -0.365 -0.581 0.473 0.222 . 0.691 . 1.255 0.460 -0.078 -2.233 0.551 . -0.021 0.699 0.476 -0.370 -0.356 -0.289 0.702 0.435 -0.472 0.285 -0.497 0.429 0.266 -1.325 0.073 0.002 0.239 -0.440 0.113 -1.144 0.233 0.321 0.168 -0.399 -0.588 0.924 -0.557 0.662 -0.665 -1.007 0.367 0.158 -0.128 0.378 -0.578 -1.205 -0.141 0.813 -0.148 -0.085 -0.197 0.551 -0.474 -0.109 0.559 -0.503 -0.163 -0.029 0.321 0.112 -0.536 -1.273 -0.041 0.947 -0.543 . 0.973 . 1.027 0.288 0.166 -1.449 0.368 . 0.270 0.559 0.402 -0.715 0.172 -0.032 0.363 0.336 -0.848 0.550 -0.477 0.539 0.044 -1.093 0.066 0.118 0.126 -0.225 -0.048 -0.612 -0.340 0.422 0.282 -0.777 -0.436 1.051 -0.725 0.169 0.068 -0.474 0.148 -0.614 0.423 0.678 -1.302 -1.338 -0.124 1.084 -0.818 0.079 -0.250 0.391 -0.337 -0.356 0.476 -0.101 -0.159 0.117 0.313 0.045 -0.640 -1.281 -0.175 0.954 -0.386 . 0.936 . 1.061 0.199 0.265 -0.858 0.136 . 0.144 0.646 0.412 -0.793 -0.102 -0.109 0.645 0.525 -0.614 0.010 -0.150 0.643 -0.153 -2.075 0.380 0.241 -0.103 -0.559 0.273 -0.498 -0.345 0.121 0.503 -0.199 -0.623 0.683 -0.195 0.584 -0.485 -1.972 0.615 0.364 -0.500 0.186 -0.204 -0.894 -0.376 0.672 0.135 0.440 -0.578 -0.013 -0.026 0.317 0.085 -2.244 0.568 0.635 -0.272 -0.302 -0.308 -0.661 -0.373 0.592 0.122 . 0.904 . 1.090 0.395 -0.029 -2.259 0.582 . 0.038 0.455 0.681 -0.366 -0.154 0.180 0.254 0.436 -0.552 0.012 -0.064 0.705 -0.205 -2.008 0.327 0.593 -0.306 -0.513 -0.025 -0.424 -0.315 0.237 0.347 0.035 -0.688 0.473 -0.049 0.698 -0.166 -2.226 0.348 0.211 -0.251 0.092 -0.095 -0.657 -0.241 0.412 0.250 0.481 -0.571 -0.031 -0.071 0.516 0.077 -2.180 0.373 0.713 -0.082 -0.523 -0.472 -0.307 -0.343 0.339 0.188 . 0.875 . 1.115 0.431 -0.138 -2.100 0.595 . 0.075 0.557 0.561 -0.397 -0.317 -0.468 0.778 0.405 -0.422 0.237 -0.414 0.385 0.287 -1.551 0.180 -0.158 0.393 -0.644 0.203 -1.070 0.286 0.237 0.171 -0.407 -0.313 0.661 -0.217 0.373 0.080 -1.438 0.355 -0.037 0.236 0.185 -0.493 -1.265 -0.051 0.622 0.110 -0.379 -0.064 0.523 -0.257 -0.724 0.790 -0.724 0.085 -0.437 0.795 -0.177 -0.640 -1.381 0.076 0.816 -0.320 . 0.995 . 1.005 0.128 0.341 -1.586 0.387 . 0.405 0.414 0.425 -0.795 0.364 -0.214 0.350 0.498 -0.746 0.344 -0.470 0.453 0.020 -1.579 0.359 0.357 -0.010 -0.239 -0.186 -0.598 -0.130 0.341 0.213 -0.142 -0.633 0.737 -0.353 0.318 0.042 -1.370 0.419 0.012 0.125 0.254 -0.496 -0.941 -0.162 0.667 -0.003 0.266 -0.335 0.085 -0.083 0.207 0.244 -1.362 0.348 0.443 0.364 -0.900 -0.291 -0.635 -0.068 0.460 0.038 . 0.947 . 1.051 0.238 0.079 -1.720 0.546 . 0.013 0.723 0.422 -0.606 -0.089 -0.323 0.681 0.573 -0.444 -0.263 -0.082 0.489 0.108 -2.440 0.417 0.241 -0.030 -0.759 0.320 -0.527 -0.045 -0.071 0.469 -0.198 -0.452 0.544 -0.091 0.511 -0.244 -2.412 0.625 0.177 -0.147 -0.281 0.193 -0.829 -0.161 0.393 0.298 0.409 -0.366 -0.188 0.027 0.162 0.228 -2.218 0.580 0.442 -0.081 -0.297 -0.181 -0.488 -0.327 0.436 0.185 . 0.951 . 1.047 0.242 0.056 -2.522 0.682 . -0.080 0.453 0.753 -0.320 -0.124 -0.017 0.371 0.435 -0.848 0.149 -0.024 0.619 -0.167 -2.046 0.412 0.515 -0.390 -0.398 0.069 -0.281 -0.654 0.285 0.404 0.053 -1.169 0.715 -0.190 0.593 -0.379 -2.122 0.578 0.480 -0.398 0.017 -0.261 -0.426 -0.522 0.466 0.236 0.690 -0.839 -0.234 -0.034 0.619 -0.135 -2.335 0.439 0.761 -0.300 -0.620 -0.247 -0.091 -0.675 0.382 0.178 . 0.414 . 1.416 0.417 -0.139 -2.648 0.676 . -0.106 0.511 0.718 -0.475 -0.499 -0.231 0.783 0.188 -0.206 0.164 -0.195 0.293 0.309 -1.543 0.254 0.002 0.313 -0.785 0.234 -1.071 0.253 0.131 0.307 -0.352 -0.416 0.750 -0.349 0.496 -0.161 -1.682 0.468 0.297 -0.033 0.042 -0.388 -1.043 -0.063 0.670 -0.050 -0.122 -0.150 0.186 0.060 -0.246 0.596 -1.267 0.299 -0.120 0.403 0.065 -0.491 -0.971 -0.007 0.707 -0.214 . 0.936 . 1.061 0.031 0.283 -2.087 0.610 . 0.374 0.359 0.507 -0.730 0.421 -0.281 0.304 0.339 -0.799 0.457 -0.343 0.419 0.100 -1.813 0.386 0.346 -0.134 -0.145 -0.130 -0.862 -0.225 0.477 0.266 -0.214 -0.724 0.876 -0.520 0.374 0.026 -1.815 0.486 -0.126 0.088 0.367 -0.452 -0.979 -0.412 0.868 -0.127 0.332 -0.564 0.107 -0.018 0.309 0.172 -1.710 0.410 0.448 0.126 -0.447 -0.302 -0.674 -0.379 0.667 0.025 . 0.786 . 1.187 0.179 0.133 -2.160 0.630 . 0.163 0.497 0.555 -0.621 -0.201 -0.026 0.583 0.502 -0.724 -0.040 0.008 0.457 -0.025 -2.262 0.522 0.363 -0.235 -0.766 0.353 -0.645 -0.295 0.008 0.623 -0.026 -0.831 0.569 -0.040 0.544 -0.413 -2.556 0.696 0.605 -0.534 -0.141 -0.183 -0.783 -0.255 0.392 0.344 0.462 -0.541 -0.356 0.206 0.321 0.025 -2.714 0.661 0.697 -0.340 -0.607 -0.101 -0.405 -0.459 0.425 0.232 . 0.556 . 1.339 0.207 -0.052 -2.937 0.808 . 0.037 0.458 0.679 -0.211 -0.161 0.102 0.225 frame2 LUT 5 4 4 0 0.000 0.085 -0.241 0.457 -0.472 0.782 0.002 -1.621 -0.068 0.582 -0.249 0.121 -0.799 -0.023 -0.414 0.725 -0.709 0.201 -0.407 0.527 -0.609 0.950 -0.242 -1.813 -0.092 0.038 -0.272 0.331 -0.173 -0.369 -0.063 0.637 -0.488 0.588 -0.620 0.389 -0.900 0.868 0.026 -1.666 -0.248 0.697 -0.032 -0.117 -1.063 -0.130 -0.377 0.709 -0.554 0.385 -0.499 0.310 -0.421 0.770 0.108 -1.421 -0.246 0.429 -0.448 0.388 -0.709 -0.121 0.026 0.514 -0.659 0.326 -0.335 0.601 -1.195 0.815 0.026 -1.519 -0.196 0.490 0.049 -0.348 -0.366 -0.383 0.025 0.482 -0.288 0.132 -0.217 0.496 -0.658 0.846 -0.110 -1.360 -0.175 0.010 -0.080 0.182 -0.132 -0.663 0.057 0.618 -0.334 0.397 -0.577 0.485 -0.704 0.277 0.265 -2.150 0.445 0.426 0.005 -0.022 -0.582 -0.359 -0.083 0.536 -0.276 0.408 -0.260 0.408 -0.967 0.621 -0.018 -1.985 0.288 0.415 -0.287 0.336 -0.774 -0.288 0.164 0.328 -0.312 0.388 -0.682 0.593 -0.837 0.705 -0.041 -1.460 0.049 0.551 -0.296 0.145 -0.702 -0.273 -0.671 0.940 -0.675 0.128 -0.597 0.723 -0.748 0.811 -0.065 -1.425 -0.125 0.022 -0.265 0.382 -0.235 -0.413 -0.290 0.799 -0.533 0.432 -0.544 0.487 -0.829 0.534 -0.015 -1.177 0.164 0.499 -0.371 0.298 -0.775 -0.786 -0.339 0.815 -0.200 0.227 -0.465 0.432 -0.402 0.756 0.066 -1.633 -0.086 0.350 -0.558 0.542 -0.759 -0.311 0.031 0.460 -0.330 . . . . 0.771 0.016 -1.281 -0.200 . . . . -0.040 -0.559 0.662 -0.385 0.168 -0.528 0.586 -0.553 0.816 -0.107 -1.749 0.019 -0.072 -0.384 0.522 -0.242 -0.340 -0.166 0.660 -0.437 . . . . 0.728 0.131 -1.691 -0.089 0.523 -0.302 0.198 -0.728 -0.201 -0.668 0.936 -0.767 0.383 -0.282 0.306 -0.651 0.663 0.223 -2.099 0.022 0.243 -0.211 0.442 -0.750 -0.208 -0.438 0.692 -0.359 0.126 -0.342 0.550 -0.609 0.764 -0.094 -1.049 -0.182 0.437 -0.215 0.068 -0.441 -0.216 -0.569 0.906 -0.759 -0.098 -0.444 0.798 -0.757 0.822 -0.351 -0.938 -0.111 -0.497 -0.164 0.656 -0.280 -0.672 -0.205 0.846 -0.498 0.295 -0.523 0.591 -0.808 0.744 -0.049 -0.983 -0.229 0.612 -0.241 0.133 -0.919 -0.388 -0.534 0.925 -0.630 0.190 -0.573 0.488 -0.351 0.676 -0.035 -0.943 -0.142 0.251 -0.372 0.416 -0.507 -0.504 -0.146 0.755 -0.507 0.290 -0.483 0.758 -1.432 0.605 0.046 -0.673 -0.287 0.289 -0.002 0.031 -0.399 -0.424 -0.153 0.760 -0.595 -0.105 -0.367 0.816 -0.904 0.968 -0.699 -0.773 -0.247 -0.198 -0.009 0.552 -0.582 -0.733 -0.007 0.759 -0.492 0.304 -0.798 0.702 -0.830 0.299 0.257 -0.875 0.041 0.240 0.065 0.399 -1.139 -0.527 -0.180 0.620 -0.174 0.345 -0.093 0.435 -1.184 0.766 -0.106 -1.370 -0.024 0.067 -0.152 0.558 -0.786 -0.413 0.198 0.430 -0.406 0.028 -0.518 0.753 -0.745 0.448 -0.074 -0.348 -0.152 0.169 -0.040 0.353 -0.675 -0.753 -0.590 1.087 -0.696 -0.363 -0.314 0.919 -0.923 0.404 -0.127 -0.251 -0.119 -1.039 0.257 0.804 -0.805 -0.847 -0.127 0.947 -0.736 0.209 -0.541 0.782 -1.194 0.262 -0.264 -0.041 -0.007 0.137 -0.169 0.629 -1.105 -0.913 -0.251 0.955 -0.534 -0.008 -0.312 0.557 -0.457 0.632 0.095 -1.277 -0.044 -0.080 -0.354 0.689 -0.602 -0.304 0.013 0.451 -0.297 . . . . 0.712 0.031 -1.133 -0.178 . . . . -0.262 -0.566 0.932 -0.777 -0.105 -0.474 0.819 -0.772 0.689 -0.189 -1.279 0.135 -0.591 -0.068 0.847 -0.776 -0.571 -0.137 0.761 -0.470 . . . . 0.594 0.223 -1.510 -0.041 0.407 -0.498 0.413 -0.656 -0.262 -0.687 0.959 -0.736 0.301 -0.184 0.306 -0.619 0.699 0.001 -1.360 -0.020 0.103 -0.459 0.697 -0.791 -0.209 -0.600 0.881 -0.658 0.365 -0.300 0.400 -0.785 0.697 -0.060 -1.172 -0.035 0.558 -0.160 -0.001 -0.659 -0.237 -0.387 0.770 -0.553 0.064 -0.412 0.619 -0.585 0.770 -0.023 -1.392 -0.106 -0.158 -0.040 0.478 -0.437 -0.646 -0.009 0.673 -0.372 0.505 -0.376 0.347 -0.892 0.664 0.082 -1.162 -0.136 0.674 0.012 -0.248 -0.852 -0.264 -0.407 0.745 -0.440 0.294 -0.696 0.388 -0.238 0.599 0.144 -1.173 -0.094 0.302 -0.326 0.401 -0.624 -0.555 -0.023 0.674 -0.435 0.277 -0.334 0.666 -1.295 0.684 0.013 -1.020 -0.166 0.282 0.241 -0.212 -0.436 -0.373 0.055 0.480 -0.331 0.026 -0.298 0.513 -0.432 0.618 -0.015 -1.026 -0.022 -0.433 0.360 0.416 -0.640 -0.731 0.086 0.568 -0.228 0.108 -0.268 0.489 -0.538 0.282 0.170 -1.156 0.275 0.126 0.369 0.191 -1.071 -0.686 0.088 0.472 -0.108 0.330 0.116 0.226 -1.029 0.516 0.067 -1.624 0.260 0.089 0.060 0.363 -0.719 -0.509 0.310 0.243 -0.194 0.320 -0.528 0.579 -0.825 0.656 0.048 -1.111 -0.108 0.415 -0.023 0.151 -0.807 -0.319 -0.503 0.849 -0.534 0.124 -0.713 0.760 -0.722 0.695 -0.125 -0.821 -0.155 -0.471 -0.039 0.796 -0.813 -0.677 -0.210 0.805 -0.390 0.348 -0.435 0.538 -0.901 0.463 0.047 -0.962 0.104 0.670 0.075 -0.171 -1.098 -0.442 -0.067 0.677 -0.494 0.026 -0.255 0.590 -0.646 0.682 0.169 -1.635 -0.076 0.107 -0.293 0.536 -0.606 -0.425 0.091 0.459 -0.296 . . . . 0.652 0.158 -1.314 -0.135 . . . . -0.249 -0.432 0.722 -0.381 0.072 -0.532 0.628 -0.490 0.606 0.036 -1.321 0.074 -0.388 -0.249 0.667 -0.311 -0.715 0.040 0.635 -0.305 . . . . 0.589 0.187 -1.390 -0.035 0.410 -0.084 0.047 -0.525 -0.277 -0.467 0.856 -0.640 0.334 -0.015 0.147 -0.638 0.539 0.241 -1.659 0.068 0.048 -0.144 0.562 -0.775 -0.382 -0.404 0.756 -0.344 0.393 -0.555 0.465 -0.675 0.704 0.073 -1.611 -0.012 0.695 -0.296 0.013 -0.843 -0.129 -0.414 0.687 -0.464 0.212 -0.584 0.626 -0.664 0.806 -0.125 -1.768 0.058 -0.143 -0.468 0.427 0.038 -0.431 -0.153 0.634 -0.310 0.557 -0.510 0.394 -0.965 0.818 0.133 -1.932 -0.187 0.713 -0.050 -0.326 -0.745 -0.093 -0.371 0.654 -0.482 0.386 -0.614 0.282 -0.279 0.784 0.079 -1.610 -0.161 0.326 -0.483 0.407 -0.505 -0.316 -0.059 0.543 -0.358 0.249 -0.416 0.765 -1.463 0.750 0.030 -1.440 -0.107 0.449 -0.007 -0.174 -0.409 -0.087 -0.125 0.446 -0.359 0.050 -0.355 0.648 -0.699 0.872 -0.117 -1.366 -0.219 -0.184 -0.219 0.498 -0.237 -0.566 0.008 0.648 -0.411 0.382 -0.567 0.486 -0.688 0.316 0.199 -1.828 0.406 0.504 -0.347 0.218 -0.662 -0.539 0.019 0.472 -0.133 0.445 -0.145 0.366 -1.167 0.593 0.050 -1.818 0.230 0.254 -0.198 0.375 -0.647 -0.296 0.316 0.264 -0.435 0.332 -0.750 0.642 -0.771 0.676 0.031 -1.447 0.019 0.500 -0.256 0.174 -0.690 -0.329 -0.608 0.950 -0.698 0.133 -0.591 0.738 -0.808 0.816 -0.150 -1.602 0.014 -0.153 -0.239 0.560 -0.360 -0.447 -0.382 0.831 -0.474 0.404 -0.651 0.547 -0.788 0.668 -0.127 -1.561 0.210 0.685 -0.347 0.156 -1.026 -0.476 -0.471 0.868 -0.446 0.293 -0.392 0.409 -0.547 0.787 -0.008 -1.894 0.016 0.238 -0.614 0.601 -0.620 -0.329 -0.055 0.529 -0.325 . . . . 0.651 0.006 -1.340 0.043 . . . . -0.103 -0.479 0.703 -0.467 0.126 -0.530 0.649 -0.625 0.725 -0.140 -1.888 0.226 -0.224 -0.503 0.771 -0.450 -0.392 -0.166 0.650 -0.363 . . . . 0.538 0.310 -2.157 0.118 0.525 -0.497 0.253 -0.597 0.017 -0.414 0.638 -0.554 0.315 -0.300 0.284 -0.461 0.622 0.178 -2.127 0.138 0.148 -0.284 0.618 -0.899 -0.156 -0.237 0.792 -0.935 frame2 LUT 5 4 4 0 0.000 0.497 -0.417 -0.398 0.112 0.418 -0.024 -1.355 0.366 0.805 -0.237 -0.561 -0.462 -0.330 0.007 -0.326 0.488 0.480 -0.585 -0.239 0.127 0.409 -0.089 -1.216 0.380 0.524 -0.443 -0.359 0.065 -0.512 -0.195 -0.100 0.577 0.952 -0.795 -0.510 -0.346 0.458 -0.017 -1.171 0.255 1.039 -0.268 -0.877 -0.813 -0.462 0.127 -0.413 0.517 0.648 -0.561 -0.736 0.207 0.367 0.180 -1.414 0.267 0.617 -0.389 -0.145 -0.325 -0.549 0.236 -1.075 0.735 0.580 -0.332 -0.331 -0.127 0.387 0.243 -1.700 0.264 0.749 -0.197 -0.631 -0.318 -0.625 0.324 -0.773 0.599 0.452 -0.380 -0.304 0.074 0.335 -0.166 -1.038 0.443 0.435 -0.405 -0.411 0.190 -0.554 -0.033 -0.176 0.543 0.490 -0.300 -0.187 -0.145 0.041 0.273 -1.288 0.436 0.635 -0.351 -0.237 -0.296 -0.774 0.141 -0.285 0.578 0.395 -0.103 -0.605 0.132 0.372 0.172 -1.349 0.247 0.366 -0.329 -0.105 -0.021 -0.823 0.301 -0.736 0.680 0.636 -0.662 -0.148 -0.134 0.493 -0.057 -1.133 0.233 0.756 -0.347 -0.401 -0.382 -0.475 0.006 -0.464 0.634 0.361 -0.420 0.111 -0.172 0.375 -0.018 -0.853 0.216 0.472 -0.306 -0.116 -0.183 -0.728 0.234 -0.223 0.447 0.869 -0.784 -0.428 -0.234 0.393 -0.117 -1.018 0.346 0.874 -0.195 -0.654 -0.604 -0.959 0.155 -0.353 0.668 0.605 -0.399 -0.333 -0.110 0.450 -0.039 -0.980 0.206 0.639 -0.485 -0.002 -0.454 -0.725 0.392 -1.018 0.668 0.777 -0.600 -0.544 -0.088 0.600 0.146 -1.688 0.095 0.917 -0.203 -0.861 -0.532 -0.691 -0.061 -0.384 0.727 0.435 -0.371 -0.391 0.153 0.487 -0.259 -0.872 0.282 0.566 -0.284 -0.523 0.004 -0.368 -0.069 -0.163 0.463 0.708 -0.581 -0.450 -0.051 0.325 -0.005 -1.457 0.472 0.784 -0.224 -0.648 -0.353 -0.574 0.008 -0.362 0.628 0.661 -0.349 -0.786 0.076 0.526 -0.019 -1.272 0.213 0.574 -0.256 -0.291 -0.223 -0.633 0.230 -0.847 0.702 0.542 -0.604 -0.086 -0.082 0.744 -0.370 -1.724 0.320 0.780 -0.334 -0.540 -0.319 -0.228 -0.162 -0.288 0.519 0.233 -0.230 -0.085 0.041 0.425 -0.267 -0.953 0.389 0.401 -0.513 -0.132 0.092 -0.641 -0.234 0.076 0.541 0.660 -0.700 -0.188 -0.110 0.514 -0.227 -1.273 0.382 0.861 -0.099 -0.783 -0.581 -0.663 -0.060 -0.164 0.601 0.469 -0.332 -0.588 0.209 0.545 -0.077 -1.341 0.261 0.530 -0.402 -0.138 -0.166 -0.553 0.171 -0.894 0.726 0.681 -0.367 -0.251 -0.357 0.143 0.672 -1.477 -0.085 0.797 -0.363 -0.530 -0.335 -0.677 0.401 -0.886 0.598 0.520 -0.403 -0.145 -0.144 0.423 0.088 -0.927 0.098 0.470 -0.085 -0.177 -0.343 -0.376 0.001 -0.328 0.518 0.572 -0.620 0.038 -0.259 -0.224 0.741 -1.354 0.113 0.594 -0.137 -0.267 -0.416 -0.656 0.408 -0.331 0.315 0.575 -0.040 -0.868 -0.016 0.252 0.543 -1.313 -0.074 0.519 -0.332 -0.218 -0.131 -0.695 0.407 -0.870 0.594 0.438 -0.680 -0.017 0.047 0.449 -0.253 -1.240 0.457 0.596 -0.411 -0.219 -0.188 -0.578 0.041 -0.270 0.557 0.226 -0.610 0.026 0.210 0.281 -0.538 -0.487 0.468 0.269 0.045 -0.023 -0.359 -0.277 -0.353 0.040 0.447 0.699 -0.775 -0.179 -0.138 0.367 -0.322 -0.618 0.332 0.801 -0.190 -0.459 -0.613 -0.800 0.187 -0.199 0.502 0.402 -0.295 -0.286 0.061 0.288 -0.299 -0.653 0.411 0.368 -0.296 -0.143 -0.016 -0.544 0.246 -0.900 0.671 0.733 -0.604 -0.314 -0.191 0.763 -0.345 -1.334 0.163 0.907 -0.351 -0.564 -0.589 -0.588 0.170 -0.472 0.574 0.295 -0.309 -0.217 0.145 0.336 -0.483 -0.837 0.549 0.188 -0.169 -0.144 0.092 -0.467 0.054 -0.371 0.551 0.755 -0.514 -0.244 -0.380 0.366 -0.237 -1.233 0.524 0.720 -0.146 -0.556 -0.380 -0.705 0.189 -0.141 0.422 0.437 -0.277 -0.627 0.230 0.489 -0.170 -0.933 0.243 0.406 -0.259 -0.016 -0.234 -0.742 0.326 -0.614 0.580 0.733 -0.722 -0.455 0.003 0.526 -0.436 -1.207 0.473 0.998 -0.465 -0.681 -0.610 -0.412 -0.281 -0.146 0.606 0.383 -0.626 -0.078 0.139 0.301 -0.150 -1.174 0.509 0.707 -0.578 -0.246 -0.226 -0.630 -0.213 -0.217 0.706 0.885 -0.791 -0.434 -0.261 0.386 -0.280 -1.123 0.496 1.088 -0.410 -1.034 -0.660 -0.547 -0.085 -0.223 0.600 0.569 -0.594 -0.871 0.387 0.262 0.213 -1.234 0.283 0.795 -0.545 -0.378 -0.303 -0.543 0.181 -1.111 0.780 0.703 -0.428 -0.458 -0.152 0.488 0.020 -1.424 0.276 0.645 0.082 -0.681 -0.409 -0.682 0.387 -0.972 0.641 0.456 -0.461 -0.330 0.145 0.447 -0.379 -0.874 0.404 0.290 0.134 -0.427 -0.095 -0.802 -0.094 -0.313 0.752 0.468 -0.422 -0.285 0.070 -0.169 -0.012 -0.934 0.674 0.193 0.422 -0.344 -0.456 -0.881 0.280 -0.354 0.546 0.384 -0.029 -0.810 0.194 0.341 -0.052 -1.154 0.400 0.251 0.114 -0.409 -0.036 -0.856 0.160 -0.830 0.822 0.658 -0.661 -0.302 -0.030 0.494 -0.131 -1.033 0.251 0.733 -0.350 -0.159 -0.605 -0.655 -0.009 -0.717 0.817 0.426 -0.474 -0.169 0.066 0.397 -0.314 -0.848 0.404 0.235 -0.320 0.260 -0.278 -0.388 -0.095 -0.144 0.480 0.864 -0.499 -0.532 -0.357 0.333 0.098 -1.221 0.311 0.764 -0.188 -0.545 -0.437 -0.667 0.289 -0.765 0.642 0.293 -0.182 -0.584 0.295 0.274 0.086 -0.896 0.253 0.336 -0.423 0.082 -0.099 -0.408 0.109 -0.817 0.678 0.802 -0.377 -0.950 -0.045 0.630 0.072 -1.372 0.021 0.883 -0.155 -0.973 -0.418 -0.507 0.029 -0.686 0.726 0.231 -0.178 -0.454 0.277 0.355 -0.207 -1.145 0.487 0.167 -0.300 -0.250 0.291 -0.686 -0.034 -0.255 0.645 0.751 -0.353 -0.837 -0.038 0.259 -0.062 -1.241 0.508 0.763 -0.229 -0.810 -0.185 -0.818 0.204 -0.311 0.560 0.480 -0.169 -0.911 0.244 0.373 0.070 -1.221 0.294 0.400 -0.286 -0.058 -0.153 -0.597 0.159 -0.609 0.648 . . . . . . . . . . . . . . . . 0.432 -0.589 -0.066 0.044 0.431 -0.285 -0.923 0.383 0.493 -0.589 -0.274 0.139 -0.491 -0.441 -0.045 0.662 . . . . . . . . . . . . . . . . 0.651 -0.401 -0.623 0.034 0.526 -0.034 -1.258 0.221 0.780 -0.567 -0.279 -0.352 -0.386 0.007 -0.930 0.770 0.690 -0.382 -0.076 -0.575 0.469 0.171 -1.704 0.242 0.770 -0.178 -0.621 -0.395 -0.869 0.592 -1.023 0.539 0.379 -0.565 0.038 -0.004 0.452 -0.132 -0.889 0.239 0.385 -0.611 -0.023 0.077 -0.761 0.190 -0.232 0.504 0.505 -0.615 0.128 -0.260 0.050 0.200 -1.073 0.423 0.537 -0.094 -0.162 -0.478 -0.547 0.554 -0.618 0.258 0.486 -0.040 -0.567 -0.071 0.288 0.206 -1.174 0.241 0.461 -0.195 -0.222 -0.164 -0.988 0.677 -0.999 0.483 . . . . . . . . . . . . . . . . 0.393 -0.593 0.080 -0.049 0.376 -0.337 -0.845 0.437 0.467 -0.527 0.114 -0.250 -0.733 -0.133 0.177 0.440 0.625 -0.546 -0.250 -0.102 0.407 -0.462 -1.218 0.602 0.728 -0.359 -0.375 -0.334 -0.468 -0.016 -0.214 0.512 0.691 -0.454 -0.439 -0.124 0.512 0.083 -1.189 0.105 0.504 -0.549 0.158 -0.354 -0.721 0.277 -0.752 0.667 0.774 -0.601 -0.415 -0.183 0.554 -0.013 -1.380 0.209 0.868 -0.234 -0.686 -0.509 -0.535 0.159 -0.651 0.638 0.331 -0.466 -0.088 0.108 0.460 -0.497 -0.955 0.485 0.494 -0.396 -0.273 0.005 -0.589 -0.119 -0.185 0.618 0.825 -0.615 -0.503 -0.202 0.345 0.098 -1.720 0.439 0.766 -0.143 -0.618 -0.430 -0.696 0.330 -0.610 0.556 0.593 -0.340 -0.687 0.112 0.395 -0.022 -1.412 0.405 0.649 -0.392 -0.260 -0.261 -0.551 0.349 -0.725 0.525 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.843 -0.039 -0.420 -1.042 0.813 0.449 -2.004 -0.668 0.756 0.498 -0.898 -1.464 0.095 0.482 -0.023 -0.860 0.512 0.081 0.029 -1.013 0.790 0.254 -1.565 -0.434 0.813 0.368 -0.862 -1.314 -0.372 0.604 0.089 -0.635 0.738 -0.126 -0.253 -0.794 0.904 0.270 -2.172 -0.511 1.030 0.445 -1.053 -3.124 -0.081 0.428 -0.053 -0.424 0.583 0.431 -0.969 -0.637 0.816 0.461 -2.124 -0.660 0.553 0.382 -0.190 -1.502 0.048 0.556 -0.354 -0.487 E-2 LUT 3 2 4 0 0.000 1.483 -1.783 -1.605 -0.774 1.661 -2.006 -2.805 -1.168 1.509 -1.334 -1.770 -1.106 0.555 -0.619 -0.093 -0.085 1.403 -1.595 -0.849 -1.092 1.545 -1.793 -2.202 -0.793 1.459 -1.348 -1.284 -1.163 0.263 -0.754 0.105 0.178 1.491 -1.886 -1.415 -0.878 1.622 -2.025 -2.690 -0.939 1.531 -1.162 -1.627 -1.560 0.374 -0.921 0.224 0.011 1.376 -1.039 -2.199 -0.514 1.633 -1.777 -3.240 -0.998 1.335 -1.611 -1.092 -0.553 0.392 -0.388 -0.306 0.157 E-1 LUT 3 2 4 0 0.000 -1.203 -4.319 1.730 -2.326 0.519 -2.313 0.519 -0.099 -0.159 -2.263 1.261 -1.000 -2.192 -3.046 1.737 -1.617 -1.524 -4.348 1.798 -3.003 0.415 -2.026 0.402 0.137 -0.892 -3.007 1.567 -1.423 -1.971 -3.159 1.705 -1.422 -1.174 -3.718 1.701 -2.120 0.442 -2.728 0.692 -0.192 -0.896 -2.524 1.564 -1.591 -1.940 -3.464 1.666 -1.071 -0.809 -2.730 1.550 -1.515 0.206 -2.115 0.601 0.136 -1.135 -2.543 1.541 -1.112 -2.602 -3.017 1.734 -1.380 G LUT 3 2 4 0 0.000 -8.112 -8.112 1.996 -8.112 -5.358 -5.358 1.973 -5.358 -11.124 -11.124 2.000 -11.124 -6.974 -6.974 1.991 -6.974 -6.928 -6.928 1.991 -6.928 -4.267 -4.267 1.943 -4.267 -7.066 -7.066 1.992 -7.066 -6.524 -6.524 1.988 -6.524 -5.966 -5.966 1.983 -5.966 -4.129 -4.129 1.937 -4.129 -8.057 -8.057 1.996 -8.057 -5.435 -5.435 1.975 -5.435 -5.077 -5.077 1.968 -5.077 -4.129 -4.129 1.937 -4.129 -8.969 -8.969 1.998 -8.969 -5.833 -5.833 1.981 -5.833 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.942 -8.942 -8.942 1.998 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.527 -6.527 -6.527 1.988 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.612 -11.612 -11.612 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.299 -8.299 -8.299 1.997 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.590 -4.015 -0.323 -2.959 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.471 -1.897 -1.651 -0.642 1.577 -2.518 -2.807 -0.518 1.809 -2.981 -2.138 -2.808 0.619 -1.896 -0.106 0.341 I+3 LUT 3 2 4 0 0.000 -0.958 -2.292 1.520 -1.277 0.221 -0.946 0.033 0.370 -1.304 -2.246 1.605 -1.544 -1.386 -1.533 1.417 -0.731 -3.577 -4.577 1.922 -3.577 -0.222 -1.807 0.515 0.515 -0.585 -1.585 1.415 -1.585 -2.555 -1.970 1.767 -2.555 -3.106 -3.849 1.885 -3.055 -0.907 -3.714 1.456 -0.627 -2.539 -3.954 1.887 -3.954 -3.883 -3.883 1.886 -2.561 -1.858 -3.665 1.827 -3.343 -0.663 -2.248 1.276 -0.441 -1.254 -2.954 1.675 -1.954 -4.392 -2.585 1.874 -3.070 I+4 LUT 3 2 4 0 0.000 0.223 -0.876 -0.213 0.511 0.376 -0.493 -1.790 0.768 -0.370 -1.130 -1.228 1.228 -0.114 -1.194 0.221 0.559 -0.121 -1.170 0.527 0.257 0.376 -0.624 -0.472 0.415 -1.628 -0.986 -0.717 1.358 -0.735 -1.065 0.794 0.248 0.439 -1.459 0.541 -0.275 -0.423 -0.298 -0.561 0.818 -0.301 -0.943 -1.561 1.220 0.559 -1.110 0.185 -0.110 -0.263 -0.941 0.170 0.605 -0.032 0.918 -2.684 -0.032 -0.679 -1.397 -1.008 1.321 -0.609 -0.793 0.069 0.781 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.775 -0.897 -0.601 0.127 0.731 -0.225 -2.687 0.411 0.431 -0.556 -0.238 0.169 0.392 -0.852 -0.055 0.228 0.300 -0.587 -0.117 0.240 0.518 0.009 -2.882 0.512 0.009 -0.575 -0.354 0.623 -0.224 -0.172 -0.043 0.363 0.588 -0.644 -0.111 -0.102 0.691 -0.134 -2.408 0.363 0.487 -0.332 -0.255 -0.050 0.106 -0.596 0.123 0.230 0.456 -0.626 -0.466 0.329 0.445 0.038 -2.756 0.549 0.249 -0.551 -0.222 0.347 0.064 -0.563 -0.504 0.653 0.756 -0.744 -0.319 -0.133 0.964 -0.413 -2.349 0.140 0.345 -0.561 -0.016 0.088 0.108 -0.763 -0.020 0.429 -0.099 -0.103 -0.044 0.220 0.616 -0.102 -1.972 0.356 -0.229 0.049 -0.487 0.484 -0.431 0.037 0.148 0.169 0.179 -0.853 0.259 0.160 0.020 0.797 -2.054 0.011 0.168 -0.665 0.219 0.114 -0.104 -0.775 0.360 0.264 0.319 -0.392 -0.297 0.234 0.399 0.144 -2.543 0.491 0.068 -0.158 -0.285 0.304 -0.221 -0.422 -0.203 0.610 0.638 -0.838 -0.192 0.014 0.667 -0.169 -2.040 0.356 0.570 -0.547 -0.134 -0.122 0.064 -0.592 0.115 0.273 0.138 -0.381 0.104 0.080 0.552 -0.422 -2.235 0.655 0.408 -0.445 -0.269 0.149 -0.122 -0.356 0.251 0.151 0.505 -0.840 0.183 -0.174 0.547 -0.367 -1.624 0.525 0.458 -0.406 -0.245 0.040 -0.031 -0.535 0.211 0.231 0.260 -0.675 0.092 0.151 0.459 -0.157 -2.867 0.670 0.280 -0.316 -0.099 0.069 -0.188 -0.324 -0.347 0.620 0.672 -0.910 -0.590 0.275 0.797 -0.349 -2.679 0.402 0.336 -0.407 -0.330 0.248 0.398 -0.949 -0.322 0.449 -0.071 -0.210 -0.041 0.277 0.379 0.106 -2.661 0.551 -0.086 0.134 -0.611 0.385 -0.379 -0.075 -0.035 0.385 0.471 -0.719 -0.079 0.084 0.435 0.104 -2.858 0.521 0.229 -0.329 -0.198 0.214 0.084 -0.699 0.053 0.364 0.279 -0.489 -0.401 0.397 0.387 -0.167 -3.222 0.761 0.130 -0.320 -0.351 0.401 -0.124 -0.524 -0.486 0.743 0.518 -0.648 -0.127 0.021 0.723 -0.048 -2.794 0.308 0.275 -0.408 -0.128 0.165 0.135 -0.611 -0.065 0.369 -0.285 0.147 0.005 0.096 0.596 -0.132 -2.187 0.440 -0.367 0.333 -0.362 0.246 -0.632 -0.365 0.363 0.369 0.362 -0.744 0.240 -0.094 0.359 0.332 -2.721 0.387 0.253 0.108 -0.324 -0.103 -0.202 -0.565 0.364 0.224 0.125 -0.516 -0.184 0.412 0.313 -0.094 -2.878 0.753 -0.026 -0.296 -0.109 0.352 -0.359 -0.444 -0.394 0.786 0.582 -0.526 0.103 -0.445 0.311 0.367 -2.063 0.299 -0.145 0.120 0.214 -0.236 -0.374 -0.197 0.074 0.382 -0.108 -0.374 0.559 -0.273 0.565 0.009 -1.785 0.292 -0.270 -0.088 0.481 -0.261 -0.593 -0.065 0.243 0.260 -0.229 -0.722 0.958 -0.742 -0.301 0.910 -1.154 -0.218 -0.535 0.161 0.705 -0.831 -0.505 0.054 0.396 -0.088 0.216 -0.419 0.064 0.064 0.235 0.455 -2.298 0.321 -0.097 -0.358 0.218 0.166 -0.470 -0.119 -0.185 0.564 0.300 -0.195 -0.028 -0.129 0.545 -0.028 -1.961 0.383 0.479 -0.832 0.182 -0.136 -0.428 0.089 -0.120 0.349 -0.365 0.085 0.294 -0.094 0.029 0.183 -1.968 0.668 -0.601 0.661 0.181 -0.677 -0.855 0.035 0.233 0.318 -0.000 -0.891 0.638 -0.145 -0.379 0.455 -1.346 0.553 0.079 -0.004 0.063 -0.149 -0.394 -0.592 0.617 0.059 0.161 -0.683 -0.031 0.357 0.067 -0.193 -2.291 0.906 0.159 -0.310 -0.006 0.112 -0.340 -0.408 -0.237 0.685 0.479 -0.738 -0.255 0.225 0.516 -0.181 -2.901 0.637 0.305 -0.391 -0.020 0.023 0.098 -0.596 -0.170 0.464 -0.097 -0.215 0.324 -0.073 0.195 0.250 -2.425 0.565 -0.051 -0.421 0.453 -0.122 -0.504 -0.145 0.246 0.268 0.232 -0.558 0.346 -0.192 0.384 0.287 -2.701 0.402 0.064 -0.276 0.370 -0.258 -0.008 -0.303 0.082 0.185 0.332 -0.449 -0.150 0.147 0.244 0.191 -3.066 0.637 0.202 -0.419 0.000 0.139 -0.281 -0.296 -0.206 0.580 0.485 -0.643 -0.199 0.123 0.534 -0.240 -2.676 0.631 0.389 -0.487 -0.078 0.042 0.077 -0.658 -0.006 0.396 -0.071 -0.533 0.364 0.097 0.568 -0.203 -2.694 0.579 -0.295 -0.619 0.514 0.146 -0.252 -0.333 0.069 0.398 0.320 -0.295 -0.024 -0.070 0.379 0.253 -2.334 0.389 0.143 0.161 -0.358 -0.003 -0.165 -0.500 0.106 0.406 0.305 -0.544 -0.199 0.273 0.430 -0.100 -2.311 0.602 0.157 -0.585 0.172 0.127 0.002 -0.511 -0.420 0.632 0.452 -0.450 -0.066 -0.083 0.517 -0.228 -1.905 0.534 0.152 -0.449 -0.067 0.264 -0.168 -0.573 0.185 0.379 -0.198 -0.056 0.214 0.009 0.642 -0.242 -1.525 0.318 0.211 -0.366 0.317 -0.285 -0.877 0.289 0.312 -0.011 -0.313 -0.572 0.271 0.395 -0.024 0.576 -0.557 -0.241 0.036 -0.291 0.372 -0.212 -0.743 -0.754 0.950 -0.188 0.266 -0.278 -0.192 0.134 0.608 -0.228 -2.712 0.555 -0.027 -0.535 0.394 0.021 -0.375 -0.243 -0.197 0.596 0.516 -0.842 0.094 -0.081 0.609 -0.288 -2.353 0.546 0.230 -0.811 0.344 -0.017 -0.185 -0.562 -0.047 0.561 -0.147 -0.520 0.399 0.113 0.596 -0.473 -1.623 0.530 -0.697 -0.106 0.368 0.219 -0.465 -0.249 0.514 0.008 0.254 -0.841 0.339 -0.022 0.552 -0.347 -1.294 0.422 0.347 -0.400 -0.121 0.071 -0.288 -0.583 0.170 0.473 0.254 -0.642 0.013 0.210 0.462 -0.365 -2.758 0.764 0.086 -0.629 0.346 0.029 -0.419 -0.440 -0.154 0.693 0.430 -0.737 -0.252 0.279 0.633 -0.228 -2.744 0.532 0.356 -0.217 -0.359 0.112 0.101 -0.763 -0.193 0.549 -0.277 -0.258 0.237 0.213 0.243 0.063 -2.730 0.697 -0.317 0.039 -0.022 0.244 -0.684 0.150 -0.111 0.424 0.179 -0.649 0.195 0.118 0.376 -0.042 -2.305 0.612 -0.051 -0.103 -0.078 0.209 -0.331 -0.718 0.567 0.159 0.293 -0.455 -0.211 0.241 0.448 -0.159 -2.778 0.673 0.012 -0.304 -0.064 0.292 -0.377 -0.366 -0.272 0.701 0.658 -0.966 -0.415 0.215 0.624 -0.315 -2.733 0.589 0.370 -0.560 -0.268 0.261 0.140 -0.646 -0.294 0.530 0.004 -0.721 0.205 0.307 0.529 -0.217 -2.833 0.638 -0.228 -0.690 -0.246 0.751 -0.188 -0.533 -0.012 0.525 0.514 -0.831 0.012 0.002 0.399 -0.055 -3.088 0.679 0.388 -0.370 -0.273 0.125 0.120 -0.566 -0.148 0.417 0.177 -0.766 -0.493 0.652 0.395 -0.197 -3.168 0.767 0.053 -0.591 -0.398 0.623 -0.198 -0.707 -0.647 0.908 0.608 -0.793 0.083 -0.252 0.405 -0.131 -2.072 0.609 0.132 -0.206 -0.100 0.143 -0.158 -0.495 -0.130 0.566 -0.164 -0.430 0.262 0.221 0.713 -0.227 -2.107 0.350 -0.471 0.219 -0.312 0.388 -0.557 -0.231 0.247 0.358 0.325 -1.067 0.423 -0.106 -0.193 0.255 -1.650 0.690 -0.452 0.375 0.186 -0.260 -0.333 -0.520 0.325 0.330 0.199 -0.338 -0.111 0.183 0.271 -0.083 -2.323 0.722 -0.056 -0.330 -0.303 0.518 -0.352 -0.271 -0.336 0.674 0.498 -0.619 -0.164 0.062 0.502 -0.073 -2.698 0.564 0.336 -0.281 -0.085 -0.040 -0.058 -0.458 -0.049 0.427 -0.085 -0.474 0.276 0.172 0.271 -0.147 -2.848 0.809 -0.349 0.008 -0.094 0.347 -0.411 -0.499 0.256 0.429 0.452 -0.987 0.224 -0.059 0.261 0.016 -2.140 0.645 0.508 -0.420 -0.204 -0.055 -0.185 -0.511 0.247 0.300 0.236 -0.763 -0.174 0.430 0.311 -0.238 -2.843 0.826 -0.089 -0.595 -0.311 0.671 -0.341 -0.596 -0.215 0.755 0.689 -0.903 -0.449 0.164 0.699 -0.366 -2.804 0.543 0.256 -0.347 -0.262 0.246 0.072 -0.840 -0.466 0.736 0.005 -0.495 0.059 0.316 0.335 -0.051 -3.131 0.731 0.142 -0.537 -0.216 0.429 -0.426 -0.241 -0.058 0.535 0.455 -0.843 0.101 -0.001 0.322 -0.017 -3.109 0.719 0.080 -0.292 0.031 0.144 -0.040 -0.673 -0.175 0.599 0.422 -0.838 -0.471 0.464 0.243 -0.116 -3.401 0.847 0.067 -0.594 -0.244 0.531 -0.200 -0.625 -0.542 0.843 Intron LUT 5 4 4 0 0.000 0.776 -0.904 -0.604 0.131 0.733 -0.221 -2.730 0.410 0.433 -0.564 -0.243 0.174 0.392 -0.857 -0.059 0.234 0.297 -0.592 -0.116 0.245 0.518 0.010 -2.948 0.517 0.026 -0.639 -0.374 0.648 -0.226 -0.164 -0.051 0.364 0.585 -0.645 -0.110 -0.099 0.695 -0.140 -2.465 0.370 0.484 -0.335 -0.258 -0.041 0.107 -0.600 0.128 0.227 0.449 -0.625 -0.454 0.330 0.442 0.044 -2.777 0.551 0.249 -0.554 -0.214 0.343 0.064 -0.566 -0.505 0.655 0.757 -0.750 -0.319 -0.131 0.970 -0.413 -2.377 0.135 0.346 -0.576 -0.012 0.092 0.113 -0.770 -0.016 0.425 -0.110 -0.099 -0.047 0.228 0.625 -0.103 -2.030 0.358 -0.232 0.010 -0.541 0.540 -0.435 0.043 0.149 0.165 0.173 -0.906 0.263 0.189 0.025 0.827 -2.375 0.023 0.163 -0.726 0.236 0.136 -0.090 -0.817 0.365 0.269 0.317 -0.395 -0.295 0.237 0.401 0.147 -2.589 0.492 0.065 -0.153 -0.286 0.304 -0.219 -0.426 -0.206 0.613 0.636 -0.841 -0.196 0.022 0.671 -0.167 -2.067 0.354 0.574 -0.558 -0.138 -0.115 0.068 -0.592 0.113 0.271 0.139 -0.383 0.096 0.088 0.563 -0.440 -2.332 0.667 0.465 -0.533 -0.357 0.199 -0.116 -0.362 0.249 0.151 0.502 -0.850 0.184 -0.163 0.557 -0.379 -1.681 0.534 0.462 -0.418 -0.260 0.055 -0.026 -0.539 0.209 0.231 0.255 -0.680 0.100 0.151 0.459 -0.160 -2.934 0.677 0.283 -0.313 -0.099 0.062 -0.190 -0.320 -0.353 0.622 0.665 -0.908 -0.586 0.281 0.800 -0.350 -2.691 0.400 0.336 -0.410 -0.330 0.250 0.398 -0.946 -0.320 0.446 -0.079 -0.206 -0.042 0.281 0.381 0.108 -2.703 0.552 -0.085 0.127 -0.638 0.404 -0.378 -0.069 -0.039 0.383 0.465 -0.728 -0.071 0.089 0.430 0.116 -2.898 0.521 0.224 -0.330 -0.197 0.219 0.080 -0.699 0.055 0.365 0.272 -0.489 -0.394 0.399 0.387 -0.170 -3.245 0.764 0.132 -0.318 -0.351 0.399 -0.124 -0.524 -0.490 0.744 0.519 -0.649 -0.127 0.019 0.730 -0.046 -2.862 0.306 0.274 -0.412 -0.127 0.169 0.135 -0.615 -0.068 0.373 -0.293 0.155 -0.002 0.101 0.606 -0.142 -2.252 0.445 -0.361 0.336 -0.381 0.253 -0.635 -0.365 0.364 0.370 0.356 -0.749 0.244 -0.088 0.360 0.339 -2.860 0.394 0.252 0.113 -0.332 -0.099 -0.202 -0.570 0.369 0.221 0.118 -0.516 -0.180 0.414 0.310 -0.096 -2.915 0.759 -0.029 -0.296 -0.107 0.352 -0.361 -0.442 -0.391 0.785 0.584 -0.526 0.102 -0.448 0.310 0.371 -2.116 0.305 -0.153 0.122 0.218 -0.236 -0.376 -0.200 0.079 0.381 -0.109 -0.384 0.563 -0.270 0.587 0.011 -1.945 0.300 -0.209 -0.219 0.483 -0.187 -0.588 -0.077 0.245 0.265 -0.231 -0.778 0.970 -0.723 -0.222 0.938 -1.585 -0.163 -0.593 0.135 0.739 -0.812 -0.493 0.047 0.398 -0.092 0.211 -0.427 0.067 0.072 0.242 0.457 -2.367 0.323 -0.097 -0.371 0.223 0.170 -0.471 -0.123 -0.183 0.565 0.310 -0.183 -0.067 -0.113 0.595 -0.055 -2.316 0.407 0.516 -0.928 0.165 -0.114 -0.426 0.098 -0.129 0.346 -0.336 0.089 0.227 -0.039 0.102 0.136 -2.680 0.741 -0.491 0.672 0.021 -0.556 -0.823 0.008 0.199 0.357 -0.026 -0.954 0.634 -0.075 -0.328 0.478 -2.032 0.647 0.106 -0.035 0.007 -0.085 -0.365 -0.654 0.624 0.066 0.163 -0.700 -0.044 0.372 0.074 -0.247 -2.596 0.955 0.174 -0.318 -0.023 0.118 -0.335 -0.431 -0.242 0.696 0.478 -0.744 -0.259 0.232 0.515 -0.184 -2.960 0.643 0.306 -0.396 -0.019 0.025 0.096 -0.591 -0.170 0.463 -0.097 -0.214 0.324 -0.072 0.199 0.250 -2.524 0.575 -0.017 -0.500 0.450 -0.091 -0.500 -0.151 0.247 0.269 0.224 -0.561 0.352 -0.187 0.395 0.293 -2.845 0.401 0.062 -0.279 0.375 -0.259 -0.005 -0.305 0.079 0.186 0.325 -0.449 -0.145 0.151 0.244 0.186 -3.131 0.645 0.205 -0.423 0.002 0.137 -0.281 -0.298 -0.206 0.582 0.483 -0.643 -0.201 0.127 0.538 -0.242 -2.740 0.634 0.389 -0.501 -0.075 0.048 0.078 -0.662 -0.008 0.398 -0.077 -0.539 0.370 0.101 0.576 -0.214 -2.815 0.590 -0.287 -0.735 0.546 0.163 -0.243 -0.338 0.063 0.400 0.316 -0.291 -0.032 -0.060 0.386 0.260 -2.476 0.397 0.137 0.166 -0.378 0.012 -0.164 -0.508 0.107 0.409 0.301 -0.552 -0.192 0.276 0.433 -0.104 -2.332 0.605 0.158 -0.595 0.180 0.123 0.007 -0.511 -0.421 0.629 0.447 -0.448 -0.067 -0.076 0.521 -0.233 -1.953 0.542 0.154 -0.482 -0.065 0.281 -0.167 -0.579 0.192 0.376 -0.204 -0.055 0.211 0.017 0.674 -0.283 -1.635 0.334 0.320 -0.632 0.304 -0.198 -0.878 0.293 0.316 -0.021 -0.311 -0.622 0.220 0.464 0.033 0.626 -0.802 -0.218 0.119 -0.510 0.351 -0.096 -0.720 -0.871 0.978 -0.190 0.265 -0.281 -0.192 0.138 0.627 -0.251 -2.829 0.560 -0.022 -0.564 0.407 0.018 -0.370 -0.251 -0.195 0.597 0.513 -0.846 0.088 -0.068 0.619 -0.296 -2.476 0.555 0.234 -0.842 0.342 -0.002 -0.184 -0.562 -0.053 0.564 -0.152 -0.525 0.395 0.125 0.617 -0.505 -1.752 0.551 -0.664 -0.143 0.292 0.309 -0.457 -0.253 0.516 0.003 0.248 -0.858 0.337 -0.003 0.584 -0.369 -1.428 0.439 0.354 -0.431 -0.131 0.094 -0.283 -0.598 0.164 0.482 0.252 -0.647 0.014 0.215 0.469 -0.384 -2.872 0.776 0.091 -0.635 0.343 0.031 -0.423 -0.444 -0.151 0.694 0.421 -0.743 -0.242 0.286 0.632 -0.223 -2.774 0.534 0.360 -0.222 -0.364 0.113 0.103 -0.764 -0.195 0.549 -0.281 -0.265 0.240 0.218 0.253 0.054 -2.857 0.707 -0.279 -0.001 -0.060 0.283 -0.687 0.154 -0.116 0.427 0.171 -0.665 0.206 0.124 0.381 -0.043 -2.379 0.618 -0.055 -0.103 -0.086 0.220 -0.332 -0.724 0.570 0.157 0.288 -0.458 -0.204 0.243 0.454 -0.168 -2.816 0.676 0.013 -0.304 -0.065 0.293 -0.380 -0.365 -0.272 0.702 0.658 -0.972 -0.416 0.217 0.625 -0.311 -2.771 0.590 0.370 -0.564 -0.268 0.264 0.138 -0.642 -0.300 0.532 0.001 -0.725 0.210 0.308 0.530 -0.217 -2.873 0.641 -0.235 -0.711 -0.262 0.770 -0.185 -0.529 -0.020 0.527 0.510 -0.836 0.018 0.005 0.397 -0.052 -3.161 0.684 0.387 -0.370 -0.277 0.129 0.123 -0.567 -0.151 0.417 0.171 -0.766 -0.484 0.652 0.391 -0.194 -3.195 0.770 0.050 -0.592 -0.395 0.624 -0.198 -0.705 -0.647 0.908 0.608 -0.803 0.089 -0.254 0.403 -0.131 -2.096 0.614 0.126 -0.204 -0.096 0.144 -0.156 -0.498 -0.127 0.565 -0.171 -0.434 0.260 0.232 0.729 -0.239 -2.186 0.351 -0.460 0.203 -0.403 0.450 -0.558 -0.238 0.249 0.361 0.329 -1.089 0.427 -0.106 -0.169 0.249 -1.951 0.734 -0.467 0.383 0.183 -0.256 -0.324 -0.549 0.329 0.335 0.193 -0.340 -0.105 0.186 0.274 -0.087 -2.341 0.724 -0.061 -0.331 -0.307 0.524 -0.354 -0.275 -0.335 0.677 0.495 -0.613 -0.167 0.066 0.503 -0.068 -2.770 0.568 0.335 -0.279 -0.085 -0.041 -0.058 -0.450 -0.049 0.423 -0.089 -0.476 0.279 0.173 0.272 -0.147 -2.946 0.816 -0.314 -0.042 -0.127 0.388 -0.407 -0.503 0.256 0.428 0.449 -0.997 0.228 -0.054 0.261 0.017 -2.196 0.652 0.514 -0.427 -0.216 -0.049 -0.184 -0.513 0.250 0.298 0.230 -0.771 -0.166 0.433 0.309 -0.244 -2.874 0.832 -0.091 -0.598 -0.312 0.673 -0.342 -0.596 -0.209 0.752 0.684 -0.904 -0.447 0.170 0.702 -0.370 -2.831 0.545 0.253 -0.346 -0.264 0.249 0.070 -0.841 -0.468 0.739 0.003 -0.494 0.058 0.319 0.341 -0.056 -3.237 0.736 0.165 -0.581 -0.242 0.448 -0.430 -0.240 -0.059 0.537 0.450 -0.849 0.108 0.001 0.319 -0.016 -3.170 0.724 0.076 -0.290 0.031 0.145 -0.044 -0.672 -0.177 0.602 0.415 -0.844 -0.465 0.470 0.243 -0.120 -3.433 0.851 0.068 -0.601 -0.240 0.532 -0.203 -0.630 -0.542 0.847 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 0.157 -0.407 0.355 -0.230 0.428 0.267 -0.733 -0.235 0.205 -0.380 0.314 -0.258 0.017 -0.375 -0.053 0.325 0.029 -0.634 0.735 -0.575 -0.178 -0.178 -0.015 0.313 -0.280 0.372 0.537 -1.213 -1.000 0.268 0.064 0.322 0.027 -0.295 0.563 -0.540 -0.040 0.423 -0.487 -0.040 -0.154 0.252 0.225 -0.431 -0.895 0.059 0.497 0.012 -0.256 0.159 -0.256 0.274 -0.418 0.655 -0.954 0.216 -0.304 -0.174 0.311 0.089 -0.573 0.000 -0.303 0.601 N-11 LUT 3 2 4 0 0.000 0.563 -0.115 0.065 -0.852 0.220 0.268 -1.517 0.358 0.287 0.314 -0.008 -0.883 0.054 0.254 -0.893 0.300 -0.409 -0.267 0.923 -0.945 -0.177 0.341 -0.244 0.007 -0.870 0.621 0.487 -0.963 -0.577 0.025 0.266 0.150 0.474 -0.126 0.354 -1.263 -0.028 0.557 -0.322 -0.418 0.597 0.022 -0.235 -0.686 -0.135 -0.036 0.057 0.102 -0.091 -0.030 0.292 -0.222 0.018 0.369 -0.982 0.251 0.046 0.247 -0.189 -0.147 -0.244 0.091 -0.427 0.429 N-10 LUT 3 2 4 0 0.000 0.326 -0.141 0.231 -0.585 0.315 -0.435 -0.371 0.315 0.507 -0.268 0.069 -0.516 -0.122 0.314 -0.888 0.376 -0.248 -0.493 0.559 -0.038 -0.104 0.249 -0.232 0.042 0.028 0.135 0.372 -0.766 -1.506 -0.184 0.641 0.272 0.069 -0.158 0.367 -0.386 0.121 0.300 -0.700 0.093 0.233 0.406 -0.322 -0.515 -0.241 -0.115 0.429 -0.177 0.152 -0.585 0.482 -0.277 0.018 0.281 -0.911 0.311 -0.123 0.171 -0.269 0.171 -0.492 -0.100 -0.282 0.617 N-9 LUT 3 2 4 0 0.000 0.086 -0.211 0.052 0.052 -0.299 0.057 -0.855 0.672 -0.080 -0.206 0.544 -0.456 -0.943 0.057 -0.085 0.581 -0.075 -0.380 0.702 -0.610 -0.144 -0.212 0.518 -0.322 -1.548 -0.012 1.107 -0.963 -0.926 -0.284 0.600 0.185 0.123 -0.115 0.576 -1.009 -0.047 -0.295 0.349 -0.085 0.030 0.108 0.218 -0.439 -1.361 -0.361 0.765 0.180 0.234 -0.602 0.449 -0.322 0.175 -0.047 -0.784 0.403 0.115 -0.170 0.078 -0.041 -0.358 0.035 -0.358 0.500 N-8 LUT 3 2 4 0 0.000 0.269 0.329 0.072 -1.037 0.624 0.023 -1.024 -0.073 0.068 0.313 -0.014 -0.477 0.039 0.658 -2.183 0.232 -0.555 -0.010 0.927 -1.233 0.171 0.171 -0.433 0.011 -0.935 0.443 0.524 -0.557 -0.974 0.219 0.219 0.219 -0.248 -0.197 0.302 0.074 -0.072 0.198 -0.459 0.232 0.000 0.512 0.000 -0.801 -0.361 0.134 0.087 0.087 -0.144 -0.222 0.193 0.131 0.052 0.133 -0.553 0.245 -0.214 0.431 -0.040 -0.290 -0.441 0.337 -0.360 0.288 N-7 LUT 3 2 4 0 0.000 0.544 -0.713 0.365 -0.635 -0.175 0.359 -1.574 0.581 0.209 0.238 -0.149 -0.390 -0.276 0.177 -1.939 0.834 -0.019 -0.566 0.710 -0.512 0.158 0.444 -0.952 0.010 -0.476 0.225 0.431 -0.388 -0.858 -0.051 0.435 0.178 0.547 -0.430 0.289 -0.799 -0.465 0.566 -0.345 0.011 -0.628 0.497 0.186 -0.315 -0.863 0.393 0.393 -0.279 -0.027 -0.204 0.179 0.027 0.016 0.350 -1.338 0.399 -0.061 0.081 0.035 -0.061 -0.637 0.280 -0.263 0.389 N-6 LUT 3 2 4 0 0.000 0.389 -1.485 0.716 -0.534 0.633 -0.615 -0.615 0.193 0.107 -0.508 0.621 -0.554 -0.352 0.155 0.101 0.044 -0.295 -0.816 0.850 -0.295 -0.098 -0.977 0.742 -0.176 -0.091 -0.091 0.555 -0.615 -0.907 -0.466 0.986 -0.392 0.000 -0.415 0.807 -1.000 -0.040 -0.040 0.333 -0.330 -0.174 -0.350 0.478 -0.094 -0.515 -1.100 0.848 0.047 -0.070 -0.585 0.515 -0.070 0.116 -0.322 -0.106 0.247 -0.663 -0.197 0.559 0.032 -1.270 -0.036 0.397 0.370 N-5 LUT 3 2 4 0 0.000 0.297 -0.881 0.571 -0.429 0.000 0.453 -1.926 0.453 0.144 0.337 -0.052 -0.585 -0.222 0.086 -1.445 0.778 -0.252 -0.074 0.629 -0.593 -0.287 0.279 -0.073 0.023 -1.136 0.818 0.301 -0.863 -1.188 0.424 -0.036 0.315 0.209 -0.415 0.672 -1.000 -0.038 0.284 -0.322 0.012 0.119 0.286 0.041 -0.585 -0.713 0.117 -0.025 0.403 0.345 0.291 -0.161 -0.709 0.391 0.497 -2.573 0.150 -0.251 0.295 -0.087 -0.012 -0.634 0.509 -0.760 0.425 N-4 LUT 3 2 4 0 0.000 0.548 -0.273 0.435 -1.479 0.619 0.619 -1.107 -1.107 0.030 0.322 0.322 -1.061 0.291 0.497 -1.409 -0.017 0.160 0.206 0.206 -0.794 0.425 0.599 -0.737 -0.881 -0.784 0.631 0.505 -1.147 -0.371 0.427 0.391 -0.807 0.400 -0.108 0.354 -1.076 -0.308 0.773 -0.684 -0.216 0.284 0.614 -0.064 -1.758 -0.576 0.798 0.161 -1.083 0.245 -0.340 0.304 -0.340 0.017 0.775 -1.205 -0.246 -0.059 0.214 0.310 -0.644 0.016 0.662 -0.420 -0.601 N-3 LUT 3 2 4 0 0.000 1.082 -1.034 0.274 -2.426 1.227 -1.773 -0.085 -1.242 1.280 -1.144 -0.144 -2.222 0.556 -1.280 0.305 -0.181 0.080 -1.505 1.266 -2.423 1.376 -2.402 0.057 -2.509 0.415 -1.459 1.178 -4.629 0.541 -1.237 0.710 -1.044 1.144 -2.441 0.453 -2.078 1.232 -1.951 0.256 -2.329 1.376 -1.392 -0.392 -1.933 0.482 -1.170 0.977 -2.392 0.770 -1.346 0.770 -2.346 1.452 -1.728 -0.370 -2.406 0.953 -1.807 0.152 -0.585 0.601 -0.536 0.201 -0.636 N-2 LUT 3 2 4 0 0.000 0.990 -0.447 -0.212 -1.261 0.627 0.167 -1.833 0.074 0.305 0.694 -0.878 -0.730 0.322 0.459 -0.678 -0.415 0.513 0.271 -0.287 -0.872 0.300 0.000 -1.379 0.469 -0.139 1.048 -0.836 -1.109 -0.354 0.177 0.564 -0.716 0.927 -0.253 -0.298 -1.165 -0.143 0.664 -1.143 0.079 0.254 0.936 -1.161 -1.161 0.415 0.193 -0.070 -0.807 0.492 0.209 -0.300 -0.678 0.661 0.381 -0.841 -0.841 0.426 0.552 -0.863 -0.641 -0.263 0.222 -1.000 0.585 N-1 LUT 3 2 4 0 0.000 0.311 -0.472 0.783 -1.654 -0.131 1.129 -0.888 -1.473 0.459 0.000 0.443 -1.913 -0.884 1.452 -2.469 -0.884 0.326 -1.066 0.841 -1.066 0.392 0.700 -0.830 -1.000 -0.070 0.415 0.193 -0.807 -0.921 0.594 0.179 -0.268 0.466 0.153 0.265 -1.713 -0.926 1.402 -1.060 -1.511 -0.087 -0.087 0.851 -1.672 -1.115 1.000 -0.115 -0.700 0.159 -0.841 0.661 -0.426 -1.059 1.310 -1.059 -0.837 0.074 -0.078 0.212 -0.248 -0.888 -0.040 0.791 -0.402 A LUT 3 2 4 0 0.000 1.984 -6.077 -6.077 -6.077 1.974 -5.401 -5.401 -5.401 1.987 -6.392 -6.392 -6.392 1.940 -4.209 -4.209 -4.209 1.969 -5.160 -5.160 -5.160 1.990 -6.823 -6.823 -6.823 1.955 -4.615 -4.615 -4.615 1.939 -4.190 -4.190 -4.190 1.966 -4.989 -4.989 -4.989 1.958 -4.700 -4.700 -4.700 1.971 -5.229 -5.229 -5.229 1.874 -3.170 -3.170 -3.170 1.900 -3.492 -3.492 -3.492 1.977 -5.547 -5.547 -5.547 1.928 -3.954 -3.954 -3.954 1.919 -3.781 -3.781 -3.781 T LUT 3 2 4 0 0.000 -7.162 -7.162 -7.162 1.992 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.815 -7.815 -7.815 1.995 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.308 -7.308 -7.308 1.993 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.820 -5.820 -5.820 1.981 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.181 -9.181 1.998 -9.181 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.176 -0.780 0.930 -0.673 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.707 -0.095 -0.131 -0.948 0.094 0.609 -1.021 -0.128 0.264 0.988 -1.017 -1.639 -1.935 1.124 -0.876 0.020 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -0.069 -0.384 0.598 -0.384 0.368 -0.047 -0.706 0.175 -0.831 0.636 -0.671 0.329 -0.807 0.041 0.515 -0.042 -0.385 -1.233 1.089 -0.555 -0.248 -0.411 0.193 0.337 -0.032 -0.492 0.678 -0.492 -1.755 -0.092 0.748 0.120 -0.585 -0.807 0.695 0.193 -0.588 -0.291 0.518 0.118 -0.129 -0.129 0.678 -0.807 -1.524 -0.716 1.120 -0.202 -2.755 0.946 -2.755 0.830 -0.343 0.217 -0.417 0.379 -3.728 -0.027 0.796 0.272 -0.778 -0.126 0.322 0.322 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.530 -0.516 0.255 -0.592 0.597 -0.270 -0.642 0.026 0.243 -0.304 -0.253 0.223 0.507 -0.394 0.012 -0.304 0.510 -0.304 -0.943 0.317 0.149 -0.036 -0.340 0.170 -8.264 -8.264 -8.264 1.996 1.996 -8.264 -8.264 -8.264 1.996 -8.264 -8.264 -8.264 TAG WMM 9 6 4 0 0.000 0.251 -0.382 0.374 -0.422 0.435 -0.196 -0.368 0.000 0.199 -0.116 -0.267 0.136 0.366 -0.304 -0.196 0.040 0.420 -0.243 -0.960 0.382 0.117 -0.255 0.010 0.098 -7.150 -7.150 -7.150 1.992 1.992 -7.150 -7.150 -7.150 -7.150 -7.150 1.992 -7.150 TGA WMM 9 6 4 0 0.000 0.185 -0.259 0.357 -0.422 0.549 -0.225 -0.431 -0.090 0.204 -0.098 -0.259 0.108 0.198 -0.160 0.185 -0.285 0.583 -0.412 -0.671 0.167 -0.083 0.401 0.012 -0.460 -7.660 -7.660 -7.660 1.995 -7.660 -7.660 1.995 -7.660 1.995 -7.660 -7.660 -7.660 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/mam39-ro.hmm0000644000175000017500000023434511424066010015427 0ustar moellermoellerzoeHMM mammal 8 16 8 8 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Repeat 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.861976 Inter Esngl 0.138024 Inter ORF 1 Inter Repeat 1 Intron Eterm 0.139237 Intron Exon 0.860763 Intron ORF 1 Intron Repeat 1 ORF Inter 1 ORF Intron 1 Repeat Inter 1 Repeat Intron 1 0.421945 0.380910 0.197145 0.576764 0.227001 0.196235 0.525958 0.276807 0.197234 0.556318 0.238690 0.204992 0.863083 0.136917 0.860330 0.139670 0.856594 0.143406 Einit 2 DEFINED 0 249 -9.384 -9.290 -9.201 -9.118 -9.039 -8.965 -8.894 -8.826 -8.762 -8.700 -8.640 -8.599 -8.558 -8.519 -8.481 -8.444 -8.407 -8.372 -8.337 -8.304 -8.271 -8.235 -8.199 -8.165 -8.131 -8.099 -8.067 -8.035 -8.004 -7.974 -7.945 -7.911 -7.878 -7.845 -7.814 -7.783 -7.753 -7.723 -7.694 -7.665 -7.637 -7.623 -7.609 -7.595 -7.581 -7.567 -7.554 -7.540 -7.527 -7.514 -7.501 -7.486 -7.471 -7.457 -7.443 -7.429 -7.415 -7.401 -7.387 -7.373 -7.360 -7.356 -7.352 -7.348 -7.344 -7.340 -7.336 -7.333 -7.329 -7.325 -7.321 -7.323 -7.324 -7.326 -7.327 -7.329 -7.330 -7.332 -7.333 -7.335 -7.336 -7.350 -7.364 -7.377 -7.391 -7.405 -7.419 -7.434 -7.448 -7.463 -7.478 -7.492 -7.508 -7.523 -7.538 -7.554 -7.569 -7.585 -7.601 -7.618 -7.634 -7.641 -7.649 -7.656 -7.664 -7.671 -7.679 -7.686 -7.694 -7.701 -7.709 -7.727 -7.744 -7.762 -7.780 -7.799 -7.817 -7.836 -7.855 -7.875 -7.895 -7.906 -7.918 -7.930 -7.943 -7.955 -7.967 -7.980 -7.992 -8.005 -8.018 -8.023 -8.028 -8.033 -8.038 -8.043 -8.048 -8.053 -8.058 -8.063 -8.068 -8.082 -8.096 -8.110 -8.124 -8.139 -8.153 -8.168 -8.183 -8.198 -8.213 -8.224 -8.235 -8.246 -8.257 -8.268 -8.280 -8.291 -8.303 -8.314 -8.326 -8.347 -8.368 -8.389 -8.411 -8.433 -8.455 -8.478 -8.501 -8.524 -8.548 -8.580 -8.613 -8.646 -8.681 -8.716 -8.752 -8.789 -8.827 -8.866 -8.906 -8.924 -8.942 -8.960 -8.978 -8.997 -9.016 -9.035 -9.055 -9.074 -9.094 -9.111 -9.128 -9.145 -9.162 -9.180 -9.198 -9.215 -9.234 -9.252 -9.271 -9.289 -9.307 -9.325 -9.344 -9.363 -9.382 -9.401 -9.421 -9.440 -9.461 -9.470 -9.479 -9.488 -9.497 -9.506 -9.516 -9.525 -9.535 -9.544 -9.554 -9.588 -9.623 -9.658 -9.695 -9.733 -9.771 -9.811 -9.852 -9.894 -9.937 -9.974 -10.011 -10.049 -10.089 -10.130 -10.171 -10.215 -10.259 -10.305 -10.352 -10.356 -10.360 -10.365 -10.369 -10.373 -10.377 -10.382 -10.386 -10.390 GEOMETRIC 250 -1 155 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -9.859 -9.761 -9.669 -9.582 -9.501 -9.424 -9.351 -9.281 -9.214 -9.151 -9.090 -9.026 -8.964 -8.905 -8.849 -8.794 -8.742 -8.691 -8.642 -8.595 -8.549 -8.511 -8.474 -8.437 -8.402 -8.368 -8.334 -8.301 -8.269 -8.238 -8.207 -8.190 -8.173 -8.156 -8.139 -8.123 -8.106 -8.090 -8.074 -8.059 -8.043 -8.034 -8.024 -8.015 -8.005 -7.996 -7.987 -7.977 -7.968 -7.959 -7.950 -7.937 -7.924 -7.912 -7.899 -7.887 -7.874 -7.862 -7.850 -7.838 -7.826 -7.818 -7.810 -7.803 -7.795 -7.787 -7.779 -7.772 -7.764 -7.757 -7.749 -7.752 -7.756 -7.759 -7.763 -7.766 -7.770 -7.773 -7.777 -7.780 -7.784 -7.774 -7.763 -7.754 -7.744 -7.734 -7.724 -7.714 -7.705 -7.695 -7.686 -7.683 -7.680 -7.678 -7.675 -7.673 -7.670 -7.668 -7.665 -7.662 -7.660 -7.664 -7.668 -7.671 -7.675 -7.679 -7.683 -7.687 -7.691 -7.695 -7.699 -7.694 -7.690 -7.685 -7.680 -7.676 -7.671 -7.667 -7.662 -7.658 -7.653 -7.657 -7.660 -7.663 -7.666 -7.669 -7.673 -7.676 -7.679 -7.682 -7.686 -7.701 -7.717 -7.732 -7.748 -7.765 -7.781 -7.797 -7.814 -7.831 -7.848 -7.853 -7.857 -7.862 -7.867 -7.872 -7.877 -7.882 -7.886 -7.891 -7.896 -7.900 -7.904 -7.909 -7.913 -7.917 -7.921 -7.926 -7.930 -7.934 -7.938 -7.954 -7.970 -7.986 -8.002 -8.018 -8.035 -8.052 -8.068 -8.086 -8.103 -8.125 -8.147 -8.170 -8.193 -8.216 -8.240 -8.264 -8.289 -8.314 -8.339 -8.368 -8.397 -8.426 -8.457 -8.488 -8.519 -8.552 -8.585 -8.619 -8.653 -8.690 -8.728 -8.767 -8.807 -8.848 -8.890 -8.934 -8.979 -9.025 -9.073 -9.095 -9.118 -9.141 -9.164 -9.188 -9.212 -9.237 -9.262 -9.288 -9.314 -9.343 -9.373 -9.404 -9.436 -9.468 -9.501 -9.535 -9.569 -9.604 -9.641 -9.648 -9.656 -9.664 -9.671 -9.679 -9.687 -9.695 -9.703 -9.711 -9.719 -9.728 -9.738 -9.747 -9.757 -9.766 -9.776 -9.786 -9.796 -9.805 -9.815 -9.823 -9.830 -9.837 -9.844 -9.852 -9.859 -9.866 -9.874 -9.881 GEOMETRIC 250 -1 189 Exon 2 DEFINED 0 249 -12.671 -12.408 -12.185 -11.993 -11.823 -11.671 -11.533 -11.408 -11.292 -11.185 -11.086 -10.904 -10.743 -10.598 -10.466 -10.345 -10.234 -10.131 -10.034 -9.944 -9.859 -9.733 -9.618 -9.511 -9.412 -9.319 -9.232 -9.150 -9.072 -8.998 -8.928 -8.845 -8.766 -8.692 -8.622 -8.554 -8.490 -8.428 -8.369 -8.313 -8.258 -8.201 -8.146 -8.093 -8.042 -7.992 -7.945 -7.899 -7.854 -7.810 -7.768 -7.728 -7.690 -7.652 -7.615 -7.579 -7.544 -7.510 -7.476 -7.444 -7.412 -7.388 -7.364 -7.341 -7.318 -7.295 -7.273 -7.251 -7.229 -7.208 -7.187 -7.171 -7.155 -7.139 -7.123 -7.107 -7.092 -7.077 -7.062 -7.047 -7.032 -7.024 -7.017 -7.009 -7.001 -6.994 -6.986 -6.978 -6.971 -6.963 -6.956 -6.957 -6.957 -6.958 -6.959 -6.959 -6.960 -6.961 -6.961 -6.962 -6.963 -6.969 -6.976 -6.982 -6.989 -6.996 -7.003 -7.009 -7.016 -7.023 -7.030 -7.039 -7.048 -7.057 -7.067 -7.076 -7.086 -7.095 -7.105 -7.114 -7.124 -7.139 -7.154 -7.169 -7.184 -7.200 -7.215 -7.231 -7.247 -7.263 -7.280 -7.297 -7.314 -7.331 -7.349 -7.367 -7.385 -7.403 -7.422 -7.441 -7.460 -7.478 -7.497 -7.516 -7.536 -7.555 -7.575 -7.595 -7.616 -7.636 -7.657 -7.682 -7.707 -7.732 -7.758 -7.785 -7.812 -7.839 -7.867 -7.895 -7.924 -7.952 -7.981 -8.010 -8.040 -8.070 -8.101 -8.133 -8.165 -8.199 -8.233 -8.261 -8.290 -8.320 -8.351 -8.382 -8.414 -8.446 -8.480 -8.514 -8.549 -8.582 -8.617 -8.653 -8.689 -8.727 -8.765 -8.805 -8.845 -8.887 -8.930 -8.963 -8.997 -9.031 -9.067 -9.103 -9.140 -9.179 -9.218 -9.258 -9.300 -9.339 -9.379 -9.420 -9.463 -9.506 -9.551 -9.598 -9.646 -9.696 -9.747 -9.786 -9.826 -9.867 -9.909 -9.952 -9.997 -10.043 -10.091 -10.141 -10.192 -10.222 -10.253 -10.285 -10.317 -10.350 -10.384 -10.419 -10.455 -10.491 -10.529 -10.564 -10.601 -10.639 -10.677 -10.717 -10.758 -10.800 -10.843 -10.888 -10.934 -10.961 -10.989 -11.018 -11.048 -11.077 -11.108 -11.139 -11.171 -11.204 GEOMETRIC 250 -1 119 Inter 1 GEOMETRIC 0 -1 25000 Intron 1 GEOMETRIC 0 -1 1661 ORF 2 DEFINED 0 249 -12.671 -12.408 -12.185 -11.993 -11.823 -11.671 -11.533 -11.408 -11.292 -11.185 -11.086 -10.904 -10.743 -10.598 -10.466 -10.345 -10.234 -10.131 -10.034 -9.944 -9.859 -9.733 -9.618 -9.511 -9.412 -9.319 -9.232 -9.150 -9.072 -8.998 -8.928 -8.845 -8.766 -8.692 -8.622 -8.554 -8.490 -8.428 -8.369 -8.313 -8.258 -8.201 -8.146 -8.093 -8.042 -7.992 -7.945 -7.899 -7.854 -7.810 -7.768 -7.728 -7.690 -7.652 -7.615 -7.579 -7.544 -7.510 -7.476 -7.444 -7.412 -7.388 -7.364 -7.341 -7.318 -7.295 -7.273 -7.251 -7.229 -7.208 -7.187 -7.171 -7.155 -7.139 -7.123 -7.107 -7.092 -7.077 -7.062 -7.047 -7.032 -7.024 -7.017 -7.009 -7.001 -6.994 -6.986 -6.978 -6.971 -6.963 -6.956 -6.957 -6.957 -6.958 -6.959 -6.959 -6.960 -6.961 -6.961 -6.962 -6.963 -6.969 -6.976 -6.982 -6.989 -6.996 -7.003 -7.009 -7.016 -7.023 -7.030 -7.039 -7.048 -7.057 -7.067 -7.076 -7.086 -7.095 -7.105 -7.114 -7.124 -7.139 -7.154 -7.169 -7.184 -7.200 -7.215 -7.231 -7.247 -7.263 -7.280 -7.297 -7.314 -7.331 -7.349 -7.367 -7.385 -7.403 -7.422 -7.441 -7.460 -7.478 -7.497 -7.516 -7.536 -7.555 -7.575 -7.595 -7.616 -7.636 -7.657 -7.682 -7.707 -7.732 -7.758 -7.785 -7.812 -7.839 -7.867 -7.895 -7.924 -7.952 -7.981 -8.010 -8.040 -8.070 -8.101 -8.133 -8.165 -8.199 -8.233 -8.261 -8.290 -8.320 -8.351 -8.382 -8.414 -8.446 -8.480 -8.514 -8.549 -8.582 -8.617 -8.653 -8.689 -8.727 -8.765 -8.805 -8.845 -8.887 -8.930 -8.963 -8.997 -9.031 -9.067 -9.103 -9.140 -9.179 -9.218 -9.258 -9.300 -9.339 -9.379 -9.420 -9.463 -9.506 -9.551 -9.598 -9.646 -9.696 -9.747 -9.786 -9.826 -9.867 -9.909 -9.952 -9.997 -10.043 -10.091 -10.141 -10.192 -10.222 -10.253 -10.285 -10.317 -10.350 -10.384 -10.419 -10.455 -10.491 -10.529 -10.564 -10.601 -10.639 -10.677 -10.717 -10.758 -10.800 -10.843 -10.888 -10.934 -10.961 -10.989 -11.018 -11.048 -11.077 -11.108 -11.139 -11.171 -11.204 GEOMETRIC 250 -1 119 Repeat 1 CONSTANT 0 -1 0 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.586 -0.783 -0.515 0.285 0.461 -0.459 -2.196 0.747 0.313 -0.501 -0.554 0.455 0.121 -1.068 -0.101 0.588 -0.078 -0.390 -0.233 0.525 0.415 -0.282 -2.647 0.752 -0.170 -0.548 -0.622 0.830 -0.337 -0.524 -0.056 0.633 0.506 -0.655 -0.128 0.043 0.556 -0.217 -2.380 0.564 0.364 -0.405 -0.361 0.238 0.013 -0.743 -0.142 0.573 0.586 -0.815 -0.756 0.420 0.443 -0.421 -3.228 0.837 -0.006 -0.552 -0.399 0.645 -0.143 -0.647 -0.500 0.807 I-36 LUT 3 2 4 0 0.000 0.594 -0.673 -0.645 0.292 0.487 -0.565 -2.508 0.805 0.432 -0.568 -0.650 0.422 0.191 -0.858 -0.096 0.455 0.055 -0.605 -0.119 0.468 0.281 0.020 -3.257 0.736 0.495 -0.907 -0.627 0.495 -0.346 -0.536 -0.045 0.636 0.591 -0.790 -0.169 0.036 0.574 -0.472 -3.204 0.750 0.436 -0.371 -0.486 0.214 0.065 -0.691 -0.015 0.427 0.509 -0.687 -0.748 0.444 0.431 -0.588 -2.495 0.855 0.193 -0.568 -0.463 0.543 -0.122 -0.590 -0.433 0.745 I-35 LUT 3 2 4 0 0.000 0.607 -0.742 -0.540 0.253 0.463 -0.548 -2.396 0.805 0.321 -0.445 -0.473 0.374 0.104 -0.973 -0.080 0.555 -0.016 -0.333 -0.069 0.338 0.315 0.023 -2.773 0.672 0.014 -0.381 -1.459 0.894 -0.303 -0.460 -0.064 0.591 0.483 -0.710 -0.347 0.269 0.463 -0.310 -2.895 0.749 0.547 -0.494 -0.582 0.215 -0.058 -0.611 -0.026 0.488 0.578 -0.760 -0.930 0.477 0.328 -0.326 -2.896 0.859 0.191 -0.423 -0.429 0.454 -0.169 -0.502 -0.328 0.685 I-34 LUT 3 2 4 0 0.000 0.545 -0.727 -0.543 0.322 0.541 -0.576 -2.172 0.724 0.482 -0.685 -0.504 0.352 0.055 -0.795 -0.212 0.606 -0.010 -0.536 -0.273 0.575 0.280 -0.080 -2.609 0.745 -0.410 -0.073 -0.199 0.512 -0.273 -0.413 -0.054 0.543 0.586 -0.811 -0.360 0.201 0.426 -0.255 -2.896 0.752 0.320 -0.313 -0.436 0.272 0.074 -0.745 -0.032 0.457 0.527 -0.739 -0.782 0.464 0.455 -0.411 -2.995 0.808 0.171 -0.579 -0.626 0.639 -0.163 -0.505 -0.565 0.788 I-33 LUT 3 2 4 0 0.000 0.587 -0.748 -0.742 0.384 0.534 -0.748 -2.931 0.868 0.311 -0.608 -0.496 0.479 0.066 -0.790 -0.286 0.636 0.096 -0.350 -0.389 0.468 0.375 -0.485 -2.277 0.834 -0.284 -0.720 0.193 0.515 -0.140 -0.646 -0.031 0.561 0.603 -0.708 -0.362 0.126 0.556 -0.356 -2.647 0.667 0.231 -0.197 -0.540 0.341 -0.045 -0.752 -0.045 0.554 0.549 -0.756 -0.792 0.451 0.251 -0.254 -3.061 0.888 0.213 -0.605 -0.687 0.644 -0.141 -0.524 -0.661 0.820 I-32 LUT 3 2 4 0 0.000 0.529 -0.592 -0.628 0.318 0.441 -0.386 -2.718 0.786 0.215 -0.693 -0.366 0.531 0.075 -0.911 -0.156 0.601 -0.176 -0.184 -0.304 0.511 0.305 -0.029 -3.164 0.743 -0.059 -0.556 -1.059 0.911 -0.374 -0.516 0.073 0.563 0.535 -0.640 -0.346 0.167 0.324 -0.393 -2.666 0.871 0.284 -0.474 -0.439 0.405 -0.011 -0.844 0.055 0.497 0.570 -0.612 -0.775 0.353 0.249 -0.286 -3.094 0.906 0.315 -0.614 -0.878 0.641 -0.248 -0.537 -0.499 0.816 I-31 LUT 3 2 4 0 0.000 0.543 -0.727 -0.625 0.367 0.494 -0.463 -2.425 0.749 0.352 -0.506 -0.610 0.448 0.109 -1.050 -0.181 0.638 -0.072 -0.421 -0.367 0.610 0.177 -0.314 -2.861 0.947 -0.569 -0.668 -0.668 1.048 -0.270 -0.538 -0.054 0.603 0.545 -0.579 -0.450 0.189 0.330 -0.180 -3.382 0.820 0.256 -0.401 -0.401 0.369 -0.073 -0.849 -0.086 0.634 0.683 -0.747 -1.083 0.408 0.421 -0.501 -3.275 0.888 0.373 -0.553 -0.785 0.530 -0.183 -0.460 -0.568 0.781 I-30 LUT 3 2 4 0 0.000 0.526 -0.692 -0.962 0.514 0.508 -0.526 -2.316 0.751 0.321 -0.523 -0.757 0.549 0.086 -0.900 -0.220 0.627 0.016 -0.566 -0.422 0.648 0.274 -0.245 -2.647 0.838 -0.369 -0.452 -0.291 0.746 -0.133 -0.369 -0.339 0.607 0.491 -0.409 -0.616 0.250 0.377 -0.189 -2.613 0.731 0.348 -0.763 -0.787 0.640 -0.080 -0.681 -0.120 0.595 0.721 -0.692 -0.927 0.271 0.338 -0.522 -3.007 0.937 0.353 -0.640 -0.839 0.606 -0.171 -0.545 -0.576 0.812 I-29 LUT 3 2 4 0 0.000 0.519 -0.687 -0.819 0.464 0.439 -0.411 -2.753 0.803 0.295 -0.420 -0.781 0.530 0.089 -0.887 -0.259 0.641 0.130 -0.446 -0.214 0.388 0.294 -0.333 -2.532 0.854 -0.157 -0.420 -0.494 0.718 -0.298 -0.528 -0.029 0.598 0.428 -0.280 -0.589 0.222 0.122 -0.280 -2.972 0.971 0.363 -0.577 -0.675 0.503 0.011 -0.623 -0.268 0.598 0.800 -0.790 -1.235 0.328 0.567 -0.730 -4.287 0.898 0.417 -0.758 -0.816 0.590 -0.133 -0.547 -0.527 0.774 I-28 LUT 3 2 4 0 0.000 0.431 -0.584 -0.930 0.546 0.578 -0.694 -2.682 0.794 0.113 -0.446 -0.725 0.660 0.006 -0.925 -0.243 0.699 -0.105 -0.280 -0.478 0.612 0.326 -0.383 -3.015 0.892 -0.682 -0.179 -0.566 0.862 -0.062 -0.368 -0.172 0.464 0.310 -0.555 -0.511 0.462 0.134 -0.499 -2.437 1.007 0.138 -0.540 -0.719 0.682 -0.100 -0.826 -0.288 0.752 0.972 -1.002 -1.489 0.241 0.358 -0.611 -3.655 0.989 0.339 -0.679 -0.867 0.644 -0.220 -0.618 -0.683 0.901 I-27 LUT 3 2 4 0 0.000 0.365 -0.511 -0.811 0.526 0.235 -0.391 -2.420 0.906 0.108 -0.441 -0.790 0.685 0.065 -0.962 -0.225 0.665 -0.005 -0.312 -0.682 0.655 0.396 -0.354 -2.566 0.794 -0.305 -0.692 -0.807 1.000 -0.146 -0.411 -0.245 0.586 0.375 -0.618 -0.657 0.503 0.146 -0.287 -2.662 0.938 0.037 -0.462 -0.711 0.711 0.051 -0.783 -0.053 0.505 0.888 -0.743 -1.590 0.287 0.387 -0.659 -3.412 0.975 0.433 -0.790 -0.807 0.585 -0.011 -0.628 -0.702 0.804 I-26 LUT 3 2 4 0 0.000 0.342 -0.371 -1.111 0.582 0.466 -0.603 -2.499 0.835 0.204 -0.389 -1.024 0.671 0.116 -0.927 -0.296 0.656 -0.023 -0.208 -0.678 0.609 0.136 -0.359 -2.506 0.960 -0.570 -0.663 -0.110 0.822 -0.249 -0.407 -0.169 0.599 0.417 -0.290 -0.870 0.379 0.167 -0.060 -3.198 0.855 0.227 -0.475 -1.313 0.772 0.005 -0.763 -0.089 0.553 0.914 -0.995 -1.520 0.340 0.459 -0.453 -4.177 0.880 0.423 -0.755 -1.125 0.686 0.007 -0.666 -0.794 0.838 I-25 LUT 3 2 4 0 0.000 0.396 -0.293 -1.232 0.528 0.288 -0.568 -2.673 0.962 0.033 -0.322 -0.907 0.717 0.029 -0.924 -0.318 0.723 0.002 -0.352 -0.563 0.622 0.184 -0.252 -2.796 0.911 -0.170 -1.532 -0.092 0.870 -0.422 -0.313 -0.152 0.631 0.384 -0.022 -1.031 0.288 -0.136 -0.372 -3.103 1.138 0.067 -0.644 -0.781 0.792 0.023 -0.696 -0.311 0.642 0.967 -0.816 -1.742 0.237 0.380 -0.602 -4.501 0.997 0.456 -0.601 -1.360 0.659 -0.029 -0.669 -0.782 0.856 I-24 LUT 3 2 4 0 0.000 0.296 -0.428 -1.237 0.682 0.406 -0.525 -2.455 0.846 0.185 -0.556 -0.955 0.738 0.074 -1.070 -0.247 0.704 0.075 -0.431 -0.694 0.666 0.115 -0.177 -2.749 0.914 -1.020 -0.489 -0.868 1.168 -0.365 -0.371 -0.180 0.648 0.129 -0.027 -0.939 0.489 0.123 -0.342 -2.585 0.968 -0.158 -0.108 -1.158 0.789 0.056 -0.977 -0.152 0.635 0.950 -0.757 -1.828 0.256 0.268 -0.531 -3.475 1.010 0.517 -0.762 -1.347 0.666 -0.125 -0.554 -0.825 0.878 I-23 LUT 3 2 4 0 0.000 0.368 -0.410 -1.206 0.608 0.336 -0.310 -2.592 0.820 0.133 -0.447 -1.204 0.796 0.069 -0.938 -0.201 0.641 -0.052 -0.218 -0.752 0.662 -0.102 0.003 -2.423 0.910 -0.293 -0.222 -0.527 0.707 -0.420 -0.267 -0.137 0.597 0.243 -0.160 -1.190 0.569 -0.183 -0.348 -2.392 1.100 0.082 -0.186 -1.216 0.707 -0.280 -0.748 -0.056 0.695 0.975 -0.987 -1.900 0.335 0.318 -0.520 -3.419 0.973 0.480 -0.825 -1.333 0.717 -0.153 -0.572 -0.939 0.931 I-22 LUT 3 2 4 0 0.000 0.409 -0.352 -1.255 0.556 0.239 -0.456 -2.897 0.969 -0.087 -0.292 -0.717 0.708 -0.176 -0.999 -0.251 0.828 -0.238 -0.230 -0.815 0.792 0.089 -0.457 -3.194 1.069 -0.474 -0.474 -0.474 0.880 -0.383 -0.424 -0.235 0.712 0.139 -0.231 -0.971 0.620 -0.066 -0.434 -2.803 1.112 -0.207 -0.270 -0.807 0.793 -0.308 -0.585 -0.219 0.737 0.828 -0.748 -1.741 0.411 0.167 -0.367 -3.572 1.013 0.201 -0.679 -1.031 0.796 -0.397 -0.558 -0.736 0.972 I-21 LUT 3 2 4 0 0.000 0.471 -0.422 -1.378 0.568 0.242 -0.434 -2.702 0.943 0.073 -0.287 -0.726 0.608 -0.137 -0.923 -0.126 0.720 0.002 -0.377 -0.878 0.752 -0.284 0.070 -2.579 0.972 -0.115 -1.285 -0.285 0.885 -0.617 -0.372 -0.228 0.784 0.213 -0.098 -1.019 0.499 0.036 -0.262 -3.150 1.020 0.111 -0.191 -0.513 0.426 -0.497 -0.696 -0.158 0.830 0.785 -0.869 -1.643 0.495 0.083 -0.376 -3.492 1.058 0.155 -0.702 -1.235 0.885 -0.520 -0.565 -0.744 1.021 I-20 LUT 3 2 4 0 0.000 0.415 -0.387 -1.302 0.582 0.354 -0.343 -2.508 0.814 0.252 -0.444 -0.640 0.519 -0.157 -0.765 -0.186 0.710 -0.190 -0.310 -0.775 0.792 -0.307 -0.028 -2.855 1.051 -0.569 -0.306 -1.016 1.016 -0.710 -0.470 -0.175 0.832 0.334 -0.223 -0.857 0.412 0.040 0.131 -3.899 0.856 -0.049 0.078 -0.750 0.468 -0.399 -0.683 -0.191 0.801 0.633 -0.765 -1.858 0.664 -0.016 -0.277 -3.774 1.079 0.041 -0.771 -1.099 0.940 -0.640 -0.543 -0.870 1.087 I-19 LUT 3 2 4 0 0.000 0.411 -0.459 -1.286 0.616 0.156 -0.526 -2.215 0.982 0.050 -0.339 -1.117 0.776 -0.229 -0.814 -0.242 0.792 -0.160 -0.473 -1.125 0.946 -0.254 -0.040 -3.040 1.048 -1.000 -0.415 -0.234 0.926 -1.058 -0.179 -0.363 0.894 0.362 -0.136 -1.470 0.530 -0.302 -0.190 -2.704 1.110 -0.281 -0.256 -0.792 0.817 -0.806 -0.906 -0.228 1.029 0.524 -0.595 -2.463 0.781 -0.305 -0.189 -3.505 1.154 -0.175 -0.572 -0.914 0.934 -0.778 -0.502 -0.767 1.086 I-18 LUT 3 2 4 0 0.000 0.409 -0.367 -1.492 0.624 0.070 -0.310 -2.425 0.969 -0.110 -0.358 -0.965 0.832 -0.439 -0.841 -0.243 0.895 -0.207 -0.313 -1.061 0.887 -0.357 0.191 -2.817 0.953 -0.722 -0.170 -0.459 0.830 -1.217 -0.231 -0.393 0.968 0.240 -0.130 -1.536 0.642 -0.229 -0.141 -3.091 1.086 -0.236 -0.364 -0.286 0.636 -0.800 -0.482 -0.187 0.873 0.240 -0.574 -2.558 0.983 -0.545 -0.238 -3.709 1.257 -0.482 -0.514 -1.147 1.092 -0.885 -0.447 -0.833 1.113 I-17 LUT 3 2 4 0 0.000 0.481 -0.319 -1.976 0.631 0.078 -0.416 -2.524 1.015 -0.178 -0.494 -1.064 0.947 -0.513 -0.806 -0.251 0.916 0.097 -0.465 -1.710 0.926 -0.448 0.133 -3.142 1.040 -1.032 -0.585 -0.585 1.123 -1.532 -0.292 -0.287 1.013 0.419 -0.372 -1.723 0.667 -0.546 -0.016 -2.939 1.135 -0.585 -0.490 -0.553 0.956 -1.012 -0.745 -0.072 0.968 0.151 -0.604 -2.564 1.044 -0.548 -0.208 -4.044 1.257 -0.617 -0.486 -1.219 1.140 -1.050 -0.564 -0.805 1.182 I-16 LUT 3 2 4 0 0.000 0.504 -0.958 -1.679 0.812 0.091 -0.503 -2.624 1.048 -0.369 -0.732 -1.452 1.175 -0.521 -0.938 -0.446 1.034 -0.150 -0.238 -2.226 1.026 -0.793 0.214 -3.364 1.115 -1.340 -0.092 -0.755 1.052 -1.447 -0.234 -0.411 1.022 0.389 -0.485 -1.692 0.737 -0.290 -0.067 -3.138 1.080 -0.371 -0.609 -0.850 1.012 -0.813 -0.842 -0.260 1.027 0.163 -0.527 -2.640 1.019 -0.663 -0.253 -3.150 1.273 -0.869 -0.457 -1.178 1.190 -1.010 -0.402 -1.015 1.171 I-15 LUT 3 2 4 0 0.000 0.391 -0.391 -2.322 0.787 -0.328 -0.093 -2.521 1.064 -0.297 -0.382 -1.619 1.066 -0.729 -0.661 -0.521 1.048 -0.355 -0.411 -2.162 1.165 -0.555 -0.084 -2.481 1.136 -1.000 -0.212 -1.000 1.095 -1.621 -0.108 -0.404 0.994 0.193 -0.056 -2.165 0.742 -0.610 -0.214 -3.121 1.244 -0.744 -0.203 -0.788 0.967 -1.043 -0.465 -0.205 0.943 0.092 -0.576 -3.113 1.102 -0.827 -0.144 -3.634 1.293 -0.617 -0.610 -1.584 1.238 -1.081 -0.440 -0.943 1.183 I-14 LUT 3 2 4 0 0.000 0.462 -0.690 -3.037 0.911 -0.406 -0.173 -3.099 1.164 -0.659 -0.100 -0.659 0.848 -0.710 -0.623 -0.493 1.021 -0.594 -0.328 -2.728 1.257 -0.956 0.108 -3.509 1.214 -1.508 -0.508 -2.186 1.446 -1.931 -0.113 -0.406 1.042 0.227 -0.293 -2.740 0.898 -0.471 -0.134 -2.719 1.147 -0.924 -0.296 -0.296 0.883 -1.475 -0.459 -0.224 1.040 0.004 -0.744 -3.725 1.217 -0.799 -0.252 -3.384 1.316 -0.957 -0.458 -1.148 1.205 -1.099 -0.433 -0.947 1.185 I-13 LUT 3 2 4 0 0.000 0.474 -0.570 -4.233 0.914 -0.346 -0.346 -3.136 1.210 -0.243 0.098 -1.342 0.757 -1.071 -0.856 -0.516 1.184 -0.371 -0.356 -4.573 1.265 -0.921 0.109 -3.388 1.200 -1.532 -0.092 -1.340 1.215 -1.794 -0.213 -0.545 1.113 -0.065 -0.328 -3.235 1.099 -0.773 -0.188 -3.550 1.293 -0.647 -0.690 -0.927 1.148 -1.405 -0.526 -0.300 1.081 -0.122 -0.658 -4.726 1.269 -1.241 -0.321 -4.308 1.447 -1.220 -0.581 -1.320 1.323 -1.438 -0.341 -1.151 1.258 I-12 LUT 3 2 4 0 0.000 0.255 -0.659 -5.644 1.107 -0.610 -0.724 -3.070 1.390 -0.273 -1.273 -1.858 1.312 -1.135 -0.877 -0.782 1.274 -0.205 -0.581 -5.062 1.283 -1.052 0.074 -3.503 1.249 -1.248 -0.511 -1.026 1.255 -2.229 -0.278 -0.757 1.245 0.343 -0.432 -4.095 0.950 -1.385 -0.135 -3.436 1.386 -0.700 -0.650 -1.508 1.260 -1.171 -0.645 -0.750 1.215 -0.325 -0.388 -4.692 1.262 -1.050 -0.266 -4.408 1.400 -1.216 -0.642 -1.567 1.374 -1.549 -0.377 -1.177 1.290 I-11 LUT 3 2 4 0 0.000 0.255 -0.614 -4.369 1.074 -0.783 -0.651 -3.162 1.417 -0.503 -0.503 -2.087 1.234 -1.337 -0.748 -1.095 1.345 -0.796 -0.555 -3.577 1.411 -0.996 -0.161 -2.911 1.305 -0.585 -1.170 -1.170 1.290 -2.386 -0.312 -0.950 1.313 -0.091 -0.396 -3.899 1.160 -1.006 -0.675 -4.375 1.499 -0.674 -0.366 -1.366 1.143 -1.554 -0.803 -0.623 1.285 -0.378 -0.566 -7.664 1.350 -1.177 -0.378 -4.015 1.447 -1.174 -0.700 -1.512 1.373 -1.546 -0.471 -1.152 1.314 I-10 LUT 3 2 4 0 0.000 0.211 -0.625 -6.647 1.127 -0.986 -0.426 -4.308 1.433 -1.170 -1.170 -2.170 1.531 -1.047 -0.761 -0.887 1.254 -0.557 -0.166 -5.488 1.267 -1.399 0.280 -4.373 1.238 -1.632 -0.632 -1.632 1.438 -2.143 -0.234 -0.826 1.238 -0.214 -0.214 -3.799 1.140 -1.033 -0.466 -3.203 1.422 -0.518 -0.518 -1.392 1.152 -1.644 -0.388 -0.716 1.206 -0.286 -0.628 -7.617 1.338 -1.414 -0.205 -3.914 1.428 -1.433 -0.844 -1.752 1.473 -1.496 -0.350 -1.197 1.278 I-9 LUT 3 2 4 0 0.000 0.082 -0.357 -6.547 1.104 -0.336 0.108 -3.682 1.037 -0.807 -0.807 0.193 0.778 -0.911 -0.348 -0.859 1.092 -0.160 -0.094 -5.160 1.098 -1.086 0.291 -3.653 1.155 -0.939 -0.524 -2.524 1.383 -2.056 -0.060 -0.555 1.083 0.193 -0.271 -5.129 1.000 -1.403 -0.192 -3.066 1.393 -1.041 -0.282 0.165 0.651 -1.244 -0.216 -0.536 1.019 -0.236 -0.465 -6.760 1.274 -1.032 -0.186 -3.900 1.359 -1.246 -0.607 -1.695 1.386 -1.130 -0.101 -0.906 1.055 I-8 LUT 3 2 4 0 0.000 0.104 -0.256 -5.596 1.048 -0.027 -0.063 -2.541 0.918 -0.585 0.415 0.415 -0.585 -0.844 -0.245 -0.801 1.018 -0.404 -0.018 -6.633 1.168 -0.775 0.384 -3.046 0.992 -1.273 -0.273 -0.688 1.096 -1.530 0.198 -0.786 0.946 0.188 -0.332 -4.238 1.010 -0.747 0.211 -3.292 1.101 -0.700 -0.700 -0.164 0.908 -1.223 -0.051 -0.643 0.975 -0.101 -0.516 -7.032 1.239 -1.078 -0.026 -3.797 1.306 -1.032 -0.486 -1.646 1.309 -1.203 0.021 -1.116 1.063 I-7 LUT 3 2 4 0 0.000 0.326 -0.616 -6.864 1.061 -0.311 -0.091 -3.030 1.093 -0.807 -0.807 0.193 0.778 -1.049 -0.286 -1.137 1.165 -0.213 -0.339 -5.369 1.216 -0.631 0.163 -3.254 1.091 -1.070 -0.807 -0.807 1.252 -1.513 0.169 -0.848 0.978 0.090 -0.206 -4.080 1.007 -0.600 0.173 -4.185 1.110 -0.418 -0.418 -0.954 0.991 -1.176 -0.055 -0.774 1.007 0.081 -0.554 -7.902 1.174 -0.730 0.113 -4.349 1.180 -0.739 -0.574 -1.303 1.216 -1.179 -0.006 -1.122 1.072 I-6 LUT 3 2 4 0 0.000 0.109 -0.881 -6.129 1.241 -0.345 0.011 -3.574 1.085 0.000 -1.000 -1.000 1.000 -1.821 -0.761 -1.363 1.453 -1.059 -0.222 -6.288 1.406 -1.036 0.367 -3.877 1.108 -0.301 -1.109 -0.524 1.021 -1.922 0.068 -1.664 1.246 -0.342 -0.565 -2.565 1.243 -1.298 0.226 -4.298 1.247 -1.653 -0.238 -1.779 1.347 -1.945 -0.407 -1.170 1.346 -0.390 -0.781 -5.536 1.397 -1.316 0.007 -5.091 1.358 -1.012 -0.830 -1.888 1.418 -1.442 -0.273 -1.699 1.320 I-5 LUT 3 2 4 0 0.000 0.542 -0.648 -3.798 0.875 -0.643 -0.216 -2.766 1.234 0.152 -0.170 -2.170 0.830 -2.267 -1.276 -2.324 1.669 -0.189 -0.118 -3.804 1.091 -0.784 0.351 -3.649 1.046 -1.907 -0.684 -0.684 1.316 -2.316 -0.530 -1.674 1.482 0.120 -0.130 -2.532 0.870 -1.007 0.215 -4.592 1.202 -0.208 0.044 -1.015 0.685 -2.284 -1.439 -1.936 1.662 0.321 -0.558 -3.981 1.006 -0.961 0.247 -4.253 1.168 -0.348 -0.509 -1.615 1.128 -1.618 -0.613 -1.890 1.460 I-4 LUT 3 2 4 0 0.000 1.228 -0.533 -3.118 -0.231 0.788 -0.362 -2.114 0.338 0.720 -2.087 0.613 -0.766 -0.015 -0.791 -0.149 0.614 0.960 -0.301 -3.564 0.212 0.682 -0.001 -2.861 0.332 -0.230 -1.346 0.317 0.593 -0.401 -0.218 0.060 0.423 1.090 -0.774 -0.610 -0.663 0.717 -0.179 -2.541 0.379 0.220 -0.719 0.504 -0.304 -0.484 -0.537 -0.082 0.723 1.237 -0.693 -3.948 -0.059 0.484 0.189 -2.841 0.403 0.467 -0.558 -0.090 -0.002 -0.423 -0.467 -0.447 0.846 I-3 LUT 3 2 4 0 0.000 -1.511 1.197 -8.003 0.436 -1.982 0.915 -5.304 0.876 -4.000 1.644 -4.000 -0.415 -1.775 0.651 -4.775 1.071 -1.464 1.280 -8.165 0.270 -1.841 0.817 -6.622 0.963 -2.511 1.000 -4.833 0.840 -1.869 0.789 -5.350 0.981 -1.980 1.350 -5.150 0.225 -2.492 1.073 -5.077 0.756 -1.315 1.313 -4.775 0.108 -2.413 0.675 -3.735 1.098 -0.901 1.118 -8.967 0.370 -2.060 0.858 -8.905 0.960 -1.943 1.166 -6.467 0.570 -1.681 0.943 -6.015 0.808 A LUT 3 2 4 0 0.000 1.991 -6.907 -6.907 -6.907 1.998 -9.317 -9.317 -9.317 0.678 -0.322 -0.322 -0.322 1.997 -8.475 -8.475 -8.475 1.978 -5.615 -5.615 -5.615 1.997 -8.488 -8.488 -8.488 1.000 -0.585 -0.585 -0.585 1.997 -8.569 -8.569 -8.569 1.974 -5.375 -5.375 -5.375 1.997 -8.486 -8.486 -8.486 1.485 -1.322 -1.322 -1.322 1.995 -7.830 -7.830 -7.830 1.990 -6.820 -6.820 -6.820 1.998 -9.448 -9.448 -9.448 1.853 -2.954 -2.954 -2.954 1.998 -9.426 -9.426 -9.426 G LUT 3 2 4 0 0.000 -8.324 -8.324 1.997 -8.324 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.002 -11.002 1.999 -11.002 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -3.322 -3.322 1.888 -3.322 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -10.687 -10.687 1.999 -10.687 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.138 -0.997 0.908 -0.936 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.173 -0.813 -0.556 0.699 0.222 -0.259 -2.199 0.832 0.193 -0.633 -0.600 0.635 -0.710 -0.706 0.279 0.644 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.737 -0.737 -1.121 0.349 0.586 -0.159 -2.060 0.447 0.349 -0.435 -0.466 0.337 -0.137 -0.554 0.144 0.383 0.552 -0.315 -1.080 0.330 0.388 -0.073 -1.522 0.478 0.087 -0.650 0.224 0.180 -0.425 -0.202 0.155 0.348 0.677 -0.779 -0.354 0.051 0.573 -0.317 -2.188 0.576 0.540 -0.466 -0.679 0.260 -0.112 -0.649 0.203 0.363 -0.278 0.226 -2.257 0.846 0.295 -0.101 -1.705 0.617 0.100 -0.239 0.141 -0.032 -0.500 -0.386 0.143 0.510 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.159 -0.602 0.249 0.051 0.536 -0.021 -2.038 0.402 0.494 -0.335 -0.285 -0.031 -0.338 -0.350 0.259 0.296 0.250 -0.858 0.527 -0.290 0.601 -0.230 -2.417 0.529 0.448 -0.385 -0.134 -0.061 -0.566 -0.363 0.379 0.317 0.627 -0.757 -0.133 -0.072 0.458 0.103 -2.304 0.433 0.734 -0.110 -0.590 -0.423 -0.230 -0.490 0.304 0.263 . 0.723 . 1.233 0.438 -0.079 -2.503 0.606 . -0.203 0.329 0.907 -0.161 -0.282 -0.330 0.574 0.385 -0.299 0.164 -0.394 0.579 -0.020 -1.311 0.159 0.240 0.122 -0.641 0.123 -0.890 0.095 0.268 0.249 -0.159 -0.474 0.678 -0.350 0.582 -0.204 -1.745 0.419 0.255 -0.003 0.126 -0.479 -0.903 -0.097 0.625 -0.017 -0.062 -0.316 0.409 -0.134 0.091 0.436 -1.028 0.126 -0.023 0.396 -0.088 -0.397 -1.028 -0.059 0.800 -0.306 . 0.965 . 1.034 0.145 0.232 -1.399 0.422 . 0.193 0.545 0.483 -0.618 0.249 -0.072 0.274 0.498 -0.867 0.439 -0.548 0.435 0.143 -1.309 0.189 0.446 -0.118 -0.226 -0.216 -0.663 -0.088 0.450 0.086 -0.052 -0.709 0.789 -0.522 0.457 0.025 -1.513 0.334 0.078 0.112 0.148 -0.405 -0.937 -0.282 0.793 -0.117 0.413 -0.643 0.347 -0.404 0.222 0.248 -1.555 0.385 0.320 0.145 -0.298 -0.264 -0.871 -0.290 0.597 0.166 . 0.823 . 1.157 0.319 0.046 -1.835 0.525 . 0.097 0.536 0.566 -0.590 -0.060 -0.202 0.592 0.563 -0.581 -0.113 -0.105 0.569 -0.115 -1.922 0.410 0.333 -0.099 -0.687 0.245 -0.563 -0.226 -0.039 0.580 0.023 -0.648 0.567 -0.212 0.575 -0.361 -2.473 0.633 0.320 -0.381 -0.014 -0.010 -0.859 -0.132 0.322 0.363 0.559 -0.466 -0.221 -0.081 0.360 0.105 -2.465 0.546 0.558 -0.118 -0.369 -0.265 -0.473 -0.365 0.454 0.180 . 0.647 . 1.283 0.212 0.039 -2.462 0.707 . -0.008 0.462 0.703 -0.407 -0.231 0.028 0.458 0.312 -0.742 0.193 0.025 0.734 -0.232 -1.920 0.289 0.406 -0.302 -0.495 0.207 -0.434 -0.591 0.382 0.370 -0.005 -0.735 0.687 -0.334 0.617 -0.439 -1.902 0.547 0.304 -0.474 0.247 -0.220 -0.639 -0.445 0.616 0.126 0.467 -0.668 0.006 -0.023 0.391 0.097 -2.115 0.474 0.742 -0.194 -0.429 -0.494 -0.365 -0.581 0.473 0.222 . 0.691 . 1.255 0.460 -0.078 -2.233 0.551 . -0.021 0.699 0.476 -0.370 -0.356 -0.289 0.702 0.435 -0.472 0.285 -0.497 0.429 0.266 -1.325 0.073 0.002 0.239 -0.440 0.113 -1.144 0.233 0.321 0.168 -0.399 -0.588 0.924 -0.557 0.662 -0.665 -1.007 0.367 0.158 -0.128 0.378 -0.578 -1.205 -0.141 0.813 -0.148 -0.085 -0.197 0.551 -0.474 -0.109 0.559 -0.503 -0.163 -0.029 0.321 0.112 -0.536 -1.273 -0.041 0.947 -0.543 . 0.973 . 1.027 0.288 0.166 -1.449 0.368 . 0.270 0.559 0.402 -0.715 0.172 -0.032 0.363 0.336 -0.848 0.550 -0.477 0.539 0.044 -1.093 0.066 0.118 0.126 -0.225 -0.048 -0.612 -0.340 0.422 0.282 -0.777 -0.436 1.051 -0.725 0.169 0.068 -0.474 0.148 -0.614 0.423 0.678 -1.302 -1.338 -0.124 1.084 -0.818 0.079 -0.250 0.391 -0.337 -0.356 0.476 -0.101 -0.159 0.117 0.313 0.045 -0.640 -1.281 -0.175 0.954 -0.386 . 0.936 . 1.061 0.199 0.265 -0.858 0.136 . 0.144 0.646 0.412 -0.793 -0.102 -0.109 0.645 0.525 -0.614 0.010 -0.150 0.643 -0.153 -2.075 0.380 0.241 -0.103 -0.559 0.273 -0.498 -0.345 0.121 0.503 -0.199 -0.623 0.683 -0.195 0.584 -0.485 -1.972 0.615 0.364 -0.500 0.186 -0.204 -0.894 -0.376 0.672 0.135 0.440 -0.578 -0.013 -0.026 0.317 0.085 -2.244 0.568 0.635 -0.272 -0.302 -0.308 -0.661 -0.373 0.592 0.122 . 0.904 . 1.090 0.395 -0.029 -2.259 0.582 . 0.038 0.455 0.681 -0.366 -0.154 0.180 0.254 0.436 -0.552 0.012 -0.064 0.705 -0.205 -2.008 0.327 0.593 -0.306 -0.513 -0.025 -0.424 -0.315 0.237 0.347 0.035 -0.688 0.473 -0.049 0.698 -0.166 -2.226 0.348 0.211 -0.251 0.092 -0.095 -0.657 -0.241 0.412 0.250 0.481 -0.571 -0.031 -0.071 0.516 0.077 -2.180 0.373 0.713 -0.082 -0.523 -0.472 -0.307 -0.343 0.339 0.188 . 0.875 . 1.115 0.431 -0.138 -2.100 0.595 . 0.075 0.557 0.561 -0.397 -0.317 -0.468 0.778 0.405 -0.422 0.237 -0.414 0.385 0.287 -1.551 0.180 -0.158 0.393 -0.644 0.203 -1.070 0.286 0.237 0.171 -0.407 -0.313 0.661 -0.217 0.373 0.080 -1.438 0.355 -0.037 0.236 0.185 -0.493 -1.265 -0.051 0.622 0.110 -0.379 -0.064 0.523 -0.257 -0.724 0.790 -0.724 0.085 -0.437 0.795 -0.177 -0.640 -1.381 0.076 0.816 -0.320 . 0.995 . 1.005 0.128 0.341 -1.586 0.387 . 0.405 0.414 0.425 -0.795 0.364 -0.214 0.350 0.498 -0.746 0.344 -0.470 0.453 0.020 -1.579 0.359 0.357 -0.010 -0.239 -0.186 -0.598 -0.130 0.341 0.213 -0.142 -0.633 0.737 -0.353 0.318 0.042 -1.370 0.419 0.012 0.125 0.254 -0.496 -0.941 -0.162 0.667 -0.003 0.266 -0.335 0.085 -0.083 0.207 0.244 -1.362 0.348 0.443 0.364 -0.900 -0.291 -0.635 -0.068 0.460 0.038 . 0.947 . 1.051 0.238 0.079 -1.720 0.546 . 0.013 0.723 0.422 -0.606 -0.089 -0.323 0.681 0.573 -0.444 -0.263 -0.082 0.489 0.108 -2.440 0.417 0.241 -0.030 -0.759 0.320 -0.527 -0.045 -0.071 0.469 -0.198 -0.452 0.544 -0.091 0.511 -0.244 -2.412 0.625 0.177 -0.147 -0.281 0.193 -0.829 -0.161 0.393 0.298 0.409 -0.366 -0.188 0.027 0.162 0.228 -2.218 0.580 0.442 -0.081 -0.297 -0.181 -0.488 -0.327 0.436 0.185 . 0.951 . 1.047 0.242 0.056 -2.522 0.682 . -0.080 0.453 0.753 -0.320 -0.124 -0.017 0.371 0.435 -0.848 0.149 -0.024 0.619 -0.167 -2.046 0.412 0.515 -0.390 -0.398 0.069 -0.281 -0.654 0.285 0.404 0.053 -1.169 0.715 -0.190 0.593 -0.379 -2.122 0.578 0.480 -0.398 0.017 -0.261 -0.426 -0.522 0.466 0.236 0.690 -0.839 -0.234 -0.034 0.619 -0.135 -2.335 0.439 0.761 -0.300 -0.620 -0.247 -0.091 -0.675 0.382 0.178 . 0.414 . 1.416 0.417 -0.139 -2.648 0.676 . -0.106 0.511 0.718 -0.475 -0.499 -0.231 0.783 0.188 -0.206 0.164 -0.195 0.293 0.309 -1.543 0.254 0.002 0.313 -0.785 0.234 -1.071 0.253 0.131 0.307 -0.352 -0.416 0.750 -0.349 0.496 -0.161 -1.682 0.468 0.297 -0.033 0.042 -0.388 -1.043 -0.063 0.670 -0.050 -0.122 -0.150 0.186 0.060 -0.246 0.596 -1.267 0.299 -0.120 0.403 0.065 -0.491 -0.971 -0.007 0.707 -0.214 . 0.936 . 1.061 0.031 0.283 -2.087 0.610 . 0.374 0.359 0.507 -0.730 0.421 -0.281 0.304 0.339 -0.799 0.457 -0.343 0.419 0.100 -1.813 0.386 0.346 -0.134 -0.145 -0.130 -0.862 -0.225 0.477 0.266 -0.214 -0.724 0.876 -0.520 0.374 0.026 -1.815 0.486 -0.126 0.088 0.367 -0.452 -0.979 -0.412 0.868 -0.127 0.332 -0.564 0.107 -0.018 0.309 0.172 -1.710 0.410 0.448 0.126 -0.447 -0.302 -0.674 -0.379 0.667 0.025 . 0.786 . 1.187 0.179 0.133 -2.160 0.630 . 0.163 0.497 0.555 -0.621 -0.201 -0.026 0.583 0.502 -0.724 -0.040 0.008 0.457 -0.025 -2.262 0.522 0.363 -0.235 -0.766 0.353 -0.645 -0.295 0.008 0.623 -0.026 -0.831 0.569 -0.040 0.544 -0.413 -2.556 0.696 0.605 -0.534 -0.141 -0.183 -0.783 -0.255 0.392 0.344 0.462 -0.541 -0.356 0.206 0.321 0.025 -2.714 0.661 0.697 -0.340 -0.607 -0.101 -0.405 -0.459 0.425 0.232 . 0.556 . 1.339 0.207 -0.052 -2.937 0.808 . 0.037 0.458 0.679 -0.211 -0.161 0.102 0.225 frame2 LUT 5 4 4 0 0.000 0.085 -0.241 0.457 -0.472 0.782 0.002 -1.621 -0.068 0.582 -0.249 0.121 -0.799 -0.023 -0.414 0.725 -0.709 0.201 -0.407 0.527 -0.609 0.950 -0.242 -1.813 -0.092 0.038 -0.272 0.331 -0.173 -0.369 -0.063 0.637 -0.488 0.588 -0.620 0.389 -0.900 0.868 0.026 -1.666 -0.248 0.697 -0.032 -0.117 -1.063 -0.130 -0.377 0.709 -0.554 0.385 -0.499 0.310 -0.421 0.770 0.108 -1.421 -0.246 0.429 -0.448 0.388 -0.709 -0.121 0.026 0.514 -0.659 0.326 -0.335 0.601 -1.195 0.815 0.026 -1.519 -0.196 0.490 0.049 -0.348 -0.366 -0.383 0.025 0.482 -0.288 0.132 -0.217 0.496 -0.658 0.846 -0.110 -1.360 -0.175 0.010 -0.080 0.182 -0.132 -0.663 0.057 0.618 -0.334 0.397 -0.577 0.485 -0.704 0.277 0.265 -2.150 0.445 0.426 0.005 -0.022 -0.582 -0.359 -0.083 0.536 -0.276 0.408 -0.260 0.408 -0.967 0.621 -0.018 -1.985 0.288 0.415 -0.287 0.336 -0.774 -0.288 0.164 0.328 -0.312 0.388 -0.682 0.593 -0.837 0.705 -0.041 -1.460 0.049 0.551 -0.296 0.145 -0.702 -0.273 -0.671 0.940 -0.675 0.128 -0.597 0.723 -0.748 0.811 -0.065 -1.425 -0.125 0.022 -0.265 0.382 -0.235 -0.413 -0.290 0.799 -0.533 0.432 -0.544 0.487 -0.829 0.534 -0.015 -1.177 0.164 0.499 -0.371 0.298 -0.775 -0.786 -0.339 0.815 -0.200 0.227 -0.465 0.432 -0.402 0.756 0.066 -1.633 -0.086 0.350 -0.558 0.542 -0.759 -0.311 0.031 0.460 -0.330 . . . . 0.771 0.016 -1.281 -0.200 . . . . -0.040 -0.559 0.662 -0.385 0.168 -0.528 0.586 -0.553 0.816 -0.107 -1.749 0.019 -0.072 -0.384 0.522 -0.242 -0.340 -0.166 0.660 -0.437 . . . . 0.728 0.131 -1.691 -0.089 0.523 -0.302 0.198 -0.728 -0.201 -0.668 0.936 -0.767 0.383 -0.282 0.306 -0.651 0.663 0.223 -2.099 0.022 0.243 -0.211 0.442 -0.750 -0.208 -0.438 0.692 -0.359 0.126 -0.342 0.550 -0.609 0.764 -0.094 -1.049 -0.182 0.437 -0.215 0.068 -0.441 -0.216 -0.569 0.906 -0.759 -0.098 -0.444 0.798 -0.757 0.822 -0.351 -0.938 -0.111 -0.497 -0.164 0.656 -0.280 -0.672 -0.205 0.846 -0.498 0.295 -0.523 0.591 -0.808 0.744 -0.049 -0.983 -0.229 0.612 -0.241 0.133 -0.919 -0.388 -0.534 0.925 -0.630 0.190 -0.573 0.488 -0.351 0.676 -0.035 -0.943 -0.142 0.251 -0.372 0.416 -0.507 -0.504 -0.146 0.755 -0.507 0.290 -0.483 0.758 -1.432 0.605 0.046 -0.673 -0.287 0.289 -0.002 0.031 -0.399 -0.424 -0.153 0.760 -0.595 -0.105 -0.367 0.816 -0.904 0.968 -0.699 -0.773 -0.247 -0.198 -0.009 0.552 -0.582 -0.733 -0.007 0.759 -0.492 0.304 -0.798 0.702 -0.830 0.299 0.257 -0.875 0.041 0.240 0.065 0.399 -1.139 -0.527 -0.180 0.620 -0.174 0.345 -0.093 0.435 -1.184 0.766 -0.106 -1.370 -0.024 0.067 -0.152 0.558 -0.786 -0.413 0.198 0.430 -0.406 0.028 -0.518 0.753 -0.745 0.448 -0.074 -0.348 -0.152 0.169 -0.040 0.353 -0.675 -0.753 -0.590 1.087 -0.696 -0.363 -0.314 0.919 -0.923 0.404 -0.127 -0.251 -0.119 -1.039 0.257 0.804 -0.805 -0.847 -0.127 0.947 -0.736 0.209 -0.541 0.782 -1.194 0.262 -0.264 -0.041 -0.007 0.137 -0.169 0.629 -1.105 -0.913 -0.251 0.955 -0.534 -0.008 -0.312 0.557 -0.457 0.632 0.095 -1.277 -0.044 -0.080 -0.354 0.689 -0.602 -0.304 0.013 0.451 -0.297 . . . . 0.712 0.031 -1.133 -0.178 . . . . -0.262 -0.566 0.932 -0.777 -0.105 -0.474 0.819 -0.772 0.689 -0.189 -1.279 0.135 -0.591 -0.068 0.847 -0.776 -0.571 -0.137 0.761 -0.470 . . . . 0.594 0.223 -1.510 -0.041 0.407 -0.498 0.413 -0.656 -0.262 -0.687 0.959 -0.736 0.301 -0.184 0.306 -0.619 0.699 0.001 -1.360 -0.020 0.103 -0.459 0.697 -0.791 -0.209 -0.600 0.881 -0.658 0.365 -0.300 0.400 -0.785 0.697 -0.060 -1.172 -0.035 0.558 -0.160 -0.001 -0.659 -0.237 -0.387 0.770 -0.553 0.064 -0.412 0.619 -0.585 0.770 -0.023 -1.392 -0.106 -0.158 -0.040 0.478 -0.437 -0.646 -0.009 0.673 -0.372 0.505 -0.376 0.347 -0.892 0.664 0.082 -1.162 -0.136 0.674 0.012 -0.248 -0.852 -0.264 -0.407 0.745 -0.440 0.294 -0.696 0.388 -0.238 0.599 0.144 -1.173 -0.094 0.302 -0.326 0.401 -0.624 -0.555 -0.023 0.674 -0.435 0.277 -0.334 0.666 -1.295 0.684 0.013 -1.020 -0.166 0.282 0.241 -0.212 -0.436 -0.373 0.055 0.480 -0.331 0.026 -0.298 0.513 -0.432 0.618 -0.015 -1.026 -0.022 -0.433 0.360 0.416 -0.640 -0.731 0.086 0.568 -0.228 0.108 -0.268 0.489 -0.538 0.282 0.170 -1.156 0.275 0.126 0.369 0.191 -1.071 -0.686 0.088 0.472 -0.108 0.330 0.116 0.226 -1.029 0.516 0.067 -1.624 0.260 0.089 0.060 0.363 -0.719 -0.509 0.310 0.243 -0.194 0.320 -0.528 0.579 -0.825 0.656 0.048 -1.111 -0.108 0.415 -0.023 0.151 -0.807 -0.319 -0.503 0.849 -0.534 0.124 -0.713 0.760 -0.722 0.695 -0.125 -0.821 -0.155 -0.471 -0.039 0.796 -0.813 -0.677 -0.210 0.805 -0.390 0.348 -0.435 0.538 -0.901 0.463 0.047 -0.962 0.104 0.670 0.075 -0.171 -1.098 -0.442 -0.067 0.677 -0.494 0.026 -0.255 0.590 -0.646 0.682 0.169 -1.635 -0.076 0.107 -0.293 0.536 -0.606 -0.425 0.091 0.459 -0.296 . . . . 0.652 0.158 -1.314 -0.135 . . . . -0.249 -0.432 0.722 -0.381 0.072 -0.532 0.628 -0.490 0.606 0.036 -1.321 0.074 -0.388 -0.249 0.667 -0.311 -0.715 0.040 0.635 -0.305 . . . . 0.589 0.187 -1.390 -0.035 0.410 -0.084 0.047 -0.525 -0.277 -0.467 0.856 -0.640 0.334 -0.015 0.147 -0.638 0.539 0.241 -1.659 0.068 0.048 -0.144 0.562 -0.775 -0.382 -0.404 0.756 -0.344 0.393 -0.555 0.465 -0.675 0.704 0.073 -1.611 -0.012 0.695 -0.296 0.013 -0.843 -0.129 -0.414 0.687 -0.464 0.212 -0.584 0.626 -0.664 0.806 -0.125 -1.768 0.058 -0.143 -0.468 0.427 0.038 -0.431 -0.153 0.634 -0.310 0.557 -0.510 0.394 -0.965 0.818 0.133 -1.932 -0.187 0.713 -0.050 -0.326 -0.745 -0.093 -0.371 0.654 -0.482 0.386 -0.614 0.282 -0.279 0.784 0.079 -1.610 -0.161 0.326 -0.483 0.407 -0.505 -0.316 -0.059 0.543 -0.358 0.249 -0.416 0.765 -1.463 0.750 0.030 -1.440 -0.107 0.449 -0.007 -0.174 -0.409 -0.087 -0.125 0.446 -0.359 0.050 -0.355 0.648 -0.699 0.872 -0.117 -1.366 -0.219 -0.184 -0.219 0.498 -0.237 -0.566 0.008 0.648 -0.411 0.382 -0.567 0.486 -0.688 0.316 0.199 -1.828 0.406 0.504 -0.347 0.218 -0.662 -0.539 0.019 0.472 -0.133 0.445 -0.145 0.366 -1.167 0.593 0.050 -1.818 0.230 0.254 -0.198 0.375 -0.647 -0.296 0.316 0.264 -0.435 0.332 -0.750 0.642 -0.771 0.676 0.031 -1.447 0.019 0.500 -0.256 0.174 -0.690 -0.329 -0.608 0.950 -0.698 0.133 -0.591 0.738 -0.808 0.816 -0.150 -1.602 0.014 -0.153 -0.239 0.560 -0.360 -0.447 -0.382 0.831 -0.474 0.404 -0.651 0.547 -0.788 0.668 -0.127 -1.561 0.210 0.685 -0.347 0.156 -1.026 -0.476 -0.471 0.868 -0.446 0.293 -0.392 0.409 -0.547 0.787 -0.008 -1.894 0.016 0.238 -0.614 0.601 -0.620 -0.329 -0.055 0.529 -0.325 . . . . 0.651 0.006 -1.340 0.043 . . . . -0.103 -0.479 0.703 -0.467 0.126 -0.530 0.649 -0.625 0.725 -0.140 -1.888 0.226 -0.224 -0.503 0.771 -0.450 -0.392 -0.166 0.650 -0.363 . . . . 0.538 0.310 -2.157 0.118 0.525 -0.497 0.253 -0.597 0.017 -0.414 0.638 -0.554 0.315 -0.300 0.284 -0.461 0.622 0.178 -2.127 0.138 0.148 -0.284 0.618 -0.899 -0.156 -0.237 0.792 -0.935 frame2 LUT 5 4 4 0 0.000 0.497 -0.417 -0.398 0.112 0.418 -0.024 -1.355 0.366 0.805 -0.237 -0.561 -0.462 -0.330 0.007 -0.326 0.488 0.480 -0.585 -0.239 0.127 0.409 -0.089 -1.216 0.380 0.524 -0.443 -0.359 0.065 -0.512 -0.195 -0.100 0.577 0.952 -0.795 -0.510 -0.346 0.458 -0.017 -1.171 0.255 1.039 -0.268 -0.877 -0.813 -0.462 0.127 -0.413 0.517 0.648 -0.561 -0.736 0.207 0.367 0.180 -1.414 0.267 0.617 -0.389 -0.145 -0.325 -0.549 0.236 -1.075 0.735 0.580 -0.332 -0.331 -0.127 0.387 0.243 -1.700 0.264 0.749 -0.197 -0.631 -0.318 -0.625 0.324 -0.773 0.599 0.452 -0.380 -0.304 0.074 0.335 -0.166 -1.038 0.443 0.435 -0.405 -0.411 0.190 -0.554 -0.033 -0.176 0.543 0.490 -0.300 -0.187 -0.145 0.041 0.273 -1.288 0.436 0.635 -0.351 -0.237 -0.296 -0.774 0.141 -0.285 0.578 0.395 -0.103 -0.605 0.132 0.372 0.172 -1.349 0.247 0.366 -0.329 -0.105 -0.021 -0.823 0.301 -0.736 0.680 0.636 -0.662 -0.148 -0.134 0.493 -0.057 -1.133 0.233 0.756 -0.347 -0.401 -0.382 -0.475 0.006 -0.464 0.634 0.361 -0.420 0.111 -0.172 0.375 -0.018 -0.853 0.216 0.472 -0.306 -0.116 -0.183 -0.728 0.234 -0.223 0.447 0.869 -0.784 -0.428 -0.234 0.393 -0.117 -1.018 0.346 0.874 -0.195 -0.654 -0.604 -0.959 0.155 -0.353 0.668 0.605 -0.399 -0.333 -0.110 0.450 -0.039 -0.980 0.206 0.639 -0.485 -0.002 -0.454 -0.725 0.392 -1.018 0.668 0.777 -0.600 -0.544 -0.088 0.600 0.146 -1.688 0.095 0.917 -0.203 -0.861 -0.532 -0.691 -0.061 -0.384 0.727 0.435 -0.371 -0.391 0.153 0.487 -0.259 -0.872 0.282 0.566 -0.284 -0.523 0.004 -0.368 -0.069 -0.163 0.463 0.708 -0.581 -0.450 -0.051 0.325 -0.005 -1.457 0.472 0.784 -0.224 -0.648 -0.353 -0.574 0.008 -0.362 0.628 0.661 -0.349 -0.786 0.076 0.526 -0.019 -1.272 0.213 0.574 -0.256 -0.291 -0.223 -0.633 0.230 -0.847 0.702 0.542 -0.604 -0.086 -0.082 0.744 -0.370 -1.724 0.320 0.780 -0.334 -0.540 -0.319 -0.228 -0.162 -0.288 0.519 0.233 -0.230 -0.085 0.041 0.425 -0.267 -0.953 0.389 0.401 -0.513 -0.132 0.092 -0.641 -0.234 0.076 0.541 0.660 -0.700 -0.188 -0.110 0.514 -0.227 -1.273 0.382 0.861 -0.099 -0.783 -0.581 -0.663 -0.060 -0.164 0.601 0.469 -0.332 -0.588 0.209 0.545 -0.077 -1.341 0.261 0.530 -0.402 -0.138 -0.166 -0.553 0.171 -0.894 0.726 0.681 -0.367 -0.251 -0.357 0.143 0.672 -1.477 -0.085 0.797 -0.363 -0.530 -0.335 -0.677 0.401 -0.886 0.598 0.520 -0.403 -0.145 -0.144 0.423 0.088 -0.927 0.098 0.470 -0.085 -0.177 -0.343 -0.376 0.001 -0.328 0.518 0.572 -0.620 0.038 -0.259 -0.224 0.741 -1.354 0.113 0.594 -0.137 -0.267 -0.416 -0.656 0.408 -0.331 0.315 0.575 -0.040 -0.868 -0.016 0.252 0.543 -1.313 -0.074 0.519 -0.332 -0.218 -0.131 -0.695 0.407 -0.870 0.594 0.438 -0.680 -0.017 0.047 0.449 -0.253 -1.240 0.457 0.596 -0.411 -0.219 -0.188 -0.578 0.041 -0.270 0.557 0.226 -0.610 0.026 0.210 0.281 -0.538 -0.487 0.468 0.269 0.045 -0.023 -0.359 -0.277 -0.353 0.040 0.447 0.699 -0.775 -0.179 -0.138 0.367 -0.322 -0.618 0.332 0.801 -0.190 -0.459 -0.613 -0.800 0.187 -0.199 0.502 0.402 -0.295 -0.286 0.061 0.288 -0.299 -0.653 0.411 0.368 -0.296 -0.143 -0.016 -0.544 0.246 -0.900 0.671 0.733 -0.604 -0.314 -0.191 0.763 -0.345 -1.334 0.163 0.907 -0.351 -0.564 -0.589 -0.588 0.170 -0.472 0.574 0.295 -0.309 -0.217 0.145 0.336 -0.483 -0.837 0.549 0.188 -0.169 -0.144 0.092 -0.467 0.054 -0.371 0.551 0.755 -0.514 -0.244 -0.380 0.366 -0.237 -1.233 0.524 0.720 -0.146 -0.556 -0.380 -0.705 0.189 -0.141 0.422 0.437 -0.277 -0.627 0.230 0.489 -0.170 -0.933 0.243 0.406 -0.259 -0.016 -0.234 -0.742 0.326 -0.614 0.580 0.733 -0.722 -0.455 0.003 0.526 -0.436 -1.207 0.473 0.998 -0.465 -0.681 -0.610 -0.412 -0.281 -0.146 0.606 0.383 -0.626 -0.078 0.139 0.301 -0.150 -1.174 0.509 0.707 -0.578 -0.246 -0.226 -0.630 -0.213 -0.217 0.706 0.885 -0.791 -0.434 -0.261 0.386 -0.280 -1.123 0.496 1.088 -0.410 -1.034 -0.660 -0.547 -0.085 -0.223 0.600 0.569 -0.594 -0.871 0.387 0.262 0.213 -1.234 0.283 0.795 -0.545 -0.378 -0.303 -0.543 0.181 -1.111 0.780 0.703 -0.428 -0.458 -0.152 0.488 0.020 -1.424 0.276 0.645 0.082 -0.681 -0.409 -0.682 0.387 -0.972 0.641 0.456 -0.461 -0.330 0.145 0.447 -0.379 -0.874 0.404 0.290 0.134 -0.427 -0.095 -0.802 -0.094 -0.313 0.752 0.468 -0.422 -0.285 0.070 -0.169 -0.012 -0.934 0.674 0.193 0.422 -0.344 -0.456 -0.881 0.280 -0.354 0.546 0.384 -0.029 -0.810 0.194 0.341 -0.052 -1.154 0.400 0.251 0.114 -0.409 -0.036 -0.856 0.160 -0.830 0.822 0.658 -0.661 -0.302 -0.030 0.494 -0.131 -1.033 0.251 0.733 -0.350 -0.159 -0.605 -0.655 -0.009 -0.717 0.817 0.426 -0.474 -0.169 0.066 0.397 -0.314 -0.848 0.404 0.235 -0.320 0.260 -0.278 -0.388 -0.095 -0.144 0.480 0.864 -0.499 -0.532 -0.357 0.333 0.098 -1.221 0.311 0.764 -0.188 -0.545 -0.437 -0.667 0.289 -0.765 0.642 0.293 -0.182 -0.584 0.295 0.274 0.086 -0.896 0.253 0.336 -0.423 0.082 -0.099 -0.408 0.109 -0.817 0.678 0.802 -0.377 -0.950 -0.045 0.630 0.072 -1.372 0.021 0.883 -0.155 -0.973 -0.418 -0.507 0.029 -0.686 0.726 0.231 -0.178 -0.454 0.277 0.355 -0.207 -1.145 0.487 0.167 -0.300 -0.250 0.291 -0.686 -0.034 -0.255 0.645 0.751 -0.353 -0.837 -0.038 0.259 -0.062 -1.241 0.508 0.763 -0.229 -0.810 -0.185 -0.818 0.204 -0.311 0.560 0.480 -0.169 -0.911 0.244 0.373 0.070 -1.221 0.294 0.400 -0.286 -0.058 -0.153 -0.597 0.159 -0.609 0.648 . . . . . . . . . . . . . . . . 0.432 -0.589 -0.066 0.044 0.431 -0.285 -0.923 0.383 0.493 -0.589 -0.274 0.139 -0.491 -0.441 -0.045 0.662 . . . . . . . . . . . . . . . . 0.651 -0.401 -0.623 0.034 0.526 -0.034 -1.258 0.221 0.780 -0.567 -0.279 -0.352 -0.386 0.007 -0.930 0.770 0.690 -0.382 -0.076 -0.575 0.469 0.171 -1.704 0.242 0.770 -0.178 -0.621 -0.395 -0.869 0.592 -1.023 0.539 0.379 -0.565 0.038 -0.004 0.452 -0.132 -0.889 0.239 0.385 -0.611 -0.023 0.077 -0.761 0.190 -0.232 0.504 0.505 -0.615 0.128 -0.260 0.050 0.200 -1.073 0.423 0.537 -0.094 -0.162 -0.478 -0.547 0.554 -0.618 0.258 0.486 -0.040 -0.567 -0.071 0.288 0.206 -1.174 0.241 0.461 -0.195 -0.222 -0.164 -0.988 0.677 -0.999 0.483 . . . . . . . . . . . . . . . . 0.393 -0.593 0.080 -0.049 0.376 -0.337 -0.845 0.437 0.467 -0.527 0.114 -0.250 -0.733 -0.133 0.177 0.440 0.625 -0.546 -0.250 -0.102 0.407 -0.462 -1.218 0.602 0.728 -0.359 -0.375 -0.334 -0.468 -0.016 -0.214 0.512 0.691 -0.454 -0.439 -0.124 0.512 0.083 -1.189 0.105 0.504 -0.549 0.158 -0.354 -0.721 0.277 -0.752 0.667 0.774 -0.601 -0.415 -0.183 0.554 -0.013 -1.380 0.209 0.868 -0.234 -0.686 -0.509 -0.535 0.159 -0.651 0.638 0.331 -0.466 -0.088 0.108 0.460 -0.497 -0.955 0.485 0.494 -0.396 -0.273 0.005 -0.589 -0.119 -0.185 0.618 0.825 -0.615 -0.503 -0.202 0.345 0.098 -1.720 0.439 0.766 -0.143 -0.618 -0.430 -0.696 0.330 -0.610 0.556 0.593 -0.340 -0.687 0.112 0.395 -0.022 -1.412 0.405 0.649 -0.392 -0.260 -0.261 -0.551 0.349 -0.725 0.525 Donor SDT 2 0 4 2 0.000 GT SAM 9 3 4 9 0.000 E-3 LUT 3 2 4 0 0.000 0.843 -0.039 -0.420 -1.042 0.813 0.449 -2.004 -0.668 0.756 0.498 -0.898 -1.464 0.095 0.482 -0.023 -0.860 0.512 0.081 0.029 -1.013 0.790 0.254 -1.565 -0.434 0.813 0.368 -0.862 -1.314 -0.372 0.604 0.089 -0.635 0.738 -0.126 -0.253 -0.794 0.904 0.270 -2.172 -0.511 1.030 0.445 -1.053 -3.124 -0.081 0.428 -0.053 -0.424 0.583 0.431 -0.969 -0.637 0.816 0.461 -2.124 -0.660 0.553 0.382 -0.190 -1.502 0.048 0.556 -0.354 -0.487 E-2 LUT 3 2 4 0 0.000 1.483 -1.783 -1.605 -0.774 1.661 -2.006 -2.805 -1.168 1.509 -1.334 -1.770 -1.106 0.555 -0.619 -0.093 -0.085 1.403 -1.595 -0.849 -1.092 1.545 -1.793 -2.202 -0.793 1.459 -1.348 -1.284 -1.163 0.263 -0.754 0.105 0.178 1.491 -1.886 -1.415 -0.878 1.622 -2.025 -2.690 -0.939 1.531 -1.162 -1.627 -1.560 0.374 -0.921 0.224 0.011 1.376 -1.039 -2.199 -0.514 1.633 -1.777 -3.240 -0.998 1.335 -1.611 -1.092 -0.553 0.392 -0.388 -0.306 0.157 E-1 LUT 3 2 4 0 0.000 -1.203 -4.319 1.730 -2.326 0.519 -2.313 0.519 -0.099 -0.159 -2.263 1.261 -1.000 -2.192 -3.046 1.737 -1.617 -1.524 -4.348 1.798 -3.003 0.415 -2.026 0.402 0.137 -0.892 -3.007 1.567 -1.423 -1.971 -3.159 1.705 -1.422 -1.174 -3.718 1.701 -2.120 0.442 -2.728 0.692 -0.192 -0.896 -2.524 1.564 -1.591 -1.940 -3.464 1.666 -1.071 -0.809 -2.730 1.550 -1.515 0.206 -2.115 0.601 0.136 -1.135 -2.543 1.541 -1.112 -2.602 -3.017 1.734 -1.380 G LUT 3 2 4 0 0.000 -8.112 -8.112 1.996 -8.112 -5.358 -5.358 1.973 -5.358 -11.124 -11.124 2.000 -11.124 -6.974 -6.974 1.991 -6.974 -6.928 -6.928 1.991 -6.928 -4.267 -4.267 1.943 -4.267 -7.066 -7.066 1.992 -7.066 -6.524 -6.524 1.988 -6.524 -5.966 -5.966 1.983 -5.966 -4.129 -4.129 1.937 -4.129 -8.057 -8.057 1.996 -8.057 -5.435 -5.435 1.975 -5.435 -5.077 -5.077 1.968 -5.077 -4.129 -4.129 1.937 -4.129 -8.969 -8.969 1.998 -8.969 -5.833 -5.833 1.981 -5.833 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.942 -8.942 -8.942 1.998 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.527 -6.527 -6.527 1.988 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -11.612 -11.612 -11.612 2.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.299 -8.299 -8.299 1.997 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.590 -4.015 -0.323 -2.959 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.471 -1.897 -1.651 -0.642 1.577 -2.518 -2.807 -0.518 1.809 -2.981 -2.138 -2.808 0.619 -1.896 -0.106 0.341 I+3 LUT 3 2 4 0 0.000 -0.958 -2.292 1.520 -1.277 0.221 -0.946 0.033 0.370 -1.304 -2.246 1.605 -1.544 -1.386 -1.533 1.417 -0.731 -3.577 -4.577 1.922 -3.577 -0.222 -1.807 0.515 0.515 -0.585 -1.585 1.415 -1.585 -2.555 -1.970 1.767 -2.555 -3.106 -3.849 1.885 -3.055 -0.907 -3.714 1.456 -0.627 -2.539 -3.954 1.887 -3.954 -3.883 -3.883 1.886 -2.561 -1.858 -3.665 1.827 -3.343 -0.663 -2.248 1.276 -0.441 -1.254 -2.954 1.675 -1.954 -4.392 -2.585 1.874 -3.070 I+4 LUT 3 2 4 0 0.000 0.223 -0.876 -0.213 0.511 0.376 -0.493 -1.790 0.768 -0.370 -1.130 -1.228 1.228 -0.114 -1.194 0.221 0.559 -0.121 -1.170 0.527 0.257 0.376 -0.624 -0.472 0.415 -1.628 -0.986 -0.717 1.358 -0.735 -1.065 0.794 0.248 0.439 -1.459 0.541 -0.275 -0.423 -0.298 -0.561 0.818 -0.301 -0.943 -1.561 1.220 0.559 -1.110 0.185 -0.110 -0.263 -0.941 0.170 0.605 -0.032 0.918 -2.684 -0.032 -0.679 -1.397 -1.008 1.321 -0.609 -0.793 0.069 0.781 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.775 -0.897 -0.601 0.127 0.731 -0.225 -2.687 0.411 0.431 -0.556 -0.238 0.169 0.392 -0.852 -0.055 0.228 0.300 -0.587 -0.117 0.240 0.518 0.009 -2.882 0.512 0.009 -0.575 -0.354 0.623 -0.224 -0.172 -0.043 0.363 0.588 -0.644 -0.111 -0.102 0.691 -0.134 -2.408 0.363 0.487 -0.332 -0.255 -0.050 0.106 -0.596 0.123 0.230 0.456 -0.626 -0.466 0.329 0.445 0.038 -2.756 0.549 0.249 -0.551 -0.222 0.347 0.064 -0.563 -0.504 0.653 0.756 -0.744 -0.319 -0.133 0.964 -0.413 -2.349 0.140 0.345 -0.561 -0.016 0.088 0.108 -0.763 -0.020 0.429 -0.099 -0.103 -0.044 0.220 0.616 -0.102 -1.972 0.356 -0.229 0.049 -0.487 0.484 -0.431 0.037 0.148 0.169 0.179 -0.853 0.259 0.160 0.020 0.797 -2.054 0.011 0.168 -0.665 0.219 0.114 -0.104 -0.775 0.360 0.264 0.319 -0.392 -0.297 0.234 0.399 0.144 -2.543 0.491 0.068 -0.158 -0.285 0.304 -0.221 -0.422 -0.203 0.610 0.638 -0.838 -0.192 0.014 0.667 -0.169 -2.040 0.356 0.570 -0.547 -0.134 -0.122 0.064 -0.592 0.115 0.273 0.138 -0.381 0.104 0.080 0.552 -0.422 -2.235 0.655 0.408 -0.445 -0.269 0.149 -0.122 -0.356 0.251 0.151 0.505 -0.840 0.183 -0.174 0.547 -0.367 -1.624 0.525 0.458 -0.406 -0.245 0.040 -0.031 -0.535 0.211 0.231 0.260 -0.675 0.092 0.151 0.459 -0.157 -2.867 0.670 0.280 -0.316 -0.099 0.069 -0.188 -0.324 -0.347 0.620 0.672 -0.910 -0.590 0.275 0.797 -0.349 -2.679 0.402 0.336 -0.407 -0.330 0.248 0.398 -0.949 -0.322 0.449 -0.071 -0.210 -0.041 0.277 0.379 0.106 -2.661 0.551 -0.086 0.134 -0.611 0.385 -0.379 -0.075 -0.035 0.385 0.471 -0.719 -0.079 0.084 0.435 0.104 -2.858 0.521 0.229 -0.329 -0.198 0.214 0.084 -0.699 0.053 0.364 0.279 -0.489 -0.401 0.397 0.387 -0.167 -3.222 0.761 0.130 -0.320 -0.351 0.401 -0.124 -0.524 -0.486 0.743 0.518 -0.648 -0.127 0.021 0.723 -0.048 -2.794 0.308 0.275 -0.408 -0.128 0.165 0.135 -0.611 -0.065 0.369 -0.285 0.147 0.005 0.096 0.596 -0.132 -2.187 0.440 -0.367 0.333 -0.362 0.246 -0.632 -0.365 0.363 0.369 0.362 -0.744 0.240 -0.094 0.359 0.332 -2.721 0.387 0.253 0.108 -0.324 -0.103 -0.202 -0.565 0.364 0.224 0.125 -0.516 -0.184 0.412 0.313 -0.094 -2.878 0.753 -0.026 -0.296 -0.109 0.352 -0.359 -0.444 -0.394 0.786 0.582 -0.526 0.103 -0.445 0.311 0.367 -2.063 0.299 -0.145 0.120 0.214 -0.236 -0.374 -0.197 0.074 0.382 -0.108 -0.374 0.559 -0.273 0.565 0.009 -1.785 0.292 -0.270 -0.088 0.481 -0.261 -0.593 -0.065 0.243 0.260 -0.229 -0.722 0.958 -0.742 -0.301 0.910 -1.154 -0.218 -0.535 0.161 0.705 -0.831 -0.505 0.054 0.396 -0.088 0.216 -0.419 0.064 0.064 0.235 0.455 -2.298 0.321 -0.097 -0.358 0.218 0.166 -0.470 -0.119 -0.185 0.564 0.300 -0.195 -0.028 -0.129 0.545 -0.028 -1.961 0.383 0.479 -0.832 0.182 -0.136 -0.428 0.089 -0.120 0.349 -0.365 0.085 0.294 -0.094 0.029 0.183 -1.968 0.668 -0.601 0.661 0.181 -0.677 -0.855 0.035 0.233 0.318 -0.000 -0.891 0.638 -0.145 -0.379 0.455 -1.346 0.553 0.079 -0.004 0.063 -0.149 -0.394 -0.592 0.617 0.059 0.161 -0.683 -0.031 0.357 0.067 -0.193 -2.291 0.906 0.159 -0.310 -0.006 0.112 -0.340 -0.408 -0.237 0.685 0.479 -0.738 -0.255 0.225 0.516 -0.181 -2.901 0.637 0.305 -0.391 -0.020 0.023 0.098 -0.596 -0.170 0.464 -0.097 -0.215 0.324 -0.073 0.195 0.250 -2.425 0.565 -0.051 -0.421 0.453 -0.122 -0.504 -0.145 0.246 0.268 0.232 -0.558 0.346 -0.192 0.384 0.287 -2.701 0.402 0.064 -0.276 0.370 -0.258 -0.008 -0.303 0.082 0.185 0.332 -0.449 -0.150 0.147 0.244 0.191 -3.066 0.637 0.202 -0.419 0.000 0.139 -0.281 -0.296 -0.206 0.580 0.485 -0.643 -0.199 0.123 0.534 -0.240 -2.676 0.631 0.389 -0.487 -0.078 0.042 0.077 -0.658 -0.006 0.396 -0.071 -0.533 0.364 0.097 0.568 -0.203 -2.694 0.579 -0.295 -0.619 0.514 0.146 -0.252 -0.333 0.069 0.398 0.320 -0.295 -0.024 -0.070 0.379 0.253 -2.334 0.389 0.143 0.161 -0.358 -0.003 -0.165 -0.500 0.106 0.406 0.305 -0.544 -0.199 0.273 0.430 -0.100 -2.311 0.602 0.157 -0.585 0.172 0.127 0.002 -0.511 -0.420 0.632 0.452 -0.450 -0.066 -0.083 0.517 -0.228 -1.905 0.534 0.152 -0.449 -0.067 0.264 -0.168 -0.573 0.185 0.379 -0.198 -0.056 0.214 0.009 0.642 -0.242 -1.525 0.318 0.211 -0.366 0.317 -0.285 -0.877 0.289 0.312 -0.011 -0.313 -0.572 0.271 0.395 -0.024 0.576 -0.557 -0.241 0.036 -0.291 0.372 -0.212 -0.743 -0.754 0.950 -0.188 0.266 -0.278 -0.192 0.134 0.608 -0.228 -2.712 0.555 -0.027 -0.535 0.394 0.021 -0.375 -0.243 -0.197 0.596 0.516 -0.842 0.094 -0.081 0.609 -0.288 -2.353 0.546 0.230 -0.811 0.344 -0.017 -0.185 -0.562 -0.047 0.561 -0.147 -0.520 0.399 0.113 0.596 -0.473 -1.623 0.530 -0.697 -0.106 0.368 0.219 -0.465 -0.249 0.514 0.008 0.254 -0.841 0.339 -0.022 0.552 -0.347 -1.294 0.422 0.347 -0.400 -0.121 0.071 -0.288 -0.583 0.170 0.473 0.254 -0.642 0.013 0.210 0.462 -0.365 -2.758 0.764 0.086 -0.629 0.346 0.029 -0.419 -0.440 -0.154 0.693 0.430 -0.737 -0.252 0.279 0.633 -0.228 -2.744 0.532 0.356 -0.217 -0.359 0.112 0.101 -0.763 -0.193 0.549 -0.277 -0.258 0.237 0.213 0.243 0.063 -2.730 0.697 -0.317 0.039 -0.022 0.244 -0.684 0.150 -0.111 0.424 0.179 -0.649 0.195 0.118 0.376 -0.042 -2.305 0.612 -0.051 -0.103 -0.078 0.209 -0.331 -0.718 0.567 0.159 0.293 -0.455 -0.211 0.241 0.448 -0.159 -2.778 0.673 0.012 -0.304 -0.064 0.292 -0.377 -0.366 -0.272 0.701 0.658 -0.966 -0.415 0.215 0.624 -0.315 -2.733 0.589 0.370 -0.560 -0.268 0.261 0.140 -0.646 -0.294 0.530 0.004 -0.721 0.205 0.307 0.529 -0.217 -2.833 0.638 -0.228 -0.690 -0.246 0.751 -0.188 -0.533 -0.012 0.525 0.514 -0.831 0.012 0.002 0.399 -0.055 -3.088 0.679 0.388 -0.370 -0.273 0.125 0.120 -0.566 -0.148 0.417 0.177 -0.766 -0.493 0.652 0.395 -0.197 -3.168 0.767 0.053 -0.591 -0.398 0.623 -0.198 -0.707 -0.647 0.908 0.608 -0.793 0.083 -0.252 0.405 -0.131 -2.072 0.609 0.132 -0.206 -0.100 0.143 -0.158 -0.495 -0.130 0.566 -0.164 -0.430 0.262 0.221 0.713 -0.227 -2.107 0.350 -0.471 0.219 -0.312 0.388 -0.557 -0.231 0.247 0.358 0.325 -1.067 0.423 -0.106 -0.193 0.255 -1.650 0.690 -0.452 0.375 0.186 -0.260 -0.333 -0.520 0.325 0.330 0.199 -0.338 -0.111 0.183 0.271 -0.083 -2.323 0.722 -0.056 -0.330 -0.303 0.518 -0.352 -0.271 -0.336 0.674 0.498 -0.619 -0.164 0.062 0.502 -0.073 -2.698 0.564 0.336 -0.281 -0.085 -0.040 -0.058 -0.458 -0.049 0.427 -0.085 -0.474 0.276 0.172 0.271 -0.147 -2.848 0.809 -0.349 0.008 -0.094 0.347 -0.411 -0.499 0.256 0.429 0.452 -0.987 0.224 -0.059 0.261 0.016 -2.140 0.645 0.508 -0.420 -0.204 -0.055 -0.185 -0.511 0.247 0.300 0.236 -0.763 -0.174 0.430 0.311 -0.238 -2.843 0.826 -0.089 -0.595 -0.311 0.671 -0.341 -0.596 -0.215 0.755 0.689 -0.903 -0.449 0.164 0.699 -0.366 -2.804 0.543 0.256 -0.347 -0.262 0.246 0.072 -0.840 -0.466 0.736 0.005 -0.495 0.059 0.316 0.335 -0.051 -3.131 0.731 0.142 -0.537 -0.216 0.429 -0.426 -0.241 -0.058 0.535 0.455 -0.843 0.101 -0.001 0.322 -0.017 -3.109 0.719 0.080 -0.292 0.031 0.144 -0.040 -0.673 -0.175 0.599 0.422 -0.838 -0.471 0.464 0.243 -0.116 -3.401 0.847 0.067 -0.594 -0.244 0.531 -0.200 -0.625 -0.542 0.843 Intron LUT 5 4 4 0 0.000 0.776 -0.904 -0.604 0.131 0.733 -0.221 -2.730 0.410 0.433 -0.564 -0.243 0.174 0.392 -0.857 -0.059 0.234 0.297 -0.592 -0.116 0.245 0.518 0.010 -2.948 0.517 0.026 -0.639 -0.374 0.648 -0.226 -0.164 -0.051 0.364 0.585 -0.645 -0.110 -0.099 0.695 -0.140 -2.465 0.370 0.484 -0.335 -0.258 -0.041 0.107 -0.600 0.128 0.227 0.449 -0.625 -0.454 0.330 0.442 0.044 -2.777 0.551 0.249 -0.554 -0.214 0.343 0.064 -0.566 -0.505 0.655 0.757 -0.750 -0.319 -0.131 0.970 -0.413 -2.377 0.135 0.346 -0.576 -0.012 0.092 0.113 -0.770 -0.016 0.425 -0.110 -0.099 -0.047 0.228 0.625 -0.103 -2.030 0.358 -0.232 0.010 -0.541 0.540 -0.435 0.043 0.149 0.165 0.173 -0.906 0.263 0.189 0.025 0.827 -2.375 0.023 0.163 -0.726 0.236 0.136 -0.090 -0.817 0.365 0.269 0.317 -0.395 -0.295 0.237 0.401 0.147 -2.589 0.492 0.065 -0.153 -0.286 0.304 -0.219 -0.426 -0.206 0.613 0.636 -0.841 -0.196 0.022 0.671 -0.167 -2.067 0.354 0.574 -0.558 -0.138 -0.115 0.068 -0.592 0.113 0.271 0.139 -0.383 0.096 0.088 0.563 -0.440 -2.332 0.667 0.465 -0.533 -0.357 0.199 -0.116 -0.362 0.249 0.151 0.502 -0.850 0.184 -0.163 0.557 -0.379 -1.681 0.534 0.462 -0.418 -0.260 0.055 -0.026 -0.539 0.209 0.231 0.255 -0.680 0.100 0.151 0.459 -0.160 -2.934 0.677 0.283 -0.313 -0.099 0.062 -0.190 -0.320 -0.353 0.622 0.665 -0.908 -0.586 0.281 0.800 -0.350 -2.691 0.400 0.336 -0.410 -0.330 0.250 0.398 -0.946 -0.320 0.446 -0.079 -0.206 -0.042 0.281 0.381 0.108 -2.703 0.552 -0.085 0.127 -0.638 0.404 -0.378 -0.069 -0.039 0.383 0.465 -0.728 -0.071 0.089 0.430 0.116 -2.898 0.521 0.224 -0.330 -0.197 0.219 0.080 -0.699 0.055 0.365 0.272 -0.489 -0.394 0.399 0.387 -0.170 -3.245 0.764 0.132 -0.318 -0.351 0.399 -0.124 -0.524 -0.490 0.744 0.519 -0.649 -0.127 0.019 0.730 -0.046 -2.862 0.306 0.274 -0.412 -0.127 0.169 0.135 -0.615 -0.068 0.373 -0.293 0.155 -0.002 0.101 0.606 -0.142 -2.252 0.445 -0.361 0.336 -0.381 0.253 -0.635 -0.365 0.364 0.370 0.356 -0.749 0.244 -0.088 0.360 0.339 -2.860 0.394 0.252 0.113 -0.332 -0.099 -0.202 -0.570 0.369 0.221 0.118 -0.516 -0.180 0.414 0.310 -0.096 -2.915 0.759 -0.029 -0.296 -0.107 0.352 -0.361 -0.442 -0.391 0.785 0.584 -0.526 0.102 -0.448 0.310 0.371 -2.116 0.305 -0.153 0.122 0.218 -0.236 -0.376 -0.200 0.079 0.381 -0.109 -0.384 0.563 -0.270 0.587 0.011 -1.945 0.300 -0.209 -0.219 0.483 -0.187 -0.588 -0.077 0.245 0.265 -0.231 -0.778 0.970 -0.723 -0.222 0.938 -1.585 -0.163 -0.593 0.135 0.739 -0.812 -0.493 0.047 0.398 -0.092 0.211 -0.427 0.067 0.072 0.242 0.457 -2.367 0.323 -0.097 -0.371 0.223 0.170 -0.471 -0.123 -0.183 0.565 0.310 -0.183 -0.067 -0.113 0.595 -0.055 -2.316 0.407 0.516 -0.928 0.165 -0.114 -0.426 0.098 -0.129 0.346 -0.336 0.089 0.227 -0.039 0.102 0.136 -2.680 0.741 -0.491 0.672 0.021 -0.556 -0.823 0.008 0.199 0.357 -0.026 -0.954 0.634 -0.075 -0.328 0.478 -2.032 0.647 0.106 -0.035 0.007 -0.085 -0.365 -0.654 0.624 0.066 0.163 -0.700 -0.044 0.372 0.074 -0.247 -2.596 0.955 0.174 -0.318 -0.023 0.118 -0.335 -0.431 -0.242 0.696 0.478 -0.744 -0.259 0.232 0.515 -0.184 -2.960 0.643 0.306 -0.396 -0.019 0.025 0.096 -0.591 -0.170 0.463 -0.097 -0.214 0.324 -0.072 0.199 0.250 -2.524 0.575 -0.017 -0.500 0.450 -0.091 -0.500 -0.151 0.247 0.269 0.224 -0.561 0.352 -0.187 0.395 0.293 -2.845 0.401 0.062 -0.279 0.375 -0.259 -0.005 -0.305 0.079 0.186 0.325 -0.449 -0.145 0.151 0.244 0.186 -3.131 0.645 0.205 -0.423 0.002 0.137 -0.281 -0.298 -0.206 0.582 0.483 -0.643 -0.201 0.127 0.538 -0.242 -2.740 0.634 0.389 -0.501 -0.075 0.048 0.078 -0.662 -0.008 0.398 -0.077 -0.539 0.370 0.101 0.576 -0.214 -2.815 0.590 -0.287 -0.735 0.546 0.163 -0.243 -0.338 0.063 0.400 0.316 -0.291 -0.032 -0.060 0.386 0.260 -2.476 0.397 0.137 0.166 -0.378 0.012 -0.164 -0.508 0.107 0.409 0.301 -0.552 -0.192 0.276 0.433 -0.104 -2.332 0.605 0.158 -0.595 0.180 0.123 0.007 -0.511 -0.421 0.629 0.447 -0.448 -0.067 -0.076 0.521 -0.233 -1.953 0.542 0.154 -0.482 -0.065 0.281 -0.167 -0.579 0.192 0.376 -0.204 -0.055 0.211 0.017 0.674 -0.283 -1.635 0.334 0.320 -0.632 0.304 -0.198 -0.878 0.293 0.316 -0.021 -0.311 -0.622 0.220 0.464 0.033 0.626 -0.802 -0.218 0.119 -0.510 0.351 -0.096 -0.720 -0.871 0.978 -0.190 0.265 -0.281 -0.192 0.138 0.627 -0.251 -2.829 0.560 -0.022 -0.564 0.407 0.018 -0.370 -0.251 -0.195 0.597 0.513 -0.846 0.088 -0.068 0.619 -0.296 -2.476 0.555 0.234 -0.842 0.342 -0.002 -0.184 -0.562 -0.053 0.564 -0.152 -0.525 0.395 0.125 0.617 -0.505 -1.752 0.551 -0.664 -0.143 0.292 0.309 -0.457 -0.253 0.516 0.003 0.248 -0.858 0.337 -0.003 0.584 -0.369 -1.428 0.439 0.354 -0.431 -0.131 0.094 -0.283 -0.598 0.164 0.482 0.252 -0.647 0.014 0.215 0.469 -0.384 -2.872 0.776 0.091 -0.635 0.343 0.031 -0.423 -0.444 -0.151 0.694 0.421 -0.743 -0.242 0.286 0.632 -0.223 -2.774 0.534 0.360 -0.222 -0.364 0.113 0.103 -0.764 -0.195 0.549 -0.281 -0.265 0.240 0.218 0.253 0.054 -2.857 0.707 -0.279 -0.001 -0.060 0.283 -0.687 0.154 -0.116 0.427 0.171 -0.665 0.206 0.124 0.381 -0.043 -2.379 0.618 -0.055 -0.103 -0.086 0.220 -0.332 -0.724 0.570 0.157 0.288 -0.458 -0.204 0.243 0.454 -0.168 -2.816 0.676 0.013 -0.304 -0.065 0.293 -0.380 -0.365 -0.272 0.702 0.658 -0.972 -0.416 0.217 0.625 -0.311 -2.771 0.590 0.370 -0.564 -0.268 0.264 0.138 -0.642 -0.300 0.532 0.001 -0.725 0.210 0.308 0.530 -0.217 -2.873 0.641 -0.235 -0.711 -0.262 0.770 -0.185 -0.529 -0.020 0.527 0.510 -0.836 0.018 0.005 0.397 -0.052 -3.161 0.684 0.387 -0.370 -0.277 0.129 0.123 -0.567 -0.151 0.417 0.171 -0.766 -0.484 0.652 0.391 -0.194 -3.195 0.770 0.050 -0.592 -0.395 0.624 -0.198 -0.705 -0.647 0.908 0.608 -0.803 0.089 -0.254 0.403 -0.131 -2.096 0.614 0.126 -0.204 -0.096 0.144 -0.156 -0.498 -0.127 0.565 -0.171 -0.434 0.260 0.232 0.729 -0.239 -2.186 0.351 -0.460 0.203 -0.403 0.450 -0.558 -0.238 0.249 0.361 0.329 -1.089 0.427 -0.106 -0.169 0.249 -1.951 0.734 -0.467 0.383 0.183 -0.256 -0.324 -0.549 0.329 0.335 0.193 -0.340 -0.105 0.186 0.274 -0.087 -2.341 0.724 -0.061 -0.331 -0.307 0.524 -0.354 -0.275 -0.335 0.677 0.495 -0.613 -0.167 0.066 0.503 -0.068 -2.770 0.568 0.335 -0.279 -0.085 -0.041 -0.058 -0.450 -0.049 0.423 -0.089 -0.476 0.279 0.173 0.272 -0.147 -2.946 0.816 -0.314 -0.042 -0.127 0.388 -0.407 -0.503 0.256 0.428 0.449 -0.997 0.228 -0.054 0.261 0.017 -2.196 0.652 0.514 -0.427 -0.216 -0.049 -0.184 -0.513 0.250 0.298 0.230 -0.771 -0.166 0.433 0.309 -0.244 -2.874 0.832 -0.091 -0.598 -0.312 0.673 -0.342 -0.596 -0.209 0.752 0.684 -0.904 -0.447 0.170 0.702 -0.370 -2.831 0.545 0.253 -0.346 -0.264 0.249 0.070 -0.841 -0.468 0.739 0.003 -0.494 0.058 0.319 0.341 -0.056 -3.237 0.736 0.165 -0.581 -0.242 0.448 -0.430 -0.240 -0.059 0.537 0.450 -0.849 0.108 0.001 0.319 -0.016 -3.170 0.724 0.076 -0.290 0.031 0.145 -0.044 -0.672 -0.177 0.602 0.415 -0.844 -0.465 0.470 0.243 -0.120 -3.433 0.851 0.068 -0.601 -0.240 0.532 -0.203 -0.630 -0.542 0.847 Repeat LUT 1 0 5 0 0 -1 -1 -1 -1 1 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 3 2 4 0 0.000 0.157 -0.407 0.355 -0.230 0.428 0.267 -0.733 -0.235 0.205 -0.380 0.314 -0.258 0.017 -0.375 -0.053 0.325 0.029 -0.634 0.735 -0.575 -0.178 -0.178 -0.015 0.313 -0.280 0.372 0.537 -1.213 -1.000 0.268 0.064 0.322 0.027 -0.295 0.563 -0.540 -0.040 0.423 -0.487 -0.040 -0.154 0.252 0.225 -0.431 -0.895 0.059 0.497 0.012 -0.256 0.159 -0.256 0.274 -0.418 0.655 -0.954 0.216 -0.304 -0.174 0.311 0.089 -0.573 0.000 -0.303 0.601 N-11 LUT 3 2 4 0 0.000 0.563 -0.115 0.065 -0.852 0.220 0.268 -1.517 0.358 0.287 0.314 -0.008 -0.883 0.054 0.254 -0.893 0.300 -0.409 -0.267 0.923 -0.945 -0.177 0.341 -0.244 0.007 -0.870 0.621 0.487 -0.963 -0.577 0.025 0.266 0.150 0.474 -0.126 0.354 -1.263 -0.028 0.557 -0.322 -0.418 0.597 0.022 -0.235 -0.686 -0.135 -0.036 0.057 0.102 -0.091 -0.030 0.292 -0.222 0.018 0.369 -0.982 0.251 0.046 0.247 -0.189 -0.147 -0.244 0.091 -0.427 0.429 N-10 LUT 3 2 4 0 0.000 0.326 -0.141 0.231 -0.585 0.315 -0.435 -0.371 0.315 0.507 -0.268 0.069 -0.516 -0.122 0.314 -0.888 0.376 -0.248 -0.493 0.559 -0.038 -0.104 0.249 -0.232 0.042 0.028 0.135 0.372 -0.766 -1.506 -0.184 0.641 0.272 0.069 -0.158 0.367 -0.386 0.121 0.300 -0.700 0.093 0.233 0.406 -0.322 -0.515 -0.241 -0.115 0.429 -0.177 0.152 -0.585 0.482 -0.277 0.018 0.281 -0.911 0.311 -0.123 0.171 -0.269 0.171 -0.492 -0.100 -0.282 0.617 N-9 LUT 3 2 4 0 0.000 0.086 -0.211 0.052 0.052 -0.299 0.057 -0.855 0.672 -0.080 -0.206 0.544 -0.456 -0.943 0.057 -0.085 0.581 -0.075 -0.380 0.702 -0.610 -0.144 -0.212 0.518 -0.322 -1.548 -0.012 1.107 -0.963 -0.926 -0.284 0.600 0.185 0.123 -0.115 0.576 -1.009 -0.047 -0.295 0.349 -0.085 0.030 0.108 0.218 -0.439 -1.361 -0.361 0.765 0.180 0.234 -0.602 0.449 -0.322 0.175 -0.047 -0.784 0.403 0.115 -0.170 0.078 -0.041 -0.358 0.035 -0.358 0.500 N-8 LUT 3 2 4 0 0.000 0.269 0.329 0.072 -1.037 0.624 0.023 -1.024 -0.073 0.068 0.313 -0.014 -0.477 0.039 0.658 -2.183 0.232 -0.555 -0.010 0.927 -1.233 0.171 0.171 -0.433 0.011 -0.935 0.443 0.524 -0.557 -0.974 0.219 0.219 0.219 -0.248 -0.197 0.302 0.074 -0.072 0.198 -0.459 0.232 0.000 0.512 0.000 -0.801 -0.361 0.134 0.087 0.087 -0.144 -0.222 0.193 0.131 0.052 0.133 -0.553 0.245 -0.214 0.431 -0.040 -0.290 -0.441 0.337 -0.360 0.288 N-7 LUT 3 2 4 0 0.000 0.544 -0.713 0.365 -0.635 -0.175 0.359 -1.574 0.581 0.209 0.238 -0.149 -0.390 -0.276 0.177 -1.939 0.834 -0.019 -0.566 0.710 -0.512 0.158 0.444 -0.952 0.010 -0.476 0.225 0.431 -0.388 -0.858 -0.051 0.435 0.178 0.547 -0.430 0.289 -0.799 -0.465 0.566 -0.345 0.011 -0.628 0.497 0.186 -0.315 -0.863 0.393 0.393 -0.279 -0.027 -0.204 0.179 0.027 0.016 0.350 -1.338 0.399 -0.061 0.081 0.035 -0.061 -0.637 0.280 -0.263 0.389 N-6 LUT 3 2 4 0 0.000 0.389 -1.485 0.716 -0.534 0.633 -0.615 -0.615 0.193 0.107 -0.508 0.621 -0.554 -0.352 0.155 0.101 0.044 -0.295 -0.816 0.850 -0.295 -0.098 -0.977 0.742 -0.176 -0.091 -0.091 0.555 -0.615 -0.907 -0.466 0.986 -0.392 0.000 -0.415 0.807 -1.000 -0.040 -0.040 0.333 -0.330 -0.174 -0.350 0.478 -0.094 -0.515 -1.100 0.848 0.047 -0.070 -0.585 0.515 -0.070 0.116 -0.322 -0.106 0.247 -0.663 -0.197 0.559 0.032 -1.270 -0.036 0.397 0.370 N-5 LUT 3 2 4 0 0.000 0.297 -0.881 0.571 -0.429 0.000 0.453 -1.926 0.453 0.144 0.337 -0.052 -0.585 -0.222 0.086 -1.445 0.778 -0.252 -0.074 0.629 -0.593 -0.287 0.279 -0.073 0.023 -1.136 0.818 0.301 -0.863 -1.188 0.424 -0.036 0.315 0.209 -0.415 0.672 -1.000 -0.038 0.284 -0.322 0.012 0.119 0.286 0.041 -0.585 -0.713 0.117 -0.025 0.403 0.345 0.291 -0.161 -0.709 0.391 0.497 -2.573 0.150 -0.251 0.295 -0.087 -0.012 -0.634 0.509 -0.760 0.425 N-4 LUT 3 2 4 0 0.000 0.548 -0.273 0.435 -1.479 0.619 0.619 -1.107 -1.107 0.030 0.322 0.322 -1.061 0.291 0.497 -1.409 -0.017 0.160 0.206 0.206 -0.794 0.425 0.599 -0.737 -0.881 -0.784 0.631 0.505 -1.147 -0.371 0.427 0.391 -0.807 0.400 -0.108 0.354 -1.076 -0.308 0.773 -0.684 -0.216 0.284 0.614 -0.064 -1.758 -0.576 0.798 0.161 -1.083 0.245 -0.340 0.304 -0.340 0.017 0.775 -1.205 -0.246 -0.059 0.214 0.310 -0.644 0.016 0.662 -0.420 -0.601 N-3 LUT 3 2 4 0 0.000 1.082 -1.034 0.274 -2.426 1.227 -1.773 -0.085 -1.242 1.280 -1.144 -0.144 -2.222 0.556 -1.280 0.305 -0.181 0.080 -1.505 1.266 -2.423 1.376 -2.402 0.057 -2.509 0.415 -1.459 1.178 -4.629 0.541 -1.237 0.710 -1.044 1.144 -2.441 0.453 -2.078 1.232 -1.951 0.256 -2.329 1.376 -1.392 -0.392 -1.933 0.482 -1.170 0.977 -2.392 0.770 -1.346 0.770 -2.346 1.452 -1.728 -0.370 -2.406 0.953 -1.807 0.152 -0.585 0.601 -0.536 0.201 -0.636 N-2 LUT 3 2 4 0 0.000 0.990 -0.447 -0.212 -1.261 0.627 0.167 -1.833 0.074 0.305 0.694 -0.878 -0.730 0.322 0.459 -0.678 -0.415 0.513 0.271 -0.287 -0.872 0.300 0.000 -1.379 0.469 -0.139 1.048 -0.836 -1.109 -0.354 0.177 0.564 -0.716 0.927 -0.253 -0.298 -1.165 -0.143 0.664 -1.143 0.079 0.254 0.936 -1.161 -1.161 0.415 0.193 -0.070 -0.807 0.492 0.209 -0.300 -0.678 0.661 0.381 -0.841 -0.841 0.426 0.552 -0.863 -0.641 -0.263 0.222 -1.000 0.585 N-1 LUT 3 2 4 0 0.000 0.311 -0.472 0.783 -1.654 -0.131 1.129 -0.888 -1.473 0.459 0.000 0.443 -1.913 -0.884 1.452 -2.469 -0.884 0.326 -1.066 0.841 -1.066 0.392 0.700 -0.830 -1.000 -0.070 0.415 0.193 -0.807 -0.921 0.594 0.179 -0.268 0.466 0.153 0.265 -1.713 -0.926 1.402 -1.060 -1.511 -0.087 -0.087 0.851 -1.672 -1.115 1.000 -0.115 -0.700 0.159 -0.841 0.661 -0.426 -1.059 1.310 -1.059 -0.837 0.074 -0.078 0.212 -0.248 -0.888 -0.040 0.791 -0.402 A LUT 3 2 4 0 0.000 1.984 -6.077 -6.077 -6.077 1.974 -5.401 -5.401 -5.401 1.987 -6.392 -6.392 -6.392 1.940 -4.209 -4.209 -4.209 1.969 -5.160 -5.160 -5.160 1.990 -6.823 -6.823 -6.823 1.955 -4.615 -4.615 -4.615 1.939 -4.190 -4.190 -4.190 1.966 -4.989 -4.989 -4.989 1.958 -4.700 -4.700 -4.700 1.971 -5.229 -5.229 -5.229 1.874 -3.170 -3.170 -3.170 1.900 -3.492 -3.492 -3.492 1.977 -5.547 -5.547 -5.547 1.928 -3.954 -3.954 -3.954 1.919 -3.781 -3.781 -3.781 T LUT 3 2 4 0 0.000 -7.162 -7.162 -7.162 1.992 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.815 -7.815 -7.815 1.995 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.308 -7.308 -7.308 1.993 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.820 -5.820 -5.820 1.981 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -9.181 -9.181 1.998 -9.181 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.176 -0.780 0.930 -0.673 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.707 -0.095 -0.131 -0.948 0.094 0.609 -1.021 -0.128 0.264 0.988 -1.017 -1.639 -1.935 1.124 -0.876 0.020 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 -0.069 -0.384 0.598 -0.384 0.368 -0.047 -0.706 0.175 -0.831 0.636 -0.671 0.329 -0.807 0.041 0.515 -0.042 -0.385 -1.233 1.089 -0.555 -0.248 -0.411 0.193 0.337 -0.032 -0.492 0.678 -0.492 -1.755 -0.092 0.748 0.120 -0.585 -0.807 0.695 0.193 -0.588 -0.291 0.518 0.118 -0.129 -0.129 0.678 -0.807 -1.524 -0.716 1.120 -0.202 -2.755 0.946 -2.755 0.830 -0.343 0.217 -0.417 0.379 -3.728 -0.027 0.796 0.272 -0.778 -0.126 0.322 0.322 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.530 -0.516 0.255 -0.592 0.597 -0.270 -0.642 0.026 0.243 -0.304 -0.253 0.223 0.507 -0.394 0.012 -0.304 0.510 -0.304 -0.943 0.317 0.149 -0.036 -0.340 0.170 -8.264 -8.264 -8.264 1.996 1.996 -8.264 -8.264 -8.264 1.996 -8.264 -8.264 -8.264 TAG WMM 9 6 4 0 0.000 0.251 -0.382 0.374 -0.422 0.435 -0.196 -0.368 0.000 0.199 -0.116 -0.267 0.136 0.366 -0.304 -0.196 0.040 0.420 -0.243 -0.960 0.382 0.117 -0.255 0.010 0.098 -7.150 -7.150 -7.150 1.992 1.992 -7.150 -7.150 -7.150 -7.150 -7.150 1.992 -7.150 TGA WMM 9 6 4 0 0.000 0.185 -0.259 0.357 -0.422 0.549 -0.225 -0.431 -0.090 0.204 -0.098 -0.259 0.108 0.198 -0.160 0.185 -0.285 0.583 -0.412 -0.671 0.167 -0.083 0.401 0.012 -0.460 -7.660 -7.660 -7.660 1.995 -7.660 -7.660 1.995 -7.660 1.995 -7.660 -7.660 -7.660 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/Os.hmm0000644000175000017500000013471011424066010014437 0ustar moellermoellerzoeHMM Os 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.771226 Inter Esngl 0.228774 Inter ORF 1 Intron Eterm 0.260974 Intron Exon 0.739026 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.443425 0.348624 0.207951 0.710247 0.120141 0.169611 0.708075 0.130435 0.161491 0.758794 0.120603 0.120603 0.745429 0.254571 0.716364 0.283636 0.745318 0.254682 Einit 2 DEFINED 0 249 -10.533 -10.502 -10.471 -10.440 -10.411 -10.381 -10.353 -10.325 -10.297 -10.270 -10.244 -10.143 -10.048 -9.959 -9.876 -9.797 -9.722 -9.650 -9.582 -9.518 -9.455 -9.425 -9.396 -9.367 -9.339 -9.311 -9.284 -9.257 -9.231 -9.205 -9.180 -9.149 -9.118 -9.089 -9.060 -9.031 -9.003 -8.975 -8.949 -8.922 -8.896 -8.826 -8.759 -8.694 -8.633 -8.574 -8.518 -8.463 -8.411 -8.360 -8.311 -8.274 -8.237 -8.202 -8.167 -8.134 -8.101 -8.068 -8.037 -8.006 -7.975 -7.970 -7.965 -7.959 -7.954 -7.949 -7.943 -7.938 -7.933 -7.927 -7.922 -7.919 -7.917 -7.914 -7.912 -7.909 -7.906 -7.904 -7.901 -7.899 -7.896 -7.914 -7.933 -7.951 -7.970 -7.989 -8.009 -8.028 -8.048 -8.068 -8.089 -8.080 -8.071 -8.062 -8.054 -8.045 -8.037 -8.028 -8.020 -8.011 -8.003 -8.000 -7.997 -7.995 -7.992 -7.989 -7.986 -7.984 -7.981 -7.978 -7.975 -7.967 -7.959 -7.951 -7.943 -7.935 -7.927 -7.919 -7.912 -7.904 -7.896 -7.901 -7.906 -7.912 -7.917 -7.922 -7.927 -7.933 -7.938 -7.943 -7.949 -7.967 -7.986 -8.006 -8.025 -8.045 -8.065 -8.086 -8.106 -8.127 -8.149 -8.174 -8.199 -8.224 -8.251 -8.277 -8.304 -8.332 -8.360 -8.389 -8.418 -8.422 -8.425 -8.429 -8.433 -8.437 -8.440 -8.444 -8.448 -8.452 -8.455 -8.467 -8.478 -8.490 -8.502 -8.514 -8.525 -8.537 -8.550 -8.562 -8.574 -8.562 -8.550 -8.537 -8.525 -8.514 -8.502 -8.490 -8.478 -8.467 -8.455 -8.459 -8.463 -8.467 -8.471 -8.475 -8.478 -8.482 -8.486 -8.490 -8.494 -8.529 -8.566 -8.603 -8.642 -8.681 -8.722 -8.763 -8.806 -8.850 -8.896 -8.912 -8.927 -8.943 -8.959 -8.975 -8.992 -9.009 -9.025 -9.042 -9.060 -9.106 -9.155 -9.205 -9.257 -9.311 -9.367 -9.425 -9.486 -9.550 -9.616 -9.642 -9.668 -9.694 -9.722 -9.749 -9.777 -9.806 -9.836 -9.865 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.896 -9.917 -9.938 -9.959 -9.981 -10.003 -10.025 -10.048 -10.071 -10.095 GEOMETRIC 250 -1 243 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.382 -10.339 -10.298 -10.258 -10.219 -10.180 -10.143 -10.107 -10.072 -10.037 -10.004 -9.949 -9.897 -9.846 -9.797 -9.750 -9.704 -9.660 -9.617 -9.575 -9.534 -9.449 -9.368 -9.291 -9.219 -9.149 -9.083 -9.020 -8.960 -8.902 -8.846 -8.821 -8.797 -8.773 -8.750 -8.727 -8.704 -8.682 -8.660 -8.638 -8.617 -8.591 -8.567 -8.542 -8.518 -8.495 -8.471 -8.449 -8.426 -8.404 -8.382 -8.371 -8.361 -8.350 -8.339 -8.329 -8.319 -8.308 -8.298 -8.288 -8.278 -8.245 -8.212 -8.180 -8.149 -8.119 -8.089 -8.060 -8.032 -8.004 -7.976 -7.998 -8.020 -8.043 -8.066 -8.089 -8.113 -8.137 -8.162 -8.187 -8.212 -8.203 -8.193 -8.184 -8.174 -8.165 -8.156 -8.146 -8.137 -8.128 -8.119 -8.116 -8.113 -8.110 -8.107 -8.104 -8.101 -8.098 -8.095 -8.092 -8.089 -8.116 -8.143 -8.171 -8.199 -8.228 -8.258 -8.288 -8.319 -8.350 -8.382 -8.375 -8.368 -8.361 -8.354 -8.346 -8.339 -8.332 -8.325 -8.319 -8.312 -8.332 -8.354 -8.375 -8.397 -8.419 -8.441 -8.464 -8.487 -8.510 -8.534 -8.567 -8.600 -8.634 -8.668 -8.704 -8.741 -8.778 -8.816 -8.856 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.897 -8.912 -8.928 -8.944 -8.960 -8.976 -8.993 -9.009 -9.026 -9.043 -9.060 -9.072 -9.083 -9.095 -9.107 -9.119 -9.131 -9.143 -9.156 -9.168 -9.180 -9.174 -9.168 -9.162 -9.156 -9.149 -9.143 -9.137 -9.131 -9.125 -9.119 -9.149 -9.180 -9.212 -9.245 -9.278 -9.312 -9.346 -9.382 -9.419 -9.456 -9.479 -9.502 -9.526 -9.550 -9.575 -9.600 -9.625 -9.651 -9.677 -9.704 -9.713 -9.722 -9.731 -9.741 -9.750 -9.759 -9.769 -9.778 -9.788 -9.797 -9.778 -9.759 -9.741 -9.722 -9.704 -9.686 -9.668 -9.651 -9.634 -9.617 -9.567 -9.518 -9.471 -9.426 -9.382 -9.339 -9.298 -9.258 -9.219 -9.180 -9.187 -9.193 -9.199 -9.206 -9.212 -9.219 -9.225 -9.232 -9.238 -9.245 -9.258 -9.271 -9.284 -9.298 -9.312 -9.325 -9.339 -9.354 -9.368 GEOMETRIC 250 -1 294 Exon 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 335 ORF 2 DEFINED 0 249 -13.215 -12.809 -12.492 -12.233 -12.013 -11.822 -11.654 -11.503 -11.367 -11.242 -11.127 -10.802 -10.536 -10.312 -10.119 -9.948 -9.795 -9.657 -9.531 -9.415 -9.308 -9.217 -9.131 -9.051 -8.974 -8.902 -8.833 -8.767 -8.704 -8.643 -8.585 -8.473 -8.369 -8.272 -8.181 -8.096 -8.015 -7.938 -7.866 -7.797 -7.731 -7.683 -7.637 -7.592 -7.549 -7.507 -7.466 -7.427 -7.388 -7.350 -7.314 -7.286 -7.259 -7.233 -7.207 -7.181 -7.156 -7.131 -7.107 -7.083 -7.060 -7.048 -7.037 -7.025 -7.014 -7.003 -6.992 -6.980 -6.969 -6.959 -6.948 -6.960 -6.973 -6.986 -6.999 -7.012 -7.026 -7.039 -7.053 -7.066 -7.080 -7.078 -7.076 -7.074 -7.072 -7.070 -7.068 -7.066 -7.064 -7.062 -7.060 -7.074 -7.088 -7.103 -7.118 -7.132 -7.147 -7.163 -7.178 -7.193 -7.209 -7.224 -7.238 -7.253 -7.269 -7.284 -7.299 -7.315 -7.331 -7.347 -7.363 -7.382 -7.402 -7.422 -7.442 -7.463 -7.484 -7.505 -7.527 -7.549 -7.571 -7.599 -7.628 -7.658 -7.688 -7.719 -7.750 -7.782 -7.815 -7.849 -7.884 -7.920 -7.957 -7.995 -8.035 -8.075 -8.117 -8.159 -8.203 -8.249 -8.296 -8.323 -8.352 -8.380 -8.410 -8.440 -8.470 -8.502 -8.534 -8.566 -8.600 -8.592 -8.585 -8.578 -8.571 -8.563 -8.556 -8.549 -8.542 -8.535 -8.528 -8.545 -8.562 -8.579 -8.597 -8.615 -8.633 -8.651 -8.669 -8.688 -8.707 -8.731 -8.755 -8.780 -8.805 -8.831 -8.857 -8.884 -8.911 -8.938 -8.967 -8.978 -8.990 -9.001 -9.013 -9.025 -9.037 -9.049 -9.061 -9.073 -9.085 -9.110 -9.136 -9.161 -9.188 -9.215 -9.242 -9.270 -9.298 -9.327 -9.357 -9.364 -9.372 -9.379 -9.387 -9.394 -9.402 -9.410 -9.418 -9.425 -9.433 -9.446 -9.460 -9.473 -9.487 -9.500 -9.514 -9.528 -9.542 -9.556 -9.571 -9.588 -9.606 -9.624 -9.642 -9.660 -9.678 -9.697 -9.716 -9.736 -9.755 -9.785 -9.815 -9.846 -9.878 -9.911 -9.944 -9.978 -10.013 -10.049 -10.085 -10.110 -10.136 -10.161 -10.188 -10.215 -10.242 -10.270 -10.298 -10.327 GEOMETRIC 250 -1 133 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.129 -0.635 -0.566 0.667 0.086 -0.579 -0.600 0.687 0.154 -0.552 -0.593 0.625 0.190 -0.448 -0.635 0.568 0.073 -0.381 -0.600 0.604 0.068 -0.566 -0.635 0.707 -0.003 -0.579 -0.709 0.783 -0.089 -0.363 -0.552 0.678 -0.244 -0.480 -0.552 0.812 -0.233 -0.512 -0.552 0.820 -0.255 -0.411 -0.552 0.789 -0.375 -0.572 -0.506 0.889 -0.305 -0.664 -0.423 0.859 -0.417 -0.499 -0.519 0.884 -0.686 -0.486 -0.747 1.049 -0.539 -0.480 -0.442 0.896 -0.473 -0.461 -0.679 0.950 -0.363 -0.545 -0.411 0.838 -0.333 -0.579 -0.499 0.874 -0.405 -0.600 -0.572 0.938 -0.423 -0.480 -0.461 0.859 -0.442 -0.467 -0.628 0.923 -1.036 -1.260 -1.461 1.451 -0.322 -1.435 0.945 -0.134 -3.008 1.661 -6.709 -0.493 1.999 -8.293 -8.293 -8.293 -8.293 -8.293 1.999 -8.293 -0.277 -1.217 1.220 -1.249 -0.175 -0.572 -0.473 0.789 -0.065 -0.375 0.037 0.325 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.563 -0.059 0.342 0.131 0.236 -0.069 -1.282 0.544 0.029 0.167 -0.091 -0.123 -1.019 -0.077 0.318 0.391 0.105 -0.685 0.720 -0.609 0.800 -0.709 -1.087 0.234 -0.787 -0.109 0.139 0.476 -1.030 0.018 0.330 0.311 0.232 -0.480 0.093 0.060 0.386 -0.087 -1.633 0.515 0.035 -0.129 0.096 -0.012 -0.782 -0.141 0.144 0.493 . 0.806 . 1.171 0.415 -0.079 -0.886 0.237 . 0.484 1.069 -0.990 -1.059 0.093 -0.086 0.596 -1.543 0.374 0.946 -1.202 -0.899 0.946 -0.268 -0.500 -1.254 0.857 0.331 -0.967 -1.770 0.812 0.434 -0.734 -1.183 0.435 0.737 -0.887 -0.435 0.066 0.525 -0.369 -2.384 1.092 -0.014 -0.542 -2.785 1.006 0.354 -0.814 -2.065 0.754 0.824 -1.714 -1.905 1.127 0.398 -2.108 -2.182 1.384 -0.254 -1.597 -3.797 1.135 0.525 -1.770 . 1.740 . -0.601 -0.930 0.953 -0.010 -0.873 . 0.862 0.944 -1.953 -2.630 1.342 -0.557 -0.680 -1.040 0.153 1.074 -1.756 -0.620 0.586 0.345 -0.792 -1.063 0.782 0.554 -1.583 -1.721 0.755 0.484 -0.712 -0.847 -0.004 1.054 -1.431 -0.249 0.188 0.471 -0.658 -2.216 0.954 0.369 -0.847 -1.816 0.701 0.524 -0.617 -0.989 0.046 0.942 -0.882 -0.916 0.565 0.447 -0.674 -0.776 0.801 -0.139 -0.385 -2.431 0.243 1.087 -0.978 . 1.659 . -0.248 -0.608 0.569 0.225 -0.531 . 0.982 0.835 -2.055 -2.195 1.302 -0.770 -0.454 -0.528 -0.382 0.725 -0.175 0.152 -0.170 -0.710 0.474 -0.076 0.107 0.107 -0.156 -0.727 0.224 0.010 0.289 -0.271 -0.357 0.609 -0.209 0.460 -0.493 -1.090 0.530 -0.858 0.351 -0.273 0.427 -1.078 0.250 0.131 0.313 -0.272 -0.258 0.301 0.141 0.066 -0.177 -1.177 0.701 0.026 0.372 -0.719 0.111 -1.338 0.166 0.097 0.499 . 0.951 . 1.048 0.330 0.087 -1.235 0.330 . 0.473 0.836 -0.275 -1.118 0.569 0.063 0.016 -0.632 -0.151 0.588 -0.073 0.327 -0.009 -0.658 0.161 -0.004 0.208 0.193 -0.504 -1.098 0.004 0.294 0.383 0.163 -0.728 0.594 -0.382 0.556 -0.703 0.068 -0.205 -0.465 0.446 0.101 -0.251 -0.845 0.014 0.343 0.220 -0.189 -0.477 0.385 0.135 0.418 -0.283 -1.006 0.426 0.155 -0.043 0.068 -0.205 -0.713 -0.204 0.407 0.259 . 1.288 . 0.640 0.362 0.059 -0.823 0.148 . 0.547 0.953 -0.730 -1.784 0.294 0.356 0.268 -2.228 0.489 1.063 -1.770 -1.434 1.190 -0.284 -0.923 -1.195 0.812 0.399 -1.032 -2.185 1.017 0.352 -1.058 -1.046 0.419 0.810 -1.231 -0.738 0.276 0.388 -0.183 -2.341 1.283 -0.248 -0.926 -2.347 1.113 -0.075 -0.532 -2.685 1.063 0.553 -1.795 -2.267 1.371 -0.039 -2.104 -1.666 1.429 -0.460 -1.916 -3.785 1.128 0.519 -1.697 . 1.801 . -0.958 -1.578 1.266 -0.480 -0.882 . 1.243 0.293 -1.292 -2.621 1.507 -0.872 -1.156 -1.062 0.502 0.868 -1.840 -1.755 -0.027 1.311 -2.054 -2.448 0.748 0.921 -2.033 -1.764 0.700 0.744 -1.300 -2.478 0.320 1.231 -2.157 -1.487 -0.427 1.363 -1.614 -3.096 0.992 0.742 -2.170 -3.813 0.775 1.018 -2.377 -2.437 0.160 1.208 -1.365 -2.388 -0.436 1.531 -2.473 -1.381 0.496 0.987 -2.163 -3.721 -0.634 1.583 -1.814 . 1.851 . -1.346 -1.638 0.183 1.170 -1.766 . 0.875 0.995 -2.533 -3.368 1.534 -0.690 -1.368 -0.371 0.016 0.355 -0.094 0.186 -0.096 -1.446 0.641 -0.263 0.222 0.170 -0.193 -0.475 0.148 0.051 0.185 0.213 -0.295 0.364 -0.437 0.219 -0.322 -0.861 0.571 -0.367 0.575 -0.971 0.292 -1.556 0.262 0.304 0.294 -0.138 -0.336 0.214 0.187 0.026 0.040 -1.253 0.618 0.038 -0.013 -0.747 0.471 -1.170 0.099 0.069 0.521 . 1.126 . 0.862 0.131 0.162 -0.838 0.294 . 1.043 0.241 -0.401 -0.929 0.711 -0.063 -0.184 -0.322 -0.143 0.535 -0.242 0.380 0.059 -1.700 0.432 -0.233 0.112 0.257 -0.195 -0.492 0.000 0.678 -0.538 -0.041 -0.282 0.580 -0.494 0.462 -1.492 -0.907 0.794 -0.109 0.351 0.284 -0.787 -0.821 -0.084 0.360 0.272 0.098 -0.247 0.185 -0.074 0.171 -0.062 -0.988 0.497 0.343 0.124 -0.233 -0.338 -0.769 -0.166 0.407 0.258 . 1.017 . 0.983 0.407 0.016 -0.952 0.197 . 0.927 0.590 -0.751 -1.179 0.509 0.009 0.175 -1.595 0.453 0.917 -1.282 -0.965 0.873 0.220 -1.026 -1.618 1.015 0.184 -0.950 -1.752 1.048 0.208 -1.058 -1.667 0.637 0.721 -1.054 -0.473 0.560 0.297 -0.795 -1.784 1.231 -0.059 -1.310 -2.566 1.323 -0.262 -1.011 -2.532 0.921 0.723 -1.822 -2.344 1.248 0.256 -2.096 -2.034 1.506 -0.637 -1.880 -3.351 1.194 0.425 -1.884 . 1.720 . -0.504 -0.921 1.090 -0.214 -1.054 . 1.305 0.271 -1.636 -2.096 1.401 -0.640 -1.050 -1.096 -0.063 1.147 -1.473 -0.501 -0.099 0.657 -0.354 -1.219 0.611 0.647 -1.067 -1.333 0.579 0.631 -0.836 -0.632 0.028 0.953 -1.328 -0.426 -0.099 0.920 -1.221 -1.151 0.673 0.487 -0.855 -2.002 0.576 0.848 -1.121 -1.238 0.281 0.879 -0.939 -0.650 0.236 0.682 -0.784 -0.358 0.804 -0.206 -0.721 -2.416 -0.164 1.111 -0.395 . 1.693 . -0.385 -0.542 0.043 0.864 -1.109 . 0.877 0.950 -2.112 -2.016 1.321 -0.595 -0.757 -0.464 0.070 0.350 -0.074 0.300 0.429 -1.700 0.158 -0.854 0.767 0.253 -0.854 -0.829 0.386 0.007 0.171 0.065 -0.213 0.266 -0.170 0.449 -0.119 -1.518 0.449 -1.087 0.305 -1.087 0.867 -1.308 0.366 0.081 0.322 -0.469 0.125 -0.027 0.270 0.050 -0.013 -1.572 0.711 -0.245 0.410 -0.885 0.363 -1.505 0.199 0.155 0.471 . 1.258 . 0.685 0.518 -0.212 -1.212 0.348 . 0.430 0.743 -0.030 -0.883 0.463 0.233 -0.146 -0.494 -0.267 0.488 0.079 0.697 -0.209 -1.624 0.250 -0.499 0.263 0.501 -0.563 -1.179 0.078 0.044 0.558 0.162 -0.990 0.595 -0.206 0.606 -0.607 -0.896 0.360 -1.026 0.255 0.489 -0.132 -0.843 -0.366 0.564 0.248 -0.132 -0.156 0.027 0.228 0.283 -0.174 -1.140 0.529 0.229 0.132 -0.594 0.098 -0.496 -0.603 0.311 0.478 . 0.855 . 1.132 0.255 -0.132 -1.330 0.582 . 0.621 0.657 -0.177 -0.941 -0.043 0.059 0.553 -1.603 0.400 0.993 -1.471 -0.977 1.246 -0.657 -1.040 -1.276 0.873 0.301 -0.934 -2.050 1.011 0.338 -1.061 -1.028 0.280 0.882 -1.144 -0.938 0.513 0.481 -0.610 -2.252 1.203 -0.101 -0.848 -2.456 1.159 0.143 -1.058 -2.727 1.022 0.530 -1.416 -2.382 1.365 -0.167 -1.549 -1.898 1.388 -0.483 -1.326 -2.908 1.272 0.281 -2.076 . 1.664 . -0.268 -1.259 1.308 -0.581 -1.193 . 1.006 0.678 -1.351 -3.193 1.497 -0.703 -1.138 -1.174 0.097 1.051 -1.268 -0.129 0.196 0.426 -0.746 -0.771 0.555 0.636 -1.356 -1.499 0.587 0.587 -0.639 -0.750 -0.103 0.998 -1.068 -0.276 -0.094 0.656 -0.596 -1.568 0.812 0.504 -1.034 -2.335 0.769 0.535 -0.624 -1.025 0.148 0.816 -0.643 -0.784 0.303 0.598 -0.575 -0.690 0.672 0.222 -0.690 -2.468 -0.016 1.188 -0.858 . 1.619 . -0.107 -0.521 0.409 0.520 -0.886 . 0.687 0.948 -1.120 -2.492 1.274 -0.544 -0.479 -0.307 -0.081 0.483 -0.236 0.307 -0.108 -2.015 0.667 -0.044 0.306 0.188 -0.611 -0.813 -0.012 -0.012 0.533 -0.071 -0.689 0.819 -0.593 0.389 -0.651 -0.953 0.621 -1.181 0.339 -0.280 0.556 -0.985 0.028 -0.022 0.576 -0.589 -0.321 0.355 0.328 0.146 -0.179 -1.517 0.731 0.067 -0.051 -0.339 0.259 -1.457 -0.015 0.206 0.578 . 1.222 . 0.737 0.371 -0.233 -1.555 0.599 . 0.536 0.509 0.173 -0.652 0.510 -0.044 -0.044 frame2 LUT 5 4 4 0 0.000 -0.056 -0.245 0.433 -0.245 0.785 -0.111 -0.923 -0.281 0.479 0.067 0.067 -0.969 -0.705 -0.361 0.996 -0.705 0.145 -0.138 0.259 -0.344 0.728 -0.459 -0.203 -0.420 -0.131 -0.064 0.686 -0.939 -0.791 -0.156 0.904 -0.613 0.524 -1.000 0.298 -0.263 0.824 -0.353 -1.176 0.006 0.463 0.036 0.059 -0.850 -0.722 -0.666 1.141 -0.843 0.213 -0.787 0.351 -0.021 0.718 -0.322 -0.590 -0.167 0.263 -0.459 0.656 -1.009 -0.524 -0.309 0.907 -0.687 -0.115 -0.362 0.736 -0.659 0.695 0.023 -0.807 -0.333 0.129 0.129 -0.010 -0.286 -1.049 -0.010 0.735 -0.219 0.092 -0.240 0.602 -0.813 0.813 -0.420 -0.282 -0.572 -0.043 0.198 0.467 -1.000 -1.080 -0.111 0.905 -0.456 0.000 -0.206 0.093 0.093 -0.087 0.135 0.082 -0.149 0.371 -0.237 0.071 -0.307 -0.644 -0.907 1.386 -2.229 -0.151 0.064 0.293 -0.271 0.528 -0.037 -0.764 -0.007 0.556 -0.229 0.141 -0.802 -0.550 -0.060 0.826 -0.773 0.108 -0.649 0.742 -0.708 0.480 -0.229 -0.153 -0.229 0.245 -0.167 0.418 -0.765 -0.497 -0.778 1.041 -0.621 0.287 -0.358 0.328 -0.426 0.685 -0.526 0.258 -0.995 0.188 -0.284 0.569 -0.846 -0.550 -0.157 0.933 -0.971 0.424 -0.954 0.631 -0.753 0.334 -0.338 0.317 -0.508 0.342 0.011 0.054 -0.542 -1.164 -0.417 1.006 -0.328 0.220 -0.446 0.478 -0.496 0.327 -0.138 -0.081 -0.167 0.339 -0.140 0.249 -0.646 -0.594 -0.108 0.910 -0.916 . . . . 0.491 0.064 -0.665 -0.122 . . . . -0.677 -0.399 0.894 -0.399 0.491 -0.783 0.314 -0.377 1.006 -1.183 -0.367 -0.367 0.364 -0.091 0.109 -0.524 -0.617 -0.202 0.798 -0.436 . . . . 0.435 0.058 -0.190 -0.453 0.464 -0.121 0.364 -1.273 -0.954 -0.632 1.216 -0.954 -0.322 -0.110 0.518 -0.248 0.522 -0.115 -0.569 -0.048 0.097 -0.283 0.448 -0.426 -0.384 -0.841 1.082 -0.841 -0.035 -0.620 0.632 -0.281 0.246 0.023 0.057 -0.401 0.223 -0.315 0.548 -0.817 -0.940 -0.466 1.082 -0.648 0.399 -0.415 0.126 -0.250 0.408 -0.764 0.511 -0.601 -0.756 0.314 0.746 -1.038 -0.762 -0.383 1.126 -1.114 0.380 -0.952 0.578 -0.537 0.188 -0.151 0.245 -0.368 0.270 -0.155 0.364 -0.715 -0.383 -1.411 1.183 -0.770 -0.016 -0.333 0.149 0.149 0.195 -0.256 0.419 -0.555 -0.010 -0.074 0.534 -0.716 -0.692 -0.511 1.135 -1.050 -0.170 -0.442 0.830 -0.744 -0.150 0.402 0.235 -0.738 0.183 0.108 0.285 -0.817 -1.295 -0.231 1.103 -0.755 0.268 -0.349 0.353 -0.448 0.423 -1.365 0.689 -0.600 -0.461 0.238 0.620 -0.844 -0.825 -0.049 0.958 -0.926 0.112 -1.094 0.697 -0.271 -0.271 0.158 0.571 -0.810 0.088 0.146 -0.048 -0.213 -0.885 -0.846 1.248 -0.926 0.405 -0.595 0.253 -0.284 -0.078 0.004 0.425 -0.501 -0.133 0.247 0.353 -0.681 -1.059 0.062 1.027 -1.191 -0.343 -1.115 1.094 -0.700 -0.116 -0.196 0.709 -0.813 -0.003 -0.101 0.560 -0.747 -0.852 0.012 0.996 -1.174 -0.107 -0.334 0.571 -0.334 -0.094 -1.297 1.135 -1.119 -1.189 0.575 0.512 -0.630 -1.250 -0.138 1.144 -1.117 -0.317 -0.792 0.861 -0.317 -0.161 -0.644 1.017 -1.177 0.103 0.039 0.009 -0.164 -0.913 -0.913 1.343 -1.318 0.089 -0.304 0.451 -0.397 -0.111 -0.468 0.808 -0.737 -0.410 0.440 0.356 -0.711 -1.216 -0.046 1.082 -1.046 . . . . 0.124 -0.131 0.195 -0.230 . . . . -1.136 -0.720 1.296 -1.051 0.208 -0.306 -0.207 0.226 0.181 -0.383 0.345 -0.270 -0.828 0.438 0.376 -0.352 -0.905 -0.240 1.033 -0.803 . . . . 0.141 -0.096 0.339 -0.521 0.054 -0.298 0.514 -0.473 -0.607 -1.259 1.163 -0.543 0.051 -0.485 0.550 -0.348 -0.078 -0.055 0.231 -0.126 0.003 -0.289 0.636 -0.677 -1.294 -0.736 1.278 -0.820 -0.055 -0.694 0.739 -0.414 0.297 0.087 0.113 -0.672 0.317 0.076 0.383 -1.339 -0.848 -0.585 1.120 -0.725 0.359 -0.322 0.359 -0.655 0.531 -0.448 0.095 -0.408 -0.294 0.029 0.659 -0.774 -0.763 -0.339 1.066 -0.924 0.270 -1.385 0.668 -0.281 0.368 -0.269 0.198 -0.449 0.394 -0.084 0.114 -0.600 -0.459 -0.652 1.032 -0.759 0.202 -0.428 0.062 0.087 0.432 -0.199 0.286 -0.837 0.108 -0.054 0.585 -1.126 -0.841 -0.300 1.085 -0.978 -0.085 -0.103 0.452 -0.399 0.260 0.053 0.175 -0.653 0.023 0.215 0.211 -0.587 -0.608 -0.117 0.919 -0.913 -0.305 0.093 0.205 -0.042 0.578 -0.904 0.388 -0.590 -0.842 0.267 0.615 -0.501 -0.442 -0.045 0.880 -1.139 -0.822 -0.822 0.985 -0.170 -0.072 0.117 0.479 -0.812 -0.089 0.558 -0.251 -0.420 -1.459 -0.118 1.077 -0.722 -0.308 0.142 0.312 -0.239 0.161 -0.264 0.504 -0.663 -0.299 0.264 0.466 -0.724 -0.757 0.048 1.014 -1.494 -0.276 -0.813 1.103 -1.130 0.234 -0.372 0.439 -0.525 0.196 -0.175 0.541 -0.963 -0.496 -0.231 0.919 -0.869 0.168 -0.412 0.441 -0.381 0.450 -1.272 0.758 -0.920 -0.324 0.052 0.631 -0.700 -0.656 -0.341 0.951 -0.639 0.365 -1.013 0.446 -0.227 -0.011 -0.250 0.597 -0.613 0.358 0.246 -0.214 -0.576 -0.408 -1.004 1.064 -0.607 -0.258 -0.459 0.833 -0.611 0.316 -0.649 0.583 -0.691 -0.245 -0.070 0.648 -0.653 -0.775 -0.125 1.012 -1.055 . . . . 0.266 -0.051 0.282 -0.698 . . . . -1.040 -0.303 1.112 -0.888 0.023 -1.254 0.585 0.090 0.632 -0.577 0.293 -0.850 -0.688 0.178 0.348 -0.036 -0.440 -0.061 0.808 -0.855 . . . . -0.056 0.050 0.305 -0.381 0.027 -0.076 0.436 -0.557 -0.508 -0.923 1.077 -0.601 0.014 -0.102 0.483 -0.599 0.002 -0.059 0.417 -0.508 0.109 -0.183 0.488 -0.649 -1.284 -0.507 1.216 -0.829 -0.054 -0.719 0.708 -0.330 0.662 0.061 -0.801 -0.322 0.397 0.039 0.168 -0.911 -0.644 -0.290 0.859 -0.456 0.422 -0.512 0.207 -0.315 0.812 -0.188 -0.603 -0.500 -0.047 -0.047 0.690 -1.147 -0.721 0.092 0.824 -0.843 0.285 -0.830 0.524 -0.356 0.867 0.022 -0.686 -0.892 0.218 0.000 0.097 -0.382 -0.548 -0.870 1.012 -0.411 0.350 -0.621 0.138 -0.037 0.547 -0.005 -0.610 -0.172 0.122 -0.221 0.347 -0.355 -0.830 -0.368 1.121 -1.037 -0.119 -0.231 0.722 -0.793 0.382 0.499 -0.910 -0.411 0.230 -0.134 0.255 -0.469 -0.845 -0.118 0.909 -0.636 0.131 -0.212 0.407 -0.482 0.619 -0.415 -0.381 -0.079 0.396 -0.132 0.335 -0.971 -0.382 0.003 0.786 -0.984 0.089 -0.844 0.603 -0.216 0.134 0.277 -0.242 -0.242 0.464 0.081 -0.355 -0.355 -0.931 -0.386 1.069 -0.708 -0.279 0.126 0.541 -0.666 0.272 0.305 -0.387 -0.335 0.157 -0.061 0.324 -0.567 -0.737 -0.059 0.947 -0.966 0.152 -0.871 0.886 -1.015 0.617 -0.046 -0.577 -0.274 0.252 0.014 0.379 -1.003 -0.666 -0.251 1.010 -0.955 0.372 -0.404 0.303 -0.481 0.639 -0.560 0.086 -0.508 0.081 -0.074 0.480 -0.743 -0.592 -0.219 0.944 -0.855 0.321 -0.632 0.426 -0.391 0.613 -0.235 -0.192 -0.422 0.362 -0.029 -0.154 -0.259 -0.635 -0.533 1.005 -0.604 0.274 -0.539 0.274 -0.163 0.577 -0.160 -0.322 -0.298 0.208 -0.107 0.289 -0.526 -0.824 -0.337 1.086 -0.945 . . . . 0.727 -0.097 -0.949 -0.165 . . . . -0.636 -0.419 1.037 -0.845 0.127 -0.663 0.659 -0.520 0.525 -0.257 -0.653 0.122 0.052 -0.755 0.737 -0.507 -0.703 -0.459 0.949 -0.459 . . . . 0.465 0.163 -0.889 -0.059 0.268 -0.330 0.569 -0.954 -0.622 -0.783 1.084 -0.622 0.126 -0.160 0.484 -0.700 0.429 0.118 -0.779 -0.022 0.252 -0.387 0.512 -0.695 -0.758 -0.514 1.361 -2.836 frame2 LUT 5 4 4 0 0.000 0.311 -0.174 -0.350 0.122 -0.013 0.254 -1.768 0.607 0.509 -0.174 -0.373 -0.122 -0.344 0.153 -0.159 0.269 0.609 -0.606 -0.614 0.219 -0.081 0.306 -1.000 0.399 -0.014 0.048 -0.028 -0.007 -0.243 0.034 -0.265 0.378 0.809 -0.502 -0.680 -0.123 0.019 0.033 -1.017 0.555 0.509 0.074 -0.398 -0.386 0.000 -0.052 -0.390 0.347 0.171 -0.730 -0.389 0.592 0.065 0.244 -1.437 0.485 0.186 -0.079 0.004 -0.131 -0.485 0.100 -0.900 0.747 0.323 -0.342 -0.205 0.128 0.280 0.000 -1.163 0.421 0.197 0.165 -0.317 -0.105 -0.397 0.103 -0.507 0.549 0.472 -0.151 -1.151 0.335 -0.021 -0.322 -0.613 0.642 0.009 -0.221 0.201 -0.020 -0.677 0.333 -0.461 0.474 0.015 0.445 -0.297 -0.297 -0.356 0.291 -1.146 0.626 0.016 0.601 -0.948 -0.069 -0.620 0.270 -0.620 0.578 0.120 0.025 -0.577 0.293 0.207 0.246 -1.283 0.321 0.200 -0.262 0.165 -0.159 -0.603 0.673 -1.216 0.397 0.638 -0.615 -0.146 -0.173 -0.016 -0.016 -0.306 0.279 0.421 -0.181 -0.085 -0.258 -0.041 0.152 -0.848 0.445 0.531 -0.238 -0.346 -0.120 0.183 0.024 -0.976 0.421 0.238 -0.039 0.082 -0.343 -0.315 0.241 -0.281 0.253 0.527 -0.970 -0.020 0.087 0.458 -0.359 -1.051 0.448 0.707 0.148 -0.892 -0.472 -0.327 -0.484 -0.119 0.648 0.426 -0.093 -0.356 -0.093 0.475 0.288 -1.400 0.015 0.452 -0.375 0.165 -0.434 -0.459 0.504 -0.611 0.263 0.585 -0.763 -0.284 0.123 -0.140 0.287 -1.332 0.561 0.499 -0.183 -0.342 -0.124 -0.707 0.074 -0.007 0.422 0.609 -0.278 -0.931 0.170 0.075 -0.079 -0.596 0.421 0.299 0.005 -0.098 -0.265 -0.748 0.336 -0.294 0.408 0.644 -0.508 -0.563 0.080 0.044 -0.068 -0.964 0.587 0.429 0.235 -0.540 -0.341 -0.715 0.408 -0.347 0.353 0.289 -0.120 -0.409 0.144 0.310 0.093 -1.141 0.310 0.383 0.106 -0.254 -0.357 -1.087 0.258 -0.280 0.594 0.541 -0.237 -0.459 -0.044 0.841 -0.286 -1.731 0.122 0.623 -0.039 -0.361 -0.498 -0.954 0.438 -0.585 0.548 0.521 -0.330 -0.472 0.068 0.290 -0.187 -0.441 0.217 0.238 0.119 -0.023 -0.415 -0.085 -0.125 -0.340 0.433 0.633 -0.738 -0.578 0.239 0.374 -0.282 -0.904 0.430 0.311 0.270 -0.418 -0.313 -0.289 -0.248 -0.120 0.505 0.282 -0.442 -0.506 0.427 0.415 0.454 -1.605 -0.047 0.254 -0.363 0.190 -0.168 -0.284 0.047 -1.238 0.784 0.676 -0.392 -0.314 -0.258 -0.017 0.680 -1.017 -0.127 0.521 0.085 -0.202 -0.656 -0.995 0.399 -0.266 0.430 0.825 -0.666 -0.712 -0.017 0.265 -0.243 -0.449 0.288 -0.031 -0.176 0.166 0.021 -0.217 0.127 -0.947 0.613 -0.183 0.102 -0.041 0.102 -0.425 0.592 -0.888 0.272 0.224 0.616 -0.787 -0.475 -0.960 0.865 -0.601 0.008 0.214 -0.097 -0.179 0.031 -0.251 0.354 -0.543 0.257 0.523 -0.078 -0.168 -0.464 -0.246 0.598 -0.487 -0.105 0.000 -0.322 0.536 -0.415 0.179 -0.143 0.179 -0.268 -0.010 0.415 -0.095 -0.439 -0.496 0.504 0.018 -0.216 0.736 -0.279 -1.121 0.070 -0.059 -0.682 0.326 0.218 0.100 0.238 -0.340 -0.060 -0.313 0.102 -0.383 0.438 0.218 -0.503 -0.280 0.386 -0.233 -0.477 0.333 0.228 0.525 -0.090 -0.722 0.022 -0.616 -0.136 0.326 0.244 0.016 -0.355 -0.743 0.686 0.000 -0.322 -0.659 0.648 0.191 0.040 0.011 -0.282 -0.115 0.247 -0.601 0.300 0.588 -0.634 -0.090 -0.132 0.469 -0.037 -0.963 0.174 0.401 0.111 -0.218 -0.434 -0.550 0.549 -0.483 0.187 0.636 -0.293 -0.906 0.132 -0.126 -0.284 -0.190 0.471 -0.175 0.460 0.003 -0.441 -0.484 0.303 -0.495 0.425 0.570 -0.509 -0.288 -0.010 0.031 -0.268 -0.951 0.705 0.518 -0.026 -0.434 -0.241 -0.548 0.032 -0.449 0.643 0.640 -0.468 -0.345 -0.102 0.109 -0.020 -1.034 0.533 0.183 0.052 -0.036 -0.230 -0.661 0.451 -0.527 0.385 0.186 -0.415 -0.366 0.418 0.217 -0.242 -0.921 0.550 0.508 0.110 -0.291 -0.553 -0.495 0.196 -0.173 0.331 0.607 -0.480 -0.885 0.285 -0.015 -0.051 -0.597 0.468 0.519 0.023 -0.294 -0.444 -0.008 0.037 -0.487 0.340 0.742 -0.703 -0.691 0.130 0.209 -0.599 -0.875 0.712 0.735 -0.032 -0.719 -0.416 -0.060 -0.117 -0.275 0.370 0.369 -0.547 -0.568 0.432 0.065 0.206 -1.189 0.445 0.575 -0.250 -0.212 -0.312 -0.636 0.090 -0.636 0.722 0.428 -0.188 -0.428 0.048 0.291 0.081 -0.860 0.224 0.352 0.446 -0.740 -0.390 -0.828 0.411 -0.565 0.517 0.493 -0.084 -1.127 0.253 -0.143 -0.332 -0.222 0.529 -0.065 0.486 -0.121 -0.466 -0.288 0.340 -0.696 0.376 -0.034 -0.052 0.160 -0.087 -0.203 0.008 -0.888 0.665 -0.320 1.022 -1.012 -0.573 -1.101 0.405 -0.060 0.322 0.247 -0.216 -0.216 0.127 -0.131 0.126 -0.766 0.494 0.239 0.397 -0.311 -0.520 -0.888 0.563 -0.546 0.376 0.360 -0.074 -0.249 -0.112 0.271 -0.051 -0.610 0.229 0.270 -0.156 0.253 -0.503 -1.083 0.529 -0.322 0.362 0.601 -0.345 -0.703 0.113 0.095 -0.487 -0.371 0.531 -0.025 0.047 0.431 -0.652 -0.256 0.308 -0.309 0.159 0.721 -0.897 -0.231 -0.054 0.210 -0.451 -0.995 0.687 0.667 0.042 -0.616 -0.452 -0.295 -0.417 -0.213 0.654 0.247 -0.569 -0.601 0.565 0.080 -0.401 -1.129 0.790 0.177 -0.103 0.316 -0.527 -0.424 0.319 -0.509 0.384 0.443 0.000 -0.893 0.141 0.121 0.220 -1.517 0.483 0.444 0.044 -0.471 -0.174 -1.295 0.493 -0.170 0.374 0.348 -0.088 -0.834 0.293 -0.177 0.009 -0.379 0.422 0.236 0.093 -0.115 -0.265 -0.403 0.280 -0.403 0.348 0.525 -0.256 -0.710 0.153 -0.060 0.063 -1.155 0.629 0.453 0.222 -1.077 -0.012 -0.525 0.143 -0.597 0.623 0.163 0.098 -0.639 0.225 0.155 -0.105 -1.402 0.658 0.232 -0.075 0.065 -0.268 -0.329 0.103 -0.170 0.311 . . . . . . . . . . . . . . . . 0.670 -0.418 -0.687 0.057 -0.015 0.011 -0.466 0.355 0.405 -0.134 0.049 -0.456 -0.084 -0.018 -0.163 0.234 . . . . . . . . . . . . . . . . 0.404 -0.774 -0.164 0.263 0.329 0.033 -1.256 0.381 0.446 -0.173 -0.006 -0.406 -0.574 0.072 -0.574 0.683 0.389 -0.559 -0.044 0.060 0.364 0.081 -1.051 0.229 0.528 0.020 -0.639 -0.150 -1.142 0.539 -0.023 0.150 0.664 -0.419 -0.899 0.178 0.108 -0.332 -0.546 0.529 -0.034 0.119 0.251 -0.421 -0.558 0.594 -0.748 0.282 0.221 -0.011 -0.404 0.120 -0.295 0.349 -1.010 0.500 0.319 0.541 -0.865 -0.418 -1.243 1.018 -0.287 -0.448 -0.067 -0.138 -0.459 0.495 -0.170 0.084 -0.700 0.522 0.420 -0.116 0.008 -0.447 -1.064 0.798 -0.823 0.284 . . . . . . . . . . . . . . . . 0.766 -0.737 -0.308 -0.164 0.319 -0.106 -0.338 0.046 0.252 -0.434 0.498 -0.607 -0.540 0.239 -0.318 0.411 0.634 -0.171 -0.573 -0.171 0.245 -0.569 -0.354 0.442 0.354 0.117 -0.155 -0.436 -0.360 -0.476 -0.083 0.640 -0.301 -0.649 -0.649 0.936 0.142 0.390 -0.858 0.049 0.359 -0.056 0.220 -0.759 -1.301 0.351 -0.109 0.476 0.502 -0.913 0.267 -0.235 0.193 -0.155 -0.708 0.430 0.433 0.070 -0.193 -0.464 -1.170 0.748 -1.018 0.468 0.447 -0.111 -0.669 0.114 0.137 -0.266 -0.435 0.411 0.225 -0.047 0.051 -0.272 -0.493 0.108 -0.533 0.605 0.471 -0.529 -0.529 0.295 0.026 0.026 -1.224 0.618 0.483 0.366 -0.763 -0.466 -0.890 0.229 -0.225 0.519 0.327 -0.543 -0.231 0.272 0.256 0.182 -1.844 0.478 0.489 -0.085 -0.093 -0.483 -0.779 0.347 -0.484 0.516 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.511 0.592 -0.519 -1.435 1.352 -1.055 -1.486 -0.716 -1.918 -2.339 1.682 -1.607 -8.293 -8.293 1.997 -8.293 -8.293 -8.293 -8.293 1.997 1.416 -2.539 -0.473 -1.185 1.051 -0.293 -2.271 -0.144 -0.754 -1.423 1.251 -0.614 -0.480 -0.104 -1.206 0.940 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.778 -0.726 -0.734 0.110 0.534 -0.290 -0.926 0.273 0.417 -0.396 -0.395 0.195 0.208 -0.535 -0.370 0.466 0.504 -0.404 -0.565 0.201 0.546 -0.225 -0.621 0.048 0.284 -0.347 0.019 -0.024 0.045 -0.525 -0.122 0.438 0.715 -1.046 -0.360 0.131 0.569 -0.393 -1.112 0.370 0.340 -0.416 -0.277 0.213 0.076 -0.765 -0.273 0.613 0.416 -0.768 -0.677 0.539 0.427 -0.200 -0.979 0.353 0.061 -0.264 -0.208 0.331 0.130 -0.635 -0.473 0.624 0.551 -0.458 -0.341 0.024 0.611 -0.301 -0.618 0.015 0.202 -0.161 -0.373 0.243 0.066 -0.399 0.154 0.114 0.305 -0.082 -0.692 0.264 0.430 0.001 -0.803 0.110 0.067 -0.003 -0.264 0.166 -0.120 -0.122 -0.010 0.223 0.367 -0.348 -0.088 -0.024 0.284 -0.076 -0.060 -0.194 0.184 0.075 -0.501 0.142 0.117 -0.468 0.247 0.009 0.076 -0.068 -0.198 0.164 0.121 0.152 -0.717 0.256 0.275 -0.154 -0.724 0.362 -0.185 -0.413 -0.002 0.455 0.649 -0.638 -0.254 -0.072 0.456 -0.439 -0.442 0.208 0.649 -0.423 -0.230 -0.262 0.059 -0.345 -0.088 0.299 0.291 -0.460 -0.051 0.117 0.493 -0.290 -0.529 0.115 0.378 -0.088 -0.150 -0.220 0.232 -0.412 -0.085 0.178 0.310 -0.906 0.217 0.090 0.300 -0.132 -0.494 0.197 0.373 -0.476 -0.053 0.031 0.293 -0.877 0.104 0.208 0.038 -0.240 -0.039 0.206 0.466 -0.298 -0.711 0.257 0.154 -0.274 -0.168 0.228 -0.230 -0.488 -0.087 0.578 0.556 -0.899 -0.566 0.399 0.498 -0.607 -1.069 0.541 0.183 -0.256 -0.518 0.410 0.535 -0.860 -0.258 0.219 0.251 -0.394 -0.541 0.445 0.562 -0.354 -0.802 0.224 0.587 -0.518 -0.338 0.013 -0.091 -0.166 -0.041 0.261 0.358 -0.812 -0.641 0.592 0.645 -0.556 -1.213 0.406 0.340 -0.362 -0.457 0.296 0.035 -0.774 0.075 0.420 0.318 -0.685 -0.376 0.445 0.350 -0.259 -0.791 0.392 0.091 -0.221 -0.329 0.357 -0.220 -0.543 -0.115 0.615 0.454 -0.339 -0.676 0.279 0.284 -0.060 -0.836 0.337 0.149 -0.102 -0.374 0.249 -0.026 -0.280 -0.244 0.433 0.228 0.006 -0.636 0.240 0.462 -0.146 -0.482 0.003 -0.157 0.184 -0.233 0.158 -0.035 -0.263 0.024 0.231 0.319 -0.842 -0.139 0.364 0.438 -0.121 -0.898 0.250 0.038 -0.222 -0.494 0.491 0.129 -0.730 -0.047 0.417 0.035 -0.522 -0.672 0.724 0.317 -0.158 -0.784 0.353 -0.164 0.008 -0.348 0.397 -0.307 -0.500 -0.234 0.708 0.595 -0.265 -0.601 -0.002 0.140 0.357 -0.572 -0.082 -0.063 0.237 -0.434 0.168 -0.341 -0.005 0.003 0.278 0.229 0.165 -0.817 0.188 -0.063 0.489 -0.831 0.107 -0.287 0.429 -0.254 -0.008 -0.364 0.373 -0.435 0.249 0.006 -0.333 -0.115 0.354 -0.290 0.600 -0.177 -0.356 -0.186 0.482 -0.525 0.041 -0.443 0.109 -0.006 0.251 0.233 -0.220 -0.274 0.188 -0.431 0.489 -0.728 0.323 0.057 0.041 -0.488 0.284 -0.630 -0.139 -0.208 0.660 0.393 -0.350 -0.373 0.176 -0.029 -0.123 0.283 -0.176 0.146 0.035 -0.043 -0.155 -0.689 0.475 -0.160 0.130 -0.099 0.133 -0.188 0.128 -0.117 -0.507 0.635 -0.286 -0.316 0.576 -0.204 -0.254 -0.440 0.090 0.133 0.141 0.057 -0.551 0.112 0.258 -0.465 0.083 0.472 -0.272 0.027 0.137 -0.106 -0.070 -0.356 -0.386 0.205 0.379 -0.173 0.269 -0.358 0.174 -0.127 -0.004 0.112 0.009 -0.286 0.035 -0.138 0.318 -0.632 -0.281 -0.059 0.652 0.466 -0.554 -0.840 0.463 0.195 -0.304 -1.112 0.662 -0.061 0.220 -0.737 0.352 0.321 -0.455 -0.304 0.277 0.151 -0.095 -0.688 0.414 0.137 -0.041 -0.816 0.444 -0.092 0.337 -0.718 0.251 -0.581 0.530 -0.340 0.134 0.481 -0.610 -0.603 0.368 0.412 -0.326 -1.093 0.488 0.166 -0.174 -0.598 0.412 0.010 -0.486 -0.202 0.495 0.242 -0.505 -0.509 0.495 0.070 -0.103 -1.179 0.658 -0.115 -0.081 -0.411 0.463 -0.539 -0.254 -0.159 0.658 0.649 -0.519 -0.618 0.114 0.517 -0.349 -0.983 0.353 0.441 -0.226 -0.267 -0.064 -0.136 -0.373 -0.306 0.594 0.317 -0.376 -0.443 0.320 0.550 -0.423 -0.469 0.094 0.376 -0.226 -0.085 -0.144 0.004 -0.363 -0.104 0.367 0.266 -1.006 0.343 0.045 0.378 -0.445 -0.696 0.431 0.444 -0.394 -0.125 -0.057 0.282 -0.727 -0.117 0.330 0.320 -0.723 -0.460 0.505 0.111 -0.307 -0.265 0.355 0.212 -0.252 -0.163 0.149 -0.076 -0.571 -0.222 0.605 0.426 -0.371 -0.224 0.040 0.390 -0.169 -0.343 0.016 -0.099 0.419 -0.392 -0.048 -0.248 -0.287 0.300 0.147 0.067 0.044 -0.516 0.290 0.449 -0.078 -0.521 -0.014 -0.486 0.612 -0.178 -0.195 -0.243 0.089 -0.106 0.216 0.031 -0.223 0.216 -0.059 -0.351 0.066 0.496 -0.397 -0.392 0.731 -0.426 -0.261 -0.377 -0.256 0.460 0.025 -0.023 -0.322 0.180 0.114 -0.018 -0.016 -0.327 0.295 -0.026 0.276 -0.517 0.148 -0.229 -0.174 0.053 0.290 0.526 -0.738 -0.105 0.043 0.485 -0.348 -0.318 0.019 0.220 -0.470 0.254 -0.119 -0.310 -0.347 0.150 0.375 0.196 -0.290 -0.133 0.170 0.236 -0.124 -0.056 -0.086 -0.084 -0.089 0.358 -0.261 -0.074 -0.362 0.203 0.164 0.204 -0.703 0.187 0.131 -0.025 0.262 -0.286 -0.004 0.153 -0.610 0.463 -0.227 -0.190 -0.839 0.267 0.444 0.199 -0.265 -0.115 0.133 0.398 -0.224 -0.473 0.145 0.134 -0.326 0.077 0.070 -0.402 -0.578 0.069 0.608 0.342 -0.483 -0.391 0.327 0.289 -0.550 -0.544 0.495 0.016 -0.070 -0.552 0.437 0.118 -0.665 -0.043 0.394 0.223 -0.320 -0.382 0.339 0.489 -0.308 -0.842 0.299 -0.042 -0.012 -0.292 0.287 -0.207 -0.048 -0.107 0.308 0.154 -0.660 -0.170 0.450 0.387 -0.432 -0.547 0.341 0.068 -0.211 -0.349 0.381 -0.262 -0.699 0.287 0.412 0.270 -0.472 -0.217 0.279 0.305 -0.412 -0.734 0.498 0.025 -0.223 -0.164 0.303 -0.423 -0.348 0.056 0.515 0.611 -0.568 -0.923 0.345 0.454 -0.261 -1.382 0.497 0.211 -0.202 -0.427 0.299 0.025 -0.594 -0.534 0.704 0.187 -0.481 -0.400 0.473 0.582 -0.472 -0.976 0.349 -0.037 -0.300 -0.407 0.544 0.297 -0.381 -0.158 0.147 0.359 -0.896 -0.392 0.504 0.328 -0.572 -1.365 0.752 0.349 -0.312 -0.330 0.170 0.348 -0.883 -0.337 0.479 0.012 -0.783 -0.760 0.864 0.337 -0.319 -1.187 0.581 0.021 -0.159 -0.484 0.459 0.037 -0.714 -0.492 0.725 0.486 -0.408 -0.620 0.257 0.439 -0.104 -1.064 0.306 0.134 -0.194 -0.489 0.396 -0.163 0.047 -0.065 0.160 0.187 -0.319 -0.555 0.464 0.062 0.187 -0.864 0.343 -0.115 -0.033 -0.379 0.412 -0.352 0.268 -0.399 0.326 -0.179 -0.695 -0.470 0.829 -0.154 0.293 -0.328 0.111 0.078 -0.094 -0.544 0.402 -0.510 0.186 -0.048 0.254 0.082 -0.471 -0.178 0.418 -0.195 0.026 -0.847 0.634 0.160 -0.184 -0.658 0.453 -0.515 -0.087 -0.065 0.489 0.489 -0.470 -0.615 0.289 0.487 -0.304 -0.756 0.259 0.220 -0.094 -0.370 0.170 -0.290 -0.298 0.100 0.376 0.079 -0.551 -0.077 0.393 0.383 -0.341 -0.664 0.351 -0.074 -0.192 -0.287 0.438 -0.093 -0.411 0.030 0.366 0.248 -0.727 -0.182 0.408 0.415 -0.276 -0.762 0.323 0.142 -0.083 -0.181 0.097 -0.177 -0.652 0.108 0.487 0.074 -0.219 -0.234 0.309 0.447 -0.288 -0.897 0.357 0.003 -0.244 -0.359 0.458 -0.448 -0.345 -0.092 0.624 0.405 -0.708 -0.771 0.564 0.441 -0.409 -1.399 0.595 0.102 -0.217 -0.463 0.423 0.032 -0.493 -0.296 0.539 0.079 -0.517 -0.140 0.419 0.303 -0.195 -1.148 0.528 0.045 -0.265 -0.475 0.503 -0.342 -0.285 -0.205 0.607 0.157 -0.608 -0.439 0.577 0.529 -0.550 -1.280 0.548 0.155 -0.365 -0.383 0.425 -0.199 -0.673 -0.093 0.646 0.219 -0.584 -0.371 0.481 0.205 -0.343 -1.217 0.704 -0.027 -0.273 -0.251 0.434 -0.382 -0.473 -0.340 0.784 Intron LUT 5 4 4 0 0.000 0.612 -0.653 -0.679 0.276 0.583 -0.567 -1.330 0.516 0.321 -0.544 -0.315 0.335 0.147 -0.692 -0.290 0.542 0.362 -0.600 -0.521 0.442 0.638 -0.475 -1.315 0.403 0.240 -0.629 -0.086 0.299 0.024 -0.745 -0.050 0.507 0.652 -1.112 -0.517 0.341 0.685 -0.753 -1.487 0.528 0.180 -0.841 -0.658 0.744 0.172 -0.804 -0.389 0.619 0.235 -0.834 -0.680 0.712 0.487 -0.367 -1.351 0.517 0.033 -0.200 -0.383 0.421 -0.008 -0.665 -0.334 0.662 0.550 -0.534 -0.519 0.198 0.604 -0.495 -1.023 0.355 0.137 -0.444 -0.346 0.463 0.070 -0.569 0.066 0.298 0.259 -0.302 -0.795 0.502 0.424 -0.219 -1.435 0.515 0.084 -0.434 -0.515 0.585 -0.293 -0.455 0.035 0.516 0.209 -0.791 -0.066 0.391 0.422 -0.521 -0.430 0.289 0.084 -0.489 -0.544 0.624 0.176 -0.980 0.128 0.345 0.172 -0.401 -0.155 0.285 0.272 -0.147 -1.017 0.480 0.391 -0.352 -0.945 0.471 -0.217 -0.467 -0.024 0.519 0.667 -0.626 -0.600 0.143 0.551 -0.730 -1.045 0.534 0.367 -0.516 -0.308 0.267 0.019 -0.395 -0.126 0.390 0.235 -0.453 -0.407 0.421 0.520 -0.627 -1.179 0.562 0.177 -0.104 -0.430 0.259 0.169 -0.671 -0.066 0.370 0.301 -0.860 -0.205 0.432 0.502 -0.587 -1.194 0.567 0.380 -0.677 -0.374 0.380 0.592 -1.198 -0.122 0.186 0.054 -0.462 -0.006 0.310 0.519 -0.337 -1.299 0.453 0.193 -0.200 -0.331 0.252 -0.188 -0.474 -0.137 0.578 0.335 -0.715 -0.617 0.563 0.457 -0.714 -1.589 0.753 0.189 -0.408 -0.673 0.565 0.427 -0.928 -0.193 0.328 0.286 -0.599 -0.576 0.536 0.591 -0.632 -1.211 0.502 0.542 -0.820 -0.414 0.296 -0.146 -0.435 0.100 0.361 0.257 -0.829 -0.760 0.724 0.631 -0.721 -1.601 0.599 0.298 -0.428 -0.531 0.417 -0.076 -0.812 -0.012 0.576 0.165 -0.637 -0.399 0.564 0.390 -0.405 -1.303 0.613 0.024 -0.179 -0.375 0.410 -0.270 -0.482 -0.083 0.595 0.388 -0.520 -0.770 0.493 0.446 -0.534 -1.227 0.604 0.065 -0.452 -0.139 0.395 -0.101 -0.384 -0.179 0.504 0.175 -0.247 -0.608 0.457 0.545 -0.429 -0.833 0.308 -0.065 -0.053 -0.210 0.282 -0.042 -0.579 0.106 0.360 0.436 -1.066 -0.448 0.523 0.508 -0.454 -1.297 0.527 -0.185 -0.804 -0.759 0.968 0.135 -1.008 -0.185 0.608 -0.043 -0.510 -0.615 0.744 0.379 -0.425 -1.177 0.597 -0.145 -0.025 -0.408 0.442 -0.269 -0.632 -0.211 0.732 0.634 -0.546 -0.719 0.209 0.415 0.037 -1.151 0.252 -0.113 -0.345 -0.041 0.396 -0.231 -0.428 0.117 0.401 0.311 -0.277 -0.780 0.435 -0.193 0.449 -1.270 0.428 -0.198 0.206 -0.613 0.401 -0.400 0.023 -0.277 0.486 0.108 -0.978 -0.183 0.617 0.040 0.163 -0.279 0.040 -0.322 0.263 -0.661 0.452 -0.277 -0.175 -0.265 0.542 0.210 -0.334 -0.301 0.308 -0.071 0.146 -1.077 0.553 0.144 -0.125 -0.546 0.371 -0.664 -0.412 -0.119 0.762 0.449 -0.433 -0.766 0.386 0.310 -0.253 -0.004 -0.114 0.037 -0.306 -0.051 0.263 -0.814 0.140 -0.026 0.429 -0.294 -0.138 -0.078 0.409 -0.024 -0.332 0.298 -0.010 -0.500 0.548 -0.540 0.193 -0.235 -0.188 -0.055 0.389 0.229 -0.796 -0.356 0.556 -0.183 -0.286 0.182 0.220 0.159 -0.376 -0.189 0.306 -0.040 -0.821 0.061 0.504 -0.163 0.091 -0.281 0.285 -0.078 -0.078 -0.146 0.266 -0.420 0.110 -0.257 0.419 -0.640 -0.282 -0.173 0.722 0.402 -0.376 -0.934 0.470 0.266 -0.487 -1.453 0.781 0.057 -0.079 -0.759 0.508 0.153 -0.583 -0.182 0.421 0.075 -0.300 -0.606 0.563 0.239 -0.197 -1.043 0.548 -0.006 -0.032 -0.674 0.485 -0.543 0.234 -0.187 0.332 0.462 -0.627 -0.917 0.531 0.511 -0.484 -1.264 0.529 0.098 -0.407 -0.712 0.647 -0.033 -0.693 -0.219 0.627 0.105 -0.411 -0.543 0.571 0.298 -0.266 -1.583 0.683 -0.038 -0.181 -0.465 0.505 -0.415 -0.328 -0.196 0.660 0.547 -0.629 -0.709 0.356 0.532 -0.586 -1.542 0.628 0.252 -0.545 -0.117 0.265 -0.158 -0.555 -0.323 0.700 0.363 -0.529 -0.637 0.463 0.653 -0.524 -1.276 0.399 0.196 -0.149 -0.219 0.128 -0.004 -0.526 -0.056 0.429 0.307 -0.883 -0.130 0.386 0.466 -0.653 -1.331 0.665 0.178 -0.834 -0.361 0.613 0.396 -1.014 -0.223 0.414 0.215 -0.770 -0.445 0.602 0.145 -0.529 -0.724 0.674 0.152 -0.217 -0.217 0.223 -0.168 -0.615 -0.116 0.618 0.339 -0.506 -0.464 0.385 0.518 -0.478 -0.896 0.393 0.025 -0.066 -0.325 0.297 -0.143 -0.642 0.272 0.318 0.058 -0.431 -0.691 0.676 0.283 -0.054 -1.104 0.438 -0.301 0.092 -0.152 0.290 -0.200 -0.433 -0.018 0.486 0.069 -0.338 -0.290 0.425 -0.223 -0.412 0.343 0.168 -0.343 0.187 -0.343 0.361 -0.338 -0.583 0.587 0.055 0.050 -0.496 0.130 0.216 0.165 -0.193 -0.750 0.495 0.109 0.060 -0.741 0.357 -0.253 -0.385 0.082 0.418 0.580 -0.695 -0.329 0.126 0.536 -0.491 -0.871 0.369 0.158 -0.528 0.019 0.236 -0.302 -0.450 0.140 0.439 0.219 -0.392 -0.480 0.440 0.433 -0.630 -0.687 0.468 -0.209 -0.274 0.027 0.366 -0.076 -0.586 0.143 0.358 0.234 -0.670 -0.230 0.425 0.424 -0.415 -0.532 0.283 0.090 -0.685 0.419 -0.034 0.112 -1.082 0.002 0.532 0.333 -0.237 -0.396 0.178 0.510 -0.242 -1.115 0.343 0.230 -0.163 -0.226 0.109 -0.409 -0.578 0.014 0.648 0.234 -0.522 -0.195 0.327 0.375 -0.691 -0.778 0.586 0.006 -0.245 -0.463 0.513 0.009 -0.851 -0.017 0.537 0.223 -0.470 -0.554 0.516 0.475 -0.576 -1.327 0.624 -0.044 -0.044 -0.265 0.297 -0.310 -0.463 0.078 0.498 0.163 -0.911 -0.230 0.581 0.445 -0.795 -0.679 0.524 0.051 -0.235 -0.672 0.572 -0.411 -0.956 0.302 0.585 0.162 -0.565 -0.147 0.381 0.261 -0.424 -1.129 0.677 0.058 -0.288 -0.239 0.370 -0.424 -0.302 0.020 0.515 0.549 -0.504 -0.985 0.408 0.421 -0.291 -1.782 0.635 0.090 -0.310 -0.479 0.497 -0.040 -0.693 -0.405 0.726 0.198 -0.758 -0.404 0.590 0.619 -0.592 -1.428 0.515 -0.143 -0.143 -0.379 0.506 0.056 -0.531 0.003 0.341 0.387 -0.994 -0.501 0.569 0.459 -0.712 -1.872 0.801 0.406 -0.556 -0.415 0.316 0.258 -0.926 -0.425 0.616 -0.174 -0.752 -0.809 0.963 0.336 -0.434 -1.479 0.713 -0.047 -0.091 -0.576 0.508 -0.021 -0.717 -0.443 0.741 0.394 -0.466 -0.714 0.436 0.446 -0.371 -1.475 0.589 0.048 -0.429 -0.434 0.569 -0.129 -0.252 0.037 0.286 0.106 -0.723 -0.667 0.756 0.059 0.110 -1.148 0.514 -0.118 -0.222 -0.575 0.632 -0.267 -0.354 -0.125 0.555 -0.271 -0.898 -0.717 1.019 0.142 -0.030 -0.688 0.375 -0.091 -0.379 -0.556 0.689 -0.407 -0.163 0.040 0.406 0.025 -0.572 -0.137 0.486 -0.014 -0.342 -1.107 0.813 0.220 -0.362 -0.637 0.499 -0.463 -0.239 0.027 0.494 0.415 -0.390 -0.796 0.409 0.593 -0.418 -1.560 0.490 0.109 -0.118 -0.417 0.323 -0.235 -0.414 0.061 0.440 -0.076 -0.709 0.124 0.433 0.497 -0.512 -1.346 0.579 -0.127 -0.215 -0.309 0.502 -0.151 -0.570 -0.011 0.519 0.243 -0.868 -0.350 0.569 0.616 -0.667 -1.134 0.467 0.180 -0.560 -0.033 0.277 0.006 -0.834 -0.053 0.557 -0.036 -0.311 -0.085 0.351 0.497 -0.338 -1.259 0.465 0.018 -0.180 -0.362 0.408 -0.444 -0.291 -0.142 0.624 0.228 -0.547 -0.746 0.630 0.407 -0.428 -1.677 0.695 0.053 -0.307 -0.518 0.541 -0.102 -0.568 -0.165 0.587 0.011 -0.678 -0.089 0.513 0.417 -0.510 -1.486 0.683 0.045 -0.456 -0.456 0.595 -0.353 -0.557 -0.072 0.665 0.153 -0.661 -0.621 0.683 0.618 -0.744 -1.690 0.640 0.040 -0.377 -0.496 0.578 -0.309 -0.738 -0.138 0.753 0.002 -0.481 -0.310 0.561 0.180 -0.380 -1.600 0.823 -0.116 -0.237 -0.363 0.537 -0.403 -0.482 -0.239 0.749 Start SDT 3 0 4 2 0.000 ATG WMM 12 6 4 0 0.000 -0.278 -0.346 0.714 -0.417 -0.721 0.908 -0.381 -0.417 0.517 0.034 0.301 -1.677 0.387 -1.721 1.099 -2.021 0.112 1.131 -1.399 -1.473 -0.151 0.619 0.555 -3.262 1.993 -6.721 -6.721 -6.721 -6.721 -6.721 -6.721 1.993 -6.721 -6.721 1.993 -6.721 -1.262 -2.198 1.578 -1.364 -0.364 1.296 -1.077 -1.721 -1.767 -0.245 1.204 -0.814 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 -0.234 -0.288 0.471 -0.082 0.181 -0.181 -0.465 0.333 -0.741 0.566 0.141 -0.288 -0.034 -0.465 0.369 0.011 0.404 0.259 -1.082 0.011 -0.529 0.712 -0.288 -0.234 -4.989 -4.989 -4.989 1.966 1.966 -4.989 -4.989 -4.989 1.966 -4.989 -4.989 -4.989 TAG WMM 9 6 4 0 0.000 -0.275 -0.275 0.725 -0.527 0.439 0.035 -0.527 -0.112 -1.012 0.754 0.291 -0.749 -0.218 -0.112 0.169 0.126 0.782 -0.395 -0.919 -0.012 -1.749 0.964 0.035 -0.459 -4.919 -4.919 -4.919 1.964 1.964 -4.919 -4.919 -4.919 -4.919 -4.919 1.964 -4.919 TGA WMM 9 6 4 0 0.000 0.445 -0.600 0.030 -0.063 0.468 0.089 -0.197 -0.555 -0.555 0.693 0.146 -0.747 0.227 -0.697 0.352 -0.095 0.615 0.227 -0.800 -0.467 -1.162 0.937 -0.197 -0.385 -5.555 -5.555 -5.555 1.977 -5.555 -5.555 1.977 -5.555 1.977 -5.555 -5.555 -5.555 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/fly0000644000175000017500000022516411424066010014074 0ustar moellermoellerzoeHMM D.melanogster 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.750831 Inter Esngl 0.249169 Inter ORF 1 Intron Eterm 0.233230 Intron Exon 0.766770 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.429204 0.378319 0.192478 0.576562 0.245312 0.178125 0.580508 0.243644 0.175847 0.604278 0.192513 0.203209 0.755396 0.244604 0.769829 0.230171 0.783080 0.216920 Einit 2 DEFINED 0 249 -9.107 -9.047 -8.989 -8.934 -8.880 -8.829 -8.779 -8.731 -8.685 -8.640 -8.596 -8.551 -8.507 -8.464 -8.423 -8.383 -8.344 -8.305 -8.268 -8.232 -8.197 -8.162 -8.129 -8.096 -8.064 -8.032 -8.001 -7.971 -7.942 -7.913 -7.884 -7.855 -7.825 -7.797 -7.769 -7.742 -7.715 -7.688 -7.662 -7.637 -7.612 -7.620 -7.627 -7.635 -7.643 -7.651 -7.659 -7.667 -7.675 -7.683 -7.692 -7.698 -7.705 -7.711 -7.718 -7.725 -7.731 -7.738 -7.745 -7.752 -7.759 -7.762 -7.766 -7.769 -7.772 -7.776 -7.779 -7.783 -7.786 -7.790 -7.793 -7.831 -7.869 -7.909 -7.949 -7.991 -8.034 -8.078 -8.124 -8.171 -8.220 -8.204 -8.187 -8.171 -8.155 -8.140 -8.124 -8.109 -8.094 -8.078 -8.064 -8.053 -8.042 -8.032 -8.022 -8.011 -8.001 -7.991 -7.981 -7.971 -7.961 -7.965 -7.969 -7.973 -7.977 -7.981 -7.985 -7.989 -7.993 -7.997 -8.001 -8.022 -8.042 -8.064 -8.085 -8.107 -8.129 -8.151 -8.174 -8.197 -8.220 -8.244 -8.268 -8.293 -8.318 -8.344 -8.370 -8.396 -8.423 -8.451 -8.479 -8.496 -8.513 -8.530 -8.548 -8.566 -8.584 -8.603 -8.621 -8.640 -8.659 -8.675 -8.692 -8.708 -8.725 -8.742 -8.759 -8.776 -8.793 -8.811 -8.829 -8.840 -8.851 -8.862 -8.873 -8.884 -8.895 -8.907 -8.918 -8.930 -8.942 -8.977 -9.013 -9.051 -9.089 -9.129 -9.169 -9.211 -9.254 -9.298 -9.344 -9.338 -9.333 -9.328 -9.323 -9.318 -9.313 -9.308 -9.303 -9.298 -9.293 -9.308 -9.323 -9.338 -9.354 -9.370 -9.385 -9.401 -9.418 -9.434 -9.451 -9.473 -9.496 -9.519 -9.542 -9.566 -9.590 -9.615 -9.640 -9.666 -9.692 -9.653 -9.615 -9.578 -9.542 -9.507 -9.473 -9.439 -9.407 -9.375 -9.344 -9.380 -9.418 -9.456 -9.496 -9.536 -9.578 -9.621 -9.666 -9.711 -9.759 -9.772 -9.786 -9.800 -9.815 -9.829 -9.844 -9.858 -9.873 -9.888 -9.903 -9.880 -9.858 -9.836 -9.815 -9.793 -9.772 -9.752 -9.731 -9.711 -9.692 -9.705 -9.718 -9.731 -9.745 -9.759 -9.772 -9.786 -9.800 -9.815 GEOMETRIC 250 -1 256 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.254 -10.161 -10.073 -9.991 -9.913 -9.839 -9.768 -9.701 -9.637 -9.576 -9.517 -9.499 -9.482 -9.466 -9.449 -9.433 -9.416 -9.400 -9.384 -9.369 -9.353 -9.369 -9.384 -9.400 -9.416 -9.433 -9.449 -9.466 -9.482 -9.499 -9.517 -9.488 -9.460 -9.433 -9.406 -9.379 -9.353 -9.328 -9.303 -9.278 -9.254 -9.239 -9.225 -9.211 -9.197 -9.183 -9.170 -9.156 -9.143 -9.129 -9.116 -9.094 -9.073 -9.052 -9.031 -9.011 -8.991 -8.971 -8.951 -8.932 -8.913 -8.909 -8.905 -8.901 -8.898 -8.894 -8.890 -8.886 -8.883 -8.879 -8.875 -8.853 -8.831 -8.810 -8.789 -8.768 -8.748 -8.728 -8.708 -8.688 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.631 -8.624 -8.618 -8.612 -8.606 -8.600 -8.594 -8.588 -8.582 -8.576 -8.570 -8.564 -8.558 -8.552 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.546 -8.543 -8.540 -8.537 -8.534 -8.531 -8.528 -8.525 -8.522 -8.520 -8.517 -8.537 -8.558 -8.579 -8.600 -8.621 -8.643 -8.665 -8.688 -8.711 -8.734 -8.728 -8.721 -8.714 -8.708 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.650 -8.631 -8.612 -8.594 -8.576 -8.558 -8.540 -8.522 -8.505 -8.488 -8.508 -8.528 -8.549 -8.570 -8.591 -8.612 -8.634 -8.656 -8.678 -8.701 -8.695 -8.688 -8.682 -8.675 -8.669 -8.662 -8.656 -8.650 -8.643 -8.637 -8.640 -8.643 -8.646 -8.650 -8.653 -8.656 -8.659 -8.662 -8.665 -8.669 -8.685 -8.701 -8.718 -8.734 -8.751 -8.768 -8.785 -8.803 -8.821 -8.839 -8.860 -8.883 -8.905 -8.928 -8.951 -8.975 -8.999 -9.023 -9.048 -9.073 -9.103 -9.134 -9.165 -9.197 -9.230 -9.263 -9.298 -9.333 -9.369 -9.406 -9.384 -9.364 -9.343 -9.323 -9.303 -9.283 -9.263 -9.244 -9.225 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.206 -9.225 -9.244 -9.263 -9.283 -9.303 -9.323 -9.343 -9.364 -9.384 GEOMETRIC 250 -1 417 Exon 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 378 ORF 2 DEFINED 0 249 -9.422 -9.557 -9.704 -9.869 -10.055 -10.269 -10.520 -10.824 -11.209 -11.736 -12.576 -12.492 -12.413 -12.337 -12.266 -12.198 -12.133 -12.070 -12.011 -11.953 -11.898 -11.785 -11.681 -11.583 -11.492 -11.406 -11.325 -11.249 -11.176 -11.106 -11.040 -10.925 -10.819 -10.720 -10.628 -10.541 -10.459 -10.381 -10.307 -10.237 -10.170 -10.112 -10.055 -10.001 -9.949 -9.898 -9.849 -9.802 -9.757 -9.712 -9.669 -9.622 -9.576 -9.532 -9.489 -9.447 -9.406 -9.367 -9.328 -9.291 -9.254 -9.206 -9.159 -9.114 -9.070 -9.028 -8.986 -8.946 -8.907 -8.869 -8.832 -8.808 -8.783 -8.760 -8.736 -8.713 -8.691 -8.668 -8.646 -8.625 -8.604 -8.581 -8.558 -8.536 -8.514 -8.493 -8.472 -8.451 -8.431 -8.410 -8.390 -8.368 -8.347 -8.325 -8.304 -8.283 -8.263 -8.243 -8.223 -8.203 -8.184 -8.170 -8.157 -8.143 -8.130 -8.117 -8.104 -8.091 -8.078 -8.065 -8.053 -8.042 -8.032 -8.021 -8.011 -8.000 -7.990 -7.980 -7.970 -7.960 -7.950 -7.939 -7.928 -7.917 -7.906 -7.895 -7.885 -7.874 -7.864 -7.853 -7.843 -7.837 -7.832 -7.827 -7.821 -7.816 -7.811 -7.805 -7.800 -7.795 -7.790 -7.793 -7.797 -7.801 -7.804 -7.808 -7.812 -7.815 -7.819 -7.823 -7.827 -7.836 -7.845 -7.854 -7.864 -7.873 -7.882 -7.892 -7.902 -7.911 -7.921 -7.932 -7.944 -7.956 -7.967 -7.979 -7.991 -8.003 -8.016 -8.028 -8.040 -8.055 -8.070 -8.086 -8.101 -8.117 -8.133 -8.149 -8.165 -8.181 -8.198 -8.224 -8.250 -8.277 -8.304 -8.332 -8.361 -8.390 -8.419 -8.449 -8.480 -8.496 -8.511 -8.527 -8.542 -8.558 -8.574 -8.591 -8.607 -8.624 -8.641 -8.669 -8.699 -8.728 -8.759 -8.790 -8.821 -8.854 -8.887 -8.921 -8.956 -8.982 -9.008 -9.035 -9.063 -9.091 -9.119 -9.149 -9.178 -9.209 -9.240 -9.253 -9.266 -9.279 -9.292 -9.306 -9.319 -9.333 -9.347 -9.361 -9.375 -9.381 -9.387 -9.394 -9.400 -9.406 -9.413 -9.419 -9.426 -9.432 -9.439 -9.449 -9.459 -9.469 -9.479 -9.489 -9.499 -9.509 -9.520 -9.530 GEOMETRIC 250 -1 339 Acceptor SDT 2 1 4 2 0.000 AG SAM 40 36 4 40 0.000 I-37 LUT 3 2 4 0 0.000 0.558 -0.604 -0.566 0.257 0.401 0.014 -0.780 0.121 0.109 -0.083 -1.154 0.612 0.139 -0.693 -0.408 0.610 0.305 -0.358 -0.773 0.484 0.856 -0.222 -0.933 -0.305 0.707 -1.615 -0.807 0.555 0.512 -0.453 -0.758 0.324 0.652 -1.070 -1.222 0.608 0.415 -0.170 -1.170 0.415 0.234 -0.087 -0.503 0.234 0.079 -0.821 -0.143 0.557 0.671 -0.780 -0.932 0.380 0.072 0.024 -0.561 0.327 0.468 -0.197 -0.532 0.074 0.090 -0.669 -0.254 0.554 I-36 LUT 3 2 4 0 0.000 0.515 -0.222 -1.037 0.295 0.234 -0.350 -1.087 0.650 0.368 -0.080 -0.539 0.105 0.060 -0.512 -0.512 0.636 0.439 -0.112 -1.597 0.473 0.528 0.218 -0.967 -0.178 0.387 0.206 -1.379 0.206 0.057 -0.184 -0.943 0.642 0.608 -0.907 -1.014 0.534 0.415 -0.459 -0.874 0.479 -0.030 0.086 -0.615 0.385 -0.149 -0.865 0.328 0.372 0.524 -0.337 -1.415 0.481 0.468 0.346 -1.157 -0.157 0.510 -0.186 -0.585 0.043 0.129 -0.445 -0.544 0.571 I-35 LUT 3 2 4 0 0.000 0.631 -0.789 -0.450 0.190 0.581 -0.711 -0.390 0.176 0.678 -0.222 -1.129 0.119 0.389 -0.652 -0.355 0.348 0.519 -0.907 -0.819 0.553 -0.048 0.300 -0.923 0.350 0.348 -0.290 -0.874 0.447 0.272 -0.336 -0.406 0.316 0.520 -0.640 -0.921 0.482 0.089 -0.134 -0.844 0.554 0.720 -0.213 -0.350 -0.503 0.263 -1.322 -0.404 0.718 0.364 -0.330 -0.610 0.337 0.327 -0.075 -0.635 0.205 0.331 -0.369 -0.867 0.505 0.129 -0.579 -0.937 0.778 I-34 LUT 3 2 4 0 0.000 0.548 -0.739 -0.872 0.477 0.429 -0.199 -0.751 0.249 0.650 -0.972 -1.350 0.613 0.224 -0.336 -0.800 0.551 0.448 -0.367 -1.426 0.574 0.575 0.030 -0.854 -0.095 0.978 -0.481 -1.259 -0.159 0.237 -0.256 -0.552 0.381 0.754 -0.865 -0.672 0.186 0.577 -0.182 -0.883 0.117 0.549 -0.036 -0.773 -0.036 0.201 -0.121 0.142 -0.273 0.599 -0.542 -1.307 0.479 -0.268 -0.204 -0.268 0.557 0.441 -0.807 -0.637 0.515 0.129 -0.727 -0.767 0.778 I-33 LUT 3 2 4 0 0.000 0.385 -0.129 -0.510 0.108 0.259 -0.098 -1.157 0.506 0.397 0.156 -1.304 0.220 0.209 -0.322 -0.322 0.316 0.267 0.038 -1.361 0.465 0.642 0.035 -1.773 0.166 0.601 -0.858 -1.051 0.534 0.066 -0.218 -0.218 0.303 0.637 -0.454 -0.729 0.152 0.851 -1.087 -0.865 0.234 0.450 -0.550 -1.036 0.549 0.387 -0.893 -0.531 0.547 0.460 -0.562 -0.977 0.525 0.438 -0.867 -0.954 0.661 0.454 -0.151 -0.987 0.293 0.228 -0.120 -1.094 0.525 I-32 LUT 3 2 4 0 0.000 0.507 -0.407 -1.026 0.415 0.041 0.119 -1.042 0.485 0.307 -0.352 -0.352 0.258 0.206 -1.000 -0.146 0.528 0.448 0.033 -1.311 0.274 0.476 0.139 -0.408 -0.408 0.812 -0.550 -0.550 -0.188 0.320 -0.796 -0.506 0.558 0.566 -0.644 -0.644 0.310 0.505 0.046 -1.632 0.294 -0.087 0.234 -1.087 0.497 0.105 -0.217 -0.539 0.461 0.682 -0.413 -1.622 0.400 0.072 0.072 -0.776 0.394 0.255 -0.309 -0.441 0.337 0.151 -0.579 -0.827 0.728 I-31 LUT 3 2 4 0 0.000 0.335 -0.298 -1.269 0.595 0.415 -0.924 -1.204 0.770 0.454 -0.283 -0.730 0.270 0.279 -0.364 -0.229 0.210 0.247 -0.298 -0.561 0.403 0.517 0.039 -0.681 -0.124 0.678 -0.611 -1.459 0.467 0.308 -0.392 -0.170 0.152 0.508 -0.585 -0.684 0.366 -0.182 0.117 -0.713 0.510 0.787 -0.503 -0.865 0.028 0.744 -1.426 -0.339 0.218 0.562 -0.261 -1.023 0.260 -0.029 0.135 -1.350 0.613 0.259 -0.347 -0.548 0.415 0.052 -0.425 -0.663 0.666 I-30 LUT 3 2 4 0 0.000 0.249 -0.236 -0.821 0.482 0.141 -0.131 -1.667 0.739 0.772 -0.036 -1.773 0.035 0.252 -0.463 -0.463 0.442 0.451 -0.515 -0.737 0.415 0.612 -0.388 -0.668 0.109 0.444 0.163 -1.059 0.057 0.156 -0.322 -0.485 0.456 0.469 -1.379 -0.379 0.547 0.363 -0.807 -0.807 0.652 0.744 -0.104 -0.619 -0.426 0.046 -1.080 -0.732 0.920 0.544 -0.456 -1.206 0.464 0.012 -0.140 -0.807 0.597 0.543 -0.367 -0.924 0.311 0.202 -0.190 -0.730 0.454 I-29 LUT 3 2 4 0 0.000 0.346 -0.218 -1.654 0.634 0.224 -0.176 -1.235 0.606 0.462 -0.170 -1.492 0.462 0.293 -0.665 -0.888 0.681 0.130 -0.548 -0.963 0.773 0.184 -0.340 -0.880 0.614 0.292 0.292 -0.807 -0.030 0.637 -1.000 -0.778 0.445 0.378 -0.700 -0.478 0.452 0.415 0.139 -1.524 0.284 0.637 -0.363 -1.585 0.415 0.286 -0.773 -0.898 0.730 0.539 -0.869 -0.985 0.580 0.110 0.023 -0.890 0.449 0.491 -0.209 -0.546 0.064 0.093 -0.352 -0.263 0.397 I-28 LUT 3 2 4 0 0.000 0.476 -0.109 -1.372 0.373 0.026 -0.533 -1.196 0.891 0.193 -0.019 -1.097 0.488 0.298 -0.287 -0.683 0.409 0.389 -0.428 -1.498 0.672 0.646 -0.276 -0.617 -0.064 0.383 -0.064 -0.202 -0.202 0.061 -0.465 -0.465 0.592 0.278 -0.307 -1.044 0.580 0.204 -0.138 -1.044 0.541 0.697 0.250 -1.624 -0.209 0.308 -1.070 0.000 0.363 0.757 -0.877 -2.034 0.605 0.000 -0.107 -0.052 0.147 0.716 -0.637 -0.720 0.147 0.218 -0.448 -0.579 0.520 I-27 LUT 3 2 4 0 0.000 0.227 -0.630 -1.084 0.776 0.024 -0.025 -1.883 0.790 0.389 -0.322 -1.459 0.611 0.284 -0.231 -0.939 0.494 0.293 0.013 -1.209 0.415 0.451 -0.134 -0.397 -0.056 0.368 -0.047 -0.495 0.046 0.322 -0.193 -1.541 0.615 0.633 -0.807 -1.030 0.473 0.287 -0.182 -1.075 0.510 0.715 -0.478 -0.285 -0.285 0.212 -1.078 -0.441 0.706 0.553 -0.670 -1.544 0.643 0.694 -0.574 -1.333 0.393 0.380 -0.170 -0.977 0.380 0.100 -0.381 -0.540 0.558 I-26 LUT 3 2 4 0 0.000 0.267 -0.200 -1.755 0.705 0.280 -0.348 -2.222 0.837 0.139 0.213 -2.524 0.646 0.238 -0.387 -0.884 0.598 0.585 -0.476 -1.300 0.459 0.450 -0.036 -0.451 -0.110 0.274 -0.104 -0.841 0.381 0.488 -0.607 -1.159 0.578 0.559 -0.482 -1.110 0.430 0.593 -0.761 -1.609 0.654 0.379 0.000 -1.737 0.485 0.574 -0.967 -0.726 0.481 0.978 -0.779 -2.637 0.363 0.256 0.104 -1.896 0.549 0.515 -0.527 -0.914 0.430 0.321 -0.524 -0.939 0.617 I-25 LUT 3 2 4 0 0.000 0.227 0.012 -1.695 0.597 0.142 -0.399 -1.158 0.757 -0.415 0.415 -1.263 0.585 0.317 -0.879 -0.663 0.659 0.356 -0.381 -1.059 0.558 0.081 0.464 -1.443 0.257 0.678 -0.322 -1.544 0.330 0.632 -0.449 -1.150 0.342 0.678 -1.322 -0.862 0.536 -0.373 -0.132 -1.026 0.868 -0.322 -0.644 -0.059 0.678 0.585 -1.138 -1.138 0.670 0.712 -0.500 -1.858 0.464 0.356 0.079 -0.718 0.079 0.559 -0.322 -1.763 0.518 0.198 -0.360 -0.802 0.585 I-24 LUT 3 2 4 0 0.000 0.076 0.076 -1.441 0.607 0.011 -0.269 -1.617 0.877 -0.123 -0.123 -1.346 0.824 0.275 -0.632 -1.495 0.840 0.360 -0.204 -1.268 0.520 0.707 -1.030 -0.914 0.430 0.253 -0.095 -0.970 0.445 0.634 -0.481 -1.066 0.326 0.193 -0.170 -1.392 0.667 -0.064 0.177 -1.524 0.646 0.415 -0.807 -0.070 0.193 0.270 -0.730 -0.868 0.717 1.006 -0.567 -2.304 0.156 0.341 -0.322 -1.000 0.519 0.471 -0.266 -1.336 0.471 0.482 -1.000 -1.387 0.783 I-23 LUT 3 2 4 0 0.000 -0.063 -0.285 -1.963 0.975 -0.042 -0.322 -1.807 0.958 0.135 0.234 -0.865 0.234 0.306 -0.781 -1.026 0.758 0.379 0.057 -2.135 0.517 0.377 -0.097 -1.459 0.488 0.744 -0.841 -1.841 0.574 0.496 -0.478 -0.893 0.415 0.119 -0.042 -0.959 0.515 0.086 -0.155 -1.030 0.633 0.567 -0.433 -2.755 0.705 0.415 -1.222 -1.222 0.856 1.012 -0.573 -2.471 0.178 -0.068 -0.376 -1.598 0.960 0.491 -0.303 -1.888 0.598 0.429 -0.528 -1.184 0.604 I-22 LUT 3 2 4 0 0.000 0.193 -0.113 -1.988 0.749 0.101 -0.408 -1.787 0.914 -0.392 0.067 -1.392 0.856 0.126 -0.311 -0.983 0.675 0.515 -0.807 -1.030 0.595 0.522 0.037 -1.478 0.238 0.700 0.459 -1.415 -0.678 0.883 -0.799 -0.924 0.076 -0.181 -0.087 -1.503 0.867 -0.188 -0.550 -1.358 1.035 0.322 0.807 -2.000 -0.415 -0.129 -0.670 -1.129 1.000 0.918 -0.729 -2.170 0.363 0.329 0.081 -2.112 0.541 0.794 -0.404 -1.170 0.093 0.325 -0.514 -1.085 0.656 I-21 LUT 3 2 4 0 0.000 0.065 -0.006 -2.719 0.853 -0.242 0.379 -1.943 0.672 -0.555 0.352 -2.555 0.905 0.210 -0.568 -0.712 0.640 0.652 -0.107 -2.485 0.402 0.234 -0.239 -0.709 0.449 0.193 0.515 -1.222 0.000 0.809 -0.614 -1.557 0.328 0.370 -0.700 -1.022 0.678 -0.064 -0.716 -1.939 1.120 -1.170 -0.170 -1.170 1.152 0.415 -0.865 -1.087 0.720 0.936 -0.746 -3.409 0.481 0.284 -0.021 -1.021 0.383 0.101 -0.278 -0.793 0.610 0.309 -0.691 -0.892 0.680 I-20 LUT 3 2 4 0 0.000 0.249 -0.153 -2.260 0.768 0.337 -0.733 -1.248 0.778 0.193 0.363 -1.807 0.363 0.173 -0.525 -0.769 0.670 0.206 -0.453 -2.700 0.972 0.325 -0.170 -0.822 0.371 0.343 0.343 -1.358 0.102 0.673 -1.209 -1.402 0.673 0.447 -0.138 -1.459 0.447 0.193 -1.030 -1.615 1.029 -0.392 0.193 -1.392 0.778 0.276 -1.926 -0.078 0.659 1.046 -0.954 -2.369 0.294 0.222 -0.322 -1.000 0.617 0.685 -0.693 -0.899 0.307 0.055 -0.631 -0.482 0.678 I-19 LUT 3 2 4 0 0.000 0.337 -0.090 -2.948 0.738 0.130 -0.478 -1.411 0.858 0.126 -0.722 -2.044 1.043 0.133 -0.199 -0.784 0.538 0.496 -0.843 -1.761 0.797 0.531 -0.363 -0.710 0.222 0.146 0.146 -0.555 0.146 0.263 -0.368 -0.862 0.561 0.524 -0.415 -1.678 0.585 0.159 -0.104 -0.619 0.381 0.193 -0.070 -0.807 0.415 -0.298 -0.883 -0.298 0.872 1.031 -0.630 -3.839 0.311 0.441 -0.284 -1.485 0.550 0.251 -0.749 -0.597 0.636 0.372 -0.476 -1.128 0.613 I-18 LUT 3 2 4 0 0.000 -0.028 0.038 -2.221 0.830 0.175 -0.147 -0.431 0.294 -0.115 0.107 -1.115 0.621 0.276 -0.089 -0.842 0.368 0.199 -0.170 -1.948 0.769 0.436 -0.181 -0.766 0.234 -0.115 0.174 -1.285 0.621 0.118 -0.426 -0.841 0.689 0.459 -1.000 -1.415 0.807 0.890 -0.358 -1.036 -0.188 -0.459 -0.044 -1.459 0.956 0.067 -1.222 -0.305 0.778 0.974 -1.078 -2.833 0.507 0.000 -0.080 -0.962 0.623 -0.255 0.144 -1.014 0.643 0.109 -0.703 -0.522 0.688 I-17 LUT 3 2 4 0 0.000 0.290 -0.084 -2.254 0.700 -0.392 -0.222 -0.890 0.881 0.041 -0.129 -1.129 0.678 0.127 -0.953 -0.559 0.776 0.337 -0.026 -2.511 0.659 0.481 0.274 -1.619 0.097 0.415 -0.132 -1.248 0.415 -0.369 -0.047 -0.784 0.746 -0.426 -0.426 -0.619 0.896 -0.781 0.126 -0.781 0.804 -0.524 -0.939 0.284 0.646 -0.110 -0.550 -0.550 0.772 0.732 -0.821 -2.728 0.698 0.072 -0.011 -0.850 0.487 -0.218 0.251 -1.597 0.696 -0.234 -0.234 -1.258 0.912 I-16 LUT 3 2 4 0 0.000 0.149 -0.266 -1.958 0.850 0.138 0.181 -1.447 0.485 0.322 0.170 -2.000 0.459 -0.098 -0.123 -0.843 0.669 0.385 -1.030 -2.293 1.000 0.186 -0.087 -0.672 0.372 0.720 0.028 -2.087 0.135 -0.350 0.234 -1.009 0.625 0.049 -0.688 -1.273 0.949 0.485 0.000 -1.100 0.181 0.245 -0.433 -0.755 0.567 0.136 -1.048 -1.338 1.016 0.478 -0.721 -3.891 0.951 -0.222 -0.175 -0.807 0.753 -0.054 0.000 -1.433 0.737 -0.401 -0.079 -0.941 0.828 I-15 LUT 3 2 4 0 0.000 0.441 -0.118 -2.196 0.588 -0.322 0.152 -1.170 0.718 0.245 -0.433 -0.433 0.415 -0.131 -0.345 -1.131 0.882 0.639 -0.498 -3.820 0.734 0.000 0.107 -1.000 0.509 0.333 0.152 -2.170 0.493 -0.194 0.084 -1.151 0.692 0.226 -1.022 -1.700 1.022 0.052 -0.295 -0.948 0.705 0.074 0.074 -2.248 0.752 0.000 -1.000 -0.862 0.963 0.471 -0.290 -3.138 0.750 -0.159 0.030 -1.126 0.700 0.027 0.226 -1.027 0.401 -0.393 -0.193 -0.845 0.853 I-14 LUT 3 2 4 0 0.000 0.093 -0.032 -4.492 0.934 -0.280 0.415 -1.672 0.613 -1.392 -0.392 -0.392 1.067 -0.111 0.176 -1.111 0.567 0.471 -0.658 -3.658 0.927 0.224 -0.428 -0.733 0.572 0.469 0.300 -1.700 0.107 -0.858 0.081 -0.799 0.861 0.337 -0.132 -2.248 0.691 0.193 0.280 -2.807 0.585 -1.459 0.126 -0.459 0.862 0.172 -0.980 -1.828 1.060 0.252 -0.346 -2.306 0.864 -0.561 0.147 -0.713 0.682 0.130 -0.143 -1.728 0.764 -0.510 -0.288 -0.854 0.945 I-13 LUT 3 2 4 0 0.000 0.225 -0.138 -2.097 0.756 -0.111 -0.295 -1.170 0.860 -0.415 0.322 -2.000 0.807 -0.280 -0.037 -1.087 0.792 0.604 -0.059 -3.644 0.526 0.126 -0.012 -1.334 0.605 0.333 0.152 -1.170 0.245 -0.911 0.089 -0.734 0.851 -0.350 -0.865 -3.672 1.372 -0.184 0.356 -1.644 0.604 0.485 -0.322 -0.737 0.263 -0.322 -1.152 -0.737 1.104 0.459 -0.798 -3.322 0.963 -0.463 0.290 -0.505 0.430 -0.349 -0.041 -0.654 0.685 -0.751 -0.099 -1.004 0.981 I-12 LUT 3 2 4 0 0.000 0.112 -0.040 -3.209 0.878 -0.154 -0.154 -1.476 0.882 0.322 -0.415 -2.000 0.807 -0.302 -0.370 -1.268 1.000 0.000 -0.241 -4.700 1.081 0.011 0.297 -0.596 0.141 0.505 -0.784 -1.369 0.690 -0.783 -0.091 -1.396 1.071 -0.126 -0.415 -1.000 0.874 -0.059 0.057 -0.837 0.526 0.052 -0.170 -1.170 0.705 0.078 -0.585 -0.710 0.737 -0.041 -0.710 -5.170 1.256 -0.403 0.021 -1.127 0.825 -0.428 -0.176 -1.120 0.935 -0.702 -0.140 -1.065 1.000 I-11 LUT 3 2 4 0 0.000 0.363 -0.485 -3.807 0.948 -0.154 0.048 -0.306 0.332 0.000 0.000 0.000 0.000 -0.459 -0.097 -1.530 0.994 -0.087 -0.503 -3.672 1.186 -0.135 -0.483 -1.135 0.940 -0.423 -0.182 -2.298 1.117 -0.761 -0.089 -1.428 1.069 0.611 -0.974 -2.781 0.862 0.033 0.661 -0.256 -0.841 -0.939 0.476 -0.939 0.646 -0.693 -0.208 -0.600 0.892 0.154 -0.380 -4.238 1.047 -0.648 0.303 -1.854 0.888 -0.381 0.071 -2.044 0.956 -0.932 -0.092 -1.092 1.049 I-10 LUT 3 2 4 0 0.000 0.057 -0.036 -3.943 0.940 -0.122 -0.122 -1.624 0.878 0.000 0.000 -1.000 0.585 -0.704 -0.133 -1.941 1.147 0.332 0.048 -2.891 0.654 -0.659 0.138 -1.100 0.848 0.152 0.152 -1.433 0.493 -0.538 0.032 -1.492 0.951 0.415 -0.363 -3.170 0.830 -0.644 0.263 -0.474 0.526 0.093 0.093 -1.907 0.678 -0.276 -0.524 -0.939 0.968 -0.095 -0.233 -5.140 1.127 -0.459 0.389 -1.258 0.628 0.206 -0.115 -2.379 0.791 -0.588 -0.355 -0.801 0.985 I-9 LUT 3 2 4 0 0.000 -0.014 0.286 -4.714 0.809 0.032 -0.404 -1.032 0.794 -0.807 0.193 -0.807 0.778 -0.459 0.234 -1.459 0.793 0.308 0.363 -4.392 0.515 0.111 0.294 -1.398 0.394 -0.379 0.300 -0.700 0.469 -0.256 -0.292 -1.054 0.898 0.135 0.028 -2.672 0.787 -0.907 0.756 -0.907 0.316 0.000 -0.585 0.000 0.415 0.395 -0.605 -0.605 0.454 -0.179 -0.442 -5.349 1.236 -0.322 0.490 -0.679 0.227 -0.624 0.376 -1.335 0.729 -0.744 0.164 -0.804 0.774 I-8 LUT 3 2 4 0 0.000 0.613 -0.585 -4.672 0.819 -0.585 0.186 -1.213 0.819 -0.322 -0.322 -0.322 0.678 -0.352 0.207 -1.430 0.758 0.066 -0.218 -4.741 1.040 0.326 0.197 -0.528 -0.141 0.368 0.368 -1.954 0.216 -0.446 0.424 -1.719 0.696 0.322 -0.193 -2.000 0.700 0.441 0.363 -1.485 0.000 0.284 0.061 -1.524 0.476 -0.828 -0.150 -0.690 0.938 -0.373 -0.464 -4.418 1.296 -0.197 0.285 -0.880 0.450 -0.346 0.239 -1.609 0.770 -0.529 -0.029 -1.073 0.889 I-7 LUT 3 2 4 0 0.000 -0.258 -0.081 -2.781 1.052 -0.285 0.037 -1.700 0.885 0.415 -0.585 -0.585 0.415 -0.483 0.163 -1.768 0.904 0.000 0.160 -5.087 0.890 0.197 0.166 -1.657 0.500 -0.141 0.579 -2.229 0.472 -0.505 0.373 -2.290 0.844 -0.531 0.387 -3.700 0.943 -0.170 0.482 -1.977 0.546 -1.087 -0.087 -1.087 1.082 -0.515 0.202 -1.737 0.888 -0.392 0.048 -5.200 1.122 -0.316 0.619 -1.720 0.441 -0.569 0.772 -2.154 0.478 -0.687 0.208 -1.613 0.923 I-6 LUT 3 2 4 0 0.000 -0.233 -0.467 -4.555 1.253 -1.194 0.059 -1.573 1.128 0.193 -0.807 -0.807 0.778 -1.290 0.117 -2.229 1.197 -1.471 -0.843 -4.931 1.608 -0.233 0.257 -2.273 0.805 -0.737 0.263 -2.322 1.000 -1.592 0.080 -2.271 1.266 -0.585 -0.363 -1.170 1.078 -2.150 0.658 -1.828 0.938 -0.585 0.000 0.000 0.415 -2.503 0.160 -1.503 1.234 -0.970 -0.892 -5.140 1.547 -1.489 0.391 -1.778 1.029 -1.123 -0.123 -1.346 1.157 -1.222 0.029 -1.757 1.173 I-5 LUT 3 2 4 0 0.000 0.219 -0.322 -3.781 0.974 -0.737 0.181 -2.322 1.047 0.778 -0.807 -0.807 0.193 -2.082 -1.690 -3.497 1.751 0.212 0.337 -4.248 0.610 -0.126 0.605 -1.885 0.369 0.308 -0.222 -1.807 0.695 -2.774 -2.234 -1.986 1.761 0.497 -0.503 -2.087 0.720 -1.322 0.553 -1.907 0.900 0.000 0.737 -1.585 0.000 -1.346 -2.346 -2.931 1.713 0.067 -0.305 -4.392 1.067 -0.642 0.763 -1.764 0.452 -0.026 -0.132 -2.833 0.974 -1.896 -0.735 -2.283 1.548 I-4 LUT 3 2 4 0 0.000 0.910 0.126 -1.459 -0.585 0.919 -0.611 -0.322 -0.611 0.000 0.000 0.000 0.000 -0.098 -0.349 -0.041 0.388 1.319 -1.080 -3.539 -0.080 0.933 -0.993 0.036 -0.829 0.571 -0.322 -1.129 0.330 -0.080 -0.585 -0.047 0.505 1.126 -1.044 -1.044 -0.237 0.000 -0.485 0.363 0.000 0.193 0.193 0.193 -0.807 -0.322 -0.474 0.263 0.356 0.888 -0.366 -4.066 0.393 0.500 -1.273 0.351 -0.158 0.442 -0.143 -0.268 -0.143 -0.763 -0.561 0.274 0.608 I-3 LUT 3 2 4 0 0.000 -1.021 1.351 -5.109 -0.109 -2.524 1.334 -3.524 0.284 -1.700 1.107 -1.700 0.300 -1.954 1.133 -3.954 0.569 -1.941 1.621 -5.401 -0.646 -2.087 1.135 -3.672 0.576 -2.433 1.637 -4.755 -0.585 -3.129 1.156 -4.129 0.678 -1.503 1.082 -3.087 0.497 -2.459 1.348 -2.459 0.126 -2.170 1.290 -2.170 0.152 -1.644 1.057 -2.644 0.526 -1.480 1.215 -5.728 0.381 -2.041 1.335 -5.741 0.281 -4.166 1.692 -6.488 -0.511 -2.942 1.140 -5.849 0.721 A LUT 3 2 4 0 0.000 1.911 -3.644 -3.644 -3.644 1.988 -6.488 -6.488 -6.488 0.000 0.000 0.000 0.000 1.969 -5.129 -5.129 -5.129 1.752 -2.248 -2.248 -2.248 1.979 -5.687 -5.687 -5.687 0.000 0.000 0.000 0.000 1.958 -4.700 -4.700 -4.700 1.585 -1.585 -1.585 -1.585 1.989 -6.615 -6.615 -6.615 0.000 0.000 0.000 0.000 1.951 -4.492 -4.492 -4.492 1.798 -2.524 -2.524 -2.524 1.987 -6.409 -6.409 -6.409 0.678 -0.322 -0.322 -0.322 1.983 -5.966 -5.966 -5.966 G LUT 3 2 4 0 0.000 -4.524 -4.524 1.952 -4.524 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.328 -8.328 1.997 -8.328 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.322 -0.322 0.678 -0.322 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.160 -7.160 1.992 -7.160 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.380 -0.373 0.360 -0.638 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.072 -0.380 -0.835 0.782 0.067 -0.222 -0.862 0.628 -0.120 0.111 -1.023 0.593 -0.441 -0.417 0.127 0.508 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 E+3 LUT 3 2 4 0 0.000 0.799 -0.097 -1.566 -0.019 0.282 -0.158 -0.506 0.244 0.000 0.431 -0.716 0.061 -0.042 -0.202 0.249 -0.042 0.497 0.082 -1.087 0.082 0.415 -0.144 -0.305 -0.070 0.219 0.219 0.026 -0.611 -0.090 0.240 0.138 -0.361 0.473 -0.293 -0.155 -0.155 0.159 -0.104 -0.472 0.302 0.138 0.485 -0.621 -0.234 -0.228 -0.043 0.403 -0.228 -0.230 0.713 -2.346 0.391 0.368 0.046 -0.047 -0.495 -0.388 0.279 0.225 -0.228 -0.676 0.364 0.109 0.012 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.520 -0.140 0.757 -0.503 -0.362 0.305 0.338 -0.470 -0.642 0.553 -0.328 0.132 -0.785 0.258 0.494 -0.296 -0.051 -0.890 1.069 -1.333 0.072 0.186 0.407 -1.043 -0.223 0.622 -0.251 -0.388 -0.794 -0.780 1.162 -0.728 -0.121 -0.550 0.601 -0.183 -0.392 0.498 -0.046 -0.222 0.652 0.441 -1.637 -0.415 -1.042 -0.268 0.859 -0.201 . 1.178 . 0.796 -0.649 0.360 0.543 -0.685 . 0.722 0.606 -0.271 -1.311 0.404 0.626 -0.454 -0.948 0.205 0.634 -0.363 -0.405 0.614 0.144 -0.714 -1.342 1.076 -0.991 -0.009 -0.858 0.501 0.217 -0.198 -0.571 -0.227 0.901 -0.724 -0.007 0.345 0.420 -1.334 -0.401 0.864 -0.357 -0.639 -1.057 -0.409 1.202 -1.104 -0.755 -0.029 0.616 -0.159 -0.789 1.131 -0.753 -0.650 0.313 0.808 -1.552 -0.588 -1.048 -0.231 0.931 -0.401 . 1.345 . 0.546 -0.799 0.478 0.626 -1.031 . 0.959 0.423 -0.483 -2.257 0.670 -0.060 0.311 -0.845 0.125 0.843 -0.840 -0.626 0.515 0.423 -0.780 -1.130 1.068 -0.776 -0.214 -1.236 0.626 0.302 -0.323 -0.446 -0.332 1.044 -1.285 0.040 0.249 0.481 -1.364 -0.246 0.660 -0.170 -0.540 -1.005 -0.683 1.307 -1.304 -0.781 -0.328 0.862 -0.315 -0.691 0.602 0.197 -0.480 -0.031 0.945 -2.235 -0.178 -1.799 -0.356 1.228 -0.766 . 1.496 . 0.238 -0.719 0.568 0.528 -1.098 . 1.113 0.302 -0.726 -2.465 0.961 0.096 -0.316 -0.654 0.003 0.396 0.066 -0.364 0.347 0.517 -0.944 -0.850 0.810 -0.832 0.176 -0.379 0.017 0.300 -0.017 -0.443 -0.031 0.758 -0.749 -0.371 0.621 0.345 -1.257 -0.641 0.894 -0.627 -0.229 -1.105 -0.385 1.218 -1.177 -0.399 -0.111 0.454 -0.080 -0.708 0.928 -0.206 -0.695 0.090 0.867 -1.352 -0.475 -1.361 -0.196 1.080 -0.683 . 1.204 . 0.762 -0.582 0.423 0.539 -0.893 . 0.877 0.338 -0.153 -1.126 0.227 0.727 -0.483 -0.461 -0.160 0.494 -0.043 -0.019 0.112 0.215 -0.375 -0.572 0.457 -0.406 0.263 -0.675 -0.141 0.492 0.085 -0.148 -0.606 0.831 -0.596 0.171 0.107 0.248 -0.713 -0.387 0.810 -0.650 -0.244 -1.101 -0.441 1.141 -0.755 -0.465 -0.545 0.586 0.122 -0.250 0.402 -0.213 -0.036 0.685 0.103 -1.350 -0.111 -1.233 -0.505 0.905 -0.003 . 1.070 . 0.926 -0.523 0.323 0.552 -0.770 . 0.714 0.209 0.267 -1.205 0.304 0.446 -0.045 -0.800 -0.068 0.769 -0.382 -0.464 0.723 -0.100 -0.532 -1.522 1.021 -1.109 0.212 -1.166 0.431 0.181 0.101 -0.538 -0.201 0.883 -0.745 0.063 0.092 0.440 -0.908 -0.572 0.821 -0.627 -0.131 -1.251 -0.369 1.181 -0.892 -0.433 -0.355 0.571 -0.011 -0.962 1.180 -1.187 -0.356 0.162 0.825 -1.709 -0.315 -1.221 0.089 0.741 -0.259 . 1.312 . 0.601 -0.753 0.599 0.562 -1.269 . 1.016 0.325 -0.465 -2.544 0.929 -0.142 0.025 -0.578 0.062 0.323 0.050 -0.185 0.281 0.483 -0.978 -0.622 0.690 -0.543 0.072 -0.990 0.157 0.529 -0.091 -0.498 -0.166 0.904 -0.918 -0.137 0.444 0.436 -1.405 -0.369 0.631 -0.403 -0.119 -1.339 -0.435 1.311 -1.382 -0.417 -0.211 0.542 -0.104 -0.478 0.539 0.162 -0.494 0.224 0.756 -1.859 -0.204 -1.461 -0.405 1.145 -0.578 . 1.439 . 0.366 -0.836 0.409 0.695 -1.020 . 0.871 0.488 -0.379 -1.817 0.477 0.448 -0.058 -0.425 -0.096 0.437 -0.050 -0.340 0.154 0.132 0.003 -0.684 0.794 -0.737 0.063 -0.473 -0.205 0.062 0.452 -0.013 -0.768 0.812 -0.587 0.141 0.147 0.110 -0.491 -0.247 0.648 -0.923 0.088 -0.837 -0.879 1.204 -0.756 -0.147 -0.492 0.430 0.054 -0.390 0.671 -0.922 0.159 0.253 0.679 -1.439 -0.254 -0.912 -0.335 0.828 -0.151 . 0.988 . 1.012 -0.239 0.227 0.419 -0.631 . 0.710 0.459 -0.015 -1.029 -0.088 0.776 -0.224 -0.427 -0.066 0.399 -0.026 -0.428 0.458 -0.093 -0.081 -0.503 0.378 -0.421 0.320 -0.869 0.249 0.446 -0.150 -0.442 -0.369 0.887 -0.644 -0.123 0.451 0.005 -0.491 -0.236 0.796 -0.783 -0.262 -1.195 -0.312 1.082 -0.641 -0.338 -0.605 0.431 0.267 -0.222 0.447 -0.538 0.126 0.795 0.362 -2.152 -0.405 -0.985 -0.476 0.964 -0.276 . 1.120 . 0.870 -0.498 0.553 0.318 -0.791 . 0.787 0.483 -0.189 -1.511 0.719 0.362 -0.479 -0.833 0.114 0.679 -0.405 -0.539 0.886 -0.398 -0.506 -1.823 1.205 -1.504 0.084 -1.243 0.536 0.218 -0.052 -0.554 -0.137 0.920 -0.950 -0.228 0.559 0.375 -1.409 -0.717 0.817 -0.286 -0.305 -1.220 -0.355 1.167 -0.878 -0.572 -0.200 0.600 -0.087 -0.999 1.256 -1.315 -0.496 -0.003 0.919 -2.013 -0.211 -1.453 0.197 0.754 -0.317 . 1.296 . 0.628 -1.073 0.989 -0.025 -0.845 . 0.897 0.393 -0.279 -2.392 0.919 -0.155 0.029 -0.451 0.184 0.457 -0.396 -0.183 0.324 0.100 -0.330 -0.878 0.876 -0.620 -0.043 -0.501 0.417 0.053 -0.119 -0.419 -0.143 0.877 -0.975 0.191 0.365 0.215 -1.287 -0.246 0.627 -0.212 -0.417 -0.967 -0.435 1.224 -1.276 -0.372 -0.247 0.478 -0.012 -0.521 0.740 -0.209 -0.379 0.232 0.947 -2.623 -0.444 -1.690 -0.164 1.153 -0.799 . 1.301 . 0.619 -0.601 0.518 0.518 -1.067 . 0.658 0.725 -0.377 -1.687 0.757 0.132 -0.145 -0.371 0.150 0.031 0.132 -0.307 0.426 -0.288 0.041 -1.248 0.941 -1.248 0.308 -1.354 0.284 0.199 0.314 -0.549 -0.202 0.802 -0.507 -0.379 0.453 0.239 -0.551 -0.594 0.961 -0.835 -0.268 -1.132 -0.429 1.213 -1.051 -0.315 -0.055 0.215 0.102 -0.825 0.986 -0.739 -0.225 0.109 0.761 -1.705 -0.120 -1.124 -0.020 0.939 -0.649 . 1.106 . 0.885 -0.696 0.722 0.358 -1.149 . 0.798 0.294 0.051 -1.274 0.564 0.443 -0.416 -0.680 -0.002 0.642 -0.293 -0.528 0.635 -0.059 -0.334 -0.642 0.608 -0.439 0.134 -0.702 0.081 0.542 -0.198 -0.167 -0.469 0.827 -0.706 -0.129 0.641 0.074 -1.078 -0.121 0.772 -0.744 -0.366 -0.949 0.017 0.763 -0.370 -0.334 -0.165 0.357 0.049 -0.469 0.823 -0.574 -0.257 0.252 0.765 -1.469 -0.417 -1.167 -0.102 0.671 0.044 . 1.265 . 0.675 -0.723 0.674 0.277 -0.768 . 0.974 0.183 -0.151 -1.219 0.659 -0.149 0.123 -1.124 0.123 0.809 -0.513 -0.872 1.096 -0.369 -0.884 -2.061 1.136 -1.251 0.193 -1.263 0.823 0.009 -0.307 -0.738 -0.247 0.973 -0.749 -0.375 0.553 0.404 -1.189 -0.887 0.860 -0.351 -0.218 -1.476 -0.231 1.174 -0.908 -0.996 -0.151 0.609 0.101 -1.052 1.218 -0.948 -0.571 0.022 0.776 -1.418 -0.156 -1.529 0.414 0.633 -0.376 . 1.465 . 0.310 -1.085 0.722 0.480 -1.047 . 1.091 0.293 -0.635 -2.375 1.053 -0.706 0.163 -0.775 0.107 0.758 -0.626 -0.852 0.947 -0.123 -0.735 -1.058 0.961 -0.366 -0.327 -1.257 0.450 0.480 -0.285 -0.477 -0.181 0.942 -1.065 -0.314 0.815 0.112 -1.495 -0.264 0.834 -0.823 -0.288 -1.461 0.091 1.107 -1.257 -0.767 0.039 0.706 -0.408 -1.061 1.140 -0.673 -0.536 -0.267 1.099 -2.359 -0.267 -1.609 0.134 0.984 -0.747 . 1.476 . 0.285 -1.270 1.003 0.210 -1.238 . 1.000 0.542 -0.878 -2.198 0.943 -0.026 -0.189 -0.425 -0.007 0.562 -0.352 -0.392 0.791 -0.164 -0.701 -1.601 0.974 -0.732 0.143 -0.618 0.230 0.243 -0.012 -0.190 -0.219 0.765 -0.826 -0.322 0.589 0.220 -0.914 -0.365 0.810 -0.551 -0.344 -0.828 -0.275 1.031 -0.820 -0.213 -0.147 0.315 -0.015 -0.663 1.070 -0.801 -0.525 0.127 0.796 -1.503 -0.288 -1.112 -0.192 1.016 -0.644 . 1.364 . 0.512 -0.831 0.627 0.351 -0.693 . 0.823 0.592 -0.468 -0.999 0.424 0.575 -0.581 frame2 LUT 5 4 4 0 0.000 0.096 0.218 0.012 -0.397 0.381 -0.615 0.243 -0.215 0.227 -0.047 0.320 -0.706 -0.202 0.018 0.750 -1.196 0.082 -0.123 0.284 -0.312 0.567 -0.505 0.103 -0.437 -0.208 0.415 0.513 -1.419 -0.324 0.066 0.586 -0.613 0.369 -0.134 -0.037 -0.281 0.604 -0.735 0.279 -0.587 0.077 -0.098 0.702 -1.379 -0.343 -0.076 0.709 -0.672 0.149 -0.049 0.129 -0.266 0.151 -0.202 0.448 -0.608 -0.119 0.093 0.580 -0.950 -0.327 -0.057 0.785 -0.949 0.304 0.292 -0.180 -0.603 0.283 -0.068 0.035 -0.314 -0.113 0.561 0.168 -1.072 -0.736 0.646 0.284 -0.696 -0.073 0.385 0.259 -0.871 0.899 -1.367 0.091 -0.553 -0.211 0.568 0.332 -1.341 -0.388 0.081 0.472 -0.338 0.073 0.204 -0.003 -0.325 0.484 -0.292 -0.047 -0.292 -0.232 0.164 0.720 -1.392 -0.582 0.313 0.377 -0.339 0.427 0.092 -0.048 -0.683 0.628 -0.394 -0.341 -0.145 -0.280 0.359 0.579 -1.320 0.093 0.154 -0.049 -0.227 0.160 -0.105 0.430 -0.723 0.298 -0.766 0.388 -0.194 -0.105 0.103 0.511 -0.809 -0.465 -0.004 0.720 -0.664 -0.230 -0.221 0.770 -0.777 0.623 -0.539 0.194 -0.671 -0.519 0.045 0.976 -1.721 -0.599 -0.069 0.905 -0.962 -0.097 -0.097 0.477 -0.437 0.435 -0.974 0.617 -0.722 -0.083 0.313 0.424 -1.083 -1.061 0.368 0.775 -0.948 0.286 -0.231 0.107 -0.231 0.579 -0.342 0.076 -0.593 -0.399 0.291 0.695 -1.326 -0.296 0.152 0.360 -0.339 . . . . 0.196 -0.194 0.230 -0.308 . . . . -0.289 0.202 0.489 -0.671 -0.121 -0.003 0.303 -0.237 0.318 -0.482 0.286 -0.289 -0.244 0.353 0.497 -1.098 -0.459 0.050 0.632 -0.540 . . . . 0.295 -0.094 0.093 -0.378 0.368 -0.047 -0.004 -0.428 -0.833 0.400 0.788 -1.347 0.484 -0.296 0.177 -0.607 0.075 0.013 0.342 -0.579 -0.288 0.210 0.626 -1.057 -0.085 -0.203 0.652 -0.696 0.316 -0.020 -0.040 -0.330 0.504 -0.606 0.096 -0.224 0.079 -0.071 0.397 -0.568 -0.522 0.281 0.650 -0.946 0.146 -0.113 0.193 -0.275 0.617 -0.768 0.069 -0.269 -0.635 0.414 0.652 -1.143 -0.611 0.169 0.565 -0.432 0.206 -0.191 0.227 -0.322 0.637 -0.794 0.187 -0.455 0.406 -0.043 0.459 -1.601 -0.944 0.022 0.716 -0.284 -0.099 0.265 -0.068 -0.135 0.432 -0.437 0.240 -0.451 0.088 -0.052 0.361 -0.540 -0.314 -0.008 0.664 -0.699 0.271 0.088 0.079 -0.570 0.380 -0.291 0.051 -0.242 0.055 0.227 0.286 -0.806 -0.918 0.688 0.321 -0.711 -0.107 0.232 0.371 -0.729 0.832 -1.398 0.084 -0.357 -0.425 0.607 0.393 -1.254 -0.194 -0.167 0.660 -0.609 -0.071 0.185 0.005 -0.140 0.448 -0.321 0.064 -0.340 0.215 0.127 0.411 -1.258 -0.707 0.321 0.488 -0.441 0.644 -0.241 -0.134 -0.555 0.823 -0.994 -0.122 -0.305 -0.210 0.292 0.532 -1.105 0.251 -0.037 0.186 -0.519 0.287 -0.043 0.145 -0.507 0.460 -0.934 0.338 -0.256 0.035 -0.323 0.656 -0.735 -0.565 0.079 0.744 -0.755 -0.288 -0.067 0.615 -0.525 0.402 -0.499 0.248 -0.352 -0.625 -0.072 0.877 -0.827 -0.918 0.053 0.824 -0.594 0.095 -0.115 0.378 -0.496 0.506 -1.020 0.488 -0.547 -0.159 0.115 0.586 -0.943 -0.797 0.057 0.810 -0.664 0.391 -0.091 -0.046 -0.355 0.359 -0.372 0.036 -0.121 -0.283 -0.092 0.825 -1.094 -0.316 -0.148 0.362 0.014 . . . . 0.422 -0.550 0.228 -0.311 . . . . -0.438 0.270 0.577 -0.825 0.142 0.226 -0.094 -0.340 0.724 -0.892 0.025 -0.336 -0.233 0.427 0.325 -0.858 -0.310 -0.122 0.650 -0.503 . . . . 0.418 -0.337 0.154 -0.397 0.137 0.065 0.170 -0.454 -1.020 0.268 0.796 -0.822 0.658 -0.288 -0.090 -0.594 0.260 -0.116 0.131 -0.350 -0.115 -0.115 0.763 -1.132 -0.037 -0.376 0.829 -1.065 0.192 0.205 -0.239 -0.221 0.472 -0.508 0.067 -0.214 0.211 0.165 0.213 -0.831 -0.428 0.413 0.529 -1.053 0.121 0.050 0.168 -0.407 0.824 -0.559 -0.239 -0.508 -0.141 0.461 0.436 -1.463 -0.416 0.076 0.562 -0.473 0.285 -0.133 -0.034 -0.163 0.664 -0.751 0.037 -0.330 0.365 -0.015 0.473 -1.580 -0.696 0.335 0.584 -0.683 0.096 0.117 -0.067 -0.164 0.548 -0.529 0.138 -0.426 0.137 0.203 0.235 -0.804 -0.177 -0.064 0.585 -0.603 0.285 0.449 -0.531 -0.466 0.535 -0.482 0.057 -0.332 -0.219 0.589 0.129 -0.883 -0.672 0.755 -0.082 -0.436 -0.206 0.378 0.273 -0.678 0.916 -1.082 0.098 -0.809 -0.611 0.563 0.477 -1.073 -0.571 0.300 0.443 -0.440 0.029 0.350 -0.185 -0.278 0.651 -0.301 -0.048 -0.619 -0.188 0.320 0.502 -1.127 -0.880 0.734 0.086 -0.448 0.637 -0.121 -0.242 -0.557 0.642 -0.543 -0.395 -0.011 -0.137 0.334 0.479 -1.196 0.368 0.186 -0.426 -0.273 0.366 0.064 -0.053 -0.510 0.612 -0.984 0.142 -0.212 0.073 0.113 0.368 -0.797 -0.436 0.299 0.583 -0.909 -0.180 0.101 0.518 -0.708 0.890 -0.789 -0.073 -0.695 -0.525 0.122 0.862 -1.325 -0.554 0.291 0.622 -0.845 0.032 -0.119 -0.004 0.083 0.722 -1.063 0.250 -0.551 -0.181 0.543 0.368 -1.432 -0.778 0.588 0.478 -0.939 0.457 -0.328 -0.055 -0.204 0.969 -0.959 -0.531 -0.257 -0.216 0.206 0.611 -1.127 0.104 0.065 0.093 -0.300 . . . . 0.499 -0.456 0.197 -0.492 . . . . -0.488 0.466 0.408 -0.788 -0.017 0.081 0.172 -0.273 0.769 -1.020 0.073 -0.413 -0.413 0.627 0.280 -1.029 -0.205 -0.079 0.606 -0.591 . . . . 0.351 -0.201 0.186 -0.480 0.070 0.070 0.110 -0.284 -0.794 0.523 0.504 -0.818 0.619 -0.338 0.027 -0.613 0.280 -0.029 0.154 -0.530 -0.083 0.243 0.461 -1.010 -0.098 -0.134 0.691 -0.890 0.477 -0.302 -0.020 -0.302 0.354 -0.517 0.212 -0.209 0.228 0.095 0.218 -0.743 -0.087 0.293 0.391 -0.938 0.130 -0.063 0.217 -0.347 0.577 -0.428 0.003 -0.391 -0.152 0.177 0.575 -1.058 -0.618 0.232 0.517 -0.428 0.500 0.007 -0.463 -0.225 0.459 -0.449 -0.044 -0.116 0.349 -0.104 0.421 -1.129 -0.670 -0.061 0.638 -0.223 0.113 -0.184 0.047 0.007 0.382 -0.130 0.051 -0.420 -0.153 0.380 0.259 -0.731 -0.238 -0.028 0.592 -0.591 0.327 0.051 -0.089 -0.378 0.451 -0.206 -0.089 -0.276 -0.223 0.424 0.108 -0.466 -0.885 0.628 0.363 -0.675 -0.144 0.277 0.220 -0.477 0.622 -0.874 0.255 -0.470 -0.661 0.510 0.540 -1.031 -0.790 0.172 0.595 -0.350 -0.120 0.110 0.183 -0.209 0.587 -0.264 -0.032 -0.540 -0.126 0.218 0.560 -1.164 -0.715 0.569 0.265 -0.504 0.320 -0.009 -0.061 -0.324 0.675 -0.557 -0.260 -0.171 -0.301 0.293 0.547 -0.996 0.229 0.178 -0.032 -0.477 0.519 -0.312 0.108 -0.548 0.365 -0.515 0.066 -0.051 -0.041 0.104 0.429 -0.720 -0.393 0.083 0.581 -0.550 -0.252 -0.066 0.582 -0.500 0.513 -0.356 0.136 -0.529 -0.412 -0.274 0.962 -1.080 -0.699 0.282 0.744 -1.021 0.022 -0.070 0.343 -0.388 0.627 -0.606 0.112 -0.478 -0.275 0.177 0.627 -1.003 -0.847 0.166 0.699 -0.518 0.538 -0.228 -0.015 -0.505 0.428 -0.079 -0.281 -0.176 -0.280 0.063 0.774 -1.246 0.043 0.010 0.290 -0.434 . . . . 0.327 -0.290 0.041 -0.155 . . . . -0.433 0.293 0.490 -0.667 0.082 -0.093 0.275 -0.333 0.505 -0.488 0.263 -0.584 -0.436 0.362 0.545 -0.953 -0.621 0.047 0.721 -0.582 . . . . 0.143 -0.154 0.219 -0.263 -0.159 0.003 0.392 -0.340 -0.936 0.438 0.589 -0.693 0.715 -0.615 0.215 -0.878 0.004 0.080 0.313 -0.519 -0.362 -0.018 0.812 -1.062 0.110 -0.290 0.649 -0.905 frame2 LUT 5 4 4 0 0.000 0.671 -0.331 -1.286 0.266 0.118 -0.387 -0.438 0.497 0.417 -0.095 -0.785 0.199 -0.410 0.370 -0.539 0.340 0.776 -0.521 -0.859 0.055 0.564 -1.044 -0.464 0.391 0.925 -0.523 -0.283 -0.776 -0.322 0.194 -0.437 0.398 0.831 -0.526 -1.114 0.090 0.266 -0.324 -0.205 0.178 0.875 -0.174 -0.662 -0.626 -0.360 0.125 -0.257 0.371 0.486 -0.295 -0.727 0.239 -0.166 0.320 -0.656 0.294 -0.077 0.103 0.069 -0.107 -1.252 0.419 -0.662 0.688 0.477 0.184 -1.071 -0.005 0.151 0.455 -0.716 -0.135 0.359 0.388 -0.598 -0.419 -0.991 0.755 -1.027 0.399 0.436 0.043 -0.722 0.016 0.662 -0.908 -0.766 0.375 0.605 -0.204 -0.299 -0.327 -0.236 0.113 -0.347 0.360 0.417 0.017 -0.670 0.035 -0.098 0.475 -0.839 0.158 0.652 0.043 -0.585 -0.450 -0.538 0.199 -0.521 0.553 0.229 0.011 -0.496 0.153 -0.344 0.429 -0.853 0.392 -0.047 0.138 0.123 -0.247 -0.984 0.522 -0.789 0.565 0.610 -0.487 -0.063 -0.315 -0.105 0.039 -0.144 0.186 0.511 0.215 -0.466 -0.536 -0.912 0.410 -0.679 0.599 0.539 -0.501 -0.036 -0.210 0.605 -0.695 -0.795 0.362 0.806 -0.693 -0.001 -0.657 -0.380 0.444 -0.612 0.283 0.667 -0.862 -0.447 0.175 0.330 -0.292 0.163 -0.309 1.035 -0.291 -0.996 -0.663 -0.179 0.078 -0.594 0.484 0.393 -0.262 -0.159 -0.063 -0.149 0.373 -0.447 0.097 -0.017 0.218 0.093 -0.355 -1.317 0.567 -0.572 0.531 0.408 -0.194 -0.829 0.306 -0.166 0.498 -0.631 0.071 0.449 0.409 -1.159 -0.219 -0.746 0.403 -1.014 0.666 0.785 -0.434 -1.085 0.092 0.452 -1.565 -0.443 0.640 0.970 -0.470 -0.583 -0.616 -0.276 0.100 -0.216 0.312 0.619 -0.330 -0.878 0.169 0.249 -0.326 -0.305 0.268 0.703 -0.114 -0.506 -0.428 -0.432 0.257 -0.313 0.332 0.597 -0.374 -0.896 0.237 0.019 0.002 -0.244 0.191 0.280 -0.109 -0.215 -0.005 -0.765 0.280 -0.347 0.497 0.648 -0.336 -0.853 0.121 0.781 -0.706 -0.926 0.192 0.341 0.033 -0.509 0.010 -0.880 0.481 -0.893 0.607 0.598 -0.338 -0.774 0.151 0.886 -1.049 -0.937 0.197 0.933 -0.417 -0.459 -0.704 -0.325 0.097 -0.493 0.507 0.582 -0.456 -0.587 0.148 0.858 -0.656 -0.600 -0.163 0.750 0.063 -0.778 -0.533 -0.445 -0.123 -0.398 0.667 0.275 -0.237 -0.537 0.324 0.199 0.195 -0.430 -0.050 -0.127 0.219 -0.120 0.000 -1.159 0.250 -0.842 0.852 0.613 0.120 -0.666 -0.408 0.042 0.646 -1.077 -0.103 0.317 0.200 -0.671 -0.032 -0.829 0.756 -1.324 0.431 0.573 -0.012 -0.733 -0.122 0.882 -0.641 -0.694 -0.155 0.635 -0.369 -0.306 -0.212 -0.371 0.285 -0.484 0.371 0.795 -0.448 -0.768 -0.082 0.248 0.525 -1.039 -0.173 0.802 0.054 -0.820 -0.618 -0.135 0.163 -0.354 0.248 0.368 -0.074 -0.348 -0.039 0.018 0.493 -0.646 -0.088 -0.146 0.038 0.397 -0.409 -0.882 0.595 -1.000 0.533 0.853 -0.406 -0.968 -0.109 0.095 -0.209 -0.016 0.108 0.346 0.068 -0.581 0.017 -1.096 0.423 -0.877 0.720 0.640 -0.380 -0.829 0.151 0.666 -1.945 -0.280 0.412 0.947 -0.917 -0.407 -0.344 -0.060 0.019 -0.420 0.355 0.847 -0.754 -0.676 -0.026 0.419 -0.547 0.097 -0.138 0.907 -0.037 -1.268 -0.445 -0.188 -0.010 -0.660 0.581 0.570 -0.122 -0.774 0.017 -0.065 -0.233 0.054 0.207 0.187 -0.070 0.181 -0.367 -0.937 0.172 -0.726 0.804 0.700 -0.423 -0.632 -0.023 0.236 -0.293 -0.794 0.515 0.668 -0.093 -0.753 -0.184 -0.649 0.535 -0.850 0.442 0.731 -0.319 -0.784 -0.063 0.560 -1.979 -0.531 0.660 0.900 -0.798 -0.410 -0.310 -0.283 0.099 -0.536 0.503 0.579 -0.376 -0.755 0.193 0.272 -0.295 -0.339 0.247 0.669 -0.044 -0.445 -0.503 -0.455 0.180 -0.215 0.351 0.815 -0.477 -0.880 -0.031 0.411 -0.371 -0.589 0.300 0.471 -0.239 -0.103 -0.259 -0.636 0.285 -0.715 0.613 0.595 -0.400 -0.753 0.187 0.121 -0.581 -0.405 0.574 0.688 -0.053 -1.077 -0.073 -0.687 0.432 -0.671 0.487 0.658 -0.504 -0.964 0.269 0.451 -1.016 -0.355 0.440 1.218 -0.833 -0.874 -0.817 -0.162 0.026 -0.712 0.563 0.822 -0.612 -1.080 0.144 0.441 -0.702 -0.396 0.343 0.957 -0.233 -0.876 -0.592 -0.331 -0.095 -0.405 0.598 0.414 -0.403 -0.889 0.456 -0.134 -0.003 -0.410 0.420 0.496 -0.057 -0.296 -0.296 -0.684 0.206 -0.547 0.623 0.506 0.030 -0.831 -0.005 0.002 0.277 -0.829 0.292 0.043 0.780 -0.989 -0.417 -0.874 0.705 -1.201 0.475 0.605 -0.144 -0.761 -0.023 0.654 -1.272 -0.528 0.399 0.529 0.108 -0.428 -0.443 -0.535 0.162 -0.349 0.491 0.574 -0.480 -0.710 0.242 0.260 0.099 -0.823 0.221 0.617 0.292 -0.755 -0.624 -0.226 0.098 -0.763 0.571 0.452 -0.200 -0.554 0.112 0.012 0.083 -0.659 0.378 -0.079 0.435 -0.022 -0.481 -0.839 0.340 -0.632 0.613 0.657 -0.271 -0.800 0.029 0.063 -0.078 -0.367 0.301 -0.126 0.468 -0.149 -0.324 -1.041 0.565 -0.958 0.603 0.623 -0.479 -0.493 0.045 0.773 -1.526 -0.781 0.445 0.671 -0.854 0.253 -0.593 0.071 0.177 -0.521 0.167 0.653 -0.821 -0.558 0.242 0.554 -0.393 -0.359 -0.013 0.904 -0.138 -0.669 -0.759 -0.619 0.432 -1.519 0.723 0.361 -0.236 -0.322 0.093 0.321 -0.244 -0.463 0.240 0.082 -0.187 0.441 -0.503 -0.494 0.459 -0.692 0.375 0.791 -0.292 -1.462 0.123 0.205 -0.085 -0.670 0.352 0.468 0.070 -0.798 -0.012 -0.789 0.613 -1.137 0.523 0.750 -0.168 -1.055 -0.079 0.534 -1.627 -0.894 0.757 0.840 -0.651 -0.328 -0.364 -0.075 -0.068 -0.426 0.436 0.546 -0.209 -1.203 0.311 0.041 -0.021 -0.345 0.261 0.598 0.075 -0.629 -0.348 -0.718 0.326 -0.098 0.268 0.669 -0.384 -0.720 0.051 0.205 0.033 -0.413 0.101 0.310 -0.236 -0.034 -0.097 -0.587 0.372 -0.384 0.349 . . . . . . . . . . . . . . . . 0.723 -0.421 -0.978 0.131 0.623 -1.082 -0.384 0.288 0.932 -0.354 -0.480 -0.754 -0.097 -0.164 -0.442 0.523 . . . . . . . . . . . . . . . . 0.269 -0.331 -0.775 0.501 0.050 0.040 -0.355 0.208 0.048 0.113 -0.276 0.083 -0.951 -0.028 -0.424 0.813 0.577 0.014 -0.692 -0.185 -0.087 0.359 -0.538 0.120 0.354 0.354 -0.558 -0.386 -1.281 0.958 -1.281 0.304 0.413 0.012 -0.580 -0.014 0.314 -1.054 -0.338 0.569 0.490 -0.236 -0.009 -0.409 -0.703 0.555 -0.387 0.204 0.628 -0.343 -0.864 0.159 0.134 0.201 -0.707 0.190 0.593 0.125 -0.495 -0.531 -0.512 0.641 -0.658 0.144 0.346 -0.121 -0.467 0.118 -0.171 0.358 -0.509 0.173 0.087 0.041 0.206 -0.406 -1.386 0.684 -0.585 0.427 . . . . . . . . . . . . . . . . 0.626 -0.392 -0.817 0.172 0.358 -0.752 -0.378 0.438 0.787 -0.669 -0.174 -0.398 -0.238 0.184 -0.238 0.225 0.731 -0.379 -0.806 -0.002 0.225 -0.895 -0.121 0.458 0.694 -0.228 -0.467 -0.314 -0.657 0.242 -0.257 0.429 0.439 -0.173 -0.947 0.309 -0.070 0.363 -0.367 -0.020 0.237 0.049 -0.038 -0.298 -1.784 0.216 -0.282 0.787 0.696 -0.311 -0.577 -0.146 -0.379 0.353 -0.563 0.353 0.628 0.202 -0.784 -0.467 -1.129 0.712 -1.129 0.534 0.626 -0.339 -0.959 0.203 0.215 -0.758 -0.143 0.424 0.907 -0.523 -0.549 -0.425 -0.128 0.016 -0.329 0.353 0.516 -0.174 -0.347 -0.157 0.150 -0.091 -0.376 0.240 0.606 0.101 -0.415 -0.610 -0.465 0.252 -0.416 0.417 0.543 -0.468 -0.721 0.279 0.070 0.039 -0.807 0.434 0.274 -0.061 -0.167 -0.087 -0.565 0.148 -0.307 0.493 Donor SDT 2 0 4 2 0.000 GT SAM 15 3 4 15 0.000 E-3 LUT 3 2 4 0 0.000 0.516 -0.091 -0.058 -0.577 0.678 -0.145 -0.322 -0.524 0.794 -0.322 -0.049 -1.000 0.112 0.142 0.016 -0.314 0.579 0.220 -0.719 -0.446 1.152 -0.629 -0.629 -1.044 1.048 0.048 -0.668 -1.891 0.146 0.089 0.089 -0.385 0.538 -0.145 0.020 -0.666 0.580 -0.218 0.013 -0.654 1.101 0.351 -0.939 -4.109 -0.918 0.082 0.305 0.234 0.561 0.239 -1.471 -0.024 0.935 0.122 -0.766 -1.280 0.396 0.366 -0.265 -0.827 -0.075 0.340 -0.075 -0.258 E-2 LUT 3 2 4 0 0.000 0.993 -0.503 -0.834 -0.430 1.213 -1.388 -0.651 -0.594 1.061 -0.038 -0.939 -1.261 0.515 -0.415 -0.222 -0.052 1.313 -1.365 -0.687 -0.986 1.631 -2.672 -1.350 -1.503 1.302 -0.967 -0.726 -1.256 0.110 -0.807 0.667 -0.392 1.258 -1.000 -0.939 -0.769 1.487 -1.411 -0.963 -1.700 1.149 -0.288 -0.790 -1.375 -1.426 0.481 -0.104 0.381 0.928 -0.784 -0.867 -0.047 1.400 -1.112 -0.878 -1.499 0.886 -0.044 -0.401 -1.237 -0.138 0.026 0.348 -0.322 E-1 LUT 3 2 4 0 0.000 -1.025 -2.347 1.506 -1.084 -0.556 -1.184 1.239 -0.943 -0.700 -0.531 1.206 -1.379 -1.254 -1.632 1.368 -0.562 -0.425 -2.540 1.490 -1.862 -0.233 -1.970 1.200 -0.747 -0.670 -0.807 1.330 -1.807 -2.248 -1.026 1.525 -1.248 -0.652 -2.611 1.418 -0.923 -1.000 -2.138 1.373 -0.553 -0.022 -1.215 1.148 -1.437 -2.426 -1.426 1.661 -1.841 -0.178 -1.619 0.966 -0.256 -0.730 -1.382 1.096 -0.190 -0.970 -2.233 1.533 -1.385 -1.907 -1.229 1.472 -0.907 G LUT 3 2 4 0 0.000 -5.401 -5.401 1.974 -5.401 -3.672 -3.672 1.913 -3.672 -7.498 -7.498 1.994 -7.498 -4.895 -4.895 1.963 -4.895 -3.615 -3.615 1.909 -3.615 -2.700 -2.700 1.823 -2.700 -5.508 -5.508 1.976 -5.508 -3.672 -3.672 1.913 -3.672 -3.781 -3.781 1.919 -3.781 -3.322 -3.322 1.888 -3.322 -5.700 -5.700 1.979 -5.700 -2.907 -2.907 1.848 -2.907 -2.524 -2.524 1.798 -2.524 -2.858 -2.858 1.842 -2.858 -5.693 -5.693 1.979 -5.693 -3.322 -3.322 1.888 -3.322 T LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -6.150 -6.150 -6.150 1.985 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.066 -5.066 -5.066 1.967 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -8.353 -8.353 -8.353 1.997 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -5.833 -5.833 -5.833 1.981 0.000 0.000 0.000 0.000 I+1 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.258 -4.338 0.473 -2.548 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 I+2 LUT 3 2 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.570 -2.185 -1.600 -1.056 1.245 -1.755 -0.755 -0.433 1.684 -1.944 -1.233 -3.316 1.066 -1.841 -1.104 0.218 I+3 LUT 3 2 4 0 0.000 -1.853 -3.116 1.754 -2.087 -0.607 -3.066 1.393 -0.744 -1.822 -2.044 1.710 -2.307 -1.160 -3.160 1.635 -1.575 -2.248 -2.248 1.752 -2.248 -0.322 -0.322 0.678 -0.322 -0.807 -0.807 1.193 -0.807 -1.000 -1.000 1.322 -1.000 -3.773 -4.510 1.935 -4.095 -1.555 -1.555 1.533 -1.233 -4.229 -4.229 1.921 -3.229 -2.322 -2.322 1.766 -2.322 -2.585 -3.585 1.874 -3.585 -0.170 -1.170 1.152 -1.170 -0.700 -0.700 1.300 -1.700 -2.807 -1.807 1.652 -1.222 I+4 LUT 3 2 4 0 0.000 -0.102 -1.382 -0.868 1.096 -1.044 -0.459 -1.044 1.204 -1.170 -1.272 -3.150 1.599 -0.230 -1.346 -0.609 1.069 0.152 -0.170 -0.585 0.415 0.585 0.000 -1.000 0.000 -1.087 -1.602 -2.824 1.613 0.497 -1.087 -0.503 0.497 -1.459 -1.459 0.126 1.126 -0.322 -1.322 -0.322 1.000 -0.898 -0.965 -2.036 1.437 -0.170 -1.170 -0.170 0.830 0.074 0.559 -1.248 0.074 -1.000 0.000 0.585 0.000 -1.276 -1.106 -2.276 1.544 -1.087 -1.087 1.234 -0.503 I+5 LUT 3 2 4 0 0.000 0.363 -0.485 -0.222 0.193 0.922 0.074 -2.248 -0.248 0.152 -0.170 -0.170 0.152 0.948 -1.807 -0.348 0.000 0.678 -0.322 -0.322 -0.322 0.862 0.126 -1.459 -0.459 -0.322 -0.322 -0.322 0.678 1.193 -2.807 -0.807 0.000 0.400 -0.899 -0.600 0.570 0.621 -0.753 -0.923 0.423 0.842 0.049 -1.858 -0.158 0.405 -1.005 -0.202 0.388 0.284 -0.939 -0.939 0.798 0.126 -0.459 -0.459 0.541 0.356 0.356 -1.644 0.163 0.830 -0.492 -0.170 -0.684 I+6 LUT 3 2 4 0 0.000 0.817 -1.392 -0.585 0.252 0.000 -0.170 -0.363 0.415 0.159 -0.426 -0.841 0.661 0.431 -0.823 -0.823 0.606 0.415 -0.443 -0.858 0.464 1.038 -0.402 -0.888 -0.624 0.652 -0.485 0.000 -0.485 0.310 -0.342 -0.150 0.098 0.890 -0.773 -1.773 0.343 0.142 0.312 -0.858 0.142 -0.585 -0.585 0.737 0.000 -0.051 -0.858 -0.273 0.727 -0.024 -0.073 -0.392 0.382 0.398 0.150 -0.627 -0.113 0.037 -0.038 -0.119 0.110 -0.079 -0.974 -0.284 0.785 I+7 LUT 3 2 4 0 0.000 0.510 -0.253 -1.287 0.408 0.618 -0.382 -0.798 0.168 0.157 0.114 -1.346 0.496 0.282 -0.212 -1.126 0.548 0.505 -0.217 -0.369 -0.080 0.415 -0.170 -0.170 -0.170 0.447 0.447 -0.652 -0.652 -0.044 -0.237 0.204 0.043 0.898 -0.599 -1.365 0.121 0.109 0.225 -1.306 0.431 0.670 -0.372 -0.372 -0.212 0.013 -0.420 -0.934 0.782 0.380 -0.568 -1.205 0.669 0.348 0.064 -0.759 0.126 0.503 -0.234 -0.181 -0.234 -0.110 -0.316 -0.209 0.491 I+8 LUT 3 2 4 0 0.000 0.489 -0.274 -0.656 0.182 0.333 0.000 -0.755 0.199 0.519 0.578 -0.896 -0.896 0.177 0.091 -0.617 0.204 0.479 -0.138 -0.585 0.043 0.818 -0.369 -1.080 -0.016 0.365 -0.423 -0.182 0.117 0.112 -0.151 -0.987 0.598 0.311 -0.367 -0.204 0.159 0.334 0.000 -0.202 -0.202 0.170 -0.193 0.087 -0.093 -0.263 -0.415 0.273 0.273 0.188 -0.104 -0.726 0.407 0.133 0.245 -0.553 0.052 0.155 0.012 -0.386 0.155 -0.245 -0.245 -0.161 0.504 I+9 LUT 3 2 4 0 0.000 0.585 -0.491 -0.794 0.277 0.213 0.139 -1.301 0.415 0.276 -0.013 -1.068 0.402 0.076 -0.147 -0.291 0.294 0.146 -0.185 -0.385 0.320 0.290 0.199 -0.667 0.000 0.263 -0.042 -0.322 0.041 0.139 -0.598 -0.124 0.402 0.319 -0.954 -0.080 0.368 0.696 -0.056 -1.496 0.089 -0.024 0.069 -0.471 0.317 -0.363 -0.263 0.415 0.078 0.178 -0.341 -0.119 0.212 -0.105 0.494 -0.626 0.020 0.232 -0.277 0.193 -0.222 0.107 -0.613 -0.028 0.366 I+10 LUT 3 2 4 0 0.000 0.245 -0.170 -0.518 0.296 0.611 -0.694 -0.694 0.306 0.074 0.074 -0.926 0.453 0.431 -0.500 -0.642 0.383 0.774 -0.354 -0.861 -0.064 0.318 -0.154 -0.465 0.177 0.317 0.157 -0.230 -0.346 -0.164 -0.267 -0.215 0.501 0.482 -0.821 -0.921 0.594 0.618 -0.178 -0.967 0.097 0.314 -0.303 -0.209 0.112 -0.737 -0.396 0.214 0.566 0.066 -0.412 -0.175 0.396 0.402 -0.376 -0.183 0.039 -0.109 -0.109 -0.021 0.213 0.160 -0.626 -0.162 0.423 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.672 -0.479 -0.634 0.064 0.610 -0.497 -0.549 0.114 0.066 -0.030 -0.437 0.305 0.287 -0.602 -0.116 0.260 0.723 -0.467 -0.498 -0.124 0.634 -0.088 -0.341 -0.478 0.538 -0.074 -0.414 -0.239 0.027 -0.467 -0.086 0.395 0.692 -0.809 -0.206 -0.079 0.396 -0.211 -0.267 -0.016 0.387 -0.085 -0.259 -0.130 -0.042 -0.610 0.110 0.372 0.556 -0.718 -0.894 0.469 0.396 -0.287 -0.114 -0.089 0.026 -0.006 -0.265 0.207 0.112 -0.689 -0.186 0.505 0.725 -0.305 -0.799 -0.054 0.890 -0.621 -0.805 -0.115 0.253 0.240 -0.628 -0.029 0.375 -0.736 -0.526 0.494 0.459 -0.112 -0.356 -0.123 0.654 -0.069 -0.683 -0.235 0.603 0.201 -0.716 -0.469 -0.035 -0.309 -0.155 0.399 0.639 -0.491 -0.366 -0.066 0.495 0.028 -0.630 -0.112 0.349 0.166 -0.366 -0.272 0.129 -0.504 -0.122 0.359 0.594 -0.436 -0.753 0.212 0.297 -0.273 -0.134 0.046 0.193 0.099 -0.259 -0.074 -0.174 -0.614 -0.219 0.679 0.786 -0.653 -0.384 -0.196 0.574 -0.296 -0.410 -0.083 0.404 0.054 -0.365 -0.214 0.317 -0.519 -0.249 0.281 0.499 -0.547 0.100 -0.268 0.769 -0.367 -0.263 -0.541 0.480 -0.216 -0.046 -0.367 -0.202 -0.346 0.267 0.191 0.561 -0.624 -0.058 -0.128 0.560 -0.383 -0.113 -0.262 0.288 -0.218 0.030 -0.154 0.043 -0.661 0.330 0.111 0.492 -0.424 -0.479 0.178 0.381 -0.236 -0.058 -0.171 -0.025 0.099 -0.063 -0.016 -0.238 -0.564 -0.036 0.585 0.787 -0.795 -0.852 0.195 0.756 -0.499 -0.674 -0.034 0.319 -0.037 -0.716 0.226 0.550 -0.984 -0.491 0.399 0.568 -0.634 -0.344 0.119 0.489 -0.155 -0.327 -0.149 0.547 -0.038 -0.502 -0.220 -0.014 -0.270 -0.038 0.270 0.631 -0.643 -0.487 0.134 0.556 -0.190 -0.469 -0.105 0.157 0.200 -0.203 -0.205 0.252 -0.752 -0.003 0.283 0.595 -0.693 -0.737 0.346 0.352 -0.095 -0.247 -0.082 0.138 -0.001 -0.512 0.263 0.066 -0.404 -0.330 0.487 0.566 -0.443 -0.618 0.179 0.623 -0.514 -0.712 0.200 0.033 -0.062 -0.450 0.363 -0.118 -0.434 -0.331 0.626 0.167 0.306 -0.559 -0.056 0.476 -0.063 -0.479 -0.097 0.053 0.295 -0.487 0.033 -0.675 -0.133 -0.110 0.618 0.485 -0.403 -0.263 0.016 0.560 -0.333 -0.608 0.105 0.263 0.096 -0.406 -0.034 -0.528 -0.351 0.015 0.596 0.374 -0.400 -0.976 0.524 0.221 -0.106 -0.230 0.075 -0.161 0.098 -0.313 0.299 -0.342 -0.467 -0.538 0.847 0.618 -0.278 -0.474 -0.119 0.374 0.063 -0.827 0.133 -0.002 0.409 -0.567 -0.001 -0.237 -0.090 -0.554 0.614 0.296 -0.019 -0.348 0.000 0.329 0.171 -0.659 -0.023 0.251 0.314 -0.494 -0.222 -0.522 -0.050 -0.106 0.494 0.533 -0.454 -0.361 0.063 0.236 0.334 -1.093 0.128 0.103 0.407 -0.356 -0.289 -0.267 -0.193 -0.193 0.505 0.497 -0.336 -0.746 0.263 -0.098 0.111 -0.279 0.216 -0.240 0.311 -0.153 0.019 -0.455 -0.260 -0.303 0.700 0.707 -0.496 -0.621 0.012 0.269 -0.393 -0.230 0.240 0.091 0.035 -0.315 0.146 -0.046 -0.510 -0.183 0.535 0.209 -0.159 -0.102 0.024 0.346 -0.026 -0.238 -0.154 0.066 0.057 -0.301 0.140 -0.787 -0.007 0.149 0.397 0.532 -0.602 -0.196 0.032 0.345 -0.325 -0.136 0.031 -0.107 0.182 -0.001 -0.092 -0.429 -0.429 0.177 0.470 0.351 -0.490 -0.485 0.376 0.116 -0.290 0.043 0.095 -0.300 0.001 -0.202 0.398 -0.586 -0.464 -0.107 0.748 0.521 -0.462 -0.689 0.286 0.445 -0.314 -0.647 0.258 0.218 0.076 -0.605 0.170 0.202 -0.467 -0.454 0.482 0.399 -0.199 -0.440 0.102 0.370 -0.229 -0.384 0.122 0.269 0.080 -0.415 -0.017 -0.464 0.096 -0.144 0.380 0.501 -0.318 -0.477 0.089 0.242 -0.050 -0.470 0.176 -0.072 0.413 -0.258 -0.183 -0.214 -0.385 0.014 0.446 0.583 -0.605 -0.660 0.277 0.182 -0.170 -0.341 0.248 0.010 -0.048 -0.141 0.163 -0.354 -0.325 -0.237 0.651 0.666 -0.641 -0.667 0.191 0.330 -0.427 -0.452 0.343 0.171 -0.045 -0.336 0.154 0.035 -0.454 -0.130 0.413 0.404 -0.317 -0.153 -0.037 0.550 -0.084 -0.468 -0.203 0.455 -0.093 -0.202 -0.282 -0.379 -0.297 0.044 0.471 0.528 -0.784 0.103 -0.146 0.493 -0.441 -0.239 0.013 0.423 -0.113 -0.137 -0.277 -0.187 -0.581 0.199 0.385 0.465 -0.493 -0.608 0.325 0.052 -0.093 -0.113 0.139 0.230 -0.191 -0.033 -0.039 -0.229 -0.560 -0.204 0.678 0.596 -0.201 -0.780 0.051 0.614 -0.412 -0.860 0.223 -0.033 0.507 -0.551 -0.122 0.065 -0.510 -0.528 0.640 0.390 -0.199 -0.202 -0.075 0.622 -0.036 -0.493 -0.368 0.038 0.384 -0.251 -0.271 -0.426 -0.186 0.071 0.407 0.510 -0.515 -0.226 0.031 0.342 -0.033 -0.581 0.120 0.088 0.356 -0.363 -0.185 -0.183 -0.522 0.114 0.423 0.641 -0.477 -0.640 0.111 0.077 -0.055 -0.299 0.226 -0.187 0.368 -0.188 -0.070 -0.099 -0.480 -0.384 0.663 0.859 -0.832 -0.646 -0.022 0.491 -0.411 -0.466 0.162 0.073 0.101 -0.010 -0.180 -0.088 -0.470 -0.068 0.469 0.485 -0.570 -0.028 -0.080 0.890 -0.542 -0.491 -0.417 0.295 -0.256 0.143 -0.266 -0.325 -0.413 0.196 0.384 0.762 -0.958 -0.269 -0.059 0.367 -0.390 -0.074 -0.004 0.137 -0.111 0.166 -0.230 -0.175 -0.489 0.153 0.367 0.661 -0.931 -0.434 0.206 0.383 -0.460 -0.192 0.130 0.031 -0.256 0.287 -0.118 -0.297 -0.500 -0.163 0.665 0.589 -0.795 -0.352 0.184 0.661 -0.726 -0.483 0.136 0.189 -0.014 -0.482 0.206 0.148 -0.582 -0.258 0.473 0.354 -0.409 -0.139 0.086 0.401 -0.309 -0.339 0.114 0.121 0.131 -0.280 -0.008 -0.316 -0.315 0.257 0.261 0.443 -0.563 0.047 -0.104 0.347 -0.248 -0.199 0.021 0.066 0.138 -0.021 -0.206 -0.287 -0.796 0.613 0.104 0.510 -0.577 -0.495 0.258 0.204 -0.214 -0.145 0.112 -0.063 0.043 -0.222 0.208 -0.216 -0.451 -0.260 0.653 0.508 -0.608 -0.799 0.430 0.371 -0.249 -0.796 0.367 -0.035 0.063 -0.793 0.488 0.069 -0.729 -0.441 0.688 0.370 -0.364 -0.773 0.428 0.505 -0.084 -0.752 0.062 0.379 -0.068 -0.625 0.134 -0.088 -0.340 -0.573 0.675 0.493 -0.656 -0.440 0.288 0.295 -0.118 -0.773 0.340 0.141 0.003 -0.325 0.134 -0.177 -0.650 -0.470 0.812 0.171 -0.721 -1.048 0.835 0.184 -0.341 -0.352 0.368 -0.127 -0.074 -0.563 0.543 -0.085 -0.817 -0.623 0.880 0.489 -0.454 -0.624 0.285 0.454 -0.301 -0.884 0.353 -0.088 0.316 -0.717 0.271 -0.092 -0.267 -0.685 0.686 0.267 -0.138 -0.400 0.176 0.404 0.094 -0.683 -0.021 0.162 0.155 -0.474 0.067 -0.601 -0.045 -0.117 0.535 0.483 -0.714 -0.378 0.290 0.298 0.018 -0.891 0.285 0.068 0.121 -0.391 0.139 -0.148 -0.293 -0.446 0.630 0.321 -0.439 -0.595 0.434 -0.048 -0.210 -0.465 0.530 -0.219 0.138 -0.300 0.296 -0.255 -0.335 -0.332 0.655 0.693 -0.713 -0.626 0.171 0.430 -0.281 -0.700 0.279 -0.031 -0.021 -0.553 0.437 0.020 -0.868 -0.204 0.650 0.371 -0.500 -0.137 0.125 0.591 -0.314 -0.385 -0.114 0.207 -0.135 -0.153 0.052 -0.414 -0.224 0.212 0.305 0.619 -0.741 -0.265 0.048 0.366 -0.042 -0.552 0.081 -0.045 0.075 -0.153 0.109 -0.242 -0.351 -0.063 0.499 0.330 -0.478 -0.701 0.496 0.229 -0.245 -0.326 0.246 -0.403 -0.088 -0.392 0.624 -0.451 -0.699 -0.077 0.770 0.622 -0.777 -0.690 0.331 0.465 -0.354 -0.651 0.264 -0.049 0.094 -0.581 0.376 0.018 -0.710 -0.457 0.721 0.453 -0.490 -0.375 0.199 0.419 -0.063 -0.489 -0.009 0.235 0.011 -0.393 0.076 -0.222 -0.310 -0.199 0.550 0.577 -0.584 -0.508 0.186 0.412 -0.022 -0.729 0.112 -0.176 0.373 -0.279 -0.007 -0.137 -0.682 -0.170 0.659 0.501 -0.708 -0.823 0.493 0.143 -0.017 -0.309 0.138 -0.205 0.021 -0.325 0.400 -0.183 -0.336 -0.371 0.636 Intron LUT 5 4 4 0 0.000 0.675 -0.523 -0.597 0.065 0.593 -0.505 -0.598 0.172 0.011 -0.044 -0.374 0.322 0.230 -0.636 -0.035 0.273 0.700 -0.486 -0.459 -0.098 0.603 -0.061 -0.305 -0.488 0.515 -0.050 -0.404 -0.237 -0.075 -0.450 -0.061 0.444 0.663 -0.844 -0.153 -0.058 0.339 -0.157 -0.298 0.035 0.319 -0.128 -0.190 -0.058 -0.100 -0.607 0.121 0.404 0.537 -0.743 -0.832 0.475 0.423 -0.257 -0.217 -0.055 0.000 0.019 -0.194 0.154 0.102 -0.725 -0.164 0.515 0.706 -0.320 -0.816 -0.000 0.875 -0.614 -0.797 -0.093 0.210 0.257 -0.533 -0.063 0.307 -0.759 -0.448 0.525 0.463 -0.129 -0.406 -0.070 0.669 -0.067 -0.730 -0.230 0.625 0.214 -0.738 -0.517 -0.167 -0.270 -0.091 0.423 0.624 -0.375 -0.380 -0.122 0.470 0.071 -0.756 -0.041 0.301 0.184 -0.282 -0.305 0.099 -0.467 -0.084 0.336 0.601 -0.411 -0.805 0.213 0.273 -0.282 -0.082 0.035 0.190 0.120 -0.225 -0.125 -0.251 -0.599 -0.196 0.702 0.798 -0.690 -0.404 -0.176 0.600 -0.349 -0.450 -0.049 0.353 0.030 -0.268 -0.199 0.307 -0.550 -0.209 0.281 0.453 -0.530 0.120 -0.230 0.769 -0.379 -0.277 -0.512 0.434 -0.227 -0.038 -0.285 -0.288 -0.286 0.272 0.205 0.565 -0.605 -0.069 -0.137 0.612 -0.390 -0.230 -0.225 0.271 -0.279 0.093 -0.147 0.076 -0.726 0.373 0.064 0.500 -0.480 -0.451 0.185 0.362 -0.244 -0.049 -0.146 -0.007 0.060 0.033 -0.092 -0.321 -0.561 0.013 0.598 0.786 -0.828 -0.870 0.221 0.712 -0.468 -0.676 0.018 0.345 -0.051 -0.706 0.203 0.461 -0.904 -0.383 0.403 0.567 -0.677 -0.395 0.179 0.469 -0.119 -0.362 -0.125 0.447 0.044 -0.480 -0.170 -0.091 -0.243 -0.004 0.286 0.605 -0.619 -0.460 0.138 0.555 -0.149 -0.498 -0.119 0.090 0.244 -0.160 -0.225 0.175 -0.657 0.031 0.281 0.603 -0.712 -0.738 0.346 0.363 -0.055 -0.300 -0.090 0.144 0.013 -0.469 0.219 0.011 -0.355 -0.287 0.476 0.556 -0.455 -0.611 0.196 0.585 -0.530 -0.724 0.265 -0.043 -0.093 -0.376 0.402 -0.196 -0.429 -0.288 0.647 0.146 0.261 -0.502 -0.017 0.434 -0.000 -0.492 -0.092 0.029 0.269 -0.453 0.062 -0.787 -0.107 -0.164 0.678 0.409 -0.332 -0.226 0.032 0.546 -0.318 -0.668 0.149 0.166 0.059 -0.343 0.067 -0.599 -0.326 0.007 0.621 0.451 -0.481 -0.997 0.501 0.219 -0.091 -0.289 0.109 -0.177 0.123 -0.298 0.278 -0.355 -0.468 -0.576 0.867 0.638 -0.260 -0.483 -0.163 0.364 0.094 -0.902 0.151 0.018 0.404 -0.539 -0.035 -0.258 -0.138 -0.547 0.651 0.246 0.008 -0.355 0.038 0.300 0.195 -0.715 0.021 0.221 0.301 -0.390 -0.253 -0.675 -0.010 -0.110 0.540 0.551 -0.427 -0.348 0.008 0.260 0.335 -1.232 0.157 0.043 0.441 -0.314 -0.309 -0.381 -0.128 -0.249 0.561 0.525 -0.287 -0.919 0.278 -0.124 0.133 -0.270 0.209 -0.294 0.348 -0.163 0.026 -0.518 -0.245 -0.294 0.716 0.699 -0.494 -0.643 0.037 0.266 -0.354 -0.321 0.280 0.030 0.024 -0.239 0.158 -0.203 -0.543 -0.064 0.574 0.205 -0.155 -0.097 0.020 0.346 0.014 -0.327 -0.118 0.011 0.014 -0.215 0.165 -0.897 -0.049 0.185 0.443 0.514 -0.544 -0.205 0.027 0.326 -0.313 -0.205 0.102 -0.172 0.196 0.036 -0.087 -0.447 -0.521 0.219 0.491 0.355 -0.508 -0.496 0.388 0.107 -0.233 -0.025 0.124 -0.301 0.011 -0.124 0.337 -0.654 -0.505 -0.072 0.772 0.491 -0.436 -0.825 0.368 0.368 -0.260 -0.681 0.323 0.212 0.047 -0.603 0.202 0.158 -0.492 -0.450 0.528 0.365 -0.196 -0.446 0.143 0.337 -0.242 -0.416 0.191 0.231 0.069 -0.376 0.009 -0.545 0.090 -0.118 0.411 0.490 -0.279 -0.496 0.087 0.212 -0.019 -0.536 0.220 -0.136 0.450 -0.230 -0.199 -0.317 -0.298 -0.014 0.478 0.587 -0.598 -0.665 0.271 0.165 -0.178 -0.413 0.315 -0.008 -0.025 -0.106 0.128 -0.416 -0.308 -0.212 0.659 0.687 -0.732 -0.671 0.214 0.296 -0.411 -0.505 0.395 0.133 -0.108 -0.261 0.190 -0.002 -0.520 -0.055 0.424 0.413 -0.329 -0.142 -0.050 0.560 -0.078 -0.475 -0.218 0.428 -0.065 -0.131 -0.347 -0.455 -0.297 0.079 0.485 0.515 -0.735 0.010 -0.054 0.491 -0.400 -0.350 0.073 0.315 -0.105 -0.035 -0.234 -0.200 -0.587 0.214 0.383 0.456 -0.448 -0.641 0.326 0.040 -0.058 -0.204 0.193 0.228 -0.198 0.026 -0.091 -0.301 -0.540 -0.149 0.677 0.624 -0.250 -0.856 0.092 0.630 -0.475 -0.917 0.267 -0.056 0.498 -0.496 -0.126 0.015 -0.556 -0.446 0.655 0.379 -0.232 -0.210 -0.025 0.630 -0.027 -0.565 -0.331 -0.018 0.400 -0.196 -0.286 -0.539 -0.133 0.042 0.455 0.514 -0.501 -0.306 0.080 0.315 0.047 -0.685 0.139 0.013 0.393 -0.325 -0.185 -0.195 -0.470 0.084 0.427 0.656 -0.472 -0.649 0.091 0.097 -0.008 -0.344 0.200 -0.216 0.388 -0.175 -0.083 -0.139 -0.495 -0.392 0.696 0.892 -0.893 -0.674 -0.030 0.442 -0.410 -0.527 0.257 0.008 0.075 0.061 -0.155 -0.185 -0.526 0.024 0.495 0.487 -0.578 -0.039 -0.066 0.908 -0.515 -0.568 -0.416 0.278 -0.286 0.160 -0.235 -0.394 -0.391 0.201 0.408 0.787 -1.007 -0.288 -0.062 0.378 -0.452 -0.072 0.026 0.087 -0.097 0.203 -0.231 -0.219 -0.504 0.180 0.382 0.723 -0.941 -0.446 0.130 0.348 -0.484 -0.176 0.173 0.074 -0.289 0.307 -0.165 -0.348 -0.517 -0.138 0.684 0.536 -0.840 -0.188 0.155 0.639 -0.731 -0.462 0.156 0.160 0.024 -0.381 0.135 0.116 -0.525 -0.207 0.439 0.328 -0.451 -0.117 0.126 0.385 -0.309 -0.359 0.147 0.066 0.138 -0.240 0.009 -0.412 -0.307 0.307 0.266 0.397 -0.568 0.156 -0.161 0.345 -0.210 -0.251 0.035 0.005 0.173 0.036 -0.244 -0.369 -0.758 0.627 0.124 0.471 -0.570 -0.500 0.303 0.188 -0.204 -0.160 0.135 -0.083 0.084 -0.196 0.167 -0.288 -0.420 -0.222 0.656 0.505 -0.640 -0.770 0.436 0.351 -0.220 -0.887 0.407 -0.090 0.011 -0.760 0.548 0.005 -0.744 -0.373 0.702 0.357 -0.418 -0.681 0.430 0.479 -0.040 -0.814 0.090 0.311 -0.040 -0.564 0.152 -0.186 -0.258 -0.582 0.693 0.498 -0.705 -0.467 0.323 0.296 -0.127 -0.836 0.375 0.062 -0.066 -0.227 0.197 -0.171 -0.649 -0.468 0.808 0.184 -0.728 -1.004 0.817 0.178 -0.317 -0.492 0.438 -0.160 -0.032 -0.450 0.480 -0.111 -0.786 -0.614 0.880 0.448 -0.435 -0.626 0.320 0.393 -0.281 -0.904 0.411 -0.109 0.309 -0.674 0.272 -0.164 -0.285 -0.636 0.716 0.200 -0.131 -0.438 0.263 0.386 0.156 -0.754 -0.020 0.077 0.145 -0.443 0.142 -0.729 -0.034 -0.123 0.586 0.483 -0.652 -0.351 0.241 0.270 0.070 -1.008 0.319 0.008 0.138 -0.338 0.142 -0.207 -0.259 -0.470 0.657 0.334 -0.462 -0.637 0.454 -0.087 -0.202 -0.467 0.551 -0.223 0.163 -0.287 0.268 -0.361 -0.324 -0.310 0.692 0.673 -0.707 -0.605 0.184 0.444 -0.311 -0.789 0.328 -0.156 -0.042 -0.519 0.519 -0.056 -0.882 -0.107 0.648 0.349 -0.464 -0.150 0.137 0.615 -0.327 -0.432 -0.106 0.152 -0.127 -0.064 0.024 -0.525 -0.193 0.269 0.293 0.611 -0.724 -0.255 0.041 0.387 -0.057 -0.605 0.102 -0.119 0.072 -0.103 0.134 -0.291 -0.343 -0.049 0.513 0.281 -0.488 -0.644 0.518 0.251 -0.227 -0.359 0.234 -0.447 -0.089 -0.318 0.608 -0.554 -0.699 -0.021 0.781 0.612 -0.767 -0.730 0.358 0.437 -0.368 -0.651 0.304 -0.044 0.100 -0.551 0.351 -0.065 -0.668 -0.397 0.727 0.412 -0.512 -0.327 0.228 0.379 -0.032 -0.511 0.028 0.187 0.019 -0.348 0.087 -0.292 -0.293 -0.185 0.573 0.519 -0.518 -0.462 0.193 0.393 0.004 -0.805 0.153 -0.290 0.424 -0.229 -0.019 -0.302 -0.574 -0.132 0.682 0.469 -0.697 -0.842 0.527 0.123 0.006 -0.331 0.152 -0.257 0.092 -0.290 0.355 -0.253 -0.269 -0.381 0.644 Start SDT 3 0 4 2 0.000 ATG SAM 18 12 4 18 0.000 N-12 LUT 2 1 4 0 0.000 0.787 -0.229 -0.399 -0.592 0.533 -0.095 -0.185 -0.439 0.272 0.226 -0.204 -0.406 0.141 -0.331 -0.241 0.329 N-11 LUT 2 1 4 0 0.000 0.762 -0.904 0.020 -0.404 0.729 -0.175 -0.271 -0.670 0.404 0.056 -0.131 -0.465 0.300 -0.215 -0.630 0.335 N-10 LUT 2 1 4 0 0.000 0.551 -0.573 0.073 -0.303 0.403 0.541 -0.164 -1.597 0.393 0.488 -0.896 -0.422 -0.234 0.181 -0.596 0.438 N-9 LUT 2 1 4 0 0.000 0.633 -0.570 -0.060 -0.293 0.691 -0.517 0.051 -0.620 0.566 -0.034 -0.404 -0.345 0.034 0.122 -0.265 0.079 N-8 LUT 2 1 4 0 0.000 0.038 0.272 -0.402 0.013 0.404 0.259 -0.741 -0.181 0.330 0.778 -0.544 -1.544 0.122 0.244 -0.878 0.244 N-7 LUT 2 1 4 0 0.000 0.340 0.056 -0.008 -0.513 0.471 0.200 -0.800 -0.166 0.135 1.000 -1.672 -0.766 -0.055 -0.101 -0.148 0.267 N-6 LUT 2 1 4 0 0.000 0.268 -0.254 0.415 -0.681 0.670 -0.585 0.015 -0.452 0.293 0.206 -0.094 -0.546 -0.033 -0.863 0.426 0.176 N-5 LUT 2 1 4 0 0.000 0.385 -0.329 -0.091 -0.060 0.222 -0.152 0.093 -0.206 -0.058 0.783 -1.024 -0.274 -0.503 0.234 -0.503 0.497 N-4 LUT 2 1 4 0 0.000 0.582 0.558 -1.179 -0.764 0.407 0.590 -0.569 -1.016 -0.275 1.190 -0.919 -1.459 -0.493 0.881 -0.724 -0.248 N-3 LUT 2 1 4 0 0.000 1.315 -1.426 -0.069 -2.426 1.484 -3.055 -0.033 -3.248 1.257 -0.984 -0.355 -1.636 0.951 -1.016 0.168 -1.154 N-2 LUT 2 1 4 0 0.000 1.114 -0.410 -0.819 -0.956 0.564 0.284 -1.202 -0.202 0.813 0.038 -0.750 -0.686 -1.000 0.459 -0.678 0.585 N-1 LUT 2 1 4 0 0.000 0.909 -0.482 0.250 -2.209 0.585 0.613 -0.840 -1.280 0.201 0.364 0.081 -0.984 0.131 0.716 -1.110 -0.322 A LUT 2 1 4 0 0.000 1.982 -5.913 -5.913 -5.913 1.975 -5.426 -5.426 -5.426 1.969 -5.140 -5.140 -5.140 1.926 -3.907 -3.907 -3.907 T LUT 2 1 4 0 0.000 -7.234 -7.234 -7.234 1.993 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 G LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -7.234 -7.234 1.993 -7.234 E+1 LUT 2 1 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.024 -0.664 0.587 -0.234 0.000 0.000 0.000 0.000 E+2 LUT 2 1 4 0 0.000 0.522 0.269 0.000 -1.478 0.339 0.430 -0.807 -0.293 0.248 0.805 -0.752 -1.084 -1.574 1.252 -1.711 -0.033 E+3 LUT 2 1 4 0 0.000 -0.090 0.269 -0.127 -0.090 -0.882 0.481 0.364 -0.367 -0.600 0.758 -1.015 0.207 -0.954 -0.147 0.505 0.216 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.297 -0.398 0.133 -0.127 0.393 -0.246 -0.353 0.084 -0.703 0.254 0.225 0.034 0.297 -0.309 0.117 -0.185 0.532 -0.444 -0.647 0.240 -0.309 0.532 -0.166 -0.225 -6.375 -6.375 -6.375 1.987 1.987 -6.375 -6.375 -6.375 1.987 -6.375 -6.375 -6.375 TAG WMM 9 6 4 0 0.000 0.373 -0.364 0.239 -0.419 0.581 -0.475 -0.075 -0.261 -1.075 0.451 0.166 0.051 0.340 -0.391 0.436 -0.693 0.892 -0.871 -0.727 -0.010 -0.475 0.436 0.051 -0.165 -6.119 -6.119 -6.119 1.984 1.984 -6.119 -6.119 -6.119 -6.119 -6.119 1.984 -6.119 TGA WMM 9 6 4 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/A.mellifera.hmm0000644000175000017500000013625711424066010016205 0ustar moellermoellerzoeHMM Amel 7 12 7 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric ORF 0 0 100 -1 explicit Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.924915 Inter Esngl 0.075085 Inter ORF 1 Intron Eterm 0.179020 Intron Exon 0.820980 Intron ORF 1 ORF Inter 1 ORF Intron 1 0.423985 0.348339 0.227675 0.574548 0.229508 0.195944 0.529990 0.277096 0.192914 0.557855 0.235495 0.206650 0.816428 0.183572 0.826175 0.173825 0.822572 0.177428 Einit 2 DEFINED 0 249 -8.711 -8.645 -8.583 -8.522 -8.465 -8.409 -8.356 -8.305 -8.255 -8.207 -8.160 -8.119 -8.078 -8.039 -8.000 -7.963 -7.926 -7.891 -7.856 -7.822 -7.789 -7.777 -7.765 -7.753 -7.742 -7.730 -7.718 -7.707 -7.696 -7.684 -7.673 -7.666 -7.660 -7.653 -7.646 -7.639 -7.633 -7.626 -7.620 -7.613 -7.607 -7.601 -7.596 -7.591 -7.586 -7.581 -7.576 -7.571 -7.566 -7.561 -7.556 -7.558 -7.560 -7.563 -7.565 -7.568 -7.570 -7.573 -7.575 -7.578 -7.580 -7.584 -7.588 -7.592 -7.596 -7.601 -7.605 -7.609 -7.613 -7.617 -7.621 -7.633 -7.644 -7.656 -7.667 -7.679 -7.691 -7.703 -7.715 -7.727 -7.739 -7.749 -7.758 -7.768 -7.778 -7.788 -7.798 -7.808 -7.818 -7.828 -7.838 -7.845 -7.852 -7.859 -7.866 -7.873 -7.880 -7.887 -7.894 -7.901 -7.908 -7.914 -7.920 -7.927 -7.933 -7.939 -7.945 -7.952 -7.958 -7.965 -7.971 -7.980 -7.990 -7.999 -8.009 -8.018 -8.028 -8.037 -8.047 -8.057 -8.067 -8.079 -8.092 -8.104 -8.117 -8.129 -8.142 -8.155 -8.168 -8.182 -8.195 -8.209 -8.223 -8.238 -8.252 -8.267 -8.282 -8.297 -8.312 -8.327 -8.343 -8.360 -8.376 -8.393 -8.410 -8.428 -8.445 -8.463 -8.481 -8.499 -8.518 -8.531 -8.546 -8.560 -8.574 -8.589 -8.603 -8.618 -8.633 -8.648 -8.663 -8.672 -8.680 -8.689 -8.698 -8.707 -8.716 -8.725 -8.734 -8.743 -8.752 -8.763 -8.773 -8.784 -8.794 -8.805 -8.816 -8.827 -8.837 -8.849 -8.860 -8.871 -8.883 -8.895 -8.907 -8.919 -8.931 -8.943 -8.955 -8.968 -8.980 -8.991 -9.002 -9.013 -9.024 -9.035 -9.046 -9.058 -9.069 -9.080 -9.092 -9.105 -9.118 -9.131 -9.144 -9.158 -9.171 -9.185 -9.199 -9.213 -9.227 -9.244 -9.261 -9.279 -9.296 -9.314 -9.333 -9.351 -9.370 -9.389 -9.408 -9.422 -9.436 -9.450 -9.465 -9.479 -9.494 -9.508 -9.523 -9.539 -9.554 -9.569 -9.584 -9.599 -9.614 -9.629 -9.645 -9.661 -9.676 -9.693 -9.709 -9.718 -9.727 -9.736 -9.745 -9.754 -9.763 -9.773 -9.782 -9.791 GEOMETRIC 250 -1 185 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.218 -10.165 -10.113 -10.064 -10.016 -9.970 -9.925 -9.881 -9.839 -9.798 -9.758 -9.721 -9.684 -9.649 -9.614 -9.580 -9.547 -9.515 -9.483 -9.452 -9.422 -9.398 -9.375 -9.352 -9.330 -9.308 -9.286 -9.265 -9.244 -9.223 -9.202 -9.195 -9.187 -9.179 -9.172 -9.164 -9.157 -9.149 -9.142 -9.134 -9.127 -9.110 -9.092 -9.075 -9.058 -9.042 -9.025 -9.009 -8.993 -8.977 -8.961 -8.933 -8.905 -8.877 -8.850 -8.824 -8.798 -8.773 -8.747 -8.723 -8.699 -8.693 -8.686 -8.680 -8.674 -8.668 -8.662 -8.656 -8.650 -8.644 -8.638 -8.618 -8.598 -8.578 -8.558 -8.539 -8.520 -8.501 -8.482 -8.464 -8.446 -8.431 -8.416 -8.401 -8.387 -8.372 -8.358 -8.344 -8.330 -8.316 -8.302 -8.294 -8.285 -8.277 -8.269 -8.260 -8.252 -8.244 -8.236 -8.227 -8.219 -8.214 -8.208 -8.203 -8.198 -8.192 -8.187 -8.181 -8.176 -8.171 -8.166 -8.161 -8.157 -8.153 -8.149 -8.145 -8.141 -8.137 -8.133 -8.129 -8.125 -8.125 -8.125 -8.125 -8.126 -8.126 -8.126 -8.126 -8.127 -8.127 -8.127 -8.123 -8.120 -8.116 -8.112 -8.108 -8.105 -8.101 -8.097 -8.093 -8.090 -8.089 -8.089 -8.089 -8.089 -8.089 -8.088 -8.088 -8.088 -8.088 -8.087 -8.092 -8.097 -8.102 -8.106 -8.111 -8.116 -8.121 -8.126 -8.131 -8.136 -8.140 -8.144 -8.148 -8.152 -8.156 -8.160 -8.164 -8.169 -8.173 -8.177 -8.185 -8.194 -8.202 -8.211 -8.219 -8.228 -8.237 -8.245 -8.254 -8.263 -8.273 -8.283 -8.293 -8.303 -8.313 -8.324 -8.334 -8.345 -8.355 -8.366 -8.381 -8.397 -8.413 -8.429 -8.445 -8.462 -8.478 -8.495 -8.512 -8.529 -8.535 -8.541 -8.547 -8.553 -8.559 -8.564 -8.570 -8.576 -8.582 -8.589 -8.601 -8.613 -8.626 -8.639 -8.651 -8.664 -8.677 -8.690 -8.704 -8.717 -8.729 -8.741 -8.753 -8.765 -8.777 -8.789 -8.802 -8.814 -8.827 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.840 -8.855 -8.871 -8.886 -8.902 -8.918 -8.934 -8.951 -8.967 -8.984 GEOMETRIC 250 -1 289 Exon 2 DEFINED 0 249 -13.672 -13.493 -13.333 -13.190 -13.059 -12.939 -12.829 -12.726 -12.630 -12.540 -12.455 -12.332 -12.219 -12.114 -12.016 -11.924 -11.838 -11.757 -11.680 -11.607 -11.537 -11.434 -11.338 -11.248 -11.163 -11.082 -11.006 -10.934 -10.865 -10.800 -10.737 -10.664 -10.594 -10.528 -10.464 -10.403 -10.345 -10.289 -10.235 -10.183 -10.132 -10.071 -10.012 -9.956 -9.902 -9.849 -9.799 -9.750 -9.703 -9.657 -9.613 -9.561 -9.511 -9.462 -9.415 -9.370 -9.326 -9.283 -9.241 -9.201 -9.162 -9.120 -9.080 -9.040 -9.002 -8.964 -8.928 -8.893 -8.858 -8.824 -8.791 -8.760 -8.729 -8.699 -8.670 -8.641 -8.613 -8.585 -8.558 -8.531 -8.505 -8.478 -8.451 -8.424 -8.398 -8.373 -8.348 -8.323 -8.299 -8.275 -8.252 -8.232 -8.211 -8.192 -8.172 -8.153 -8.134 -8.115 -8.096 -8.078 -8.060 -8.043 -8.027 -8.011 -7.995 -7.979 -7.963 -7.948 -7.932 -7.917 -7.902 -7.889 -7.877 -7.865 -7.853 -7.841 -7.829 -7.817 -7.805 -7.793 -7.782 -7.776 -7.769 -7.763 -7.757 -7.751 -7.745 -7.739 -7.733 -7.727 -7.721 -7.718 -7.714 -7.710 -7.706 -7.702 -7.698 -7.694 -7.691 -7.687 -7.683 -7.685 -7.686 -7.688 -7.690 -7.692 -7.694 -7.695 -7.697 -7.699 -7.701 -7.706 -7.712 -7.718 -7.724 -7.730 -7.736 -7.742 -7.748 -7.754 -7.760 -7.767 -7.774 -7.780 -7.788 -7.795 -7.802 -7.809 -7.816 -7.823 -7.830 -7.838 -7.845 -7.853 -7.860 -7.868 -7.875 -7.883 -7.891 -7.898 -7.906 -7.914 -7.921 -7.929 -7.936 -7.944 -7.952 -7.959 -7.967 -7.975 -7.983 -7.993 -8.003 -8.014 -8.024 -8.035 -8.045 -8.056 -8.067 -8.077 -8.088 -8.099 -8.111 -8.122 -8.133 -8.145 -8.156 -8.168 -8.179 -8.191 -8.203 -8.218 -8.233 -8.249 -8.265 -8.280 -8.296 -8.313 -8.329 -8.346 -8.362 -8.380 -8.398 -8.416 -8.434 -8.452 -8.471 -8.490 -8.509 -8.528 -8.548 -8.563 -8.577 -8.592 -8.607 -8.622 -8.638 -8.653 -8.669 -8.685 -8.701 -8.713 -8.726 -8.738 -8.751 -8.764 -8.777 -8.790 -8.803 -8.817 GEOMETRIC 250 -1 232 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 363 ORF 2 DEFINED 0 249 -13.672 -13.493 -13.333 -13.190 -13.059 -12.939 -12.829 -12.726 -12.630 -12.540 -12.455 -12.332 -12.219 -12.114 -12.016 -11.924 -11.838 -11.757 -11.680 -11.607 -11.537 -11.434 -11.338 -11.248 -11.163 -11.082 -11.006 -10.934 -10.865 -10.800 -10.737 -10.664 -10.594 -10.528 -10.464 -10.403 -10.345 -10.289 -10.235 -10.183 -10.132 -10.071 -10.012 -9.956 -9.902 -9.849 -9.799 -9.750 -9.703 -9.657 -9.613 -9.561 -9.511 -9.462 -9.415 -9.370 -9.326 -9.283 -9.241 -9.201 -9.162 -9.120 -9.080 -9.040 -9.002 -8.964 -8.928 -8.893 -8.858 -8.824 -8.791 -8.760 -8.729 -8.699 -8.670 -8.641 -8.613 -8.585 -8.558 -8.531 -8.505 -8.478 -8.451 -8.424 -8.398 -8.373 -8.348 -8.323 -8.299 -8.275 -8.252 -8.232 -8.211 -8.192 -8.172 -8.153 -8.134 -8.115 -8.096 -8.078 -8.060 -8.043 -8.027 -8.011 -7.995 -7.979 -7.963 -7.948 -7.932 -7.917 -7.902 -7.889 -7.877 -7.865 -7.853 -7.841 -7.829 -7.817 -7.805 -7.793 -7.782 -7.776 -7.769 -7.763 -7.757 -7.751 -7.745 -7.739 -7.733 -7.727 -7.721 -7.718 -7.714 -7.710 -7.706 -7.702 -7.698 -7.694 -7.691 -7.687 -7.683 -7.685 -7.686 -7.688 -7.690 -7.692 -7.694 -7.695 -7.697 -7.699 -7.701 -7.706 -7.712 -7.718 -7.724 -7.730 -7.736 -7.742 -7.748 -7.754 -7.760 -7.767 -7.774 -7.780 -7.788 -7.795 -7.802 -7.809 -7.816 -7.823 -7.830 -7.838 -7.845 -7.853 -7.860 -7.868 -7.875 -7.883 -7.891 -7.898 -7.906 -7.914 -7.921 -7.929 -7.936 -7.944 -7.952 -7.959 -7.967 -7.975 -7.983 -7.993 -8.003 -8.014 -8.024 -8.035 -8.045 -8.056 -8.067 -8.077 -8.088 -8.099 -8.111 -8.122 -8.133 -8.145 -8.156 -8.168 -8.179 -8.191 -8.203 -8.218 -8.233 -8.249 -8.265 -8.280 -8.296 -8.313 -8.329 -8.346 -8.362 -8.380 -8.398 -8.416 -8.434 -8.452 -8.471 -8.490 -8.509 -8.528 -8.548 -8.563 -8.577 -8.592 -8.607 -8.622 -8.638 -8.653 -8.669 -8.685 -8.701 -8.713 -8.726 -8.738 -8.751 -8.764 -8.777 -8.790 -8.803 -8.817 GEOMETRIC 250 -1 232 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.677 -1.520 -1.555 0.776 0.680 -1.556 -1.646 0.798 0.688 -1.513 -1.691 0.790 0.706 -1.528 -1.686 0.776 0.685 -1.505 -1.718 0.797 0.704 -1.487 -1.684 0.769 0.690 -1.467 -1.686 0.778 0.667 -1.452 -1.687 0.797 0.637 -1.496 -1.656 0.828 0.582 -1.449 -1.628 0.860 0.514 -1.479 -1.622 0.919 0.499 -1.424 -1.652 0.925 0.432 -1.351 -1.749 0.974 0.385 -1.433 -1.716 1.016 0.329 -1.412 -1.764 1.054 0.226 -1.436 -1.817 1.125 0.122 -1.392 -1.896 1.180 0.125 -1.295 -1.873 1.159 0.106 -1.266 -1.812 1.156 0.089 -1.333 -1.617 1.150 0.075 -1.408 -1.363 1.129 -0.706 -1.650 -2.149 1.510 -0.934 -1.277 -2.810 1.550 0.545 -1.483 -0.922 0.734 -1.961 0.748 -5.788 1.038 2.003 -13.468 -13.468 -13.468 -13.468 -13.468 2.003 -13.468 0.541 -1.194 0.615 -0.773 0.205 -0.901 -0.706 0.772 0.514 -0.836 -0.414 0.345 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 0.706 -1.845 -0.946 0.652 0.661 -1.574 -0.604 0.511 0.767 -1.145 -1.188 0.493 0.302 -1.432 -0.048 0.515 1.092 -1.885 -0.640 -0.065 0.844 -1.995 -0.586 0.364 0.653 -1.257 -1.038 0.606 -0.564 -0.961 -0.560 1.092 0.991 -2.048 -1.091 0.379 0.700 -1.649 -1.026 0.646 0.854 -1.136 -1.534 0.477 0.504 -1.687 -0.346 0.570 -12.353 -0.294 -12.353 1.671 0.457 -1.315 -0.499 0.602 -12.117 -0.523 0.610 0.830 0.789 -1.419 -0.245 0.076 0.326 -0.459 -0.323 0.286 -0.131 -0.380 0.525 -0.186 0.185 0.020 -0.466 0.170 -0.028 -0.248 0.122 0.123 0.460 -0.354 -0.076 -0.162 -0.182 -0.544 0.618 -0.156 0.146 -0.425 -0.391 0.471 -1.046 -0.054 0.667 -0.052 0.070 -0.520 0.309 0.021 -0.698 -0.199 0.744 -0.256 -0.102 -0.117 -0.057 0.245 -0.660 -0.669 0.825 -0.048 -10.064 0.794 -10.064 1.179 -0.835 -0.625 0.903 -0.119 -10.239 0.325 0.406 0.507 -0.162 -0.051 0.015 0.176 0.654 -0.836 -0.118 -0.082 0.150 -0.567 0.229 0.062 0.188 -0.122 0.126 -0.233 0.041 -0.017 -0.016 -0.009 0.778 -1.005 0.081 -0.456 0.391 -1.103 0.211 0.092 0.323 -0.741 -0.243 0.385 -0.799 -0.367 0.428 0.383 0.455 -0.841 0.102 -0.003 0.028 -0.674 0.414 0.029 0.152 -0.375 -0.436 0.463 -0.320 -0.663 0.682 -0.055 -10.471 0.826 -10.471 1.155 -0.178 -0.740 0.504 0.136 -10.398 0.407 0.236 0.580 0.135 -0.295 0.210 -0.104 0.783 -1.663 -1.492 0.686 0.821 -1.349 -1.165 0.479 0.664 -0.872 -1.647 0.632 0.234 -1.187 -0.279 0.642 0.877 -1.318 -0.797 0.246 0.681 -1.296 -0.910 0.543 0.528 -0.925 -1.198 0.674 -0.517 -0.621 -0.297 0.877 0.903 -1.818 -1.628 0.606 0.748 -1.210 -1.450 0.606 0.782 -0.970 -1.868 0.581 0.528 -1.456 -0.757 0.680 -12.435 0.094 -12.435 1.552 0.344 -0.850 -0.735 0.656 -12.165 -0.300 0.550 0.785 0.691 -1.040 -0.402 0.192 0.797 -1.780 -1.094 0.587 0.771 -1.362 -0.799 0.411 0.766 -1.022 -1.323 0.493 0.246 -1.587 0.040 0.539 1.107 -2.234 -0.882 0.126 0.765 -1.582 -0.585 0.379 0.712 -1.264 -1.294 0.621 -0.657 -1.105 -0.685 1.188 0.993 -1.979 -1.278 0.427 0.670 -1.056 -1.102 0.549 0.922 -0.832 -1.684 0.302 0.483 -1.571 -0.475 0.629 -11.270 -0.493 -11.270 1.717 0.507 -1.025 -0.725 0.568 -11.155 -0.888 0.826 0.754 0.725 -1.557 -0.342 0.285 0.295 -0.485 -0.160 0.219 -0.405 0.087 0.320 -0.098 0.136 0.069 -0.508 0.200 -0.167 -0.122 0.074 0.186 0.501 -0.485 0.019 -0.221 -0.263 -0.229 0.450 -0.079 0.190 -0.116 -0.840 0.462 -1.408 0.333 0.289 0.191 -0.001 -0.486 0.304 0.073 -0.659 0.174 0.395 -0.115 -0.034 0.131 -0.639 0.363 -0.689 -0.113 0.549 -0.011 -9.585 0.784 -9.585 1.187 -1.041 0.026 0.724 -0.244 -9.965 0.480 0.280 0.475 0.027 -0.043 0.110 -0.104 0.485 -0.378 -0.304 0.030 -0.148 0.137 0.371 -0.504 -0.043 0.297 0.061 -0.401 -0.066 0.234 0.050 -0.263 0.678 -0.646 -0.026 -0.360 0.104 -0.231 0.270 -0.205 0.525 -0.612 -0.324 0.147 -1.017 0.163 0.071 0.418 0.497 -0.534 -0.158 0.003 -0.189 0.220 0.208 -0.317 0.172 0.058 -0.379 0.088 -0.403 -0.162 0.556 -0.186 -10.362 1.090 -10.362 0.902 -0.834 0.272 0.589 -0.458 -10.211 0.454 0.519 0.258 -0.409 0.162 0.565 -0.624 0.769 -1.673 -1.332 0.664 0.703 -1.172 -1.105 0.549 0.591 -0.848 -1.517 0.668 0.233 -1.365 -0.094 0.585 0.939 -1.510 -0.793 0.208 0.785 -1.528 -1.077 0.542 0.666 -1.047 -1.595 0.677 -0.514 -0.758 -0.397 0.962 0.872 -1.764 -1.528 0.612 0.661 -0.900 -1.400 0.588 0.722 -0.961 -2.160 0.690 0.463 -1.162 -0.526 0.566 -11.366 0.141 -11.366 1.534 0.288 -0.699 -0.679 0.621 -11.413 -0.109 0.390 0.817 0.757 -1.089 -0.115 -0.126 0.788 -1.270 -0.992 0.439 0.706 -1.323 -0.548 0.362 0.759 -0.683 -0.971 0.232 0.282 -1.146 0.041 0.382 0.977 -1.352 -0.916 0.150 0.856 -1.544 -0.793 0.345 0.666 -0.902 -1.252 0.544 -0.632 -0.852 -0.494 1.064 0.871 -1.552 -1.179 0.473 0.751 -1.258 -0.943 0.464 0.815 -0.917 -1.450 0.427 0.518 -1.400 -0.290 0.456 -10.953 0.241 -10.953 1.494 0.317 -0.816 -0.224 0.412 -10.702 -0.245 0.641 0.675 0.618 -1.032 -0.225 0.164 0.415 -0.404 -0.328 0.156 0.095 -0.140 0.191 -0.179 0.104 0.290 -0.806 0.177 -0.076 -0.146 0.047 0.156 0.494 -0.389 -0.017 -0.252 -0.148 -0.223 0.287 0.030 0.091 -0.192 -0.597 0.484 -1.104 0.160 0.348 0.194 -0.007 -0.302 0.231 0.029 -0.554 0.232 0.342 -0.190 -0.060 0.205 -0.611 0.302 -0.555 -0.278 0.648 -0.108 -9.646 0.914 -9.646 1.079 -0.782 -0.263 0.737 -0.124 -9.712 0.374 0.378 0.489 -0.038 0.127 -0.020 -0.078 0.616 -0.560 -0.288 -0.044 0.367 -0.503 0.108 -0.109 0.379 -0.132 -0.092 -0.236 0.203 -0.153 0.020 -0.096 0.694 -0.764 -0.251 -0.070 0.419 -0.828 0.207 -0.081 0.431 -0.734 -0.113 0.172 -0.591 -0.337 0.351 0.344 0.395 -0.524 -0.191 0.155 0.334 -0.592 0.191 -0.097 0.268 -0.133 -0.935 0.444 -0.001 -0.644 0.456 -0.016 -9.660 0.746 -9.660 1.215 0.025 -0.439 0.169 0.165 -9.628 -0.035 0.668 0.520 0.295 -0.412 0.119 -0.096 0.852 -1.210 -1.725 0.547 0.802 -1.041 -1.244 0.431 0.555 -0.398 -1.955 0.598 0.259 -0.864 -0.294 0.524 0.925 -1.284 -0.947 0.229 0.859 -1.349 -1.364 0.490 0.516 -0.784 -1.450 0.699 -0.536 -0.572 -0.485 0.944 0.820 -1.373 -1.746 0.633 0.694 -0.813 -1.687 0.588 0.639 -0.773 -2.105 0.701 0.460 -0.925 -0.792 0.605 -11.294 0.399 -11.294 1.423 0.328 -0.556 -0.829 0.586 -11.139 0.016 0.445 0.702 0.642 -0.656 -0.328 0.012 0.878 -1.646 -1.263 0.512 0.846 -1.354 -0.916 0.358 0.848 -0.935 -1.285 0.341 0.309 -1.279 0.009 0.425 1.125 -1.874 -1.024 0.076 0.884 -1.588 -0.897 0.361 0.756 -0.951 -1.425 0.507 -0.622 -0.709 -0.816 1.118 0.975 -1.858 -1.348 0.449 0.768 -1.211 -1.403 0.573 0.918 -0.887 -1.884 0.377 0.529 -1.281 -0.542 0.545 -11.524 -0.331 -11.524 1.680 0.551 -1.039 -0.842 0.576 -11.479 -0.410 0.576 0.812 0.728 -1.385 -0.447 0.295 0.357 -0.530 -0.196 0.207 -0.101 0.003 0.130 -0.042 0.226 0.006 -0.517 0.174 -0.143 -0.050 0.023 0.154 0.568 -0.451 -0.189 -0.139 0.055 -0.132 0.027 0.042 0.004 -0.008 -0.711 0.477 -0.958 0.417 0.076 0.132 -0.055 -0.327 0.229 0.095 -0.508 0.274 0.217 -0.113 -0.344 0.334 -0.860 0.486 -0.530 0.076 0.256 0.084 -10.270 0.938 -10.270 1.059 -0.475 -0.015 0.426 -0.077 -10.330 0.494 0.317 0.428 -0.007 0.227 -0.302 0.034 0.655 -0.573 -0.363 -0.035 0.362 -0.295 -0.071 -0.078 0.525 -0.067 -0.361 -0.274 0.085 -0.086 0.107 -0.120 0.938 -0.868 -0.408 -0.353 0.592 -0.627 -0.298 0.046 0.520 -0.284 -1.002 0.317 -0.736 0.035 0.119 0.366 0.607 -0.652 -0.452 0.150 0.330 -0.192 -0.356 0.119 0.451 -0.089 -1.452 0.408 -0.033 -0.231 0.197 0.035 -10.972 0.827 -10.972 1.154 -0.041 -0.142 0.013 0.154 -10.850 0.405 0.465 0.374 0.247 -0.192 0.084 -0.187 0.842 -1.704 -1.376 0.600 0.781 -1.106 -1.253 0.483 0.673 -0.842 -1.631 0.609 0.238 -1.211 -0.187 0.595 0.978 -1.350 -1.023 0.197 0.820 -1.419 -1.299 0.540 0.704 -0.832 -1.840 0.613 -0.342 -0.508 -0.647 0.902 0.883 -1.794 -1.638 0.628 0.668 -0.903 -1.609 0.631 0.746 -0.865 -2.241 0.644 0.498 -1.148 -0.837 0.657 -11.864 0.015 -11.864 1.580 0.398 -0.825 -0.984 0.689 -11.827 -0.190 0.377 0.868 0.819 -0.998 -0.405 -0.029 frame1 LUT 5 4 4 0 0.000 0.382 -0.572 0.111 -0.082 0.728 -1.621 0.344 -0.417 0.751 -0.722 0.032 -0.539 0.439 -0.596 0.161 -0.209 0.437 -0.661 0.066 -0.048 0.689 -1.207 0.426 -0.709 0.562 -0.555 0.049 -0.306 0.223 -0.537 0.334 -0.180 0.487 -0.623 0.097 -0.185 0.742 -1.086 0.261 -0.603 0.597 -0.107 0.061 -0.957 0.312 -0.517 0.155 -0.079 0.343 -0.558 0.054 0.020 0.576 -1.187 0.482 -0.571 0.350 -0.565 0.292 -0.278 0.226 -0.434 0.236 -0.131 0.405 -0.322 -0.006 -0.184 0.501 -1.028 0.471 -0.498 0.384 0.024 -0.100 -0.424 0.220 -0.279 -0.013 0.029 0.299 -0.203 0.066 -0.227 0.422 -0.507 0.311 -0.482 0.331 -0.173 0.094 -0.344 0.085 -0.230 0.302 -0.228 0.378 -0.552 0.062 -0.038 0.498 -0.977 0.552 -0.706 0.279 -0.014 0.175 -0.583 0.242 -0.527 0.174 -0.007 0.247 -0.336 0.068 -0.041 0.385 -1.341 0.555 -0.269 0.303 -0.217 0.194 -0.392 -0.040 -0.181 0.171 0.028 0.495 -0.825 0.248 -0.254 0.764 -1.654 0.303 -0.416 0.599 -0.706 0.381 -0.812 0.313 -0.634 0.251 -0.115 0.375 -0.619 0.223 -0.176 0.659 -0.992 0.314 -0.566 0.501 -0.434 0.171 -0.477 0.139 -0.565 0.440 -0.209 0.523 -0.729 0.054 -0.117 0.569 -0.690 0.235 -0.473 0.684 -0.404 0.198 -1.027 -0.101 -0.408 0.438 -0.060 0.295 -0.417 0.070 -0.037 0.555 -1.022 0.446 -0.563 0.520 -0.526 0.249 -0.551 0.086 -0.444 0.308 -0.051 0.000 0.000 0.000 0.000 0.692 -1.265 0.395 -0.612 0.000 0.000 0.000 0.000 0.253 -0.442 0.072 0.029 0.483 -0.562 -0.009 -0.102 0.530 -0.891 0.266 -0.297 0.631 -0.602 -0.079 -0.242 0.167 -0.389 0.239 -0.100 0.000 0.000 0.000 0.000 0.603 -0.864 0.329 -0.566 0.503 -0.599 0.065 -0.191 0.228 -0.420 0.140 -0.030 0.390 -0.453 0.050 -0.116 0.439 -0.732 0.224 -0.195 0.412 -0.454 0.303 -0.504 0.162 -0.440 0.185 0.010 0.180 -0.507 0.384 -0.221 0.620 -1.384 0.593 -0.808 0.519 -0.639 0.226 -0.405 0.193 -0.175 0.061 -0.108 0.292 -0.623 0.318 -0.185 0.468 -0.796 0.511 -0.698 0.329 -0.533 0.174 -0.114 -0.024 -0.338 0.222 0.083 0.302 -0.551 0.262 -0.175 0.471 -0.442 0.360 -0.750 0.308 0.115 0.196 -0.906 0.105 -0.344 0.127 0.063 0.247 -0.467 0.271 -0.180 0.482 -0.980 0.569 -0.707 0.283 -0.546 0.298 -0.202 0.070 -0.172 0.178 -0.102 0.079 -0.239 0.294 -0.200 0.079 -0.377 0.625 -0.662 0.274 -0.183 0.294 -0.547 -0.254 0.341 -0.221 0.051 0.156 -0.172 0.265 -0.329 -0.048 -0.215 0.551 -0.502 0.280 -0.371 0.162 -0.162 -0.179 -0.079 0.317 -0.114 0.075 -0.348 0.144 0.080 0.032 -0.398 0.734 -0.851 0.063 0.060 0.323 -0.595 -0.148 -0.338 0.331 0.069 0.268 -0.218 0.236 -0.399 -0.010 -0.746 0.746 -0.447 0.227 -0.377 0.262 -0.217 -0.320 0.272 0.109 -0.131 0.222 -0.723 0.416 -0.163 0.405 -1.157 0.728 -0.808 0.329 -0.570 0.537 -0.691 -0.008 -0.008 0.037 -0.021 0.249 -0.563 0.380 -0.263 0.393 -0.555 0.436 -0.616 0.495 -0.656 0.230 -0.352 -0.265 -0.215 0.341 0.056 0.407 -0.878 0.163 0.015 0.192 -0.157 0.503 -0.878 0.565 -0.383 0.346 -1.050 -0.036 -0.740 0.517 -0.008 0.244 -0.295 0.157 -0.175 0.170 -0.561 0.650 -0.672 0.418 -0.539 0.312 -0.445 -0.211 -0.068 0.157 0.094 0.000 0.000 0.000 0.000 0.441 -1.037 0.598 -0.639 0.000 0.000 0.000 0.000 -0.046 0.018 -0.021 0.047 0.398 -0.559 0.225 -0.262 0.293 -0.440 0.072 -0.019 0.541 -0.626 -0.056 -0.097 -0.117 -0.224 0.254 0.041 0.000 0.000 0.000 0.000 0.287 -0.396 0.560 -0.873 0.252 -0.321 0.120 -0.117 -0.053 -0.232 0.147 0.107 0.425 -0.466 0.165 -0.301 0.378 -0.472 0.270 -0.370 0.446 -0.524 0.354 -0.592 0.009 -0.297 0.235 0.004 0.362 -0.230 0.089 -0.324 0.562 -1.447 0.797 -1.253 0.800 -0.495 0.148 -1.181 0.228 -0.035 -0.106 -0.114 0.400 -0.380 0.174 -0.351 0.748 -0.985 0.445 -1.140 0.690 -0.545 0.092 -0.653 0.145 -0.407 0.315 -0.158 0.500 -0.473 -0.038 -0.166 0.604 -0.698 0.435 -0.968 0.720 -0.109 0.006 -1.248 0.221 -0.151 -0.139 0.036 0.214 -0.151 0.014 -0.106 0.387 -0.824 0.678 -0.923 0.401 -0.337 0.260 -0.535 0.088 -0.040 0.067 -0.126 0.244 0.089 -0.030 -0.373 0.751 -1.062 0.446 -1.071 0.437 0.279 -0.071 -1.056 0.120 0.234 -0.312 -0.102 0.318 -0.057 0.050 -0.402 0.449 -0.409 0.440 -0.928 0.476 -0.133 0.054 -0.602 0.095 -0.075 0.239 -0.318 0.380 -0.327 0.068 -0.229 0.542 -0.853 0.669 -1.321 0.301 0.106 0.264 -1.026 0.252 -0.371 0.176 -0.142 0.127 0.083 0.078 -0.335 0.413 -1.068 0.677 -0.753 0.273 -0.195 0.255 -0.464 -0.090 0.216 0.043 -0.203 0.360 -0.484 0.247 -0.295 0.591 -1.531 0.785 -1.235 0.602 -0.639 0.518 -1.296 0.208 -0.164 0.137 -0.229 0.290 -0.382 0.302 -0.365 0.544 -0.990 0.628 -1.019 0.518 -0.347 0.188 -0.640 0.029 -0.348 0.534 -0.421 0.472 -0.573 -0.009 -0.078 0.405 -0.424 0.472 -0.881 0.757 -0.275 0.180 -1.512 0.188 -0.465 0.352 -0.219 0.182 -0.182 0.074 -0.104 0.242 -0.745 0.788 -1.018 0.513 -0.397 0.249 -0.679 -0.056 -0.087 0.333 -0.257 0.000 0.000 0.000 0.000 0.771 -1.268 0.468 -1.016 0.000 0.000 0.000 0.000 0.015 0.206 -0.207 -0.045 0.373 -0.277 0.058 -0.254 0.550 -0.613 0.302 -0.623 0.637 -0.473 -0.080 -0.362 -0.039 -0.076 0.169 -0.069 0.000 0.000 0.000 0.000 0.597 -0.518 0.346 -0.948 0.572 -0.409 -0.086 -0.288 0.075 0.006 -0.120 0.031 0.388 -0.164 -0.051 -0.262 0.427 -0.461 0.371 -0.652 0.529 -0.292 0.249 -0.858 0.011 -0.017 0.109 -0.111 0.537 -0.666 0.097 -0.235 0.891 -1.507 0.265 -0.756 0.704 -0.564 0.109 -0.699 0.443 -0.568 0.081 -0.139 0.480 -0.637 0.078 -0.142 0.752 -1.189 0.281 -0.594 0.558 -0.499 0.063 -0.368 0.244 -0.554 0.248 -0.078 0.555 -0.575 0.113 -0.364 0.749 -0.891 0.199 -0.659 0.683 -0.115 -0.123 -0.854 0.338 -0.546 0.186 -0.131 0.419 -0.462 -0.008 -0.085 0.634 -1.053 0.423 -0.677 0.370 -0.425 0.232 -0.342 0.243 -0.453 0.220 -0.118 0.360 -0.340 0.173 -0.322 0.615 -0.944 0.434 -0.742 0.509 -0.248 0.030 -0.486 0.149 -0.035 -0.059 -0.067 0.373 -0.325 0.120 -0.287 0.490 -0.639 0.343 -0.544 0.296 -0.274 0.269 -0.436 0.100 -0.285 0.353 -0.270 0.352 -0.501 0.117 -0.100 0.453 -0.772 0.625 -0.992 0.050 0.103 0.305 -0.610 0.220 -0.452 0.234 -0.108 0.266 -0.166 0.011 -0.154 0.402 -1.076 0.517 -0.372 0.354 -0.449 0.321 -0.433 -0.016 -0.044 0.196 -0.159 0.572 -0.796 0.192 -0.330 0.837 -1.287 0.199 -0.608 0.793 -0.597 0.132 -0.970 0.339 -0.564 0.241 -0.189 0.417 -0.581 0.173 -0.203 0.734 -0.970 0.131 -0.452 0.561 -0.505 0.220 -0.610 0.170 -0.480 0.393 -0.243 0.630 -0.735 0.048 -0.290 0.605 -0.505 0.137 -0.568 0.784 -0.279 0.031 -1.209 0.219 -0.556 0.323 -0.144 0.390 -0.321 -0.041 -0.124 0.623 -0.811 0.253 -0.518 0.551 -0.347 0.163 -0.670 0.209 -0.428 0.285 -0.181 0.000 0.000 0.000 0.000 0.671 -1.252 0.442 -0.670 0.000 0.000 0.000 0.000 0.196 -0.270 0.098 -0.067 0.507 -0.549 0.019 -0.181 0.634 -0.985 0.186 -0.313 0.659 -0.622 -0.062 -0.298 0.163 -0.445 0.297 -0.125 0.000 0.000 0.000 0.000 0.598 -0.749 0.301 -0.602 0.463 -0.525 0.110 -0.238 0.192 -0.345 0.179 -0.092 0.469 -0.460 0.009 -0.180 0.474 -0.583 0.140 -0.248 0.424 -0.475 0.372 -0.635 0.251 -0.372 0.342 -0.378 frame2 LUT 5 4 4 0 0.000 0.690 -0.562 -0.773 0.168 0.636 0.004 -0.551 -0.394 0.953 -0.499 -0.796 -0.359 -0.540 -0.085 -0.853 0.860 0.795 -0.649 -0.497 -0.123 0.587 -0.221 -0.758 0.068 0.835 -0.560 -0.542 -0.232 -0.912 0.144 -0.675 0.797 0.963 -1.002 -0.583 -0.179 0.741 -0.123 -1.106 -0.079 1.157 -0.615 -0.857 -0.823 -0.413 -0.170 -0.548 0.745 0.648 -0.564 -1.036 0.343 0.584 0.104 -0.862 -0.192 0.715 -0.469 -0.382 -0.203 -0.581 0.038 -0.918 0.828 0.657 -0.274 -0.790 0.025 0.444 0.666 -1.220 -0.680 0.821 -0.324 -0.650 -0.328 -0.958 0.205 -1.067 0.891 0.305 0.073 -0.264 -0.184 0.421 -0.012 -1.334 0.348 0.690 -0.437 -0.374 -0.189 -0.920 0.425 -0.447 0.481 0.505 -0.357 -0.415 0.070 0.518 0.393 -1.084 -0.353 0.864 -0.375 -0.776 -0.279 -0.704 0.025 -0.779 0.837 0.238 -0.103 -0.678 0.339 0.518 0.213 -1.075 -0.098 0.331 -0.123 -0.121 -0.145 -0.763 0.070 -0.662 0.790 0.627 -0.659 -0.223 -0.050 0.639 0.062 -0.518 -0.513 0.809 -0.294 -0.551 -0.416 -0.775 0.003 -0.890 0.906 0.618 -0.464 -0.139 -0.265 0.421 0.317 -1.101 -0.075 0.734 -0.615 -0.212 -0.284 -0.745 0.347 -0.764 0.625 0.751 -0.852 -0.319 -0.057 0.585 0.183 -0.771 -0.360 1.022 -0.452 -0.776 -0.613 -0.421 -0.136 -0.637 0.766 0.518 -0.422 -0.517 0.167 0.519 0.410 -0.998 -0.439 0.585 -0.417 -0.002 -0.410 -0.686 0.137 -1.019 0.836 0.784 -0.601 -0.922 0.125 0.600 0.397 -1.005 -0.582 0.919 -0.302 -0.826 -0.446 -0.881 0.146 -0.920 0.866 0.578 -0.233 -0.528 -0.055 0.341 -0.125 -0.974 0.387 0.844 -0.493 -0.637 -0.232 -0.726 0.202 -0.623 0.674 0.666 -0.553 -0.691 0.154 0.664 -0.000 -1.060 -0.095 0.854 -0.272 -0.620 -0.488 -0.598 -0.028 -0.716 0.807 0.570 -0.392 -0.865 0.269 0.593 0.020 -0.863 -0.108 0.613 -0.270 -0.311 -0.260 -0.668 -0.009 -0.702 0.817 0.615 -0.446 -0.552 0.073 1.000 -0.186 -0.942 -0.737 0.808 -0.273 -0.640 -0.359 -0.672 -0.118 -0.793 0.906 0.515 -0.495 -0.226 0.009 0.985 -0.494 -1.047 -0.274 0.703 -0.450 -0.430 -0.156 -0.834 0.016 -0.360 0.721 0.713 -0.742 -0.241 -0.125 1.201 -0.464 -1.651 -0.606 0.972 -0.275 -0.688 -0.757 -0.426 -0.258 -0.470 0.764 0.484 -0.466 -0.561 0.263 0.741 0.136 -0.861 -0.558 0.516 -0.258 -0.213 -0.199 -0.575 -0.121 -0.664 0.830 0.600 -0.302 -0.561 -0.006 0.176 0.934 -1.048 -1.070 0.766 -0.295 -0.534 -0.333 -0.804 0.252 -1.001 0.796 0.373 -0.103 -0.246 -0.103 0.480 0.189 -1.135 0.015 0.753 -0.525 -0.406 -0.209 -0.718 0.538 -0.602 0.357 0.482 -0.396 -0.284 0.031 0.359 0.744 -1.211 -0.713 0.839 -0.217 -0.901 -0.294 -0.526 0.176 -0.993 0.743 0.258 -0.199 -0.553 0.324 0.464 0.445 -1.126 -0.320 0.435 -0.430 -0.032 -0.108 -0.499 0.029 -0.756 0.748 0.645 -0.747 -0.209 -0.037 0.596 -0.008 -0.333 -0.515 0.810 -0.353 -0.458 -0.442 -0.672 -0.006 -0.781 0.844 0.575 -0.489 -0.089 -0.221 0.638 -0.723 -0.037 -0.212 0.835 -0.572 -0.539 -0.226 -0.468 0.204 -0.646 0.572 0.881 -1.008 -0.616 0.013 0.549 0.082 -0.643 -0.255 1.030 -0.494 -0.710 -0.652 -0.554 -0.141 -0.679 0.838 0.503 -0.486 -0.334 0.104 0.591 -0.375 -0.171 -0.261 0.484 -0.267 0.015 -0.396 -0.487 -0.146 -0.716 0.827 0.608 -0.436 -0.561 0.083 0.422 0.289 -0.501 -0.451 0.648 -0.124 -0.513 -0.295 -0.926 0.022 -0.857 0.931 0.370 -0.116 -0.093 -0.239 0.661 -0.506 -0.983 0.274 0.837 -0.420 -0.522 -0.377 -0.447 0.179 -0.516 0.521 0.527 -0.603 -0.358 0.164 0.482 0.198 -1.158 0.011 0.692 -0.044 -0.877 -0.201 -0.823 0.014 -0.739 0.868 0.308 -0.311 -0.375 0.245 0.626 -0.214 -0.635 -0.072 0.394 -0.127 0.007 -0.384 -0.643 -0.068 -0.580 0.797 0.702 -0.577 -0.661 0.099 0.730 -0.187 -0.585 -0.327 1.014 -0.455 -0.850 -0.522 -0.602 -0.161 -0.815 0.909 0.648 -0.538 -0.331 -0.075 0.526 -0.126 -0.731 0.059 1.020 -0.715 -0.773 -0.363 -0.765 0.138 -0.650 0.743 0.875 -0.881 -0.459 -0.160 0.724 -0.100 -1.096 -0.078 1.152 -0.515 -0.896 -0.885 -0.511 -0.146 -0.534 0.769 0.519 -0.546 -0.820 0.395 0.378 0.188 -0.740 -0.055 0.802 -0.519 -0.424 -0.298 -0.499 -0.049 -0.801 0.809 0.566 -0.318 -0.622 0.094 0.576 0.276 -0.880 -0.406 0.645 0.115 -0.794 -0.364 -0.919 -0.032 -0.970 0.987 0.404 -0.230 -0.223 -0.048 0.490 -0.378 -1.020 0.415 0.591 -0.000 -0.397 -0.446 -0.805 0.419 -0.441 0.437 0.490 -0.488 -0.242 0.053 0.438 0.312 -0.941 -0.179 0.660 0.157 -0.888 -0.387 -0.833 0.004 -0.867 0.916 0.209 -0.297 -0.531 0.420 0.556 -0.304 -0.844 0.217 0.183 0.111 -0.139 -0.190 -0.775 -0.162 -0.568 0.885 0.658 -0.560 -0.461 0.025 0.679 0.192 -0.766 -0.582 0.750 -0.454 -0.170 -0.515 -0.427 -0.059 -0.842 0.798 0.523 -0.274 -0.236 -0.173 0.643 -0.362 -0.703 0.065 0.614 -0.463 0.017 -0.449 -0.482 0.334 -0.495 0.393 0.842 -0.664 -0.765 -0.017 0.550 0.365 -1.001 -0.417 0.842 -0.291 -0.507 -0.542 -0.616 0.091 -0.728 0.747 0.165 -0.296 -0.352 0.357 0.530 -0.089 -0.582 -0.076 0.222 -0.364 0.274 -0.239 -0.549 -0.154 -0.666 0.838 0.695 -0.287 -1.167 0.159 0.572 0.384 -0.908 -0.564 0.789 -0.155 -0.803 -0.319 -0.887 0.174 -0.860 0.832 0.332 0.083 -0.259 -0.240 0.510 -0.040 -1.095 0.183 0.749 -0.317 -0.401 -0.397 -0.726 0.477 -0.458 0.351 0.708 -0.520 -0.917 0.189 0.553 0.262 -1.207 -0.152 0.855 -0.249 -1.025 -0.220 -0.708 0.023 -0.648 0.794 0.433 -0.180 -0.734 0.221 0.518 -0.023 -0.735 -0.024 0.439 -0.142 -0.179 -0.226 -0.640 0.066 -0.556 0.706 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.640 -0.478 -0.360 -0.082 0.631 -0.513 -0.846 0.256 0.830 -0.524 -0.546 -0.248 -0.597 -0.135 -0.610 0.826 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.604 -0.511 -0.693 0.214 0.634 0.093 -0.834 -0.286 0.662 -0.358 -0.243 -0.336 -0.410 -0.216 -0.634 0.801 0.757 -0.339 -0.659 -0.175 0.602 0.451 -0.808 -0.876 0.953 -0.457 -0.672 -0.498 -1.025 0.395 -1.086 0.785 0.291 -0.035 -0.278 -0.036 0.423 -0.026 -1.018 0.242 0.631 -0.461 -0.252 -0.175 -1.249 0.772 -0.762 0.358 0.524 -0.449 -0.094 -0.165 0.493 0.541 -0.895 -0.739 0.780 -0.172 -0.799 -0.285 -0.928 0.478 -0.983 0.656 0.366 -0.150 -0.638 0.223 0.639 0.077 -0.937 -0.209 0.557 -0.357 -0.166 -0.224 -0.906 0.315 -0.799 0.720 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.633 -0.492 -0.422 -0.011 0.437 -0.040 -0.759 0.115 0.740 -0.550 -0.277 -0.285 -0.781 0.111 -0.396 0.658 0.635 -0.622 -0.491 0.119 0.623 -0.191 -0.817 0.023 0.795 -0.360 -0.391 -0.468 -0.638 -0.208 -0.543 0.852 0.555 -0.426 -0.729 0.242 0.515 0.242 -0.788 -0.304 0.603 -0.385 -0.075 -0.383 -0.665 -0.066 -0.613 0.816 0.743 -0.507 -0.692 0.005 0.652 0.226 -0.752 -0.588 0.856 -0.187 -0.746 -0.485 -0.791 0.052 -0.878 0.881 0.591 -0.286 -0.543 -0.019 0.418 -0.210 -0.798 0.293 0.764 -0.498 -0.555 -0.131 -0.747 0.008 -0.725 0.843 0.846 -0.618 -0.708 -0.092 0.699 -0.017 -1.035 -0.151 0.958 -0.223 -0.845 -0.635 -0.572 0.091 -0.910 0.791 0.577 -0.464 -0.829 0.287 0.559 -0.025 -0.800 -0.045 0.610 -0.388 -0.160 -0.296 -0.489 -0.058 -0.675 0.766 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.666 0.046 -0.668 -0.411 1.271 -1.123 -1.363 -0.436 -0.280 -2.272 1.338 -1.180 -13.471 -13.471 2.000 -13.471 -13.471 -13.471 -13.471 2.000 1.642 -3.894 -1.071 -1.580 1.362 -1.719 -2.681 -0.047 0.073 -2.821 1.084 -0.547 -0.042 -1.669 -2.113 1.311 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.941 -1.764 -1.325 0.472 0.756 -1.643 -0.224 0.182 0.958 -1.283 -0.998 0.196 0.716 -1.381 -1.117 0.597 0.781 -1.166 -1.063 0.441 0.476 -1.147 -0.024 0.232 0.825 -0.817 -0.920 0.180 0.233 -0.903 -0.680 0.736 0.998 -1.813 -0.803 0.196 0.688 -1.264 -0.141 0.091 0.987 -1.201 -0.488 -0.201 0.538 -1.397 -0.509 0.551 0.663 -1.618 -1.696 0.833 0.555 -1.265 -0.140 0.272 0.668 -0.958 -1.109 0.519 0.449 -1.191 -1.063 0.781 0.741 -1.214 -1.115 0.522 0.718 -1.259 0.138 -0.258 0.656 -0.818 -0.753 0.337 0.615 -1.118 -1.037 0.605 0.555 -0.465 -0.788 0.295 0.065 -0.330 -0.043 0.248 0.485 -0.392 -0.515 0.187 0.059 -0.240 -0.458 0.468 0.534 -1.085 -0.400 0.404 0.200 -1.000 0.595 -0.251 0.565 -0.565 -0.492 0.181 0.314 -0.976 -0.100 0.395 0.382 -0.929 -1.267 0.812 -0.030 -1.087 0.401 0.298 0.366 -0.496 -0.860 0.537 0.142 -0.806 -0.748 0.790 0.938 -1.657 -0.747 0.227 0.688 -1.412 0.007 0.013 1.175 -1.339 -0.554 -0.589 0.634 -1.045 -0.820 0.482 0.687 -0.892 -0.656 0.282 0.494 -1.017 0.092 0.045 0.602 -0.455 -0.574 0.112 0.126 -0.589 -0.396 0.569 0.831 -1.522 -0.264 0.057 0.436 -0.782 0.180 -0.100 0.821 -1.082 0.060 -0.476 0.402 -1.063 -0.185 0.401 0.600 -1.093 -1.064 0.621 0.501 -1.202 0.068 0.141 0.612 -0.688 -0.697 0.303 0.238 -0.928 -0.762 0.770 0.790 -1.678 -1.686 0.721 0.967 -1.575 -0.570 0.050 0.874 -1.102 -1.262 0.361 0.875 -1.553 -1.491 0.555 0.632 -1.055 -1.300 0.644 0.491 -0.807 -0.446 0.367 0.836 -0.891 -1.211 0.314 0.240 -0.578 -1.012 0.725 0.859 -1.462 -1.526 0.562 0.860 -1.312 -0.404 0.038 0.828 -0.449 -1.202 0.082 0.753 -1.413 -0.802 0.449 0.566 -1.409 -1.897 0.906 0.495 -1.024 -0.449 0.450 0.544 -0.794 -1.221 0.620 0.347 -0.954 -1.245 0.840 0.683 -1.158 -0.974 0.523 0.602 -1.046 -0.006 0.003 0.690 -0.828 -0.834 0.336 0.440 -0.960 -0.881 0.666 0.434 -0.289 -0.942 0.390 0.389 -0.657 0.106 -0.028 0.481 -0.347 -0.849 0.337 -0.124 -0.442 -0.454 0.692 0.703 -1.184 -0.528 0.308 0.493 -0.533 -0.216 0.058 0.548 -0.597 -0.464 0.204 0.207 -0.810 -0.175 0.475 0.472 -1.084 -1.499 0.838 0.381 -0.846 0.039 0.156 0.416 -0.577 -0.944 0.561 0.194 -0.792 -0.842 0.783 0.465 -0.598 -0.776 0.460 -0.183 -0.073 0.273 -0.059 0.382 -0.354 -0.600 0.327 -0.029 -0.097 -0.894 0.629 0.279 -0.062 -0.763 0.309 -0.570 0.337 -0.348 0.354 0.184 -0.009 -0.612 0.282 -0.738 0.518 -0.843 0.496 0.134 -0.568 -0.262 0.480 -0.362 -0.065 0.485 -0.207 0.128 -0.014 -0.600 0.330 -0.331 -0.274 -0.038 0.490 0.311 -0.651 -1.023 0.705 -0.850 0.090 0.213 0.289 0.092 -0.334 -0.595 0.564 -0.416 -0.023 -0.748 0.741 0.622 -0.853 -0.642 0.340 0.252 -0.683 0.464 -0.310 0.574 -0.480 -0.231 -0.086 0.299 -0.211 -0.718 0.376 0.468 -0.399 -0.734 0.330 0.483 -0.721 0.151 -0.176 0.381 -0.143 -0.693 0.231 -0.207 0.006 -0.466 0.491 0.533 -0.897 -0.352 0.302 0.081 -0.135 0.278 -0.288 0.541 -0.390 -0.080 -0.259 0.013 -0.580 0.081 0.338 0.447 -0.615 -1.047 0.585 0.002 -0.505 0.518 -0.213 0.275 -0.414 -0.509 0.418 -0.092 -0.240 -0.527 0.605 0.674 -1.044 -1.442 0.634 0.473 -0.913 -0.270 0.324 0.619 -0.784 -0.960 0.454 0.437 -0.767 -1.116 0.675 0.572 -0.650 -1.026 0.470 0.032 -0.087 -0.608 0.465 0.652 -0.532 -1.111 0.350 -0.475 0.474 -1.045 0.493 0.688 -0.868 -1.290 0.518 0.413 -0.285 -0.408 0.130 0.593 -0.252 -1.099 0.244 0.245 -0.637 -0.406 0.503 0.482 -0.922 -1.592 0.802 0.009 -0.446 -0.265 0.514 0.369 -0.530 -0.864 0.553 -0.026 -0.368 -1.014 0.805 0.752 -1.075 -0.806 0.345 0.589 -1.273 0.274 -0.196 0.943 -0.944 -0.512 -0.223 0.509 -0.810 -0.831 0.530 0.602 -0.614 -0.580 0.213 0.546 -0.827 0.118 -0.165 0.820 -0.546 -0.725 -0.082 0.057 -0.443 -0.246 0.466 0.614 -1.455 0.253 -0.132 0.499 -0.800 0.261 -0.297 0.899 -0.860 -0.130 -0.576 0.260 -0.751 -0.164 0.396 0.564 -1.020 -1.199 0.671 0.232 -0.866 0.427 -0.100 0.618 -0.696 -0.491 0.185 0.248 -0.659 -0.782 0.676 0.576 -0.693 -0.890 0.434 0.505 -0.921 0.287 -0.264 0.392 -0.163 -0.560 0.159 0.338 -0.568 -0.717 0.539 0.366 -0.294 -0.665 0.339 -0.105 -0.082 0.136 0.038 0.305 0.057 -0.386 -0.060 -0.235 0.156 -0.431 0.372 0.415 -0.732 -0.151 0.219 0.081 -0.601 0.644 -0.474 0.266 0.065 -0.391 -0.016 0.032 -0.546 0.116 0.274 0.308 -0.528 -1.042 0.662 -0.162 -0.718 0.546 0.054 0.191 -0.158 -0.503 0.330 -0.078 -0.278 -0.591 0.645 0.768 -1.018 -0.387 0.055 0.489 -0.939 0.463 -0.522 0.679 -1.007 0.414 -0.813 0.395 -0.437 -0.502 0.311 0.533 -0.458 -0.347 0.055 0.418 -0.788 0.365 -0.328 0.383 -0.182 -0.094 -0.189 0.015 -0.215 -0.028 0.198 0.653 -1.055 0.029 -0.112 0.250 -0.382 0.365 -0.405 0.656 -0.888 0.359 -0.734 0.018 -0.597 0.241 0.195 0.552 -0.781 -0.728 0.431 0.253 -0.843 0.484 -0.231 0.268 -0.521 0.110 0.028 0.336 -0.607 -0.355 0.378 0.698 -1.052 -1.190 0.544 0.886 -1.250 -0.262 -0.157 0.659 -0.578 -0.892 0.278 0.654 -0.913 -1.019 0.488 0.537 -0.548 -0.896 0.409 0.500 -0.520 -0.280 0.091 0.620 -0.427 -0.918 0.251 -0.032 -0.092 -0.598 0.509 0.693 -0.816 -1.062 0.418 0.608 -0.668 -0.109 -0.121 0.607 -0.268 -0.877 0.140 0.413 -0.805 -0.218 0.307 0.502 -0.755 -1.359 0.679 0.321 -0.569 -0.032 0.136 0.418 -0.362 -0.721 0.355 0.145 -0.336 -0.858 0.632 0.855 -1.647 -1.601 0.625 0.780 -1.136 -0.448 0.130 0.850 -1.176 -1.301 0.432 0.701 -1.416 -1.303 0.673 0.546 -1.041 -1.310 0.723 0.563 -1.204 -0.201 0.285 0.664 -0.679 -1.355 0.485 0.285 -1.007 -0.984 0.830 0.880 -1.728 -1.077 0.468 0.712 -1.021 -0.341 0.110 0.774 -0.966 -0.930 0.325 0.541 -1.176 -0.703 0.574 0.383 -1.542 -2.038 1.076 0.527 -1.180 -0.307 0.389 0.510 -0.883 -1.490 0.747 0.442 -1.253 -1.254 0.850 0.674 -1.162 -1.123 0.584 0.463 -0.943 0.019 0.123 0.564 -0.709 -0.869 0.446 0.347 -0.664 -1.183 0.728 0.480 -0.572 -1.036 0.531 -0.222 0.005 -0.369 0.449 0.294 -0.246 -0.795 0.438 -0.358 0.081 -0.916 0.707 0.468 -1.101 -0.516 0.537 0.065 -0.660 0.490 -0.126 0.237 -0.267 -0.625 0.424 0.014 -0.479 -0.370 0.584 0.395 -1.000 -1.426 0.858 -0.309 -0.747 -0.189 0.782 0.329 -0.600 -0.984 0.659 -0.067 -0.378 -1.109 0.858 0.889 -1.356 -1.225 0.411 0.755 -1.148 -0.198 -0.016 0.909 -0.881 -0.875 0.048 0.554 -0.914 -0.902 0.552 0.610 -0.786 -1.106 0.516 0.631 -0.908 -0.207 0.073 0.433 -0.181 -1.033 0.355 0.134 -0.448 -0.624 0.605 0.837 -1.075 -0.831 0.234 0.357 -0.585 0.165 -0.103 0.704 -0.689 -0.278 -0.111 0.318 -0.800 -0.111 0.326 0.521 -0.859 -1.662 0.764 0.514 -0.894 -0.160 0.187 0.434 -0.515 -1.272 0.619 0.292 -0.801 -0.848 0.719 0.789 -1.598 -1.658 0.700 0.843 -1.313 -0.608 0.199 0.843 -0.960 -1.254 0.347 0.587 -1.265 -1.454 0.780 0.648 -1.046 -1.351 0.638 0.498 -0.702 -0.829 0.496 0.762 -0.718 -1.531 0.433 0.089 -0.510 -1.229 0.854 0.858 -1.334 -1.476 0.517 0.785 -1.032 -0.547 0.142 0.785 -0.548 -1.243 0.227 0.557 -1.155 -0.863 0.614 0.578 -1.372 -1.918 0.892 0.455 -0.953 -0.714 0.588 0.527 -0.768 -1.420 0.676 0.276 -0.926 -1.403 0.914 Intron LUT 5 4 4 0 0.000 0.907 -1.709 -1.044 0.416 0.440 -1.279 0.192 0.122 0.896 -1.266 -0.564 0.066 0.520 -1.062 -1.143 0.708 0.766 -0.797 -0.822 0.213 0.180 -0.773 0.284 0.090 0.800 -0.700 -0.812 0.103 -0.153 -0.384 -0.739 0.795 0.989 -1.992 -0.519 0.092 0.392 -0.960 0.154 0.085 0.886 -1.346 -0.224 -0.148 0.425 -1.155 -0.584 0.624 0.686 -1.546 -1.582 0.778 0.200 -0.850 0.193 0.205 0.634 -0.889 -0.558 0.298 0.313 -0.846 -1.007 0.769 0.621 -0.980 -0.895 0.503 0.375 -0.920 0.522 -0.437 0.549 -0.678 -0.244 0.095 0.362 -0.675 -1.103 0.698 0.396 -0.199 -0.615 0.214 -0.205 -0.124 -0.001 0.282 0.418 -0.360 -0.433 0.194 -0.266 0.081 -0.513 0.495 0.468 -1.137 -0.203 0.372 -0.133 -0.914 0.797 -0.288 0.436 -0.534 -0.303 0.196 0.143 -0.885 -0.079 0.493 0.385 -0.727 -1.183 0.722 -0.612 -0.911 0.719 0.223 0.170 -0.528 -0.393 0.505 -0.223 -0.608 -0.593 0.867 0.937 -1.702 -0.583 0.152 0.500 -1.148 0.335 -0.195 1.175 -1.507 -0.293 -0.801 0.441 -0.755 -0.788 0.557 0.690 -0.791 -0.563 0.179 0.351 -0.882 0.283 -0.051 0.595 -0.651 -0.356 0.100 -0.195 -0.282 -0.397 0.628 0.797 -1.816 -0.055 0.023 0.216 -0.634 0.359 -0.134 0.846 -1.456 0.201 -0.538 0.646 -1.158 -0.350 0.266 0.689 -1.296 -0.868 0.519 0.193 -0.994 0.436 0.002 0.529 -0.978 -0.156 0.204 0.036 -0.886 -0.582 0.820 0.730 -1.503 -1.695 0.749 0.752 -1.227 -0.084 -0.081 0.914 -0.986 -0.879 0.094 0.782 -1.177 -1.662 0.606 0.630 -0.858 -1.226 0.559 0.347 -0.505 -0.327 0.294 0.842 -0.822 -1.090 0.229 -0.083 -0.094 -1.034 0.705 0.842 -1.476 -1.318 0.532 0.739 -1.117 -0.165 -0.032 0.935 -0.701 -0.903 -0.093 0.632 -1.174 -0.839 0.534 0.573 -1.271 -1.722 0.844 0.186 -0.647 -0.066 0.343 0.523 -0.652 -0.792 0.432 0.188 -0.567 -1.272 0.825 0.570 -0.890 -0.712 0.449 0.279 -0.628 0.215 -0.031 0.542 -0.715 -0.468 0.277 0.177 -0.636 -0.904 0.759 0.363 0.018 -0.690 0.112 0.043 -0.339 0.301 -0.079 0.443 -0.240 -0.629 0.199 -0.580 -0.015 -0.616 0.756 0.598 -1.098 -0.252 0.239 0.132 -0.176 -0.053 0.076 0.384 -0.695 -0.459 0.433 -0.057 -0.631 -0.288 0.655 0.490 -0.918 -1.292 0.729 -0.061 -0.326 0.299 0.019 0.318 -0.364 -0.499 0.343 0.009 -0.437 -0.818 0.755 0.257 -0.338 -0.535 0.404 -0.635 0.051 0.492 -0.130 0.357 -0.230 -0.292 0.071 -0.382 0.127 -1.041 0.726 0.256 -0.060 -0.760 0.329 -0.937 0.439 -0.343 0.415 0.211 -0.116 -0.557 0.310 -1.306 0.753 -1.092 0.527 -0.021 -0.626 -0.130 0.539 -0.539 -0.132 0.574 -0.134 0.032 -0.017 -0.380 0.287 -0.515 -0.405 0.078 0.574 0.303 -0.463 -0.949 0.607 -1.579 0.353 0.216 0.295 -0.101 -0.228 -0.361 0.521 -0.860 0.251 -0.829 0.762 0.638 -0.828 -0.664 0.321 0.100 -0.535 0.503 -0.285 0.535 -0.430 -0.150 -0.141 0.115 -0.071 -0.634 0.401 0.517 -0.348 -0.675 0.211 0.195 -0.467 0.212 -0.039 0.386 -0.187 -0.641 0.231 -0.574 0.306 -0.695 0.560 0.492 -1.013 -0.297 0.361 -0.231 0.084 0.251 -0.157 0.464 -0.444 0.109 -0.308 -0.099 -0.530 0.013 0.449 0.486 -0.636 -0.915 0.512 -0.279 -0.297 0.508 -0.090 0.160 -0.407 -0.255 0.368 -0.244 -0.125 -0.522 0.625 0.548 -0.806 -1.463 0.680 0.135 -0.652 0.056 0.294 0.664 -0.553 -0.606 0.107 0.224 -0.379 -1.219 0.708 0.527 -0.383 -1.152 0.424 -0.230 0.080 -0.667 0.546 0.663 -0.418 -1.130 0.277 -1.034 0.850 -1.273 0.374 0.684 -0.801 -1.169 0.459 0.206 -0.319 -0.149 0.192 0.587 -0.192 -0.934 0.136 0.040 -0.353 -0.557 0.593 0.515 -0.754 -1.459 0.691 -0.480 -0.140 -0.178 0.576 0.294 -0.381 -0.416 0.329 -0.417 0.029 -0.986 0.787 0.656 -0.844 -0.621 0.283 0.337 -1.000 0.573 -0.417 0.910 -0.891 -0.198 -0.495 0.341 -0.505 -0.862 0.564 0.583 -0.240 -0.477 -0.094 0.199 -0.547 0.382 -0.210 0.824 -0.506 -0.675 -0.153 -0.315 0.065 -0.503 0.531 0.564 -1.503 0.381 -0.207 0.313 -0.546 0.377 -0.370 0.862 -0.895 0.056 -0.723 0.117 -0.563 -0.290 0.507 0.589 -0.883 -1.120 0.578 -0.124 -0.551 0.610 -0.196 0.594 -0.592 -0.207 -0.058 0.139 -0.323 -0.789 0.605 0.524 -0.477 -0.743 0.318 0.257 -0.773 0.649 -0.619 0.444 -0.123 -0.242 -0.192 0.119 -0.183 -0.690 0.499 0.354 0.016 -0.578 0.058 -0.288 0.035 0.275 -0.079 0.242 0.109 -0.298 -0.112 -0.707 0.606 -0.514 0.220 0.383 -0.823 -0.019 0.194 -0.124 -0.562 0.814 -0.628 0.345 0.001 -0.366 -0.069 -0.136 -0.540 0.161 0.361 0.326 -0.340 -0.885 0.501 -0.844 -0.552 0.841 -0.044 -0.006 -0.026 -0.239 0.233 -0.380 0.023 -0.504 0.595 0.777 -1.036 -0.366 0.032 0.380 -0.993 0.679 -0.749 0.678 -1.198 0.602 -1.163 0.240 -0.286 -0.385 0.302 0.661 -0.472 -0.328 -0.150 0.290 -0.699 0.557 -0.536 0.508 -0.318 -0.097 -0.251 -0.248 0.076 -0.045 0.182 0.621 -1.252 0.156 -0.108 0.148 -0.292 0.443 -0.482 0.738 -1.107 0.388 -0.838 0.054 -0.624 0.187 0.232 0.791 -1.065 -0.996 0.368 0.069 -0.741 0.674 -0.402 0.354 -0.842 0.246 -0.033 0.170 -0.512 -0.245 0.411 0.596 -0.940 -0.806 0.480 0.696 -1.116 0.238 -0.434 0.747 -0.509 -0.650 -0.026 0.493 -0.475 -0.991 0.454 0.484 -0.204 -0.814 0.220 0.387 -0.197 -0.244 -0.035 0.666 -0.411 -0.814 0.128 -0.371 0.357 -0.621 0.374 0.731 -0.784 -0.745 0.217 0.611 -0.619 0.018 -0.307 0.765 -0.247 -0.828 -0.160 0.281 -0.511 -0.195 0.275 0.553 -0.634 -1.190 0.537 0.022 -0.261 0.207 -0.006 0.327 -0.224 -0.359 0.150 -0.051 0.098 -0.769 0.463 0.787 -1.416 -1.446 0.616 0.505 -0.854 0.009 0.031 0.778 -0.986 -0.945 0.334 0.523 -1.052 -1.359 0.758 0.505 -0.599 -1.038 0.519 0.321 -0.749 0.044 0.170 0.624 -0.540 -1.214 0.422 -0.038 -0.444 -1.161 0.882 0.872 -1.658 -0.827 0.367 0.390 -0.569 -0.100 0.114 0.692 -0.935 -0.656 0.295 0.417 -1.001 -0.900 0.704 0.316 -1.443 -1.874 1.081 0.173 -0.738 0.079 0.283 0.482 -0.668 -1.079 0.585 0.329 -0.876 -1.354 0.854 0.626 -0.887 -1.022 0.510 0.115 -0.616 0.371 -0.042 0.658 -0.654 -0.479 0.097 0.052 -0.229 -1.324 0.775 0.444 -0.287 -1.026 0.410 -0.496 0.205 -0.500 0.517 0.119 -0.024 -0.766 0.425 -0.911 0.540 -1.226 0.666 0.465 -1.144 -0.344 0.463 -0.253 -0.487 0.619 -0.133 0.156 -0.230 -0.449 0.380 -0.173 -0.422 -0.368 0.671 0.419 -0.807 -1.318 0.757 -0.869 -0.539 -0.068 0.856 0.244 -0.448 -0.616 0.517 -0.498 -0.003 -1.125 0.876 0.922 -1.274 -1.219 0.336 0.510 -0.797 0.128 -0.140 0.913 -0.875 -0.696 -0.066 0.381 -0.637 -0.873 0.593 0.592 -0.493 -0.990 0.354 0.356 -0.561 -0.035 0.093 0.428 -0.150 -0.813 0.244 -0.246 0.056 -0.763 0.611 0.904 -1.285 -0.740 0.163 0.121 -0.190 0.181 -0.149 0.713 -0.690 -0.265 -0.138 0.338 -0.735 -0.255 0.376 0.558 -0.839 -1.460 0.682 0.181 -0.559 0.136 0.122 0.284 -0.440 -0.993 0.625 0.087 -0.551 -0.699 0.713 0.716 -1.281 -1.652 0.703 0.664 -1.006 -0.160 0.032 0.885 -0.832 -0.913 0.084 0.388 -0.856 -1.566 0.849 0.637 -0.703 -1.188 0.477 0.458 -0.453 -0.855 0.426 0.838 -0.632 -1.652 0.321 -0.305 -0.039 -1.434 0.885 0.865 -1.319 -1.339 0.468 0.625 -0.693 -0.331 0.062 0.905 -0.519 -1.086 -0.062 0.313 -0.783 -0.924 0.722 0.558 -1.215 -1.688 0.837 0.163 -0.539 -0.412 0.527 0.511 -0.513 -1.085 0.488 0.043 -0.542 -1.540 0.955 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 0.489 -0.941 -0.424 0.412 0.475 -0.630 -0.582 0.373 0.509 -0.798 -0.525 0.387 0.564 -1.090 -0.273 0.293 0.425 -0.590 -0.452 0.338 0.745 -0.090 -0.815 -0.288 1.455 -2.236 -0.411 -1.746 1.008 -0.535 -1.028 -0.301 0.857 -0.522 -0.401 -0.438 2.001 -11.094 -11.094 -11.094 -11.094 -11.094 -11.094 2.001 -11.094 -11.094 2.001 -11.094 0.302 -1.059 0.555 -0.284 0.364 0.478 -0.804 -0.415 0.218 -0.795 -0.049 0.375 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.646 -0.701 -0.060 -0.216 0.668 -0.498 -0.873 0.211 0.578 -0.952 -0.883 0.535 0.585 -0.735 -0.103 -0.045 0.631 -0.657 -0.939 0.375 0.578 -1.517 -0.660 0.611 -10.347 -10.347 -10.347 2.000 2.000 -10.347 -10.347 -10.347 2.000 -10.347 -10.347 -10.347 TAG WMM 9 6 4 0 0.000 0.597 -0.520 -0.036 -0.295 0.612 -0.330 -0.670 0.071 0.356 -0.487 -0.520 0.392 0.497 -0.454 -0.090 -0.115 0.476 -0.266 -0.604 0.167 0.341 -0.779 -0.200 0.360 -8.255 -8.255 -8.255 1.999 1.999 -8.255 -8.255 -8.255 -8.255 -8.255 1.999 -8.255 TGA WMM 9 6 4 0 0.000 0.583 -0.443 -0.022 -0.356 0.555 -0.298 -0.624 0.095 0.324 -0.460 -0.605 0.448 0.433 -0.401 -0.059 -0.103 0.547 -0.365 -0.666 0.180 0.174 -0.628 -0.224 0.453 -9.202 -9.202 -9.202 1.998 -9.202 -9.202 1.998 -9.202 1.998 -9.202 -9.202 -9.202 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/ixodesB.hmm0000644000175000017500000013204011424066010015445 0ustar moellermoellerzoeHMM ixodesB.hmm 6 8 6 7 Einit 0 0 3 -1 explicit Esngl 0 0 150 -1 explicit Eterm 0 0 3 -1 explicit Exon 0 0 6 -1 explicit Inter 0.9 0.9 0 0 geometric Intron 0.1 0.1 0 0 geometric Einit Intron 1 Esngl Inter 1 Eterm Inter 1 Exon Intron 1 Inter Einit 0.963009 Inter Esngl 0.036991 Intron Eterm 0.230588 Intron Exon 0.769412 0.423816 0.321383 0.254802 0.639411 0.190515 0.170074 0.567602 0.265306 0.167092 0.564274 0.247078 0.188648 0.747104 0.252896 0.801932 0.198068 0.770677 0.229323 Einit 2 DEFINED 0 249 -8.205 -8.159 -8.114 -8.070 -8.028 -7.987 -7.947 -7.908 -7.870 -7.833 -7.797 -7.777 -7.758 -7.739 -7.720 -7.701 -7.683 -7.664 -7.646 -7.629 -7.611 -7.626 -7.641 -7.656 -7.671 -7.687 -7.702 -7.718 -7.734 -7.750 -7.766 -7.781 -7.795 -7.810 -7.825 -7.840 -7.855 -7.870 -7.886 -7.901 -7.917 -7.918 -7.919 -7.920 -7.922 -7.923 -7.924 -7.925 -7.926 -7.927 -7.928 -7.923 -7.917 -7.911 -7.906 -7.900 -7.894 -7.889 -7.883 -7.878 -7.872 -7.880 -7.888 -7.896 -7.903 -7.911 -7.919 -7.927 -7.935 -7.943 -7.951 -7.956 -7.961 -7.966 -7.970 -7.975 -7.980 -7.984 -7.989 -7.994 -7.999 -8.001 -8.004 -8.006 -8.008 -8.011 -8.013 -8.016 -8.018 -8.021 -8.023 -8.037 -8.050 -8.064 -8.078 -8.092 -8.106 -8.120 -8.135 -8.149 -8.164 -8.172 -8.180 -8.189 -8.197 -8.205 -8.214 -8.222 -8.230 -8.239 -8.247 -8.256 -8.265 -8.273 -8.282 -8.291 -8.300 -8.309 -8.318 -8.327 -8.336 -8.318 -8.300 -8.282 -8.265 -8.247 -8.230 -8.214 -8.197 -8.180 -8.164 -8.172 -8.180 -8.189 -8.197 -8.205 -8.214 -8.222 -8.230 -8.239 -8.247 -8.245 -8.242 -8.239 -8.236 -8.233 -8.230 -8.228 -8.225 -8.222 -8.219 -8.216 -8.214 -8.211 -8.208 -8.205 -8.202 -8.200 -8.197 -8.194 -8.191 -8.212 -8.233 -8.255 -8.276 -8.298 -8.321 -8.343 -8.366 -8.390 -8.414 -8.436 -8.459 -8.483 -8.506 -8.531 -8.555 -8.580 -8.606 -8.631 -8.658 -8.683 -8.708 -8.734 -8.760 -8.787 -8.814 -8.842 -8.870 -8.899 -8.928 -8.963 -8.999 -9.035 -9.073 -9.111 -9.151 -9.191 -9.233 -9.276 -9.321 -9.327 -9.333 -9.339 -9.345 -9.351 -9.357 -9.363 -9.370 -9.376 -9.382 -9.404 -9.427 -9.449 -9.473 -9.496 -9.520 -9.545 -9.569 -9.595 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.620 -9.616 -9.613 -9.609 -9.605 -9.602 -9.598 -9.595 -9.591 -9.587 -9.584 -9.616 -9.650 -9.684 -9.720 -9.756 -9.793 -9.831 -9.870 -9.910 GEOMETRIC 250 -1 231 Esngl 1 GEOMETRIC 0 -1 1000 Eterm 2 DEFINED 0 249 -10.488 -10.430 -10.375 -10.321 -10.269 -10.220 -10.171 -10.125 -10.080 -10.036 -9.993 -9.989 -9.984 -9.980 -9.975 -9.970 -9.966 -9.961 -9.957 -9.952 -9.948 -9.899 -9.852 -9.806 -9.762 -9.719 -9.677 -9.637 -9.597 -9.559 -9.521 -9.485 -9.449 -9.415 -9.381 -9.348 -9.315 -9.284 -9.253 -9.222 -9.193 -9.164 -9.135 -9.107 -9.080 -9.053 -9.026 -9.000 -8.975 -8.950 -8.925 -8.890 -8.856 -8.823 -8.790 -8.758 -8.727 -8.696 -8.666 -8.637 -8.608 -8.585 -8.562 -8.540 -8.518 -8.497 -8.475 -8.454 -8.434 -8.413 -8.393 -8.389 -8.384 -8.379 -8.375 -8.370 -8.366 -8.361 -8.357 -8.352 -8.348 -8.345 -8.342 -8.339 -8.336 -8.333 -8.330 -8.327 -8.324 -8.321 -8.318 -8.321 -8.324 -8.327 -8.330 -8.333 -8.336 -8.339 -8.342 -8.345 -8.348 -8.360 -8.372 -8.384 -8.396 -8.409 -8.421 -8.434 -8.446 -8.459 -8.472 -8.454 -8.437 -8.419 -8.402 -8.385 -8.369 -8.352 -8.336 -8.320 -8.304 -8.301 -8.298 -8.295 -8.292 -8.290 -8.287 -8.284 -8.281 -8.278 -8.275 -8.268 -8.261 -8.254 -8.247 -8.240 -8.233 -8.227 -8.220 -8.213 -8.206 -8.200 -8.193 -8.186 -8.180 -8.173 -8.166 -8.160 -8.153 -8.147 -8.140 -8.164 -8.188 -8.212 -8.236 -8.261 -8.287 -8.313 -8.339 -8.366 -8.393 -8.418 -8.443 -8.469 -8.495 -8.521 -8.549 -8.576 -8.604 -8.633 -8.662 -8.677 -8.692 -8.707 -8.723 -8.738 -8.754 -8.770 -8.786 -8.802 -8.818 -8.837 -8.856 -8.875 -8.895 -8.914 -8.934 -8.954 -8.975 -8.996 -9.017 -9.003 -8.989 -8.975 -8.961 -8.948 -8.934 -8.921 -8.908 -8.895 -8.882 -8.877 -8.873 -8.869 -8.864 -8.860 -8.856 -8.852 -8.848 -8.843 -8.839 -8.864 -8.890 -8.916 -8.943 -8.970 -8.998 -9.026 -9.055 -9.085 -9.115 -9.127 -9.140 -9.153 -9.166 -9.179 -9.193 -9.206 -9.220 -9.233 -9.247 -9.270 -9.292 -9.315 -9.339 -9.363 -9.387 -9.412 -9.437 -9.462 -9.488 -9.491 -9.495 -9.498 -9.501 -9.505 -9.508 -9.511 -9.515 -9.518 GEOMETRIC 250 -1 392 Exon 2 DEFINED 0 249 -12.004 -11.857 -11.723 -11.600 -11.487 -11.383 -11.285 -11.194 -11.108 -11.027 -10.950 -10.867 -10.788 -10.714 -10.643 -10.575 -10.511 -10.449 -10.390 -10.333 -10.278 -10.175 -10.078 -9.988 -9.903 -9.822 -9.746 -9.674 -9.605 -9.539 -9.476 -9.400 -9.328 -9.259 -9.194 -9.131 -9.071 -9.013 -8.958 -8.905 -8.853 -8.805 -8.758 -8.712 -8.668 -8.625 -8.584 -8.543 -8.504 -8.466 -8.429 -8.383 -8.339 -8.297 -8.255 -8.215 -8.176 -8.138 -8.100 -8.064 -8.029 -8.006 -7.983 -7.961 -7.939 -7.917 -7.896 -7.874 -7.854 -7.833 -7.813 -7.796 -7.780 -7.764 -7.748 -7.732 -7.716 -7.701 -7.685 -7.670 -7.655 -7.642 -7.630 -7.618 -7.606 -7.594 -7.582 -7.570 -7.558 -7.546 -7.535 -7.529 -7.522 -7.516 -7.510 -7.504 -7.498 -7.492 -7.486 -7.480 -7.474 -7.474 -7.475 -7.475 -7.475 -7.476 -7.476 -7.477 -7.477 -7.478 -7.478 -7.486 -7.494 -7.502 -7.510 -7.517 -7.525 -7.533 -7.541 -7.549 -7.558 -7.565 -7.573 -7.581 -7.589 -7.598 -7.606 -7.614 -7.622 -7.630 -7.639 -7.651 -7.664 -7.677 -7.690 -7.703 -7.717 -7.730 -7.744 -7.757 -7.771 -7.778 -7.785 -7.793 -7.800 -7.807 -7.814 -7.822 -7.829 -7.836 -7.844 -7.853 -7.862 -7.871 -7.880 -7.889 -7.899 -7.908 -7.918 -7.927 -7.937 -7.948 -7.960 -7.972 -7.984 -7.996 -8.008 -8.020 -8.032 -8.045 -8.057 -8.067 -8.077 -8.087 -8.097 -8.107 -8.117 -8.127 -8.137 -8.148 -8.158 -8.178 -8.199 -8.219 -8.240 -8.262 -8.284 -8.306 -8.328 -8.351 -8.374 -8.387 -8.401 -8.415 -8.429 -8.443 -8.457 -8.471 -8.486 -8.500 -8.515 -8.530 -8.545 -8.560 -8.575 -8.591 -8.607 -8.623 -8.639 -8.655 -8.671 -8.695 -8.718 -8.742 -8.767 -8.792 -8.817 -8.843 -8.869 -8.896 -8.923 -8.933 -8.943 -8.953 -8.963 -8.973 -8.984 -8.994 -9.004 -9.015 -9.025 -9.044 -9.064 -9.083 -9.103 -9.124 -9.144 -9.165 -9.186 -9.207 -9.229 -9.252 -9.275 -9.299 -9.323 -9.347 -9.372 -9.397 -9.423 -9.449 GEOMETRIC 250 -1 188 Inter 1 GEOMETRIC 0 -1 500 Intron 1 GEOMETRIC 0 -1 1250 Acceptor SDT 2 1 4 2 0.000 AG WMM 30 26 4 0 0.000 0.081 -0.130 -0.255 0.252 -0.053 -0.034 -0.245 0.283 0.001 -0.057 -0.253 0.263 0.016 -0.036 -0.327 0.285 0.006 -0.111 -0.241 0.293 -0.016 0.056 -0.368 0.260 -0.121 -0.060 -0.303 0.392 -0.201 0.013 -0.295 0.386 -0.335 0.051 -0.361 0.479 -0.469 -0.022 -0.255 0.542 -0.637 0.055 -0.312 0.599 -0.664 0.160 -0.355 0.559 -0.783 0.152 -0.474 0.671 -0.884 0.130 -0.422 0.700 -0.865 0.146 -0.527 0.729 -0.913 0.175 -0.552 0.737 -0.989 0.147 -0.656 0.818 -0.992 0.246 -0.670 0.764 -1.016 0.360 -0.909 0.770 -1.041 0.435 -0.532 0.571 -0.887 0.373 -0.520 0.570 -1.143 0.094 -0.859 0.964 -1.624 0.239 -1.373 1.093 -0.549 -0.151 0.728 -0.350 -2.201 1.690 -3.608 -0.999 2.009 -9.717 -9.717 -9.717 -9.717 -9.717 2.009 -9.717 -0.195 -0.217 0.846 -1.006 -0.205 -0.032 -0.172 0.375 -0.003 0.074 0.230 -0.312 NN TRM 0 0 0 0 0.000 Coding CDS 3 2 4 3 0.000 frame0 LUT 5 4 4 0 0.000 -0.270 0.046 0.693 -0.940 -0.167 0.131 0.199 -0.206 -0.174 0.545 -0.108 -0.460 -0.907 0.410 0.405 -0.296 -0.358 0.110 0.681 -0.896 0.025 0.093 0.212 -0.400 0.074 0.251 0.082 -0.518 -1.391 0.266 0.760 -0.469 -0.179 0.337 0.427 -0.973 -0.222 0.558 -0.127 -0.407 0.116 0.490 -0.291 -0.525 -1.161 0.082 0.910 -0.701 -6.257 1.594 -6.257 -0.068 -0.543 0.106 0.307 0.000 -6.781 0.602 0.522 0.052 -1.220 0.731 0.029 -0.167 -0.971 0.380 0.896 -1.611 -0.825 0.582 0.460 -0.829 -0.957 0.900 0.016 -0.720 -1.940 0.798 0.381 -0.517 -0.939 0.398 0.839 -1.424 -0.729 0.541 0.469 -0.843 -0.716 0.631 0.422 -0.991 -2.053 0.356 1.004 -1.080 -0.509 0.619 0.507 -1.555 -0.876 0.920 -0.062 -0.725 -0.334 0.862 -0.268 -0.841 -2.091 0.621 0.800 -1.040 -8.351 1.692 -8.351 -0.391 -1.611 0.404 0.627 -0.313 -8.633 0.908 0.617 -0.769 -2.673 1.146 -0.357 -0.236 -0.596 0.026 1.031 -1.852 -0.648 0.338 0.606 -0.798 -1.069 0.780 0.329 -0.865 -1.610 0.654 0.496 -0.539 -0.777 0.196 0.950 -1.561 -0.323 0.505 0.257 -0.772 -0.838 0.622 0.454 -0.910 -2.013 0.242 1.055 -1.024 -0.585 0.447 0.684 -1.460 -0.429 0.681 0.122 -0.822 -0.245 0.861 -0.378 -0.810 -1.815 0.032 1.148 -1.065 -8.071 1.653 -8.071 -0.239 -0.948 0.504 0.387 -0.403 -8.277 0.893 0.511 -0.483 -2.831 1.053 -0.478 0.094 -0.103 0.300 0.191 -0.522 0.128 0.321 -0.076 -0.497 -0.099 0.470 -0.028 -0.514 -0.344 0.350 0.087 -0.191 -0.291 0.400 0.438 -0.977 -0.322 0.236 0.236 -0.243 0.017 0.265 0.111 -0.502 -1.463 0.226 0.758 -0.365 -0.179 0.585 0.129 -0.934 -0.367 0.615 -0.103 -0.391 -0.054 0.746 -0.479 -0.639 -1.412 0.396 0.642 -0.419 -6.185 1.536 -6.185 0.101 -0.503 0.381 0.195 -0.239 -6.353 0.691 0.375 0.106 -1.331 0.647 0.098 -0.049 -0.287 0.233 0.624 -1.109 0.160 -0.067 0.191 -0.346 -0.201 0.448 -0.002 -0.381 -1.154 0.496 0.521 -0.504 -0.306 0.154 0.681 -1.073 -0.165 0.259 0.269 -0.501 -0.174 0.405 0.120 -0.509 -1.147 0.297 0.752 -0.656 -0.224 0.376 0.478 -1.141 0.012 0.337 -0.092 -0.341 0.141 0.442 -0.314 -0.444 -1.241 0.363 0.670 -0.515 -6.077 1.610 -6.077 -0.123 -0.288 0.058 0.269 -0.097 -6.618 0.730 0.521 -0.159 -1.486 0.542 0.030 0.222 -1.029 0.314 1.020 -2.062 -0.590 0.675 0.269 -0.906 -1.040 0.835 0.204 -0.792 -1.811 0.933 0.275 -0.748 -0.726 0.235 0.900 -1.504 -0.483 0.430 0.330 -0.556 -0.722 0.656 0.225 -0.623 -2.056 0.361 1.003 -1.088 -0.350 0.465 0.532 -1.364 -0.584 0.805 -0.104 -0.609 -0.172 0.774 -0.367 -0.674 -1.645 0.637 0.690 -0.967 -7.642 1.765 -7.642 -0.759 -1.102 0.657 0.343 -0.537 -8.264 0.938 0.624 -0.889 -2.546 1.176 -0.466 -0.243 -0.114 0.120 0.622 -1.153 -0.600 0.107 0.799 -0.935 -0.823 0.750 0.272 -0.876 -1.129 0.469 0.612 -0.665 -0.676 0.309 0.838 -1.523 -0.498 0.369 0.667 -1.280 -0.642 0.506 0.438 -0.776 -1.826 0.288 1.009 -1.046 -0.567 0.704 0.382 -1.351 -0.533 0.664 0.213 -0.822 -0.198 0.794 -0.271 -0.823 -1.776 0.128 1.101 -1.088 -7.377 1.731 -7.377 -0.583 -1.281 0.444 0.658 -0.621 -7.687 0.849 0.604 -0.568 -2.050 0.980 -0.293 -0.044 0.118 0.097 0.438 -1.026 0.043 0.115 0.241 -0.505 -0.120 0.428 -0.101 -0.318 -1.004 0.330 0.307 0.011 0.018 0.082 0.574 -1.185 -0.145 0.239 0.255 -0.469 -0.369 0.465 0.030 -0.278 -1.297 0.278 0.797 -0.637 0.027 0.330 0.050 -0.538 -0.205 0.621 -0.343 -0.311 0.071 0.549 -0.385 -0.473 -1.383 0.384 0.627 -0.383 -6.430 1.619 -6.430 -0.145 -0.500 0.212 0.438 -0.359 -6.898 0.760 0.494 -0.170 -1.489 0.771 0.048 -0.147 -0.112 0.245 0.536 -1.187 -0.077 0.345 0.150 -0.573 -0.142 0.551 -0.163 -0.443 -0.959 0.476 0.258 -0.154 -0.274 0.136 0.650 -0.988 -0.236 0.496 0.015 -0.454 -0.254 0.529 0.015 -0.498 -1.250 0.365 0.647 -0.463 -0.260 0.521 0.325 -1.067 -0.189 0.413 0.004 -0.343 0.250 0.567 -0.589 -0.589 -1.267 0.393 0.585 -0.375 -5.331 1.588 -5.331 -0.083 -0.395 0.391 0.342 -0.597 -6.129 0.893 0.346 -0.222 -1.686 0.756 -0.166 0.149 -0.987 0.306 0.987 -1.854 -0.820 0.712 0.369 -0.985 -0.940 0.995 -0.205 -0.696 -2.024 1.032 0.176 -0.788 -1.114 0.494 0.769 -1.233 -0.667 0.726 0.214 -0.846 -0.733 0.833 0.060 -0.798 -2.171 0.489 0.912 -1.019 -0.584 0.579 0.533 -1.350 -0.728 0.968 -0.245 -0.747 -0.442 0.924 -0.377 -0.745 -1.928 0.701 0.727 -1.129 -7.984 1.755 -7.984 -0.699 -1.059 0.613 0.325 -0.439 -8.301 1.009 0.440 -0.672 -2.749 1.288 -0.719 -0.318 -0.361 0.164 0.791 -1.434 -0.477 0.188 0.572 -0.607 -0.518 0.514 0.426 -0.915 -1.150 0.607 0.524 -0.766 -0.905 0.215 0.930 -1.323 -0.428 0.530 0.289 -0.758 -0.697 0.701 0.209 -0.735 -1.594 0.501 0.786 -0.917 -0.724 0.671 0.511 -1.410 -0.542 0.726 0.132 -0.827 -0.134 0.943 -0.746 -0.810 -1.966 0.288 1.005 -0.955 -6.665 1.615 -6.665 -0.126 -0.644 0.373 0.424 -0.468 -7.109 0.846 0.528 -0.408 -2.228 0.939 -0.127 -0.068 0.053 0.472 0.092 -0.973 -0.326 0.408 0.223 -0.498 -0.363 0.700 -0.585 -0.104 -1.309 0.734 -0.031 -0.068 -0.402 0.311 0.497 -0.757 -0.296 0.452 0.207 -0.593 -0.368 0.534 0.013 -0.379 -1.654 0.386 0.747 -0.519 -0.010 0.571 -0.125 -0.727 -0.268 0.729 -0.308 -0.506 -0.260 0.814 -0.610 -0.413 -1.389 0.479 0.551 -0.398 -5.895 1.497 -5.895 0.193 -0.602 0.314 0.352 -0.283 -6.508 0.984 0.260 -0.298 -1.742 0.749 0.005 0.024 -0.118 0.202 0.557 -1.129 -0.240 0.296 0.271 -0.475 -0.219 0.447 -0.032 -0.322 -1.468 0.497 0.436 -0.193 -0.006 -0.081 0.559 -0.772 -0.115 0.096 0.309 -0.379 0.007 0.348 0.151 -0.707 -1.471 0.155 0.710 -0.167 -0.111 0.487 0.216 -0.967 -0.054 0.398 -0.044 -0.417 0.073 0.388 -0.163 -0.422 -0.962 0.235 0.606 -0.344 -5.150 1.098 -5.150 0.850 -0.691 0.309 0.245 -0.065 -5.870 0.759 0.699 -0.585 -1.509 0.559 -0.101 0.314 -1.077 0.337 0.990 -1.850 -0.855 0.762 0.267 -0.869 -1.074 0.932 -0.070 -0.589 -1.893 0.966 0.287 -0.842 -1.015 0.308 0.972 -1.707 -0.487 0.421 0.438 -0.753 -0.607 0.673 0.154 -0.653 -2.048 0.578 0.851 -1.115 -0.618 0.592 0.554 -1.423 -0.786 0.951 -0.215 -0.679 -0.171 0.772 -0.248 -0.831 -1.911 0.702 0.718 -1.110 -8.376 1.772 -8.376 -0.791 -1.278 0.573 0.491 -0.527 -8.566 0.998 0.589 -1.011 -3.057 1.259 -0.501 -0.359 -0.839 0.364 0.834 -1.426 -0.713 0.438 0.592 -0.922 -1.096 0.850 0.128 -0.650 -1.726 0.623 0.600 -0.641 -0.707 0.351 0.866 -1.792 -0.551 0.714 0.226 -0.978 -0.912 0.681 0.361 -0.784 -2.111 0.529 0.866 -0.992 -0.742 0.692 0.442 -1.224 -0.463 0.778 -0.035 -0.778 -0.265 0.918 -0.398 -0.943 -1.807 0.087 1.132 -1.117 -7.817 1.738 -7.817 -0.608 -0.942 0.704 0.248 -0.593 -8.021 1.059 0.350 -0.646 -2.435 0.973 -0.274 0.035 -0.171 -0.016 0.641 -0.828 -0.069 0.301 0.199 -0.585 -0.512 0.578 0.042 -0.366 -1.337 0.488 0.373 -0.140 -0.159 -0.061 0.666 -0.840 -0.226 0.364 0.117 -0.370 -0.402 0.346 0.209 -0.292 -1.243 0.234 0.677 -0.317 -0.251 0.430 0.359 -0.916 -0.205 0.631 -0.190 -0.499 -0.099 0.633 -0.215 -0.611 -1.566 0.284 0.841 -0.612 -6.224 1.590 -6.224 -0.054 -0.562 0.220 0.411 -0.272 -6.873 0.763 0.484 -0.159 -1.259 0.570 0.283 -0.183 frame1 LUT 5 4 4 0 0.000 -0.059 -0.128 0.606 -0.731 0.121 0.023 0.234 -0.473 0.273 -0.047 0.108 -0.423 -0.659 0.003 0.644 -0.319 0.172 0.029 0.288 -0.661 0.403 -0.121 0.041 -0.456 0.078 0.255 0.107 -0.570 -0.616 -0.031 0.643 -0.308 0.434 -0.081 0.112 -0.683 0.362 -0.164 0.147 -0.484 0.306 0.148 0.003 -0.613 -0.837 0.057 0.629 -0.229 0.108 -0.031 0.146 -0.257 0.351 -0.059 0.067 -0.479 -0.192 0.206 0.293 -0.422 -0.438 0.272 0.486 -0.612 0.005 -0.024 0.684 -1.298 0.133 0.085 0.064 -0.327 0.066 0.247 0.129 -0.572 -1.035 0.453 0.486 -0.429 0.105 0.223 0.238 -0.792 0.354 -0.081 0.159 -0.599 -0.107 0.269 0.186 -0.456 -1.100 0.387 0.453 -0.223 0.227 0.253 0.286 -1.258 0.363 -0.097 -0.177 -0.161 -0.123 0.280 0.280 -0.614 -0.770 0.342 0.475 -0.403 0.070 0.473 0.054 -0.930 0.272 -0.266 0.166 -0.253 -0.211 0.264 0.384 -0.665 -1.083 0.522 0.332 -0.264 0.222 -0.353 0.674 -1.135 0.186 -0.178 0.343 -0.492 -0.013 -0.059 0.379 -0.418 -0.690 0.052 0.845 -0.871 -0.103 0.009 0.590 -0.843 0.414 -0.254 0.207 -0.567 -0.048 -0.042 0.495 -0.615 -0.614 0.091 0.583 -0.351 0.200 -0.086 0.549 -1.163 0.577 -0.450 0.056 -0.442 0.033 0.129 0.423 -0.880 -0.964 0.171 0.786 -0.651 -0.218 0.210 0.354 -0.504 0.456 -0.269 0.081 -0.433 -0.207 0.130 0.429 -0.528 -0.734 0.402 0.324 -0.277 0.000 0.000 0.000 0.000 0.277 0.075 -0.032 -0.401 0.000 0.000 0.000 0.000 0.024 -0.182 0.024 0.117 0.184 -0.084 0.268 -0.482 0.393 -0.147 0.182 -0.623 -0.222 0.111 0.278 -0.234 -0.735 0.172 0.569 -0.342 0.000 0.000 0.000 0.000 0.266 -0.184 0.204 -0.385 0.306 -0.006 0.237 -0.763 -0.948 0.242 0.685 -0.533 -0.178 0.355 0.033 -0.297 0.241 0.012 0.087 -0.419 -0.179 0.204 0.288 -0.425 -0.563 -0.034 0.766 -0.630 0.223 -0.343 0.610 -0.948 0.246 -0.104 0.247 -0.521 0.191 -0.044 0.329 -0.662 -0.932 -0.014 0.937 -0.809 0.177 -0.132 0.427 -0.707 0.450 -0.355 0.118 -0.383 -0.358 -0.025 0.703 -0.715 -1.093 0.023 0.819 -0.412 0.153 -0.030 0.654 -1.578 0.155 -0.031 0.239 -0.460 0.037 -0.072 0.601 -0.982 -1.040 0.047 0.886 -0.662 -0.202 0.103 0.574 -0.816 0.307 -0.210 0.157 -0.353 0.038 -0.116 0.422 -0.492 -1.405 0.061 0.978 -0.716 -0.006 -0.152 0.836 -1.647 0.140 0.015 0.189 -0.419 -0.005 0.145 0.264 -0.521 -0.889 0.385 0.507 -0.449 -0.075 0.080 0.551 -0.920 0.451 -0.465 0.399 -0.762 -0.043 0.083 0.345 -0.515 -0.942 0.208 0.553 -0.222 0.111 0.045 0.431 -0.889 0.521 -0.319 -0.110 -0.257 -0.304 0.271 0.477 -0.757 -0.685 0.231 0.529 -0.394 -0.254 0.253 0.510 -0.874 0.488 -0.378 0.069 -0.360 -0.450 0.182 0.627 -0.763 -0.927 0.530 0.483 -0.661 -0.081 -0.361 0.902 -1.294 0.041 -0.200 0.508 -0.560 0.125 -0.025 0.370 -0.657 -1.054 -0.002 0.922 -0.678 -0.055 -0.029 0.528 -0.700 0.281 -0.235 0.367 -0.629 -0.372 0.039 0.583 -0.511 -0.963 0.190 0.651 -0.365 0.097 0.005 0.541 -1.085 0.355 -0.463 0.367 -0.503 -0.023 -0.023 0.649 -1.109 -0.833 -0.009 0.745 -0.380 -0.089 -0.122 0.713 -0.995 0.357 -0.431 0.294 -0.412 -0.460 0.243 0.574 -0.736 -1.045 0.344 0.605 -0.464 0.000 0.000 0.000 0.000 0.160 -0.051 0.247 -0.452 0.000 0.000 0.000 0.000 -1.162 -0.144 1.040 -0.756 0.191 -0.120 0.251 -0.420 0.388 -0.156 0.078 -0.438 -0.449 0.071 0.576 -0.461 -0.849 0.093 0.648 -0.302 0.000 0.000 0.000 0.000 0.079 0.016 0.258 -0.440 0.149 -0.056 0.301 -0.519 -0.817 0.355 0.589 -0.622 0.246 -0.158 0.507 -1.010 0.200 -0.066 0.176 -0.383 -0.294 0.001 0.654 -0.713 -1.101 -0.184 1.066 -0.835 0.091 -0.005 0.553 -1.087 0.204 0.056 0.179 -0.563 0.241 0.129 0.297 -1.012 -0.463 -0.018 0.810 -0.905 -0.028 0.006 0.373 -0.473 0.437 -0.304 0.196 -0.533 -0.271 0.160 0.496 -0.635 -0.967 0.118 0.775 -0.530 0.204 -0.009 0.395 -0.891 0.313 0.017 0.164 -0.676 0.101 0.075 0.381 -0.805 -1.084 0.126 0.798 -0.517 -0.088 0.218 0.431 -0.867 0.228 0.129 0.139 -0.656 0.086 0.118 0.411 -0.934 -1.030 0.098 0.921 -0.870 -0.220 0.055 0.794 -1.442 0.163 0.029 0.283 -0.635 0.052 0.359 0.062 -0.650 -0.840 0.457 0.374 -0.372 -0.218 0.162 0.490 -0.697 0.297 -0.089 0.185 -0.526 -0.352 0.399 0.301 -0.587 -1.044 0.384 0.430 -0.213 -0.203 0.293 0.480 -0.967 0.473 -0.066 -0.226 -0.319 -0.237 0.348 0.331 -0.687 -0.793 0.399 0.564 -0.677 -0.063 0.417 0.345 -1.194 0.412 -0.362 0.154 -0.362 -0.307 0.323 0.398 -0.684 -1.389 0.637 0.381 -0.395 -0.128 -0.030 0.770 -1.320 0.213 -0.235 0.389 -0.554 0.056 0.114 0.346 -0.720 -0.934 0.003 0.933 -0.823 -0.285 0.136 0.618 -0.876 0.445 -0.121 0.144 -0.704 -0.419 0.052 0.630 -0.584 -0.867 0.238 0.619 -0.441 -0.104 0.250 0.505 -1.117 0.375 -0.147 0.037 -0.369 -0.270 0.331 0.566 -1.210 -0.988 0.226 0.747 -0.626 -0.282 0.346 0.444 -0.874 0.518 -0.361 0.123 -0.514 -0.284 0.262 0.451 -0.708 -1.172 0.360 0.739 -0.728 0.000 0.000 0.000 0.000 0.113 0.113 0.237 -0.604 0.000 0.000 0.000 0.000 -0.935 -0.236 0.943 -0.502 0.050 0.137 0.152 -0.407 0.385 -0.031 0.028 -0.523 -0.362 0.114 0.473 -0.412 -0.985 0.161 0.637 -0.282 0.000 0.000 0.000 0.000 0.226 0.043 0.189 -0.597 0.238 0.058 0.230 -0.721 -0.879 0.350 0.706 -0.862 -0.023 0.229 0.340 -0.791 0.170 0.174 -0.006 -0.413 -0.220 0.252 0.323 -0.515 -1.210 0.030 1.017 -0.935 0.245 -0.197 0.459 -0.816 0.366 -0.088 0.253 -0.790 0.214 0.042 0.214 -0.618 -0.742 0.205 0.524 -0.302 0.048 -0.184 0.512 -0.599 0.324 -0.425 0.279 -0.339 -0.006 -0.238 0.468 -0.370 -0.406 0.010 0.620 -0.510 0.291 -0.138 0.541 -1.275 0.294 -0.275 0.177 -0.291 0.044 -0.300 0.508 -0.445 -0.256 -0.037 0.505 -0.379 -0.054 0.026 -0.263 0.245 0.209 -0.305 0.183 -0.153 0.092 0.114 0.409 -0.932 -0.738 0.132 0.671 -0.488 -0.013 -0.124 0.796 -1.496 0.057 -0.007 0.189 -0.278 -0.004 0.377 0.164 -0.778 -0.879 0.471 0.434 -0.475 0.075 -0.098 0.614 -1.054 0.270 -0.098 0.255 -0.586 -0.135 0.149 0.366 -0.531 -1.116 0.411 0.535 -0.396 0.271 0.178 0.351 -1.373 0.335 0.075 -0.186 -0.310 -0.095 0.219 0.314 -0.608 -0.759 0.542 0.391 -0.641 -0.287 0.419 0.498 -1.213 0.303 -0.173 0.225 -0.494 -0.320 0.347 0.487 -0.928 -1.188 0.608 0.421 -0.520 0.171 -0.236 0.663 -1.178 0.009 -0.003 0.371 -0.509 0.105 0.090 0.436 -0.981 -0.736 -0.205 0.969 -0.798 -0.219 -0.050 0.688 -0.826 0.399 -0.159 0.136 -0.542 -0.344 -0.075 0.697 -0.638 -0.829 0.271 0.673 -0.652 0.198 -0.029 0.402 -0.858 0.406 -0.410 0.173 -0.331 0.060 0.054 0.411 -0.763 -1.022 0.144 0.739 -0.448 0.038 0.180 0.264 -0.646 0.366 -0.163 0.182 -0.548 -0.175 0.155 0.508 -0.789 -1.140 0.331 0.626 -0.425 0.000 0.000 0.000 0.000 0.136 -0.092 0.166 -0.249 0.000 0.000 0.000 0.000 -0.423 0.043 0.335 -0.055 0.117 0.072 0.262 -0.588 0.266 -0.212 0.155 -0.285 -0.071 -0.247 0.566 -0.464 -0.766 0.110 0.469 -0.077 0.000 0.000 0.000 0.000 0.269 -0.228 0.341 -0.567 0.216 0.021 0.179 -0.533 -0.597 0.145 0.662 -0.621 0.037 0.229 0.136 -0.508 0.018 0.013 0.130 -0.179 0.097 -0.059 0.366 -0.553 -0.867 0.215 0.555 -0.283 frame2 LUT 5 4 4 0 0.000 0.681 -0.236 -0.401 -0.339 0.075 -0.129 -0.312 0.295 0.654 -0.130 -0.531 -0.286 -0.364 0.089 -0.028 0.237 0.585 -0.379 -0.631 0.117 0.055 -0.310 -0.437 0.501 0.467 -0.276 -0.239 -0.081 -0.237 -0.328 0.020 0.423 0.790 -0.369 -0.807 -0.113 0.177 -0.228 -0.527 0.402 0.687 -0.034 -0.665 -0.354 -0.372 -0.045 -0.206 0.477 0.299 -0.029 -0.556 0.151 -0.088 0.190 -0.287 0.136 0.098 0.206 -0.126 -0.217 -0.679 0.321 -0.657 0.578 0.487 -0.007 -0.259 -0.382 -0.192 0.295 -0.390 0.183 0.579 0.027 -0.636 -0.247 -0.682 0.352 -0.267 0.344 0.576 -0.336 -0.699 0.139 0.026 -0.205 -0.583 0.532 0.472 -0.287 -0.267 -0.056 -0.717 -0.124 -0.013 0.568 0.030 0.374 -0.103 -0.411 -0.132 0.078 -0.629 0.470 0.354 0.068 -0.283 -0.232 -0.838 0.563 -0.117 0.057 0.179 0.318 -0.480 -0.146 -0.149 0.427 -0.579 0.117 -0.038 0.320 -0.164 -0.175 -1.083 0.608 -0.286 0.243 0.535 -0.333 -0.157 -0.217 0.150 -0.223 -0.138 0.170 0.537 -0.077 -0.278 -0.365 -1.448 0.096 0.410 0.306 0.518 -0.457 -0.264 0.010 0.108 -0.264 -0.347 0.383 0.509 -0.365 -0.200 -0.104 -0.457 0.055 -0.196 0.443 0.491 -0.090 -0.414 -0.144 0.173 -0.370 -0.401 0.424 0.599 0.093 -0.437 -0.555 -0.939 0.275 -0.238 0.506 0.266 0.156 -0.195 -0.304 0.007 0.181 -0.360 0.114 0.112 0.335 -0.184 -0.362 -1.160 0.590 -0.692 0.515 0.536 -0.025 -0.752 -0.039 0.003 0.165 -0.138 -0.047 0.532 0.308 -0.860 -0.385 -0.197 0.240 -0.491 0.304 0.546 -0.157 -0.776 0.083 0.198 -0.534 -0.292 0.428 0.504 -0.145 -0.475 -0.062 -0.245 0.023 -0.301 0.410 0.522 -0.064 -0.667 -0.033 -0.021 -0.299 -0.291 0.469 0.504 0.062 -0.438 -0.322 -0.403 0.317 -0.507 0.372 0.442 -0.168 -0.900 0.281 0.117 0.216 -0.333 -0.058 0.269 0.194 -0.504 -0.080 -1.011 0.376 -0.419 0.544 0.453 -0.157 -0.119 -0.299 0.347 -0.273 -0.399 0.192 0.617 -0.102 -0.375 -0.390 -0.716 0.284 0.193 0.044 0.515 -0.176 -0.619 0.050 0.096 -0.249 -0.348 0.383 0.510 -0.389 -0.267 -0.028 -0.603 -0.137 0.034 0.494 0.406 -0.154 -0.469 0.076 0.300 -0.397 -0.392 0.319 0.537 -0.010 -0.347 -0.377 -0.382 -0.155 -0.034 0.441 0.425 -0.376 -0.401 0.176 -0.068 0.228 -0.257 0.054 0.015 0.081 -0.144 0.037 -0.969 0.097 -0.357 0.712 0.519 0.065 -0.467 -0.327 -0.003 0.333 -0.371 -0.046 0.578 0.074 -0.604 -0.329 -0.799 0.415 -0.576 0.507 0.635 -0.321 -0.492 -0.096 0.165 -0.210 -0.287 0.256 0.658 -0.416 -0.473 -0.070 -0.599 0.067 -0.047 0.405 0.111 0.317 -0.092 -0.443 -0.027 0.329 -0.882 0.286 0.505 0.233 -0.464 -0.554 -0.399 0.555 -0.415 0.032 0.336 0.215 -0.282 -0.406 -0.184 0.522 -0.487 -0.044 0.001 0.339 -0.282 -0.133 -0.604 0.446 -0.441 0.314 0.411 -0.105 0.004 -0.439 -0.072 -0.340 0.172 0.179 0.560 -0.029 -0.444 -0.302 -1.077 0.347 -0.131 0.423 0.612 -0.443 -0.578 0.093 0.286 -0.884 -0.019 0.325 0.460 -0.215 -0.248 -0.119 -0.205 -0.241 0.108 0.273 0.426 -0.177 -0.083 -0.272 -0.036 -0.402 -0.044 0.376 0.651 -0.100 -0.404 -0.433 -0.649 0.236 -0.220 0.408 0.265 0.191 -0.420 -0.138 -0.180 -0.203 0.038 0.289 0.091 0.313 -0.262 -0.219 -1.044 0.257 -0.097 0.470 0.534 -0.055 -0.431 -0.238 0.046 -0.061 -0.188 0.178 0.466 0.053 -0.464 -0.224 -1.170 0.323 0.141 0.265 0.821 -0.547 -0.873 0.004 0.227 -0.849 -0.205 0.493 0.570 -0.325 -0.282 -0.161 -0.414 -0.091 -0.006 0.394 0.409 0.088 -0.340 -0.286 -0.041 -0.220 -0.368 0.480 0.439 0.036 -0.455 -0.169 -0.575 0.418 -0.222 0.183 0.217 0.135 -0.396 -0.030 0.150 -0.073 -0.273 0.153 0.178 0.170 -0.257 -0.142 -1.017 0.375 -0.393 0.534 0.638 -0.312 -0.356 -0.224 0.000 -0.295 -0.236 0.418 0.782 -0.173 -0.543 -0.500 -0.538 0.112 0.054 0.253 0.456 -0.368 -0.591 0.250 0.010 -0.153 -0.416 0.426 0.697 -0.431 -0.368 -0.214 -0.380 -0.094 -0.120 0.459 0.691 -0.411 -0.641 -0.012 0.064 -0.521 -0.139 0.433 0.702 -0.045 -0.706 -0.339 -0.466 -0.084 -0.337 0.624 0.415 -0.209 -0.600 0.191 0.006 0.186 -0.343 0.098 0.423 0.075 -0.311 -0.322 -0.619 0.298 -0.279 0.374 0.450 -0.164 -0.047 -0.369 -0.181 0.061 -0.165 0.242 0.535 0.190 -0.774 -0.276 -1.255 0.533 -0.461 0.493 0.527 -0.338 -0.672 0.189 0.158 -0.600 -0.362 0.532 0.498 -0.143 -0.421 -0.097 -0.526 -0.036 -0.076 0.467 0.007 0.329 -0.029 -0.397 0.004 -0.125 -0.630 0.520 0.258 0.319 -0.426 -0.301 -0.598 0.517 -0.376 0.186 0.134 0.247 -0.511 0.021 0.003 0.111 -0.219 0.082 0.022 0.406 -0.376 -0.169 -0.927 0.445 -0.303 0.381 0.485 -0.158 -0.210 -0.252 0.193 -0.109 -0.447 0.259 0.489 -0.247 -0.033 -0.365 -0.617 0.305 -0.280 0.367 0.445 -0.160 -0.534 0.075 0.209 -0.678 -0.144 0.394 0.377 -0.367 0.026 -0.139 -0.281 -0.077 -0.011 0.306 0.547 -0.218 -0.178 -0.331 -0.031 -0.100 -0.396 0.410 0.547 0.051 -0.435 -0.389 -0.819 0.581 -0.649 0.378 0.179 0.119 -0.412 0.043 0.068 -0.137 -0.400 0.361 0.158 0.143 0.018 -0.382 -0.522 0.304 -0.203 0.263 0.616 0.040 -0.633 -0.332 -0.031 0.046 -0.262 0.208 0.566 0.161 -1.007 -0.147 -1.144 0.187 0.150 0.378 0.495 -0.151 -1.004 0.252 0.233 -0.754 -0.305 0.509 0.526 -0.324 -0.343 -0.040 -0.316 -0.204 -0.041 0.440 0.423 0.158 -0.704 -0.105 -0.032 -0.252 -0.423 0.523 0.455 0.040 -0.695 -0.023 -0.615 0.345 -0.407 0.404 0.053 0.408 -0.765 0.067 0.171 0.122 -0.458 0.081 0.036 0.213 -0.474 0.132 -0.995 0.319 -0.216 0.475 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.592 -0.296 -0.544 -0.012 0.155 -0.669 -0.257 0.507 0.579 -0.248 -0.257 -0.273 -0.218 -0.204 -0.138 0.447 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.234 -0.333 -0.661 0.482 -0.210 -0.031 -0.133 0.316 0.077 0.021 -0.160 0.050 -0.214 -0.034 -0.662 0.612 0.487 -0.008 -0.018 -0.698 -0.185 0.202 -0.185 0.125 0.376 0.251 -0.516 -0.298 -1.322 0.734 -0.441 0.263 0.701 -0.382 -0.575 -0.095 0.088 -0.352 -0.542 0.553 0.543 -0.245 -0.174 -0.299 -0.952 0.167 0.013 0.434 0.005 0.224 0.043 -0.326 -0.049 0.020 -0.629 0.457 0.539 0.132 -0.547 -0.384 -0.737 0.657 -0.369 0.070 0.135 0.210 -0.197 -0.197 -0.180 0.364 -0.416 0.111 0.005 0.332 -0.165 -0.242 -1.007 0.726 -0.674 0.288 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.512 -0.243 -0.352 -0.080 0.048 -0.312 -0.233 0.389 0.423 -0.293 -0.147 -0.088 -0.602 0.147 -0.090 0.372 0.575 -0.209 -0.371 -0.199 0.227 -0.648 -0.399 0.519 0.652 -0.253 -0.362 -0.301 -0.418 0.002 0.041 0.289 0.219 0.168 -0.180 -0.270 -0.417 0.279 -0.059 0.108 -0.087 0.178 0.146 -0.286 -1.358 0.450 -0.358 0.549 0.346 -0.153 -0.204 -0.057 -0.054 0.031 -0.054 0.072 0.620 -0.068 -0.510 -0.308 -1.019 0.488 -0.019 0.159 0.511 -0.252 -0.484 0.029 0.100 -0.478 -0.438 0.558 0.630 -0.406 -0.234 -0.239 -0.312 -0.097 -0.174 0.457 0.413 -0.068 -0.211 -0.234 0.055 -0.081 -0.463 0.368 0.682 -0.066 -0.368 -0.589 -0.605 0.381 -0.377 0.346 0.429 -0.025 -0.799 0.133 -0.033 0.096 -0.410 0.265 0.152 0.229 -0.385 -0.072 -1.076 0.437 -0.491 0.546 Donor SDT 2 0 4 2 0.000 GT WMM 9 3 4 0 0.000 0.421 0.352 -0.171 -1.010 1.016 -0.342 -0.643 -0.866 -0.940 -1.232 1.437 -1.538 -9.727 -9.727 1.999 -9.727 -9.727 -9.727 -9.727 1.999 0.778 -2.204 0.862 -2.020 1.269 -0.882 -0.680 -1.260 -1.583 -1.603 1.595 -1.689 -0.765 -0.357 -0.645 0.988 NN TRM 0 0 0 0 0.000 Inter LUT 5 4 4 0 0.000 0.869 -0.597 -0.575 -0.249 0.511 -0.469 -0.293 0.052 0.238 -0.116 -0.251 0.081 0.289 -0.745 -0.013 0.252 0.470 -0.219 -0.356 -0.036 0.279 -0.355 -0.053 0.057 0.134 0.036 -0.295 0.087 -0.363 -0.335 0.089 0.450 0.600 -0.344 -0.179 -0.299 0.342 -0.347 -0.237 0.134 0.149 -0.122 -0.108 0.063 -0.178 -0.473 0.154 0.360 0.554 -0.568 -0.754 0.339 0.195 -0.398 -0.082 0.203 -0.017 0.043 -0.356 0.263 -0.153 -0.596 -0.235 0.669 0.674 -0.413 -0.222 -0.329 0.330 -0.177 -0.288 0.056 0.049 0.181 -0.325 0.047 -0.221 -0.324 -0.107 0.501 0.258 -0.029 -0.109 -0.158 0.100 0.023 -0.279 0.121 0.154 0.109 -0.265 -0.034 -0.532 -0.015 0.021 0.384 0.281 0.028 0.060 -0.467 0.057 -0.019 -0.108 0.064 0.036 0.166 -0.174 -0.049 -0.584 0.113 0.152 0.189 0.239 -0.076 -0.342 0.114 -0.126 -0.153 0.082 0.170 -0.142 0.248 -0.250 0.092 -0.737 -0.073 -0.049 0.568 0.747 -0.488 -0.138 -0.515 0.277 -0.369 0.132 -0.123 0.201 0.032 -0.154 -0.106 -0.052 -0.494 0.241 0.194 0.151 -0.192 0.125 -0.115 0.325 -0.327 -0.075 0.001 0.020 0.118 -0.178 0.024 -0.555 -0.150 0.177 0.365 0.520 -0.333 0.087 -0.495 0.405 -0.396 -0.248 0.102 0.122 -0.154 0.086 -0.072 -0.313 -0.375 0.296 0.258 0.256 -0.208 -0.184 0.084 0.171 -0.428 0.055 0.127 -0.104 0.047 -0.161 0.191 -0.592 -0.281 -0.102 0.662 0.817 -0.590 -0.696 -0.064 0.432 -0.268 -0.460 0.128 0.216 -0.103 -0.323 0.148 0.336 -0.767 -0.381 0.467 0.207 -0.033 -0.294 0.074 0.271 -0.114 -0.358 0.123 0.037 0.130 -0.247 0.052 -0.398 -0.062 0.067 0.305 0.421 -0.116 -0.252 -0.154 0.427 -0.232 -0.451 0.101 -0.063 0.256 -0.315 0.062 -0.274 -0.332 0.072 0.408 0.327 -0.289 -0.558 0.320 0.188 -0.162 -0.304 0.210 -0.013 0.009 -0.327 0.270 -0.325 -0.332 -0.279 0.662 0.568 -0.288 -0.268 -0.205 0.374 -0.330 -0.149 0.009 0.123 0.063 -0.276 0.058 -0.014 -0.236 0.067 0.155 0.287 -0.069 -0.221 -0.046 0.311 -0.261 -0.080 -0.031 0.007 -0.015 -0.207 0.189 -0.524 -0.158 0.177 0.353 0.378 -0.099 -0.120 -0.239 0.254 -0.230 -0.160 0.083 0.078 -0.085 -0.055 0.055 -0.453 -0.293 0.310 0.279 0.244 -0.243 -0.268 0.189 0.171 -0.311 -0.165 0.234 -0.166 0.151 -0.279 0.232 -0.565 -0.282 -0.108 0.655 0.463 -0.252 -0.101 -0.237 0.140 0.034 -0.247 0.046 0.017 0.160 -0.232 0.028 -0.284 -0.139 -0.035 0.372 0.252 -0.048 -0.087 -0.151 -0.275 0.655 -0.642 -0.062 0.055 0.111 -0.359 0.140 -0.575 0.186 -0.062 0.302 0.296 -0.053 0.052 -0.374 0.038 0.070 -0.145 0.027 0.019 0.168 -0.335 0.098 -0.547 0.117 0.111 0.204 0.220 -0.059 -0.090 -0.096 -0.125 0.108 -0.135 0.130 -0.452 0.309 -0.062 0.100 -0.866 0.061 -0.051 0.529 0.519 -0.254 -0.035 -0.410 0.142 -0.354 0.353 -0.257 0.067 0.165 -0.070 -0.186 -0.198 -0.205 0.105 0.245 0.182 -0.094 0.129 -0.260 0.208 -0.333 0.296 -0.281 0.055 0.094 -0.242 0.068 -0.562 0.022 0.192 0.220 0.369 -0.214 0.192 -0.505 0.217 -0.315 0.231 -0.217 0.142 0.078 0.000 -0.249 -0.473 -0.194 0.343 0.185 0.272 -0.114 -0.039 -0.159 0.097 -0.355 0.199 0.001 -0.106 0.226 -0.261 0.093 -0.718 -0.091 -0.031 0.560 0.664 -0.423 -0.483 -0.067 0.340 -0.291 -0.187 0.054 0.094 0.066 -0.149 -0.023 -0.067 -0.328 -0.036 0.349 0.357 -0.138 -0.244 -0.049 -0.002 -0.035 -0.153 0.171 -0.114 0.067 -0.151 0.174 -0.572 0.044 -0.009 0.381 0.480 -0.119 -0.238 -0.258 0.261 -0.146 -0.364 0.165 0.070 0.145 -0.195 -0.042 -0.282 -0.113 0.082 0.256 0.196 -0.117 -0.307 0.168 0.057 -0.020 -0.200 0.142 -0.171 0.152 -0.242 0.208 -0.644 -0.074 -0.157 0.597 0.481 -0.241 -0.188 -0.184 0.293 -0.254 -0.115 0.019 0.087 0.075 -0.184 0.006 -0.043 -0.419 0.190 0.189 0.184 -0.028 -0.128 -0.047 0.287 -0.307 -0.108 0.061 0.069 0.039 -0.267 0.127 -0.507 -0.212 0.339 0.224 0.422 -0.284 0.062 -0.331 0.303 -0.286 -0.127 0.043 0.155 0.001 -0.124 -0.047 -0.332 -0.336 0.277 0.265 0.294 -0.352 -0.226 0.183 0.149 -0.295 0.031 0.076 0.083 0.046 -0.207 0.059 -0.467 -0.397 0.074 0.550 0.393 -0.117 -0.084 -0.283 0.191 -0.169 -0.085 0.038 0.061 0.185 -0.375 0.069 -0.433 -0.176 0.065 0.409 0.119 0.017 -0.114 -0.032 0.058 0.031 -0.120 0.025 0.027 0.240 -0.365 0.034 -0.612 0.066 0.040 0.346 0.151 0.053 0.082 -0.332 0.100 -0.111 -0.021 0.024 -0.164 0.304 -0.222 0.022 -0.651 0.110 0.177 0.206 0.098 0.081 -0.109 -0.082 -0.153 -0.132 0.073 0.184 -0.277 0.329 -0.182 0.053 -0.816 0.078 0.025 0.443 0.462 -0.285 0.047 -0.379 0.301 -0.324 0.161 -0.232 0.070 0.023 0.074 -0.182 -0.201 -0.347 0.244 0.213 0.111 -0.021 0.083 -0.193 0.297 -0.335 0.032 -0.065 -0.022 -0.014 -0.005 0.041 -0.399 -0.184 0.199 0.279 0.372 -0.178 0.109 -0.427 0.331 -0.302 -0.077 -0.026 -0.186 -0.411 0.734 -0.504 -0.365 -0.266 0.276 0.240 0.159 -0.093 -0.011 -0.069 0.165 -0.319 0.055 0.055 -0.176 0.123 -0.020 0.055 -0.556 -0.169 0.013 0.508 0.573 -0.248 -0.462 -0.082 0.440 -0.265 -0.298 -0.002 0.021 0.191 -0.307 0.050 -0.002 -0.448 -0.056 0.385 0.124 0.058 -0.246 0.037 0.117 -0.038 -0.220 0.116 -0.079 0.043 -0.210 0.212 -0.480 -0.079 0.217 0.231 0.319 0.101 -0.346 -0.162 0.289 -0.217 -0.281 0.130 -0.091 0.210 -0.297 0.125 -0.373 -0.207 0.155 0.320 0.157 -0.074 -0.310 0.174 0.149 -0.168 -0.170 0.154 -0.234 0.145 -0.260 0.274 -0.554 -0.213 -0.114 0.616 0.643 -0.509 -0.480 0.026 0.321 -0.263 -0.258 0.112 0.122 0.076 -0.230 0.008 0.018 -0.632 -0.099 0.494 0.319 -0.300 -0.142 0.049 0.223 -0.262 -0.179 0.158 0.249 -0.125 -0.290 0.107 -0.287 -0.361 0.032 0.464 0.497 -0.294 -0.164 -0.184 0.254 -0.334 -0.163 0.165 0.125 -0.049 -0.194 0.096 -0.316 -0.311 0.085 0.412 0.185 -0.489 -0.574 0.565 0.208 -0.381 -0.199 0.270 -0.097 0.014 -0.333 0.334 -0.382 -0.646 -0.382 0.869 0.537 -0.334 -0.202 -0.174 0.088 -0.160 -0.155 0.194 -0.040 0.140 -0.439 0.248 -0.278 -0.093 -0.247 0.480 0.184 -0.059 0.009 -0.156 0.167 0.038 -0.276 0.036 0.113 0.056 -0.242 0.048 -0.718 0.194 -0.098 0.394 0.332 -0.175 0.065 -0.305 0.062 -0.076 -0.127 0.126 -0.068 0.192 -0.269 0.103 -0.430 0.073 0.021 0.251 0.203 -0.145 -0.111 0.027 -0.142 -0.077 -0.096 0.275 -0.236 0.262 -0.272 0.169 -0.843 -0.091 -0.087 0.644 0.521 -0.358 -0.077 -0.257 0.290 -0.284 0.055 -0.125 0.068 0.131 -0.112 -0.103 -0.232 -0.403 0.241 0.276 0.165 -0.117 0.001 -0.065 0.244 -0.259 -0.111 0.076 0.006 0.085 -0.189 0.081 -0.619 -0.169 0.208 0.383 0.406 -0.273 -0.030 -0.205 0.317 -0.356 -0.090 0.047 0.087 -0.022 0.045 -0.119 -0.512 -0.326 0.360 0.284 0.214 -0.138 -0.201 0.085 0.115 -0.217 -0.097 0.165 -0.189 0.094 -0.296 0.311 -0.775 -0.289 -0.075 0.721 0.636 -0.546 -0.569 0.120 0.307 -0.257 -0.236 0.107 0.061 0.064 -0.262 0.108 -0.153 -0.625 -0.292 0.710 0.221 -0.207 -0.125 0.072 0.114 -0.074 -0.342 0.237 0.110 -0.103 -0.186 0.151 -0.517 -0.210 -0.042 0.551 0.356 -0.216 -0.106 -0.105 0.351 -0.253 -0.344 0.134 -0.035 0.111 -0.232 0.129 -0.306 -0.352 0.019 0.479 0.208 -0.399 -0.351 0.381 0.015 -0.285 -0.336 0.461 -0.155 -0.069 -0.321 0.432 -0.557 -0.543 -0.397 0.906 Intron LUT 5 4 4 0 0.000 0.852 -0.648 -0.551 -0.194 0.538 -0.488 -0.430 0.128 0.188 -0.098 -0.216 0.091 0.195 -0.715 0.001 0.316 0.409 -0.191 -0.365 0.028 0.318 -0.243 -0.324 0.150 0.159 -0.010 -0.287 0.099 -0.308 -0.367 0.091 0.435 0.671 -0.495 -0.167 -0.307 0.382 -0.394 -0.327 0.188 0.102 -0.136 -0.089 0.107 -0.156 -0.598 0.196 0.374 0.408 -0.511 -0.609 0.396 0.244 -0.459 -0.204 0.288 -0.010 0.043 -0.398 0.285 -0.231 -0.525 -0.224 0.675 0.679 -0.453 -0.282 -0.242 0.363 -0.254 -0.388 0.152 0.061 0.087 -0.344 0.146 -0.166 -0.370 -0.064 0.463 0.219 -0.096 -0.117 -0.032 0.100 0.019 -0.446 0.240 0.145 0.072 -0.245 -0.001 -0.478 -0.034 -0.103 0.458 0.308 -0.114 0.091 -0.372 0.213 -0.128 -0.242 0.111 -0.094 0.186 -0.178 0.058 -0.570 0.159 0.183 0.104 0.245 -0.132 -0.287 0.114 -0.068 -0.170 -0.059 0.260 -0.073 0.199 -0.275 0.104 -0.775 -0.118 -0.069 0.623 0.762 -0.552 -0.173 -0.444 0.461 -0.459 -0.066 -0.088 0.216 -0.027 -0.114 -0.100 -0.059 -0.622 0.212 0.301 0.108 -0.159 0.078 -0.042 0.371 -0.317 -0.259 0.096 0.034 0.079 -0.145 0.021 -0.484 -0.174 0.104 0.405 0.508 -0.387 0.106 -0.441 0.442 -0.395 -0.376 0.151 0.115 -0.228 0.112 -0.025 -0.164 -0.384 0.293 0.159 0.289 -0.275 -0.149 0.071 0.236 -0.391 -0.101 0.173 -0.055 0.065 -0.180 0.148 -0.525 -0.387 -0.048 0.654 0.695 -0.477 -0.644 0.033 0.424 -0.229 -0.633 0.214 0.147 -0.016 -0.386 0.187 0.082 -0.677 -0.283 0.579 0.202 -0.048 -0.255 0.063 0.210 -0.075 -0.373 0.166 0.087 0.081 -0.175 -0.008 -0.316 -0.172 0.065 0.337 0.481 -0.136 -0.275 -0.205 0.446 -0.216 -0.549 0.128 -0.089 0.165 -0.178 0.077 -0.277 -0.249 0.035 0.388 0.338 -0.296 -0.594 0.332 0.249 -0.184 -0.420 0.244 -0.032 0.016 -0.247 0.224 -0.384 -0.298 -0.265 0.668 0.578 -0.371 -0.257 -0.157 0.405 -0.300 -0.369 0.123 0.070 0.064 -0.208 0.056 -0.075 -0.334 0.168 0.181 0.249 -0.072 -0.186 -0.027 0.297 -0.246 -0.169 0.055 -0.022 0.046 -0.287 0.218 -0.555 -0.181 0.221 0.347 0.434 -0.227 -0.142 -0.171 0.334 -0.272 -0.272 0.116 0.054 -0.119 -0.110 0.156 -0.374 -0.360 0.357 0.225 0.227 -0.220 -0.261 0.185 0.246 -0.269 -0.376 0.280 -0.139 0.178 -0.307 0.204 -0.529 -0.294 -0.050 0.609 0.521 -0.332 -0.186 -0.165 0.184 -0.032 -0.374 0.156 0.087 0.041 -0.285 0.122 -0.264 -0.163 -0.052 0.389 0.261 -0.093 -0.128 -0.076 -0.205 0.668 -0.746 -0.079 0.108 0.159 -0.451 0.103 -0.662 0.187 -0.094 0.371 0.335 -0.150 0.016 -0.275 0.138 -0.028 -0.328 0.166 -0.068 0.108 -0.288 0.201 -0.409 0.009 0.153 0.175 0.245 -0.156 -0.099 -0.024 -0.050 0.043 -0.210 0.189 -0.323 0.268 -0.162 0.141 -0.844 -0.069 -0.075 0.623 0.567 -0.365 -0.102 -0.303 0.226 -0.368 0.184 -0.121 0.073 0.156 -0.138 -0.112 -0.195 -0.379 0.165 0.307 0.108 -0.096 0.084 -0.110 0.310 -0.346 0.134 -0.191 0.071 0.122 -0.215 -0.001 -0.422 -0.029 0.086 0.278 0.418 -0.350 0.187 -0.432 0.263 -0.372 0.129 -0.099 0.202 -0.022 -0.063 -0.140 -0.268 -0.352 0.370 0.130 0.342 -0.221 -0.012 -0.180 0.150 -0.337 0.052 0.087 0.015 0.190 -0.288 0.043 -0.578 -0.211 0.007 0.547 0.728 -0.492 -0.455 -0.148 0.357 -0.146 -0.424 0.098 0.199 0.067 -0.285 -0.023 0.006 -0.332 -0.049 0.305 0.314 -0.136 -0.275 0.029 0.072 -0.025 -0.298 0.205 -0.054 0.049 -0.172 0.156 -0.486 0.051 -0.022 0.340 0.505 -0.176 -0.316 -0.164 0.332 -0.201 -0.433 0.177 0.050 0.056 -0.197 0.074 -0.217 -0.199 0.110 0.250 0.281 -0.248 -0.283 0.165 0.149 -0.106 -0.367 0.247 -0.151 0.157 -0.278 0.214 -0.573 -0.138 -0.124 0.587 0.503 -0.337 -0.234 -0.089 0.380 -0.278 -0.280 0.071 0.023 0.072 -0.131 0.029 -0.103 -0.583 0.245 0.283 0.178 -0.115 -0.090 0.009 0.240 -0.194 -0.262 0.151 0.088 -0.060 -0.383 0.276 -0.433 -0.363 0.301 0.322 0.414 -0.398 0.127 -0.293 0.301 -0.301 -0.192 0.112 0.120 -0.189 -0.016 0.066 -0.322 -0.484 0.341 0.285 0.303 -0.388 -0.222 0.195 0.210 -0.317 -0.070 0.122 -0.058 0.072 -0.181 0.145 -0.418 -0.523 0.069 0.591 0.485 -0.219 -0.193 -0.206 0.272 -0.179 -0.252 0.097 0.051 0.161 -0.403 0.124 -0.343 -0.271 0.040 0.438 0.158 -0.006 -0.188 0.014 0.174 -0.039 -0.316 0.131 0.066 0.177 -0.315 0.026 -0.550 0.040 -0.051 0.404 0.176 -0.070 0.068 -0.201 0.190 -0.121 -0.192 0.090 -0.120 0.227 -0.227 0.077 -0.548 0.047 0.227 0.154 0.194 -0.015 -0.204 -0.003 -0.050 -0.125 -0.035 0.191 -0.213 0.300 -0.306 0.134 -0.734 -0.006 -0.004 0.491 0.535 -0.349 -0.051 -0.320 0.486 -0.405 -0.039 -0.199 0.046 0.016 0.153 -0.244 -0.205 -0.500 0.333 0.221 0.061 -0.056 0.052 -0.062 0.327 -0.242 -0.133 -0.018 0.005 0.071 -0.107 0.026 -0.405 -0.158 0.202 0.261 0.478 -0.315 0.106 -0.460 0.452 -0.315 -0.312 0.033 -0.104 -0.510 0.690 -0.407 -0.287 -0.379 0.373 0.159 0.182 -0.140 -0.069 0.007 0.287 -0.389 -0.052 0.072 -0.012 0.063 -0.073 0.019 -0.464 -0.207 0.009 0.488 0.556 -0.353 -0.383 -0.029 0.424 -0.248 -0.453 0.119 0.051 0.114 -0.314 0.108 -0.085 -0.519 0.103 0.363 -0.014 0.162 -0.258 0.076 0.057 0.002 -0.346 0.228 -0.139 0.083 -0.195 0.213 -0.481 -0.090 0.182 0.275 0.262 0.040 -0.141 -0.208 0.402 -0.167 -0.464 0.088 -0.069 0.197 -0.230 0.067 -0.430 -0.188 0.188 0.311 0.159 -0.020 -0.340 0.146 0.153 -0.106 -0.371 0.245 -0.158 0.195 -0.289 0.190 -0.559 -0.197 -0.082 0.589 0.648 -0.549 -0.420 0.002 0.315 -0.289 -0.399 0.238 0.168 0.034 -0.298 0.055 -0.033 -0.625 -0.021 0.474 0.277 -0.288 -0.129 0.077 0.200 -0.207 -0.231 0.180 0.166 -0.109 -0.159 0.078 -0.316 -0.406 0.047 0.494 0.469 -0.338 -0.151 -0.115 0.301 -0.282 -0.266 0.155 0.024 -0.099 -0.107 0.165 -0.211 -0.466 0.116 0.410 0.224 -0.483 -0.396 0.440 0.224 -0.384 -0.306 0.329 -0.049 -0.024 -0.258 0.278 -0.460 -0.629 -0.312 0.865 0.582 -0.432 -0.251 -0.118 0.202 -0.244 -0.189 0.174 0.003 0.044 -0.416 0.285 -0.270 -0.264 -0.150 0.522 0.153 -0.067 0.037 -0.140 0.116 0.076 -0.349 0.108 0.119 0.052 -0.280 0.076 -0.633 0.114 -0.173 0.471 0.379 -0.261 -0.015 -0.192 0.190 -0.186 -0.175 0.130 -0.065 0.143 -0.255 0.140 -0.449 -0.009 0.055 0.304 0.185 -0.184 -0.076 0.049 -0.093 -0.115 -0.153 0.311 -0.285 0.292 -0.246 0.152 -0.723 -0.188 -0.113 0.671 0.567 -0.430 -0.130 -0.214 0.300 -0.272 -0.035 -0.052 0.041 0.053 -0.064 -0.033 -0.197 -0.496 0.229 0.318 0.120 -0.122 -0.004 -0.004 0.337 -0.277 -0.225 0.079 0.058 0.048 -0.164 0.046 -0.541 -0.084 0.078 0.394 0.470 -0.375 0.037 -0.290 0.401 -0.345 -0.225 0.052 0.169 -0.106 -0.016 -0.062 -0.378 -0.362 0.337 0.249 0.193 -0.213 -0.112 0.096 0.236 -0.228 -0.246 0.170 -0.152 0.127 -0.294 0.254 -0.687 -0.374 -0.107 0.747 0.628 -0.564 -0.490 0.092 0.382 -0.389 -0.335 0.190 0.135 -0.016 -0.292 0.132 -0.114 -0.608 -0.249 0.659 0.194 -0.176 -0.097 0.052 0.119 -0.037 -0.459 0.277 0.053 -0.070 -0.145 0.145 -0.501 -0.193 -0.048 0.537 0.414 -0.301 -0.098 -0.117 0.454 -0.309 -0.464 0.134 -0.117 0.119 -0.140 0.116 -0.328 -0.325 0.027 0.472 0.199 -0.392 -0.306 0.357 0.128 -0.286 -0.456 0.441 -0.115 -0.062 -0.350 0.416 -0.568 -0.506 -0.401 0.898 Start SDT 3 0 4 2 0.000 ATG WMM 15 9 4 0 0.000 -0.032 -0.107 0.177 -0.054 0.011 -0.025 -0.011 0.025 0.032 0.274 -0.218 -0.138 0.119 -0.153 0.025 -0.004 -0.303 0.386 -0.107 -0.062 0.170 0.745 -0.450 -1.084 1.049 -1.099 0.262 -1.888 0.723 0.381 -0.849 -1.011 0.164 0.639 0.079 -1.888 1.996 -7.669 -7.669 -7.669 -7.669 -7.669 -7.669 1.996 -7.669 -7.669 1.996 -7.669 -0.251 -0.383 0.741 -0.459 -0.076 0.782 -0.614 -0.550 -0.750 0.189 0.516 -0.251 NNN TRM 0 0 0 0 0.000 Stop SDT 3 0 4 4 0.000 TAA WMM 9 6 4 0 0.000 0.073 -0.278 0.377 -0.278 0.488 -0.208 -0.278 -0.140 -0.352 0.377 0.233 -0.430 0.044 -0.108 0.258 -0.242 0.354 0.044 -0.899 0.207 -0.045 0.377 0.044 -0.512 -5.600 -5.600 -5.600 1.978 1.978 -5.600 -5.600 -5.600 1.978 -5.600 -5.600 -5.600 TAG WMM 9 6 4 0 0.000 0.165 -0.282 0.388 -0.420 0.303 -0.127 -0.315 0.066 -0.384 0.525 0.013 -0.349 0.013 -0.041 0.303 -0.349 0.259 0.066 -0.456 0.040 -0.654 0.562 0.259 -0.532 -5.741 -5.741 -5.741 1.980 1.980 -5.741 -5.741 -5.741 -5.741 -5.741 1.980 -5.741 TGA WMM 9 6 4 0 0.000 0.003 -0.112 0.463 -0.527 0.443 -0.112 -0.305 -0.142 -0.743 0.695 0.161 -0.588 0.325 -0.025 0.123 -0.568 0.336 0.017 -0.527 0.044 -0.790 0.390 0.473 -0.468 -6.697 -6.697 -6.697 1.990 -6.697 -6.697 1.990 -6.697 1.990 -6.697 -6.697 -6.697 NNN TRM 0 0 0 0 0.000 snap-2010-07-28/HMM/README0000644000175000017500000000025011424066010014222 0ustar moellermoellerREADME for HMM directory ======================== These files can be loaded without explicit path if the $ZOE environment variable has been set to the Zoe directory. snap-2010-07-28/Zoe/0000755000175000017500000000000011576504261013476 5ustar moellermoellersnap-2010-07-28/Zoe/zoeDistribution.c0000644000175000017500000001022111424066010017016 0ustar moellermoeller/******************************************************************************\ zoeDuration.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_DISTRIBUTION_C #define ZOE_DISTRIBUTION_C #include "zoeDistribution.h" void zoeDeleteDistribution(zoeDistribution dist) { if (dist == NULL) return; if (dist->param) { zoeFree(dist->param); dist->param = NULL; } zoeFree(dist); dist = NULL; } zoeDistribution zoeNewDistribution ( zoeDistributionType type, coor_t start, coor_t end, int params, const float * param) { zoeDistribution d = zoeMalloc(sizeof(struct zoeDistribution)); if (end == -1) end = INT_MAX; d->type = type; d->start = start; d->end = end; d->params = params; d->param = zoeMalloc(params * sizeof(float)); (void)memcpy(d->param, param, params * sizeof(float)); return d; } zoeDistribution zoeReadDistribution (FILE * stream) { char func_name[32]; char input[32]; int start, end; int params, k; float * param; zoeDistributionType type; zoeDistribution dist; if (fscanf(stream, "%s %d %d", func_name, &start, &end) != 3) { zoeWarn("fscanf zoeReadDistribution func"); return NULL; } params = -1; /* impossible value */ if (strcmp(func_name, "DEFINED") == 0) { type = DEFINED; params = end - start + 1; } else if (strcmp(func_name, "GEOMETRIC") == 0) { type = GEOMETRIC; params = 1; } else if (strcmp(func_name, "POISSON") == 0) { type = POISSON; params = 1; } else if (strcmp(func_name, "CONSTANT") == 0) { type = CONSTANT; params = 1; } else { zoeWarn("zoeReadDistribution unknown func_name (%s)", func_name); return NULL; } param = zoeMalloc(params * sizeof(float)); for (k = 0; k < params; k++) { if (fscanf(stream, "%s", input) != 1) { zoeWarn("fscanf zoeReadDistribution params"); return NULL; } param[k] = zoeText2Score(input); } dist = zoeNewDistribution(type, start, end, params, param); zoeFree(param); return dist; } void zoeWriteDistribution (FILE * stream, const zoeDistribution dist) { int k; char score[16]; switch (dist->type) { case DEFINED: zoeS(stream, "\tDEFINED"); break; case GEOMETRIC: zoeS(stream, "\tGEOMETRIC"); break; case POISSON: zoeS(stream, "\tPOISSON"); break; case CONSTANT: zoeS(stream, "\tCONSTANT"); break; default: zoeExit("Unknown distribution type"); } zoeS(stream, " %d", dist->start); if (dist->end == INT_MAX) zoeS(stream, " -1\t"); else zoeS(stream, " %d\t", dist->end); for (k = 0; k < dist->params; k++) { if ((k % 5) == 0) zoeS(stream, "\n\t\t"); zoeScore2Text(dist->param[k], score); zoeS(stream, "%s\t", score); } zoeS(stream, "\n"); } score_t zoeScoreDistribution(const zoeDistribution dist, coor_t pos) { switch (dist->type) { case GEOMETRIC: return zoeScoreGeometric((double)dist->param[0], (double)pos); case POISSON: return zoeScorePoisson((double)dist->param[0], (double)pos); case CONSTANT: return dist->param[0]; case DEFINED: if (pos >= dist->start && pos <= dist->end) return dist->param[pos - dist->start]; else zoeExit("zoeScoreDistribution out of bounds"); default: zoeExit("zoeScoreDistribution unknown type"); } return MIN_SCORE; /* shush compiler warning */ } #endif snap-2010-07-28/Zoe/zoeDuration.h0000644000175000017500000000156411424066010016143 0ustar moellermoeller/******************************************************************************\ zoeDuration.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_DURATION_H #define ZOE_DURATION_H #include #include #include #include "zoeDistribution.h" #include "zoeFeature.h" #include "zoeTools.h" struct zoeDuration { zoeLabel label; int distributions; zoeDistribution * distribution; }; typedef struct zoeDuration * zoeDuration; void zoeDeleteDuration (zoeDuration); zoeDuration zoeNewDuration (zoeLabel, int, const zoeDistribution *); zoeDuration zoeReadDuration (FILE *); void zoeWriteDuration (FILE *, const zoeDuration); score_t zoeScoreDuration (const zoeDuration, coor_t); #endif snap-2010-07-28/Zoe/zoeTrellis.h0000644000175000017500000000415611424066010015774 0ustar moellermoeller/******************************************************************************\ zoeTrellis.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_TRELLIS_H #define ZOE_TRELLIS_H #include #include #include #include "zoeCDS.h" #include "zoeDNA.h" #include "zoeFeatureFactory.h" #include "zoeHMM.h" #include "zoeModel.h" #include "zoeScanner.h" #include "zoeFeature.h" #include "zoeFeatureTable.h" #include "zoeTools.h" struct zoeTrellis { zoeDNA dna; zoeDNA anti; zoeHMM hmm; zoeFeatureVec xdef; score_t max_score; /* set at the end */ score_t exp_score; /* expected score of null model */ zoeFeatureVec keep; /* max features */ zoeIVec jump; /* trace-back */ int min_len[zoeLABELS]; /* minimum length (internal & external) */ int max_len[zoeLABELS]; /* maximum explicit length (internal only) */ zoeScanner scanner[zoeLABELS]; /* map hmm models to scanners here */ zoeFeatureFactory factory[zoeLABELS]; /* external feature factory */ int internal[zoeLABELS]; /* internal states used */ int * trace[zoeLABELS]; /* viterbi trace-back */ score_t * score[zoeLABELS]; /* viterbi score */ zoeFeatureVec features[zoeLABELS]; /* current features[state_label] */ score_t (* ext)(struct zoeTrellis *, coor_t, zoeLabel, zoeFeature); }; typedef struct zoeTrellis * zoeTrellis; void zoeDeleteTrellis (zoeTrellis); zoeTrellis zoeNewTrellis (zoeDNA, zoeHMM, zoeFeatureVec); zoeVec zoePredictGenes (zoeTrellis); void zoeScoreCDS(zoeTrellis, zoeCDS, int, int); void zoeSetTrellisMeter (int); void zoeSetTrellisPadding (int); char* zoeGetPartialProtein (zoeTrellis, zoeLabel, zoeFeature); score_t zoeScoreExon (zoeTrellis, zoeFeature, int, int); score_t zoeScoreIntron (zoeTrellis, zoeFeature, int); #endif snap-2010-07-28/Zoe/zoeDuration.c0000644000175000017500000000710711424066010016135 0ustar moellermoeller/******************************************************************************\ zoeDuration.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_DURATION_C #define ZOE_DURATION_C #include "zoeDuration.h" void zoeDeleteDuration(zoeDuration dm) { int i; if (dm == NULL) return; for (i = 0; i < dm->distributions; i++) { if (dm->distribution[i]) { zoeDeleteDistribution(dm->distribution[i]); dm->distribution[i] = NULL; } } if (dm->distribution) { zoeFree(dm->distribution); dm->distribution = NULL; } zoeFree(dm); dm = NULL; } /* This is an exceptional case! The durations copy only the pointers to the distributions. But they free the distributions!! */ zoeDuration zoeNewDuration (zoeLabel label, int ds, const zoeDistribution * d) { int i; zoeDuration dm = zoeMalloc(sizeof(struct zoeDuration)); dm->label = label; dm->distributions = ds; dm->distribution = zoeMalloc(ds * sizeof(zoeDistribution)); for (i = 0; i < ds; i++) { dm->distribution[i] = d[i]; } return dm; } zoeDuration zoeReadDuration (FILE * stream) { char duration_name[16]; int distributions, j; zoeLabel label; zoeDistribution * distribution = NULL; if (fscanf(stream, "%s %d", duration_name, &distributions) != 2) { zoeWarn("fscanf zoeReadDuration header"); return NULL; } /* label */ label = zoeText2Label(duration_name); if (label == None) { zoeWarn("zoeReadDuration name not allowed (%s)", duration_name); return NULL; } /* distributions */ distribution = zoeMalloc(distributions * sizeof(zoeDistribution)); for (j = 0; j < distributions; j++) { if((distribution[j] = zoeReadDistribution(stream)) == NULL) { zoeWarn("zoeReadDuration distribution"); return NULL; } } return zoeNewDuration(label, distributions, distribution); } void zoeWriteDuration (FILE * stream, const zoeDuration dm) { int j; char label[16]; zoeLabel2Text(dm->label, label); zoeS(stream, "%s %d\n", label, dm->distributions); for (j = 0; j < dm->distributions; j++) { zoeWriteDistribution(stream, dm->distribution[j]); } } score_t zoeScoreDuration(const zoeDuration dm, coor_t pos) { int i, found; if (pos < 1) { zoeWarn("zoeScoreDuration positive integers only"); return MIN_SCORE; } found = -1; for (i = 0; i < dm->distributions; i++) { if (pos >= dm->distribution[i]->start && pos <= dm->distribution[i]->end) { found = i; break; } else if (pos >= dm->distribution[i]->start && dm->distribution[i]->end == 0) { found = i; break; } else if (pos <= dm->distribution[i]->end && dm->distribution[i]->start == 0) { found = i; break; } } if (found == -1) { zoeWriteDuration(stderr, dm); zoeExit("zoeScoreDuration out of bounds %d", pos); } return zoeScoreDistribution(dm->distribution[found], pos); } #endif snap-2010-07-28/Zoe/zoeCDS.h0000644000175000017500000000371711424066010014771 0ustar moellermoeller/******************************************************************************\ zoeCDS.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_CDS_H #define ZOE_CDS_H #include #include #include "zoeDNA.h" #include "zoeFeature.h" #include "zoeProtein.h" #include "zoeTools.h" struct zoeCDS { /* parent DNA */ zoeDNA dna; /* all genes */ char * name; /* gene name */ coor_t start; coor_t end; strand_t strand; score_t score; zoeFeatureVec source; /* original features */ zoeFeatureVec exons; /* exons */ zoeFeatureVec introns; /* introns */ zoeDNA tx; /* transcript */ zoeProtein aa; /* protein */ /* partial genes */ int start_found; int end_found; frame_t inc5; /* number of incomplete codon nucleotides on 5' end */ frame_t inc3; /* 3' end */ /* error checking */ int OK; /* no errors or warnings */ zoeTVec errors; zoeTVec warnings; }; typedef struct zoeCDS * zoeCDS; void zoeDeleteCDS (zoeCDS); zoeCDS zoeNewCDS (const char *, const zoeDNA, const zoeFeatureVec); void zoeAntiCDS (zoeCDS, coor_t); void zoeWriteCDS (FILE *, const zoeCDS); void zoeWriteFullCDS (FILE *, const zoeCDS); void zoeWriteTriteCDS (FILE *, const zoeCDS); void zoeReportCDS (FILE *, const zoeCDS); int zoeCDScmp (const zoeCDS, const zoeCDS); int zoeCDScmpptr (const void *, const void *); int zoeCDSsOverlap (const zoeCDS, const zoeCDS); int zoeCDSsShareSequence (const zoeCDS, const zoeCDS); void zoeSetMinIntron (int); void zoeSetMaxIntron (int); void zoeSetMinExon (int); void zoeSetMaxExon (int); void zoeSetMinGene (int); void zoeSetMaxGene (int); void zoeSetMinCDS (int); void zoeSetMaxCDS (int); #endif snap-2010-07-28/Zoe/zoe-loop.c0000644000175000017500000003007411424066010015375 0ustar moellermoeller/*****************************************************************************\ memloop.c test program to find memory leaks Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" void loopVec (void); void loopIVec (void); void loopFVec (void); void loopTVec (void); void loopFeature (void); void loopFeatureVec (void); void loopHash (void); void loopXtree (void); void loopDNA (void); void loopProtein (void); void loopFastaFile (void); void loopAlignment (void); void loopPalign (void); void loopFeatureTable (const char *); void loopCDS (void); void loopDistribution (void); void loopDuration (void); void loopTransition (void); void loopState (void); void loopModel (const char *); void loopScanner (const char *); void loopCounter (const char *); int Iterations = 1000; int main (int argc, char *argv[]) { /* process commandline */ if (argc == 1) { zoeO("usage: %s [iterations - default 1000]\n", argv[0]); zoeM(stdout, 10, "tests:", " -all", " -Vec, -IVec, -FVec, -TVec, -Hash -Xtree", " -Feature, -FeatureVec", " -FastaFile, -DNA, -Protein, -Alignment -CDS -Palign", " -Distribution, -Duration, -State, -Transition", "The following tests are not part of -all and require files", " -FeatureTable ", " -Model, -Scanner, -Counter", " -HMM "); exit(1); } zoeSetProgramName(argv[0]); zoeSetOption("-all", 0); /* zoeTools tests */ zoeSetOption("-Vec", 0); zoeSetOption("-IVec", 0); zoeSetOption("-FVec", 0); zoeSetOption("-TVec", 0); zoeSetOption("-Hash", 0); zoeSetOption("-Xtree", 0); /* zoeFeature tests */ zoeSetOption("-Feature", 0); zoeSetOption("-FeatureVec", 0); /* sequence tests */ zoeSetOption("-DNA", 0); zoeSetOption("-Protein", 0); zoeSetOption("-FastaFile", 0); /* HMM component tests */ zoeSetOption("-Distribution", 0); zoeSetOption("-Duration", 0); zoeSetOption("-State", 0); zoeSetOption("-Transition", 0); /* Alignment */ zoeSetOption("-Alignment", 0); zoeSetOption("-Palign", 0); /* CDS */ zoeSetOption("-CDS", 0); /* file-based tests */ zoeSetOption("-FeatureTable", 1); zoeSetOption("-Model", 1); zoeSetOption("-Scanner", 1); zoeSetOption("-Counter", 1); /* incomplete tests */ zoeSetOption("-HMM", 1); /* command line */ zoeParseOptions(&argc, argv); if (argc == 2) Iterations = atoi(argv[1]); if (zoeOption("-Vec") || zoeOption("-all")) loopVec(); if (zoeOption("-IVec") || zoeOption("-all")) loopIVec(); if (zoeOption("-FVec") || zoeOption("-all")) loopFVec(); if (zoeOption("-TVec") || zoeOption("-all")) loopTVec(); if (zoeOption("-Hash") || zoeOption("-all")) loopHash(); if (zoeOption("-Xtree") || zoeOption("-all")) loopXtree(); if (zoeOption("-Feature") || zoeOption("-all")) loopFeature(); if (zoeOption("-FeatureVec") || zoeOption("-all")) loopFeatureVec(); if (zoeOption("-DNA") || zoeOption("-all")) loopDNA(); if (zoeOption("-Protein") || zoeOption("-all")) loopProtein(); if (zoeOption("-FastaFile") || zoeOption("-all")) loopFastaFile(); if (zoeOption("-Distribution") || zoeOption("-all")) loopDistribution(); if (zoeOption("-Duration") || zoeOption("-all")) loopDuration(); if (zoeOption("-State") || zoeOption("-all")) loopState(); if (zoeOption("-Transition") || zoeOption("-all")) loopTransition(); if (zoeOption("-Alignment") || zoeOption("-all")) loopAlignment(); if (zoeOption("-Palign") || zoeOption("-all")) loopPalign(); if (zoeOption("-CDS") || zoeOption("-all")) loopCDS(); if (zoeOption("-FeatureTable")) loopFeatureTable(zoeOption("-FeatureTable")); if (zoeOption("-Model")) loopModel(zoeOption("-Model")); if (zoeOption("-Scanner")) loopScanner(zoeOption("-Scanner")); if (zoeOption("-Counter")) loopCounter(zoeOption("-Counter")); return 0; } void loopVec (void) { int i, j; zoeVec vec = NULL; zoeE("Vec\n"); for (j = 0; j < Iterations; j++) { vec = zoeNewVec(); for (i = 0; i < 30000; i++) zoePushVec(vec, NULL); zoeDeleteVec(vec); } } void loopIVec (void) { int i, j; zoeIVec vec = NULL; zoeE("IVec\n"); for (j = 0; j < Iterations; j++) { vec = zoeNewIVec(); for (i = 0; i < 30000; i++) zoePushIVec(vec, i); zoeDeleteIVec(vec); } } void loopFVec (void) { int i, j; zoeFVec vec = NULL; zoeE("FVec\n"); for (j = 0; j < Iterations; j++) { vec = zoeNewFVec(); for (i = 0; i < 30000; i++) zoePushFVec(vec, (float)i); zoeDeleteFVec(vec); } } void loopTVec (void) { int i, j; zoeTVec vec = NULL; zoeE("TVec\n"); for (j = 0; j < Iterations; j++) { vec = zoeNewTVec(); for (i = 0; i < 2500; i++) zoePushTVec(vec, "foobar"); zoeDeleteTVec(vec); } } void loopFeature (void) { int i, j; zoeFeature f = NULL; zoeE("Feature\n"); for (j = 0; j < Iterations; j++) { for (i = 0; i < 1500; i++) { f = zoeNewFeature(Exon, 100, 200, '+', 100, 0, 0, 0, "foobar"/*, NULL*/); zoeDeleteFeature(f); } } } void loopFeatureVec (void) { int i, j; zoeFeatureVec vec = NULL; zoeFeature f = zoeNewFeature(Exon, 100, 200, '+', 100, 0, 0, 0, "foobar"); zoeE("FeatureVec\n"); for (j = 0; j < Iterations; j++) { vec = zoeNewFeatureVec(); for (i = 0; i < 1500; i++) zoePushFeatureVec(vec, f); zoeDeleteFeatureVec(vec); } } void loopDNA (void) { int i, j; zoeDNA dna = NULL; zoeE("DNA\n"); for (j = 0; j < Iterations; j++) { for (i = 0; i < 625; i++) { dna = zoeNewDNA("foo", "ATAGCTAAT"); zoeDeleteDNA(dna); } } } void loopProtein (void) { int i, j; zoeProtein pro = NULL; zoeE("Protein\n"); for (j = 0; j < Iterations; j++) { for (i = 0; i < 1250; i++) { pro = zoeNewProtein("foo", "IAN"); zoeDeleteProtein(pro); } } } void loopFastaFile (void) { int i, j; zoeFastaFile fasta = NULL; zoeE("FastaFile\n"); for (j = 0; j < Iterations; j++) { for (i = 0; i < 1000; i++) { fasta = zoeNewFastaFile("foo", "any_text_will_do"); zoeDeleteFastaFile(fasta); } } } void loopHash (void) { int i, j; zoeHash hash; char * string = zoeMalloc(3); zoeE("Hash\n"); string[0] = 'A'; for (j = 0; j < Iterations; j++) { hash = zoeNewHash(); for (i = 0; i < 3000; i++) { string[1] = i; string[2] = '\0'; zoeSetHash(hash, string, string); } zoeDeleteHash(hash); } } void loopXtree (void) { int i, j, k; float f; char seq[8]; zoeXtree xt; zoeE("Xtree\n"); seq[7] = '\0'; for (k = 0; k < Iterations; k ++) { xt = zoeNewXtree(); for (j = 0; j < 200; j++) { for (i = 0; i < 7; i++) { f = (float)rand() / (float)RAND_MAX; if (f < 0.25) seq[i] = 'A'; else if (f < 0.50) seq[i] = 'C'; else if (f < 0.75) seq[i] = 'G'; else seq[i] = 'T'; } zoeSetXtree(xt, seq, (void*)1); } zoeDeleteXtree(xt); } } void loopAlignment (void) { int i, j; float f; char * seq; coor_t length = 2500; zoeDNA foo; zoeDNA bar; zoeHSP hsp; zoeE("Alignment\n"); bar = zoeNewDNA("bar", "GAATTC"); for (j = 0; j < Iterations; j++) { seq = zoeMalloc(length +1); for (i = 0; i < length; i++) { f = (float)rand() / (float)RAND_MAX; if (f < 0.25) seq[i] = 'A'; else if (f < 0.50) seq[i] = 'C'; else if (f < 0.75) seq[i] = 'G'; else seq[i] = 'T'; } seq[length] = '\0'; foo = zoeNewDNA("foo", seq); hsp = zoeAlign01(foo, bar, 1, 1, 1, 1); zoeDeleteHSP(hsp); zoeDeleteDNA(foo); zoeFree(seq); } zoeDeleteDNA(bar); } void loopPalign (void) { int i, j; zoeHSP hsp; zoeProtein p1, p2; zoeScoreSystem score; p1 = zoeNewProtein(">p1", "MRSKHVLYIAILFSSIFGGKGIQQNEEFQRYDGWYNNLANSEWGSAGSRL"); p2 = zoeNewProtein(">p2", "MGCIMSQEDEAAKRRSKKIDRLLKEDGENSMRTIKLLLLGAGESGKSTIL"); score = zoeNewScoreSystem("blosum62", 10, 2, 0); for (i = 0; i < Iterations; i++) { for (j = 0; j < 10; j++) { hsp = zoeProtAlignLocal(p1, p2, score); zoeDeleteHSP(hsp); } } } void loopFeatureTable (const char * file) { int i, j; zoeFeatureTable ft; zoeE("FeatureTable\n"); for (j = 0; j < Iterations; j++) { for (i = 0; i < 25; i++) { ft = zoeGetFeatureTable(file); zoeDeleteFeatureTable(ft); } } } void loopCDS (void) { int i, j; zoeCDS cds = NULL; zoeFeatureVec exons = NULL; zoeDNA dna = NULL; zoeFeature exon = NULL; zoeE("CDS\n"); for (i = 0; i < 100; i++) { dna = zoeNewDNA(">foo", "nnnnnATGATAGCGgtnnnnnnnnnnagATAGCGAATTAAnnnnnnnnnn"); exons = zoeNewFeatureVec(); exon = zoeNewFeature(Einit, 5, 13, '+', 100, 0, 0, 2, "gene"/*, NULL*/); zoePushFeatureVec(exons, exon); zoeDeleteFeature(exon); exon = zoeNewFeature(Eterm, 28, 39, '+', 100, 0, 0, 1, "gene"/*, NULL*/); zoePushFeatureVec(exons, exon); zoeDeleteFeature(exon); for (j = 0; j < Iterations; j++) { cds = NULL; cds = zoeNewCDS("foo", dna, exons); zoeDeleteCDS(cds); } zoeDeleteDNA(dna); zoeDeleteFeatureVec(exons); } } void loopDistribution (void) { int i, j; zoeDistribution d; float f[5] = {0, 1, 2, 3, 4}; zoeE("Distribution\n"); for (i = 0; i < 1750; i++) { for (j = 0; j < Iterations; j++) { d = zoeNewDistribution(DEFINED, 0, 5, 1, f); zoeDeleteDistribution(d); } } } void loopDuration (void) { int i, j; float f[5] = {0, 1, 2, 3, 4}; zoeDistribution D[2]; zoeDuration d = NULL; zoeE("Duration\n"); for (i = 0; i < 600; i++) { for (j = 0; j < Iterations; j++) { D[0] = zoeNewDistribution(DEFINED, 0, 5, 5, f); D[1] = zoeNewDistribution(CONSTANT, 6, -1, 1, f); d = zoeNewDuration(Exon, 2, D); zoeDeleteDuration(d); } } } void loopState (void) { int i, j; zoeState si, se, ss; zoeE("State\n"); for (i = 0; i < 1000; i++) { for (j = 0; j < Iterations; j++) { si = zoeNewState(INTERNAL, Intron, 0.5, 0.5, 0, 0, 1); se = zoeNewState(EXTERNAL, Exon, 0.0, 0.0, 0, 0, 1); ss = zoeNewState(SHUTTLE, Repeat, 0.0, 0.0, 0, 0, 1); zoeDeleteState(si); zoeDeleteState(se); zoeDeleteState(ss); } } } void loopTransition (void) { int i, j; zoeTransition t; zoeE("Transition\n"); for (i = 0; i < 750; i++) { for (j = 0; j < Iterations; j++) { t = zoeNewTransition("Exon", "Intron", 0.5); zoeDeleteTransition(t); } } } void loopModel (const char * file) { int i, j; zoeModel m = NULL; zoeE("Model\n"); for (i = 0; i < 35; i++) { for (j = 0; j < Iterations; j++) { m = zoeGetModel(file); zoeDeleteModel(m); } } } void loopScanner (const char * file) { int i, j; zoeScanner s = NULL; zoeModel m = zoeGetModel(file); zoeDNA d = zoeNewDNA("foo", "AAAAAAAAAACCCCCCCCCCGGGGGGGGGGTTTTTTTTTT"); zoeDNA a = zoeAntiDNA("bar", d); zoeE("Scanner\n"); for (i = 0; i < 350; i++) { for (j = 0; j < Iterations; j++) { s = zoeNewScanner(d, a, m); zoeSetScannerScore(s, 10, 10); zoeDeleteScanner(s); } } zoeDeleteModel(m); zoeDeleteDNA(d); zoeDeleteDNA(a); } void loopCounter (const char * file) { int i, j; zoeCounter c = NULL; zoeModel m = zoeGetModel(file); zoeDNA d = zoeNewDNA("foo", "AAAAAAAAAACCCCCCCCCCGGGGGGGGGGTTTTTTTTTT"); zoeDNA a = zoeAntiDNA("bar", d); zoeE("Counter\n"); for (i = 0; i < 350; i++) { for (j = 0; j < Iterations; j++) { c = zoeNewCounter(d, a, m); zoeDeleteCounter(c); } } zoeDeleteModel(m); zoeDeleteDNA(d); zoeDeleteDNA(a); } snap-2010-07-28/Zoe/zoeProtein.h0000644000175000017500000000160211424066010015767 0ustar moellermoeller/******************************************************************************\ zoeProtein.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_PROTEIN_H #define ZOE_PROTEIN_H #include #include #include "zoeFastaFile.h" #include "zoeTools.h" struct zoeProtein { coor_t length; char * def; char * seq; char * s22; /* 20 amino acids plus X and stop */ }; typedef struct zoeProtein * zoeProtein; int zoe_char2aa (const int); char zoe_aa2char (const int); void zoeDeleteProtein (zoeProtein); zoeProtein zoeNewProtein (const char *, const char *); zoeProtein zoeNewTrustedProtein (const char *, const char *); void zoeWriteProtein (FILE *, const zoeProtein); zoeProtein zoeGetProtein (const char *); #endif snap-2010-07-28/Zoe/zoeScanner.h0000644000175000017500000000262111424066010015742 0ustar moellermoeller/******************************************************************************\ zoeScanner.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_SCANNER_H #define ZOE_SCANNER_H #include #include #include #include #include "zoeDNA.h" #include "zoeFeature.h" #include "zoeMath.h" #include "zoeModel.h" #include "zoeTools.h" struct zoeScanner { coor_t min_pos; /* minimum scoring position */ coor_t max_pos; /* maximum scoring position */ zoeDNA dna; /* scanners require a seq */ zoeDNA anti; /* reverse-complement */ zoeModel model; /* scanners require a model */ struct zoeScanner ** subscanner; /* for higher order models */ char * sig; /* binary signature (SDT) */ score_t * uscore; /* user-defined score */ score_t * ascore; /* user-defined anti-parallel score */ score_t (* score) (struct zoeScanner *, coor_t); score_t (* scoref)(struct zoeScanner *, zoeFeature); }; typedef struct zoeScanner * zoeScanner; void zoeDeleteScanner (zoeScanner); zoeScanner zoeNewScanner (zoeDNA, zoeDNA, zoeModel); void zoeSetScannerScore (zoeScanner, coor_t, score_t); #endif snap-2010-07-28/Zoe/zoeState.c0000644000175000017500000000574211424066010015433 0ustar moellermoeller/******************************************************************************\ zoeState.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_STATE_C #define ZOE_STATE_C #include "zoeState.h" void zoeDeleteState (zoeState s) { if (s == NULL) return; zoeFree(s); s = NULL; } zoeState zoeNewState ( zoeStateType type, zoeLabel label, float i, float t, int min, int max, int geo) { zoeState s = zoeMalloc(sizeof(struct zoeState)); s->type = type; s->label = label; s->init = i; s->term = t; s->min = min; s->max = max; s->geometric = geo; return s; } zoeState zoeReadState (FILE * stream) { char state_name[16]; char duration[16]; float init, term; int min, max, geometric = 0; zoeStateType type; zoeLabel label; zoeState state = NULL; if (fscanf(stream, "%s %f %f %d %d %s", state_name, &init, &term, &min, &max, duration) != 6) { zoeWarn("zoeReadState header"); return NULL; } /* name */ label = zoeText2Label(state_name); if (label == None) { zoeWarn("zoeReadState name not allowed (%s)", state_name); return NULL; } /* assign state type */ switch (label) { case Inter: case Intron: case UTR5: case UTR3: type = INTERNAL; break; case Esngl: case Einit: case Eterm: case Exon: type = EXTERNAL; break; case TSS: case PolyA: case Prom: type = EXTERNAL; break; case Repeat: case CNS: case ORF: type = SHUTTLE; break; default: zoeWarn("zoeReadState no type binding for %s", state_name); return NULL; } /* assign geometric */ if (strcmp(duration, "geometric") == 0) { geometric = 1; if (min || max) zoeExit("geometric min/max must be == 0"); } else if (strcmp(duration, "explicit") == 0) { geometric = 0; if (min < 1) zoeExit("min state length < 1 makes no sense"); if (max == -1) max = INT_MAX; } else zoeExit("must be geometric or explicit in zoeReadState"); state = zoeNewState(type, label, init, term, min, max, geometric); return state; } void zoeWriteState (FILE * stream, const zoeState state) { char name[16]; zoeLabel2Text(state->label, name); zoeS(stream, "%s\t%f\t%f\t%d\n", name, state->init, state->term, state->min, state->max); } #endif snap-2010-07-28/Zoe/zoe.h0000644000175000017500000000144711424066010014435 0ustar moellermoeller/******************************************************************************\ zoe.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_H #define ZOE_H #include "zoeAlignment.h" #include "zoeCDS.h" #include "zoeCounter.h" #include "zoeDistribution.h" #include "zoeDNA.h" #include "zoeDuration.h" #include "zoeFastaFile.h" #include "zoeFeature.h" #include "zoeFeatureFactory.h" #include "zoeFeatureTable.h" #include "zoeIsochore.h" #include "zoeHMM.h" #include "zoeMath.h" #include "zoeModel.h" #include "zoePhasePref.h" #include "zoeProtein.h" #include "zoeScanner.h" #include "zoeState.h" #include "zoeTools.h" #include "zoeTransition.h" #include "zoeTrellis.h" #endif snap-2010-07-28/Zoe/zoeFeatureFactory.c0000644000175000017500000003342111424066010017271 0ustar moellermoeller/******************************************************************************\ zoeFeatureFactory.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_FEATUREFACTORY_C #define ZOE_FEATUREFACTORY_C #include "zoeFeatureFactory.h" static const int PADDING = 48; /* as in trellis, should make it extern */ /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ static zoeFeatureVec zoeMakeFeatures (const zoeFeatureFactory fac, coor_t pos) { score_t score; zoeFeature f; zoeFeatureVec vec; score = fac->scanner->score(fac->scanner, pos); if (score == MIN_SCORE) return NULL; f = zoeNewFeature(fac->type, pos, pos, '+', score, 0, 0, 0, NULL/*, NULL*/); vec = zoeNewFeatureVec(); zoePushFeatureVec(vec, f); zoeDeleteFeature(f); return vec; } static zoeFeatureVec zoeMakeRepeats (const zoeFeatureFactory fac, coor_t pos) { coor_t i, start, end; zoeFeature f; /* = zoeNewFeature(None, 0, 0, '+', 0, 0, 0, 0, NULL);*/ zoeFeatureVec fvec; /* = zoeNewFeatureVec(); */ /* does a repeat end here? */ if (fac->dna->s5[pos] == 4) { if (pos == fac->dna->length -1) { end = fac->dna->length -1; } else if (fac->dna->s5[pos +1] != 4) { end = pos; } else { return NULL; } } else { return NULL; } /* find repeat start */ i = pos; while (i > 0) { if (fac->dna->s5[i] == 4) i--; else break; } start = i; /* min length filtering */ if (end - start + 1 < fac->length) return NULL; /* make a repeat */ fvec = zoeNewFeatureVec(); f = zoeNewFeature(Repeat, start, end, '=', 0, 0, 0, 0, NULL/*, NULL*/); f->score = fac->scanner->scoref(fac->scanner, f); zoePushFeatureVec(fvec, f); zoeDeleteFeature(f); return fvec; } static zoeFeatureVec zoeMakeExons (const zoeFeatureFactory fac, coor_t pos) { int i, frame = -1, inc5, inc3, begin, end, length; zoeFeature exon = zoeNewFeature(None, 0, 0, '+', 0, 0, 0, 0, NULL/*, NULL*/); zoeFeature e = NULL; zoeFeatureVec vec = zoeNewFeatureVec(); /*int j;*/ /* invariant */ exon->group = NULL; exon->strand = '+'; /* Esngl */ if (fac->stop[pos] != MIN_SCORE) { frame = pos % 3; /* Esngl is in the same frame as the stop codon */ end = pos -3; begin = fac->fstop[end]; for (i = begin; i < end; i += 3) { if (fac->start[i] == MIN_SCORE) continue; exon->label = Esngl; exon->start = i; exon->end = pos -1; exon->score = fac->start[i] + fac->stop[pos]; exon->inc5 = 0; exon->inc3 = 0; exon->frame = frame; exon->group = NULL; zoePushFeatureVec(vec, exon); } } /* Eterm */ if (fac->stop[pos] != MIN_SCORE) { frame = pos % 3; /* Eterm frame is the same as stop */ end = pos -3; begin = fac->fstop[end]; for (i = begin; i < end; i++) { if (fac->acc[i] == MIN_SCORE) continue; exon->label = Eterm; exon->start = i + 1; exon->end = pos -1; exon->score = fac->acc[i] + fac->stop[pos]; exon->inc5 = (exon->end - exon->start + 1) % 3; exon->inc3 = 0; exon->frame = frame % 3; zoePushFeatureVec(vec, exon); } } /* Einit */ if (fac->don[pos] != MIN_SCORE) { for (inc3 = 0; inc3 < 3; inc3++) { frame = (pos - inc3) % 3; end = pos - 3; begin = fac->fstop[end -inc3]; /* for (i = begin; i < end; i += 3) { - old code */ /* for (i = begin; i <= end; i += 3) { - new code */ for (i = begin; i < end; i += 3) { if (fac->start[i] == MIN_SCORE) continue; exon->label = Einit; exon->start = i; exon->end = pos - 1; exon->score = fac->start[i] + fac->don[pos]; exon->inc5 = 0; exon->inc3 = inc3; exon->frame = frame; zoePushFeatureVec(vec, exon); } } } /* Exon (internal) */ if (fac->don[pos] != MIN_SCORE) { for (inc3 = 0; inc3 < 3; inc3++) { frame = (pos - inc3) % 3; end = pos -3; begin = fac->fstop[end -inc3]; for (i = begin; i < end; i ++) { if (fac->acc[i] == MIN_SCORE) continue; length = pos -1 - i; inc5 = (length - inc3) % 3; exon->label = Exon; exon->start = i + 1; exon->end = pos - 1; exon->score = fac->acc[i] + fac->don[pos]; exon->inc5 = inc5; exon->inc3 = inc3; exon->frame = frame; zoePushFeatureVec(vec, exon); } } } /* add coding score */ for (i = 0; i < vec->size; i++) { e = vec->elem[i]; /* convert exon frame to cds[frame] - I know, it looks weird, trust me... */ switch (e->frame) { case 0: frame = 2; break; case 1: frame = 1; break; case 2: frame = 0; break; default: zoeExit("zoeMakeExons impossible"); } /* HARD-CODED FEATURE: Since acceptor and donor overlap each exon by 3 bp (by my convention), these bases must not be scored by the coding model --------[===EXON===]-------- <---------- Acceptor overlaps by 3 ---------> Donor overlaps by 3 */ length = e->end - e->start + 1; if (length > 12) { e->score += fac->cds[frame][e->end -3] - fac->cds[frame][e->start +3]; /* changed +9 to +3 */ } } zoeDeleteFeature(exon); if (vec->size) { return vec; } else { zoeDeleteFeatureVec(vec); return NULL; } } static zoeFeatureVec zoeMakeOpenReadingFrames (const zoeFeatureFactory fac, coor_t pos) { zoeFeatureVec vec; zoeFeature orf; char key[16]; sprintf(key, "%d", pos); orf = zoeGetHash(fac->hash, key); if (orf == NULL) return NULL; vec = zoeNewFeatureVec(); zoePushFeatureVec(vec, orf); return vec; } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteFeatureFactory(zoeFeatureFactory f) { int i; if (f == NULL) return; if (f->orfs) { zoeDeleteFeatureVec(f->orfs); f->orfs = NULL; } if (f->hash) { zoeDeleteHash(f->hash); f->hash = NULL; } for (i = 0; i < 3; i++) { if (f->cds[i]) { zoeFree(f->cds[i]); f->cds[i] = NULL; } } if (f->start) {zoeFree(f->start); f->start = NULL;} if (f->stop) {zoeFree(f->stop); f->stop = NULL;} if (f->acc) {zoeFree(f->acc); f->acc = NULL;} if (f->don) {zoeFree(f->don); f->don = NULL;} if (f->fstop) {zoeFree(f->fstop); f->fstop = NULL;} zoeFree(f); f = NULL; } zoeFeatureFactory zoeNewEFactory ( zoeScanner cds_scan, zoeScanner accpt_scan, zoeScanner donor_scan, zoeScanner start_scan, zoeScanner stop_scan) { score_t * cds[3]; score_t * acc; score_t * don; score_t * start; score_t * stop; int f0, f1, f2; int * fstop; coor_t i; int frame; /* should be frame_t, but screw casting */ zoeDNA dna = cds_scan->dna; zoeFeatureFactory factory = zoeMalloc(sizeof(struct zoeFeatureFactory)); /* cds frame-specific scanners */ zoeScanner cscan[3]; cscan[0] = cds_scan->subscanner[0]; cscan[1] = cds_scan->subscanner[1]; cscan[2] = cds_scan->subscanner[2]; /* allocate storage for factory attributes */ cds[0] = zoeMalloc(dna->length * sizeof(score_t)); cds[1] = zoeMalloc(dna->length * sizeof(score_t)); cds[2] = zoeMalloc(dna->length * sizeof(score_t)); acc = zoeMalloc(dna->length * sizeof(score_t)); don = zoeMalloc(dna->length * sizeof(score_t)); start = zoeMalloc(dna->length * sizeof(score_t)); stop = zoeMalloc(dna->length * sizeof(score_t)); fstop = zoeMalloc(dna->length * sizeof(int)); /* compute feature positions -------------------------------------------- */ for (i = 0; i < dna->length; i++) { acc[i] = accpt_scan->score(accpt_scan, i); don[i] = donor_scan->score(donor_scan, i); start[i] = start_scan->score(start_scan, i); stop[i] = stop_scan->score(stop_scan, i); } /* compute CDS scores in 3 frames --------------------------------------- */ cds[0][0] = 0; cds[1][0] = 0; cds[2][0] = 0; for (i = 1; i < dna->length; i++) { f0 = (i - 1) % 3; f1 = (i + 0) % 3; f2 = (i + 1) % 3; cds[0][i] = cscan[f0]->score(cscan[f0], i); cds[1][i] = cscan[f1]->score(cscan[f1], i); cds[2][i] = cscan[f2]->score(cscan[f2], i); if (cds[0][i] == MIN_SCORE) cds[0][i] = 0; else cds[0][i] += cds[0][i-1]; if (cds[1][i] == MIN_SCORE) cds[1][i] = 0; else cds[1][i] += cds[1][i-1]; if (cds[2][i] == MIN_SCORE) cds[2][i] = 0; else cds[2][i] += cds[2][i-1]; } /* positions of stop codons in each frame ------------------------------ */ fstop[0] = 0; fstop[1] = 1; fstop[2] = 2; for (i = 3; i < dna->length; i++) { frame = i % 3; if (stop[i] != MIN_SCORE) { fstop[i] = i; } else { fstop[i] = fstop[i-3]; } } /* set factory attributes ----------------------------------------------- */ factory->create = zoeMakeExons; factory->type = Exon; factory->dna = dna; factory->cds[0] = cds[0]; factory->cds[1] = cds[1]; factory->cds[2] = cds[2]; factory->acc = acc; factory->don = don; factory->start = start; factory->stop = stop; factory->fstop = fstop; factory->offset = cscan[0]->model->focus; /* this stuff isn't used by an EFactory */ factory->length = 0; factory->score = 0; factory->scanner = NULL; factory->orfs = NULL; factory->hash = NULL; return factory; } zoeFeatureFactory zoeNewXFactory ( zoeScanner cds_scan, zoeScanner accpt_scan, zoeScanner donor_scan, zoeScanner start_scan, zoeScanner stop_scan, coor_t min_length, score_t min_score) { zoeFeatureFactory factory = zoeMalloc(sizeof(struct zoeFeatureFactory)); zoeFeatureFactory efac; zoeFeatureVec exons; zoeFeature exon, max_exon; score_t max_score; zoeScanner cs, as, ds, ms, ss; int i, j, length; char key[16]; factory->create = zoeMakeOpenReadingFrames; factory->type = ORF; factory->length = min_length; factory->score = min_score; /* not used by XFactory */ factory->scanner = NULL; factory->strand = UNDEFINED_STRAND; factory->cds[0] = NULL; factory->cds[1] = NULL; factory->cds[2] = NULL; factory->acc = NULL; factory->don = NULL; factory->start = NULL; factory->stop = NULL; factory->fstop = NULL; cs = zoeNewScanner(cds_scan->anti, cds_scan->dna, cds_scan->model); as = zoeNewScanner(cds_scan->anti, cds_scan->dna, accpt_scan->model); ds = zoeNewScanner(cds_scan->anti, cds_scan->dna, donor_scan->model); ms = zoeNewScanner(cds_scan->anti, cds_scan->dna, start_scan->model); ss = zoeNewScanner(cds_scan->anti, cds_scan->dna, stop_scan->model); efac = zoeNewEFactory(cs, as, ds, ms, ss); /* XFactory precomputes all ORFs */ factory->orfs = zoeNewFeatureVec(); for (i = PADDING; i < cds_scan->dna->length -PADDING; i++) { exons = efac->create(efac, i); if (exons == NULL) continue; /* find maximum-scoring exon at each position */ max_score = MIN_SCORE; max_exon = NULL; for (j = 0; j < exons->size; j++) { exon = exons->elem[j]; if (exon->score < min_score) continue; length = exon->end - exon->start + 1; if (length < min_length) continue; if (exon->score > max_score) { max_score = exon->score; max_exon = exon; } } if (max_score != MIN_SCORE) { max_exon->label = ORF; zoeAntiFeature(max_exon, cds_scan->dna->length); zoePushFeatureVec(factory->orfs, max_exon); } zoeDeleteFeatureVec(exons); } /* create a lookup */ factory->hash = zoeNewHash(); for (i = 0; i < factory->orfs->size; i++) { exon = factory->orfs->elem[i]; sprintf(key, "%d", exon->end); zoeSetHash(factory->hash, key, exon); } zoeDeleteScanner(cs); zoeDeleteScanner(as); zoeDeleteScanner(ds); zoeDeleteScanner(ms); zoeDeleteScanner(ss); zoeDeleteFeatureFactory(efac); return factory; } zoeFeatureFactory zoeNewSFactory( zoeScanner scanner, zoeLabel type) { zoeFeatureFactory factory = zoeMalloc(sizeof(struct zoeFeatureFactory)); factory->create = zoeMakeFeatures; factory->type = type; factory->dna = scanner->dna; factory->scanner = scanner; /* not used by SFactory */ factory->length = 0; factory->score = 0; factory->orfs = NULL; factory->hash = NULL; factory->cds[0] = NULL; factory->cds[1] = NULL; factory->cds[2] = NULL; factory->acc = NULL; factory->don = NULL; factory->start = NULL; factory->stop = NULL; factory->fstop = NULL; return factory; } zoeFeatureFactory zoeNewRFactory( zoeScanner scanner, coor_t length) { zoeFeatureFactory factory = zoeMalloc(sizeof(struct zoeFeatureFactory)); factory->create = zoeMakeRepeats; factory->type = Repeat; factory->dna = scanner->dna; factory->length = length; factory->scanner = scanner; /* not used by RFactory */ factory->score = 0; factory->orfs = NULL; factory->hash = NULL; factory->cds[0] = NULL; factory->cds[1] = NULL; factory->cds[2] = NULL; factory->acc = NULL; factory->don = NULL; factory->start = NULL; factory->stop = NULL; factory->fstop = NULL; return factory; } #endif snap-2010-07-28/Zoe/zoeIsochore.h0000644000175000017500000000143111424066010016122 0ustar moellermoeller/******************************************************************************\ zoeIsochore.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_ISOCHORE_H #define ZOE_ISOCHORE_H #include #include #include #include "zoeHMM.h" #include "zoeTools.h" struct zoeIsochore { int count; zoeFVec min_GC; zoeFVec max_GC; zoeTVec hmm_file; zoeVec hmms; }; typedef struct zoeIsochore * zoeIsochore; void zoeDeleteIsochore (zoeIsochore); zoeIsochore zoeNewIsochore (void); zoeIsochore zoeReadIsochore (FILE *); zoeIsochore zoeGetIsochore (const char *); zoeHMM zoeSelectIsochore (const zoeIsochore, float); #endif snap-2010-07-28/Zoe/zoeTools.h0000644000175000017500000000757311424066010015464 0ustar moellermoeller/******************************************************************************\ zoeTools.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf \******************************************************************************/ #ifndef ZOE_TOOLS_H #define ZOE_TOOLS_H #include #include #include #include #include #include #include #include #include #include const char * zoeFunction; const char * zoeConstructor; const char * zoeMethod; void zoeLibInfo (void); void zoeSetProgramName (const char*); char * zoeGetProgramName (void); void zoeSetOption(const char *, int); void zoeParseOptions (int *, char **); char * zoeOption (const char *); typedef int coor_t; /* coordinates */ typedef char frame_t; /* reading frame, inc5, inc3 */ typedef float score_t; /* scores */ typedef char strand_t; /* strand */ extern const coor_t UNDEFINED_COOR; extern const frame_t UNDEFINED_FRAME; extern const score_t MIN_SCORE; extern const score_t MAX_SCORE; extern const strand_t UNDEFINED_STRAND; void zoeCoor2Text (coor_t, char *); coor_t zoeText2Coor (const char *); void zoeFrame2Text (frame_t, char *); frame_t zoeText2Frame (const char *); void zoeScore2Text (score_t, char *); score_t zoeText2Score (const char *); void zoeStrand2Text (strand_t, char *); strand_t zoeText2Strand (const char *); void zoeS (FILE *, const char *, ...); void zoeO (const char *, ...); void zoeE (const char *, ...); void zoeOs (int, ...); void zoeEs (int, ...); void zoeM (FILE *, int, ...); void zoeWarn (const char *, ...); void zoeExit (const char *, ...); void * zoeMalloc (size_t); void * zoeCalloc (size_t, size_t); void * zoeRealloc (void *, size_t); void zoeFree (void *); int zoeIcmp(const void *, const void *); int zoeFcmp(const void *, const void *); int zoeTcmp(const void *, const void *); struct zoeIVec { int * elem; int size; int limit; int last; }; typedef struct zoeIVec * zoeIVec; void zoeDeleteIVec (zoeIVec); zoeIVec zoeNewIVec (void); void zoePushIVec (zoeIVec, int); struct zoeFVec { float * elem; int size; int limit; float last; }; typedef struct zoeFVec * zoeFVec; void zoeDeleteFVec (zoeFVec); zoeFVec zoeNewFVec (void); void zoePushFVec (zoeFVec, float); struct zoeTVec { char ** elem; int size; int limit; char * last; }; typedef struct zoeTVec * zoeTVec; void zoeDeleteTVec (zoeTVec); zoeTVec zoeNewTVec (void); void zoePushTVec (zoeTVec, const char *); struct zoeVec { void ** elem; int size; int limit; void * last; }; typedef struct zoeVec * zoeVec; void zoeDeleteVec (zoeVec); zoeVec zoeNewVec (void); void zoePushVec (zoeVec, void *); struct zoeHash { int level; int slots; zoeTVec keys; zoeVec vals; zoeVec * key; zoeVec * val; }; typedef struct zoeHash * zoeHash; void zoeDeleteHash (zoeHash); zoeHash zoeNewHash (void); void zoeSetHash (zoeHash, const char *, void *); void * zoeGetHash (const zoeHash, const char *); zoeTVec zoeKeysOfHash (const zoeHash); zoeVec zoeValsOfHash (const zoeHash); void zoeStatHash (const zoeHash); struct zoeXnode { zoeVec children; void * data; char c; }; typedef struct zoeXnode * zoeXnode; void zoeDeleteXnode (zoeXnode); zoeXnode zoeNewXnode (char); zoeXnode zoeSearchXnode (const zoeXnode, char); struct zoeXtree { zoeXnode head[256]; zoeVec alloc; }; typedef struct zoeXtree * zoeXtree; void zoeDeleteXtree (zoeXtree); zoeXtree zoeNewXtree (void); void * zoeGetXtree (const zoeXtree, const char *); void zoeSetXtree (zoeXtree, const char *, void *); void zoeXtreeInfo (const zoeXtree); struct zoeFile { int type; FILE * stream; char name[1024]; }; typedef struct zoeFile zoeFile; void zoeCloseFile (zoeFile); zoeFile zoeOpenFile (const char *); #endif snap-2010-07-28/Zoe/zoeState.h0000644000175000017500000000214411424066010015431 0ustar moellermoeller/******************************************************************************\ zoeState.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_STATE_H #define ZOE_STATE_H #include #include #include #include "zoeFeature.h" #include "zoeTools.h" typedef enum { INTERNAL, EXTERNAL, SHUTTLE } zoeStateType; struct zoeState { zoeStateType type; /* enumerated above */ zoeLabel label; /* typical state label */ float init; /* initial probability of state */ float term; /* terminal probability of state */ int min; /* minimum length */ int max; /* maximum length, -1 is unlimited */ int geometric; /* true/false for geometric length */ }; typedef struct zoeState * zoeState; void zoeDeleteState (zoeState); zoeState zoeNewState (zoeStateType, zoeLabel, float, float, int, int, int); zoeState zoeReadState (FILE *); void zoeWriteState (FILE *, const zoeState); #endif snap-2010-07-28/Zoe/zoeModel.c0000644000175000017500000004024011424066010015403 0ustar moellermoeller/******************************************************************************\ zoeModel.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_MODEL_C #define ZOE_MODEL_C #include "zoeModel.h" /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ zoeModel zoe_ReadModel (FILE * stream, int header_only, score_t pseudocount) { char type[16]; char name[16]; char data[16]; float score; int length, focus, symbols, submodels, mem, i; zoeModel model = NULL; /* parse the model header */ if (fscanf(stream, "%s %s %d %d %d %d %f", name, type, &length, &focus, &symbols, &submodels, &score) != 7) { zoeWarn("zoeReadModel header failed"); return NULL; } /* set model attributes */ model = zoeNewModel(); model->length = length; model->focus = focus; model->symbols = symbols; model->submodels = submodels; model->score = score; model->name = zoeMalloc(strlen(name) + 1); (void)strcpy(model->name, name); if (strcmp(type, "WMM") == 0) model->type = WMM; else if (strcmp(type, "LUT") == 0) model->type = LUT; else if (strcmp(type, "SAM") == 0) model->type = SAM; else if (strcmp(type, "SDT") == 0) model->type = SDT; else if (strcmp(type, "CDS") == 0) model->type = CDS; else if (strcmp(type, "MIX") == 0) model->type = MIX; else if (strcmp(type, "TRM") == 0) model->type = TRM; else { zoeWarn("zoeReadModel sequence model unknown (%s)", type); zoeDeleteModel(model); return NULL; } /* parse the model body */ if (model->type == WMM) { mem = length * symbols; model->data = zoeMalloc(mem * sizeof(score_t)); if (header_only) { for (i = 0; i < mem; i++) { model->data[i] = pseudocount; } } else { for (i = 0; i < mem; i++) { if (fscanf(stream, "%s", data) != 1) { zoeWarn("zoeReadModel wmm fscanf error"); zoeDeleteModel(model); return NULL; } model->data[i] = zoeText2Score(data); } } } else if (model->type == LUT) { mem = zoePOWER[model->symbols][model->length]; model->data = zoeMalloc(mem * sizeof(score_t)); if (header_only) { for (i = 0; i < mem; i++) { model->data[i] = pseudocount; } } else { for (i = 0; i < mem; i++) { if (fscanf(stream, "%s", data) != 1) { zoeWarn("zoeReadModel lut fscanf error"); zoeDeleteModel(model); return NULL; } model->data[i] = zoeText2Score(data); } } } else if (model->type == TRM) { model->submodel = NULL; model->data = NULL; } else { model->submodel = zoeMalloc(sizeof(struct zoeModel) * model->submodels); model->data = NULL; for (i = 0; i < model->submodels; i++) { if ((model->submodel[i] = zoe_ReadModel(stream, header_only, pseudocount)) == NULL) { zoeWarn("zoeReadModel submodel"); zoeDeleteModel(model); return 0; } } } model->max_left = zoeModelLengthLeft(model); model->max_right = zoeModelLengthRight(model); return model; } static void zoe_WriteModel(FILE * stream, const zoeModel model, int indent, int header) { char typestring[16]; char data[16]; int i, j, p; switch (model->type) { case WMM: strcpy(typestring, "WMM"); break; case LUT: strcpy(typestring, "LUT"); break; case SAM: strcpy(typestring, "SAM"); break; case SDT: strcpy(typestring, "SDT"); break; case CDS: strcpy(typestring, "CDS"); break; case MIX: strcpy(typestring, "MIX"); break; case TRM: strcpy(typestring, "TRM"); break; default: strcpy(typestring, "???"); break; } /* print header */ for (i = 0; i < indent; i++) (void)fputc('\t', stream); zoeS(stream, "%s %s %d %d %d %d", model->name, typestring, model->length, model->focus, model->symbols, model->submodels); zoeScore2Text(model->score, data); zoeS(stream, " %s\n", data); /* print body */ if (model->type == WMM) { if (header) return; for (i = 0; i < model->length; i++) { for (j = 0; j <= indent; j++) (void)fputc('\t', stream); /* padding */ for (j = 0; j < model->symbols; j++) { zoeScore2Text(model->data[ (i * model->symbols) + j], data); zoeS(stream, "%s\t", data); } zoeS(stream, "\n"); } } else if (model->type == LUT) { if (header) return; p = zoePOWER[model->symbols][model->length]; for (i = 0; i < p; i++) { if (i % model->symbols == 0) { /* padding */ for (j = 0; j <= indent; j++) (void)fputc('\t', stream); } zoeScore2Text(model->data[i], data); zoeS(stream, "%s\t", data); if ( (i+1) % model->symbols == 0) zoeS(stream, "\n"); } } else if (model->type == TRM) { /* no body to model */ } else { for (i = 0; i < model->submodels; i++) { (void)zoe_WriteModel(stream, model->submodel[i], indent +1, header); } } } static zoeModel zoe_StringToModel (const char * text, float pseudo) { FILE * file; zoeModel model; file = tmpfile(); if (file == NULL) zoeExit("tmpfile failed"); zoeS(file, "%s\n", text); rewind(file); model = zoeReadModelHeader(file, pseudo); fclose(file); return model; } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteModel (zoeModel model) { int i; if (model == NULL) return; for (i = 0; i < model->submodels; i++) { zoeDeleteModel(model->submodel[i]); model->submodel[i] = NULL; } if (model->submodel) { zoeFree(model->submodel); model->submodel = NULL; } if (model->name) { zoeFree(model->name); model->name = NULL; } if (model->data) { zoeFree(model->data); model->data = NULL; } zoeFree(model); model = NULL; } zoeModel zoeNewModel (void) { zoeModel model = zoeMalloc(sizeof(struct zoeModel)); model->type = UNDEFINED_MODEL; model->name = NULL; model->length = UNDEFINED_COOR; model->focus = UNDEFINED_COOR; model->symbols = 0; model->submodels = 0; model->submodel = NULL; model->score = MIN_SCORE; model->data = NULL; return model; } zoeModel zoeReadModel (FILE * stream) { return zoe_ReadModel(stream, 0, 0); } zoeModel zoeReadModelHeader (FILE * stream, score_t pseudocount) { return zoe_ReadModel(stream, 1, pseudocount); } void zoeWriteModel (FILE * stream, const zoeModel model) { zoe_WriteModel(stream, model, 0, 0); /* indent 0, header + body */ } void zoeWriteModelHeader (FILE * stream, const zoeModel model) { zoe_WriteModel(stream, model, 0, 1); /* indent 0, header true */ } void zoeAmbiguateModel (zoeModel model, score_t score) { int i, j, index; size_t mem; score_t * d5; char string[50]; if (model->symbols == 0 && model->type == TRM) return; /* OK */ if (model->symbols != 4) zoeExit("zoeAmbiguate error (%d!=4)", model->symbols); model->symbols = 5; if (model->type == WMM) { mem = model->length * 5 * sizeof(score_t); d5 = zoeMalloc(mem); for (i = 0; i < model->length * 5; i++) d5[i] = score; for (i = 0; i < model->length; i++) { /* record the 4-symbol scores in the 5-symbol array */ for (j = 0; j < 4; j++) { d5[(i * 5) + j] = model->data[(i * 4) + j]; } } zoeFree(model->data); model->data = d5; } else if (model->type == LUT) { mem = zoePOWER[5][model->length] * sizeof(score_t); d5 = zoeMalloc(mem); /* set all values to score to begin */ for (i = 0; i < zoePOWER[5][model->length]; i++) d5[i] = score; /* convert all 4-symbol values into the 5-symbol array */ for (i = 0; i < zoePOWER[4][model->length]; i++) { zoeDecToBase(i, 4, string); /* convert to base4 string */ index = zoeBaseToDec(5, string); /* convert to base5 string */ d5[index] = model->data[i]; } zoeFree(model->data); model->data = d5; } else { for (i = 0; i < model->submodels; i++) { zoeAmbiguateModel(model->submodel[i], score); } } } void zoeDeambiguateModel (zoeModel model) { int i, j, index; size_t mem; score_t * d4; char string[50]; int containsN; if (model->symbols == 0 && model->type == TRM) return; /* OK */ if (model->symbols != 5) { zoeExit("zoeDeambiguateModel requires 5-symbol models"); } model->symbols = 4; if (model->type == WMM) { mem = model->length * 4 * sizeof(score_t); d4 = zoeMalloc(mem); for (i = 0; i < model->length; i++) { for (j = 0; j < 4; j++) { d4[(i * 4) + j] = model->data[(i * 5) + j]; } } zoeFree(model->data); model->data = d4; } else if (model->type == LUT) { mem = zoePOWER[4][model->length] * sizeof(score_t); d4 = zoeMalloc(mem); /* convert all 5-symbol values into the 4-symbol array */ for (i = 0; i < zoePOWER[5][model->length]; i++) { zoeDecToBase(i, 5, string); /* base5 string */ containsN = 0; for (j = 0; j < strlen(string); j++) { if (string[j] == '4') { containsN = 1; break; } } if (containsN) continue; /* skip N's */ index = zoeBaseToDec(4, string); d4[index] = model->data[i]; } zoeFree(model->data); model->data = d4; } else { for (i = 0; i < model->submodels; i++) { zoeDeambiguateModel(model->submodel[i]); } } } zoeModel zoeGetModel (const char * file) { FILE * stream = NULL; zoeModel model = NULL; if ((stream = fopen(file, "r")) == NULL) zoeExit("zoeGetModel failed to open %s", file); if ((model = zoeReadModel(stream)) == NULL) zoeExit("zoeGetModel failed to parse %s", file); (void)fclose(stream); return model; } zoeModel zoeGetModelHeader (const char * file, score_t pseudocounts) { FILE * stream = NULL; zoeModel model = NULL; if ((stream = fopen(file, "r")) == NULL) zoeExit("zoeGetModel failed to open %s", file); if ((model = zoeReadModelHeader(stream, pseudocounts)) == NULL) zoeExit("zoeGetModel failed to parse %s", file); (void)fclose(stream); return model; } coor_t zoeModelLengthLeft (const zoeModel model) { coor_t length, max = 0; int i; length = model->focus; if (length > max) max = length; if (model->submodels) { for (i = 0; i < model->submodels; i++) { length = zoeModelLengthLeft(model->submodel[i]); if (length > max) max = length; } } return max; } coor_t zoeModelLengthRight (const zoeModel model) { coor_t length, max = 0; int i; length = model->length - model->focus -1; if (length > max) max = length; if (model->submodels) { for (i = 0; i < model->submodels; i++) { length = zoeModelLengthRight(model->submodel[i]); if (length > max) max = length; } } return max; } zoeModel zoeNewCodingModel (int order, float pseudo) { char text[256]; int bytes = 0; if (order < 2) zoeExit("coding order must be >= 2"); bytes += sprintf(text, "Coding CDS 3 2 4 3 0\n"); bytes += sprintf(text+bytes, "\tframe0 LUT %d %d 4 0 0\n", order +1, order); bytes += sprintf(text+bytes, "\tframe1 LUT %d %d 4 0 0\n", order +1, order); bytes += sprintf(text+bytes, "\tframe2 LUT %d %d 4 0 0\n", order +1, order); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewIntronModel (int order, float pseudo) { char text[64]; sprintf(text, "Intron LUT %d %d 4 0 0\n", order +1, order); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewInterModel (int order, float pseudo) { char text[64]; sprintf(text, "Inter LUT %d %d 4 0 0\n", order +1, order); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewAcceptorModel (int order, int length, float pseudo) { char text[8192]; int bytes = 0; int i; bytes += sprintf(text, "Acceptor SDT 2 1 4 2 0\n"); if (order == 0) { bytes += sprintf(text+bytes, "\tAG WMM %d %d 4 0 0\n", length, length -4); } else { bytes += sprintf(text+bytes, "\tAG SAM %d %d 4 %d 0\n", length, length -4, length); for (i = 0; i < length; i++) { if (length -i == 5) bytes += sprintf(text+bytes, "\t\tA LUT %d %d 4 0 0\n", order +1, order); else if (length -i == 4) bytes += sprintf(text+bytes, "\t\tG LUT %d %d 4 0 0\n", order +1, order); else if (length -i > 3) bytes += sprintf(text+bytes, "\t\tI-%d LUT %d %d 4 0 0\n", length -i -3, order +1, order); else bytes += sprintf(text+bytes, "\t\tE+%d LUT %d %d 4 0 0\n", i -length +4, order +1, order); } } bytes += sprintf(text+bytes, "\tNN TRM 0 0 0 0 0\n"); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewDonorModel (int order, int length, float pseudo) { char text[8192]; int bytes = 0; int i; bytes += sprintf(text, "Donor SDT 2 0 4 2 0\n"); if (order == 0) { bytes += sprintf(text+bytes, "\tGT WMM %d 3 4 0 0\n", length); } else { bytes += sprintf(text+bytes, "\tGT SAM %d 3 4 %d 0\n", length, length); for (i = 0; i < length; i++) { if (i == 3) bytes += sprintf(text+bytes, "\t\tG LUT %d %d 4 0 0\n", order +1, order); else if (i == 4) bytes += sprintf(text+bytes, "\t\tT LUT %d %d 4 0 0\n", order +1, order); else if (i < 3) bytes += sprintf(text+bytes, "\t\tE-%d LUT %d %d 4 0 0\n", 3 -i, order +1, order); else bytes += sprintf(text+bytes, "\t\tI+%d LUT %d %d 4 0 0\n", i -4, order +1, order); } } bytes += sprintf(text+bytes, "\tNN TRM 0 0 0 0 0\n"); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewStartModel (int order, int length, float pseudo) { char text[8192]; int bytes = 0; int i; bytes += sprintf(text+bytes, "Start SDT 3 0 4 2 0\n"); if (order == 0) { bytes += sprintf(text+bytes, "\tATG WMM %d %d 4 0 0\n", length, length -6); } else { bytes += sprintf(text+bytes, "\tATG SAM %d %d 4 %d 0\n", length, length -6, length); for (i = 0; i < length; i++) { if (length -i == 6) bytes += sprintf(text+bytes, "\t\tA LUT %d %d 4 0 0\n", order +1, order); else if (length -i == 5) bytes += sprintf(text+bytes, "\t\tT LUT %d %d 4 0 0\n", order +1, order); else if (length -i == 4) bytes += sprintf(text+bytes, "\t\tG LUT %d %d 4 0 0\n", order +1, order); else if (length -i > 3) bytes += sprintf(text+bytes, "\t\tN-%d LUT %d %d 4 0 0\n", length -i -6, order +1, order); else bytes += sprintf(text+bytes, "\t\tE+%d LUT %d %d 4 0 0\n", i -length +4, order +1, order); } } bytes += sprintf(text+bytes, "\tNNN TRM 0 0 0 0 0\n"); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewStopModel (int length, float pseudo) { char text[8192]; int bytes = 0; bytes += sprintf(text, "Stop SDT 3 0 4 4 0\n"); bytes += sprintf(text+bytes, "\tTAA WMM %d 6 4 0 0\n", length); bytes += sprintf(text+bytes, "\tTAG WMM %d 6 4 0 0\n", length); bytes += sprintf(text+bytes, "\tTGA WMM %d 6 4 0 0\n", length); bytes += sprintf(text+bytes, "\tNNN TRM 0 0 0 0 0\n"); /* bytes += sprintf(text, "Stop SDT 3 0 4 2 0\n"); bytes += sprintf(text+bytes, "\tTRR SDT 3 0 4 2 0\n"); bytes += sprintf(text+bytes, "\t\tTGG WMM 1 0 4 0 0\n"); bytes += sprintf(text+bytes, "\t\tNNN WMM %d 3 4 0 0\n", length); bytes += sprintf(text+bytes, "\tNNN TRM 1 0 4 0 0\n"); */ return zoe_StringToModel(text, pseudo); } zoeModel zoeNewUTR5Model (int order, float pseudo) { char text[8192]; sprintf(text, "UTR5 LUT %d %d 4 0 0\n", order +1, order); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewUTR3Model (int order, float pseudo) { char text[8192]; sprintf(text, "UTR3 LUT %d %d 4 0 0\n", order +1, order); return zoe_StringToModel(text, pseudo); } zoeModel zoeNewPolyAModel (int order, int length, float pseudo) { char text[8192]; int bytes = 0; int i; if (order == 0) { bytes += sprintf(text, "PolyA WMM %d 0 4 0 0\n", length); } else { bytes += sprintf(text, "PolyA SAM %d 0 4 %d 0\n", length, length); for (i = 0; i < length; i++) { bytes += sprintf(text+bytes, "\t\t%d LUT %d %d 4 0 0\n", i, order +1, order); } } return zoe_StringToModel(text, pseudo); } #endif snap-2010-07-28/Zoe/zoeFeature.c0000644000175000017500000003634111424066010015745 0ustar moellermoeller/******************************************************************************\ zoeFeature.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_FEATURE_C #define ZOE_FEATURE_C #include "zoeFeature.h" void zoeDeleteFeature (zoeFeature f) { if (f == NULL) return; if (f->group) { zoeFree(f->group); f->group = NULL; } /* if (f->subfeatures) { zoeDeleteFeatureVec(f->subfeatures); f->subfeatures = NULL; } */ zoeFree(f); f = NULL; } zoeFeature zoeNewFeature ( zoeLabel label, coor_t start, coor_t end, strand_t strand, score_t score, frame_t inc5, frame_t inc3, frame_t frame, const char * group) { zoeFeature f = zoeMalloc(sizeof(struct zoeFeature)); f->label = label; f->start = start; f->end = end; f->strand = strand; f->score = score; f->inc5 = inc5; f->inc3 = inc3; f->frame = frame; if (group) { f->group = zoeMalloc(strlen(group) +1); strcpy(f->group, group); } else { f->group = NULL; } if (!zoeVerifyFeature(f)) { zoeWriteFeature(stderr, f); zoeExit("zoeNewFeature illegal feature"); return NULL; } return f; } zoeFeature zoeNewTriteFeature (zoeLabel label, coor_t start, coor_t end, const char * group) { if (start <= end) { return zoeNewFeature(label, start, end, '+', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, group/*, NULL*/); } else { return zoeNewFeature(label, end, start, '-', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, group/*, NULL*/); } } zoeFeature zoeReadFeature (FILE * stream) { char line[256], Label[64], Start[64], End[64], Strand[64], Score[64], Loh[64], Roh[64], Frame[64], Group[64]; char * group = NULL; int short_form; coor_t tmp; zoeLabel label; coor_t start, end; strand_t strand; score_t score; frame_t inc5, inc3, frame; if (fgets(line, sizeof(line), stream) == NULL) return NULL; if (sscanf(line, "%s %s %s %s %s %s %s %s %s", /* group */ Label, Start, End, Strand, Score, Loh, Roh, Frame, Group) == 9) { short_form = 0; group = Group; } else if (sscanf(line, "%s %s %s %s %s %s %s %s", /* no group */ Label, Start, End, Strand, Score, Loh, Roh, Frame) == 8) { short_form = 0; group = NULL; } else if (sscanf(line, "%s %s %s %s", /* short form w/ group */ Label, Start, End, Group) == 4) { short_form = 1; group = Group; } else if (sscanf(line, "%s %s %s", /* short form w/o group */ Label, Start, End) == 3) { short_form = 1; group = NULL; } else { zoeWarn("zoeReadFeature format not valid"); return NULL; } label = zoeText2Label(Label); if (label == None) { zoeWarn("zoeReadFeature: the following line gave me trouble"); zoeE("%s", line); } if (short_form) { start = zoeText2Coor(Start); end = zoeText2Coor(End); if (start < end) { strand = '+'; } else if (start > end) { strand = '-'; tmp = start; start = end; end = tmp; } else { strand = '='; } score = MIN_SCORE; inc5 = UNDEFINED_FRAME; inc3 = UNDEFINED_FRAME; frame = UNDEFINED_FRAME; } else { start = zoeText2Coor(Start); end = zoeText2Coor(End); strand = zoeText2Strand(Strand); score = zoeText2Score(Score); inc5 = zoeText2Frame(Loh); inc3 = zoeText2Frame(Roh); frame = zoeText2Frame(Frame); } /* subtract 1 from start and end, zoe uses 0-based coordinates internally */ start--; end--; return zoeNewFeature(label, start, end, strand, score, inc5, inc3, frame, group); } zoeFeature zoeReadGFF (FILE * stream) { char line[1024], Source[64], ID[64], Label[64], Start[16], End[16], Strand[8], Score[32], Frame[8], Group[512]; char * group = NULL; zoeLabel label; coor_t start, end; strand_t strand; score_t score; frame_t inc5, inc3, frame; if (fgets(line, sizeof(line), stream) == NULL) return NULL; if (sscanf(line, "%s %s %s %s %s %s %s %s %s", /* group */ Source, ID, Label, Start, End, Score, Strand, Frame, Group) == 9) { group = Group; } else if (sscanf(line, "%s %s %s %s %s %s %s %s", /* no group */ Source, ID, Label, Start, End, Score, Strand, Frame) == 8) { group = NULL; } else { zoeWarn("zoeReadGFF format not valid"); return NULL; } label = zoeText2Label(Label); start = zoeText2Coor(Start); end = zoeText2Coor(End); strand = zoeText2Strand(Strand); score = zoeText2Score(Score); inc5 = zoeText2Frame(Frame); /* inc5 == gff frame-phase */ inc3 = UNDEFINED_FRAME; frame = UNDEFINED_FRAME; /* subtract 1 from start and end, zoe uses 0-based coordinates internally */ start--; end--; return zoeNewFeature(label, start, end, strand, score, inc5, inc3, frame, Group/*, NULL*/); } void zoeWriteFeature (FILE * stream, const zoeFeature f) { char label[16], start[16], end[16], strand[8], score[32], left[8], right[8], frame[8]; zoeLabel2Text(f->label, label); zoeCoor2Text(f->start +1, start); /* note: must add 1 to start and end because */ zoeCoor2Text(f->end +1, end); /* people use 1-based coordinates */ zoeStrand2Text(f->strand, strand); zoeScore2Text(f->score, score); zoeFrame2Text(f->inc5, left); zoeFrame2Text(f->inc3, right); zoeFrame2Text(f->frame, frame); zoeS(stream, "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s", label, start, end, strand, score, left, right, frame); if (f->group == NULL) zoeS(stream, "\n"); else zoeS(stream, "\t%s\n", f->group); } void zoeWriteDebugFeature (FILE * stream, const zoeFeature f) { char label[16], start[16], end[16], strand[8], score[32], left[8], right[8], frame[8]; zoeLabel2Text(f->label, label); zoeCoor2Text(f->start +1 -48, start); zoeCoor2Text(f->end +1 -48, end); zoeStrand2Text(f->strand, strand); zoeScore2Text(f->score, score); zoeFrame2Text(f->inc5, left); zoeFrame2Text(f->inc3, right); zoeFrame2Text(f->frame, frame); zoeS(stream, "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s", label, start, end, strand, score, left, right, frame); if (f->group == NULL) zoeS(stream, "\n"); else zoeS(stream, "\t%s\n", f->group); } void zoeWriteTriteFeature (FILE * stream, const zoeFeature f) { char label[16], start[16], end[16]; zoeLabel2Text(f->label, label); zoeCoor2Text(f->start +1, start); /* note: must add 1 to start and end because */ zoeCoor2Text(f->end +1, end); /* people use 1-based coordinates */ if (f->strand == '-') zoeS(stream, "%s\t%s\t%s", label, end, start); else zoeS(stream, "%s\t%s\t%s", label, start, end); if (f->group == NULL) zoeS(stream, "\n"); else zoeS(stream, "\t%s\n", f->group); } void zoeWriteGFF (FILE *stream, const zoeFeature f, const char * id, const char * source) { char label[16], start[16], end[16], strand[8], score[32]; zoeLabel2Text(f->label, label); zoeCoor2Text(f->start +1, start); /* note: must add 1 to start and end because */ zoeCoor2Text(f->end +1, end); /* people use 1-based coordinates */ zoeStrand2Text(f->strand, strand); zoeScore2Text(f->score, score); zoeS(stream, "%s\t%s\t%s\t%s\t%s\t%s\t%s\t.", /* frame undefined */ source, id, label, start, end, score, strand); if (f->group == NULL) zoeS(stream, "\n"); else zoeS(stream, "\t%s\n", f->group); } int zoeVerifyFeature (const zoeFeature f) { int retval = 1; if (f->start < 0 || f->end < 0) { zoeWarn("zoeVerifyFeature: coordinate not positive", f->start); retval = 0; } if (f->start > f->end) { zoeWarn("zoeVerifyFeature: start > end"); retval = 0; } if (f->start == UNDEFINED_COOR || f->end == UNDEFINED_COOR) { zoeWarn("zoeVerifyFeature: undefined coordinates"); retval = 0; } if (f->strand != '-' && f->strand != '+' && f->strand != '=') { zoeWarn("zoeVerifyFeature: strand must be {+, -, =} (%c)", f->strand); retval = 0; } if (f->inc5 != UNDEFINED_FRAME && (f->inc5 < 0 || f->inc5 > 2)) { zoeWarn("zoeVerifyFeature: inc5 out of bounds (%d)", f->inc5); retval = 0; } if (f->inc3 != UNDEFINED_FRAME && (f->inc3 < 0 || f->inc3 > 2)) { zoeWarn("zoeVerifyFeature: inc3 out of bounds (%d)", f->inc3); retval = 0; } if (f->frame != UNDEFINED_FRAME && (f->frame < 0 || f->frame > 2)) { zoeWarn("zoeVerifyFeature: frame out of bounds (%d)", f->frame); retval = 0; } /* passed the tests */ return retval; } zoeFeature zoeCopyFeature (const zoeFeature f) { return zoeNewFeature(f->label, f->start, f->end, f->strand, f->score, f->inc5, f->inc3, f->frame, f->group); } void zoeAntiFeature (zoeFeature f, int length) { coor_t start, end; start = length - f->end -1; end = length - f->start -1; f->start = start; f->end = end; if (f->strand == '+') f->strand = '-'; else if (f->strand == '-') f->strand = '+'; } int zoeFeatureCmp (const zoeFeature f1, const zoeFeature f2) { if (f1->start < f2->start) return -1; else if (f1->start > f2->start) return 1; else { if (f1->end < f2->end) return -1; else if (f1->end > f2->end) return 1; else { if (f1->strand < f2->strand) return -1; else if (f1->strand > f2->strand) return 1; else return f1->label - f2->label; } } } int zoeFeatureCmpPtr (const void * v1, const void * v2) { return zoeFeatureCmp( *(zoeFeature *)v1, *(zoeFeature *)v2 ); } int zoeFeaturesOverlap (const zoeFeature f1, const zoeFeature f2) { if (f1->start >= f2->start && f1->start <= f2->end) return 1; else if (f2->start >= f1->start && f2->start <= f1->end) return 1; else return 0; } zoeLabel zoeText2Label (const char * string) { if (strcmp(string, "None") == 0) return None; else if (strcmp(string, "Inter") == 0) return Inter; else if (strcmp(string, "Int0") == 0) return Int0; else if (strcmp(string, "Int1") == 0) return Int1; else if (strcmp(string, "Int1T") == 0) return Int1T; else if (strcmp(string, "Int2") == 0) return Int2; else if (strcmp(string, "Int2TA") == 0) return Int2TA; else if (strcmp(string, "Int2TG") == 0) return Int2TG; else if (strcmp(string, "Intron") == 0) return Intron; else if (strcmp(string, "UTR5") == 0) return UTR5; else if (strcmp(string, "UTR3") == 0) return UTR3; else if (strcmp(string, "Esngl") == 0) return Esngl; else if (strcmp(string, "Einit") == 0) return Einit; else if (strcmp(string, "Eterm") == 0) return Eterm; else if (strcmp(string, "Exon") == 0) return Exon; else if (strcmp(string, "Coding") == 0) return Coding; else if (strcmp(string, "Gene") == 0) return Gene; else if (strcmp(string, "Acceptor") == 0) return Acceptor; else if (strcmp(string, "Donor") == 0) return Donor; else if (strcmp(string, "Start") == 0) return Start; else if (strcmp(string, "Stop") == 0) return Stop; else if (strcmp(string, "Repeat") == 0) return Repeat; else if (strcmp(string, "CNS") == 0) return CNS; else if (strcmp(string, "ORF") == 0) return ORF; else if (strcmp(string, "PolyA") == 0) return PolyA; else if (strcmp(string, "Prom") == 0) return Prom; else if (strcmp(string, "BPS") == 0) return BPS; else if (strcmp(string, "TSS") == 0) return TSS; else if (strcmp(string, "Misc") == 0) return Misc; else if (strcmp(string, "HSP_NN") == 0) return HSP_NN; else if (strcmp(string, "HSP_NA") == 0) return HSP_NA; else if (strcmp(string, "HSP_AN") == 0) return HSP_AN; else if (strcmp(string, "HSP_AA") == 0) return HSP_AA; else { zoeWarn("zoeText2Label illegal label (%s)", string); return None; } } void zoeLabel2Text (zoeLabel label, char * string) { switch (label) { case None: strcpy(string, "None"); break; case Inter: strcpy(string, "Inter"); break; case Int0: strcpy(string, "Int0"); break; case Int1: strcpy(string, "Int1"); break; case Int1T: strcpy(string, "Int1T"); break; case Int2: strcpy(string, "Int2"); break; case Int2TA: strcpy(string, "Int2TA"); break; case Int2TG: strcpy(string, "Int2TG"); break; case Intron: strcpy(string, "Intron"); break; case UTR5: strcpy(string, "UTR5"); break; case UTR3: strcpy(string, "UTR3"); break; case Esngl: strcpy(string, "Esngl"); break; case Einit: strcpy(string, "Einit"); break; case Eterm: strcpy(string, "Eterm"); break; case Exon: strcpy(string, "Exon"); break; case Coding: strcpy(string, "Coding"); break; case Gene: strcpy(string, "Gene"); break; case Acceptor: strcpy(string, "Acceptor"); break; case Donor: strcpy(string, "Donor"); break; case Start: strcpy(string, "Start"); break; case Stop: strcpy(string, "Stop"); break; case Repeat: strcpy(string, "Repeat"); break; case CNS: strcpy(string, "CNS"); break; case ORF: strcpy(string, "ORF"); break; case PolyA: strcpy(string, "PolyA"); break; case Prom: strcpy(string, "Prom"); break; case BPS: strcpy(string, "BPS"); break; case TSS: strcpy(string, "TSS"); break; case Misc: strcpy(string, "Misc"); break; case HSP_NN: strcpy(string, "HSP_NN"); break; case HSP_NA: strcpy(string, "HSP_NA"); break; case HSP_AN: strcpy(string, "HSP_AN"); break; case HSP_AA: strcpy(string, "HSP_AA"); break; default: zoeWarn("zoeLabel2Text illegal feature name, assigning Unknown"); (void)strcpy(string, "Unknown"); } } void zoeWriteLabel (FILE * stream, zoeLabel label) { char string[32]; zoeLabel2Text(label, string); zoeS(stream, string); } /* zoeFeatureVec stuff */ void zoeDeleteFeatureVec (zoeFeatureVec vec) { int i; if (vec->elem) { for (i = 0; i < vec->size; i++) { zoeDeleteFeature(vec->elem[i]); } zoeFree(vec->elem); vec->elem = NULL; } zoeFree(vec); vec = NULL; } zoeFeatureVec zoeNewFeatureVec (void) { zoeFeatureVec vec = zoeMalloc(sizeof(struct zoeFeatureVec)); vec->size = 0; vec->limit = 0; vec->elem = NULL; return vec; } void zoePushFeatureVec (zoeFeatureVec vec, const zoeFeature f) { if (vec->limit == vec->size) { if (vec->limit == 0) vec->limit = 1; else vec->limit *= 2; vec->elem = zoeRealloc(vec->elem, vec->limit * sizeof(zoeFeature)); } vec->elem[vec->size] = zoeCopyFeature(f); vec->last = vec->elem[vec->size]; vec->size++; } zoeFeatureVec zoeCopyFeatureVec (const zoeFeatureVec vec) { int i; zoeFeatureVec v = zoeNewFeatureVec(); for (i = 0; i < vec->size; i++) zoePushFeatureVec(v, vec->elem[i]); return v; } #endif snap-2010-07-28/Zoe/zoeTools.c0000644000175000017500000005170611424066010015454 0ustar moellermoeller/******************************************************************************\ zoeTools.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_TOOLS_C #define ZOE_TOOLS_C #include "zoeTools.h" const coor_t UNDEFINED_COOR = -1; const frame_t UNDEFINED_FRAME = -1; const score_t MIN_SCORE = -FLT_MAX; const score_t MAX_SCORE = FLT_MAX; const strand_t UNDEFINED_STRAND = 0; /******************************************************************************\ Library Information \******************************************************************************/ static char zoeVersionNumber[] = "2006-07-28"; void zoeLibInfo (void) { zoeS(stderr, "ZOE library version %s\n", zoeVersionNumber); } /******************************************************************************\ Program Name \******************************************************************************/ static char PROGRAM_NAME[256] = "unnamed program"; void zoeSetProgramName (const char * string) { (void)strcpy(PROGRAM_NAME, string); } char * zoeGetProgramName (void) { return PROGRAM_NAME; } /******************************************************************************\ Commandline Processing \******************************************************************************/ static zoeTVec zoeCL_ARGS = NULL; /* command line arguments */ static zoeHash zoeCL_OPTS = NULL; /* command line options */ static zoeHash zoePR_OPTS = NULL; /* program-defined options */ void zoeSetOption (const char * attr, int flag) { flag++; /* 1 = flag, 2 = option with paramter */ if (zoePR_OPTS == NULL) { zoePR_OPTS = zoeNewHash(); zoeCL_OPTS = zoeNewHash(); zoeCL_ARGS = zoeNewTVec(); } if (flag < 1 || flag > 2) zoeExit("zoeSetOption requires 0 = flag, 1 = with argument"); zoeSetHash(zoePR_OPTS, attr, (void *)(size_t)flag); } char * zoeOption (const char * attr) { return zoeGetHash(zoeCL_OPTS, attr); } void zoeParseOptions (int * argc, char ** argv) { int i; char * token = NULL; /* parse command line */ for (i = 0; i < *argc; i++) { token = argv[i]; if (token[0] == '-' && strlen(token) > 1) { /* option found */ switch ((size_t)zoeGetHash(zoePR_OPTS, token)) { case 0: zoeExit("zoeParseOptions: unknown option (%s)", token); break; case 1: zoeSetHash(zoeCL_OPTS, token, token); break; case 2: if (*argc == i+1) zoeExit("zoeParseOptions: missing argument for %s", token); zoeSetHash(zoeCL_OPTS, token, argv[i+1]); i++; break; default: zoeExit("impossible instruction"); } } else { /* does not look like an option, save it for command line */ zoePushTVec(zoeCL_ARGS, argv[i]); } } /* reset command line */ *argc = zoeCL_ARGS->size; for (i = 0; i < zoeCL_ARGS->size; i++) { argv[i] = zoeCL_ARGS->elem[i]; } } /******************************************************************************\ Typedef I/O \******************************************************************************/ static void reverse_string (char * s) { int c, i, j; for (i = 0, j = strlen(s) -1; i < j; i++, j--) { c = s[i]; s[i] = s[j]; s[j] = c; } } static void itoa (int n, char * s) { int i, sign; if ((sign = n) < 0) n = -n; i = 0; do { s[i++] = n % 10 + '0'; } while ((n /= 10) > 0); if (sign < 0) s[i++] = '-'; s[i] = '\0'; reverse_string(s); } /* coor_t */ void zoeCoor2Text (coor_t val, char * s) { if (val == UNDEFINED_COOR) (void)strcpy(s, "..."); else itoa(val, s); } coor_t zoeText2Coor (const char * s) { int val; if (strcmp(s, "...") == 0) return UNDEFINED_COOR; if ( (sscanf(s, "%d", &val)) != 1) { zoeWarn("zoeText2Coor sscanf failure (%s)", s); return UNDEFINED_COOR; } return (coor_t)val; } /* frame_t */ void zoeFrame2Text (frame_t val, char * s) { if (val == UNDEFINED_FRAME) (void)strcpy(s, "."); else itoa(val, s); } frame_t zoeText2Frame (const char * s) { int val; if (strcmp(s, ".") == 0) return UNDEFINED_FRAME; if ( (sscanf(s, "%d", &val)) != 1) { zoeWarn("zoeText2Frame sscanf failure (%s)", s); return UNDEFINED_FRAME; } return (frame_t)val; } /* score_t */ void zoeScore2Text (score_t val, char * s) { if (val <= MIN_SCORE) (void)strcpy(s, "."); else if (val >= MAX_SCORE) (void)strcpy(s, "*"); else (void)sprintf(s, "%.3f", val); } score_t zoeText2Score (const char * s) { float val; if (strcmp(s, ".") == 0) return MIN_SCORE; if (strcmp(s, "*") == 0) return MAX_SCORE; if ( (sscanf(s, "%f", &val)) != 1) { zoeWarn("zoeText2Score sscanf failure (%s)", s); return MIN_SCORE; } return (score_t)val; } /* strand_t */ void zoeStrand2Text (strand_t val, char * s) { if (val == '+') (void)strcpy(s, "+"); else if (val == '-') (void)strcpy(s, "-"); else (void)strcpy(s, "."); } strand_t zoeText2Strand (const char * s) { if (strcmp(s, ".") == 0) return UNDEFINED_STRAND; if (strcmp(s, "+") == 0) return '+'; if (strcmp(s, "-") == 0) return '-'; zoeWarn("zoeText2Strand sscanf failure (%s)", s); return UNDEFINED_STRAND; } /******************************************************************************\ Printing and Error Messages \******************************************************************************/ void zoeS (FILE * stream, const char * fmt, ...) { va_list args; va_start(args, fmt); (void)vfprintf(stream, fmt, args); va_end(args); (void)fflush(stream); } void zoeO (const char * fmt, ...) { va_list args; va_start(args, fmt); (void)vfprintf(stdout, fmt, args); va_end(args); (void)fflush(stdout); } void zoeE (const char * fmt, ...) { va_list args; va_start(args, fmt); (void)vfprintf(stderr, fmt, args); va_end(args); } void zoeM (FILE *stream, int argc, ...) { int i; va_list ap; char * s; va_start(ap, argc); for (i = 0; i < argc; i++) { s = va_arg(ap, char *); fprintf(stream, "%s\n", s); } va_end(ap); (void)fflush(stream); } void zoeWarn (const char * fmt, ...) { va_list args; (void)fprintf(stderr, "ZOE WARNING (from %s): ", zoeGetProgramName()); va_start(args, fmt); (void)vfprintf(stderr, fmt, args); va_end(args); (void)fprintf(stderr, "\n"); } void zoeExit (const char * fmt, ...) { va_list args; (void)fflush(stdout); (void)fprintf(stderr, "ZOE ERROR (from %s): ", zoeGetProgramName()); va_start(args, fmt); (void)vfprintf(stderr, fmt, args); va_end(args); (void)fprintf(stderr, "\n"); zoeLibInfo(); exit(2); } /******************************************************************************\ Memory Tools \******************************************************************************/ void * zoeMalloc (size_t size) { void * buffer; if ((buffer = malloc(size)) == NULL) zoeExit("zoeMalloc"); return buffer; } void * zoeCalloc (size_t nobj, size_t size) { void * buffer; if ((buffer = calloc(nobj, size)) == NULL) zoeExit("zoeCalloc"); return buffer; } void * zoeRealloc (void * p, size_t size) { void * buffer; if ((buffer = realloc(p, size)) == NULL) zoeExit("zoeRealloc"); return buffer; } void zoeFree (void * p) { free(p); p = NULL; } /******************************************************************************\ Comparison Functions \******************************************************************************/ int zoeTcmp (const void * a, const void * b) { return strcmp( *(char **)a, *(char **)b ); } int zoeIcmp (const void * a, const void * b) { return *(int *)a - *(int *)b; } int zoeFcmp (const void * a, const void * b) { float f = *(float *)a - *(float *)b; if (f > 0) return 1; else if (f < 0) return -1; else return 0; } /******************************************************************************\ Integer Vector \******************************************************************************/ void zoeDeleteIVec (zoeIVec vec) { if (vec == NULL) return; if (vec->elem) { zoeFree(vec->elem); vec->elem = NULL; } zoeFree(vec); vec = NULL; } zoeIVec zoeNewIVec (void) { zoeIVec vec = zoeMalloc(sizeof(struct zoeIVec)); vec->size = 0; vec->limit = 0; vec->elem = NULL; return vec; } void zoePushIVec (zoeIVec vec, int val) { if (vec->limit == vec->size) { if (vec->limit == 0) vec->limit = 1; else vec->limit *= 2; vec->elem = zoeRealloc(vec->elem, vec->limit * sizeof(int)); } vec->elem[vec->size] = val; vec->last = val; vec->size++; } /******************************************************************************\ Float Vector \******************************************************************************/ void zoeDeleteFVec (zoeFVec vec) { if (vec == NULL) return; if (vec->elem) { zoeFree(vec->elem); vec->elem = NULL; } zoeFree(vec); vec = NULL; } zoeFVec zoeNewFVec (void) { zoeFVec vec = zoeMalloc(sizeof(struct zoeFVec)); vec->size = 0; vec->limit = 0; vec->elem = NULL; return vec; } void zoePushFVec (zoeFVec vec, float val) { if (vec->limit == vec->size) { if (vec->limit == 0) vec->limit = 1; else vec->limit *= 2; vec->elem = zoeRealloc(vec->elem, vec->limit * sizeof(float)); } vec->elem[vec->size] = val; vec->last = val; vec->size++; } /******************************************************************************\ Text Vector \******************************************************************************/ void zoeDeleteTVec (zoeTVec vec) { int i; if (vec == NULL) return; if (vec->elem) { for (i = 0; i < vec->size; i++) zoeFree(vec->elem[i]); zoeFree(vec->elem); vec->elem = NULL; } zoeFree(vec); vec = NULL; } zoeTVec zoeNewTVec (void) { zoeTVec vec = zoeMalloc(sizeof(struct zoeTVec)); vec->size = 0; vec->limit = 0; vec->elem = NULL; return vec; } void zoePushTVec (zoeTVec vec, const char * text) { if (vec->limit == vec->size) { if (vec->limit == 0) vec->limit = 1; else vec->limit *= 2; vec->elem = zoeRealloc(vec->elem, vec->limit * sizeof(char *)); } vec->elem[vec->size] = zoeMalloc(strlen(text) +1); (void)strcpy(vec->elem[vec->size], text); vec->last = vec->elem[vec->size]; vec->size++; } /******************************************************************************\ zoeVec \******************************************************************************/ void zoeDeleteVec (zoeVec vec) { if (vec == NULL) return; if (vec->elem) { zoeFree(vec->elem); vec->elem = NULL; } zoeFree(vec); vec = NULL; } zoeVec zoeNewVec (void) { zoeVec vec = zoeMalloc(sizeof(struct zoeVec)); vec->size = 0; vec->limit = 0; vec->elem = NULL; return vec; } void zoePushVec (zoeVec vec, void * thing) { if (vec->limit == vec->size) { if (vec->limit == 0) vec->limit = 1; else vec->limit *= 2; vec->elem = zoeRealloc(vec->elem, vec->limit * sizeof(void *)); } vec->elem[vec->size] = thing; vec->last = vec->elem[vec->size]; vec->size++; } /******************************************************************************\ Generic Hash The hash function is my own creature. I used the multiplication method as described in Cormen et al. but added a 7 periodic component so that for example, ATG and TGA don't hash to the same index. Because DNA might be hashed, I thought it would be a good idea to avoid some multipe of 3 and because number systems are 2 or 10 based, I stayed away from those too. The 7 values chosen were kind of arbitrary. I have tested this on some rather large text files, and the hash function separation is quite good even after several levels of re-hashing. Performance is good too, about 6x faster than the C++ map and 3 times faster than a Perl hash. \******************************************************************************/ static double zoeHASH_MULTIPLIER[7] = { 3.1415926536, /* PI */ 2.7182818285, /* e */ 1.6180339887, /* golden mean */ 1.7320508076, /* square root of 3 */ 2.2360679775, /* square root of 5 */ 2.6457513111, /* square root of 7 */ 3.3166247904, /* square root of 11 */ }; static float zoeMAX_HASH_DEPTH = 2.0; /* The hash will remain between */ static int zoeHashLevelToSlots (int level) { /* half full and twice-filled */ return pow(4, level); /* with these values */ } static int zoeHashFunc (const zoeHash hash, const char * key) { int i; double sum; sum = 0; for (i = 0; i < strlen(key); i++) { sum += key[i] * zoeHASH_MULTIPLIER[i % 7]; } return (int) (hash->slots * (sum - floor(sum))); } static void zoeExpandHash (zoeHash hash) { int i, j; char * key = NULL; void * val = NULL; int oldslots = hash->slots; zoeVec * oldkey = hash->key; zoeVec * oldval = hash->val; zoeVec kvec; zoeVec vvec; zoeTVec keys; /* create the new hash */ hash->level = hash->level +1; hash->slots = zoeHashLevelToSlots(hash->level); hash->key = zoeMalloc(hash->slots * sizeof(struct zoeVec)); hash->val = zoeMalloc(hash->slots * sizeof(struct zoeVec)); for (i = 0; i < hash->slots; i++) { hash->key[i] = zoeNewVec(); hash->val[i] = zoeNewVec(); } /* brand new hash? */ if (hash->keys->size == 0) return; keys = hash->keys; hash->keys = zoeNewTVec(); /* transfer old stuff to new hash */ for (i = 0; i < oldslots; i++) { kvec = oldkey[i]; vvec = oldval[i]; for (j = 0; j < kvec->size; j++) { key = kvec->elem[j]; val = vvec->elem[j]; zoeSetHash(hash, key, val); } } /* free old stuff */ for (i = 0; i < oldslots; i++) { kvec = oldkey[i]; vvec = oldval[i]; zoeDeleteVec(kvec); zoeDeleteVec(vvec); } zoeFree(oldkey); zoeFree(oldval); zoeDeleteTVec(keys); } void zoeDeleteHash (zoeHash hash) { int i; if (hash == NULL) return; for (i = 0; i < hash->slots; i++) { if (hash->key[i]) { zoeDeleteVec(hash->key[i]); hash->key[i] = NULL; } if (hash->val[i]) { zoeDeleteVec(hash->val[i]); hash->val[i] = NULL; } } zoeDeleteTVec(hash->keys); hash->keys = NULL; zoeDeleteVec(hash->vals); hash->vals = NULL; zoeFree(hash->key); hash->key = NULL; zoeFree(hash->val); hash->val = NULL; zoeFree(hash); hash = NULL; } zoeHash zoeNewHash (void) { zoeHash hash = zoeMalloc(sizeof(struct zoeHash)); hash->level = 0; hash->slots = 0; hash->keys = zoeNewTVec(); hash->vals = zoeNewVec(); hash->key = NULL; hash->val = NULL; zoeExpandHash(hash); return hash; } void * zoeGetHash (const zoeHash hash, const char * key) { int i, index; char * string = NULL; index = zoeHashFunc(hash, key); /* resolve collisions */ for (i = 0; i < hash->key[index]->size; i++) { string = hash->key[index]->elem[i]; if (strcmp(key, string) == 0) { return hash->val[index]->elem[i]; } } return NULL; /* return is NULL if not found */ } void zoeSetHash (zoeHash hash, const char * key, void * val) { int i, index; char * string = NULL; int new_key = 1; index = zoeHashFunc(hash, key); /* reassign unless new key */ for (i = 0; i < hash->key[index]->size; i++) { string = hash->key[index]->elem[i]; if (strcmp(key, string) == 0) { hash->val[index]->elem[i] = val; new_key = 0; return; } } if (new_key) { zoePushTVec(hash->keys, key); zoePushVec(hash->key[index], hash->keys->last); zoePushVec(hash->vals, val); zoePushVec(hash->val[index], hash->vals->last); } /* check if we have to expand the hash */ if ((float)hash->keys->size / (float)hash->slots >= zoeMAX_HASH_DEPTH) { zoeExpandHash(hash); } } zoeTVec zoeKeysOfHash (const zoeHash hash) { int i; zoeTVec vec = zoeNewTVec(); for (i = 0; i < hash->keys->size; i++) zoePushTVec(vec, hash->keys->elem[i]); return vec; } zoeVec zoeValsOfHash (const zoeHash hash) { int i; zoeVec vec = zoeNewVec(); for (i = 0; i < hash->vals->size; i++) zoePushVec(vec, hash->vals->elem[i]); return vec; } void zoeStatHash (const zoeHash hash) { int i, max, min, total, count; max = 0; min = 1000000; total = 0; for (i = 0; i < hash->slots; i++) { count = hash->val[i]->size; total += count; if (count > max) max = count; if (count < min) min = count; } zoeS(stdout, "HashStats: level=%d slots=%d keys=%d min=%d max=%d ave=%f\n", hash->level, hash->slots, hash->keys->size, min, max, (float)total / (float)hash->slots); } /******************************************************************************\ Suffix Tree \******************************************************************************/ void zoeDeleteXnode (zoeXnode xn) { zoeExit("Xnodes are only freed by Xtree"); } zoeXnode zoeNewXnode (char c) { zoeXnode xn = zoeMalloc(sizeof(struct zoeXnode)); xn->children = zoeNewVec(); xn->data = NULL; xn->c = c; return xn; } zoeXnode zoeSearchXnode (const zoeXnode xn, char c) { int i; zoeXnode child; for (i = 0; i < xn->children->size; i++) { child = xn->children->elem[i]; if (child->c == c) { return child; } } return NULL; } void zoeDeleteXtree (zoeXtree xt) { int i; zoeXnode node; /* deallocate memory from all the nodes */ for (i = 0; i < xt->alloc->size; i++) { node = xt->alloc->elem[i]; zoeDeleteVec(node->children); zoeFree(node); } zoeDeleteVec(xt->alloc); zoeFree(xt); } zoeXtree zoeNewXtree (void) { int i; zoeXtree xt = zoeMalloc(sizeof(struct zoeXtree)); for (i = 0; i < 256; i++) { xt->head[i] = NULL; } xt->alloc = zoeNewVec(); return xt; } void zoeSetXtree (zoeXtree xt, const char * string, void * value) { int i, len; char c; zoeXnode parent, child; /* string length check */ len = strlen(string); if (len < 1) { zoeWarn("zoeSetXtree string length must be at least 1"); return; } /* head node */ c = string[0]; if (xt->head[(int)c] == NULL) { /* need to make a new head node */ xt->head[(int)c] = zoeNewXnode(c); zoePushVec(xt->alloc, xt->head[(int)c]); } /* other nodes */ parent = xt->head[(int)c]; for (i = 1; i < len; i++) { c = string[i]; child = zoeSearchXnode(parent, c); if (child == NULL) { /* create a new node here */ child = zoeNewXnode(c); zoePushVec(parent->children, child); zoePushVec(xt->alloc, child); } parent = child; } /* last node - gets data */ parent->data = value; } void* zoeGetXtree (const zoeXtree xt, const char * string) { int i, len; char c; zoeXnode parent, child; /* string length check */ len = strlen(string); if (len < 1) { zoeWarn("zoeGetXtree string length must be at least 1"); return NULL; } /* head node */ c = string[0]; if (xt->head[(int)c] == NULL) return NULL; /* other nodes */ parent = xt->head[(int)c]; for (i = 1; i < len; i++) { c = string[i]; child = zoeSearchXnode(parent, c); if (child == NULL) return NULL; parent = child; } /* last node - return data */ return parent->data; } void zoeXtreeInfo (const zoeXtree xt) { int i; int head_count = 0; for (i = 0; i < 256; i++) if (xt->head[i] != NULL) head_count++; zoeO("head=%d alloc=%d\n", head_count, xt->alloc->size); } /******************************************************************************\ zoeOpenFile zoeCloseFile \******************************************************************************/ /* 0 error opening file 1 standard file 2 compressed file */ static int zoe_file_type (const char * filename) { int length = strlen(filename); FILE * stream; stream = fopen(filename, "r"); if (stream == NULL) return 0; /* failed to open the file */ /* terminates with .gz */ if (filename[length -3] == '.' && filename[length -2] == 'g' && filename[length -1] == 'z') return 2; /* terminates with .z */ if (filename[length -2] == '.' && filename[length -1] == 'z') return 2; /* terminates with .Z */ if (filename[length -2] == '.' && filename[length -1] == 'Z') return 2; return 1; } void zoeCloseFile (zoeFile file) { switch (file.type) { case 0: zoeExit("file already closed"); break; case 1: fclose(file.stream); break; case 2: pclose(file.stream); break; default: zoeExit("odd file type in zoeCloseFile (%d)", file.type); } file.type = 0; file.stream = NULL; file.name[0] = '\0'; } zoeFile zoeOpenFile (const char * name) { zoeFile file; char command[1024]; file.type = 0; file.stream = NULL; file.name[0] = '\0'; /* type */ file.type = zoe_file_type(name); if (file.type == 0) zoeExit("zoeOpenFile failed to open file (%s)", name); /* stream */ if (file.type == 1) { file.stream = fopen(name, "r"); } else { sprintf(command, "gunzip -c %s", name); file.stream = popen(command, "r"); } /* name */ strcpy(file.name, name); return file; } #endif snap-2010-07-28/Zoe/zoeFastaFile.c0000644000175000017500000000721011424066010016201 0ustar moellermoeller/******************************************************************************\ zoeFastaFile.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_FASTA_FILE_C #define ZOE_FASTA_FILE_C #include "zoeFastaFile.h" void zoeDeleteFastaFile(zoeFastaFile entry) { if (entry == NULL) return; if (entry->def) { zoeFree(entry->def); entry->def = NULL; } if (entry->seq) { zoeFree(entry->seq); entry->seq = NULL; } zoeFree(entry); entry = NULL; } zoeFastaFile zoeNewFastaFile (const char * def, const char * seq) { zoeFastaFile ff = zoeMalloc(sizeof(struct zoeFastaFile)); ff->def = zoeMalloc(strlen(def) + 1); ff->seq = zoeMalloc(strlen(seq) + 1); ff->length = strlen(seq); strcpy(ff->def, def); strcpy(ff->seq, seq); return ff; } zoeFastaFile zoeReadFastaFile (FILE * stream) { char c; size_t size; /* current allocation */ int i; char * seq = NULL; /* sequence */ char * def = NULL; /* definition */ zoeFastaFile entry = NULL; /* initial check for fasta format */ c = fgetc(stream); if (c == EOF) { return NULL; } if (c != '>') { zoeWarn("zoeReadFastaFile > not found"); return NULL; } ungetc(c, stream); /* read the def line */ size = 256; /* most definitions are small */ i = 0; def = zoeMalloc(size * sizeof(char)); while ((c = fgetc(stream)) != EOF) { if (c == '\n') break; def[i] = c; i++; if (i == size) { size *= 2; def = zoeRealloc(def, size); } } def[i] = '\0'; /* read the sequence */ size = 65536; /* most sequences are large */ i = 0; seq = zoeMalloc(size * sizeof(char)); while ((c = fgetc(stream)) != EOF) { if (c == '>') { ungetc(c, stream); break; /* next record found */ } if (isspace((int)c)) continue; /* skip spaces */ seq[i] = c; i++; if (i == size) { size *= 2; seq = zoeRealloc(seq, size); } } seq[i] = '\0'; entry = zoeNewFastaFile(def+1, seq); /* '>' stripped off definition */ zoeFree(def); zoeFree(seq); return entry; } static unsigned int zoeFastaLineLength = 50; void zoeSetFastaLineLength (unsigned int length) { zoeFastaLineLength = length; } void zoeWriteFastaFile (FILE * stream, const zoeFastaFile entry) { coor_t i; if (entry->def[0] != '>') zoeS(stream, ">"); zoeS(stream, "%s", entry->def); if (entry->def[strlen(entry->def) -1] != '\n') zoeS(stream, "\n"); for (i=1; i <= entry->length; i++) { fputc((entry->seq)[i-1], stream); if ((i % zoeFastaLineLength) == 0) zoeS(stream, "\n"); } if ((i % zoeFastaLineLength) != 1) zoeS(stream, "\n"); } zoeFastaFile zoeGetFastaFile (const char * filename) { FILE * stream; zoeFastaFile ff; if ((stream = fopen(filename, "r")) == NULL) { zoeExit("error opening file %s", filename); } ff = zoeReadFastaFile(stream); if (ff == NULL) zoeExit("crap, trouble with %s", filename); return ff; } #endif snap-2010-07-28/Zoe/00REAMDE0000644000175000017500000000002211424066010014473 0ustar moellermoellerREADME for Zoe... snap-2010-07-28/Zoe/zoeProtein.c0000644000175000017500000001024511424066010015765 0ustar moellermoeller/******************************************************************************\ zoeProtein.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_PROTEIN_C #define ZOE_PROTEIN_C #include "zoeProtein.h" int zoe_char2aa (const int c) { switch (c) { case 'A': return 0; case 'C': return 1; case 'D': return 2; case 'E': return 3; case 'F': return 4; case 'G': return 5; case 'H': return 6; case 'I': return 7; case 'K': return 8; case 'L': return 9; case 'M': return 10; case 'N': return 11; case 'P': return 12; case 'Q': return 13; case 'R': return 14; case 'S': return 15; case 'T': return 16; case 'V': return 17; case 'W': return 18; case 'Y': return 19; case '*': return 20; case 'X': return 21; default: return -1; } } char zoe_aa2char (const int aa) { switch (aa) { case 0: return 'A'; case 1: return 'C'; case 2: return 'D'; case 3: return 'E'; case 4: return 'F'; case 5: return 'G'; case 6: return 'H'; case 7: return 'I'; case 8: return 'K'; case 9: return 'L'; case 10: return 'M'; case 11: return 'N'; case 12: return 'P'; case 13: return 'Q'; case 14: return 'R'; case 15: return 'S'; case 16: return 'T'; case 17: return 'V'; case 18: return 'W'; case 19: return 'Y'; case 20: return '*'; case 21: return 'X'; default: return -1; } } void zoeDeleteProtein(zoeProtein pro) { if (pro == NULL) return; if (pro->def) { zoeFree(pro->def); pro->def = NULL; } if (pro->seq) { zoeFree(pro->seq); pro->seq = NULL; } if (pro->s22) { zoeFree(pro->s22); pro->s22 = NULL; } zoeFree(pro); pro = NULL; } zoeProtein zoeNewTrustedProtein (const char * def, const char * seq) { int i; char aa; zoeProtein pro = zoeMalloc(sizeof(struct zoeProtein)); pro->length = strlen(seq); pro->def = zoeMalloc(strlen(def) +1); pro->seq = zoeMalloc(pro->length +1); pro->s22 = zoeMalloc(pro->length +1); strcpy(pro->def, def); strcpy(pro->seq, seq); for (i = 0; i < strlen(seq); i++) { aa = zoe_char2aa(seq[i]); pro->s22[i] = aa; } return pro; } zoeProtein zoeNewProtein (const char * def, const char * seq) { int i; char aa; zoeProtein pro = zoeMalloc(sizeof(struct zoeProtein)); pro->length = strlen(seq); pro->def = zoeMalloc(strlen(def) +1); pro->seq = zoeMalloc(pro->length +1); pro->s22 = zoeMalloc(pro->length +1); strcpy(pro->def, def); strcpy(pro->seq, seq); for (i = 0; i < strlen(seq); i++) { aa = zoe_char2aa(seq[i]); if (aa == -1) zoeWarn("illegal amino acid (%c)", seq[i]); pro->s22[i] = aa; } return pro; } void zoeWriteProtein (FILE * stream, const zoeProtein pro) { coor_t i; if (pro->def[0] != '>') zoeS(stream, ">"); zoeS(stream, "%s", pro->def); if (pro->def[strlen(pro->def) -1] != '\n') zoeS(stream, "\n"); for (i = 1; i <= pro->length; i++) { (void)fputc(pro->seq[i-1], stream); if ((i % 50) == 0) zoeS(stream, "\n"); } if ((i % 50) != 1) zoeS(stream, "\n"); } zoeProtein zoeGetProtein (const char * file) { FILE * stream = NULL; zoeFastaFile fasta = NULL; zoeProtein pro = NULL; if ((stream = fopen(file, "r")) == NULL) zoeExit("zoeGetProtein failed to open %s", file); if ((fasta = zoeReadFastaFile(stream)) == NULL) zoeExit("zoeGetProtein failed to parse %s", file); pro = zoeNewProtein(fasta->def, fasta->seq); zoeDeleteFastaFile(fasta); (void)fclose(stream); return(pro); } #endif snap-2010-07-28/Zoe/zoeTransition.h0000644000175000017500000000161411424066010016504 0ustar moellermoeller/******************************************************************************\ zoeTransition.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_TRANSITION_H #define ZOE_TRANSITION_H #include #include #include #include "zoeMath.h" #include "zoeFeature.h" #include "zoeTools.h" struct zoeTransition { zoeLabel from; /* state id */ zoeLabel to; /* state id */ float prob; /* probability of transition */ score_t score; /* score of transition */ }; typedef struct zoeTransition * zoeTransition; void zoeDeleteTransition (zoeTransition); zoeTransition zoeNewTransition (const char *, const char *, float); zoeTransition zoeReadTransition (FILE *); void zoeWriteTransition (FILE *, const zoeTransition); #endif snap-2010-07-28/Zoe/zoeModel.h0000644000175000017500000000476011424066010015417 0ustar moellermoeller/******************************************************************************\ zoeModel.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_MODEL_H #define ZOE_MODEL_H #include #include #include #include #include "zoeDNA.h" #include "zoeMath.h" #include "zoeFeature.h" #include "zoeTools.h" typedef enum { UNDEFINED_MODEL, WMM, /* Weight Matrix Model */ LUT, /* Lookup Table (aka Markov Model) */ SAM, /* Scoring Array Model */ SDT, /* Sequence Decision Tree */ CDS, /* 3 Periodic (LUT submodels) */ MIX, /* averages all submodels */ TRM /* terminal model - always MIN_SCORE */ } zoeModelType; struct zoeModel { zoeModelType type; /* enumerated above */ char * name; /* enumerated above, but also used by SDT */ coor_t length; /* length of the model - how many bp covered */ coor_t focus; /* which bp of model gets score */ coor_t max_left; /* maximum bp left of focus */ coor_t max_right; /* maximum bp right of focus */ int symbols; /* number of symbols in the alphabet */ int submodels; /* number of sub-models */ struct zoeModel ** submodel; /* sub-models, for complex models */ score_t * data; /* scores (not for complex models) */ score_t score; /* base score - probability of branch, WMM only */ }; typedef struct zoeModel * zoeModel; void zoeDeleteModel (zoeModel); zoeModel zoeNewModel (void); zoeModel zoeReadModel (FILE *); zoeModel zoeReadModelHeader (FILE *, score_t); void zoeWriteModel (FILE *, const zoeModel); void zoeWriteModelHeader (FILE *, const zoeModel); void zoeAmbiguateModel (zoeModel, score_t); void zoeDeambiguateModel (zoeModel); zoeModel zoeGetModel (const char *); zoeModel zoeGetModelHeader (const char *, score_t); coor_t zoeModelLengthLeft (const zoeModel); coor_t zoeModelLengthRight (const zoeModel); zoeModel zoeNewCodingModel (int, float); zoeModel zoeNewIntronModel (int, float); zoeModel zoeNewInterModel (int, float); zoeModel zoeNewAcceptorModel (int, int, float); zoeModel zoeNewDonorModel (int, int, float); zoeModel zoeNewStartModel (int, int, float); zoeModel zoeNewStopModel (int, float); zoeModel zoeNewUTR5Model (int, float); zoeModel zoeNewUTR3Model (int, float); zoeModel zoeNewPolyAModel (int, int, float); #endif snap-2010-07-28/Zoe/depend0000644000175000017500000000443611424066010014652 0ustar moellermoellerzoeAlignment.o: zoeAlignment.c zoeAlignment.h zoeDNA.h zoeFastaFile.h \ zoeTools.h zoeProtein.h zoeFeature.h zoeCDS.o: zoeCDS.c zoeCDS.h zoeDNA.h zoeFastaFile.h zoeTools.h \ zoeProtein.h zoeFeature.h zoeFeatureTable.h zoeCounter.o: zoeCounter.c zoeCounter.h zoeDNA.h zoeFastaFile.h \ zoeTools.h zoeProtein.h zoeFeature.h zoeMath.h zoeModel.h zoeDNA.o: zoeDNA.c zoeDNA.h zoeFastaFile.h zoeTools.h zoeProtein.h \ zoeFeature.h zoeDistribution.o: zoeDistribution.c zoeDistribution.h zoeMath.h \ zoeTools.h zoeDuration.o: zoeDuration.c zoeDuration.h zoeDistribution.h zoeMath.h \ zoeTools.h zoeFeature.h zoeFastaFile.o: zoeFastaFile.c zoeFastaFile.h zoeTools.h zoeFeature.o: zoeFeature.c zoeFeature.h zoeTools.h zoeFeatureFactory.o: zoeFeatureFactory.c zoeFeatureFactory.h zoeDNA.h \ zoeFastaFile.h zoeTools.h zoeProtein.h zoeFeature.h zoeScanner.h \ zoeMath.h zoeModel.h zoeFeatureTable.h zoeCDS.h zoeFeatureTable.o: zoeFeatureTable.c zoeFeatureTable.h zoeCDS.h zoeDNA.h \ zoeFastaFile.h zoeTools.h zoeProtein.h zoeFeature.h zoeHMM.o: zoeHMM.c zoeHMM.h zoeDuration.h zoeDistribution.h zoeMath.h \ zoeTools.h zoeFeature.h zoeState.h zoeModel.h zoeDNA.h zoeFastaFile.h \ zoeProtein.h zoePhasePref.h zoeTransition.h zoeIsochore.o: zoeIsochore.c zoeHMM.h zoeDuration.h zoeDistribution.h \ zoeMath.h zoeTools.h zoeFeature.h zoeState.h zoeModel.h zoeDNA.h \ zoeFastaFile.h zoeProtein.h zoePhasePref.h zoeTransition.h \ zoeIsochore.h zoeMath.o: zoeMath.c zoeMath.h zoeTools.h zoeModel.o: zoeModel.c zoeModel.h zoeDNA.h zoeFastaFile.h zoeTools.h \ zoeProtein.h zoeFeature.h zoeMath.h zoePhasePref.o: zoePhasePref.c zoePhasePref.h zoeMath.h zoeTools.h \ zoeFeature.h zoeProtein.o: zoeProtein.c zoeProtein.h zoeFastaFile.h zoeTools.h zoeScanner.o: zoeScanner.c zoeScanner.h zoeDNA.h zoeFastaFile.h \ zoeTools.h zoeProtein.h zoeFeature.h zoeMath.h zoeModel.h zoeState.o: zoeState.c zoeState.h zoeFeature.h zoeTools.h zoeTools.o: zoeTools.c zoeTools.h zoeTransition.o: zoeTransition.c zoeTransition.h zoeMath.h zoeTools.h \ zoeFeature.h zoeTrellis.o: zoeTrellis.c zoeTrellis.h zoeCDS.h zoeDNA.h zoeFastaFile.h \ zoeTools.h zoeProtein.h zoeFeature.h zoeFeatureFactory.h zoeScanner.h \ zoeMath.h zoeModel.h zoeFeatureTable.h zoeHMM.h zoeDuration.h \ zoeDistribution.h zoeState.h zoePhasePref.h zoeTransition.h snap-2010-07-28/Zoe/zoePhasePref.c0000644000175000017500000000756011424066010016230 0ustar moellermoeller/******************************************************************************\ zoePhasePref.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_PHASEPREF_C #define ZOE_PHASEPREF_C #include "zoePhasePref.h" void zoeDeletePhasePref (zoePhasePref pp) { if (pp == NULL) return; zoeFree(pp); pp = NULL; } zoePhasePref zoeNewPhasePref (void) { int i; zoePhasePref pp = zoeMalloc(sizeof(struct zoePhasePref)); for (i = 0; i < zoePHASECOUNT; i++) { pp->score[i] = MIN_SCORE; pp->prob[i] = 0; } return pp; } zoePhasePref zoeReadPhasePref (FILE * stream) { int i; zoePhasePref pp = zoeNewPhasePref(); for (i = 0; i < zoePHASECOUNT; i++) { if (fscanf(stream, "%f", &pp->prob[i]) != 1) { zoeWarn("zoeReadPhasePref fscanf error"); zoeDeletePhasePref(pp); return NULL; } /* convert to score too */ pp->score[i] = zoeFloat2Score(pp->prob[i]); } return pp; } void zoeWritePhasePref (FILE *stream, const zoePhasePref pp) { int i; for (i = 0; i < zoePHASECOUNT; i++) { zoeS(stream, "%f\n", pp->prob[i]); } } score_t zoeScorePhase (zoePhasePref pp, zoeLabel from, zoeLabel to, int inc5) { switch (from) { case Einit: switch (to) { case Int0: return pp->score[Ei_I0]; case Int1: case Int1T: return pp->score[Ei_I1]; case Int2: case Int2TA: case Int2TG: return pp->score[Ei_I2]; default: zoeExit("zoeScorePhase does not allow to %d", to); } case Exon: switch (inc5) { case 0: /* corresponds to E0 */ switch (to) { case Int0: return pp->score[E0_I0]; case Int1: case Int1T: return pp->score[E0_I1]; case Int2: case Int2TA: case Int2TG: return pp->score[E0_I2]; default: zoeExit("zoeScorePhase impossible A %d", to); } case 1: /* corresponds to E2 */ switch (to) { case Int0: return pp->score[E2_I0]; case Int1: case Int1T: return pp->score[E2_I1]; case Int2: case Int2TA: case Int2TG: return pp->score[E2_I2]; default: zoeExit("zoeScorePhase impossible B %d", to); } case 2: /* corresponds to E1 */ switch (to) { case Int0: return pp->score[E1_I0]; case Int1: case Int1T: return pp->score[E1_I1]; case Int2: case Int2TA: case Int2TG: return pp->score[E1_I2]; default: zoeExit("zoeScorePhase impossible C %d", to); } default: zoeExit("zoeScorePhase impossible D"); } case Int0: switch (to) { case Exon: return pp->score[I0_E0]; case Eterm: return pp->score[I0_Et]; default: zoeExit("zoeScorePhase does not allow to %d", to); } case Int1: case Int1T: switch (to) { case Exon: return pp->score[I1_E1]; case Eterm: return pp->score[I1_Et]; default: zoeExit("zoeScorePhase does not allow to %d", to); } case Int2: case Int2TA: case Int2TG: switch (to) { case Exon: return pp->score[I2_E2]; case Eterm: return pp->score[I2_Et]; default: zoeExit("zoeScorePhase does not allow to %d", to); } default: return 0; } } #endif snap-2010-07-28/Zoe/Makefile0000644000175000017500000000373311424066010015127 0ustar moellermoeller############################# # Makefile for ZOE library # ############################# LIB = -lm OBJECTS = \ zoeAlignment.o\ zoeCDS.o\ zoeCounter.o\ zoeDNA.o\ zoeDistribution.o\ zoeDuration.o\ zoeFastaFile.o\ zoeFeature.o\ zoeFeatureFactory.o\ zoeFeatureTable.o\ zoeHMM.o\ zoeIsochore.o\ zoeMath.o\ zoeModel.o\ zoePhasePref.o\ zoeProtein.o\ zoeScanner.o\ zoeState.o\ zoeTools.o\ zoeTransition.o\ zoeTrellis.o\ APP = zoe-loop SRC = zoe-loop.c OBJ = zoe-loop.o APP2 = lexica SRC2 = lexica.c OBJ2 = lexica.o APP3 = seqedit SRC3 = seqedit.c OBJ3 = seqedit.o APP4 = seqstats SRC4 = seqstats.c OBJ4 = seqstats.o APP5 = twinkle SRC5 = twinkle.c OBJ5 = twinkle.o DATE = $(shell date +\%Y-\%m-\%d) ########### # Targets # ########### default: make gcc $(APP): $(OBJ) $(OBJECTS) $(CC) -o $(APP) $(CFLAGS) $(OBJ) $(OBJECTS) $(LIB) $(APP2): $(OBJ2) $(OBJECTS) $(CC) -o $(APP2) $(CFLAGS) $(OBJ2) $(OBJECTS) $(LIB) $(APP3): $(OBJ3) $(OBJECTS) $(CC) -o $(APP3) $(CFLAGS) $(OBJ3) $(OBJECTS) $(LIB) $(APP4): $(OBJ4) $(OBJECTS) $(CC) -o $(APP4) $(CFLAGS) $(OBJ4) $(OBJECTS) $(LIB) $(APP5): $(OBJ5) $(OBJECTS) $(CC) -o $(APP5) $(CFLAGS) $(OBJ5) $(OBJECTS) $(LIB) clean: rm -f *.o $(APP) $(APP2) $(APP3) $(APP4) $(APP5) depend: $(OBJECTS:.o=.c) gcc -MM $^ > $@ tar: rm -rf /tmp/$(APP) mkdir /tmp/$(APP) cp -r * /tmp/$(APP) cd /tmp/$(APP); make clean; rm -rf CVS */CVS cd /tmp; tar -zcvf $(APP)-$(DATE).tar.gz $(APP) rm -rf /tmp/$(APP) ################# # Architectures # ################# gcc: make $(APP) CC="gcc" CFLAGS="-O2 -Wall -Werror" all: make $(APP) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP2) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP3) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP4) CC="gcc" CFLAGS="-O2 -Wall -Werror" make $(APP5) CC="gcc" CFLAGS="-O2 -Wall -Werror" ################### # Inference Rules # ################### %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< ################ # Dependancies # ################ include depend snap-2010-07-28/Zoe/zoeFeatureTable.c0000644000175000017500000002234711424066010016716 0ustar moellermoeller/******************************************************************************\ zoeFeatureTable.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_FEATURETABLE_C #define ZOE_FEATURETABLE_C #include #include #include "zoeFeatureTable.h" /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ static int REGION_SIZE = 1000; /* genomic regions broken into 1,000 bp */ static void zoe_IndexLastFeature (zoeFeatureTable ft) { char string[12]; /* ought to be big enough for whole genomes */ int index, low, high; void * vec; zoeFeature f = ft->vec->last; low = f->start / REGION_SIZE; high = f->end / REGION_SIZE; for (index = low; index <= high; index++) { sprintf(string, "%d", index); vec = zoeGetHash(ft->region, string); if (vec == NULL) { zoePushTVec(ft->regions, string); zoeSetHash(ft->region, ft->regions->last, zoeNewVec()); vec = zoeGetHash(ft->region, string); } zoePushVec(vec, f); } } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteFeatureTable (zoeFeatureTable ft) { int i; zoeVec vec; zoeTVec keys; char * key; if (ft == NULL) return; if (ft->def) { zoeFree(ft->def); ft->def = NULL; } if (ft->vec) { zoeDeleteFeatureVec(ft->vec); ft->vec = NULL; } if (ft->region) { /* reminder: must also delete all the zoeVec objects in HASH */ keys = zoeKeysOfHash(ft->region); for (i = 0; i < keys->size; i++) { key = keys->elem[i]; vec = zoeGetHash(ft->region, key); zoeDeleteVec(vec); } zoeDeleteHash(ft->region); zoeDeleteTVec(keys); ft->region = NULL; } if (ft->regions) { zoeDeleteTVec(ft->regions); ft->regions = NULL; } zoeFree(ft); ft = NULL; } zoeFeatureTable zoeNewFeatureTable (const char * def, const zoeFeatureVec vec) { int i; zoeFeatureTable ft = zoeMalloc(sizeof(struct zoeFeatureTable)); /* copy def and vec */ ft->def = zoeMalloc(strlen(def) +1); (void)strcpy(ft->def, def); ft->vec = zoeNewFeatureVec(); ft->region = zoeNewHash(); ft->regions = zoeNewTVec(); if (vec) for (i = 0; i < vec->size; i++) { zoePushFeatureVec(ft->vec, vec->elem[i]); zoe_IndexLastFeature(ft); } return ft; } zoeFeatureTable zoeReadFeatureTable (FILE * stream) { char c; char * def; int size, i; zoeFeature f = NULL; zoeFeatureTable ft = NULL; zoeFeatureVec fv = NULL; /* initial check for fasta-ish format */ c = fgetc(stream); if (c == EOF) return NULL; if (c != '>') { zoeWarn("zoeReadFeatureTable should start with '>'"); return NULL; } ungetc(c, stream); fv = zoeNewFeatureVec(); /* read def line */ size = 256; /* most definitions are small */ i = 0; def = zoeMalloc(size * sizeof(char)); while ((c = fgetc(stream)) != EOF) { if (c == '\n') break; def[i] = c; i++; if (i == size) { size *= 2; def = zoeRealloc(def, size); } } def[i] = '\0'; /* read the features */ while ((c = fgetc(stream)) != EOF) { ungetc(c, stream); if (c == '>') { break; /* next record found */ } else { if ((f = zoeReadFeature(stream)) == NULL) { break; /* none left in file */ } else { zoePushFeatureVec(fv, f); zoeDeleteFeature(f); } } } ft = zoeNewFeatureTable(def+1, fv); zoeDeleteFeatureVec(fv); zoeFree(def); return ft; } void zoeWriteFeatureTable (FILE * stream, const zoeFeatureTable ft) { int i; if (ft->def[0] != '>') zoeS(stream, ">"); zoeS(stream, "%s", ft->def); if (ft->def[strlen(ft->def) -1] != '\n') zoeS(stream, "\n"); for (i = 0; i < ft->vec->size; i++) { zoeWriteFeature(stream, ft->vec->elem[i]); } } void zoeWriteTriteFeatureTable (FILE * stream, const zoeFeatureTable ft) { int i; if (ft->def[0] != '>') zoeS(stream, ">"); zoeS(stream, "%s", ft->def); if (ft->def[strlen(ft->def) -1] != '\n') zoeS(stream, "\n"); for (i = 0; i < ft->vec->size; i++) { zoeWriteTriteFeature(stream, ft->vec->elem[i]); } } void zoeAddFeature (zoeFeatureTable ft, const zoeFeature f) { zoePushFeatureVec(ft->vec, f); zoe_IndexLastFeature(ft); } void zoeAddFeatures (zoeFeatureTable ft, const zoeFeatureVec fv) { int i; for (i = 0; i < fv->size; i++) { zoePushFeatureVec(ft->vec, fv->elem[i]); zoe_IndexLastFeature(ft); } } zoeFeatureTable zoeGetFeatureTable (const char * file) { FILE * stream = NULL; zoeFeatureTable ft = NULL; if ((stream = fopen(file, "r")) == NULL) zoeExit("zoeGetFeatureTable failed to open %s", file); if ((ft = zoeReadFeatureTable(stream)) == NULL) zoeExit("zoeGetFeatureTable failed to parse %s", file); (void)fclose(stream); return ft; } zoeFeatureTable zoeSelectExons (const zoeFeatureTable ft) { int i; zoeFeature f; zoeFeatureTable exons = zoeNewFeatureTable(ft->def, NULL); for (i = 0; i < ft->vec->size; i++) { f = ft->vec->elem[i]; switch (f->label) { case Einit: case Eterm: case Exon: case Esngl: zoeAddFeature(exons, f); break; default: break; } } return exons; } zoeFeatureTable zoeSelectByGroup (const char * def, const zoeFeatureTable ft, const char * group) { int i; zoeFeatureVec vec = zoeNewFeatureVec(); zoeFeatureTable f2 = NULL; for (i = 0; i < ft->vec->size; i++) { if (group && ft->vec->elem[i]->group) { if (strcmp(group, ft->vec->elem[i]->group) == 0) zoePushFeatureVec(vec, ft->vec->elem[i]); } else if (group == NULL) { zoePushFeatureVec(vec, ft->vec->elem[i]); } } f2 = zoeNewFeatureTable(def, vec); zoeDeleteFeatureVec(vec); return f2; } zoeFeatureTable zoeSelectByLabel (const char * def, const zoeFeatureTable ft, zoeLabel label) { int i; zoeFeatureVec vec = zoeNewFeatureVec(); zoeFeatureTable f2 = NULL; for (i = 0; i < ft->vec->size; i++) { if (label == ft->vec->elem[i]->label) { zoePushFeatureVec(vec, ft->vec->elem[i]); } } f2 = zoeNewFeatureTable(def, vec); zoeDeleteFeatureVec(vec); return f2; } void zoeAntiFeatureTable(zoeFeatureTable ft, coor_t length) { int i; for (i = 0; i < ft->vec->size; i++) { zoeAntiFeature(ft->vec->elem[i], length); } } zoeTVec zoeFeatureTableGroups (const zoeFeatureTable ft) { int i; zoeTVec tvec; zoeHash hash = zoeNewHash(); for (i = 0; i < ft->vec->size; i++) { if (ft->vec->elem[i]->group) { zoeSetHash(hash, ft->vec->elem[i]->group, (void*)1); } } tvec = zoeKeysOfHash(hash); zoeDeleteHash(hash); return tvec; } zoeVec zoeGetGenes (const zoeFeatureTable ann, const zoeDNA dna) { int i; zoeFeatureTable ft; zoeTVec names; char * name; zoeCDS cds; zoeVec genes = zoeNewVec(); names = zoeFeatureTableGroups(ann); for (i = 0; i < names->size; i++) { name = names->elem[i]; ft = zoeSelectByGroup(name, ann, name); cds = zoeNewCDS(name, dna, ft->vec); zoePushVec(genes, cds); zoeDeleteFeatureTable(ft); } if (genes->size > 1) { qsort(genes->elem, genes->size, sizeof(zoeCDS), zoeCDScmpptr); } zoeDeleteTVec(names); return genes; } zoeFeatureVec zoeGetFeaturesNear (const zoeFeatureTable ft, coor_t start, coor_t end) { char string[12]; int i, index, low, high; zoeVec vec; zoeFeatureVec store = zoeNewFeatureVec(); zoeFeatureVec keep; zoeFeature f, last_feature; low = start / REGION_SIZE; high = end / REGION_SIZE; for (index = low; index <= high; index++) { sprintf(string, "%d", index); vec = zoeGetHash(ft->region, string); if (vec) { for (i = 0; i < vec->size; i++) { f = vec->elem[i]; if (f->end < start || f->start > end) continue; zoePushFeatureVec(store, f); } } } if (store->size <= 1) { return store; } /* must prune redundancies - sort, remove dups */ qsort(store->elem, store->size, sizeof(zoeFeature), zoeFeatureCmpPtr); keep = zoeNewFeatureVec(); last_feature = store->elem[0]; zoePushFeatureVec(keep, store->elem[0]); for (i = 1; i < store->size; i++) { if (zoeFeatureCmp(store->elem[i], last_feature) != 0) { zoePushFeatureVec(keep, store->elem[i]); last_feature = store->elem[i]; } } zoeDeleteFeatureVec(store); return keep; } void zoePadFeatureTable(zoeFeatureTable ft, int padding) { int i; for (i = 0; i < ft->vec->size; i++) { ft->vec->elem[i]->start += padding; ft->vec->elem[i]->end += padding; } } #endif snap-2010-07-28/Zoe/zoeFastaFile.h0000644000175000017500000000160411424066010016207 0ustar moellermoeller/******************************************************************************\ zoeFastaFile.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_FASTA_FILE_H #define ZOE_FASTA_FILE_H #include #include #include #include #include "zoeTools.h" struct zoeFastaFile { coor_t length; char * def; char * seq; }; typedef struct zoeFastaFile * zoeFastaFile; void zoeDeleteFastaFile (zoeFastaFile); zoeFastaFile zoeNewFastaFile (const char *, const char *); zoeFastaFile zoeReadFastaFile (FILE *); zoeFastaFile zoeGetFastaFile (const char *); void zoeSetFastaLineLength (unsigned int); void zoeWriteFastaFile (FILE *, const zoeFastaFile); zoeFastaFile zoeGetFastaFile(const char *); #endif snap-2010-07-28/Zoe/zoeHMM.h0000644000175000017500000000401711424066010014773 0ustar moellermoeller/******************************************************************************\ zoeHMM.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_HMM_H #define ZOE_HMM_H #include #include #include #include "zoeDuration.h" #include "zoeState.h" #include "zoeModel.h" #include "zoeFeature.h" #include "zoePhasePref.h" #include "zoeTransition.h" #include "zoeTools.h" struct zoeHMM { /* general attributes */ char * name; /* completely arbitrary */ int states; /* number of states in the HMM */ int transitions; /* number of transtions in the HMM */ int durations; /* number of duration models */ int models; /* number of sequence models */ /* object storage */ zoeState * state; /* array of zoeState */ zoeTransition * transition; /* array of zoeTransition */ zoeDuration * duration; /* array of zoeDuration */ zoeModel * model; /* array of zoeModel */ zoePhasePref phasepref; /* exon-intron phase preferences */ /* object mapping */ zoeDuration dmap[zoeLABELS]; /* durations */ zoeModel mmap[zoeLABELS]; /* models */ zoeState smap[zoeLABELS]; /* states */ zoeIVec jmap[zoeLABELS][zoeLABELS]; /* jump list (reverse arrows) */ score_t imap[zoeLABELS]; /* initial probability */ score_t kmap[zoeLABELS]; /* terminal probability */ score_t xmap[zoeLABELS]; /* geometric extension score */ score_t tmap[zoeLABELS][zoeLABELS]; /* transition score */ coor_t cmap[zoeLABELS]; /* coordinate adjustments */ }; typedef struct zoeHMM * zoeHMM; void zoeSetNscore (zoeLabel, score_t); void zoeSetAscore (zoeLabel, score_t); void zoeDeleteHMM (zoeHMM); zoeHMM zoeNewHMM (void); zoeHMM zoeReadHMM (FILE *); void zoeWriteHMM (FILE *, const zoeHMM); zoeHMM zoeGetHMM (const char *); score_t zoeGetAscore (int); #endif snap-2010-07-28/Zoe/zoeCounter.h0000644000175000017500000000253311424066010015772 0ustar moellermoeller/******************************************************************************\ zoeCounter.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_COUNTER_H #define ZOE_COUNTER_H #include #include #include #include #include "zoeDNA.h" #include "zoeFeature.h" #include "zoeMath.h" #include "zoeModel.h" #include "zoeTools.h" struct zoeCounter { coor_t min_pos; /* minimum scoring position */ coor_t max_pos; /* maximum scoring position */ zoeDNA dna; /* counters require a dna */ zoeDNA anti; /* reverse-complement */ zoeModel model; /* counters require a model */ struct zoeCounter ** subcounter; /* for higher order models */ char * sig; /* binary signature (SDT) */ void (* count) (struct zoeCounter *, coor_t); /* ptr to counting function */ void (* countf)(struct zoeCounter *, zoeFeature); }; typedef struct zoeCounter * zoeCounter; void zoeDeleteCounter (zoeCounter); zoeCounter zoeNewCounter (zoeDNA, zoeDNA, zoeModel); #endif snap-2010-07-28/Zoe/zoeCounter.c0000644000175000017500000002403211424066010015763 0ustar moellermoeller/******************************************************************************\ zoeCounter - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_COUNTER_C #define ZOE_COUNTER_C #include "zoeCounter.h" /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ static char seq2sig (char c) { switch (c) { case 'A': case 'a': return 8; /* 1000 */ case 'C': case 'c': return 4; /* 0100 */ case 'G': case 'g': return 2; /* 0010 */ case 'T': case 't': return 1; /* 0001 */ case 'R': case 'r': return 10; /* 1010 */ case 'Y': case 'y': return 5; /* 0101 */ case 'M': case 'm': return 12; /* 1100 */ case 'K': case 'k': return 3; /* 0011 */ case 'W': case 'w': return 9; /* 1001 */ case 'S': case 's': return 6; /* 0110 */ case 'B': case 'b': return 7; /* 0111 */ case 'D': case 'd': return 11; /* 1011 */ case 'H': case 'h': return 13; /* 1101 */ case 'V': case 'v': return 14; /* 1110 */ case 'N': case 'n': return 15; /* 1111 */ default: zoeWarn("illegal symbols seq2sig"); return 15; } } static int zoeSDTlookup (zoeCounter counter, coor_t mfocus) { char c; int i, j, found, counter_number = -1; /* impossible value */ if (mfocus >= 0) { for (i = 0; i < counter->model->submodels; i++) { found = 1; for (j = 0; j < counter->model->length; j++) { if (counter->subcounter[i]->sig[j] == 15) continue; c = counter->dna->s16[j + mfocus] | counter->subcounter[i]->sig[j]; if (c != counter->subcounter[i]->sig[j]) { found = 0; break; } } if (found) {counter_number = i; break;} } } else { /* reposition mfocus */ mfocus = counter->dna->length -1 + mfocus; for (i = 0; i < counter->model->submodels; i++) { found = 1; for (j = 0; j < counter->model->length; j++) { if (counter->subcounter[i]->sig[j] == 15) continue; /* use counter->anti rather than counter->dna */ c = counter->anti->s16[j + mfocus] | counter->subcounter[i]->sig[j]; if (c != counter->subcounter[i]->sig[j]) { found = 0; break; } } if (found) {counter_number = i; break;} } } if (counter_number == -1) zoeExit("no counter found? zoeCountSDT"); return counter_number; } static void zoeCountWMM(zoeCounter counter, coor_t pos) { coor_t i, mfocus, index; if (pos >= 0) { if ((pos < counter->min_pos) || (pos > counter->max_pos)) return; mfocus = pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { index = (i * counter->model->symbols) + counter->dna->s5[i + mfocus]; counter->model->data[index]++; } } else { if ((-pos < counter->min_pos) || (-pos > counter->max_pos)) return; /* reposition mfocus */ mfocus = counter->dna->length -1 + pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { /* use anti instead of dna */ index = (i * counter->model->symbols) + counter->anti->s5[i + mfocus]; counter->model->data[index]++; } } } static void zoeCountLUT(zoeCounter counter, coor_t pos) { coor_t i, p, index, mfocus; index = 0; if (pos >= 0) { if ((pos < counter->min_pos) || (pos > counter->max_pos)) return; mfocus = pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { p = zoePOWER[counter->model->symbols][counter->model->length -i -1]; index += (p * counter->dna->s5[i + mfocus]); } } else { if ((-pos < counter->min_pos) || (-pos > counter->max_pos)) return; /* reposition mfocus */ mfocus = counter->dna->length -1 + pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { p = zoePOWER[counter->model->symbols][counter->model->length -i -1]; /* use anti instead of dna */ index += (p * counter->anti->s5[i + mfocus]); } } counter->model->data[index]++; } static void zoeCountSAM(zoeCounter counter, coor_t pos) { coor_t i, mfocus; if (pos >= 0) { if ((pos < counter->min_pos) || (pos > counter->max_pos)) return; mfocus = pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { counter->subcounter[i]->count(counter->subcounter[i], i + mfocus); } } else { pos = -pos; if ((pos < counter->min_pos) || (pos > counter->max_pos)) return; mfocus = counter->dna->length -1 + pos - counter->model->focus; for (i = 0; i < counter->model->length; i++) { counter->subcounter[i]->count(counter->subcounter[i], -i - mfocus); } } } static void zoeCountSDT(zoeCounter counter, coor_t pos) { int counter_number, mfocus; if (pos >= 0) {if (( pos < counter->min_pos) || ( pos > counter->max_pos)) return;} else {if ((-pos < counter->min_pos) || (-pos > counter->max_pos)) return;} mfocus = pos - counter->model->focus; counter_number = zoeSDTlookup(counter, mfocus); counter->subcounter[counter_number]->count(counter->subcounter[counter_number], pos); } static void zoeCountMIX(zoeCounter counter, coor_t pos) { zoeExit("zoeCountMIX is not yet enabled, need mix ratio"); } static void zoeCountTRM(zoeCounter counter, coor_t pos) { return; } static void zoeCountFeature (zoeCounter counter, zoeFeature f) { coor_t i; if (f->strand == '+') { for (i = f->start; i <= f->end; i++) { counter->count(counter, i); } } else { for (i = f->start; i <= f->end; i++) { counter->count(counter, -i); } } } static void zoeCountCDS (zoeCounter counter, zoeFeature f) { coor_t i; int n; /* should be frame_t but screw casting */ int start = 0, end = 0; if (f->strand == '+') { switch (f->label) { case Einit: case Exon: start = f->start +6; /* make room for 5th order Markov Model */ end = f->end; /* this is a hard-coded hack */ break; case Eterm: case Esngl: start = f->start +6; end = f->end -3; /* don't include stop codon */ break; default: zoeExit("attempt to score CDS with non-exon"); } for (i = start; i <= end; i++) { n = (i -start +4 - f->inc5) % 3; counter->subcounter[n]->count(counter->subcounter[n], i); } } else { switch (f->label) { case Einit: case Exon: start = f->start; /* make room for 5th order Markov Model */ end = f->end -6; /* this is a hard-coded hack */ break; case Eterm: case Esngl: start = f->start +3;/* don't include stop codon */ end = f->end -6; break; default: zoeExit("zoeCountCDS: attempt to count CDS with non-exon"); } for (i = start; i <= end; i++) { n = (i -start +3 - f->inc5) % 3; switch (n) { case 0: n = 0; break; case 1: n = 2; break; case 2: n = 1; break; } counter->subcounter[n]->count(counter->subcounter[n], -i); /* use neg coor */ } } } static void zoeIllegalCount (zoeCounter s, coor_t p) { zoeExit("illegal count (%s)", s->model->name); } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteCounter(zoeCounter counter) { int i; if (counter == NULL) return; if (counter->model->submodels) { for (i = 0; i < counter->model->submodels; i++) { zoeDeleteCounter(counter->subcounter[i]); counter->subcounter[i] = NULL; } zoeFree(counter->subcounter); counter->subcounter = NULL; } if (counter->sig) { zoeFree(counter->sig); counter->sig = NULL; } counter->model = NULL; counter->dna = NULL; counter->anti = NULL; zoeFree(counter); counter = NULL; } zoeCounter zoeNewCounter(zoeDNA dna, zoeDNA anti, zoeModel model) { int i, j; zoeCounter counter = zoeMalloc(sizeof(struct zoeCounter)); /* determine scoring region */ counter->min_pos = model->length; counter->max_pos = dna->length - model->length -1; /* set dna and model, clear pointers */ counter->dna = dna; counter->anti = anti; counter->model = model; counter->subcounter = NULL; counter->sig = NULL; counter->count = NULL; counter->countf = NULL; /* bind scoring and counting functions to type of model */ switch (model->type) { case WMM: counter->count = zoeCountWMM; break; case LUT: counter->count = zoeCountLUT; break; case SAM: counter->count = zoeCountSAM; break; case SDT: counter->count = zoeCountSDT; break; case MIX: counter->count = zoeCountMIX; break; case TRM: counter->count = zoeCountTRM; break; default: counter->count = zoeIllegalCount; } /* bind range counting and scoring functions */ switch (model->type) { case CDS: counter->countf = zoeCountCDS; break; default: counter->countf = zoeCountFeature; } /* create subcounters for constructed types */ if (model->type == WMM || model->type == LUT || model->type == TRM) { counter->subcounter = NULL; } else { counter->subcounter = zoeMalloc(model->submodels * sizeof(zoeCounter)); for (i = 0; i< model->submodels; i++) counter->subcounter[i] = zoeNewCounter(dna, anti, model->submodel[i]); } /* create decision tree for SDT */ if (model->type == SDT) { /* create sigs for submodels */ counter->sig = zoeMalloc(model->submodels); for (i = 0; i < model->submodels; i++) { counter->subcounter[i]->sig = zoeMalloc(model->length); for (j = 0; j < model->length; j++) { counter->subcounter[i]->sig[j] = seq2sig(model->submodel[i]->name[j]); } } } else { counter->sig = NULL; } return counter; } #endif snap-2010-07-28/Zoe/zoeIsochore.c0000644000175000017500000000646011424066010016124 0ustar moellermoeller/******************************************************************************\ zoeIsochore.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_ISOCHORE_C #define ZOE_ISOCHORE_C #include "zoeHMM.h" #include "zoeIsochore.h" void zoeDeleteIsochore (zoeIsochore iso) { int i; zoeHMM hmm; if (iso->min_GC) { zoeDeleteFVec(iso->min_GC); iso->min_GC = NULL; } if (iso->max_GC) { zoeDeleteFVec(iso->max_GC); iso->max_GC = NULL; } if (iso->hmm_file) { zoeDeleteTVec(iso->hmm_file); iso->hmm_file = NULL; } if (iso->hmms) { for (i = 0; i < iso->hmms->size; i++) { hmm = iso->hmms->elem[i]; zoeDeleteHMM(hmm); hmm = NULL; } zoeDeleteVec(iso->hmms); } } zoeIsochore zoeNewIsochore (void) { zoeIsochore iso = zoeMalloc(sizeof(struct zoeIsochore)); iso->count = 0; iso->min_GC = zoeNewFVec(); iso->max_GC = zoeNewFVec(); iso->hmm_file = zoeNewTVec(); iso->hmms = zoeNewVec(); return iso; } zoeIsochore zoeReadIsochore (FILE * stream) { char name[256]; int i, count; float min, max; zoeIsochore iso = zoeNewIsochore(); zoeHMM hmm; if (fscanf(stream, "%s %d", name, &count) != 2) zoeExit("zoeReadIsochore failed to read header"); if (strcmp(name, "zoeIsochore") != 0) zoeExit("zoeReadIsochore found an unrecognized file type"); iso->count = count; for (i = 0; i < count; i++) { if (fscanf(stream, "%f %f %s", &min, &max, name) != 3) zoeExit("zoeReadIsochore format error"); zoePushFVec(iso->min_GC, min); zoePushFVec(iso->max_GC, max); zoePushTVec(iso->hmm_file, name); hmm = zoeGetHMM(name); zoePushVec(iso->hmms, hmm); } return iso; } zoeIsochore zoeGetIsochore (const char * file) { FILE * stream = NULL; zoeIsochore iso = NULL; char * ZOE = getenv("ZOE"); char path[1024]; stream = fopen(file, "r"); if (stream == NULL) { sprintf(path, "%s/HMM/%s", ZOE, file); stream = fopen(path, "r"); if (stream == NULL) { zoeExit("error opening isochore file"); } } iso = zoeReadIsochore(stream); if (iso == NULL) zoeExit("error reading isochore file"); (void)fclose(stream); return(iso); } zoeHMM zoeSelectIsochore (const zoeIsochore iso, float GC_fraction) { int i; float min, max; zoeHMM hmm; for (i = 0; i < iso->hmms->size; i++) { min = iso->min_GC->elem[i]; max = iso->max_GC->elem[i]; hmm = iso->hmms->elem[i]; if (GC_fraction > min && GC_fraction < max) return hmm; } zoeExit("zoeSelectIsochore could not find a valid isochore for %f", GC_fraction); return NULL; } #endif snap-2010-07-28/Zoe/zoeTrellis.c0000644000175000017500000010161111424066010015761 0ustar moellermoeller/******************************************************************************\ zoeTrellis.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_TRELLIS_C #define ZOE_TRELLIS_C #include "zoeTrellis.h" /****************************************************************************\ PRIVATE FUNCTIONS \****************************************************************************/ /* void zoePrintTerminalBase (int num) { switch (num) { case 0: printf("none"); break; case 1: printf("A"); break; case 2: printf("C"); break; case 3: printf("G"); break; case 4: printf("T"); break; case 5: printf("N"); break; case 6: printf("AA"); break; case 7: printf("AC"); break; case 8: printf("AG"); break; case 9: printf("AT"); break; case 10: printf("AN"); break; case 11: printf("CA"); break; case 12: printf("CC"); break; case 13: printf("CG"); break; case 14: printf("CT"); break; case 15: printf("CN"); break; case 16: printf("GA"); break; case 17: printf("GC"); break; case 18: printf("GG"); break; case 19: printf("GT"); break; case 20: printf("GN"); break; case 21: printf("TA"); break; case 22: printf("TC"); break; case 23: printf("TG"); break; case 24: printf("TT"); break; case 25: printf("TN"); break; case 26: printf("NA"); break; case 27: printf("NC"); break; case 28: printf("NG"); break; case 29: printf("NT"); break; case 30: printf("NN"); break; default: zoeExit("impossible error in zoePrintTerminalBase"); } } */ static int PADDING = 48; static int PROGRESS_METER = 1; struct my_max { zoeLabel state; coor_t coor; score_t score; }; static void delete_external_features (zoeTrellis trellis) { int state; for (state = 0; state < zoeLABELS; state++) { if (trellis->features[state] == NULL) continue; zoeDeleteFeatureVec(trellis->features[state]); trellis->features[state] = NULL; } } static void transfer_exons (zoeTrellis trellis, zoeFeatureVec sfv) { int i; coor_t length; zoeFeature exon; for (i = 0; i < sfv->size; i++) { exon = sfv->elem[i]; /* min length filter */ length = exon->end - exon->start + 1; if (length < trellis->min_len[exon->label]) continue; /* padding filter */ if (exon->start < PADDING) continue; if (exon->end >= trellis->dna->length) continue; /* create if necessary */ if (trellis->features[exon->label] == NULL) { trellis->features[exon->label] = zoeNewFeatureVec(); } zoePushFeatureVec(trellis->features[exon->label], exon); } } static void compute_external_features (zoeTrellis trellis, coor_t pos) { zoeFeatureFactory factory; zoeFeatureVec sfv; int state; for (state = 0; state < zoeLABELS; state++) { if (trellis->factory[state] == NULL) continue; factory = trellis->factory[state]; if (factory == NULL) continue; sfv = factory->create(factory, pos); if (sfv == NULL) continue; switch (state) { case Exon: transfer_exons(trellis, sfv); zoeDeleteFeatureVec(sfv); break; default: if (sfv->last->start < PADDING) sfv->last->start = PADDING; trellis->features[state] = sfv; } } } static int legal_first_jump (zoeLabel int_state, zoeFeature exon) { switch (int_state) { case Int0: if (exon->inc5 == 0) return 1; else return 0; case Int1: case Int1T: if (exon->inc5 == 2) return 1; else return 0; case Int2: case Int2TA: case Int2TG: if (exon->inc5 == 1) return 1; else return 0; default: return 1; } } static int legal_second_jump (zoeDNA dna, zoeFeature exon, zoeLabel int_state) { int terminal_base; switch (exon->inc3) { case 1: terminal_base = dna->s5[exon->end] +1; break; case 2: terminal_base = (dna->s5[exon->end -1] +1) * 5 + dna->s5[exon->end] +1; break; default: terminal_base = 0; } switch (int_state) { case Int0: /* must have no terminal bases */ switch (terminal_base) { case 0: return 1; default: return 0; } case Int1: /* must have one terminal, but not T */ switch (terminal_base) { case 1: case 2: case 3: case 5: return 1; default: return 0; } case Int1T: /* must have terminal T */ switch (terminal_base) { case 4: return 1; default: return 0; } case Int2: /* must have two terminals, but not TA or TG */ if (terminal_base > 5 && terminal_base != 21 && terminal_base != 23) return 1; else return 0; case Int2TA: /* must have terminal TA */ switch (terminal_base) { case 21: return 1; default: return 0; } case Int2TG: /* must have terminal TG */ switch (terminal_base) { case 23: return 1; default: return 0; } default: return 1; } } static int creates_stop_codon (zoeDNA dna, zoeLabel pre_state, zoeFeature exon) { int initial_base; switch (exon->inc5) { case 1: initial_base = dna->s5[exon->start] + 1; break; case 2: initial_base = (dna->s5[exon->start] + 1) * 5 + dna->s5[exon->start +1] + 1; break; default: initial_base = 0; } switch (pre_state) { case Int1T: switch (initial_base) { case 6: case 8: case 16: return 1; /* T + {AA, AG, GA} */ default: return 0; } case Int2TA: switch (initial_base) { case 1: case 3: return 1; /* TA + {A, G} */ default: return 0; } case Int2TG: switch (initial_base) { case 1: return 1; /* TG + A */ default: return 0; } default: return 0; } } static score_t pre_state_duration_score (zoeTrellis trellis, zoeLabel state, int int_end) { int i, stop, length; /* geometric */ if (trellis->hmm->smap[state]->geometric) /* length 1 geometric cost */ return zoeScoreDuration(trellis->hmm->dmap[state], 1); /* explicit */ stop = PADDING; for (i = int_end; i > stop; i--) if (trellis->trace[state][i] != -1) break; length = int_end -i + 1 + trellis->hmm->cmap[state]; if (length < trellis->min_len[state]) return MIN_SCORE; else return zoeScoreDuration(trellis->hmm->dmap[state], length); /* error to reach */ zoeExit("should not get here in pre-state duration score"); return MIN_SCORE; } static score_t internal_score (zoeTrellis trellis, zoeLabel state, coor_t i) { zoeScanner scanner; score_t content_score, extend_score, prev_score; if (trellis->score[state][i-1] == MIN_SCORE) return MIN_SCORE; /* keep MIN_SCORE */ scanner = trellis->scanner[state]; content_score = scanner->score(scanner, i); extend_score = trellis->hmm->xmap[state]; prev_score = trellis->score[state][i-1]; return content_score + extend_score + prev_score - trellis->exp_score; } struct maxExt { score_t score; zoeFeature feature; zoeLabel pre_state; }; static struct maxExt external_score ( zoeTrellis trellis, coor_t pos, zoeLabel int_state) { int i, j, length; score_t cscore, dscore, t1score, t2score, phscore1, phscore2, xscore, total_score, pre_score, exp_score, pro_score = 0; zoeLabel pre_state, ext_state; zoeIVec ivec; zoeFeature f; zoeHMM hmm = trellis->hmm; zoeDNA dna = trellis->dna; zoeFeatureVec sfv; struct maxExt max; max.score = MIN_SCORE; max.feature = NULL; max.pre_state = -1; /* pre_state ext_state int_state -----------------|||||||||||||||||||||------------ intron exon intron -> -> transition1 transition2 <---------------| xscore ...[......content......]... <------duration-----> */ /* external states */ for (ext_state = 0; ext_state < zoeLABELS; ext_state++) { if (hmm->jmap[int_state][ext_state] == NULL) continue; ivec = hmm->jmap[int_state][ext_state]; for (i = 0; i < ivec->size; i++) { pre_state = ivec->elem[i]; sfv = trellis->features[ext_state]; if (sfv == NULL) continue; for (j = 0; j < sfv->size; j++) { f = sfv->elem[j]; length = f->end - f->start +1; pre_score = trellis->score[pre_state][pos -length]; /* filters */ if (pre_score == MIN_SCORE) continue; if (f->label == Repeat || f->label == ORF || f->label == CNS) { if (pre_state != int_state) continue; /* shuttle */ } else { if (!legal_first_jump(pre_state, f)) continue; if (!legal_second_jump(dna, f, int_state)) continue; if (creates_stop_codon(dna, pre_state, f)) continue; } /* pre-state duration score */ xscore = pre_state_duration_score(trellis, pre_state, f->start -1); if (xscore == MIN_SCORE) continue; /* expected score */ exp_score = trellis->exp_score * (f->end - f->start +1); f->score -= exp_score; /* 'exon' scores */ cscore = f->score; dscore = zoeScoreDuration(hmm->dmap[f->label], length); /* transition scores */ t1score = hmm->tmap[f->label][int_state]; t2score = hmm->tmap[pre_state][f->label]; /* phase scores & profile score */ switch (ext_state) { case Einit: case Eterm: case Exon: case Esngl: phscore1 = zoeScorePhase(hmm->phasepref, pre_state, ext_state, 0); phscore2 = zoeScorePhase(hmm->phasepref, ext_state, int_state, f->inc5); if (trellis->ext) { pro_score = trellis->ext(trellis, pos, pre_state, f); f->score += pro_score; } break; default: phscore1 = 0; phscore2 = 0; pro_score = 0; } /* total score */ total_score = cscore + dscore + t1score + t2score + xscore + pre_score + phscore1 + phscore2 + pro_score; if (total_score > max.score) { zoeDeleteFeature(max.feature); max.score = total_score; max.pre_state = pre_state; max.feature = zoeCopyFeature(f); } } } } return max; } static zoeFeatureVec trace_trellis (zoeTrellis trellis, zoeLabel state) { zoeFeatureVec sfv; int i, int_end; zoeFeature estate = NULL, istate = NULL; int trace, length; score_t expected; sfv = zoeNewFeatureVec(); i = trellis->dna->length -1 -PADDING; int_end = i; while (i > PADDING) { i--; trace = trellis->trace[state][i]; if (trace < 0) continue; /* internal state */ istate = zoeNewFeature( state, i, int_end, '+', 0, 0, 0, 0, NULL/*, NULL*/); istate->score = trellis->scanner[state]->scoref(trellis->scanner[state], istate); zoePushFeatureVec(sfv, istate); zoeDeleteFeature(istate); /* external state */ estate = trellis->keep->elem[trace]; if (estate->label == Repeat && estate->start < PADDING) estate->start = PADDING; /* Repeats and PADDING conspire to madness */ zoePushFeatureVec(sfv, estate); /* update */ state = trellis->jump->elem[trace]; i = estate->start -1; int_end = i; } if (sfv->size == 0) return sfv; istate = zoeNewFeature( state, i, int_end, '+', trellis->scanner[state]->scoref(trellis->scanner[state], istate), 0, 0, 0, NULL/*, NULL*/); zoePushFeatureVec(sfv, istate); zoeDeleteFeature(istate); /* rescore with expected */ for (i = 0; i < sfv->size; i++) { length = sfv->elem[i]->end - sfv->elem[i]->start +1; expected = length * trellis->exp_score; sfv->elem[i]->score -= expected; } return sfv; } static zoeFeatureTable label_genes (const char *def, zoeFeatureVec features) { int i, group; char id[64], name[256]; zoeFeature f; zoeFeatureTable table = zoeNewFeatureTable(def, NULL); if (features->size == 0) return table; strncpy(id, def, 63); for (i = 0; i < strlen(id); i++) { if (isspace((int)id[i]) || i == 63) { id[i] = '\0'; break; } } group = features->last->label == Inter ? 0 : 1; sprintf(name, "%s-snap.%d", id, group); for (i = features->size -1; i >= 0; i--) { f = features->elem[i]; switch (f->label) { case Inter: case None: /* gene delimiters */ group++; sprintf(name, "%s-snap.%d", id, group); zoeAddFeature(table, f); break; case Esngl: case Eterm: f->end += 3; /* intentional fall through! */ case Exon: case Einit: f->group = name; zoeAddFeature(table, f); f->group = NULL; break; case Int0: case Int1: case Int1T: case Int2: case Int2TA: case Int2TG: /* rename all specific introns to general */ f->label = Intron; f->group = name; zoeAddFeature(table, f); f->group = NULL; break; default: f->group = name; zoeAddFeature(table, f); f->group = NULL; break; } } return table; } static void xdefine_intron (zoeTrellis trellis, const zoeFeature intron) { int i; score_t s; if (strcmp(intron->group, "SET") == 0) { for (i = intron->start +3; i <= intron->end -3; i++) { zoeSetScannerScore(trellis->scanner[Int0], i, intron->score); zoeSetScannerScore(trellis->scanner[Int1], i, intron->score); zoeSetScannerScore(trellis->scanner[Int1T], i, intron->score); zoeSetScannerScore(trellis->scanner[Int2], i, intron->score); zoeSetScannerScore(trellis->scanner[Int2TA], i, intron->score); zoeSetScannerScore(trellis->scanner[Int2TG], i, intron->score); } } else if (strcmp(intron->group, "ADJ") == 0) { for (i = intron->start +3; i <= intron->end -3; i++) { s = trellis->scanner[Int0]->score(trellis->scanner[Int0], i); s += intron->score; zoeSetScannerScore(trellis->scanner[Int0], i, s); zoeSetScannerScore(trellis->scanner[Int1], i, s); zoeSetScannerScore(trellis->scanner[Int1T], i, s); zoeSetScannerScore(trellis->scanner[Int2], i, s); zoeSetScannerScore(trellis->scanner[Int2TA], i, s); zoeSetScannerScore(trellis->scanner[Int2TG], i, s); } } else { zoeExit("unrecognized command (%s)", intron->group); } } static void xdefine_coding (zoeTrellis trellis, const zoeFeature coding) { int i, j; score_t s; zoeScanner scan = trellis->scanner[Coding]; zoeScanner sub; /* Note: this function does not discriminate among the various frames. It SETs or ADJusts all coding scores in the region regardless of frame. Why? Because I'm currently lazy and I haven't the time to debug the frame just now. It does not change stop codons from having MIN_SCORE however. */ if (strcmp(coding->group, "SET") == 0) { for (i = coding->start +3; i <= coding->end -3; i++) { for (j = 0; j < 3; j++) { sub = scan->subscanner[j]; s = sub->score(sub, i); if (s != MIN_SCORE) { zoeSetScannerScore(sub, i, coding->score); } } } } else if (strcmp(coding->group, "ADJ") == 0) { for (i = coding->start +3; i <= coding->end -3; i++) { for (j = 0; j < 3; j++) { sub = scan->subscanner[j]; s = sub->score(sub, i); if (s != MIN_SCORE) { zoeSetScannerScore(sub, i, s + coding->score); } } } } else { zoeExit("unrecognized command (%s)", coding->group); } } static void adefine_trellis (zoeTrellis trellis, zoeLabel label) { int i, j; score_t score, ascore; zoeScanner scanner; ascore = zoeGetAscore(label); switch (label) { case Acceptor: case Donor: case Start: case Stop: case Inter: scanner = trellis->scanner[label]; for (i = 0; i < trellis->dna->length; i++) { score = scanner->score(scanner, i); if (score == MIN_SCORE) continue; zoeSetScannerScore(scanner, i, score + ascore); } break; case Intron: for (j = Int0; j <= Int2TA; j++) { scanner = trellis->scanner[j]; for (i = 0; i < trellis->dna->length; i++) { score = scanner->score(scanner, i); if (score == MIN_SCORE) continue; zoeSetScannerScore(scanner, i, score + ascore); } } break; case Coding: for (j = 0; j < 3; j++) { scanner = trellis->scanner[label]->subscanner[j]; for (i = 0; i < trellis->dna->length; i++) { score = scanner->score(scanner, i); if (score == MIN_SCORE) continue; zoeSetScannerScore(scanner, i, score + ascore); } } break; default: zoeExit("Ascore not yet implemented for %d", label); } } static void xdefine_trellis (zoeTrellis trellis, const zoeFeatureVec vec) { int i, j; zoeScanner scanner; zoeFeature f; score_t score; char name[32]; /* copy all features and pad */ trellis->xdef = zoeNewFeatureVec(); for (i = 0; i < vec->size; i++) { f = vec->elem[i]; zoePushFeatureVec(trellis->xdef, f); trellis->xdef->last->start += PADDING; trellis->xdef->last->end += PADDING; } /* xdef loop */ for (i = 0; i < trellis->xdef->size; i++) { f = trellis->xdef->elem[i]; /* coordinate checks */ if (f->start < PADDING || f->end > trellis->dna->length) { zoeExit("xdef out of bounds (%d)", f->end -PADDING +1); } /* scanner check */ scanner = trellis->scanner[f->label]; if (f->label != Intron && scanner == NULL) { zoeLabel2Text(f->label, name); zoeWriteFeature(stderr, f); zoeExit("attempt to xdef trellis with unknown scanner (%s)", name); } /* command check */ if (f->group == NULL) { zoeWriteFeature(stderr, f); zoeExit("xdef has no command"); } /* xdef */ if (f->label == Intron) { xdefine_intron(trellis, f); } else if (f->label == Coding) { xdefine_coding(trellis, f); } else if (strcmp(f->group, "SET") == 0) { for (j = f->start; j <= f->end; j++) { zoeSetScannerScore(scanner, j, f->score); } } else if (strcmp(f->group, "ADJ") == 0) { for (j = f->start; j <= f->end; j++) { score = scanner->score(scanner, j); score += f->score; zoeSetScannerScore(scanner, j, score); } } else if (strcmp(f->group, "OK") == 0) { zoeExit("OK not advised"); for (j = f->start; j <= f->end; j++) { score = scanner->score(scanner, j); if (score == MIN_SCORE) { zoeSetScannerScore(scanner, j, f->score); } } } else { zoeWriteFeature(stderr, f); zoeExit("unrecognized xdef command (%s)", f->group); } } } static score_t expected_score (const zoeDNA dna) { int i; int count[5]; int total = 0; float freq[4]; score_t score[4]; score_t exp_score = 0; /* init */ for (i = 0; i < 5; i++) count[i] = 0; /* nucleotide composition of dna (ignoring Ns) */ for (i = 0; i < dna->length; i++) count[(int)dna->s5[i]]++; total = count[0] + count[1] + count[2] + count[3]; for (i = 0; i < 4; i++) freq[i] = (float)count[i] / (float)total; /* expected score */ for (i = 0; i < 4; i++) score[i] = zoeFloat2Score(freq[i] / 0.25); /* titus */ for (i = 0; i < 4; i++) exp_score += score[i] * freq[i]; return exp_score; } /****************************************************************************\ PUBLIC FUNCTIONS \****************************************************************************/ void zoeDeleteTrellis (zoeTrellis trellis) { int i; for (i = 0; i < zoeLABELS; i++) { if (trellis->scanner[i] != NULL) zoeDeleteScanner(trellis->scanner[i]); if (trellis->trace[i] != NULL) zoeFree(trellis->trace[i]); if (trellis->score[i] != NULL) zoeFree(trellis->score[i]); if (trellis->factory[i] != NULL) zoeDeleteFeatureFactory(trellis->factory[i]); } zoeDeleteDNA(trellis->dna); zoeDeleteDNA(trellis->anti); zoeDeleteFeatureVec(trellis->keep); zoeDeleteIVec(trellis->jump); zoeFree(trellis); } zoeTrellis zoeNewTrellis ( const zoeDNA real_dna, const zoeHMM hmm, const zoeFeatureVec xdef) { int i, label; zoeState state; zoeDNA dna, anti; zoeTrellis trellis; int MinimumRepeatLength = 10; int MinimumORFScore = 0; trellis = zoeMalloc(sizeof(struct zoeTrellis)); /* clear out pointers */ trellis->dna = NULL; trellis->hmm = NULL; trellis->ext = NULL; for (label = 0; label < zoeLABELS; label++) { trellis->scanner[label] = NULL; trellis->trace[label] = NULL; trellis->score[label] = NULL; trellis->factory[label] = NULL; trellis->internal[label] = 0; trellis->features[label] = NULL; } /* initial setup */ dna = zoeMakePaddedDNA(real_dna, PADDING); anti = zoeAntiDNA(dna->def, dna); trellis->dna = dna; trellis->anti = anti; trellis->hmm = hmm; trellis->xdef = xdef; trellis->max_score = MIN_SCORE; trellis->exp_score = expected_score(real_dna); trellis->keep = zoeNewFeatureVec(); trellis->jump = zoeNewIVec(); /* create scanners */ for (label = 0; label < zoeLABELS; label++) { if (hmm->mmap[label] == NULL) continue; trellis->scanner[label] = zoeNewScanner(dna, anti, hmm->mmap[label]); } /* modify scanners with arbitrary scoring filters */ for (label = 0; label < zoeLABELS; label++) { if (zoeGetAscore(label) != 0) adefine_trellis(trellis, label); } /* modify scanners with external information */ if (xdef) xdefine_trellis(trellis, xdef); /* create factories for external & shuttle states */ if (PROGRESS_METER) zoeE("scoring"); for (i = 0; i < hmm->states; i++) { state = hmm->state[i]; if (state->type == INTERNAL) continue; if (PROGRESS_METER) zoeE("."); switch (state->label) { case Exon: case Einit: case Eterm: case Esngl: if (trellis->factory[Exon]) break; /* set only once */ trellis->factory[Exon] = zoeNewEFactory( trellis->scanner[Coding], trellis->scanner[Acceptor], trellis->scanner[Donor], trellis->scanner[Start], trellis->scanner[Stop]); break; case Repeat: trellis->factory[Repeat] = zoeNewRFactory( trellis->scanner[Repeat], MinimumRepeatLength); break; case PolyA: trellis->factory[PolyA] = zoeNewSFactory(trellis->scanner[PolyA], PolyA); break; case Prom: trellis->factory[Prom] = zoeNewSFactory(trellis->scanner[Prom], Prom); break; case TSS: trellis->factory[TSS] = zoeNewSFactory(trellis->scanner[TSS], TSS); break; case ORF: trellis->factory[ORF] = zoeNewXFactory( trellis->scanner[Coding], trellis->scanner[Acceptor], trellis->scanner[Donor], trellis->scanner[Start], trellis->scanner[Stop], state->min, MinimumORFScore); break; default: zoeExit("zoeNewTrellis: can't make such a factory\n"); break; } } /* trace & scores: 2D matrices */ for (i = 0; i < hmm->states; i++) { state = hmm->state[i]; if (state->type != INTERNAL) continue; if (state->label == Intron) { trellis->internal[Int0] = 1; trellis->internal[Int1] = 1; trellis->internal[Int1T] = 1; trellis->internal[Int2] = 1; trellis->internal[Int2TA] = 1; trellis->internal[Int2TG] = 1; trellis->trace[Int0] = zoeCalloc(dna->length, sizeof(int)); trellis->trace[Int1] = zoeCalloc(dna->length, sizeof(int)); trellis->trace[Int1T] = zoeCalloc(dna->length, sizeof(int)); trellis->trace[Int2] = zoeCalloc(dna->length, sizeof(int)); trellis->trace[Int2TA] = zoeCalloc(dna->length, sizeof(int)); trellis->trace[Int2TG] = zoeCalloc(dna->length, sizeof(int)); trellis->score[Int0] = zoeCalloc(dna->length, sizeof(score_t)); trellis->score[Int1] = zoeCalloc(dna->length, sizeof(score_t)); trellis->score[Int1T] = zoeCalloc(dna->length, sizeof(score_t)); trellis->score[Int2] = zoeCalloc(dna->length, sizeof(score_t)); trellis->score[Int2TA] = zoeCalloc(dna->length, sizeof(score_t)); trellis->score[Int2TG] = zoeCalloc(dna->length, sizeof(score_t)); } else { trellis->internal[state->label] = 1; trellis->trace[state->label] = zoeCalloc(dna->length, sizeof(int)); trellis->score[state->label] = zoeCalloc(dna->length, sizeof(score_t)); } } /* minimum and maximum lengths */ for (label = 0; label < zoeLABELS; label++) { if (hmm->smap[label] == NULL) continue; trellis->min_len[label] = hmm->smap[label]->min; trellis->max_len[label] = hmm->smap[label]->max; } return trellis; } zoeVec zoePredictGenes (zoeTrellis trellis) { coor_t i; /* iterator for sequence */ int j; /* iterator for internal states */ score_t iscore; /* score of internal path */ zoeHMM hmm = trellis->hmm; zoeDNA dna = trellis->dna; zoeFeatureTable table; zoeFeatureVec features; zoeVec genes; zoeCDS gene; zoeLabel max_state; score_t max_score; score_t terminal_score; struct maxExt emax; int progress; int percent; /*-------------------------------------------------* | [0] [1] [2] [3] [4] [5] [6] [7] ... | | (None) [0] | | (Inter) [1] X | | (...) [2] | | : X = trellis->cell[1][3] | | : cell[j][i] | *-------------------------------------------------*/ /* initialization */ for (j = 0; j < zoeLABELS; j++) { if (trellis->internal[j] == 0) continue; for (i = 0; i <= PADDING; i++) { trellis->score[j][i] = hmm->imap[j]; trellis->trace[j][i] = -1; } } /* induction */ if (PROGRESS_METER) zoeE("decoding"); progress = dna->length / 20; percent = 0; for (i = PADDING; i < dna->length - PADDING; i++) { if (PROGRESS_METER && i % progress == 0) { if (i % (progress * 2) == 0) { percent += 10; zoeE("%d", percent); } else { zoeE("."); } } compute_external_features(trellis, i); for (j = 0; j < zoeLABELS; j++) { if (trellis->internal[j] == 0) continue; iscore = internal_score(trellis, j, i); emax = external_score(trellis, i, j); if (iscore == MIN_SCORE && emax.score == MIN_SCORE) { trellis->score[j][i] = MIN_SCORE; trellis->trace[j][i] = -1; } else if (iscore == MIN_SCORE || emax.score > iscore) { trellis->score[j][i] = emax.score; trellis->trace[j][i] = trellis->keep->size; zoePushFeatureVec(trellis->keep, emax.feature); zoePushIVec(trellis->jump, emax.pre_state); } else if (emax.score == MIN_SCORE || emax.score <= iscore) { trellis->score[j][i] = iscore; trellis->trace[j][i] = -1; } else { zoeExit("um, didn't think that was possible"); } if (emax.feature) zoeDeleteFeature(emax.feature); } delete_external_features(trellis); } if (PROGRESS_METER) zoeE("100"); /* find maximum ending state */ max_state = None; max_score = MIN_SCORE; for (j = 0; j < zoeLABELS; j++) { if (trellis->internal[j] == 0) continue; if (hmm->kmap[j] == MIN_SCORE) continue; /* no sense computing */ terminal_score = hmm->kmap[j] + trellis->score[j][dna->length -1 -PADDING]; if (terminal_score > max_score) { max_state = j; max_score = terminal_score; } } if (max_score == MIN_SCORE) zoeExit("traceback from MIN_SCORE"); trellis->max_score = max_score; /* get genes from trace-back */ features = trace_trellis(trellis, max_state); table = label_genes(dna->def, features); genes = zoeGetGenes(table, dna); /* score all genes - except when using external scoring function */ if (!trellis->ext) { for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; zoeScoreCDS(trellis, gene, 1, 0); /* erasing the external scores! */ } } /* remove padding */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; gene->start -= PADDING; gene->end -= PADDING; for (j = 0; j < gene->exons->size; j++) { gene->exons->elem[j]->start -= PADDING; gene->exons->elem[j]->end -= PADDING; } for (j = 0; j < gene->introns->size; j++) { gene->introns->elem[j]->start -= PADDING; gene->introns->elem[j]->end -= PADDING; } for (j = 0; j < gene->source->size; j++) { gene->source->elem[j]->start -= PADDING; gene->source->elem[j]->end -= PADDING; } } /* clean up */ zoeDeleteFeatureVec(features); zoeDeleteFeatureTable(table); if (PROGRESS_METER) zoeE(" done\n"); return genes; } void zoeScoreCDS (zoeTrellis t, zoeCDS cds, int padded, int error_ok) { int i; cds->score = 0; for (i = 0; i < cds->exons->size; i++) { cds->exons->elem[i]->score = zoeScoreExon(t, cds->exons->elem[i], padded, error_ok); cds->score += cds->exons->elem[i]->score; } for (i = 0; i < cds->introns->size; i++) { cds->introns->elem[i]->score = zoeScoreIntron(t, cds->introns->elem[i], padded); cds->score += cds->introns->elem[i]->score; } } void zoeSetTrellisMeter (int val) { PROGRESS_METER = val; } void zoeSetTrellisPadding (int val) { PADDING = val; } char* zoeGetPartialProtein (zoeTrellis trellis, zoeLabel pre_state, zoeFeature last_exon) { zoeFeatureVec sfv; zoeFeature feature, exon; int i, j, idx, trace, tx_length; char *tx, *aa; /* get exons */ sfv = zoeNewFeatureVec(); zoePushFeatureVec(sfv, last_exon); i = last_exon->start; while (i > PADDING) { i--; trace = trellis->trace[pre_state][i]; if (trace < 0) continue; feature = trellis->keep->elem[trace]; switch (feature->label) { case Einit: case Eterm: case Esngl: case Exon: zoePushFeatureVec(sfv, feature); break; default: break; } pre_state = trellis->jump->elem[trace]; i = feature->start -1; } if (sfv->size == 0) return NULL; /* transcribe */ tx_length = 0; for (i = sfv->size -1; i >= 0; i--) { exon = sfv->elem[i]; tx_length += exon->end - exon->start +1; } tx = zoeMalloc(tx_length+1); idx = 0; for (i = sfv->size -1; i >= 0; i--) { exon = sfv->elem[i]; for (j = exon->start; j <= exon->end; j++) { tx[idx] = trellis->dna->s5[j]; idx++; } } tx[idx] = '\0'; /* translate */ aa = zoeTranslateS5(tx, tx_length, sfv->elem[sfv->size-1]->inc5); /* clean up */ zoeDeleteFeatureVec(sfv); zoeFree(tx); return aa; } score_t zoeScoreExon (zoeTrellis t, zoeFeature exon, int padded, int error_ok) { zoeScanner scan5, scan3; score_t score, cscore, dscore, xscore, score5, score3; if (!padded) { exon->start += PADDING; exon->end += PADDING; } /* 5'and 3' scores */ if (exon->strand == '+') { switch (exon->label) { case Einit: scan5 = t->scanner[Start]; scan3 = t->scanner[Donor]; score5 = scan5->score(scan5, exon->start); score3 = scan3->score(scan3, exon->end +1); break; case Esngl: scan5 = t->scanner[Start]; scan3 = t->scanner[Stop]; score5 = scan5->score(scan5, exon->start); score3 = scan3->score(scan3, exon->end -2); break; case Eterm: scan5 = t->scanner[Acceptor]; scan3 = t->scanner[Stop]; score5 = scan5->score(scan5, exon->start -1); score3 = scan3->score(scan3, exon->end -2); break; case Exon: scan5 = t->scanner[Acceptor]; scan3 = t->scanner[Donor]; score5 = scan5->score(scan5, exon->start -1); score3 = scan3->score(scan3, exon->end +1); break; default: score5 = 0; score3 = 0; /* optimizer shush */ zoeExit("not possible"); } } else { switch (exon->label) { case Einit: scan5 = t->scanner[Start]; scan3 = t->scanner[Donor]; score5 = scan5->score(scan5, -exon->end); score3 = scan3->score(scan3, -exon->start +1); break; case Esngl: scan5 = t->scanner[Start]; scan3 = t->scanner[Stop]; score5 = scan5->score(scan5, -exon->end); score3 = scan3->score(scan3, -exon->start -2); break; case Eterm: scan5 = t->scanner[Acceptor]; scan3 = t->scanner[Stop]; score5 = scan5->score(scan5, -exon->end -1); score3 = scan3->score(scan3, -exon->start -2); break; case Exon: scan5 = t->scanner[Acceptor]; scan3 = t->scanner[Donor]; score5 = scan5->score(scan5, -exon->end -1); score3 = scan3->score(scan3, -exon->start +1); break; default: score5 = 0; score3 = 0; /* optimizer shush */ zoeExit("not possible"); } } cscore = t->scanner[Coding]->scoref(t->scanner[Coding], exon); dscore = zoeScoreDuration(t->hmm->dmap[exon->label], exon->end - exon->start +1); xscore = t->exp_score * (exon->end - exon->start +1); if (error_ok) { if (cscore < -1000) cscore = 0; if (score5 < -1000) score5 = 0; if (score3 < -1000) score3 = 0; } score = score5 + score3 + cscore + dscore - xscore; if (!padded) { exon->start -= PADDING; exon->end -= PADDING; } return score; } score_t zoeScoreIntron (zoeTrellis t, zoeFeature intron, int padded) { score_t cscore, dscore, xscore; if (!padded) { intron->start += PADDING; intron->end += PADDING; } cscore = t->scanner[Int0]->scoref(t->scanner[Int0], intron); dscore = zoeScoreDuration(t->hmm->dmap[Int0], intron->end - intron->start +1); xscore = t->exp_score * (intron->end - intron->start +1); if (!padded) { intron->start -= PADDING; intron->end -= PADDING; } return cscore + dscore - xscore; } #endif snap-2010-07-28/Zoe/zoeCDS.c0000644000175000017500000005135411424066010014764 0ustar moellermoeller/******************************************************************************\ zoeCDS.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_CDS_C #define ZOE_CDS_C #include #include #include "zoeCDS.h" #include "zoeFeatureTable.h" static int MIN_INTRON = 30; static int MAX_INTRON = 100000; static int MIN_EXON = 6; static int MAX_EXON = 50000; static int MIN_GENE = 150; static int MAX_GENE = 500000; static int MIN_CDS = 150; static int MAX_CDS = 50000; static const char S5P[5] = {'A', 'C', 'G', 'T', 'N'}; /* positive */ static const char S5N[5] = {'T', 'G', 'C', 'A', 'N'}; /* negative */ /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ static zoeFeatureVec get_sorted_exons (zoeFeatureVec exons, zoeFeatureVec features) { int i; zoeFeature f; exons = zoeNewFeatureVec(); for (i = 0; i < features->size; i++) { f = features->elem[i]; switch(f->label) { case Einit: case Eterm: case Exon: case Esngl: zoePushFeatureVec(exons, f); break; default: break; } } qsort(exons->elem, exons->size, sizeof(zoeFeature), zoeFeatureCmpPtr); return exons; } static int idiotic_errors (zoeCDS cds) { int i, idx, plus_count = 0, minus_count = 0; int Esngl_count = 0, Einit_count = 0, Eterm_count = 0; char text[256]; zoeFeature exon; /* identify strand */ for (i = 0; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; if (exon->strand == '+') plus_count++; if (exon->strand == '-') minus_count++; } if (plus_count && minus_count) { sprintf(text, "gene:mixed_strands"); zoePushTVec(cds->errors, text); } else if (plus_count) { cds->strand = '+'; } else if (minus_count) { cds->strand = '-'; } else { sprintf(text, "gene:unknown_strand"); zoePushTVec(cds->errors, text); } /* change all undefined strands to consensus strand */ for (i = 0; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; if (exon->strand == UNDEFINED_STRAND) exon->strand = cds->strand; } /* look for multiple occurrances of unique exon types */ for (i = 0; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; switch (exon->label) { case Esngl: Esngl_count++; break; case Einit: Einit_count++; break; case Eterm: Eterm_count++; break; default: break; } } if (Esngl_count > 1) { sprintf(text, "gene:multiple_Esngl"); zoePushTVec(cds->errors, text); } if (Einit_count > 1) { sprintf(text, "gene:multiple_Einit"); zoePushTVec(cds->errors, text); } if (Eterm_count > 1) { sprintf(text, "gene:multiple_Eterm"); zoePushTVec(cds->errors, text); } /* make sure Einit is at start and Eterm is at end */ if (Einit_count) { if (cds->strand == '+') { if (cds->exons->elem[0]->label != Einit) { sprintf(text, "gene:misordered_Einit"); zoePushTVec(cds->errors, text); } } else { if (cds->exons->elem[cds->exons->size-1]->label != Einit) { sprintf(text, "gene:misordered_Einit"); zoePushTVec(cds->errors, text); } } } if (Eterm_count) { if (cds->strand == '+') { if (cds->exons->elem[cds->exons->size-1]->label != Eterm) { sprintf(text, "gene:misordered_Eterm"); zoePushTVec(cds->errors, text); } } else { if (cds->exons->elem[0]->label != Eterm) { sprintf(text, "gene:misordered_Eterm"); zoePushTVec(cds->errors, text); } } } /* look for exons out of bounds */ for (i = 0; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; idx = (cds->strand == '+') ? i +1 : cds->exons->size -i; if (exon->start > cds->dna->length -1 || exon->end > cds->dna->length -1) { sprintf(text, "exon-%d:out_of_bounds", idx); zoePushTVec(cds->errors, text); } } /* look for overlapping exons */ for (i = 1; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; idx = (cds->strand == '+') ? i +1 : cds->exons->size -i; if (cds->exons->elem[i-1]->end >= exon->start) { sprintf(text, "exon-%d:overlaps_prev_exon", idx); zoePushTVec(cds->errors, text); } else if (cds->exons->elem[i-1]->end + 1 == exon->start) { sprintf(text, "exon-%d:abuts_prev_exon", idx); zoePushTVec(cds->errors, text); } } if (cds->errors->size) return 1; else return 0; } static zoeDNA transcribe (const char * name, const zoeDNA dna, const zoeFeatureVec exons) { zoeFeature exon = NULL; zoeDNA tx, anti; int i, estart, elength, nt_length = 0; char * seq = NULL; /* calculate length of transcript */ for (i = 0; i < exons->size; i++) { exon = exons->elem[i]; nt_length += (exon->end - exon->start + 1); } /* create transcript char[] */ seq = zoeMalloc(nt_length +1); estart = 0; for (i = 0; i < exons->size; i++) { exon = exons->elem[i]; elength = exon->end - exon->start + 1; memcpy(&seq[estart], &dna->seq[exon->start], elength); estart += elength; } seq[nt_length] = '\0'; if (strlen(seq) != nt_length) zoeExit("transcribe fatal error"); if (exons->elem[0]->strand == '+') { tx = zoeNewDNA(name, seq); free(seq); return tx; } else { tx = zoeNewDNA(name, seq); anti = zoeAntiDNA(name, tx); zoeDeleteDNA(tx); free(seq); return anti; } } static int has_internal_stops (zoeProtein pro) { int i, count = 0; for (i = 0; i < pro->length -1; i++) if (pro->seq[i] == '*') count++; return count; } /* static int has_ambiguous_aa (zoeProtein pro) { int i, count = 0; for (i = 0; i < pro->length; i++) if (pro->seq[i] == 'X') count++; return count; } */ struct exon_feature { int start; int stop; int lazy; /* lazy stop - 1 codon away */ int acceptor; int donor; }; static struct exon_feature get_exon_features (zoeFeature exon, zoeDNA dna) { struct exon_feature ef = {0,0,0,0,0}; char c1, c2, c3; /* start */ if (exon->strand == '+') { c1 = dna->s5[exon->start]; c2 = dna->s5[exon->start +1]; c3 = dna->s5[exon->start +2]; if (c1 == 0 && c2 == 3 && c3 == 2) ef.start = 1; } else if (exon->strand == '-') { c1 = dna->s5[exon->end]; c2 = dna->s5[exon->end -1]; c3 = dna->s5[exon->end -2]; if (c1 == 3 && c2 == 0 && c3 == 1) ef.start = 1; } /* stop */ if (exon->strand == '+') { c1 = dna->s5[exon->end -2]; c2 = dna->s5[exon->end -1]; c3 = dna->s5[exon->end]; if (c1 == 3) { if (c2 == 0 && c3 == 0) ef.stop = 1; else if (c2 == 0 && c3 == 2) ef.stop = 1; else if (c2 == 2 && c3 == 0) ef.stop = 1; } } else if (exon->strand == '-') { c1 = dna->s5[exon->start +2]; c2 = dna->s5[exon->start +1]; c3 = dna->s5[exon->start]; if (c1 == 0) { if (c2 == 3 && c3 == 3) ef.stop = 1; else if (c2 == 3 && c3 == 1) ef.stop = 1; else if (c2 == 1 && c3 == 3) ef.stop = 1; } } /* lazy stop */ if (exon->strand == '+' && ef.stop == 0 && exon->end +3 < dna->length) { c1 = dna->s5[exon->end +1]; c2 = dna->s5[exon->end +2]; c3 = dna->s5[exon->end +3]; if (c1 == 3) { if (c2 == 0 && c3 == 0) ef.lazy = 1; else if (c2 == 0 && c3 == 2) ef.lazy = 1; else if (c2 == 2 && c3 == 0) ef.lazy = 1; } } else if (exon->strand == '-' && ef.stop == 0 && exon->start >= 3) { c1 = dna->s5[exon->start -1]; c2 = dna->s5[exon->start -2]; c3 = dna->s5[exon->start -3]; if (c1 == 0) { if (c2 == 3 && c3 == 3) ef.lazy = 1; else if (c2 == 3 && c3 == 1) ef.lazy = 1; else if (c2 == 1 && c3 == 3) ef.lazy = 1; } } /* donor */ if (exon->strand == '+' && exon->end +2 < dna->length) { c1 = dna->s5[exon->end+1]; c2 = dna->s5[exon->end+2]; if (c1 == 2 && c2 == 3) ef.donor = 1; } else if (exon->strand == '-' && exon->start >= 2) { c1 = dna->s5[exon->start -1]; c2 = dna->s5[exon->start -2]; if (c1 == 1 && c2 == 0) ef.donor = 1; } /* acceptor */ if (exon->strand == '+' && exon->start >= 2) { c1 = dna->s5[exon->start -2]; c2 = dna->s5[exon->start -1]; if (c1 == 0 && c2 == 2) ef.acceptor = 1; } else if (exon->strand == '-' && exon->end +2 < dna->length) { c1 = dna->s5[exon->end +2]; c2 = dna->s5[exon->end +1]; if (c1 == 3 && c2 == 1) ef.acceptor = 1; } return ef; } struct best_translation { strand_t inc5; strand_t inc3; zoeProtein aa; }; static struct best_translation get_best_translation (zoeDNA tx) { struct best_translation bt; zoeProtein pro[3]; int i, best_score, best_idx, score; best_score = -1000000; best_idx = -1; for (i = 0; i <= 2; i++) { pro[i] = zoeTranslateDNA(tx->def, tx, i); score = - 3 * has_internal_stops(pro[i]); if (pro[i]->seq[pro[i]->length -1] == '*') score++; if (pro[i]->seq[0] == 'M') score++; if (score > best_score) { best_score = score; best_idx = i; } } bt.inc5 = best_idx; bt.inc3 = (tx->length - best_idx) % 3; bt.aa = pro[best_idx]; for (i = 0; i <= 2; i++) if (i != best_idx) zoeDeleteProtein(pro[i]); return bt; } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteCDS (zoeCDS cds) { if (cds == NULL) return; if (cds->dna) { cds->dna = NULL; /* does not delete, just a pointer to parent */ } if (cds->name) { zoeFree(cds->name); cds->name = NULL; } if (cds->exons) { zoeDeleteFeatureVec(cds->exons); cds->exons = NULL; } if (cds->introns) { zoeDeleteFeatureVec(cds->introns); cds->introns = NULL; } if (cds->tx) { zoeDeleteDNA(cds->tx); cds->tx = NULL; } if (cds->aa) { zoeDeleteProtein(cds->aa); cds->aa = NULL; } if (cds->warnings) { zoeDeleteTVec(cds->warnings); cds->warnings = NULL; } if (cds->errors) { zoeDeleteTVec(cds->errors); cds->errors = NULL; } zoeFree(cds); cds = NULL; } zoeCDS zoeNewCDS (const char * name, const zoeDNA dna, const zoeFeatureVec features) { zoeCDS cds = zoeMalloc(sizeof(struct zoeCDS)); zoeFeature exon, einit, eterm, intron; char text[256]; struct exon_feature efstart, efstop; struct best_translation bt; int i, nt_length, elength, inc5, inc3, frame, idx, b1, b2, b3, b4, all_exon, split; int exstart, exend, exinc; /* assigned immediately */ cds->dna = dna; cds->name = zoeMalloc(strlen(name) + 1); strcpy(cds->name, name); cds->exons = get_sorted_exons(cds->exons, features); cds->source = zoeCopyFeatureVec(features); cds->score = MIN_SCORE; /* not assigned in zoeNewCDS */ cds->strand = '='; /* edited in idiotic_errors */ /* assigned at various points */ cds->errors = zoeNewTVec(); cds->warnings = zoeNewTVec(); /* assigned late */ cds->introns = zoeNewFeatureVec(); cds->start = 0; cds->end = 0; cds->inc5 = 0; cds->inc3 = 0; cds->tx = NULL; cds->aa = NULL; cds->start_found = 0; cds->end_found = 0; cds->OK = 0; /* check for no exons - can happen in SNAP that labeled things aren't exons */ if (cds->exons->size == 0) { sprintf(text, "gene:no_exons"); zoePushTVec(cds->errors, text); return cds; } /* check for idiotic errors and abort if necessary */ if (idiotic_errors(cds)) { zoeReportCDS(stderr, cds); return cds; } /* start and stop */ if (cds->strand == '+') { einit = cds->exons->elem[0]; eterm = cds->exons->elem[cds->exons->size -1]; efstart = get_exon_features(einit, dna); efstop = get_exon_features(eterm, dna); if (efstop.lazy) eterm->end += 3; cds->start = einit->start; cds->end = eterm->end; } else { einit = cds->exons->elem[cds->exons->size -1]; eterm = cds->exons->elem[0]; efstart = get_exon_features(einit, dna); efstop = get_exon_features(eterm, dna); if (efstop.lazy) eterm->start -= 3; cds->start = eterm->start; cds->end = einit->end; } nt_length = 0; for (i = 0; i < cds->exons->size; i++) { nt_length += cds->exons->elem[i]->end - cds->exons->elem[i]->start +1; } if (efstart.start) cds->start_found = 1; if (nt_length % 3 == 0) if (efstop.lazy || efstop.stop) cds->end_found = 1; if (!(cds->start_found && cds->end_found)) { split = 0; if (einit->end - einit->start < 2) { sprintf(text, "split-start"); split = 1; } if (eterm->end - eterm->start < 2) { sprintf(text, "split-stop"); split = 1; } if (split == 0) { sprintf(text, "cds:incomplete"); } zoePushTVec(cds->warnings, text); } /* re-label generic exons as Einit, Eterm, Esngl only if all exons defined as Exon */ all_exon = 1; for (i = 0; i < cds->exons->size; i++) { if (cds->exons->elem[i]->label != Exon) { all_exon = 0; break; } } /* if (all_exon) { if (cds->exons->size == 1) { exon = cds->exons->elem[0]; if (cds->start_found && cds->end_found) exon->label = Esngl; else if (cds->start_found) exon->label = Einit; else if (cds->end_found) exon->label = Eterm; } else { if (cds->start_found) einit->label = Einit; if (cds->end_found) eterm->label = Eterm; } } */ /* transcribe and translate */ cds->tx = transcribe(name, dna, cds->exons); bt = get_best_translation(cds->tx); cds->inc5 = bt.inc5; cds->inc3 = bt.inc3; cds->aa = bt.aa; if (has_internal_stops(cds->aa)) { sprintf(text, "cds:internal_stop"); zoePushTVec(cds->errors, text); } /* if (has_ambiguous_aa(cds->aa)) { sprintf(text, "cds:ambiguous_aa"); zoePushTVec(cds->warnings, text); } */ /* causing probs if (cds->start_found && cds->inc5 != 0) { sprintf(text, "cds:start_conflict"); zoePushTVec(cds->errors, text); } if (cds->end_found && cds->inc3 != 0) { sprintf(text, "cds:stop_conflict"); zoePushTVec(cds->errors, text); }*/ /* create introns */ intron = zoeNewFeature(Intron, 0, 0, cds->strand, 0, 0, 0, 0, name); for (i = 1; i < cds->exons->size; i++) { intron->start = cds->exons->elem[i -1]->end +1; intron->end = cds->exons->elem[i]->start -1; zoePushFeatureVec(cds->introns, intron); } zoeDeleteFeature(intron); /* short/long genes */ nt_length = cds->end - cds->start + 1; if (nt_length < MIN_GENE) { sprintf(text, "gene:short(%d)", nt_length); zoePushTVec(cds->warnings, text); } if (nt_length > MAX_GENE) { sprintf(text, "gene:long(%d)", nt_length); zoePushTVec(cds->warnings, text); } /* short/long exons */ for (i = 0; i < cds->exons->size; i++) { exon = cds->exons->elem[i]; idx = (cds->strand == '+') ? i +1 : cds->exons->size -i; nt_length = exon->end - exon->start + 1; if (nt_length < MIN_EXON) { sprintf(text, "exon-%d:short(%d)", idx, nt_length); zoePushTVec(cds->warnings, text); } if (nt_length > MAX_EXON) { sprintf(text, "exon-%d:long(%d)", idx, nt_length); zoePushTVec(cds->warnings, text); } } /* short/long introns */ for (i = 0; i < cds->introns->size; i++) { intron = cds->introns->elem[i]; idx = (cds->strand == '+') ? i +1 : cds->introns->size -i; nt_length = intron->end - intron->start + 1; if (nt_length < MIN_INTRON) { sprintf(text, "intron-%d:short(%d)", idx, nt_length); zoePushTVec(cds->warnings, text); } if (nt_length > MAX_INTRON) { sprintf(text, "intron-%d:long(%d)", idx, nt_length); zoePushTVec(cds->warnings, text); } } /* canonical splicing */ for (i = 0; i < cds->introns->size; i++) { intron = cds->introns->elem[i]; idx = (cds->strand == '+') ? i +1 : cds->introns->size -i; b1 = cds->dna->s5[intron->start]; b2 = cds->dna->s5[intron->start +1]; b3 = cds->dna->s5[intron->end -1]; b4 = cds->dna->s5[intron->end]; if (intron->strand == '+') { if ( !(b1==2 && b2==3 && b3==0 && b4==2)) { sprintf(text, "intron-%d:%c%c..%c%c", idx, S5P[b1], S5P[b2], S5P[b3], S5P[b4]); zoePushTVec(cds->warnings, text); } } else { if ( !(b1==1 && b2==3 && b3==0 && b4==1)) { sprintf(text, "intron-%d:%c%c..%c%c", idx, S5N[b4], S5N[b3], S5N[b2], S5N[b1]); zoePushTVec(cds->warnings, text); } } } /* label with correct phase and frame */ if (cds->inc5 == 1) nt_length = 2; else if (cds->inc5 == 2) nt_length = 1; else nt_length = 0; elength = 0; /* dgg; fix for cdsincomplete/complete: phase/inc5 should be 0 for complete */ if (cds->strand == '-') { exstart = cds->exons->size -1; exend = -1; exinc = -1; } else { exstart = 0; exend = cds->exons->size; exinc = 1; } for (i = exstart; i != exend; i += exinc) { /* dgg fixes */ exon = cds->exons->elem[i]; elength = exon->end - exon->start + 1; nt_length += elength; inc3 = nt_length % 3; inc5 = (elength - inc3) % 3; frame = (exon->start + inc5) % 3; exon->frame = frame; exon->inc5 = inc5; if (exon->inc5 == -1) exon->inc5 = 2; exon->inc3 = inc3; if (!zoeVerifyFeature(exon)) { zoeWarn("exon does not validate after correcting phase & frame"); zoeExit("%s", cds->name); } } if (cds->errors->size == 0) cds->OK = 1; return cds; } void zoeAntiCDS (zoeCDS cds, int length) { int i, start, end; start = length - cds->end -1; end = length - cds->start -1; cds->start = start; cds->end = end; cds->strand = (cds->strand == '+') ? '-' : '+'; for (i = 0; i < cds->exons->size; i++) { zoeAntiFeature(cds->exons->elem[i], length); } for (i = 0; i < cds->introns->size; i++) { zoeAntiFeature(cds->introns->elem[i], length); } } void zoeWriteCDS (FILE * stream, const zoeCDS cds) { int i; /*zoeS(stream, ">%s\n", cds->name);*/ for (i = 0; i < cds->exons->size; i++) { zoeWriteFeature(stream, cds->exons->elem[i]); } } void zoeWriteFullCDS (FILE * stream, const zoeCDS cds) { int i; /*zoeS(stream, ">%s\n", cds->name);*/ for (i = 0; i < cds->exons->size; i++) { zoeWriteFeature(stream, cds->exons->elem[i]); if (i < cds->introns->size) zoeWriteFeature(stream, cds->introns->elem[i]); } } void zoeWriteTriteCDS (FILE * stream, const zoeCDS cds) { int i; /*zoeS(stream, ">%s\n", cds->name);*/ for (i = 0; i < cds->exons->size; i++) { zoeWriteTriteFeature(stream, cds->exons->elem[i]); } } void zoeReportCDS (FILE * stream, const zoeCDS cds) { int i; zoeS(stream, "%s %d %d %d %c", cds->name, cds->start +1, cds->end +1, cds->exons->size, cds->strand); if (cds->errors->size) { zoeS(stream, " errors(%d):", cds->errors->size); for (i = 0; i < cds->errors->size; i++) { zoeS(stream, " %s", cds->errors->elem[i]); } } if (cds->warnings->size) { zoeS(stream, " warnings(%d):", cds->warnings->size); for (i = 0; i < cds->warnings->size; i++) { zoeS(stream, " %s", cds->warnings->elem[i]); } } zoeS(stream, "\n"); } int zoeCDScmpptr (const void * v1, const void * v2) { return zoeCDScmp( *(zoeCDS *)v1, *(zoeCDS *)v2 ); } int zoeCDScmp (const zoeCDS f1, const zoeCDS f2) { /* coorindate checks: starts then ends */ if (f1->start < f2->start) return -1; else if (f1->start > f2->start) return 1; if (f1->end < f2->end) return -1; else if (f1->end > f2->end) return 1; /* strand check */ if (f1->strand < f2->strand) return -1; else if (f1->strand > f2->strand) return 1; /* transcript length check */ if (f1->tx && f2->tx) { if (f1->tx->length > f2->tx->length) return 1; else if (f1->tx->length < f2->tx->length) return -1; } /* transcript sequence check */ if (f1->tx && f2->tx) { if (strcmp(f1->tx->seq, f2->tx->seq) == 0) return 0; else return 1; } /* I suppose I could check the individual features ... */ return 0; } int zoeCDSsOverlap (const zoeCDS a, const zoeCDS b) { if (a->start >= b->start && a->start <= b->end) return 1; else if (b->start >= a->start && b->start <= a->end) return 1; else return 0; } int zoeCDSsShareSequence (const zoeCDS a, const zoeCDS b) { int i, j; if (!zoeCDSsOverlap(a, b)) return 0; for (i = 0; i < a->exons->size; i++) { for (j = 0; j < b->exons->size; j++) { if (zoeFeaturesOverlap(a->exons->elem[i], b->exons->elem[j])) { return 1; } } } return 0; } void zoeSetMinIntron (int i) {MIN_INTRON = i;} void zoeSetMaxIntron (int i) {MAX_INTRON = i;} void zoeSetMinExon (int i) {MIN_EXON = i;} void zoeSetMaxExon (int i) {MAX_EXON = i;} void zoeSetMinGene (int i) {MIN_GENE = i;} void zoeSetMaxGene (int i) {MAX_GENE = i;} void zoeSetMinCDS (int i) {MIN_CDS = i;} void zoeSetMaxCDS (int i) {MAX_CDS = i;} #endif snap-2010-07-28/Zoe/lexica.c0000644000175000017500000000601711424066010015076 0ustar moellermoeller/*****************************************************************************\ lexica.c After "Hello World", I believe that lexical analysis is the next best program to write. It often shows off the strengths and weakness of a language as well as the canonical loops for dynamic lists and maps. Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char **argv) { FILE *file = NULL; char line[8192], *token = NULL; int i, len, string_start, string_found; int *iptr = NULL; void *val = NULL; zoeHash hash = NULL; zoeTVec keys = NULL; zoeSetProgramName(argv[0]); zoeSetOption("-table", 0); zoeSetOption("-stats", 0); zoeParseOptions(&argc, argv); /* commandline */ if (argc != 2) { zoeS(stderr, "usage: %s [-table -stats] \n", argv[0]); exit(1); }; /* create data structures */ hash = zoeNewHash(); /* open file */ if ((file = fopen(argv[1], "r")) == NULL) zoeExit("file error (%s)", argv[1]); /* parse file into tokens, store unique tokens */ while (fgets(line, sizeof(line), file) != NULL) { len = strlen(line); string_start = 0; string_found = 0; for (i = 0; i < len; i++) { if (isalnum((int)line[i])) { if (string_found) continue; string_found = 1; string_start = i; } else { if (!string_found) continue; string_found = 0; line[i] = '\0'; token = line + string_start; val = zoeGetHash(hash, token); if (val == NULL) { iptr = malloc(sizeof(int)); *iptr = 1; zoeSetHash(hash, token, iptr); } else { iptr = val; (*iptr)++; /* uglier: (*(int*)val)++; */ } } } } (void)fclose(file); /* print out word usage */ if (zoeOption("-table")) { keys = zoeKeysOfHash(hash); qsort(keys->elem, keys->size, sizeof(void*), zoeTcmp); for (i = 0; i < keys->size; i++) { zoeS(stdout, "%s\t%d\n", (char*)keys->elem[i], *(int*)zoeGetHash(hash, (char*)keys->elem[i]) ); } zoeDeleteTVec(keys); } if (zoeOption("-stats")) zoeStatHash(hash); /* clean house */ zoeDeleteHash(hash); return 0; } snap-2010-07-28/Zoe/zoeAlignment.h0000644000175000017500000000417011424066010016270 0ustar moellermoeller/******************************************************************************\ zoeAlignment.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_ALIGNMENT_H #define ZOE_ALIGNMENT_H #include #include #include "zoeDNA.h" typedef enum { DIAGONAL, HORIZONTAL, VERTICAL } zoeSWdirection; struct zoeHSP { score_t score; score_t bits; score_t e_value; int match; int mismatch; int q_gap; int s_gap; coor_t q_start; coor_t q_end; coor_t s_start; coor_t s_end; char * q_aln; char * s_aln; char * a_str; }; typedef struct zoeHSP * zoeHSP; struct zoeAlignCell01 { int score; char trace; /* 0=blank 1=diagonal 2=horizontal 3=vertical */ char state; /* 0=gapless 1=gap1 2=gap2 */ }; typedef struct zoeAlignCell01 zoeAlignCell01; struct zoeAlignCell02 { int score; char trace; /* 0=blank 1=diagonal 2=horizontal 3=vertical */ char state; /* 0=gapless 1=gap1 2=gap2 */ char found; /* 0=no 1=yes */ }; typedef struct zoeAlignCell02 zoeAlignCell02; void zoeDeleteHSP (zoeHSP); zoeHSP zoeNewHSP (void); zoeHSP zoeReadHSP (FILE *); void zoeWriteHSP (FILE *, const zoeHSP); void zoeDecorateHSP (zoeHSP); zoeHSP zoeAlign01 (const zoeDNA, const zoeDNA, int, int, int, int); zoeVec zoeAlign02 (const zoeDNA, const zoeDNA, int, int, int, int, int); zoeHSP zoeAlign03 (const zoeDNA, const zoeDNA, int, int, int, int, int); zoeVec zoeChainHSPs (const zoeVec); struct zoePCell { float score; char trace; char state; }; typedef struct zoePCell zoePCell; struct zoeScoreSystem { float ** score; int gapO; int gapE; int width; /* banded alignment, 0 is infinite */ }; typedef struct zoeScoreSystem * zoeScoreSystem; zoeScoreSystem zoeNewScoreSystem(char *, int, int, int); void zoeDeleteScoreSystem(zoeScoreSystem); zoeHSP zoeProtAlignLocal(zoeProtein, zoeProtein, zoeScoreSystem); zoeHSP zoeProtAlignNterm(zoeProtein, zoeProtein, zoeScoreSystem); #endif snap-2010-07-28/Zoe/seqedit.c0000644000175000017500000000650711424066010015273 0ustar moellermoeller/*****************************************************************************\ seqedit.c Sequence editor Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" int main (int argc, char *argv[]) { FILE * stream; char * filename; zoeFastaFile fasta; zoeDNA dna = NULL; zoeDNA tmp = NULL; zoeProtein pro = NULL; coor_t cut, length; zoeSetProgramName(argv[0]); zoeSetOption("-reverse", 0); zoeSetOption("-complement", 0); zoeSetOption("-cut", 1); zoeSetOption("-length", 1); zoeSetOption("-translate", 0); zoeSetOption("-lcfilter", 0); zoeSetOption("-lcsmooth", 0); zoeSetOption("-flank", 1); zoeSetOption("-island", 1); zoeSetOption("-min-len", 1); zoeParseOptions(&argc, argv); if (argc == 1) { zoeS(stdout, "usage: %s [options] \n", argv[0]); zoeM(stderr, 7, "options:", " -reverse", " -complement", " -cut -length ", " -translate", " -lcfilter", " -lcsmooth -flank -island -min-len "); exit(1); } filename = argv[1]; /* file or stdin? */ if ((strcmp(filename, "-") == 0)) stream = stdin; else if ((stream = fopen(filename, "r") ) == NULL) zoeExit("file error (%s)", filename); fasta = zoeReadFastaFile(stream); dna = zoeNewDNA(fasta->def, fasta->seq); /* process the sequence */ if (zoeOption("-lcsmooth")) { if (!zoeOption("-flank")) zoeExit("-flank required for -lcsmooth"); if (!zoeOption("-island")) zoeExit("-island required for -lcsmooth"); if (!zoeOption("-min-len")) zoeExit("-min-len required for -lcsmooth"); zoeLCsmooth(dna, atoi(zoeOption("-flank")), atoi(zoeOption("-island")), atoi(zoeOption("-min-len"))); } if (zoeOption("-lcfilter")) zoeLCfilter(dna); if (zoeOption("-reverse")) { tmp = zoeReverseDNA(dna->def, dna); zoeDeleteDNA(dna); dna = tmp; tmp = NULL; } if (zoeOption("-complement")) { tmp = zoeComplementDNA(dna->def, dna); zoeDeleteDNA(dna); dna = tmp; tmp = NULL; } if (zoeOption("-cut") || zoeOption("-length")) { if (zoeOption("-cut") && zoeOption("-length")) { cut = atoi(zoeOption("-cut")); length = atoi(zoeOption("-length")); tmp = zoeSubseqDNA(dna->def, dna, cut -1, length); zoeDeleteDNA(dna); dna = tmp; tmp = NULL; } else { zoeExit("you must specify both -cut and -length"); } } if (zoeOption("-translate")) { pro = zoeTranslateDNA(dna->def, dna, 0); zoeWriteProtein(stdout, pro); zoeDeleteProtein(pro); } else { zoeWriteDNA(stdout, dna); zoeDeleteDNA(dna); } return 0; } snap-2010-07-28/Zoe/zoeTransition.c0000644000175000017500000000352311424066010016500 0ustar moellermoeller/******************************************************************************\ zoeTransition.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_TRANSITION_C #define ZOE_TRANSITION_C #include "zoeTransition.h" void zoeDeleteTransition (zoeTransition t) { if (t == NULL) return; zoeFree(t); t = NULL; } zoeTransition zoeNewTransition (const char * from, const char * to, float prob) { zoeTransition t = zoeMalloc(sizeof(struct zoeTransition)); t->from = zoeText2Label(from); t->to = zoeText2Label(to); t->prob = prob; t->score = zoeFloat2Score(prob); return t; } zoeTransition zoeReadTransition (FILE * stream) { char from[16]; char to[16]; float prob; if (fscanf(stream, "%s %s %f", from, to, &prob) != 3) { zoeWarn("fscanf error in zoeReadTransition"); return NULL; } return zoeNewTransition(from, to, prob); } void zoeWriteTransition (FILE * stream, const zoeTransition t) { char from[16]; char to[16]; zoeLabel2Text(t->from, from); zoeLabel2Text(t->to, to); zoeS(stream, "%s\t%s\t%f\n", from, to, t->prob); } #endif snap-2010-07-28/Zoe/zoeScanner.c0000644000175000017500000003344611424066010015746 0ustar moellermoeller/******************************************************************************\ zoeScanner.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_SCANNER_C #define ZOE_SCANNER_C #include "zoeScanner.h" /******************************************************************************\ PRIVATE FUNCTIONS \******************************************************************************/ static char seq2sig (int c) { switch (c) { case 'A': case 'a': return 8; /* 1000 */ case 'C': case 'c': return 4; /* 0100 */ case 'G': case 'g': return 2; /* 0010 */ case 'T': case 't': return 1; /* 0001 */ case 'R': case 'r': return 10; /* 1010 */ case 'Y': case 'y': return 5; /* 0101 */ case 'M': case 'm': return 12; /* 1100 */ case 'K': case 'k': return 3; /* 0011 */ case 'W': case 'w': return 9; /* 1001 */ case 'S': case 's': return 6; /* 0110 */ case 'B': case 'b': return 7; /* 0111 */ case 'D': case 'd': return 11; /* 1011 */ case 'H': case 'h': return 13; /* 1101 */ case 'V': case 'v': return 14; /* 1110 */ case 'N': case 'n': return 15; /* 1111 */ default: zoeWarn("illegal symbols seq2sig"); return 15; } } static int zoeSDTlookup (zoeScanner scanner, coor_t mfocus) { char c; int i, j, found, scanner_number = -1; /* impossible value */ if (mfocus >= 0) { for (i = 0; i < scanner->model->submodels; i++) { found = 1; for (j = 0; j < scanner->model->length; j++) { if (scanner->subscanner[i]->sig[j] == 15) continue; c = scanner->dna->s16[j + mfocus] | scanner->subscanner[i]->sig[j]; if (c != scanner->subscanner[i]->sig[j]) { found = 0; break; } } if (found) {scanner_number = i; break;} } } else { /* reposition mfocus */ mfocus = scanner->dna->length -1 + mfocus; for (i = 0; i < scanner->model->submodels; i++) { found = 1; for (j = 0; j < scanner->model->length; j++) { if (scanner->subscanner[i]->sig[j] == 15) continue; /* use scanner->anti rather than scanner->dna */ c = scanner->anti->s16[j + mfocus] | scanner->subscanner[i]->sig[j]; if (c != scanner->subscanner[i]->sig[j]) { found = 0; break; } } if (found) {scanner_number = i; break;} } } if (scanner_number == -1) zoeExit("no scanner found? zoeCountSDT"); return scanner_number; } static score_t zoeScoreWMM (const zoeScanner scanner, coor_t pos) { coor_t i, mfocus, index; score_t score, s; /* user defines and boundaries */ if (pos >= 0) { if (scanner->uscore && scanner->uscore[pos] != MIN_SCORE) return scanner->uscore[pos]; if ((pos < scanner->min_pos) || (pos > scanner->max_pos)) return MIN_SCORE; } else { if (scanner->ascore && scanner->ascore[-pos] != MIN_SCORE) return scanner->ascore[-pos]; if ((-pos < scanner->min_pos) || (-pos > scanner->max_pos)) return MIN_SCORE; } /* scoring */ score = 0; if (pos >= 0) { mfocus = pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { index = (i * scanner->model->symbols) + scanner->dna->s5[i + mfocus]; s = scanner->model->data[index]; if (s == MIN_SCORE) return MIN_SCORE; score += s; } } else { mfocus = scanner->dna->length -1 + pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { index = (i * scanner->model->symbols) + scanner->anti->s5[i + mfocus]; s = scanner->model->data[index]; if (s == MIN_SCORE) return MIN_SCORE; score += s; } } /* score adjustment - only used in WMM */ score += scanner->model->score; return score; } static score_t zoeScoreLUT (const zoeScanner scanner, coor_t pos) { coor_t i, p, index, mfocus; /* user defines and boundaries */ if (pos >= 0) { if (scanner->uscore && scanner->uscore[pos] != MIN_SCORE) return scanner->uscore[pos]; if ((pos < scanner->min_pos) || (pos > scanner->max_pos)) return MIN_SCORE; } else { if (scanner->ascore && scanner->ascore[-pos] != MIN_SCORE) return scanner->ascore[-pos]; if ((-pos < scanner->min_pos) || (-pos > scanner->max_pos)) return MIN_SCORE; } /* scoring */ index = 0; if (pos >= 0) { mfocus = pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { p = zoePOWER[scanner->model->symbols][scanner->model->length -i -1]; index += (p * scanner->dna->s5[i + mfocus]); } } else { mfocus = scanner->dna->length -1 + pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { p = zoePOWER[scanner->model->symbols][scanner->model->length -i -1]; /* use anti instead of dna */ index += (p * scanner->anti->s5[i + mfocus]); } } return scanner->model->data[index]; } static score_t zoeScoreSAM (const zoeScanner scanner, coor_t pos) { coor_t i; score_t score, s; coor_t mfocus; /* user defines and boundaries */ if (pos >= 0) { if (scanner->uscore && scanner->uscore[pos] != MIN_SCORE) return scanner->uscore[pos]; if ((pos < scanner->min_pos) || (pos > scanner->max_pos)) return MIN_SCORE; } else { if (scanner->ascore && scanner->ascore[-pos] != MIN_SCORE) return scanner->ascore[-pos]; if ((-pos < scanner->min_pos) || (-pos > scanner->max_pos)) return MIN_SCORE; } /* scoring */ score = 0; if (pos >= 0) { mfocus = pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { s = scanner->subscanner[i]->score(scanner->subscanner[i], i + mfocus); if (s == MIN_SCORE) return MIN_SCORE; score += s; } } else { mfocus = scanner->dna->length -1 + pos - scanner->model->focus; for (i = 0; i < scanner->model->length; i++) { s = scanner->subscanner[i]->score(scanner->subscanner[i], -i - mfocus); if (s == MIN_SCORE) return MIN_SCORE; score += s; } } return score; } static score_t zoeScoreSDT (const zoeScanner scanner, coor_t pos) { int scanner_number, mfocus; /* user defines and boundaries */ if (pos >= 0) { if (scanner->uscore && scanner->uscore[pos] != MIN_SCORE) return scanner->uscore[pos]; if ((pos < scanner->min_pos) || (pos > scanner->max_pos)) return MIN_SCORE; } else { if (scanner->ascore && scanner->ascore[-pos] != MIN_SCORE) return scanner->ascore[-pos]; if ((-pos < scanner->min_pos) || (-pos > scanner->max_pos)) return MIN_SCORE; } mfocus = pos - scanner->model->focus; scanner_number = zoeSDTlookup(scanner, mfocus); return scanner->subscanner[scanner_number]->score(scanner->subscanner[scanner_number], pos); } static score_t zoeScoreMIX (const zoeScanner scanner, coor_t pos) { zoeExit("zoeScoreMix is not yet enabled"); return 0; } static score_t zoeScoreTRM (const zoeScanner scanner, coor_t pos) { return MIN_SCORE; } static score_t zoeScoreFeature (const zoeScanner scanner, zoeFeature f) { coor_t i; score_t s, score = 0; if (f->strand == '+') { for (i = f->start; i <= f->end; i++) { s = scanner->score(scanner, i); if (s == MIN_SCORE) return MIN_SCORE; /* boundary condition - changed continue */ score += s; } } else { for (i = f->start; i <= f->end; i++) { s = scanner->score(scanner, -i); if (s == MIN_SCORE) return MIN_SCORE; score += s; } } return score; } static score_t zoeScoreCDS (const zoeScanner scanner, zoeFeature f) { coor_t i; score_t score, s; int n; /* should be frame_t but screw casting */ int start = -1, end = -1; /* zoeDNA dna = NULL; zoeProtein pro; */ if (f->strand == '+') { switch (f->label) { case Einit: case Exon: start = f->start +6; /* make room for 5th order Markov Model */ end = f->end; break; case Eterm: case Esngl: start = f->start +6; end = f->end -3; /* don't include stop codon */ break; case Coding: start = f->start +6; end = f->end -3; /* don't include stop codon (can't be sure) */ break; default: zoeExit("zoeScoreCDS: attempt to score CDS with non-coding"); } score = 0; for (i = start; i <= end; i++) { n = (i - start + 4 - f->inc5) % 3; s = scanner->subscanner[n]->score(scanner->subscanner[n], i); if (s == MIN_SCORE) { /*score = MIN_SCORE;*/ score = 0; /* bizarre, rare error... */ break; } score += s; } } else { switch (f->label) { case Einit: case Exon: start = f->start; /* make room for 5th order Markov Model */ end = f->end -6; /* this is a hard-coded hack */ break; case Eterm: case Esngl: start = f->start +3;/* don't include stop codon */ end = f->end -6; break; case Coding: start = f->start +3; /* don't include stop codon (can't be sure) */ end = f->end -6; break; default: zoeExit("zoeScoreCDS: attempt to score CDS with non-coding"); } score = 0; for (i = start; i <= end; i++) { n = (i -start +3 - f->inc5) % 3; switch (n) { case 0: n = 0; break; case 1: n = 2; break; case 2: n = 1; break; } s = scanner->subscanner[n]->score(scanner->subscanner[n], -i); if (s == MIN_SCORE) { /*score = MIN_SCORE;*/ score = 0; /* bizarre, rare error... */ break; } score += s; } } if (score == MIN_SCORE) { zoeWriteFeature(stdout, f); zoeE("\n\nDarn! Unfortunately there is a bug in the program.\n"); zoeE("Please send a report to Ian Korf (iankorf@mac.com).\n"); exit(1); } return score; } static score_t zoeIllegalScore (const zoeScanner s, coor_t p) { zoeExit("illegal score (%s)", s->model->name); return 0; } /******************************************************************************\ PUBLIC FUNCTIONS \******************************************************************************/ void zoeDeleteScanner(zoeScanner scanner) { int i; if (scanner == NULL) return; if (scanner->model->submodels) { for (i = 0; i < scanner->model->submodels; i++) { if (scanner->subscanner[i]) { zoeDeleteScanner(scanner->subscanner[i]); scanner->subscanner[i] = NULL; } } if (scanner->subscanner) { zoeFree(scanner->subscanner); scanner->subscanner = NULL; } } if (scanner->sig) { zoeFree(scanner->sig); scanner->sig = NULL; } if (scanner->uscore) { zoeFree(scanner->uscore); scanner->uscore = NULL; } if (scanner->ascore) { zoeFree(scanner->ascore); scanner->ascore = NULL; } scanner->model = NULL; scanner->dna = NULL; scanner->anti = NULL; zoeFree(scanner); scanner = NULL; } zoeScanner zoeNewScanner(zoeDNA dna, zoeDNA anti, zoeModel model) { int i, j; zoeScanner scanner = zoeMalloc(sizeof(struct zoeScanner)); /* determine scoring region */ scanner->min_pos = model->length; scanner->max_pos = dna->length - model->length -1; /* set dna and model, clear pointers */ scanner->dna = dna; scanner->anti = anti; scanner->model = model; scanner->subscanner = NULL; scanner->sig = NULL; scanner->uscore = NULL; scanner->ascore = NULL; scanner->score = NULL; scanner->scoref = NULL; /* bind scoring and counting functions to type of model */ switch (model->type) { case WMM: scanner->score = zoeScoreWMM; break; case LUT: scanner->score = zoeScoreLUT; break; case SAM: scanner->score = zoeScoreSAM; break; case SDT: scanner->score = zoeScoreSDT; break; case MIX: scanner->score = zoeScoreMIX; break; case TRM: scanner->score = zoeScoreTRM; break; default: scanner->score = zoeIllegalScore; } /* bind range scoring functions */ switch (model->type) { case CDS: scanner->scoref = zoeScoreCDS; break; default: scanner->scoref = zoeScoreFeature; } /* create subscanners for constructed types */ if (model->type == WMM || model->type == LUT || model->type == TRM) { scanner->subscanner = NULL; } else { scanner->subscanner = zoeMalloc(model->submodels * sizeof(struct zoeScanner)); for (i = 0; i< model->submodels; i++) scanner->subscanner[i] = zoeNewScanner(dna, anti, model->submodel[i]); } /* ensure CDS model is correctly used */ if (model->type == CDS) { if (model->submodels != 3) zoeExit("CDS must have 3 submodels"); for (i = 0; i < model->submodels; i++) { if (model->submodel[i]->type != LUT) zoeExit("CDS submodels not LUT"); } } /* create decision tree for SDT */ if (model->type == SDT) { /* create sigs for submodels */ scanner->sig = NULL; for (i = 0; i < model->submodels; i++) { scanner->subscanner[i]->sig = zoeMalloc(model->length); for (j = 0; j < model->length; j++) { scanner->subscanner[i]->sig[j] = seq2sig(model->submodel[i]->name[j]); } } } else { scanner->sig = NULL; } return scanner; } void zoeSetScannerScore(zoeScanner scanner, coor_t pos, score_t score) { coor_t i; if (pos >= 0) { if (pos >= scanner->dna->length) { zoeWarn("zoeSetScannerScore position (%d) out of range", pos); return; } if (!scanner->uscore) { scanner->uscore = zoeMalloc(scanner->dna->length * sizeof(score_t)); for (i = 0; i < scanner->dna->length; i++) { scanner->uscore[i] = MIN_SCORE; } } scanner->uscore[pos] = score; } else { if (-pos >= scanner->anti->length) { zoeWarn("zoeSetScannerScore position (%d) out of range", pos); return; } if (!scanner->ascore) { scanner->ascore = zoeMalloc(scanner->anti->length * sizeof(score_t)); for (i = 0; i < scanner->anti->length; i++) { scanner->ascore[i] = MIN_SCORE; } } scanner->ascore[-pos] = score; } } #endif snap-2010-07-28/Zoe/twinkle.c0000644000175000017500000000567211424066010015314 0ustar moellermoeller/*****************************************************************************\ twinkle.c Pairwise alignment with multiple tracebacks Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" zoeVec zoeAlign02 (const zoeDNA, const zoeDNA, int, int, int, int, int); zoeVec zoeChainHSPs (const zoeVec); static int MAX_MEMORY = 100; /* default is 100 meg */ int main (int argc, char *argv[]) { zoeDNA dna1, dna2; zoeVec HSPs; int i, match = 1, mismatch = 1, gapI = 3, gapE = 1, score = 10; size_t mem; zoeSetProgramName(argv[0]); zoeSetOption("-match", 1); zoeSetOption("-mismatch", 1); zoeSetOption("-gap-init", 1); zoeSetOption("-gap-extend", 1); zoeSetOption("-score", 1); zoeSetOption("-debug", 0); zoeSetOption("-memory", 1); zoeParseOptions(&argc, argv); if (argc != 3) { zoeE("usage: %s [options] \n", argv[0]); zoeM(stderr, 8, "options: [default]", " -match [1]", " -mismatch [1]", " -gap-init [3]", " -gap-extend [1]", " -score [10]", " -memory [100] (units are megabytes)", " -debug" ); exit(1); } dna1 = zoeGetDNA(argv[1]); dna2 = zoeGetDNA(argv[2]); if (zoeOption("-match")) match = atoi(zoeOption("-match")); if (zoeOption("-mismatch")) mismatch = atoi(zoeOption("-mismatch")); if (zoeOption("-gap-init")) gapI = atoi(zoeOption("-gap-init")); if (zoeOption("-gap-extend")) gapE = atoi(zoeOption("-gap-extend")); if (zoeOption("-score")) score = atoi(zoeOption("-score")); if (zoeOption("-memory")) MAX_MEMORY = atoi(zoeOption("-memory")); if (match < 1 || mismatch < 1 || gapI < 1 || gapE < 1 || score < 1) { zoeExit("all parameters must be positive integers"); } mem = (dna1->length +1) * (dna2->length +1) * sizeof(zoeAlignCell02) / 1000000; if (mem > MAX_MEMORY) { zoeExit("maximum memory limit (%dM) exceeded (%dM)", MAX_MEMORY, mem); } HSPs = zoeAlign02(dna1, dna2, match, mismatch, gapI, gapE, score); for (i = 0; i < HSPs->size; i++) zoeWriteHSP(stdout, HSPs->elem[i]); return 0; } snap-2010-07-28/Zoe/zoePhasePref.h0000644000175000017500000000323411424066010016227 0ustar moellermoeller/******************************************************************************\ zoePhasePref.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_PHASEPREF_H #define ZOE_PHASEPREF_H #include #include #include #include "zoeMath.h" #include "zoeFeature.h" #include "zoeTools.h" #define zoePHASECOUNT 18 typedef enum { Ei_I0, /* transition from Einit to Int0 */ Ei_I1, /* transition from Einit to Int1 */ Ei_I2, /* transition from Einit to Int2 */ E0_I0, /* transition from Exon0 to Int0 */ E0_I1, /* transition from Exon0 to Int1 */ E0_I2, /* transition from Exon0 to Int2 */ E1_I0, /* transition from Exon1 to Int0 */ E1_I1, /* transition from Exon1 to Int1 */ E1_I2, /* transition from Exon1 to Int2 */ E2_I0, /* transition from Exon2 to Int0 */ E2_I1, /* transition from Exon2 to Int1 */ E2_I2, /* transition from Exon2 to Int2 */ I0_E0, /* transition from Int0 to Exon0 */ I0_Et, /* transition from Int0 to Eterm */ I1_E1, /* transition from Int1 to Exon1 */ I1_Et, /* transition from Int1 to Eterm */ I2_E2, /* transition from Int2 to Exon2 */ I2_Et /* transition from Int2 to Eterm */ } zoePhasePrefName; struct zoePhasePref { score_t score[zoePHASECOUNT]; float prob[zoePHASECOUNT]; }; typedef struct zoePhasePref * zoePhasePref; void zoeDeletePhasePref (zoePhasePref); zoePhasePref zoeNewPhasePref (void); zoePhasePref zoeReadPhasePref (FILE *); void zoeWritePhasePref (FILE *, const zoePhasePref); score_t zoeScorePhase (zoePhasePref, zoeLabel, zoeLabel, int); #endif snap-2010-07-28/Zoe/blosum620000644000175000017500000000411211424066010015053 0ustar moellermoeller# Matrix made by matblas from blosum62.iij # * column uses minimum score # BLOSUM Clustered Scoring Matrix in 1/2 Bit Units # Blocks Database = /data/blocks_5.0/blocks.dat # Cluster Percentage: >= 62 # Entropy = 0.6979, Expected = -0.5209 A R N D C Q E G H I L K M F P S T W Y V B Z X * A 4 -1 -2 -2 0 -1 -1 0 -2 -1 -1 -1 -1 -2 -1 1 0 -3 -2 0 -2 -1 0 -4 R -1 5 0 -2 -3 1 0 -2 0 -3 -2 2 -1 -3 -2 -1 -1 -3 -2 -3 -1 0 -1 -4 N -2 0 6 1 -3 0 0 0 1 -3 -3 0 -2 -3 -2 1 0 -4 -2 -3 3 0 -1 -4 D -2 -2 1 6 -3 0 2 -1 -1 -3 -4 -1 -3 -3 -1 0 -1 -4 -3 -3 4 1 -1 -4 C 0 -3 -3 -3 9 -3 -4 -3 -3 -1 -1 -3 -1 -2 -3 -1 -1 -2 -2 -1 -3 -3 -2 -4 Q -1 1 0 0 -3 5 2 -2 0 -3 -2 1 0 -3 -1 0 -1 -2 -1 -2 0 3 -1 -4 E -1 0 0 2 -4 2 5 -2 0 -3 -3 1 -2 -3 -1 0 -1 -3 -2 -2 1 4 -1 -4 G 0 -2 0 -1 -3 -2 -2 6 -2 -4 -4 -2 -3 -3 -2 0 -2 -2 -3 -3 -1 -2 -1 -4 H -2 0 1 -1 -3 0 0 -2 8 -3 -3 -1 -2 -1 -2 -1 -2 -2 2 -3 0 0 -1 -4 I -1 -3 -3 -3 -1 -3 -3 -4 -3 4 2 -3 1 0 -3 -2 -1 -3 -1 3 -3 -3 -1 -4 L -1 -2 -3 -4 -1 -2 -3 -4 -3 2 4 -2 2 0 -3 -2 -1 -2 -1 1 -4 -3 -1 -4 K -1 2 0 -1 -3 1 1 -2 -1 -3 -2 5 -1 -3 -1 0 -1 -3 -2 -2 0 1 -1 -4 M -1 -1 -2 -3 -1 0 -2 -3 -2 1 2 -1 5 0 -2 -1 -1 -1 -1 1 -3 -1 -1 -4 F -2 -3 -3 -3 -2 -3 -3 -3 -1 0 0 -3 0 6 -4 -2 -2 1 3 -1 -3 -3 -1 -4 P -1 -2 -2 -1 -3 -1 -1 -2 -2 -3 -3 -1 -2 -4 7 -1 -1 -4 -3 -2 -2 -1 -2 -4 S 1 -1 1 0 -1 0 0 0 -1 -2 -2 0 -1 -2 -1 4 1 -3 -2 -2 0 0 0 -4 T 0 -1 0 -1 -1 -1 -1 -2 -2 -1 -1 -1 -1 -2 -1 1 5 -2 -2 0 -1 -1 0 -4 W -3 -3 -4 -4 -2 -2 -3 -2 -2 -3 -2 -3 -1 1 -4 -3 -2 11 2 -3 -4 -3 -2 -4 Y -2 -2 -2 -3 -2 -1 -2 -3 2 -1 -1 -2 -1 3 -3 -2 -2 2 7 -1 -3 -2 -1 -4 V 0 -3 -3 -3 -1 -2 -2 -3 -3 3 1 -2 1 -1 -2 -2 0 -3 -1 4 -3 -2 -1 -4 B -2 -1 3 4 -3 0 1 -1 0 -3 -4 0 -3 -3 -2 0 -1 -4 -3 -3 4 1 -1 -4 Z -1 0 0 1 -3 3 4 -2 0 -3 -3 1 -1 -3 -1 0 -1 -3 -2 -2 1 4 -1 -4 X 0 -1 -1 -1 -2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -2 0 0 -2 -1 -1 -1 -1 -1 -4 * -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 -4 1 snap-2010-07-28/Zoe/zoeDNA.c0000644000175000017500000003572211424066010014756 0ustar moellermoeller/******************************************************************************\ zoeDNA.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_DNA_C #define ZOE_DNA_C #include "zoeDNA.h" static char s5CodonTable[5][5][5] = { { {'K','N','K','N','X',}, {'T','T','T','T','T',}, {'R','S','R','S','X',}, {'I','I','M','I','X',}, {'X','X','X','X','X',}, }, { {'Q','H','Q','H','X',}, {'P','P','P','P','P',}, {'R','R','R','R','R',}, {'L','L','L','L','L',}, {'X','X','X','X','X',}, }, { {'E','D','E','D','X',}, {'A','A','A','A','A',}, {'G','G','G','G','G',}, {'V','V','V','V','V',}, {'X','X','X','X','X',}, }, { {'*','Y','*','Y','X',}, {'S','S','S','S','S',}, {'*','C','W','C','X',}, {'L','F','L','F','X',}, {'X','X','X','X','X',}, }, { {'X','X','X','X','X',}, {'X','X','X','X','X',}, {'X','X','X','X','X',}, {'X','X','X','X','X',}, {'X','X','X','X','X',}, }, }; static void zoe_s5_stats (zoeDNA dna) { int i; for (i = 0; i < 5; i++) dna->f5[i] = 0; for (i = 0; i < 5; i++) dna->c5[i] = 0; if (dna->length == 0) return; for (i = 0; i < dna->length; i++) dna->c5[(int)dna->s5[i]]++; for (i = 0; i < 5; i++) dna->f5[i] = dna->c5[i]/dna->length; } char* zoeTranslateS5 (const char *s5, int tx_len, frame_t offset) { int i, idx; coor_t aa_length; char * seq; if (offset < 0 || offset > 2) { zoeExit("attempt to use illegal offset (%d) in zoeTranslateS5\n", offset); } aa_length = (tx_len - offset) / 3; seq = zoeMalloc((size_t)aa_length +1); for (i = 0; i < aa_length; i++) { idx = 3 * i + offset; seq[i] = s5CodonTable[(int)s5[idx]][(int)s5[idx+1]][(int)s5[idx+2]]; } seq[aa_length] = '\0'; return seq; } void zoeDeleteDNA(zoeDNA dna) { if (dna == NULL) return; if (dna->def) {zoeFree(dna->def); dna->def = NULL;} if (dna->seq) {zoeFree(dna->seq); dna->seq = NULL;} if (dna->s5) {zoeFree(dna->s5); dna->s5 = NULL;} if (dna->s16) {zoeFree(dna->s16); dna->s16 = NULL;} zoeFree(dna); dna = NULL; } zoeDNA zoeNewDNA (const char * def, const char * seq) { coor_t i; zoeDNA dna = zoeMalloc(sizeof(struct zoeDNA)); dna->length = strlen(seq); dna->seq = zoeMalloc(dna->length +1); dna->s5 = zoeMalloc(dna->length +1); dna->s16 = zoeMalloc(dna->length +1); dna->def = zoeMalloc(strlen(def) +1); /* set sequence and definition */ strcpy(dna->def, def); strcpy(dna->seq, seq); /* create s5 sequence and warn on alphabet errors */ for (i = 0; i < dna->length; i++) { switch (seq[i]) { case 'A': case 'a': dna->s5[i] = 0; break; case 'C': case 'c': dna->s5[i] = 1; break; case 'G': case 'g': dna->s5[i] = 2; break; case 'T': case 't': dna->s5[i] = 3; break; case 'R': case 'r': case 'Y': case 'y': case 'M': case 'm': case 'K': case 'k': case 'W': case 'w': case 'S': case 's': case 'B': case 'b': case 'D': case 'd': case 'H': case 'h': case 'V': case 'v': case 'N': case 'n': dna->s5[i] = 4; break; case '-': dna->s5[i] = 4; break; default: dna->s5[i] = 4; dna->seq[i] = 'N'; zoeWarn("zoeNewDNA editing illegal symbol '%c' to 'N' in %s at %d/%d", seq[i], def, i, dna->length); } } /* create s16 sequence but don't warn on alphabet errors */ for (i = 0; i < dna->length; i++) { switch (seq[i]) { case 'A': case 'a': dna->s16[i] = 8; break; /* 1000 */ case 'C': case 'c': dna->s16[i] = 4; break; /* 0100 */ case 'G': case 'g': dna->s16[i] = 2; break; /* 0010 */ case 'T': case 't': dna->s16[i] = 1; break; /* 0001 */ case 'R': case 'r': dna->s16[i] = 10; break; /* 1010 */ case 'Y': case 'y': dna->s16[i] = 5; break; /* 0101 */ case 'M': case 'm': dna->s16[i] = 12; break; /* 1100 */ case 'K': case 'k': dna->s16[i] = 3; break; /* 0011 */ case 'W': case 'w': dna->s16[i] = 9; break; /* 1001 */ case 'S': case 's': dna->s16[i] = 6; break; /* 0110 */ case 'B': case 'b': dna->s16[i] = 7; break; /* 0111 */ case 'D': case 'd': dna->s16[i] = 11; break; /* 1011 */ case 'H': case 'h': dna->s16[i] = 13; break; /* 1101 */ case 'V': case 'v': dna->s16[i] = 14; break; /* 1110 */ case 'N': case 'n': dna->s16[i] = 15; break; /* 1111 */ case '-': dna->s16[i] = 15; break; default: dna->s16[i] = 15; } } zoe_s5_stats(dna); return dna; } zoeDNA zoeCopyDNA(const zoeDNA dna) { /* should be re-written to copy memory rather than go through constructor */ return zoeNewDNA(dna->def, dna->seq); } zoeDNA zoeReverseDNA (const char * def, const zoeDNA dna) { coor_t i; char * seq = zoeMalloc(dna->length +1); zoeDNA rev = NULL; for (i = 0; i < dna->length; i++) { seq[dna->length -i -1] = dna->seq[i]; } seq[dna->length] = '\0'; rev = zoeNewDNA(def, seq); zoeFree(seq); return rev; } zoeDNA zoeComplementDNA (const char * def, const zoeDNA dna) { coor_t i; char * seq = zoeMalloc(dna->length + 1); zoeDNA comp = NULL; for (i = 0; i < dna->length; i++) { switch (dna->seq[i]) { case 'A': seq[i] = 'T'; break; case 'C': seq[i] = 'G'; break; case 'G': seq[i] = 'C'; break; case 'T': seq[i] = 'A'; break; case 'R': seq[i] = 'Y'; break; case 'Y': seq[i] = 'R'; break; case 'M': seq[i] = 'K'; break; case 'K': seq[i] = 'M'; break; case 'W': seq[i] = 'S'; break; case 'S': seq[i] = 'W'; break; case 'B': seq[i] = 'V'; break; case 'D': seq[i] = 'H'; break; case 'H': seq[i] = 'D'; break; case 'V': seq[i] = 'B'; break; case 'N': seq[i] = 'N'; break; case 'a': seq[i] = 't'; break; case 'c': seq[i] = 'g'; break; case 'g': seq[i] = 'c'; break; case 't': seq[i] = 'a'; break; case 'r': seq[i] = 'y'; break; case 'y': seq[i] = 'r'; break; case 'm': seq[i] = 'k'; break; case 'k': seq[i] = 'm'; break; case 'w': seq[i] = 's'; break; case 's': seq[i] = 'w'; break; case 'b': seq[i] = 'v'; break; case 'd': seq[i] = 'h'; break; case 'h': seq[i] = 'd'; break; case 'v': seq[i] = 'b'; break; case 'n': seq[i] = 'n'; break; case '-': seq[i] = '-'; break; default: zoeExit("hard to reach error in zoeComplementDNA"); } } seq[dna->length] = '\0'; comp = zoeNewDNA(def, seq); zoeFree(seq); return comp; } zoeDNA zoeAntiDNA (const char * def, const zoeDNA dna) { zoeDNA rev = zoeReverseDNA(def, dna); zoeDNA anti = zoeComplementDNA(def, rev); zoeDeleteDNA(rev); return anti; } void zoeLCmask (zoeDNA dna) { int i; /* change lowercase to N in s5 and s16 */ for (i = 0; i < dna->length; i++) { if (islower((int)dna->seq[i])) { dna->s5[i] = 4; if (dna->s16) dna->s16[i] = 15; } } zoe_s5_stats(dna); } void zoeLCunmask (zoeDNA dna) { int i; for (i = 0; i < dna->length; i++) { if (dna->s5[i] == 4) { switch (dna->seq[i]) { case 'a': dna->s5[i] = 0; break; case 'c': dna->s5[i] = 1; break; case 'g': dna->s5[i] = 2; break; case 't': dna->s5[i] = 3; break; default: dna->s5[i] = 4; break; } } } zoe_s5_stats(dna); } void zoeLCfilter (zoeDNA dna) { int i; /* change lowercase to N */ for (i = 0; i < dna->length; i++) { if (islower((int)dna->seq[i])) { dna->s5[i] = 4; dna->seq[i] = 'N'; if (dna->s16) dna->s16[i] = 15; } } zoe_s5_stats(dna); } void zoeLCsmooth (zoeDNA dna, coor_t flank, coor_t island, coor_t min_len) { int i, j, d, len1, len2; zoeFeature misc, f, prev; zoeFeatureVec fvec; char * s5; int ncount = 0; /* Purpose: Mask long-ish lowercase regions and fill in small islands of uppercase. Short repeats may be over-zealous masking. */ /* create a copy of the dna->s5 to work with */ s5 = zoeMalloc(dna->length +1); for (i = 0; i < dna->length; i++) { if (dna->s5[i] == 4 || islower((int)dna->seq[i])) { s5[i] = 4; ncount++; } else { s5[i] = dna->s5[i]; } } /* abort if no N's/lowercase in sequence */ if (ncount == 0) { zoeFree(s5); return; } /* find all regions of N/lowercase */ misc = zoeNewFeature(Misc, 0, 0, '+', 0, 0, 0, 0, NULL/*, NULL*/); fvec = zoeNewFeatureVec(); for (i = 0; i < dna->length; i++) if (s5[i] == 4) break; for (i = 0; i < dna->length; i++) { if (s5[i] == 4) { for (j = i+1; j < dna->length; j++) { if (s5[j] != 4) break; } misc->start = i; misc->end = j -1; zoePushFeatureVec(fvec, misc); i = j; } } if (fvec->size == 0) zoeExit("zoeLCmask vec->size 0"); /* convert small islands to N prev f NNNNNNNNNN acgtgaa NNNNNNNNNN <- len1 -> d <- len2 -> */ for (i = 1; i < fvec->size; i++) { f = fvec->elem[i]; prev = fvec->elem[i-1]; len1 = prev->end - prev->start + 1; len2 = f->end - f->start + 1; d = f->start - prev->end -1; if (len1 >= flank && len2 >= flank && d <= island) { for (j = prev->end+1; j <= f->start -1; j++) { s5[j] = 4; } } } /* clear and start over */ zoeDeleteFeatureVec(fvec); fvec = zoeNewFeatureVec(); for (i = 0; i < dna->length; i++) if (s5[i] == 4) break; for (i = 0; i < dna->length; i++) { if (s5[i] == 4) { for (j = i+1; j < dna->length; j++) { if (s5[j] != 4) break; } misc->start = i; misc->end = j -1; if (j - i > min_len) zoePushFeatureVec(fvec, misc); i = j; } } /* edit DNA */ for (i = 0; i < fvec->size; i++) { f = fvec->elem[i]; for (j = f->start; j <= f->end; j++) { dna->seq[j] = 'N'; dna->s5[j] = 4; if (dna->s16) dna->s16[j] = 15; } } zoeDeleteFeature(misc); zoeDeleteFeatureVec(fvec); zoe_s5_stats(dna); } zoeDNA zoeSubseqDNA (const char *def, const zoeDNA dna, coor_t from, coor_t length) { zoeDNA sub = NULL; char * seq = NULL; int i; seq = zoeMalloc(length +1); for (i = from; i < from + length; i++) { seq[i - from] = dna->seq[i]; } seq[length] = '\0'; sub = zoeNewDNA(def, seq); zoeFree(seq); return sub; } zoeDNA zoeFeatureDNA (const char *def, const zoeDNA dna, const zoeFeature f) { zoeDNA sub = NULL; zoeDNA anti = NULL; sub = zoeSubseqDNA(def, dna, f->start, f->end - f->start +1); if (f->strand == '-') { anti = zoeAntiDNA(def, sub); zoeDeleteDNA(sub); return anti; } else { return sub; } } zoeProtein zoeTranslateDNA (const char *def, const zoeDNA dna, frame_t offset) { char * seq; zoeProtein pro = NULL; if (offset < 0 || offset > 2) { zoeExit("attempt to use illegal offset (%d) in zoeTranslateDNA in %s\n", offset, def); } seq = zoeTranslateS5(dna->s5, dna->length, offset); pro = zoeNewTrustedProtein(def, seq); zoeFree(seq); return pro; } zoeProtein zoeTranslateFeature (const char * def, const zoeDNA dna, const zoeFeature f) { zoeDNA sub; zoeProtein pro; sub = zoeFeatureDNA(def, dna, f); pro = zoeTranslateDNA(def, sub, f->inc5); zoeDeleteDNA(sub); return pro; } void zoeWriteDNA (FILE * stream, const zoeDNA dna) { coor_t i; if (dna->def[0] != '>') zoeS(stream, ">"); zoeS(stream, "%s", dna->def); if (dna->def[strlen(dna->def) -1] != '\n') zoeS(stream, "\n"); for (i = 1; i <= dna->length; i++) { (void)fputc(dna->seq[i-1], stream); if ((i % 60) == 0) zoeS(stream, "\n"); } if ((i % 60) != 1) zoeS(stream, "\n"); } zoeDNA zoeGetDNA (const char * file) { FILE * stream = NULL; zoeFastaFile fasta = NULL; zoeDNA dna = NULL; if ((stream = fopen(file, "r")) == NULL) zoeExit("zoeGetDNA failed to open %s", file); if ((fasta = zoeReadFastaFile(stream)) == NULL) zoeExit("zoeGetDNA failed to parse %s", file); (void)fclose(stream); dna = zoeNewDNA(fasta->def, fasta->seq); zoeDeleteFastaFile(fasta); return(dna); } zoeFeatureVec zoeORFs (const zoeDNA dna, strand_t strand) { int i, frame, length; zoeDNA anti = NULL; zoeFeatureVec orfs = NULL; zoeProtein pro[3]; zoeIVec stops = NULL; zoeFeature orf; coor_t start, end; orfs = zoeNewFeatureVec(); /* plus-strand ORFs */ if (strand == '+' || strand == '=') { for (frame = 0; frame < 3; frame++) { if ((pro[frame] = zoeTranslateDNA(">zoeORFs translate", dna, frame)) == NULL) { zoeExit("zoeORFs fatal error"); } stops = zoeNewIVec(); for (i = 0; i < pro[frame]->length; i++) { if (pro[frame]->seq[i] == '*') zoePushIVec(stops, i * 3 + frame); else if (pro[frame]->seq[i] == 'X') zoePushIVec(stops, i * 3 + frame); } for (i = 1; i < stops->size; i++) { start = stops->elem[i-1] +3; /* one after stop codon */ end = stops->elem[i] -1; /* one before stop codon */ length = end - start +1; if (length > 0) { orf = zoeNewFeature(Coding, start, end, '+', MIN_SCORE, 0, 0, frame, NULL/*, NULL*/); zoePushFeatureVec(orfs, orf); zoeDeleteFeature(orf); } } zoeDeleteProtein(pro[frame]); zoeDeleteIVec(stops); } } /* minus-strand ORFs */ if (strand == '-' || strand == '=') { anti = zoeAntiDNA(">zoeORFs anti", dna); for (frame = 0; frame < 3; frame++) { pro[frame] = zoeTranslateDNA(">zoeORFs translate", anti, frame); stops = zoeNewIVec(); for (i = 0; i < pro[frame]->length; i++) { if (pro[frame]->seq[i] == '*') zoePushIVec(stops, i * 3 + frame); else if (pro[frame]->seq[i] == 'X') zoePushIVec(stops, i * 3 + frame); } for (i = 1; i < stops->size; i++) { start = anti->length -stops->elem[i]; end = anti->length -stops->elem[i -1] -4; length = end - start +1; if (length > 0) { orf = zoeNewFeature(Coding, start, end, '-', MIN_SCORE, 0, 0, frame, NULL/*, NULL*/); zoePushFeatureVec(orfs, orf); zoeDeleteFeature(orf); } } zoeDeleteProtein(pro[frame]); zoeDeleteIVec(stops); } zoeDeleteDNA(anti); } return orfs; } void zoeWriteFeatureDNA(FILE *stream, const zoeFeature f, const zoeDNA dna, coor_t extra) { zoeFeature copy; zoeDNA sub; copy = zoeCopyFeature(f); copy->start -= extra; copy->end += extra; sub = zoeFeatureDNA(">", dna, copy); zoeS(stream, "%s\n", sub->seq); zoeDeleteDNA(sub); zoeDeleteFeature(copy); } zoeDNA zoeMakePaddedDNA (const zoeDNA real_dna, int padding) { coor_t i, new_length; zoeDNA dna; char * seq; new_length = real_dna->length + padding * 2; seq = zoeMalloc(new_length +1); for (i = 0; i < padding; i++) seq[i] = 'N'; for (i = 0; i < real_dna->length; i++) seq[i+padding] = real_dna->seq[i]; for (i = 0; i < padding; i++) seq[i + real_dna->length + padding] = 'N'; seq[new_length] = '\0'; dna = zoeNewDNA(real_dna->def, seq); zoeFree(seq); return dna; } #endif snap-2010-07-28/Zoe/zoeFeatureTable.h0000644000175000017500000000345111424066010016716 0ustar moellermoeller/******************************************************************************\ zoeFeatureTable.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_FEATURETABLE_H #define ZOE_FEATURETABLE_H #include #include #include "zoeCDS.h" #include "zoeDNA.h" #include "zoeFeature.h" #include "zoeTools.h" struct zoeFeatureTable { char * def; zoeFeatureVec vec; /* storage for the actual features */ zoeHash region; /* feature indexing by large-ish region */ zoeTVec regions; /* names of indicies */ }; typedef struct zoeFeatureTable * zoeFeatureTable; void zoeDeleteFeatureTable (zoeFeatureTable); zoeFeatureTable zoeNewFeatureTable (const char *, const zoeFeatureVec); zoeFeatureTable zoeReadFeatureTable (FILE *); void zoeWriteFeatureTable (FILE *, const zoeFeatureTable); void zoeWriteTriteFeatureTable (FILE *, const zoeFeatureTable); void zoeAddFeature (zoeFeatureTable, const zoeFeature); void zoeAddFeatures (zoeFeatureTable, const zoeFeatureVec); zoeFeatureTable zoeSelectExons (const zoeFeatureTable); zoeFeatureTable zoeSelectByGroup (const char *, const zoeFeatureTable, const char *); zoeFeatureTable zoeSelectByLabel (const char *, const zoeFeatureTable, zoeLabel); void zoeAntiFeatureTable (zoeFeatureTable, coor_t length); zoeFeatureTable zoeGetFeatureTable (const char *); zoeTVec zoeFeatureTableGroups (const zoeFeatureTable); zoeVec zoeGetGenes (const zoeFeatureTable, const zoeDNA); /* vector of zoeCDS */ zoeFeatureVec zoeGetFeaturesNear(const zoeFeatureTable, coor_t, coor_t); void zoePadFeatureTable(zoeFeatureTable, int); #endif snap-2010-07-28/Zoe/zoeHMM.c0000644000175000017500000003301411424066010014765 0ustar moellermoeller/******************************************************************************\ zoeHMM.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_HMM_C #define ZOE_HMM_C #include "zoeHMM.h" static score_t Nscore[zoeLABELS] = { 0, /* None */ 1, /* Inter */ 1, 1, 1, 1, 1, 1, 1, /* Intron and variants */ -1, -1, /* UTR5, UTR3 */ -1, -1, -1, -1, -1, /* Esngl, Einit, Eterm, Exon, Coding */ -1, -1, -1, -1, /* Acceptor, Donor, Start, Stop */ 1, -1, -1, /* Repeat, CNS, ORF */ -1, -1, -1, -1, /* PolyA, Prom, BPS, TSS */ 0, /* Misc */ 0, 0, 0, 0 /* HSPs */ }; static score_t Ascore[zoeLABELS] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; score_t zoeGetAscore (int label) { return Ascore[label]; } static int tag_error (FILE * stream, const char * tag) { char tmp[32]; if (fscanf(stream, "%s", tmp) != 1) { zoeWarn("tag_error %s", tag); return 1; } if (strcmp(tmp, tag) != 0) { zoeWarn("tag not found %s", tag); return 1; } return 0; } static void zoeMapHMM (zoeHMM hmm) { int i, j, k; zoeLabel label, from, to; score_t score; score_t null_score; /* smap (state map) */ for (i = 0; i < zoeLABELS; i++) hmm->smap[i] = NULL; for (i = 0; i < hmm->states; i++) { label = hmm->state[i]->label; if (label == Intron) { hmm->smap[Int0] = hmm->state[i]; hmm->smap[Int1] = hmm->state[i]; hmm->smap[Int1T] = hmm->state[i]; hmm->smap[Int2] = hmm->state[i]; hmm->smap[Int2TA] = hmm->state[i]; hmm->smap[Int2TG] = hmm->state[i]; } else { hmm->smap[label] = hmm->state[i]; } } /* imap (initial score) */ for (i = 0; i < zoeLABELS; i++) hmm->imap[i] = MIN_SCORE; for (i = 0; i < hmm->states; i++) { if (hmm->state[i]->type != INTERNAL) continue; label = hmm->state[i]->label; if (hmm->state[i]->init == 0) score = MIN_SCORE; else score = zoeFloat2Score(hmm->state[i]->init); if (label == Intron) { hmm->imap[Int0] = score; hmm->imap[Int1] = score; hmm->imap[Int1T] = score; hmm->imap[Int2] = score; hmm->imap[Int2TA] = score; hmm->imap[Int2TG] = score; } else { hmm->imap[label] = score; } } /* kmap (terminal score) */ for (i = 0; i < zoeLABELS; i++) hmm->kmap[i] = MIN_SCORE; for (i = 0; i < hmm->states; i++) { if (hmm->state[i]->type != INTERNAL) continue; label = hmm->state[i]->label; if (hmm->state[i]->term == 0) score = MIN_SCORE; else score = zoeFloat2Score(hmm->state[i]->term); if (label == Intron) { hmm->kmap[Int0] = score; hmm->kmap[Int1] = score; hmm->kmap[Int1T] = score; hmm->kmap[Int2] = score; hmm->kmap[Int2TA] = score; hmm->kmap[Int2TG] = score; } else { hmm->kmap[label] = score; } } /* dmap - duration map */ for (i = 0; i < zoeLABELS; i++) hmm->dmap[i] = NULL; for (i = 0; i < hmm->durations; i++) { label = hmm->duration[i]->label; if (label == Intron) { hmm->dmap[Int0] = hmm->duration[i]; hmm->dmap[Int1] = hmm->duration[i]; hmm->dmap[Int1T] = hmm->duration[i]; hmm->dmap[Int2] = hmm->duration[i]; hmm->dmap[Int2TA] = hmm->duration[i]; hmm->dmap[Int2TG] = hmm->duration[i]; } else { hmm->dmap[label] = hmm->duration[i]; } } /* xmap (extend score) */ null_score = zoeScoreDuration(hmm->duration[Inter], 2) - zoeScoreDuration(hmm->duration[Inter], 1); for (i = 0; i < zoeLABELS; i++) hmm->xmap[i] = 0; for (i = 0; i < hmm->durations; i++) { label = hmm->duration[i]->label; if (hmm->duration[i]->distribution[0]->type != GEOMETRIC) { score = 0; /* explicit duration does not use xmap */ } else { if (hmm->duration[i]->distributions != 1) zoeExit("HMM xmap distributions != 1"); score = zoeScoreDuration(hmm->duration[i], 2) - zoeScoreDuration(hmm->duration[i], 1); score -= null_score; } if (label == Intron) { hmm->xmap[Int0] = score; hmm->xmap[Int1] = score; hmm->xmap[Int1T] = score; hmm->xmap[Int2] = score; hmm->xmap[Int2TA] = score; hmm->xmap[Int2TG] = score; } else { hmm->xmap[label] = score; } } /* mmap - model map */ for (i = 0; i < zoeLABELS; i++) hmm->mmap[i] = NULL; for (i = 0; i < hmm->models; i++) { label = zoeText2Label(hmm->model[i]->name); if (label == Intron) { hmm->mmap[Int0] = hmm->model[i]; hmm->mmap[Int1] = hmm->model[i]; hmm->mmap[Int1T] = hmm->model[i]; hmm->mmap[Int2] = hmm->model[i]; hmm->mmap[Int2TA] = hmm->model[i]; hmm->mmap[Int2TG] = hmm->model[i]; } else { hmm->mmap[label] = hmm->model[i]; } } /* tmap */ for (i = 0; i < zoeLABELS; i++) { for (j = 0; j < zoeLABELS; j++) hmm->tmap[i][j] = MIN_SCORE; } for (i = 0; i < hmm->transitions; i++) { from = hmm->transition[i]->from; to = hmm->transition[i]->to; score = hmm->transition[i]->score; if (from == Intron) { hmm->tmap[Int0][to] = score; hmm->tmap[Int1][to] = score; hmm->tmap[Int1T][to] = score; hmm->tmap[Int2][to] = score; hmm->tmap[Int2TA][to] = score; hmm->tmap[Int2TG][to] = score; } else if (to == Intron) { hmm->tmap[from][Int0] = score; hmm->tmap[from][Int1] = score; hmm->tmap[from][Int1T] = score; hmm->tmap[from][Int2] = score; hmm->tmap[from][Int2TA] = score; hmm->tmap[from][Int2TG] = score; } else { hmm->tmap[from][to] = score; } } /* jmap */ for (i = 0; i < zoeLABELS; i++) { for (j = 0; j < zoeLABELS; j++) { hmm->jmap[i][j] = 0; } } for (i = 0; i < zoeLABELS; i++) { for (j = 0; j < zoeLABELS; j++) { if (hmm->smap[i] == NULL) continue; if (hmm->smap[i]->type != INTERNAL) continue; for (k = 0; k < zoeLABELS; k++) { if (hmm->tmap[i][j] == MIN_SCORE) continue; if (hmm->tmap[j][k] == MIN_SCORE) continue; if (hmm->jmap[k][j] == NULL) { hmm->jmap[k][j] = zoeNewIVec(); } zoePushIVec(hmm->jmap[k][j], i); } } } /* cmap */ for (i = 0; i < zoeLABELS; i++) { if (hmm->smap[i] == NULL) continue; switch (i) { case Einit: hmm->cmap[i] = hmm->mmap[Start]->max_left + hmm->mmap[Donor]->max_right; break; case Exon: hmm->cmap[i] = hmm->mmap[Acceptor]->max_left + hmm->mmap[Donor]->max_right; break; case Eterm: hmm->cmap[i] = hmm->mmap[Acceptor]->max_left + hmm->mmap[Stop]->max_right; break; case Esngl: hmm->cmap[i] = hmm->mmap[Start]->max_left + hmm->mmap[Stop]->max_right; break; case PolyA: hmm->cmap[i] = hmm->mmap[PolyA]->max_left + hmm->mmap[PolyA]->max_right; break; case Prom: hmm->cmap[i] = hmm->mmap[Prom]->max_left + hmm->mmap[Prom]->max_right; break; case TSS: hmm->cmap[i] = hmm->mmap[TSS]->max_left + hmm->mmap[TSS]->max_right; break; case Repeat: hmm->cmap[i] = 0; break; case ORF: hmm->cmap[i] = 0; break; case Int0: case Int1: case Int1T: case Int2: case Int2TA: case Int2TG: hmm->cmap[i] = hmm->mmap[Donor]->max_right; break; case Inter: case UTR5: case UTR3: break; default: zoeExit("%d not supported in hmm->cmap", i); } } } static zoeHMM zoeAbortHMM (zoeHMM hmm, const char * string) { zoeWarn("zoeHMM aborting (%s)", string); zoeDeleteHMM(hmm); return NULL; } /****************************************************************************\ PUBLIC FUNCTIONS \****************************************************************************/ void zoeSetNscore (zoeLabel label, score_t score) { Nscore[label] = score; } void zoeSetAscore (zoeLabel label, score_t score) { Ascore[label] = score; } void zoeDeleteHMM (zoeHMM hmm) { int i, j; if (hmm == NULL) return; if (hmm->name) { zoeFree(hmm->name); hmm->name = NULL; } for (i = 0; i < hmm->states; i++) { zoeDeleteState(hmm->state[i]); hmm->state[i] = NULL; } if (hmm->state) { zoeFree(hmm->state); hmm->state = NULL; } for (i = 0; i < hmm->transitions; i++) { zoeDeleteTransition(hmm->transition[i]); hmm->transition[i] = NULL; } if (hmm->transition) { zoeFree(hmm->transition); hmm->transition = NULL; } for (i = 0; i < hmm->durations; i++) { zoeDeleteDuration(hmm->duration[i]); hmm->duration[i] = NULL; } if (hmm->duration) { zoeFree(hmm->duration); hmm->duration = NULL; } for (i = 0; i < hmm->models; i++) { zoeDeleteModel(hmm->model[i]); hmm->model[i] = NULL; } if (hmm->model) { zoeFree(hmm->model); hmm->model = NULL; } /* jmap only mapped needed to free */ for (i = 0; i < zoeLABELS; i++) { for (j = 0; j < zoeLABELS; j++) { if (hmm->jmap[i][j]) { zoeDeleteIVec(hmm->jmap[i][j]); } } } zoeFree(hmm); } zoeHMM zoeNewHMM (void) { int i, k; zoeHMM hmm = zoeMalloc(sizeof(struct zoeHMM)); hmm->name = NULL; hmm->states = 0; hmm->transitions = 0; hmm->durations = 0; hmm->models = 0; hmm->state = NULL; hmm->transition = NULL; hmm->duration = NULL; hmm->model = NULL; hmm->phasepref = NULL; for (i = 0; i < zoeLABELS; i++) { hmm->dmap[i] = NULL; hmm->mmap[i] = NULL; hmm->smap[i] = NULL; hmm->imap[i] = MIN_SCORE; hmm->kmap[i] = MIN_SCORE; hmm->xmap[i] = MIN_SCORE; hmm->cmap[i] = 0; for (k = 0; k < zoeLABELS; k++) { hmm->jmap[i][k] = NULL; hmm->tmap[i][k] = MIN_SCORE; } } return hmm; } zoeHMM zoeReadHMM (FILE * stream) { char type[16]; char name[256]; zoeLabel label; int i, states, transitions, durations, models; zoeHMM hmm = zoeNewHMM(); /* header */ if (fscanf(stream, "%s %s %d %d %d %d", type, name, &states, &transitions, &durations, &models) != 6) return zoeAbortHMM(hmm, "header"); /* set attributes */ if (strcmp(type, "zoeHMM") != 0) return zoeAbortHMM(hmm, "zoeHMM"); hmm->states = states; hmm->transitions = transitions; hmm->durations = durations; hmm->models = models; hmm->name = zoeMalloc(strlen(name) + 1); (void)strcpy(hmm->name, name); hmm->state = zoeMalloc(states * sizeof(zoeState)); hmm->transition = zoeMalloc(transitions * sizeof(zoeTransition)); hmm->model = zoeMalloc(models * sizeof(zoeModel)); hmm->duration = zoeMalloc(durations * sizeof(zoeDuration)); /* parse the states */ if (tag_error(stream, "")) return zoeAbortHMM(hmm, ""); for (i = 0; i < states; i++) { if ((hmm->state[i] = zoeReadState(stream)) == NULL) return zoeAbortHMM(hmm, "states"); } /* parse state transitions */ if (tag_error(stream, "")) return zoeAbortHMM(hmm, ""); for (i = 0; i < hmm->transitions; i++) { if ((hmm->transition[i] = zoeReadTransition(stream)) == NULL) return zoeAbortHMM(hmm, "transitions"); } /* parse phase preferences */ if (tag_error(stream, "")) return zoeAbortHMM(hmm, ""); if ((hmm->phasepref = zoeReadPhasePref(stream)) == NULL) return zoeAbortHMM(hmm, "phasepref"); /* parse state durations */ if (tag_error(stream, "")) return zoeAbortHMM(hmm, ""); for (i = 0; i < hmm->durations; i++) { if ((hmm->duration[i] = zoeReadDuration(stream)) == NULL) return zoeAbortHMM(hmm, "durations"); } /* parse sequence models */ if (tag_error(stream, "")) return zoeAbortHMM(hmm, ""); for (i = 0; i < hmm->models; i++) { if ((hmm->model[i] = zoeReadModel(stream)) == NULL) { zoeE("model %d failure\n", i); return zoeAbortHMM(hmm, "models"); } label = zoeText2Label(hmm->model[i]->name); if ((hmm->model[i]->symbols == 4)) { zoeAmbiguateModel(hmm->model[i], Nscore[label]); } } zoeMapHMM(hmm); return hmm; } void zoeWriteHMM (FILE * stream, const zoeHMM hmm) { int i; zoeS(stream, "zoeHMM\t%s\t%d\t%d\t%d\t%d\n", hmm->name, hmm->states, hmm->transitions, hmm->durations, hmm->models); zoeS(stream, "\n\n"); for (i = 0; i < hmm->states; i++) { zoeWriteState(stream, hmm->state[i]); } zoeS(stream, "\n\n"); for (i = 0; i < hmm->transitions; i++) { zoeWriteTransition(stream, hmm->transition[i]); } zoeS(stream, "\n\n"); zoeWritePhasePref(stream, hmm->phasepref); zoeS(stream, "\n\n"); for (i = 0; i < hmm->durations; i++) { zoeWriteDuration(stream, hmm->duration[i]); } zoeS(stream, "\n\n"); for (i = 0; i < hmm->models; i++) { zoeWriteModel(stream, hmm->model[i]); } } zoeHMM zoeGetHMM (const char * file) { FILE * stream = NULL; zoeHMM hmm = NULL; char * ZOE = getenv("ZOE"); char path[1024]; stream = fopen(file, "r"); if (stream == NULL) { sprintf(path, "%s/HMM/%s", ZOE, file); stream = fopen(path, "r"); if (stream == NULL) { zoeExit("error opening HMM file (%s)", file); } } hmm = zoeReadHMM(stream); if (hmm == NULL) zoeExit("zoeGetHMM failed to parse %s", file); (void)fclose(stream); return(hmm); } #endif snap-2010-07-28/Zoe/zoeMath.c0000644000175000017500000000615511424066010015243 0ustar moellermoeller/******************************************************************************\ zoeMath.c - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian Korf This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \******************************************************************************/ #ifndef ZOE_MATH_C #define ZOE_MATH_C #include "zoeMath.h" const int zoePOWER[6][8] = { {1, 0, 0, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 1, 1, 1, 1}, {1, 2, 4, 8, 16, 32, 64, 128}, {1, 3, 9, 27, 81, 243, 729, 2187}, {1, 4, 16, 64, 256, 1024, 4096, 16384}, {1, 5, 25, 125, 625, 3125, 15625, 78125}, }; static double zoePI = 3.1415926536; static double zoeLOG2 = 0.6931471806; double zoeLog2 (double x) { if (x <= 0) zoeExit("attempt to take log of %g", x); return (log(x) / zoeLOG2); } score_t zoeFloat2Score (double x) { if (x <= 0) return MIN_SCORE; return (score_t)(zoeLog2(x)); } double zoeScore2Float (score_t s) {return pow((double)2, ((double)s));} double zoeLnFactorial (int n) { double f; if (n == 0) return 0; f = (0.5 * log(2 * zoePI)) + ((n + 0.5) * log((double)n)) - n + 1 / (12 * n) - 1 / (360 * pow((double)n, (double)3)); return f; } /* some distributions (add normal, linear, etc. later) */ score_t zoeScoreGeometric (double m, double x) { double f; double p = 1/ m; f = (x - 1) * log(1 - p) + log(p); f /= log((double)2); return (score_t) f; } score_t zoeScorePoisson (double m, double x) { double f; f = (x * log(m)) - m - zoeLnFactorial((int)x); f /= log((double)2); return (score_t) f; } /* base conversion - positive numbers only */ void zoeDecToBase (int n, int base, char * s) { int i = 0, j; char c; if (base > 9) zoeExit("zoeDecToBase limit 9 (%d)\n", base); if (n < 0) zoeExit("zoeDecToBase positive only (%d)\n", n); do { s[i++] = n % base + '0'; } while ((n /= base) > 0); s[i] = '\0'; for (i = 0, j = strlen(s) -1; i < j; i++, j--) { c = s[i]; s[i] = s[j]; s[j] = c; } } int zoeBaseToDec (int base, const char * s) { char c; int i, len, val = 0; if (base > 9) zoeExit("zoeBaseToDec limit 9 (%d)\n", base); len = strlen(s); for (i = 0; i < len; i++) { c = s[i] - '0'; if (c < 0 || c > 9) zoeExit("zoeBaseToDec illegal symbol (%c)", s[i]); val += pow((float)base, (float)(len -i -1)) * c; } return val; } double zoeDivide (double a, double b) { if (a && b) { return a / b; } else if (a) { return FLT_MAX; } else if (b) { return 0; } else { return 1; } } #endif snap-2010-07-28/Zoe/seqstats.c0000644000175000017500000000531311424066010015476 0ustar moellermoeller/*****************************************************************************\ seqstats.c Produces statistics on sequence files Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include "zoe.h" int ASCII_SET = 256; int main (int argc, char *argv[]) { zoeFile file; zoeFastaFile seq = NULL; double entropy = 0; float f; double d; int file_count = 0; long total_length = 0; int this_arg; int i; long count[256]; long GC = 0, AT = 0; long longest = 0, shortest = INT_MAX; for(i=0;i\n", argv[0]); exit(1); } for (this_arg = 1; this_arg < argc; this_arg++) { /* open the file and get the sequences */ file = zoeOpenFile(argv[this_arg]); while ((seq = zoeReadFastaFile(file.stream)) != NULL) { file_count++; /* count the letters */ for (i = 0; i < seq->length; i++) { count[(int) seq->seq[i]]++; switch (seq->seq[i]) { case 'a': case 'A': case 't': case 'T': AT++; break; case 'g': case 'G': case 'c': case 'C': GC++; break; } } total_length += seq->length; if (seq->length > longest) longest = seq->length; if (seq->length < shortest) shortest = seq->length; zoeDeleteFastaFile(seq); } zoeCloseFile(file); } /* output some stats */ zoeS(stdout, "%d files\n", file_count); zoeS(stdout, "%g total letters\n", (float)total_length); zoeS(stdout, "range %g to %g\n", (float)shortest, (float)longest); f = total_length/file_count; zoeS(stdout, "%g average\n", f); zoeS(stdout, "%g GC\n", (double)GC / (double)(GC+AT)); for (i=0;i #include #include "zoeAlignment.h" /* private structures */ struct zoeHotSpot { int score; int i; int j; }; typedef struct zoeHotSpot * zoeHotSpot; struct zoeHSPcell { int score; zoeHSP hsp; char trace; /* 0=blank 1=diagonal 2=horizontal 3=vertical */ int i; int j; }; typedef struct zoeHSPcell * zoeHSPcell; void zoeDeleteHSP (zoeHSP hsp) { if (hsp == NULL) return; if (hsp->q_aln) { zoeFree(hsp->q_aln); hsp->q_aln = NULL; } if (hsp->s_aln) { zoeFree(hsp->s_aln); hsp->s_aln = NULL; } if (hsp->a_str) { zoeFree(hsp->a_str); hsp->a_str = NULL; } zoeFree(hsp); hsp = NULL; } zoeHSP zoeNewHSP (void) { zoeHSP hsp = zoeMalloc(sizeof(struct zoeHSP)); hsp->score = -1; hsp->bits = -1; hsp->e_value = -1; hsp->match = -1; hsp->mismatch = -1; hsp->q_gap = -1; hsp->s_gap = -1; hsp->q_start = -1; hsp->q_end = -1; hsp->s_start = -1; hsp->s_end = -1; hsp->q_aln = NULL; hsp->s_aln = NULL; hsp->a_str = NULL; return hsp; } /* >query1 sbjct line HSP query HSP sbjct sbjct line HSP query HSP sbjct >query2 sbjct line HSP query HSP sbjct There are 2 forms for the sbjct line ------------------------------------ : // long form : <%ID> // short form There are 4 forms for the HSP lines ----------------------------------- HSP <+/-> . . . // long form HSP + . . . // long form HSP <+/-> . . . // long form, no alignment HSP + . . . // long form, no alignment HSP // short form HSP // short form HSP // short form, no alignment HSP // short form, no alignment */ zoeHSP zoeReadHSP (FILE * stream) { zoeHSP hsp = zoeMalloc(sizeof(struct zoeHSP)); return hsp; } void zoeWriteHSP (FILE * stream, const zoeHSP hsp) { /* stats line */ zoeS(stream, "Stats:"); if (hsp->score >= 0) zoeS(stream, " score=%d", (int)hsp->score); if (hsp->bits >= 0) zoeS(stream, " bits=%g", hsp->bits); if (hsp->e_value >= 0) zoeS(stream, " E=%g", hsp->e_value); zoeS(stream, "\n"); /* alignment info */ zoeS(stream, "Alignment:"); zoeS(stream, " Q:%d..%d", hsp->q_start +1, hsp->q_end +1); zoeS(stream, " S:%d..%d", hsp->s_start +1, hsp->s_end +1); if (hsp->match >= 0 && hsp->mismatch >= 0) { zoeS(stream, " %d/%d", hsp->match, hsp->mismatch); if (hsp->q_gap >= 0 && hsp->s_gap >= 0) zoeS(stream, " %d,%d", hsp->q_gap, hsp->s_gap); } zoeS(stream, "\n"); /* alignments */ if (hsp->q_aln) zoeS(stream, "Q: %s\n", hsp->q_aln); if (hsp->a_str) zoeS(stream, " %s\n", hsp->a_str); if (hsp->s_aln) zoeS(stream, "S: %s\n", hsp->s_aln); zoeS(stream, "\n"); } void zoeDecorateHSP (zoeHSP hsp) { int i, length; int qgap = 0, sgap = 0, match = 0, mismatch = 0; length = strlen(hsp->q_aln); for (i = 0; i < length; i++) { if (hsp->q_aln[i] == hsp->s_aln[i]) match++; else if (hsp->q_aln[i] == '-') qgap++; else if (hsp->s_aln[i] == '-') sgap++; else mismatch++; } hsp->match = match; hsp->mismatch = mismatch; hsp->q_gap = qgap; hsp->s_gap = sgap; } int zoeHotSpotCmp (const zoeHotSpot h1, const zoeHotSpot h2) { return h2->score - h1->score; /* sort in descending order */ } int zoeHotSpotCmpPtr (const void * h1, const void * h2) { return zoeHotSpotCmp( *(zoeHotSpot *)h1, *(zoeHotSpot *)h2 ); } void zoeViewMatrix (zoeAlignCell02 ** matrix, zoeDNA dna1, zoeDNA dna2) { int i, j; for (i = 0; i < dna1->length; i++) zoeO("\t%c", dna1->seq[i]); zoeO("\n"); for (j = 1; j <= dna2->length; j++) { zoeO("%c", dna2->seq[j-1]); for (i = 1; i <= dna1->length; i++) { zoeO("\t"); switch (matrix[j][i].trace) { case 1: zoeO("+"); break; case 2: zoeO("<"); break; case 3: zoeO("^"); break; } zoeO("%d", matrix[j][i].score); } zoeO("\n"); } } void flip_string (char * string) { int i, length, half; char c; length = strlen(string); half = length / 2; for (i = 0; i < half; i++) { c = string[i]; /* save it */ string[i] = string[length -i -1]; string[length -i -1] = c; } } zoeHSP zoeTraceBack01 (zoeAlignCell01 ** matrix, int i, int j, zoeDNA dna1, zoeDNA dna2) { zoeHSP hsp = NULL; char * a1; /* alignment sequence 1 */ char * a2; /* alignment sequence 2 */ char * as; /* alignment string */ int index = 0; /* current index of alignment strings */ int abort = 0; /* set to true if not a novel trace back */ int I = i, J = j, S = matrix[j][i].score; /* allocate maximal storage for alignment strings */ a1 = zoeMalloc(i + j + 1); a2 = zoeMalloc(i + j + 1); as = zoeMalloc(i + j + 1); /* trace back */ while (matrix[j][i].trace != 0) { switch (matrix[j][i].trace) { case 1: /* match state */ i--; j--; a1[index] = dna1->seq[i]; a2[index] = dna2->seq[j]; as[index] = (a1[index] == a2[index]) ? '|' : ' '; break; case 2: /* horizontal gap */ i--; a1[index] = dna1->seq[i]; a2[index] = '-'; as[index] = ' '; break; case 3: /* vertical gap */ a1[index] = '-'; a2[index] = dna2->seq[j]; as[index] = ' '; j--; break; default: zoeExit("impossible"); } index++; } if (abort) { zoeFree(a1); zoeFree(a2); zoeFree(as); return NULL; } a1[index] = '\0'; a2[index] = '\0'; as[index] = '\0'; flip_string(a1); flip_string(a2); flip_string(as); hsp = zoeNewHSP(); hsp->score = S; hsp->q_start = i; hsp->q_end = I -1; hsp->s_start = j; hsp->s_end = J -1; hsp->q_aln = a1; hsp->s_aln = a2; hsp->a_str = as; zoeDecorateHSP(hsp); return hsp; } zoeHSP zoeAlign01 ( const zoeDNA dna1, /* query dna */ const zoeDNA dna2, /* sbjct dna */ int M, /* match */ int N, /* mismatch */ int G, /* gap */ int E) /* gap extend */ { /* variables */ int i, j, dscore, hscore, vscore, max_i, max_j, max_s; zoeAlignCell01 ** matrix; zoeHSP msp; /* allocate matrix */ matrix = zoeMalloc((dna2->length +1) * sizeof(struct zoeAlignCell01)); for (i = 0; i <= dna2->length; i++) { matrix[i] = zoeMalloc((dna1->length +1) * sizeof(struct zoeAlignCell01)); } /* initialization */ for (i = 0; i <= dna1->length; i++) { matrix[0][i].score = 0; matrix[0][i].trace = 0; matrix[0][i].state = 0; } for (j = 0; j <= dna2->length; j++) { matrix[j][0].score = 0; matrix[j][0].trace = 0; matrix[j][0].state = 0; } max_i = 0; max_j = 0; max_s = 0; /* induction */ for (j = 1; j <= dna2->length; j++) { for (i = 1; i <= dna1->length; i++) { dscore = (dna1->s5[i-1] == dna2->s5[j-1]) ? M : -N; dscore += matrix[j-1][i-1].score; vscore = matrix[j-1][i].score - G; hscore = matrix[j][i-1].score - G; if (dscore >= vscore && dscore >= hscore && dscore > 0) { matrix[j][i].score = dscore; matrix[j][i].trace = 1; matrix[j][i].state = 0; if (matrix[j][i].score > max_s) { max_s = matrix[j][i].score; max_j = j; max_i = i; } } else if (vscore >= hscore && vscore > 0) { matrix[j][i].score = vscore; matrix[j][i].trace = 3; matrix[j][i].state = 0; } else if (hscore > 0) { matrix[j][i].score = hscore; matrix[j][i].trace = 2; matrix[j][i].state = 0; } else { matrix[j][i].score = 0; matrix[j][i].trace = 0; matrix[j][i].state = 0; } } } /* trace-back */ msp = zoeTraceBack01(matrix, max_i, max_j, dna1, dna2); /* clean up */ for (i = 0; i <= dna2->length; i++) { zoeFree(matrix[i]); } zoeFree(matrix); return msp; } zoeHSP zoeTraceBack02 (zoeAlignCell02 ** matrix, int i, int j, zoeDNA dna1, zoeDNA dna2) { zoeHSP hsp = NULL; char * a1; /* alignment sequence 1 */ char * a2; /* alignment sequence 2 */ char * as; /* alignment string */ int index = 0; /* current index of alignment strings */ int abort = 0; /* set to true if not a novel trace back */ int I = i, J = j, S = matrix[j][i].score; /* allocate maximal storage for alignment strings */ a1 = zoeMalloc(i + j + 1); a2 = zoeMalloc(i + j + 1); as = zoeMalloc(i + j + 1); /* trace back */ while (matrix[j][i].trace != 0) { if (matrix[j][i].found) { abort = 1; break; } matrix[j][i].found = 1; switch (matrix[j][i].trace) { case 1: /* match state */ i--; j--; a1[index] = dna1->seq[i]; a2[index] = dna2->seq[j]; as[index] = (a1[index] == a2[index]) ? '|' : ' '; break; case 2: /* horizontal gap */ i--; a1[index] = dna1->seq[i]; a2[index] = '-'; as[index] = ' '; break; case 3: /* vertical gap */ a1[index] = '-'; a2[index] = dna2->seq[j]; as[index] = ' '; j--; break; default: zoeExit("impossible"); } index++; } if (abort) { zoeFree(a1); zoeFree(a2); zoeFree(as); return NULL; } a1[index] = '\0'; a2[index] = '\0'; as[index] = '\0'; flip_string(a1); flip_string(a2); flip_string(as); hsp = zoeNewHSP(); hsp->score = S; hsp->q_start = i; hsp->q_end = I -1; hsp->s_start = j; hsp->s_end = J -1; hsp->q_aln = a1; hsp->s_aln = a2; hsp->a_str = as; zoeDecorateHSP(hsp); return hsp; } zoeVec zoeAlign02 ( const zoeDNA dna1, /* query dna */ const zoeDNA dna2, /* sbjct dna */ int M, /* match */ int N, /* mismatch */ int G, /* gap */ int E, /* gap extend */ int S) /* score */ { /* variables */ int i, j, k, dscore, hscore, vscore; zoeAlignCell02 ** matrix; zoeVec HSPs = zoeNewVec(); zoeVec spots = zoeNewVec(); zoeHotSpot spot; zoeHSP hsp; /* allocate matrix */ matrix = zoeMalloc((dna2->length +1) * sizeof(struct zoeAlignCell02)); for (i = 0; i <= dna2->length; i++) { matrix[i] = zoeMalloc((dna1->length +1) * sizeof(struct zoeAlignCell02)); } /* initialization */ for (i = 0; i <= dna1->length; i++) { matrix[0][i].score = 0; matrix[0][i].trace = 0; matrix[0][i].state = 0; matrix[0][i].found = 0; } for (j = 0; j <= dna2->length; j++) { matrix[j][0].score = 0; matrix[j][0].trace = 0; matrix[j][0].state = 0; matrix[j][0].found = 0; } /* induction */ for (j = 1; j <= dna2->length; j++) { for (i = 1; i <= dna1->length; i++) { dscore = (dna1->s5[i-1] == dna2->s5[j-1]) ? M : -N; dscore += matrix[j-1][i-1].score; vscore = matrix[j-1][i].score - G; hscore = matrix[j][i-1].score - G; if (dscore >= vscore && dscore >= hscore && dscore > 0) { matrix[j][i].score = dscore; matrix[j][i].trace = 1; matrix[j][i].state = 0; matrix[j][i].found = 0; } else if (vscore >= hscore && vscore > 0) { matrix[j][i].score = vscore; matrix[j][i].trace = 3; matrix[j][i].state = 0; matrix[j][i].found = 0; } else if (hscore > 0) { matrix[j][i].score = hscore; matrix[j][i].trace = 2; matrix[j][i].state = 0; matrix[j][i].found = 0; } else { matrix[j][i].score = 0; matrix[j][i].trace = 0; matrix[j][i].state = 0; matrix[j][i].found = 0; } } } /* show matrix */ if (zoeOption("-debug")) zoeViewMatrix(matrix, dna1, dna2); /* gather hot spots */ for (j = 1; j <= dna2->length; j++) { for (i = 1; i <= dna1->length; i++) { if (matrix[j][i].score >= S) { spot = zoeMalloc(sizeof(struct zoeHotSpot)); spot->i = i; spot->j = j; spot->score = matrix[j][i].score; zoePushVec(spots, spot); } } } qsort(spots->elem, spots->size, sizeof(zoeHotSpot), zoeHotSpotCmpPtr); /* multiple trace-back */ for (k = 0; k < spots->size; k++) { spot = spots->elem[k]; if (matrix[spot->j][spot->i].found) continue; hsp = zoeTraceBack02(matrix, spot->i, spot->j, dna1, dna2); if (hsp != NULL) { /* clear neighboring cells */ for (j = hsp->s_start; j <= hsp->s_end; j++) { for (i = hsp->q_start; i <= hsp->q_end; i++) { matrix[j][i].found = 1; } } zoePushVec(HSPs, hsp); } } for (i = 0; i < spots->size; i++) zoeFree(spots->elem[i]); zoeDeleteVec(spots); /* clean up */ for (i = 0; i <= dna2->length; i++) { zoeFree(matrix[i]); } zoeFree(matrix); return HSPs; } zoeHSP zoeAlign03 ( const zoeDNA dna1, /* query dna */ const zoeDNA dna2, /* sbjct dna */ int M, /* match */ int N, /* mismatch */ int G, /* gap */ int E, /* gap extend */ int GC /* GC score */ ) { /* variables */ int i, j, dscore, hscore, vscore, max_i, max_j, max_s; zoeAlignCell01 ** matrix; zoeHSP msp; /* allocate matrix */ matrix = zoeMalloc((dna2->length +1) * sizeof(struct zoeAlignCell01)); for (i = 0; i <= dna2->length; i++) { matrix[i] = zoeMalloc((dna1->length +1) * sizeof(struct zoeAlignCell01)); } /* initialization */ for (i = 0; i <= dna1->length; i++) { matrix[0][i].score = 0; matrix[0][i].trace = 0; matrix[0][i].state = 0; } for (j = 0; j <= dna2->length; j++) { matrix[j][0].score = 0; matrix[j][0].trace = 0; matrix[j][0].state = 0; } max_i = 0; max_j = 0; max_s = 0; /* induction */ for (j = 1; j <= dna2->length; j++) { for (i = 1; i <= dna1->length; i++) { if (dna1->s5[i-1] == 1 && dna2->s5[j-1] == 2) { dscore = GC; } else if (dna1->s5[i-1] == 2 && dna2->s5[j-1] == 1) { dscore = GC; } else { dscore = (dna1->s5[i-1] == dna2->s5[j-1]) ? M : -N; } dscore += matrix[j-1][i-1].score; vscore = matrix[j-1][i].score - G; hscore = matrix[j][i-1].score - G; if (dscore >= vscore && dscore >= hscore && dscore > 0) { matrix[j][i].score = dscore; matrix[j][i].trace = 1; matrix[j][i].state = 0; if (matrix[j][i].score > max_s) { max_s = matrix[j][i].score; max_j = j; max_i = i; } } else if (vscore >= hscore && vscore > 0) { matrix[j][i].score = vscore; matrix[j][i].trace = 3; matrix[j][i].state = 0; } else if (hscore > 0) { matrix[j][i].score = hscore; matrix[j][i].trace = 2; matrix[j][i].state = 0; } else { matrix[j][i].score = 0; matrix[j][i].trace = 0; matrix[j][i].state = 0; } } } /* trace-back */ msp = zoeTraceBack01(matrix, max_i, max_j, dna1, dna2); /* clean up */ for (i = 0; i <= dna2->length; i++) { zoeFree(matrix[i]); } zoeFree(matrix); return msp; } int zoeHSPCmpQuery (const zoeHSP h1, const zoeHSP h2) { if (h1->q_start < h2->q_start && h1->q_end < h2->q_end) return -1; else if (h1->q_start > h2->q_start && h2->q_end > h2->q_end) return 1; else return 0; } int zoeHSPCmpSbjct (const zoeHSP h1, const zoeHSP h2) { if (h1->s_start < h2->s_start && h1->s_end < h2->s_end) return -1; else if (h1->s_start > h2->s_start && h2->s_end > h2->s_end) return 1; else return 0; } int zoeHSPCmpQ (const void * h1, const void * h2) { return zoeHSPCmpQuery( *(zoeHSP *)h1, *(zoeHSP *)h2 ); } int zoeHSPCmpS (const void * h1, const void * h2) { return zoeHSPCmpSbjct( *(zoeHSP *)h1, *(zoeHSP *)h2 ); } zoeVec zoeGroupHSPs(zoeVec HSPs, char type) { zoeVec group = zoeNewVec(); int i; /* copy HSPs */ for (i = 0; i < HSPs->size; i++) zoePushVec(group, HSPs->elem[i]); /* sort HSPs */ switch (type) { case 'q': qsort(group->elem, group->size, sizeof(zoeHSP), zoeHSPCmpQ); break; case 's': qsort(group->elem, group->size, sizeof(zoeHSPcell), zoeHSPCmpS); break; default: zoeExit("unsupported"); } /* group HSPs */ for (i = 0; i < group->size; i++) { } return group; } zoeVec zoeChainHSPs (const zoeVec HSPs) { int i; zoeVec bestHSPs = NULL; /* shush */ zoeVec qvec; zoeVec svec; for (i = 0; i < HSPs->size; i++) { zoeWriteHSP(stdout, HSPs->elem[i]); } qvec = zoeGroupHSPs(HSPs, 'q'); svec = zoeGroupHSPs(HSPs, 's'); return bestHSPs; } void zoeDeleteScoreSystem (zoeScoreSystem s) { int i; for (i = 0; i < 22; i++) zoeFree(s->score[i]); zoeFree(s->score); zoeFree(s); } zoeScoreSystem zoeNewScoreSystem (char* filename, int gapO, int gapE, int width) { int i, j, a, b; float ** matrix; FILE * file; char line[256]; char * symbol; char * value; float s; zoeTVec symbols = zoeNewTVec(); zoeFVec values = zoeNewFVec(); zoeScoreSystem ss = zoeMalloc(sizeof(struct zoeScoreSystem)); /* read scoring matrix */ if ((file = fopen(filename, "r")) == NULL) zoeExit("file error %s\n", filename); matrix = malloc(22 * sizeof(float *)); for (i = 0; i < 22; i++) matrix[i] = malloc(22 * sizeof(float)); for (i = 0; i < 22; i++) { for (j = 0; j < 22; j++) matrix[i][j] = -100; } /* strip comments */ while (fgets(line, sizeof(line), file)) { if (line[0] == '#') continue; break; } /* get list of symbols */ symbol = strtok(line, " "); zoePushTVec(symbols, symbol); while ((symbol = strtok(NULL, " "))) { zoePushTVec(symbols, symbol); } /* values */ while (fgets(line, sizeof(line), file)) { symbol = strtok(line, " "); while ((value = strtok(NULL, " "))) { if (isspace(value[0])) continue; /* last token is a space */ s = atof(value); zoePushFVec(values, s); } } /* load matrix */ for (i = 0; i < symbols->size; i++) { for (j = 0; j < symbols->size; j++) { a = zoe_char2aa(symbols->elem[i][0]); b = zoe_char2aa(symbols->elem[j][0]); if (a == -1 || b == -1) continue; /* skip non-canonical */ s = values->elem[i * symbols->size + j]; matrix[a][b] = s; } } /* clean up */ zoeDeleteTVec(symbols); zoeDeleteFVec(values); /* assignment */ ss->score = matrix; ss->gapO = gapO; ss->gapE = gapE; ss->width = width; return ss; } /* Protein Alignment Functions . 0 1 2 3 i (p1) 0 1 2 3 j (p2) */ zoeHSP zoeProtAlignLocal(zoeProtein p1, zoeProtein p2, zoeScoreSystem s) { int i, j; float dscore, hscore, vscore, max_i, max_j, max_s; zoePCell ** matrix; zoeHSP hsp = zoeNewHSP(); char *a1, *a2, *as; int index; /* setup */ matrix = zoeMalloc((p1->length +1) * sizeof(struct zoePCell)); for (i = 0; i <= p1->length; i++) { matrix[i] = zoeMalloc((p2->length +1) * sizeof(struct zoePCell)); } a1 = zoeMalloc(p1->length + p2->length +1); a2 = zoeMalloc(p1->length + p2->length +1); as = zoeMalloc(p1->length + p2->length +1); /* initialization */ for (i = 0; i <= p1->length; i++) { matrix[i][0].score = 0; matrix[i][0].trace = 0; matrix[i][0].state = 0; } for (j = 0; j <= p2->length; j++) { matrix[0][j].score = 0; matrix[0][j].trace = 0; matrix[0][j].state = 0; } max_i = 0; max_j = 0; max_s = -s->gapO * (p1->length + p2->length); /* induction */ for (i = 1; i <= p1->length; i++) { for (j = 1; j <= p2->length; j++) { if (s->width && abs(i-j) > s->width) continue; dscore = s->score[(int)p1->s22[i-1]][(int)p2->s22[j-1]]; dscore += matrix[i-1][j-1].score; vscore = matrix[i][j-1].score; if (matrix[i][j-1].state == 0) vscore -= s->gapO; else vscore -= s->gapE; hscore = matrix[i-1][j].score; if (matrix[i-1][j].state == 0) hscore -= s->gapO; else hscore -= s->gapE; if (dscore >= vscore && dscore >= hscore && dscore > 0) { matrix[i][j].score = dscore; matrix[i][j].trace = 1; matrix[i][j].state = 0; if (matrix[i][j].score > max_s) { max_s = matrix[i][j].score; max_j = j; max_i = i; } } else if (vscore >= hscore && vscore > 0) { matrix[i][j].score = vscore; matrix[i][j].trace = 3; matrix[i][j].state = 1; } else if (hscore > 0) { matrix[i][j].score = hscore; matrix[i][j].trace = 2; matrix[i][j].state = 1; } else { matrix[i][j].score = 0; matrix[i][j].trace = 0; matrix[i][j].state = 0; } } } /* trace back */ i = max_i; j = max_j; index = 0; while (matrix[i][j].trace != 0) { switch (matrix[i][j].trace) { case 1: /* match state */ i--; j--; a1[index] = p1->seq[i]; a2[index] = p2->seq[j]; if (a1[index] == a2[index]) { as[index] = a1[index]; } else if (s->score[(int)p1->s22[i]][(int)p2->s22[j]] > 0) { as[index] = '+'; } else { as[index] = ' '; } break; case 2: /* horizontal gap */ i--; a1[index] = p1->seq[i]; a2[index] = '-'; as[index] = ' '; break; case 3: /* vertical gap */ a1[index] = '-'; a2[index] = p2->seq[j]; as[index] = ' '; j--; break; default: zoeExit("impossible"); } index++; } a1[index] = '\0'; a2[index] = '\0'; as[index] = '\0'; flip_string(a1); flip_string(a2); flip_string(as); /* decorations */ hsp->score = max_s; hsp->q_start = i; hsp->q_end = max_i -1; hsp->s_start = j; hsp->s_end = max_j -1; hsp->q_aln = a1; hsp->s_aln = a2; hsp->a_str = as; hsp->match = 0; hsp->mismatch = 0; hsp->q_gap = 0; hsp->s_gap = 0; for (i = 0; i < index; i++) { if (a1[i] == a2[i]) hsp->match++; else if (a1[i] == '-') hsp->q_gap++; else if (a2[i] == '-') hsp->s_gap++; else hsp->mismatch++; } /* clean up */ for (i = 0; i <= p1->length; i++) zoeFree(matrix[i]); zoeFree(matrix); return hsp; } zoeHSP zoeProtAlignNterm(zoeProtein p1, zoeProtein p2, zoeScoreSystem s) { int i, j; float dscore, hscore, vscore, max_i, max_j, max_s; zoePCell ** matrix; zoeHSP hsp = zoeNewHSP(); char *a1, *a2, *as; int index; /* setup */ matrix = zoeMalloc((p1->length +1) * sizeof(struct zoePCell)); for (i = 0; i <= p1->length; i++) { matrix[i] = zoeMalloc((p2->length +1) * sizeof(struct zoePCell)); } a1 = zoeMalloc(p1->length + p2->length +1); a2 = zoeMalloc(p1->length + p2->length +1); as = zoeMalloc(p1->length + p2->length +1); /* initialization */ matrix[0][0].score = 0; matrix[0][0].trace = 0; matrix[0][0].state = 0; for (i = 1; i <= p1->length; i++) { matrix[i][0].score = -s->gapO * i; matrix[i][0].trace = 0; matrix[i][0].state = 0; } for (j = 1; j <= p2->length; j++) { matrix[0][j].score = -s->gapO * i; matrix[0][j].trace = 0; matrix[0][j].state = 0; } max_i = 0; max_j = 0; max_s = -s->gapO * (p1->length + p2->length); /* induction */ for (i = 1; i <= p1->length; i++) { for (j = 1; j <= p2->length; j++) { if (s->width && abs(i-j) > s->width) continue; dscore = s->score[(int)p1->s22[i-1]][(int)p2->s22[j-1]]; dscore += matrix[i-1][j-1].score; vscore = matrix[i][j-1].score; if (matrix[i][j-1].state == 0) vscore -= s->gapO; else vscore -= s->gapE; hscore = matrix[i-1][j].score; if (matrix[i-1][j].state == 0) hscore -= s->gapO; else hscore -= s->gapE; if (dscore >= vscore && dscore >= hscore) { matrix[i][j].score = dscore; matrix[i][j].trace = 1; matrix[i][j].state = 0; if (matrix[i][j].score > max_s) { max_s = matrix[i][j].score; max_j = j; max_i = i; } } else if (vscore >= hscore) { matrix[i][j].score = vscore; matrix[i][j].trace = 3; matrix[i][j].state = 1; } else { matrix[i][j].score = hscore; matrix[i][j].trace = 2; matrix[i][j].state = 1; } } } /* trace back */ i = max_i; j = max_j; index = 0; while (matrix[i][j].trace != 0) { switch (matrix[i][j].trace) { case 1: /* match state */ i--; j--; a1[index] = p1->seq[i]; a2[index] = p2->seq[j]; if (a1[index] == a2[index]) { as[index] = a1[index]; } else if (s->score[(int)p1->s22[i]][(int)p2->s22[j]] > 0) { as[index] = '+'; } else { as[index] = ' '; } break; case 2: /* horizontal gap */ i--; a1[index] = p1->seq[i]; a2[index] = '-'; as[index] = ' '; break; case 3: /* vertical gap */ a1[index] = '-'; a2[index] = p2->seq[j]; as[index] = ' '; j--; break; default: zoeExit("impossible"); } index++; } a1[index] = '\0'; a2[index] = '\0'; as[index] = '\0'; flip_string(a1); flip_string(a2); flip_string(as); /* decorations */ hsp->score = max_s; hsp->q_start = i; hsp->q_end = max_i -1; hsp->s_start = j; hsp->s_end = max_j -1; hsp->q_aln = a1; hsp->s_aln = a2; hsp->a_str = as; hsp->match = 0; hsp->mismatch = 0; hsp->q_gap = 0; hsp->s_gap = 0; for (i = 0; i < index; i++) { if (a1[i] == a2[i]) hsp->match++; else if (a1[i] == '-') hsp->q_gap++; else if (a2[i] == '-') hsp->s_gap++; else hsp->mismatch++; } /* clean up */ for (i = 0; i <= p1->length; i++) zoeFree(matrix[i]); zoeFree(matrix); return hsp; } #endif snap-2010-07-28/Zoe/zoeFeatureFactory.h0000644000175000017500000000337111424066010017277 0ustar moellermoeller/******************************************************************************\ zoeFeatureFactory.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_FEATUREFACTORY_H #define ZOE_FEATUREFACTORY_H #include #include #include #include "zoeDNA.h" #include "zoeScanner.h" #include "zoeFeature.h" #include "zoeFeatureTable.h" #include "zoeTools.h" struct zoeFeatureFactory { /* used by all factories */ zoeFeatureVec (* create)(struct zoeFeatureFactory *, coor_t); zoeLabel type; zoeDNA dna; /* RFactory and OFactory/XFactory */ int length; /* min length */ zoeScanner scanner; /* for those factories that use a scanner */ /* OFactory/XFactory only */ zoeFeatureVec orfs; zoeHash hash; score_t score; strand_t strand; /* EFactory */ int offset; score_t * cds[3]; /* cds score in each FRAME */ score_t * start; /* score at each valid position */ score_t * stop; /* MIN_SCORE at invalid positions */ score_t * acc; score_t * don; int * fstop; /* position of previous stop in this frame */ /* changed to int 2004-04-06 */ }; typedef struct zoeFeatureFactory * zoeFeatureFactory; void zoeDeleteFeatureFactory (zoeFeatureFactory); zoeFeatureFactory zoeNewEFactory (zoeScanner, zoeScanner, zoeScanner, zoeScanner, zoeScanner); zoeFeatureFactory zoeNewOFactory (zoeScanner, coor_t, score_t, strand_t); zoeFeatureFactory zoeNewXFactory (zoeScanner, zoeScanner, zoeScanner, zoeScanner, zoeScanner, coor_t, score_t); zoeFeatureFactory zoeNewRFactory (zoeScanner, coor_t); zoeFeatureFactory zoeNewSFactory (zoeScanner, zoeLabel); #endif snap-2010-07-28/Zoe/zoeDNA.h0000644000175000017500000000456411424066010014763 0ustar moellermoeller/******************************************************************************\ zoeDNA.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_DNA_H #define ZOE_DNA_H #include #include #include "zoeFastaFile.h" #include "zoeProtein.h" #include "zoeFeature.h" #include "zoeTools.h" /******************************************************************************\ Num s5 s16 === === === 0 A reserved but not used 1 C T (0001) 2 G G (0010) 3 T K (0011) 4 N C (0100) 5 Y (0101) 6 S (0110) 7 B (0111) 8 A (1000) 9 W (1001) 10 R (1010) 11 D (1011) 12 M (1100) 13 H (1101) 14 V (1110) 15 N (1111) \******************************************************************************/ struct zoeDNA { coor_t length; char * def; /* definition */ char * seq; /* ascii sequence */ char * s5; /* 5 symbol numeric sequence */ char * s16; /* 15 symbol numeric sequence */ float c5[5]; /* symbol counts */ float f5[5]; /* symbol frequencies */ }; typedef struct zoeDNA * zoeDNA; void zoeDeleteDNA (zoeDNA); zoeDNA zoeNewDNA (const char *, const char *); zoeDNA zoeCopyDNA (const zoeDNA); zoeDNA zoeReverseDNA (const char *, const zoeDNA); zoeDNA zoeComplementDNA (const char *, const zoeDNA); zoeDNA zoeAntiDNA (const char *, const zoeDNA); void zoeLCmask (zoeDNA); void zoeLCunmask (zoeDNA); void zoeLCfilter (zoeDNA); void zoeLCsmooth (zoeDNA, coor_t, coor_t, coor_t); zoeDNA zoeSubseqDNA (const char *, const zoeDNA, coor_t, coor_t); zoeDNA zoeFeatureDNA (const char *, const zoeDNA, const zoeFeature); zoeProtein zoeTranslateDNA (const char *, const zoeDNA, frame_t); zoeProtein zoeTranslateFeature (const char *, const zoeDNA, const zoeFeature); void zoeWriteDNA (FILE *, const zoeDNA); zoeDNA zoeGetDNA (const char *); zoeFeatureVec zoeORFs (const zoeDNA, strand_t); void zoeWriteFeatureDNA(FILE *, const zoeFeature, const zoeDNA, coor_t); zoeDNA zoeMakePaddedDNA (const zoeDNA, int); char* zoeTranslateS5 (const char*, int, frame_t); #endif snap-2010-07-28/Zoe/zoeMath.h0000644000175000017500000000130611424066010015241 0ustar moellermoeller/******************************************************************************\ zoeMath.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_MATH_H #define ZOE_MATH_H #include #include "zoeTools.h" score_t zoeFloat2Score (double); double zoeScore2Float (score_t); double zoeLog2 (double); double zoeLnFactorial (int); double zoeDivide (double, double); score_t zoeScoreGeometric (double, double); score_t zoeScorePoisson (double, double); void zoeDecToBase (int, int, char *); int zoeBaseToDec (int, const char *); extern const int zoePOWER[6][8]; #endif snap-2010-07-28/Zoe/zoeDistribution.h0000644000175000017500000000234711424066010017035 0ustar moellermoeller/******************************************************************************\ zoeDistribution.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_DISTRIBUTION_H #define ZOE_DISTRIBUTION_H #include #include #include #include "zoeMath.h" #include "zoeTools.h" typedef enum { UNKNOWN, DEFINED, GEOMETRIC, POISSON, CONSTANT } zoeDistributionType; struct zoeDistribution { zoeDistributionType type; /* the type of function (see above) */ coor_t start; /* starting coordinate */ coor_t end; /* ending coordinate */ int params; /* number of parameters to function */ float * param; /* parameters of function */ }; typedef struct zoeDistribution * zoeDistribution; void zoeDeleteDistribution (zoeDistribution); zoeDistribution zoeNewDistribution (zoeDistributionType, coor_t, coor_t, int, const float *); zoeDistribution zoeReadDistribution (FILE *); void zoeWriteDistribution (FILE *, const zoeDistribution); score_t zoeScoreDistribution (const zoeDistribution, coor_t); #endif snap-2010-07-28/Zoe/zoeFeature.h0000644000175000017500000000704511424066010015751 0ustar moellermoeller/******************************************************************************\ zoeFeature.h - part of the ZOE library for genomic analysis Copyright (C) 2002-2005 Ian F. Korf \******************************************************************************/ #ifndef ZOE_FEATURE_H #define ZOE_FEATURE_H #include #include #include #include "zoeTools.h" #define zoeLABELS 33 typedef enum { None, /* 0 A non-feature? */ Inter, /* 1 Intergenic */ Int0, /* 2 phase 0 intron */ Int1, /* 3 phase 1 intron */ Int1T, /* 4 phase 1 intron, previous exon has overhanging T */ Int2, /* 5 phase 2 intron */ Int2TA, /* 6 phase 2 intron, previous exon has overhanging TA */ Int2TG, /* 7 phase 2 intron, previous exon has overhanging TG */ Intron, /* 8 intron */ UTR5, /* 9 5' UTR */ UTR3, /* 10 3' UTR */ Esngl, /* 11 single exon gene */ Einit, /* 12 initial exon */ Eterm, /* 13 terminal exon */ Exon, /* 14 generic or internal exon */ Coding, /* 15 generically coding */ Gene, /* 16 geneircally gene */ Acceptor, /* 17 splice acceptor */ Donor, /* 18 splice donor */ Start, /* 19 ATG */ Stop, /* 20 stop codon */ Repeat, /* 21 Repetitive element */ CNS, /* 22 Conserved sequence */ ORF, /* 23 Open Reading Frame */ PolyA, /* 24 poly-A signal */ Prom, /* 25 promoter */ BPS, /* 26 branch point signal */ TSS, /* 27 Trans-splice site */ Misc, /* 28 miscellaneous feature */ HSP_NN, /* 29 high-scoring pair: nt-nt (BLASTN) */ HSP_NA, /* 20 high-scoring pair: nt-aa (BLASTX) */ HSP_AN, /* 31 high-scoring pair: aa-nn (TBLASTN) */ HSP_AA /* 32 high-scoring pair: aa-aa (BLASTP, TBLASTX) */ } zoeLabel; struct zoeFeature { zoeLabel label; coor_t start; coor_t end; strand_t strand; score_t score; frame_t inc5; frame_t inc3; frame_t frame; char * group; /*struct zoeFeatureVec * subfeatures;*/ }; typedef struct zoeFeature * zoeFeature; struct zoeFeatureVec { zoeFeature * elem; /* array of features */ int size; /* number of features */ int limit; /* number of elements currently allocated */ zoeFeature last; }; typedef struct zoeFeatureVec * zoeFeatureVec; void zoeDeleteFeature (zoeFeature); zoeFeature zoeNewFeature (zoeLabel, coor_t, coor_t, strand_t, score_t, frame_t, frame_t, frame_t, const char */*, zoeFeatureVec*/); zoeFeature zoeNewTriteFeature (zoeLabel, coor_t, coor_t, const char *); void zoeWriteFeature (FILE *, const zoeFeature); void zoeWriteDebugFeature (FILE *, const zoeFeature); void zoeWriteTriteFeature (FILE *, const zoeFeature); void zoeWriteGFF (FILE *, const zoeFeature, const char *, const char *); zoeFeature zoeReadFeature (FILE *); zoeFeature zoeReadGFF (FILE*); zoeFeature zoeCopyFeature (const zoeFeature); void zoeAntiFeature (zoeFeature, int); int zoeVerifyFeature (const zoeFeature); int zoeFeatureCmp (const zoeFeature, const zoeFeature); int zoeFeatureCmpPtr (const void *, const void *); int zoeFeaturesOverlap (const zoeFeature, const zoeFeature); zoeLabel zoeText2Label (const char *); void zoeLabel2Text (zoeLabel, char *); void zoeWriteLabel (FILE *, zoeLabel); void zoeDeleteFeatureVec (zoeFeatureVec); zoeFeatureVec zoeNewFeatureVec (void); void zoePushFeatureVec (zoeFeatureVec, const zoeFeature); zoeFeatureVec zoeCopyFeatureVec (const zoeFeatureVec); #endif snap-2010-07-28/00README0000644000175000017500000001472711424066010013757 0ustar moellermoellerSNAP Documentation ================== Introduction SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. SNAP is an acroynm for Semi-HMM-based Nucleic Acid Parser. Reference Korf I. Gene finding in novel Genomes. BMC Bioinformatics 2004, 5:59 Contact I appreciate bug reports, comments, and suggestions. My current contact information is: email: ifkorf@ucdavis.edu web: http://homepage.mac.com/iankorf License This software is covered by the GNU General Public License. The license is included with the software and is available from www.gnu.org. Files and Directories DNA Contains some sample sequences HMM Contains SNAP parameter files LICENSE The GNU General Public License Makefile For compiling Makefile.include Automatically generated, should not be edited fathom.c Utility for investigating sequences and annotation forge.c Parameter estimation hmm-assembler.pl Creates HMMs for SNAP snap.c Gene prediction program zoe* Sources from the ZOE library Your favorite genome... If you wish to train SNAP for a new genome, please contact me. Parameter estimation is not particularly difficult, but the procedure is not well documented and I have only included the minimum applications here. I've included the basic strategy at the end of this document. INSTALLATION INSTRUCTIONS ========================= The software is routinely compiled and tested on Mac OS X. It should compile fine on any Linux/Unix type operating systems. Enviroment The ZOE environment variable is used by SNAP to find the HMM files. Set this to the directory containing this file. For example, if you unpackaged the tar-ball in /usr/local, set the ZOE environment variable to /usr/local/Zoe setenv ZOE /usr/local/Zoe # csh, tcsh, etc or export ZOE=/usr/local/Zoe # sh, bash, etc If you do not use the ZOE environment variable, you can still use SNAP but you must specify the explict path to the parameter file. Compiling The source code is all ANSI compliant and should compile without problems. Please contact me if you have troubles. The default compiler is gcc. If you have gcc installed, the easiest is to just compile as: make I have also included some specific architectures which may produce faster code. See the Makefile for details. Testing ./snap HMM/thale DNA/thale.dna.gz ./snap HMM/worm DNA/worm.dna.gz PARAMETER ESTIMATION ==================== Sequences must be in FASTA format. It's a good idea if you don't have genes that are too related to each other. Gene structures must be in ZFF format. What is ZFF? It is a non-standard format (ie. nobody uses it but me) that bears resemblence to FASTA and GFF (both true standards). There are two styles of ZFF, the short format and the long format. In both cases, the sequence records are separated by a definition line, just like FASTA. In the short format, there are 4 fields: Label, Begin, End, Group. The 4th field is optional. Label is a controlled vocabulary (see zoeFeature.h for a complete list). All exons of a gene (or more appropriately a transcriptional unit) must share the same unique group name. The strand of the feature is implied in the coordinates, so if Begin > End, the feature is on the minus strand. Here's and example of the short format with two sequences, each containing a single gene on the plus strand: >sequence-1 Einit 201 325 Y73E7A.6 Eterm 2175 2319 Y73E7A.6 >sequence-2 Einit 201 462 Y73E7A.7 Exon 1803 2031 Y73E7A.7 Exon 2929 3031 Y73E7A.7 Exon 3467 3624 Y73E7A.7 Exon 4185 4406 Y73E7A.7 Eterm 5103 5280 Y73E7A.7 The long format adds 5 fields between the coordinates and the group: Strand, Score, 5'-overhang, 3'-overhang, and Frame. Strand is +/-. Score is any floating point value. 5'- and 3'-overhang are the number of bp of an incomplete codon at each end of an exon. Frame is the reading frame (0..2 and *not* 1..3). Here's an example of the long format: >Y73E7A.6 Einit 201 325 + 90 0 2 1 Y73E7A.6 Eterm 2175 2319 + 295 1 0 2 Y73E7A.6 >Y73E7A.7 Einit 201 462 + 263 0 1 1 Y73E7A.7 Exon 1803 2031 + 379 2 2 0 Y73E7A.7 Exon 2929 3031 + 236 1 0 0 Y73E7A.7 Exon 3467 3624 + 152 0 2 0 Y73E7A.7 Exon 4185 4406 + 225 1 2 2 Y73E7A.7 Eterm 5103 5280 + 46 1 0 2 Y73E7A.7 The most important part of parameter estimation is preparing a training set. There are many ways to go about this. At the end, you want these in the ZFF short format. Save the ZFF as genome.ann and the FASTA as genome.dna. The first step is to look at some features of the genes: fathom genome.ann genome.dna -gene-stats Next, you want to verify that the genes have no obvious errors: fathom genome.ann genome.dna -validate You may find some errors and warnings. Check these out in some kind of genome browser and remove those that are real errors. Next, break up the sequences into fragments with one gene per sequence with the following command: fathom -genome.ann genome.dna -categorize 1000 There will be up to 1000 bp on either side of the genes. You will find several new files. alt.ann, alt.dna (genes with alternative splicing) err.ann, err.dna (genes that have errors) olp.ann, olp.dna (genes that overlap other genes) wrn.ann, wrn.dna (genes with warnings) uni.ann, uni.dna (single gene per sequence) Convert the uni genes to plus stranded with the command: fathom uni.ann uni.dna -export 1000 -plus You will find 4 new files: export.aa proteins corresponding to each gene export.ann gene structure on the plus strand export.dna DNA of the plus strand export.tx transcripts for each gene The parameter estimation program, forge, creates a lot of files. You probably want to create a directory to keep things tidy before you execute the program. mkdir params cd params forge ../export.ann ../export.dna cd .. Last is to build an HMM. hmm-assembler.pl my-genome params > my-genome.hmm There are a number of options for forge and hmm-assembler.pl that I have not described here. Hopefully I'll document these one day. snap-2010-07-28/hmm-assembler.pl0000755000175000017500000002612011424066011016022 0ustar moellermoeller#!/usr/bin/perl $| =1; use strict; use warnings; use sigtrap; use Getopt::Std; use vars qw( $opt_r $opt_o $opt_x $opt_i $opt_e $opt_A $opt_D $opt_M $opt_S $opt_C $opt_I $opt_N $opt_a $opt_3 $opt_p $opt_5 $opt_t $opt_Z $opt_1 $opt_c ); getopts('roxi:e:A:D:M:S:C:I:N:a:3:p5:tZ:1c:'); my $ACCEPTOR = "0:30"; my $DONOR = "0:9"; my $START = "0:15"; my $STOP = "0:9"; my $CODING = "4"; my $INTRON = "4"; my $INTER = "4"; my $PROM; my $UTR5 = ""; my $UTR3 = ""; my $POLYA = ""; my $UTR5Length; # defined below; my $UTR3Length; # defined below my $InterLength = 500; my $EsnglLength = 1000; die " usage: hmm-assembler.pl options: -i [$InterLength] -e [$EsnglLength] -A [$ACCEPTOR] -D [$DONOR] -M [$START] -S [$STOP] -C [$CODING] -I [$INTRON] -N [$INTER] -3 [$UTR3] include 3'UTR model, requires -a -a [$POLYA] include PolyA model, requires -3 -5 [$UTR5] include 5'UTR moel, requires -p -p include generic promoter model, requires -5 -r include generic repeat model -o include reverse ORF model -x use explicit duration intron model -t include C.elegans trans-splicing, requires -p, -5 -Z sets clade-specific values (worm, fly, plant) -1 single gene model -c include GC-AG splice donor model " unless @ARGV == 2; my ($NAME, $DIR) = @ARGV; my $REPEATS = $opt_r; my $REVERSE_ORF = $opt_o; my $EXPLICIT = $opt_x; my $TRANS_SPLICE = $opt_t; my $SPECIES = $opt_Z? $opt_Z : ""; my $SINGLE_GENE = $opt_1; my $GC_AG = $opt_c; $ACCEPTOR = $opt_A if $opt_A; $DONOR = $opt_D if $opt_D; $START = $opt_M if $opt_M; $STOP = $opt_S if $opt_S; $CODING = $opt_C if $opt_C; $INTRON = $opt_I if $opt_I; $INTER = $opt_N if $opt_N; $POLYA = $opt_a if $opt_a; $UTR3 = $opt_3 if $opt_3; $PROM = $opt_p; $UTR5 = $opt_5 if $opt_5; $InterLength = $opt_i if $opt_i; $EsnglLength = $opt_e if $opt_e; if (($POLYA and !$UTR3) or (!$POLYA and $UTR3)) { die "both -a and -3 must be specified"; } if ($POLYA and $UTR3) { my ($order, $length) = split(/:/, $UTR3); $UTR3 = $order; # reassign $UTR3Length = $length; # geometric distribution } if (($PROM and !$UTR5) or (!$PROM and $UTR5)) { die "both -p and -5 must be specified"; } if ($PROM and $UTR5) { my ($order, $length) = split(/:/, $UTR5); $UTR5 = $order; $UTR5Length = $length; } if ($TRANS_SPLICE) { die "both -p and -5 must be specified" unless $PROM and $UTR5; } #################### # Species override # #################### if ($SPECIES eq 'worm') { $ACCEPTOR = '0:15'; $REVERSE_ORF = 1; $GC_AG = -5; } elsif ($SPECIES eq 'plant') { $ACCEPTOR = '0:20'; } elsif ($SPECIES eq 'fly') { $ACCEPTOR = '0:30'; $REVERSE_ORF = 1; } elsif ($SPECIES =~ /\S/) { die "unrecognized clade ($SPECIES)"; } ##################### # Single gene model # ##################### if ($SINGLE_GENE) {die "single gene not supported yet"} ########## # States # ########## my $States = 6; my %State = ( Einit => {init => 0, term => 0, min => 3, max => -1, dur => 'explicit'}, Exon => {init => 0, term => 0, min => 6, max => -1, dur => 'explicit'}, Eterm => {init => 0, term => 0, min => 3, max => -1, dur => 'explicit'}, Esngl => {init => 0, term => 0, min => 150, max => -1, dur => 'explicit'}, Inter => {init => 0.9, term => 0.9, min => 0, max => 0, dur => 'geometric'}, Intron => {init => 0.1, term => 0.1, min => 0, max => 0, dur => 'geometric'}, ); if ($REPEATS) { $State{Repeat} = {init => 0, term => 0, min => 100, max => -1, dur => 'explicit'}; $States++; } if ($REVERSE_ORF) { $State{ORF} = {init => 0, term => 0, min => 100, max => -1, dur => 'explicit'}; $States++; } if ($POLYA) { $State{PolyA} = {init => 0, term => 0, min => 1, max => 1, dur => 'explicit'}; $State{UTR3} = {init => 0.1, term => 0.1, min => 0, max => 0, dur => 'geometric'}; $States += 2; } if ($PROM) { $State{Prom} = {init => 0, term => 0, min => 1, max => 1, dur => 'explicit'}; $State{UTR5} = {init => 0.1, term => 0.1, min => 0, max => 0, dur => 'geometric'}; $States += 2; } if ($TRANS_SPLICE) { $State{TSS} = {init => 0, term => 0, min => 1, max => 1, dur => 'explicit'}; $States += 1; } if ($EXPLICIT) { $State{Intron}{dur} = 'explicit'; $State{Intron}{min} = 1; $State{Intron}{max} = -1; } ############### # Transitions # ############### my $Transitions = 4; my %Transition = ( Einit => {Intron => 1}, Esngl => {Inter => 1}, Eterm => {Inter => 1}, Exon => {Intron => 1}, ); open(FILE, "$DIR/transitions"); while () { my ($s1, $s2, $prob) = split; $Transition{$s1}{$s2} = $prob; $Transitions++; } close FILE; # optional section if ($REPEATS) { $Transition{Intron}{Repeat} = 1; $Transition{Repeat}{Intron} = 1; $Transition{Inter}{Repeat} = 1; $Transition{Repeat}{Inter} = 1; $Transitions += 4; } if ($REVERSE_ORF) { $Transition{Intron}{ORF} = 1; $Transition{ORF}{Intron} = 1; $Transition{Inter}{ORF} = 1; $Transition{ORF}{Inter} = 1; $Transitions += 4; } if ($POLYA) { $Transition{Esngl} = {UTR3 => 1}; $Transition{Eterm} = {UTR3 => 1}; $Transition{UTR3} = {PolyA => 1}; $Transition{PolyA} = {Inter => 1}; $Transitions += 2; } if ($PROM) { $Transition{Inter}{Prom} = 1; $Transition{Prom}{UTR5} = 1; $Transition{UTR5}{Esngl} = $Transition{Inter}{Esngl}; $Transition{UTR5}{Einit} = $Transition{Inter}{Einit}; delete $Transition{Inter}{Esngl}; delete $Transition{Inter}{Einit}; $Transitions += 2; } if ($TRANS_SPLICE) { $Transition{Inter}{Prom} = 0.5; $Transition{Inter}{TSS} = 0.5; # what are the real figures? $Transitions++; } ############### # Phase prefs # ############### my $Phaseprefs = `cat $DIR/phaseprefs`; ############# # Durations # ############# my $Durations = 6; my %Duration = ( Einit => 1, Eterm => 1, Esngl => 1, Exon => 1, Intron => 1, Inter => 1, ); if ($REPEATS) { $Duration{Repeat} = 1; $Durations++; } if ($REVERSE_ORF) { $Duration{ORF} = 1; $Durations++; } if ($POLYA) { $Duration{PolyA} = 1; $Duration{UTR3} = 1; $Durations += 2; } if ($PROM) { $Duration{Prom} = 1; $Duration{UTR5} = 1; $Durations += 2; } if ($TRANS_SPLICE) { $Duration{TSS} = 1; $Durations++; } ########## # Models # ########## my $Models = 7; my %Model = ( Acceptor => $ACCEPTOR, Donor => $DONOR, Start => $START, Stop => $STOP, Coding => $CODING, Intron => $INTRON, Inter => $INTER, ); if ($REPEATS) { $Model{Repeat} = 'Repeat'; $Models++; } if ($POLYA) { $Model{PolyA} = $POLYA; $Model{UTR3} = $UTR3; $Models += 2; } if ($PROM) { $Model{Prom} = 'Prom'; $Model{UTR5} = $UTR5; $Models += 2; } if ($TRANS_SPLICE) { $Model{TSS} = 'TSS'; $Models++; } # no need for ORF models, they are the same as coding ############ # Assemble # ############ # header print "zoeHMM $NAME $States $Transitions $Durations $Models\n"; # states print "\n\n\n"; foreach my $name (sort keys %State) { print join("\t", $name, $State{$name}{init}, $State{$name}{term}, $State{$name}{min}, $State{$name}{max}, $State{$name}{dur}), "\n"; } # transitions print "\n\n\n"; foreach my $s1 (sort keys %Transition) { foreach my $s2 (sort keys %{$Transition{$s1}}) { print join("\t", $s1, $s2, $Transition{$s1}{$s2}), "\n"; } } # phaseprefs print "\n\n\n"; print $Phaseprefs; # durations print "\n\n\n"; foreach my $name (sort keys %Duration) { if ($name eq 'Repeat') { print "Repeat 1\n\tCONSTANT 0 -1\n\t\t0\n"; } elsif ($name eq 'ORF') { my $hack = `cat $DIR/Exon-explicit.duration`; $hack =~ s/Exon/ORF/; print $hack; } elsif ($name eq 'PolyA') { print "PolyA 1\n\tCONSTANT 0 -1\n\t\t0\n"; # may want to change that } elsif ($name eq 'Prom') { print "Prom 1\n\tCONSTANT 0 -1\n\t\t0\n"; # may want to change this too } elsif ($name eq 'TSS') { print "TSS 1\n\tCONSTANT 0 -1\n\t\t0\n"; # here as well } elsif ($name eq 'Inter') { print "Inter 1\n\tGEOMETRIC 0 -1\n\t\t$InterLength\n"; } elsif ($name eq 'Esngl') { print "Esngl 1\n\tGEOMETRIC 0 -1\n\t\t$EsnglLength\n"; } elsif ($name eq 'UTR3') { print "UTR3 1\n\tGEOMETRIC 0 -1\n\t\t$UTR3Length\n"; } elsif ($name eq 'UTR5') { print "UTR5 1\n\tGEOMETRIC 0 -1\n\t\t$UTR5Length\n"; } else { my $file = "$name-$State{$name}{dur}.duration"; system("cat $DIR/$file"); } print "\n"; } # models my $TSS_MODEL = 'TSS SDT 2 1 4 2 0.000 AG WMM 15 11 4 0 0.000 0.440 -0.800 -1.561 0.790 0.452 -0.664 -1.565 0.734 0.546 -0.660 -1.787 0.694 0.681 -1.267 -1.862 0.771 0.743 -1.716 -1.906 0.811 0.175 -1.667 -2.024 1.208 -2.278 -2.834 -4.043 1.845 -5.146 -4.228 -6.441 1.966 -1.458 -0.723 -1.433 1.411 -2.982 1.737 -7.579 -0.906 1.999 -9.900 -9.900 -9.900 -9.900 -9.900 1.999 -9.900 0.684 -0.753 0.351 -0.929 0.220 -0.506 -0.606 0.560 0.235 -0.166 -0.481 0.281 NN TRM 0 0 0 0 0.000 '; # C. elegans weight matrix for acceptor site print "\n\n"; foreach my $name (sort keys %Model) { my ($order, $length); if ($Model{$name} eq 'Repeat') { print "Repeat LUT 1 0 5 0 0\n\t-1 -1 -1 -1 1\n\n"; next; } elsif ($Model{$name} eq 'Prom') { print "Prom WMM 2 0 4 0 0\n\t0 0 0 0\n\t0 0 0 0\n\n"; next; } elsif ($Model{$name} eq 'TSS') { print $TSS_MODEL, "\n"; next; } elsif ($Model{$name} =~ /:/) { ($order, $length) = split(/:/, $Model{$name}); } else { if ($Model{$name} =~ /^(\d+)\+/) { $order = $1; $length = ($order +1) . "+"; } else { $order = $Model{$name}; $length = $order +1; } } my $file = "$DIR/$name-$order-$length.model"; if ($name eq 'Donor' and $GC_AG) { print "Donor SDT 2 0 4 3 0.0\n"; my @gc; open(DN, "Donor-0-9.model") or die; while () { my @f = split; push @gc, \@f; } close DN; shift @gc; pop @gc; # unnecessary bits $gc[0][0] = 'GC'; $gc[0][6] = $GC_AG; # assign score here ($gc[5][1], $gc[5][3]) = ($gc[5][3], $gc[5][1]); # swap T and C values print "\t@{$gc[0]}\n"; for (my $i = 1; $i < @gc; $i++) { print "\t\t", join("\t", @{$gc[$i]}), "\n"; } open(IN, $file) or die; my $head = ; # throw-away while () {print} } else { system("cat $file"); } print "\n"; } # C. elegans trans-splice site # using splice acceptor site weight matrix __END__ Copyright (C) 2003-2004 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. snap-2010-07-28/example.zff0000644000175000017500000000150611424066011015071 0ustar moellermoeller>F56C11.1 Exon 2145 2217 + 24.843 2 1 2 F56C11.1-snap.1 Exon 2267 2380 + -8.866 2 1 0 F56C11.1-snap.1 Exon 2475 2864 + 23.338 2 1 1 F56C11.1-snap.1 Exon 2911 3114 + 16.891 2 1 2 F56C11.1-snap.1 Exon 3162 3413 + 24.850 2 1 1 F56C11.1-snap.1 Exon 3460 3751 + 42.990 2 2 2 F56C11.1-snap.1 Exon 4146 4359 + 51.685 1 0 0 F56C11.1-snap.1 Exon 4437 4593 + 13.882 0 1 2 F56C11.1-snap.1 Exon 4638 5086 + 30.213 2 0 1 F56C11.1-snap.1 Exon 5132 5429 + 42.745 0 1 1 F56C11.1-snap.1 Exon 6003 6300 + 31.135 2 2 1 F56C11.1-snap.1 Exon 6348 6517 + 19.107 1 1 0 F56C11.1-snap.1 Exon 6561 6760 + 11.674 2 0 1 F56C11.1-snap.1 Exon 7597 7721 + 14.702 0 2 0 F56C11.1-snap.1 Exon 7826 8036 + 21.887 1 0 2 F56C11.1-snap.1 Exon 8089 8766 + 40.264 0 0 0 F56C11.1-snap.1 Exon 8896 9027 + 23.658 0 0 0 F56C11.1-snap.1 Exon 9072 9190 + 21.423 0 0 2 F56C11.1-snap.1 snap-2010-07-28/LICENSE0000644000175000017500000004312511424066010013736 0ustar moellermoeller GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. snap-2010-07-28/patch-hmm.pl0000755000175000017500000000110411424066011015137 0ustar moellermoeller#!/usr/bin/perl use strict; use warnings; die "usage: $0 " unless @ARGV > 1; my ($hmm, @file) = @ARGV; my %model; foreach my $file (@file) { my $contents = `cat $file`; my ($type) = $contents =~ /^(\S+)/; $model{$type} = $contents; } open(IN, $ARGV[0]) or die; while () { print; last if /SEQUENCE_MODELS/; } while () { if (/^(\S+)/) { my $type = $1; if (defined $model{$type}) { print $model{$type}; while () {last unless /\S/} } else { print; while () { print; last unless /\S/; } } } print; }snap-2010-07-28/zff2gff3.pl0000755000175000017500000000125411424066011014704 0ustar moellermoeller#!/usr/bin/perl use strict; use warnings; my %Feature = ( 'Exon' => 'CDS', 'Einit' => 'CDS', 'Eterm' => 'CDS', 'Esngl' => 'CDS', ); print "##gff-version 3\n"; my $seq; my %H; while (<>) { if (/^>(\S+)/) { print "#region $1\n"; $seq = $1; } else { my @f = split; if (@f == 4) { my $strand = $f[1] < $f[2] ? '+' : '-'; if ($strand eq '-') {($f[1], $f[2]) = ($f[2], $f[1])} print join("\t", $seq, 'snap', $Feature{$f[0]}, $f[1], $f[2], '.', $strand, "Name=$f[3]"), "\n"; } elsif (@f == 9) { print join("\t", $seq, 'snap', $Feature{$f[0]}, $f[1], $f[2], '.', $f[3], "Name=$f[8]"), "\n"; } else {die "input does not appear to be ZFF"} } } __END__ snap-2010-07-28/snap.c0000644000175000017500000005131011424066011014032 0ustar moellermoeller/*****************************************************************************\ snap.c Semi-HMM-based Nucleic Acid Parser, a gene prediction program Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include "zoe.h" int file_is_isochore (const char *); float gc_fraction (const zoeDNA); int dna_is_ok (const zoeDNA); zoeVec parse_dna (const zoeHMM, const zoeDNA, zoeFeatureTable); void ace_output (const zoeDNA, const zoeVec); void gff_output (const zoeDNA, const zoeVec); void zoe_output (const zoeDNA, const zoeVec); void help (void); score_t SNAP_OVERLAP = 200; coor_t SNAP_MIN_CDS = 180; score_t SNAP_MIN_SCORE = -1000; char * ZOE = NULL; /* environment variable */ static char usage[] = "\n\ SNAP - Semi-HMM-based Nucleic Acid Parser (version 2006-07-28)\n\n\ usage: snap [options] [options]\n\ options:\n\ -help report useful information\n\ -lcmask treat lowercase as N\n\ -plus predict on plus strand only\n\ -minus predict on minus strand only\n\ -gff output annotation as GFF\n\ -ace output annotation as ACED\n\ -quiet do not send progress to STDERR\n\ -aa create FASTA file of proteins\n\ -tx create FASTA file of transcripts\n\ -xdef external definitions\n\ -name name for the gene [default snap]\n\ "; /* static char help[] */ /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char *argv[]) { zoeFile dna_file; zoeFastaFile fasta; zoeDNA dna; zoeFeatureTable xdef = NULL; zoeHMM hmm; zoeIsochore iso; zoeCDS gene; zoeVec genes; int label, i; char option[16], name[16]; FILE * aa_stream = NULL; FILE * tx_stream = NULL; FILE * xd_stream = NULL; /* set the program name */ zoeSetProgramName(argv[0]); /* general options */ zoeSetOption("-help", 0); zoeSetOption("-lcmask", 0); zoeSetOption("-plus", 0); zoeSetOption("-minus", 0); zoeSetOption("-quiet", 0); zoeSetOption("-gff", 0); zoeSetOption("-ace", 0); zoeSetOption("-aa", 1); zoeSetOption("-tx", 1); zoeSetOption("-xdef", 1); /* unadvertised options for my own use/testing */ zoeSetOption("-name", 1); zoeSetOption("-overlap", 1); zoeSetOption("-min-cds", 1); zoeSetOption("-min-score", 1); zoeSetOption("-flatN", 0); zoeSetOption("-boostN", 0); zoeSetOption("-debug", 0); zoeSetOption("-xdebug", 0); zoeSetOption("-info", 0); zoeSetOption("-extra", 0); /* Nscore parameters - what to do if there is an N */ for (label = 0; label < zoeLABELS; label++) { zoeLabel2Text(label, name); sprintf(option, "-N%s", name); zoeSetOption(option, 1); } /* Ascore parameters - what to modify all scores by */ for (label = 0; label < zoeLABELS; label++) { zoeLabel2Text(label, name); sprintf(option, "-A%s", name); zoeSetOption(option, 1); } zoeParseOptions(&argc, argv); if (zoeOption("-help")) help(); /* usage */ if (argc != 3) { zoeE("%s", usage); exit(1); } /* ZOE environment variable */ ZOE = getenv("ZOE"); /* strand */ if (zoeOption("-plus") && zoeOption("-minus")) { zoeExit("-plus or -minus. Omit for both strands."); } /* quiet */ if (zoeOption("-quiet")) zoeSetTrellisMeter(0); /* others */ if (zoeOption("-overlap")) SNAP_OVERLAP = atof(zoeOption("-overlap")); if (zoeOption("-min-cds")) SNAP_MIN_CDS = atoi(zoeOption("-min-cds")); if (zoeOption("-min-score")) SNAP_MIN_SCORE = atof(zoeOption("-min-score")); /* -flatN and -boostN */ if (zoeOption("-flatN") && zoeOption("-boostN")) { zoeExit("-flatN and -boostN are mutually incompatible"); } else if (zoeOption("-flatN")) { for (label = 0; label < zoeLABELS; label++) zoeSetNscore(label, -1); } else if (zoeOption("-boostN")) { zoeSetNscore(Acceptor, -10); zoeSetNscore(Donor, -10); zoeSetNscore(Start, -10); zoeSetNscore(Stop, -10); zoeSetNscore(Coding, -10); zoeSetNscore(Repeat, +10); zoeSetNscore(Inter, +10); zoeSetNscore(Intron, +10); } /* set individual Nscore values */ for (label = 0; label < zoeLABELS; label++) { zoeLabel2Text(label, name); sprintf(option, "-N%s", name); if (zoeOption(option)) zoeSetNscore(label, atof(zoeOption(option))); } /* set individual Ascore values */ for (label = 0; label < zoeLABELS; label++) { zoeLabel2Text(label, name); sprintf(option, "-A%s", name); if (zoeOption(option)) zoeSetAscore(label, atof(zoeOption(option))); } /* HMM and isochore */ if (file_is_isochore(argv[1])) { iso = zoeGetIsochore(argv[1]); hmm = NULL; } else { iso = NULL; hmm = zoeGetHMM(argv[1]); } /* more Nscore stuff */ for (label = 0; label < zoeLABELS; label++) { zoeLabel2Text(label, name); sprintf(option, "-%s", name); if (zoeOption(option) && hmm->mmap[label] == NULL) { zoeExit("You have set %s, but the HMM (%s) has no %s model\n", option, argv[1], name); } } /* aa and tx */ if (zoeOption("-aa")) { if ((aa_stream = fopen(zoeOption("-aa"), "w")) == NULL) { zoeExit("error opening -aa file"); } } if (zoeOption("-tx")) { if ((tx_stream = fopen(zoeOption("-tx"), "w")) == NULL) { zoeExit("error opening -tx file"); } } /* Fasta */ dna_file = zoeOpenFile(argv[2]); /* Xdef */ if (zoeOption("-xdef")) { if ((xd_stream = fopen(zoeOption("-xdef"), "r")) == NULL) zoeExit("error opening xdef file %s", zoeOption("-xdef")); } /***************\ Main Loop \***************/ while ((fasta = zoeReadFastaFile(dna_file.stream)) != NULL) { /* DNA */ dna = zoeNewDNA(fasta->def, fasta->seq); zoeDeleteFastaFile(fasta); if (zoeOption("-lcmask")) { zoeLCsmooth(dna, 10, 10,100); } /* Xdef */ if (zoeOption("-xdef")) { xdef = zoeReadFeatureTable(xd_stream); } /* must set isochore hmm if isochores in use */ if (iso) { hmm = zoeSelectIsochore(iso, gc_fraction(dna)); } /* check DNA */ if (dna_is_ok(dna)) genes = parse_dna(hmm, dna, xdef); else genes = zoeNewVec(); /* annotation output */ if (zoeOption("-gff")) gff_output(dna, genes); else if (zoeOption("-ace")) ace_output(dna, genes); else zoe_output(dna, genes); /* sequence output */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (zoeOption("-aa")) zoeWriteProtein(aa_stream, gene->aa); if (zoeOption("-tx")) zoeWriteDNA(tx_stream, gene->tx); } /* clean up */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); if (zoeOption("-xdef")) zoeDeleteFeatureTable(xdef); zoeDeleteDNA(dna); } if (aa_stream) fclose(aa_stream); if (tx_stream) fclose(tx_stream); if (xd_stream) fclose(xd_stream); zoeCloseFile(dna_file); if (iso) zoeDeleteIsochore(iso); else zoeDeleteHMM(hmm); return 0; } int cmp_genes_by_score (const zoeCDS a, const zoeCDS b) { return b->score - a->score; } int cmp_genes_ptr_by_score (const void * a, const void * b) { return cmp_genes_by_score( *(zoeCDS *)a, *(zoeCDS *)b ); } int cmp_genes_by_start (const zoeCDS a, const zoeCDS b) { return a->start - b->start; } int cmp_genes_ptr_by_start (const void * a, const void * b) { return cmp_genes_by_start( *(zoeCDS *)a, *(zoeCDS *)b ); } void edit_names (zoeFeatureVec vec, const char * name) { int i; zoeFeature f; for (i = 0; i < vec->size; i++) { f = vec->elem[i]; if (f->group) zoeFree(f->group); f->group = zoeMalloc(strlen(name) +1); strcpy(f->group, name); } } int file_is_isochore (const char * name) { FILE * file; char type[64]; char path[1024]; file = fopen(name, "r"); if (file == NULL) { sprintf(path, "%s/HMM/%s", ZOE, name); file = fopen(path, "r"); if (file == NULL) zoeExit("error opening parameter file"); } if (fscanf(file, "%s", type) != 1) zoeExit("error checking HMM file"); fclose(file); if (strcmp(type, "zoeHMM") == 0) return 0; if (strcmp(type, "zoeIsochore") == 0) return 1; zoeExit("unrecognized parameter file"); return 0; } float gc_fraction (const zoeDNA dna) { int i, c[5]; for (i = 0; i < 5; i++) c[i] = 0; for (i = 0; i < dna->length; i++) c[(int)dna->s5[i]]++; return (float)(c[1]+c[2]) / (float)(c[1]+c[2]+c[3]+c[4]); } int dna_is_ok (const zoeDNA dna) { int OK = 1; if (dna->c5[0] + dna->c5[1] + dna->c5[2] + dna->c5[3] < 100) { zoeE("%s contains fewer than 100 unmasked nucleotides\n", dna->def); OK = 0; } if (dna->f5[4] > 0.95) { zoeE("%s contains more than 95%% masked nucleotides\n", dna->def); OK = 0; } return OK; } int gene_in_intron (const zoeCDS a, const zoeCDS b) { int i; zoeFeature intron; /* assumed to overlap */ for (i = 0; i < b->introns->size; i++) { intron = b->introns->elem[i]; if (a->start > intron->start && a->end < intron->end) { return 1; } } return 0; } zoeFeatureVec get_xdef (const zoeDNA dna, const zoeFeatureTable ft, strand_t strand) { int i; zoeFeature f; zoeFeatureVec vec = zoeNewFeatureVec(); /* gather features from correct strand */ for (i = 0; i < ft->vec->size; i++) { f = ft->vec->elem[i]; if (f->strand == strand) { zoePushFeatureVec(vec, f); } else if (f->strand == '=') { zoePushFeatureVec(vec, f); vec->last->strand = '+'; zoePushFeatureVec(vec, f); vec->last->strand = '-'; } } /* anti-features */ for (i = 0; i < vec->size; i++) { f = vec->elem[i]; if (f->strand == '-') zoeAntiFeature(f, dna->length); } return vec; } /* debugging */ static void debug_output (const zoeTrellis t) { int i, label; zoeO("TRELLIS\n"); for (i = 0; i < t->dna->length; i++) { zoeO("%d", i); for (label = 0; label < zoeLABELS; label++) { if (t->score[label] == NULL) continue; if (t->score[label][i] == MIN_SCORE) zoeO("\t.:.:."); else zoeO("\t%d:%d", (int)t->score[label][i], t->trace[label][i]); } zoeO("\n"); } zoeO("KEEP\n"); for (i = 0; i < t->keep->size; i++) { zoeO("%d:%d\t", i, t->jump->elem[i]); zoeWriteFeature(stdout, t->keep->elem[i]); } } static void report_bug (zoeCDS gene) { int i; zoeE("unexpected gene errors found\n"); zoeE("error list:\n"); for (i = 0; i < gene->errors->size; i++) { zoeE("%s\n", gene->errors->elem[i]); } zoeE("warning list:\n"); for (i = 0; i < gene->warnings->size; i++) { zoeE("%s\n", gene->warnings->elem[i]); } zoeE("exons:\n"); for (i = 0; i < gene->exons->size; i++) { zoeWriteFeature(stderr, gene->exons->elem[i]); } zoeExit("please report bug including version, hmm, and sequence"); } static void xdebug (const zoeTrellis t) { int i; char u0[16], u1[16], u2[16], a0[16], a1[16], a2[16]; zoeO("xdebug strand %s\n", t->dna->def); for (i = 0; i < t->dna->length; i++) { if (t->scanner[Coding]->subscanner[0]->uscore) { zoeScore2Text(t->scanner[Coding]->subscanner[0]->uscore[i], u0); zoeScore2Text(t->scanner[Coding]->subscanner[1]->uscore[i], u1); zoeScore2Text(t->scanner[Coding]->subscanner[2]->uscore[i], u2); } else { strcpy(u0, "."); strcpy(u1, "."); strcpy(u2, "."); } if (t->scanner[Coding]->subscanner[0]->ascore) { zoeScore2Text(t->scanner[Coding]->subscanner[0]->ascore[i], a0); zoeScore2Text(t->scanner[Coding]->subscanner[1]->ascore[i], a1); zoeScore2Text(t->scanner[Coding]->subscanner[2]->ascore[i], a2); } else { strcpy(a0, "."); strcpy(a1, "."); strcpy(a2, "."); } zoeO("%d\t%s\t%s\t%s\t%s\t%s\t%s\n", i, u0, u1, u2, a0, a1, a2); } /*zoeExit("xdebug complete");*/ } /* decoding */ zoeVec parse_strand (const zoeHMM hmm, const zoeDNA dna, const zoeFeatureTable ft, strand_t strand) { zoeTrellis trellis; zoeVec genes; zoeFeatureVec vec = NULL; if (zoeOption("-xdef")) vec = get_xdef(dna, ft, strand); trellis = zoeNewTrellis(dna, hmm, vec); genes = zoePredictGenes(trellis); if (zoeOption("-debug")) debug_output(trellis); if (zoeOption("-xdebug")) xdebug(trellis); zoeDeleteTrellis(trellis); if (vec) zoeDeleteFeatureVec(vec); return genes; } zoeVec parse_dna (const zoeHMM hmm, const zoeDNA plus_dna, zoeFeatureTable ft) { zoeDNA anti_dna; zoeVec plus_genes = NULL, anti_genes = NULL, genes, keep; zoeCDS gene, a, b; int i, j, both_passed; char id[64], name[256]; /* plus */ if (zoeOption("-plus")) { plus_genes = parse_strand(hmm, plus_dna, ft, '+'); anti_genes = zoeNewVec(); } else if (zoeOption("-minus")) { anti_dna = zoeAntiDNA(plus_dna->def, plus_dna); anti_genes = parse_strand(hmm, anti_dna, ft, '-'); for (i = 0; i < anti_genes->size; i++) { zoeAntiCDS(anti_genes->elem[i], anti_dna->length); } zoeDeleteDNA(anti_dna); plus_genes = zoeNewVec(); } else { plus_genes = parse_strand(hmm, plus_dna, ft, '+'); anti_dna = zoeAntiDNA(plus_dna->def, plus_dna); anti_genes = parse_strand(hmm, anti_dna, ft, '-'); for (i = 0; i < anti_genes->size; i++) { zoeAntiCDS(anti_genes->elem[i], anti_dna->length); } zoeDeleteDNA(anti_dna); } /****************************************\ Both strands, sort out differences \****************************************/ /* merge all genes into same vector, filter off tiny genes */ genes = zoeNewVec(); for (i = 0; i < plus_genes->size; i++) { gene = plus_genes->elem[i]; if (!gene->OK) { if (strcmp(gene->errors->last, "gene:no_exons")) report_bug(gene); else continue; } if (gene->tx->length < SNAP_MIN_CDS) continue; if (gene->score < SNAP_MIN_SCORE) continue; zoePushVec(genes, gene); } for (i = 0; i < anti_genes->size; i++) { gene = anti_genes->elem[i]; if (!gene->OK) { if (strcmp(gene->errors->last, "gene:no_exons")) report_bug(gene); else continue; } if (gene->tx->length < SNAP_MIN_CDS) continue; if (gene->score < SNAP_MIN_SCORE) continue; zoePushVec(genes, gene); } zoeDeleteVec(plus_genes); /* just containers, genes still kept */ zoeDeleteVec(anti_genes); /* sort genes by score */ qsort(genes->elem, genes->size, sizeof(zoeCDS), cmp_genes_ptr_by_score); /* compare genes */ for (i = 0; i < genes->size; i++) { a = genes->elem[i]; for (j = i+1; j < genes->size; j++) { b = genes->elem[j]; if (!zoeCDSsOverlap(a, b)) continue; if (gene_in_intron(a, b) || gene_in_intron(b, a)) { if (zoeOption("-info")) zoeE("intronic genes %s %s\n", a->name, b->name); continue; } both_passed = 0; if (a->score > SNAP_OVERLAP && b->score > SNAP_OVERLAP) both_passed = 1; else if (a->score > SNAP_OVERLAP) b->score = MIN_SCORE; else if (b->score > SNAP_OVERLAP) a->score = MIN_SCORE; else if (a->score > b->score) b->score = MIN_SCORE; else if (b->score > a->score) a->score = MIN_SCORE; else { a->score = MIN_SCORE; b->score = MIN_SCORE; } /* may do something else when both pass */ if (both_passed) { if (zoeOption("-info")) zoeE("overlap passed threshold %s %s\n", a->name, b->name); } } } /* throw out MIN_SCORE genes*/ keep = zoeNewVec(); for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (gene->score == MIN_SCORE) zoeDeleteCDS(gene); else zoePushVec(keep, gene); } zoeDeleteVec(genes); /* sort final genes by coordinate */ qsort(keep->elem, keep->size, sizeof(zoeCDS), cmp_genes_ptr_by_start); /* rename genes */ strncpy(id, plus_dna->def, 63); for (i = 0; i < strlen(plus_dna->def); i++) { if (isspace((int)plus_dna->def[i]) || i == 63) { id[i] = '\0'; break; } } for (i = 0; i < keep->size; i++) { if (zoeOption("-name")) sprintf(name, "%s-%s.%d", id, zoeOption("-name"), i+1); else sprintf(name, "%s-snap.%d", id, i+1); gene = keep->elem[i]; /* edit gene name */ zoeFree(gene->name); gene->name = zoeMalloc(strlen(name) +1); strcpy(gene->name, name); /* edit transcript name */ zoeFree(gene->tx->def); gene->tx->def = zoeMalloc(strlen(name) +1); strcpy(gene->tx->def, name); /* edit protein name */ zoeFree(gene->aa->def); gene->aa->def = zoeMalloc(strlen(name) +1); strcpy(gene->aa->def, name); /* edit names in various feature vectors */ edit_names(gene->exons, name); edit_names(gene->introns, name); /*edit_names(gene->source, name);*/ } return keep; } /* output formatting */ void ace_output (const zoeDNA dna, const zoeVec genes) { int i, j, start, end; zoeCDS cds; zoeFeature exon; zoeO("\nSequence \"%s\"\n", dna->def); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; if (cds->strand == '+') { start = cds->start +1; end = cds->end +1; } else { start = cds->end +1; end = cds->start +1; } zoeO("Subsequence %s %d %d\n", cds->name, start, end); } for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; zoeO("\nSequence %s\n", cds->name); if (cds->strand == '+') { for (j = 0; j < cds->exons->size; j++) { exon = cds->exons->elem[j]; start = exon->start - cds->start +1; end = exon->end - cds->start +1; zoeO("Source_Exons %d %d\n", start, end); } } else { for (j = 0; j < cds->exons->size; j++) { exon = cds->exons->elem[j]; end = cds->end - exon->start +1; start = cds->end - exon->end +1; zoeO("Source_Exons %d %d\n", start, end); } } zoeO("Method SNAP\n"); } } void gff_output (const zoeDNA dna, const zoeVec genes) { int i, j; zoeCDS gene; for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { zoeWriteGFF(stdout, gene->exons->elem[j], "SNAP", dna->def); } } } void zoe_output (const zoeDNA dna, const zoeVec genes) { int i, j; zoeCDS gene; zoeFeatureVec fv; zoeO(">%s\n", dna->def); for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (zoeOption("-extra")) fv = gene->source; else fv = gene->exons; for (j = 0; j < fv->size; j++) { zoeWriteFeature(stdout, fv->elem[j]); } } } void help (void) { zoeM(stdout, 35, "The general form of the snap command line is:\n", " snap [options]\n", "HMM file:\n", " The most convenient way to specify the HMM file is by name. This requires", " that the ZOE environment variable is set. In this case, snap will look", " for the HMM file in $ZOE/HMM. You may also specify the HMM file by an", " explicit path. The following are equivalent if $ZOE is in /usr/local:\n", " snap C.elegans.hmm ...", " snap /usr/local/Zoe/HMM/C.elegans.hmm ...", " snap worm ... # there are a few convenient aliases in $ZOE/HMM\n", "FASTA file:\n", " If you have several sequences to analyze, it is more efficient to run", " snap on a concatenated FASTA file rather than separate runs on single", " sequence files. The seqeuence may be in a compressed format\n", " If sequences have been masked with lowercase letters, use -lcmask to", " prevent exons from appearing in masked DNA.\n", "Output:\n", " Annotation is reported to stdout in a non-standard format (ZFF). You can", " change to GFF or ACEDB with the -gff or -ace options. Proteins and", " transcripts are reported to FASTA files with the -aa and -tx options.\n", "External definitions:\n", " SNAP allows you to adjust the score of any sequence model at any point", " in a sequence. This behavior is invoked by giving a ZFF file to SNAP:\n", " snap -xdef \n", " Each feature description uses the 'group' field to issue a command:\n", " SET set the score", " ADJ adjust the score up or down", " OK set non-cannonical scores\n", " >FOO", " Acceptor 120 120 + +50 . . . SET (sets an Acceptor to 50)", " Donor 212 212 + -20 . . . ADJ (lowers a Donor by -20)", " Inter 338 579 + -2 . . . ADJ (lowers Inter by -2 in a range)", " Coding 440 512 - +3 . . . ADJ (raises Coding by +3 in a range)", " Donor 625 638 + -5 . . . OK (sets range of odd Donors to -5)\n", "If the output has scrolled off your screen, try 'snap -help | more'" ); exit(0); } snap-2010-07-28/fathom.c0000644000175000017500000016636111424066011014364 0ustar moellermoeller/*****************************************************************************\ fathom.c Annotation investigation utility Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include #include "zoe.h" /* globals */ char * DNA_file = NULL; char * ANN_file = NULL; char * PRE_file = NULL; zoeFile DNA_stream; zoeFile ANN_stream; zoeFile PRE_stream; zoeDNA DNA = NULL; /* the current DNA */ zoeDNA ANTI = NULL; /* reverse complement of DNA */ zoeFeatureTable ANN = NULL; /* the current annotation */ zoeFeatureTable PRE = NULL; /* the current predictions */ int PREDICTIONS = 0; /* flag to determine if predictions are present */ int ANTI_REQUIRED = 0; /* flag to determine if ANTI DNA is required */ struct score_s { score_t plus_score; score_t minus_score; strand_t strand; /* +, -, =, 0 : 0 means pseudo-site on both strands */ }; typedef struct score_s score_s; /* prototypes - showing relationships */ void help (void); void anti (void); void fuse (void); void validate (void); void reformat (void); void genestats (void); void split (void); void exon_intron (void); void extract (); zoeFeatureVec extractAcceptor (void); zoeFeatureVec extractDonor (void); zoeFeatureVec extractStart (void); zoeFeatureVec extractStop (void); zoeFeatureVec extractPolyA (void); zoeFeatureVec extractInter (void); zoeFeatureVec extractIntron (void); zoeFeatureVec extractUTR5 (void); zoeFeatureVec extractUTR3 (void); zoeFeatureVec extractExon (void); zoeFeatureVec extractFeature (zoeLabel); void export (void); zoeHash kill_list (const zoeVec); void categorize (void); void export_feature (void); void score_genes (void); void filter_genes (void); void compare_genes (void); void ace_format (void); void openData (void); void closeData (void); int getData (void); static float gc_content (const zoeDNA dna) { int i; int count[5]; for (i = 0; i < 5; i++) count[i] = 0; for (i = 0; i < dna->length; i++) count[(int)dna->s5[i]]++; return (float)(count[1]+count[2]) / (float)(count[0]+count[1]+count[2]+count[3]); } static char usage[] = "\n\ FATHOM - sequence and annotation tool (version 2006-07-28)\n\n\ usage: fathom \n\ commands:\n\ -help report useful information\n\ -validate [-quiet]\n\ -gene-stats [-errors-ok -nucleotide -dinucleotide]\n\ -categorize \n\ -export [-plus -errors-ok]\n\ -extract -length -offset \n\ -exon-intron\n\ -split <-number | -training | -GC | -repeat >\n\ -ace-format <-gene-method [-dna -extra ]>\n\ -compare-genes [-details]\n\ -score-genes [-errors-ok]\n\ -filter-genes -min-score -min-length \n\ "; /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char **argv) { /* command line */ zoeSetProgramName(argv[0]); /* dataset */ zoeSetOption("-help", 0); zoeSetOption("-randseed", 1); zoeSetOption("-lcfilter", 0); zoeSetOption("-lcsmooth", 0); zoeSetOption("-validate", 0); zoeSetOption("-quiet", 0); zoeSetOption("-gene-stats", 0); zoeSetOption("-nucleotide", 0); zoeSetOption("-dinucleotide", 0); zoeSetOption("-reformat", 0); zoeSetOption("-ace-format", 0); zoeSetOption("-gene-method", 1); zoeSetOption("-extra", 1); zoeSetOption("-dna", 0); zoeSetOption("-extract", 1); zoeSetOption("-length", 1); zoeSetOption("-offset", 1); zoeSetOption("-export", 1); zoeSetOption("-plus", 0); zoeSetOption("-errors-ok", 0); zoeSetOption("-exon-intron", 0); zoeSetOption("-split", 0); zoeSetOption("-number", 1); zoeSetOption("-training", 1); zoeSetOption("-GC", 1); zoeSetOption("-repeat", 1); zoeSetOption("-anti", 0); zoeSetOption("-fuse", 1); zoeSetOption("-categorize", 1); zoeSetOption("-min-intron", 1); zoeSetOption("-max-intron", 1); zoeSetOption("-min-exon", 1); zoeSetOption("-max-exon", 1); zoeSetOption("-min-gene", 1); zoeSetOption("-max-gene", 1); zoeSetOption("-min-cds", 1); zoeSetOption("-max-cds", 1); /* scoring, comparison, filtering */ zoeSetOption("-compare-genes", 1); zoeSetOption("-details", 0); zoeSetOption("-score-genes", 1); zoeSetOption("-filter-genes", 1); zoeSetOption("-min-score", 1); zoeSetOption("-min-length", 1); /* begin */ zoeParseOptions(&argc, argv); if (zoeOption("-help")) help(); if (argc != 3) { zoeE("%s", usage); exit(1); } ANN_file = argv[1]; DNA_file = argv[2]; if (zoeOption("-compare-genes")) { PRE_file = zoeOption("-compare-genes"); PREDICTIONS = 1; } if (zoeOption("-score-genes") || zoeOption("-anti") || zoeOption("-fuse") || zoeOption("-filter-genes") ) ANTI_REQUIRED = 1; if (zoeOption("-filter-genes")) { if (!zoeOption("-min-score")) zoeExit("-min-score required"); if (!zoeOption("-min-length")) zoeExit("-min-length required"); } if (zoeOption("-randseed")) srand(atoi(zoeOption("-randseed"))); else srand(time(NULL)); if (zoeOption("-min-intron")) zoeSetMinIntron(atoi(zoeOption("-min-intron"))); if (zoeOption("-max-intron")) zoeSetMaxIntron(atoi(zoeOption("-max-intron"))); if (zoeOption("-min-exon")) zoeSetMinExon(atoi(zoeOption("-min-exon"))); if (zoeOption("-max-exon")) zoeSetMaxExon(atoi(zoeOption("-max-exon"))); if (zoeOption("-min-gene")) zoeSetMinGene(atoi(zoeOption("-min-gene"))); if (zoeOption("-max-gene")) zoeSetMaxGene(atoi(zoeOption("-max-gene"))); if (zoeOption("-min-cds")) zoeSetMinCDS(atoi(zoeOption("-min-cds"))); if (zoeOption("-max-cds")) zoeSetMaxCDS(atoi(zoeOption("-max-cds"))); /* main control */ if (zoeOption("-validate")) validate(); else if (zoeOption("-gene-stats")) genestats(); else if (zoeOption("-reformat")) reformat(); else if (zoeOption("-categorize")) categorize(); else if (zoeOption("-export")) export(); else if (zoeOption("-exon-intron")) exon_intron(); else if (zoeOption("-anti")) anti(); else if (zoeOption("-fuse")) fuse(); else if (zoeOption("-score-genes")) score_genes(); else if (zoeOption("-filter-genes")) filter_genes(); else if (zoeOption("-compare-genes")) compare_genes(); else if (zoeOption("-split")) split(); else if (zoeOption("-ace-format")) ace_format(); else if (zoeOption("-extract")) extract(); return 0; } void anti (void) { FILE *DNA_out, *ANN_out; DNA_out = fopen("anti.dna", "w"); ANN_out = fopen("anti.ann", "w"); openData(); while (getData()) { zoeAntiFeatureTable(ANN, DNA->length); zoeWriteTriteFeatureTable(ANN_out, ANN); zoeWriteDNA(DNA_out, ANTI); } closeData(); fclose(DNA_out); fclose(ANN_out); } void fuse (void) { int i, j, group_size, group_num, offset; float f; FILE *DNA_out, *ANN_out; DNA_out = fopen("fuse.dna", "w"); ANN_out = fopen("fuse.ann", "w"); group_size = atoi(zoeOption("-fuse")); if (group_size < 1) zoeExit("-fuse must be >= 1"); group_num = 0; openData(); while (getData()) { offset = 0; group_num++; zoeS(DNA_out, ">fuse-%d\n", group_num); zoeS(ANN_out, ">fuse-%d\n", group_num); f = (float)rand()/(float)RAND_MAX; if (f >= 0.5) { zoeS(DNA_out, "%s\n", DNA->seq); } else { zoeS(DNA_out, "%s\n", ANTI->seq); zoeAntiFeatureTable(ANN, DNA->length); } for (j = 0; j < ANN->vec->size; j++) { ANN->vec->elem[j]->start += offset; ANN->vec->elem[j]->end += offset; zoeWriteTriteFeature(ANN_out, ANN->vec->elem[j]); } offset += DNA->length; for (i = 1; i < group_size; i++) { if (getData() == 0) break; f = (float)rand()/(float)RAND_MAX; if (f >= 0.5) { zoeS(DNA_out, "%s\n", DNA->seq); } else { zoeS(DNA_out, "%s\n", ANTI->seq); zoeAntiFeatureTable(ANN, DNA->length); } for (j = 0; j < ANN->vec->size; j++) { ANN->vec->elem[j]->start += offset; ANN->vec->elem[j]->end += offset; zoeWriteTriteFeature(ANN_out, ANN->vec->elem[j]); } offset += DNA->length; } } closeData(); fclose(DNA_out); fclose(ANN_out); } /*****************************************************************************\ validate \*****************************************************************************/ void validate (void) { int i, tested = 0, OK = 0, warnings = 0, errors = 0; zoeCDS cds; zoeVec genes; int quiet = zoeOption("-quiet") ? 1 : 0; openData(); while (getData()) { if (!quiet && strcmp(DNA->def, ANN->def) != 0) { zoeWarn("DNA and annotation do not have the same def line!\n"); zoeWarn("%s\n%d\n", DNA->def, ANN->def); } genes = zoeGetGenes(ANN, DNA); for (i = 0; i < genes->size; i++) { tested++; cds = genes->elem[i]; if (cds->errors->size) errors++; if (cds->warnings->size) warnings++; if (cds->OK) OK++; zoeO("%s: ", DNA->def); if (cds->errors->size || cds->warnings->size) { zoeReportCDS(stdout, cds); zoeWriteCDS(stdout, cds); } else { zoeO("%s OK\n", cds->name); } zoeDeleteCDS(cds); } zoeDeleteVec(genes); } closeData(); zoeE("%d genes, %d OK, %d warnings, %d errors\n", tested, OK, warnings, errors); } /*****************************************************************************\ reformat \*****************************************************************************/ void reformat (void) { int i; zoeFeatureTable ft; zoeCDS cds; zoeVec genes; openData(); while (getData()) { genes = zoeGetGenes(ANN, DNA); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; if (cds->OK) { if (zoeOption("-canonical") && cds->warnings->size) { zoeE("%s skipped due to warnings"); } else { ft = zoeNewFeatureTable(cds->name, cds->exons); zoeWriteFeatureTable(stdout, ft); zoeDeleteFeatureTable(ft); } } else { zoeE("%s skipped due to errors\n", cds->name); } zoeDeleteCDS(cds); } zoeDeleteVec(genes); } closeData(); } /*****************************************************************************\ gene stats \*****************************************************************************/ float entropy (zoeDNA dna, zoeFeature exon) { int i; float f, h, H = 0; int symbol[256]; zoeProtein pro = zoeTranslateFeature(">foo", dna, exon); for (i = 0; i < 256; i++) symbol[i] = 0; for (i = 0; i < pro->length; i++) symbol[(int)pro->seq[i]]++; for (i = 0; i < 256; i++) { if (symbol[i]) { f = (float)symbol[i] / (float)pro->length; h = f * log(f); H -= h; } } zoeDeleteProtein(pro); return H; } void genestats (void) { int i, j, length; int gene_cnt = 0, max_gene = 0, min_gene = INT_MAX, plus = 0, minus = 0; int Esngl = 0, multi = 0; int exons = 0, exon_len = 0, max_exon = 0, min_exon = INT_MAX; int introns = 0, intron_len = 0, max_intron = 0, min_intron = INT_MAX; int dinuc[25]; int nuc[5]; zoeCDS gene; zoeVec genes; zoeFeature exon, intron; int seq_count = 0; float h, gc, min_gc = 1, max_gc = 0, gc_total = 0; int H[50]; int index, total; char * nt[5] = {"A", "C", "G", "T", "N"}; char * dd[25] = { "AA", "AC", "AG", "AT", "AN", "CA", "CC", "CG", "CT", "CN", "GA", "GC", "GG", "GT", "GN", "TA", "TC", "TG", "TT", "TN", "NA", "NC", "NG", "NT", "NN"}; for (i = 0; i < 5; i++) nuc[i] = 0; for (i = 0; i < 25; i++) dinuc[i] = 0; for (i = 0; i < 50; i++) H[i] = 0; openData(); while (getData()) { if (zoeOption("-nucleotide")) { for (i = 0; i < DNA->length; i++) { nuc[(int)DNA->s5[i]]++; } } if (zoeOption("-dinucleotide")) { for (i = 1; i < DNA->length; i++) { index = DNA->s5[i] + (5 * DNA->s5[i-1]); dinuc[index]++; } } gc = gc_content(DNA); if (gc > max_gc) max_gc = gc; if (gc < min_gc) min_gc = gc; gc_total += gc; seq_count++; genes = zoeGetGenes(ANN, DNA); for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (!gene->OK && !zoeOption("-errors-ok")) { zoeE("%s skipped due to errors\n", gene->name); continue; } else if (zoeOption("-canonical") && gene->warnings->size) { zoeE("%s skipped due to warnings\n", gene->name); continue; } length = gene->end - gene->start + 1; if (length < min_gene) min_gene = length; if (length > max_gene) max_gene = length; gene_cnt++; if (gene->strand == '+') plus++; else minus++; if (gene->exons->size == 1) Esngl++; else multi++; exons += gene->exons->size; introns += gene->introns->size; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; length = exon->end - exon->start + 1; exon_len += length; if (length < min_exon) min_exon = length; if (length > max_exon) max_exon = length; if (zoeOption("-entropy")) { h = entropy(gene->dna, exon); H[ (int)(h * 10) ]++; } } for (j = 0; j < gene->introns->size; j++) { intron = gene->introns->elem[j]; length = intron->end - intron->start +1; intron_len += length; if (length < min_intron) min_intron = length; if (length > max_intron) max_intron = length; } } for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); } closeData(); zoeO("%d sequences\n", seq_count); zoeO("%f avg GC fraction (min=%f max=%f)\n", gc_total/(float)seq_count, min_gc, max_gc); zoeO("%d genes (plus=%d minus=%d)\n", gene_cnt, plus, minus); zoeO("%d (%f) single-exon\n", Esngl, (float)Esngl/(float)gene_cnt); zoeO("%d (%f) multi-exon\n", multi, (float)multi/(float)gene_cnt); zoeO("%f mean exon (min=%d max=%d)\n", (float)exon_len / (float)exons, min_exon, max_exon); zoeO("%f mean intron (min=%d max=%d)\n", (float)intron_len / (float)introns, min_intron, max_intron); if (zoeOption("-entropy")) { zoeO("Exon entropy\n"); for (i = 0; i < 50; i++) { if (H[i]) zoeO("%.1f %d\n", (float)i/10, H[i]); } } if (zoeOption("-nucleotide")) { total = 0; for (i = 0; i < 5; i++) total += nuc[i]; for (i = 0; i < 5; i++) { zoeO("%s\t%f\n", nt[i], (float)nuc[i] / (float)total); } } if (zoeOption("-dinucleotide")) { total = 0; for (i = 0; i < 25; i++) total += dinuc[i]; for (i = 0; i < 25; i++) { zoeO("%s\t%f\n", dd[i], (float)dinuc[i] / (float)total); } } } /*****************************************************************************\ exon-intron \*****************************************************************************/ void exon_intron (void) { int i, j; zoeCDS cds; zoeVec genes; zoeDNA dna; openData(); while (getData()) { genes = zoeGetGenes(ANN, DNA); if (genes->size != 1) { zoeExit("fathom -exon-intron requires 1 gene per sequence"); } cds = genes->elem[0]; zoeO(">%s\n", cds->name); for (i = 0; i < cds->exons->size; i++) { dna = zoeFeatureDNA("exon", cds->dna, cds->exons->elem[i]); for (j = 0; j < dna->length; j++) { if (dna->seq[j] > 'Z') dna->seq[j] -= 32; } zoeO("%s\n", dna->seq); zoeDeleteDNA(dna); if (cds->introns->size && i < cds->introns->size) { dna = zoeFeatureDNA("intron", cds->dna, cds->introns->elem[i]); for (j = 0; j < dna->length; j++) { if (dna->seq[j] < 'a') dna->seq[j] += 32; } zoeO("%s\n", dna->seq); zoeDeleteDNA(dna); } } zoeO("\n"); zoeDeleteCDS(cds); zoeDeleteVec(genes); } closeData(); } /*****************************************************************************\ split functions \*****************************************************************************/ float gc_frac (void) { int i, c[5]; for (i = 0; i < 5; i++) c[i] = 0; for (i = 0; i < DNA->length; i++) c[(int)DNA->s5[i]]++; return (float)(c[1] + c[2]) / (float)(c[0] + c[1] + c[2] + c[3]); } void split_by_number (void) { FILE *dna[20], *ann[20]; int split; int i; char filename[256]; int set; split = atoi(zoeOption("-number")); if (split < 2) { zoeE("setting split -number to minimum value of 2\n"); split = 2; } else if (split > 20) { zoeE("setting split -number to maximum value of 20\n"); split = 20; } for (i = 0; i < split; i++) { sprintf(filename, "%d.dna", i); if ((dna[i] = fopen(filename, "w")) == NULL) zoeExit("error opening %s", filename); sprintf(filename, "%d.ann", i); if ((ann[i] = fopen(filename, "w")) == NULL) zoeExit("error opening %s", filename); } i = 0; openData(); while (getData()) { set = i % split; zoeWriteDNA(dna[set], DNA); zoeWriteFeatureTable(ann[set], ANN); i++; } closeData(); for (i = 0; i < split; i++) { fclose(dna[i]); fclose(ann[i]); } } void split (void) { float f, cutoff; FILE *train_dna, *train_ann, *test_dna, *test_ann; FILE *hi_dna, *hi_ann, *lo_dna, *lo_ann; train_dna = train_ann = test_dna = test_ann = hi_dna = hi_ann = lo_dna = lo_ann = NULL; if (zoeOption("-number")) { split_by_number(); return; } if (zoeOption("-training")) cutoff = atof(zoeOption("-training")); else if (zoeOption("-GC")) cutoff = atof(zoeOption("-GC")); else { cutoff = 0; /* shush */ zoeExit("no data splitting method given, try -GC or -training"); } if (cutoff <= 0 || cutoff >= 1) zoeExit("-split (%f) is out of range", cutoff); /* open output files as "training" and "testing" */ if (zoeOption("-training")) { if ((train_dna = fopen("train.dna", "w")) == NULL) zoeExit("can't open train.dna"); if ((train_ann = fopen("train.ann", "w")) == NULL) zoeExit("can't open train.ann"); if ((test_dna = fopen("test.dna", "w")) == NULL) zoeExit("can't open test.dna"); if ((test_ann = fopen("test.ann", "w")) == NULL) zoeExit("can't open test.ann"); } else { if ((hi_dna = fopen("hi-gc.dna", "w")) == NULL) zoeExit("can't open hi-gc.dna"); if ((hi_ann = fopen("hi-gc.ann", "w")) == NULL) zoeExit("can't open hi-gc.ann"); if ((lo_dna = fopen("lo-gc.dna", "w")) == NULL) zoeExit("can't open lo-gc.dna"); if ((lo_ann = fopen("lo-gc.ann", "w")) == NULL) zoeExit("can't open lo-gc.ann"); } /* repeat content not yet implemented */ openData(); while (getData()) { if (zoeOption("-training")) f = (float)rand()/(float)RAND_MAX; else if (zoeOption("-GC")) f = gc_frac(); else f = 0; /* shush */ if (f < cutoff) { if (zoeOption("-training")) { zoeWriteDNA(train_dna, DNA); zoeWriteTriteFeatureTable(train_ann, ANN); } else { zoeWriteDNA(lo_dna, DNA); zoeWriteTriteFeatureTable(lo_ann, ANN); } } else { if (zoeOption("-training")) { fflush(test_ann); zoeWriteTriteFeatureTable(test_ann, ANN); zoeWriteDNA(test_dna, DNA); } else { zoeWriteDNA(hi_dna, DNA); zoeWriteTriteFeatureTable(hi_ann, ANN); } } } closeData(); if (zoeOption("-training")) { fclose(train_dna); fclose(train_ann); fclose(test_dna); fclose(test_ann); } else { fclose(hi_dna); fclose(hi_ann); fclose(lo_dna); fclose(lo_ann); } } /*****************************************************************************\ extract \*****************************************************************************/ void extract (void) { int i, length, offset, point_feature, id; char * name, token[64]; zoeLabel label; zoeFeatureVec vec = NULL; zoeFeature f; zoeDNA seq; zoeVec genes; zoeCDS gene; name = zoeOption("-extract"); label = zoeText2Label(zoeOption("-extract")); /* point features requires length and offset */ switch (label) { case Acceptor: case Donor: case Start: case Stop: if (! (zoeOption("-length") && zoeOption("-offset"))) zoeExit("extract requires -length and -offset for %s", name); length = atoi(zoeOption("-length")); offset = atoi(zoeOption("-offset")); point_feature = 1; break; case Coding: case Intron: case Inter: if (zoeOption("-length") || zoeOption("-offset")) zoeWarn("ignoring -length and -offset for %s", name); length = 0; offset = 0; point_feature = 0; /* shush */ break; default: length = 0; offset = 0; point_feature = 0; /* shush */ zoeExit("extract does not support %s yet", name); } /* main loop */ id = 0; /* index number for features */ openData(); while (getData()) { switch (label) { case Acceptor: vec = extractAcceptor(); break; case Donor: vec = extractDonor(); break; case Start: vec = extractStart(); break; case Stop: vec = extractStop(); break; case PolyA: vec = extractFeature(PolyA); break; case Inter: vec = extractInter(); break; case Intron: vec = extractIntron(); break; case UTR5: vec = extractUTR5(); break; case UTR3: vec = extractUTR3(); break; case Coding: genes = zoeGetGenes(ANN, DNA); for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; zoeWriteDNA(stdout, gene->tx); zoeDeleteCDS(gene); } zoeDeleteVec(genes); continue; /* back to while */ default: zoeExit("odd extract error"); } for (i = 0; i < vec->size; i++) { f = vec->elem[i]; if (f->start - offset < 0) continue; id++; sprintf(token, "%s-%d from sequence %s", name, id, DNA->def); if (point_feature) seq = zoeSubseqDNA(token, DNA, f->start - offset, length); else seq = zoeFeatureDNA(token, DNA, f); zoeWriteDNA(stdout, seq); zoeDeleteDNA(seq); } zoeDeleteFeatureVec(vec); } closeData(); } zoeFeatureVec extractInter (void) { int i, start, end; zoeCDS gene, prev_gene, this_gene; zoeFeature inter_p, inter_m; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* right now, this function ignores UTRs */ /* space before first gene */ gene = genes->elem[0]; start = 0; end = gene->start -1; if (end >= start) { inter_p = zoeNewFeature(Inter, start, end, '+', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "before"/*, NULL*/); inter_m = zoeNewFeature(Inter, start, end, '-', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "before"/*, NULL*/); zoePushFeatureVec(vec, inter_p); zoePushFeatureVec(vec, inter_m); zoeDeleteFeature(inter_p); zoeDeleteFeature(inter_m); } /* between genes */ for (i = 1; i < genes->size; i++) { prev_gene = genes->elem[i-1]; this_gene = genes->elem[i]; start = prev_gene->end +1; end = this_gene->start -1; if (end >= start) { inter_p = zoeNewFeature(Inter, start, end, '+', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "between"/*, NULL*/); inter_m = zoeNewFeature(Inter, start, end, '-', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "between"/*, NULL*/); zoePushFeatureVec(vec, inter_p); zoePushFeatureVec(vec, inter_m); zoeDeleteFeature(inter_p); zoeDeleteFeature(inter_m); } } /* space after genes */ gene = genes->elem[genes->size -1]; start = gene->end +1; end = DNA->length -1; if (end >= start) { inter_p = zoeNewFeature(Inter, start, end, '+', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "after"/*, NULL*/); inter_m = zoeNewFeature(Inter, start, end, '-', MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, "after"/*, NULL*/); zoePushFeatureVec(vec, inter_p); zoePushFeatureVec(vec, inter_m); zoeDeleteFeature(inter_p); zoeDeleteFeature(inter_m); } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractUTR5 (void) { int i, offset = 0, length = 0, start, end; zoeCDS gene; zoeFeature utr5; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); if (zoeOption("-offset")) offset = atoi(zoeOption("-offset")); else zoeExit("you must supply -offset with UTR5/Upstream"); if (zoeOption("-length")) length = atoi(zoeOption("-length")); else zoeExit("you must supply -length with UTR5/Upstream"); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (!gene->end_found) continue; if (gene->strand == '+') { end = gene->start -1 -offset; start = end - length; if (end < 0) continue; /* no UTR5 possible */ if (start < 0) start = 0; } else { start = gene->end +1 + offset; end = start + length; if (start > DNA->length -1) continue; /* no UTR5 possible */ if (end > DNA->length -1) end = DNA->length -1; } utr5 = zoeNewFeature(UTR5, start, end, gene->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, NULL/*, NULL*/); zoePushFeatureVec(vec, utr5); zoeDeleteFeature(utr5); } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractUTR3 (void) { int i, offset = 0, length = 0, start, end; zoeCDS gene; zoeFeature utr3; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); if (zoeOption("-offset")) offset = atoi(zoeOption("-offset")); else zoeExit("you must supply -offset with UTR3/Downstream"); if (zoeOption("-length")) length = atoi(zoeOption("-length")); else zoeExit("you must supply -length with UTR3/Downstream"); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (!gene->end_found) continue; if (gene->strand == '+') { start = gene->end +1 + offset; end = start + length; if (start > DNA->length -1) continue; /* no UTR3 possible */ if (end > DNA->length -1) end = DNA->length -1; } else { end = gene->start -1 -offset; start = end - length; if (end < 0) continue; /* no UTR3 possible */ if (start < 0) start = 0; } utr3 = zoeNewFeature(UTR3, start, end, gene->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, NULL/*, NULL*/); zoePushFeatureVec(vec, utr3); zoeDeleteFeature(utr3); } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractAcceptor (void) { int i, j, coor; zoeCDS gene; zoeFeature acc, exon; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; if ( !(exon->label == Exon || exon->label == Eterm) ) continue; if (exon->strand == '+') coor = exon->start -1; else coor = exon->end +1; acc = zoeNewFeature(Acceptor, coor, coor, exon->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, gene->name/*, NULL*/); zoePushFeatureVec(vec, acc); zoeDeleteFeature(acc); } } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractDonor (void) { int i, j, coor; zoeCDS gene; zoeFeature donor, exon; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; if ( !(exon->label == Exon || exon->label == Einit) ) continue; if (exon->strand == '+') coor = exon->end +1; else coor = exon->start -1; donor = zoeNewFeature(Donor, coor, coor, exon->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, gene->name/*, NULL*/); zoePushFeatureVec(vec, donor); zoeDeleteFeature(donor); } } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractStart (void) { int i, j, coor; zoeCDS gene; zoeFeature start, exon; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; if ( !(exon->label == Einit || exon->label == Esngl) ) continue; if (exon->strand == '+') coor = exon->start; else coor = exon->end; start = zoeNewFeature(Start, coor, coor, exon->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, gene->name/*, NULL*/); zoePushFeatureVec(vec, start); zoeDeleteFeature(start); } } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractStop (void) { int i, j, coor; zoeCDS gene; zoeFeature stop, exon; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; if ( !(exon->label == Eterm || exon->label == Esngl) ) continue; if (exon->strand == '+') coor = exon->end -2; else coor = exon->start +2; stop = zoeNewFeature(Stop, coor, coor, exon->strand, MIN_SCORE, UNDEFINED_FRAME, UNDEFINED_FRAME, UNDEFINED_FRAME, gene->name/*, NULL*/); zoePushFeatureVec(vec, stop); zoeDeleteFeature(stop); } } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractPolyA (void) { int i; zoeFeature f; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < ANN->vec->size; i++) { f = ANN->vec->elem[i]; if (f->label == PolyA) zoePushFeatureVec(vec, f); } return vec; } zoeFeatureVec extractIntron (void) { int i, j; zoeCDS gene; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); zoeFeatureVec frags; zoeFeature intron, tmp; int start, end; /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->introns->size; j++) { zoePushFeatureVec(vec, gene->introns->elem[j]); } } /* fragment Ns? */ if (zoeOption("-fragmentN")) { frags = zoeNewFeatureVec(); for (i = 0; i < vec->size; i++) { intron = vec->elem[i]; start = intron->start; end = start; while (end < intron->end) { if (DNA->s5[end] != 4) end++; else { tmp = zoeNewFeature(Intron, start, end, '+', 0, 0, 0, 0, NULL/*, NULL*/); zoePushFeatureVec(frags, tmp); zoeDeleteFeature(tmp); start = end; while (DNA->s5[start] == 4) start++; end = start; } } tmp = zoeNewFeature(Intron, start, end, '+', 0, 0, 0, 0, NULL/*, NULL*/); zoePushFeatureVec(frags, tmp); zoeDeleteFeature(tmp); } zoeDeleteFeatureVec(vec); vec = frags; } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractExon (void) { int i, j; zoeCDS gene; zoeVec genes = zoeGetGenes(ANN, DNA); zoeFeatureVec vec = zoeNewFeatureVec(); /* collect features */ for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; for (j = 0; j < gene->exons->size; j++) { zoePushFeatureVec(vec, gene->exons->elem[j]); } } /* end */ for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); return vec; } zoeFeatureVec extractFeature (zoeLabel label) { int i; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < ANN->vec->size; i++) { if (ANN->vec->elem[i]->label == label) { zoePushFeatureVec(vec, ANN->vec->elem[i]); } } return vec; } /*****************************************************************************\ export functions \*****************************************************************************/ zoeHash kill_list (const zoeVec genes) { zoeCDS cds1, cds2; zoeHash kill = zoeNewHash(); int i, j; /* compare spans using half matrix */ for (i = 0; i < genes->size; i++) { cds1 = genes->elem[i]; for (j = i + 1; j < genes->size; j++) { cds2 = genes->elem[j]; if (zoeCDSsOverlap(cds1, cds2)) { zoeSetHash(kill, cds1->name, (void*)1); zoeSetHash(kill, cds2->name, (void*)1); } } } return kill; } void export (void) { int i, j, padding, start, end, leader, trailer; zoeCDS gene /*, check*/; zoeVec genes; zoeDNA dna, tmp; zoeFeature exon; FILE * dna_stream; FILE * ann_stream; FILE * tx_stream; FILE * aa_stream; /*char name[256];*/ padding = atoi(zoeOption("-export")); if (padding < 3) { padding = 3; zoeE("setting padding to minimum value of 3\n"); /* necessary because if stop is not labeled, it may need to be extended */ } if ((dna_stream = fopen("export.dna", "w")) == NULL) zoeExit("file open error"); if ((ann_stream = fopen("export.ann", "w")) == NULL) zoeExit("file open error"); if ((tx_stream = fopen("export.tx", "w")) == NULL) zoeExit("file open error"); if ((aa_stream = fopen("export.aa", "w")) == NULL) zoeExit("file open error"); openData(); while (getData()) { genes = zoeGetGenes(ANN, DNA); for (i = 0; i < genes->size; i++) { gene = genes->elem[i]; if (!gene->OK && !zoeOption("-errors-ok")) { zoeO("%s %s skipped due to errors\n", DNA->def, gene->name); zoeReportCDS(stdout, gene); zoeWriteFullCDS(stdout, gene); continue; } leader = gene->start - padding; if (leader < 0) leader = 0; trailer = gene->end + padding; if (trailer > DNA->length) trailer = DNA->length -1; /* genomic */ dna = zoeSubseqDNA(gene->name, gene->dna, leader, trailer - leader + 1); /* annotation coordinate munging */ for (j = 0; j < gene->exons->size; j++) { gene->exons->elem[j]->start -= leader; gene->exons->elem[j]->end -= leader; } /* DNA and annotation strand munging */ if (gene->strand == '-' && zoeOption("-plus")) { for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; start = dna->length - exon->end -1; end = dna->length - exon->start -1; exon->start = start; exon->end = end; exon->strand = exon->strand == '+' ? '-' : '+'; if (exon->start < 0) zoeExit("aha"); } tmp = zoeAntiDNA(dna->def, dna); zoeDeleteDNA(dna); dna = tmp; } /* output */ zoeWriteDNA(dna_stream, dna); fprintf(ann_stream, ">%s\n", dna->def); zoeWriteTriteCDS(ann_stream, gene); if (gene->tx) zoeWriteDNA(tx_stream, gene->tx); else zoeS(tx_stream, ">%s\n", gene->name); if (gene->aa) zoeWriteProtein(aa_stream, gene->aa); else zoeS(aa_stream, ">%s\n", gene->name); zoeDeleteCDS(gene); zoeDeleteDNA(dna); } /* clean up */ zoeDeleteVec(genes); } closeData(); } /*****************************************************************************\ categorize functions \*****************************************************************************/ struct GeneRegion { zoeVec regions; zoeFeatureVec spans; }; struct GeneRegion makeRegions(const zoeVec genes, int padding) { zoeVec regions, region; zoeFeatureVec spans; zoeFeature span, tx; int i, j, start, end; zoeCDS cds; char * r; struct GeneRegion GR; /* paint the DNA with CDS spans */ r = zoeCalloc(DNA->length, sizeof(char)); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; for (j = cds->start; j <= cds->end; j++) { r[j] = 1; } } /* create span features */ spans = zoeNewFeatureVec(); start = r[0]; for (i = 1; i < DNA->length; i++) { if (r[i]) { if (r[i-1] == 0) start = i; if (r[i+1] == 0) { end = i; span = zoeNewFeature(Misc, start, end, '=', 0, 0, 0, 0, NULL/*, NULL*/); zoePushFeatureVec(spans, span); zoeDeleteFeature(span); } } } /* find intersection between genes and spans */ regions = zoeNewVec(); for (i = 0; i < spans->size; i++) { span = spans->elem[i]; region = zoeNewVec(); for (j = 0; j < genes->size; j++) { cds = genes->elem[j]; /* if (strcmp(cds->name, "Y48G1C.6") == 0) { zoeO("%d..%d %c\n", cds->start, cds->end, cds->strand); zoeWriteCDS(stdout, cds); zoeWriteFeature(stdout, span); zoeExit("got it"); } */ tx = zoeNewFeature(Coding, cds->start, cds->end, '=', 0, 0, 0, 0, NULL/*, NULL*/); if (zoeFeaturesOverlap(span, tx)) zoePushVec(region, cds); zoeDeleteFeature(tx); } zoePushVec(regions, region); } GR.regions = regions; GR.spans = spans; return GR; } char categorize_locus (const char * name, zoeVec genes) { int i, j, errors, warnings, share, overlap; zoeCDS gene1, gene2; /* categories: char unique transcript u alternate transcripts a overlapping transcripts o errors e warnings w */ warnings = 0; errors = 0; share = 0; overlap = 0; for (i = 0; i < genes->size; i++) { gene1 = genes->elem[i]; if (gene1->errors->size) errors++; if (gene1->warnings->size) warnings++; for (j = i+1; j < genes->size; j++) { gene2 = genes->elem[j]; if (zoeCDSsOverlap(gene1, gene2)) overlap++; if (zoeCDSsShareSequence(gene1, gene2)) share++; } } if (errors) return 'e'; if (warnings) return 'w'; if (overlap && share) return 'a'; if (overlap && !share) return 'o'; if (genes->size == 1) return 'u'; if (genes->size > 1) return 'o'; /* 1 bp apart?, put it here for now */ zoeE("genes=%d, overlap=%d, share=%d\n", genes->size, overlap, share); for (i = 0; i < genes->size; i++) { gene1 = genes->elem[i]; zoeE("%s\n", gene1->name); } zoeExit("error in categorize_locus"); return 'X'; } void categorize (void) { int i, j, k, padding, d, start, end, span_count = 0; struct GeneRegion GR; zoeVec genes, loci; zoeFeature span, prev_span, post_span, exon; zoeFeatureVec exons; zoeFeatureTable ann; zoeDNA dna; zoeCDS cds; char category, name[1024]; FILE * e_dna, * e_ann; FILE * w_dna, * w_ann; FILE * a_dna, * a_ann; FILE * o_dna, * o_ann; FILE * u_dna, * u_ann; FILE * dna_stream, * ann_stream; padding = atoi(zoeOption("-categorize")); if ((e_dna = fopen("err.dna", "w")) == NULL) zoeExit("file open error"); if ((e_ann = fopen("err.ann", "w")) == NULL) zoeExit("file open error"); if ((w_dna = fopen("wrn.dna", "w")) == NULL) zoeExit("file open error"); if ((w_ann = fopen("wrn.ann", "w")) == NULL) zoeExit("file open error"); if ((a_dna = fopen("alt.dna", "w")) == NULL) zoeExit("file open error"); if ((a_ann = fopen("alt.ann", "w")) == NULL) zoeExit("file open error"); if ((o_dna = fopen("olp.dna", "w")) == NULL) zoeExit("file open error"); if ((o_ann = fopen("olp.ann", "w")) == NULL) zoeExit("file open error"); if ((u_dna = fopen("uni.dna", "w")) == NULL) zoeExit("file open error"); if ((u_ann = fopen("uni.ann", "w")) == NULL) zoeExit("file open error"); openData(); while (getData()) { genes = zoeGetGenes(ANN, DNA); GR = makeRegions(genes, padding); for (i = 0; i < GR.spans->size; i++) { span = GR.spans->elem[i]; loci = GR.regions->elem[i]; /* extend span start */ if (i > 0) { prev_span = GR.spans->elem[i-1]; d = (float)(span->start - prev_span->end + 1) / 2; if (d > padding) d = padding; start = span->start - d; } else { start = span->start - padding; if (start < 1) start = 0; } /* extend span end */ if (i < GR.spans->size -1) { post_span = GR.spans->elem[i+1]; d = (float)(post_span->start - span->end + 1) / 2; if (d > padding) d = padding; end = span->end + d; } else { end = span->end + padding; if (end >= DNA->length) end = DNA->length -1; } if (start < 0 || end < 0) zoeExit("negatory"); span_count++; sprintf(name, "region-%d (%s %d..%d)", span_count, DNA->def, start, end); /* categorize */ category = categorize_locus(name, loci); switch (category) { case 'e': dna_stream = e_dna; ann_stream = e_ann; break; case 'w': dna_stream = w_dna; ann_stream = w_ann; break; case 'a': dna_stream = a_dna; ann_stream = a_ann; break; case 'o': dna_stream = o_dna; ann_stream = o_ann; break; case 'u': dna_stream = u_dna; ann_stream = u_ann; break; default: dna_stream = NULL; ann_stream = NULL; } /* output DNA */ dna = zoeSubseqDNA(name, DNA, start, end - start + 1); zoeWriteDNA(dna_stream, dna); zoeDeleteDNA(dna); /* output ANN */ exons = zoeNewFeatureVec(); for (j = 0; j < loci->size; j++) { cds = loci->elem[j]; for (k = 0; k < cds->exons->size; k++) { exon = cds->exons->elem[k]; exon->start -= start; exon->end -= start; if (!zoeVerifyFeature(exon)) { zoeWarn("adjusting coordinates in categorize killed exon"); zoeExit("%s", cds->name); } zoePushFeatureVec(exons, exon); } } ann = zoeNewFeatureTable(name, exons); zoeWriteTriteFeatureTable(ann_stream, ann); zoeDeleteFeatureVec(exons); zoeDeleteFeatureTable(ann); } /* clean up */ zoeDeleteVec(GR.regions); zoeDeleteFeatureVec(GR.spans); for (i = 0; i < genes->size; i++) zoeDeleteCDS(genes->elem[i]); zoeDeleteVec(genes); } closeData(); } void export_feature (void) { int i, start, end, upstream, downstream; zoeDNA dna; zoeFeature f; zoeLabel label = zoeText2Label(zoeOption("-export-feature")); FILE * dna_stream; FILE * ann_stream; if (zoeOption("-upstream")) upstream = atoi(zoeOption("-upstream")); else upstream = 0; if (zoeOption("-downstream")) downstream = atoi(zoeOption("-downstream")); else downstream = 0; if ((dna_stream = fopen("export-feature.dna", "w")) == NULL) zoeExit("file open error"); if ((ann_stream = fopen("export-feature.ann", "w")) == NULL) zoeExit("file open error"); openData(); while (getData()) { for (i = 0; i < ANN->vec->size; i++) { f = ANN->vec->elem[i]; if (f->label != label) continue; start = f->start - upstream; end = f->end + downstream; if (start < 0 || end >= DNA->length) { zoeWarn("feature out of bounds, skipping"); zoeWriteFeature(stderr, f); continue; } dna = zoeSubseqDNA(f->group, DNA, start, end - start +1); zoeWriteDNA(dna_stream, dna); zoeWriteFeature(ann_stream, f); zoeDeleteDNA(dna); } } closeData(); } /*****************************************************************************\ score genes \*****************************************************************************/ void score_genes (void) { int i, errors_ok; zoeCDS cds; zoeVec genes; zoeHMM hmm; zoeTrellis t; hmm = zoeGetHMM(zoeOption("-score-genes")); zoeSetTrellisMeter(0); if (zoeOption("-errors-ok")) errors_ok = 1; else errors_ok = 0; openData(); while (getData()) { t = zoeNewTrellis(DNA, hmm, NULL); genes = zoeGetGenes(ANN, DNA); printf(">%s\n", DNA->def); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; zoeScoreCDS(t, cds, 0, errors_ok); zoeWriteFullCDS(stdout, cds); } for (i = 0; i < genes->size; i++) zoeDeleteCDS((zoeCDS)genes->elem[i]); zoeDeleteVec(genes); zoeDeleteTrellis(t); } closeData(); } /*****************************************************************************\ filter genes \*****************************************************************************/ void filter_genes (void) { int i; zoeCDS cds; zoeVec genes; zoeHMM hmm; zoeTrellis t; float min_score; int min_length; min_score = atof(zoeOption("-min-score")); min_length = atoi(zoeOption("-min-length")); hmm = zoeGetHMM(zoeOption("-filter-genes")); zoeSetTrellisMeter(0); openData(); while (getData()) { t = zoeNewTrellis(DNA, hmm, NULL); genes = zoeGetGenes(ANN, DNA); printf(">%s\n", DNA->def); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; zoeScoreCDS(t, cds, 0, 0); /*printf("%.1f\t%d\n", cds->score, cds->tx->length);*/ if (cds->score > min_score && cds->tx->length > min_length) { zoeWriteFullCDS(stdout, cds); } } for (i = 0; i < genes->size; i++) zoeDeleteCDS((zoeCDS)genes->elem[i]); zoeDeleteVec(genes); zoeDeleteTrellis(t); } closeData(); } /*****************************************************************************\ compare genes \*****************************************************************************/ struct nt_stats { int a_only; int b_only; int shared; }; struct nt_stats calculate_nt_stats (int length, zoeFeatureVec v1, zoeFeatureVec v2) { int i, j, *a, *b; zoeFeature f; struct nt_stats stats; stats.a_only = 0; stats.b_only = 0; stats.shared = 0; a = zoeCalloc(length * sizeof(int), 1); b = zoeCalloc(length * sizeof(int), 1); for (i = 0; i < v1->size; i++) { f = v1->elem[i]; for (j = f->start; j <= f->end; j++) a[j] = 1; } for (i = 0; i < v2->size; i++) { f = v2->elem[i]; for (j = f->start; j <= f->end; j++) b[j] = 1; } for (i = 0; i < length; i++) { if (a[i] && b[i]) stats.shared++; else if (a[i]) stats.a_only++; else if (b[i]) stats.b_only++; } zoeFree(a); zoeFree(b); return stats; } struct f_stats { int shared[zoeLABELS]; int a_only[zoeLABELS]; int b_only[zoeLABELS]; }; struct f_stats calculate_feature_stats (int length, zoeFeatureVec v1, zoeFeatureVec v2) { int i, *a, *b; zoeFeature f; struct f_stats stats; for (i = 0; i < zoeLABELS; i++) { stats.shared[i] = 0; stats.a_only[i] = 0; stats.b_only[i] = 0; } a = zoeCalloc(length * sizeof(zoeLabel), 1); b = zoeCalloc(length * sizeof(zoeLabel), 1); for (i = 0; i < v1->size; i++) { f = v1->elem[i]; switch (f->label) { case Einit: a[f->start] = Start; a[f->end] = Donor; break; case Eterm: a[f->start] = Acceptor; a[f->end] = Stop; break; case Exon: a[f->start] = Acceptor; a[f->end] = Donor; break; case Esngl: a[f->start] = Start; a[f->end] = Stop; break; default: break; } } for (i = 0; i < v2->size; i++) { f = v2->elem[i]; switch (f->label) { case Einit: b[f->start] = Start; b[f->end] = Donor; break; case Eterm: b[f->start] = Acceptor; b[f->end] = Stop; break; case Exon: b[f->start] = Acceptor; b[f->end] = Donor; break; case Esngl: b[f->start] = Start; b[f->end] = Stop; break; default: break; } } for (i = 0; i < length; i++) { if (a[i] == 0 && b[i] == 0) continue; else if (a[i] == b[i]) stats.shared[a[i]]++; else if (a[i] && !b[i]) stats.a_only[a[i]]++; else if (b[i] && !a[i]) stats.b_only[b[i]]++; else { stats.a_only[a[i]]++; stats.b_only[b[i]]++; } } zoeFree(a); zoeFree(b); return stats; } struct f_stats calculate_exon_stats (zoeFeatureVec v1, zoeFeatureVec v2) { int i; zoeFeature f; struct f_stats stats; char string[64]; zoeHash h1, h2; zoeTVec keys; char * key; void * val; for (i = 0; i < zoeLABELS; i++) { stats.shared[i] = 0; stats.a_only[i] = 0; stats.b_only[i] = 0; } h1 = zoeNewHash(); for (i = 0; i < v1->size; i++) { f = v1->elem[i]; sprintf(string, "%d %d %c", f->start, f->end, f->strand); zoeSetHash(h1, string, (void*)1); } h2 = zoeNewHash(); for (i = 0; i < v2->size; i++) { f = v2->elem[i]; sprintf(string, "%d %d %c", f->start, f->end, f->strand); zoeSetHash(h2, string, (void*)1); } keys = zoeKeysOfHash(h1); for (i = 0; i < keys->size; i++) { key = keys->elem[i]; val = zoeGetHash(h2, key); if (val) { stats.shared[(size_t)Exon]++; } else { stats.a_only[(size_t)Exon]++; } } zoeDeleteTVec(keys); keys = zoeKeysOfHash(h2); for (i = 0; i < keys->size; i++) { key = keys->elem[i]; val = zoeGetHash(h1, key); if (val) { } else { stats.b_only[(size_t)Exon]++; } } zoeDeleteTVec(keys); zoeDeleteHash(h1); zoeDeleteHash(h2); return stats; } struct g_stats { int shared; int a_only; int b_only; }; struct g_stats calculate_gene_stats (zoeVec v1, zoeVec v2) { int i, j, found; zoeCDS gene1, gene2; struct g_stats stats; stats.shared = 0; stats.a_only = 0; stats.b_only = 0; for (i = 0; i < v1->size; i++) { gene1 = v1->elem[i]; found = 0; for (j = 0; j < v2->size; j++) { gene2 = v2->elem[j]; if (zoeCDScmp(gene1, gene2) == 0) { stats.shared++; found = 1; break; } } if (!found) stats.a_only++; } for (j = 0; j < v2->size; j++) { gene2 = v2->elem[j]; found = 0; for (i = 0; i < v1->size; i++) { gene1 = v1->elem[i]; if (zoeCDScmp(gene2, gene1) == 0) { found = 1; break; } } if (!found) stats.b_only++; } return stats; } static float sensitivity (int shared, int a_only, int b_only) { int num, den; num = shared; den = shared + a_only; if (den == 0) return 0; else return (float)num / (float)den; } static float specificity (int shared, int a_oly, int b_only) { int num, den; num = shared; den = shared + b_only; if (den == 0) return 0; else return (float)num / (float)den; } void compare_genes (void) { int i, j; zoeVec genes1, genes2; zoeCDS gene; zoeFeatureVec exons1, exons2; zoeFeature exon; struct nt_stats nt, NT; struct f_stats fs, FS, es, ES; struct g_stats gs, GS; char name[16]; /* init */ NT.a_only = 0; NT.b_only = 0; NT.shared = 0; GS.a_only = 0; GS.b_only = 0; GS.shared = 0; for (i = 0; i < zoeLABELS; i++) { FS.shared[i] = 0; FS.a_only[i] = 0; FS.b_only[i] = 0; ES.shared[i] = 0; ES.a_only[i] = 0; ES.b_only[i] = 0; } /* processing loop */ openData(); while (getData()) { genes1 = zoeGetGenes(ANN, DNA); genes2 = zoeGetGenes(PRE, DNA); /* collect all exons */ exons1 = zoeNewFeatureVec(); exons2 = zoeNewFeatureVec(); for (i = 0; i < genes1->size; i++) { gene = genes1->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; zoePushFeatureVec(exons1, exon); } } for (i = 0; i < genes2->size; i++) { gene = genes2->elem[i]; for (j = 0; j < gene->exons->size; j++) { exon = gene->exons->elem[j]; zoePushFeatureVec(exons2, exon); } } /* nucleotide stats */ nt = calculate_nt_stats(DNA->length, exons1, exons2); NT.a_only += nt.a_only; NT.b_only += nt.b_only; NT.shared += nt.shared; /* feature stats */ fs = calculate_feature_stats(DNA->length, exons1, exons2); for (i = 0; i < zoeLABELS; i++) { FS.shared[i] += fs.shared[i]; FS.a_only[i] += fs.a_only[i]; FS.b_only[i] += fs.b_only[i]; } /* exon stats - exact Einit, etc */ es = calculate_exon_stats(exons1, exons2); for (i = 0; i < zoeLABELS; i++) { ES.shared[i] += es.shared[i]; ES.a_only[i] += es.a_only[i]; ES.b_only[i] += es.b_only[i]; } /* gene stats */ gs = calculate_gene_stats(genes1, genes2); GS.shared += gs.shared; GS.a_only += gs.a_only; GS.b_only += gs.b_only; /* protein & tx stats - would be neat to do N-W here */ /* verbose, sequence reporting */ if (zoeOption("-details")) { zoeO("%s %d %d %d %d %d %d %d %d %d %d %d %d %d %d\n", DNA->def, (int) (100 * sensitivity(nt.shared, nt.a_only, nt.b_only)), (int) (100 * specificity(nt.shared, nt.a_only, nt.b_only)), fs.shared[Acceptor], fs.a_only[Acceptor], fs.b_only[Acceptor], fs.shared[Donor], fs.a_only[Donor], fs.b_only[Donor], fs.shared[Start], fs.a_only[Start], fs.b_only[Start], fs.shared[Stop], fs.a_only[Stop], fs.b_only[Stop] ); } /* clean up */ for (i = 0; i < genes1->size; i++) zoeDeleteCDS(genes1->elem[i]); zoeDeleteVec(genes1); for (i = 0; i < genes2->size; i++) zoeDeleteCDS(genes2->elem[i]); zoeDeleteVec(genes2); zoeDeleteFeatureVec(exons1); zoeDeleteFeatureVec(exons2); } closeData(); /* Global Ouput */ if (zoeOption("-details")) return; zoeO("Nucleotide: %.3f %.3f\n", sensitivity(NT.shared, NT.a_only, NT.b_only), specificity(NT.shared, NT.a_only, NT.b_only)); zoeO("Gene: %.3f %.3f\n", sensitivity(GS.shared, GS.a_only, GS.b_only), specificity(GS.shared, GS.a_only, GS.b_only)); for (i = 0; i < zoeLABELS; i++) { if (FS.shared[i] || FS.a_only[i] || FS.b_only[i]) { zoeLabel2Text(i, name); zoeO("%s: %.3f %.3f\n", name, sensitivity(FS.shared[i], FS.a_only[i], FS.b_only[i]), specificity(FS.shared[i], FS.a_only[i], FS.b_only[i])); } } for (i = 0; i < zoeLABELS; i++) { if (ES.shared[i] || ES.a_only[i] || ES.b_only[i]) { zoeLabel2Text(i, name); zoeO("%s: %.3f %.3f\n", name, sensitivity(ES.shared[i], ES.a_only[i], ES.b_only[i]), specificity(ES.shared[i], ES.a_only[i], ES.b_only[i])); } } } /*****************************************************************************\ ace format \*****************************************************************************/ void ace_format (void) { int i, j; coor_t start, end; zoeFeature exon; zoeVec genes; zoeCDS cds; zoeFeatureVec exons; char * gene_method = zoeOption("-gene-method"); char * extra = zoeOption("-extra"); if (!zoeOption("-gene-method")) zoeExit("-gene-method required"); if (extra == NULL) extra = ""; openData(); while (getData()) { if (zoeOption("-dna")) { zoeO("\nDNA %s\n", DNA->def); zoeO("%s\n", DNA->seq); zoeO("\nSequence %s\n", DNA->def); zoeO("Genomic_canonical\n"); } genes = zoeGetGenes(ANN, DNA); exons = zoeNewFeatureVec(); for (i = 0; i < genes->size; i++) { cds = genes->elem[i]; if (cds->strand == '+') { start = cds->start +1; end = cds->end +1; } else { start = cds->end +1; end = cds->start +1; } zoeO("\nSequence %s\n", DNA->def); zoeO("Subsequence %s%s %d %d\n", cds->name, extra, start, end); zoeO("\nSequence %s%s\n", cds->name, extra); if (cds->strand == '+') { for (j = 0; j < cds->exons->size; j++) { exon = cds->exons->elem[j]; /*zoePushFeatureVec(exons, exon);*/ start = exon->start - cds->start +1; end = exon->end - cds->start +1; zoeO("Source_Exons %d %d\n", start, end); } } else { for (j = 0; j < cds->exons->size; j++) { exon = cds->exons->elem[j]; /*zoePushFeatureVec(exons, exon);*/ end = cds->end - exon->start +1; start = cds->end - exon->end +1; zoeO("Source_Exons %d %d\n", start, end); } } zoeO("CDS\nMethod %s\n", gene_method); zoeDeleteCDS(cds); } zoeDeleteVec(genes); zoeDeleteFeatureVec(exons); } closeData(); } /*****************************************************************************\ generic data processing functions \*****************************************************************************/ void openData (void) { DNA_stream = zoeOpenFile(DNA_file); ANN_stream = zoeOpenFile(ANN_file); if (PREDICTIONS) PRE_stream = zoeOpenFile(PRE_file); } void closeData (void) { zoeCloseFile(DNA_stream); zoeCloseFile(ANN_stream); if (PREDICTIONS) zoeCloseFile(PRE_stream); if (DNA) { zoeDeleteDNA(DNA); DNA = NULL; } if (ANTI) { zoeDeleteDNA(ANTI); ANTI = NULL; } if (ANN) { zoeDeleteFeatureTable(ANN); ANN = NULL; } if (PRE) { zoeDeleteFeatureTable(PRE); PRE = NULL; } } int getData (void) { zoeFastaFile ff; /* read new dna and ann */ if ((ff = zoeReadFastaFile(DNA_stream.stream)) == NULL) return 0; /* delete old dna and ann objects */ if (DNA) zoeDeleteDNA(DNA); if (ANTI) zoeDeleteDNA(ANTI); if (ANN) zoeDeleteFeatureTable(ANN); if (PRE) zoeDeleteFeatureTable(PRE); DNA = zoeNewDNA(ff->def, ff->seq); zoeDeleteFastaFile(ff); if (ANTI_REQUIRED) ANTI = zoeAntiDNA(DNA->def, DNA); ANN = zoeReadFeatureTable(ANN_stream.stream); if (PREDICTIONS) PRE = zoeReadFeatureTable(PRE_stream.stream); /* lowercase */ if (zoeOption("-lcfilter")) { zoeLCfilter(DNA); if (ANTI_REQUIRED) zoeLCfilter(ANTI); } if (zoeOption("-lcsmooth")) { zoeLCsmooth(DNA, 10, 10, 100); if (ANTI_REQUIRED) zoeLCsmooth(ANTI, 10, 10, 100); } return 1; } void help (void) { zoeM(stdout, 47, "\nThe general form of the fathom command line is:\n", " fathom [options]\n", "There are many commands, and not all are listed in the usage statement.", "The complete list is given farther below.", "\nZFF file:\n", " The annotation file must be formatted in ZFF, which is an odd mixture", " of FASTA and GFF.", "\nFASTA file:\n", " The DNA must be in FASTA format. The definition line of each ZFF and", " FASTA file must be identical and in the same order. If the sequences", " have been masked with lowercase letters, include -lcmask.", "\nCommands:\n", "-validate Checks the annotation for warnings and errors and reports", " a short summary to stdout.", "-gene-stats Reports various statistics about the dataset.", "-export Creates 4 files export.{ann,dna,aa,tx}. The coordinates and", " dna file depend on the value of . The -plus option", " converts the sequence to plus strand.", "-categorize Categorizes genomic regions into those that contain errors", " (err), warnings (wrn), alternate forms (alt), overlapping", " genes (olp), and unique genes (uni). Typically, only the", " unique genes are used for training and testing. The value", " of limits the intergenic sequence at the ends.", "-split Splits the dataset into several pieces (-number) by fraction", " (-training) or by GC. For -training, the random seed may be", " set via -randseed.", "-ace-format Converts annotation to ACEDB format. A display method must", " be specified by -gene-method. To convert the dna to ACEDB", " format, include the -dna option.", "-compare-genes Calculates sensitivity and specificity at the nucleotide", " exon, and gene levels, as well as various sequence models.", "-extract Extracts sequence around a specific sequence feature. The", " -offset and -length determine the region.", "-reformat Converts trite annotation to full annotation.", "-anti Reverse-complements the sequence and annotation.", "-fuse Merges sequences and annotation.", "-lcfilter Converts lowercase to N.", "-lcsmooth Smooths small islands of N or non-N.", "-min-intron Sets the warning value for minimum intron length (default 30).", "-max-intron (default 100000)", "-min-exon (default 6)", "-max-exon (default 50000)", "-min-gene (default 150)", "-max-gene (default 200000)", "-min-cds (default 150)", "-max-cds (default 50000)", "\nTry 'fathom -help | more' if the output has scrolled off your screen" ); exit(0); } snap-2010-07-28/forge.c0000644000175000017500000010340311424066011014174 0ustar moellermoeller/*****************************************************************************\ forge.c Parameter estimation program for SNAP Copyright (C) 2002-2005 Ian Korf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \*****************************************************************************/ #include #include #include #include #include "zoe.h" /* model struct */ struct model { zoeLabel label; int length; int order; zoeModel counts; zoeModel scores; }; /* prototypes */ void help (void); float gc_content (void); float repeat_content (void); void openData (void); void closeData (void); int getData (void); zoeFeatureVec extractAcceptor (void); zoeFeatureVec extractDonor (void); zoeFeatureVec extractStart (void); zoeFeatureVec extractStop (void); zoeFeatureVec extractInter (void); zoeFeatureVec extractIntron (void); zoeFeatureVec extractCoding (void); zoeFeatureVec extractUTR3 (void); zoeFeatureVec extractUTR5 (void); zoeFeatureVec extractPolyA (void); void init_boosting (void); zoeVec define_models (void); void countModels (void); void createModel (zoeModel, const zoeModel); void processWMM (zoeModel, const zoeModel); void processLUT (zoeModel, const zoeModel); void createModels (void); void outputModels (void); void outputPolyA (void); void countDurations (void); void outputDurations (void); void countTransitions (void); void outputTransitions (void); void calcPhasePref (void); void outputPhasePref (void); void buildHMMs (void); /* global: DNA & Features */ char * DNA_file; char * ANN_file; zoeFile DNA_stream; zoeFile ANN_stream; zoeDNA DNA; /* the current DNA */ zoeDNA ANTI; /* reverse complement of DNA */ zoeFeatureTable ANN; /* the current annotation */ zoeCDS GENE; /* the current GENE */ zoeFeatureVec Features[zoeLABELS]; int UTR5_Length = 50; int UTR3_Length = 50; int UTR5_Offset = 10; int UTR3_Offset = 10; int POLYA_LOOK = 500; /* global: phases, transitions, durations */ int PhasePref[18]; int Transition[zoeLABELS][zoeLABELS]; #define DURATION_LIMIT 5000 float IntronD[DURATION_LIMIT]; float InterD[DURATION_LIMIT]; float ExonD[DURATION_LIMIT]; float EinitD[DURATION_LIMIT]; float EtermD[DURATION_LIMIT]; float EsnglD[DURATION_LIMIT]; /* global: models and scores */ zoeVec Models; /* global: Esngl static length data */ static int EsnglStaticData[96] = { 201, 216, 222, 234, 246, 261, 273, 279, 291, 294, 306, 312, 312, 324, 330, 339, 345, 354, 363, 372, 384, 384, 384, 387, 399, 408, 411, 420, 432, 441, 453, 468, 480, 489, 504, 516, 528, 540, 555, 567, 582, 594, 609, 618, 633, 645, 666, 681, 702, 720, 735, 747, 762, 777, 792, 813, 831, 849, 873, 891, 909, 933, 945, 969, 987, 1011, 1020, 1020, 1032, 1044, 1080, 1095, 1140, 1173, 1200, 1236, 1272, 1326, 1350, 1401, 1428, 1449, 1506, 1557, 1602, 1662, 1773, 1830, 1914, 2031, 2112, 2226, 2418, 2637, 2913 }; /* global: min counts */ static int MIN_COUNTS = 0; static int MIN_INTRON = 30; static int VERBOSE = 0; static zoeHash WEIGHT = NULL; /* boosting */ static char usage[] = "\n\ FORGE - training program for SNAP (version 2006-07-28)\n\n\ usage: forge [options] [options]\n\ options:\n\ -help\n\ -verbose\n\ -pseudocount [1] (absolute number for all models)\n\ -pseudoCoding [0.0] (eg. 0.05)\n\ -pseudoIntron [0.0]\n\ -pseudoInter [0.0]\n\ -min-counts [0]\n\ -lcmask [-fragmentN]\n\ -utr5-length [50]\n\ -utr5-offset [10]\n\ -utr3-length [50]\n\ -utr3-offset [10]\n\ -explicit [250]\n\ -min-intron [30]\n\ -boost (file of ID )\n\ "; /*****************************************************************************\ Main Program \*****************************************************************************/ int main (int argc, char **argv) { int i, label; /* preamble */ zoeSetProgramName(argv[0]); zoeSetOption("-help", 0); zoeSetOption("-verbose", 0); zoeSetOption("-pseudocount", 1); zoeSetOption("-pseudoInter", 1); zoeSetOption("-pseudoIntron", 1); zoeSetOption("-pseudoCoding", 1); zoeSetOption("-min-counts", 1); zoeSetOption("-lcmask", 0); zoeSetOption("-fragmentN", 0); zoeSetOption("-inter+intron", 0); zoeSetOption("-polyA", 1); zoeSetOption("-utr5-length", 1); zoeSetOption("-utr3-length", 1); zoeSetOption("-utr5-offset", 1); zoeSetOption("-utr3-offset", 1); zoeSetOption("-explicit", 1); zoeSetOption("-min-intron", 1); zoeSetOption("-boost", 1); zoeParseOptions(&argc, argv); if (zoeOption("-help")) help(); if (argc != 3) { zoeE("%s", usage); exit(1); } ANN_file = argv[1]; DNA_file = argv[2]; /* Minimum counts */ if (zoeOption("-min-counts")) MIN_COUNTS = atoi(zoeOption("-min-counts")); if (zoeOption("-verbose")) VERBOSE = 1; /* UTR lengths and PolyA scan */ if (zoeOption("-utr5-length")) UTR5_Length = atoi(zoeOption("-utr5-length")); if (zoeOption("-utr5-offset")) UTR5_Offset = atoi(zoeOption("-utr5-offset")); if (zoeOption("-utr3-length")) UTR3_Length = atoi(zoeOption("-utr3-length")); if (zoeOption("-utr3-offset")) UTR3_Offset = atoi(zoeOption("-utr3-offset")); if (zoeOption("-polyA")) POLYA_LOOK = atoi(zoeOption("-polyA")); /* initialze global data structures */ DNA = NULL; ANTI = NULL; ANN = NULL; GENE = NULL; for (label = 0; label < zoeLABELS; label++) { Features[label] = NULL; for (i = 0; i < zoeLABELS; i++) Transition[label][i] = 0; } for (i = 0; i < DURATION_LIMIT; i++) { IntronD[i] = 0; InterD[i] = 0; ExonD[i] = 0; EinitD[i] = 0; EtermD[i] = 0; EsnglD[i] = 0; } for (i = 0; i < 18; i++) PhasePref[i] = 0; Models = define_models(); /* Others */ if (zoeOption("-min-intron")) MIN_INTRON = atoi(zoeOption("-min-intron")); if (zoeOption("-boost")) init_boosting(); /* data loop */ if (VERBOSE) zoeE("counting"); openData(); while (getData()) { calcPhasePref(); countModels(); countDurations(); countTransitions(); if (VERBOSE) zoeE("."); } closeData(); if (VERBOSE) zoeE("done\n"); /* models */ createModels(); /* output components */ outputPhasePref(); outputDurations(); outputTransitions(); outputModels(); return 0; } /*****************************************************************************\ model functions \*****************************************************************************/ /* void calcMeanModelScore (void) { float total, var; int i, j; struct model * m; for (i = 0; i < Models->size; i++) { m = Models->elem[i]; total = 0; for (j = 0; j < m->scores->size; j++) total += m->scores->elem[j] - SCORE_SHELF; m->mean_score = zoeDivide(total, m->scores->size); total = 0; for (j = 0; j < m->scores->size; j++) total += pow(m->scores->elem[j] - m->mean_score - SCORE_SHELF, 2); var = zoeDivide(total, (m->scores->size - 1)); m->std_dev = sqrt(var); } } */ void init_boosting (void) { char id[64]; int weight; size_t set; zoeFile file; WEIGHT = zoeNewHash(); file = zoeOpenFile(zoeOption("-boost")); while (fscanf(file.stream, "%s %d", id, &weight) != EOF) { set = weight; zoeSetHash(WEIGHT, id, (void*)set); } zoeCloseFile(file); } void countModels (void) { int i, j, k, w; char * id; struct model * m; zoeCounter c; zoeFeature f; for (i = 0; i < Models->size; i++) { m = Models->elem[i]; c = zoeNewCounter(DNA, ANTI, m->counts); switch (m->label) { case Acceptor: case Donor: case Start: case Stop: case PolyA: for (j = 0; j < Features[m->label]->size; j++) { f = Features[m->label]->elem[j]; if (WEIGHT) { id = DNA->def; w = (size_t)zoeGetHash(WEIGHT, id); for (k = 0; k < w; k++) c->count(c, f->start); } else c->count(c, f->start); } break; case Inter: case Intron: case Coding: case UTR5: case UTR3: for (j = 0; j < Features[m->label]->size; j++) { f = Features[m->label]->elem[j]; if (WEIGHT) { id = DNA->def; w = (size_t)zoeGetHash(WEIGHT, id); for (k = 0; k < w; k++) c->countf(c, f); } else c->countf(c, f); } break; default: zoeExit("countModels not handled yet"); } zoeDeleteCounter(c); } } void outputModels (void) { int i; struct model * m; FILE * file; char filename[256]; if (VERBOSE) zoeE("writing models"); for (i = 0; i < Models->size; i++) { if (VERBOSE) zoeE("."); m = Models->elem[i]; /* counts */ sprintf(filename, "%s-%d-%d.count", m->counts->name, m->order, m->length); file = fopen(filename, "w"); zoeWriteModel(file, m->counts); fclose(file); /* scores */ sprintf(filename, "%s-%d-%d.model", m->counts->name, m->order, m->length); file = fopen(filename, "w"); zoeWriteModel(file, m->scores); fclose(file); } if (VERBOSE) zoeE("done\n"); } static void fractional_pseudocounts (zoeModel counts, float fraction) { int i, slots, total = 0; float pseudo; slots = zoePOWER[counts->symbols][counts->length]; for (i = 0; i < slots; i++) total += counts->data[i]; pseudo = fraction * total / slots; for (i = 0; i < slots; i++) counts->data[i] += pseudo; } void createModels (void) { int i; struct model * m; if (VERBOSE) zoeE("creating models"); for (i = 0; i < Models->size; i++) { if (VERBOSE) zoeE("."); m = Models->elem[i]; zoeDeambiguateModel(m->counts); if (m->label == Inter && zoeOption("-pseudoInter")) { fractional_pseudocounts(m->counts, atof(zoeOption("-pseudoInter"))); } else if (m->label == Intron && zoeOption("-pseudoIntron")) { fractional_pseudocounts(m->counts, atof(zoeOption("-pseudoIntron"))); } else if (m->label == Coding && zoeOption("-pseudoCoding")) { fractional_pseudocounts(m->counts->submodel[0], atof(zoeOption("-pseudoCoding"))); fractional_pseudocounts(m->counts->submodel[1], atof(zoeOption("-pseudoCoding"))); fractional_pseudocounts(m->counts->submodel[2], atof(zoeOption("-pseudoCoding"))); } createModel(m->scores, m->counts); } if (VERBOSE) zoeE("done\n"); } void createModel (zoeModel scores, const zoeModel counts) { int i; switch (scores->type) { case SAM: case SDT: case CDS: for (i = 0; i < scores->submodels; i++) createModel(scores->submodel[i], counts->submodel[i]); break; case WMM: processWMM(scores, counts); break; case LUT: processLUT(scores, counts); break; case TRM: break; default: zoeExit("createModel unable to handle %s\n", scores->name); } } void processWMM (zoeModel scores, const zoeModel counts) { int i, j; float total, frac; score_t score; int index; /* min counts */ for (i = 0; i < 4; i++) { if (counts->data[i] < MIN_COUNTS) counts->data[i] = 0; } /* compute total counts */ total = 0; for (i = 0; i < 4; i++) total += counts->data[i]; /* create scores */ for (i = 0; i < scores->length; i++) { for (j = 0; j < 4; j++) { index = i * 4 + j; if (total <= 0 || counts->data[index] == 0) { score = MIN_SCORE; } else { frac = counts->data[index] / total; score = zoeLog2(frac/0.25); } scores->data[index] = score; } } } void processLUT (zoeModel scores, const zoeModel counts) { int i, j; int p = zoePOWER[4][counts->length]; float total, frac; score_t score; for (i = 0; i < p; i+= 4) { /* min counts */ for (j = 0; j < 4; j++) { if (counts->data[i+j] < MIN_COUNTS) counts->data[i+j] = 0; } /* get total counts for this context */ total = 0; for (j = 0; j < 4; j++) total += counts->data[i+j]; /* create scores for this context */ for (j = 0; j < 4; j++ ) { if (total <= 0 || counts->data[i+j] == 0) { score = MIN_SCORE; } else { frac = counts->data[i+j] / total; score = zoeLog2(frac/0.25); } scores->data[i+j] = score; } } } /*****************************************************************************\ transition functions \*****************************************************************************/ void countTransitions (void) { int i; for (i = 0; i < Features[Coding]->size; i++) { if (Features[Coding]->elem[i]->label == 0) continue; switch (Features[Coding]->elem[i]->label) { case Einit: Transition[Inter][Einit]++; break; case Esngl: Transition[Inter][Esngl]++; break; case Eterm: Transition[Intron][Eterm]++; break; case Exon: Transition[Intron][Exon]++; break; default: break; } } } void outputTransitions (void) { FILE * file; float total; file = fopen("transitions", "w"); total = Transition[Inter][Einit] + Transition[Inter][Esngl]; zoeS(file, "Inter Einit %f\n", Transition[Inter][Einit]/total); zoeS(file, "Inter Esngl %f\n", Transition[Inter][Esngl]/total); total = Transition[Intron][Exon] + Transition[Intron][Eterm]; zoeS(file, "Intron Exon %f\n", Transition[Intron][Exon]/total); zoeS(file, "Intron Eterm %f\n", Transition[Intron][Eterm]/total); fclose(file); } /*****************************************************************************\ duration functions \*****************************************************************************/ void countDurations (void) { int i, length; zoeFeature f; for (i = 0; i < Features[Coding]->size; i++) { f = Features[Coding]->elem[i]; if (f->label == 0) continue; length = f->end - f->start +1; if (length >= DURATION_LIMIT) length = DURATION_LIMIT -1; switch (f->label) { case Exon: ExonD[length]++; break; case Einit: EinitD[length]++; break; case Eterm: EtermD[length]++; break; case Esngl: EsnglD[length]++; break; default: zoeExit("pollution of exons"); } } for (i = 0; i < Features[Intron]->size; i++) { f = Features[Intron]->elem[i]; if (f->label == 0) continue; length = f->end - f->start +1; if (length >= DURATION_LIMIT) length = DURATION_LIMIT -1; IntronD[length]++; } for (i = 0; i < Features[Inter]->size; i++) { f = Features[Inter]->elem[i]; if (f->label == 0) continue; length = f->end - f->start +1; if (length >= DURATION_LIMIT) length = DURATION_LIMIT -1; InterD[length]++; } } static void outputDuration (zoeLabel label, int limit) { char * name; float * ary; FILE * file; char filename[1024]; char s[64]; float total, length, mean; int i, j; switch (label) { case Einit: name = "Einit"; ary = EinitD; break; case Eterm: name = "Eterm"; ary = EtermD; break; case Esngl: name = "Esngl"; ary = EsnglD; break; case Exon: name = "Exon"; ary = ExonD; break; case Intron: name = "Intron"; ary = IntronD; break; case Inter: name = "Inter"; ary = InterD; break; default: name = ""; /* shush */ ary = NULL; zoeExit("outputDuration does not support %d", label); } /* explicit duration */ sprintf(filename, "%s-explicit.duration", name); file = fopen(filename, "w"); zoeS(file, "%s 2\n", name); zoeS(file, "\tDEFINED 0 %d\n", limit -1); total = 0; length = 0; for (i = 0; i < DURATION_LIMIT; i++) { total += ary[i]; length += ary[i] * i; } mean = length / total; for (i = 0; i < limit; i+=5) { zoeS(file, "\t\t"); for (j = 0; j < 5; j++) { if (label == Intron && (i+j) < MIN_INTRON) { zoeS(file, ". "); } else { zoeScore2Text(zoeFloat2Score(ary[i+j]/total), s); zoeS(file, "%s ", s); } } zoeS(file, "\n"); } zoeS(file, "\tGEOMETRIC %d -1\n", limit); zoeS(file, "\t\t%d\n", (int)mean); fclose(file); /* geometric duration */ sprintf(filename, "%s-geometric.duration", name); file = fopen(filename, "w"); zoeS(file, "%s 1\n", name); zoeS(file, "\tGEOMETRIC 0 -1\n"); zoeS(file, "\t\t%d\n", (int)mean); fclose(file); } static float ave_counts (float * count, int pos, int window) { int i; float t, mean; t = 0; for (i = pos - window; i <= pos + window; i++) t += count[i]; mean = t / (float)(window * 2 + 1); return mean; } static void smoothCounts (float * count) { float tmp[DURATION_LIMIT]; int i, j; float a, m; zoeFVec s1; int window, step; for (i = 0; i < DURATION_LIMIT; i++) tmp[i] = 0; s1 = zoeNewFVec(); window = 20; step = 10; for (i = step; i < DURATION_LIMIT - window; i += step) { a = ave_counts(count, i, window); zoePushFVec(s1, a); } for (i = 0; i < s1->size -1; i++) { m = (s1->elem[i+1] - s1->elem[i]) / step; for (j = 0; j < step; j++) { tmp[i*step +j] = s1->elem[i] + m * j; } } zoeDeleteFVec(s1); /* overwrite count array */ for (i = 0; i < DURATION_LIMIT; i++) count[i] = tmp[i] + 0.0001; /* prevent 0 errors */ } static void addFixedEsnglCounts (void) { int i; for (i = 0; i < 96; i++) EsnglD[EsnglStaticData[i]]++; } void outputDurations (void) { int fixed = 250; if (zoeOption("-explicit")) fixed = atoi(zoeOption("-explicit")); if (VERBOSE) zoeE("durations..."); smoothCounts(EinitD); outputDuration(Einit, fixed); smoothCounts(ExonD); outputDuration(Exon, fixed); smoothCounts(EtermD); outputDuration(Eterm, fixed); addFixedEsnglCounts(); smoothCounts(EsnglD); outputDuration(Esngl, 3000); smoothCounts(IntronD); outputDuration(Intron, fixed); smoothCounts(InterD); outputDuration(Inter, fixed); } /*****************************************************************************\ phasepref functions \*****************************************************************************/ void calcPhasePref (void) { int i; zoeFeature prev, exon; int index = -1; /* impossible value */ for (i = 1; i < GENE->exons->size; i++) { prev = GENE->exons->elem[i-1]; exon = GENE->exons->elem[i]; /* determine proper index for exon->intron transition */ if (prev->label == Einit) { switch (prev->inc3) { case 0: index = 0; break; /* initial exon to phase 0 intron */ case 1: index = 1; break; /* initial exon to phase 1 intron */ case 2: index = 2; break; /* initial exon to phase 2 intron */ default: zoeExit("impossible error1"); } } else if (prev->label == Exon) { if (prev->inc3 == 0) { switch (exon->inc3) { case 0: index = 3; break; /* 0....0 exon */ case 1: index = 4; break; /* 0....1 exon */ case 2: index = 5; break; /* 0....2 exon */ default: zoeExit("impossible error2"); } } else if (prev->inc3 == 1) { switch (exon->inc3) { case 0: index = 6; break; /* 1....0 exon */ case 1: index = 7; break; /* 1....1 exon */ case 2: index = 8; break; /* 1....2 exon */ default: zoeExit("impossible error3"); } } else if (prev->inc3 == 2) { switch (exon->inc3) { case 0: index = 9; break; /* 2....0 exon */ case 1: index = 10; break; /* 2....1 exon */ case 2: index = 11; break; /* 2....2 exon */ default: zoeExit("impossible error4"); } } } PhasePref[index]++; /* determine proper index for intron->exon transition */ if (prev->inc3 == 0) { switch (exon->label) { case Exon: index = 12; break; /* phase 0 intron to Exon */ case Eterm: index = 13; break; /* phase 0 intron to Eterm */ default: zoeExit("impossible error5 %s", GENE->name); } } else if (prev->inc3 == 1) { switch (exon->label) { case Exon: index = 14; break; /* phase 1 intron to Exon */ case Eterm: index = 15; break; /* phase 1 intron to Eterm */ default: zoeExit("impossible error6"); } } else if (prev->inc3 == 2) { switch (exon->label) { case Exon: index = 16; break; /* phase 2 intron to Exon */ case Eterm: index = 17; break; /* phase 2 intron to Eterm */ default: zoeExit("impossible error7"); } } PhasePref[index]++; } } void outputPhasePref (void) { int total; FILE * outfile; outfile = fopen("phaseprefs", "w"); /* Einit to intron */ total = PhasePref[0] + PhasePref[1] + PhasePref[2]; zoeS(outfile, "%f\n%f\n%f\n", zoeDivide((float)PhasePref[0],(float)total), zoeDivide((float)PhasePref[1],(float)total), zoeDivide((float)PhasePref[2],(float)total)); /* phase 0 Exon to intron */ total = PhasePref[3] + PhasePref[4] + PhasePref[5]; zoeS(outfile, "%f\n%f\n%f\n", zoeDivide((float)PhasePref[3],(float)total), zoeDivide((float)PhasePref[4],(float)total), zoeDivide((float)PhasePref[5],(float)total)); /* phase 1 Exon to intron */ total = PhasePref[6] + PhasePref[7] + PhasePref[8]; zoeS(outfile, "%f\n%f\n%f\n", zoeDivide((float)PhasePref[6],(float)total), zoeDivide((float)PhasePref[7],(float)total), zoeDivide((float)PhasePref[8],(float)total)); /* phase 2 Exon to intron */ total = PhasePref[9] + PhasePref[10] + PhasePref[11]; zoeS(outfile, "%f\n%f\n%f\n", zoeDivide((float)PhasePref[9],(float)total), zoeDivide((float)PhasePref[10],(float)total), zoeDivide((float)PhasePref[11],(float)total)); /* phase 0 intron to Exon and Eterm */ total = PhasePref[12] + PhasePref[13]; zoeS(outfile, "%f\n%f\n", zoeDivide((float)PhasePref[12],(float)total), zoeDivide((float)PhasePref[13],(float)total)); /* phase 1 intron to Exon and Eterm */ total = PhasePref[14] + PhasePref[15]; zoeS(outfile, "%f\n%f\n", zoeDivide((float)PhasePref[14],(float)total), zoeDivide((float)PhasePref[15],(float)total)); /* phase 2 intron to Exon and Eterm */ total = PhasePref[16] + PhasePref[17]; zoeS(outfile, "%f\n%f\n", zoeDivide((float)PhasePref[16],(float)total), zoeDivide((float)PhasePref[17],(float)total)); fclose(outfile); } /*****************************************************************************\ extract \*****************************************************************************/ zoeFeatureVec extractInter (void) { zoeFeature inter; zoeFeatureVec vec = zoeNewFeatureVec(); int i; /* 5' intergenic */ if (GENE->start > 0) { inter = zoeNewTriteFeature(Inter, 0, GENE->start -1, NULL); zoePushFeatureVec(vec, inter); zoeDeleteFeature(inter); } /* 3' intergenic */ if (GENE->end < DNA->length -1) { inter = zoeNewTriteFeature(Inter, GENE->end +1, DNA->length -1, NULL); zoePushFeatureVec(vec, inter); zoeDeleteFeature(inter); } /* merge intron and intergenic */ if (zoeOption("-inter+intron")) { for (i = 0; i < GENE->introns->size; i++) { zoePushFeatureVec(vec, GENE->introns->elem[i]); } } return vec; } zoeFeatureVec extractAcceptor (void) { int i, coor; zoeFeature exon; zoeFeature acc = zoeNewTriteFeature(Acceptor, 0, 1, NULL); zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < GENE->exons->size; i++) { exon = GENE->exons->elem[i]; if ( !(exon->label == Exon || exon->label == Eterm) ) continue; coor = exon->start -1; acc->start = coor; acc->end = coor; zoePushFeatureVec(vec, acc); } zoeDeleteFeature(acc); return vec; } zoeFeatureVec extractDonor (void) { int i, coor; zoeFeature exon; zoeFeatureVec vec = zoeNewFeatureVec(); zoeFeature don = zoeNewTriteFeature(Donor, 0, 0, NULL); for (i = 0; i < GENE->exons->size; i++) { exon = GENE->exons->elem[i]; if ( !(exon->label == Exon || exon->label == Einit) ) continue; coor = exon->end +1; don->start = coor; don->end = coor; zoePushFeatureVec(vec, don); } zoeDeleteFeature(don); return vec; } zoeFeatureVec extractStart (void) { int i, coor; zoeFeature start, exon; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < GENE->exons->size; i++) { exon = GENE->exons->elem[i]; if ( !(exon->label == Einit || exon->label == Esngl) ) continue; coor = exon->start; start = zoeNewTriteFeature(Start, coor, coor, NULL); zoePushFeatureVec(vec, start); zoeDeleteFeature(start); } return vec; } zoeFeatureVec extractStop (void) { int i, coor; zoeFeature stop, exon; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < GENE->exons->size; i++) { exon = GENE->exons->elem[i]; if ( !(exon->label == Eterm || exon->label == Esngl) ) continue; coor = exon->end -2; stop = zoeNewTriteFeature(Stop, coor, coor, NULL); zoePushFeatureVec(vec, stop); zoeDeleteFeature(stop); } return vec; } zoeFeatureVec extractIntron (void) { int i; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < GENE->introns->size; i++) zoePushFeatureVec(vec, GENE->introns->elem[i]); return vec; } zoeFeatureVec extractCoding (void) { int i; zoeFeatureVec vec = zoeNewFeatureVec(); for (i = 0; i < GENE->exons->size; i++) zoePushFeatureVec(vec, GENE->exons->elem[i]); return vec; } zoeFeatureVec extractUTR5 (void) { int a, b; zoeFeature utr; zoeFeatureVec vec = zoeNewFeatureVec(); a = GENE->start - UTR5_Length - UTR5_Offset; b = GENE->start - UTR5_Length; if (a < 0) a = 0; if (b < 0) b = 0; utr = zoeNewTriteFeature(UTR5, a, b, NULL); zoePushFeatureVec(vec, utr); zoeDeleteFeature(utr); return vec; } zoeFeatureVec extractUTR3 (void) { int a, b; zoeFeature utr; zoeFeatureVec vec = zoeNewFeatureVec(); a = GENE->end + UTR3_Offset; b = GENE->end + UTR3_Offset + UTR3_Length; if (a >= DNA->length) a = DNA->length -1; if (b >= DNA->length) b = DNA->length -1; utr = zoeNewTriteFeature(UTR3, a, b, NULL); zoePushFeatureVec(vec, utr); zoeDeleteFeature(utr); return vec; } zoeFeatureVec extractPolyA (void) { int i, a, b; zoeFeature polyA; zoeFeatureVec vec = zoeNewFeatureVec(); score_t score, max_score; coor_t max_pos; /* Looking for a reasonable match to AATAAA downstream of stop codon. Data for hard-coded scoring matrix adapted from Tom Blumenthal. This is a hack and not a rigorous way to annotate the polyA signal. */ a = GENE->end + UTR3_Offset; b = GENE->end + POLYA_LOOK; if (b >= DNA->length) b = DNA->length; max_score = 0; max_pos = 0; for (i = a; i < b -5; i++) { score = 1; if (DNA->s5[i] == 0) score *= 0.80; else if (DNA->s5[i] == 1) score *= 0.05; else if (DNA->s5[i] == 2) score *= 0.05; else if (DNA->s5[i] == 3) score *= 0.10; else if (DNA->s5[i] == 4) score *= 0; if (DNA->s5[i+1] == 0) score *= 0.95; else if (DNA->s5[i+1] == 1) score *= 0.01; else if (DNA->s5[i+1] == 2) score *= 0.02; else if (DNA->s5[i+1] == 3) score *= 0.12; else if (DNA->s5[i+1] == 4) score *= 0; if (DNA->s5[i+2] == 0) score *= 0.03; else if (DNA->s5[i+2] == 1) score *= 0.01; else if (DNA->s5[i+2] == 2) score *= 0.01; else if (DNA->s5[i+2] == 3) score *= 0.95; else if (DNA->s5[i+2] == 4) score *= 0; if (DNA->s5[i+3] == 0) score *= 0.85; else if (DNA->s5[i+3] == 1) score *= 0.01; else if (DNA->s5[i+3] == 2) score *= 0.13; else if (DNA->s5[i+3] == 3) score *= 0.01; else if (DNA->s5[i+3] == 4) score *= 0; if (DNA->s5[i+4] == 0) score *= 0.96; else if (DNA->s5[i+4] == 1) score *= 0.02; else if (DNA->s5[i+4] == 2) score *= 0.01; else if (DNA->s5[i+4] == 3) score *= 0.01; else if (DNA->s5[i+4] == 4) score *= 0; if (DNA->s5[i+5] == 0) score *= 0.96; else if (DNA->s5[i+5] == 1) score *= 0.01; else if (DNA->s5[i+5] == 2) score *= 0.01; else if (DNA->s5[i+5] == 3) score *= 0.02; else if (DNA->s5[i+5] == 4) score *= 0; if (score > max_score) { max_score = score; max_pos = i; } } if (max_score > 0.01) { polyA = zoeNewTriteFeature(PolyA, max_pos, max_pos, NULL); zoePushFeatureVec(vec, polyA); zoeDeleteFeature(polyA); } return vec; } /*****************************************************************************\ misc functions \*****************************************************************************/ void help (void) { zoeO("sorry, no help available as yet\n"); exit(0); } float gc_content (void) { int i; int count[5]; for (i = 0; i < 5; i++) count[i] = 0; for (i = 0; i < DNA->length; i++) count[(int)DNA->s5[i]]++; return (float)(count[1]+count[2]) / (float)(count[0]+count[1]+count[2]+count[3]); } float repeat_content (void) { int i; int count = 0; for (i = 0; i < DNA->length; i++) { switch (DNA->seq[i]) { case 'N': case 'n': case 'a': case 'c': case 'g': case 't': count++; } } return (float)count / (float)DNA->length; } /*****************************************************************************\ generic data processing functions \*****************************************************************************/ void openData (void) { DNA_stream = zoeOpenFile(DNA_file); ANN_stream = zoeOpenFile(ANN_file); } void closeData (void) { int label; zoeCloseFile(DNA_stream); zoeCloseFile(ANN_stream); if (DNA) { zoeDeleteDNA(DNA); DNA = NULL; } if (ANTI) { zoeDeleteDNA(ANTI); ANTI = NULL; } if (ANN) { zoeDeleteFeatureTable(ANN); ANN = NULL; } for (label = 0; label < zoeLABELS; label++) { if (Features[label]) { zoeDeleteFeatureVec(Features[label]); Features[label] = NULL; } } if (GENE) { zoeDeleteCDS(GENE); GENE = NULL; } } int getData (void) { zoeFastaFile ff; zoeVec genes; int i; /* read new dna and ann */ if ((ff = zoeReadFastaFile(DNA_stream.stream)) == NULL) return 0; /* delete old dna and ann objects */ if (DNA) zoeDeleteDNA(DNA); if (ANTI) zoeDeleteDNA(ANTI); if (ANN) zoeDeleteFeatureTable(ANN); if (GENE) zoeDeleteCDS(GENE); for (i = 0; i < zoeLABELS; i++) if (Features[i]) zoeDeleteFeatureVec(Features[i]); /* create new objects */ DNA = zoeNewDNA(ff->def, ff->seq); zoeDeleteFastaFile(ff); if (zoeOption("-lcmask")) zoeLCsmooth(DNA, 10, 10, 100); ANTI = zoeAntiDNA(DNA->def, DNA); ANN = zoeReadFeatureTable(ANN_stream.stream); /* process annotation data */ genes = zoeGetGenes(ANN, DNA); if (genes->size != 1) { zoeExit("must be one GENE per sequence"); } GENE = genes->elem[0]; zoeDeleteVec(genes); Features[Acceptor] = extractAcceptor(); Features[Donor] = extractDonor(); Features[Start] = extractStart(); Features[Stop] = extractStop(); Features[Coding] = extractCoding(); Features[Intron] = extractIntron(); Features[Inter] = extractInter(); Features[UTR5] = extractUTR5(); Features[UTR3] = extractUTR3(); Features[PolyA] = extractPolyA(); return 1; } zoeVec define_models (void) { int i, j; struct model * m; zoeVec vec = zoeNewVec(); float pseudo = 1; int acc[4] = {15, 20, 30, 40}; int don[4] = { 9, 12, 15, 20}; int start[4] = {12, 15, 18, 21}; int stop[4] = {9, 12, 15, 18}; int intron[5] = {1, 2, 3, 4, 5}; int inter[5] = {1, 2, 3, 4, 5}; int coding[4] = {2, 3, 4, 5}; int utr5[4] = {1, 2, 3, 4}; int utr3[4] = {1, 2, 3, 4}; int polyA[4] = {20, 30, 40, 50}; if (VERBOSE) zoeE("defining models:"); /* pseudocounts */ if (zoeOption("-pseudocount")) pseudo = atof(zoeOption("-pseudocount")); /* acceptor */ if (VERBOSE) zoeE("a"); for (i = 0; i < 4; i++) { for (j = 0; j < 3; j++) { m = zoeMalloc(sizeof(struct model)); m->label = Acceptor; m->length = acc[i]; m->order = j; m->counts = zoeNewAcceptorModel(j, acc[i], pseudo); m->scores = zoeNewAcceptorModel(j, acc[i], 0); zoePushVec(vec, m); } } /* donor */ if (VERBOSE) zoeE("d"); for (i = 0; i < 4; i++) { for (j = 0; j < 3; j++) { m = zoeMalloc(sizeof(struct model)); m->label = Donor; m->length = don[i]; m->order = j; m->counts = zoeNewDonorModel(j, don[i], pseudo); m->scores = zoeNewDonorModel(j, don[i], 0); zoePushVec(vec, m); } } /* start */ if (VERBOSE) zoeE("m"); for (i = 0; i < 4; i++) { for (j = 0; j < 3; j++) { m = zoeMalloc(sizeof(struct model)); m->label = Start; m->length = start[i]; m->order = j; m->counts = zoeNewStartModel(j, start[i], pseudo); m->scores = zoeNewStartModel(j, start[i], 0); zoePushVec(vec, m); } } /* stop */ if (VERBOSE) zoeE("s"); for (i = 0; i < 4; i++) { m = zoeMalloc(sizeof(struct model)); m->label = Stop; m->length = stop[i]; m->order = 0; m->counts = zoeNewStopModel(stop[i], pseudo); m->scores = zoeNewStopModel(stop[i], 0); zoePushVec(vec, m); } /* intron */ if (VERBOSE) zoeE("i"); for (i = 0; i < 5; i++) { m = zoeMalloc(sizeof(struct model)); m->label = Intron; m->length = intron[i] +1; m->order = intron[i]; m->counts = zoeNewIntronModel(intron[i], pseudo); m->scores = zoeNewIntronModel(intron[i], 0); zoePushVec(vec, m); } /* inter */ if (VERBOSE) zoeE("n"); for (i = 0; i < 5; i++) { m = zoeMalloc(sizeof(struct model)); m->label = Inter; m->length = inter[i] +1; m->order = inter[i]; m->counts = zoeNewInterModel(inter[i], pseudo); m->scores = zoeNewInterModel(inter[i], 0); zoePushVec(vec, m); } /* coding */ if (VERBOSE) zoeE("c"); for (i = 0; i < 4; i++) { m = zoeMalloc(sizeof(struct model)); m->label = Coding; m->length = coding[i] +1; m->order = coding[i]; m->counts = zoeNewCodingModel(coding[i], pseudo); m->scores = zoeNewCodingModel(coding[i], 0); zoePushVec(vec, m); } /* UTR5 */ if (VERBOSE) zoeE("5"); for (i = 0; i < 4; i++) { m = zoeMalloc(sizeof(struct model)); m->label = UTR5; m->length = utr5[i] +1; m->order = utr5[i]; m->counts = zoeNewUTR5Model(utr5[i], pseudo); m->scores = zoeNewUTR5Model(utr5[i], 0); zoePushVec(vec, m); } /* UTR3 */ if (VERBOSE) zoeE("3"); for (i = 0; i < 4; i++) { m = zoeMalloc(sizeof(struct model)); m->label = UTR3; m->length = utr3[i] +1; m->order = utr3[i]; m->counts = zoeNewUTR3Model(utr3[i], pseudo); m->scores = zoeNewUTR3Model(utr3[i], 0); zoePushVec(vec, m); } /* PolyA */ if (VERBOSE) zoeE("p"); for (i = 0; i < 4; i++) { for (j = 0; j < 3; j++) { m = zoeMalloc(sizeof(struct model)); m->label = PolyA; m->length = polyA[i]; m->order = j; m->counts = zoeNewPolyAModel(j, polyA[i], pseudo); m->scores = zoeNewPolyAModel(j, polyA[i], 0); zoePushVec(vec, m); } } /* ambiguate counts - deleted later */ if (VERBOSE) zoeE("..."); for (i = 0; i < vec->size; i++) { m = vec->elem[i]; zoeAmbiguateModel(m->counts, 0); } if (VERBOSE) zoeE("\n"); return vec; } snap-2010-07-28/noncoding-trainer.pl0000755000175000017500000000151011424066011016702 0ustar moellermoeller#!/usr/bin/perl use strict; use warnings; use IK; use FAlite; use DataBrowser; die "usage: $0 " unless @ARGV == 3; my ($file, $K, $type) = @ARGV; die unless $ARGV[2] =~ /Intron|Inter/; my $model = IK::blank_table($K, 1); open(IN, $file) or die; my $fasta = new FAlite(\*IN); while (my $entry = $fasta->nextEntry) { my $dna = uc $entry->seq; for (my $i = 0; $i < length($dna) -$K +1; $i++) { $model->{substr($dna, $i, $K)}++; } } close IN; my $table = IK::blank_table($K -1); my @alph = qw(A C G T); printf "%s LUT %d %d 4 0 0.000\n", $type, $K, $K-1; foreach my $kmer (sort keys %$table) { my $total = 0; foreach my $nt (@alph) { $total += $model->{"$kmer$nt"}; } foreach my $nt (@alph) { my $obs = $model->{"$kmer$nt"} / $total; printf "\t%.3f", log($obs/0.25)/log(2); } print "\n"; } snap-2010-07-28/cds-trainer.pl0000755000175000017500000000722211424066011015503 0ustar moellermoeller#!/usr/bin/perl use strict; use warnings; use IK; use FAlite; use DataBrowser; die "usage: $0 " unless @ARGV == 2; my ($file, $K) = @ARGV; # stage 1: get codon usage from longest ORF my %codon; open(IN, $file) or die; my $fasta = new FAlite(\*IN); while (my $entry = $fasta->nextEntry) { my $dna = uc $entry->seq; my @orf; for (my $i = 0; $i < 3; $i++) { my $tx1 = substr($dna, $i); my $tx2 = substr(IK::reverse_complement($dna), $i); my $aa1 = IK::translate($tx1); my $aa2 = IK::translate($tx2); push @orf, orfs($aa1, $tx1, '+'); push @orf, orfs($aa2, $tx2, '-'); } # sort by length only @orf = sort {length($b->{aa}) <=> length($a->{aa})} @orf; my $cds = $orf[0]{dna}; for (my $i = 0; $i < length($cds); $i+=3) { $codon{substr($cds, $i, 3)}++; } } close IN; # transform codon counts to log prob my $total = 0; foreach my $k (keys %codon) {$total += $codon{$k}} foreach my $k (keys %codon) {$codon{$k} = log($codon{$k}/$total)} # stage 2: keep longest ORF (ties broken by codon usage) my @cds; open(IN, $file) or die; $fasta = new FAlite(\*IN); while (my $entry = $fasta->nextEntry) { my $dna = uc $entry->seq; my @orf; for (my $i = 0; $i < 3; $i++) { my $tx1 = substr($dna, $i); my $tx2 = substr(IK::reverse_complement($dna), $i); my $aa1 = IK::translate($tx1); my $aa2 = IK::translate($tx2); push @orf, orfs($aa1, $tx1, '+'); push @orf, orfs($aa2, $tx2, '-'); } # find best ORF foreach my $orf (@orf) {$orf->{score} = score($orf->{dna})} @orf = sort {$b->{len} <=> $a->{len} or $b->{score} <=> $a->{score}} @orf; my $cds = $orf[0]{dna}; push @cds, substr($cds, 6, length($cds) - 12); } close IN; # stage 3: produce CDS model my @model = ( IK::blank_table($K, 1), IK::blank_table($K, 1), IK::blank_table($K, 1) ); foreach my $cds (@cds) { for (my $frame = 0; $frame <= 2; $frame++) { for (my $i = $frame; $i < length($cds) -$K -$frame +1; $i+= 3) { my $kmer = substr($cds, $i, $K); $model[$frame]{$kmer}++; $total++; } } } #for (my $i = 0; $i < @model; $i++) { # print "frame$i\n"; # my $count = 1; # foreach my $kmer (sort keys %{$model[$i]}) { # print "\t", $model[$i]{$kmer}; # if ($count++ %4 == 0) {print "\n"} # } #} #die; # output my $table = IK::blank_table($K - 1); my @alph = qw(A C G T); print "Coding CDS 3 2 4 3 0.000\n"; for my $frame (0, 1, 2) { printf "\tframe%d LUT %d %d 4 0 0.000\n", $frame, $K, $K-1; foreach my $kmer (sort keys %$table) { my $total = 0; foreach my $nt (@alph) { $total += $model[$frame]{"$kmer$nt"}; } foreach my $nt (@alph) { if ($total == 0) { print "\t\t."; next; } my $obs = $model[$frame]{"$kmer$nt"} / $total; if ($obs == 0) { print "\t\t."; next; } my $val = log($obs/0.25)/log(2); printf "\t\t%.3f", $val; } print "\n"; } } ############################################################################## sub score { my ($dna) = @_; my $score = 0; for (my $i = 0; $i < length($dna); $i+=3) { my $k = substr($dna, $i, 3); if (exists $codon{$k}) { $score += $codon{$k}; } else { $score += -10; } } return $score; } sub orfs { my ($pep, $dna, $s) = @_; my @orf; while ($pep =~ /(\w+)/g) { my $end = pos($pep); my $beg = $end - length($1); my $len = $end - $beg; my $orf = substr($dna, 3 * $beg, $len * 3); push @orf, { dna => $orf, aa => $1, strand => $s, len => length($1), }; } return @orf; } __END__ In short transcripts, there may be more than 1 reasonable ORF. For this reason, reads are processed in two steps. Step 1 selects the longest ORF and builds a codon usage table. Step 2 also finds the longest ORF, but ties are broken by similarity to the codon usage table.