diff --git a/README.md b/README.md
index 7b67e61..a7c0567 100755
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ This repository contains the data and code used to generate the JASPAR UCSC Geno
## Content
* The `genomes` folder contains scripts to download and process different genome assemblies
-* The `profiles` folder contains the output from the script [`get_profiles.py`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/profiles/get_profiles.py), which downloads the JASPAR CORE profiles for different taxons
-* The file [`environment.yml`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/environment.yml) contains the conda environment used to generate the genomic tracks for JASPAR 2020 (see installation)
+* The `profiles` folder contains the output from the script [`get-profiles.py`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/profiles/get_profiles.py), which downloads the JASPAR CORE profiles for different taxons
+* The file [`environment.yml`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/environment.yml), within the `conda` folder, contains the conda environment used to generate the genomic tracks for JASPAR 2022 (see installation)
* The script [`install-pwmscan.sh`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/install-pwmscan.sh) downloads and installs PWMscan and places its binaries in the in the `bin` folder.
-* The script [`scan_sequence.py`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/scan_sequence.py) takes as its input the `profiles` folder and a nucleotide sequence in [FASTA format](https://en.wikipedia.org/wiki/FASTA_format)(*e.g.* a genome), and outputs TFBS predictions
+* The script [`scan-sequence.py`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/scan_sequence.py) takes as its input the `profiles` folder and a nucleotide sequence in [FASTA format](https://en.wikipedia.org/wiki/FASTA_format)(*e.g.* a genome), and outputs TFBS predictions
* The script [`scans2bigBed`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/scans2bigBed) creates a [bigBed track file](https://genome.ucsc.edu/goldenPath/help/bigBed.html) from TFBS predictions
The original scripts used for the publication of [JASPAR 2018](https://doi.org/10.1093/nar/gkx1126) have been placed in the folder [`version-1.0`](https://github.com/wassermanlab/JASPAR-UCSC-tracks/tree/master/version-1.0).
@@ -26,26 +26,26 @@ To install PWMScan, execute the script [`install-pwmscan.sh`](https://github.com
The remaining dependencies can be installed through the [conda](https://docs.conda.io/en/latest/) package manager:
```
-conda env create -f ./environment.yml
+conda env create -f ./conda/environment.yml
```
## Availability
-Genomic tracks and TFBS predictions for human and six other model organisms are available online:
-* [http://expdata.cmmt.ubc.ca/JASPAR/downloads/UCSC_tracks/2020/](http://expdata.cmmt.ubc.ca/JASPAR/downloads/UCSC_tracks/2020/)
+Genomic tracks and TFBS predictions for human and **seven** other model organisms, covering **11** genome assemblies, are available online:
+* [http://expdata.cmmt.ubc.ca/JASPAR/downloads/UCSC_tracks/2022/](http://expdata.cmmt.ubc.ca/JASPAR/downloads/UCSC_tracks/2022/)
## Usage
To illustrate how the genomic tracks are generated, we provide an example for the [baker's yeast genome](https://www.ncbi.nlm.nih.gov/assembly/GCF_000146045.2/):
* Download the genome sequence and chromosome sizes (automated in this [script](https://github.com/wassermanlab/JASPAR-UCSC-tracks/blob/master/genomes/sacCer3/sacCer3.sh))
* Scan the genome sequence using [**all** fungi profiles from the JASPAR CORE](http://jaspar.genereg.net/search?q=&collection=CORE&tax_group=fungi)
```
-./scan_sequence.py --fasta-file ./genomes/sacCer3/sacCer3.fa --profiles-dir ./profiles/ \
+./scan-sequence.py --fasta-file ./genomes/sacCer3/sacCer3.fa --profiles-dir ./profiles/ \
--output-dir ./tracks/sacCer3/ --threads 4 --latest --taxon fungi
```
For this example, the scanning step should take no longer than a minute. For human and other similar genomes, this step is usually finished within a few hours (the final amount of time will depend on the number of `--threads` specified).
* Create the genomic track
```
-./scans2bigBed -c ./genomes/sacCer3/sacCer3.chrom.sizes -i ./tracks/sacCer3/ -o ./tracks/sacCer3.bb -t 4
+./scans2bigBed -c ./genomes/sacCer3/sacCer3.fa.sizes -i ./tracks/sacCer3/ -o ./tracks/sacCer3.bb -t 4
```
TFBS predictions from the previous step are merged into a [bigBed track file](https://genome.ucsc.edu/goldenPath/help/bigBed.html). In column five, we use as scores the p-values from PWMScan (scaled between 0-1000, where 0 corresponds to p-value = 1 and 1000 to p-value ≤ 10-10). This allows for comparison of prediction confidence across TFBSs. Again, for this example, this step should be completed within a few minutes, while for larger genomes it can take a few hours.
-**Important note:** both disk space and memory requirements for large genomes (*i.e.* danRer11, hg19, hg38 and mm10) are substantial. In these cases, we highly recommend allocating at least 1Tb of disk space and 512Gb of ram.
\ No newline at end of file
+**Important note:** disk space requirements for large genomes (*i.e.* danRer11, hg19, hg38, mm10, and mm39) are substantial. In these cases, we highly recommend allocating at least 1Tb of disk space.
\ No newline at end of file
diff --git a/environment.yml b/conda/environment.yml
old mode 100644
new mode 100755
similarity index 95%
rename from environment.yml
rename to conda/environment.yml
index 428f515..b5dca43
--- a/environment.yml
+++ b/conda/environment.yml
@@ -14,6 +14,7 @@ dependencies:
- pip=19.2.2
- pyfaidx=0.5.5.2
- python=3.7.3
+ - seaborn=0.11.2
- setuptools=41.0.1
- tqdm=4.35.0
- ucsc-bedtobigbed
diff --git a/genomes/get-genomes.sh b/genomes/get-genomes.sh
index 037ea12..69ada76 100755
--- a/genomes/get-genomes.sh
+++ b/genomes/get-genomes.sh
@@ -6,7 +6,7 @@ if ! [ -f araTha1/araTha1.fa.sizes ]; then
wget https://genome-test.gi.ucsc.edu/~hiram/hubs/Plants/araTha1/araTha1.2bit
twoBitToFa araTha1.2bit araTha1.fa
faidx -x araTha1.fa
- faidx araTha1.fa -i chromsizes > araTha1.chrom.sizes
+ faidx araTha1.fa -i chromsizes > araTha1.fa.sizes
rm araTha1.2bit chr*.fa
cd ..
fi
diff --git a/profiles/fungi/MA0265.1.pwm b/profiles/fungi/MA0265.1.pwm
index e69de29..51dd454 100644
--- a/profiles/fungi/MA0265.1.pwm
+++ b/profiles/fungi/MA0265.1.pwm
@@ -0,0 +1,16 @@
+ -103 66 -208 76
+ -346 188 -346 -297
+ -345 -345 190 -345
+ -345 -345 -345 190
+ 66 -50 -17 -29
+ -17 -5 5 15
+ 59 -57 15 -50
+ 41 -42 -29 15
+ 63 -23 -5 -65
+ 69 -343 114 -343
+ -94 -1 -127 105
+ -346 -346 160 -36
+ 178 -139 -346 -346
+ -346 79 -126 82
+ 52 -17 -42 -11
+ 41 -42 -74 41
diff --git a/profiles/fungi/MA0265.2.pwm b/profiles/fungi/MA0265.2.pwm
index e69de29..5d77443 100644
--- a/profiles/fungi/MA0265.2.pwm
+++ b/profiles/fungi/MA0265.2.pwm
@@ -0,0 +1,20 @@
+ 20 -56 -45 53
+ -4 -30 -57 62
+ -8 -65 -78 87
+ -59 -54 -288 133
+ -346 193 -418 -444
+ -361 -444 192 -346
+ -346 -444 -378 192
+ 79 -65 -16 -43
+ -28 -22 -67 76
+ 106 -137 -54 -25
+ 52 -107 -69 56
+ 140 -107 -92 -151
+ 23 -418 143 -378
+ -361 -128 -333 177
+ -418 -397 193 -361
+ 192 -378 -418 -361
+ -378 64 -247 113
+ 107 -97 -63 -41
+ -1 -20 -43 48
+ 39 -85 -26 39
diff --git a/profiles/fungi/MA0266.1.pwm b/profiles/fungi/MA0266.1.pwm
index e69de29..a3a00fb 100644
--- a/profiles/fungi/MA0266.1.pwm
+++ b/profiles/fungi/MA0266.1.pwm
@@ -0,0 +1,7 @@
+ -42 59 0 -42
+ -126 -126 -261 158
+ -346 190 -346 -346
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ -346 -346 190 -346
+ 181 -262 -262 -262
diff --git a/profiles/fungi/MA0267.1.pwm b/profiles/fungi/MA0267.1.pwm
index 9897d6f..bdb5eb9 100644
--- a/profiles/fungi/MA0267.1.pwm
+++ b/profiles/fungi/MA0267.1.pwm
@@ -1,7 +1,7 @@
- 86 18 -24 -231
- -464 188 -206 -464
- -10000 200 -10000 -10000
- 185 -132 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- 97 -32 -56 -84
+ 80 16 -21 -186
+ -297 178 -169 -297
+ -346 190 -346 -346
+ 175 -114 -346 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ 91 -29 -50 -74
diff --git a/profiles/fungi/MA0268.1.pwm b/profiles/fungi/MA0268.1.pwm
index d96b472..50a03c6 100644
--- a/profiles/fungi/MA0268.1.pwm
+++ b/profiles/fungi/MA0268.1.pwm
@@ -1,7 +1,7 @@
- 71 -6 -94 -18
- -10000 200 -10000 -10000
- -10000 177 -10000 -74
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 136 -206 -32 -132
- 44 103 -206 -147
+ 66 -5 -83 -17
+ -346 190 -346 -346
+ -346 167 -346 -65
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 127 -169 -29 -114
+ 41 96 -169 -126
diff --git a/profiles/fungi/MA0269.1.pwm b/profiles/fungi/MA0269.1.pwm
index e69de29..82cd189 100644
--- a/profiles/fungi/MA0269.1.pwm
+++ b/profiles/fungi/MA0269.1.pwm
@@ -0,0 +1,21 @@
+ -118 -27 -11 85
+ -66 0 -18 57
+ 52 -33 -17 -19
+ -46 65 -16 -31
+ 75 -11 -67 -40
+ -84 -158 -78 134
+ 149 -297 -273 -14
+ -75 -273 20 108
+ -262 -223 -246 178
+ -62 -385 167 -343
+ -384 192 -377 -384
+ 191 -393 -349 -356
+ -402 193 -393 -385
+ -297 190 -470 -343
+ -326 154 -362 -14
+ -44 4 96 -182
+ 8 1 -5 -5
+ 20 -66 -43 57
+ 14 -45 -176 90
+ -97 -14 50 22
+ -67 -8 86 -71
diff --git a/profiles/fungi/MA0270.1.pwm b/profiles/fungi/MA0270.1.pwm
index e69de29..2794b3d 100644
--- a/profiles/fungi/MA0270.1.pwm
+++ b/profiles/fungi/MA0270.1.pwm
@@ -0,0 +1,8 @@
+ -139 79 10 -29
+ 140 -346 24 -346
+ -346 190 -346 -346
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -124 71 11 -21
diff --git a/profiles/fungi/MA0271.1.pwm b/profiles/fungi/MA0271.1.pwm
index e69de29..180410e 100644
--- a/profiles/fungi/MA0271.1.pwm
+++ b/profiles/fungi/MA0271.1.pwm
@@ -0,0 +1,6 @@
+ 110 -351 -351 75
+ -438 -438 195 -438
+ 190 -353 -353 -353
+ -438 195 -438 -438
+ -12 -377 68 49
+ -426 184 -426 -161
diff --git a/profiles/fungi/MA0272.1.pwm b/profiles/fungi/MA0272.1.pwm
index da7665b..b7f2452 100644
--- a/profiles/fungi/MA0272.1.pwm
+++ b/profiles/fungi/MA0272.1.pwm
@@ -1,8 +1,8 @@
- 25 -204 75 -17
- -277 -10000 -336 191
- -169 -10000 188 -10000
- 200 -10000 -10000 -10000
- -10000 199 -10000 -609
- -537 -10000 -10000 199
- -10000 200 -10000 -10000
- 34 34 -354 46
+ 24 -176 71 -16
+ -221 -362 -255 182
+ -153 -423 183 -423
+ 191 -366 -366 -366
+ -430 194 -430 -395
+ -328 -363 -363 190
+ -434 195 -434 -434
+ 32 32 -271 43
diff --git a/profiles/fungi/MA0273.1.pwm b/profiles/fungi/MA0273.1.pwm
index f04bf6a..258e6f3 100644
--- a/profiles/fungi/MA0273.1.pwm
+++ b/profiles/fungi/MA0273.1.pwm
@@ -1,21 +1,21 @@
- -129 -69 109 -25
- 40 -37 27 -52
- -99 -10 35 37
- 70 2 -30 -88
- 64 -37 -12 -42
- 31 -33 -89 51
- -159 -70 43 77
- -264 157 -306 -43
- -564 -11 -496 160
- -564 198 -796 -564
- -796 -350 196 -796
- -796 -564 199 -696
- -406 52 24 40
- 143 -596 -538 35
- 147 -188 -206 -46
- -125 -17 58 26
- 11 -107 -37 74
- 50 -25 -28 -12
- 4 -20 -49 47
- -8 -128 48 31
- 16 1 -55 26
+ -123 -66 107 -24
+ 39 -36 26 -50
+ -94 -10 34 36
+ 69 2 -29 -84
+ 63 -36 -12 -41
+ 30 -32 -85 50
+ -150 -67 42 75
+ -243 155 -277 -42
+ -432 -11 -402 157
+ -432 195 -485 -432
+ -486 -311 193 -486
+ -485 -432 195 -470
+ -349 51 23 39
+ 140 -444 -421 34
+ 144 -176 -192 -45
+ -119 -16 56 25
+ 10 -102 -36 73
+ 49 -24 -27 -11
+ 4 -20 -47 46
+ -8 -121 47 30
+ 15 1 -53 25
diff --git a/profiles/fungi/MA0274.1.pwm b/profiles/fungi/MA0274.1.pwm
index e69de29..e981237 100644
--- a/profiles/fungi/MA0274.1.pwm
+++ b/profiles/fungi/MA0274.1.pwm
@@ -0,0 +1,8 @@
+ 191 -368 -368 -368
+ -97 55 -73 51
+ -59 55 -389 85
+ -369 -369 -369 191
+ 30 -420 141 -420
+ 144 -14 -167 -386
+ 162 -376 -49 -284
+ -163 -372 -70 158
diff --git a/profiles/fungi/MA0275.1.pwm b/profiles/fungi/MA0275.1.pwm
index e69de29..aa8b4d6 100644
--- a/profiles/fungi/MA0275.1.pwm
+++ b/profiles/fungi/MA0275.1.pwm
@@ -0,0 +1,6 @@
+ -346 151 -346 -5
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 145 -101 -56 -345
+ 101 -346 -346 85
diff --git a/profiles/fungi/MA0276.1.pwm b/profiles/fungi/MA0276.1.pwm
index e69de29..12936be 100644
--- a/profiles/fungi/MA0276.1.pwm
+++ b/profiles/fungi/MA0276.1.pwm
@@ -0,0 +1,10 @@
+ -419 169 -256 -84
+ -434 193 -434 -350
+ 11 -128 119 -212
+ 4 -6 80 -193
+ 143 -371 21 -371
+ -357 -161 -194 173
+ -71 135 -235 -64
+ 65 -380 85 -84
+ -425 -262 180 -167
+ -424 -424 185 -173
diff --git a/profiles/fungi/MA0277.1.pwm b/profiles/fungi/MA0277.1.pwm
index e69de29..f80955f 100644
--- a/profiles/fungi/MA0277.1.pwm
+++ b/profiles/fungi/MA0277.1.pwm
@@ -0,0 +1,9 @@
+ 123 -85 -85 -85
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ 171 -84 -347 -347
+ 149 -346 0 -346
+ -346 -346 190 -346
+ 155 -57 -232 -232
+ 162 -168 -168 -168
+ 123 -85 -85 -85
diff --git a/profiles/fungi/MA0278.1.pwm b/profiles/fungi/MA0278.1.pwm
index e69de29..b240f5d 100644
--- a/profiles/fungi/MA0278.1.pwm
+++ b/profiles/fungi/MA0278.1.pwm
@@ -0,0 +1,21 @@
+ -184 -19 75 22
+ -120 112 -71 -36
+ 94 -111 -108 20
+ -158 67 -41 41
+ 85 -213 55 -99
+ -1 -262 140 -226
+ -128 151 -77 -265
+ -210 185 -411 -320
+ 47 46 16 -301
+ -369 -456 194 -421
+ 192 -432 -306 -444
+ -292 -421 191 -444
+ -393 -385 -444 193
+ -223 186 -411 -349
+ 180 -237 -343 -218
+ 94 -98 35 -176
+ 20 -80 33 2
+ 57 -113 -153 78
+ -47 54 -42 10
+ 67 -80 44 -108
+ 78 -12 -5 -134
diff --git a/profiles/fungi/MA0279.1.pwm b/profiles/fungi/MA0279.1.pwm
index 35a42a1..881df8e 100644
--- a/profiles/fungi/MA0279.1.pwm
+++ b/profiles/fungi/MA0279.1.pwm
@@ -1,10 +1,10 @@
- 187 -249 -252 -10000
- -250 -10000 -10000 193
- -10000 -10000 -10000 200
- 181 -246 -10000 -165
- 8 -142 136 -10000
- -10000 -10000 -10000 200
- 185 -139 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 136 53
- -10000 193 -10000 -249
+ 185 -236 -239 -562
+ -236 -558 -558 191
+ -556 -556 -556 198
+ 179 -233 -556 -159
+ 8 -137 134 -564
+ -556 -556 -556 198
+ 183 -134 -555 -555
+ 198 -556 -556 -556
+ -559 -559 134 52
+ -558 191 -558 -236
diff --git a/profiles/fungi/MA0279.2.pwm b/profiles/fungi/MA0279.2.pwm
index e69de29..a5109cf 100644
--- a/profiles/fungi/MA0279.2.pwm
+++ b/profiles/fungi/MA0279.2.pwm
@@ -0,0 +1,16 @@
+ 38 -24 -47 18
+ -47 -32 -11 63
+ -75 -56 -85 112
+ -172 -172 155 -109
+ 23 132 -218 -337
+ -285 -285 -337 186
+ -285 -337 -24 155
+ 186 -337 -285 -285
+ -153 146 -85 -153
+ -97 -337 -218 166
+ 181 -218 -337 -247
+ 186 -337 -285 -285
+ -172 -285 -56 153
+ 18 47 -56 -32
+ 38 7 -17 -39
+ 33 -65 7 7
diff --git a/profiles/fungi/MA0280.1.pwm b/profiles/fungi/MA0280.1.pwm
index 04033bb..1d2dfc8 100644
--- a/profiles/fungi/MA0280.1.pwm
+++ b/profiles/fungi/MA0280.1.pwm
@@ -1,6 +1,6 @@
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 140 -94 -25 -10000
- 36 -47 16 -18
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 132 -83 -23 -346
+ 33 -42 15 -17
diff --git a/profiles/fungi/MA0281.1.pwm b/profiles/fungi/MA0281.1.pwm
index e69de29..6d0bf5f 100644
--- a/profiles/fungi/MA0281.1.pwm
+++ b/profiles/fungi/MA0281.1.pwm
@@ -0,0 +1,8 @@
+ -34 -138 103 -34
+ -233 177 -233 -233
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 190 -346
+ 142 -51 -171 -171
diff --git a/profiles/fungi/MA0281.2.pwm b/profiles/fungi/MA0281.2.pwm
index e69de29..044faf8 100644
--- a/profiles/fungi/MA0281.2.pwm
+++ b/profiles/fungi/MA0281.2.pwm
@@ -0,0 +1,15 @@
+ 18 -50 -44 51
+ 22 -88 39 -2
+ 105 -192 18 -92
+ -209 -150 -20 135
+ -377 192 -377 -409
+ 192 -409 -350 -377
+ -377 186 -350 -228
+ -263 -409 190 -409
+ -409 -409 -409 193
+ -409 -377 193 -409
+ 169 -128 -218 -277
+ -170 114 -239 37
+ 6 51 -144 22
+ 36 -33 -42 23
+ 29 -88 4 27
diff --git a/profiles/fungi/MA0282.1.pwm b/profiles/fungi/MA0282.1.pwm
index ac95563..8dac8ef 100644
--- a/profiles/fungi/MA0282.1.pwm
+++ b/profiles/fungi/MA0282.1.pwm
@@ -1,8 +1,8 @@
- -264 116 -264 53
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 186 -464 -464 -184
- 187 -307 -307 -307
- 75 -25 -25 -64
+ -208 109 -208 49
+ -346 -346 -346 190
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 177 -297 -297 -153
+ 177 -233 -233 -233
+ 69 -23 -23 -57
diff --git a/profiles/fungi/MA0283.1.pwm b/profiles/fungi/MA0283.1.pwm
index e69de29..ca86c1f 100644
--- a/profiles/fungi/MA0283.1.pwm
+++ b/profiles/fungi/MA0283.1.pwm
@@ -0,0 +1,8 @@
+ -17 -187 136 -187
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 143 -345 16 -345
+ -17 -298 151 -298
+ 89 -112 -112 30
diff --git a/profiles/fungi/MA0284.1.pwm b/profiles/fungi/MA0284.1.pwm
index e69de29..a18ee2b 100644
--- a/profiles/fungi/MA0284.1.pwm
+++ b/profiles/fungi/MA0284.1.pwm
@@ -0,0 +1,10 @@
+ -346 -346 -126 177
+ -81 -152 -10 110
+ 190 -346 -346 -346
+ -104 103 -189 27
+ -29 -57 111 -153
+ -346 -346 -346 190
+ 177 -126 -346 -346
+ 190 -346 -346 -346
+ -262 -75 55 83
+ -65 140 -139 -153
diff --git a/profiles/fungi/MA0284.2.pwm b/profiles/fungi/MA0284.2.pwm
index 1b6cc08..b695f81 100644
--- a/profiles/fungi/MA0284.2.pwm
+++ b/profiles/fungi/MA0284.2.pwm
@@ -1,14 +1,14 @@
- 35 -20 -88 39
- 14 -143 69 -13
- 148 -91 -179 -134
- -485 -411 -411 194
- -485 -543 -273 192
- 195 -643 -485 -362
- -443 166 -311 -57
- 137 -234 3 -234
- -643 -643 -643 199
- 190 -218 -485 -543
- 193 -485 -643 -285
- -179 -226 -57 150
- -18 106 -139 -62
- 75 -118 -22 3
+ 33 -19 -82 37
+ 13 -131 66 -12
+ 143 -84 -162 -123
+ -357 -324 -324 189
+ -357 -377 -237 187
+ 190 -401 -357 -296
+ -339 161 -263 -54
+ 132 -207 3 -207
+ -401 -401 -401 193
+ 184 -194 -357 -377
+ 188 -357 -401 -245
+ -162 -201 -54 145
+ -17 102 -127 -58
+ 72 -109 -21 3
diff --git a/profiles/fungi/MA0285.1.pwm b/profiles/fungi/MA0285.1.pwm
index e69de29..089776d 100644
--- a/profiles/fungi/MA0285.1.pwm
+++ b/profiles/fungi/MA0285.1.pwm
@@ -0,0 +1,9 @@
+ -29 88 -42 -74
+ 16 -15 -48 34
+ 52 24 -17 -103
+ 124 47 -299 -299
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -345 190 -345 -345
+ 69 24 -153 -23
+ -152 153 -138 -138
diff --git a/profiles/fungi/MA0286.1.pwm b/profiles/fungi/MA0286.1.pwm
index 9eb9d03..f2bcff1 100644
--- a/profiles/fungi/MA0286.1.pwm
+++ b/profiles/fungi/MA0286.1.pwm
@@ -1,9 +1,9 @@
- 90 -120 34 -120
- -463 -463 -463 196
- -464 -464 186 -184
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -232 -10000 193 -10000
- -10000 -10000 -10000 200
- 86 18 -163 -46
- 88 -84 -32 -32
+ 83 -104 31 -104
+ -296 -296 -296 185
+ -297 -297 177 -153
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -187 -346 183 -346
+ -346 -346 -346 190
+ 80 16 -138 -41
+ 82 -74 -29 -29
diff --git a/profiles/fungi/MA0287.1.pwm b/profiles/fungi/MA0287.1.pwm
index 84bc443..9f43290 100644
--- a/profiles/fungi/MA0287.1.pwm
+++ b/profiles/fungi/MA0287.1.pwm
@@ -1,11 +1,11 @@
- -10000 164 -10000 -17
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -17 164 -10000 -10000
- 142 -10000 42 -10000
- 83 -117 83 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 164 -10000 -17 -10000
- 83 -10000 -10000 115
- -17 -10000 164 -10000
+ -200 137 -200 -13
+ 170 -200 -200 -200
+ -200 -200 170 -200
+ -13 137 -200 -200
+ 117 -200 32 -200
+ 66 -78 66 -200
+ 170 -200 -200 -200
+ 170 -200 -200 -200
+ 137 -200 -13 -200
+ 66 -200 -200 94
+ -13 -200 137 -200
diff --git a/profiles/fungi/MA0288.1.pwm b/profiles/fungi/MA0288.1.pwm
index e69de29..a8ae007 100644
--- a/profiles/fungi/MA0288.1.pwm
+++ b/profiles/fungi/MA0288.1.pwm
@@ -0,0 +1,9 @@
+ -152 -112 -231 158
+ -346 -346 190 -346
+ 165 -346 -126 -153
+ -297 188 -346 -346
+ 177 -346 -126 -346
+ -346 127 -126 10
+ 149 -65 -346 -114
+ 63 -346 -346 118
+ 59 -83 -232 79
diff --git a/profiles/fungi/MA0289.1.pwm b/profiles/fungi/MA0289.1.pwm
index e69de29..29aad19 100644
--- a/profiles/fungi/MA0289.1.pwm
+++ b/profiles/fungi/MA0289.1.pwm
@@ -0,0 +1,7 @@
+ -104 132 -171 -51
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ 176 -296 -296 -152
+ -232 -36 149 -232
diff --git a/profiles/fungi/MA0290.1.pwm b/profiles/fungi/MA0290.1.pwm
index e69de29..344efcc 100644
--- a/profiles/fungi/MA0290.1.pwm
+++ b/profiles/fungi/MA0290.1.pwm
@@ -0,0 +1,19 @@
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ -393 -393 193 -393
+ -393 193 -393 -393
+ -393 193 -393 -393
+ -393 -393 193 -393
+ -393 193 -393 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ -393 193 -393 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ 193 -393 -393 -393
+ -393 -393 -393 193
+ -393 -393 -393 193
diff --git a/profiles/fungi/MA0291.1.pwm b/profiles/fungi/MA0291.1.pwm
index e69de29..8f8e907 100644
--- a/profiles/fungi/MA0291.1.pwm
+++ b/profiles/fungi/MA0291.1.pwm
@@ -0,0 +1,9 @@
+ 112 -71 -71 -71
+ 100 -104 -189 31
+ 59 -232 -232 106
+ 5 -103 69 -23
+ -346 5 -346 148
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -104 135 -104 -104
diff --git a/profiles/fungi/MA0292.1.pwm b/profiles/fungi/MA0292.1.pwm
index e69de29..a29b44a 100644
--- a/profiles/fungi/MA0292.1.pwm
+++ b/profiles/fungi/MA0292.1.pwm
@@ -0,0 +1,7 @@
+ 16 50 -152 16
+ -72 -152 -152 143
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -74 169 -346
+ -346 -346 169 -74
+ 180 -346 -153 -346
diff --git a/profiles/fungi/MA0293.1.pwm b/profiles/fungi/MA0293.1.pwm
index e69de29..d9457c2 100644
--- a/profiles/fungi/MA0293.1.pwm
+++ b/profiles/fungi/MA0293.1.pwm
@@ -0,0 +1,11 @@
+ 28 0 -11 -23
+ 37 0 -17 -29
+ 144 -103 -114 -153
+ -114 -261 169 -261
+ 190 -346 -346 -346
+ -232 -346 -346 186
+ -299 174 -233 -155
+ -74 -36 -74 101
+ 24 -11 -23 5
+ 31 -1 -1 -37
+ 25 6 -15 -21
diff --git a/profiles/fungi/MA0294.1.pwm b/profiles/fungi/MA0294.1.pwm
index 99a0980..a4a3e47 100644
--- a/profiles/fungi/MA0294.1.pwm
+++ b/profiles/fungi/MA0294.1.pwm
@@ -1,9 +1,9 @@
- -82 107 -82 -38
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 160 -10000 -10000 -6
- 93 -7 -134 -41
- 200 -10000 -10000 -10000
- 173 -463 -463 -72
- -74 -32 -118 111
+ -72 100 -72 -34
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 151 -346 -346 -5
+ 86 -7 -115 -37
+ 190 -346 -346 -346
+ 163 -296 -296 -64
+ -65 -29 -103 104
diff --git a/profiles/fungi/MA0295.1.pwm b/profiles/fungi/MA0295.1.pwm
index c5e8d4d..1c5f7df 100644
--- a/profiles/fungi/MA0295.1.pwm
+++ b/profiles/fungi/MA0295.1.pwm
@@ -1,8 +1,8 @@
- -10000 -132 185 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- 185 -10000 -10000 -132
- 91 13 -50 -167
- 114 -74 -74 -74
+ -346 -114 175 -346
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ 175 -346 -346 -114
+ 85 12 -45 -141
+ 106 -65 -65 -65
diff --git a/profiles/fungi/MA0296.1.pwm b/profiles/fungi/MA0296.1.pwm
index e69de29..ef9e288 100644
--- a/profiles/fungi/MA0296.1.pwm
+++ b/profiles/fungi/MA0296.1.pwm
@@ -0,0 +1,20 @@
+ -48 20 -26 38
+ -1 -36 41 -14
+ 103 -149 -128 24
+ 105 -162 -91 9
+ 53 -167 -71 70
+ -102 -74 -87 124
+ -74 -444 173 -485
+ -411 -456 -503 195
+ 191 -252 -503 -485
+ 194 -377 -485 -393
+ 195 -485 -470 -432
+ -485 186 -485 -171
+ 195 -485 -456 -444
+ 178 -246 -343 -174
+ 140 -218 -172 -25
+ -1 -37 69 -69
+ 57 -63 24 -53
+ 18 -42 39 -31
+ -27 -105 84 -14
+ 74 -36 -1 -83
diff --git a/profiles/fungi/MA0297.1.pwm b/profiles/fungi/MA0297.1.pwm
index 3cd9160..8b2e643 100644
--- a/profiles/fungi/MA0297.1.pwm
+++ b/profiles/fungi/MA0297.1.pwm
@@ -1,7 +1,7 @@
- -96 -10000 180 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
+ -84 -347 171 -347
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ 190 -346 -346 -346
diff --git a/profiles/fungi/MA0299.1.pwm b/profiles/fungi/MA0299.1.pwm
index e69de29..10e38ba 100644
--- a/profiles/fungi/MA0299.1.pwm
+++ b/profiles/fungi/MA0299.1.pwm
@@ -0,0 +1,15 @@
+ -569 198 -569 -569
+ -569 -569 198 -569
+ -571 -66 168 -269
+ 2 -23 26 -10
+ -136 56 57 -61
+ 33 1 31 -102
+ 164 -579 -46 -276
+ -33 84 17 -181
+ 134 -112 -580 -2
+ -27 -43 111 -190
+ -287 -3 -66 117
+ 54 -61 46 -96
+ -580 93 -4 14
+ -164 -93 -84 138
+ -569 198 -569 -569
diff --git a/profiles/fungi/MA0300.1.pwm b/profiles/fungi/MA0300.1.pwm
index 9cc1f89..481317d 100644
--- a/profiles/fungi/MA0300.1.pwm
+++ b/profiles/fungi/MA0300.1.pwm
@@ -1,8 +1,8 @@
- -96 80 -41 -1
- -56 75 -232 53
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -304 -146 176 -304
+ -84 74 -37 -1
+ -50 69 -187 49
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -231 -124 167 -231
diff --git a/profiles/fungi/MA0301.1.pwm b/profiles/fungi/MA0301.1.pwm
index e69de29..d14d3d2 100644
--- a/profiles/fungi/MA0301.1.pwm
+++ b/profiles/fungi/MA0301.1.pwm
@@ -0,0 +1,9 @@
+ 130 -126 -29 -169
+ -138 -260 173 -296
+ 178 -346 -346 -139
+ -92 -346 -298 170
+ -232 181 -298 -261
+ -169 10 -208 125
+ 96 -36 -42 -92
+ 16 38 -21 -48
+ 34 1 -21 -21
diff --git a/profiles/fungi/MA0302.1.pwm b/profiles/fungi/MA0302.1.pwm
index 476f82d..68abffb 100644
--- a/profiles/fungi/MA0302.1.pwm
+++ b/profiles/fungi/MA0302.1.pwm
@@ -1,11 +1,11 @@
- 51 -27 -7 -34
- 30 4 -49 4
- 168 -264 -106 -264
- -304 -10000 196 -10000
- 197 -10000 -10000 -364
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -232 16 -306 136
- 68 -32 -12 -56
- 18 7 -11 -17
- 42 -4 -24 -24
+ 47 -24 -7 -30
+ 27 4 -44 4
+ 159 -208 -92 -208
+ -231 -345 185 -345
+ 187 -346 -346 -261
+ -345 -345 -345 190
+ -345 190 -345 -345
+ -187 15 -232 127
+ 63 -29 -11 -50
+ 16 6 -10 -15
+ 38 -4 -21 -21
diff --git a/profiles/fungi/MA0303.1.pwm b/profiles/fungi/MA0303.1.pwm
index e69de29..ec63a45 100644
--- a/profiles/fungi/MA0303.1.pwm
+++ b/profiles/fungi/MA0303.1.pwm
@@ -0,0 +1,21 @@
+ -19 23 -3 -5
+ 56 -19 10 -78
+ 52 -22 -71 13
+ 17 -102 37 12
+ 14 -48 33 -11
+ -54 -80 53 37
+ 108 -259 71 -349
+ -377 -402 -421 193
+ -470 -432 187 -199
+ 192 -362 -444 -362
+ -470 78 115 -485
+ -362 -444 -362 192
+ -199 187 -432 -470
+ 193 -421 -402 -377
+ -349 71 -259 108
+ 58 21 -89 -30
+ -26 49 -35 -3
+ 18 -20 -29 24
+ -14 -9 -48 52
+ 3 39 -10 -43
+ 42 -54 -34 24
diff --git a/profiles/fungi/MA0303.2.pwm b/profiles/fungi/MA0303.2.pwm
index 7af83aa..d733997 100644
--- a/profiles/fungi/MA0303.2.pwm
+++ b/profiles/fungi/MA0303.2.pwm
@@ -1,11 +1,11 @@
- 42 -58 21 -24
- 100 -58 -24 -103
- -10000 -10000 -10000 200
- -449 -10000 190 -217
- 195 -10000 -349 -449
- -10000 146 32 -10000
- -449 -10000 -349 195
- -168 179 -217 -10000
- 187 -291 -349 -291
- -191 -17 -79 118
- -49 46 -79 42
+ 38 -52 19 -22
+ 93 -52 -22 -90
+ -339 -339 -339 189
+ -288 -339 180 -175
+ 185 -339 -251 -288
+ -339 137 29 -339
+ -288 -339 -251 185
+ -141 169 -175 -339
+ 176 -221 -251 -221
+ -157 -15 -69 110
+ -44 42 -69 38
diff --git a/profiles/fungi/MA0304.1.pwm b/profiles/fungi/MA0304.1.pwm
index 6321cc8..4070dcc 100644
--- a/profiles/fungi/MA0304.1.pwm
+++ b/profiles/fungi/MA0304.1.pwm
@@ -1,8 +1,8 @@
- 12 -442 -310 146
- -10000 -211 191 -10000
- -10000 -481 199 -10000
- 200 -10000 -10000 -10000
- 181 -594 -10000 -107
- -610 -557 191 -235
- -17 145 -10000 -138
- -10000 157 -544 0
+ 12 -395 -291 144
+ -565 -202 189 -565
+ -565 -418 197 -565
+ 198 -565 -565 -565
+ 179 -480 -565 -103
+ -487 -463 189 -224
+ -17 143 -567 -133
+ -572 155 -459 0
diff --git a/profiles/fungi/MA0305.1.pwm b/profiles/fungi/MA0305.1.pwm
index e69de29..5fb21da 100644
--- a/profiles/fungi/MA0305.1.pwm
+++ b/profiles/fungi/MA0305.1.pwm
@@ -0,0 +1,7 @@
+ -74 -74 131 -164
+ -430 194 -430 -430
+ -160 -358 -324 180
+ -362 -362 -362 191
+ -424 190 -424 -259
+ -425 194 -391 -425
+ 39 17 -235 45
diff --git a/profiles/fungi/MA0306.1.pwm b/profiles/fungi/MA0306.1.pwm
index e1e1532..0437642 100644
--- a/profiles/fungi/MA0306.1.pwm
+++ b/profiles/fungi/MA0306.1.pwm
@@ -1,9 +1,9 @@
- 71 -18 -106 0
- -10000 196 -10000 -306
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 180 -10000 -94
- -10000 -10000 -10000 200
- 97 -264 -74 36
- 88 -118 -64 11
- 37 -38 -46 28
+ 66 -17 -92 0
+ -346 186 -346 -232
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 170 -346 -83
+ -346 -346 -346 190
+ 91 -208 -65 33
+ 82 -103 -57 10
+ 34 -34 -41 25
diff --git a/profiles/fungi/MA0307.1.pwm b/profiles/fungi/MA0307.1.pwm
index e69de29..ed81766 100644
--- a/profiles/fungi/MA0307.1.pwm
+++ b/profiles/fungi/MA0307.1.pwm
@@ -0,0 +1,5 @@
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ 148 -346 -346 5
+ 121 -346 10 -92
diff --git a/profiles/fungi/MA0308.1.pwm b/profiles/fungi/MA0308.1.pwm
index e69de29..fc42a2a 100644
--- a/profiles/fungi/MA0308.1.pwm
+++ b/profiles/fungi/MA0308.1.pwm
@@ -0,0 +1,21 @@
+ 36 -26 -38 16
+ -62 -52 -12 79
+ -18 21 -55 36
+ 87 -96 -42 -12
+ 47 -30 -10 -20
+ 44 -76 17 -11
+ 116 -311 -337 64
+ 174 -393 -321 -101
+ 66 -58 -44 1
+ -456 184 -385 -174
+ -443 -48 -249 161
+ -456 195 -485 -393
+ -503 193 -297 -503
+ -503 -276 192 -485
+ -84 -444 174 -393
+ 148 -192 -33 -269
+ 21 -43 79 -144
+ -58 -52 -28 85
+ 57 -124 -10 22
+ -14 -55 25 29
+ 36 -23 -34 10
diff --git a/profiles/fungi/MA0309.1.pwm b/profiles/fungi/MA0309.1.pwm
index e69de29..b8a0d5e 100644
--- a/profiles/fungi/MA0309.1.pwm
+++ b/profiles/fungi/MA0309.1.pwm
@@ -0,0 +1,8 @@
+ -42 59 -261 66
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ 146 -126 -346 -42
+ -209 55 115 -347
+ 59 -42 10 -57
diff --git a/profiles/fungi/MA0310.1.pwm b/profiles/fungi/MA0310.1.pwm
index e69de29..0e74d38 100644
--- a/profiles/fungi/MA0310.1.pwm
+++ b/profiles/fungi/MA0310.1.pwm
@@ -0,0 +1,8 @@
+ -7 -171 108 -67
+ 136 33 -346 -346
+ -346 190 -346 -346
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ 10 -42 66 -74
diff --git a/profiles/fungi/MA0311.1.pwm b/profiles/fungi/MA0311.1.pwm
index 9c0e1fb..85603d6 100644
--- a/profiles/fungi/MA0311.1.pwm
+++ b/profiles/fungi/MA0311.1.pwm
@@ -1,5 +1,5 @@
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 132 -10000 58 -10000
+ -345 190 -345 -345
+ -345 -345 190 -345
+ -345 -345 190 -345
+ 190 -345 -345 -345
+ 124 -345 54 -345
diff --git a/profiles/fungi/MA0312.1.pwm b/profiles/fungi/MA0312.1.pwm
index e69de29..e1d2f78 100644
--- a/profiles/fungi/MA0312.1.pwm
+++ b/profiles/fungi/MA0312.1.pwm
@@ -0,0 +1,8 @@
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 173 -346 -103 -346
+ -187 5 101 -57
+ 96 -208 -208 66
+ -208 -208 -208 172
+ 111 -103 -103 -23
diff --git a/profiles/fungi/MA0312.2.pwm b/profiles/fungi/MA0312.2.pwm
index be6ce02..0f3a8aa 100644
--- a/profiles/fungi/MA0312.2.pwm
+++ b/profiles/fungi/MA0312.2.pwm
@@ -1,10 +1,10 @@
- 19 -181 58 10
- -22 -35 51 -11
- -381 197 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 95 -100 -181 36
- 115 -64 -122 -49
+ 17 -143 53 9
+ -19 -30 46 -9
+ -247 184 -308 -308
+ -308 187 -308 -308
+ -308 -308 187 -308
+ 187 -308 -308 -308
+ -308 -308 -308 187
+ 187 -308 -308 -308
+ 86 -84 -143 32
+ 105 -55 -101 -42
diff --git a/profiles/fungi/MA0313.1.pwm b/profiles/fungi/MA0313.1.pwm
index e69de29..c455256 100644
--- a/profiles/fungi/MA0313.1.pwm
+++ b/profiles/fungi/MA0313.1.pwm
@@ -0,0 +1,5 @@
+ -598 -598 -598 198
+ -598 -598 -416 197
+ -473 -598 197 -598
+ -598 -598 198 -545
+ -65 59 -288 78
diff --git a/profiles/fungi/MA0314.1.pwm b/profiles/fungi/MA0314.1.pwm
index e69de29..ecf7897 100644
--- a/profiles/fungi/MA0314.1.pwm
+++ b/profiles/fungi/MA0314.1.pwm
@@ -0,0 +1,15 @@
+ -574 -45 -39 131
+ -103 142 -133 -120
+ -575 -61 -575 173
+ -275 28 98 -60
+ 198 -569 -569 -569
+ -569 -569 -569 198
+ -569 -569 -569 198
+ -569 -569 198 -569
+ -569 -569 198 -569
+ -584 95 -584 102
+ -275 67 -83 77
+ 5 58 41 -283
+ 96 -145 30 -111
+ 51 -147 82 -114
+ 100 -38 -137 -24
diff --git a/profiles/fungi/MA0314.2.pwm b/profiles/fungi/MA0314.2.pwm
index e69de29..a6f5966 100644
--- a/profiles/fungi/MA0314.2.pwm
+++ b/profiles/fungi/MA0314.2.pwm
@@ -0,0 +1,12 @@
+ -143 -60 14 90
+ -91 102 -54 -41
+ -223 -68 -355 162
+ -275 -47 146 -143
+ 185 -309 -355 -247
+ -355 -355 -355 190
+ -355 -275 -355 188
+ -355 -309 189 -355
+ -355 -355 190 -355
+ -186 115 -223 37
+ -203 51 -60 75
+ -3 72 -13 -110
diff --git a/profiles/fungi/MA0316.1.pwm b/profiles/fungi/MA0316.1.pwm
index bec45e1..7ef23d6 100644
--- a/profiles/fungi/MA0316.1.pwm
+++ b/profiles/fungi/MA0316.1.pwm
@@ -1,15 +1,15 @@
- -78 -23 -9 70
- -243 83 97 -348
- -333 41 113 -139
- -47 -1 92 -133
- 63 30 -142 -23
- -312 -80 20 111
- -355 148 -76 -88
- -10000 -66 -10000 175
- -108 20 75 -52
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -215 192
- -143 -10000 186 -10000
- -156 -109 156 -202
- -10000 61 -10000 131
+ -76 -23 -9 69
+ -234 82 95 -327
+ -315 41 112 -136
+ -46 -1 91 -130
+ 62 30 -139 -23
+ -297 -78 20 110
+ -335 146 -75 -86
+ -608 -64 -608 174
+ -106 20 74 -51
+ 198 -599 -599 -599
+ -599 -599 -599 198
+ -599 -599 -207 190
+ -139 -600 184 -600
+ -151 -107 154 -195
+ -612 60 -612 130
diff --git a/profiles/fungi/MA0317.1.pwm b/profiles/fungi/MA0317.1.pwm
index a1c6c16..6be2787 100644
--- a/profiles/fungi/MA0317.1.pwm
+++ b/profiles/fungi/MA0317.1.pwm
@@ -1,8 +1,8 @@
- 103 -64 0 -164
- 11 -164 -264 129
- 141 34 -466 -466
- 193 -232 -10000 -10000
- 200 -10000 -10000 -10000
- -464 178 -10000 -94
- 191 -366 -366 -366
- 120 -54 -117 -82
+ 96 -57 0 -139
+ 10 -139 -208 121
+ 132 31 -299 -299
+ 183 -187 -346 -346
+ 190 -346 -346 -346
+ -297 169 -346 -83
+ 181 -262 -262 -262
+ 113 -48 -101 -72
diff --git a/profiles/fungi/MA0318.1.pwm b/profiles/fungi/MA0318.1.pwm
index e69de29..27821e3 100644
--- a/profiles/fungi/MA0318.1.pwm
+++ b/profiles/fungi/MA0318.1.pwm
@@ -0,0 +1,8 @@
+ -169 134 -169 -23
+ 104 -346 82 -346
+ -208 -346 -346 184
+ -346 -346 190 -346
+ -346 -346 -346 190
+ 180 -346 -346 -153
+ 171 -262 -262 -127
+ 63 -139 -139 76
diff --git a/profiles/fungi/MA0319.1.pwm b/profiles/fungi/MA0319.1.pwm
index 11e0350..5ec34d9 100644
--- a/profiles/fungi/MA0319.1.pwm
+++ b/profiles/fungi/MA0319.1.pwm
@@ -1,8 +1,8 @@
- 145 -96 -96 -207
- -366 -366 -366 191
- -40 -10000 170 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -206 116 -40 -40
- 96 -117 -11 -54
+ 137 -84 -84 -171
+ -262 -262 -262 181
+ -36 -346 160 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -169 109 -36 -36
+ 89 -101 -10 -48
diff --git a/profiles/fungi/MA0320.1.pwm b/profiles/fungi/MA0320.1.pwm
index 522e0cb..7d7fe7c 100644
--- a/profiles/fungi/MA0320.1.pwm
+++ b/profiles/fungi/MA0320.1.pwm
@@ -1,8 +1,8 @@
- -10000 200 -10000 -10000
- -10000 166 -26 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 144 10 -222
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -214 -10000 192 -10000
+ -425 194 -425 -425
+ -422 161 -25 -422
+ -425 -425 194 -425
+ -425 194 -425 -425
+ -415 139 10 -195
+ -425 -425 194 -425
+ 189 -342 -342 -342
+ -189 -416 186 -416
diff --git a/profiles/fungi/MA0321.1.pwm b/profiles/fungi/MA0321.1.pwm
index 0ce5e30..8c67a00 100644
--- a/profiles/fungi/MA0321.1.pwm
+++ b/profiles/fungi/MA0321.1.pwm
@@ -1,9 +1,9 @@
- -179 -110 167 -396
- -10000 200 -10000 -10000
- 190 -257 -10000 -338
- -10000 -81 -10000 178
- -324 -10000 196 -10000
- -238 -10000 -192 182
- -10000 -102 181 -10000
- 165 -149 -97 -10000
- 170 -437 -304 -78
+ -161 -101 161 -311
+ -431 194 -431 -431
+ 181 -208 -363 -256
+ -370 -73 -370 170
+ -271 -426 190 -426
+ -195 -363 -162 174
+ -431 -94 176 -431
+ 157 -131 -87 -374
+ 162 -299 -238 -70
diff --git a/profiles/fungi/MA0322.1.pwm b/profiles/fungi/MA0322.1.pwm
index e69de29..eacc8d9 100644
--- a/profiles/fungi/MA0322.1.pwm
+++ b/profiles/fungi/MA0322.1.pwm
@@ -0,0 +1,9 @@
+ -98 -37 137 -290
+ -422 183 -422 -157
+ 163 -138 -367 -115
+ -366 -366 -366 191
+ -237 -428 189 -428
+ -365 -365 -365 191
+ -172 -424 184 -424
+ 165 -217 -84 -372
+ 162 -216 -68 -371
diff --git a/profiles/fungi/MA0323.1.pwm b/profiles/fungi/MA0323.1.pwm
index e69de29..6695942 100644
--- a/profiles/fungi/MA0323.1.pwm
+++ b/profiles/fungi/MA0323.1.pwm
@@ -0,0 +1,15 @@
+ 190 -353 -353 -353
+ 153 -350 -350 -9
+ 36 -387 105 -81
+ -112 174 -418 -282
+ -6 155 -409 -409
+ -6 -409 155 -409
+ -97 -403 147 -61
+ 127 -376 53 -376
+ 153 -350 -350 -9
+ -437 -437 195 -437
+ -437 195 -437 -437
+ -117 -423 179 -423
+ -296 -432 192 -432
+ -389 -389 103 86
+ -423 -423 179 -117
diff --git a/profiles/fungi/MA0324.1.pwm b/profiles/fungi/MA0324.1.pwm
index e69de29..090e842 100644
--- a/profiles/fungi/MA0324.1.pwm
+++ b/profiles/fungi/MA0324.1.pwm
@@ -0,0 +1,10 @@
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -345 -345 110 74
+ -29 -346 45 79
+ 4 40 -347 65
+ 85 -92 -57 0
+ -346 121 59 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 33 136 -346
diff --git a/profiles/fungi/MA0325.1.pwm b/profiles/fungi/MA0325.1.pwm
index e69de29..313e63c 100644
--- a/profiles/fungi/MA0325.1.pwm
+++ b/profiles/fungi/MA0325.1.pwm
@@ -0,0 +1,8 @@
+ -24 89 -24 -115
+ -208 162 -114 -208
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -169 -346 -346 181
+ -84 -84 -155 135
diff --git a/profiles/fungi/MA0326.1.pwm b/profiles/fungi/MA0326.1.pwm
index e69de29..54708e9 100644
--- a/profiles/fungi/MA0326.1.pwm
+++ b/profiles/fungi/MA0326.1.pwm
@@ -0,0 +1,8 @@
+ -191 -542 -542 188
+ -218 -544 -97 170
+ -540 -540 -540 197
+ -181 -540 187 -540
+ -540 197 -540 -540
+ -540 -540 -540 197
+ -540 197 -540 -540
+ 113 -541 59 -184
diff --git a/profiles/fungi/MA0327.1.pwm b/profiles/fungi/MA0327.1.pwm
index 832ae58..ad31310 100644
--- a/profiles/fungi/MA0327.1.pwm
+++ b/profiles/fungi/MA0327.1.pwm
@@ -1,7 +1,7 @@
- 100 -10000 100 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
+ 95 -392 95 -392
+ -393 193 -393 -393
+ 193 -393 -393 -393
+ -393 193 -393 -393
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ -393 -393 -393 193
diff --git a/profiles/fungi/MA0328.1.pwm b/profiles/fungi/MA0328.1.pwm
index 3173ea3..eae03a6 100644
--- a/profiles/fungi/MA0328.1.pwm
+++ b/profiles/fungi/MA0328.1.pwm
@@ -1,9 +1,9 @@
- -10000 186 -10000 -146
- 171 -10000 -46 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 186 -10000 -10000 -146
- 171 -146 -10000 -146
- 54 -10000 -10000 135
- -10000 -10000 -10000 200
+ -211 160 -211 -97
+ 146 -211 -34 -211
+ -211 -211 -211 172
+ -211 -211 172 -211
+ -211 -211 -211 172
+ 160 -211 -211 -97
+ 146 -97 -211 -97
+ 43 -211 -211 113
+ -211 -211 -211 172
diff --git a/profiles/fungi/MA0328.2.pwm b/profiles/fungi/MA0328.2.pwm
index e69de29..dfa498b 100644
--- a/profiles/fungi/MA0328.2.pwm
+++ b/profiles/fungi/MA0328.2.pwm
@@ -0,0 +1,8 @@
+ -503 168 -503 -43
+ 84 -503 107 -385
+ -503 -188 -503 187
+ -293 -503 193 -503
+ -503 -503 -503 197
+ 183 -503 -393 -155
+ 133 -169 -240 -2
+ 64 -284 -503 118
diff --git a/profiles/fungi/MA0329.1.pwm b/profiles/fungi/MA0329.1.pwm
index e69de29..34488ad 100644
--- a/profiles/fungi/MA0329.1.pwm
+++ b/profiles/fungi/MA0329.1.pwm
@@ -0,0 +1,7 @@
+ 106 -114 -42 -50
+ -346 190 -346 -346
+ -65 -346 167 -346
+ -346 172 -346 -92
+ -346 -261 187 -346
+ 45 -50 -126 59
+ 38 25 -41 -41
diff --git a/profiles/fungi/MA0330.1.pwm b/profiles/fungi/MA0330.1.pwm
index d0f305f..949a0ac 100644
--- a/profiles/fungi/MA0330.1.pwm
+++ b/profiles/fungi/MA0330.1.pwm
@@ -1,7 +1,7 @@
- 143 -10000 -379 29
- -609 198 -579 -496
- -695 -493 198 -792
- -749 177 -489 -87
- -656 -493 198 -805
- -296 -192 -191 174
- -403 61 -275 118
+ 143 -723 -367 29
+ -555 197 -534 -470
+ -608 -467 198 -653
+ -636 176 -464 -86
+ -586 -467 198 -658
+ -290 -190 -188 173
+ -389 61 -270 117
diff --git a/profiles/fungi/MA0331.1.pwm b/profiles/fungi/MA0331.1.pwm
index e69de29..e66ec36 100644
--- a/profiles/fungi/MA0331.1.pwm
+++ b/profiles/fungi/MA0331.1.pwm
@@ -0,0 +1,12 @@
+ -102 171 -300 -313
+ -478 187 -686 -180
+ -43 54 -42 9
+ 65 -78 -16 -6
+ 115 -397 -239 61
+ -184 -370 -685 186
+ -162 7 -269 130
+ 75 -171 60 -99
+ -243 -581 192 -685
+ -455 -439 196 -622
+ 158 -183 -335 -67
+ 186 -301 -318 -277
diff --git a/profiles/fungi/MA0332.1.pwm b/profiles/fungi/MA0332.1.pwm
index e69de29..c3dc49b 100644
--- a/profiles/fungi/MA0332.1.pwm
+++ b/profiles/fungi/MA0332.1.pwm
@@ -0,0 +1,6 @@
+ -393 193 -393 -393
+ -393 -393 -393 193
+ -393 -393 193 -393
+ -393 -393 -393 193
+ -393 -393 193 -393
+ -393 -393 193 -393
diff --git a/profiles/fungi/MA0333.1.pwm b/profiles/fungi/MA0333.1.pwm
index 78f5414..b38c9ee 100644
--- a/profiles/fungi/MA0333.1.pwm
+++ b/profiles/fungi/MA0333.1.pwm
@@ -1,9 +1,9 @@
- 59 -134 59 -75
- -29 19 29 -29
- -85 -85 -49 112
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -131 -10000 148 -31
+ 55 -115 55 -67
+ -26 18 27 -26
+ -75 -75 -44 105
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -112 -345 139 -28
diff --git a/profiles/fungi/MA0334.1.pwm b/profiles/fungi/MA0334.1.pwm
index e69de29..7c4c59f 100644
--- a/profiles/fungi/MA0334.1.pwm
+++ b/profiles/fungi/MA0334.1.pwm
@@ -0,0 +1,7 @@
+ 41 82 -114 -114
+ -103 -187 153 -153
+ -345 190 -345 -345
+ -346 190 -346 -346
+ 181 -231 -345 -231
+ -346 188 -346 -298
+ 127 -65 -92 -126
diff --git a/profiles/fungi/MA0335.1.pwm b/profiles/fungi/MA0335.1.pwm
index e69de29..342c8df 100644
--- a/profiles/fungi/MA0335.1.pwm
+++ b/profiles/fungi/MA0335.1.pwm
@@ -0,0 +1,8 @@
+ 190 -354 -354 -354
+ 102 -9 -6 -383
+ -413 161 -413 -27
+ -354 -354 -354 190
+ -438 -438 195 -438
+ -354 -354 -354 190
+ -438 -438 195 -438
+ -438 -438 195 -438
diff --git a/profiles/fungi/MA0336.1.pwm b/profiles/fungi/MA0336.1.pwm
index 342e9ce..9ed91a0 100644
--- a/profiles/fungi/MA0336.1.pwm
+++ b/profiles/fungi/MA0336.1.pwm
@@ -1,21 +1,21 @@
- 62 -146 -28 35
- 29 -101 59 -36
- -6 10 35 -54
- 56 -55 29 -70
- 1 16 -36 13
- -110 -29 -12 84
- 166 -638 -33 -450
- -38 -118 -59 109
- 149 -34 -135 -696
- -564 -696 199 -696
- 199 -696 -638 -696
- 199 -696 -696 -564
- -438 171 -406 -68
- 176 -268 -160 -296
- -188 102 -183 51
- -30 -47 -35 75
- 27 50 -157 6
- 22 10 -136 45
- 82 -183 -12 4
- 82 -57 -125 19
- 46 24 -21 -79
+ 61 -138 -27 34
+ 28 -97 58 -35
+ -5 10 34 -52
+ 54 -52 29 -67
+ 1 16 -35 12
+ -105 -28 -11 82
+ 163 -456 -32 -377
+ -37 -113 -57 106
+ 146 -33 -128 -470
+ -432 -470 195 -470
+ 196 -470 -456 -470
+ 195 -470 -470 -432
+ -369 168 -349 -65
+ 173 -246 -152 -269
+ -176 99 -172 50
+ -29 -45 -34 73
+ 26 49 -149 6
+ 22 10 -130 44
+ 80 -172 -12 4
+ 80 -55 -119 19
+ 44 24 -20 -76
diff --git a/profiles/fungi/MA0337.1.pwm b/profiles/fungi/MA0337.1.pwm
index b726a61..401066b 100644
--- a/profiles/fungi/MA0337.1.pwm
+++ b/profiles/fungi/MA0337.1.pwm
@@ -1,7 +1,7 @@
- 36 49 -74 -47
- -464 196 -464 -464
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 88 -306 100 -464
- -231 120 28 -182
+ 33 45 -65 -42
+ -297 186 -297 -297
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 82 -232 93 -297
+ -186 113 25 -152
diff --git a/profiles/fungi/MA0338.1.pwm b/profiles/fungi/MA0338.1.pwm
index e69de29..7584545 100644
--- a/profiles/fungi/MA0338.1.pwm
+++ b/profiles/fungi/MA0338.1.pwm
@@ -0,0 +1,7 @@
+ -297 184 -261 -297
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 49 -103 99 -297
+ -189 152 -84 -171
+ 50 -4 -4 -64
diff --git a/profiles/fungi/MA0339.1.pwm b/profiles/fungi/MA0339.1.pwm
index 13a9c3e..3539d3b 100644
--- a/profiles/fungi/MA0339.1.pwm
+++ b/profiles/fungi/MA0339.1.pwm
@@ -1,7 +1,7 @@
- -466 196 -466 -466
- -10000 191 -10000 -206
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 73 -363 115 -463
- -232 146 -56 -147
- 71 -18 -12 -84
+ -299 186 -299 -299
+ -346 181 -346 -169
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 67 -260 108 -296
+ -187 138 -50 -126
+ 66 -17 -11 -74
diff --git a/profiles/fungi/MA0340.1.pwm b/profiles/fungi/MA0340.1.pwm
index 2c7088e..c615c99 100644
--- a/profiles/fungi/MA0340.1.pwm
+++ b/profiles/fungi/MA0340.1.pwm
@@ -1,6 +1,6 @@
- 42 42 -10000 42
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 100 -10000 100
- 200 -10000 -10000 -10000
+ 39 39 -392 39
+ 193 -393 -393 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ -393 95 -393 95
+ 193 -393 -393 -393
diff --git a/profiles/fungi/MA0341.1.pwm b/profiles/fungi/MA0341.1.pwm
index e69de29..fb711e3 100644
--- a/profiles/fungi/MA0341.1.pwm
+++ b/profiles/fungi/MA0341.1.pwm
@@ -0,0 +1,5 @@
+ 120 -152 34 -345
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
diff --git a/profiles/fungi/MA0342.1.pwm b/profiles/fungi/MA0342.1.pwm
index e69de29..d8a58de 100644
--- a/profiles/fungi/MA0342.1.pwm
+++ b/profiles/fungi/MA0342.1.pwm
@@ -0,0 +1,5 @@
+ 165 -345 -56 -345
+ -345 -345 190 -345
+ -345 -345 190 -345
+ -345 -345 190 -345
+ -346 -346 188 -298
diff --git a/profiles/fungi/MA0343.1.pwm b/profiles/fungi/MA0343.1.pwm
index 74c90d4..7518468 100644
--- a/profiles/fungi/MA0343.1.pwm
+++ b/profiles/fungi/MA0343.1.pwm
@@ -1,21 +1,21 @@
- 21 18 -108 31
- -34 15 -64 55
- -56 -23 -54 83
- -21 69 -83 -6
- -31 79 -50 -39
- -133 -113 99 22
- -41 -364 143 -111
- 83 95 -261 -306
- -438 193 -596 -288
- 191 -516 -247 -538
- -379 196 -538 -538
- 195 -596 -479 -364
- 196 -564 -406 -496
- 192 -638 -416 -275
- 152 -338 -8 -338
- 99 -49 -160 -5
- -102 134 -139 -74
- -97 40 82 -129
- 33 40 15 -168
- 53 -50 -12 -11
- 94 -38 -52 -69
+ 21 17 -103 30
+ -33 14 -62 53
+ -54 -22 -52 81
+ -21 68 -80 -6
+ -30 77 -49 -37
+ -127 -108 97 21
+ -40 -321 141 -106
+ 81 93 -240 -276
+ -369 189 -444 -262
+ 188 -411 -228 -421
+ -331 192 -421 -421
+ 192 -444 -393 -321
+ 193 -432 -349 -402
+ 189 -456 -356 -252
+ 149 -301 -8 -301
+ 97 -47 -152 -5
+ -97 131 -132 -71
+ -93 39 80 -123
+ 32 39 15 -158
+ 52 -48 -11 -11
+ 92 -36 -50 -67
diff --git a/profiles/fungi/MA0344.1.pwm b/profiles/fungi/MA0344.1.pwm
index d88f817..6e92d06 100644
--- a/profiles/fungi/MA0344.1.pwm
+++ b/profiles/fungi/MA0344.1.pwm
@@ -1,8 +1,8 @@
- -32 -132 126 -132
- -167 161 -167 -167
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 142 -167 -50 -167
+ -29 -114 118 -114
+ -141 152 -141 -141
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 133 -141 -45 -141
diff --git a/profiles/fungi/MA0347.1.pwm b/profiles/fungi/MA0347.1.pwm
index e69de29..d01df85 100644
--- a/profiles/fungi/MA0347.1.pwm
+++ b/profiles/fungi/MA0347.1.pwm
@@ -0,0 +1,20 @@
+ -45 68 -77 11
+ -4 -15 -32 40
+ 23 0 15 -48
+ 5 -6 7 -7
+ 73 -110 11 -32
+ -22 3 -137 79
+ 85 95 -393 -226
+ 191 -456 -255 -503
+ -470 -485 196 -444
+ -470 -485 196 -470
+ -377 -503 195 -485
+ -171 -377 -470 184
+ -443 186 -470 -186
+ -456 168 -456 -51
+ 99 -144 -246 55
+ -2 -29 -6 31
+ -96 27 11 27
+ -15 -178 111 -63
+ -27 67 -12 -59
+ 37 -52 -10 11
diff --git a/profiles/fungi/MA0347.2.pwm b/profiles/fungi/MA0347.2.pwm
index 7f15928..5624c95 100644
--- a/profiles/fungi/MA0347.2.pwm
+++ b/profiles/fungi/MA0347.2.pwm
@@ -1,13 +1,13 @@
- 22 -78 0 32
- 50 -13 -78 12
- 117 50 -358 -200
- 191 -258 -358 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -78 -158 -358 158
- -10000 184 -358 -158
- -10000 184 -258 -200
- 50 -258 12 42
- 0 -26 -126 81
- -13 -100 -126 112
+ 20 -65 0 29
+ 45 -11 -65 10
+ 107 45 -233 -154
+ 177 -188 -233 -299
+ -299 -299 186 -299
+ -299 -299 186 -299
+ -299 -299 186 -299
+ -65 -126 -233 146
+ -299 170 -233 -126
+ -299 170 -188 -154
+ 45 -188 10 37
+ 0 -23 -103 73
+ -11 -83 -103 101
diff --git a/profiles/fungi/MA0348.1.pwm b/profiles/fungi/MA0348.1.pwm
index e69de29..e6d463c 100644
--- a/profiles/fungi/MA0348.1.pwm
+++ b/profiles/fungi/MA0348.1.pwm
@@ -0,0 +1,9 @@
+ -103 33 -103 82
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 110 -345 74 -345
+ -153 -346 169 -153
+ 135 -209 -209 -1
+ -72 -152 -152 143
+ 112 -71 -71 -71
diff --git a/profiles/fungi/MA0349.1.pwm b/profiles/fungi/MA0349.1.pwm
index 5cd9583..42d0fc8 100644
--- a/profiles/fungi/MA0349.1.pwm
+++ b/profiles/fungi/MA0349.1.pwm
@@ -1,7 +1,7 @@
- -69 99 -38 -69
- -10000 -10000 200 -10000
- 198 -439 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 12 10 70 -218
+ -63 95 -35 -63
+ -429 -429 194 -429
+ 189 -299 -360 -360
+ 191 -361 -361 -361
+ -423 194 -423 -423
+ -426 194 -426 -426
+ 11 9 66 -188
diff --git a/profiles/fungi/MA0350.1.pwm b/profiles/fungi/MA0350.1.pwm
index c0ba3a4..88f88c9 100644
--- a/profiles/fungi/MA0350.1.pwm
+++ b/profiles/fungi/MA0350.1.pwm
@@ -1,21 +1,21 @@
- 54 -41 -19 -12
- -79 -23 56 13
- -130 7 57 9
- -6 39 -28 -14
- 56 -110 -9 16
- -24 55 -91 21
- 138 -232 -138 -30
- -190 67 81 -135
- -364 165 -37 -796
- -696 -310 -244 188
- -696 199 -696 -638
- 197 -10000 -796 -357
- -796 -796 -379 197
- -10000 197 -796 -379
- -226 -371 180 -213
- -89 139 -42 -350
- -46 26 62 -89
- -11 18 -120 59
- -42 16 -117 75
- 29 -23 -54 30
- -31 -73 36 39
+ 52 -39 -19 -11
+ -76 -22 55 12
+ -124 6 55 9
+ -6 38 -27 -14
+ 55 -105 -8 15
+ -23 54 -87 20
+ 135 -215 -131 -29
+ -178 65 79 -128
+ -321 162 -36 -485
+ -470 -280 -226 185
+ -470 196 -470 -456
+ 193 -502 -485 -315
+ -485 -485 -331 194
+ -502 194 -485 -331
+ -210 -326 177 -199
+ -85 136 -41 -311
+ -45 26 60 -85
+ -10 17 -114 58
+ -40 16 -112 74
+ 28 -22 -52 29
+ -30 -71 35 38
diff --git a/profiles/fungi/MA0351.1.pwm b/profiles/fungi/MA0351.1.pwm
index e69de29..ecb9765 100644
--- a/profiles/fungi/MA0351.1.pwm
+++ b/profiles/fungi/MA0351.1.pwm
@@ -0,0 +1,21 @@
+ 15 -85 -11 49
+ -35 0 9 20
+ -65 40 -16 20
+ -89 0 10 48
+ -6 -147 67 13
+ -79 92 -75 -10
+ 103 -194 -82 19
+ -157 73 64 -116
+ -280 159 -33 -456
+ -421 -210 -150 175
+ -485 196 -443 -470
+ 193 -503 -485 -297
+ -485 -502 -288 193
+ -502 192 -485 -284
+ -255 -393 178 -158
+ -16 118 -48 -310
+ 16 8 1 -30
+ -40 25 -169 80
+ -59 78 -25 -36
+ -68 56 -43 21
+ -42 -71 -29 87
diff --git a/profiles/fungi/MA0352.1.pwm b/profiles/fungi/MA0352.1.pwm
index 637762a..ac08e9d 100644
--- a/profiles/fungi/MA0352.1.pwm
+++ b/profiles/fungi/MA0352.1.pwm
@@ -1,8 +1,8 @@
- -163 18 -72 96
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -94 -10000 180 -10000
- -364 182 -164 -364
- -164 -364 182 -364
- -131 -304 175 -304
- 131 -164 -18 -164
+ -138 16 -64 89
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -83 -346 170 -346
+ -261 172 -139 -261
+ -139 -261 172 -261
+ -112 -231 165 -231
+ 123 -139 -17 -139
diff --git a/profiles/fungi/MA0352.2.pwm b/profiles/fungi/MA0352.2.pwm
index ecd6788..0b2ac39 100644
--- a/profiles/fungi/MA0352.2.pwm
+++ b/profiles/fungi/MA0352.2.pwm
@@ -1,14 +1,14 @@
- -31 38 0 -17
- -31 -17 4 35
- -100 -117 -258 153
- -417 -200 -10000 189
- -517 196 -10000 -358
- -236 185 -358 -317
- 100 -517 96 -517
- -10000 187 -10000 -158
- -417 -517 194 -358
- -517 -517 198 -10000
- 187 -517 -236 -317
- 154 -217 -92 -158
- 22 8 4 -42
- 32 -31 22 -36
+ -29 36 0 -16
+ -29 -16 4 33
+ -89 -104 -212 146
+ -296 -170 -370 180
+ -329 187 -370 -270
+ -196 177 -270 -248
+ 94 -329 90 -329
+ -370 179 -370 -138
+ -296 -329 185 -270
+ -329 -329 189 -370
+ 179 -329 -196 -248
+ 147 -183 -83 -138
+ 21 7 4 -38
+ 30 -29 21 -33
diff --git a/profiles/fungi/MA0353.1.pwm b/profiles/fungi/MA0353.1.pwm
index c6ac6e7..a9f8bd7 100644
--- a/profiles/fungi/MA0353.1.pwm
+++ b/profiles/fungi/MA0353.1.pwm
@@ -1,8 +1,8 @@
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
+ -393 -393 -393 193
+ -393 193 -393 -393
+ -393 193 -393 -393
+ -393 -393 193 -393
+ -393 193 -393 -393
+ -393 -393 193 -393
+ -393 -393 193 -393
+ 193 -393 -393 -393
diff --git a/profiles/fungi/MA0354.1.pwm b/profiles/fungi/MA0354.1.pwm
index e69de29..9a55fdb 100644
--- a/profiles/fungi/MA0354.1.pwm
+++ b/profiles/fungi/MA0354.1.pwm
@@ -0,0 +1,8 @@
+ 57 -64 57 -138
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -140 -140 166 -347
+ 190 -346 -346 -346
+ -83 -169 -169 149
diff --git a/profiles/fungi/MA0355.1.pwm b/profiles/fungi/MA0355.1.pwm
index 1a66d94..31eda91 100644
--- a/profiles/fungi/MA0355.1.pwm
+++ b/profiles/fungi/MA0355.1.pwm
@@ -1,10 +1,10 @@
- 53 11 -40 -47
- -146 80 66 -163
- 58 83 -72 -304
- -10000 -131 -10000 185
- -10000 -10000 200 -10000
- -10000 199 -10000 -464
- 186 -464 -184 -464
- -164 -18 53 44
- -18 75 -18 -84
- 36 16 -25 -40
+ 49 10 -36 -42
+ -124 74 61 -138
+ 54 77 -64 -231
+ -345 -112 -345 175
+ -345 -345 190 -345
+ -346 188 -346 -298
+ 177 -298 -153 -298
+ -139 -17 49 41
+ -17 69 -17 -74
+ 33 15 -23 -36
diff --git a/profiles/fungi/MA0356.1.pwm b/profiles/fungi/MA0356.1.pwm
index e69de29..5667549 100644
--- a/profiles/fungi/MA0356.1.pwm
+++ b/profiles/fungi/MA0356.1.pwm
@@ -0,0 +1,6 @@
+ 97 -347 -140 65
+ -92 -346 -346 172
+ 190 -346 -346 -346
+ 109 -346 -346 76
+ -11 -346 -346 153
+ 125 -346 -346 52
diff --git a/profiles/fungi/MA0357.1.pwm b/profiles/fungi/MA0357.1.pwm
index f5b4966..7fe5a77 100644
--- a/profiles/fungi/MA0357.1.pwm
+++ b/profiles/fungi/MA0357.1.pwm
@@ -1,8 +1,8 @@
- -141 66 102 -596
- -136 185 -10000 -796
- 195 -796 -316 -696
- -10000 187 -796 -155
- -155 -796 187 -10000
- -696 -316 -796 195
- -796 -10000 185 -136
- -596 102 66 -141
+ -134 64 100 -444
+ -130 182 -503 -485
+ 192 -485 -284 -470
+ -503 184 -485 -147
+ -147 -485 184 -503
+ -470 -284 -485 192
+ -485 -503 182 -130
+ -444 100 64 -134
diff --git a/profiles/fungi/MA0358.1.pwm b/profiles/fungi/MA0358.1.pwm
index 9cd3083..d74c588 100644
--- a/profiles/fungi/MA0358.1.pwm
+++ b/profiles/fungi/MA0358.1.pwm
@@ -1,8 +1,8 @@
- -146 154 -146 -146
- -364 185 -364 -206
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 104 -75 -41 -75
- 87 -96 -57 -1
+ -124 145 -124 -124
+ -261 175 -261 -169
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 97 -67 -37 -67
+ 81 -84 -51 -1
diff --git a/profiles/fungi/MA0359.1.pwm b/profiles/fungi/MA0359.1.pwm
index d3da189..351c8fe 100644
--- a/profiles/fungi/MA0359.1.pwm
+++ b/profiles/fungi/MA0359.1.pwm
@@ -1,10 +1,10 @@
- -47 146 -106 -464
- 199 -10000 -10000 -463
- -463 160 -10000 -11
- -464 196 -464 -464
- -464 185 -10000 -147
- 151 -10000 11 -364
- -57 -120 -166 136
- 153 -10000 -84 -84
- -464 197 -10000 -464
- 178 -94 -10000 -464
+ -42 138 -92 -297
+ 188 -345 -345 -296
+ -296 151 -345 -10
+ -297 186 -297 -297
+ -297 175 -346 -126
+ 142 -346 10 -261
+ -51 -104 -140 128
+ 144 -346 -74 -74
+ -297 187 -346 -297
+ 169 -83 -346 -297
diff --git a/profiles/fungi/MA0359.2.pwm b/profiles/fungi/MA0359.2.pwm
index e69de29..ba5ed96 100644
--- a/profiles/fungi/MA0359.2.pwm
+++ b/profiles/fungi/MA0359.2.pwm
@@ -0,0 +1,15 @@
+ 25 -204 65 0
+ 121 -260 31 -179
+ -355 -337 -102 173
+ -337 -321 186 -260
+ -233 -149 -337 174
+ 130 -113 -67 -116
+ -271 -60 -427 165
+ -307 -427 190 -355
+ -427 -427 186 -197
+ -75 -321 169 -375
+ -399 -321 -375 191
+ -355 -197 160 -67
+ -149 -75 -163 145
+ 77 -174 -29 24
+ 32 -70 -50 51
diff --git a/profiles/fungi/MA0360.1.pwm b/profiles/fungi/MA0360.1.pwm
index e69de29..5553a01 100644
--- a/profiles/fungi/MA0360.1.pwm
+++ b/profiles/fungi/MA0360.1.pwm
@@ -0,0 +1,8 @@
+ -1 -104 -104 103
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 169 -346 -346 -74
+ 9 86 -84 -84
diff --git a/profiles/fungi/MA0361.1.pwm b/profiles/fungi/MA0361.1.pwm
index e69de29..a54a62c 100644
--- a/profiles/fungi/MA0361.1.pwm
+++ b/profiles/fungi/MA0361.1.pwm
@@ -0,0 +1,7 @@
+ -297 177 -297 -153
+ -346 -103 173 -346
+ -346 -346 190 -346
+ -346 165 -57 -346
+ -346 183 -187 -346
+ -346 -103 173 -346
+ 31 31 31 -189
diff --git a/profiles/fungi/MA0362.1.pwm b/profiles/fungi/MA0362.1.pwm
index 285319e..67df0b9 100644
--- a/profiles/fungi/MA0362.1.pwm
+++ b/profiles/fungi/MA0362.1.pwm
@@ -1,7 +1,7 @@
- 46 66 -46 -163
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -106 -464 178 -464
- -57 -185 147 -185
+ 42 61 -41 -138
+ -346 -346 -346 190
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -92 -297 169 -297
+ -51 -155 139 -155
diff --git a/profiles/fungi/MA0363.1.pwm b/profiles/fungi/MA0363.1.pwm
index ed9525f..7196ee6 100644
--- a/profiles/fungi/MA0363.1.pwm
+++ b/profiles/fungi/MA0363.1.pwm
@@ -1,9 +1,9 @@
- 26 -132 100 -132
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 126 68
- -74 -74 114 -74
+ 24 -114 93 -114
+ -346 -346 -346 190
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -346 118 63
+ -65 -65 106 -65
diff --git a/profiles/fungi/MA0363.2.pwm b/profiles/fungi/MA0363.2.pwm
index cd5b00b..405f001 100644
--- a/profiles/fungi/MA0363.2.pwm
+++ b/profiles/fungi/MA0363.2.pwm
@@ -1,15 +1,15 @@
- 30 -60 -66 57
- -12 -5 -24 34
- -101 4 -61 87
- 70 -113 70 -179
- -443 -311 -511 193
- -263 -263 -463 186
- 197 -743 -585 -443
- -643 199 -643 -585
- -543 198 -511 -743
- -585 198 -585 -543
- -397 -511 174 -83
- -73 -38 113 -117
- 78 50 -157 -89
- -38 4 -55 60
- 11 -59 -23 49
+ 29 -57 -63 55
+ -12 -5 -23 33
+ -95 3 -58 84
+ 68 -107 68 -166
+ -362 -275 -395 189
+ -237 -237 -372 182
+ 193 -457 -423 -362
+ -439 195 -439 -423
+ -408 194 -395 -457
+ -423 194 -423 -408
+ -335 -395 170 -79
+ -70 -36 110 -110
+ 75 48 -147 -85
+ -36 4 -53 58
+ 10 -56 -22 48
diff --git a/profiles/fungi/MA0364.1.pwm b/profiles/fungi/MA0364.1.pwm
index e9d79f1..ee0747f 100644
--- a/profiles/fungi/MA0364.1.pwm
+++ b/profiles/fungi/MA0364.1.pwm
@@ -1,7 +1,7 @@
- -10000 193 -10000 -232
- -232 193 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 193 -232
- 116 -164 -12 -94
+ -346 183 -346 -187
+ -187 183 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -346 -346 190
+ -346 -346 183 -187
+ 109 -139 -11 -83
diff --git a/profiles/fungi/MA0365.1.pwm b/profiles/fungi/MA0365.1.pwm
index ce06bb0..a974553 100644
--- a/profiles/fungi/MA0365.1.pwm
+++ b/profiles/fungi/MA0365.1.pwm
@@ -1,8 +1,8 @@
- -106 11 75 -40
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 31 -10000 146 -10000
- -10000 200 -10000 -10000
- -364 94 -364 94
- 182 -264 -264 -264
+ -92 10 69 -36
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 -346 190
+ 28 -346 138 -346
+ -346 190 -346 -346
+ -261 88 -261 88
+ 172 -208 -208 -208
diff --git a/profiles/fungi/MA0366.1.pwm b/profiles/fungi/MA0366.1.pwm
index 55bbc9f..6b977d9 100644
--- a/profiles/fungi/MA0366.1.pwm
+++ b/profiles/fungi/MA0366.1.pwm
@@ -1,5 +1,5 @@
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -118 -106 162 -10000
+ 190 -346 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -103 -92 153 -346
diff --git a/profiles/fungi/MA0367.1.pwm b/profiles/fungi/MA0367.1.pwm
index e69de29..1598024 100644
--- a/profiles/fungi/MA0367.1.pwm
+++ b/profiles/fungi/MA0367.1.pwm
@@ -0,0 +1,11 @@
+ 69 -83 -11 -17
+ 41 -114 41 -17
+ 52 -346 -346 125
+ -18 -262 -347 152
+ 10 -65 -50 66
+ 24 -42 -208 88
+ -346 -92 -346 172
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -209 -347 172 -140
+ 33 -83 37 -17
diff --git a/profiles/fungi/MA0368.1.pwm b/profiles/fungi/MA0368.1.pwm
index e69de29..39d56dd 100644
--- a/profiles/fungi/MA0368.1.pwm
+++ b/profiles/fungi/MA0368.1.pwm
@@ -0,0 +1,7 @@
+ -126 73 -126 59
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -346 -346 190 -346
diff --git a/profiles/fungi/MA0369.1.pwm b/profiles/fungi/MA0369.1.pwm
index e69de29..a1f4c37 100644
--- a/profiles/fungi/MA0369.1.pwm
+++ b/profiles/fungi/MA0369.1.pwm
@@ -0,0 +1,18 @@
+ 6 6 6 -21
+ 37 -175 54 -6
+ 6 -291 -221 138
+ -291 -291 -87 167
+ -291 185 -291 -291
+ -291 -291 -291 185
+ 185 -291 -291 -291
+ 54 -291 -291 119
+ 96 -291 -291 84
+ 102 -291 -291 77
+ 147 -291 -291 -6
+ -291 -291 -291 185
+ 185 -291 -291 -291
+ -291 -291 185 -291
+ 124 37 -291 -221
+ -108 49 -172 87
+ -49 54 -139 54
+ 0 33 0 -43
diff --git a/profiles/fungi/MA0370.1.pwm b/profiles/fungi/MA0370.1.pwm
index e69de29..e1e447c 100644
--- a/profiles/fungi/MA0370.1.pwm
+++ b/profiles/fungi/MA0370.1.pwm
@@ -0,0 +1,10 @@
+ -380 17 -380 145
+ -155 80 -64 35
+ -160 80 -17 5
+ 191 -362 -362 -362
+ 143 -369 -58 -83
+ 163 -50 -370 -306
+ -122 -433 180 -433
+ -88 -429 175 -429
+ 92 -25 -39 -98
+ 155 -365 -97 -104
diff --git a/profiles/fungi/MA0371.1.pwm b/profiles/fungi/MA0371.1.pwm
index e69de29..60e56aa 100644
--- a/profiles/fungi/MA0371.1.pwm
+++ b/profiles/fungi/MA0371.1.pwm
@@ -0,0 +1,12 @@
+ -194 80 -194 80
+ -194 131 -194 0
+ 0 80 -194 0
+ 151 -67 -194 -194
+ -194 -194 -194 169
+ -194 -194 -67 151
+ -194 -194 169 -194
+ -194 -194 -194 169
+ -194 -194 -194 169
+ -194 108 -67 0
+ -67 -194 -67 131
+ -194 108 0 -67
diff --git a/profiles/fungi/MA0372.1.pwm b/profiles/fungi/MA0372.1.pwm
index 8d876b0..23d88c5 100644
--- a/profiles/fungi/MA0372.1.pwm
+++ b/profiles/fungi/MA0372.1.pwm
@@ -1,8 +1,8 @@
- 108 -84 -84 -40
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- 135 -463 -182 18
- 155 -185 -185 -96
+ 101 -74 -74 -36
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -346 -346 190
+ 127 -296 -152 16
+ 146 -155 -155 -84
diff --git a/profiles/fungi/MA0373.1.pwm b/profiles/fungi/MA0373.1.pwm
index 02c2b7e..318a694 100644
--- a/profiles/fungi/MA0373.1.pwm
+++ b/profiles/fungi/MA0373.1.pwm
@@ -1,7 +1,7 @@
- -11 -10000 144 -146
- -10000 -10000 200 -10000
- -10000 -10000 -106 182
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -94 -10000 180 -10000
+ -10 -345 135 -124
+ -346 -346 190 -346
+ -346 -346 -92 172
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -83 -346 170 -346
diff --git a/profiles/fungi/MA0374.1.pwm b/profiles/fungi/MA0374.1.pwm
index 19920c3..6c813a4 100644
--- a/profiles/fungi/MA0374.1.pwm
+++ b/profiles/fungi/MA0374.1.pwm
@@ -1,7 +1,7 @@
- -10000 186 -232 -264
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -204 115 -46 -31
- -40 26 57 -84
- -13 4 43 -49
+ -346 177 -188 -208
+ -345 -345 190 -345
+ -345 190 -345 -345
+ -345 -345 190 -345
+ -168 108 -41 -28
+ -36 24 52 -74
+ -12 4 40 -44
diff --git a/profiles/fungi/MA0375.1.pwm b/profiles/fungi/MA0375.1.pwm
index e6e5107..7287028 100644
--- a/profiles/fungi/MA0375.1.pwm
+++ b/profiles/fungi/MA0375.1.pwm
@@ -1,8 +1,8 @@
- -40 100 -40 -106
- -72 62 89 -10000
- -10000 188 -164 -10000
- -10000 -164 188 -10000
- -10000 188 -164 -10000
- -10000 -10000 200 -10000
- -10000 177 -74 -10000
- -10000 31 146 -10000
+ -36 93 -36 -92
+ -64 57 83 -345
+ -346 178 -139 -346
+ -346 -139 178 -346
+ -346 178 -139 -346
+ -346 -346 190 -346
+ -346 167 -65 -346
+ -346 28 138 -346
diff --git a/profiles/fungi/MA0376.1.pwm b/profiles/fungi/MA0376.1.pwm
index e69de29..c42dfb1 100644
--- a/profiles/fungi/MA0376.1.pwm
+++ b/profiles/fungi/MA0376.1.pwm
@@ -0,0 +1,20 @@
+ 64 -75 39 -90
+ -18 -73 9 53
+ 50 36 -26 -110
+ -58 -49 23 53
+ -65 -100 0 90
+ 107 -109 -29 -72
+ -262 -288 138 14
+ -326 190 -326 -411
+ 183 -432 -153 -411
+ -432 189 -343 -284
+ -284 -343 189 -432
+ -411 -153 -432 183
+ -411 -326 190 -326
+ 14 138 -288 -262
+ -69 40 -65 51
+ -111 11 -40 77
+ 66 -99 14 -29
+ 13 4 24 -53
+ 36 -57 -265 91
+ 0 65 -115 -3
diff --git a/profiles/fungi/MA0377.1.pwm b/profiles/fungi/MA0377.1.pwm
index e69de29..a31fe85 100644
--- a/profiles/fungi/MA0377.1.pwm
+++ b/profiles/fungi/MA0377.1.pwm
@@ -0,0 +1,21 @@
+ 12 -43 -90 71
+ 55 7 -96 -3
+ 17 -3 40 -79
+ 60 3 -104 -3
+ 32 -128 47 -7
+ 54 -17 -32 -23
+ 151 -277 -97 -103
+ -93 -47 -115 120
+ 100 6 -14 -421
+ -331 -385 191 -385
+ 190 -343 -432 -315
+ 191 -393 -315 -393
+ -311 -223 166 -98
+ 128 -91 -19 -255
+ 123 -86 -255 -10
+ 108 -17 -220 -35
+ 4 -65 -74 80
+ 96 -131 -19 -36
+ 77 -178 -127 67
+ 55 -98 -74 52
+ 70 -100 -169 65
diff --git a/profiles/fungi/MA0378.1.pwm b/profiles/fungi/MA0378.1.pwm
index e69de29..ba468d5 100644
--- a/profiles/fungi/MA0378.1.pwm
+++ b/profiles/fungi/MA0378.1.pwm
@@ -0,0 +1,21 @@
+ 76 -62 -61 0
+ -29 23 -35 30
+ 21 -50 -36 45
+ 0 -19 23 -7
+ 49 -160 24 12
+ 107 -237 44 -152
+ 162 -167 -171 -167
+ 182 -255 -226 -331
+ 182 -393 -215 -259
+ 175 -355 -237 -145
+ 109 -262 -343 69
+ -145 -237 -355 175
+ -259 -215 -393 182
+ -331 -226 -255 182
+ -167 -171 -167 162
+ -94 68 -138 58
+ -152 49 -121 86
+ 38 -30 -58 28
+ -107 76 -67 26
+ -19 -150 57 37
+ -20 -54 68 -25
diff --git a/profiles/fungi/MA0379.1.pwm b/profiles/fungi/MA0379.1.pwm
index e69de29..22bbc2a 100644
--- a/profiles/fungi/MA0379.1.pwm
+++ b/profiles/fungi/MA0379.1.pwm
@@ -0,0 +1,5 @@
+ 180 -261 -346 -188
+ -345 -345 -345 190
+ 190 -345 -345 -345
+ -345 -345 -345 190
+ 190 -345 -345 -345
diff --git a/profiles/fungi/MA0380.1.pwm b/profiles/fungi/MA0380.1.pwm
index 4830353..5cb0a1d 100644
--- a/profiles/fungi/MA0380.1.pwm
+++ b/profiles/fungi/MA0380.1.pwm
@@ -1,7 +1,7 @@
- -166 93 -96 34
- -10000 11 -10000 155
- -10000 199 -10000 -464
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -12 -10000 133 -84
- 122 -61 3 -10000
+ -140 86 -84 31
+ -346 10 -346 146
+ -346 188 -346 -297
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -11 -346 125 -74
+ 114 -55 3 -343
diff --git a/profiles/fungi/MA0381.1.pwm b/profiles/fungi/MA0381.1.pwm
index 3c8aaf2..eae610a 100644
--- a/profiles/fungi/MA0381.1.pwm
+++ b/profiles/fungi/MA0381.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 175 -64 -10000
- 96 -75 55 -10000
- -24 -46 18 37
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 165 -57 -346
+ 89 -67 51 -347
+ -21 -41 16 34
diff --git a/profiles/fungi/MA0382.1.pwm b/profiles/fungi/MA0382.1.pwm
index 0f49d56..5f32aec 100644
--- a/profiles/fungi/MA0382.1.pwm
+++ b/profiles/fungi/MA0382.1.pwm
@@ -1,8 +1,8 @@
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -132 -10000 185 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 131 -10000 -10000 61
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
+ 197 -499 -499 -499
+ -499 197 -499 -499
+ -125 -505 182 -505
+ -499 -499 -499 197
+ 197 -499 -499 -499
+ 128 -499 -499 59
+ -499 -499 -499 197
+ -499 -499 197 -499
diff --git a/profiles/fungi/MA0382.2.pwm b/profiles/fungi/MA0382.2.pwm
index 228f212..7a11644 100644
--- a/profiles/fungi/MA0382.2.pwm
+++ b/profiles/fungi/MA0382.2.pwm
@@ -1,17 +1,17 @@
- 38 -81 -31 40
- 17 -13 -31 21
- -11 40 -74 21
- 48 -167 48 -15
- 187 -348 -248 -374
- -448 -448 -10000 197
- -448 -10000 165 -28
- 198 -606 -506 -10000
- -10000 194 -10000 -260
- -506 -10000 198 -506
- -289 -306 -506 189
- 148 1 -374 -289
- 148 -306 -148 -45
- -51 -174 -74 126
- -11 -36 -67 73
- -11 -115 43 35
- 30 -60 -11 24
+ 36 -75 -29 38
+ 16 -12 -29 19
+ -10 38 -68 19
+ 45 -150 45 -14
+ 181 -281 -214 -296
+ -332 -332 -412 190
+ -332 -412 159 -26
+ 192 -380 -354 -412
+ -412 188 -412 -223
+ -354 -412 191 -354
+ -244 -255 -354 183
+ 142 1 -296 -244
+ 142 -255 -133 -42
+ -47 -156 -68 121
+ -10 -34 -62 70
+ -10 -106 41 33
+ 28 -56 -10 23
diff --git a/profiles/fungi/MA0384.1.pwm b/profiles/fungi/MA0384.1.pwm
index e69de29..156789c 100644
--- a/profiles/fungi/MA0384.1.pwm
+++ b/profiles/fungi/MA0384.1.pwm
@@ -0,0 +1,11 @@
+ -586 -299 -132 179
+ -582 -582 198 -582
+ 72 -161 101 -593
+ -582 -582 -582 198
+ 196 -583 -403 -583
+ -524 -582 198 -582
+ -582 198 -582 -582
+ -582 -582 198 -582
+ -518 194 -317 -583
+ -213 190 -582 -582
+ 14 -183 95 -53
diff --git a/profiles/fungi/MA0385.1.pwm b/profiles/fungi/MA0385.1.pwm
index e69de29..be38e3e 100644
--- a/profiles/fungi/MA0385.1.pwm
+++ b/profiles/fungi/MA0385.1.pwm
@@ -0,0 +1,11 @@
+ 92 -37 -58 -58
+ -65 91 -42 -42
+ 66 85 -126 -232
+ -208 -297 -208 177
+ -208 -297 181 -297
+ -208 177 -297 -208
+ 186 -297 -297 -297
+ -187 -187 93 63
+ -50 -23 99 -114
+ 15 33 -17 -42
+ 25 -10 -10 -10
diff --git a/profiles/fungi/MA0386.1.pwm b/profiles/fungi/MA0386.1.pwm
index e69de29..8b1f7be 100644
--- a/profiles/fungi/MA0386.1.pwm
+++ b/profiles/fungi/MA0386.1.pwm
@@ -0,0 +1,21 @@
+ 15 0 62 -148
+ 42 -37 -73 36
+ 2 45 -143 32
+ -62 -31 -67 93
+ 110 -81 -67 -62
+ -107 -128 146 -149
+ 20 -32 9 -1
+ 40 -113 -288 106
+ 183 -411 -297 -194
+ -369 -411 -306 190
+ 194 -470 -444 -369
+ -249 -485 -432 190
+ 193 -470 -421 -321
+ -231 -444 -456 189
+ 179 -385 -301 -153
+ -41 -188 -134 137
+ 8 -99 -91 93
+ -83 59 55 -110
+ 9 -13 61 -100
+ 47 -49 -52 26
+ -1 -36 11 19
diff --git a/profiles/fungi/MA0387.1.pwm b/profiles/fungi/MA0387.1.pwm
index e69de29..b64ec74 100644
--- a/profiles/fungi/MA0387.1.pwm
+++ b/profiles/fungi/MA0387.1.pwm
@@ -0,0 +1,10 @@
+ 124 -367 -275 50
+ 52 -3 -166 34
+ -370 -370 -370 191
+ -253 -366 -366 188
+ 143 -388 22 -388
+ 129 -94 -4 -392
+ 62 31 18 -339
+ -404 -404 98 94
+ 191 -370 -370 -370
+ 129 -393 50 -393
diff --git a/profiles/fungi/MA0388.1.pwm b/profiles/fungi/MA0388.1.pwm
index 125ea7f..42ff599 100644
--- a/profiles/fungi/MA0388.1.pwm
+++ b/profiles/fungi/MA0388.1.pwm
@@ -1,8 +1,8 @@
- 83 -10000 115 -10000
- 200 -10000 -10000 -10000
- 178 -10000 -92 -438
- 177 -10000 -10000 -77
- -543 -26 -10000 165
- -10000 114 9 -45
- 127 -27 -131 -148
- 195 -10000 -276 -10000
+ 79 -407 111 -407
+ 191 -368 -368 -368
+ 170 -374 -83 -307
+ 169 -366 -366 -69
+ -340 -24 -378 158
+ -429 110 9 -42
+ 121 -25 -117 -131
+ 186 -371 -223 -371
diff --git a/profiles/fungi/MA0389.1.pwm b/profiles/fungi/MA0389.1.pwm
index bd5084b..f836883 100644
--- a/profiles/fungi/MA0389.1.pwm
+++ b/profiles/fungi/MA0389.1.pwm
@@ -1,8 +1,8 @@
- 140 -147 -40 -206
- -206 -364 185 -364
- 196 -10000 -10000 -306
- -94 -10000 -364 177
- -10000 200 -10000 -10000
- -264 -40 -306 157
- 88 26 -94 -118
- -6 75 -47 -64
+ 132 -126 -36 -169
+ -169 -261 175 -261
+ 186 -346 -346 -232
+ -83 -346 -261 167
+ -345 190 -345 -345
+ -208 -36 -232 148
+ 82 24 -83 -103
+ -5 69 -42 -57
diff --git a/profiles/fungi/MA0390.1.pwm b/profiles/fungi/MA0390.1.pwm
index 5f4711d..2f8d948 100644
--- a/profiles/fungi/MA0390.1.pwm
+++ b/profiles/fungi/MA0390.1.pwm
@@ -1,21 +1,21 @@
- -135 -57 113 -43
- -59 -53 -30 87
- -45 74 -213 46
- -36 60 -122 35
- 102 -208 -40 -4
- 113 -106 -73 -46
- 164 -283 -181 -110
- 100 -321 -292 82
- -133 -450 -696 183
- -223 -564 -796 191
- -464 -596 -696 198
- -426 -10000 -406 196
- -10000 -196 -364 187
- -638 199 -696 -596
- 195 -516 -332 -696
- -73 123 -157 -50
- -95 -106 -87 130
- -59 39 -32 29
- 30 2 -100 32
- -10 -55 34 17
- -14 -45 25 23
+ -128 -55 111 -41
+ -57 -51 -29 85
+ -44 72 -199 45
+ -35 59 -116 34
+ 100 -194 -39 -4
+ 111 -101 -70 -45
+ 161 -259 -171 -105
+ 98 -288 -266 80
+ -127 -377 -470 180
+ -208 -432 -485 188
+ -385 -444 -470 194
+ -362 -503 -349 193
+ -503 -184 -321 184
+ -456 195 -470 -444
+ 192 -411 -297 -470
+ -71 121 -149 -48
+ -91 -101 -83 127
+ -57 38 -31 29
+ 30 2 -95 31
+ -10 -53 33 16
+ -14 -44 24 23
diff --git a/profiles/fungi/MA0391.1.pwm b/profiles/fungi/MA0391.1.pwm
index e69de29..35fcaaa 100644
--- a/profiles/fungi/MA0391.1.pwm
+++ b/profiles/fungi/MA0391.1.pwm
@@ -0,0 +1,7 @@
+ -126 73 -126 59
+ -346 -346 -346 190
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 149 -297 -297 -11
diff --git a/profiles/fungi/MA0392.1.pwm b/profiles/fungi/MA0392.1.pwm
index b3e0137..5eed7d4 100644
--- a/profiles/fungi/MA0392.1.pwm
+++ b/profiles/fungi/MA0392.1.pwm
@@ -1,8 +1,8 @@
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -12 -40 6 36
- -13 -13 90 -166
- -41 -1 -107 83
- -206 -106 -206 160
- 196 -463 -463 -463
+ -345 190 -345 -345
+ -345 -345 190 -345
+ -345 -345 190 -345
+ -11 -36 5 33
+ -12 -12 84 -140
+ -37 -1 -94 78
+ -169 -92 -169 151
+ 185 -296 -296 -296
diff --git a/profiles/fungi/MA0393.1.pwm b/profiles/fungi/MA0393.1.pwm
index 0b02989..85c0ace 100644
--- a/profiles/fungi/MA0393.1.pwm
+++ b/profiles/fungi/MA0393.1.pwm
@@ -1,7 +1,7 @@
- -10000 -112 -621 182
- -74 -10000 175 -518
- 193 -10000 -247 -10000
- 184 -540 -138 -10000
- 200 -10000 -10000 -10000
- -616 199 -10000 -617
- 103 -132 33 -172
+ -740 -111 -569 181
+ -73 -741 175 -491
+ 193 -740 -244 -740
+ 184 -508 -137 -739
+ 199 -738 -738 -738
+ -565 198 -738 -566
+ 103 -131 32 -170
diff --git a/profiles/fungi/MA0394.1.pwm b/profiles/fungi/MA0394.1.pwm
index e69de29..d8683f6 100644
--- a/profiles/fungi/MA0394.1.pwm
+++ b/profiles/fungi/MA0394.1.pwm
@@ -0,0 +1,8 @@
+ -281 63 -59 71
+ -28 -403 161 -403
+ -423 194 -423 -423
+ -418 -418 192 -317
+ -215 -417 187 -417
+ -423 194 -423 -423
+ -283 -384 112 69
+ -292 70 30 2
diff --git a/profiles/fungi/MA0395.1.pwm b/profiles/fungi/MA0395.1.pwm
index e69de29..78eb893 100644
--- a/profiles/fungi/MA0395.1.pwm
+++ b/profiles/fungi/MA0395.1.pwm
@@ -0,0 +1,20 @@
+ -45 5 -49 61
+ 20 -4 23 -50
+ 79 -36 -24 -64
+ 14 -25 -48 42
+ -94 68 -77 37
+ -6 -111 116 -153
+ -109 -377 170 -228
+ -262 135 -432 31
+ -470 -432 195 -444
+ -503 174 -72 -485
+ -485 176 -92 -456
+ -402 -362 189 -280
+ -356 104 -444 86
+ 128 -369 43 -276
+ -146 78 -81 44
+ -19 31 51 -114
+ 38 -5 -27 -13
+ -11 76 -61 -46
+ -63 -7 45 5
+ 44 9 -99 10
diff --git a/profiles/fungi/MA0396.1.pwm b/profiles/fungi/MA0396.1.pwm
index 4810a89..95d78df 100644
--- a/profiles/fungi/MA0396.1.pwm
+++ b/profiles/fungi/MA0396.1.pwm
@@ -1,9 +1,9 @@
- 0 -147 94 -47
- -47 75 -25 -40
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 136 -47 -47
- 83 -57 -41 -34
+ 0 -126 88 -42
+ -42 69 -23 -36
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 127 -42 -42
+ 78 -51 -37 -30
diff --git a/profiles/fungi/MA0397.1.pwm b/profiles/fungi/MA0397.1.pwm
index e69de29..bd48690 100644
--- a/profiles/fungi/MA0397.1.pwm
+++ b/profiles/fungi/MA0397.1.pwm
@@ -0,0 +1,9 @@
+ -37 -104 108 -67
+ 64 16 -4 -152
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 146 -50 -114
+ 104 -65 -57 -65
diff --git a/profiles/fungi/MA0398.1.pwm b/profiles/fungi/MA0398.1.pwm
index e69de29..02cd2a8 100644
--- a/profiles/fungi/MA0398.1.pwm
+++ b/profiles/fungi/MA0398.1.pwm
@@ -0,0 +1,9 @@
+ 93 -74 -74 -17
+ 99 -139 -139 33
+ 123 -261 -261 41
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ -139 -346 -346 178
+ -5 -346 -346 151
+ 16 -186 -186 122
+ -65 -65 -103 116
diff --git a/profiles/fungi/MA0399.1.pwm b/profiles/fungi/MA0399.1.pwm
index e69de29..d360cb0 100644
--- a/profiles/fungi/MA0399.1.pwm
+++ b/profiles/fungi/MA0399.1.pwm
@@ -0,0 +1,7 @@
+ -119 125 -62 -90
+ -29 -283 157 -401
+ -416 194 -416 -416
+ -252 -8 149 -379
+ -419 -53 168 -419
+ -24 -69 131 -399
+ -37 -179 149 -297
diff --git a/profiles/fungi/MA0400.1.pwm b/profiles/fungi/MA0400.1.pwm
index 5ccdd02..ed2ea50 100644
--- a/profiles/fungi/MA0400.1.pwm
+++ b/profiles/fungi/MA0400.1.pwm
@@ -1,20 +1,20 @@
- 42 -10 -116 36
- -15 -28 8 28
- 11 -19 15 -10
- 50 -32 -132 47
- -1 -21 -71 61
- 107 -155 20 -126
- 191 -538 -438 -264
- 196 -10000 -450 -396
- -10000 151 20 -696
- -796 -396 -10000 198
- -696 199 -796 -696
- -796 198 -438 -796
- -696 -796 199 -696
- 166 -396 -57 -338
- 107 -164 4 -86
- 59 1 -70 -20
- 44 -22 -57 16
- 16 -29 -26 29
- -61 2 1 40
- 17 -88 -3 44
+ 41 -10 -110 35
+ -14 -27 8 27
+ 11 -19 15 -9
+ 49 -31 -126 45
+ -1 -20 -68 60
+ 104 -147 20 -120
+ 188 -421 -369 -243
+ 193 -503 -377 -343
+ -503 148 20 -470
+ -485 -343 -503 194
+ -470 196 -485 -470
+ -485 195 -369 -485
+ -470 -485 196 -470
+ 163 -343 -55 -301
+ 105 -155 4 -83
+ 57 1 -67 -19
+ 42 -22 -55 16
+ 16 -28 -25 29
+ -59 2 1 39
+ 17 -84 -3 42
diff --git a/profiles/fungi/MA0401.1.pwm b/profiles/fungi/MA0401.1.pwm
index 0ac311b..1766a8b 100644
--- a/profiles/fungi/MA0401.1.pwm
+++ b/profiles/fungi/MA0401.1.pwm
@@ -1,8 +1,8 @@
- 131 -164 -74 -74
- -10000 200 -10000 -10000
- -74 -10000 177 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 191 -364 -364 -364
- 130 -166 -166 -13
+ 123 -139 -65 -65
+ -346 190 -346 -346
+ -65 -346 167 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 181 -261 -261 -261
+ 122 -140 -140 -12
diff --git a/profiles/fungi/MA0402.1.pwm b/profiles/fungi/MA0402.1.pwm
index e69de29..cfa4963 100644
--- a/profiles/fungi/MA0402.1.pwm
+++ b/profiles/fungi/MA0402.1.pwm
@@ -0,0 +1,8 @@
+ -140 -140 -12 122
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 -346 190
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -208 -208 10 130
+ 0 0 -114 63
diff --git a/profiles/fungi/MA0403.1.pwm b/profiles/fungi/MA0403.1.pwm
index e69de29..644d163 100644
--- a/profiles/fungi/MA0403.1.pwm
+++ b/profiles/fungi/MA0403.1.pwm
@@ -0,0 +1,8 @@
+ 121 -103 -92 -57
+ 82 -103 45 -139
+ -67 164 -299 -299
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -297 -346 188
+ 151 -138 -101 -186
+ 55 -37 9 -51
diff --git a/profiles/fungi/MA0403.2.pwm b/profiles/fungi/MA0403.2.pwm
index e69de29..c4fb374 100644
--- a/profiles/fungi/MA0403.2.pwm
+++ b/profiles/fungi/MA0403.2.pwm
@@ -0,0 +1,16 @@
+ 22 -38 -90 62
+ 53 -7 -125 25
+ 25 0 -133 50
+ 10 -78 -42 68
+ 164 -224 -171 -142
+ 178 -337 -151 -306
+ -161 182 -377 -377
+ -337 187 -337 -281
+ -377 191 -337 -377
+ -377 -377 -337 191
+ 172 -259 -117 -337
+ 139 -117 -110 -110
+ 30 22 -57 -10
+ 30 -47 -62 48
+ 35 -47 -125 66
+ 35 -125 -52 68
diff --git a/profiles/fungi/MA0404.1.pwm b/profiles/fungi/MA0404.1.pwm
index 34b0197..20c3aca 100644
--- a/profiles/fungi/MA0404.1.pwm
+++ b/profiles/fungi/MA0404.1.pwm
@@ -1,8 +1,8 @@
- -106 164 -232 -232
- -304 -304 186 -304
- -366 -366 191 -366
- 160 -163 -163 -163
- -31 -93 -93 110
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -163 -163 160 -163
+ -92 155 -188 -188
+ -231 -231 176 -231
+ -263 -263 181 -263
+ 151 -138 -138 -138
+ -28 -81 -81 103
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -138 -138 151 -138
diff --git a/profiles/fungi/MA0405.1.pwm b/profiles/fungi/MA0405.1.pwm
index fa02c77..7053df6 100644
--- a/profiles/fungi/MA0405.1.pwm
+++ b/profiles/fungi/MA0405.1.pwm
@@ -1,8 +1,8 @@
- -232 -232 158 -74
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 68 126 -10000
- 100 -10000 100 -10000
- -10000 168 -32 -10000
- 126 -10000 -132 26
- -74 -32 -232 126
+ -187 -187 149 -65
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 63 118 -346
+ 93 -346 93 -346
+ -346 158 -29 -346
+ 118 -346 -114 24
+ -65 -29 -187 118
diff --git a/profiles/fungi/MA0406.1.pwm b/profiles/fungi/MA0406.1.pwm
index 274bc0a..6b8aaa3 100644
--- a/profiles/fungi/MA0406.1.pwm
+++ b/profiles/fungi/MA0406.1.pwm
@@ -1,8 +1,8 @@
- 106 -184 44 -184
- -10000 193 -232 -10000
- 200 -10000 -10000 -10000
- -232 -10000 -10000 193
- -10000 -10000 -10000 200
- -10000 186 -147 -10000
- -10000 144 -10000 36
- -132 91 -74 16
+ 99 -153 41 -153
+ -346 183 -187 -346
+ 190 -346 -346 -346
+ -187 -346 -346 183
+ -346 -346 -346 190
+ -346 177 -126 -346
+ -346 136 -346 33
+ -114 85 -65 15
diff --git a/profiles/fungi/MA0407.1.pwm b/profiles/fungi/MA0407.1.pwm
index 73da449..9c4e5cb 100644
--- a/profiles/fungi/MA0407.1.pwm
+++ b/profiles/fungi/MA0407.1.pwm
@@ -1,15 +1,15 @@
- -162 -10000 188 -10000
- -10000 -10000 200 -10000
- 105 80 -10000 -243
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 170 -10000 -39
- -10000 69 -10000 126
- -223 85 78 -189
- 47 -10000 -10000 139
- 154 -10000 -10000 12
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 136 -10000 51 -10000
- -132 173 -185 -10000
+ -154 -518 185 -518
+ -518 -518 197 -518
+ 103 79 -524 -227
+ 197 -518 -518 -518
+ 197 -518 -518 -518
+ -518 167 -518 -38
+ -527 67 -527 123
+ -210 83 76 -179
+ 46 -518 -518 136
+ 152 -518 -518 12
+ 197 -518 -518 -518
+ -518 -518 197 -518
+ 197 -518 -518 -518
+ 134 -518 50 -518
+ -126 170 -175 -521
diff --git a/profiles/fungi/MA0408.1.pwm b/profiles/fungi/MA0408.1.pwm
index eca1ffd..fc35aff 100644
--- a/profiles/fungi/MA0408.1.pwm
+++ b/profiles/fungi/MA0408.1.pwm
@@ -1,8 +1,8 @@
- 16 91 -32 -232
- -464 -64 -464 171
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 136 -184 -184 -18
- 101 -72 -72 -38
+ 15 85 -29 -187
+ -297 -57 -297 162
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 190 -346 -346
+ 190 -346 -346 -346
+ 127 -153 -153 -17
+ 95 -64 -64 -34
diff --git a/profiles/fungi/MA0409.1.pwm b/profiles/fungi/MA0409.1.pwm
index e69de29..04f28c9 100644
--- a/profiles/fungi/MA0409.1.pwm
+++ b/profiles/fungi/MA0409.1.pwm
@@ -0,0 +1,7 @@
+ -235 177 -235 -235
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 -114 175 -346
+ -346 -346 -346 190
+ -346 -346 190 -346
+ 152 -141 -141 -141
diff --git a/profiles/fungi/MA0410.1.pwm b/profiles/fungi/MA0410.1.pwm
index a3c0e64..94ea92a 100644
--- a/profiles/fungi/MA0410.1.pwm
+++ b/profiles/fungi/MA0410.1.pwm
@@ -1,8 +1,8 @@
- -132 82 11 -40
- -263 18 135 -263
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -364 11 146 -364
- 178 -363 -363 -131
+ -114 76 10 -36
+ -207 16 127 -207
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -261 10 138 -261
+ 168 -260 -260 -112
diff --git a/profiles/fungi/MA0411.1.pwm b/profiles/fungi/MA0411.1.pwm
index e69de29..31876ce 100644
--- a/profiles/fungi/MA0411.1.pwm
+++ b/profiles/fungi/MA0411.1.pwm
@@ -0,0 +1,7 @@
+ -57 0 -36 63
+ 117 -231 16 -124
+ 56 -346 -346 123
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -297 -346 188 -346
+ 162 -189 -127 -209
diff --git a/profiles/fungi/MA0412.1.pwm b/profiles/fungi/MA0412.1.pwm
index 436f6db..7ecdca6 100644
--- a/profiles/fungi/MA0412.1.pwm
+++ b/profiles/fungi/MA0412.1.pwm
@@ -1,13 +1,13 @@
- -117 -10000 -10000 183
- -10000 115 15 -58
- -117 -10000 183 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 192 -10000 -217
- -217 -10000 -10000 192
- 200 -10000 -10000 -10000
- 115 -217 -10000 64
- 64 -117 -217 83
- -117 -10000 -217 174
+ -86 -239 -239 162
+ -239 99 12 -45
+ -86 -239 162 -239
+ -239 -239 178 -239
+ -239 178 -239 -239
+ -239 -239 178 -239
+ -239 -239 178 -239
+ -239 170 -239 -143
+ -143 -239 -239 170
+ 178 -239 -239 -239
+ 99 -143 -239 54
+ 54 -86 -143 70
+ -86 -239 -143 153
diff --git a/profiles/fungi/MA0412.2.pwm b/profiles/fungi/MA0412.2.pwm
index 287b8d6..a901237 100644
--- a/profiles/fungi/MA0412.2.pwm
+++ b/profiles/fungi/MA0412.2.pwm
@@ -1,15 +1,15 @@
- 83 -86 -96 21
- 89 -168 -112 46
- 23 -260 -207 128
- -477 -277 -318 189
- 183 -577 -418 -145
- -245 -260 186 -577
- -10000 199 -577 -577
- -10000 200 -10000 -10000
- -418 -10000 198 -10000
- -10000 199 -577 -10000
- -477 176 -218 -152
- -77 59 83 -296
- 155 -177 -131 -145
- 21 -21 28 -38
- 1 4 66 -138
+ 79 -79 -88 20
+ 85 -149 -102 44
+ 22 -220 -180 122
+ -335 -232 -259 182
+ 176 -363 -312 -130
+ -209 -220 179 -363
+ -398 192 -363 -363
+ -398 193 -398 -398
+ -312 -398 191 -398
+ -398 192 -363 -398
+ -335 170 -189 -136
+ -71 56 79 -244
+ 149 -156 -118 -130
+ 20 -20 26 -35
+ 1 4 62 -124
diff --git a/profiles/fungi/MA0413.1.pwm b/profiles/fungi/MA0413.1.pwm
index 8c0031e..3dfde45 100644
--- a/profiles/fungi/MA0413.1.pwm
+++ b/profiles/fungi/MA0413.1.pwm
@@ -1,20 +1,20 @@
- 11 -16 0 3
- 29 -46 -21 24
- 45 -57 -28 18
- -93 -37 -77 108
- -91 -218 -67 139
- 35 114 -130 -316
- -796 196 -326 -638
- -10000 197 -10000 -364
- -638 199 -796 -796
- -796 198 -10000 -396
- -10000 -538 -638 199
- -10000 -696 180 -98
- 194 -10000 -279 -564
- 177 -144 -357 -283
- -52 4 -62 70
- -10 -9 -143 81
- -24 -39 -34 68
- -46 -43 36 32
- -28 -132 9 78
- -19 25 55 -110
+ 11 -16 0 3
+ 29 -44 -20 23
+ 44 -55 -27 18
+ -89 -36 -74 106
+ -87 -203 -64 136
+ 34 112 -124 -284
+ -485 192 -292 -456
+ -503 194 -503 -320
+ -456 196 -485 -485
+ -485 194 -503 -343
+ -503 -421 -456 195
+ -503 -470 177 -94
+ 191 -503 -255 -432
+ 174 -137 -316 -259
+ -50 4 -60 68
+ -10 -9 -135 79
+ -23 -37 -33 66
+ -45 -42 35 31
+ -27 -125 8 76
+ -18 25 54 -105
diff --git a/profiles/fungi/MA0414.1.pwm b/profiles/fungi/MA0414.1.pwm
index e69de29..3cf012b 100644
--- a/profiles/fungi/MA0414.1.pwm
+++ b/profiles/fungi/MA0414.1.pwm
@@ -0,0 +1,7 @@
+ -94 95 -155 27
+ -346 -346 -346 190
+ -346 190 -346 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 61 -140 92 -233
+ 30 -15 30 -64
diff --git a/profiles/fungi/MA0415.1.pwm b/profiles/fungi/MA0415.1.pwm
index 2b3f8df..4881d2d 100644
--- a/profiles/fungi/MA0415.1.pwm
+++ b/profiles/fungi/MA0415.1.pwm
@@ -1,20 +1,20 @@
- 25 6 -24 -12
- -80 -15 33 35
- -75 -96 29 74
- -6 -104 -31 81
- -23 -25 39 0
- 67 108 -232 -344
- -564 -638 -496 198
- -496 -426 -538 196
- 197 -638 -479 -464
- -796 185 -279 -205
- -205 -279 185 -796
- -464 -479 -638 197
- 196 -538 -426 -496
- 198 -496 -638 -564
- -283 -315 105 75
- 36 41 -13 -108
- -46 13 -70 64
- -1 30 -29 -6
- -1 3 31 -42
- -32 -35 -49 77
+ 24 6 -24 -12
+ -77 -15 32 34
+ -72 -92 28 73
+ -5 -100 -30 79
+ -23 -24 38 0
+ 65 106 -215 -306
+ -432 -456 -402 194
+ -402 -362 -421 193
+ 193 -456 -393 -385
+ -485 182 -255 -192
+ -192 -255 182 -485
+ -385 -393 -456 193
+ 193 -421 -362 -402
+ 194 -402 -456 -432
+ -258 -284 103 73
+ 35 40 -13 -103
+ -44 12 -67 63
+ -1 30 -28 -6
+ -1 3 30 -40
+ -31 -34 -48 75
diff --git a/profiles/fungi/MA0416.1.pwm b/profiles/fungi/MA0416.1.pwm
index 0e4fbf2..a2d16ea 100644
--- a/profiles/fungi/MA0416.1.pwm
+++ b/profiles/fungi/MA0416.1.pwm
@@ -1,8 +1,8 @@
- 138 -40 -106 -264
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -364 -364 -364 191
- 100 -106 -40 -40
+ 130 -36 -92 -208
+ -346 -346 -346 190
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -261 -261 -261 181
+ 93 -92 -36 -36
diff --git a/profiles/fungi/MA0417.1.pwm b/profiles/fungi/MA0417.1.pwm
index 73ab160..ff099cb 100644
--- a/profiles/fungi/MA0417.1.pwm
+++ b/profiles/fungi/MA0417.1.pwm
@@ -1,6 +1,6 @@
- 165 -10000 -10000 -20
- 138 -10000 49 -10000
- 63 -10000 129 -10000
- -10000 191 -10000 -205
- 200 -10000 -10000 -10000
- -104 -10000 -10000 181
+ 156 -361 -361 -18
+ 132 -388 46 -388
+ 60 -408 124 -408
+ -440 186 -440 -185
+ 191 -365 -365 -365
+ -92 -361 -361 173
diff --git a/profiles/fungi/MA0418.1.pwm b/profiles/fungi/MA0418.1.pwm
index e69de29..9e17085 100644
--- a/profiles/fungi/MA0418.1.pwm
+++ b/profiles/fungi/MA0418.1.pwm
@@ -0,0 +1,20 @@
+ -50 24 56 -65
+ -12 -79 121 -239
+ -86 -137 40 80
+ -108 78 -114 44
+ 1 -11 -169 81
+ -234 -108 135 -34
+ 96 71 -255 -196
+ -288 -306 -201 181
+ -297 -315 -110 172
+ 180 -269 -218 -284
+ -249 113 -121 27
+ -52 -220 150 -201
+ -178 -147 -252 167
+ 135 -36 -184 -132
+ 170 -188 -169 -262
+ -60 -162 93 15
+ -13 90 -78 -66
+ 42 -147 76 -72
+ 77 -93 27 -81
+ -57 80 -4 -71
diff --git a/profiles/fungi/MA0419.1.pwm b/profiles/fungi/MA0419.1.pwm
index e69de29..1fbc828 100644
--- a/profiles/fungi/MA0419.1.pwm
+++ b/profiles/fungi/MA0419.1.pwm
@@ -0,0 +1,11 @@
+ 140 -7 -363 -161
+ -360 -669 -669 196
+ -668 -668 -30 166
+ 194 -442 -444 -375
+ -108 -119 162 -671
+ -668 -444 -668 198
+ 156 -6 -357 -668
+ 199 -668 -668 -668
+ -445 -671 123 68
+ -28 150 -236 -271
+ 122 -130 -28 -118
diff --git a/profiles/fungi/MA0420.1.pwm b/profiles/fungi/MA0420.1.pwm
index 66d4128..ecafe75 100644
--- a/profiles/fungi/MA0420.1.pwm
+++ b/profiles/fungi/MA0420.1.pwm
@@ -1,8 +1,8 @@
- 104 -131 -17 -63
- -206 91 -206 71
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -263 135 -263 18
+ 97 -112 -15 -56
+ -169 85 -169 66
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -207 127 -207 16
diff --git a/profiles/fungi/MA0421.1.pwm b/profiles/fungi/MA0421.1.pwm
index e69de29..2ded062 100644
--- a/profiles/fungi/MA0421.1.pwm
+++ b/profiles/fungi/MA0421.1.pwm
@@ -0,0 +1,10 @@
+ -140 -549 -77 159
+ -546 -546 -322 194
+ -548 -208 -548 190
+ 197 -544 -544 -544
+ -544 197 -544 -544
+ -544 197 -544 -544
+ -188 188 -546 -546
+ -544 -544 197 -544
+ -297 -544 194 -544
+ 61 72 -202 -78
diff --git a/profiles/fungi/MA0422.1.pwm b/profiles/fungi/MA0422.1.pwm
index 69c9de2..1f271d5 100644
--- a/profiles/fungi/MA0422.1.pwm
+++ b/profiles/fungi/MA0422.1.pwm
@@ -1,10 +1,10 @@
- -1 59 -120 10
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 157 -147 -56 -10000
- -12 -56 88 -84
- 118 -10000 -10000 80
- -82 -10000 -10000 178
- 191 -206 -10000 -10000
- 53 -56 -74 36
+ -1 55 -104 9
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 148 -126 -50 -346
+ -11 -50 82 -74
+ 110 -345 -345 74
+ -72 -345 -345 168
+ 181 -169 -346 -346
+ 49 -50 -65 33
diff --git a/profiles/fungi/MA0423.1.pwm b/profiles/fungi/MA0423.1.pwm
index e69de29..4336300 100644
--- a/profiles/fungi/MA0423.1.pwm
+++ b/profiles/fungi/MA0423.1.pwm
@@ -0,0 +1,9 @@
+ 46 16 -10 -81
+ -346 186 -298 -261
+ -346 177 -346 -126
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 -346 -346 190
+ 118 -346 -139 33
+ -23 -346 -208 149
+ 34 16 -186 42
diff --git a/profiles/fungi/MA0424.1.pwm b/profiles/fungi/MA0424.1.pwm
index e69de29..f8ce7ca 100644
--- a/profiles/fungi/MA0424.1.pwm
+++ b/profiles/fungi/MA0424.1.pwm
@@ -0,0 +1,8 @@
+ 16 54 -168 16
+ -261 -50 -114 142
+ -346 153 -65 -139
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 138 28 -346 -346
+ 83 -64 -10 -64
diff --git a/profiles/fungi/MA0425.1.pwm b/profiles/fungi/MA0425.1.pwm
index acf6df8..0420c1d 100644
--- a/profiles/fungi/MA0425.1.pwm
+++ b/profiles/fungi/MA0425.1.pwm
@@ -1,14 +1,14 @@
- 51 -7 10 -85
- -10000 200 -10000 -10000
- -10000 199 -10000 -464
- -10000 200 -10000 -10000
- -464 199 -10000 -10000
- 71 -10000 31 16
- -10000 197 -464 -464
- 10 4 -57 30
- -12 6 -32 31
- -6 6 -32 26
- 0 -6 0 6
- 0 -18 6 11
- -18 6 6 6
- 4 -7 4 -1
+ 47 -7 9 -75
+ -346 190 -346 -346
+ -346 188 -346 -297
+ -346 190 -346 -346
+ -297 188 -346 -346
+ 66 -346 28 15
+ -346 187 -297 -297
+ 9 4 -51 27
+ -11 5 -29 28
+ -5 5 -29 24
+ 0 -5 0 5
+ 0 -17 5 10
+ -17 5 5 5
+ 4 -7 4 -1
diff --git a/profiles/fungi/MA0426.1.pwm b/profiles/fungi/MA0426.1.pwm
index 865ff83..d2a70e8 100644
--- a/profiles/fungi/MA0426.1.pwm
+++ b/profiles/fungi/MA0426.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
+ -393 -393 -393 193
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ -393 -393 -393 193
+ -393 -393 -393 193
+ -393 -393 193 -393
diff --git a/profiles/fungi/MA0428.1.pwm b/profiles/fungi/MA0428.1.pwm
index 32a445b..7084236 100644
--- a/profiles/fungi/MA0428.1.pwm
+++ b/profiles/fungi/MA0428.1.pwm
@@ -1,9 +1,9 @@
- 93 -13 -75 -75
- 146 -132 -40 -364
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 188 -10000 -164 -10000
- 106 -364 82 -364
- 138 -206 -206 -12
- -131 -131 -131 148
+ 86 -12 -67 -67
+ 138 -114 -36 -261
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 178 -346 -139 -346
+ 99 -261 76 -261
+ 130 -169 -169 -11
+ -112 -112 -112 139
diff --git a/profiles/fungi/MA0429.1.pwm b/profiles/fungi/MA0429.1.pwm
index d9a0ee8..b33f36d 100644
--- a/profiles/fungi/MA0429.1.pwm
+++ b/profiles/fungi/MA0429.1.pwm
@@ -1,7 +1,7 @@
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -24 137 -82 -10000
- -147 140 -64 -147
- -94 -232 162 -232
- 119 -81 -181 -22
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -21 129 -72 -345
+ -126 132 -57 -126
+ -83 -188 153 -188
+ 112 -71 -151 -20
diff --git a/profiles/fungi/MA0430.1.pwm b/profiles/fungi/MA0430.1.pwm
index 65f0855..1366f5c 100644
--- a/profiles/fungi/MA0430.1.pwm
+++ b/profiles/fungi/MA0430.1.pwm
@@ -1,8 +1,8 @@
- -93 76 -93 32
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 194 -10000 -264 -10000
- -264 -84 171 -10000
- -12 -364 -232 149
- 11 -232 -232 133
+ -81 71 -81 30
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 184 -346 -208 -346
+ -208 -74 162 -346
+ -11 -261 -187 140
+ 10 -187 -187 125
diff --git a/profiles/fungi/MA0431.1.pwm b/profiles/fungi/MA0431.1.pwm
index e606b9e..f63ca64 100644
--- a/profiles/fungi/MA0431.1.pwm
+++ b/profiles/fungi/MA0431.1.pwm
@@ -1,9 +1,9 @@
- 36 -6 -12 -25
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 26 -10000 53 44
- -10000 200 -10000 -10000
- 80 -66 -307 59
- -40 49 -74 31
+ 33 -5 -11 -23
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 24 -346 49 41
+ -346 190 -346 -346
+ 74 -58 -233 55
+ -36 45 -65 28
diff --git a/profiles/fungi/MA0432.1.pwm b/profiles/fungi/MA0432.1.pwm
index 460e634..bbfbc0b 100644
--- a/profiles/fungi/MA0432.1.pwm
+++ b/profiles/fungi/MA0432.1.pwm
@@ -1,8 +1,8 @@
- -167 -167 -50 142
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -132 -10000 168 -132
- 185 -10000 -10000 -132
- 37 -309 -309 130
+ -141 -141 -45 133
+ -346 190 -346 -346
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ -114 -346 158 -114
+ 175 -346 -346 -114
+ 34 -235 -235 123
diff --git a/profiles/fungi/MA0433.1.pwm b/profiles/fungi/MA0433.1.pwm
index e69de29..e4efb4e 100644
--- a/profiles/fungi/MA0433.1.pwm
+++ b/profiles/fungi/MA0433.1.pwm
@@ -0,0 +1,8 @@
+ -296 1 -152 133
+ -346 -346 -346 190
+ 190 -346 -346 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ -346 -346 -346 190
+ 122 -234 -67 -24
+ 105 -81 -81 -34
diff --git a/profiles/fungi/MA0434.1.pwm b/profiles/fungi/MA0434.1.pwm
index 3a88d5d..bb701d1 100644
--- a/profiles/fungi/MA0434.1.pwm
+++ b/profiles/fungi/MA0434.1.pwm
@@ -1,9 +1,9 @@
- -117 54 -117 73
- -10000 -10000 200 -10000
- -147 6 -10000 138
- 133 6 -10000 -118
- 68 -10000 126 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 53 26 -56 -56
+ -101 50 -101 67
+ -346 -346 190 -346
+ -126 5 -346 130
+ 125 5 -346 -103
+ 63 -346 118 -346
+ 190 -346 -346 -346
+ -346 -346 -346 190
+ -346 190 -346 -346
+ 49 24 -50 -50
diff --git a/profiles/fungi/MA0435.1.pwm b/profiles/fungi/MA0435.1.pwm
index e69de29..b34f740 100644
--- a/profiles/fungi/MA0435.1.pwm
+++ b/profiles/fungi/MA0435.1.pwm
@@ -0,0 +1,20 @@
+ -163 -4 -76 108
+ -63 -28 44 23
+ 60 -53 -51 13
+ 58 -5 -83 -3
+ 13 -215 87 -23
+ 112 -54 -5 -252
+ -343 155 -337 -19
+ -444 -444 195 -470
+ -470 -343 -456 194
+ 194 -411 -456 -432
+ 179 -485 -114 -444
+ 195 -470 -444 -421
+ -432 -470 -470 195
+ -443 195 -485 -393
+ 37 118 -203 -234
+ -145 -17 -160 127
+ 5 -38 -34 49
+ 83 -113 -51 9
+ 17 65 -188 6
+ 41 39 -176 9
diff --git a/profiles/fungi/MA0436.1.pwm b/profiles/fungi/MA0436.1.pwm
index 78ed5ad..0130835 100644
--- a/profiles/fungi/MA0436.1.pwm
+++ b/profiles/fungi/MA0436.1.pwm
@@ -1,7 +1,7 @@
- -75 139 -10000 -34
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -13 4 43 -49
+ -67 130 -347 -30
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ 190 -346 -346 -346
+ -346 190 -346 -346
+ -12 4 40 -44
diff --git a/profiles/fungi/MA0437.1.pwm b/profiles/fungi/MA0437.1.pwm
index e69de29..4be5b3c 100644
--- a/profiles/fungi/MA0437.1.pwm
+++ b/profiles/fungi/MA0437.1.pwm
@@ -0,0 +1,9 @@
+ 121 -346 5 -83
+ 33 -346 -346 136
+ -50 -346 -346 164
+ -4 -207 -260 139
+ -50 76 -103 15
+ -92 33 -153 91
+ -346 180 -153 -346
+ -346 190 -346 -346
+ -233 -347 178 -189
diff --git a/profiles/fungi/MA0438.1.pwm b/profiles/fungi/MA0438.1.pwm
index e69de29..57da1bd 100644
--- a/profiles/fungi/MA0438.1.pwm
+++ b/profiles/fungi/MA0438.1.pwm
@@ -0,0 +1,8 @@
+ 96 -65 -11 -103
+ -261 181 -261 -261
+ -346 -346 190 -346
+ -346 -346 190 -346
+ 190 -346 -346 -346
+ 118 -92 -57 -92
+ 180 -297 -297 -187
+ -92 -139 -208 151
diff --git a/profiles/fungi/MA0439.1.pwm b/profiles/fungi/MA0439.1.pwm
index e69de29..2012753 100644
--- a/profiles/fungi/MA0439.1.pwm
+++ b/profiles/fungi/MA0439.1.pwm
@@ -0,0 +1,11 @@
+ -23 69 -17 -65
+ -56 -56 -112 113
+ -17 -139 -208 132
+ 173 -297 -261 -139
+ -36 -126 -208 136
+ 14 36 -140 31
+ -209 -18 -155 135
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -232 -346 183 -261
+ -169 66 -74 59
diff --git a/profiles/fungi/MA0440.1.pwm b/profiles/fungi/MA0440.1.pwm
index e69de29..608471e 100644
--- a/profiles/fungi/MA0440.1.pwm
+++ b/profiles/fungi/MA0440.1.pwm
@@ -0,0 +1,15 @@
+ 191 -365 -365 -365
+ -433 195 -433 -433
+ -433 195 -433 -433
+ -390 88 -390 102
+ -365 -365 -365 191
+ 104 58 -138 -388
+ 191 -365 -365 -365
+ 124 -133 22 -383
+ -433 -433 195 -433
+ -433 -433 195 -433
+ -365 -365 -365 191
+ -121 82 -49 12
+ 130 -377 28 -198
+ -187 -117 -367 168
+ -38 -415 164 -415
diff --git a/profiles/fungi/MA0441.1.pwm b/profiles/fungi/MA0441.1.pwm
index de209af..3ea25c7 100644
--- a/profiles/fungi/MA0441.1.pwm
+++ b/profiles/fungi/MA0441.1.pwm
@@ -1,9 +1,9 @@
- -74 -74 -74 114
- 32 -117 -117 89
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -41 -266 110 -7
- -232 177 -232 -232
- 100 -132 -132 26
+ -65 -65 -65 106
+ 30 -101 -101 83
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -346 190 -346 -346
+ -37 -209 103 -7
+ -187 167 -187 -187
+ 93 -114 -114 24
diff --git a/profiles/fungi/MA0929.1.pwm b/profiles/fungi/MA0929.1.pwm
index e69de29..a393606 100644
--- a/profiles/fungi/MA0929.1.pwm
+++ b/profiles/fungi/MA0929.1.pwm
@@ -0,0 +1,12 @@
+ 37 -15 -15 -15
+ -15 -15 -15 37
+ 35 -93 -12 36
+ -71 -204 154 -204
+ -112 -503 -503 180
+ 165 -124 -503 -131
+ 197 -503 -503 -503
+ 181 -503 -503 -124
+ -293 103 -293 76
+ 185 -293 -293 -293
+ 79 -18 -97 -18
+ 71 -34 -34 -34
diff --git a/profiles/fungi/MA1431.1.pwm b/profiles/fungi/MA1431.1.pwm
index e69de29..2d6aa02 100644
--- a/profiles/fungi/MA1431.1.pwm
+++ b/profiles/fungi/MA1431.1.pwm
@@ -0,0 +1,10 @@
+ 4 -59 -36 61
+ 63 -39 -28 -21
+ -311 188 -362 -292
+ -411 178 -444 -115
+ -503 196 -470 -486
+ -421 195 -503 -470
+ -25 -243 106 -17
+ -201 181 -470 -231
+ 60 -20 -89 11
+ -57 59 -79 32
diff --git a/profiles/fungi/MA1432.1.pwm b/profiles/fungi/MA1432.1.pwm
index e69de29..651cf50 100644
--- a/profiles/fungi/MA1432.1.pwm
+++ b/profiles/fungi/MA1432.1.pwm
@@ -0,0 +1,8 @@
+ -402 195 -503 -432
+ -503 157 -503 -5
+ -182 177 -246 -306
+ -503 197 -503 -503
+ 98 -503 95 -377
+ -81 58 2 -11
+ 18 -11 -3 -5
+ 16 25 6 -63
diff --git a/profiles/fungi/MA1433.1.pwm b/profiles/fungi/MA1433.1.pwm
index 2acb42e..119206c 100644
--- a/profiles/fungi/MA1433.1.pwm
+++ b/profiles/fungi/MA1433.1.pwm
@@ -1,8 +1,8 @@
- -7 82 -11 -150
- -564 196 -564 -388
- -10000 190 -10000 -194
- -10000 198 -10000 -450
- -564 183 -10000 -119
- -350 -396 -450 193
- -2 -10000 84 29
- 113 -257 -76 7
+ -7 80 -11 -143
+ -432 193 -432 -337
+ -503 187 -503 -182
+ -503 195 -503 -377
+ -432 179 -503 -114
+ -311 -343 -377 189
+ -2 -503 82 28
+ 111 -237 -73 7
diff --git a/profiles/fungi/MA1434.1.pwm b/profiles/fungi/MA1434.1.pwm
index 4374309..6a10376 100644
--- a/profiles/fungi/MA1434.1.pwm
+++ b/profiles/fungi/MA1434.1.pwm
@@ -1,7 +1,7 @@
- 91 -10000 -10000 109
- 200 -10000 -10000 -10000
- -321 196 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 196 -321 -10000 -10000
- -438 57 11 47
+ 89 -503 -503 106
+ 197 -503 -503 -503
+ -288 193 -503 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ 193 -288 -503 -503
+ -369 56 11 46
diff --git a/profiles/fungi/MA1435.1.pwm b/profiles/fungi/MA1435.1.pwm
index e69de29..bbf7455 100644
--- a/profiles/fungi/MA1435.1.pwm
+++ b/profiles/fungi/MA1435.1.pwm
@@ -0,0 +1,10 @@
+ -24 30 -28 13
+ -377 -172 -377 183
+ -503 197 -503 -503
+ -503 179 -503 -107
+ -503 -107 179 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 197 -503
+ 62 -45 35 -113
+ -7 -7 18 -7
diff --git a/profiles/fungi/MA1436.1.pwm b/profiles/fungi/MA1436.1.pwm
index a0dbcff..ef5a514 100644
--- a/profiles/fungi/MA1436.1.pwm
+++ b/profiles/fungi/MA1436.1.pwm
@@ -1,8 +1,8 @@
- 0 114 -232 -74
- -10000 200 -10000 -10000
- 190 -196 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 12 86 -247 -14
+ 0 111 -215 -71
+ -503 197 -503 -503
+ 187 -184 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ 12 84 -228 -13
diff --git a/profiles/fungi/MA1437.1.pwm b/profiles/fungi/MA1437.1.pwm
index 5c5ab0b..756d954 100644
--- a/profiles/fungi/MA1437.1.pwm
+++ b/profiles/fungi/MA1437.1.pwm
@@ -1,8 +1,8 @@
- 48 85 -132 -132
- -32 168 -10000 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 169 -37
- 132 -26 -159 -159
+ 47 83 -125 -125
+ -31 165 -503 -503
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 166 -36
+ 130 -25 -150 -150
diff --git a/profiles/get-profiles.py b/profiles/get-profiles.py
index fcb4d00..c8d4dda 100755
--- a/profiles/get-profiles.py
+++ b/profiles/get-profiles.py
@@ -39,12 +39,12 @@ def main():
# Get profiles
get_profiles(args.o)
- # Get profile names
- get_profile_names(args.o)
-
- # To PWM
+ # Convert profiles to PWMs
jaspar_to_pwm(args.o)
+ # Get profile names
+ get_names(args.o)
+
def get_profiles(output_dir="./"):
"""
For each taxon, this function downloads all profiles from the JASPAR CORE
@@ -88,7 +88,42 @@ def get_profiles(output_dir="./"):
# Return to original directory
os.chdir(cwd)
-def get_profile_names(output_dir="./"):
+def jaspar_to_pwm(output_dir="./"):
+ """
+ For each taxon, this function reformats all profiles from JASPAR to
+ PWMScan format.
+ """
+
+ # Initialize
+ # perl_script = os.path.join(os.path.dirname(os.path.realpath(__file__)),
+ # "jasparconvert.pl")
+
+ # For each taxon...
+ for taxon in taxons:
+
+ # Initialize
+ taxon_dir = os.path.join(os.path.abspath(output_dir), taxon)
+
+ # For each profile...
+ for f in os.listdir(taxon_dir):
+
+ # Skip non-JASPAR profiles
+ if not f.endswith(".jaspar"):
+ continue
+
+ # JASPAR to PWMScan
+ with open(os.path.join(taxon_dir, f)) as handle:
+ m = motifs.read(handle, "jaspar")
+ m.pseudocounts = motifs.jaspar.calculate_pseudocounts(m)
+ pwm = list(map(list, zip(*[m.pssm[nt] for nt in "ACGT"])))
+ pwm_file = os.path.join(taxon_dir, f"{f[:8]}.pwm")
+ if not os.path.exists(pwm_file):
+ with open(pwm_file, "w") as handle:
+ for i in pwm:
+ s = " ".join(["{:7d}".format(round(j*100)) for j in i])
+ handle.write("%s\n" % s)
+
+def get_names(output_dir="./"):
"""
This function extracts the name of each JASPAR profile and saves them
in a JSON file.
@@ -127,65 +162,6 @@ def get_profile_names(output_dir="./"):
with open(json_file, "w") as handle:
json.dump(names, handle, sort_keys=True, indent=4)
-def jaspar_to_pwm(output_dir="./"):
- """
- For each taxon, this function reformats all profiles from JASPAR to
- PWMScan format.
- """
-
- # Initialize
- perl_script = os.path.join(os.path.dirname(os.path.realpath(__file__)),
- "jasparconvert.pl")
-
- # For each taxon...
- for taxon in taxons:
-
- # Initialize
- taxon_dir = os.path.join(os.path.abspath(output_dir), taxon)
-
- # For each profile...
- for f in os.listdir(taxon_dir):
-
- # Skip non-JASPAR profiles
- if not f.endswith(".jaspar"):
- continue
-
- # JASPAR to PWMScan
- matrix_file = os.path.join(taxon_dir, f)
- pwm_file = os.path.join(taxon_dir, f"{f[:8]}.pwm")
- options = f"-noheader -o {pwm_file} -w l"
- cmd = f"{perl_script} {options} {matrix_file}"
- _ = sp.run([cmd], stdout=sp.DEVNULL, stderr=sp.DEVNULL, shell=True)
-
-def jaspar_to_pwm(output_dir="./"):
- """
- For each taxon, this function reformats all profiles from JASPAR to
- PWMScan format.
- """
-
- # Initialize
- perl_script = os.path.join(os.path.dirname(os.path.realpath(__file__)),
- "jasparconvert.pl")
- taxons = ["fungi", "insects", "nematodes", "plants", "urochordates",
- "vertebrates"]
-
- # For each taxon...
- for taxon in taxons:
-
- # Initialize
- taxon_dir = os.path.join(os.path.abspath(output_dir), taxon)
-
- # For each profile...
- for f in os.listdir(taxon_dir):
-
- # JASPAR to PWMScan
- matrix_file = os.path.join(taxon_dir, f)
- pwm_file = os.path.join(taxon_dir, f"{f[:8]}.pwm")
- if not os.path.exists(pwm_file):
- options = f"-noheader -o {pwm_file} -w l"
- cmd = f"{perl_script} {options} {matrix_file}"
- sp.run([cmd], stdout=sp.DEVNULL, stderr=sp.DEVNULL, shell=True)
-
#-------------#
# Main #
#-------------#
diff --git a/profiles/insects/MA0010.1.pwm b/profiles/insects/MA0010.1.pwm
index e69de29..b6313e6 100644
--- a/profiles/insects/MA0010.1.pwm
+++ b/profiles/insects/MA0010.1.pwm
@@ -0,0 +1,14 @@
+ 32 -78 66 -78
+ -78 -78 -78 117
+ 94 -13 -78 -78
+ 137 -200 -78 -78
+ 32 -200 -200 117
+ 117 -200 -200 32
+ 66 -78 66 -200
+ 137 -200 -78 -78
+ -78 154 -200 -200
+ 170 -200 -200 -200
+ 154 -200 -78 -200
+ 94 -200 32 -78
+ 66 -200 -200 94
+ -13 32 -13 -13
diff --git a/profiles/insects/MA0011.1.pwm b/profiles/insects/MA0011.1.pwm
index eeaf929..4362572 100644
--- a/profiles/insects/MA0011.1.pwm
+++ b/profiles/insects/MA0011.1.pwm
@@ -1,8 +1,8 @@
- 0 -158 -158 122
- 74 -58 -158 42
- -10000 174 -10000 -58
- -10000 -158 -10000 187
- 200 -10000 -10000 -10000
- -158 -158 -58 142
- -58 -10000 -158 158
- -158 -58 -158 142
+ 0 -105 -105 102
+ 60 -43 -105 33
+ -216 149 -216 -43
+ -216 -105 -216 162
+ 173 -216 -216 -216
+ -105 -105 -43 120
+ -43 -216 -105 135
+ -105 -43 -105 120
diff --git a/profiles/insects/MA0012.1.pwm b/profiles/insects/MA0012.1.pwm
index c04e442..825e665 100644
--- a/profiles/insects/MA0012.1.pwm
+++ b/profiles/insects/MA0012.1.pwm
@@ -1,11 +1,11 @@
- 0 -158 -158 122
- 158 -58 -158 -10000
- 174 -10000 -10000 -58
- 200 -10000 -10000 -10000
- -10000 174 -158 -158
- 42 -10000 -10000 142
- 174 -10000 -10000 -58
- 100 -10000 42 -58
- 100 -158 -58 0
- 42 0 -58 0
- -58 0 74 -58
+ 0 -105 -105 102
+ 135 -43 -105 -216
+ 149 -216 -216 -43
+ 173 -216 -216 -216
+ -216 149 -105 -105
+ 33 -216 -216 120
+ 149 -216 -216 -43
+ 83 -216 33 -43
+ 83 -105 -43 0
+ 33 0 -43 0
+ -43 0 60 -43
diff --git a/profiles/insects/MA0013.1.pwm b/profiles/insects/MA0013.1.pwm
index ac0cbbd..3919e5a 100644
--- a/profiles/insects/MA0013.1.pwm
+++ b/profiles/insects/MA0013.1.pwm
@@ -1,11 +1,11 @@
- -58 -58 -10000 142
- 142 -10000 -10000 42
- 42 -10000 142 -10000
- -58 -10000 -10000 174
- 174 -10000 -58 -10000
- 200 -10000 -10000 -10000
- 174 -10000 -58 -10000
- -58 100 -58 -58
- 100 -10000 -58 42
- 174 -10000 -10000 -58
- 100 -58 -10000 42
+ -39 -39 -179 113
+ 113 -179 -179 31
+ 31 -179 113 -179
+ -39 -179 -179 141
+ 141 -179 -39 -179
+ 165 -179 -179 -179
+ 141 -179 -39 -179
+ -39 77 -39 -39
+ 77 -179 -39 31
+ 141 -179 -179 -39
+ 77 -39 -179 31
diff --git a/profiles/insects/MA0015.1.pwm b/profiles/insects/MA0015.1.pwm
index e69de29..9f14de5 100644
--- a/profiles/insects/MA0015.1.pwm
+++ b/profiles/insects/MA0015.1.pwm
@@ -0,0 +1,10 @@
+ 29 -55 93 -239
+ -278 -239 -278 181
+ 178 -239 -183 -331
+ -331 -98 -183 164
+ 185 -239 -331 -331
+ -278 -183 -278 178
+ 96 -239 78 -278
+ -239 -98 -278 166
+ 131 -209 0 -183
+ -64 49 -37 24
diff --git a/profiles/insects/MA0016.1.pwm b/profiles/insects/MA0016.1.pwm
index 0a5a6c4..4e9e6d6 100644
--- a/profiles/insects/MA0016.1.pwm
+++ b/profiles/insects/MA0016.1.pwm
@@ -1,10 +1,10 @@
- -10000 -325 196 -10000
- -325 -10000 192 -325
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 192 -325 -325
- 188 -10000 -166 -10000
- -93 140 -166 -93
- -93 -25 121 -166
- -66 7 75 -66
+ -284 -212 180 -284
+ -212 -284 177 -212
+ -284 -284 184 -284
+ -284 -284 184 -284
+ -284 -284 -284 184
+ -284 177 -212 -212
+ 173 -284 -128 -284
+ -76 127 -128 -76
+ -76 -21 109 -128
+ -55 6 67 -55
diff --git a/profiles/insects/MA0022.1.pwm b/profiles/insects/MA0022.1.pwm
index 25d2b63..2986d42 100644
--- a/profiles/insects/MA0022.1.pwm
+++ b/profiles/insects/MA0022.1.pwm
@@ -1,12 +1,12 @@
- -10000 62 88 -70
- -10000 -10000 188 -170
- -10000 -170 176 -170
- -10000 -10000 162 -12
- -170 -170 -12 130
- -170 -10000 -70 162
- -170 -10000 -10000 188
- -10000 -10000 -10000 200
- -10000 -12 -10000 162
- -170 147 -10000 -12
- -170 147 -170 -70
- -12 62 62 -10000
+ -220 51 73 -52
+ -220 -220 164 -113
+ -220 -113 152 -113
+ -220 -220 139 -9
+ -113 -113 -9 110
+ -113 -220 -52 139
+ -113 -220 -220 164
+ -220 -220 -220 174
+ -220 -9 -220 139
+ -113 125 -220 -9
+ -113 125 -113 -52
+ -9 51 51 -220
diff --git a/profiles/insects/MA0023.1.pwm b/profiles/insects/MA0023.1.pwm
index 9e62850..c22c543 100644
--- a/profiles/insects/MA0023.1.pwm
+++ b/profiles/insects/MA0023.1.pwm
@@ -1,10 +1,10 @@
- -10000 -117 164 -117
- -10000 -10000 164 -17
- -10000 -10000 200 -10000
- -10000 -10000 183 -117
- 83 -117 -10000 83
- -17 -117 -10000 142
- -10000 -10000 -10000 200
- -10000 -117 -10000 183
- -10000 200 -10000 -10000
- -117 183 -10000 -10000
+ -200 -78 137 -78
+ -200 -200 137 -13
+ -200 -200 170 -200
+ -200 -200 154 -78
+ 66 -78 -200 66
+ -13 -78 -200 117
+ -200 -200 -200 170
+ -200 -78 -200 154
+ -200 170 -200 -200
+ -78 154 -200 -200
diff --git a/profiles/insects/MA0026.1.pwm b/profiles/insects/MA0026.1.pwm
index f092fdc..a457831 100644
--- a/profiles/insects/MA0026.1.pwm
+++ b/profiles/insects/MA0026.1.pwm
@@ -1,7 +1,7 @@
- -109 150 -109 -209
- 23 150 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 23 -209 123 -209
+ -80 130 -80 -138
+ 19 130 -236 -236
+ -236 -236 177 -236
+ -236 -236 177 -236
+ 177 -236 -236 -236
+ 177 -236 -236 -236
+ 19 -138 106 -138
diff --git a/profiles/insects/MA0049.1.pwm b/profiles/insects/MA0049.1.pwm
index e69de29..ff96727 100644
--- a/profiles/insects/MA0049.1.pwm
+++ b/profiles/insects/MA0049.1.pwm
@@ -0,0 +1,10 @@
+ -132 26 85 -74
+ 49 85 -74 -232
+ 100 -32 0 -232
+ 0 -32 -132 85
+ 149 -132 -232 -74
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ 158 -232 -74 -232
+ 168 -132 -232 -232
+ 100 -74 -74 -32
diff --git a/profiles/insects/MA0085.1.pwm b/profiles/insects/MA0085.1.pwm
index e69de29..bc09c51 100644
--- a/profiles/insects/MA0085.1.pwm
+++ b/profiles/insects/MA0085.1.pwm
@@ -0,0 +1,16 @@
+ -88 20 20 20
+ -206 54 -206 105
+ -206 -206 171 -206
+ -206 -206 -206 171
+ -206 -206 171 -206
+ 20 -206 124 -206
+ -206 -206 171 -206
+ 171 -206 -206 -206
+ 171 -206 -206 -206
+ 82 82 -206 -206
+ -88 124 -88 -88
+ -88 -24 54 20
+ 54 -24 -24 -24
+ 20 -88 54 -24
+ 54 20 -24 -88
+ -24 -88 -24 82
diff --git a/profiles/insects/MA0086.1.pwm b/profiles/insects/MA0086.1.pwm
index e69de29..503ee26 100644
--- a/profiles/insects/MA0086.1.pwm
+++ b/profiles/insects/MA0086.1.pwm
@@ -0,0 +1,6 @@
+ -287 181 -217 -287
+ 181 -287 -287 -217
+ -134 -287 174 -287
+ -169 -287 177 -287
+ -287 -287 -287 184
+ -287 -287 177 -169
diff --git a/profiles/insects/MA0086.2.pwm b/profiles/insects/MA0086.2.pwm
index 57b691e..614bd69 100644
--- a/profiles/insects/MA0086.2.pwm
+++ b/profiles/insects/MA0086.2.pwm
@@ -1,13 +1,13 @@
- -5 -32 31 0
- -97 37 8 18
- 86 -213 63 -129
- 174 -516 -113 -251
- -564 198 -538 -564
- 198 -597 -516 -564
- -152 -597 185 -538
- -564 -597 198 -564
- -564 -597 -516 198
- -465 -565 196 -465
- -257 86 -44 35
- 110 -85 -77 -48
- 21 -4 -12 -8
+ -5 -31 30 0
+ -92 36 8 18
+ 84 -199 61 -123
+ 171 -411 -108 -231
+ -432 194 -421 -432
+ 194 -444 -411 -432
+ -144 -444 182 -421
+ -432 -444 195 -432
+ -432 -444 -411 194
+ -385 -432 193 -385
+ -237 84 -43 34
+ 107 -81 -74 -46
+ 21 -3 -12 -8
diff --git a/profiles/insects/MA0094.1.pwm b/profiles/insects/MA0094.1.pwm
index e69de29..7a24768 100644
--- a/profiles/insects/MA0094.1.pwm
+++ b/profiles/insects/MA0094.1.pwm
@@ -0,0 +1,4 @@
+ -219 -338 -338 184
+ 161 -194 -219 -110
+ 174 -286 -154 -249
+ -286 -173 -194 172
diff --git a/profiles/insects/MA0094.2.pwm b/profiles/insects/MA0094.2.pwm
index c7f1b27..b73c223 100644
--- a/profiles/insects/MA0094.2.pwm
+++ b/profiles/insects/MA0094.2.pwm
@@ -1,8 +1,8 @@
- -74 0 -74 85
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 177 -10000 -10000 -74
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 26 149
- 149 -10000 26 -10000
+ -57 0 -57 73
+ -245 -245 -245 179
+ -245 -245 -245 179
+ 157 -245 -245 -57
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 -245 22 131
+ 131 -245 22 -245
diff --git a/profiles/insects/MA0126.1.pwm b/profiles/insects/MA0126.1.pwm
index 99ee553..28b08ab 100644
--- a/profiles/insects/MA0126.1.pwm
+++ b/profiles/insects/MA0126.1.pwm
@@ -1,9 +1,9 @@
- 93 -39 -10000 42
- -239 -39 142 -139
- -39 -139 -139 131
- 193 -10000 -10000 -239
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 42 -7 -81 19
- -10000 -10000 200 -10000
- -7 -39 -139 93
+ 80 -31 -248 35
+ -158 -31 124 -102
+ -31 -102 -102 115
+ 173 -248 -248 -158
+ 179 -248 -248 -248
+ -248 179 -248 -248
+ 35 -6 -63 16
+ -248 -248 179 -248
+ -6 -31 -102 80
diff --git a/profiles/insects/MA0165.1.pwm b/profiles/insects/MA0165.1.pwm
index e69de29..a6362ce 100644
--- a/profiles/insects/MA0165.1.pwm
+++ b/profiles/insects/MA0165.1.pwm
@@ -0,0 +1,7 @@
+ -158 -248 -248 173
+ -248 -248 -248 179
+ -6 -248 -248 142
+ 179 -248 -248 -248
+ -248 -63 -248 158
+ -63 -248 93 35
+ 115 -248 -6 -63
diff --git a/profiles/insects/MA0166.1.pwm b/profiles/insects/MA0166.1.pwm
index e69de29..7ea429a 100644
--- a/profiles/insects/MA0166.1.pwm
+++ b/profiles/insects/MA0166.1.pwm
@@ -0,0 +1,7 @@
+ -132 -132 -232 158
+ -232 -232 -232 177
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 -232 177
+ -232 -232 100 68
+ 168 -232 -132 -232
diff --git a/profiles/insects/MA0167.1.pwm b/profiles/insects/MA0167.1.pwm
index e69de29..66ace2c 100644
--- a/profiles/insects/MA0167.1.pwm
+++ b/profiles/insects/MA0167.1.pwm
@@ -0,0 +1,7 @@
+ -134 60 -287 96
+ -217 -287 -287 181
+ 158 -287 -43 -287
+ 184 -287 -287 -287
+ -287 -287 -217 181
+ -287 -287 -27 154
+ 162 -287 -105 -169
diff --git a/profiles/insects/MA0168.1.pwm b/profiles/insects/MA0168.1.pwm
index e69de29..d446c2c 100644
--- a/profiles/insects/MA0168.1.pwm
+++ b/profiles/insects/MA0168.1.pwm
@@ -0,0 +1,7 @@
+ -31 -31 -248 115
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ 52 -248 -248 115
+ -158 35 -248 115
+ -158 -248 173 -248
diff --git a/profiles/insects/MA0169.1.pwm b/profiles/insects/MA0169.1.pwm
index e69de29..7125665 100644
--- a/profiles/insects/MA0169.1.pwm
+++ b/profiles/insects/MA0169.1.pwm
@@ -0,0 +1,7 @@
+ 16 -102 -158 104
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -6 -248 -248 142
+ -63 -158 -102 134
+ -248 -248 179 -248
diff --git a/profiles/insects/MA0170.1.pwm b/profiles/insects/MA0170.1.pwm
index cc313a5..d60acb5 100644
--- a/profiles/insects/MA0170.1.pwm
+++ b/profiles/insects/MA0170.1.pwm
@@ -1,7 +1,7 @@
- -225 -225 -10000 184
- -10000 -10000 -10000 200
- 184 -10000 -10000 -125
- 200 -10000 -10000 -10000
- 34 -125 -10000 121
- -10000 -66 34 107
- 107 -10000 92 -10000
+ -148 -148 -242 163
+ -242 -242 -242 178
+ 163 -242 -242 -92
+ 178 -242 -242 -242
+ 28 -92 -242 105
+ -242 -51 28 93
+ 93 -242 79 -242
diff --git a/profiles/insects/MA0171.1.pwm b/profiles/insects/MA0171.1.pwm
index e69de29..3b945c0 100644
--- a/profiles/insects/MA0171.1.pwm
+++ b/profiles/insects/MA0171.1.pwm
@@ -0,0 +1,7 @@
+ -220 -9 -220 139
+ -220 -220 -220 174
+ 174 -220 -220 -220
+ 174 -220 -220 -220
+ -113 -220 -220 164
+ -52 -113 -52 110
+ -113 -220 164 -220
diff --git a/profiles/insects/MA0172.1.pwm b/profiles/insects/MA0172.1.pwm
index e69de29..519cdbc 100644
--- a/profiles/insects/MA0172.1.pwm
+++ b/profiles/insects/MA0172.1.pwm
@@ -0,0 +1,7 @@
+ -228 -25 -228 146
+ -228 -67 -228 157
+ 176 -228 -228 -228
+ 176 -228 -228 -228
+ -228 -228 -228 176
+ -228 -228 -228 176
+ 176 -228 -228 -228
diff --git a/profiles/insects/MA0173.1.pwm b/profiles/insects/MA0173.1.pwm
index 1eb01b4..9fa2a7e 100644
--- a/profiles/insects/MA0173.1.pwm
+++ b/profiles/insects/MA0173.1.pwm
@@ -1,7 +1,7 @@
- -209 -10000 -10000 191
- -10000 -10000 -10000 200
- 123 -10000 -50 -9
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
+ -138 -236 -236 169
+ -236 -236 -236 177
+ 106 -236 -39 -7
+ 177 -236 -236 -236
+ -236 177 -236 -236
+ 177 -236 -236 -236
+ -236 -236 -236 177
diff --git a/profiles/insects/MA0174.1.pwm b/profiles/insects/MA0174.1.pwm
index e69de29..bd08d05 100644
--- a/profiles/insects/MA0174.1.pwm
+++ b/profiles/insects/MA0174.1.pwm
@@ -0,0 +1,7 @@
+ -74 -232 -232 158
+ -74 -232 -232 158
+ 49 -232 -74 85
+ 177 -232 -232 -232
+ -232 -232 -232 177
+ -232 -74 49 85
+ 149 -232 -32 -232
diff --git a/profiles/insects/MA0175.1.pwm b/profiles/insects/MA0175.1.pwm
index 5c183b9..e6ac8bf 100644
--- a/profiles/insects/MA0175.1.pwm
+++ b/profiles/insects/MA0175.1.pwm
@@ -1,7 +1,7 @@
- -139 42 -239 107
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -81 -10000 -39 142
- 61 -10000 131 -10000
+ -102 35 -158 93
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -248 179
+ -63 -248 -31 124
+ 52 -248 115 -248
diff --git a/profiles/insects/MA0176.1.pwm b/profiles/insects/MA0176.1.pwm
index a81a562..f9e7995 100644
--- a/profiles/insects/MA0176.1.pwm
+++ b/profiles/insects/MA0176.1.pwm
@@ -1,7 +1,7 @@
- -200 -142 -142 158
- -200 -142 -10000 175
- 139 -10000 -42 -68
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -200 191
- 100 -10000 100 -10000
+ -146 -109 -109 143
+ -146 -109 -273 159
+ 125 -273 -34 -55
+ 183 -273 -273 -273
+ -273 -273 -273 183
+ -273 -273 -146 174
+ 89 -273 89 -273
diff --git a/profiles/insects/MA0177.1.pwm b/profiles/insects/MA0177.1.pwm
index 3fcd7b1..a458c8a 100644
--- a/profiles/insects/MA0177.1.pwm
+++ b/profiles/insects/MA0177.1.pwm
@@ -1,7 +1,7 @@
- -64 68 -264 68
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -264 36 136
- 188 -10000 -164 -10000
+ -51 58 -174 58
+ -258 -258 -258 181
+ 181 -258 -258 -258
+ 181 -258 -258 -258
+ -258 -258 -258 181
+ -258 -174 30 120
+ 169 -258 -121 -258
diff --git a/profiles/insects/MA0178.1.pwm b/profiles/insects/MA0178.1.pwm
index bef13ff..9e9bb79 100644
--- a/profiles/insects/MA0178.1.pwm
+++ b/profiles/insects/MA0178.1.pwm
@@ -1,7 +1,7 @@
- -125 -25 -10000 145
- -125 -10000 -10000 184
- 184 -10000 -10000 -125
- 200 -10000 -10000 -10000
- -10000 -10000 -225 192
- -10000 -10000 -225 192
- 166 -10000 -25 -10000
+ -92 -20 -242 127
+ -92 -242 -242 163
+ 163 -242 -242 -92
+ 178 -242 -242 -242
+ -242 -242 -148 171
+ -242 -242 -148 171
+ 146 -242 -20 -242
diff --git a/profiles/insects/MA0179.1.pwm b/profiles/insects/MA0179.1.pwm
index e69de29..c6ec809 100644
--- a/profiles/insects/MA0179.1.pwm
+++ b/profiles/insects/MA0179.1.pwm
@@ -0,0 +1,7 @@
+ -112 5 -112 103
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -254 -254 180
+ -254 -254 -112 168
+ 93 -254 69 -166
diff --git a/profiles/insects/MA0180.1.pwm b/profiles/insects/MA0180.1.pwm
index 91bb69c..1789708 100644
--- a/profiles/insects/MA0180.1.pwm
+++ b/profiles/insects/MA0180.1.pwm
@@ -1,9 +1,9 @@
- -170 -170 62 88
- -70 -70 -10000 147
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 162 -10000 -12 -10000
- -170 -70 162 -10000
+ -113 -113 51 73
+ -52 -52 -220 125
+ -220 -220 -220 174
+ 174 -220 -220 -220
+ 174 -220 -220 -220
+ -220 -220 -220 174
+ -220 -220 -220 174
+ 139 -220 -9 -220
+ -113 -52 139 -220
diff --git a/profiles/insects/MA0181.1.pwm b/profiles/insects/MA0181.1.pwm
index 2124bb9..c924018 100644
--- a/profiles/insects/MA0181.1.pwm
+++ b/profiles/insects/MA0181.1.pwm
@@ -1,7 +1,7 @@
- -246 54 -246 113
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -146 -10000 -87 163
- 145 -10000 13 -246
+ -162 46 -162 98
+ -251 -251 -251 180
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -251 -251 -251 180
+ -107 -251 -68 145
+ 128 -251 10 -162
diff --git a/profiles/insects/MA0182.1.pwm b/profiles/insects/MA0182.1.pwm
index 537d5db..bd12b45 100644
--- a/profiles/insects/MA0182.1.pwm
+++ b/profiles/insects/MA0182.1.pwm
@@ -1,7 +1,7 @@
- 68 -191 -132 79
- -10 -291 -10000 155
- 79 -10000 -10000 118
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -32 168
- 100 -10000 100 -10000
+ 59 -140 -102 70
+ -8 -190 -270 140
+ 70 -270 -270 105
+ 182 -270 -270 -270
+ -270 -270 -270 182
+ -270 -270 -27 152
+ 88 -270 88 -270
diff --git a/profiles/insects/MA0183.1.pwm b/profiles/insects/MA0183.1.pwm
index e69de29..ac790f1 100644
--- a/profiles/insects/MA0183.1.pwm
+++ b/profiles/insects/MA0183.1.pwm
@@ -0,0 +1,8 @@
+ 9 -86 -125 97
+ -261 9 -261 138
+ -261 -10 9 88
+ 152 -261 -125 -86
+ 181 -261 -261 -261
+ -261 -86 -86 145
+ 9 -261 -177 131
+ 158 -261 -56 -261
diff --git a/profiles/insects/MA0184.1.pwm b/profiles/insects/MA0184.1.pwm
index 1c08825..e5486dd 100644
--- a/profiles/insects/MA0184.1.pwm
+++ b/profiles/insects/MA0184.1.pwm
@@ -1,7 +1,7 @@
- -132 85 -74 26
- -10000 -10000 -10000 200
- 185 -10000 -10000 -132
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -232 193
- 149 -10000 26 -10000
+ -97 73 -57 22
+ -245 -245 -245 179
+ 164 -245 -245 -97
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 -245 -153 172
+ 131 -245 22 -245
diff --git a/profiles/insects/MA0185.1.pwm b/profiles/insects/MA0185.1.pwm
index e69de29..d11845b 100644
--- a/profiles/insects/MA0185.1.pwm
+++ b/profiles/insects/MA0185.1.pwm
@@ -0,0 +1,6 @@
+ -206 20 -206 124
+ -206 -206 -206 171
+ -206 171 -206 -206
+ -206 -206 171 -206
+ -206 -206 82 82
+ -88 20 54 -24
diff --git a/profiles/insects/MA0186.1.pwm b/profiles/insects/MA0186.1.pwm
index e69de29..74ae84b 100644
--- a/profiles/insects/MA0186.1.pwm
+++ b/profiles/insects/MA0186.1.pwm
@@ -0,0 +1,7 @@
+ -170 -47 -77 125
+ -256 -256 -256 180
+ 180 -256 -256 -256
+ 180 -256 -256 -256
+ -256 -256 -256 180
+ -170 -256 149 -47
+ 162 -256 -77 -256
diff --git a/profiles/insects/MA0187.1.pwm b/profiles/insects/MA0187.1.pwm
index e69de29..7c48321 100644
--- a/profiles/insects/MA0187.1.pwm
+++ b/profiles/insects/MA0187.1.pwm
@@ -0,0 +1,7 @@
+ -166 -254 -254 174
+ 174 -254 -166 -254
+ 180 -254 -254 -254
+ -254 -254 -254 180
+ -73 -254 -73 139
+ 69 -254 55 -42
+ -166 93 -42 5
diff --git a/profiles/insects/MA0188.1.pwm b/profiles/insects/MA0188.1.pwm
index e69de29..5c8161e 100644
--- a/profiles/insects/MA0188.1.pwm
+++ b/profiles/insects/MA0188.1.pwm
@@ -0,0 +1,7 @@
+ -158 115 16 -158
+ -248 142 -248 -6
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -248 179
+ -248 -248 -248 179
+ 179 -248 -248 -248
diff --git a/profiles/insects/MA0189.1.pwm b/profiles/insects/MA0189.1.pwm
index 0d0596b..07a75cc 100644
--- a/profiles/insects/MA0189.1.pwm
+++ b/profiles/insects/MA0189.1.pwm
@@ -1,7 +1,7 @@
- -110 48 -84 66
- -184 -10000 -10000 190
- 200 -10000 -10000 -10000
- 197 -10000 -10000 -343
- -343 -10000 -343 193
- -110 -10000 57 103
- 166 -10000 -26 -10000
+ -90 43 -70 59
+ -142 -292 -292 175
+ 185 -292 -292 -292
+ 182 -292 -292 -223
+ -223 -292 -223 178
+ -90 -292 51 93
+ 152 -292 -22 -292
diff --git a/profiles/insects/MA0190.1.pwm b/profiles/insects/MA0190.1.pwm
index be580a4..f1ff600 100644
--- a/profiles/insects/MA0190.1.pwm
+++ b/profiles/insects/MA0190.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 135 -146 13
+ -251 -251 -251 180
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -251 -251 -251 180
+ -251 180 -251 -251
+ -251 119 -107 10
diff --git a/profiles/insects/MA0191.1.pwm b/profiles/insects/MA0191.1.pwm
index 6af6716..6729add 100644
--- a/profiles/insects/MA0191.1.pwm
+++ b/profiles/insects/MA0191.1.pwm
@@ -1,7 +1,7 @@
- -32 -132 -74 114
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -232 -10000 26 138
- 158 -10000 0 -10000
+ -26 -97 -57 99
+ -245 -245 -245 179
+ 179 -245 -245 -245
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -153 -245 22 121
+ 140 -245 0 -245
diff --git a/profiles/insects/MA0192.1.pwm b/profiles/insects/MA0192.1.pwm
index e69de29..499519f 100644
--- a/profiles/insects/MA0192.1.pwm
+++ b/profiles/insects/MA0192.1.pwm
@@ -0,0 +1,7 @@
+ -153 -57 -245 148
+ -245 -245 -245 179
+ 179 -245 -245 -245
+ 179 -245 -245 -245
+ -153 -245 -245 172
+ -245 -57 -245 157
+ -26 -245 148 -245
diff --git a/profiles/insects/MA0193.1.pwm b/profiles/insects/MA0193.1.pwm
index 1677acf..e906137 100644
--- a/profiles/insects/MA0193.1.pwm
+++ b/profiles/insects/MA0193.1.pwm
@@ -1,7 +1,7 @@
- -10000 200 -10000 -10000
- -10000 92 -10000 107
- 184 -125 -10000 -10000
- -225 192 -10000 -10000
- -10000 134 -10000 56
- 192 -10000 -225 -10000
- 134 -10000 -25 -66
+ -242 178 -242 -242
+ -242 79 -242 93
+ 163 -92 -242 -242
+ -148 171 -242 -242
+ -242 116 -242 47
+ 171 -242 -148 -242
+ 116 -242 -20 -51
diff --git a/profiles/insects/MA0194.1.pwm b/profiles/insects/MA0194.1.pwm
index e69de29..3b3de50 100644
--- a/profiles/insects/MA0194.1.pwm
+++ b/profiles/insects/MA0194.1.pwm
@@ -0,0 +1,7 @@
+ -239 -86 -239 162
+ -239 -239 -239 178
+ 178 -239 -239 -239
+ 178 -239 -239 -239
+ -239 -239 -239 178
+ -239 -239 -239 178
+ 170 -239 -143 -239
diff --git a/profiles/insects/MA0195.1.pwm b/profiles/insects/MA0195.1.pwm
index e6f8a1a..febd5d7 100644
--- a/profiles/insects/MA0195.1.pwm
+++ b/profiles/insects/MA0195.1.pwm
@@ -1,7 +1,7 @@
- -74 49 -132 68
- -32 -10000 -10000 168
- 168 -10000 -74 -232
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -132 -32 149
- 168 -10000 -32 -10000
+ -57 41 -97 58
+ -26 -245 -245 148
+ 148 -245 -57 -153
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 -97 -26 131
+ 148 -245 -26 -245
diff --git a/profiles/insects/MA0196.1.pwm b/profiles/insects/MA0196.1.pwm
index e69de29..09e0a76 100644
--- a/profiles/insects/MA0196.1.pwm
+++ b/profiles/insects/MA0196.1.pwm
@@ -0,0 +1,7 @@
+ -66 -66 -204 132
+ -279 -279 -279 183
+ 175 -279 -156 -279
+ 183 -279 -279 -279
+ -90 -279 -66 143
+ -45 -279 -27 120
+ 50 -279 120 -279
diff --git a/profiles/insects/MA0197.1.pwm b/profiles/insects/MA0197.1.pwm
index e69de29..4470d8e 100644
--- a/profiles/insects/MA0197.1.pwm
+++ b/profiles/insects/MA0197.1.pwm
@@ -0,0 +1,8 @@
+ -107 -37 29 61
+ 46 -68 -251 87
+ -162 -251 -251 173
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -251 -251 -251 180
+ -107 -68 10 87
+ 128 -162 -162 -11
diff --git a/profiles/insects/MA0197.2.pwm b/profiles/insects/MA0197.2.pwm
index a18a94c..161a5e7 100644
--- a/profiles/insects/MA0197.2.pwm
+++ b/profiles/insects/MA0197.2.pwm
@@ -1,12 +1,12 @@
- -186 -286 -286 179
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 179 -86
- -10000 139 -286 31
- 173 -10000 -10000 -54
- 195 -10000 -286 -10000
- 195 -10000 -10000 -286
- -86 -286 -10000 173
- -27 -54 14 46
- 139 -54 -286 -86
- -86 -127 105 -5
+ -136 -187 -187 162
+ 182 -267 -267 -267
+ -267 -267 -267 182
+ -267 -267 162 -69
+ -267 124 -187 27
+ 156 -267 -267 -44
+ 177 -267 -187 -267
+ 177 -267 -267 -187
+ -69 -187 -267 156
+ -23 -44 12 40
+ 124 -44 -187 -69
+ -69 -98 93 -4
diff --git a/profiles/insects/MA0198.1.pwm b/profiles/insects/MA0198.1.pwm
index e69de29..b48fc3a 100644
--- a/profiles/insects/MA0198.1.pwm
+++ b/profiles/insects/MA0198.1.pwm
@@ -0,0 +1,7 @@
+ -251 87 -37 29
+ -251 -251 -251 180
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -251 -251 -251 180
+ -251 -251 -251 180
+ 109 -251 46 -162
diff --git a/profiles/insects/MA0199.1.pwm b/profiles/insects/MA0199.1.pwm
index e69de29..82b6b1d 100644
--- a/profiles/insects/MA0199.1.pwm
+++ b/profiles/insects/MA0199.1.pwm
@@ -0,0 +1,5 @@
+ -263 -35 -263 153
+ -263 -263 181 -263
+ 181 -263 -263 -263
+ -263 -263 -263 181
+ 176 -263 -181 -263
diff --git a/profiles/insects/MA0200.1.pwm b/profiles/insects/MA0200.1.pwm
index e69de29..78f6354 100644
--- a/profiles/insects/MA0200.1.pwm
+++ b/profiles/insects/MA0200.1.pwm
@@ -0,0 +1,7 @@
+ 16 52 -63 -31
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -248 179
+ -248 -158 -248 173
+ 115 -158 16 -158
diff --git a/profiles/insects/MA0201.1.pwm b/profiles/insects/MA0201.1.pwm
index e69de29..ead9a3e 100644
--- a/profiles/insects/MA0201.1.pwm
+++ b/profiles/insects/MA0201.1.pwm
@@ -0,0 +1,7 @@
+ -245 0 -153 131
+ -245 -245 -245 179
+ 179 -245 -245 -245
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 179 -245 -245
+ -245 172 -245 -153
diff --git a/profiles/insects/MA0202.1.pwm b/profiles/insects/MA0202.1.pwm
index c58864a..cda3e58 100644
--- a/profiles/insects/MA0202.1.pwm
+++ b/profiles/insects/MA0202.1.pwm
@@ -1,7 +1,7 @@
- -117 95 -10000 70
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 133 -10000 57 -10000
+ -90 83 -263 61
+ -263 -263 -263 181
+ 181 -263 -263 -263
+ 181 -263 -263 -263
+ -263 -263 -263 181
+ -263 -263 -263 181
+ 118 -263 49 -263
diff --git a/profiles/insects/MA0203.1.pwm b/profiles/insects/MA0203.1.pwm
index 36463c0..aa2c6b6 100644
--- a/profiles/insects/MA0203.1.pwm
+++ b/profiles/insects/MA0203.1.pwm
@@ -1,7 +1,7 @@
- -106 16 -10000 126
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 153 16
- 188 -10000 -164 -10000
+ -82 14 -258 112
+ -258 -258 -258 181
+ 181 -258 -258 -258
+ 181 -258 -258 -258
+ -258 -258 -258 181
+ -258 -258 136 14
+ 169 -258 -121 -258
diff --git a/profiles/insects/MA0204.1.pwm b/profiles/insects/MA0204.1.pwm
index e69de29..f856c5d 100644
--- a/profiles/insects/MA0204.1.pwm
+++ b/profiles/insects/MA0204.1.pwm
@@ -0,0 +1,6 @@
+ -245 -245 -245 179
+ -245 -245 179 -245
+ 179 -245 -245 -245
+ -245 41 -26 73
+ 179 -245 -245 -245
+ -153 172 -245 -245
diff --git a/profiles/insects/MA0205.1.pwm b/profiles/insects/MA0205.1.pwm
index b9ed3d8..cfc086c 100644
--- a/profiles/insects/MA0205.1.pwm
+++ b/profiles/insects/MA0205.1.pwm
@@ -1,10 +1,10 @@
- -215 31 -98 102
- -156 37 -69 80
- -56 -156 76 37
- -10000 185 -256 -215
- -256 -10000 -34 161
- -415 198 -10000 -10000
- -45 -10000 -315 166
- -183 161 -134 -183
- -134 -45 -69 117
- -98 89 -83 10
+ -170 28 -84 94
+ -129 34 -60 74
+ -49 -129 69 34
+ -324 174 -196 -170
+ -196 -324 -30 150
+ -268 186 -324 -324
+ -39 -324 -227 155
+ -148 150 -112 -148
+ -112 -39 -60 108
+ -84 82 -71 9
diff --git a/profiles/insects/MA0205.2.pwm b/profiles/insects/MA0205.2.pwm
index e69de29..30efefd 100644
--- a/profiles/insects/MA0205.2.pwm
+++ b/profiles/insects/MA0205.2.pwm
@@ -0,0 +1,12 @@
+ 36 -36 64 -141
+ 60 -34 20 -88
+ 125 -149 15 -267
+ 193 -468 -475 -331
+ -396 -454 192 -313
+ 196 -538 -475 -462
+ -582 -489 197 -518
+ 193 -310 -472 -515
+ -342 -513 194 -462
+ 156 -100 -175 -200
+ 14 -144 114 -161
+ 79 -96 34 -104
diff --git a/profiles/insects/MA0206.1.pwm b/profiles/insects/MA0206.1.pwm
index e69de29..14d078e 100644
--- a/profiles/insects/MA0206.1.pwm
+++ b/profiles/insects/MA0206.1.pwm
@@ -0,0 +1,7 @@
+ -143 -45 -239 144
+ -239 -239 -239 178
+ 162 -239 -239 -86
+ 178 -239 -239 -239
+ -143 -239 -239 170
+ -239 -239 34 123
+ 153 -143 -86 -239
diff --git a/profiles/insects/MA0207.1.pwm b/profiles/insects/MA0207.1.pwm
index e69de29..65bed2e 100644
--- a/profiles/insects/MA0207.1.pwm
+++ b/profiles/insects/MA0207.1.pwm
@@ -0,0 +1,6 @@
+ -256 -256 -256 180
+ -256 -256 180 -256
+ 180 -256 -256 -256
+ -256 174 -256 -167
+ 180 -256 -256 -256
+ -38 -221 128 -77
diff --git a/profiles/insects/MA0208.1.pwm b/profiles/insects/MA0208.1.pwm
index dc20931..bb4b1f6 100644
--- a/profiles/insects/MA0208.1.pwm
+++ b/profiles/insects/MA0208.1.pwm
@@ -1,7 +1,7 @@
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 177 -10000 -74 -10000
- 185 -10000 -132 -10000
+ -245 -245 -245 179
+ 179 -245 -245 -245
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 -245 -245 179
+ 157 -245 -57 -245
+ 164 -245 -97 -245
diff --git a/profiles/insects/MA0209.1.pwm b/profiles/insects/MA0209.1.pwm
index e69de29..8af046f 100644
--- a/profiles/insects/MA0209.1.pwm
+++ b/profiles/insects/MA0209.1.pwm
@@ -0,0 +1,7 @@
+ -92 93 -242 47
+ -148 -242 -242 171
+ 178 -242 -242 -242
+ 178 -242 -242 -242
+ -242 -242 -242 178
+ -242 -242 28 127
+ 155 -242 -51 -242
diff --git a/profiles/insects/MA0210.1.pwm b/profiles/insects/MA0210.1.pwm
index 730f46b..1284696 100644
--- a/profiles/insects/MA0210.1.pwm
+++ b/profiles/insects/MA0210.1.pwm
@@ -1,5 +1,5 @@
- 72 -10000 -77 82
- 144 -10000 -10000 37
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
+ 63 -277 -62 72
+ 130 -277 -277 32
+ 183 -277 -277 -277
+ -277 183 -277 -277
+ 183 -277 -277 -277
diff --git a/profiles/insects/MA0211.1.pwm b/profiles/insects/MA0211.1.pwm
index e69de29..0a0045a 100644
--- a/profiles/insects/MA0211.1.pwm
+++ b/profiles/insects/MA0211.1.pwm
@@ -0,0 +1,7 @@
+ -254 -254 -166 174
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -254 180 -254
+ -166 -254 -254 174
+ 24 -254 131 -254
diff --git a/profiles/insects/MA0212.1.pwm b/profiles/insects/MA0212.1.pwm
index 7ae3699..410b928 100644
--- a/profiles/insects/MA0212.1.pwm
+++ b/profiles/insects/MA0212.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- 186 -10000 -10000 -146
- 200 -10000 -10000 -10000
- -10000 -10000 -246 193
- -10000 200 -10000 -10000
- -10000 193 -10000 -246
+ -251 -251 -251 180
+ 167 -251 -251 -107
+ 180 -251 -251 -251
+ -251 -251 -162 173
+ -251 180 -251 -251
+ -251 173 -251 -162
diff --git a/profiles/insects/MA0213.1.pwm b/profiles/insects/MA0213.1.pwm
index e69de29..6b47b7a 100644
--- a/profiles/insects/MA0213.1.pwm
+++ b/profiles/insects/MA0213.1.pwm
@@ -0,0 +1,8 @@
+ -88 82 54 -206
+ -206 54 -206 105
+ -206 -206 171 -206
+ -206 -206 171 -206
+ -206 171 -206 -206
+ -88 -206 157 -206
+ -88 142 -206 -88
+ -206 82 -88 54
diff --git a/profiles/insects/MA0214.1.pwm b/profiles/insects/MA0214.1.pwm
index 16f48fb..093ae5e 100644
--- a/profiles/insects/MA0214.1.pwm
+++ b/profiles/insects/MA0214.1.pwm
@@ -1,7 +1,7 @@
- -200 -42 -100 132
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -200 -10000 191
- -10000 -42 58 81
- 81 -10000 117 -10000
+ -132 -32 -74 114
+ -232 -232 -232 177
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -132 -232 168
+ -232 -32 49 68
+ 68 -232 100 -232
diff --git a/profiles/insects/MA0215.1.pwm b/profiles/insects/MA0215.1.pwm
index e69de29..b6b4441 100644
--- a/profiles/insects/MA0215.1.pwm
+++ b/profiles/insects/MA0215.1.pwm
@@ -0,0 +1,7 @@
+ -16 -166 -42 103
+ -254 -254 -254 180
+ 174 -254 -166 -254
+ 180 -254 -254 -254
+ -254 -166 -254 174
+ -254 -254 122 40
+ 154 -254 -73 -166
diff --git a/profiles/insects/MA0216.1.pwm b/profiles/insects/MA0216.1.pwm
index e69de29..75e4fe4 100644
--- a/profiles/insects/MA0216.1.pwm
+++ b/profiles/insects/MA0216.1.pwm
@@ -0,0 +1,7 @@
+ -128 -164 -128 151
+ -212 -284 -284 180
+ -21 -284 -164 142
+ 180 -284 -212 -284
+ -128 -284 -284 173
+ -128 -284 -7 132
+ 82 -284 90 -212
diff --git a/profiles/insects/MA0216.2.pwm b/profiles/insects/MA0216.2.pwm
index e69de29..6418487 100644
--- a/profiles/insects/MA0216.2.pwm
+++ b/profiles/insects/MA0216.2.pwm
@@ -0,0 +1,11 @@
+ 56 -561 97 -89
+ 0 -74 125 -561
+ -561 134 -561 50
+ 37 134 -561 -263
+ 186 -561 -157 -561
+ -561 -246 -561 192
+ 194 -561 -561 -290
+ 198 -561 -561 -561
+ 198 -561 -561 -561
+ 149 -221 -189 -50
+ 85 38 -561 -19
diff --git a/profiles/insects/MA0217.1.pwm b/profiles/insects/MA0217.1.pwm
index 0ab2c3d..dbc0f2c 100644
--- a/profiles/insects/MA0217.1.pwm
+++ b/profiles/insects/MA0217.1.pwm
@@ -1,5 +1,5 @@
- -25 -225 -125 134
- 156 -10000 -125 -66
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
+ -20 -148 -92 116
+ 137 -242 -92 -51
+ 178 -242 -242 -242
+ -242 178 -242 -242
+ 178 -242 -242 -242
diff --git a/profiles/insects/MA0218.1.pwm b/profiles/insects/MA0218.1.pwm
index fba0c3d..3235bc3 100644
--- a/profiles/insects/MA0218.1.pwm
+++ b/profiles/insects/MA0218.1.pwm
@@ -1,6 +1,6 @@
- -10000 26 -10000 149
- -232 -132 -10000 177
- 85 -10000 114 -10000
- 200 -10000 -10000 -10000
- 177 -10000 -232 -132
- -10000 193 -232 -10000
+ -245 22 -245 131
+ -153 -97 -245 157
+ 73 -245 99 -245
+ 179 -245 -245 -245
+ 157 -245 -153 -97
+ -245 172 -153 -245
diff --git a/profiles/insects/MA0219.1.pwm b/profiles/insects/MA0219.1.pwm
index 06b072f..6996243 100644
--- a/profiles/insects/MA0219.1.pwm
+++ b/profiles/insects/MA0219.1.pwm
@@ -1,7 +1,7 @@
- -74 49 -232 85
- -74 -10000 -10000 177
- 193 -10000 -10000 -232
- 193 -10000 -232 -10000
- -10000 -10000 -10000 200
- -10000 -232 100 85
- 149 -10000 26 -10000
+ -57 41 -153 73
+ -57 -245 -245 157
+ 172 -245 -245 -153
+ 172 -245 -153 -245
+ -245 -245 -245 179
+ -245 -153 86 73
+ 131 -245 22 -245
diff --git a/profiles/insects/MA0220.1.pwm b/profiles/insects/MA0220.1.pwm
index f8775fa..2a8b96b 100644
--- a/profiles/insects/MA0220.1.pwm
+++ b/profiles/insects/MA0220.1.pwm
@@ -1,7 +1,7 @@
- -152 48 -152 94
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -152 187
- 118 -10000 80 -10000
+ -112 40 -112 81
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -254 -254 180
+ -254 -254 -112 168
+ 103 -254 69 -254
diff --git a/profiles/insects/MA0221.1.pwm b/profiles/insects/MA0221.1.pwm
index 49d27d6..71a507f 100644
--- a/profiles/insects/MA0221.1.pwm
+++ b/profiles/insects/MA0221.1.pwm
@@ -1,7 +1,7 @@
- -87 86 -10000 71
- -246 -10000 -10000 193
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -146 -246 179
- -10000 -146 100 71
- 163 -10000 -46 -246
+ -68 74 -251 61
+ -162 -251 -251 173
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -251 -107 -162 160
+ -251 -107 87 61
+ 145 -251 -37 -162
diff --git a/profiles/insects/MA0222.1.pwm b/profiles/insects/MA0222.1.pwm
index e69de29..978e3ab 100644
--- a/profiles/insects/MA0222.1.pwm
+++ b/profiles/insects/MA0222.1.pwm
@@ -0,0 +1,8 @@
+ -7 -7 -7 19
+ -138 -236 -80 151
+ -236 -236 -236 177
+ -236 -236 -236 177
+ -236 -236 177 -236
+ 177 -236 -236 -236
+ -236 130 -236 19
+ 119 -236 41 -236
diff --git a/profiles/insects/MA0224.1.pwm b/profiles/insects/MA0224.1.pwm
index 4ca490c..6b91fc9 100644
--- a/profiles/insects/MA0224.1.pwm
+++ b/profiles/insects/MA0224.1.pwm
@@ -1,7 +1,7 @@
- -10000 28 80 6
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -252 -252 -10000 187
- 180 -10000 -94 -10000
+ -254 24 69 5
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -254 -254 180
+ -166 -166 -254 168
+ 161 -254 -73 -254
diff --git a/profiles/insects/MA0225.1.pwm b/profiles/insects/MA0225.1.pwm
index 30977ba..586fe5a 100644
--- a/profiles/insects/MA0225.1.pwm
+++ b/profiles/insects/MA0225.1.pwm
@@ -1,7 +1,7 @@
- -217 -117 -10000 174
- -217 -10000 -10000 192
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 100 100
- 164 -10000 -17 -10000
+ -143 -86 -239 153
+ -143 -239 -239 170
+ 178 -239 -239 -239
+ 178 -239 -239 -239
+ -239 -239 -239 178
+ -239 -239 86 86
+ 144 -239 -14 -239
diff --git a/profiles/insects/MA0226.1.pwm b/profiles/insects/MA0226.1.pwm
index e69de29..b9cc77f 100644
--- a/profiles/insects/MA0226.1.pwm
+++ b/profiles/insects/MA0226.1.pwm
@@ -0,0 +1,7 @@
+ -80 -80 -80 119
+ -236 -236 -236 177
+ 177 -236 -236 -236
+ 177 -236 -236 -236
+ -236 -236 -236 177
+ -236 -236 -236 177
+ 93 -236 60 -138
diff --git a/profiles/insects/MA0227.1.pwm b/profiles/insects/MA0227.1.pwm
index d777510..2004049 100644
--- a/profiles/insects/MA0227.1.pwm
+++ b/profiles/insects/MA0227.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 172 -10000 -50 -10000
- -10000 -10000 142 42
+ -239 -239 -239 178
+ -239 -239 178 -239
+ 178 -239 -239 -239
+ -239 178 -239 -239
+ 151 -239 -39 -239
+ -199 -199 117 32
diff --git a/profiles/insects/MA0228.1.pwm b/profiles/insects/MA0228.1.pwm
index a550ee5..8c55833 100644
--- a/profiles/insects/MA0228.1.pwm
+++ b/profiles/insects/MA0228.1.pwm
@@ -1,7 +1,7 @@
- -10000 119 -10000 78
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -239 193
- -10000 -10000 61 131
- 186 -10000 -139 -10000
+ -248 104 -248 67
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -158 173
+ -248 -248 52 115
+ 166 -248 -102 -248
diff --git a/profiles/insects/MA0229.1.pwm b/profiles/insects/MA0229.1.pwm
index e69de29..39e53d9 100644
--- a/profiles/insects/MA0229.1.pwm
+++ b/profiles/insects/MA0229.1.pwm
@@ -0,0 +1,8 @@
+ 0 -232 -32 100
+ -132 100 -232 49
+ -232 -232 -232 177
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 -232 177
+ -232 -232 -232 177
+ 126 -232 26 -232
diff --git a/profiles/insects/MA0230.1.pwm b/profiles/insects/MA0230.1.pwm
index e69de29..e8a34cb 100644
--- a/profiles/insects/MA0230.1.pwm
+++ b/profiles/insects/MA0230.1.pwm
@@ -0,0 +1,7 @@
+ -132 -32 -232 138
+ -232 -232 -232 177
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -132 -232 -232 168
+ -232 -232 49 114
+ 177 -232 -232 -232
diff --git a/profiles/insects/MA0231.1.pwm b/profiles/insects/MA0231.1.pwm
index e69de29..c49e897 100644
--- a/profiles/insects/MA0231.1.pwm
+++ b/profiles/insects/MA0231.1.pwm
@@ -0,0 +1,6 @@
+ -251 -251 -251 180
+ 180 -251 -251 -251
+ 180 -251 -251 -251
+ -162 74 -107 61
+ -37 -11 -68 74
+ 160 -251 -68 -251
diff --git a/profiles/insects/MA0232.1.pwm b/profiles/insects/MA0232.1.pwm
index e69de29..1836f78 100644
--- a/profiles/insects/MA0232.1.pwm
+++ b/profiles/insects/MA0232.1.pwm
@@ -0,0 +1,6 @@
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -16 -254 147
+ -166 -73 24 93
+ 139 -254 5 -254
diff --git a/profiles/insects/MA0233.1.pwm b/profiles/insects/MA0233.1.pwm
index d70836f..5027a58 100644
--- a/profiles/insects/MA0233.1.pwm
+++ b/profiles/insects/MA0233.1.pwm
@@ -1,5 +1,5 @@
- 96 -336 -336 89
- 150 -10000 -236 -4
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
+ 87 -219 -219 80
+ 137 -289 -172 -3
+ 185 -289 -289 -289
+ -289 185 -289 -289
+ 185 -289 -289 -289
diff --git a/profiles/insects/MA0234.1.pwm b/profiles/insects/MA0234.1.pwm
index 22988b1..180abd2 100644
--- a/profiles/insects/MA0234.1.pwm
+++ b/profiles/insects/MA0234.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -125 184
- -10000 200 -10000 -10000
- -10000 184 -225 -225
+ -242 -242 -242 178
+ 178 -242 -242 -242
+ 178 -242 -242 -242
+ -242 -242 -92 163
+ -242 178 -242 -242
+ -242 163 -148 -148
diff --git a/profiles/insects/MA0235.1.pwm b/profiles/insects/MA0235.1.pwm
index e69de29..58bd679 100644
--- a/profiles/insects/MA0235.1.pwm
+++ b/profiles/insects/MA0235.1.pwm
@@ -0,0 +1,7 @@
+ -126 -67 -228 146
+ -228 -228 -228 176
+ -228 -228 176 -228
+ 176 -228 -228 -228
+ -228 -228 -228 176
+ -228 -228 -228 176
+ 34 -228 7 56
diff --git a/profiles/insects/MA0236.1.pwm b/profiles/insects/MA0236.1.pwm
index ba696cb..c7cd3b5 100644
--- a/profiles/insects/MA0236.1.pwm
+++ b/profiles/insects/MA0236.1.pwm
@@ -1,7 +1,7 @@
- -232 26 -132 114
- -10000 -232 -10000 193
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -232 -32 158
- 158 -10000 -74 -132
+ -153 22 -97 99
+ -245 -153 -245 172
+ 179 -245 -245 -245
+ 179 -245 -245 -245
+ -245 -245 -245 179
+ -245 -153 -26 140
+ 140 -245 -57 -97
diff --git a/profiles/insects/MA0237.1.pwm b/profiles/insects/MA0237.1.pwm
index e69de29..e67e539 100644
--- a/profiles/insects/MA0237.1.pwm
+++ b/profiles/insects/MA0237.1.pwm
@@ -0,0 +1,8 @@
+ -51 58 -82 30
+ -121 -82 -258 150
+ -121 -258 -174 163
+ -121 -258 -258 169
+ -258 -121 150 -82
+ 128 -258 -26 -82
+ 30 -258 -258 128
+ 14 71 -82 -51
diff --git a/profiles/insects/MA0237.2.pwm b/profiles/insects/MA0237.2.pwm
index e540b34..7c6779b 100644
--- a/profiles/insects/MA0237.2.pwm
+++ b/profiles/insects/MA0237.2.pwm
@@ -1,14 +1,14 @@
- -10000 -10000 94 106
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 17 117 -69
- -134 128 -256 2
- -69 -83 10 80
- -134 117 -10000 44
- -10000 76 -24 55
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 -69 176
- -69 -98 121 -83
- 94 -10000 24 -15
- 31 -10000 -10000 146
+ -324 -324 86 98
+ -324 188 -324 -324
+ -324 -324 188 -324
+ -324 15 108 -60
+ -112 118 -196 2
+ -60 -71 9 74
+ -112 108 -324 39
+ -324 69 -22 50
+ -324 -324 -324 188
+ -324 -324 -324 188
+ -324 -324 -60 165
+ -60 -84 112 -71
+ 86 -324 22 -13
+ 28 -324 -324 136
diff --git a/profiles/insects/MA0238.1.pwm b/profiles/insects/MA0238.1.pwm
index cb4e4a0..4f6741b 100644
--- a/profiles/insects/MA0238.1.pwm
+++ b/profiles/insects/MA0238.1.pwm
@@ -1,7 +1,7 @@
- -58 58 -10000 87
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 87 112
- 200 -10000 -10000 -10000
+ -47 50 -256 76
+ -256 -256 -256 180
+ 180 -256 -256 -256
+ 180 -256 -256 -256
+ -256 -256 -256 180
+ -256 -256 76 98
+ 180 -256 -256 -256
diff --git a/profiles/insects/MA0239.1.pwm b/profiles/insects/MA0239.1.pwm
index 99ee553..28b08ab 100644
--- a/profiles/insects/MA0239.1.pwm
+++ b/profiles/insects/MA0239.1.pwm
@@ -1,9 +1,9 @@
- 93 -39 -10000 42
- -239 -39 142 -139
- -39 -139 -139 131
- 193 -10000 -10000 -239
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 42 -7 -81 19
- -10000 -10000 200 -10000
- -7 -39 -139 93
+ 80 -31 -248 35
+ -158 -31 124 -102
+ -31 -102 -102 115
+ 173 -248 -248 -158
+ 179 -248 -248 -248
+ -248 179 -248 -248
+ 35 -6 -63 16
+ -248 -248 179 -248
+ -6 -31 -102 80
diff --git a/profiles/insects/MA0240.1.pwm b/profiles/insects/MA0240.1.pwm
index e69de29..9e0f2f6 100644
--- a/profiles/insects/MA0240.1.pwm
+++ b/profiles/insects/MA0240.1.pwm
@@ -0,0 +1,7 @@
+ -184 -64 -64 129
+ -184 -265 -265 177
+ 177 -265 -265 -184
+ 182 -265 -265 -265
+ -265 -265 -265 182
+ -265 -265 -265 182
+ 142 -265 0 -265
diff --git a/profiles/insects/MA0241.1.pwm b/profiles/insects/MA0241.1.pwm
index e69de29..5a0d1b5 100644
--- a/profiles/insects/MA0241.1.pwm
+++ b/profiles/insects/MA0241.1.pwm
@@ -0,0 +1,7 @@
+ -166 93 -73 24
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -254 -254 180
+ -254 -254 -73 161
+ 154 -254 -42 -254
diff --git a/profiles/insects/MA0242.1.pwm b/profiles/insects/MA0242.1.pwm
index e69de29..76c4753 100644
--- a/profiles/insects/MA0242.1.pwm
+++ b/profiles/insects/MA0242.1.pwm
@@ -0,0 +1,9 @@
+ 63 -136 -267 93
+ 172 -267 -187 -187
+ 177 -267 -187 -267
+ -267 182 -267 -267
+ -267 177 -187 -267
+ -44 -187 150 -267
+ -267 182 -267 -267
+ 177 -267 -267 -187
+ 131 -267 27 -267
diff --git a/profiles/insects/MA0243.1.pwm b/profiles/insects/MA0243.1.pwm
index e69de29..dd0b16c 100644
--- a/profiles/insects/MA0243.1.pwm
+++ b/profiles/insects/MA0243.1.pwm
@@ -0,0 +1,12 @@
+ -17 -225 101 -17
+ 101 -120 -120 15
+ 15 101 -120 -120
+ 175 -225 -225 -225
+ -120 -120 -225 154
+ -17 -225 -120 130
+ -225 101 -225 64
+ -17 42 -17 -17
+ 15 -120 -60 84
+ 42 64 -17 -225
+ 42 -120 84 -120
+ 15 -17 15 -17
diff --git a/profiles/insects/MA0244.1.pwm b/profiles/insects/MA0244.1.pwm
index 5879fac..35c2866 100644
--- a/profiles/insects/MA0244.1.pwm
+++ b/profiles/insects/MA0244.1.pwm
@@ -1,8 +1,8 @@
- 158 -158 -158 -158
- -10000 -158 -10000 187
- -10000 -10000 0 158
- 0 -58 122 -10000
- -58 174 -10000 -10000
- 122 -58 -58 -158
- 100 74 -158 -10000
- 187 -158 -10000 -10000
+ 135 -105 -105 -105
+ -216 -105 -216 162
+ -216 -216 0 135
+ 0 -43 102 -216
+ -43 149 -216 -216
+ 102 -43 -43 -105
+ 83 60 -105 -216
+ 162 -105 -216 -216
diff --git a/profiles/insects/MA0245.1.pwm b/profiles/insects/MA0245.1.pwm
index e69de29..f3344db 100644
--- a/profiles/insects/MA0245.1.pwm
+++ b/profiles/insects/MA0245.1.pwm
@@ -0,0 +1,7 @@
+ -68 -11 -162 109
+ -251 -162 -251 173
+ 180 -251 -251 -251
+ 173 -251 -162 -251
+ -251 -251 -251 180
+ -107 -162 -11 119
+ 87 -251 87 -251
diff --git a/profiles/insects/MA0246.1.pwm b/profiles/insects/MA0246.1.pwm
index e69de29..37ede93 100644
--- a/profiles/insects/MA0246.1.pwm
+++ b/profiles/insects/MA0246.1.pwm
@@ -0,0 +1,6 @@
+ -269 -269 -183 177
+ -269 -269 182 -269
+ 182 -269 -269 -269
+ -269 -269 -183 177
+ 182 -269 -269 -269
+ -185 132 -185 -8
diff --git a/profiles/insects/MA0247.1.pwm b/profiles/insects/MA0247.1.pwm
index d1109e4..19a3d6f 100644
--- a/profiles/insects/MA0247.1.pwm
+++ b/profiles/insects/MA0247.1.pwm
@@ -1,8 +1,8 @@
- -10000 117 -42 0
- -200 -10000 -10000 191
- -10000 146 -200 0
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -42 -10000 170 -10000
+ -232 100 -32 0
+ -132 -232 -232 168
+ -232 126 -132 0
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 177 -232
+ -232 -232 -232 177
+ -32 -232 149 -232
diff --git a/profiles/insects/MA0247.2.pwm b/profiles/insects/MA0247.2.pwm
index 2684e60..36b2c60 100644
--- a/profiles/insects/MA0247.2.pwm
+++ b/profiles/insects/MA0247.2.pwm
@@ -1,10 +1,10 @@
- 8 -125 -69 93
- -10000 55 9 56
- -10000 -134 -10000 185
- -10000 172 -192 -120
- 134 -10000 55 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -331 29 123 -155
+ 8 -117 -65 90
+ -457 53 9 54
+ -457 -125 -457 180
+ -457 168 -176 -112
+ 130 -457 53 -457
+ 195 -457 -457 -457
+ -457 -457 195 -457
+ -457 -457 -457 195
+ -457 -457 195 -457
+ -285 28 119 -144
diff --git a/profiles/insects/MA0248.1.pwm b/profiles/insects/MA0248.1.pwm
index e69de29..657e106 100644
--- a/profiles/insects/MA0248.1.pwm
+++ b/profiles/insects/MA0248.1.pwm
@@ -0,0 +1,7 @@
+ 0 -74 -132 100
+ -132 -232 -232 168
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 -74 158
+ -132 -232 68 85
+ -74 -232 149 -132
diff --git a/profiles/insects/MA0249.1.pwm b/profiles/insects/MA0249.1.pwm
index 1e317ba..b6b3cea 100644
--- a/profiles/insects/MA0249.1.pwm
+++ b/profiles/insects/MA0249.1.pwm
@@ -1,12 +1,12 @@
- -191 9 -32 90
- -32 90 -32 -91
- -191 -32 142 -191
- -10000 190 -191 -10000
- 155 -32 -191 -10000
- -10000 9 -191 142
- 90 -191 42 -91
- -10000 -10000 -10000 200
- -10000 -10000 168 -32
- -191 -10000 -91 168
- -191 -91 -91 142
- -91 -32 109 -91
+ -126 7 -25 76
+ -25 76 -25 -67
+ -126 -25 122 -126
+ -228 167 -126 -228
+ 134 -25 -126 -228
+ -228 7 -126 122
+ 76 -126 34 -67
+ -228 -228 -228 176
+ -228 -228 146 -25
+ -126 -228 -67 146
+ -126 -67 -67 122
+ -67 -25 93 -67
diff --git a/profiles/insects/MA0249.2.pwm b/profiles/insects/MA0249.2.pwm
index e69de29..a30c0fd 100644
--- a/profiles/insects/MA0249.2.pwm
+++ b/profiles/insects/MA0249.2.pwm
@@ -0,0 +1,11 @@
+ 54 -47 14 -47
+ -6 15 -43 25
+ 182 -204 -316 -301
+ -470 193 -430 -347
+ 195 -422 -491 -470
+ -465 147 -214 -5
+ 189 -339 -293 -399
+ -405 -316 -363 191
+ -229 -345 186 -396
+ -121 -47 -26 101
+ 35 -29 -1 -12
diff --git a/profiles/insects/MA0250.1.pwm b/profiles/insects/MA0250.1.pwm
index 8e2f6d2..881b3b5 100644
--- a/profiles/insects/MA0250.1.pwm
+++ b/profiles/insects/MA0250.1.pwm
@@ -1,7 +1,7 @@
- -239 -7 -139 131
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -239 -10000 -10000 193
- 19 -239 142 -10000
+ -158 -6 -102 115
+ -248 -248 -248 179
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -248 179
+ -158 -248 -248 173
+ 16 -158 124 -248
diff --git a/profiles/insects/MA0251.1.pwm b/profiles/insects/MA0251.1.pwm
index 0fe53da..91392d3 100644
--- a/profiles/insects/MA0251.1.pwm
+++ b/profiles/insects/MA0251.1.pwm
@@ -1,7 +1,7 @@
- -239 19 -39 93
- -239 -10000 -10000 193
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -139 186
- 142 -10000 42 -10000
+ -158 16 -31 80
+ -158 -248 -248 173
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 -248 179
+ -248 -248 -102 166
+ 124 -248 35 -248
diff --git a/profiles/insects/MA0252.1.pwm b/profiles/insects/MA0252.1.pwm
index dbbf990..e0323ae 100644
--- a/profiles/insects/MA0252.1.pwm
+++ b/profiles/insects/MA0252.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -100 0 100 -100
+ -254 -254 -254 180
+ -254 -254 180 -254
+ 180 -254 -254 -254
+ -254 180 -254 -254
+ 180 -254 -254 -254
+ -71 0 83 -71
diff --git a/profiles/insects/MA0253.1.pwm b/profiles/insects/MA0253.1.pwm
index e69de29..3596029 100644
--- a/profiles/insects/MA0253.1.pwm
+++ b/profiles/insects/MA0253.1.pwm
@@ -0,0 +1,9 @@
+ -20 -242 -92 127
+ -148 64 -148 79
+ -242 -242 -242 178
+ -242 146 -92 -92
+ 178 -242 -242 -242
+ 178 -242 -242 -242
+ -242 -242 178 -242
+ -92 -242 -242 163
+ 79 -242 93 -242
diff --git a/profiles/insects/MA0254.1.pwm b/profiles/insects/MA0254.1.pwm
index 8a3b160..4b5d8b6 100644
--- a/profiles/insects/MA0254.1.pwm
+++ b/profiles/insects/MA0254.1.pwm
@@ -1,6 +1,6 @@
- -10000 -46 -10000 171
- 200 -10000 -10000 -10000
- -46 -46 -10000 135
- -10000 -10000 113 86
- 13 154 -10000 -10000
- 200 -10000 -10000 -10000
+ -211 -34 -211 146
+ 172 -211 -211 -211
+ -34 -34 -211 113
+ -211 -211 93 70
+ 10 130 -211 -211
+ 172 -211 -211 -211
diff --git a/profiles/insects/MA0255.1.pwm b/profiles/insects/MA0255.1.pwm
index e69de29..6581ee0 100644
--- a/profiles/insects/MA0255.1.pwm
+++ b/profiles/insects/MA0255.1.pwm
@@ -0,0 +1,10 @@
+ 9 -137 -84 99
+ -219 -46 -137 141
+ -219 -289 181 -289
+ 185 -289 -289 -289
+ -219 -289 181 -289
+ -30 -3 -289 105
+ -172 -64 137 -108
+ 73 -46 9 -84
+ -3 -84 20 40
+ 40 -64 -172 80
diff --git a/profiles/insects/MA0256.1.pwm b/profiles/insects/MA0256.1.pwm
index a5cc454..71c083a 100644
--- a/profiles/insects/MA0256.1.pwm
+++ b/profiles/insects/MA0256.1.pwm
@@ -1,7 +1,7 @@
- -100 117 -10000 32
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 146 32
- 200 -10000 -10000 -10000
+ -74 100 -232 26
+ -232 -232 -232 177
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 -232 177
+ -232 -232 126 26
+ 177 -232 -232 -232
diff --git a/profiles/insects/MA0257.1.pwm b/profiles/insects/MA0257.1.pwm
index aa86621..bc0744b 100644
--- a/profiles/insects/MA0257.1.pwm
+++ b/profiles/insects/MA0257.1.pwm
@@ -1,7 +1,7 @@
- -112 11 -38 76
- -270 -10000 -10000 194
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -270 -10000 194
- -10000 -10000 62 130
- 176 -10000 -70 -10000
+ -86 9 -31 66
+ -177 -261 -261 176
+ 181 -261 -261 -261
+ 181 -261 -261 -261
+ -261 -177 -261 176
+ -261 -261 54 115
+ 158 -261 -56 -261
diff --git a/profiles/insects/MA0443.1.pwm b/profiles/insects/MA0443.1.pwm
index 6439cce..f1eec70 100644
--- a/profiles/insects/MA0443.1.pwm
+++ b/profiles/insects/MA0443.1.pwm
@@ -1,10 +1,10 @@
- 90 -132 -10 -32
- 42 -10000 142 -10000
- -91 -10000 126 9
- -191 -10000 190 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -191 190 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 142 42
- 100 -291 42 -91
+ 79 -102 -8 -27
+ 36 -270 127 -270
+ -72 -270 113 8
+ -140 -270 173 -270
+ -270 -270 182 -270
+ -270 -270 182 -270
+ -140 173 -270 -270
+ -270 -270 182 -270
+ -270 -270 127 36
+ 88 -190 36 -72
diff --git a/profiles/insects/MA0444.1.pwm b/profiles/insects/MA0444.1.pwm
index 53f5c3f..37f9220 100644
--- a/profiles/insects/MA0444.1.pwm
+++ b/profiles/insects/MA0444.1.pwm
@@ -1,7 +1,7 @@
- -10000 -264 -264 188
- -10000 -10000 -10000 200
- 182 -10000 -10000 -106
- 200 -10000 -10000 -10000
- -164 -10000 -10000 188
- 16 -10000 -264 144
- -106 -10000 182 -10000
+ -258 -174 -174 169
+ -258 -258 -258 181
+ 163 -258 -258 -82
+ 181 -258 -258 -258
+ -121 -258 -258 169
+ 14 -258 -174 128
+ -82 -258 163 -258
diff --git a/profiles/insects/MA0445.1.pwm b/profiles/insects/MA0445.1.pwm
index 4da225f..fd187b4 100644
--- a/profiles/insects/MA0445.1.pwm
+++ b/profiles/insects/MA0445.1.pwm
@@ -1,11 +1,11 @@
- -286 14 -5 84
- -10000 179 -10000 -86
- -10000 123 -10000 73
- 146 -10000 -10000 31
- -10000 -10000 -10000 200
- -10000 -10000 -127 184
- -186 -10000 190 -10000
- -10000 -10000 -10000 200
- -286 -186 -86 160
- -86 46 -27 31
- -27 -286 -286 153
+ -187 12 -4 74
+ -267 162 -267 -69
+ -267 109 -267 63
+ 131 -267 -267 27
+ -267 -267 -267 182
+ -267 -267 -98 167
+ -136 -267 172 -267
+ -267 -267 -267 182
+ -187 -136 -69 144
+ -69 40 -23 27
+ -23 -187 -187 138
diff --git a/profiles/insects/MA0446.1.pwm b/profiles/insects/MA0446.1.pwm
index 9051c42..8cc6d6b 100644
--- a/profiles/insects/MA0446.1.pwm
+++ b/profiles/insects/MA0446.1.pwm
@@ -1,11 +1,11 @@
- -117 -10000 -10000 183
- -43 -10000 170 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 -275 195
- 95 -10000 105 -10000
- -75 95 -175 25
- -17 5 -117 70
- -10000 70 -175 105
- 177 -10000 -275 -117
- 115 -75 -75 -75
+ -90 -263 -263 165
+ -35 -263 153 -263
+ -263 -263 -263 181
+ -263 -263 -263 181
+ -263 -263 -181 176
+ 83 -263 93 -263
+ -60 83 -129 21
+ -14 4 -90 61
+ -263 61 -129 93
+ 159 -263 -181 -90
+ 102 -60 -60 -60
diff --git a/profiles/insects/MA0447.1.pwm b/profiles/insects/MA0447.1.pwm
index e69de29..e9305b2 100644
--- a/profiles/insects/MA0447.1.pwm
+++ b/profiles/insects/MA0447.1.pwm
@@ -0,0 +1,10 @@
+ 82 -129 67 -211
+ -313 -313 -313 187
+ -253 -253 -178 175
+ 172 -313 -109 -313
+ -313 170 -313 -92
+ -92 -313 170 -313
+ -313 -109 -313 172
+ 175 -178 -253 -253
+ 187 -313 -313 -313
+ -211 67 -129 82
diff --git a/profiles/insects/MA0448.1.pwm b/profiles/insects/MA0448.1.pwm
index e434437..bfcd7c6 100644
--- a/profiles/insects/MA0448.1.pwm
+++ b/profiles/insects/MA0448.1.pwm
@@ -1,7 +1,7 @@
- -42 -142 -100 125
- -200 -300 -10000 186
- 100 -300 -300 81
- 195 -10000 -10000 -300
- -10000 -10000 -10000 200
- 0 -10000 17 91
- 158 -10000 -19 -300
+ -34 -109 -80 112
+ -146 -196 -273 169
+ 89 -196 -196 71
+ 178 -273 -273 -196
+ -273 -273 -273 183
+ 0 -273 15 80
+ 143 -273 -16 -196
diff --git a/profiles/insects/MA0449.1.pwm b/profiles/insects/MA0449.1.pwm
index e69de29..f1420b6 100644
--- a/profiles/insects/MA0449.1.pwm
+++ b/profiles/insects/MA0449.1.pwm
@@ -0,0 +1,10 @@
+ -202 -153 166 -202
+ -116 -24 89 -24
+ -202 170 -202 -202
+ 124 -202 20 -202
+ -202 166 -202 -153
+ -153 -202 166 -202
+ -202 20 -202 124
+ -202 -202 170 -202
+ -24 89 -24 -116
+ -202 166 -153 -202
diff --git a/profiles/insects/MA0450.1.pwm b/profiles/insects/MA0450.1.pwm
index a087d3d..9a03bb5 100644
--- a/profiles/insects/MA0450.1.pwm
+++ b/profiles/insects/MA0450.1.pwm
@@ -1,9 +1,9 @@
- -142 -10000 117 46
- 0 -10000 158 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -142 186
- -10000 -10000 195 -300
- 158 -142 -200 -142
+ -109 -273 104 40
+ 0 -273 143 -273
+ -273 -273 183 -273
+ -273 -273 183 -273
+ -273 183 -273 -273
+ -273 -273 183 -273
+ -273 -273 -109 169
+ -273 -273 178 -196
+ 143 -109 -146 -109
diff --git a/profiles/insects/MA0451.1.pwm b/profiles/insects/MA0451.1.pwm
index e69de29..f73aca4 100644
--- a/profiles/insects/MA0451.1.pwm
+++ b/profiles/insects/MA0451.1.pwm
@@ -0,0 +1,12 @@
+ 138 -177 -125 -56
+ 176 -177 -261 -261
+ 115 -261 -261 54
+ -31 40 -10 -10
+ -261 -56 -177 152
+ 152 -261 -31 -261
+ -261 -261 181 -261
+ 123 -261 25 -177
+ -177 -86 131 -56
+ -261 181 -261 -261
+ 176 -261 -177 -261
+ -31 77 9 -125
diff --git a/profiles/insects/MA0452.1.pwm b/profiles/insects/MA0452.1.pwm
index 70a0bf4..a288066 100644
--- a/profiles/insects/MA0452.1.pwm
+++ b/profiles/insects/MA0452.1.pwm
@@ -1,11 +1,11 @@
- -137 113 -63 -37
- 51 -95 37 -37
- 163 -10000 -15 -10000
- 195 -10000 -10000 -295
- 122 -37 -15 -10000
- -10000 -10000 200 -10000
- -195 -10000 190 -10000
- -195 -10000 190 -10000
- -10000 -295 -15 157
- -95 -10000 -63 151
- 137 -95 -137 -95
+ -106 101 -52 -31
+ 44 -76 32 -31
+ 147 -272 -12 -272
+ 178 -272 -272 -193
+ 108 -31 -12 -272
+ -272 -272 183 -272
+ -143 -272 173 -272
+ -143 -272 173 -272
+ -272 -193 -12 142
+ -76 -272 -52 136
+ 123 -76 -106 -76
diff --git a/profiles/insects/MA0452.2.pwm b/profiles/insects/MA0452.2.pwm
index a51d46c..ce55224 100644
--- a/profiles/insects/MA0452.2.pwm
+++ b/profiles/insects/MA0452.2.pwm
@@ -1,14 +1,14 @@
- -86 38 -45 50
- -66 -78 -57 108
- -110 25 -215 108
- 195 -10000 -10000 -275
- 174 -58 -10000 -10000
- -488 185 -10000 -149
- -10000 186 -10000 -145
- -10000 200 -10000 -10000
- -10000 -68 -10000 176
- -10000 -10000 -10000 200
- -10000 -152 -10000 187
- -152 30 -49 77
- -3 -1 -19 20
- -62 42 -57 42
+ -82 37 -43 48
+ -64 -75 -55 106
+ -106 25 -202 106
+ 192 -521 -521 -255
+ 171 -57 -521 -521
+ -406 182 -521 -143
+ -521 183 -521 -138
+ -521 197 -521 -521
+ -521 -66 -521 173
+ -521 -521 -521 197
+ -521 -145 -521 184
+ -145 29 -47 76
+ -3 -1 -18 19
+ -60 41 -55 41
diff --git a/profiles/insects/MA0454.1.pwm b/profiles/insects/MA0454.1.pwm
index ea2d464..8441ece 100644
--- a/profiles/insects/MA0454.1.pwm
+++ b/profiles/insects/MA0454.1.pwm
@@ -1,11 +1,11 @@
- 90 42 -10000 -32
- 142 42 -10000 -10000
- -10000 190 -191 -10000
- 168 -10000 -32 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- 155 -32 -191 -10000
- 42 9 68 -10000
+ 76 34 -228 -25
+ 122 34 -228 -228
+ -228 167 -126 -228
+ 146 -228 -25 -228
+ -228 -228 176 -228
+ -228 -228 -228 176
+ 176 -228 -228 -228
+ -228 -228 176 -228
+ -228 176 -228 -228
+ 134 -25 -126 -228
+ 34 7 56 -228
diff --git a/profiles/insects/MA0456.1.pwm b/profiles/insects/MA0456.1.pwm
index 6635390..5b54b41 100644
--- a/profiles/insects/MA0456.1.pwm
+++ b/profiles/insects/MA0456.1.pwm
@@ -1,12 +1,12 @@
- -10000 -217 174 -117
- 115 64 -217 -10000
- -217 183 -10000 -217
- -217 174 -217 -217
- -10000 183 -217 -217
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 164 -10000 -17
- -17 -10000 153 -217
- -10000 164 -117 -117
- -58 -217 -17 115
- -117 -10000 183 -10000
+ -239 -143 153 -86
+ 99 54 -143 -239
+ -143 162 -239 -143
+ -143 153 -143 -143
+ -239 162 -143 -143
+ -239 178 -239 -239
+ -239 178 -239 -239
+ -239 144 -239 -14
+ -14 -239 134 -143
+ -239 144 -86 -86
+ -45 -143 -14 99
+ -86 -239 162 -239
diff --git a/profiles/insects/MA0457.1.pwm b/profiles/insects/MA0457.1.pwm
index e69de29..66543b3 100644
--- a/profiles/insects/MA0457.1.pwm
+++ b/profiles/insects/MA0457.1.pwm
@@ -0,0 +1,7 @@
+ -7 41 -236 60
+ -236 -236 -236 177
+ 169 -236 -236 -138
+ 177 -236 -236 -236
+ -236 -236 -236 177
+ -138 -236 -138 160
+ 77 -138 -7 -7
diff --git a/profiles/insects/MA0458.1.pwm b/profiles/insects/MA0458.1.pwm
index e69de29..bd2c10c 100644
--- a/profiles/insects/MA0458.1.pwm
+++ b/profiles/insects/MA0458.1.pwm
@@ -0,0 +1,11 @@
+ -30 -137 40 57
+ -289 -289 -289 185
+ -137 -289 174 -289
+ -289 -289 -289 185
+ -289 -289 -219 181
+ -289 -289 -172 178
+ 127 -289 -108 -3
+ -219 99 -46 9
+ 65 -30 49 -219
+ -108 30 -137 93
+ 49 -137 -108 80
diff --git a/profiles/insects/MA0459.1.pwm b/profiles/insects/MA0459.1.pwm
index e48f1e6..7272e67 100644
--- a/profiles/insects/MA0459.1.pwm
+++ b/profiles/insects/MA0459.1.pwm
@@ -1,10 +1,10 @@
- 128 -104 -104 -72
- 181 -10000 -104 -10000
- 200 -10000 -10000 -10000
- 191 -304 -304 -10000
- -10000 -10000 200 -10000
- -10000 -204 -10000 191
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 191 -10000 -304 -304
- 104 28 -204 -104
+ 115 -83 -83 -59
+ 165 -275 -83 -275
+ 183 -275 -275 -275
+ 174 -199 -199 -275
+ -275 -275 183 -275
+ -275 -150 -275 174
+ -275 183 -275 -275
+ 183 -275 -275 -275
+ 174 -275 -199 -199
+ 93 24 -150 -83
diff --git a/profiles/insects/MA0460.1.pwm b/profiles/insects/MA0460.1.pwm
index e69de29..4e9edff 100644
--- a/profiles/insects/MA0460.1.pwm
+++ b/profiles/insects/MA0460.1.pwm
@@ -0,0 +1,9 @@
+ 74 46 -68 -162
+ 180 -251 -251 -251
+ -251 -251 180 -251
+ -251 -251 180 -251
+ 180 -251 -251 -251
+ -251 -11 -251 145
+ 173 -251 -251 -162
+ 180 -251 -251 -251
+ -162 -11 -68 109
diff --git a/profiles/insects/MA0529.1.pwm b/profiles/insects/MA0529.1.pwm
index 3d6b37c..8c27403 100644
--- a/profiles/insects/MA0529.1.pwm
+++ b/profiles/insects/MA0529.1.pwm
@@ -1,15 +1,15 @@
- -42 -19 18 31
- -5 53 -23 -43
- 33 -23 39 -80
- 91 45 -40 -10000
- 99 -153 -57 -1
- 114 -162 2 -114
- 63 89 -74 -10000
- -42 -65 -10000 139
- 197 -10000 -369 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -369 -10000 197 -10000
- 186 -10000 -142 -10000
- -122 -255 -10000 177
- 112 -10000 -34 6
+ -41 -19 18 31
+ -5 52 -23 -42
+ 33 -23 39 -78
+ 90 44 -39 -600
+ 98 -149 -56 -1
+ 113 -157 2 -111
+ 63 88 -72 -600
+ -41 -64 -600 137
+ 195 -600 -345 -600
+ -600 -600 -600 198
+ -600 198 -600 -600
+ -345 -600 195 -600
+ 184 -600 -138 -600
+ -119 -245 -600 175
+ 111 -600 -33 5
diff --git a/profiles/insects/MA0529.2.pwm b/profiles/insects/MA0529.2.pwm
index e69de29..2924f89 100644
--- a/profiles/insects/MA0529.2.pwm
+++ b/profiles/insects/MA0529.2.pwm
@@ -0,0 +1,12 @@
+ 36 -39 18 -28
+ 23 40 -93 -2
+ -132 -154 -359 167
+ 189 -433 -361 -265
+ -358 -342 -384 191
+ -497 196 -547 -457
+ -457 -547 196 -497
+ 191 -384 -342 -358
+ -265 -361 -433 189
+ 167 -359 -154 -132
+ -2 -93 40 23
+ -28 18 -39 36
diff --git a/profiles/insects/MA0530.1.pwm b/profiles/insects/MA0530.1.pwm
index 8e2d45f..a4c4ce3 100644
--- a/profiles/insects/MA0530.1.pwm
+++ b/profiles/insects/MA0530.1.pwm
@@ -1,15 +1,15 @@
- 26 -7 42 -98
- 152 -257 -6 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 178 -137 -250 -10000
- -10000 130 -57 -22
- -57 -10000 51 93
- -60 86 -40 -38
- 20 -184 46 26
- -230 -10000 183 -208
- -10000 200 -10000 -10000
- 163 -10000 -16 -10000
- 17 11 -26 -6
- 90 -91 -10000 68
- 85 -330 -10000 107
+ 25 -7 41 -92
+ 148 -228 -5 -451
+ -451 -451 -451 195
+ -451 -451 195 -451
+ 173 -127 -223 -451
+ -451 126 -54 -21
+ -54 -451 49 89
+ -57 83 -38 -36
+ 19 -169 44 25
+ -207 -451 179 -189
+ -451 195 -451 -451
+ 159 -451 -15 -451
+ 16 11 -25 -5
+ 87 -86 -451 66
+ 82 -283 -451 103
diff --git a/profiles/insects/MA0531.1.pwm b/profiles/insects/MA0531.1.pwm
index 09337dc..330e4c5 100644
--- a/profiles/insects/MA0531.1.pwm
+++ b/profiles/insects/MA0531.1.pwm
@@ -1,15 +1,15 @@
- -64 88 -24 -58
- -60 127 -112 -109
- -6 -31 80 -101
- 51 72 -44 -237
- -89 59 -245 83
- 169 -889 -131 -144
- -124 -10000 184 -10000
- 105 -10000 94 -731
- -789 -689 -61 174
- -10000 -10000 200 -10000
- -789 -10000 180 -94
- -194 179 -731 -187
- -889 -10000 193 -234
- -259 167 -589 -66
- -104 70 -172 67
+ -62 87 -23 -57
+ -59 125 -108 -106
+ -6 -30 78 -98
+ 50 71 -43 -224
+ -86 58 -231 81
+ 167 -535 -126 -139
+ -119 -548 181 -548
+ 104 -548 92 -513
+ -524 -503 -60 171
+ -548 -548 198 -548
+ -524 -548 177 -91
+ -185 177 -513 -179
+ -535 -548 190 -221
+ -244 165 -469 -64
+ -101 69 -165 65
diff --git a/profiles/insects/MA0532.1.pwm b/profiles/insects/MA0532.1.pwm
index e69de29..8f219e1 100644
--- a/profiles/insects/MA0532.1.pwm
+++ b/profiles/insects/MA0532.1.pwm
@@ -0,0 +1,15 @@
+ -86 71 -27 -2
+ -27 -38 94 -104
+ -12 23 44 -86
+ 154 -312 -71 -146
+ 63 -357 -12 54
+ -357 -312 -312 188
+ -357 -189 -357 183
+ -357 175 -357 -113
+ -357 111 -95 30
+ 34 -44 2 -2
+ 44 -277 117 -206
+ -357 -312 189 -357
+ 184 -357 -277 -249
+ 191 -357 -357 -357
+ 103 -146 -134 27
diff --git a/profiles/insects/MA0533.1.pwm b/profiles/insects/MA0533.1.pwm
index e69de29..d4b4f34 100644
--- a/profiles/insects/MA0533.1.pwm
+++ b/profiles/insects/MA0533.1.pwm
@@ -0,0 +1,21 @@
+ -177 -6 123 -133
+ -221 178 -452 -174
+ -60 133 -228 -69
+ -46 32 -27 26
+ 121 -99 -35 -134
+ 152 -242 -114 -105
+ 182 -345 -194 -301
+ 171 -505 -185 -122
+ -149 -225 165 -178
+ -513 -139 -341 181
+ 184 -497 -342 -173
+ -563 -541 -5 158
+ -247 -576 192 -563
+ -317 194 -569 -497
+ 124 -149 -557 33
+ 150 -194 -72 -177
+ -115 103 -253 42
+ 109 -169 25 -140
+ 61 12 -61 -44
+ 90 -137 -173 53
+ 74 -160 -171 76
diff --git a/profiles/insects/MA0534.1.pwm b/profiles/insects/MA0534.1.pwm
index e69de29..ab9641f 100644
--- a/profiles/insects/MA0534.1.pwm
+++ b/profiles/insects/MA0534.1.pwm
@@ -0,0 +1,15 @@
+ 14 43 54 -349
+ 113 -97 28 -349
+ -41 -119 144 -349
+ -192 -236 40 115
+ -131 -349 -349 177
+ -97 126 -349 0
+ 142 -349 19 -349
+ 36 -108 -192 99
+ -349 -349 -349 190
+ -349 -349 190 -349
+ 126 32 -349 -192
+ 85 101 -349 -349
+ -28 106 -349 0
+ -349 36 -349 135
+ -10 10 -349 93
diff --git a/profiles/insects/MA0535.1.pwm b/profiles/insects/MA0535.1.pwm
index e69de29..e4455a9 100644
--- a/profiles/insects/MA0535.1.pwm
+++ b/profiles/insects/MA0535.1.pwm
@@ -0,0 +1,15 @@
+ -347 85 82 -156
+ 42 3 -85 12
+ -347 -76 169 -347
+ 42 -347 106 -105
+ -347 190 -347 -347
+ -347 -347 190 -347
+ -13 127 -347 -76
+ -347 139 26 -347
+ 17 -347 143 -347
+ 17 57 38 -347
+ -105 99 -3 -85
+ 17 -347 143 -347
+ -95 85 8 -68
+ 30 38 -60 -32
+ -105 12 123 -347
diff --git a/profiles/insects/MA0536.1.pwm b/profiles/insects/MA0536.1.pwm
index fdd242b..d38136e 100644
--- a/profiles/insects/MA0536.1.pwm
+++ b/profiles/insects/MA0536.1.pwm
@@ -1,11 +1,11 @@
- -141 -27 -544 147
- 188 -10000 -10000 -170
- -10000 -276 -776 194
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 142 -10000 -132 -11
- -82 -10000 129 -1
- -191 36 -16 64
- -126 33 -98 86
+ -133 -26 -418 144
+ 185 -493 -493 -159
+ -493 -251 -475 191
+ -493 196 -493 -493
+ -493 -493 196 -493
+ 196 -493 -493 -493
+ -493 -493 -493 196
+ 139 -493 -125 -10
+ -78 -493 126 -1
+ -178 35 -16 62
+ -119 32 -94 84
diff --git a/profiles/insects/MA0915.1.pwm b/profiles/insects/MA0915.1.pwm
index e69de29..dbe8aa1 100644
--- a/profiles/insects/MA0915.1.pwm
+++ b/profiles/insects/MA0915.1.pwm
@@ -0,0 +1,8 @@
+ 14 59 -82 -26
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 192 -503 -281
+ 46 -20 46 -144
diff --git a/profiles/insects/MA0916.1.pwm b/profiles/insects/MA0916.1.pwm
index e69de29..8c66ef5 100644
--- a/profiles/insects/MA0916.1.pwm
+++ b/profiles/insects/MA0916.1.pwm
@@ -0,0 +1,8 @@
+ -485 196 -485 -485
+ -486 196 -486 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 196 -486 -486 -486
+ 181 -486 -486 -124
+ 40 -486 138 -486
+ -486 19 -486 148
diff --git a/profiles/insects/MA0917.1.pwm b/profiles/insects/MA0917.1.pwm
index e69de29..0c1c83e 100644
--- a/profiles/insects/MA0917.1.pwm
+++ b/profiles/insects/MA0917.1.pwm
@@ -0,0 +1,8 @@
+ 152 -112 -63 -503
+ -503 -370 -503 195
+ -9 -301 154 -503
+ -223 165 -79 -370
+ -171 -503 156 -48
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -201 48 -136 98
diff --git a/profiles/insects/MA1455.1.pwm b/profiles/insects/MA1455.1.pwm
index db5887a..61d35d0 100644
--- a/profiles/insects/MA1455.1.pwm
+++ b/profiles/insects/MA1455.1.pwm
@@ -1,17 +1,17 @@
- 21 -74 -112 83
- -16 -31 -81 79
- -144 -271 170 -206
- 45 21 -479 53
- 48 -155 -268 108
- 197 -596 -496 -516
- -464 194 -464 -344
- 178 -496 -464 -101
- 190 -326 -268 -10000
- -86 -357 -450 173
- -261 -438 190 -438
- -638 -596 -696 199
- 131 -283 -192 16
- 51 -450 6 57
- -198 173 -321 -160
- 94 -69 -32 -61
- 108 -109 -96 -16
+ 20 -71 -107 81
+ -15 -30 -78 77
+ -137 -249 166 -192
+ 44 20 -393 52
+ 47 -147 -246 105
+ 194 -444 -402 -411
+ -385 190 -385 -306
+ 175 -402 -385 -96
+ 187 -293 -246 -503
+ -83 -315 -377 170
+ -240 -369 187 -369
+ -456 -444 -470 195
+ 128 -259 -180 16
+ 50 -377 6 56
+ -186 170 -288 -152
+ 92 -66 -31 -58
+ 106 -104 -92 -15
diff --git a/profiles/insects/MA1456.1.pwm b/profiles/insects/MA1456.1.pwm
index e69de29..c177c78 100644
--- a/profiles/insects/MA1456.1.pwm
+++ b/profiles/insects/MA1456.1.pwm
@@ -0,0 +1,10 @@
+ 6 -34 49 -39
+ 2 40 -109 26
+ -583 -583 -583 198
+ 198 -583 -583 -583
+ -583 -583 -583 198
+ -583 198 -583 -583
+ -583 -583 198 -583
+ 198 -583 -583 -583
+ -106 -214 -254 164
+ 122 -197 -74 -28
diff --git a/profiles/insects/MA1457.1.pwm b/profiles/insects/MA1457.1.pwm
index 079b662..a7fe98c 100644
--- a/profiles/insects/MA1457.1.pwm
+++ b/profiles/insects/MA1457.1.pwm
@@ -1,13 +1,13 @@
- 49 -19 8 -60
- 120 -80 -64 -104
- 189 -495 -323 -272
- 195 -538 -387 -424
- -484 197 -553 -538
- -216 176 -207 -278
- 120 -210 1 -111
- -538 -387 195 -461
- -409 -461 -518 195
- -384 -312 -518 192
- -122 -55 -103 126
- -61 -8 -3 50
- -14 16 -9 5
+ 48 -19 8 -59
+ 119 -79 -63 -101
+ 187 -435 -303 -259
+ 193 -462 -357 -386
+ -429 195 -471 -462
+ -207 174 -199 -265
+ 119 -202 1 -108
+ -462 -357 193 -413
+ -374 -413 -450 194
+ -355 -294 -450 190
+ -119 -54 -101 125
+ -60 -8 -3 50
+ -14 16 -9 5
diff --git a/profiles/insects/MA1458.1.pwm b/profiles/insects/MA1458.1.pwm
index 6c79e43..547044d 100644
--- a/profiles/insects/MA1458.1.pwm
+++ b/profiles/insects/MA1458.1.pwm
@@ -1,12 +1,12 @@
- 29 -54 -33 37
- 1 -26 -33 45
- -284 -322 -362 188
- -362 -380 -344 191
- -559 196 -459 -480
- -330 129 -93 -11
- 190 -338 -344 -369
- -401 -384 194 -505
- 191 -301 -419 -410
- 187 -369 -341 -248
- 33 -24 -18 1
- 31 -26 -47 26
+ 28 -52 -32 36
+ 1 -25 -33 44
+ -266 -298 -331 185
+ -331 -345 -316 189
+ -459 194 -402 -415
+ -305 127 -90 -11
+ 188 -312 -316 -337
+ -361 -348 192 -430
+ 189 -281 -374 -367
+ 185 -337 -314 -235
+ 33 -24 -17 1
+ 30 -25 -45 26
diff --git a/profiles/insects/MA1459.1.pwm b/profiles/insects/MA1459.1.pwm
index e69de29..967c657 100644
--- a/profiles/insects/MA1459.1.pwm
+++ b/profiles/insects/MA1459.1.pwm
@@ -0,0 +1,18 @@
+ 3 19 26 -62
+ 30 27 24 -136
+ -9 -17 -79 68
+ 88 -8 -23 -146
+ -256 116 -256 51
+ -304 -469 192 -442
+ -459 -490 194 -353
+ -502 -110 -241 173
+ -225 188 -469 -393
+ 189 -328 -382 -314
+ -515 189 -479 -220
+ 181 -393 -377 -153
+ -515 190 -502 -233
+ -247 -143 -412 176
+ -32 -220 134 -115
+ 6 39 -28 -27
+ 0 10 -36 20
+ 1 32 -25 -14
diff --git a/profiles/insects/MA1460.1.pwm b/profiles/insects/MA1460.1.pwm
index e69de29..be40cbe 100644
--- a/profiles/insects/MA1460.1.pwm
+++ b/profiles/insects/MA1460.1.pwm
@@ -0,0 +1,11 @@
+ 40 0 -44 -8
+ 37 -55 24 -25
+ 182 -247 -261 -303
+ -382 -333 -360 191
+ -342 -238 185 -308
+ -368 -336 189 -321
+ -246 179 -258 -246
+ -228 158 -90 -189
+ -176 -314 177 -255
+ 10 46 -49 -26
+ -39 53 -21 -10
diff --git a/profiles/insects/MA1461.1.pwm b/profiles/insects/MA1461.1.pwm
index a497171..658092f 100644
--- a/profiles/insects/MA1461.1.pwm
+++ b/profiles/insects/MA1461.1.pwm
@@ -1,17 +1,17 @@
- -42 33 -7 5
- -696 13 83 16
- -210 156 -596 -30
- 137 -405 32 -326
- -71 19 62 -48
- -796 37 -564 142
- -696 136 51 -796
- 190 -696 -208 -596
- 59 -310 -188 108
- -796 -95 180 -796
- -796 198 -638 -438
- -123 -796 183 -796
- -596 -696 -496 198
- -96 -796 180 -796
- 192 -696 -426 -271
- -332 196 -696 -796
- -181 -23 142 -247
+ -40 32 -7 5
+ -470 13 81 16
+ -197 153 -444 -29
+ 134 -349 32 -292
+ -69 18 60 -46
+ -485 36 -432 139
+ -470 133 50 -486
+ 187 -470 -195 -444
+ 57 -280 -176 105
+ -486 -91 177 -486
+ -485 194 -456 -369
+ -118 -485 180 -485
+ -443 -470 -402 195
+ -92 -485 177 -485
+ 189 -470 -362 -249
+ -297 193 -470 -486
+ -171 -22 139 -228
diff --git a/profiles/insects/MA1462.1.pwm b/profiles/insects/MA1462.1.pwm
index 09a8056..752a298 100644
--- a/profiles/insects/MA1462.1.pwm
+++ b/profiles/insects/MA1462.1.pwm
@@ -1,12 +1,12 @@
- 2 8 -11 0
- 0 -9 -10 17
- -36 -59 82 -35
- -582 186 -403 -182
- 196 -671 -417 -480
- -609 -566 198 -671
- -501 -579 198 -613
- -498 -209 -631 190
- 197 -455 -496 -582
- -45 -75 123 -158
- 16 -3 17 -36
- 11 11 -31 5
+ 2 8 -11 0
+ 0 -9 -10 17
+ -36 -58 82 -35
+ -523 185 -384 -179
+ 195 -575 -396 -449
+ -540 -512 197 -575
+ -465 -521 197 -542
+ -462 -205 -553 189
+ 196 -428 -461 -523
+ -45 -74 122 -156
+ 16 -3 17 -36
+ 11 11 -31 5
diff --git a/profiles/insects/MA1700.1.pwm b/profiles/insects/MA1700.1.pwm
index 073371e..f95d844 100644
--- a/profiles/insects/MA1700.1.pwm
+++ b/profiles/insects/MA1700.1.pwm
@@ -1,14 +1,14 @@
- -100 -141 151 -187
- 69 -54 -81 17
- -181 -192 172 -260
- 11 100 -90 -134
- -316 -451 193 -537
- 192 -437 -395 -333
- -342 -591 195 -537
- -103 159 -193 -211
- -442 -579 197 -637
- 189 -456 -210 -528
- -322 -420 193 -462
- 162 -100 -249 -202
- -150 -40 119 -73
- 92 -102 53 -255
+ -97 -136 149 -180
+ 68 -53 -79 17
+ -174 -185 170 -247
+ 10 98 -88 -130
+ -296 -401 191 -455
+ 190 -391 -360 -310
+ -317 -482 193 -455
+ -100 157 -185 -202
+ -394 -476 195 -502
+ 187 -405 -201 -450
+ -301 -379 190 -408
+ 160 -97 -237 -194
+ -145 -39 118 -71
+ 90 -99 53 -242
diff --git a/profiles/insects/MA1702.1.pwm b/profiles/insects/MA1702.1.pwm
index 684f95f..28cf034 100644
--- a/profiles/insects/MA1702.1.pwm
+++ b/profiles/insects/MA1702.1.pwm
@@ -1,12 +1,12 @@
- 29 -67 -8 27
- 62 -65 18 -52
- -326 -471 -423 193
- -345 -462 -334 191
- 189 -510 -247 -366
- -347 -182 -402 183
- -186 -399 181 -268
- -297 145 -393 11
- 193 -377 -408 -435
- 194 -433 -415 -388
- -40 7 -79 69
- 22 -3 -59 24
+ 28 -65 -8 26
+ 61 -64 18 -51
+ -309 -427 -391 191
+ -326 -420 -316 190
+ 188 -454 -238 -344
+ -327 -177 -374 182
+ -181 -371 180 -257
+ -283 143 -366 11
+ 192 -354 -379 -400
+ 192 -398 -384 -362
+ -39 7 -78 68
+ 22 -3 -58 24
diff --git a/profiles/insects/MA1836.1.pwm b/profiles/insects/MA1836.1.pwm
index fc2774e..706d16e 100644
--- a/profiles/insects/MA1836.1.pwm
+++ b/profiles/insects/MA1836.1.pwm
@@ -1,11 +1,11 @@
- 34 7 -86 18
- 11 -66 -42 63
- 191 -391 -581 -264
- -10000 190 -355 -255
- 185 -360 -327 -223
- 165 -256 -255 -96
- -98 -327 -359 173
- -214 -382 189 -10000
- -264 -605 -341 190
- 67 -44 -54 -1
- 21 -88 6 33
+ 33 7 -84 18
+ 11 -65 -42 62
+ 190 -367 -503 -255
+ -627 189 -336 -246
+ 183 -340 -311 -217
+ 164 -247 -246 -94
+ -96 -311 -339 171
+ -208 -359 187 -627
+ -255 -516 -324 189
+ 66 -43 -53 -1
+ 21 -86 6 32
diff --git a/profiles/insects/MA1837.1.pwm b/profiles/insects/MA1837.1.pwm
index 3924a7c..ca994da 100644
--- a/profiles/insects/MA1837.1.pwm
+++ b/profiles/insects/MA1837.1.pwm
@@ -1,11 +1,11 @@
- -15 -36 -4 42
- -2 81 -112 -32
- -366 183 -352 -181
- 188 -340 -333 -295
- 188 -356 -300 -307
- -254 -326 -377 187
- -5 -174 -394 142
- 188 -318 -248 -581
- -534 -390 194 -374
- 84 -57 -73 -10
- 55 -22 -56 0
+ -15 -35 -4 42
+ -2 80 -110 -31
+ -342 181 -331 -175
+ 186 -320 -314 -281
+ 186 -334 -285 -291
+ -244 -308 -352 185
+ -5 -169 -365 140
+ 187 -301 -238 -492
+ -465 -362 192 -348
+ 83 -56 -72 -10
+ 54 -22 -55 0
diff --git a/profiles/insects/MA1838.1.pwm b/profiles/insects/MA1838.1.pwm
index e69de29..c2e4116 100644
--- a/profiles/insects/MA1838.1.pwm
+++ b/profiles/insects/MA1838.1.pwm
@@ -0,0 +1,11 @@
+ 5 -30 -20 36
+ 1 47 -75 2
+ -282 178 -302 -179
+ 183 -275 -297 -254
+ 182 -309 -258 -247
+ -218 -293 -293 181
+ -60 -184 -328 156
+ 185 -291 -217 -459
+ -431 -311 189 -296
+ 66 -50 -50 1
+ 39 -24 -39 12
diff --git a/profiles/insects/MA1839.1.pwm b/profiles/insects/MA1839.1.pwm
index e69de29..dba0ea9 100644
--- a/profiles/insects/MA1839.1.pwm
+++ b/profiles/insects/MA1839.1.pwm
@@ -0,0 +1,11 @@
+ 2 -5 -38 32
+ 5 -24 -27 36
+ -245 182 -251 -328
+ -217 -287 -315 182
+ -228 -268 -298 181
+ 187 -239 -312 -443
+ -261 -279 -312 184
+ -309 184 -332 -239
+ 153 -275 -71 -148
+ -3 -8 17 -8
+ 1 -7 -61 47
diff --git a/profiles/insects/MA1840.1.pwm b/profiles/insects/MA1840.1.pwm
index e69de29..53f7958 100644
--- a/profiles/insects/MA1840.1.pwm
+++ b/profiles/insects/MA1840.1.pwm
@@ -0,0 +1,13 @@
+ -2 10 -7 -1
+ -22 42 -22 -9
+ 92 -150 34 -104
+ -456 193 -424 -349
+ -377 193 -503 -363
+ -215 184 -375 -309
+ -199 -264 177 -241
+ -424 188 -402 -235
+ 190 -364 -419 -286
+ -294 -91 -160 159
+ 2 76 -88 -42
+ -4 15 -57 31
+ 11 -1 -25 13
diff --git a/profiles/insects/MA1841.1.pwm b/profiles/insects/MA1841.1.pwm
index b7453d7..5603b58 100644
--- a/profiles/insects/MA1841.1.pwm
+++ b/profiles/insects/MA1841.1.pwm
@@ -1,18 +1,18 @@
- -64 24 9 15
- -11 -18 24 2
- 42 -123 37 -9
- -96 -49 95 -25
- -213 -196 -267 175
- -613 198 -613 -513
- -355 184 -381 -196
- -413 188 -296 -296
- -58 131 -167 -89
- 112 -149 -38 -52
- -255 -355 188 -381
- -138 -333 179 -413
- -513 -381 195 -513
- 169 -313 -138 -189
- -13 89 -61 -78
- -43 52 -92 37
- 9 4 -30 13
- -16 15 19 -23
+ -60 23 9 14
+ -11 -17 23 1
+ 40 -112 35 -8
+ -89 -46 91 -24
+ -188 -175 -229 169
+ -384 192 -384 -359
+ -287 178 -302 -175
+ -318 182 -250 -250
+ -54 126 -151 -82
+ 108 -135 -36 -48
+ -220 -287 182 -302
+ -125 -273 173 -318
+ -359 -302 189 -359
+ 163 -261 -125 -168
+ -13 85 -57 -72
+ -41 50 -85 35
+ 9 3 -28 13
+ -15 14 18 -21
diff --git a/profiles/insects/MA1842.1.pwm b/profiles/insects/MA1842.1.pwm
index e69de29..cbb3a58 100644
--- a/profiles/insects/MA1842.1.pwm
+++ b/profiles/insects/MA1842.1.pwm
@@ -0,0 +1,10 @@
+ 5 -34 40 -23
+ 7 45 -102 14
+ -598 -598 -475 198
+ 198 -488 -598 -598
+ -598 -402 -598 197
+ -393 196 -598 -598
+ -598 -598 196 -349
+ 194 -598 -320 -444
+ -83 -172 -181 151
+ 111 -148 -73 -18
diff --git a/profiles/nematodes/MA0260.1.pwm b/profiles/nematodes/MA0260.1.pwm
index 08aead0..d6853f7 100644
--- a/profiles/nematodes/MA0260.1.pwm
+++ b/profiles/nematodes/MA0260.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 104 -10000 96 -10000
- -10000 200 -10000 -10000
- -10000 149 25 -10000
+ -282 -282 184 -282
+ 184 -282 -282 -282
+ 184 -282 -282 -282
+ 93 -282 86 -282
+ -282 184 -282 -282
+ -282 135 22 -282
diff --git a/profiles/nematodes/MA0261.1.pwm b/profiles/nematodes/MA0261.1.pwm
index e4b67ce..7312ce0 100644
--- a/profiles/nematodes/MA0261.1.pwm
+++ b/profiles/nematodes/MA0261.1.pwm
@@ -1,6 +1,6 @@
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 108 -251 49 -173
- -272 109 -45 -2
+ -377 -377 192 -377
+ 192 -377 -377 -377
+ 192 -377 -377 -377
+ -377 192 -377 -377
+ 102 -208 46 -150
+ -222 103 -41 -2
diff --git a/profiles/nematodes/MA0262.1.pwm b/profiles/nematodes/MA0262.1.pwm
index e69de29..6a7474d 100644
--- a/profiles/nematodes/MA0262.1.pwm
+++ b/profiles/nematodes/MA0262.1.pwm
@@ -0,0 +1,13 @@
+ 151 -232 -83 -139
+ 169 -346 -346 -74
+ -346 -297 -346 188
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 -346 190
+ -346 -346 190 -346
+ -346 190 -346 -346
+ -83 -36 134 -297
+ 123 -346 -103 10
+ 93 -346 -169 76
+ 20 -83 -17 49
+ -139 -139 -114 148
diff --git a/profiles/nematodes/MA0263.1.pwm b/profiles/nematodes/MA0263.1.pwm
index d20d2cd..88208fc 100644
--- a/profiles/nematodes/MA0263.1.pwm
+++ b/profiles/nematodes/MA0263.1.pwm
@@ -1,14 +1,14 @@
- 195 -10000 -286 -10000
- -10000 -10000 -286 195
- -286 -10000 -10000 195
- 31 -10000 146 -10000
- -10000 -10000 195 -286
- -186 114 -286 46
- -127 -54 -286 146
- -286 -54 -10000 167
- 95 105 -10000 -10000
- -86 -127 160 -10000
- -10000 -10000 -10000 200
- -10000 -186 -10000 190
- 173 -286 -10000 -86
- 105 -10000 31 -54
+ 177 -267 -187 -267
+ -267 -267 -187 177
+ -187 -267 -267 177
+ 27 -267 131 -267
+ -267 -267 177 -187
+ -136 101 -187 40
+ -98 -44 -187 131
+ -187 -44 -267 150
+ 84 93 -267 -267
+ -69 -98 144 -267
+ -267 -267 -267 182
+ -267 -136 -267 172
+ 156 -187 -267 -69
+ 93 -267 27 -44
diff --git a/profiles/nematodes/MA0264.1.pwm b/profiles/nematodes/MA0264.1.pwm
index 3477c50..977e108 100644
--- a/profiles/nematodes/MA0264.1.pwm
+++ b/profiles/nematodes/MA0264.1.pwm
@@ -1,11 +1,11 @@
- 43 -71 34 -37
- -161 154 -37 -10000
- -10000 186 -10000 -144
- 191 -463 -10000 -231
- -461 199 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -63 -10000 175
- -181 14 136 -461
- 194 -10000 -10000 -263
- 91 24 -29 -303
- 106 -29 -71 -103
+ 40 -63 31 -33
+ -136 145 -33 -344
+ -344 176 -344 -123
+ 181 -297 -346 -186
+ -295 188 -344 -344
+ -346 -346 -346 190
+ -346 -56 -346 165
+ -151 13 128 -295
+ 184 -346 -346 -207
+ 85 22 -26 -230
+ 99 -26 -63 -90
diff --git a/profiles/nematodes/MA0537.1.pwm b/profiles/nematodes/MA0537.1.pwm
index 868d329..ed3c8e3 100644
--- a/profiles/nematodes/MA0537.1.pwm
+++ b/profiles/nematodes/MA0537.1.pwm
@@ -1,11 +1,11 @@
- 118 -10000 79 -10000
- 188 -10000 -166 -640
- 180 -10000 -93 -10000
- 193 -10000 -247 -10000
- 0 -10000 129 -85
- 46 -133 -62 66
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 134 -10000 37 -246
- 187 -10000 -173 -467
- 105 -272 72 -291
+ 117 -588 78 -588
+ 186 -588 -161 -513
+ 178 -588 -91 -588
+ 192 -588 -236 -588
+ 0 -588 128 -83
+ 45 -129 -61 65
+ -588 -588 198 -588
+ 198 -588 -588 -588
+ 132 -588 36 -235
+ 185 -588 -167 -417
+ 104 -259 71 -276
diff --git a/profiles/nematodes/MA0538.1.pwm b/profiles/nematodes/MA0538.1.pwm
index 4985639..d8d5a9b 100644
--- a/profiles/nematodes/MA0538.1.pwm
+++ b/profiles/nematodes/MA0538.1.pwm
@@ -1,15 +1,15 @@
- -83 -96 153 -529
- 86 -10000 -158 88
- -24 -10000 166 -10000
- -76 42 -270 94
- -10000 -10000 200 -10000
- -10000 42 -10000 142
- -10000 -10000 200 -10000
- -138 -64 -148 139
- -10000 -96 131 0
- -529 -10000 -10000 199
- -10000 -529 198 -529
- -10000 102 -129 65
- -29 -10000 111 4
- -120 -96 -48 122
- -120 14 52 4
+ -75 -87 146 -335
+ 82 -375 -139 83
+ -22 -375 158 -375
+ -69 39 -221 89
+ -375 -375 192 -375
+ -375 39 -375 135
+ -375 -375 192 -375
+ -122 -58 -130 132
+ -375 -87 125 0
+ -335 -375 -375 191
+ -375 -335 190 -335
+ -375 96 -114 61
+ -26 -375 105 3
+ -107 -87 -44 116
+ -107 13 49 3
diff --git a/profiles/nematodes/MA0540.1.pwm b/profiles/nematodes/MA0540.1.pwm
index e69de29..eb6c44d 100644
--- a/profiles/nematodes/MA0540.1.pwm
+++ b/profiles/nematodes/MA0540.1.pwm
@@ -0,0 +1,16 @@
+ -251 10 -68 109
+ -107 46 46 -37
+ -162 -251 -68 152
+ -162 160 -251 -107
+ -251 180 -251 -251
+ -251 180 -251 -251
+ -251 -251 -251 180
+ -251 -251 119 46
+ -162 160 -162 -162
+ -251 -251 180 -251
+ -251 173 -251 -162
+ -68 -68 109 -68
+ 136 -251 -251 10
+ 46 -251 -68 87
+ 61 -251 10 29
+ 98 -162 61 -251
diff --git a/profiles/nematodes/MA0541.1.pwm b/profiles/nematodes/MA0541.1.pwm
index e69de29..e38ad03 100644
--- a/profiles/nematodes/MA0541.1.pwm
+++ b/profiles/nematodes/MA0541.1.pwm
@@ -0,0 +1,15 @@
+ 26 41 -145 15
+ 9 -48 55 -40
+ 7 53 -166 26
+ -63 -79 65 26
+ -244 104 68 -277
+ -295 -406 192 -558
+ -463 197 -526 -558
+ -558 -558 198 -558
+ -558 115 80 -558
+ -196 18 137 -558
+ 190 -308 -424 -353
+ 184 -390 -175 -451
+ 135 -192 -158 -23
+ 33 -132 -162 101
+ -77 -49 -63 104
diff --git a/profiles/nematodes/MA0542.1.pwm b/profiles/nematodes/MA0542.1.pwm
index e69de29..413566d 100644
--- a/profiles/nematodes/MA0542.1.pwm
+++ b/profiles/nematodes/MA0542.1.pwm
@@ -0,0 +1,8 @@
+ -480 -71 -480 173
+ -480 123 -52 -12
+ -480 -480 -480 196
+ -480 -480 -480 196
+ 196 -480 -480 -480
+ -480 -480 -480 196
+ -480 196 -480 -480
+ 196 -480 -480 -480
diff --git a/profiles/nematodes/MA0543.1.pwm b/profiles/nematodes/MA0543.1.pwm
index 475069c..91a8240 100644
--- a/profiles/nematodes/MA0543.1.pwm
+++ b/profiles/nematodes/MA0543.1.pwm
@@ -1,15 +1,15 @@
- 49 -89 45 -52
- 54 -124 67 -92
- 158 -182 -91 -243
- -124 -729 183 -597
- 194 -829 -10000 -277
- -165 -10000 185 -354
- 188 -471 -216 -412
- -26 93 3 -206
- 45 -283 115 -186
- -40 80 36 -225
- 192 -293 -348 -10000
- -208 -348 188 -10000
- 190 -671 -208 -571
- -63 10 113 -343
- 164 -359 -77 -218
+ 48 -86 44 -51
+ 53 -118 65 -88
+ 156 -172 -87 -227
+ -118 -489 180 -454
+ 192 -503 -519 -255
+ -157 -519 182 -317
+ 185 -395 -203 -358
+ -25 91 3 -194
+ 44 -261 113 -176
+ -39 79 35 -211
+ 189 -269 -313 -519
+ -196 -313 185 -519
+ 187 -476 -196 -444
+ -61 10 111 -309
+ 161 -321 -74 -205
diff --git a/profiles/nematodes/MA0544.1.pwm b/profiles/nematodes/MA0544.1.pwm
index 8cccb24..64c4aa7 100644
--- a/profiles/nematodes/MA0544.1.pwm
+++ b/profiles/nematodes/MA0544.1.pwm
@@ -1,12 +1,12 @@
- 22 -347 118 -103
- -469 -119 -469 180
- -10000 -10000 200 -10000
- -528 -528 -10000 198
- -469 198 -10000 -528
- -328 -269 184 -269
- -428 -528 195 -395
- -269 172 -237 -152
- -10000 121 -137 38
- -295 -10000 193 -428
- -10000 192 -628 -228
- -99 -25 -107 112
+ 20 -284 113 -95
+ -347 -109 -347 174
+ -422 -422 194 -422
+ -368 -368 -422 192
+ -347 192 -422 -368
+ -272 -232 179 -232
+ -329 -368 189 -312
+ -232 167 -208 -138
+ -422 116 -125 36
+ -251 -422 187 -329
+ -422 186 -392 -201
+ -92 -24 -98 108
diff --git a/profiles/nematodes/MA0545.1.pwm b/profiles/nematodes/MA0545.1.pwm
index e69de29..fd70729 100644
--- a/profiles/nematodes/MA0545.1.pwm
+++ b/profiles/nematodes/MA0545.1.pwm
@@ -0,0 +1,11 @@
+ -40 52 61 -184
+ 163 -190 -79 -436
+ 155 -233 -38 -334
+ -436 195 -436 -436
+ 195 -436 -436 -436
+ -46 -249 159 -367
+ -184 143 -257 -20
+ -436 -367 -436 194
+ -436 -436 195 -436
+ 2 -33 -29 45
+ -436 141 -190 4
diff --git a/profiles/nematodes/MA0546.1.pwm b/profiles/nematodes/MA0546.1.pwm
index e69de29..950871b 100644
--- a/profiles/nematodes/MA0546.1.pwm
+++ b/profiles/nematodes/MA0546.1.pwm
@@ -0,0 +1,10 @@
+ 119 -172 -503 47
+ 106 -503 88 -433
+ 107 -503 -158 63
+ -241 -503 191 -503
+ -503 67 -503 123
+ 174 -74 -503 -503
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 128 -503 60
+ 197 -503 -503 -503
diff --git a/profiles/nematodes/MA0547.1.pwm b/profiles/nematodes/MA0547.1.pwm
index e69de29..911d294 100644
--- a/profiles/nematodes/MA0547.1.pwm
+++ b/profiles/nematodes/MA0547.1.pwm
@@ -0,0 +1,15 @@
+ 121 -82 -34 -161
+ 152 -235 -95 -128
+ 135 -156 -50 -128
+ 170 -424 -204 -113
+ -120 -105 -146 144
+ -424 -197 186 -424
+ 168 -109 -315 -227
+ -178 -424 -424 185
+ -424 -424 194 -424
+ 194 -424 -424 -424
+ -124 113 -167 11
+ 159 -424 -137 -89
+ 154 -424 -424 -3
+ 77 -204 -172 80
+ 20 -102 -55 74
diff --git a/profiles/nematodes/MA0918.1.pwm b/profiles/nematodes/MA0918.1.pwm
index 401bb37..676d62e 100644
--- a/profiles/nematodes/MA0918.1.pwm
+++ b/profiles/nematodes/MA0918.1.pwm
@@ -1,12 +1,12 @@
- -21 -21 48 -21
- 152 -141 -141 -141
- -85 62 79 -244
- 2 127 -338 -104
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -141 186 -10000 -10000
- 169 -288 -288 -98
- -68 3 -3 46
- -29 -29 -29 63
- -14 -14 -14 35
+ -20 -20 47 -20
+ 149 -134 -134 -134
+ -81 60 77 -226
+ 2 124 -301 -99
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -134 183 -503 -503
+ 166 -262 -262 -94
+ -65 3 -3 45
+ -28 -28 -28 61
+ -14 -14 -14 35
diff --git a/profiles/nematodes/MA0919.1.pwm b/profiles/nematodes/MA0919.1.pwm
index e69de29..bcc766c 100644
--- a/profiles/nematodes/MA0919.1.pwm
+++ b/profiles/nematodes/MA0919.1.pwm
@@ -0,0 +1,10 @@
+ 39 -32 24 -50
+ -108 68 -74 41
+ -186 -82 -363 162
+ 168 -208 -180 -186
+ 191 -370 -343 -370
+ -370 -343 -370 191
+ -186 -180 -208 168
+ 162 -363 -82 -186
+ 41 -74 68 -108
+ -50 24 -32 39
diff --git a/profiles/nematodes/MA0920.1.pwm b/profiles/nematodes/MA0920.1.pwm
index e69de29..08fee2f 100644
--- a/profiles/nematodes/MA0920.1.pwm
+++ b/profiles/nematodes/MA0920.1.pwm
@@ -0,0 +1,8 @@
+ 72 -503 109 -237
+ -281 -503 -503 192
+ 170 -52 -503 -503
+ 188 -503 -503 -199
+ 197 -503 -503 -503
+ -199 184 -503 -281
+ 197 -503 -503 -503
+ 78 -20 -89 -20
diff --git a/profiles/nematodes/MA0921.1.pwm b/profiles/nematodes/MA0921.1.pwm
index e69de29..b7852e0 100644
--- a/profiles/nematodes/MA0921.1.pwm
+++ b/profiles/nematodes/MA0921.1.pwm
@@ -0,0 +1,9 @@
+ 64 -77 10 -35
+ 80 -82 -34 -15
+ -206 50 -206 107
+ -133 163 -204 -188
+ 61 -255 101 -180
+ 186 -486 -503 -176
+ -293 -503 -503 193
+ 107 -85 -93 -29
+ 44 -22 -44 6
diff --git a/profiles/nematodes/MA0922.1.pwm b/profiles/nematodes/MA0922.1.pwm
index e69de29..a0003c7 100644
--- a/profiles/nematodes/MA0922.1.pwm
+++ b/profiles/nematodes/MA0922.1.pwm
@@ -0,0 +1,9 @@
+ 195 -456 -456 -456
+ -470 -470 -470 196
+ -56 -470 -470 170
+ 196 -470 -470 -470
+ -470 138 -470 40
+ 97 -470 97 -470
+ -470 -56 -470 170
+ 196 -470 -470 -470
+ 195 -456 -456 -456
diff --git a/profiles/nematodes/MA0923.1.pwm b/profiles/nematodes/MA0923.1.pwm
index 24884d0..7ebcaab 100644
--- a/profiles/nematodes/MA0923.1.pwm
+++ b/profiles/nematodes/MA0923.1.pwm
@@ -1,9 +1,9 @@
- 13 -7 32 -51
- -116 69 28 -47
- -351 22 -538 145
- 177 -110 -364 -451
- 197 -516 -438 -697
- -516 -596 -638 198
- -465 -128 -235 175
- 191 -464 -427 -272
- 104 -227 40 -128
+ 13 -7 31 -49
+ -110 67 27 -45
+ -311 21 -421 142
+ 174 -105 -321 -377
+ 194 -411 -370 -470
+ -411 -444 -456 195
+ -385 -122 -218 171
+ 188 -385 -362 -249
+ 102 -211 39 -122
diff --git a/profiles/nematodes/MA0924.1.pwm b/profiles/nematodes/MA0924.1.pwm
index 710858e..dd2e5db 100644
--- a/profiles/nematodes/MA0924.1.pwm
+++ b/profiles/nematodes/MA0924.1.pwm
@@ -1,8 +1,8 @@
- -146 -797 186 -797
- -797 30 -797 147
- 188 -170 -797 -797
- 200 -797 -797 -797
- -797 -797 -797 200
- 110 -797 -797 88
- 200 -797 -797 -797
- 183 -116 -797 -797
+ -138 -486 183 -486
+ -486 29 -486 144
+ 185 -160 -486 -486
+ 196 -486 -486 -486
+ -486 -486 -486 196
+ 108 -486 -486 86
+ 196 -486 -486 -486
+ 179 -110 -486 -486
diff --git a/profiles/nematodes/MA0925.1.pwm b/profiles/nematodes/MA0925.1.pwm
index e69de29..f7c7766 100644
--- a/profiles/nematodes/MA0925.1.pwm
+++ b/profiles/nematodes/MA0925.1.pwm
@@ -0,0 +1,11 @@
+ 39 -16 -16 -16
+ 12 -13 26 -32
+ -266 -266 -266 182
+ -503 -503 184 -150
+ -150 -503 -503 184
+ -503 197 -503 -503
+ -503 -503 -503 197
+ -21 -503 162 -503
+ -289 -289 171 -113
+ 51 -5 3 -78
+ -20 47 -20 -20
diff --git a/profiles/nematodes/MA0926.1.pwm b/profiles/nematodes/MA0926.1.pwm
index e69de29..d31b48a 100644
--- a/profiles/nematodes/MA0926.1.pwm
+++ b/profiles/nematodes/MA0926.1.pwm
@@ -0,0 +1,8 @@
+ 97 -486 0 0
+ -486 -486 -486 196
+ 196 -486 -486 -486
+ -486 -486 -138 183
+ -486 -486 183 -138
+ -138 183 -486 -486
+ 196 -486 -486 -486
+ -485 -485 -485 196
diff --git a/profiles/nematodes/MA0927.1.pwm b/profiles/nematodes/MA0927.1.pwm
index fc4b111..c6b3874 100644
--- a/profiles/nematodes/MA0927.1.pwm
+++ b/profiles/nematodes/MA0927.1.pwm
@@ -1,8 +1,8 @@
- -24 126 -71 -284
- -380 -110 -10000 179
- 165 -60 -297 -397
- 199 -497 -10000 -10000
- -10000 -338 -497 195
- -497 -338 -88 173
- 184 -10000 -137 -480
- 129 -14 -224 -122
+ -23 124 -68 -259
+ -332 -105 -503 176
+ 162 -58 -269 -343
+ 195 -402 -503 -503
+ -503 -302 -402 192
+ -402 -301 -84 170
+ 181 -503 -130 -393
+ 127 -13 -208 -117
diff --git a/profiles/nematodes/MA0928.1.pwm b/profiles/nematodes/MA0928.1.pwm
index 46cb06f..634a0a5 100644
--- a/profiles/nematodes/MA0928.1.pwm
+++ b/profiles/nematodes/MA0928.1.pwm
@@ -1,11 +1,11 @@
- 37 -15 -15 -15
- 47 -10 9 -69
- -204 -23 -204 141
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 189 -338 -338 -338
- -31 -140 128 -140
- 11 -40 11 11
+ 36 -14 -14 -14
+ 45 -10 9 -66
+ -190 -22 -190 138
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ 186 -301 -301 -301
+ -30 -133 126 -133
+ 11 -39 11 11
diff --git a/profiles/nematodes/MA1438.1.pwm b/profiles/nematodes/MA1438.1.pwm
index e69de29..186c572 100644
--- a/profiles/nematodes/MA1438.1.pwm
+++ b/profiles/nematodes/MA1438.1.pwm
@@ -0,0 +1,10 @@
+ 65 -56 -76 21
+ 113 -223 59 -337
+ -470 -411 -503 195
+ -456 -456 195 -470
+ 190 -503 -393 -265
+ -470 161 -377 -27
+ -74 -262 168 -503
+ -311 -280 -377 187
+ -85 103 12 -163
+ 132 -87 -93 -121
diff --git a/profiles/nematodes/MA1439.1.pwm b/profiles/nematodes/MA1439.1.pwm
index e69de29..4b096a1 100644
--- a/profiles/nematodes/MA1439.1.pwm
+++ b/profiles/nematodes/MA1439.1.pwm
@@ -0,0 +1,8 @@
+ -53 51 43 -89
+ -240 -331 -432 187
+ -470 -503 196 -486
+ 190 -485 -503 -240
+ -485 -432 -503 196
+ 165 -231 -402 -76
+ 152 -255 -127 -88
+ -34 27 34 -43
diff --git a/profiles/nematodes/MA1440.1.pwm b/profiles/nematodes/MA1440.1.pwm
index e69de29..3008567 100644
--- a/profiles/nematodes/MA1440.1.pwm
+++ b/profiles/nematodes/MA1440.1.pwm
@@ -0,0 +1,8 @@
+ 105 -8 -8 -503
+ 166 -343 -503 -50
+ 136 -135 -503 0
+ 194 -349 -503 -503
+ 197 -503 -503 -503
+ -223 161 -503 -52
+ 192 -503 -503 -273
+ 118 -163 -163 13
diff --git a/profiles/nematodes/MA1441.1.pwm b/profiles/nematodes/MA1441.1.pwm
index e69de29..c0bf8fc 100644
--- a/profiles/nematodes/MA1441.1.pwm
+++ b/profiles/nematodes/MA1441.1.pwm
@@ -0,0 +1,11 @@
+ -31 -31 -31 66
+ -9 101 -94 -94
+ -123 -123 -36 124
+ -503 -503 -503 197
+ 183 -503 -503 -139
+ 167 -503 -503 -39
+ -132 -503 -503 182
+ -32 -503 32 94
+ -3 -218 80 9
+ 43 70 -97 -97
+ -5 -5 -73 55
diff --git a/profiles/nematodes/MA1442.1.pwm b/profiles/nematodes/MA1442.1.pwm
index e69de29..f38a3f5 100644
--- a/profiles/nematodes/MA1442.1.pwm
+++ b/profiles/nematodes/MA1442.1.pwm
@@ -0,0 +1,8 @@
+ 162 -154 -154 -206
+ -158 -128 -246 162
+ -262 -262 -503 187
+ 197 -503 -503 -503
+ 194 -503 -503 -343
+ -258 -503 -337 189
+ -155 -321 -192 172
+ 158 -503 -38 -223
diff --git a/profiles/nematodes/MA1443.1.pwm b/profiles/nematodes/MA1443.1.pwm
index e69de29..76ed260 100644
--- a/profiles/nematodes/MA1443.1.pwm
+++ b/profiles/nematodes/MA1443.1.pwm
@@ -0,0 +1,8 @@
+ 9 -31 -66 58
+ -343 -503 -503 194
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -343 194 -503 -503
+ -203 177 -503 -165
+ -16 28 -35 15
diff --git a/profiles/nematodes/MA1444.1.pwm b/profiles/nematodes/MA1444.1.pwm
index e69de29..98331cf 100644
--- a/profiles/nematodes/MA1444.1.pwm
+++ b/profiles/nematodes/MA1444.1.pwm
@@ -0,0 +1,12 @@
+ 142 -196 -83 -99
+ -124 -254 -245 169
+ -245 -334 -350 186
+ -359 -342 -379 191
+ -300 188 -350 -334
+ -108 -390 175 -327
+ -66 -22 -379 128
+ 187 -249 -401 -334
+ 191 -390 -379 -342
+ -249 -206 -350 180
+ 112 -110 -93 -27
+ 36 -55 -85 57
diff --git a/profiles/nematodes/MA1445.1.pwm b/profiles/nematodes/MA1445.1.pwm
index 2bc33be..eec828d 100644
--- a/profiles/nematodes/MA1445.1.pwm
+++ b/profiles/nematodes/MA1445.1.pwm
@@ -1,10 +1,10 @@
- 97 -137 -216 51
- 104 -256 -239 67
- 200 -1028 -928 -10000
- -10000 -869 -10000 200
- -619 200 -10000 -10000
- -10000 -10000 200 -647
- 200 -10000 -928 -10000
- -10000 -928 -1028 200
- 67 -239 -258 104
- 51 -217 -136 97
+ 96 -134 -209 51
+ 103 -247 -230 66
+ 198 -608 -600 -616
+ -616 -593 -616 198
+ -518 198 -616 -616
+ -616 -616 198 -531
+ 198 -616 -600 -616
+ -616 -600 -608 198
+ 66 -230 -248 103
+ 51 -210 -133 96
diff --git a/profiles/nematodes/MA1446.1.pwm b/profiles/nematodes/MA1446.1.pwm
index e69de29..9c31d2f 100644
--- a/profiles/nematodes/MA1446.1.pwm
+++ b/profiles/nematodes/MA1446.1.pwm
@@ -0,0 +1,12 @@
+ 25 -24 -15 9
+ -1 -19 -15 30
+ -147 -374 181 -407
+ -220 -217 -306 178
+ 185 -193 -361 -457
+ 184 -206 -419 -292
+ 195 -466 -475 -390
+ -348 190 -507 -267
+ 194 -466 -395 -407
+ -27 122 -134 -119
+ 50 -28 -9 -28
+ 25 -16 -24 10
diff --git a/profiles/nematodes/MA1448.1.pwm b/profiles/nematodes/MA1448.1.pwm
index e69de29..9bd0bf2 100644
--- a/profiles/nematodes/MA1448.1.pwm
+++ b/profiles/nematodes/MA1448.1.pwm
@@ -0,0 +1,7 @@
+ -443 -443 -443 195
+ -443 -443 195 -443
+ 195 -443 -443 -443
+ -443 195 -443 -443
+ -443 -443 -443 195
+ -443 195 -443 -443
+ 195 -443 -443 -443
diff --git a/profiles/nematodes/MA1449.1.pwm b/profiles/nematodes/MA1449.1.pwm
index 30b5127..d0b46fc 100644
--- a/profiles/nematodes/MA1449.1.pwm
+++ b/profiles/nematodes/MA1449.1.pwm
@@ -1,12 +1,12 @@
- 22 -25 -12 11
- 66 -148 59 -85
- -182 -128 -208 162
- -620 198 -532 -620
- 192 -478 -520 -272
- -498 183 -383 -151
- -151 -383 183 -498
- -272 -520 -478 192
- -620 -532 198 -620
- 162 -208 -128 -182
- -85 59 -148 66
- 11 -12 -25 22
+ 22 -24 -12 10
+ 65 -142 58 -82
+ -173 -124 -198 160
+ -477 196 -439 -477
+ 190 -409 -433 -254
+ -420 180 -344 -145
+ -145 -344 180 -420
+ -254 -433 -409 190
+ -477 -439 196 -477
+ 160 -198 -124 -173
+ -82 58 -142 65
+ 10 -12 -24 22
diff --git a/profiles/nematodes/MA1450.1.pwm b/profiles/nematodes/MA1450.1.pwm
index 40fd44a..d927d99 100644
--- a/profiles/nematodes/MA1450.1.pwm
+++ b/profiles/nematodes/MA1450.1.pwm
@@ -1,14 +1,14 @@
- -73 -107 131 -117
- -44 -91 124 -146
- 124 -208 -41 -62
- 183 -299 -276 -251
- 188 -553 -291 -257
- -500 -477 -720 197
- -572 -607 -500 198
- -348 183 -528 -156
- 191 -385 -276 -553
- 198 -572 -607 -513
- 194 -582 -544 -293
- -117 -222 -467 172
- 14 -221 -112 115
- -73 -109 -8 99
+ -71 -104 129 -114
+ -43 -88 123 -142
+ 122 -200 -40 -61
+ 181 -282 -261 -240
+ 186 -467 -275 -245
+ -436 -421 -534 195
+ -477 -493 -436 196
+ -324 181 -453 -151
+ 189 -354 -261 -467
+ 196 -477 -493 -444
+ 192 -482 -462 -276
+ -114 -213 -414 171
+ 14 -212 -109 114
+ -71 -106 -8 97
diff --git a/profiles/nematodes/MA1451.1.pwm b/profiles/nematodes/MA1451.1.pwm
index e948090..6abb3da 100644
--- a/profiles/nematodes/MA1451.1.pwm
+++ b/profiles/nematodes/MA1451.1.pwm
@@ -1,8 +1,8 @@
- 199 -638 -638 -638
- 199 -638 -638 -638
- 199 -638 -638 -638
- -638 -638 140 41
- -638 -638 199 -638
- -638 -638 -638 199
- -638 199 -638 -638
- 198 -596 -596 -596
+ 195 -456 -456 -456
+ 195 -456 -456 -456
+ 195 -456 -456 -456
+ -456 -456 138 40
+ -456 -456 195 -456
+ -456 -456 -456 195
+ -456 195 -456 -456
+ 195 -443 -443 -443
diff --git a/profiles/nematodes/MA1699.1.pwm b/profiles/nematodes/MA1699.1.pwm
index e69de29..9f16a34 100644
--- a/profiles/nematodes/MA1699.1.pwm
+++ b/profiles/nematodes/MA1699.1.pwm
@@ -0,0 +1,16 @@
+ 42 1 -43 -13
+ 85 -109 29 -100
+ 167 -361 -97 -218
+ 187 -433 -413 -212
+ 190 -361 -475 -270
+ 196 -515 -498 -462
+ 195 -482 -392 -475
+ -462 -428 -524 196
+ -462 196 -524 -462
+ 88 -462 104 -405
+ 196 -498 -449 -482
+ -438 -475 -524 196
+ 193 -396 -405 -405
+ 181 -298 -340 -186
+ 69 -213 -317 103
+ -29 -134 -229 137
diff --git a/profiles/nematodes/MA1701.1.pwm b/profiles/nematodes/MA1701.1.pwm
index 33278dc..9ff2395 100644
--- a/profiles/nematodes/MA1701.1.pwm
+++ b/profiles/nematodes/MA1701.1.pwm
@@ -1,10 +1,10 @@
- -50 -10 -106 91
- -160 -33 -88 122
- -643 200 -960 -10000
- -614 -447 -560 197
- -802 -10000 -10000 200
- 200 -10000 -10000 -10000
- -860 -628 -10000 199
- -447 198 -960 -860
- 151 -393 -139 -51
- 14 -15 22 -27
+ -49 -9 -103 90
+ -155 -33 -86 121
+ -511 198 -573 -583
+ -499 -401 -472 195
+ -554 -583 -583 198
+ 198 -583 -583 -583
+ -563 -505 -583 198
+ -401 196 -573 -563
+ 149 -361 -135 -50
+ 14 -15 22 -26
diff --git a/profiles/nematodes/MA1703.1.pwm b/profiles/nematodes/MA1703.1.pwm
index 1fb1165..93feb9e 100644
--- a/profiles/nematodes/MA1703.1.pwm
+++ b/profiles/nematodes/MA1703.1.pwm
@@ -1,11 +1,11 @@
- 54 -45 -94 37
- 119 -183 -25 -75
- -186 166 -138 -246
- -304 -257 -705 189
- -405 -579 194 -376
- 196 -513 -521 -438
- -605 -779 -838 199
- 194 -568 -529 -298
- 184 -421 -215 -282
- -61 1 69 -47
- 95 -71 -10 -92
+ 53 -44 -91 36
+ 118 -176 -25 -73
+ -179 164 -133 -234
+ -285 -244 -524 187
+ -368 -477 192 -345
+ 194 -441 -445 -392
+ -489 -541 -551 197
+ 192 -471 -450 -281
+ 182 -379 -206 -266
+ -59 1 68 -46
+ 93 -70 -10 -90
diff --git a/profiles/nematodes/MA1704.1.pwm b/profiles/nematodes/MA1704.1.pwm
index e69de29..83df20d 100644
--- a/profiles/nematodes/MA1704.1.pwm
+++ b/profiles/nematodes/MA1704.1.pwm
@@ -0,0 +1,11 @@
+ -14 -11 -73 64
+ -19 -170 45 53
+ 163 -305 -45 -452
+ -442 -496 -503 196
+ -452 -510 184 -154
+ 196 -518 -452 -484
+ -442 195 -447 -442
+ -429 -429 195 -496
+ -387 -220 -447 188
+ -10 143 -213 -275
+ 180 -325 -227 -230
diff --git a/profiles/plants/MA0001.1.pwm b/profiles/plants/MA0001.1.pwm
index 45ed02c..f7ca0ff 100644
--- a/profiles/plants/MA0001.1.pwm
+++ b/profiles/plants/MA0001.1.pwm
@@ -1,10 +1,10 @@
- -10000 195 -460 -360
- -301 163 -10000 -35
- 170 -260 -301 -114
- 72 -301 -260 104
- 144 -460 -460 26
- 99 -360 -10000 95
- 142 -228 -228 -14
- -114 -360 -301 174
- 142 -301 21 -460
- -10000 -301 186 -201
+ -344 185 -295 -258
+ -229 154 -344 -32
+ 161 -205 -229 -99
+ 67 -229 -205 97
+ 136 -295 -295 24
+ 92 -258 -344 89
+ 134 -184 -184 -13
+ -99 -258 -229 164
+ 134 -229 19 -295
+ -344 -229 176 -166
diff --git a/profiles/plants/MA0001.2.pwm b/profiles/plants/MA0001.2.pwm
index e69de29..35ed639 100644
--- a/profiles/plants/MA0001.2.pwm
+++ b/profiles/plants/MA0001.2.pwm
@@ -0,0 +1,18 @@
+ -10 26 48 -107
+ -51 -120 26 73
+ 7 -133 -202 121
+ 17 -51 -76 66
+ -343 185 -343 -227
+ -343 164 -343 -51
+ 169 -293 -256 -107
+ 70 -202 -227 95
+ 116 -343 -293 63
+ 52 -343 -343 125
+ 136 -293 -202 7
+ 7 -202 -227 132
+ 134 -343 22 -227
+ -343 -343 185 -227
+ 44 -67 -59 44
+ 106 -182 -147 35
+ 86 -4 -76 -67
+ -16 1 12 1
diff --git a/profiles/plants/MA0005.1.pwm b/profiles/plants/MA0005.1.pwm
index a388b0a..5e2d7dd 100644
--- a/profiles/plants/MA0005.1.pwm
+++ b/profiles/plants/MA0005.1.pwm
@@ -1,11 +1,11 @@
- -10000 195 -349 -449
- -349 193 -10000 -349
- 76 -132 -168 68
- 144 -217 -349 -3
- 170 -449 -449 -58
- 46 -291 -249 121
- 3 -49 -40 60
- -17 -79 21 46
- -3 -10000 151 -249
- -449 -10000 187 -168
- 26 15 -132 37
+ -339 185 -251 -288
+ -251 183 -339 -251
+ 70 -113 -141 63
+ 135 -175 -251 -3
+ 160 -288 -288 -52
+ 42 -221 -196 113
+ 3 -44 -36 55
+ -15 -69 19 42
+ -3 -339 142 -196
+ -288 -339 176 -141
+ 24 14 -113 33
diff --git a/profiles/plants/MA0005.2.pwm b/profiles/plants/MA0005.2.pwm
index 779289b..46b2e23 100644
--- a/profiles/plants/MA0005.2.pwm
+++ b/profiles/plants/MA0005.2.pwm
@@ -1,18 +1,18 @@
- 35 28 -146 20
- -87 -246 -246 163
- -72 -10000 -404 174
- 81 -104 -104 35
- -10000 200 -10000 -10000
- -10000 198 -10000 -404
- 91 -246 -146 66
- 151 -304 -10000 4
- 166 -10000 -404 -34
- 60 -10000 -404 128
- 4 -14 -58 48
- 20 -104 28 20
- -124 -10000 179 -304
- -304 -10000 171 -72
- 42 4 -172 42
- 145 -204 -172 -46
- 128 -146 -87 -58
- -14 -72 -4 60
+ 31 25 -121 18
+ -75 -188 -188 152
+ -62 -319 -261 162
+ 74 -89 -89 31
+ -319 188 -319 -319
+ -319 185 -319 -261
+ 83 -188 -121 60
+ 140 -220 -319 4
+ 154 -319 -261 -30
+ 54 -319 -261 118
+ 4 -12 -51 43
+ 18 -89 25 18
+ -104 -319 167 -220
+ -220 -319 160 -62
+ 37 4 -140 37
+ 134 -162 -140 -40
+ 118 -121 -75 -51
+ -12 -62 -4 54
diff --git a/profiles/plants/MA0008.1.pwm b/profiles/plants/MA0008.1.pwm
index 8a09770..e70096c 100644
--- a/profiles/plants/MA0008.1.pwm
+++ b/profiles/plants/MA0008.1.pwm
@@ -1,8 +1,8 @@
- -106 106 -64 -32
- 175 -264 -10000 -106
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -32 -10000 168
- 194 -10000 -264 -10000
- -264 -10000 -10000 194
- -10000 -10000 -164 188
+ -82 93 -51 -26
+ 157 -174 -258 -82
+ 181 -258 -258 -258
+ -258 -258 -258 181
+ -258 -26 -258 150
+ 175 -258 -174 -258
+ -174 -258 -258 175
+ -258 -258 -121 169
diff --git a/profiles/plants/MA0008.2.pwm b/profiles/plants/MA0008.2.pwm
index e69de29..4e9c473 100644
--- a/profiles/plants/MA0008.2.pwm
+++ b/profiles/plants/MA0008.2.pwm
@@ -0,0 +1,12 @@
+ -144 6 -50 91
+ -37 -11 -68 74
+ -73 103 -42 -73
+ 169 -172 -260 -172
+ 182 -265 -265 -265
+ -265 -265 -265 182
+ -265 -27 -265 151
+ 182 -265 -265 -265
+ -265 -265 -265 182
+ -265 -265 -265 182
+ -31 -125 135 -213
+ -63 90 7 -118
diff --git a/profiles/plants/MA0020.1.pwm b/profiles/plants/MA0020.1.pwm
index e69de29..65ddb3b 100644
--- a/profiles/plants/MA0020.1.pwm
+++ b/profiles/plants/MA0020.1.pwm
@@ -0,0 +1,6 @@
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 179 -248
+ -63 124 -102 -102
+ 35 16 -63 -6
diff --git a/profiles/plants/MA0021.1.pwm b/profiles/plants/MA0021.1.pwm
index e69de29..baf5d22 100644
--- a/profiles/plants/MA0021.1.pwm
+++ b/profiles/plants/MA0021.1.pwm
@@ -0,0 +1,6 @@
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ 179 -248 -248 -248
+ -248 -248 179 -248
+ -248 80 -63 52
+ 16 16 67 -248
diff --git a/profiles/plants/MA0034.1.pwm b/profiles/plants/MA0034.1.pwm
index e69de29..a48099a 100644
--- a/profiles/plants/MA0034.1.pwm
+++ b/profiles/plants/MA0034.1.pwm
@@ -0,0 +1,10 @@
+ -51 -5 71 -51
+ 58 -26 14 -82
+ -82 93 -258 45
+ 169 -174 -174 -258
+ 181 -258 -258 -258
+ -174 175 -258 -258
+ -82 102 -5 -121
+ -5 -258 143 -258
+ 58 71 -258 -51
+ -26 143 -174 -258
diff --git a/profiles/plants/MA0053.1.pwm b/profiles/plants/MA0053.1.pwm
index 99f4613..b70651e 100644
--- a/profiles/plants/MA0053.1.pwm
+++ b/profiles/plants/MA0053.1.pwm
@@ -1,5 +1,5 @@
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -32 126 -10000 -32
+ 176 -228 -228 -228
+ 176 -228 -228 -228
+ 176 -228 -228 -228
+ -228 -228 176 -228
+ -25 108 -228 -25
diff --git a/profiles/plants/MA0054.1.pwm b/profiles/plants/MA0054.1.pwm
index e69de29..74d9554 100644
--- a/profiles/plants/MA0054.1.pwm
+++ b/profiles/plants/MA0054.1.pwm
@@ -0,0 +1,9 @@
+ 11 -194 -226 130
+ 175 -266 -226 -194
+ 173 -323 -226 -147
+ -169 171 -194 -266
+ -70 57 -11 -4
+ -70 -226 149 -147
+ -38 -96 -323 138
+ -194 -4 -266 138
+ 62 -266 -323 114
diff --git a/profiles/plants/MA0064.1.pwm b/profiles/plants/MA0064.1.pwm
index e69de29..4804b22 100644
--- a/profiles/plants/MA0064.1.pwm
+++ b/profiles/plants/MA0064.1.pwm
@@ -0,0 +1,5 @@
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ 177 -232 -232 -232
+ -232 -232 177 -232
+ -132 100 -132 26
diff --git a/profiles/plants/MA0082.1.pwm b/profiles/plants/MA0082.1.pwm
index e69de29..3b1efea 100644
--- a/profiles/plants/MA0082.1.pwm
+++ b/profiles/plants/MA0082.1.pwm
@@ -0,0 +1,14 @@
+ 48 79 -190 -72
+ -270 140 -270 8
+ 152 -270 -72 -140
+ 97 -140 -190 48
+ 146 -270 -270 -8
+ 105 -270 -270 70
+ 152 -190 -270 -48
+ 8 -270 -190 133
+ 79 -190 88 -270
+ -190 -190 173 -270
+ 79 -48 -190 36
+ 157 -48 -270 -270
+ 133 -140 -102 -72
+ -8 -48 8 36
diff --git a/profiles/plants/MA0096.1.pwm b/profiles/plants/MA0096.1.pwm
index e69de29..67baa2a 100644
--- a/profiles/plants/MA0096.1.pwm
+++ b/profiles/plants/MA0096.1.pwm
@@ -0,0 +1,7 @@
+ 69 69 -66 -279
+ -279 -279 -279 183
+ -279 -279 183 -279
+ 183 -279 -279 -279
+ -279 183 -279 -279
+ -279 -279 183 -279
+ -279 -279 -279 183
diff --git a/profiles/plants/MA0097.1.pwm b/profiles/plants/MA0097.1.pwm
index dda6ed8..1caa414 100644
--- a/profiles/plants/MA0097.1.pwm
+++ b/profiles/plants/MA0097.1.pwm
@@ -1,12 +1,12 @@
- -304 -10000 191 -304
- 104 -10000 96 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -304 196 -10000
- -304 -10000 142 28
- 42 128 -304 -304
- -304 196 -10000 -10000
+ -199 -275 174 -199
+ 93 -275 85 -275
+ -275 -275 -275 183
+ -275 -275 183 -275
+ 183 -275 -275 -275
+ -275 183 -275 -275
+ -275 -275 183 -275
+ -275 -275 -275 183
+ -275 -199 179 -275
+ -199 -275 127 24
+ 36 115 -199 -199
+ -199 179 -275 -275
diff --git a/profiles/plants/MA0110.1.pwm b/profiles/plants/MA0110.1.pwm
index e69de29..03f644c 100644
--- a/profiles/plants/MA0110.1.pwm
+++ b/profiles/plants/MA0110.1.pwm
@@ -0,0 +1,9 @@
+ -125 93 -3 -52
+ -210 150 -96 -125
+ 155 -52 -282 -210
+ 184 -282 -282 -282
+ -282 -282 -282 184
+ -161 -72 10 100
+ 184 -282 -282 -282
+ -282 -282 -282 184
+ -282 -282 -282 184
diff --git a/profiles/plants/MA0110.2.pwm b/profiles/plants/MA0110.2.pwm
index e69de29..9e19dbd 100644
--- a/profiles/plants/MA0110.2.pwm
+++ b/profiles/plants/MA0110.2.pwm
@@ -0,0 +1,13 @@
+ -260 22 59 22
+ -86 7 89 -86
+ -159 36 -14 56
+ -159 82 13 -31
+ -292 158 -104 -133
+ 158 -59 -292 -218
+ 185 -292 -292 -292
+ -292 -292 -292 185
+ -169 -24 -41 106
+ 185 -292 -292 -292
+ -292 -292 -292 185
+ -292 -292 -292 185
+ -123 -123 128 -49
diff --git a/profiles/plants/MA0110.3.pwm b/profiles/plants/MA0110.3.pwm
index e69de29..cabe571 100644
--- a/profiles/plants/MA0110.3.pwm
+++ b/profiles/plants/MA0110.3.pwm
@@ -0,0 +1,12 @@
+ 52 -40 -90 35
+ 10 -18 -91 60
+ -125 156 -264 -110
+ 192 -352 -469 -339
+ 191 -383 -509 -275
+ -332 -438 -492 193
+ -156 166 -319 -135
+ 194 -513 -507 -342
+ -192 -365 -367 184
+ -196 -292 -261 179
+ 29 -60 -13 27
+ 51 -69 -65 40
diff --git a/profiles/plants/MA0121.1.pwm b/profiles/plants/MA0121.1.pwm
index e82b06f..31fae32 100644
--- a/profiles/plants/MA0121.1.pwm
+++ b/profiles/plants/MA0121.1.pwm
@@ -1,8 +1,8 @@
- 190 -191 -10000 -10000
- -10000 -10000 200 -10000
- 190 -10000 -191 -10000
- -10000 -10000 -10000 200
- 9 68 -10000 42
- -191 109 -10000 68
- -10000 -10000 126 68
- -32 68 9 -91
+ 167 -126 -228 -228
+ -228 -228 176 -228
+ 167 -228 -126 -228
+ -228 -228 -228 176
+ 7 56 -228 34
+ -126 93 -228 56
+ -228 -228 108 56
+ -25 56 7 -67
diff --git a/profiles/plants/MA0123.1.pwm b/profiles/plants/MA0123.1.pwm
index 0d23edb..4cba726 100644
--- a/profiles/plants/MA0123.1.pwm
+++ b/profiles/plants/MA0123.1.pwm
@@ -1,10 +1,10 @@
- -10000 200 -10000 -10000
- -3 -10000 159 -10000
- -10000 71 124 -10000
- -10000 91 -361 103
- -361 -203 188 -10000
- -10000 188 -161 -10000
- -129 119 -103 -29
- -203 103 -16 -29
- -203 134 -129 -29
- -161 109 -81 -3
+ -300 186 -300 -300
+ -3 -300 147 -300
+ -300 64 114 -300
+ -300 82 -235 93
+ -235 -156 174 -300
+ -300 174 -128 -300
+ -105 109 -85 -25
+ -156 93 -13 -25
+ -156 123 -105 -25
+ -128 99 -68 -3
diff --git a/profiles/plants/MA0127.1.pwm b/profiles/plants/MA0127.1.pwm
index 9b8dafd..2ade68f 100644
--- a/profiles/plants/MA0127.1.pwm
+++ b/profiles/plants/MA0127.1.pwm
@@ -1,10 +1,10 @@
- 151 -239 -39 -239
- -81 86 -58 -7
- -339 -10000 -239 189
- -139 -10000 -139 170
- -181 165 -239 -139
- -10000 -239 -239 186
- -239 -10000 -339 189
- 161 -58 -239 -339
- -139 -181 -10000 174
- -239 -107 42 100
+ 138 -174 -33 -174
+ -67 77 -49 -6
+ -221 -290 -174 174
+ -111 -290 -111 156
+ -139 151 -174 -111
+ -290 -174 -174 171
+ -174 -290 -221 174
+ 147 -49 -174 -221
+ -111 -139 -290 160
+ -174 -87 37 90
diff --git a/profiles/plants/MA0128.1.pwm b/profiles/plants/MA0128.1.pwm
index 7edc085..8a7a879 100644
--- a/profiles/plants/MA0128.1.pwm
+++ b/profiles/plants/MA0128.1.pwm
@@ -1,8 +1,8 @@
- 147 -10000 -10000 30
- -170 111 30 -170
- 200 -10000 -10000 -10000
- -10000 188 -10000 -170
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -170 188 -10000
- -10000 -170 188 -10000
+ 125 -220 -220 24
+ -113 93 24 -113
+ 174 -220 -220 -220
+ -220 164 -220 -113
+ -220 -220 174 -220
+ -220 -220 -220 174
+ -220 -113 164 -220
+ -220 -113 164 -220
diff --git a/profiles/plants/MA0129.1.pwm b/profiles/plants/MA0129.1.pwm
index dce691c..2a3b170 100644
--- a/profiles/plants/MA0129.1.pwm
+++ b/profiles/plants/MA0129.1.pwm
@@ -1,7 +1,7 @@
- 9 9 -10000 90
- 179 -10000 -191 -191
- -10000 190 -10000 -191
- -91 -10000 179 -10000
- -191 -10000 -10000 190
- -10000 200 -10000 -10000
- 179 -10000 -191 -191
+ 7 7 -228 76
+ 157 -228 -126 -126
+ -228 167 -228 -126
+ -67 -228 157 -228
+ -126 -228 -228 167
+ -228 176 -228 -228
+ 157 -228 -126 -126
diff --git a/profiles/plants/MA0548.1.pwm b/profiles/plants/MA0548.1.pwm
index e69de29..f7c6c06 100644
--- a/profiles/plants/MA0548.1.pwm
+++ b/profiles/plants/MA0548.1.pwm
@@ -0,0 +1,15 @@
+ -175 -233 -274 175
+ -252 -163 -216 171
+ -95 -373 -153 161
+ -373 186 -300 -252
+ -252 133 -332 27
+ 70 -81 -95 36
+ -117 -64 -109 129
+ -17 -252 -274 148
+ -274 -373 -373 189
+ -117 -175 -187 158
+ -125 -125 -43 127
+ -95 -373 165 -187
+ -300 -373 148 2
+ 49 -29 -29 -5
+ 103 -163 -153 36
diff --git a/profiles/plants/MA0548.2.pwm b/profiles/plants/MA0548.2.pwm
index c7a9ed4..8bacf73 100644
--- a/profiles/plants/MA0548.2.pwm
+++ b/profiles/plants/MA0548.2.pwm
@@ -1,19 +1,19 @@
- -17 54 -13 -43
- -164 -218 -490 178
- -323 -490 -564 194
- -83 -423 -283 170
- -10000 199 -10000 -564
- -10000 154 -10000 13
- 42 -90 -158 85
- -77 -82 -150 132
- 11 -10000 -523 153
- -442 -423 -10000 196
- -75 -173 -227 154
- -12 -183 17 75
- -26 -723 166 -10000
- -10000 -10000 197 -342
- 112 -158 -242 39
- 186 -353 -490 -198
- 167 -442 -237 -77
- -41 22 30 -25
- 7 -96 -158 107
+ -16 52 -12 -41
+ -153 -199 -381 174
+ -282 -381 -410 190
+ -79 -346 -252 166
+ -467 195 -467 -410
+ -467 150 -467 13
+ 40 -86 -147 82
+ -73 -77 -140 128
+ 11 -467 -395 149
+ -357 -346 -467 192
+ -71 -161 -207 150
+ -11 -170 16 72
+ -25 -445 162 -467
+ -467 -467 192 -295
+ 109 -147 -219 37
+ 182 -303 -381 -182
+ 163 -357 -215 -73
+ -39 22 29 -24
+ 7 -91 -147 104
diff --git a/profiles/plants/MA0549.1.pwm b/profiles/plants/MA0549.1.pwm
index 5eebdf0..a4fa6a2 100644
--- a/profiles/plants/MA0549.1.pwm
+++ b/profiles/plants/MA0549.1.pwm
@@ -1,11 +1,11 @@
- -11 86 -131 -24
- 73 -163 101 -10000
- -10000 200 -10000 -10000
- 185 -10000 -263 -204
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -304 -10000 196 -10000
- -63 -231 54 76
- -54 42 89 -304
- 54 23 42 -463
+ -10 80 -113 -21
+ 68 -138 95 -345
+ -345 190 -345 -345
+ 175 -345 -207 -168
+ -345 190 -345 -345
+ -345 -345 190 -345
+ -345 -345 -345 190
+ -231 -345 185 -345
+ -56 -186 50 71
+ -48 38 83 -231
+ 50 21 38 -297
diff --git a/profiles/plants/MA0550.1.pwm b/profiles/plants/MA0550.1.pwm
index 63c48d8..a393292 100644
--- a/profiles/plants/MA0550.1.pwm
+++ b/profiles/plants/MA0550.1.pwm
@@ -1,14 +1,14 @@
- 72 65 -35 -10000
- 52 30 -50 -67
- -35 -94 44 42
- 36 79 -56 -167
- -10000 200 -10000 -10000
- 194 -426 -10000 -326
- -267 194 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -267 -294 189 -10000
- 13 -10000 3 91
- 10 47 17 -126
- 13 67 -80 -45
- 108 3 -10000 -21
+ 68 61 -32 -374
+ 49 28 -46 -61
+ -32 -84 41 39
+ 33 74 -51 -145
+ -374 192 -374 -374
+ 186 -302 -374 -254
+ -218 186 -374 -374
+ -374 -374 192 -374
+ -374 -374 -374 192
+ -218 -235 181 -374
+ 13 -374 3 86
+ 9 44 16 -111
+ 13 63 -72 -41
+ 102 3 -374 -20
diff --git a/profiles/plants/MA0550.2.pwm b/profiles/plants/MA0550.2.pwm
index e37736b..0525957 100644
--- a/profiles/plants/MA0550.2.pwm
+++ b/profiles/plants/MA0550.2.pwm
@@ -1,20 +1,20 @@
- -63 82 -17 -53
- -520 182 -520 -127
- 126 -211 47 -10000
- -10000 197 -10000 -350
- 196 -720 -520 -388
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -488 -10000 -10000 199
- -10000 -10000 200 -10000
- -374 91 -191 83
- 54 -165 93 -161
- 43 1 -69 4
- 17 20 -37 -7
- -47 5 -91 78
- -41 22 -14 23
- 18 -3 -101 48
- -6 10 -58 38
- 3 -17 -28 34
- 16 5 -79 35
- -61 -11 -22 65
+ -60 80 -16 -50
+ -393 178 -393 -119
+ 122 -193 45 -466
+ -466 192 -466 -301
+ 192 -444 -393 -325
+ -466 196 -466 -466
+ -466 -466 196 -466
+ -379 -466 -466 194
+ -466 -466 196 -466
+ -317 89 -176 80
+ 52 -153 90 -150
+ 41 1 -66 4
+ 16 19 -35 -7
+ -45 5 -86 75
+ -39 21 -14 23
+ 17 -3 -95 46
+ -6 10 -56 36
+ 3 -16 -27 33
+ 15 5 -75 33
+ -58 -11 -21 63
diff --git a/profiles/plants/MA0551.1.pwm b/profiles/plants/MA0551.1.pwm
index e69de29..d802b98 100644
--- a/profiles/plants/MA0551.1.pwm
+++ b/profiles/plants/MA0551.1.pwm
@@ -0,0 +1,16 @@
+ 35 -39 -22 15
+ 41 -48 -35 22
+ -58 -51 -129 115
+ -265 -276 175 -157
+ 87 100 -395 -332
+ -424 193 -395 -371
+ 190 -395 -265 -424
+ -350 190 -316 -395
+ -395 -316 190 -350
+ -424 -265 -395 190
+ -371 -395 193 -424
+ -332 -395 100 87
+ -157 175 -276 -265
+ 115 -129 -51 -58
+ 22 -35 -48 41
+ 15 -22 -39 35
diff --git a/profiles/plants/MA0552.1.pwm b/profiles/plants/MA0552.1.pwm
index af30214..07ed0ca 100644
--- a/profiles/plants/MA0552.1.pwm
+++ b/profiles/plants/MA0552.1.pwm
@@ -1,14 +1,14 @@
- 38 -125 38 -3
- -19 -10000 90 34
- 30 -3 3 -37
- 90 -183 49 -113
- -8 -8 17 -3
- -166 -75 136 -93
- 42 -103 -103 75
- -10000 185 -137 -10000
- 200 -10000 -10000 -10000
- -10000 199 -483 -10000
- -10000 -10000 200 -10000
- -10000 -383 -10000 197
- -10000 -10000 200 -10000
- -37 -31 84 -66
+ 35 -109 35 -2
+ -17 -355 84 31
+ 27 -2 2 -34
+ 84 -155 45 -99
+ -7 -7 15 -2
+ -142 -66 128 -82
+ 38 -90 -90 70
+ -355 176 -119 -355
+ 190 -355 -355 -355
+ -355 189 -309 -355
+ -355 -355 190 -355
+ -355 -274 -355 188
+ -355 -355 190 -355
+ -34 -28 78 -59
diff --git a/profiles/plants/MA0553.1.pwm b/profiles/plants/MA0553.1.pwm
index 4111ba2..434ae0f 100644
--- a/profiles/plants/MA0553.1.pwm
+++ b/profiles/plants/MA0553.1.pwm
@@ -1,8 +1,8 @@
- -10000 151 -10000 19
- -10000 170 -39 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -56 173
- 188 -161 -10000 -10000
- -10000 200 -10000 -10000
+ -371 144 -371 18
+ -371 162 -36 -371
+ -371 -371 -371 192
+ -371 192 -371 -371
+ -371 -371 192 -371
+ -371 -371 -51 165
+ 179 -140 -371 -371
+ -371 192 -371 -371
diff --git a/profiles/plants/MA0554.1.pwm b/profiles/plants/MA0554.1.pwm
index e69de29..fdae156 100644
--- a/profiles/plants/MA0554.1.pwm
+++ b/profiles/plants/MA0554.1.pwm
@@ -0,0 +1,15 @@
+ 36 -81 -111 75
+ -35 24 -93 59
+ -166 -274 -247 175
+ -172 -494 -197 177
+ -88 -208 -125 149
+ -306 191 -349 -494
+ -494 144 -380 23
+ 102 -237 -185 58
+ -67 -143 -494 157
+ -74 -409 -494 173
+ -296 -389 -494 192
+ -112 -287 -494 175
+ -124 -155 -130 150
+ -28 -372 159 -342
+ -323 -291 155 -27
diff --git a/profiles/plants/MA0555.1.pwm b/profiles/plants/MA0555.1.pwm
index e69de29..c1ef315 100644
--- a/profiles/plants/MA0555.1.pwm
+++ b/profiles/plants/MA0555.1.pwm
@@ -0,0 +1,20 @@
+ 26 6 -12 -25
+ 26 -92 -129 90
+ 26 -290 -103 113
+ 48 -47 -92 44
+ -143 178 -340 -340
+ -223 168 -290 -116
+ 125 -47 -143 -92
+ 145 -178 -129 -82
+ 180 -340 -340 -160
+ 164 -290 -253 -82
+ 166 -129 -223 -223
+ 52 -103 -63 52
+ -47 -340 159 -253
+ -340 -340 189 -340
+ 153 -103 -340 -92
+ 177 -253 -253 -199
+ 164 -143 -253 -160
+ 52 -129 70 -92
+ 104 -47 -178 -12
+ 67 -12 -223 35
diff --git a/profiles/plants/MA0556.1.pwm b/profiles/plants/MA0556.1.pwm
index 29eb286..4bf28a6 100644
--- a/profiles/plants/MA0556.1.pwm
+++ b/profiles/plants/MA0556.1.pwm
@@ -1,15 +1,15 @@
- 34 -101 -186 97
- 21 -114 -90 89
- -60 173 -10000 -518
- -10000 167 -618 -33
- 135 -25 -273 -110
- 158 -173 -273 -83
- 196 -10000 -10000 -318
- 172 -618 -10000 -54
- 110 -286 52 -179
- 38 -10000 -128 119
- 43 -518 139 -10000
- -338 -10000 196 -10000
- 133 -38 -386 -63
- 167 -201 -301 -114
- 174 -301 -194 -186
+ 32 -94 -167 94
+ 20 -105 -83 85
+ -56 167 -417 -362
+ -417 162 -387 -31
+ 130 -24 -233 -101
+ 152 -155 -233 -77
+ 190 -417 -417 -265
+ 167 -387 -417 -51
+ 106 -243 49 -161
+ 37 -417 -117 114
+ 41 -362 134 -417
+ -277 -417 190 -417
+ 128 -35 -306 -59
+ 161 -179 -254 -105
+ 168 -254 -173 -167
diff --git a/profiles/plants/MA0557.1.pwm b/profiles/plants/MA0557.1.pwm
index e69de29..75f1785 100644
--- a/profiles/plants/MA0557.1.pwm
+++ b/profiles/plants/MA0557.1.pwm
@@ -0,0 +1,12 @@
+ -33 44 -51 20
+ 33 -2 -112 37
+ -229 177 -229 -253
+ 188 -320 -342 -300
+ -342 190 -369 -342
+ -320 -166 179 -320
+ -403 184 -403 -173
+ -300 -403 189 -320
+ -152 176 -267 -320
+ -166 -51 -159 141
+ 9 20 -51 12
+ 46 -39 -22 1
diff --git a/profiles/plants/MA0558.1.pwm b/profiles/plants/MA0558.1.pwm
index e69de29..d75aaef 100644
--- a/profiles/plants/MA0558.1.pwm
+++ b/profiles/plants/MA0558.1.pwm
@@ -0,0 +1,21 @@
+ 78 -60 -57 -8
+ 37 -16 -12 -16
+ 44 -83 -154 79
+ 24 -127 -86 89
+ 17 -132 -6 60
+ -33 144 -217 -186
+ -247 138 -316 15
+ 93 2 -83 -97
+ 147 -237 -79 -114
+ 186 -414 -335 -227
+ 170 -335 -335 -86
+ 144 -335 -172 -16
+ 17 -227 -193 126
+ 99 -414 92 -414
+ -414 -414 194 -414
+ 160 -154 -284 -105
+ 190 -335 -316 -414
+ 184 -382 -193 -357
+ -14 -63 106 -148
+ 63 -51 -179 54
+ 56 -43 -114 41
diff --git a/profiles/plants/MA0559.1.pwm b/profiles/plants/MA0559.1.pwm
index e69de29..205ba65 100644
--- a/profiles/plants/MA0559.1.pwm
+++ b/profiles/plants/MA0559.1.pwm
@@ -0,0 +1,14 @@
+ 16 123 -143 -255
+ -121 146 -154 -108
+ 132 -78 -100 -126
+ 164 -302 -71 -280
+ 194 -440 -388 -420
+ 179 -462 -302 -143
+ 108 -339 78 -374
+ 113 -287 -96 22
+ 70 -462 120 -462
+ -349 -361 192 -462
+ 164 -128 -349 -135
+ 178 -349 -228 -194
+ 167 -219 -114 -273
+ 85 -119 49 -151
diff --git a/profiles/plants/MA0560.1.pwm b/profiles/plants/MA0560.1.pwm
index 35c4eab..cb5e722 100644
--- a/profiles/plants/MA0560.1.pwm
+++ b/profiles/plants/MA0560.1.pwm
@@ -1,10 +1,10 @@
- 67 -234 17 12
- -118 -1 75 -18
- -279 160 -49 -313
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 163 -10000 -16
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 98 -200 6 -43
+ 65 -211 16 11
+ -111 -1 73 -18
+ -247 156 -46 -273
+ -458 195 -458 -458
+ 195 -458 -458 -458
+ -458 159 -458 -15
+ -458 -458 195 -458
+ -458 -458 -458 195
+ -458 -458 195 -458
+ 95 -183 5 -41
diff --git a/profiles/plants/MA0561.1.pwm b/profiles/plants/MA0561.1.pwm
index d89e1f6..f5fc536 100644
--- a/profiles/plants/MA0561.1.pwm
+++ b/profiles/plants/MA0561.1.pwm
@@ -1,8 +1,8 @@
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -77 -10000 177 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 24 113 -66
- -39 130 -37 -10000
+ -427 194 -427 -427
+ 194 -427 -427 -427
+ -427 194 -427 -427
+ -72 -427 172 -427
+ -427 -427 -427 194
+ -427 -427 194 -427
+ -427 23 109 -62
+ -37 125 -34 -427
diff --git a/profiles/plants/MA0562.1.pwm b/profiles/plants/MA0562.1.pwm
index 46bb081..4711ff6 100644
--- a/profiles/plants/MA0562.1.pwm
+++ b/profiles/plants/MA0562.1.pwm
@@ -1,8 +1,8 @@
- -10000 13 -10000 154
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 35 -10000 145 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 41 117 -125
+ -416 12 -416 149
+ -416 194 -416 -416
+ 194 -416 -416 -416
+ -416 194 -416 -416
+ 33 -416 140 -416
+ -416 -416 -416 194
+ -416 -416 194 -416
+ -416 39 113 -115
diff --git a/profiles/plants/MA0563.1.pwm b/profiles/plants/MA0563.1.pwm
index e69de29..287cf9d 100644
--- a/profiles/plants/MA0563.1.pwm
+++ b/profiles/plants/MA0563.1.pwm
@@ -0,0 +1,11 @@
+ -58 -2 -34 64
+ -88 149 -233 -117
+ -332 130 -332 41
+ 98 -373 -373 91
+ -143 -38 -233 141
+ -88 -373 -233 167
+ -373 -373 -373 192
+ -175 -373 -58 157
+ -153 -274 -69 153
+ -175 -373 180 -274
+ -373 -201 153 -34
diff --git a/profiles/plants/MA0564.1.pwm b/profiles/plants/MA0564.1.pwm
index e69de29..f399d93 100644
--- a/profiles/plants/MA0564.1.pwm
+++ b/profiles/plants/MA0564.1.pwm
@@ -0,0 +1,9 @@
+ -169 118 -126 0
+ -64 -56 -64 103
+ -232 -153 167 -187
+ -298 184 -261 -298
+ 186 -298 -298 -298
+ -298 -298 -298 186
+ -296 -296 185 -296
+ -169 165 -139 -261
+ 93 -65 -83 -17
diff --git a/profiles/plants/MA0565.1.pwm b/profiles/plants/MA0565.1.pwm
index 1df1c90..d81dffd 100644
--- a/profiles/plants/MA0565.1.pwm
+++ b/profiles/plants/MA0565.1.pwm
@@ -1,9 +1,9 @@
- -166 127 -266 15
- -466 -366 194 -466
- -464 199 -10000 -10000
- 199 -10000 -10000 -464
- -466 -10000 -466 197
- -10000 -10000 199 -464
- -466 194 -366 -466
- 21 -306 124 -147
- -74 82 0 -64
+ -140 119 -209 14
+ -299 -262 184 -299
+ -297 188 -346 -346
+ 188 -346 -346 -297
+ -299 -347 -299 187
+ -346 -346 188 -297
+ -299 184 -262 -299
+ 20 -232 116 -126
+ -65 76 0 -57
diff --git a/profiles/plants/MA0565.2.pwm b/profiles/plants/MA0565.2.pwm
index 284829d..f0b8a08 100644
--- a/profiles/plants/MA0565.2.pwm
+++ b/profiles/plants/MA0565.2.pwm
@@ -1,10 +1,10 @@
- 71 -91 -39 10
- 31 11 -100 24
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 199 -716 -716 -816
- -658 -584 -816 199
- -10000 -816 200 -10000
- -10000 200 -10000 -10000
- 188 -399 -336 -267
- 64 -120 -155 74
+ 69 -88 -38 10
+ 30 11 -96 24
+ 197 -512 -512 -512
+ -512 197 -512 -512
+ 196 -482 -482 -496
+ -469 -445 -496 196
+ -512 -496 197 -512
+ -512 197 -512 -512
+ 185 -348 -302 -246
+ 62 -114 -147 72
diff --git a/profiles/plants/MA0566.1.pwm b/profiles/plants/MA0566.1.pwm
index dd5bf80..9bf6cda 100644
--- a/profiles/plants/MA0566.1.pwm
+++ b/profiles/plants/MA0566.1.pwm
@@ -1,8 +1,8 @@
- 0 -132 126 -232
- -147 186 -10000 -10000
- 196 -10000 -364 -464
- -10000 177 -10000 -74
- -74 -10000 177 -10000
- -464 -364 -10000 196
- -10000 -10000 186 -147
- -232 126 -132 0
+ 0 -114 118 -187
+ -126 177 -346 -346
+ 186 -346 -261 -297
+ -346 167 -346 -65
+ -65 -346 167 -346
+ -297 -261 -346 186
+ -346 -346 177 -126
+ -187 118 -114 0
diff --git a/profiles/plants/MA0567.1.pwm b/profiles/plants/MA0567.1.pwm
index e69de29..d2d15e6 100644
--- a/profiles/plants/MA0567.1.pwm
+++ b/profiles/plants/MA0567.1.pwm
@@ -0,0 +1,8 @@
+ 69 104 -232 -297
+ -299 -299 186 -299
+ -346 187 -297 -297
+ -208 184 -346 -346
+ -261 -346 186 -297
+ -261 178 -261 -208
+ -299 186 -299 -299
+ 115 -186 -4 -91
diff --git a/profiles/plants/MA0568.1.pwm b/profiles/plants/MA0568.1.pwm
index 836a7c7..75d9a64 100644
--- a/profiles/plants/MA0568.1.pwm
+++ b/profiles/plants/MA0568.1.pwm
@@ -1,8 +1,8 @@
- 0 16 68 -184
- -131 185 -10000 -10000
- 196 -10000 -364 -464
- -10000 175 -10000 -64
- -64 -10000 175 -10000
- -464 -364 -10000 196
- -10000 -10000 185 -131
- -184 68 16 0
+ 0 15 63 -153
+ -112 175 -345 -345
+ 186 -346 -261 -298
+ -346 165 -346 -57
+ -57 -346 165 -346
+ -298 -261 -346 186
+ -345 -345 175 -112
+ -153 63 15 0
diff --git a/profiles/plants/MA0569.1.pwm b/profiles/plants/MA0569.1.pwm
index e69de29..a1a56b6 100644
--- a/profiles/plants/MA0569.1.pwm
+++ b/profiles/plants/MA0569.1.pwm
@@ -0,0 +1,8 @@
+ 56 -42 49 -139
+ -187 183 -346 -346
+ 188 -346 -346 -297
+ -346 181 -346 -169
+ -261 -346 187 -346
+ -346 -297 -346 188
+ -346 -346 187 -261
+ -260 145 -138 -48
diff --git a/profiles/plants/MA0570.1.pwm b/profiles/plants/MA0570.1.pwm
index e69de29..b60b9a9 100644
--- a/profiles/plants/MA0570.1.pwm
+++ b/profiles/plants/MA0570.1.pwm
@@ -0,0 +1,19 @@
+ -293 -116 141 -39
+ -39 -179 123 -72
+ 71 48 -293 -25
+ -293 153 -39 -225
+ 182 -293 -225 -293
+ -293 185 -293 -293
+ -293 -293 185 -293
+ -293 -293 -293 185
+ -293 -293 185 -293
+ -293 -293 165 -72
+ -293 185 -293 -293
+ 56 31 -25 -116
+ -72 102 -25 -93
+ 21 -72 84 -116
+ 77 0 0 -179
+ 11 71 21 -293
+ 21 11 56 -179
+ -12 -72 96 -93
+ 21 -25 77 -179
diff --git a/profiles/plants/MA0570.2.pwm b/profiles/plants/MA0570.2.pwm
index 45a6fc4..77a7a99 100644
--- a/profiles/plants/MA0570.2.pwm
+++ b/profiles/plants/MA0570.2.pwm
@@ -1,12 +1,12 @@
- 106 -1 -225 -48
- -178 148 -120 -102
- 198 -616 -470 -657
- -483 195 -425 -407
- -416 -499 196 -499
- -616 -516 -816 198
- -499 -657 198 -557
- -287 -470 131 43
- -182 181 -335 -311
- 167 -299 -129 -185
- 29 -55 -29 35
- 33 -42 -34 27
+ 103 -1 -210 -47
+ -168 145 -115 -97
+ 195 -456 -392 -468
+ -399 191 -365 -353
+ -359 -407 193 -407
+ -456 -416 -496 195
+ -407 -468 195 -435
+ -263 -392 128 42
+ -172 178 -301 -283
+ 164 -272 -123 -175
+ 28 -53 -28 34
+ 32 -41 -33 27
diff --git a/profiles/plants/MA0571.1.pwm b/profiles/plants/MA0571.1.pwm
index 9b7d6b5..8d80ba9 100644
--- a/profiles/plants/MA0571.1.pwm
+++ b/profiles/plants/MA0571.1.pwm
@@ -1,21 +1,21 @@
- -50 -109 50 50
- -77 -28 61 8
- -9 -10000 150 -209
- -10000 191 -10000 -209
- 187 -10000 -209 -309
- -10000 200 -10000 -10000
- 130 -10000 61 -10000
- -9 -50 82 -77
- 82 -309 -309 100
- -10000 -150 -10000 187
- -109 156 -10000 -77
- -10000 200 -10000 -10000
- -10000 196 -10000 -309
- 8 37 61 -309
- 200 -10000 -10000 -10000
- -28 -309 91 23
- -150 -309 177 -309
- -209 23 -150 116
- -9 -50 72 -50
- 50 23 -109 -9
- 116 -109 -150 -9
+ -42 -87 43 43
+ -62 -24 54 7
+ -7 -277 135 -153
+ -277 175 -277 -153
+ 170 -277 -153 -202
+ -277 183 -277 -277
+ 117 -277 54 -277
+ -7 -42 72 -62
+ 72 -202 -202 89
+ -277 -116 -277 170
+ -87 141 -277 -62
+ -277 183 -277 -277
+ -277 179 -277 -202
+ 7 32 54 -202
+ 183 -277 -277 -277
+ -24 -202 81 20
+ -116 -202 161 -202
+ -153 20 -116 104
+ -7 -42 63 -42
+ 43 20 -87 -7
+ 104 -87 -116 -7
diff --git a/profiles/plants/MA0573.1.pwm b/profiles/plants/MA0573.1.pwm
index 45c0f75..9418de3 100644
--- a/profiles/plants/MA0573.1.pwm
+++ b/profiles/plants/MA0573.1.pwm
@@ -1,19 +1,19 @@
- 83 -17 -117 -17
- 51 -22 -22 -22
- 32 0 -100 32
- -58 83 -117 15
- -10000 -270 194 -10000
- -10000 -12 -10000 162
- 194 -10000 -270 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -112 182
- 139 -10000 47 -10000
- -10000 194 -270 -10000
- 23 -209 -9 72
- -58 100 -10000 42
- -10000 26 68 26
- -10000 132 58 -10000
+ 60 -11 -67 -11
+ 40 -16 -16 -16
+ 26 0 -71 26
+ -45 70 -85 12
+ -275 -184 178 -275
+ -275 -10 -275 147
+ 178 -275 -184 -275
+ 183 -275 -275 -275
+ -275 -275 -275 183
+ -275 -275 183 -275
+ 183 -275 -275 -275
+ -275 -275 -275 183
+ -275 -275 -89 166
+ 125 -275 41 -275
+ -275 178 -184 -275
+ 19 -134 -7 60
+ -40 79 -187 31
+ -168 19 50 19
+ -147 97 40 -147
diff --git a/profiles/plants/MA0574.1.pwm b/profiles/plants/MA0574.1.pwm
index 25398dd..76bbb48 100644
--- a/profiles/plants/MA0574.1.pwm
+++ b/profiles/plants/MA0574.1.pwm
@@ -1,13 +1,13 @@
- -264 155 -147 -84
- 11 -47 103 -264
- 136 -47 -47 -10000
- -264 136 -47 -84
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 180 -264 -10000 -147
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -47 -10000 164 -264
- -264 -10000 180 -147
+ -208 146 -126 -74
+ 10 -42 96 -208
+ 127 -42 -42 -346
+ -208 127 -42 -74
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ 170 -208 -346 -126
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -42 -346 155 -208
+ -208 -346 170 -126
diff --git a/profiles/plants/MA0575.1.pwm b/profiles/plants/MA0575.1.pwm
index e69de29..996d344 100644
--- a/profiles/plants/MA0575.1.pwm
+++ b/profiles/plants/MA0575.1.pwm
@@ -0,0 +1,13 @@
+ 37 24 -29 -50
+ 111 -50 -50 -126
+ 10 -126 52 10
+ -169 24 -29 76
+ -126 -169 162 -232
+ 136 -232 -11 -169
+ -346 190 -346 -346
+ 93 -346 93 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 -346 190
+ 136 -232 5 -232
+ -232 106 24 -92
diff --git a/profiles/plants/MA0576.1.pwm b/profiles/plants/MA0576.1.pwm
index e69de29..3008ec0 100644
--- a/profiles/plants/MA0576.1.pwm
+++ b/profiles/plants/MA0576.1.pwm
@@ -0,0 +1,13 @@
+ -17 -42 69 -42
+ -346 -74 169 -346
+ -42 -208 155 -346
+ -74 -126 106 -17
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ 155 -208 -208 -74
+ -346 -346 190 -346
+ -346 -346 190 -346
+ -346 -346 -346 190
+ -346 -346 184 -208
+ -208 33 118 -208
diff --git a/profiles/plants/MA0577.1.pwm b/profiles/plants/MA0577.1.pwm
index e69de29..eed9895 100644
--- a/profiles/plants/MA0577.1.pwm
+++ b/profiles/plants/MA0577.1.pwm
@@ -0,0 +1,16 @@
+ 54 -116 7 7
+ -7 -153 -7 81
+ 63 -277 -42 63
+ 20 -202 54 20
+ 54 72 -202 -62
+ -153 161 -153 -202
+ -277 -277 183 -277
+ -277 -277 -277 183
+ 183 -277 -277 -277
+ -277 183 -277 -277
+ 20 -24 -24 20
+ 54 -42 -153 54
+ -7 7 -87 54
+ 20 -7 -153 63
+ 43 -24 -277 72
+ 7 43 -116 20
diff --git a/profiles/plants/MA0577.2.pwm b/profiles/plants/MA0577.2.pwm
index 26cbeb8..ffc83b3 100644
--- a/profiles/plants/MA0577.2.pwm
+++ b/profiles/plants/MA0577.2.pwm
@@ -1,8 +1,8 @@
- -60 -272 -98 142
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 78 -45 -26 -50
+ -55 -222 -88 136
+ -376 192 -376 -376
+ -376 192 -376 -376
+ -376 -376 192 -376
+ -376 -376 -376 192
+ 192 -376 -376 -376
+ -376 192 -376 -376
+ 74 -41 -24 -45
diff --git a/profiles/plants/MA0578.1.pwm b/profiles/plants/MA0578.1.pwm
index e69de29..16f29ca 100644
--- a/profiles/plants/MA0578.1.pwm
+++ b/profiles/plants/MA0578.1.pwm
@@ -0,0 +1,16 @@
+ 48 -190 -72 79
+ 48 -270 -27 70
+ 23 -72 -27 48
+ 36 -190 -72 88
+ 36 -27 -72 36
+ -102 36 -140 88
+ -270 -270 182 -270
+ -270 -270 -270 182
+ 182 -270 -270 -270
+ -270 182 -270 -270
+ -27 59 -190 48
+ 36 -8 -270 70
+ -48 8 -190 97
+ 70 -48 -270 59
+ 36 -102 -270 105
+ 48 -27 -270 70
diff --git a/profiles/plants/MA0579.1.pwm b/profiles/plants/MA0579.1.pwm
index 786a56e..1d94b73 100644
--- a/profiles/plants/MA0579.1.pwm
+++ b/profiles/plants/MA0579.1.pwm
@@ -1,11 +1,11 @@
- 18 -4 37 -72
- -56 6 114 -364
- -10000 188 -264 -264
- -364 -364 -10000 194
- -204 178 -10000 -163
- 188 -363 -363 -263
- -363 -10000 191 -263
- -364 190 -232 -10000
- -263 -263 188 -10000
- -364 114 11 -64
- -47 -12 85 -84
+ 16 -4 34 -64
+ -50 5 106 -261
+ -346 178 -208 -208
+ -261 -261 -346 184
+ -168 168 -345 -138
+ 178 -260 -260 -207
+ -260 -345 181 -207
+ -261 180 -188 -346
+ -207 -207 178 -345
+ -261 106 10 -57
+ -42 -11 79 -74
diff --git a/profiles/plants/MA0580.1.pwm b/profiles/plants/MA0580.1.pwm
index e69de29..6764bf6 100644
--- a/profiles/plants/MA0580.1.pwm
+++ b/profiles/plants/MA0580.1.pwm
@@ -0,0 +1,14 @@
+ 43 93 -211 -97
+ 10 -97 113 -211
+ -97 -34 -97 113
+ -34 -34 93 -97
+ 160 -97 -211 -211
+ 10 -211 113 -97
+ 43 -211 -211 113
+ -211 172 -211 -211
+ 172 -211 -211 -211
+ -211 172 -211 -211
+ -97 -211 160 -211
+ -211 -211 -211 172
+ -211 -211 172 -211
+ 172 -211 -211 -211
diff --git a/profiles/plants/MA0581.1.pwm b/profiles/plants/MA0581.1.pwm
index e69de29..53321c9 100644
--- a/profiles/plants/MA0581.1.pwm
+++ b/profiles/plants/MA0581.1.pwm
@@ -0,0 +1,11 @@
+ -18 -48 -3 50
+ -33 41 42 -89
+ -408 192 -453 -304
+ 195 -453 -453 -453
+ -453 -453 -453 195
+ -453 -453 195 -453
+ -453 195 -453 -453
+ 127 -184 34 -453
+ -8 81 -96 -35
+ 88 -48 -136 8
+ -33 -59 -91 101
diff --git a/profiles/plants/MA0582.1.pwm b/profiles/plants/MA0582.1.pwm
index b2f6640..3f253f1 100644
--- a/profiles/plants/MA0582.1.pwm
+++ b/profiles/plants/MA0582.1.pwm
@@ -1,12 +1,12 @@
- 19 47 -3 -103
- 33 -21 -35 13
- -103 -3 130 -383
- -10000 200 -10000 -10000
- 147 -50 -92 -10000
- 185 -211 -252 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -94 -130 89 28
- 125 -211 -211 21
- 98 -152 -79 14
- 65 -94 -2 -11
+ 17 41 -3 -83
+ 29 -18 -30 12
+ -85 -2 119 -244
+ -313 187 -313 -313
+ 137 -44 -79 -325
+ 173 -168 -194 -327
+ -327 188 -327 -327
+ 188 -327 -327 -327
+ -81 -110 82 26
+ 116 -168 -168 19
+ 90 -127 -68 13
+ 59 -81 -2 -10
diff --git a/profiles/plants/MA0583.1.pwm b/profiles/plants/MA0583.1.pwm
index b408adb..3621636 100644
--- a/profiles/plants/MA0583.1.pwm
+++ b/profiles/plants/MA0583.1.pwm
@@ -1,12 +1,12 @@
- 51 -37 -63 22
- -30 -9 -100 81
- -102 159 -402 -122
- 130 -144 -102 -56
- -402 178 -244 -170
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 80 -97 47 -146
- -17 15 42 -58
- -12 11 30 -38
- -52 80 -120 18
+ 46 -32 -55 19
+ -26 -8 -85 74
+ -87 149 -263 -103
+ 121 -120 -87 -49
+ -263 167 -188 -139
+ -323 188 -323 -323
+ -323 -323 -323 188
+ -309 -309 187 -309
+ 73 -81 42 -118
+ -15 13 37 -50
+ -10 9 26 -32
+ -44 71 -95 15
diff --git a/profiles/plants/MA0584.1.pwm b/profiles/plants/MA0584.1.pwm
index e69de29..1154854 100644
--- a/profiles/plants/MA0584.1.pwm
+++ b/profiles/plants/MA0584.1.pwm
@@ -0,0 +1,18 @@
+ 12 21 -73 21
+ 12 -90 -30 65
+ -19 -133 -90 113
+ 52 -73 -43 29
+ -303 186 -303 -303
+ -303 172 -303 -110
+ 149 -110 -238 -90
+ 58 -194 -133 88
+ 142 -303 -303 12
+ 88 -303 -303 93
+ 104 -133 -133 21
+ -133 -90 -160 145
+ 93 -303 88 -303
+ -303 -303 186 -303
+ 77 -19 -160 12
+ 152 -160 -303 -57
+ 126 -110 -110 -57
+ -90 -57 37 58
diff --git a/profiles/plants/MA0585.1.pwm b/profiles/plants/MA0585.1.pwm
index e69de29..67aac90 100644
--- a/profiles/plants/MA0585.1.pwm
+++ b/profiles/plants/MA0585.1.pwm
@@ -0,0 +1,18 @@
+ 33 -49 -10 13
+ -38 -119 -73 113
+ -160 -260 -73 154
+ 33 -138 39 6
+ -318 188 -318 -318
+ -260 183 -260 -318
+ 81 -119 -102 39
+ 85 -160 -87 39
+ 127 -260 -260 33
+ 62 -186 -219 98
+ -19 -19 -73 72
+ -10 -87 72 -19
+ -102 -318 167 -219
+ -160 -318 167 -138
+ 62 -119 -138 72
+ 145 -60 -160 -186
+ 117 -73 -87 -73
+ 13 -10 20 -28
diff --git a/profiles/plants/MA0586.1.pwm b/profiles/plants/MA0586.1.pwm
index e69de29..4d0759d 100644
--- a/profiles/plants/MA0586.1.pwm
+++ b/profiles/plants/MA0586.1.pwm
@@ -0,0 +1,19 @@
+ -97 0 -26 73
+ -26 22 -26 22
+ -26 0 22 0
+ -26 58 -153 41
+ -57 -26 73 -26
+ -57 -153 -26 110
+ -245 179 -245 -245
+ -245 179 -245 -245
+ -245 -245 179 -245
+ -245 -245 -245 179
+ 179 -245 -245 -245
+ -245 179 -245 -245
+ 110 -245 58 -245
+ 22 -57 58 -57
+ -26 -57 41 22
+ 58 -57 0 -26
+ -57 -26 58 0
+ -57 22 58 -57
+ 0 -153 99 -57
diff --git a/profiles/plants/MA0586.2.pwm b/profiles/plants/MA0586.2.pwm
index bbbe0f4..fad6343 100644
--- a/profiles/plants/MA0586.2.pwm
+++ b/profiles/plants/MA0586.2.pwm
@@ -1,11 +1,11 @@
- -22 -438 -98 137
- -266 187 -10000 -249
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -10000 200 -10000 -619
- 105 -74 -18 -116
- 71 -47 -37 -21
- 17 -49 -81 67
- 2 -76 -49 75
+ -21 -354 -92 134
+ -239 183 -465 -224
+ -465 196 -465 -465
+ -465 -465 196 -465
+ -465 -465 -465 196
+ 196 -465 -465 -465
+ -465 195 -465 -424
+ 102 -71 -17 -110
+ 69 -45 -35 -20
+ 16 -46 -77 65
+ 2 -72 -46 73
diff --git a/profiles/plants/MA0587.1.pwm b/profiles/plants/MA0587.1.pwm
index e69de29..f84e4e8 100644
--- a/profiles/plants/MA0587.1.pwm
+++ b/profiles/plants/MA0587.1.pwm
@@ -0,0 +1,10 @@
+ -185 -317 178 -258
+ -258 -185 -317 178
+ -317 -317 187 -317
+ -317 -317 187 -317
+ 92 -85 -8 -71
+ -258 178 -217 -258
+ -317 187 -317 -317
+ -317 187 -317 -317
+ 15 -58 78 -100
+ -36 29 64 -117
diff --git a/profiles/plants/MA0588.1.pwm b/profiles/plants/MA0588.1.pwm
index 7703ad5..22f1b9d 100644
--- a/profiles/plants/MA0588.1.pwm
+++ b/profiles/plants/MA0588.1.pwm
@@ -1,11 +1,11 @@
- -152 -20 6 80
- -127 14 114 -186
- 46 17 58 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 187 -10000 -158
- -217 -10000 192 -10000
- -270 -112 -170 162
- 13 -14 13 -14
- 87 -10000 0 22
+ -108 -16 5 67
+ -98 12 101 -135
+ 40 15 51 -276
+ -291 -291 -291 185
+ -291 -291 185 -291
+ 185 -291 -291 -291
+ -291 173 -291 -124
+ -162 -291 177 -291
+ -173 -85 -122 144
+ 10 -11 10 -11
+ 75 -242 0 18
diff --git a/profiles/plants/MA0589.1.pwm b/profiles/plants/MA0589.1.pwm
index e69de29..7552de5 100644
--- a/profiles/plants/MA0589.1.pwm
+++ b/profiles/plants/MA0589.1.pwm
@@ -0,0 +1,11 @@
+ -302 -302 -302 186
+ -302 -302 -302 186
+ -302 -302 186 -302
+ 186 -302 -302 -302
+ -302 186 -302 -302
+ -237 177 -237 -237
+ -192 -108 155 -158
+ 124 -16 -131 -158
+ -192 -70 144 -131
+ -190 109 -105 17
+ -44 71 -97 15
diff --git a/profiles/plants/MA0590.1.pwm b/profiles/plants/MA0590.1.pwm
index e69de29..d8c69b0 100644
--- a/profiles/plants/MA0590.1.pwm
+++ b/profiles/plants/MA0590.1.pwm
@@ -0,0 +1,19 @@
+ -145 11 -90 101
+ 145 -246 -217 -22
+ -100 -61 -284 144
+ -255 -360 32 132
+ 40 -430 134 -346
+ 144 -84 -361 -64
+ -274 188 -432 -295
+ -430 187 -430 -205
+ -1 -383 148 -273
+ -145 71 71 -145
+ -273 148 -383 -1
+ -205 -430 187 -430
+ -295 -432 188 -274
+ -64 -361 -84 144
+ -346 134 -430 40
+ 132 32 -360 -255
+ 144 -284 -61 -100
+ -22 -217 -246 145
+ 101 -90 11 -145
diff --git a/profiles/plants/MA0930.1.pwm b/profiles/plants/MA0930.1.pwm
index 5d32341..3a81416 100644
--- a/profiles/plants/MA0930.1.pwm
+++ b/profiles/plants/MA0930.1.pwm
@@ -1,8 +1,8 @@
- 196 -465 -465 -465
- -465 196 -465 -465
- 196 -465 -465 -465
- -465 196 -465 -465
- -465 -465 196 -465
- -465 -465 -465 196
- -465 -465 196 -465
- -465 -465 -465 196
+ 192 -385 -385 -385
+ -385 192 -385 -385
+ 192 -385 -385 -385
+ -385 192 -385 -385
+ -385 -385 192 -385
+ -385 -385 -385 192
+ -385 -385 192 -385
+ -385 -385 -385 192
diff --git a/profiles/plants/MA0931.1.pwm b/profiles/plants/MA0931.1.pwm
index e69de29..066ce86 100644
--- a/profiles/plants/MA0931.1.pwm
+++ b/profiles/plants/MA0931.1.pwm
@@ -0,0 +1,10 @@
+ -45 4 4 28
+ -144 -144 137 -56
+ 126 32 -503 -159
+ -503 185 -159 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -69 -173 147 -173
+ -59 -59 42 41
diff --git a/profiles/plants/MA0932.1.pwm b/profiles/plants/MA0932.1.pwm
index e69de29..d7f0784 100644
--- a/profiles/plants/MA0932.1.pwm
+++ b/profiles/plants/MA0932.1.pwm
@@ -0,0 +1,8 @@
+ 160 -332 -74 -184
+ 172 -259 -301 -128
+ 93 -356 -432 97
+ 40 -421 -456 137
+ 137 -456 -421 40
+ 97 -432 -356 93
+ -128 -301 -259 172
+ -184 -74 -332 160
diff --git a/profiles/plants/MA0933.1.pwm b/profiles/plants/MA0933.1.pwm
index e69de29..3b76ca6 100644
--- a/profiles/plants/MA0933.1.pwm
+++ b/profiles/plants/MA0933.1.pwm
@@ -0,0 +1,8 @@
+ 160 -180 -167 -143
+ 156 -421 -432 -9
+ -101 -444 -362 176
+ 0 -421 -421 153
+ 160 -444 -444 -19
+ 172 -402 -486 -73
+ 135 -370 -456 42
+ -206 -284 -332 182
diff --git a/profiles/plants/MA0934.1.pwm b/profiles/plants/MA0934.1.pwm
index 0a1a6ed..a731eb2 100644
--- a/profiles/plants/MA0934.1.pwm
+++ b/profiles/plants/MA0934.1.pwm
@@ -1,8 +1,8 @@
- 180 -327 -224 -235
- 130 -597 -538 58
- -27 -597 -638 165
- -15 -638 -697 162
- 162 -697 -638 -15
- 165 -638 -597 -27
- 58 -538 -597 130
- -235 -224 -327 180
+ 177 -293 -208 -218
+ 127 -444 -421 57
+ -26 -444 -456 162
+ -15 -456 -470 159
+ 159 -470 -456 -15
+ 162 -456 -444 -26
+ 57 -421 -444 127
+ -218 -208 -293 177
diff --git a/profiles/plants/MA0935.1.pwm b/profiles/plants/MA0935.1.pwm
index 8898210..7f3d58d 100644
--- a/profiles/plants/MA0935.1.pwm
+++ b/profiles/plants/MA0935.1.pwm
@@ -1,8 +1,8 @@
- -797 75 -797 121
- 195 -10000 -284 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 14 -186 139
- 173 -53 -10000 -10000
- 190 -10000 -10000 -186
- -232 126 -232 26
+ -486 73 -486 118
+ 192 -503 -259 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 14 -175 136
+ 169 -51 -503 -503
+ 186 -503 -503 -174
+ -215 124 -215 26
diff --git a/profiles/plants/MA0936.1.pwm b/profiles/plants/MA0936.1.pwm
index 3949a1d..4a2f84f 100644
--- a/profiles/plants/MA0936.1.pwm
+++ b/profiles/plants/MA0936.1.pwm
@@ -1,8 +1,8 @@
- 112 -20 -164 -65
- -192 133 -272 9
- 170 -106 -254 -338
- -129 178 -338 -397
- -141 -235 170 -247
- -81 118 -116 -47
- 88 69 -238 -146
- 169 -264 -138 -208
+ 110 -20 -155 -63
+ -180 131 -249 9
+ 167 -101 -234 -301
+ -123 175 -301 -343
+ -134 -218 167 -229
+ -77 115 -110 -46
+ 86 67 -221 -138
+ 166 -243 -131 -195
diff --git a/profiles/plants/MA0937.1.pwm b/profiles/plants/MA0937.1.pwm
index 5be97f2..b194247 100644
--- a/profiles/plants/MA0937.1.pwm
+++ b/profiles/plants/MA0937.1.pwm
@@ -1,8 +1,8 @@
- 167 -327 -251 -90
- -372 163 -379 -41
- 195 -380 -597 -480
- -351 194 -538 -438
- -397 -397 192 -364
- -416 -111 -90 156
- 181 -164 -596 -275
- 179 -480 -597 -105
+ 164 -293 -231 -86
+ -326 160 -331 -40
+ 192 -332 -444 -393
+ -311 191 -421 -370
+ -343 -343 189 -321
+ -356 -106 -86 153
+ 178 -155 -444 -252
+ 176 -393 -444 -100
diff --git a/profiles/plants/MA0938.1.pwm b/profiles/plants/MA0938.1.pwm
index e69de29..dea629c 100644
--- a/profiles/plants/MA0938.1.pwm
+++ b/profiles/plants/MA0938.1.pwm
@@ -0,0 +1,8 @@
+ 55 -97 45 -60
+ -133 140 -204 -48
+ 184 -262 -311 -273
+ 4 144 -293 -306
+ -293 -249 183 -284
+ -106 144 -169 -101
+ 130 -3 -321 -117
+ 159 -143 -293 -106
diff --git a/profiles/plants/MA0939.1.pwm b/profiles/plants/MA0939.1.pwm
index e69de29..9964e46 100644
--- a/profiles/plants/MA0939.1.pwm
+++ b/profiles/plants/MA0939.1.pwm
@@ -0,0 +1,8 @@
+ 138 -486 -17 -110
+ -486 144 -486 29
+ 196 -486 -486 -486
+ -486 196 -486 -486
+ -486 -486 196 -486
+ -486 174 -486 -77
+ 162 -169 -486 -77
+ 196 -486 -486 -486
diff --git a/profiles/plants/MA0940.1.pwm b/profiles/plants/MA0940.1.pwm
index 9cafc1b..ad2c0c2 100644
--- a/profiles/plants/MA0940.1.pwm
+++ b/profiles/plants/MA0940.1.pwm
@@ -1,13 +1,13 @@
- 86 98 -366 -283
- -227 121 -338 46
- 171 -314 -353 -90
- 148 -442 -142 -36
- 194 -534 -476 -314
- 165 -476 -408 -41
- 155 -414 -69 -138
- 75 -427 -66 71
- 69 -508 120 -391
- -161 -276 174 -243
- 150 -141 -125 -141
- 166 -173 -127 -294
- 163 -420 -132 -116
+ 84 96 -330 -263
+ -214 119 -308 45
+ 168 -289 -320 -87
+ 146 -384 -136 -35
+ 191 -437 -405 -289
+ 163 -405 -361 -39
+ 153 -365 -67 -132
+ 74 -374 -64 69
+ 67 -424 118 -349
+ -154 -257 171 -229
+ 148 -135 -121 -135
+ 163 -165 -122 -272
+ 161 -370 -127 -112
diff --git a/profiles/plants/MA0941.1.pwm b/profiles/plants/MA0941.1.pwm
index 5dcbe43..48f0c2f 100644
--- a/profiles/plants/MA0941.1.pwm
+++ b/profiles/plants/MA0941.1.pwm
@@ -1,13 +1,13 @@
- -12 30 -12 -12
- 30 -12 -12 -12
- -39 10 -39 49
- 13 -106 69 -31
- 148 -50 -128 -357
- -10000 175 -10000 -65
- 200 -10000 -10000 -10000
- -10000 188 -10000 -161
- -372 -372 192 -372
- -372 -372 -372 192
- -20 -208 141 -208
- -23 -94 20 57
- -13 -13 -13 32
+ -11 29 -11 -11
+ 29 -11 -11 -11
+ -37 10 -37 47
+ 13 -101 67 -30
+ 145 -48 -122 -316
+ -503 172 -503 -63
+ 197 -503 -503 -503
+ -503 184 -503 -152
+ -326 -326 188 -326
+ -326 -326 -326 188
+ -19 -195 138 -195
+ -22 -90 19 55
+ -12 -12 -12 31
diff --git a/profiles/plants/MA0942.1.pwm b/profiles/plants/MA0942.1.pwm
index e69de29..66745e1 100644
--- a/profiles/plants/MA0942.1.pwm
+++ b/profiles/plants/MA0942.1.pwm
@@ -0,0 +1,8 @@
+ 150 -470 14 -486
+ -456 195 -486 -444
+ -444 195 -470 -470
+ -444 -470 196 -485
+ 195 -456 -486 -411
+ -470 196 -470 -470
+ 182 -444 -143 -402
+ 6 -18 -26 31
diff --git a/profiles/plants/MA0943.1.pwm b/profiles/plants/MA0943.1.pwm
index 682c43c..dbcc5b1 100644
--- a/profiles/plants/MA0943.1.pwm
+++ b/profiles/plants/MA0943.1.pwm
@@ -1,8 +1,8 @@
- 28 -64 93 -208
- -480 195 -406 -497
- -137 184 -597 -697
- -438 -797 198 -697
- 193 -797 -244 -797
- -697 199 -638 -638
- 163 -16 -697 -697
- 97 -135 -20 -37
+ 27 -62 91 -195
+ -393 192 -349 -402
+ -130 181 -444 -470
+ -370 -486 194 -470
+ 190 -486 -226 -486
+ -470 195 -456 -456
+ 160 -15 -470 -470
+ 95 -128 -19 -36
diff --git a/profiles/plants/MA0944.1.pwm b/profiles/plants/MA0944.1.pwm
index e69de29..f944202 100644
--- a/profiles/plants/MA0944.1.pwm
+++ b/profiles/plants/MA0944.1.pwm
@@ -0,0 +1,9 @@
+ 11 -10 -28 22
+ -15 5 -118 70
+ -444 -503 -140 183
+ -249 -485 182 -192
+ -503 -362 -503 195
+ -206 175 -470 -152
+ -190 -289 164 -108
+ -100 -82 135 -141
+ -13 42 -20 -19
diff --git a/profiles/plants/MA0945.1.pwm b/profiles/plants/MA0945.1.pwm
index e69de29..6b22a12 100644
--- a/profiles/plants/MA0945.1.pwm
+++ b/profiles/plants/MA0945.1.pwm
@@ -0,0 +1,10 @@
+ 68 -55 -26 -19
+ -52 22 45 -37
+ 24 88 -81 -127
+ 28 -150 115 -223
+ 74 -311 -9 35
+ 192 -503 -503 -262
+ -316 -486 -486 193
+ -201 181 -444 -234
+ -77 -65 -138 126
+ 4 -38 -45 56
diff --git a/profiles/plants/MA0946.1.pwm b/profiles/plants/MA0946.1.pwm
index 4213e66..b97dc93 100644
--- a/profiles/plants/MA0946.1.pwm
+++ b/profiles/plants/MA0946.1.pwm
@@ -1,8 +1,8 @@
- 132 -229 -218 11
- 189 -450 -311 -296
- -564 -697 197 -451
- 199 -696 -596 -596
- -516 -638 -696 198
- 155 -351 -597 -5
- -638 174 -697 -63
- -416 -564 195 -427
+ 130 -213 -204 10
+ 186 -377 -280 -269
+ -432 -470 194 -377
+ 195 -470 -444 -444
+ -411 -456 -470 195
+ 152 -311 -444 -5
+ -456 171 -470 -60
+ -356 -432 192 -362
diff --git a/profiles/plants/MA0947.1.pwm b/profiles/plants/MA0947.1.pwm
index 150a304..26ce6c6 100644
--- a/profiles/plants/MA0947.1.pwm
+++ b/profiles/plants/MA0947.1.pwm
@@ -1,8 +1,8 @@
- 192 -564 -327 -338
- -697 -797 198 -427
- 199 -797 -638 -564
- -697 -638 -697 199
- 102 -70 -797 44
- -797 194 -797 -272
- -465 -565 194 -327
- -159 95 68 -297
+ 189 -432 -293 -301
+ -470 -486 194 -362
+ 195 -486 -456 -432
+ -470 -456 -470 196
+ 99 -67 -486 43
+ -486 191 -486 -249
+ -385 -432 191 -293
+ -150 93 66 -269
diff --git a/profiles/plants/MA0948.1.pwm b/profiles/plants/MA0948.1.pwm
index e69de29..09e6306 100644
--- a/profiles/plants/MA0948.1.pwm
+++ b/profiles/plants/MA0948.1.pwm
@@ -0,0 +1,13 @@
+ 37 -15 -15 -15
+ -30 -30 -30 64
+ 13 55 -47 -47
+ 39 -41 -35 21
+ 171 -297 -297 -107
+ -503 -143 183 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ 151 -297 -297 -17
+ -221 140 -221 -11
+ -63 -169 145 -169
+ 44 -4 8 -70
+ -15 -15 -15 37
diff --git a/profiles/plants/MA0949.1.pwm b/profiles/plants/MA0949.1.pwm
index 1b7bb8a..7596cb7 100644
--- a/profiles/plants/MA0949.1.pwm
+++ b/profiles/plants/MA0949.1.pwm
@@ -1,10 +1,10 @@
- -52 4 66 -52
- 44 119 -247 -247
- -22 -10000 165 -10000
- 93 -10000 -22 31
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -63 -172 -172 146
- -29 -29 -29 63
+ -50 4 64 -50
+ 42 117 -229 -229
+ -22 -503 162 -503
+ 91 -503 -22 30
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 -503 197
+ -60 -162 -162 143
+ -28 -28 -28 61
diff --git a/profiles/plants/MA0950.1.pwm b/profiles/plants/MA0950.1.pwm
index a481528..5234d7f 100644
--- a/profiles/plants/MA0950.1.pwm
+++ b/profiles/plants/MA0950.1.pwm
@@ -1,8 +1,8 @@
- 121 -39 -123 -101
- 142 -244 -224 -10
- -380 -284 -538 191
- -238 -31 134 -108
- 195 -516 -406 -427
- -480 -497 -388 195
- -306 -464 -372 191
- -97 -380 162 -151
+ 118 -38 -117 -97
+ 139 -226 -208 -10
+ -332 -259 -421 188
+ -221 -30 131 -103
+ 192 -411 -349 -362
+ -393 -402 -337 192
+ -276 -385 -326 188
+ -92 -332 159 -143
diff --git a/profiles/plants/MA0951.1.pwm b/profiles/plants/MA0951.1.pwm
index e69de29..786b9e6 100644
--- a/profiles/plants/MA0951.1.pwm
+++ b/profiles/plants/MA0951.1.pwm
@@ -0,0 +1,8 @@
+ -169 -22 -486 148
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ 110 34 -83 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -178 -486 -178 176
diff --git a/profiles/plants/MA0952.1.pwm b/profiles/plants/MA0952.1.pwm
index e69de29..0518bdd 100644
--- a/profiles/plants/MA0952.1.pwm
+++ b/profiles/plants/MA0952.1.pwm
@@ -0,0 +1,8 @@
+ 144 2 -444 -213
+ 194 -432 -444 -411
+ -470 -402 -485 195
+ 70 -421 -456 119
+ 195 -470 -432 -456
+ -385 -470 -444 194
+ -432 -332 -370 192
+ -119 -332 161 -126
diff --git a/profiles/plants/MA0953.1.pwm b/profiles/plants/MA0953.1.pwm
index e69de29..6380309 100644
--- a/profiles/plants/MA0953.1.pwm
+++ b/profiles/plants/MA0953.1.pwm
@@ -0,0 +1,9 @@
+ -48 1 19 18
+ -72 104 -147 -4
+ 155 -141 -167 -137
+ 179 -171 -486 -237
+ -321 -421 -485 193
+ 50 30 -92 -27
+ 185 -432 -249 -269
+ -118 -180 -90 145
+ -9 -112 9 62
diff --git a/profiles/plants/MA0954.1.pwm b/profiles/plants/MA0954.1.pwm
index e69de29..5e0a396 100644
--- a/profiles/plants/MA0954.1.pwm
+++ b/profiles/plants/MA0954.1.pwm
@@ -0,0 +1,10 @@
+ -69 42 -69 50
+ -289 170 -289 -103
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 21 -503 -503 147
+ -43 -128 -38 106
+ -16 -16 39 -16
diff --git a/profiles/plants/MA0954.2.pwm b/profiles/plants/MA0954.2.pwm
index e69de29..8c51043 100644
--- a/profiles/plants/MA0954.2.pwm
+++ b/profiles/plants/MA0954.2.pwm
@@ -0,0 +1,13 @@
+ -67 -128 -107 131
+ -140 134 -67 -111
+ 162 -120 -319 -138
+ 186 -410 -467 -186
+ -467 -445 -445 195
+ -426 -426 159 -18
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 -467 -426 195
+ -186 -410 184 -337
+ 108 -158 26 -150
+ 21 -131 -58 83
+ -22 -68 -66 91
diff --git a/profiles/plants/MA0955.1.pwm b/profiles/plants/MA0955.1.pwm
index 62de838..2f91a02 100644
--- a/profiles/plants/MA0955.1.pwm
+++ b/profiles/plants/MA0955.1.pwm
@@ -1,7 +1,7 @@
- -32 9 38 -26
- -479 -311 193 -516
- -497 -451 -134 182
- 193 -254 -564 -10000
- -71 150 -311 -116
- -261 -164 178 -372
- -41 -232 148 -190
+ -31 9 37 -25
+ -393 -280 190 -411
+ -402 -377 -127 179
+ 190 -234 -432 -503
+ -68 147 -280 -110
+ -240 -155 175 -326
+ -40 -216 145 -179
diff --git a/profiles/plants/MA0956.1.pwm b/profiles/plants/MA0956.1.pwm
index 1282ada..2e19c40 100644
--- a/profiles/plants/MA0956.1.pwm
+++ b/profiles/plants/MA0956.1.pwm
@@ -1,10 +1,10 @@
- 3 2 -8 3
- -24 -13 45 -20
- -88 153 -272 -127
- 184 -10000 -292 -176
- -344 171 -10000 -67
- -67 -10000 171 -344
- -176 -292 -10000 184
- -127 -272 153 -88
- -20 45 -13 -24
- 3 -8 2 3
+ 3 2 -8 3
+ -24 -12 44 -19
+ -84 150 -249 -120
+ 180 -503 -266 -165
+ -306 168 -503 -65
+ -65 -503 168 -306
+ -165 -266 -503 180
+ -120 -249 150 -84
+ -19 44 -12 -24
+ 3 -8 2 3
diff --git a/profiles/plants/MA0957.1.pwm b/profiles/plants/MA0957.1.pwm
index e69de29..f8a83b4 100644
--- a/profiles/plants/MA0957.1.pwm
+++ b/profiles/plants/MA0957.1.pwm
@@ -0,0 +1,8 @@
+ 5 -134 125 -231
+ -229 186 -356 -377
+ 189 -411 -321 -311
+ -385 187 -370 -237
+ -237 -370 187 -385
+ -311 -321 -411 189
+ -377 -356 186 -229
+ -231 125 -134 5
diff --git a/profiles/plants/MA0958.1.pwm b/profiles/plants/MA0958.1.pwm
index e0c11ae..63ad235 100644
--- a/profiles/plants/MA0958.1.pwm
+++ b/profiles/plants/MA0958.1.pwm
@@ -1,8 +1,8 @@
- 24 -111 119 -364
- -224 192 -797 -797
- 199 -697 -638 -597
- -797 193 -797 -244
- -406 -796 198 -796
- -597 -597 -797 199
- -797 -697 198 -464
- -272 148 -194 -31
+ 23 -106 116 -321
+ -208 189 -486 -486
+ 195 -470 -457 -444
+ -486 190 -486 -226
+ -349 -485 194 -485
+ -444 -444 -486 195
+ -486 -470 195 -385
+ -249 145 -182 -30
diff --git a/profiles/plants/MA0959.1.pwm b/profiles/plants/MA0959.1.pwm
index 34b63f5..494be50 100644
--- a/profiles/plants/MA0959.1.pwm
+++ b/profiles/plants/MA0959.1.pwm
@@ -1,8 +1,8 @@
- -172 -416 185 -496
- -208 191 -797 -697
- 195 -797 -316 -564
- -10000 185 -696 -141
- -141 -696 185 -10000
- -564 -316 -797 195
- -697 -797 191 -208
- -496 185 -416 -172
+ -162 -356 182 -402
+ -195 187 -486 -470
+ 192 -486 -284 -432
+ -503 182 -470 -134
+ -134 -470 182 -503
+ -432 -284 -486 192
+ -470 -486 187 -195
+ -402 182 -356 -162
diff --git a/profiles/plants/MA0960.1.pwm b/profiles/plants/MA0960.1.pwm
index e69de29..b91e32d 100644
--- a/profiles/plants/MA0960.1.pwm
+++ b/profiles/plants/MA0960.1.pwm
@@ -0,0 +1,10 @@
+ -90 -293 169 -311
+ -349 -165 176 -229
+ -421 196 -503 -503
+ 196 -503 -444 -503
+ -503 197 -503 -486
+ -486 -503 197 -503
+ -503 -444 -503 196
+ -503 -503 196 -421
+ -229 176 -165 -349
+ -311 169 -293 -90
diff --git a/profiles/plants/MA0961.1.pwm b/profiles/plants/MA0961.1.pwm
index fa216f0..b43fdb3 100644
--- a/profiles/plants/MA0961.1.pwm
+++ b/profiles/plants/MA0961.1.pwm
@@ -1,9 +1,9 @@
- -18 0 29 -17
- -10000 200 -10000 -10000
- -50 172 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -20 45 -21 -17
+ -17 0 28 -16
+ -503 197 -503 -503
+ -48 169 -503 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -19 44 -20 -16
diff --git a/profiles/plants/MA0962.1.pwm b/profiles/plants/MA0962.1.pwm
index e69de29..f70baa0 100644
--- a/profiles/plants/MA0962.1.pwm
+++ b/profiles/plants/MA0962.1.pwm
@@ -0,0 +1,8 @@
+ -67 -246 136 -67
+ -503 197 -503 -503
+ 151 -503 -5 -273
+ -503 173 -503 -69
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -131 -77 91 19
diff --git a/profiles/plants/MA0963.1.pwm b/profiles/plants/MA0963.1.pwm
index 71d88e4..991f6ea 100644
--- a/profiles/plants/MA0963.1.pwm
+++ b/profiles/plants/MA0963.1.pwm
@@ -1,8 +1,8 @@
- -465 -465 196 -465
- -465 196 -465 -465
- 196 -465 -465 -465
- -465 196 -465 -465
- -465 -465 196 -465
- -465 -465 -465 196
- -465 -465 196 -465
- -465 196 -465 -465
+ -385 -385 192 -385
+ -385 192 -385 -385
+ 192 -385 -385 -385
+ -385 192 -385 -385
+ -385 -385 192 -385
+ -385 -385 -385 192
+ -385 -385 192 -385
+ -385 192 -385 -385
diff --git a/profiles/plants/MA0964.1.pwm b/profiles/plants/MA0964.1.pwm
index e69de29..1199bd7 100644
--- a/profiles/plants/MA0964.1.pwm
+++ b/profiles/plants/MA0964.1.pwm
@@ -0,0 +1,10 @@
+ -18 0 16 0
+ -95 136 -124 -103
+ 120 -124 -43 -88
+ -195 159 -306 -69
+ -80 -188 164 -456
+ -486 -306 -503 193
+ -456 -470 195 -421
+ 57 26 -73 -49
+ -74 45 -5 10
+ 4 6 4 -15
diff --git a/profiles/plants/MA0965.1.pwm b/profiles/plants/MA0965.1.pwm
index e69de29..bf1ce6e 100644
--- a/profiles/plants/MA0965.1.pwm
+++ b/profiles/plants/MA0965.1.pwm
@@ -0,0 +1,10 @@
+ -3 6 21 -28
+ -56 -77 56 33
+ -208 181 -486 -218
+ 191 -503 -301 -356
+ -311 179 -503 -137
+ -137 -503 179 -311
+ -356 -301 -503 191
+ -218 -486 181 -208
+ 33 56 -77 -56
+ -28 21 6 -3
diff --git a/profiles/plants/MA0966.1.pwm b/profiles/plants/MA0966.1.pwm
index 6018212..11ec294 100644
--- a/profiles/plants/MA0966.1.pwm
+++ b/profiles/plants/MA0966.1.pwm
@@ -1,10 +1,10 @@
- 23 -30 11 -10
- -65 -60 79 -4
- -175 172 -496 -138
- 191 -10000 -332 -292
- -406 188 -10000 -190
- -190 -10000 188 -406
- -292 -332 -10000 191
- -138 -496 172 -175
- -4 79 -60 -65
- -10 11 -30 23
+ 23 -29 11 -10
+ -63 -58 77 -4
+ -165 169 -402 -131
+ 188 -503 -297 -266
+ -349 184 -503 -178
+ -178 -503 184 -349
+ -266 -297 -503 188
+ -131 -402 169 -165
+ -4 77 -58 -63
+ -10 11 -29 23
diff --git a/profiles/plants/MA0967.1.pwm b/profiles/plants/MA0967.1.pwm
index 1116a3c..4943e8b 100644
--- a/profiles/plants/MA0967.1.pwm
+++ b/profiles/plants/MA0967.1.pwm
@@ -1,8 +1,8 @@
- -379 -196 -338 184
- -326 -208 175 -175
- 183 -388 -254 -235
- -427 168 -427 -51
- -51 -427 168 -427
- -235 -254 -388 183
- -175 175 -208 -326
- 184 -338 -196 -379
+ -331 -184 -301 181
+ -293 -195 172 -165
+ 180 -337 -234 -218
+ -362 165 -362 -50
+ -50 -362 165 -362
+ -218 -234 -337 180
+ -165 172 -195 -293
+ 181 -301 -184 -331
diff --git a/profiles/plants/MA0968.1.pwm b/profiles/plants/MA0968.1.pwm
index 1dc3d67..1e5fe13 100644
--- a/profiles/plants/MA0968.1.pwm
+++ b/profiles/plants/MA0968.1.pwm
@@ -1,9 +1,9 @@
- 1 43 -102 21
- -44 41 8 -18
- 131 -93 -87 -117
- -184 138 -76 -93
- -111 -62 134 -151
- -316 -211 -10000 187
- -297 -10000 193 -388
- -696 -177 112 61
- 21 93 -90 -131
+ 1 42 -98 20
+ -43 40 8 -18
+ 129 -89 -83 -112
+ -173 135 -73 -89
+ -106 -60 131 -143
+ -284 -197 -503 184
+ -269 -503 189 -337
+ -470 -167 109 60
+ 20 91 -86 -124
diff --git a/profiles/plants/MA0968.2.pwm b/profiles/plants/MA0968.2.pwm
index e69de29..97be8ef 100644
--- a/profiles/plants/MA0968.2.pwm
+++ b/profiles/plants/MA0968.2.pwm
@@ -0,0 +1,15 @@
+ -145 -24 -170 131
+ -426 -467 170 -61
+ -48 168 -445 -467
+ -467 195 -467 -426
+ 196 -467 -467 -467
+ -445 193 -395 -369
+ -426 -395 194 -467
+ -467 -467 -445 195
+ -128 100 62 -426
+ 109 -445 -7 -21
+ -66 10 48 -16
+ 4 117 -219 -96
+ 90 -93 -107 18
+ 18 -29 -83 57
+ 6 34 -111 30
diff --git a/profiles/plants/MA0969.1.pwm b/profiles/plants/MA0969.1.pwm
index 063731d..cebf91a 100644
--- a/profiles/plants/MA0969.1.pwm
+++ b/profiles/plants/MA0969.1.pwm
@@ -1,9 +1,9 @@
- 32 -30 -18 8
- 39 -8 -51 6
- 65 -105 -4 -4
- -18 81 29 -280
- -327 193 -497 -451
- -380 -451 196 -797
- -301 145 -516 16
- -497 -516 196 -406
- -516 -451 -221 189
+ 32 -29 -18 8
+ 38 -7 -49 5
+ 64 -100 -4 -4
+ -18 79 28 -255
+ -293 190 -402 -377
+ -332 -377 192 -486
+ -273 142 -411 16
+ -402 -411 192 -349
+ -411 -377 -206 186
diff --git a/profiles/plants/MA0970.1.pwm b/profiles/plants/MA0970.1.pwm
index e69de29..9fb6ffd 100644
--- a/profiles/plants/MA0970.1.pwm
+++ b/profiles/plants/MA0970.1.pwm
@@ -0,0 +1,9 @@
+ -10 109 -43 -234
+ -356 193 -432 -402
+ -269 -503 191 -421
+ -176 138 -486 9
+ -252 -503 191 -503
+ -486 -486 -503 196
+ -11 13 -24 18
+ 21 -2 0 -22
+ -5 4 0 0
diff --git a/profiles/plants/MA0971.1.pwm b/profiles/plants/MA0971.1.pwm
index e69de29..4668489 100644
--- a/profiles/plants/MA0971.1.pwm
+++ b/profiles/plants/MA0971.1.pwm
@@ -0,0 +1,10 @@
+ 121 -103 -95 -57
+ -81 -63 -83 115
+ -470 -503 196 -486
+ -385 -356 -456 193
+ -432 195 -444 -486
+ -503 -503 196 -421
+ -220 -503 189 -456
+ -343 99 -326 86
+ 44 -6 15 -80
+ 35 -28 35 -69
diff --git a/profiles/plants/MA0972.1.pwm b/profiles/plants/MA0972.1.pwm
index cf17bdc..0d8aefb 100644
--- a/profiles/plants/MA0972.1.pwm
+++ b/profiles/plants/MA0972.1.pwm
@@ -1,8 +1,8 @@
- 190 -796 -464 -221
- 194 -797 -276 -697
- 198 -597 -464 -797
- -284 -10000 -564 194
- 199 -564 -797 -697
- -797 -438 -797 198
- -564 199 -10000 -597
- -357 -146 -416 181
+ 187 -485 -385 -206
+ 191 -486 -252 -470
+ 194 -444 -385 -486
+ -259 -503 -432 191
+ 195 -432 -486 -470
+ -486 -370 -486 195
+ -432 195 -503 -444
+ -316 -138 -356 177
diff --git a/profiles/plants/MA0973.1.pwm b/profiles/plants/MA0973.1.pwm
index 469c682..e77fb13 100644
--- a/profiles/plants/MA0973.1.pwm
+++ b/profiles/plants/MA0973.1.pwm
@@ -1,10 +1,10 @@
- 42 18 -9 -76
- 128 -144 -74 -74
- 147 -397 -261 0
- 197 -464 -596 -564
- 197 -464 -697 -480
- 180 -311 -163 -351
- -388 -516 196 -538
- -224 24 -70 99
- 39 -170 66 -32
- 26 17 -69 8
+ 41 18 -9 -73
+ 126 -137 -71 -71
+ 144 -343 -240 0
+ 194 -385 -444 -432
+ 194 -385 -470 -393
+ 176 -280 -154 -311
+ -337 -411 192 -421
+ -208 23 -67 97
+ 38 -160 64 -31
+ 25 17 -66 8
diff --git a/profiles/plants/MA0974.1.pwm b/profiles/plants/MA0974.1.pwm
index e69de29..7f89afd 100644
--- a/profiles/plants/MA0974.1.pwm
+++ b/profiles/plants/MA0974.1.pwm
@@ -0,0 +1,9 @@
+ 82 -77 -18 -38
+ 125 -280 -182 25
+ 196 -456 -486 -470
+ 195 -432 -503 -421
+ 178 -289 -150 -385
+ -326 -411 192 -421
+ -173 21 -62 92
+ -16 -123 96 -46
+ 19 44 -54 -30
diff --git a/profiles/plants/MA0974.2.pwm b/profiles/plants/MA0974.2.pwm
index e69de29..c1df222 100644
--- a/profiles/plants/MA0974.2.pwm
+++ b/profiles/plants/MA0974.2.pwm
@@ -0,0 +1,12 @@
+ 44 -77 -43 39
+ 21 -42 -17 27
+ 158 -206 -177 -104
+ 171 -320 -299 -100
+ 195 -483 -426 -446
+ 194 -457 -393 -409
+ 193 -469 -344 -401
+ -497 -513 197 -483
+ -299 -250 -271 183
+ -166 -426 181 -311
+ 56 -45 -140 50
+ 83 -61 -110 15
diff --git a/profiles/plants/MA0975.1.pwm b/profiles/plants/MA0975.1.pwm
index e69de29..47bbb54 100644
--- a/profiles/plants/MA0975.1.pwm
+++ b/profiles/plants/MA0975.1.pwm
@@ -0,0 +1,8 @@
+ -231 91 46 -89
+ -115 162 -154 -288
+ -503 -503 197 -503
+ -503 193 -306 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -306 186 -503 -226
+ -103 153 -195 -143
diff --git a/profiles/plants/MA0976.1.pwm b/profiles/plants/MA0976.1.pwm
index 864855f..bbb8b21 100644
--- a/profiles/plants/MA0976.1.pwm
+++ b/profiles/plants/MA0976.1.pwm
@@ -1,8 +1,8 @@
- -184 38 110 -184
- -121 162 -201 -201
- -10000 -10000 200 -10000
- -10000 196 -332 -10000
- -10000 200 -10000 -10000
- -10000 -427 198 -10000
- -188 160 -188 -121
- -137 166 -194 -235
+ -173 37 107 -173
+ -116 159 -188 -188
+ -503 -503 197 -503
+ -503 193 -297 -503
+ -503 197 -503 -503
+ -503 -362 195 -503
+ -176 157 -176 -115
+ -130 163 -182 -218
diff --git a/profiles/plants/MA0976.2.pwm b/profiles/plants/MA0976.2.pwm
index 2a75736..9472733 100644
--- a/profiles/plants/MA0976.2.pwm
+++ b/profiles/plants/MA0976.2.pwm
@@ -1,12 +1,12 @@
- -153 130 -94 -57
- -93 154 -210 -154
- -242 -689 188 -291
- -689 197 -443 -572
- -557 197 -498 -572
- -207 -789 187 -322
- -557 192 -572 -245
- -311 193 -489 -425
- 122 -531 46 -186
- -283 180 -357 -183
- -52 108 -126 -36
- 37 -150 67 -39
+ -147 128 -91 -55
+ -90 151 -199 -148
+ -228 -503 185 -272
+ -503 195 -388 -461
+ -454 195 -423 -461
+ -197 -524 184 -297
+ -454 189 -461 -231
+ -288 190 -418 -376
+ 120 -441 45 -178
+ -264 178 -325 -175
+ -51 106 -122 -36
+ 36 -144 66 -38
diff --git a/profiles/plants/MA0977.1.pwm b/profiles/plants/MA0977.1.pwm
index 4dddc83..92a4787 100644
--- a/profiles/plants/MA0977.1.pwm
+++ b/profiles/plants/MA0977.1.pwm
@@ -1,8 +1,8 @@
- 160 -327 -46 -280
- 126 -797 -438 64
- 199 -797 -597 -564
- 198 -797 -497 -538
- 157 -797 2 -797
- -597 -797 197 -380
- -497 -34 -194 154
- -7 -250 116 -64
+ 157 -293 -44 -255
+ 123 -486 -370 62
+ 195 -486 -444 -432
+ 194 -486 -402 -421
+ 154 -486 2 -486
+ -444 -486 193 -332
+ -402 -32 -182 151
+ -7 -231 113 -62
diff --git a/profiles/plants/MA0978.1.pwm b/profiles/plants/MA0978.1.pwm
index e69de29..624eb77 100644
--- a/profiles/plants/MA0978.1.pwm
+++ b/profiles/plants/MA0978.1.pwm
@@ -0,0 +1,8 @@
+ 194 -470 -349 -444
+ -393 -349 -456 193
+ -421 -486 195 -457
+ -456 -456 -470 195
+ -456 195 -486 -444
+ -470 -470 195 -444
+ -54 -503 170 -470
+ -486 163 -486 -26
diff --git a/profiles/plants/MA0979.1.pwm b/profiles/plants/MA0979.1.pwm
index 6673ebb..da6f506 100644
--- a/profiles/plants/MA0979.1.pwm
+++ b/profiles/plants/MA0979.1.pwm
@@ -1,8 +1,8 @@
- -76 165 -338 -261
- 42 -406 134 -388
- -321 183 -211 -327
- -268 190 -372 -497
- -192 -251 179 -327
- 35 107 -216 -131
- -184 173 -188 -288
- -132 74 40 -70
+ -73 162 -301 -240
+ 41 -349 131 -337
+ -289 180 -197 -293
+ -246 187 -326 -402
+ -180 -231 176 -293
+ 35 104 -201 -125
+ -173 170 -176 -262
+ -126 72 39 -67
diff --git a/profiles/plants/MA0980.1.pwm b/profiles/plants/MA0980.1.pwm
index b0b3827..ac87d8b 100644
--- a/profiles/plants/MA0980.1.pwm
+++ b/profiles/plants/MA0980.1.pwm
@@ -1,8 +1,8 @@
- -292 -97 160 -159
- -351 191 -416 -351
- -110 -565 180 -516
- -538 187 -168 -597
- -597 197 -480 -538
- -480 -516 193 -297
- -497 175 -156 -186
- -292 178 -397 -144
+ -266 -93 157 -151
+ -311 188 -356 -311
+ -105 -432 177 -411
+ -421 183 -159 -444
+ -444 194 -393 -421
+ -393 -411 190 -269
+ -402 171 -147 -175
+ -266 175 -343 -137
diff --git a/profiles/plants/MA0980.2.pwm b/profiles/plants/MA0980.2.pwm
index e69de29..7794cbc 100644
--- a/profiles/plants/MA0980.2.pwm
+++ b/profiles/plants/MA0980.2.pwm
@@ -0,0 +1,12 @@
+ -42 11 -111 77
+ -45 19 -116 75
+ 69 -343 108 -248
+ -451 195 -513 -394
+ -492 197 -492 -513
+ -451 -513 196 -473
+ 194 -437 -485 -375
+ -485 196 -506 -473
+ 191 -397 -308 -391
+ 90 -32 -104 -24
+ 53 -48 -63 25
+ 49 -73 -23 19
diff --git a/profiles/plants/MA0981.1.pwm b/profiles/plants/MA0981.1.pwm
index e69de29..d26de47 100644
--- a/profiles/plants/MA0981.1.pwm
+++ b/profiles/plants/MA0981.1.pwm
@@ -0,0 +1,10 @@
+ 1 5 3 -9
+ 35 -33 0 -10
+ 71 -126 -85 47
+ 167 -169 -249 -160
+ 170 -184 -456 -123
+ 137 -10 -289 -151
+ -182 -306 173 -182
+ -54 -5 -11 51
+ 10 -39 11 12
+ 20 -25 10 -9
diff --git a/profiles/plants/MA0982.1.pwm b/profiles/plants/MA0982.1.pwm
index e08eecf..ff770fe 100644
--- a/profiles/plants/MA0982.1.pwm
+++ b/profiles/plants/MA0982.1.pwm
@@ -1,7 +1,7 @@
- 61 -55 -10 -22
- 77 -147 -98 51
- 169 -182 -380 -127
- 170 -192 -797 -108
- 139 1 -397 -174
- -163 -178 161 -157
- -50 -5 -25 57
+ 59 -53 -10 -21
+ 75 -140 -93 50
+ 166 -171 -332 -120
+ 167 -180 -486 -103
+ 137 1 -343 -164
+ -154 -167 158 -149
+ -48 -5 -24 55
diff --git a/profiles/plants/MA0983.1.pwm b/profiles/plants/MA0983.1.pwm
index e69de29..006f494 100644
--- a/profiles/plants/MA0983.1.pwm
+++ b/profiles/plants/MA0983.1.pwm
@@ -0,0 +1,8 @@
+ 2 4 6 -13
+ 53 -54 -13 -6
+ 77 -149 -115 57
+ 190 -259 -486 -385
+ 186 -243 -486 -269
+ 127 29 -201 -302
+ -216 -284 179 -249
+ -69 -2 -22 62
diff --git a/profiles/plants/MA0984.1.pwm b/profiles/plants/MA0984.1.pwm
index e69de29..4821f04 100644
--- a/profiles/plants/MA0984.1.pwm
+++ b/profiles/plants/MA0984.1.pwm
@@ -0,0 +1,8 @@
+ 82 -146 -15 -5
+ 142 -370 -190 -4
+ 192 -444 -385 -343
+ 181 -456 -157 -326
+ 52 -237 121 -421
+ 93 -190 81 -377
+ -123 -37 86 -2
+ -51 -21 69 -28
diff --git a/profiles/plants/MA0986.1.pwm b/profiles/plants/MA0986.1.pwm
index a7056bf..d31b0b0 100644
--- a/profiles/plants/MA0986.1.pwm
+++ b/profiles/plants/MA0986.1.pwm
@@ -1,8 +1,8 @@
- -119 160 -105 -427
- 169 -638 -43 -638
- -597 198 -638 -497
- -516 198 -638 -597
- -496 -638 198 -596
- 163 -66 -241 -372
- -564 197 -564 -427
- 169 -232 -321 -110
+ -113 157 -100 -363
+ 166 -456 -42 -456
+ -444 194 -456 -402
+ -411 195 -456 -444
+ -402 -456 194 -444
+ 160 -64 -223 -326
+ -432 193 -432 -362
+ 166 -216 -289 -105
diff --git a/profiles/plants/MA0987.1.pwm b/profiles/plants/MA0987.1.pwm
index e69de29..a412d68 100644
--- a/profiles/plants/MA0987.1.pwm
+++ b/profiles/plants/MA0987.1.pwm
@@ -0,0 +1,10 @@
+ -4 9 2 -7
+ 27 -21 6 -16
+ 65 -112 -51 35
+ 180 -234 -385 -193
+ 180 -226 -486 -190
+ 149 -28 -284 -211
+ -169 -311 172 -178
+ -44 4 -12 39
+ 11 -36 11 8
+ 16 -19 12 -12
diff --git a/profiles/plants/MA0988.1.pwm b/profiles/plants/MA0988.1.pwm
index 79030be..0d4f0d9 100644
--- a/profiles/plants/MA0988.1.pwm
+++ b/profiles/plants/MA0988.1.pwm
@@ -1,10 +1,10 @@
- 0 12 -17 3
- -27 -11 65 -56
- -124 176 -438 -272
- 189 -10000 -464 -192
- -351 191 -10000 -268
- -268 -10000 191 -351
- -192 -464 -10000 189
- -272 -438 176 -124
- -56 65 -11 -27
- 3 -17 12 0
+ 0 12 -17 3
+ -26 -11 63 -54
+ -118 172 -370 -249
+ 185 -503 -385 -180
+ -311 188 -503 -246
+ -246 -503 188 -311
+ -180 -385 -503 185
+ -249 -370 172 -118
+ -54 63 -11 -26
+ 3 -17 12 0
diff --git a/profiles/plants/MA0989.1.pwm b/profiles/plants/MA0989.1.pwm
index 6430d9f..bff2ebc 100644
--- a/profiles/plants/MA0989.1.pwm
+++ b/profiles/plants/MA0989.1.pwm
@@ -1,9 +1,9 @@
- 2 8 6 -17
- 42 -37 3 -20
- 95 -182 -108 40
- 178 -201 -427 -194
- 189 -280 -10000 -272
- 143 -77 -227 -95
- -182 -321 184 -565
- -85 20 -36 60
- 19 -66 25 6
+ 2 8 6 -17
+ 41 -36 3 -19
+ 92 -171 -104 39
+ 175 -188 -363 -182
+ 186 -255 -503 -249
+ 140 -74 -211 -91
+ -171 -289 181 -432
+ -81 20 -35 58
+ 18 -64 24 5
diff --git a/profiles/plants/MA0990.1.pwm b/profiles/plants/MA0990.1.pwm
index 396d397..1cd95f2 100644
--- a/profiles/plants/MA0990.1.pwm
+++ b/profiles/plants/MA0990.1.pwm
@@ -1,10 +1,10 @@
- -26 65 -112 19
- 122 4 -190 -141
- 98 -321 -184 71
- -213 -451 -480 188
- 33 -219 -292 126
- 188 -316 -254 -516
- 174 -268 -344 -125
- -89 -327 -797 175
- -162 -332 160 -87
- -18 101 -235 -14
+ -25 63 -107 18
+ 120 3 -178 -134
+ 96 -289 -173 69
+ -199 -377 -393 185
+ 32 -204 -266 123
+ 185 -284 -234 -411
+ 171 -246 -306 -119
+ -85 -293 -486 171
+ -154 -297 157 -83
+ -18 99 -218 -13
diff --git a/profiles/plants/MA0992.1.pwm b/profiles/plants/MA0992.1.pwm
index d11d9f0..5ad14a5 100644
--- a/profiles/plants/MA0992.1.pwm
+++ b/profiles/plants/MA0992.1.pwm
@@ -1,8 +1,8 @@
- -57 105 -15 -148
- -194 154 -112 -141
- -338 -380 193 -538
- -438 185 -159 -538
- -438 196 -438 -10000
- -538 -538 198 -10000
- -216 141 -93 -74
- -102 168 -268 -268
+ -55 102 -15 -140
+ -182 151 -107 -134
+ -301 -332 190 -421
+ -370 181 -150 -421
+ -370 193 -370 -503
+ -421 -421 195 -503
+ -201 138 -89 -71
+ -98 165 -246 -246
diff --git a/profiles/plants/MA0992.2.pwm b/profiles/plants/MA0992.2.pwm
index e69de29..23b8fcb 100644
--- a/profiles/plants/MA0992.2.pwm
+++ b/profiles/plants/MA0992.2.pwm
@@ -0,0 +1,12 @@
+ -17 -117 51 31
+ -146 131 -61 -98
+ -380 194 -472 -434
+ -304 -487 190 -329
+ -434 192 -396 -340
+ -434 196 -472 -487
+ -396 -504 194 -404
+ -265 44 -365 127
+ -240 178 -300 -204
+ 166 -329 -141 -149
+ -2 25 -127 49
+ 31 16 -112 25
diff --git a/profiles/plants/MA0993.1.pwm b/profiles/plants/MA0993.1.pwm
index e69de29..3b379bc 100644
--- a/profiles/plants/MA0993.1.pwm
+++ b/profiles/plants/MA0993.1.pwm
@@ -0,0 +1,10 @@
+ 7 80 -80 -66
+ -160 -356 177 -259
+ -221 176 -149 -503
+ -91 159 -255 -182
+ -140 -297 178 -385
+ -74 85 -88 9
+ -23 122 -180 -92
+ 73 -51 -24 -33
+ 14 -26 -32 33
+ 15 -25 -31 31
diff --git a/profiles/plants/MA0994.1.pwm b/profiles/plants/MA0994.1.pwm
index ff8638f..c7d3b19 100644
--- a/profiles/plants/MA0994.1.pwm
+++ b/profiles/plants/MA0994.1.pwm
@@ -1,10 +1,10 @@
- -31 119 -137 -95
- -272 -10000 194 -638
- -480 186 -197 -372
- -113 169 -301 -238
- -174 -224 175 -301
- -70 85 -73 -4
- -34 128 -211 -85
- 84 -51 -44 -38
- 13 -28 -43 43
- 22 -28 -38 32
+ -30 117 -130 -91
+ -249 -503 191 -456
+ -393 183 -184 -326
+ -108 166 -273 -221
+ -164 -208 172 -273
+ -67 83 -70 -4
+ -33 125 -197 -81
+ 83 -50 -43 -37
+ 12 -27 -42 42
+ 21 -27 -37 31
diff --git a/profiles/plants/MA0995.1.pwm b/profiles/plants/MA0995.1.pwm
index e69de29..a673a69 100644
--- a/profiles/plants/MA0995.1.pwm
+++ b/profiles/plants/MA0995.1.pwm
@@ -0,0 +1,10 @@
+ 0 -8 13 -6
+ -58 -5 -101 90
+ -234 -377 183 -262
+ -107 -146 -80 137
+ -444 195 -470 -432
+ -421 -470 194 -370
+ -326 -402 192 -411
+ -321 72 -246 105
+ -3 -53 64 -38
+ 6 -15 33 -32
diff --git a/profiles/plants/MA0995.2.pwm b/profiles/plants/MA0995.2.pwm
index e69de29..12307f6 100644
--- a/profiles/plants/MA0995.2.pwm
+++ b/profiles/plants/MA0995.2.pwm
@@ -0,0 +1,11 @@
+ -53 47 -65 36
+ -51 107 -124 -37
+ 71 -367 105 -226
+ -500 195 -367 -524
+ -432 194 -439 -390
+ -385 -419 194 -462
+ 172 -152 -293 -221
+ -524 195 -407 -419
+ 186 -376 -236 -339
+ 26 37 -77 -11
+ 23 3 -55 16
diff --git a/profiles/plants/MA0997.1.pwm b/profiles/plants/MA0997.1.pwm
index 9d9609c..f49ad57 100644
--- a/profiles/plants/MA0997.1.pwm
+++ b/profiles/plants/MA0997.1.pwm
@@ -1,9 +1,9 @@
- -37 24 33 -34
- -34 91 -51 -67
- -380 -10000 197 -10000
- -203 173 -154 -338
- -135 144 -172 -78
- -48 -10000 172 -10000
- -86 75 -24 -12
- -16 69 -37 -48
- 49 -26 -11 -26
+ -36 23 33 -33
+ -33 89 -50 -65
+ -332 -503 194 -503
+ -190 170 -146 -301
+ -128 142 -162 -74
+ -46 -503 168 -503
+ -82 73 -23 -12
+ -15 67 -36 -46
+ 48 -25 -11 -25
diff --git a/profiles/plants/MA0998.1.pwm b/profiles/plants/MA0998.1.pwm
index e69de29..8ce78dd 100644
--- a/profiles/plants/MA0998.1.pwm
+++ b/profiles/plants/MA0998.1.pwm
@@ -0,0 +1,10 @@
+ -36 26 16 -13
+ 20 88 -56 -162
+ -262 -362 188 -362
+ -269 182 -255 -289
+ -130 173 -316 -269
+ -234 -385 186 -326
+ -91 122 -89 -72
+ -259 182 -301 -249
+ 60 -49 -6 -31
+ -10 2 -16 21
diff --git a/profiles/plants/MA1000.1.pwm b/profiles/plants/MA1000.1.pwm
index ff9e6e5..71b2582 100644
--- a/profiles/plants/MA1000.1.pwm
+++ b/profiles/plants/MA1000.1.pwm
@@ -1,8 +1,8 @@
- -797 -99 0 132
- -797 -797 200 -797
- -797 200 -797 -797
- -797 189 -180 -797
- -797 -797 200 -797
- -797 -81 177 -797
- -797 200 -797 -797
- -131 -131 148 -131
+ -486 -95 0 129
+ -486 -486 196 -486
+ -486 196 -486 -486
+ -486 186 -169 -486
+ -486 -486 196 -486
+ -486 -77 174 -486
+ -486 196 -486 -486
+ -125 -125 145 -125
diff --git a/profiles/plants/MA1000.2.pwm b/profiles/plants/MA1000.2.pwm
index e9613ce..f2b84cd 100644
--- a/profiles/plants/MA1000.2.pwm
+++ b/profiles/plants/MA1000.2.pwm
@@ -1,15 +1,15 @@
- -2 -136 92 -45
- 2 31 -202 59
- 20 -174 81 -32
- 37 -199 109 -161
- -155 107 -10000 64
- -10000 -10000 200 -10000
- -280 -10000 195 -10000
- -719 196 -10000 -319
- -10000 -10000 200 -10000
- -10000 -719 200 -10000
- -280 189 -10000 -280
- -719 -10000 184 -124
- -91 -43 138 -311
- 53 48 -129 -40
- -25 -244 117 -47
+ -2 -127 90 -43
+ 2 29 -186 57
+ 19 -161 79 -31
+ 35 -183 106 -150
+ -144 104 -466 62
+ -466 -466 196 -466
+ -250 -466 190 -466
+ -444 191 -466 -279
+ -466 -466 196 -466
+ -466 -444 195 -466
+ -250 185 -466 -250
+ -444 -466 179 -116
+ -86 -41 135 -273
+ 51 46 -121 -38
+ -24 -221 114 -45
diff --git a/profiles/plants/MA1001.1.pwm b/profiles/plants/MA1001.1.pwm
index e69de29..c5fdc2d 100644
--- a/profiles/plants/MA1001.1.pwm
+++ b/profiles/plants/MA1001.1.pwm
@@ -0,0 +1,10 @@
+ -27 32 33 -58
+ -22 96 -98 -54
+ -114 -503 179 -444
+ -297 171 -204 -147
+ -75 147 -213 -127
+ -89 -385 170 -273
+ -38 60 -67 12
+ 4 95 -160 -50
+ 74 -60 -45 -10
+ 14 -34 -28 36
diff --git a/profiles/plants/MA1001.2.pwm b/profiles/plants/MA1001.2.pwm
index ae51324..04e348e 100644
--- a/profiles/plants/MA1001.2.pwm
+++ b/profiles/plants/MA1001.2.pwm
@@ -1,12 +1,12 @@
- -4 -123 51 24
- -108 119 -66 -69
- -407 196 -532 -500
- -342 -832 193 -337
- -532 194 -380 -407
- -551 199 -732 -732
- -432 -10000 197 -474
- -328 5 -386 148
- -234 176 -300 -174
- 164 -351 -126 -142
- 1 35 -123 37
- 22 29 -100 15
+ -4 -118 50 23
+ -104 116 -63 -67
+ -356 193 -428 -412
+ -308 -505 190 -304
+ -428 191 -336 -356
+ -437 196 -491 -491
+ -372 -520 194 -397
+ -297 5 -341 146
+ -219 173 -275 -165
+ 161 -315 -120 -135
+ 1 34 -118 36
+ 22 28 -96 15
diff --git a/profiles/plants/MA1004.1.pwm b/profiles/plants/MA1004.1.pwm
index e69de29..c1b0412 100644
--- a/profiles/plants/MA1004.1.pwm
+++ b/profiles/plants/MA1004.1.pwm
@@ -0,0 +1,8 @@
+ -20 91 17 -311
+ -503 -218 189 -503
+ -343 190 -269 -503
+ -503 194 -343 -503
+ -503 -343 194 -503
+ -130 134 -75 -109
+ -503 197 -503 -503
+ 86 -122 17 -67
diff --git a/profiles/plants/MA1005.1.pwm b/profiles/plants/MA1005.1.pwm
index e69de29..4f742c7 100644
--- a/profiles/plants/MA1005.1.pwm
+++ b/profiles/plants/MA1005.1.pwm
@@ -0,0 +1,8 @@
+ -155 157 -155 -155
+ -356 -503 195 -503
+ -503 179 -108 -503
+ -503 195 -356 -503
+ -356 -503 195 -503
+ -199 134 -41 -108
+ -157 182 -503 -343
+ 119 -306 16 -106
diff --git a/profiles/plants/MA1005.2.pwm b/profiles/plants/MA1005.2.pwm
index e69de29..500e975 100644
--- a/profiles/plants/MA1005.2.pwm
+++ b/profiles/plants/MA1005.2.pwm
@@ -0,0 +1,11 @@
+ 14 -101 44 6
+ -148 126 -85 -55
+ -196 184 -416 -322
+ -129 -468 179 -352
+ -547 197 -512 -523
+ -356 195 -535 -468
+ -159 -523 183 -339
+ -523 195 -475 -387
+ -440 195 -535 -406
+ 47 -303 96 -87
+ -95 90 -123 25
diff --git a/profiles/plants/MA1006.1.pwm b/profiles/plants/MA1006.1.pwm
index e69de29..a001586 100644
--- a/profiles/plants/MA1006.1.pwm
+++ b/profiles/plants/MA1006.1.pwm
@@ -0,0 +1,10 @@
+ 21 48 -47 -47
+ -159 -17 -57 107
+ -503 -503 197 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -143 183 -503
+ -503 197 -503 -503
+ -63 -65 106 -66
+ -52 15 4 23
diff --git a/profiles/plants/MA1007.1.pwm b/profiles/plants/MA1007.1.pwm
index e69de29..343ff81 100644
--- a/profiles/plants/MA1007.1.pwm
+++ b/profiles/plants/MA1007.1.pwm
@@ -0,0 +1,8 @@
+ -169 -486 19 133
+ -503 -503 197 -503
+ -215 -503 -503 189
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -503 -71 -503 173
+ -149 -486 138 0
diff --git a/profiles/plants/MA1008.1.pwm b/profiles/plants/MA1008.1.pwm
index 9bac127..e3ca9c3 100644
--- a/profiles/plants/MA1008.1.pwm
+++ b/profiles/plants/MA1008.1.pwm
@@ -1,10 +1,10 @@
- 22 -47 -47 48
- -80 -166 20 97
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -172 -10000 189
- -184 -184 166 -184
- 22 -2 22 -55
+ 22 -46 -46 46
+ -76 -157 20 95
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -503 -162 -503 185
+ -173 -173 163 -173
+ 22 -2 21 -53
diff --git a/profiles/plants/MA1009.1.pwm b/profiles/plants/MA1009.1.pwm
index afc4a9e..2ef82e1 100644
--- a/profiles/plants/MA1009.1.pwm
+++ b/profiles/plants/MA1009.1.pwm
@@ -1,8 +1,8 @@
- -697 -597 -170 187
- -696 -638 199 -638
- -797 -397 -697 197
- -696 199 -796 -538
- -697 -497 197 -464
- -638 -338 195 -465
- 131 -101 -24 -244
- 120 -140 -39 -85
+ -470 -444 -160 184
+ -470 -456 195 -456
+ -486 -343 -470 194
+ -470 195 -485 -421
+ -470 -402 194 -385
+ -457 -302 191 -385
+ 128 -97 -23 -226
+ 118 -133 -37 -81
diff --git a/profiles/plants/MA1010.1.pwm b/profiles/plants/MA1010.1.pwm
index a286194..b7b56c4 100644
--- a/profiles/plants/MA1010.1.pwm
+++ b/profiles/plants/MA1010.1.pwm
@@ -1,13 +1,13 @@
- 8 13 -47 18
- -261 -261 -261 181
- -364 -364 177 -122
- -122 -364 -100 158
- -365 191 -365 -365
- -10000 -152 187 -10000
- -152 -10000 187 -10000
- -10000 -10000 -10000 200
- 128 -184 -66 -61
- 20 -26 -26 23
- 31 -12 -12 -12
- 31 -12 -12 -12
- 31 -12 -12 -12
+ 8 12 -46 17
+ -240 -240 -240 178
+ -321 -321 174 -117
+ -117 -321 -96 155
+ -321 188 -321 -321
+ -503 -144 184 -503
+ -144 -503 184 -503
+ -503 -503 -503 197
+ 126 -173 -64 -59
+ 20 -25 -25 23
+ 30 -12 -12 -12
+ 30 -12 -12 -12
+ 30 -12 -12 -12
diff --git a/profiles/plants/MA1011.1.pwm b/profiles/plants/MA1011.1.pwm
index 88efb9a..35bb970 100644
--- a/profiles/plants/MA1011.1.pwm
+++ b/profiles/plants/MA1011.1.pwm
@@ -1,10 +1,10 @@
- 8 -7 30 -40
- -25 -47 12 43
- -186 177 -388 -196
- 169 -10000 -124 -152
- -219 168 -10000 -78
- -78 -10000 168 -219
- -152 -124 -10000 169
- -196 -388 177 -186
- 43 12 -47 -25
- -40 30 -7 8
+ 8 -7 29 -38
+ -24 -45 12 42
+ -174 173 -337 -184
+ 166 -503 -118 -144
+ -204 165 -503 -75
+ -75 -503 165 -204
+ -144 -118 -503 166
+ -184 -337 173 -174
+ 42 12 -45 -24
+ -38 29 -7 8
diff --git a/profiles/plants/MA1012.1.pwm b/profiles/plants/MA1012.1.pwm
index 4d7b12f..ca3a993 100644
--- a/profiles/plants/MA1012.1.pwm
+++ b/profiles/plants/MA1012.1.pwm
@@ -1,14 +1,14 @@
- -51 114 -51 -134
- -515 -315 -10000 195
- -10000 -10000 -10000 200
- -134 -10000 -515 184
- -10000 200 -10000 -10000
- -10000 63 -10000 129
- 161 -10000 -515 -11
- -15 -415 -10000 161
- -198 -10000 -10000 191
- -415 -10000 -10000 198
- -124 -76 -415 155
- -106 -124 24 94
- -11 -10000 162 -10000
- -169 -415 137 6
+ -46 107 -46 -118
+ -327 -246 -369 186
+ -369 -369 -369 191
+ -118 -369 -327 176
+ -369 191 -369 -369
+ -369 59 -369 123
+ 153 -369 -327 -10
+ -14 -295 -369 153
+ -168 -369 -369 182
+ -295 -369 -369 189
+ -110 -68 -295 148
+ -95 -110 23 88
+ -10 -369 154 -369
+ -146 -295 130 6
diff --git a/profiles/plants/MA1013.1.pwm b/profiles/plants/MA1013.1.pwm
index e69de29..1ccc1af 100644
--- a/profiles/plants/MA1013.1.pwm
+++ b/profiles/plants/MA1013.1.pwm
@@ -0,0 +1,8 @@
+ -126 -178 -87 146
+ 172 -289 -88 -503
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -112 -149 166
+ -112 -112 154 -252
diff --git a/profiles/plants/MA1014.1.pwm b/profiles/plants/MA1014.1.pwm
index e69de29..e925fd4 100644
--- a/profiles/plants/MA1014.1.pwm
+++ b/profiles/plants/MA1014.1.pwm
@@ -0,0 +1,8 @@
+ -56 -237 -56 129
+ 182 -503 -130 -503
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 -503 197
+ -231 -89 145 -89
diff --git a/profiles/plants/MA1015.1.pwm b/profiles/plants/MA1015.1.pwm
index 1f74ec5..69aec20 100644
--- a/profiles/plants/MA1015.1.pwm
+++ b/profiles/plants/MA1015.1.pwm
@@ -1,8 +1,8 @@
- -40 17 -78 61
- 126 -116 -12 -208
- -40 -190 156 -538
- 195 -696 -350 -516
- -516 -350 -696 195
- -538 156 -190 -40
- -208 -12 -116 126
- 61 -78 17 -40
+ -38 17 -74 60
+ 123 -110 -12 -195
+ -39 -178 153 -421
+ 192 -470 -311 -411
+ -411 -311 -470 192
+ -421 153 -178 -39
+ -195 -12 -110 123
+ 60 -74 17 -38
diff --git a/profiles/plants/MA1016.1.pwm b/profiles/plants/MA1016.1.pwm
index 906741b..da7918c 100644
--- a/profiles/plants/MA1016.1.pwm
+++ b/profiles/plants/MA1016.1.pwm
@@ -1,9 +1,9 @@
- -28 17 -20 24
- 30 -32 18 -27
- -46 20 -192 89
- -264 -272 185 -372
- 197 -10000 -10000 -372
- -638 -797 -10000 199
- -218 141 -68 -99
- 37 -31 10 -27
- 11 -6 16 -24
+ -27 16 -20 24
+ 29 -31 18 -26
+ -44 20 -180 87
+ -243 -249 182 -326
+ 194 -503 -503 -326
+ -456 -486 -503 196
+ -204 138 -65 -95
+ 36 -30 10 -26
+ 10 -6 16 -23
diff --git a/profiles/plants/MA1017.1.pwm b/profiles/plants/MA1017.1.pwm
index e69de29..a3e9d32 100644
--- a/profiles/plants/MA1017.1.pwm
+++ b/profiles/plants/MA1017.1.pwm
@@ -0,0 +1,9 @@
+ -26 34 6 -22
+ 91 -5 -69 -89
+ -195 -280 181 -362
+ 195 -486 -470 -421
+ -470 -316 -503 193
+ -289 135 -88 -37
+ -193 59 -115 84
+ 60 -64 55 -141
+ 32 -40 35 -46
diff --git a/profiles/plants/MA1018.1.pwm b/profiles/plants/MA1018.1.pwm
index e69de29..15b2f06 100644
--- a/profiles/plants/MA1018.1.pwm
+++ b/profiles/plants/MA1018.1.pwm
@@ -0,0 +1,11 @@
+ -13 -13 -13 34
+ -61 102 -61 -61
+ -28 21 -213 84
+ 186 -503 -165 -503
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -306 -130 -306 175
+ 23 -141 83 -58
+ 24 -32 -32 28
diff --git a/profiles/plants/MA1019.1.pwm b/profiles/plants/MA1019.1.pwm
index e69de29..458c2a3 100644
--- a/profiles/plants/MA1019.1.pwm
+++ b/profiles/plants/MA1019.1.pwm
@@ -0,0 +1,9 @@
+ -121 -32 92 -19
+ -326 -356 183 -195
+ -146 -326 175 -266
+ -114 29 80 -76
+ -237 179 -289 -218
+ -456 196 -486 -503
+ -444 193 -503 -321
+ 181 -337 -162 -377
+ -337 172 -216 -141
diff --git a/profiles/plants/MA1020.1.pwm b/profiles/plants/MA1020.1.pwm
index e69de29..9cd9baf 100644
--- a/profiles/plants/MA1020.1.pwm
+++ b/profiles/plants/MA1020.1.pwm
@@ -0,0 +1,8 @@
+ -503 -71 135 -31
+ -503 -178 -503 187
+ -277 -503 -503 192
+ 197 -503 -503 -503
+ 192 -280 -503 -503
+ -277 192 -503 -503
+ -503 188 -503 -190
+ 129 -56 -96 -149
diff --git a/profiles/plants/MA1021.1.pwm b/profiles/plants/MA1021.1.pwm
index e69de29..7da302c 100644
--- a/profiles/plants/MA1021.1.pwm
+++ b/profiles/plants/MA1021.1.pwm
@@ -0,0 +1,8 @@
+ -67 86 -67 -11
+ -486 196 -486 -486
+ 196 -486 -486 -486
+ -486 196 -486 -486
+ -208 -486 189 -486
+ -486 -486 -486 196
+ -486 -486 196 -486
+ -77 133 -169 -77
diff --git a/profiles/plants/MA1022.1.pwm b/profiles/plants/MA1022.1.pwm
index e69de29..de85a70 100644
--- a/profiles/plants/MA1022.1.pwm
+++ b/profiles/plants/MA1022.1.pwm
@@ -0,0 +1,10 @@
+ 1 8 4 -13
+ 44 -41 2 -20
+ 87 -147 -91 36
+ 170 -177 -302 -154
+ 174 -188 -486 -152
+ 134 -20 -206 -146
+ -190 -289 175 -211
+ -71 10 -26 57
+ 5 -50 29 5
+ 18 7 -13 -13
diff --git a/profiles/plants/MA1023.1.pwm b/profiles/plants/MA1023.1.pwm
index d07894f..81e2d91 100644
--- a/profiles/plants/MA1023.1.pwm
+++ b/profiles/plants/MA1023.1.pwm
@@ -1,8 +1,8 @@
- -180 -180 19 119
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -20 -10000 165
- -108 -797 149 -50
+ -169 -169 19 117
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -503 -20 -503 162
+ -104 -486 147 -48
diff --git a/profiles/plants/MA1024.1.pwm b/profiles/plants/MA1024.1.pwm
index e69de29..e379174 100644
--- a/profiles/plants/MA1024.1.pwm
+++ b/profiles/plants/MA1024.1.pwm
@@ -0,0 +1,10 @@
+ -72 57 38 -72
+ -175 99 -175 50
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -128 -503 -503 182
+ -124 -124 19 101
+ 47 -45 20 -45
diff --git a/profiles/plants/MA1025.1.pwm b/profiles/plants/MA1025.1.pwm
index 8b6fccc..d4e6fa3 100644
--- a/profiles/plants/MA1025.1.pwm
+++ b/profiles/plants/MA1025.1.pwm
@@ -1,12 +1,12 @@
- -13 32 -13 -13
- -13 -13 32 -13
- -92 -6 33 32
- -338 -124 161 -121
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 186 -10000 -139
- -10000 -10000 200 -10000
- -357 -357 -357 191
- -357 -357 191 -357
- -31 96 -36 -108
- -15 -15 -15 37
+ -12 32 -12 -12
+ -12 -12 32 -12
+ -88 -6 32 32
+ -301 -118 158 -115
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 182 -503 -132
+ -503 -503 197 -503
+ -316 -316 -316 187
+ -316 -316 187 -316
+ -30 93 -35 -103
+ -14 -14 -14 36
diff --git a/profiles/plants/MA1026.1.pwm b/profiles/plants/MA1026.1.pwm
index e69de29..609cc7c 100644
--- a/profiles/plants/MA1026.1.pwm
+++ b/profiles/plants/MA1026.1.pwm
@@ -0,0 +1,8 @@
+ -135 -52 -193 140
+ 150 -36 -199 -284
+ 186 -269 -349 -293
+ -226 -385 -343 186
+ 13 -188 17 59
+ 186 -343 -385 -226
+ -293 -349 -269 186
+ -284 -199 -36 150
diff --git a/profiles/plants/MA1026.2.pwm b/profiles/plants/MA1026.2.pwm
index 4335d5d..63983b1 100644
--- a/profiles/plants/MA1026.2.pwm
+++ b/profiles/plants/MA1026.2.pwm
@@ -1,15 +1,15 @@
- 85 -178 10 -25
- 130 -225 -81 -40
- 86 -208 -130 62
- 52 -123 -17 32
- 43 -168 116 -320
- -350 -60 -10000 170
- 181 -720 -112 -562
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -245 -85 165 -296
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -388 -10000 56 130
- 174 -720 -76 -420
- -60 75 -123 30
+ 82 -165 10 -24
+ 126 -205 -77 -38
+ 84 -190 -122 60
+ 51 -115 -16 31
+ 42 -156 113 -280
+ -301 -58 -466 166
+ 177 -444 -105 -408
+ 196 -466 -466 -466
+ -466 -466 -466 196
+ -222 -80 161 -261
+ 196 -466 -466 -466
+ -466 -466 -466 196
+ -326 -466 55 126
+ 170 -444 -72 -345
+ -58 73 -115 29
diff --git a/profiles/plants/MA1027.1.pwm b/profiles/plants/MA1027.1.pwm
index 08e0b11..fe08023 100644
--- a/profiles/plants/MA1027.1.pwm
+++ b/profiles/plants/MA1027.1.pwm
@@ -1,8 +1,8 @@
- 79 -95 -8 -32
- 5 -23 19 -5
- 131 -397 -254 37
- -97 -38 -211 132
- 184 -416 -188 -364
- -221 -152 -372 175
- -280 -77 -56 137
- -199 181 -380 -251
+ 78 -91 -7 -31
+ 5 -22 18 -4
+ 128 -343 -234 36
+ -93 -37 -197 129
+ 181 -356 -176 -321
+ -206 -144 -326 172
+ -255 -74 -54 135
+ -186 178 -332 -231
diff --git a/profiles/plants/MA1028.1.pwm b/profiles/plants/MA1028.1.pwm
index 9378ad7..0802a67 100644
--- a/profiles/plants/MA1028.1.pwm
+++ b/profiles/plants/MA1028.1.pwm
@@ -1,8 +1,8 @@
- -451 -464 195 -416
- 191 -438 -327 -357
- 185 -697 -697 -144
- -697 -129 -638 184
- 184 -638 -129 -697
- -144 -697 -697 185
- -357 -327 -438 191
- -416 195 -464 -451
+ -377 -385 192 -356
+ 188 -370 -293 -316
+ 182 -470 -470 -137
+ -470 -123 -456 180
+ 180 -456 -123 -470
+ -137 -470 -470 182
+ -316 -293 -370 188
+ -356 192 -385 -377
diff --git a/profiles/plants/MA1030.1.pwm b/profiles/plants/MA1030.1.pwm
index e69de29..4af771e 100644
--- a/profiles/plants/MA1030.1.pwm
+++ b/profiles/plants/MA1030.1.pwm
@@ -0,0 +1,10 @@
+ 72 -109 -193 70
+ 107 -301 55 -169
+ 72 114 -411 -349
+ -293 191 -486 -377
+ -240 186 -289 -444
+ -385 -486 -503 195
+ 170 -269 -151 -206
+ 56 -88 62 -118
+ 9 4 -14 0
+ -5 3 -18 17
diff --git a/profiles/plants/MA1031.1.pwm b/profiles/plants/MA1031.1.pwm
index ce1913d..e74efb8 100644
--- a/profiles/plants/MA1031.1.pwm
+++ b/profiles/plants/MA1031.1.pwm
@@ -1,10 +1,10 @@
- -51 -93 73 16
- -176 -78 42 83
- -10000 -10000 189 -182
- -10000 -10000 200 -10000
- -98 -131 140 -116
- -116 140 -131 -98
- -10000 200 -10000 -10000
- -182 189 -10000 -10000
- 83 42 -78 -176
- 16 73 -93 -51
+ -49 -89 71 16
+ -165 -74 41 81
+ -503 -503 186 -171
+ -503 -503 197 -503
+ -94 -125 137 -111
+ -111 137 -125 -94
+ -503 197 -503 -503
+ -171 186 -503 -503
+ 81 41 -74 -165
+ 16 71 -89 -49
diff --git a/profiles/plants/MA1032.1.pwm b/profiles/plants/MA1032.1.pwm
index 68dc445..bd235d7 100644
--- a/profiles/plants/MA1032.1.pwm
+++ b/profiles/plants/MA1032.1.pwm
@@ -1,10 +1,10 @@
- 33 -13 -13 -13
- -107 -14 -107 110
- -47 -10000 171 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 182 -10000 -112 -10000
- -10000 200 -10000 -10000
- 176 -351 -351 -117
- -93 -19 -18 78
+ 32 -12 -12 -12
+ -102 -14 -102 108
+ -46 -503 168 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ 179 -503 -107 -503
+ -503 197 -503 -503
+ 173 -311 -311 -112
+ -89 -19 -17 76
diff --git a/profiles/plants/MA1033.1.pwm b/profiles/plants/MA1033.1.pwm
index e69de29..75bce0b 100644
--- a/profiles/plants/MA1033.1.pwm
+++ b/profiles/plants/MA1033.1.pwm
@@ -0,0 +1,8 @@
+ 138 40 -456 -456
+ -456 195 -456 -456
+ 195 -456 -456 -456
+ -456 195 -456 -456
+ -456 -456 195 -456
+ -456 -456 -456 195
+ -456 -456 195 -456
+ -432 -432 96 96
diff --git a/profiles/plants/MA1034.1.pwm b/profiles/plants/MA1034.1.pwm
index e69de29..30b5439 100644
--- a/profiles/plants/MA1034.1.pwm
+++ b/profiles/plants/MA1034.1.pwm
@@ -0,0 +1,8 @@
+ -456 195 -456 -456
+ -456 -456 195 -456
+ -456 138 40 -456
+ -456 195 -456 -456
+ -456 -456 195 -456
+ -456 195 -456 -456
+ -456 195 -456 -456
+ 96 -432 96 -432
diff --git a/profiles/plants/MA1035.1.pwm b/profiles/plants/MA1035.1.pwm
index e69de29..12f8afd 100644
--- a/profiles/plants/MA1035.1.pwm
+++ b/profiles/plants/MA1035.1.pwm
@@ -0,0 +1,8 @@
+ -110 -486 160 -110
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 170 -56 -486 -486
+ -486 196 -486 -486
+ -486 196 -486 -486
+ 196 -486 -486 -486
+ -485 196 -485 -485
diff --git a/profiles/plants/MA1036.1.pwm b/profiles/plants/MA1036.1.pwm
index ada2dfd..f11bb36 100644
--- a/profiles/plants/MA1036.1.pwm
+++ b/profiles/plants/MA1036.1.pwm
@@ -1,8 +1,8 @@
- -13 -597 160 -464
- -564 -697 135 51
- -638 -438 -597 197
- 181 -516 -464 -120
- -380 -597 196 -697
- -538 -497 178 -97
- -538 -597 -564 198
- 107 -306 64 -218
+ -12 -444 157 -385
+ -432 -470 132 50
+ -456 -370 -444 194
+ 177 -411 -385 -114
+ -332 -444 193 -470
+ -421 -402 175 -92
+ -421 -444 -432 194
+ 105 -277 63 -204
diff --git a/profiles/plants/MA1037.1.pwm b/profiles/plants/MA1037.1.pwm
index e69de29..2c354d9 100644
--- a/profiles/plants/MA1037.1.pwm
+++ b/profiles/plants/MA1037.1.pwm
@@ -0,0 +1,9 @@
+ 22 -22 5 -9
+ 55 -64 -4 -11
+ 19 -321 123 -130
+ -297 -503 2 150
+ -215 -192 -503 180
+ 109 -27 -193 -37
+ -208 -293 178 -237
+ -213 -432 175 -149
+ -246 51 -326 119
diff --git a/profiles/plants/MA1038.1.pwm b/profiles/plants/MA1038.1.pwm
index e69de29..7e48dc3 100644
--- a/profiles/plants/MA1038.1.pwm
+++ b/profiles/plants/MA1038.1.pwm
@@ -0,0 +1,11 @@
+ 18 -49 15 5
+ -195 -195 169 -195
+ -321 -321 160 -40
+ -503 -503 -503 197
+ 186 -503 -503 -171
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ 135 -165 -30 -165
+ 12 -37 45 -37
+ 30 -12 -12 -12
diff --git a/profiles/plants/MA1039.1.pwm b/profiles/plants/MA1039.1.pwm
index 932884c..ef0a7cc 100644
--- a/profiles/plants/MA1039.1.pwm
+++ b/profiles/plants/MA1039.1.pwm
@@ -1,8 +1,8 @@
- 2 -279 143 -279
- -480 -10000 162 -15
- -10000 -480 -10000 199
- 118 -480 -284 65
- -327 -10000 196 -10000
- -380 -380 163 -41
- -464 -10000 -10000 199
- 35 -178 110 -178
+ 2 -255 140 -255
+ -393 -503 159 -15
+ -503 -393 -503 195
+ 115 -393 -259 63
+ -293 -503 193 -503
+ -332 -332 160 -40
+ -385 -503 -503 195
+ 34 -167 108 -167
diff --git a/profiles/plants/MA1040.1.pwm b/profiles/plants/MA1040.1.pwm
index f446d23..0ef4516 100644
--- a/profiles/plants/MA1040.1.pwm
+++ b/profiles/plants/MA1040.1.pwm
@@ -1,8 +1,8 @@
- -163 -638 187 -564
- -638 -697 63 128
- -538 -516 -796 198
- 174 -306 -538 -97
- -597 -597 199 -697
- -565 -638 184 -140
- -697 -292 -797 195
- 121 -338 52 -272
+ -154 -456 183 -432
+ -456 -470 61 126
+ -421 -411 -485 195
+ 171 -277 -421 -92
+ -444 -444 195 -470
+ -432 -457 181 -133
+ -470 -266 -486 191
+ 119 -301 50 -249
diff --git a/profiles/plants/MA1041.1.pwm b/profiles/plants/MA1041.1.pwm
index e69de29..e5f0657 100644
--- a/profiles/plants/MA1041.1.pwm
+++ b/profiles/plants/MA1041.1.pwm
@@ -0,0 +1,8 @@
+ 194 -486 -343 -456
+ -221 189 -470 -444
+ -470 195 -470 -421
+ -13 -218 -306 146
+ 194 -486 -343 -444
+ 9 152 -486 -470
+ -470 191 -486 -246
+ -103 -206 157 -169
diff --git a/profiles/plants/MA1042.1.pwm b/profiles/plants/MA1042.1.pwm
index e69de29..b3d7863 100644
--- a/profiles/plants/MA1042.1.pwm
+++ b/profiles/plants/MA1042.1.pwm
@@ -0,0 +1,8 @@
+ 50 -356 111 -155
+ -337 -411 -108 175
+ -273 -356 -421 189
+ 177 -246 -337 -171
+ -337 -402 190 -326
+ -302 -377 189 -332
+ -246 -243 -432 184
+ 112 9 -306 -64
diff --git a/profiles/plants/MA1043.1.pwm b/profiles/plants/MA1043.1.pwm
index f58290e..9d3c726 100644
--- a/profiles/plants/MA1043.1.pwm
+++ b/profiles/plants/MA1043.1.pwm
@@ -1,10 +1,10 @@
- 77 -101 -101 38
- -332 39 -332 132
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 126 -10000 69
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -99 106 -99 -15
- -15 38 -15 -15
+ 75 -97 -97 37
+ -297 38 -297 129
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 123 -503 67
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -95 104 -95 -14
+ -15 37 -15 -15
diff --git a/profiles/plants/MA1044.1.pwm b/profiles/plants/MA1044.1.pwm
index e69de29..9d13428 100644
--- a/profiles/plants/MA1044.1.pwm
+++ b/profiles/plants/MA1044.1.pwm
@@ -0,0 +1,12 @@
+ -13 -13 -13 34
+ 34 -13 -13 -13
+ 113 -155 17 -155
+ -311 187 -311 -311
+ 183 -503 -503 -138
+ 76 92 -503 -138
+ -503 -503 197 -503
+ -15 97 -137 -41
+ -2 125 -306 -98
+ 186 -306 -306 -306
+ 13 25 3 -53
+ 32 -12 -12 -12
diff --git a/profiles/plants/MA1045.1.pwm b/profiles/plants/MA1045.1.pwm
index e69de29..b9f0e34 100644
--- a/profiles/plants/MA1045.1.pwm
+++ b/profiles/plants/MA1045.1.pwm
@@ -0,0 +1,10 @@
+ 81 -42 -42 -42
+ -226 -226 -226 175
+ 80 -503 -150 90
+ 150 -503 16 -503
+ -162 185 -503 -503
+ -503 -503 197 -503
+ -503 -3 -503 156
+ 197 -503 -503 -503
+ 166 -182 -182 -182
+ 30 -28 -28 16
diff --git a/profiles/plants/MA1046.1.pwm b/profiles/plants/MA1046.1.pwm
index e69de29..548d0a8 100644
--- a/profiles/plants/MA1046.1.pwm
+++ b/profiles/plants/MA1046.1.pwm
@@ -0,0 +1,9 @@
+ -385 -385 -385 192
+ -432 -432 -432 194
+ 194 -432 -432 -432
+ 194 -432 -432 -432
+ -432 -432 194 -432
+ -432 -432 -432 194
+ 194 -432 -432 -432
+ 194 -432 -432 -432
+ -385 -385 -385 192
diff --git a/profiles/plants/MA1047.1.pwm b/profiles/plants/MA1047.1.pwm
index 6282c0d..06d8735 100644
--- a/profiles/plants/MA1047.1.pwm
+++ b/profiles/plants/MA1047.1.pwm
@@ -1,8 +1,8 @@
- 83 -3 21 -350
- -10000 -10000 -10000 200
- -10000 -10000 186 -141
- 198 -10000 -397 -10000
- -10000 200 -10000 -10000
- -397 -10000 198 -10000
- -10000 -135 -10000 185
- 50 23 -28 -77
+ 81 -3 20 -311
+ -503 -503 -503 197
+ -503 -503 183 -134
+ 194 -503 -343 -503
+ -503 197 -503 -503
+ -343 -503 194 -503
+ -503 -128 -503 182
+ 48 23 -27 -74
diff --git a/profiles/plants/MA1047.2.pwm b/profiles/plants/MA1047.2.pwm
index eceaf58..55f565c 100644
--- a/profiles/plants/MA1047.2.pwm
+++ b/profiles/plants/MA1047.2.pwm
@@ -1,15 +1,15 @@
- 54 -61 -49 23
- 7 -47 -53 62
- -26 -103 102 -61
- 131 -53 -71 -225
- -536 -377 -628 196
- -425 -490 183 -150
- 196 -614 -508 -421
- -760 185 -514 -145
- -143 -560 185 -760
- -480 -508 -560 197
- -151 177 -247 -399
- 190 -643 -240 -399
- -192 32 -35 76
- -22 69 -81 -7
- 53 -55 -37 14
+ 54 -59 -48 23
+ 7 -46 -52 61
+ -26 -100 100 -60
+ 130 -52 -70 -215
+ -459 -348 -505 194
+ -385 -431 181 -145
+ 195 -499 -442 -382
+ -546 183 -446 -141
+ -139 -472 183 -546
+ -424 -442 -472 195
+ -146 175 -236 -365
+ 188 -511 -230 -365
+ -185 32 -34 75
+ -21 68 -79 -7
+ 52 -54 -36 14
diff --git a/profiles/plants/MA1048.1.pwm b/profiles/plants/MA1048.1.pwm
index e69de29..2efc12d 100644
--- a/profiles/plants/MA1048.1.pwm
+++ b/profiles/plants/MA1048.1.pwm
@@ -0,0 +1,8 @@
+ 119 -486 70 -421
+ -486 196 -470 -444
+ -421 195 -470 -485
+ -470 -470 196 -470
+ 149 -402 -182 -26
+ -456 195 -486 -432
+ -231 188 -486 -370
+ 153 -385 -173 -43
diff --git a/profiles/plants/MA1049.1.pwm b/profiles/plants/MA1049.1.pwm
index b9f294a..4964c45 100644
--- a/profiles/plants/MA1049.1.pwm
+++ b/profiles/plants/MA1049.1.pwm
@@ -1,8 +1,8 @@
- 47 88 -38 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -103 181 -10000 -10000
- -332 -10000 196 -10000
- -10000 193 -235 -10000
- -10000 200 -10000 -10000
- -5 -127 95 -53
+ 46 86 -37 -503
+ -503 -503 197 -503
+ -503 197 -503 -503
+ -99 178 -503 -503
+ -297 -503 193 -503
+ -503 189 -218 -503
+ -503 197 -503 -503
+ -5 -120 93 -51
diff --git a/profiles/plants/MA1050.1.pwm b/profiles/plants/MA1050.1.pwm
index e69de29..f44387e 100644
--- a/profiles/plants/MA1050.1.pwm
+++ b/profiles/plants/MA1050.1.pwm
@@ -0,0 +1,8 @@
+ -486 -486 189 -208
+ -226 -503 190 -503
+ -138 -138 151 -138
+ -503 176 -226 -138
+ -503 197 -503 -503
+ -503 197 -503 -503
+ 182 -215 -215 -503
+ -486 174 -169 -169
diff --git a/profiles/plants/MA1051.1.pwm b/profiles/plants/MA1051.1.pwm
index 0087ebc..f558b0e 100644
--- a/profiles/plants/MA1051.1.pwm
+++ b/profiles/plants/MA1051.1.pwm
@@ -1,8 +1,8 @@
- -107 -11 112 -123
- -76 161 -292 -211
- -516 -538 197 -564
- -538 158 -4 -597
- -397 197 -597 -638
- -538 -638 196 -406
- -120 164 -327 -156
- 4 141 -538 -178
+ -102 -11 109 -117
+ -73 158 -266 -197
+ -411 -421 194 -432
+ -421 155 -3 -444
+ -343 193 -444 -456
+ -421 -456 193 -349
+ -114 161 -293 -147
+ 4 138 -421 -167
diff --git a/profiles/plants/MA1053.1.pwm b/profiles/plants/MA1053.1.pwm
index d94eac8..7427d94 100644
--- a/profiles/plants/MA1053.1.pwm
+++ b/profiles/plants/MA1053.1.pwm
@@ -1,8 +1,8 @@
- -272 20 140 -426
- -232 190 -497 -538
- -638 -564 198 -638
- -638 173 -57 -697
- -427 197 -697 -638
- -597 -427 197 -564
- -272 179 -426 -154
- -27 163 -697 -380
+ -249 19 138 -362
+ -216 187 -402 -421
+ -456 -432 195 -456
+ -456 169 -55 -470
+ -362 194 -470 -456
+ -444 -362 193 -432
+ -249 176 -362 -146
+ -26 160 -470 -332
diff --git a/profiles/plants/MA1054.1.pwm b/profiles/plants/MA1054.1.pwm
index e69de29..27f7d48 100644
--- a/profiles/plants/MA1054.1.pwm
+++ b/profiles/plants/MA1054.1.pwm
@@ -0,0 +1,10 @@
+ -137 15 -56 87
+ -288 -157 95 67
+ -255 -444 178 -150
+ -337 -411 190 -326
+ -243 -96 169 -393
+ 157 -21 -411 -311
+ -470 189 -223 -470
+ -485 196 -470 -485
+ 175 -470 -88 -444
+ -321 183 -421 -178
diff --git a/profiles/plants/MA1055.1.pwm b/profiles/plants/MA1055.1.pwm
index 3705f8c..1dc6ac3 100644
--- a/profiles/plants/MA1055.1.pwm
+++ b/profiles/plants/MA1055.1.pwm
@@ -1,8 +1,8 @@
- -301 182 -497 -163
- -464 189 -427 -224
- -416 -697 197 -697
- -697 -497 -538 198
- 198 -538 -497 -697
- -697 197 -697 -416
- -224 -427 189 -464
- -163 -497 182 -301
+ -273 178 -402 -154
+ -385 185 -362 -208
+ -356 -470 194 -470
+ -470 -402 -421 194
+ 194 -421 -402 -470
+ -470 194 -470 -356
+ -208 -362 185 -385
+ -154 -402 178 -273
diff --git a/profiles/plants/MA1056.1.pwm b/profiles/plants/MA1056.1.pwm
index e69de29..d8c8d75 100644
--- a/profiles/plants/MA1056.1.pwm
+++ b/profiles/plants/MA1056.1.pwm
@@ -0,0 +1,12 @@
+ -12 -12 -12 32
+ 32 -12 -12 -12
+ -52 34 -52 43
+ -74 129 -186 -57
+ -503 -503 197 -503
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -316 -316 187 -316
+ -316 -316 160 -42
+ 117 -158 -158 11
+ -40 11 -40 48
diff --git a/profiles/plants/MA1057.1.pwm b/profiles/plants/MA1057.1.pwm
index e69de29..f2a7d74 100644
--- a/profiles/plants/MA1057.1.pwm
+++ b/profiles/plants/MA1057.1.pwm
@@ -0,0 +1,8 @@
+ 12 -44 -24 41
+ -77 -218 158 -223
+ -402 -249 -370 188
+ 189 -226 -432 -470
+ -432 196 -503 -486
+ -162 -159 154 -123
+ 0 -208 108 -63
+ 15 6 -70 30
diff --git a/profiles/plants/MA1058.1.pwm b/profiles/plants/MA1058.1.pwm
index e69de29..0da90ec 100644
--- a/profiles/plants/MA1058.1.pwm
+++ b/profiles/plants/MA1058.1.pwm
@@ -0,0 +1,9 @@
+ -10 38 -32 -5
+ -26 -206 132 -123
+ -231 -150 -293 173
+ 187 -213 -377 -456
+ -231 181 -432 -199
+ -33 -118 113 -80
+ 8 -120 71 -19
+ 1 1 -28 21
+ 10 5 -34 15
diff --git a/profiles/plants/MA1059.1.pwm b/profiles/plants/MA1059.1.pwm
index 8fd69b9..036487a 100644
--- a/profiles/plants/MA1059.1.pwm
+++ b/profiles/plants/MA1059.1.pwm
@@ -1,9 +1,9 @@
- -44 -54 21 50
- -10 -36 -13 45
- -82 -224 156 -192
- -351 -276 -406 189
- 189 -190 -538 -10000
- -464 196 -10000 -406
- -157 -206 164 -166
- -49 -208 120 -41
- 0 26 -69 24
+ -42 -52 21 49
+ -9 -35 -12 44
+ -78 -208 153 -180
+ -311 -252 -349 186
+ 186 -178 -421 -503
+ -385 193 -503 -349
+ -149 -193 161 -157
+ -47 -195 118 -40
+ 0 25 -66 24
diff --git a/profiles/plants/MA1059.2.pwm b/profiles/plants/MA1059.2.pwm
index e69de29..694ed98 100644
--- a/profiles/plants/MA1059.2.pwm
+++ b/profiles/plants/MA1059.2.pwm
@@ -0,0 +1,12 @@
+ 68 -46 -43 -11
+ 84 -98 -27 -20
+ -53 0 -71 76
+ -232 3 -189 133
+ -467 -467 196 -467
+ -467 -467 -467 196
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 196 -467
+ 183 -346 -445 -166
+ 18 77 -263 0
diff --git a/profiles/plants/MA1060.1.pwm b/profiles/plants/MA1060.1.pwm
index 6508a83..534e9f4 100644
--- a/profiles/plants/MA1060.1.pwm
+++ b/profiles/plants/MA1060.1.pwm
@@ -1,8 +1,8 @@
- -229 164 -102 -235
- -257 -327 187 -364
- -254 -438 -149 178
- 182 -201 -351 -301
- -268 188 -416 -332
- -194 -124 167 -301
- 19 -27 54 -82
- -108 130 -261 -14
+ -213 161 -98 -218
+ -237 -293 183 -321
+ -234 -370 -141 174
+ 179 -188 -311 -273
+ -246 185 -356 -297
+ -182 -118 164 -273
+ 19 -26 53 -78
+ -103 127 -240 -13
diff --git a/profiles/plants/MA1061.1.pwm b/profiles/plants/MA1061.1.pwm
index 297c10c..e9b3d83 100644
--- a/profiles/plants/MA1061.1.pwm
+++ b/profiles/plants/MA1061.1.pwm
@@ -1,9 +1,9 @@
- -31 77 -27 -62
- -241 119 3 -95
- -10000 194 -10000 -268
- 182 -10000 -134 -397
- -479 187 -10000 -164
- -151 -10000 187 -10000
- -10000 -438 -10000 198
- -157 -112 154 -172
- -18 27 -8 -5
+ -30 75 -26 -59
+ -223 116 3 -91
+ -503 191 -503 -246
+ 179 -503 -127 -343
+ -393 183 -503 -155
+ -143 -503 183 -503
+ -503 -370 -503 195
+ -149 -107 151 -162
+ -17 26 -8 -5
diff --git a/profiles/plants/MA1062.1.pwm b/profiles/plants/MA1062.1.pwm
index e69de29..01829a0 100644
--- a/profiles/plants/MA1062.1.pwm
+++ b/profiles/plants/MA1062.1.pwm
@@ -0,0 +1,8 @@
+ -421 -470 193 -356
+ -432 -456 195 -470
+ -192 -82 160 -276
+ -402 189 -421 -255
+ -470 195 -486 -411
+ -456 195 -470 -393
+ 189 -370 -255 -456
+ -421 191 -321 -370
diff --git a/profiles/plants/MA1062.2.pwm b/profiles/plants/MA1062.2.pwm
index e69de29..f8ea374 100644
--- a/profiles/plants/MA1062.2.pwm
+++ b/profiles/plants/MA1062.2.pwm
@@ -0,0 +1,19 @@
+ 42 -53 -26 18
+ 29 -18 -36 16
+ 80 -67 -66 -1
+ 45 -53 -37 22
+ -101 -209 164 -273
+ -356 -215 -364 185
+ -135 -426 180 -364
+ -454 -471 196 -471
+ -278 -439 189 -348
+ 60 -60 -59 21
+ -356 189 -426 -265
+ -439 195 -471 -454
+ -382 179 -413 -126
+ 185 -402 -195 -356
+ -265 163 -201 -100
+ 24 -38 -57 46
+ 3 -61 -80 80
+ 24 -39 -27 29
+ 19 -23 -54 40
diff --git a/profiles/plants/MA1063.1.pwm b/profiles/plants/MA1063.1.pwm
index c2252f2..79f3467 100644
--- a/profiles/plants/MA1063.1.pwm
+++ b/profiles/plants/MA1063.1.pwm
@@ -1,10 +1,10 @@
- -76 -18 -47 85
- -87 -73 102 -28
- -297 -516 176 -112
- -116 -213 164 -224
- -40 18 71 -108
- -120 156 -351 -94
- -427 194 -797 -332
- -10000 200 -10000 -797
- 175 -311 -97 -697
- -10000 170 -124 -162
+ -73 -17 -45 83
+ -83 -70 99 -27
+ -269 -411 173 -107
+ -110 -199 161 -208
+ -38 17 69 -103
+ -114 153 -311 -90
+ -362 191 -486 -297
+ -503 197 -503 -486
+ 172 -280 -92 -470
+ -503 167 -118 -154
diff --git a/profiles/plants/MA1064.1.pwm b/profiles/plants/MA1064.1.pwm
index a7563d9..d61d324 100644
--- a/profiles/plants/MA1064.1.pwm
+++ b/profiles/plants/MA1064.1.pwm
@@ -1,10 +1,10 @@
- -20 -57 78 -43
- -151 -37 -70 117
- -284 -10000 176 -105
- -10000 -10000 197 -372
- -188 -168 106 41
- 41 106 -168 -188
- -372 197 -10000 -10000
- -105 176 -10000 -284
- 117 -70 -37 -151
- -43 78 -57 -20
+ -20 -55 76 -41
+ -143 -35 -67 115
+ -259 -503 172 -100
+ -503 -503 194 -326
+ -176 -159 104 40
+ 40 104 -159 -176
+ -326 194 -503 -503
+ -100 172 -503 -259
+ 115 -67 -35 -143
+ -41 76 -55 -20
diff --git a/profiles/plants/MA1065.1.pwm b/profiles/plants/MA1065.1.pwm
index e69de29..3f55857 100644
--- a/profiles/plants/MA1065.1.pwm
+++ b/profiles/plants/MA1065.1.pwm
@@ -0,0 +1,10 @@
+ -226 -276 165 -100
+ -112 -306 164 -171
+ -138 50 73 -86
+ -204 178 -486 -180
+ -470 196 -486 -503
+ -411 190 -456 -262
+ 169 -191 -160 -249
+ -297 169 -149 -179
+ 26 42 -65 -28
+ 19 -14 -4 -4
diff --git a/profiles/plants/MA1065.2.pwm b/profiles/plants/MA1065.2.pwm
index e69de29..c7e5f58 100644
--- a/profiles/plants/MA1065.2.pwm
+++ b/profiles/plants/MA1065.2.pwm
@@ -0,0 +1,19 @@
+ 42 -49 -17 8
+ 31 -9 -36 5
+ 73 -53 -61 0
+ 44 -45 -28 12
+ -114 -207 163 -225
+ -322 -204 -366 184
+ -156 -408 182 -390
+ -441 -483 195 -454
+ -248 -454 188 -340
+ 63 -59 -59 17
+ -359 188 -441 -245
+ -441 195 -501 -441
+ -390 182 -441 -150
+ 184 -399 -186 -352
+ -255 163 -188 -114
+ 55 -41 -48 9
+ 16 -71 -60 69
+ 19 -41 -17 28
+ 16 -12 -59 38
diff --git a/profiles/plants/MA1066.1.pwm b/profiles/plants/MA1066.1.pwm
index e69de29..824daeb 100644
--- a/profiles/plants/MA1066.1.pwm
+++ b/profiles/plants/MA1066.1.pwm
@@ -0,0 +1,8 @@
+ -432 -456 192 -293
+ -385 -432 194 -432
+ -252 -143 171 -240
+ -411 193 -402 -362
+ -444 194 -402 -444
+ -370 194 -456 -421
+ 190 -385 -273 -432
+ -385 191 -377 -316
diff --git a/profiles/plants/MA1067.1.pwm b/profiles/plants/MA1067.1.pwm
index 5002c09..7d72849 100644
--- a/profiles/plants/MA1067.1.pwm
+++ b/profiles/plants/MA1067.1.pwm
@@ -1,8 +1,8 @@
- -696 -696 199 -696
- -697 -697 199 -697
- -697 -697 199 -697
- 199 -697 -697 -697
- -697 199 -697 -697
- -697 199 -697 -697
- 199 -697 -697 -697
- -696 158 -696 0
+ -470 -470 196 -470
+ -470 -470 196 -470
+ -470 -470 196 -470
+ 196 -470 -470 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ 196 -470 -470 -470
+ -470 155 -470 0
diff --git a/profiles/plants/MA1068.1.pwm b/profiles/plants/MA1068.1.pwm
index e69de29..18fef6d 100644
--- a/profiles/plants/MA1068.1.pwm
+++ b/profiles/plants/MA1068.1.pwm
@@ -0,0 +1,8 @@
+ 191 -485 -301 -362
+ -486 194 -456 -343
+ -302 -470 193 -486
+ -421 -432 -486 195
+ -289 192 -470 -486
+ 195 -470 -411 -456
+ -470 -113 59 100
+ -159 146 -61 -197
diff --git a/profiles/plants/MA1069.1.pwm b/profiles/plants/MA1069.1.pwm
index e69de29..5e7d3a0 100644
--- a/profiles/plants/MA1069.1.pwm
+++ b/profiles/plants/MA1069.1.pwm
@@ -0,0 +1,10 @@
+ -24 -24 39 0
+ 76 -24 -25 -69
+ -503 -503 -503 197
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ 14 123 -149 -243
+ 138 -128 -82 -128
diff --git a/profiles/plants/MA1070.1.pwm b/profiles/plants/MA1070.1.pwm
index a45cfe2..d6af989 100644
--- a/profiles/plants/MA1070.1.pwm
+++ b/profiles/plants/MA1070.1.pwm
@@ -1,10 +1,10 @@
- -41 -27 45 7
- 51 -63 95 -10000
- -464 -564 -564 197
- -170 -597 179 -227
- 188 -427 -797 -199
- -564 178 -364 -112
- -272 -697 169 -72
- -232 -63 -244 157
- 6 120 -137 -188
- 126 -199 -106 -20
+ -40 -26 44 7
+ 49 -61 93 -503
+ -385 -432 -432 194
+ -160 -444 176 -211
+ 185 -362 -486 -186
+ -432 175 -321 -107
+ -249 -470 166 -69
+ -216 -60 -226 154
+ 6 117 -130 -176
+ 123 -186 -101 -19
diff --git a/profiles/plants/MA1071.1.pwm b/profiles/plants/MA1071.1.pwm
index da24d7c..fc689d9 100644
--- a/profiles/plants/MA1071.1.pwm
+++ b/profiles/plants/MA1071.1.pwm
@@ -1,7 +1,7 @@
- -2 -2 7 -4
- 39 -23 -13 -10
- 66 -97 -78 40
- 175 -204 -388 -163
- 177 -166 -10000 -184
- 129 39 -416 -241
- -192 -227 162 -111
+ -2 -2 7 -3
+ 38 -22 -13 -10
+ 65 -93 -75 39
+ 172 -191 -337 -154
+ 174 -157 -503 -173
+ 126 38 -356 -223
+ -180 -211 159 -106
diff --git a/profiles/plants/MA1074.1.pwm b/profiles/plants/MA1074.1.pwm
index e69de29..b0a501f 100644
--- a/profiles/plants/MA1074.1.pwm
+++ b/profiles/plants/MA1074.1.pwm
@@ -0,0 +1,8 @@
+ -22 98 -169 -22
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ 9 107 -179 -86
diff --git a/profiles/plants/MA1075.1.pwm b/profiles/plants/MA1075.1.pwm
index e69de29..48c1d3a 100644
--- a/profiles/plants/MA1075.1.pwm
+++ b/profiles/plants/MA1075.1.pwm
@@ -0,0 +1,8 @@
+ -52 147 -162 -226
+ -173 -266 168 -159
+ -321 -188 -432 184
+ -385 -349 -280 189
+ -402 -421 190 -266
+ 192 -421 -385 -356
+ -280 189 -432 -343
+ -297 150 -124 -70
diff --git a/profiles/plants/MA1076.1.pwm b/profiles/plants/MA1076.1.pwm
index e69de29..d58a03e 100644
--- a/profiles/plants/MA1076.1.pwm
+++ b/profiles/plants/MA1076.1.pwm
@@ -0,0 +1,10 @@
+ 30 -33 -1 -2
+ 54 -131 87 -171
+ -444 -402 189 -246
+ -393 -456 -444 194
+ -277 192 -470 -456
+ 166 -120 -293 -186
+ 155 -259 -67 -182
+ 2 105 -141 -87
+ -39 -7 65 -47
+ -22 22 13 -18
diff --git a/profiles/plants/MA1076.2.pwm b/profiles/plants/MA1076.2.pwm
index e69de29..8df8208 100644
--- a/profiles/plants/MA1076.2.pwm
+++ b/profiles/plants/MA1076.2.pwm
@@ -0,0 +1,16 @@
+ 37 -60 -19 23
+ 34 -28 -63 34
+ 45 -30 -60 22
+ 64 -67 -79 30
+ 73 -123 -89 46
+ 89 -225 72 -178
+ -374 -433 193 -425
+ -488 -425 -476 195
+ -416 195 -488 -433
+ 195 -425 -464 -433
+ 194 -476 -401 -425
+ -211 178 -425 -186
+ -155 -172 150 -93
+ 9 -32 12 7
+ 0 -2 -69 48
+ 17 -74 -6 40
diff --git a/profiles/plants/MA1077.1.pwm b/profiles/plants/MA1077.1.pwm
index e69de29..ec6cb15 100644
--- a/profiles/plants/MA1077.1.pwm
+++ b/profiles/plants/MA1077.1.pwm
@@ -0,0 +1,10 @@
+ 21 7 -28 -3
+ 4 15 -69 31
+ 63 -343 120 -402
+ -486 -486 195 -377
+ -503 -503 -470 196
+ -486 196 -503 -470
+ 194 -402 -470 -432
+ 191 -385 -377 -343
+ -41 56 20 -68
+ -23 2 66 -85
diff --git a/profiles/plants/MA1078.1.pwm b/profiles/plants/MA1078.1.pwm
index 7854922..496dc37 100644
--- a/profiles/plants/MA1078.1.pwm
+++ b/profiles/plants/MA1078.1.pwm
@@ -1,8 +1,8 @@
- -112 65 -2 -2
- 15 -451 151 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 194 -372 -372 -10000
- 169 -10000 -62 -301
- 12 108 -180 -95
+ -107 64 -2 -2
+ 14 -377 148 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 191 -326 -326 -503
+ 166 -503 -59 -273
+ 11 106 -169 -91
diff --git a/profiles/plants/MA1079.1.pwm b/profiles/plants/MA1079.1.pwm
index e69de29..439190a 100644
--- a/profiles/plants/MA1079.1.pwm
+++ b/profiles/plants/MA1079.1.pwm
@@ -0,0 +1,10 @@
+ 16 -16 -1 -2
+ 35 -35 -15 5
+ 67 -144 69 -122
+ -213 -503 183 -246
+ -138 -444 -470 182
+ -503 197 -503 -486
+ 177 -180 -316 -231
+ 161 -385 -60 -223
+ -26 125 -182 -101
+ -63 -25 76 -29
diff --git a/profiles/plants/MA1080.1.pwm b/profiles/plants/MA1080.1.pwm
index bbbb169..1bad955 100644
--- a/profiles/plants/MA1080.1.pwm
+++ b/profiles/plants/MA1080.1.pwm
@@ -1,8 +1,8 @@
- 148 -797 26 -797
- -797 -797 200 -797
- -797 -797 -797 200
- -797 200 -797 -797
- 200 -797 -797 -797
- 200 -797 -797 -797
- -58 173 -797 -797
- -80 -80 151 -796
+ 145 -486 26 -486
+ -486 -486 196 -486
+ -486 -486 -486 196
+ -486 196 -486 -486
+ 196 -486 -486 -486
+ 196 -486 -486 -486
+ -56 170 -486 -486
+ -77 -77 148 -485
diff --git a/profiles/plants/MA1081.1.pwm b/profiles/plants/MA1081.1.pwm
index e69de29..72901ad 100644
--- a/profiles/plants/MA1081.1.pwm
+++ b/profiles/plants/MA1081.1.pwm
@@ -0,0 +1,8 @@
+ -195 98 -103 36
+ 8 -503 153 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 182 -503 -197 -246
+ -43 131 -157 -119
diff --git a/profiles/plants/MA1083.1.pwm b/profiles/plants/MA1083.1.pwm
index 3a4da9c..9c08ecc 100644
--- a/profiles/plants/MA1083.1.pwm
+++ b/profiles/plants/MA1083.1.pwm
@@ -1,10 +1,10 @@
- 66 -92 80 -276
- -796 -538 199 -638
- -797 -697 -797 199
- -344 197 -10000 -10000
- 185 -218 -416 -321
- 178 -365 -168 -257
- -201 165 -250 -118
- -94 -14 94 -63
- -29 39 8 -30
- -22 -18 1 33
+ 64 -88 79 -252
+ -485 -421 195 -456
+ -486 -470 -486 196
+ -306 193 -503 -503
+ 182 -203 -356 -288
+ 175 -321 -159 -237
+ -188 162 -231 -113
+ -90 -13 92 -60
+ -28 38 8 -29
+ -22 -17 1 32
diff --git a/profiles/plants/MA1084.1.pwm b/profiles/plants/MA1084.1.pwm
index e69de29..f750d27 100644
--- a/profiles/plants/MA1084.1.pwm
+++ b/profiles/plants/MA1084.1.pwm
@@ -0,0 +1,8 @@
+ -69 140 -167 -121
+ -175 -285 173 -204
+ -293 -277 -316 185
+ -402 -306 -246 186
+ -393 -343 191 -356
+ 190 -337 -385 -332
+ -343 189 -362 -321
+ -349 141 -337 20
diff --git a/profiles/plants/MA1085.1.pwm b/profiles/plants/MA1085.1.pwm
index e69de29..0baec92 100644
--- a/profiles/plants/MA1085.1.pwm
+++ b/profiles/plants/MA1085.1.pwm
@@ -0,0 +1,8 @@
+ -2 9 -28 17
+ 58 -93 79 -203
+ -486 -486 183 -146
+ -269 -503 -503 192
+ -306 193 -503 -486
+ 140 -72 -218 -90
+ 121 -119 -98 -44
+ -2 11 11 -22
diff --git a/profiles/plants/MA1085.2.pwm b/profiles/plants/MA1085.2.pwm
index e69de29..b324258 100644
--- a/profiles/plants/MA1085.2.pwm
+++ b/profiles/plants/MA1085.2.pwm
@@ -0,0 +1,10 @@
+ 57 -24 -72 8
+ 83 -72 -58 -8
+ 193 -403 -403 -403
+ -403 -403 193 -403
+ -403 -403 -403 193
+ -403 193 -403 -403
+ 191 -403 -403 -299
+ 192 -403 -403 -342
+ 48 -11 -32 -18
+ 36 -27 -21 3
diff --git a/profiles/plants/MA1086.1.pwm b/profiles/plants/MA1086.1.pwm
index e69de29..e93d59b 100644
--- a/profiles/plants/MA1086.1.pwm
+++ b/profiles/plants/MA1086.1.pwm
@@ -0,0 +1,10 @@
+ 56 -22 -55 -3
+ 100 -137 44 -197
+ -208 -332 178 -211
+ -165 -356 -444 183
+ -144 180 -377 -377
+ 164 -188 -190 -157
+ 158 -269 -89 -171
+ 3 86 -115 -49
+ 40 -34 30 -60
+ -11 31 -19 -6
diff --git a/profiles/plants/MA1087.1.pwm b/profiles/plants/MA1087.1.pwm
index e69de29..bc585fa 100644
--- a/profiles/plants/MA1087.1.pwm
+++ b/profiles/plants/MA1087.1.pwm
@@ -0,0 +1,8 @@
+ -193 178 -297 -243
+ -349 -444 180 -141
+ -421 -332 -470 193
+ -444 -456 -377 194
+ -444 -456 195 -411
+ 195 -432 -470 -444
+ -421 195 -456 -432
+ -402 106 -377 83
diff --git a/profiles/plants/MA1088.1.pwm b/profiles/plants/MA1088.1.pwm
index 36ac5d1..86c2d3a 100644
--- a/profiles/plants/MA1088.1.pwm
+++ b/profiles/plants/MA1088.1.pwm
@@ -1,10 +1,10 @@
- 7 -8 9 -9
- 7 -12 1 3
- 38 -70 71 -117
- -357 -10000 180 -118
- -357 -10000 -10000 197
- -199 190 -797 -538
- 140 -79 -192 -98
- 110 -172 -13 -65
- 11 63 -69 -40
- -10 -11 32 -18
+ 7 -7 8 -9
+ 7 -11 1 3
+ 37 -67 69 -112
+ -316 -503 177 -113
+ -316 -503 -503 194
+ -186 186 -486 -421
+ 138 -75 -180 -93
+ 108 -162 -13 -63
+ 10 61 -66 -38
+ -9 -10 32 -17
diff --git a/profiles/plants/MA1089.1.pwm b/profiles/plants/MA1089.1.pwm
index 6e418e5..3b78423 100644
--- a/profiles/plants/MA1089.1.pwm
+++ b/profiles/plants/MA1089.1.pwm
@@ -1,10 +1,10 @@
- 67 -50 -31 -16
- 71 -53 -63 5
- 100 -172 32 -113
- -272 -388 180 -174
- -306 -10000 -10000 196
- -227 187 -516 -321
- 181 -238 -344 -232
- 171 -416 -115 -216
- 6 102 -152 -79
- -33 -27 63 -27
+ 65 -48 -30 -16
+ 69 -51 -61 4
+ 97 -162 31 -108
+ -249 -337 177 -164
+ -276 -503 -503 192
+ -211 184 -411 -289
+ 178 -221 -306 -216
+ 168 -356 -109 -201
+ 5 100 -144 -75
+ -32 -26 61 -26
diff --git a/profiles/plants/MA1090.1.pwm b/profiles/plants/MA1090.1.pwm
index e69de29..5ca766f 100644
--- a/profiles/plants/MA1090.1.pwm
+++ b/profiles/plants/MA1090.1.pwm
@@ -0,0 +1,11 @@
+ 11 15 10 -43
+ -118 69 -118 59
+ -84 -311 168 -311
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ 4 126 -178 -178
+ -76 -2 87 -76
+ -13 -13 -13 33
diff --git a/profiles/plants/MA1091.1.pwm b/profiles/plants/MA1091.1.pwm
index e69de29..1364e21 100644
--- a/profiles/plants/MA1091.1.pwm
+++ b/profiles/plants/MA1091.1.pwm
@@ -0,0 +1,8 @@
+ -95 -95 -486 155
+ 29 -486 144 -486
+ -486 -486 196 -486
+ -486 -486 -486 196
+ -486 196 -486 -486
+ 196 -486 -486 -486
+ 196 -486 -486 -486
+ 12 151 -486 -486
diff --git a/profiles/plants/MA1092.1.pwm b/profiles/plants/MA1092.1.pwm
index e69de29..3ad1ee7 100644
--- a/profiles/plants/MA1092.1.pwm
+++ b/profiles/plants/MA1092.1.pwm
@@ -0,0 +1,8 @@
+ -31 55 -77 19
+ -65 -503 172 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 194 -503 -503 -326
+ -92 101 -11 -92
diff --git a/profiles/plants/MA1093.1.pwm b/profiles/plants/MA1093.1.pwm
index e69de29..6107b60 100644
--- a/profiles/plants/MA1093.1.pwm
+++ b/profiles/plants/MA1093.1.pwm
@@ -0,0 +1,8 @@
+ 26 15 -80 15
+ 98 -337 93 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ 5 128 -503 -101
diff --git a/profiles/plants/MA1094.1.pwm b/profiles/plants/MA1094.1.pwm
index c93ac6b..2789727 100644
--- a/profiles/plants/MA1094.1.pwm
+++ b/profiles/plants/MA1094.1.pwm
@@ -1,9 +1,9 @@
- 26 -30 -16 13
- 59 -101 69 -137
- -364 -797 182 -138
- -451 -10000 -797 198
- -254 192 -10000 -480
- 169 -144 -316 -172
- 153 -297 -62 -159
- 2 90 -106 -65
- -21 -20 58 -37
+ 25 -29 -15 13
+ 57 -97 67 -130
+ -321 -486 179 -131
+ -377 -503 -486 195
+ -234 189 -503 -393
+ 165 -137 -284 -162
+ 150 -269 -59 -150
+ 2 88 -101 -62
+ -21 -19 56 -36
diff --git a/profiles/plants/MA1095.1.pwm b/profiles/plants/MA1095.1.pwm
index 3c11d27..9489e32 100644
--- a/profiles/plants/MA1095.1.pwm
+++ b/profiles/plants/MA1095.1.pwm
@@ -1,8 +1,8 @@
- -696 -696 199 -696
- 0 -696 158 -696
- -697 99 99 -697
- -696 199 -696 -696
- -696 199 -696 -696
- -696 199 -696 -696
- 199 -696 -696 -696
- -638 199 -638 -638
+ -470 -470 196 -470
+ 0 -470 155 -470
+ -470 97 97 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ 196 -470 -470 -470
+ -456 195 -456 -456
diff --git a/profiles/plants/MA1096.1.pwm b/profiles/plants/MA1096.1.pwm
index e69de29..07cd83d 100644
--- a/profiles/plants/MA1096.1.pwm
+++ b/profiles/plants/MA1096.1.pwm
@@ -0,0 +1,8 @@
+ -456 -456 195 -456
+ -470 -470 196 -470
+ -470 -470 196 -470
+ 196 -470 -470 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ 196 -470 -470 -470
+ -456 195 -456 -456
diff --git a/profiles/plants/MA1097.1.pwm b/profiles/plants/MA1097.1.pwm
index e69de29..40dff6f 100644
--- a/profiles/plants/MA1097.1.pwm
+++ b/profiles/plants/MA1097.1.pwm
@@ -0,0 +1,8 @@
+ -456 -456 195 -456
+ -456 -456 195 -456
+ -456 40 138 -456
+ 40 138 -456 -456
+ -456 195 -456 -456
+ -456 195 -456 -456
+ 195 -456 -456 -456
+ -432 194 -432 -432
diff --git a/profiles/plants/MA1098.1.pwm b/profiles/plants/MA1098.1.pwm
index e69de29..9489e32 100644
--- a/profiles/plants/MA1098.1.pwm
+++ b/profiles/plants/MA1098.1.pwm
@@ -0,0 +1,8 @@
+ -470 -470 196 -470
+ 0 -470 155 -470
+ -470 97 97 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ -470 196 -470 -470
+ 196 -470 -470 -470
+ -456 195 -456 -456
diff --git a/profiles/plants/MA1156.1.pwm b/profiles/plants/MA1156.1.pwm
index e69de29..0d9071b 100644
--- a/profiles/plants/MA1156.1.pwm
+++ b/profiles/plants/MA1156.1.pwm
@@ -0,0 +1,20 @@
+ 12 -44 -109 77
+ 11 -56 -99 80
+ 12 -53 -87 75
+ 23 -117 -94 89
+ -4 -103 -95 101
+ -80 -210 -206 156
+ -368 -237 -302 185
+ -467 -380 -394 194
+ -467 -327 -467 193
+ -467 -467 196 -467
+ -467 -467 -302 193
+ -318 188 -467 -252
+ -206 -119 112 20
+ -336 -257 -169 178
+ -130 -56 -195 141
+ -74 -467 -467 173
+ -15 -223 -346 148
+ -101 59 36 -49
+ -155 -14 -178 130
+ -6 -134 47 33
diff --git a/profiles/plants/MA1157.1.pwm b/profiles/plants/MA1157.1.pwm
index 91f0d4b..756656a 100644
--- a/profiles/plants/MA1157.1.pwm
+++ b/profiles/plants/MA1157.1.pwm
@@ -1,20 +1,20 @@
- -4 -47 -71 76
- -2 -45 -66 72
- 8 -39 -78 67
- 25 -89 -76 75
- -17 -91 -75 98
- -103 -160 -176 153
- -415 -211 -291 184
- -10000 -483 -415 197
- -10000 -415 -10000 198
- -10000 -10000 200 -10000
- -10000 -10000 -483 199
- -10000 200 -10000 -10000
- -298 -148 142 -25
- -557 -291 -211 185
- -118 -68 -163 138
- -95 -10000 -557 179
- 5 -180 -325 136
- -135 36 50 -14
- -257 5 -137 127
- -12 -140 67 15
+ -3 -45 -68 73
+ -1 -43 -63 70
+ 8 -37 -74 65
+ 25 -84 -72 72
+ -16 -86 -71 96
+ -97 -149 -163 149
+ -341 -193 -257 180
+ -464 -376 -341 192
+ -464 -341 -464 194
+ -464 -464 196 -464
+ -464 -464 -376 194
+ -464 196 -464 -464
+ -263 -138 138 -24
+ -405 -257 -193 181
+ -111 -64 -151 135
+ -89 -464 -405 175
+ 5 -166 -282 133
+ -126 35 49 -14
+ -231 5 -128 123
+ -12 -131 65 14
diff --git a/profiles/plants/MA1158.1.pwm b/profiles/plants/MA1158.1.pwm
index e69de29..bbb9ff3 100644
--- a/profiles/plants/MA1158.1.pwm
+++ b/profiles/plants/MA1158.1.pwm
@@ -0,0 +1,20 @@
+ 32 44 -146 5
+ 126 -146 -9 -168
+ -5 29 31 -80
+ 140 -287 -146 -22
+ 174 -467 -426 -84
+ 147 -227 -97 -95
+ 185 -251 -257 -445
+ 4 132 -141 -326
+ -467 -467 196 -467
+ 195 -467 -445 -467
+ -467 196 -467 -467
+ 192 -467 -281 -467
+ 194 -409 -394 -467
+ 189 -336 -281 -409
+ 166 -218 -262 -116
+ 107 -84 -132 -9
+ 91 -90 -106 14
+ 83 -99 -39 -7
+ 77 -84 -63 13
+ 80 -106 -49 9
diff --git a/profiles/plants/MA1159.1.pwm b/profiles/plants/MA1159.1.pwm
index e69de29..553ab5e 100644
--- a/profiles/plants/MA1159.1.pwm
+++ b/profiles/plants/MA1159.1.pwm
@@ -0,0 +1,15 @@
+ 94 -24 -176 -9
+ 116 -131 9 -176
+ 115 -153 -35 -61
+ 149 -467 -164 -27
+ 102 -282 -224 70
+ 166 -247 -67 -467
+ 179 -395 -247 -170
+ -200 -467 187 -445
+ 194 -369 -467 -410
+ -467 195 -445 -467
+ 194 -445 -357 -467
+ 195 -445 -467 -445
+ 186 -328 -319 -264
+ 148 -196 -253 -34
+ 90 -81 -167 32
diff --git a/profiles/plants/MA1160.1.pwm b/profiles/plants/MA1160.1.pwm
index e69de29..9dbf5a7 100644
--- a/profiles/plants/MA1160.1.pwm
+++ b/profiles/plants/MA1160.1.pwm
@@ -0,0 +1,20 @@
+ 1 -69 -84 86
+ 1 -84 -77 88
+ -1 -46 -84 78
+ 24 -106 -101 88
+ -6 -126 -101 109
+ -116 -177 -211 160
+ -405 -270 -286 187
+ -405 -345 -405 192
+ -405 -270 -372 189
+ -405 -372 192 -372
+ -405 -345 -177 183
+ -345 190 -405 -322
+ -193 -137 129 -15
+ -345 -232 -185 178
+ -256 -84 -193 159
+ -73 -405 -270 167
+ 10 -286 -372 144
+ -137 53 80 -121
+ -303 12 -303 142
+ -62 -177 91 24
diff --git a/profiles/plants/MA1161.1.pwm b/profiles/plants/MA1161.1.pwm
index e69de29..5257a7d 100644
--- a/profiles/plants/MA1161.1.pwm
+++ b/profiles/plants/MA1161.1.pwm
@@ -0,0 +1,15 @@
+ 100 -188 -113 35
+ 53 -242 -113 94
+ 10 -222 -254 135
+ -27 -280 -242 151
+ 36 -74 -188 88
+ 123 -122 -64 -77
+ 173 -411 -84 -379
+ 175 -379 -180 -188
+ 182 -411 -411 -154
+ -411 -254 -331 188
+ -411 -411 -411 194
+ -411 6 -411 151
+ 164 -411 -51 -295
+ 194 -411 -411 -411
+ 194 -411 -411 -411
diff --git a/profiles/plants/MA1162.1.pwm b/profiles/plants/MA1162.1.pwm
index e69de29..41b8791 100644
--- a/profiles/plants/MA1162.1.pwm
+++ b/profiles/plants/MA1162.1.pwm
@@ -0,0 +1,15 @@
+ 76 -150 -122 61
+ -14 -242 -219 143
+ -124 -173 -445 169
+ -137 20 -173 111
+ 94 -17 -46 -107
+ 186 -369 -228 -346
+ 185 -295 -445 -211
+ 174 -467 -295 -102
+ -327 -445 -357 191
+ -467 -467 -467 196
+ -467 106 -467 88
+ 150 -445 12 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 24 -65 -327 106
diff --git a/profiles/plants/MA1163.1.pwm b/profiles/plants/MA1163.1.pwm
index e69de29..6f3d005 100644
--- a/profiles/plants/MA1163.1.pwm
+++ b/profiles/plants/MA1163.1.pwm
@@ -0,0 +1,14 @@
+ 102 -92 -42 -54
+ 107 -203 -47 -9
+ 88 -158 -21 -6
+ 77 -82 75 -467
+ -467 -467 196 -467
+ 183 -163 -467 -357
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 138 39 -467 -467
+ -215 -467 -467 189
+ -80 -357 -310 169
+ -119 120 -242 10
+ -92 26 -59 69
+ 1 -50 -1 37
diff --git a/profiles/plants/MA1164.1.pwm b/profiles/plants/MA1164.1.pwm
index e69de29..aa44105 100644
--- a/profiles/plants/MA1164.1.pwm
+++ b/profiles/plants/MA1164.1.pwm
@@ -0,0 +1,11 @@
+ 48 16 -131 12
+ 79 -57 -41 -24
+ 99 -179 14 -68
+ 167 -264 -215 -118
+ 195 -467 -467 -410
+ -467 -467 173 -75
+ 196 -467 -467 -467
+ -426 -467 -467 195
+ -296 -445 -381 191
+ -467 196 -467 -467
+ -88 62 -104 52
diff --git a/profiles/plants/MA1165.1.pwm b/profiles/plants/MA1165.1.pwm
index e69de29..17d30d0 100644
--- a/profiles/plants/MA1165.1.pwm
+++ b/profiles/plants/MA1165.1.pwm
@@ -0,0 +1,11 @@
+ 150 -192 -128 -103
+ -89 -73 -395 148
+ -70 129 -211 -50
+ 48 -8 -58 -1
+ 105 -89 -62 -44
+ 165 -288 -192 -113
+ -467 -467 192 -295
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -223 -282 -467 185
+ -467 196 -467 -467
diff --git a/profiles/plants/MA1166.1.pwm b/profiles/plants/MA1166.1.pwm
index 82a2bbd..f0e6050 100644
--- a/profiles/plants/MA1166.1.pwm
+++ b/profiles/plants/MA1166.1.pwm
@@ -1,14 +1,14 @@
- 104 -91 -19 -91
- 135 -154 -113 -63
- 161 -313 -63 -239
- 71 -71 75 -371
- 68 -139 101 -10000
- -271 -10000 194 -10000
- 192 -10000 -471 -239
- 200 -10000 -10000 -10000
- -10000 -10000 -471 199
- 166 -25 -10000 -10000
- -10000 -10000 -10000 200
- -313 -10000 -10000 196
- -10000 171 -10000 -47
- -191 75 -91 61
+ 97 -80 -17 -80
+ 127 -132 -98 -56
+ 152 -237 -56 -193
+ 66 -63 69 -266
+ 63 -120 95 -349
+ -213 -349 185 -349
+ 182 -349 -302 -193
+ 190 -349 -349 -349
+ -349 -349 -302 189
+ 157 -23 -349 -349
+ -349 -349 -349 190
+ -237 -349 -349 186
+ -349 162 -349 -42
+ -159 69 -80 56
diff --git a/profiles/plants/MA1167.1.pwm b/profiles/plants/MA1167.1.pwm
index fc17851..aecb16c 100644
--- a/profiles/plants/MA1167.1.pwm
+++ b/profiles/plants/MA1167.1.pwm
@@ -1,11 +1,11 @@
- 107 -464 61 -161
- -10000 -10000 200 -10000
- 186 -10000 -523 -153
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 171 -45 -10000 -10000
- -723 -723 -10000 200
- -66 -110 -214 142
- -242 182 -364 -227
- -12 7 -1 5
- 46 -93 15 -1
+ 104 -369 59 -150
+ -467 -467 196 -467
+ 182 -467 -395 -143
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 167 -43 -467 -467
+ -445 -445 -467 195
+ -63 -104 -196 138
+ -219 178 -311 -207
+ -12 7 -1 5
+ 44 -88 14 -1
diff --git a/profiles/plants/MA1168.1.pwm b/profiles/plants/MA1168.1.pwm
index e69de29..8032f11 100644
--- a/profiles/plants/MA1168.1.pwm
+++ b/profiles/plants/MA1168.1.pwm
@@ -0,0 +1,14 @@
+ 76 -79 -36 -7
+ 105 -199 -51 -2
+ 45 -119 21 6
+ 78 -59 66 -467
+ -467 -467 195 -445
+ 193 -327 -467 -426
+ 195 -467 -467 -426
+ -467 -467 -467 196
+ 92 102 -467 -467
+ -303 -467 -467 193
+ -77 -258 -135 151
+ -45 67 -199 51
+ -42 -18 -53 75
+ -3 -61 -18 57
diff --git a/profiles/plants/MA1169.1.pwm b/profiles/plants/MA1169.1.pwm
index 6b4cc98..3b2f4c3 100644
--- a/profiles/plants/MA1169.1.pwm
+++ b/profiles/plants/MA1169.1.pwm
@@ -1,13 +1,13 @@
- 60 -10000 -87 95
- -40 -18 -198 107
- 56 29 -298 24
- 56 -176 -11 38
- 89 -225 -10000 95
- 82 -298 -157 82
- 173 -10000 -457 -66
- -10000 200 -10000 -10000
- -298 184 -176 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -457 198
- 175 -357 -198 -176
+ 55 -343 -76 89
+ -36 -16 -163 100
+ 52 26 -227 22
+ 52 -147 -10 35
+ 83 -182 -343 89
+ 76 -227 -133 76
+ 164 -343 -293 -59
+ -343 190 -343 -343
+ -227 174 -147 -343
+ -343 -343 190 -343
+ -343 -343 -343 190
+ -343 -343 -293 188
+ 165 -256 -163 -147
diff --git a/profiles/plants/MA1170.1.pwm b/profiles/plants/MA1170.1.pwm
index e69de29..ac3dd56 100644
--- a/profiles/plants/MA1170.1.pwm
+++ b/profiles/plants/MA1170.1.pwm
@@ -0,0 +1,17 @@
+ 92 -95 -74 -1
+ 85 -91 -95 19
+ 72 -99 -103 44
+ 59 -95 -42 29
+ -42 19 -115 73
+ 119 -272 26 -144
+ 103 -414 -27 10
+ 16 131 -149 -414
+ -286 179 -167 -358
+ -414 -414 194 -414
+ -414 -414 -414 194
+ -383 -414 -414 193
+ 194 -414 -414 -414
+ -358 190 -414 -286
+ 102 -301 16 -44
+ 79 -139 -144 61
+ 95 -149 -173 50
diff --git a/profiles/plants/MA1171.1.pwm b/profiles/plants/MA1171.1.pwm
index 95b405d..5be67f0 100644
--- a/profiles/plants/MA1171.1.pwm
+++ b/profiles/plants/MA1171.1.pwm
@@ -1,11 +1,11 @@
- -1 52 -118 19
- 36 -145 9 36
- 36 -196 -68 88
- 23 -77 -86 76
- 188 -10000 -10000 -160
- -10000 200 -10000 -10000
- -10000 180 -96 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 157 -10000 -145 -60
+ -1 48 -103 17
+ 33 -124 8 33
+ 33 -164 -61 82
+ 21 -68 -76 70
+ 178 -352 -352 -136
+ -352 190 -352 -352
+ -352 171 -85 -352
+ -352 -352 190 -352
+ -352 -352 -352 190
+ -352 -352 -352 190
+ 149 -352 -124 -53
diff --git a/profiles/plants/MA1172.1.pwm b/profiles/plants/MA1172.1.pwm
index 7aba623..954beac 100644
--- a/profiles/plants/MA1172.1.pwm
+++ b/profiles/plants/MA1172.1.pwm
@@ -1,15 +1,15 @@
- 87 -88 -54 -8
- 111 -112 -112 -12
- 126 -275 -156 16
- 114 -269 -290 59
- 52 -134 -182 92
- 49 -84 -16 19
- -179 -126 -150 156
- 47 -10000 66 5
- 146 -514 12 -290
- -282 195 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -614 -10000 199
- -514 -10000 -10000 199
- 75 -10000 104 -194
+ 84 -83 -52 -8
+ 108 -106 -106 -12
+ 123 -245 -145 15
+ 111 -240 -256 57
+ 50 -125 -168 89
+ 48 -80 -15 18
+ -165 -118 -140 152
+ 45 -463 64 4
+ 142 -389 12 -256
+ -251 190 -463 -463
+ -463 196 -463 -463
+ -463 -463 196 -463
+ -463 -421 -463 195
+ -389 -463 -463 195
+ 73 -463 101 -178
diff --git a/profiles/plants/MA1173.1.pwm b/profiles/plants/MA1173.1.pwm
index e69de29..a471c85 100644
--- a/profiles/plants/MA1173.1.pwm
+++ b/profiles/plants/MA1173.1.pwm
@@ -0,0 +1,15 @@
+ 109 -83 -76 -49
+ 126 -140 -104 -45
+ 39 71 -156 -48
+ -10 77 -164 5
+ 25 -31 31 -40
+ 9 -145 -156 116
+ 195 -426 -445 -445
+ 195 -467 -426 -467
+ -467 196 -467 -467
+ -138 146 -150 -98
+ -76 -395 173 -467
+ 126 -167 -224 12
+ 140 -100 -426 -32
+ 44 -40 -247 77
+ -11 26 -107 48
diff --git a/profiles/plants/MA1174.1.pwm b/profiles/plants/MA1174.1.pwm
index 3cffa7c..ceac4f4 100644
--- a/profiles/plants/MA1174.1.pwm
+++ b/profiles/plants/MA1174.1.pwm
@@ -1,15 +1,15 @@
- 65 -161 -40 42
- 17 -104 -94 90
- 82 -50 -108 7
- 85 -91 -54 -3
- 115 -72 -174 -20
- -723 -564 -10000 199
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -253 -210 148 -30
- -7 -10000 161 -10000
- 57 -187 -623 115
- 66 -7 -353 46
- 37 -137 -258 111
- -17 -15 -202 98
+ 63 -150 -38 41
+ 17 -98 -89 87
+ 80 -48 -102 7
+ 82 -86 -52 -3
+ 112 -68 -161 -19
+ -445 -410 -467 195
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -228 -192 144 -29
+ -7 -467 157 -467
+ 55 -173 -426 112
+ 64 -7 -303 45
+ 36 -128 -233 108
+ -17 -15 -186 95
diff --git a/profiles/plants/MA1175.1.pwm b/profiles/plants/MA1175.1.pwm
index e69de29..319484e 100644
--- a/profiles/plants/MA1175.1.pwm
+++ b/profiles/plants/MA1175.1.pwm
@@ -0,0 +1,11 @@
+ -1 12 55 -113
+ -211 -57 -467 161
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -33 62 -38 -16
+ -64 -467 171 -467
+ 81 -53 -467 60
+ 79 -63 -445 66
+ -26 -126 -357 141
+ -39 25 -179 81
diff --git a/profiles/plants/MA1176.1.pwm b/profiles/plants/MA1176.1.pwm
index 8521991..ec74d30 100644
--- a/profiles/plants/MA1176.1.pwm
+++ b/profiles/plants/MA1176.1.pwm
@@ -1,11 +1,11 @@
- -68 26 -94 73
- 94 -247 33 -64
- 75 -10000 -35 62
- 21 139 -218 -10000
- -322 178 -114 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -722 -10000 200
- 195 -10000 -722 -283
- -352 176 -442 -105
- 108 -205 5 -72
+ -65 25 -89 71
+ 91 -223 32 -61
+ 73 -467 -34 60
+ 20 136 -199 -467
+ -281 174 -107 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 -445 -467 195
+ 190 -467 -445 -252
+ -303 172 -357 -99
+ 105 -189 5 -68
diff --git a/profiles/plants/MA1177.1.pwm b/profiles/plants/MA1177.1.pwm
index e69de29..880680c 100644
--- a/profiles/plants/MA1177.1.pwm
+++ b/profiles/plants/MA1177.1.pwm
@@ -0,0 +1,13 @@
+ 90 -122 -49 -1
+ -21 72 -173 25
+ -49 52 -113 48
+ 28 -29 44 -70
+ -94 -94 -467 155
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -182 121 -33 -71
+ -92 -467 176 -467
+ 24 3 -395 79
+ 88 53 -426 -58
+ 80 -130 -94 41
diff --git a/profiles/plants/MA1178.1.pwm b/profiles/plants/MA1178.1.pwm
index abc2b66..6f5bf3a 100644
--- a/profiles/plants/MA1178.1.pwm
+++ b/profiles/plants/MA1178.1.pwm
@@ -1,15 +1,15 @@
- 87 -85 -72 2
- 95 -156 -79 20
- 112 -218 -277 54
- 35 -125 -153 97
- 63 -80 -29 8
- -174 -106 -156 153
- 55 -623 60 0
- 149 -623 -25 -158
- -164 188 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 108 -723 65 -167
- 13 -18 36 -42
+ 84 -81 -68 2
+ 92 -145 -75 19
+ 109 -200 -247 52
+ 34 -118 -143 94
+ 61 -76 -27 8
+ -161 -100 -145 149
+ 53 -426 58 0
+ 146 -426 -24 -148
+ -153 184 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 -467 -467 196
+ 105 -445 63 -156
+ 12 -18 34 -40
diff --git a/profiles/plants/MA1179.1.pwm b/profiles/plants/MA1179.1.pwm
index e69de29..862602c 100644
--- a/profiles/plants/MA1179.1.pwm
+++ b/profiles/plants/MA1179.1.pwm
@@ -0,0 +1,19 @@
+ 39 -158 36 11
+ -4 -96 -148 111
+ 39 -183 -43 74
+ 133 -329 -16 -104
+ -370 191 -370 -370
+ -270 124 50 -370
+ -370 -370 191 -370
+ -370 -370 -370 191
+ -370 -370 -370 191
+ 136 -370 -183 11
+ 96 -104 -83 0
+ 100 -129 -89 7
+ 27 -148 30 27
+ 17 0 -76 36
+ -16 -4 -112 74
+ -83 7 80 -64
+ -38 -48 -29 76
+ -33 -58 -96 102
+ 69 -270 11 21
diff --git a/profiles/plants/MA1180.1.pwm b/profiles/plants/MA1180.1.pwm
index e69de29..b340fcf 100644
--- a/profiles/plants/MA1180.1.pwm
+++ b/profiles/plants/MA1180.1.pwm
@@ -0,0 +1,15 @@
+ 79 -67 -85 13
+ 93 -152 -72 19
+ 103 -199 -206 55
+ 27 -104 -141 95
+ 64 -52 -34 -6
+ -223 -101 -172 158
+ 77 -426 58 -42
+ 135 -445 27 -227
+ -214 189 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 -467 -467 196
+ 79 -409 99 -214
+ 2 -35 43 -22
diff --git a/profiles/plants/MA1181.1.pwm b/profiles/plants/MA1181.1.pwm
index e69de29..ecd76df 100644
--- a/profiles/plants/MA1181.1.pwm
+++ b/profiles/plants/MA1181.1.pwm
@@ -0,0 +1,11 @@
+ 79 -170 -17 10
+ 150 -379 -155 -41
+ -14 -466 96 16
+ -50 -466 -161 155
+ -444 100 -466 94
+ 80 40 -135 -86
+ -466 -466 196 -466
+ -466 -466 -407 195
+ -466 -466 -466 196
+ 186 -466 -179 -466
+ -173 -7 -68 109
diff --git a/profiles/plants/MA1182.1.pwm b/profiles/plants/MA1182.1.pwm
index e69de29..e3da587 100644
--- a/profiles/plants/MA1182.1.pwm
+++ b/profiles/plants/MA1182.1.pwm
@@ -0,0 +1,12 @@
+ 168 -345 -181 -129
+ -466 -466 196 -466
+ 196 -466 -466 -466
+ -466 -466 -466 196
+ 195 -466 -466 -409
+ -466 -425 -466 195
+ -466 -466 -466 196
+ -146 -425 -466 183
+ -35 -162 -191 139
+ -16 -40 -65 77
+ 17 -96 -15 55
+ -3 -60 -26 61
diff --git a/profiles/plants/MA1183.1.pwm b/profiles/plants/MA1183.1.pwm
index e69de29..94eb1db 100644
--- a/profiles/plants/MA1183.1.pwm
+++ b/profiles/plants/MA1183.1.pwm
@@ -0,0 +1,11 @@
+ 176 -426 -163 -214
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 192 -445 -467 -281
+ -467 -426 -467 195
+ -467 -467 -467 196
+ -175 -467 -445 186
+ -38 -188 -257 148
+ -69 -43 -66 100
+ -15 -68 -8 61
diff --git a/profiles/plants/MA1184.1.pwm b/profiles/plants/MA1184.1.pwm
index e69de29..55dd0a9 100644
--- a/profiles/plants/MA1184.1.pwm
+++ b/profiles/plants/MA1184.1.pwm
@@ -0,0 +1,14 @@
+ 62 -34 -48 -7
+ 42 -3 -54 -1
+ 64 -26 -8 -60
+ 111 -170 -128 16
+ 177 -467 -467 -96
+ 196 -467 -467 -467
+ 192 -381 -395 -381
+ -395 -467 -328 192
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -78 -170 -311 158
+ 44 -52 -91 50
+ 74 -20 -75 -21
diff --git a/profiles/plants/MA1185.1.pwm b/profiles/plants/MA1185.1.pwm
index 1c7e02f..df6508b 100644
--- a/profiles/plants/MA1185.1.pwm
+++ b/profiles/plants/MA1185.1.pwm
@@ -1,10 +1,10 @@
- 177 -723 -227 -145
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -623 -10000 -10000
- -10000 -423 -490 197
- -564 -10000 -564 199
- -155 -464 -10000 186
- 20 -170 -214 121
- -41 -6 -36 59
+ 173 -445 -207 -135
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 195 -426 -467 -467
+ -467 -346 -381 193
+ -410 -467 -410 194
+ -145 -369 -467 181
+ 19 -158 -196 118
+ -39 -5 -34 57
diff --git a/profiles/plants/MA1186.1.pwm b/profiles/plants/MA1186.1.pwm
index 1b7dfaa..c438e95 100644
--- a/profiles/plants/MA1186.1.pwm
+++ b/profiles/plants/MA1186.1.pwm
@@ -1,15 +1,15 @@
- 34 2 -83 22
- 41 -54 -127 65
- 11 -42 -125 81
- 112 -120 -147 5
- 114 -290 -227 54
- -342 110 -227 64
- -75 152 -116 -332
- -306 -364 -10000 193
- -264 -147 -10000 180
- 200 -10000 -10000 -723
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -89 90 -523 65
- 70 -161 -167 80
- 37 43 -264 26
+ 32 2 -79 21
+ 40 -51 -119 63
+ 11 -40 -117 78
+ 109 -113 -137 5
+ 111 -258 -207 52
+ -295 107 -207 62
+ -71 148 -109 -288
+ -269 -310 -467 188
+ -237 -137 -467 176
+ 195 -467 -467 -445
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -84 87 -395 63
+ 68 -150 -155 77
+ 36 42 -237 25
diff --git a/profiles/plants/MA1187.1.pwm b/profiles/plants/MA1187.1.pwm
index e69de29..cc10429 100644
--- a/profiles/plants/MA1187.1.pwm
+++ b/profiles/plants/MA1187.1.pwm
@@ -0,0 +1,10 @@
+ 186 -463 -229 -311
+ -463 -463 195 -403
+ 196 -463 -463 -463
+ -463 -440 -463 195
+ 192 -440 -463 -303
+ -463 -440 -388 194
+ -463 -440 -463 195
+ -274 -463 -463 191
+ -78 -224 -320 163
+ -53 -46 -56 93
diff --git a/profiles/plants/MA1188.1.pwm b/profiles/plants/MA1188.1.pwm
index e69de29..962fad9 100644
--- a/profiles/plants/MA1188.1.pwm
+++ b/profiles/plants/MA1188.1.pwm
@@ -0,0 +1,14 @@
+ 128 -154 -120 -32
+ 81 -278 -215 91
+ -211 113 -192 39
+ -30 127 -111 -169
+ -465 -272 -465 191
+ -392 -61 -465 170
+ 196 -465 -465 -465
+ -465 -407 -365 193
+ -465 196 -465 -465
+ -27 -1 -243 100
+ -24 -113 -138 121
+ 36 41 -141 1
+ 97 -285 -215 75
+ -36 9 -207 94
diff --git a/profiles/plants/MA1189.1.pwm b/profiles/plants/MA1189.1.pwm
index e69de29..ced1390 100644
--- a/profiles/plants/MA1189.1.pwm
+++ b/profiles/plants/MA1189.1.pwm
@@ -0,0 +1,15 @@
+ 44 -82 -1 12
+ 76 -269 -107 75
+ 46 -327 -327 127
+ 22 -211 -40 89
+ -38 -128 -369 145
+ -61 -467 171 -467
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 186 -282 -337 -288
+ 173 -467 -140 -196
+ 1 -155 102 -68
+ 79 -135 34 -71
+ 29 -102 -192 101
+ 25 -142 -119 100
diff --git a/profiles/plants/MA1190.1.pwm b/profiles/plants/MA1190.1.pwm
index e69de29..846f7c7 100644
--- a/profiles/plants/MA1190.1.pwm
+++ b/profiles/plants/MA1190.1.pwm
@@ -0,0 +1,11 @@
+ 179 -395 -189 -228
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 184 -467 -467 -153
+ -467 -445 -467 195
+ -445 -467 -467 195
+ -223 -467 -467 189
+ -35 -199 -228 146
+ -58 -46 -81 102
+ 3 -49 -31 54
diff --git a/profiles/plants/MA1191.1.pwm b/profiles/plants/MA1191.1.pwm
index bd1dad1..7abbc14 100644
--- a/profiles/plants/MA1191.1.pwm
+++ b/profiles/plants/MA1191.1.pwm
@@ -1,15 +1,15 @@
- 17 -7 -66 36
- 64 -22 -69 -7
- 47 -3 -69 2
- 59 -32 -3 -50
- 116 -147 -155 10
- 185 -723 -490 -150
- 200 -10000 -10000 -10000
- 199 -10000 -564 -10000
- -10000 -10000 -564 199
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -47 -94 -332 141
- 41 -54 -92 54
- 94 -54 -72 -34
+ 17 -6 -62 35
+ 62 -21 -65 -6
+ 45 -3 -65 2
+ 57 -31 -3 -48
+ 113 -137 -145 9
+ 181 -445 -381 -140
+ 196 -467 -467 -467
+ 195 -467 -410 -467
+ -467 -467 -410 195
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -45 -89 -288 137
+ 40 -51 -87 52
+ 91 -51 -68 -33
diff --git a/profiles/plants/MA1192.1.pwm b/profiles/plants/MA1192.1.pwm
index 145ba8d..1ab7183 100644
--- a/profiles/plants/MA1192.1.pwm
+++ b/profiles/plants/MA1192.1.pwm
@@ -1,15 +1,15 @@
- 76 -243 -254 96
- 37 -116 -3 36
- 59 -163 -135 83
- 66 -437 111 -223
- -10000 -10000 199 -486
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -718
- 200 -10000 -718 -718
- -254 -145 161 -130
- 64 -201 84 -130
- 11 -123 -182 115
- 8 -140 -116 108
- 68 -145 -43 37
- 37 -120 -15 45
+ 74 -219 -228 93
+ 35 -109 -3 35
+ 57 -151 -126 81
+ 64 -354 108 -203
+ -465 -465 194 -378
+ 196 -465 -465 -465
+ -465 -465 -465 196
+ 195 -465 -465 -443
+ 195 -465 -443 -443
+ -228 -136 157 -122
+ 62 -185 81 -122
+ 10 -115 -168 111
+ 7 -131 -109 105
+ 66 -136 -41 35
+ 36 -113 -14 43
diff --git a/profiles/plants/MA1193.1.pwm b/profiles/plants/MA1193.1.pwm
index cb6a7a4..d024872 100644
--- a/profiles/plants/MA1193.1.pwm
+++ b/profiles/plants/MA1193.1.pwm
@@ -1,21 +1,21 @@
- 91 -30 -54 -68
- 125 -68 -100 -100
- 81 -68 -42 -19
- 100 -400 39 -68
- 58 -300 17 32
- 109 -400 -10000 86
- 9 -83 -30 64
- 70 -119 -10000 95
- 32 -10000 139 -300
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -400 198
- 195 -400 -400 -10000
- 198 -10000 -10000 -400
- -42 -242 132 -83
- 17 -68 58 -42
- 139 -200 -242 -9
- -119 -242 -119 155
- 70 -83 58 -168
- 91 -142 17 -68
- 39 -10000 58 25
+ 83 -26 -47 -58
+ 115 -58 -85 -85
+ 74 -58 -36 -17
+ 92 -258 35 -58
+ 53 -217 15 29
+ 100 -258 -317 78
+ 8 -71 -26 58
+ 64 -100 -317 87
+ 29 -317 129 -217
+ -317 -317 187 -317
+ 187 -317 -317 -317
+ -317 -317 -258 185
+ 183 -258 -258 -317
+ 185 -317 -317 -258
+ -36 -185 122 -71
+ 15 -58 53 -36
+ 129 -158 -185 -8
+ -100 -185 -100 144
+ 64 -71 53 -136
+ 83 -117 15 -58
+ 35 -317 53 22
diff --git a/profiles/plants/MA1194.1.pwm b/profiles/plants/MA1194.1.pwm
index 3f175fd..f2525af 100644
--- a/profiles/plants/MA1194.1.pwm
+++ b/profiles/plants/MA1194.1.pwm
@@ -1,15 +1,15 @@
- 87 -132 -8 -27
- 80 -413 -18 39
- 80 -313 -413 106
- 30 -132 -22 60
- 89 -154 -167 57
- 46 -281 112 -167
- -10000 -10000 192 -213
- 199 -513 -10000 -10000
- -313 -10000 -10000 196
- 197 -10000 -10000 -354
- 198 -10000 -513 -513
- -104 -254 147 -81
- 23 8 60 -196
- 85 -10000 -10000 114
- -154 -67 -154 143
+ 82 -116 -8 -25
+ 75 -294 -16 37
+ 75 -245 -294 100
+ 28 -116 -20 56
+ 84 -134 -144 53
+ 42 -225 106 -144
+ -368 -368 183 -179
+ 190 -326 -368 -368
+ -245 -368 -368 187
+ 188 -368 -368 -267
+ 189 -368 -326 -326
+ -93 -208 140 -73
+ 21 7 56 -167
+ 80 -368 -368 107
+ -134 -60 -134 135
diff --git a/profiles/plants/MA1195.1.pwm b/profiles/plants/MA1195.1.pwm
index 868f0ef..0ee63b8 100644
--- a/profiles/plants/MA1195.1.pwm
+++ b/profiles/plants/MA1195.1.pwm
@@ -1,15 +1,15 @@
- 116 -174 -140 12
- 133 -291 -106 -20
- -167 111 -202 36
- -40 125 -135 -112
- -377 -264 -623 191
- -353 -298 -442 190
- 199 -564 -10000 -564
- -10000 -623 -723 199
- -10000 200 -10000 -10000
- -464 168 -10000 -41
- 153 -464 -167 -38
- 58 -80 -232 79
- 115 -523 -391 75
- 76 -114 -258 75
- 39 -3 -77 16
+ 113 -161 -131 12
+ 130 -258 -100 -19
+ -156 108 -186 34
+ -38 122 -126 -106
+ -319 -237 -426 187
+ -303 -264 -357 186
+ 194 -410 -467 -410
+ -467 -426 -445 195
+ -467 196 -467 -467
+ -369 164 -467 -39
+ 149 -369 -156 -37
+ 56 -76 -211 77
+ 112 -395 -328 73
+ 74 -107 -233 73
+ 38 -3 -73 16
diff --git a/profiles/plants/MA1196.1.pwm b/profiles/plants/MA1196.1.pwm
index 302b616..1e1dbe9 100644
--- a/profiles/plants/MA1196.1.pwm
+++ b/profiles/plants/MA1196.1.pwm
@@ -1,15 +1,15 @@
- 112 -89 -131 -17
- 101 -620 -215 81
- -320 121 -188 38
- -8 125 -113 -215
- -10000 -274 -10000 194
- -439 -39 -329 163
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -14 16 -329 91
- -30 -107 -136 122
- -16 45 -34 -7
- 126 -10000 -250 52
- -67 -30 -199 121
- 3 80 -184 -7
+ 109 -85 -123 -17
+ 98 -425 -197 78
+ -279 118 -173 37
+ -8 121 -106 -197
+ -466 -245 -466 190
+ -355 -37 -286 159
+ 196 -466 -466 -466
+ -466 -466 -466 196
+ -466 196 -466 -466
+ -14 15 -286 88
+ -29 -101 -128 118
+ -16 43 -32 -7
+ 122 -466 -225 50
+ -64 -29 -183 118
+ 3 78 -170 -7
diff --git a/profiles/plants/MA1197.1.pwm b/profiles/plants/MA1197.1.pwm
index c45caee..17303cc 100644
--- a/profiles/plants/MA1197.1.pwm
+++ b/profiles/plants/MA1197.1.pwm
@@ -1,12 +1,12 @@
- 101 -142 -35 -27
- 152 -170 -173 -96
- 144 -464 -18 -144
- 20 -9 93 -722
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 195 -10000 -290
- -10000 -10000 200 -10000
- -10000 -10000 -564 199
- -125 -137 112 1
- 65 -218 6 22
- 66 -137 19 -17
+ 98 -132 -34 -26
+ 149 -158 -161 -90
+ 140 -368 -17 -135
+ 19 -9 90 -445
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 191 -467 -258
+ -467 -467 196 -467
+ -467 -467 -409 195
+ -117 -128 109 1
+ 63 -199 6 21
+ 64 -128 18 -16
diff --git a/profiles/plants/MA1198.1.pwm b/profiles/plants/MA1198.1.pwm
index 476ad7d..718d8d5 100644
--- a/profiles/plants/MA1198.1.pwm
+++ b/profiles/plants/MA1198.1.pwm
@@ -1,11 +1,11 @@
- 100 -270 -180 63
- -44 32 -42 35
- -10000 74 -10000 122
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 186 -10000 -139
- 200 -10000 -10000 -10000
- -40 -364 -10000 166
- -39 -183 -205 144
- 62 -152 -19 32
+ 98 -242 -166 61
+ -42 30 -40 33
+ -467 71 -467 119
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 181 -467 -130
+ 196 -467 -467 -467
+ -39 -310 -467 162
+ -37 -169 -189 141
+ 60 -142 -18 30
diff --git a/profiles/plants/MA1199.1.pwm b/profiles/plants/MA1199.1.pwm
index e69de29..8fed2a6 100644
--- a/profiles/plants/MA1199.1.pwm
+++ b/profiles/plants/MA1199.1.pwm
@@ -0,0 +1,15 @@
+ -145 -218 -359 174
+ -277 -442 -376 190
+ -6 -277 -173 137
+ -442 195 -442 -442
+ -442 172 -442 -73
+ 23 -31 -196 82
+ -62 -42 -128 113
+ 31 -442 -442 141
+ -442 -359 -359 192
+ -116 -77 -196 144
+ 6 -145 35 39
+ -71 -442 172 -442
+ -442 -442 186 -186
+ 97 -116 -268 52
+ 173 -245 -306 -138
diff --git a/profiles/plants/MA1200.1.pwm b/profiles/plants/MA1200.1.pwm
index e69de29..ea47b35 100644
--- a/profiles/plants/MA1200.1.pwm
+++ b/profiles/plants/MA1200.1.pwm
@@ -0,0 +1,18 @@
+ 106 -149 -143 25
+ -125 130 -24 -187
+ -298 -238 -401 186
+ -401 -401 -401 193
+ -251 -401 -401 189
+ -401 193 -401 -401
+ -401 180 -401 -137
+ 87 -178 -317 83
+ -6 -187 -215 135
+ 53 -238 -265 114
+ -14 -196 -317 144
+ -4 -66 -125 98
+ -30 -78 -19 79
+ 23 -401 124 -131
+ -205 -156 136 -24
+ 101 -39 -163 -16
+ 132 -137 -137 -45
+ 130 -114 -99 -78
diff --git a/profiles/plants/MA1201.1.pwm b/profiles/plants/MA1201.1.pwm
index 7a47568..84c30d5 100644
--- a/profiles/plants/MA1201.1.pwm
+++ b/profiles/plants/MA1201.1.pwm
@@ -1,7 +1,7 @@
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -160 -10000 188
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -110 100 -119 13
+ -371 191 -371 -371
+ 191 -371 -371 -371
+ -371 -140 -371 179
+ -371 191 -371 -371
+ 191 -371 -371 -371
+ -371 -371 -371 191
+ -98 94 -106 12
diff --git a/profiles/plants/MA1202.1.pwm b/profiles/plants/MA1202.1.pwm
index ed36fff..18933bb 100644
--- a/profiles/plants/MA1202.1.pwm
+++ b/profiles/plants/MA1202.1.pwm
@@ -1,6 +1,6 @@
- -10000 -217 -249 185
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
+ -339 -175 -196 175
+ -339 189 -339 -339
+ 189 -339 -339 -339
+ -339 189 -339 -339
+ -339 189 -339 -339
+ 189 -339 -339 -339
diff --git a/profiles/plants/MA1203.1.pwm b/profiles/plants/MA1203.1.pwm
index d8b3433..0ba2ee0 100644
--- a/profiles/plants/MA1203.1.pwm
+++ b/profiles/plants/MA1203.1.pwm
@@ -1,15 +1,15 @@
- -71 -464 -194 163
- -67 -218 38 89
- -422 196 -10000 -390
- -390 187 -10000 -180
- 157 -209 -88 -201
- 161 -405 -218 -61
- 186 -10000 -10000 -144
- 161 -722 -722 -10
- 146 -241 -247 -20
- -55 -58 -264 131
- -122 -10000 181 -376
- -522 -10000 199 -622
- 92 65 -290 -131
- 187 -352 -622 -205
- 166 -390 -241 -80
+ -68 -368 -178 159
+ -63 -199 37 86
+ -346 191 -467 -327
+ -327 182 -467 -166
+ 153 -192 -83 -185
+ 158 -336 -199 -58
+ 182 -467 -467 -135
+ 157 -445 -445 -10
+ 143 -219 -223 -19
+ -52 -55 -237 128
+ -115 -467 177 -318
+ -394 -467 194 -426
+ 89 63 -257 -123
+ 183 -302 -426 -188
+ 162 -327 -219 -75
diff --git a/profiles/plants/MA1204.1.pwm b/profiles/plants/MA1204.1.pwm
index 3c633c5..eec9ef5 100644
--- a/profiles/plants/MA1204.1.pwm
+++ b/profiles/plants/MA1204.1.pwm
@@ -1,18 +1,18 @@
- 11 -419 -10000 152
- -260 -10000 -477 193
- 117 -477 -113 33
- -477 199 -10000 -10000
- -10000 156 -10000 8
- 136 -60 -297 -65
- 163 -477 -297 -42
- 200 -10000 -10000 -10000
- 167 -10000 -10000 -28
- 167 -277 -319 -82
- 57 -219 -187 102
- 43 -10000 141 -10000
- -10000 -10000 199 -477
- 113 -187 -345 53
- 193 -419 -10000 -297
- 180 -10000 -377 -119
- 120 -197 -42 -53
- 72 -153 -145 72
+ 10 -313 -398 146
+ -220 -398 -336 186
+ 112 -336 -103 31
+ -336 192 -398 -398
+ -398 149 -398 8
+ 131 -56 -245 -59
+ 156 -336 -245 -39
+ 193 -398 -398 -398
+ 160 -398 -398 -26
+ 160 -232 -259 -75
+ 54 -190 -164 97
+ 41 -398 135 -398
+ -398 -398 192 -336
+ 108 -164 -275 50
+ 186 -313 -398 -245
+ 174 -398 -292 -108
+ 115 -172 -39 -49
+ 68 -136 -130 68
diff --git a/profiles/plants/MA1205.1.pwm b/profiles/plants/MA1205.1.pwm
index e69de29..4ac5ded 100644
--- a/profiles/plants/MA1205.1.pwm
+++ b/profiles/plants/MA1205.1.pwm
@@ -0,0 +1,19 @@
+ -51 -322 -359 164
+ -70 -428 -322 169
+ 71 -322 -80 75
+ -293 190 -359 -428
+ -428 166 -452 -45
+ 104 -37 -150 -28
+ 148 -322 -141 -48
+ 191 -452 -407 -277
+ 176 -452 -452 -94
+ 163 -242 -214 -103
+ 75 -121 -167 66
+ 8 -452 151 -428
+ -452 -452 195 -452
+ 125 -72 -277 -22
+ 183 -373 -389 -167
+ 180 -373 -312 -157
+ 100 -92 -9 -92
+ 105 -196 -129 33
+ 94 -144 -200 54
diff --git a/profiles/plants/MA1206.1.pwm b/profiles/plants/MA1206.1.pwm
index cfb9feb..d08e01e 100644
--- a/profiles/plants/MA1206.1.pwm
+++ b/profiles/plants/MA1206.1.pwm
@@ -1,10 +1,10 @@
- 71 -37 -158 33
- 1 -130 37 37
- -10000 140 45 -10000
- 42 136 -332 -10000
- -42 -10000 170 -10000
- 190 -10000 -190 -10000
- -10000 200 -10000 -10000
- 191 -202 -10000 -10000
- 86 -139 -19 -10
- 55 -78 47 -80
+ 69 -35 -147 32
+ 1 -122 35 36
+ -467 136 43 -467
+ 40 132 -288 -467
+ -40 -467 166 -467
+ 186 -467 -176 -467
+ -467 196 -467 -467
+ 187 -185 -467 -467
+ 83 -130 -18 -9
+ 53 -74 45 -76
diff --git a/profiles/plants/MA1207.1.pwm b/profiles/plants/MA1207.1.pwm
index 450c0ab..bb5c4a3 100644
--- a/profiles/plants/MA1207.1.pwm
+++ b/profiles/plants/MA1207.1.pwm
@@ -1,17 +1,17 @@
- 64 -37 5 -68
- 74 -43 8 -92
- -308 196 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 182 -10000 -111
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 180 -98
- -78 -121 -29 112
- 19 -18 -70 44
- 98 -263 -121 52
- 114 -49 -273 -9
- 148 -454 -10000 22
- 21 -54 -454 108
- 49 -495 17 53
- -21 -114 -137 120
- -3 -114 59 8
+ 62 -34 5 -64
+ 71 -40 8 -86
+ -263 190 -434 -434
+ 195 -434 -434 -434
+ -434 177 -434 -103
+ -434 -434 195 -434
+ -434 -434 -434 195
+ -434 -434 175 -91
+ -73 -112 -27 108
+ 18 -17 -66 42
+ 94 -230 -112 50
+ 110 -46 -237 -9
+ 144 -347 -434 21
+ 20 -50 -347 104
+ 47 -364 16 51
+ -20 -106 -126 116
+ -3 -106 57 8
diff --git a/profiles/plants/MA1208.1.pwm b/profiles/plants/MA1208.1.pwm
index 6bc397f..0f98aa8 100644
--- a/profiles/plants/MA1208.1.pwm
+++ b/profiles/plants/MA1208.1.pwm
@@ -1,14 +1,14 @@
- 19 -142 -127 105
- -43 -142 -237 143
- 28 -10000 -10000 148
- -209 -352 -283 182
- -10000 -10000 -10000 200
- -22 -209 -10000 154
- 200 -10000 -10000 -10000
- -10000 199 -10000 -490
- -190 134 -522 24
- -14 -205 98 -19
- -218 32 -258 124
- 28 -48 -65 52
- 21 -152 14 48
- -42 -62 -51 93
+ 19 -132 -119 102
+ -41 -132 -215 139
+ 27 -467 -467 144
+ -192 -303 -252 178
+ -467 -467 -467 196
+ -21 -192 -467 150
+ 196 -467 -467 -467
+ -467 194 -467 -381
+ -175 130 -394 23
+ -13 -189 95 -18
+ -199 30 -232 121
+ 27 -46 -62 50
+ 20 -142 14 46
+ -40 -59 -49 90
diff --git a/profiles/plants/MA1209.1.pwm b/profiles/plants/MA1209.1.pwm
index e69de29..1282dfa 100644
--- a/profiles/plants/MA1209.1.pwm
+++ b/profiles/plants/MA1209.1.pwm
@@ -0,0 +1,11 @@
+ 1 3 -119 61
+ -86 95 -340 50
+ 193 -401 -401 -401
+ 193 -401 -401 -401
+ -401 -401 -401 193
+ 186 -401 -226 -317
+ 193 -401 -401 -401
+ -401 -401 -401 193
+ -401 -368 -401 193
+ 29 -143 89 -86
+ 114 -99 -82 -45
diff --git a/profiles/plants/MA1210.1.pwm b/profiles/plants/MA1210.1.pwm
index 57dd0f4..0c29f10 100644
--- a/profiles/plants/MA1210.1.pwm
+++ b/profiles/plants/MA1210.1.pwm
@@ -1,10 +1,10 @@
- 68 13 -65 -58
- -29 51 -96 31
- -304 81 -10000 108
- 199 -504 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -404 -10000 198
- -10000 194 -272 -10000
- 199 -504 -10000 -10000
- -504 -404 -504 196
- -96 -172 -124 146
+ 64 12 -59 -53
+ -26 48 -85 29
+ -238 76 -364 102
+ 190 -321 -364 -364
+ 191 -364 -364 -364
+ -364 -288 -364 189
+ -364 186 -219 -364
+ 190 -321 -364 -364
+ -321 -288 -321 187
+ -85 -148 -109 139
diff --git a/profiles/plants/MA1211.1.pwm b/profiles/plants/MA1211.1.pwm
index e69de29..1f5ff6f 100644
--- a/profiles/plants/MA1211.1.pwm
+++ b/profiles/plants/MA1211.1.pwm
@@ -0,0 +1,11 @@
+ -51 35 -48 38
+ -467 129 -467 56
+ 193 -318 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -160 102 -380 65
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -223 -346 -302 184
+ 54 -288 63 -22
+ -37 -97 52 36
diff --git a/profiles/plants/MA1212.1.pwm b/profiles/plants/MA1212.1.pwm
index e69de29..a3aa5bd 100644
--- a/profiles/plants/MA1212.1.pwm
+++ b/profiles/plants/MA1212.1.pwm
@@ -0,0 +1,11 @@
+ -13 -3 -104 69
+ -70 95 -467 50
+ 196 -467 -467 -467
+ 195 -467 -467 -445
+ -467 -467 -467 196
+ 165 -44 -445 -369
+ 196 -467 -467 -467
+ -467 -426 -467 195
+ -118 -426 -153 166
+ 41 -104 31 -8
+ 82 -120 -44 9
diff --git a/profiles/plants/MA1213.1.pwm b/profiles/plants/MA1213.1.pwm
index 18676e7..a43358d 100644
--- a/profiles/plants/MA1213.1.pwm
+++ b/profiles/plants/MA1213.1.pwm
@@ -1,14 +1,14 @@
- 33 -65 23 -9
- -21 80 -27 -83
- 133 -176 -105 -51
- 3 92 -173 -35
- -622 192 -10000 -231
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 94 -247 -252 79
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -99 -490 -158 165
- -19 -322 110 -19
- 31 -67 42 -33
+ 31 -62 22 -9
+ -20 78 -26 -79
+ 130 -163 -99 -48
+ 3 90 -160 -34
+ -426 188 -467 -211
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 91 -223 -227 77
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -94 -381 -147 161
+ -18 -281 107 -18
+ 30 -63 40 -31
diff --git a/profiles/plants/MA1214.1.pwm b/profiles/plants/MA1214.1.pwm
index 9c36499..ba0e645 100644
--- a/profiles/plants/MA1214.1.pwm
+++ b/profiles/plants/MA1214.1.pwm
@@ -1,21 +1,21 @@
- 64 -69 -35 6
- 51 17 -66 -29
- 143 -258 -114 -54
- -43 112 -114 -64
- -284 182 -10000 -161
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 137 -306 -258 17
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -142 -491 -187 173
- -71 -406 140 -56
- 77 -132 -9 -6
- 56 -53 -25 -1
- 19 -5 -17 1
- 36 8 -93 18
- 46 -31 -142 53
- 53 -116 -110 72
- 80 -123 -147 56
- 56 -82 -156 70
+ 62 -66 -33 5
+ 49 17 -63 -27
+ 139 -233 -107 -52
+ -41 108 -107 -61
+ -253 178 -467 -150
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 134 -269 -233 17
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -133 -381 -173 169
+ -67 -337 137 -53
+ 74 -124 -9 -6
+ 54 -50 -24 -1
+ 18 -5 -17 1
+ 34 8 -88 17
+ 44 -30 -133 52
+ 51 -109 -104 70
+ 77 -115 -138 54
+ 54 -78 -145 67
diff --git a/profiles/plants/MA1215.1.pwm b/profiles/plants/MA1215.1.pwm
index e69de29..15b34ac 100644
--- a/profiles/plants/MA1215.1.pwm
+++ b/profiles/plants/MA1215.1.pwm
@@ -0,0 +1,11 @@
+ 12 69 -111 -26
+ -45 140 -467 -76
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 187 -467 -295 -247
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -196 -467 -196 178
+ -20 -215 131 -124
+ 66 -130 -4 5
diff --git a/profiles/plants/MA1218.1.pwm b/profiles/plants/MA1218.1.pwm
index 3078be9..e189ab8 100644
--- a/profiles/plants/MA1218.1.pwm
+++ b/profiles/plants/MA1218.1.pwm
@@ -1,13 +1,13 @@
- -40 12 -94 71
- -54 -20 35 22
- 146 -313 -105 -61
- -213 -45 -152 143
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -283 -10000 195 -10000
- -10000 106 -10000 94
- 42 -65 72 -139
- 88 -120 14 -68
- 52 3 -76 -6
+ -38 11 -89 69
+ -51 -19 34 21
+ 142 -275 -99 -58
+ -195 -43 -142 139
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -252 -467 191 -467
+ -467 103 -467 91
+ 41 -62 69 -130
+ 85 -113 14 -65
+ 50 3 -72 -6
diff --git a/profiles/plants/MA1219.1.pwm b/profiles/plants/MA1219.1.pwm
index e69de29..4978509 100644
--- a/profiles/plants/MA1219.1.pwm
+++ b/profiles/plants/MA1219.1.pwm
@@ -0,0 +1,15 @@
+ -98 99 -94 -3
+ -54 116 -158 -43
+ 60 -61 -21 -5
+ -83 90 -113 16
+ -50 120 -179 -49
+ 35 -186 3 52
+ -167 125 -164 -2
+ -381 190 -357 -311
+ 172 -467 -67 -467
+ -467 194 -467 -381
+ -426 195 -467 -467
+ -264 -467 191 -445
+ 84 41 -467 -25
+ -445 194 -445 -395
+ 104 -54 -56 -79
diff --git a/profiles/plants/MA1220.1.pwm b/profiles/plants/MA1220.1.pwm
index 0ae3b11..cc5e3ff 100644
--- a/profiles/plants/MA1220.1.pwm
+++ b/profiles/plants/MA1220.1.pwm
@@ -1,15 +1,15 @@
- -3 60 -117 8
- -1 -60 -8 49
- -144 110 -149 17
- -186 154 -270 -58
- 145 -10000 32 -622
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 184 -217 -10000 -236
- -10000 200 -10000 -10000
- 170 -622 -65 -341
- 51 34 -86 -40
- 45 -23 -122 44
- 39 -117 15 19
- 5 22 -65 22
+ -3 58 -111 8
+ -1 -58 -8 47
+ -134 107 -139 17
+ -172 150 -241 -55
+ 142 -467 31 -426
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ 180 -199 -467 -214
+ -467 196 -467 -467
+ 166 -426 -62 -295
+ 49 33 -82 -38
+ 43 -22 -115 42
+ 37 -111 14 18
+ 5 21 -62 22
diff --git a/profiles/plants/MA1221.1.pwm b/profiles/plants/MA1221.1.pwm
index 47a40a4..02d55c5 100644
--- a/profiles/plants/MA1221.1.pwm
+++ b/profiles/plants/MA1221.1.pwm
@@ -1,15 +1,15 @@
- -54 -10 -305 118
- -122 -276 113 31
- 33 -376 135 -305
- -722 194 -10000 -276
- -10000 -10000 200 -10000
- -722 -331 196 -10000
- -422 193 -10000 -276
- -10000 -564 196 -331
- -331 -131 178 -376
- 40 105 -341 -97
- -116 -405 160 -116
- -3 -167 124 -155
- 42 21 -161 23
- -39 -222 118 -39
- -48 -127 121 -86
+ -51 -10 -269 114
+ -115 -247 110 30
+ 31 -318 132 -269
+ -445 190 -467 -247
+ -467 -467 196 -467
+ -445 -288 192 -467
+ -346 188 -467 -247
+ -467 -409 191 -288
+ -288 -123 173 -318
+ 39 102 -295 -92
+ -109 -336 157 -109
+ -3 -155 121 -144
+ 41 21 -150 22
+ -37 -203 114 -37
+ -46 -119 118 -82
diff --git a/profiles/plants/MA1222.1.pwm b/profiles/plants/MA1222.1.pwm
index 8103b87..0bb55ef 100644
--- a/profiles/plants/MA1222.1.pwm
+++ b/profiles/plants/MA1222.1.pwm
@@ -1,15 +1,15 @@
- -129 120 -152 -9
- -89 141 -189 -89
- 66 -138 -10 14
- -97 128 -160 -45
- -93 145 -217 -91
- -6 -257 47 57
- -269 158 -193 -77
- -722 199 -10000 -622
- 178 -10000 -103 -376
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -246 -10000 193 -10000
- 14 105 -405 -37
- -10000 199 -10000 -522
- 124 -622 -12 -50
+ -121 117 -141 -8
+ -85 137 -175 -85
+ 64 -130 -9 14
+ -92 125 -149 -43
+ -88 141 -199 -86
+ -5 -232 45 55
+ -241 155 -178 -73
+ -445 195 -467 -426
+ 174 -467 -97 -318
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -223 -467 189 -467
+ 14 102 -336 -35
+ -467 195 -467 -394
+ 121 -426 -11 -48
diff --git a/profiles/plants/MA1223.1.pwm b/profiles/plants/MA1223.1.pwm
index 06f9475..3efbefc 100644
--- a/profiles/plants/MA1223.1.pwm
+++ b/profiles/plants/MA1223.1.pwm
@@ -1,14 +1,14 @@
- 45 -117 28 -3
- 43 -73 -26 28
- 44 -49 -102 53
- 69 -183 -96 67
- -98 -94 54 60
- -561 -319 -10000 195
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -91 -10000 179
- -138 -294 169 -194
- 14 -104 114 -229
+ 44 -110 27 -3
+ 41 -70 -25 27
+ 42 -47 -96 51
+ 67 -169 -91 65
+ -93 -89 52 58
+ -407 -279 -465 191
+ -465 -465 196 -465
+ -465 -465 -465 196
+ -465 196 -465 -465
+ -465 -465 196 -465
+ -465 -465 196 -465
+ -465 -86 -465 175
+ -130 -260 165 -179
+ 13 -98 111 -208
diff --git a/profiles/plants/MA1225.1.pwm b/profiles/plants/MA1225.1.pwm
index b903a2b..cdc4fd2 100644
--- a/profiles/plants/MA1225.1.pwm
+++ b/profiles/plants/MA1225.1.pwm
@@ -1,15 +1,15 @@
- -130 135 -193 -35
- -72 141 -337 -64
- 56 -179 31 -1
- -218 131 -101 -32
- -132 177 -486 -266
- -84 -10000 135 -17
- -559 187 -218 -318
- -318 196 -10000 -10000
- -109 -10000 179 -401
- -518 189 -286 -293
- -518 199 -10000 -10000
- -99 -10000 168 -179
- -559 153 -309 -3
- -140 155 -232 -101
- 71 -309 59 -45
+ -122 131 -178 -33
+ -68 137 -292 -61
+ 54 -165 30 -1
+ -199 128 -95 -31
+ -124 173 -378 -238
+ -80 -465 132 -16
+ -407 182 -199 -278
+ -278 192 -465 -465
+ -103 -465 175 -333
+ -391 185 -254 -259
+ -391 195 -465 -465
+ -93 -465 164 -165
+ -407 149 -271 -3
+ -131 151 -211 -95
+ 69 -271 58 -43
diff --git a/profiles/plants/MA1226.1.pwm b/profiles/plants/MA1226.1.pwm
index 1850e7f..f0bb5c1 100644
--- a/profiles/plants/MA1226.1.pwm
+++ b/profiles/plants/MA1226.1.pwm
@@ -1,15 +1,15 @@
- -63 -184 128 -64
- -74 -144 134 -99
- -10 29 -134 54
- -80 -158 109 -5
- -58 -180 140 -127
- 105 -14 -361 -9
- 33 -10000 143 -439
- -211 -10000 186 -274
- -280 179 -10000 -136
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -255 9 -10000 147
- -10000 -10000 199 -561
- -144 -195 174 -520
- 69 9 -155 -3
+ -60 -170 125 -61
+ -70 -135 130 -93
+ -10 28 -125 52
+ -76 -147 106 -5
+ -55 -167 136 -119
+ 102 -14 -308 -9
+ 32 -466 139 -355
+ -193 -466 181 -245
+ -250 175 -466 -128
+ -466 -466 196 -466
+ -466 -466 196 -466
+ -230 8 -466 143
+ -466 -466 195 -408
+ -135 -179 170 -393
+ 67 8 -145 -3
diff --git a/profiles/plants/MA1227.1.pwm b/profiles/plants/MA1227.1.pwm
index 6a18287..d0c155f 100644
--- a/profiles/plants/MA1227.1.pwm
+++ b/profiles/plants/MA1227.1.pwm
@@ -1,21 +1,21 @@
- -18 57 -93 15
- -3 -23 23 -1
- -20 46 -56 10
- -50 77 -66 -7
- 26 -61 39 -26
- -47 61 -63 15
- -10 65 -100 0
- 25 -93 33 5
- -11 44 -98 27
- -43 78 -142 22
- -50 -85 33 57
- -94 64 -247 80
- -298 107 -306 72
- 77 -723 118 -523
- -10000 199 -10000 -491
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 162 -167 -723 -74
- -10000 200 -10000 -10000
- 160 -623 -27 -291
- 35 29 -67 -18
+ -18 55 -88 15
+ -3 -22 22 -1
+ -19 44 -53 10
+ -48 75 -63 -7
+ 25 -58 38 -25
+ -45 59 -60 14
+ -10 63 -94 0
+ 24 -88 31 5
+ -11 43 -93 26
+ -41 76 -133 21
+ -48 -81 32 55
+ -89 62 -224 77
+ -264 104 -269 70
+ 75 -445 114 -395
+ -467 194 -467 -381
+ -467 196 -467 -467
+ -467 -467 196 -467
+ 158 -156 -445 -70
+ -467 196 -467 -467
+ 156 -426 -26 -258
+ 34 28 -64 -18
diff --git a/profiles/plants/MA1227.2.pwm b/profiles/plants/MA1227.2.pwm
index e69de29..facae76 100644
--- a/profiles/plants/MA1227.2.pwm
+++ b/profiles/plants/MA1227.2.pwm
@@ -0,0 +1,15 @@
+ 16 2 -69 33
+ 6 -50 -11 41
+ -40 -5 -101 83
+ -99 12 -133 101
+ 55 -288 118 -287
+ -466 193 -507 -299
+ -485 197 -578 -524
+ -509 -529 197 -529
+ 186 -293 -429 -243
+ -538 197 -553 -538
+ 180 -407 -182 -256
+ 49 -36 -93 36
+ 43 -32 -58 25
+ 46 -73 -16 17
+ 30 -32 -49 33
diff --git a/profiles/plants/MA1228.1.pwm b/profiles/plants/MA1228.1.pwm
index e69de29..6704514 100644
--- a/profiles/plants/MA1228.1.pwm
+++ b/profiles/plants/MA1228.1.pwm
@@ -0,0 +1,17 @@
+ 46 -128 94 -178
+ -74 107 -460 33
+ -460 -460 195 -399
+ -182 -460 186 -460
+ -460 192 -460 -306
+ -460 -460 195 -460
+ -460 -460 195 -460
+ -290 187 -460 -250
+ -357 -345 177 -128
+ -63 -90 145 -370
+ 40 59 -189 -14
+ -53 -219 129 -64
+ -7 -138 107 -83
+ -11 70 -85 -15
+ -35 -133 112 -64
+ -39 -92 108 -74
+ -8 42 -66 11
diff --git a/profiles/plants/MA1229.1.pwm b/profiles/plants/MA1229.1.pwm
index e69de29..e68a667 100644
--- a/profiles/plants/MA1229.1.pwm
+++ b/profiles/plants/MA1229.1.pwm
@@ -0,0 +1,15 @@
+ 32 13 -102 22
+ 44 -126 -6 34
+ -59 -62 38 47
+ -224 -68 -420 164
+ -462 -462 196 -462
+ -261 -462 -287 187
+ -462 196 -462 -462
+ -462 -462 196 -462
+ -462 -462 196 -462
+ -462 -28 -462 163
+ -87 -255 159 -191
+ 13 -92 101 -144
+ 33 10 -92 19
+ 5 -108 61 -5
+ 10 -80 22 24
diff --git a/profiles/plants/MA1230.1.pwm b/profiles/plants/MA1230.1.pwm
index e69de29..e06342d 100644
--- a/profiles/plants/MA1230.1.pwm
+++ b/profiles/plants/MA1230.1.pwm
@@ -0,0 +1,14 @@
+ -155 101 -113 25
+ -185 154 -207 -79
+ 153 -467 5 -467
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ 194 -409 -467 -368
+ -467 196 -467 -467
+ 178 -467 -119 -357
+ 61 40 -103 -59
+ 60 -42 -179 54
+ 32 -87 -40 53
+ 4 -7 -54 41
+ -13 49 -119 31
diff --git a/profiles/plants/MA1231.1.pwm b/profiles/plants/MA1231.1.pwm
index e69de29..0b0c2e8 100644
--- a/profiles/plants/MA1231.1.pwm
+++ b/profiles/plants/MA1231.1.pwm
@@ -0,0 +1,15 @@
+ -42 96 -92 -36
+ 17 -85 36 5
+ -94 110 -144 -6
+ -39 114 -336 -9
+ 27 -160 20 40
+ -237 127 -105 -15
+ 6 150 -346 -467
+ -192 -467 184 -318
+ -467 196 -467 -467
+ -237 190 -467 -467
+ -281 -467 191 -380
+ -467 189 -467 -227
+ -426 195 -467 -445
+ 47 -467 108 -111
+ -227 112 -199 44
diff --git a/profiles/plants/MA1232.1.pwm b/profiles/plants/MA1232.1.pwm
index 7813c73..1a2a274 100644
--- a/profiles/plants/MA1232.1.pwm
+++ b/profiles/plants/MA1232.1.pwm
@@ -1,20 +1,20 @@
- -369 -556 195 -434
- 11 -275 49 45
- -715 199 -10000 -615
- -10000 -10000 200 -10000
- -10000 -615 199 -10000
- -10000 59 -10000 132
- -262 -356 177 -156
- -88 -56 140 -283
- 59 42 -183 -19
- -52 -224 122 -39
- 34 -119 74 -66
- 0 33 -74 19
- -39 -100 96 -33
- -10 -79 90 -67
- -30 16 -61 50
- -18 -77 99 -88
- -23 -62 82 -45
- -30 11 -37 42
- -23 -55 79 -45
- 2 -74 70 -41
+ -312 -404 190 -351
+ 11 -245 47 44
+ -441 195 -463 -422
+ -463 -463 196 -463
+ -463 -422 195 -463
+ -463 57 -463 129
+ -235 -304 173 -145
+ -83 -53 136 -251
+ 57 41 -168 -18
+ -49 -204 119 -37
+ 32 -112 71 -62
+ 0 32 -70 19
+ -37 -94 93 -31
+ -10 -75 87 -64
+ -29 15 -58 49
+ -17 -73 96 -83
+ -22 -59 79 -43
+ -29 11 -35 40
+ -22 -52 76 -43
+ 2 -70 68 -39
diff --git a/profiles/plants/MA1233.1.pwm b/profiles/plants/MA1233.1.pwm
index 23a42ae..485019d 100644
--- a/profiles/plants/MA1233.1.pwm
+++ b/profiles/plants/MA1233.1.pwm
@@ -1,20 +1,20 @@
- -56 132 -234 -66
- 57 -92 -13 10
- -139 131 -139 -39
- -145 155 -194 -120
- 42 -10000 83 -18
- -117 143 -334 -39
- -129 160 -334 -111
- 34 -211 78 -34
- -117 126 -224 -8
- -111 152 -256 -98
- 22 -215 53 23
- -194 126 -190 11
- -202 171 -483 -113
- 81 -556 75 -86
- -263 184 -334 -256
- -256 189 -515 -334
- -92 -483 165 -172
- -58 103 -256 16
- -290 189 -556 -283
- 95 -398 41 -56
+ -54 128 -212 -62
+ 55 -87 -12 9
+ -130 127 -130 -38
+ -135 152 -178 -112
+ 41 -463 81 -18
+ -110 139 -289 -38
+ -121 156 -289 -104
+ 33 -193 75 -33
+ -110 123 -204 -8
+ -104 148 -230 -92
+ 21 -196 51 22
+ -178 123 -175 10
+ -185 166 -376 -106
+ 79 -405 72 -82
+ -235 179 -289 -230
+ -230 185 -389 -289
+ -87 -376 161 -160
+ -55 100 -230 16
+ -257 185 -405 -251
+ 92 -331 40 -54
diff --git a/profiles/plants/MA1233.2.pwm b/profiles/plants/MA1233.2.pwm
index 0cb1127..710bed3 100644
--- a/profiles/plants/MA1233.2.pwm
+++ b/profiles/plants/MA1233.2.pwm
@@ -1,15 +1,15 @@
- -13 43 -63 13
- -2 64 -113 0
- -6 -112 68 -3
- -90 110 -103 -27
- -209 157 -295 -57
- 17 -572 140 -216
- -438 194 -338 -523
- -538 198 -582 -592
- -382 -663 196 -538
- 149 -66 -292 -121
- -487 195 -417 -430
- 186 -387 -232 -330
- 69 8 -140 -7
- 37 7 -54 -5
- 37 -78 16 0
+ -13 42 -62 13
+ -2 63 -110 0
+ -6 -109 67 -3
+ -88 108 -100 -26
+ -201 155 -279 -56
+ 17 -479 138 -207
+ -395 192 -316 -452
+ -460 196 -484 -489
+ -352 -519 194 -460
+ 147 -64 -277 -117
+ -429 193 -379 -389
+ 184 -356 -222 -310
+ 68 8 -136 -7
+ 36 7 -52 -5
+ 37 -76 16 0
diff --git a/profiles/plants/MA1234.1.pwm b/profiles/plants/MA1234.1.pwm
index 46a4b79..1a84d07 100644
--- a/profiles/plants/MA1234.1.pwm
+++ b/profiles/plants/MA1234.1.pwm
@@ -1,14 +1,14 @@
- 54 -173 29 4
- -24 -214 -150 136
- -167 -298 143 -20
- -10000 -10000 200 -10000
- 96 -92 -183 32
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -180 30 -10000 131
- -247 -406 181 -194
- 10 -106 103 -130
- 38 7 -83 12
- -14 -170 96 -26
- 36 -85 59 -61
+ 52 -161 28 4
+ -23 -196 -140 133
+ -155 -263 139 -20
+ -467 -467 196 -467
+ 93 -87 -170 31
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 196 -467
+ -167 29 -467 127
+ -223 -337 177 -179
+ 9 -100 100 -122
+ 37 7 -79 12
+ -13 -158 94 -25
+ 35 -81 57 -58
diff --git a/profiles/plants/MA1235.1.pwm b/profiles/plants/MA1235.1.pwm
index edf28e4..06d7487 100644
--- a/profiles/plants/MA1235.1.pwm
+++ b/profiles/plants/MA1235.1.pwm
@@ -1,11 +1,11 @@
- -361 193 -707 -349
- -24 -299 150 -227
- 43 -39 23 -49
- 75 -155 -217 81
- -65 -175 -361 158
- -53 89 -607 53
- -203 119 -10000 56
- -10000 200 -10000 -10000
- -2 -290 139 -194
- 194 -10000 -10000 -261
- -207 -449 158 -46
+ -306 189 -437 -298
+ -23 -262 146 -206
+ 42 -37 22 -47
+ 73 -144 -197 78
+ -61 -162 -306 154
+ -51 86 -417 51
+ -186 116 -460 54
+ -460 195 -460 -460
+ -2 -256 135 -178
+ 190 -460 -460 -234
+ -189 -357 154 -44
diff --git a/profiles/plants/MA1236.1.pwm b/profiles/plants/MA1236.1.pwm
index e69de29..ec49d0b 100644
--- a/profiles/plants/MA1236.1.pwm
+++ b/profiles/plants/MA1236.1.pwm
@@ -0,0 +1,19 @@
+ -1 54 -55 -20
+ -60 -152 125 -69
+ -38 -113 127 -147
+ 31 30 -115 11
+ -3 -227 101 -33
+ -37 -210 112 -29
+ 25 4 -219 65
+ -69 -357 129 -24
+ -3 -275 133 -152
+ -310 182 -467 -172
+ -467 -467 196 -467
+ -445 -409 195 -467
+ -214 139 -467 16
+ -467 -467 194 -336
+ -288 -160 177 -310
+ 83 49 -263 -60
+ -157 -336 171 -175
+ -3 -105 119 -195
+ 62 -58 -95 35
diff --git a/profiles/plants/MA1238.1.pwm b/profiles/plants/MA1238.1.pwm
index e69de29..ea7cc6d 100644
--- a/profiles/plants/MA1238.1.pwm
+++ b/profiles/plants/MA1238.1.pwm
@@ -0,0 +1,15 @@
+ -219 -28 -467 155
+ -467 -467 195 -445
+ -113 -394 -150 164
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 196 -467
+ -467 1 -467 154
+ -128 -327 168 -179
+ 25 -152 105 -132
+ 39 34 -128 1
+ -23 -130 87 -14
+ 24 -103 44 -4
+ 15 7 -76 33
+ -5 -96 72 -20
+ 30 -87 55 -40
diff --git a/profiles/plants/MA1238.2.pwm b/profiles/plants/MA1238.2.pwm
index ebb655f..973efca 100644
--- a/profiles/plants/MA1238.2.pwm
+++ b/profiles/plants/MA1238.2.pwm
@@ -1,13 +1,13 @@
- 27 -79 6 23
- -88 76 -96 31
- -196 176 -290 -224
- 182 -10000 -128 -444
- -609 199 -690 -609
- -544 199 -890 -731
- -481 -658 198 -631
- 177 -199 -399 -189
- -490 198 -690 -609
- 173 -377 -124 -249
- 50 24 -77 -27
- 38 -4 -81 21
- 35 -79 5 15
+ 26 -76 6 23
+ -86 75 -93 31
+ -187 174 -270 -213
+ 180 -548 -123 -389
+ -477 196 -503 -477
+ -448 196 -536 -513
+ -413 -494 195 -485
+ 175 -190 -358 -180
+ -418 196 -503 -477
+ 171 -341 -120 -235
+ 49 23 -75 -27
+ 37 -4 -79 20
+ 34 -76 5 15
diff --git a/profiles/plants/MA1239.1.pwm b/profiles/plants/MA1239.1.pwm
index e69de29..f62f354 100644
--- a/profiles/plants/MA1239.1.pwm
+++ b/profiles/plants/MA1239.1.pwm
@@ -0,0 +1,19 @@
+ -79 107 -84 -39
+ 11 -51 46 -25
+ -74 115 -118 -44
+ -50 112 -123 -52
+ 24 -112 55 -16
+ -99 104 -123 2
+ -66 135 -190 -84
+ -15 -138 59 27
+ -238 137 -83 -60
+ -72 169 -361 -374
+ -179 -462 179 -223
+ -462 195 -420 -462
+ -462 196 -462 -462
+ -214 -462 188 -403
+ -420 170 -462 -61
+ -387 195 -462 -462
+ 60 -462 98 -110
+ -166 95 -135 45
+ -9 63 -114 9
diff --git a/profiles/plants/MA1240.1.pwm b/profiles/plants/MA1240.1.pwm
index 0cdef8d..1c722e1 100644
--- a/profiles/plants/MA1240.1.pwm
+++ b/profiles/plants/MA1240.1.pwm
@@ -1,21 +1,21 @@
- 3 -29 -5 25
- -85 101 -95 -13
- -38 94 -107 -25
- 31 -70 31 -15
- -42 100 -95 -46
- -77 112 -135 -25
- -4 -57 29 17
- -67 99 -154 6
- -31 118 -384 -23
- 8 -116 28 36
- -203 126 -93 -26
- -263 191 -457 -516
- -191 -10000 165 -75
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -240 -10000 193 -10000
- -484 184 -10000 -138
- -207 189 -10000 -399
- 45 -10000 118 -143
- -170 112 -177 29
- 0 35 -73 16
+ 3 -27 -5 24
+ -81 98 -90 -13
+ -36 91 -101 -24
+ 30 -66 30 -14
+ -40 97 -90 -44
+ -73 109 -126 -24
+ -4 -54 28 17
+ -63 96 -144 6
+ -30 115 -322 -22
+ 8 -109 27 35
+ -186 123 -88 -25
+ -236 187 -363 -390
+ -176 -464 161 -71
+ -464 196 -464 -464
+ -464 196 -464 -464
+ -217 -464 189 -464
+ -376 180 -464 -129
+ -190 184 -464 -331
+ 43 -464 115 -133
+ -157 109 -163 28
+ 0 34 -69 16
diff --git a/profiles/plants/MA1241.1.pwm b/profiles/plants/MA1241.1.pwm
index df00d7c..04c06cc 100644
--- a/profiles/plants/MA1241.1.pwm
+++ b/profiles/plants/MA1241.1.pwm
@@ -1,16 +1,16 @@
- 24 32 -85 3
- 19 -87 5 35
- -235 125 -83 -22
- -304 186 -340 -275
- 187 -10000 -153 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 199 -10000 -10000 -562
- -10000 200 -10000 -10000
- 194 -10000 -268 -721
- 54 45 -87 -67
- 59 -61 -196 66
- 42 -78 -61 51
- 12 -10 -62 41
- -11 37 -102 36
+ 23 31 -80 3
+ 19 -82 5 34
+ -213 122 -79 -21
+ -268 182 -294 -245
+ 183 -466 -143 -466
+ -466 196 -466 -466
+ -466 196 -466 -466
+ -466 -466 196 -466
+ 195 -466 -466 -408
+ -466 196 -466 -466
+ 190 -466 -240 -444
+ 52 44 -82 -63
+ 57 -58 -180 64
+ 40 -74 -58 50
+ 12 -9 -59 39
+ -10 36 -96 35
diff --git a/profiles/plants/MA1242.1.pwm b/profiles/plants/MA1242.1.pwm
index e69de29..ff58a66 100644
--- a/profiles/plants/MA1242.1.pwm
+++ b/profiles/plants/MA1242.1.pwm
@@ -0,0 +1,11 @@
+ -149 133 -149 -37
+ -122 150 -254 -79
+ -2 -292 83 14
+ -451 189 -345 -268
+ -427 195 -451 -451
+ 150 -451 13 -451
+ -451 195 -451 -451
+ -451 194 -451 -388
+ -204 -451 188 -451
+ -224 183 -451 -235
+ -229 149 -407 -11
diff --git a/profiles/plants/MA1243.1.pwm b/profiles/plants/MA1243.1.pwm
index 4cf2669..f0ec603 100644
--- a/profiles/plants/MA1243.1.pwm
+++ b/profiles/plants/MA1243.1.pwm
@@ -1,17 +1,17 @@
- -18 38 -49 14
- 44 -55 -34 23
- -14 52 -70 6
- 5 55 -116 8
- -33 -80 -35 88
- 23 44 -109 1
- 78 114 -441 -522
- 183 -10000 -118 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 153 14 -10000 -622
- -10000 200 -10000 -10000
- 129 -227 -422 38
- -190 -49 -564 159
- 69 -101 -218 74
- 76 -120 5 -26
+ -17 37 -47 14
+ 42 -52 -32 22
+ -14 50 -66 6
+ 4 53 -109 8
+ -31 -75 -34 86
+ 22 42 -103 1
+ 76 111 -357 -394
+ 179 -467 -111 -467
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ 149 13 -467 -426
+ -467 196 -467 -467
+ 125 -207 -346 37
+ -175 -47 -409 155
+ 66 -96 -199 72
+ 73 -113 5 -24
diff --git a/profiles/plants/MA1244.1.pwm b/profiles/plants/MA1244.1.pwm
index e69de29..135f465 100644
--- a/profiles/plants/MA1244.1.pwm
+++ b/profiles/plants/MA1244.1.pwm
@@ -0,0 +1,19 @@
+ -29 -131 105 -50
+ -5 -94 88 -57
+ -10 60 -61 -16
+ -56 -115 101 -22
+ 26 -88 90 -135
+ 64 -1 -88 -15
+ 57 -228 30 12
+ 73 -269 35 -14
+ -52 -60 -296 133
+ -126 -289 101 52
+ 0 -224 138 -247
+ -426 193 -467 -347
+ -467 -467 195 -426
+ -467 -311 193 -467
+ -395 192 -467 -311
+ -381 -328 183 -192
+ -200 -49 153 -276
+ 37 96 -211 -93
+ -111 -189 145 -91
diff --git a/profiles/plants/MA1245.1.pwm b/profiles/plants/MA1245.1.pwm
index 441ca8a..57c02da 100644
--- a/profiles/plants/MA1245.1.pwm
+++ b/profiles/plants/MA1245.1.pwm
@@ -1,15 +1,15 @@
- -88 108 -94 -28
- -43 117 -206 -39
- 27 -157 29 30
- -130 123 -163 -11
- -121 170 -349 -219
- -116 -419 126 13
- -560 165 -38 -360
- -438 198 -560 -10000
- -254 -10000 192 -438
- -10000 197 -373 -10000
- -10000 200 -10000 -10000
- -223 -10000 192 -719
- -419 135 -373 40
- 3 126 -310 -112
- 101 -373 10 -24
+ -84 105 -89 -27
+ -41 114 -189 -38
+ 26 -146 28 29
+ -122 120 -152 -11
+ -114 166 -300 -200
+ -110 -343 123 13
+ -407 161 -36 -307
+ -354 193 -407 -465
+ -229 -465 188 -354
+ -465 193 -316 -465
+ -465 196 -465 -465
+ -204 -465 188 -443
+ -343 132 -316 38
+ 3 123 -272 -106
+ 98 -316 9 -23
diff --git a/profiles/plants/MA1245.2.pwm b/profiles/plants/MA1245.2.pwm
index e69de29..c91bc07 100644
--- a/profiles/plants/MA1245.2.pwm
+++ b/profiles/plants/MA1245.2.pwm
@@ -0,0 +1,11 @@
+ 4 -102 51 7
+ -147 126 -77 -59
+ -182 183 -381 -339
+ -126 -429 178 -337
+ -556 195 -368 -536
+ -366 195 -556 -503
+ -146 -536 182 -368
+ -503 195 -459 -397
+ -366 193 -536 -339
+ 41 -290 100 -91
+ -101 89 -132 32
diff --git a/profiles/plants/MA1246.1.pwm b/profiles/plants/MA1246.1.pwm
index 84c9c40..7218c9f 100644
--- a/profiles/plants/MA1246.1.pwm
+++ b/profiles/plants/MA1246.1.pwm
@@ -1,21 +1,21 @@
- 3 -73 6 41
- -161 103 -65 -1
- -177 175 -377 -194
- -83 -241 88 49
- -494 170 -124 -177
- -594 199 -10000 -10000
- -224 -10000 190 -394
- -10000 197 -10000 -361
- -10000 200 -10000 -694
- -241 -10000 191 -413
- -335 130 -261 36
- -71 131 -248 -44
- 75 -218 25 -14
- -4 92 -148 -37
- 12 63 -158 5
- 3 -113 61 -1
- -101 104 -113 -2
- -18 105 -135 -61
- -77 -61 86 -8
- -48 97 -126 -14
- -85 118 -148 -29
+ 3 -69 6 40
+ -149 100 -62 -1
+ -162 171 -314 -177
+ -78 -217 85 47
+ -375 166 -115 -162
+ -409 195 -453 -453
+ -202 -453 185 -324
+ -453 192 -453 -304
+ -453 195 -453 -429
+ -217 -453 186 -335
+ -287 126 -233 34
+ -67 127 -222 -42
+ 72 -198 24 -14
+ -4 89 -137 -35
+ 11 60 -146 5
+ 3 -106 59 -1
+ -94 101 -106 -2
+ -17 102 -126 -58
+ -72 -58 83 -8
+ -45 94 -118 -14
+ -80 115 -137 -28
diff --git a/profiles/plants/MA1247.1.pwm b/profiles/plants/MA1247.1.pwm
index 062bfaa..e46c25b 100644
--- a/profiles/plants/MA1247.1.pwm
+++ b/profiles/plants/MA1247.1.pwm
@@ -1,15 +1,15 @@
- -21 26 -241 81
- -62 -197 133 -79
- 51 -376 130 -463
- -422 196 -10000 -389
- -10000 -10000 200 -10000
- -463 -722 198 -622
- -10000 198 -10000 -405
- -10000 -10000 200 -722
- -331 -144 178 -341
- 43 108 -376 -109
- -182 -331 171 -149
- 15 -122 102 -119
- 29 15 -119 30
- -16 -182 98 -24
- -25 -111 99 -50
+ -20 25 -218 78
+ -59 -181 130 -75
+ 49 -318 126 -368
+ -346 191 -467 -327
+ -467 -467 196 -467
+ -368 -445 193 -426
+ -467 193 -467 -336
+ -467 -467 195 -445
+ -288 -134 174 -295
+ 41 105 -318 -102
+ -169 -288 167 -139
+ 14 -114 99 -112
+ 28 14 -112 29
+ -15 -169 95 -23
+ -24 -104 96 -48
diff --git a/profiles/plants/MA1248.1.pwm b/profiles/plants/MA1248.1.pwm
index c1c028b..828622b 100644
--- a/profiles/plants/MA1248.1.pwm
+++ b/profiles/plants/MA1248.1.pwm
@@ -1,20 +1,20 @@
- -39 67 -74 7
- -22 86 -113 -20
- 41 -45 -11 1
- -32 87 -88 -28
- -37 95 -111 -27
- 44 -63 -8 7
- -42 82 -104 1
- -37 96 -145 -14
- 57 -104 -6 10
- -42 87 -100 -11
- -48 111 -148 -38
- 29 -176 1 56
- -245 147 -151 -54
- -10000 200 -10000 -10000
- 190 -10000 -198 -615
- -10000 200 -10000 -10000
- -715 200 -10000 -10000
- -515 -715 199 -10000
- 107 27 -10000 -54
- -10000 197 -10000 -383
+ -38 65 -70 7
+ -21 83 -106 -19
+ 40 -43 -10 1
+ -30 85 -83 -27
+ -35 92 -104 -26
+ 43 -59 -8 7
+ -40 79 -98 1
+ -35 94 -135 -13
+ 55 -98 -6 9
+ -40 84 -94 -10
+ -45 108 -138 -36
+ 28 -163 1 54
+ -221 143 -140 -51
+ -463 196 -463 -463
+ 186 -463 -182 -422
+ -463 196 -463 -463
+ -441 195 -463 -463
+ -389 -441 194 -463
+ 104 26 -463 -51
+ -463 193 -463 -321
diff --git a/profiles/plants/MA1250.1.pwm b/profiles/plants/MA1250.1.pwm
index f876c69..f861375 100644
--- a/profiles/plants/MA1250.1.pwm
+++ b/profiles/plants/MA1250.1.pwm
@@ -1,15 +1,15 @@
- -124 126 -134 -35
- -58 129 -203 -63
- 56 -93 11 -11
- -148 129 -139 -29
- -91 137 -221 -58
- -24 -342 56 67
- -287 181 -295 -217
- -454 198 -10000 -10000
- 151 -10000 20 -712
- -10000 199 -712 -612
- -712 200 -10000 -10000
- -212 -10000 190 -454
- -91 139 -380 -38
- -273 150 -412 -7
- 77 -273 -13 30
+ -116 123 -125 -34
+ -55 125 -186 -60
+ 54 -88 10 -11
+ -138 125 -130 -28
+ -86 133 -202 -55
+ -23 -294 54 64
+ -254 177 -260 -198
+ -361 194 -462 -462
+ 147 -462 19 -439
+ -462 195 -439 -420
+ -439 195 -462 -462
+ -194 -462 185 -361
+ -86 136 -319 -36
+ -243 147 -338 -6
+ 74 -243 -13 29
diff --git a/profiles/plants/MA1251.1.pwm b/profiles/plants/MA1251.1.pwm
index 75e61b2..0a9996a 100644
--- a/profiles/plants/MA1251.1.pwm
+++ b/profiles/plants/MA1251.1.pwm
@@ -1,19 +1,19 @@
- -4 40 -66 10
- 23 -34 -25 26
- -4 3 -48 37
- -3 30 -67 22
- 31 -22 -11 -3
- -1 20 -57 25
- 22 34 -85 3
- 41 -117 -1 30
- -175 80 -79 46
- -463 197 -563 -621
- 189 -10000 -182 -721
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 193 -404 -10000 -304
- -10000 200 -10000 -10000
- 142 13 -340 -282
- 91 -57 -463 50
- 20 -15 -104 55
+ -4 39 -62 10
+ 22 -33 -24 25
+ -4 3 -46 36
+ -3 29 -64 21
+ 30 -21 -11 -3
+ -1 19 -54 24
+ 21 32 -81 3
+ 40 -110 -1 29
+ -162 78 -75 44
+ -367 193 -409 -425
+ 185 -466 -168 -444
+ -466 196 -466 -466
+ -466 196 -466 -466
+ -466 -466 196 -466
+ 189 -335 -466 -268
+ -466 196 -466 -466
+ 138 12 -294 -251
+ 88 -54 -367 48
+ 19 -14 -98 53
diff --git a/profiles/plants/MA1252.1.pwm b/profiles/plants/MA1252.1.pwm
index d3fc779..4f52376 100644
--- a/profiles/plants/MA1252.1.pwm
+++ b/profiles/plants/MA1252.1.pwm
@@ -1,15 +1,15 @@
- -47 104 -138 -24
- -51 109 -220 -8
- 31 -151 33 21
- -97 109 -169 8
- -162 173 -10000 -151
- -102 -10000 110 45
- -10000 173 -97 -258
- -690 200 -10000 -10000
- -390 -10000 197 -690
- -590 196 -690 -373
- -532 199 -10000 -10000
- -320 -10000 194 -432
- -390 112 -344 74
- -20 84 -181 8
- 70 -169 4 5
+ -45 100 -128 -23
+ -48 106 -199 -8
+ 30 -140 32 20
+ -91 105 -156 7
+ -149 169 -451 -140
+ -95 -451 107 43
+ -451 169 -91 -229
+ -427 195 -451 -451
+ -321 -451 192 -427
+ -407 192 -427 -311
+ -388 194 -451 -451
+ -276 -451 189 -345
+ -321 109 -292 71
+ -19 81 -166 7
+ 67 -156 4 5
diff --git a/profiles/plants/MA1253.1.pwm b/profiles/plants/MA1253.1.pwm
index 946fd69..a560e11 100644
--- a/profiles/plants/MA1253.1.pwm
+++ b/profiles/plants/MA1253.1.pwm
@@ -1,14 +1,14 @@
- 22 -39 -59 50
- 53 -113 -30 37
- -27 -85 28 49
- -188 -135 -209 163
- -249 -213 177 -249
- -10000 -10000 -481 199
- -10000 199 -10000 -613
- -10000 -10000 200 -10000
- -455 -10000 198 -10000
- -238 -135 -313 172
- -149 -281 166 -158
- 1 -79 93 -98
- 29 23 -104 16
- 23 -96 42 -2
+ 21 -37 -56 48
+ 51 -106 -29 35
+ -26 -80 27 47
+ -173 -126 -191 159
+ -224 -195 173 -224
+ -463 -463 -374 194
+ -463 195 -463 -421
+ -463 -463 196 -463
+ -362 -463 194 -463
+ -215 -126 -274 168
+ -139 -250 162 -147
+ 1 -75 91 -93
+ 28 23 -98 16
+ 22 -91 40 -2
diff --git a/profiles/plants/MA1256.1.pwm b/profiles/plants/MA1256.1.pwm
index e69de29..9b2a15a 100644
--- a/profiles/plants/MA1256.1.pwm
+++ b/profiles/plants/MA1256.1.pwm
@@ -0,0 +1,21 @@
+ -22 57 -31 -22
+ -16 -115 91 -37
+ -9 -75 86 -62
+ 9 35 -69 6
+ -16 -80 72 -18
+ 34 -99 72 -79
+ 69 -18 -142 18
+ 81 -295 18 -2
+ 85 -288 29 -26
+ -107 46 -394 106
+ -327 -368 169 -74
+ -142 -467 182 -409
+ -467 195 -467 -445
+ -467 -467 195 -445
+ -467 -467 195 -445
+ -357 190 -467 -288
+ -336 -368 175 -113
+ -111 -54 139 -219
+ 59 32 -150 -17
+ -58 -169 120 -46
+ 5 -83 73 -43
diff --git a/profiles/plants/MA1257.1.pwm b/profiles/plants/MA1257.1.pwm
index 8e7c0b1..3937275 100644
--- a/profiles/plants/MA1257.1.pwm
+++ b/profiles/plants/MA1257.1.pwm
@@ -1,21 +1,21 @@
- -62 83 -81 1
- -64 -253 135 -64
- -35 -147 128 -121
- -39 93 -101 -27
- -74 -212 131 -52
- -39 -114 126 -139
- 4 78 -183 -5
- -42 -212 96 11
- 21 -191 96 -67
- -32 27 -303 91
- -93 -453 146 -58
- 27 -321 138 -342
- -242 184 -10000 -207
- -10000 -10000 199 -512
- -379 -10000 197 -712
- -312 183 -10000 -159
- -512 -10000 189 -191
- -216 -203 180 -431
- 56 87 -453 -59
- -142 -412 166 -131
- 21 -97 93 -123
+ -59 80 -77 1
+ -61 -227 131 -61
+ -33 -137 124 -113
+ -37 91 -95 -26
+ -70 -193 127 -49
+ -37 -107 123 -130
+ 4 76 -169 -5
+ -40 -193 93 11
+ 21 -175 93 -64
+ -31 26 -266 88
+ -87 -360 143 -55
+ 26 -279 134 -294
+ -218 179 -462 -190
+ -462 -462 194 -387
+ -319 -462 193 -439
+ -272 179 -462 -148
+ -387 -462 185 -175
+ -197 -186 176 -349
+ 54 84 -360 -56
+ -132 -338 162 -122
+ 21 -91 90 -116
diff --git a/profiles/plants/MA1258.1.pwm b/profiles/plants/MA1258.1.pwm
index 33cca3d..0d64055 100644
--- a/profiles/plants/MA1258.1.pwm
+++ b/profiles/plants/MA1258.1.pwm
@@ -1,21 +1,21 @@
- 19 -16 -51 33
- -7 -82 74 -30
- 9 -90 49 -1
- -50 4 -93 80
- 19 -143 1 57
- 131 -401 16 -154
- 59 -293 -205 108
- -10000 -10000 200 -10000
- -301 -10000 64 121
- -618 200 -10000 -10000
- -10000 -10000 200 -10000
- -718 -10000 200 -10000
- -10000 -90 -10000 179
- -318 -254 151 -19
- 0 -109 88 -52
- 55 -17 -112 25
- -19 -160 89 -9
- 4 -97 83 -54
- 14 -17 -43 34
- 4 -74 63 -28
- 33 -67 50 -51
+ 19 -15 -49 32
+ -7 -78 72 -29
+ 9 -85 47 -1
+ -47 4 -88 78
+ 19 -133 1 55
+ 127 -333 15 -143
+ 57 -260 -188 105
+ -465 -465 196 -465
+ -265 -465 62 118
+ -424 195 -465 -465
+ -465 -465 196 -465
+ -443 -465 195 -465
+ -465 -85 -465 175
+ -278 -229 147 -19
+ 0 -103 85 -50
+ 53 -16 -105 24
+ -19 -149 87 -9
+ 4 -92 80 -51
+ 13 -16 -41 33
+ 4 -70 61 -26
+ 31 -64 49 -49
diff --git a/profiles/plants/MA1259.1.pwm b/profiles/plants/MA1259.1.pwm
index e69de29..6715965 100644
--- a/profiles/plants/MA1259.1.pwm
+++ b/profiles/plants/MA1259.1.pwm
@@ -0,0 +1,15 @@
+ 16 -88 61 -31
+ 25 -63 22 0
+ 43 -29 -111 45
+ 50 -149 -20 45
+ -45 -92 35 55
+ -305 -109 -352 173
+ -464 -464 196 -464
+ -170 -442 -222 178
+ -464 196 -464 -464
+ -464 -464 196 -464
+ -464 -464 196 -464
+ -442 -152 -464 183
+ -270 -352 187 -341
+ 17 -103 108 -186
+ 20 6 -97 38
diff --git a/profiles/plants/MA1260.1.pwm b/profiles/plants/MA1260.1.pwm
index fb5ab29..ae44ca5 100644
--- a/profiles/plants/MA1260.1.pwm
+++ b/profiles/plants/MA1260.1.pwm
@@ -1,21 +1,21 @@
- -42 -76 81 -14
- 1 -65 50 -8
- 4 -7 -21 21
- -26 -81 91 -49
- -11 -78 63 -8
- -8 8 -56 40
- -15 -156 100 -39
- 1 -67 52 -10
- 12 18 -125 44
- 6 -135 58 10
- -8 -179 78 6
- -120 -72 -376 153
- -10000 -10000 200 -10000
- -29 -476 -2 111
- -10000 200 -10000 -708
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -508 -362 -10000 196
- -549 -10000 199 -10000
- -38 -159 138 -172
- 55 -8 -117 20
+ -40 -72 78 -13
+ 1 -62 48 -8
+ 4 -7 -20 20
+ -25 -77 89 -47
+ -11 -73 61 -8
+ -8 8 -53 38
+ -14 -144 97 -37
+ 1 -64 50 -10
+ 12 17 -117 43
+ 6 -126 56 10
+ -8 -165 76 6
+ -112 -68 -316 149
+ -460 -460 195 -460
+ -27 -371 -2 108
+ -460 195 -460 -437
+ -460 -460 195 -460
+ -460 -460 195 -460
+ -385 -307 -460 191
+ -400 -460 195 -460
+ -36 -147 134 -159
+ 53 -8 -110 19
diff --git a/profiles/plants/MA1261.1.pwm b/profiles/plants/MA1261.1.pwm
index be73314..cb9d58f 100644
--- a/profiles/plants/MA1261.1.pwm
+++ b/profiles/plants/MA1261.1.pwm
@@ -1,15 +1,15 @@
- -2 45 -120 28
- -41 -79 28 54
- 18 -230 72 2
- 21 -20 -130 65
- -179 2 -111 116
- 67 -10000 121 -352
- -10000 180 -10000 -94
- -10000 -10000 198 -411
- -10000 -10000 200 -10000
- -10000 162 -10000 -11
- -10000 -352 137 42
- -46 -10000 162 -230
- 25 62 -194 2
- -10000 -179 140 10
- -46 -41 96 -79
+ -2 42 -106 26
+ -37 -71 26 50
+ 16 -191 68 2
+ 20 -18 -114 60
+ -153 2 -98 109
+ 63 -367 115 -266
+ -367 172 -367 -84
+ -367 -367 189 -292
+ -367 -367 191 -367
+ -367 154 -367 -10
+ -367 -266 130 39
+ -42 -367 154 -191
+ 23 58 -165 2
+ -367 -153 133 9
+ -42 -37 90 -71
diff --git a/profiles/plants/MA1262.1.pwm b/profiles/plants/MA1262.1.pwm
index 80a7e9f..b7f8914 100644
--- a/profiles/plants/MA1262.1.pwm
+++ b/profiles/plants/MA1262.1.pwm
@@ -1,21 +1,21 @@
- -59 89 -103 -2
- -35 90 -101 -24
- 18 -86 33 8
- -69 108 -101 -37
- -38 98 -101 -38
- 12 -84 56 -19
- -119 113 -124 -7
- -54 123 -246 -33
- 12 -169 35 41
- -213 130 -81 -45
- -33 160 -405 -313
- -182 -10000 177 -176
- -563 199 -10000 -622
- -441 198 -10000 -10000
- -179 -10000 189 -622
- -10000 193 -10000 -231
- -10000 200 -10000 -10000
- 25 -10000 125 -119
- -252 104 -152 51
- -29 75 -93 -5
- 55 -236 51 -13
+ -56 87 -97 -2
+ -33 88 -95 -23
+ 18 -81 32 7
+ -66 105 -95 -35
+ -37 95 -95 -37
+ 12 -80 55 -19
+ -112 110 -116 -6
+ -52 119 -223 -32
+ 12 -157 34 39
+ -195 127 -77 -43
+ -32 156 -336 -275
+ -169 -467 173 -163
+ -409 194 -467 -426
+ -356 194 -467 -467
+ -166 -467 184 -426
+ -467 188 -467 -210
+ -467 196 -467 -467
+ 24 -467 121 -112
+ -227 101 -141 49
+ -27 73 -88 -4
+ 53 -214 49 -12
diff --git a/profiles/plants/MA1263.1.pwm b/profiles/plants/MA1263.1.pwm
index e69de29..0c33c70 100644
--- a/profiles/plants/MA1263.1.pwm
+++ b/profiles/plants/MA1263.1.pwm
@@ -0,0 +1,14 @@
+ 61 -252 -4 41
+ -17 -185 -16 96
+ -147 -161 86 58
+ -467 -467 196 -467
+ -34 -263 19 93
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 195 -445
+ -467 -10 -467 158
+ -346 -269 180 -185
+ -41 -103 130 -179
+ 39 19 -117 15
+ -42 -137 106 -36
+ 27 -89 70 -65
diff --git a/profiles/plants/MA1264.1.pwm b/profiles/plants/MA1264.1.pwm
index 1a5362e..26240d7 100644
--- a/profiles/plants/MA1264.1.pwm
+++ b/profiles/plants/MA1264.1.pwm
@@ -1,15 +1,15 @@
- -25 53 -165 49
- -11 -132 91 -32
- 36 -172 115 -230
- -92 118 -621 25
- -521 -10000 199 -10000
- -143 -621 185 -10000
- -562 195 -10000 -304
- -10000 -10000 200 -10000
- -10000 -521 199 -10000
- -351 183 -10000 -148
- -489 -462 177 -94
- -96 -80 152 -440
- 37 64 -178 -23
- -72 -256 144 -100
- -5 -153 111 -90
+ -24 51 -154 47
+ -10 -124 88 -31
+ 34 -159 111 -209
+ -87 115 -425 24
+ -393 -466 195 -466
+ -133 -425 181 -466
+ -408 190 -466 -268
+ -466 -466 196 -466
+ -466 -393 195 -466
+ -301 179 -466 -138
+ -380 -367 173 -89
+ -91 -76 148 -356
+ 36 62 -165 -22
+ -68 -231 141 -94
+ -5 -143 108 -85
diff --git a/profiles/plants/MA1265.1.pwm b/profiles/plants/MA1265.1.pwm
index e69de29..f493e74 100644
--- a/profiles/plants/MA1265.1.pwm
+++ b/profiles/plants/MA1265.1.pwm
@@ -0,0 +1,20 @@
+ -184 125 -131 -10
+ -326 188 -466 -251
+ 170 -466 -64 -367
+ -466 196 -466 -466
+ -466 196 -466 -466
+ -466 -466 196 -466
+ 135 -50 -380 -57
+ -466 196 -466 -466
+ 149 -356 -27 -184
+ 56 40 -93 -54
+ 56 21 -194 14
+ 44 -120 -1 29
+ -11 53 -79 7
+ -37 92 -181 8
+ 35 -61 23 -16
+ -4 47 -61 -2
+ -45 88 -88 -17
+ 28 -37 19 -19
+ 4 37 -54 -1
+ 1 63 -81 -18
diff --git a/profiles/plants/MA1265.2.pwm b/profiles/plants/MA1265.2.pwm
index 82c40d2..733dad9 100644
--- a/profiles/plants/MA1265.2.pwm
+++ b/profiles/plants/MA1265.2.pwm
@@ -1,12 +1,12 @@
- 30 -106 23 16
- -123 96 -99 16
- -355 191 -408 -339
- 188 -10000 -206 -367
- -667 199 -725 -625
- -567 199 -10000 -667
- -508 -825 198 -667
- 156 -111 -367 -96
- -479 198 -667 -667
- 172 -334 -121 -247
- 52 25 -75 -36
- 33 12 -105 23
+ 29 -102 22 16
+ -117 94 -95 16
+ -317 188 -355 -305
+ 185 -517 -194 -326
+ -474 196 -487 -462
+ -441 196 -517 -474
+ -414 -501 195 -474
+ 153 -106 -326 -93
+ -399 195 -474 -474
+ 169 -302 -115 -230
+ 51 24 -72 -34
+ 33 11 -101 22
diff --git a/profiles/plants/MA1266.1.pwm b/profiles/plants/MA1266.1.pwm
index d95499e..d9c33a8 100644
--- a/profiles/plants/MA1266.1.pwm
+++ b/profiles/plants/MA1266.1.pwm
@@ -1,15 +1,15 @@
- -47 88 -42 -53
- -47 68 -97 22
- -17 -84 53 15
- -109 75 -191 66
- -77 122 -184 -30
- 15 -181 58 15
- -329 114 -181 50
- -127 134 -105 -82
- -256 -10000 187 -261
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -39 116 0
- -10000 193 -10000 -239
- -53 -16 39 13
+ -45 85 -40 -50
+ -45 66 -92 21
+ -16 -80 51 14
+ -103 73 -176 64
+ -73 119 -170 -29
+ 14 -167 56 14
+ -286 110 -167 48
+ -119 131 -99 -78
+ -230 -466 183 -235
+ -466 196 -466 -466
+ -466 196 -466 -466
+ -466 -466 196 -466
+ -466 -37 113 0
+ -466 189 -466 -217
+ -50 -15 38 13
diff --git a/profiles/plants/MA1267.1.pwm b/profiles/plants/MA1267.1.pwm
index 1065f89..9702334 100644
--- a/profiles/plants/MA1267.1.pwm
+++ b/profiles/plants/MA1267.1.pwm
@@ -1,29 +1,29 @@
- 2 -36 -105 79
- -11 -12 -127 80
- -18 -65 -68 89
- -71 -18 -161 112
- -51 -7 -183 105
- -83 -52 -186 130
- -55 -39 -218 122
- -3 -33 -201 98
- -16 0 -127 76
- -48 30 -222 88
- -122 -10 -252 130
- -75 -194 -222 155
- -105 -176 -209 158
- -290 -36 -258 155
- -40 -51 -247 124
- 96 -92 -48 -30
- -722 197 -390 -722
- -722 -283 -722 194
- -10000 -10000 -10000 200
- -10000 -722 -10000 200
- -51 -276 -722 165
- -139 -94 -80 133
- -29 -11 -31 54
- -8 -7 -54 50
- -17 -47 -129 98
- -27 -33 -111 93
- -47 -48 -88 101
- -2 -52 -147 97
- 29 -86 -158 92
+ 2 -35 -99 77
+ -11 -12 -119 78
+ -17 -62 -65 87
+ -68 -17 -150 109
+ -48 -7 -169 102
+ -79 -50 -172 127
+ -52 -37 -199 119
+ -3 -31 -185 95
+ -15 0 -119 73
+ -46 29 -203 85
+ -115 -10 -227 127
+ -71 -178 -203 151
+ -99 -163 -192 154
+ -257 -35 -232 151
+ -38 -48 -223 120
+ 93 -87 -46 -29
+ -445 193 -327 -445
+ -445 -252 -445 190
+ -467 -467 -467 196
+ -467 -445 -467 195
+ -48 -247 -445 161
+ -130 -89 -75 130
+ -28 -11 -30 52
+ -8 -7 -51 48
+ -16 -45 -121 95
+ -26 -31 -105 91
+ -45 -46 -83 98
+ -2 -50 -137 94
+ 28 -82 -147 90
diff --git a/profiles/plants/MA1268.1.pwm b/profiles/plants/MA1268.1.pwm
index e69de29..4c7bd7c 100644
--- a/profiles/plants/MA1268.1.pwm
+++ b/profiles/plants/MA1268.1.pwm
@@ -0,0 +1,27 @@
+ -18 -30 -130 92
+ -11 -77 -119 103
+ -68 -144 -82 129
+ -94 -169 -38 126
+ -107 79 -246 68
+ 119 -99 -83 -62
+ -467 196 -467 -467
+ -467 -237 -467 190
+ -467 -394 -467 195
+ -467 -467 -467 196
+ -71 -252 -346 164
+ -85 -51 -123 121
+ -58 72 -125 33
+ -85 2 -210 114
+ -113 -85 -252 149
+ -111 -119 -232 153
+ -78 -123 -195 145
+ -59 -43 -188 122
+ -88 -7 -123 105
+ -37 -42 -144 108
+ -97 -55 -107 122
+ -85 -82 -132 131
+ -56 -92 -142 127
+ -29 -56 -125 106
+ -37 -71 -83 104
+ -15 -58 -97 94
+ 4 -28 -152 85
diff --git a/profiles/plants/MA1269.1.pwm b/profiles/plants/MA1269.1.pwm
index 233f88e..1c160b2 100644
--- a/profiles/plants/MA1269.1.pwm
+++ b/profiles/plants/MA1269.1.pwm
@@ -1,14 +1,14 @@
- 28 -47 37 -37
- 142 -106 -167 -93
- 122 -442 -247 53
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -53 -26 -140 107
- 91 -332 -15 16
- 65 -147 64 -94
- -11 127 -174 -145
- -72 -164 -218 151
- -116 -227 -174 161
- -121 -156 -264 162
+ 27 -45 36 -35
+ 139 -100 -156 -88
+ 119 -357 -224 52
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 196 -467
+ -50 -25 -131 104
+ 88 -289 -15 16
+ 63 -138 62 -89
+ -11 123 -161 -135
+ -68 -153 -200 148
+ -109 -207 -161 157
+ -113 -145 -237 158
diff --git a/profiles/plants/MA1270.1.pwm b/profiles/plants/MA1270.1.pwm
index e69de29..c2b5519 100644
--- a/profiles/plants/MA1270.1.pwm
+++ b/profiles/plants/MA1270.1.pwm
@@ -0,0 +1,19 @@
+ -54 -89 -7 86
+ -94 1 -145 108
+ 23 -41 -224 90
+ 106 -12 -78 -128
+ -467 196 -467 -467
+ -467 -467 -467 196
+ -467 -467 -445 195
+ -467 -467 -467 196
+ -15 -467 -467 159
+ -179 -135 -328 169
+ -21 21 22 -31
+ -21 48 -46 3
+ -75 32 -131 81
+ -81 -58 -133 124
+ -71 -135 -126 137
+ -50 -31 -153 110
+ -24 -67 -135 109
+ -18 -67 -73 91
+ -91 -16 -37 84
diff --git a/profiles/plants/MA1272.1.pwm b/profiles/plants/MA1272.1.pwm
index e69de29..0227d63 100644
--- a/profiles/plants/MA1272.1.pwm
+++ b/profiles/plants/MA1272.1.pwm
@@ -0,0 +1,21 @@
+ -50 -40 -104 104
+ -49 -21 -122 99
+ -32 21 -148 75
+ -75 -22 -192 119
+ -60 -39 -179 119
+ -56 -52 -179 122
+ -35 -26 -100 91
+ -39 -43 -124 105
+ -78 -23 -167 117
+ -43 -111 -128 125
+ -81 -111 -120 134
+ -211 -18 -264 145
+ 34 -63 -170 83
+ 82 -43 -22 -67
+ -467 196 -467 -467
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -20 -289 -467 156
+ -126 -161 -111 148
+ -71 6 1 42
diff --git a/profiles/plants/MA1273.1.pwm b/profiles/plants/MA1273.1.pwm
index 29b1166..c098164 100644
--- a/profiles/plants/MA1273.1.pwm
+++ b/profiles/plants/MA1273.1.pwm
@@ -1,19 +1,19 @@
- 95 -109 -50 -16
- 91 -61 -64 -28
- 102 -103 -47 -39
- 66 -100 -4 -7
- 52 -44 15 -47
- 167 -198 -164 -209
- 196 -10000 -10000 -305
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -42 -10000 163 -270
- -75 76 -242 61
- 121 -132 -109 -29
- 138 -198 -105 -61
- 124 -118 -158 -21
- 102 -176 -51 -3
- 93 -100 -33 -33
- 83 -67 -32 -33
+ 92 -103 -47 -15
+ 88 -58 -61 -27
+ 99 -98 -45 -37
+ 64 -94 -4 -7
+ 50 -42 15 -45
+ 163 -182 -152 -192
+ 191 -467 -467 -269
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 196 -467
+ -40 -467 159 -242
+ -71 74 -219 59
+ 118 -123 -103 -28
+ 135 -182 -99 -58
+ 121 -111 -147 -20
+ 99 -163 -49 -3
+ 90 -94 -31 -31
+ 80 -64 -30 -31
diff --git a/profiles/plants/MA1274.1.pwm b/profiles/plants/MA1274.1.pwm
index 85c51fc..6909e99 100644
--- a/profiles/plants/MA1274.1.pwm
+++ b/profiles/plants/MA1274.1.pwm
@@ -1,21 +1,21 @@
- -140 -54 -72 122
- -132 -54 -623 154
- -20 -71 -184 116
- 97 -116 -106 16
- -723 189 -623 -184
- -723 -271 -10000 194
- -10000 -364 -10000 197
- -723 -723 -10000 200
- -80 -284 -623 171
- -106 -57 -210 139
- -13 5 -82 57
- -3 0 -223 85
- -125 11 -150 110
- -127 -61 -210 143
- -127 -80 -523 158
- -125 -26 -723 145
- -61 -135 -153 138
- -93 -27 -130 116
- -123 -45 -118 126
- -38 -53 -177 117
- -30 -84 -132 115
+ -131 -52 -68 119
+ -124 -52 -426 150
+ -19 -67 -170 113
+ 94 -109 -100 16
+ -445 185 -426 -170
+ -445 -242 -467 190
+ -467 -311 -467 193
+ -445 -445 -467 195
+ -76 -253 -426 167
+ -100 -54 -192 135
+ -13 5 -78 55
+ -3 0 -203 83
+ -118 11 -140 107
+ -120 -58 -192 140
+ -120 -76 -395 154
+ -118 -25 -445 142
+ -58 -126 -143 135
+ -88 -26 -122 113
+ -115 -43 -111 123
+ -37 -50 -164 114
+ -29 -79 -124 112
diff --git a/profiles/plants/MA1275.1.pwm b/profiles/plants/MA1275.1.pwm
index e69de29..d4332da 100644
--- a/profiles/plants/MA1275.1.pwm
+++ b/profiles/plants/MA1275.1.pwm
@@ -0,0 +1,11 @@
+ 7 -6 4 -6
+ -18 7 43 -48
+ 116 -79 -73 -78
+ 111 -426 -410 79
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 182 -467 -133 -467
+ -467 -467 196 -467
+ -467 -76 -242 167
+ 116 -445 58 -211
+ 96 -161 5 -53
diff --git a/profiles/plants/MA1276.1.pwm b/profiles/plants/MA1276.1.pwm
index 3fa87e6..f3d3239 100644
--- a/profiles/plants/MA1276.1.pwm
+++ b/profiles/plants/MA1276.1.pwm
@@ -1,11 +1,11 @@
- -48 46 32 -60
- 164 -523 -54 -258
- 122 -10000 -10000 75
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -623 -464 55 131
- 17 -227 40 42
- 122 -164 -14 -116
- 88 -19 -116 -26
+ -46 44 31 -57
+ 160 -395 -51 -232
+ 118 -467 -467 72
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 196 -467
+ -426 -369 53 128
+ 17 -207 39 41
+ 118 -153 -13 -109
+ 86 -18 -109 -25
diff --git a/profiles/plants/MA1277.1.pwm b/profiles/plants/MA1277.1.pwm
index d99e729..627e6e3 100644
--- a/profiles/plants/MA1277.1.pwm
+++ b/profiles/plants/MA1277.1.pwm
@@ -1,21 +1,21 @@
- 90 -66 -62 -23
- 106 -107 -49 -48
- 115 -157 -35 -62
- 109 -97 -49 -62
- 88 -113 -29 -18
- 14 -10 44 -72
- 138 -163 -46 -154
- 165 -10000 -563 -24
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 195 -10000 -289 -10000
- -10000 -10000 200 -10000
- -63 -40 -66 97
- 132 -305 -72 -36
- 120 -252 25 -157
- 136 -152 -84 -91
- 113 -111 -117 -15
- 98 -154 -14 -36
- 95 -77 -18 -74
- 84 -93 -65 7
- 88 -126 2 -45
+ 87 -63 -59 -22
+ 103 -101 -47 -45
+ 112 -146 -33 -59
+ 106 -92 -47 -59
+ 86 -106 -27 -18
+ 14 -9 43 -69
+ 135 -152 -44 -144
+ 161 -467 -409 -23
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 191 -467 -257 -467
+ -467 -467 196 -467
+ -60 -38 -63 94
+ 128 -268 -69 -34
+ 117 -227 24 -146
+ 132 -141 -80 -86
+ 110 -104 -110 -14
+ 95 -144 -13 -34
+ 93 -73 -18 -70
+ 81 -88 -62 7
+ 85 -119 2 -43
diff --git a/profiles/plants/MA1278.1.pwm b/profiles/plants/MA1278.1.pwm
index 9878470..b6dafdb 100644
--- a/profiles/plants/MA1278.1.pwm
+++ b/profiles/plants/MA1278.1.pwm
@@ -1,21 +1,21 @@
- -5 -14 -91 67
- -21 -13 -53 61
- -71 17 -87 78
- -43 37 -140 67
- -91 3 -184 112
- -89 -49 -127 122
- -79 13 -214 107
- -56 -15 -102 95
- -50 -33 -127 106
- -72 -8 -156 107
- -41 -116 -110 122
- -116 -85 -112 134
- -167 17 -314 129
- 10 -69 -180 101
- 44 -4 7 -69
- -10000 200 -10000 -10000
- -10000 -342 -10000 197
- -10000 -442 -10000 198
- -10000 -10000 -10000 200
- -5 -237 -10000 151
- -135 -51 -53 115
+ -5 -14 -86 65
+ -20 -13 -50 59
+ -67 17 -83 75
+ -41 36 -131 64
+ -86 3 -170 108
+ -84 -46 -120 119
+ -75 12 -196 104
+ -53 -15 -96 92
+ -48 -32 -120 103
+ -68 -8 -145 104
+ -39 -109 -104 119
+ -109 -81 -106 131
+ -156 17 -276 126
+ 10 -66 -167 99
+ 43 -4 6 -66
+ -467 196 -467 -467
+ -467 -296 -467 192
+ -467 -357 -467 194
+ -467 -467 -467 196
+ -5 -215 -467 147
+ -126 -49 -50 111
diff --git a/profiles/plants/MA1279.1.pwm b/profiles/plants/MA1279.1.pwm
index 03d0591..6ab9fd7 100644
--- a/profiles/plants/MA1279.1.pwm
+++ b/profiles/plants/MA1279.1.pwm
@@ -1,21 +1,21 @@
- 78 -87 -10 -31
- 79 -80 -35 -13
- 115 -132 -51 -56
- 108 -127 -57 -33
- 113 -100 -31 -100
- 113 -145 -40 -56
- 100 -130 -7 -66
- 74 -104 -3 -22
- 29 -67 41 -29
- 155 -214 -108 -145
- 170 -423 -723 -51
- 200 -723 -10000 -10000
- 200 -10000 -723 -10000
- 198 -10000 -406 -10000
- -10000 -10000 200 -10000
- -171 -210 -10 134
- 63 -277 86 -104
- 112 -30 -187 -42
- 142 -89 -198 -89
- 118 -108 -147 -15
- 104 -125 -33 -45
+ 75 -83 -10 -30
+ 76 -76 -33 -13
+ 112 -124 -49 -53
+ 105 -120 -54 -32
+ 110 -94 -30 -94
+ 110 -135 -38 -53
+ 98 -122 -7 -63
+ 72 -98 -3 -21
+ 28 -64 39 -27
+ 151 -196 -102 -135
+ 166 -347 -445 -49
+ 195 -445 -467 -467
+ 195 -467 -445 -467
+ 194 -467 -337 -467
+ -467 -467 196 -467
+ -158 -192 -10 130
+ 61 -247 84 -98
+ 108 -29 -173 -40
+ 138 -84 -182 -84
+ 115 -102 -138 -15
+ 101 -118 -32 -43
diff --git a/profiles/plants/MA1280.1.pwm b/profiles/plants/MA1280.1.pwm
index 1c4e42c..c4557a6 100644
--- a/profiles/plants/MA1280.1.pwm
+++ b/profiles/plants/MA1280.1.pwm
@@ -1,14 +1,14 @@
- -8 37 21 -74
- 182 -314 -214 -291
- 160 -10000 -564 -9
- 200 -10000 -10000 -723
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -277 -202 48 115
- 36 -271 -24 78
- 137 -223 -20 -158
- 101 -56 -91 -38
- 97 -96 -153 25
- 80 -64 -98 15
- 86 -79 -145 30
+ -8 36 21 -70
+ 178 -276 -196 -258
+ 157 -467 -410 -9
+ 195 -467 -467 -445
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 196 -467
+ -247 -186 46 111
+ 35 -242 -23 75
+ 133 -203 -19 -148
+ 99 -53 -86 -37
+ 94 -91 -143 24
+ 78 -61 -93 14
+ 84 -75 -135 29
diff --git a/profiles/plants/MA1281.1.pwm b/profiles/plants/MA1281.1.pwm
index e69de29..2997d92 100644
--- a/profiles/plants/MA1281.1.pwm
+++ b/profiles/plants/MA1281.1.pwm
@@ -0,0 +1,21 @@
+ 73 -55 -14 -40
+ 142 -213 -49 -141
+ 164 -380 -285 -55
+ 195 -457 -433 -413
+ 193 -457 -457 -310
+ 180 -413 -130 -457
+ -413 -457 194 -413
+ 21 -45 -62 54
+ 121 -263 -81 -7
+ 148 -457 -29 -150
+ 142 -72 -108 -204
+ 128 -159 -36 -110
+ 131 -239 -65 -54
+ 78 -166 20 -29
+ 99 -101 -40 -39
+ 132 -263 -31 -89
+ 140 -457 -77 -45
+ 138 -141 -29 -233
+ 98 -204 -22 -12
+ 106 -106 12 -153
+ 100 -159 -11 -43
diff --git a/profiles/plants/MA1282.1.pwm b/profiles/plants/MA1282.1.pwm
index 8e3fdec..aa9f4ce 100644
--- a/profiles/plants/MA1282.1.pwm
+++ b/profiles/plants/MA1282.1.pwm
@@ -1,13 +1,13 @@
- -93 -185 156 -202
- -244 -156 -222 171
- -156 -185 158 -132
- -10000 -10000 199 -502
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 161 -63 -10000 -170
- -10000 199 -10000 -502
- -10000 200 -10000 -10000
- 188 -10000 -170 -10000
- -10000 185 -244 -222
- 81 -102 -144 47
- 62 -170 -27 40
+ -83 -158 148 -170
+ -200 -135 -184 162
+ -135 -158 150 -116
+ -363 -363 190 -320
+ -363 -363 191 -363
+ -363 -363 191 -363
+ 153 -57 -363 -146
+ -363 190 -363 -320
+ -363 191 -363 -363
+ 180 -363 -146 -363
+ -363 176 -200 -184
+ 76 -91 -125 44
+ 58 -146 -24 38
diff --git a/profiles/plants/MA1283.1.pwm b/profiles/plants/MA1283.1.pwm
index e69de29..47f22c9 100644
--- a/profiles/plants/MA1283.1.pwm
+++ b/profiles/plants/MA1283.1.pwm
@@ -0,0 +1,20 @@
+ 128 -100 -100 -80
+ 13 40 13 -100
+ 163 -297 -124 -151
+ 22 -186 55 13
+ 149 -186 -124 -100
+ -100 -100 114 -33
+ -20 22 55 -100
+ 82 -186 3 -8
+ -186 -20 40 62
+ -297 -297 186 -297
+ -297 -297 -297 186
+ -186 -297 179 -297
+ -297 -297 186 -297
+ -297 -297 186 -297
+ 62 -297 55 -20
+ -297 186 -297 -297
+ -297 186 -297 -297
+ -297 186 -297 -297
+ 173 -297 -124 -297
+ -297 186 -297 -297
diff --git a/profiles/plants/MA1284.1.pwm b/profiles/plants/MA1284.1.pwm
index 0c1f4d3..589419a 100644
--- a/profiles/plants/MA1284.1.pwm
+++ b/profiles/plants/MA1284.1.pwm
@@ -1,30 +1,30 @@
- 60 -176 -57 60
- -257 -176 182 -10000
- -10000 -198 -225 182
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -157 119 -157 7
- -10000 198 -457 -10000
- -10000 200 -10000 -10000
- -140 179 -10000 -257
- 113 13 -157 -140
- -66 136 -357 -48
- -57 52 -11 -5
- -87 -11 -98 102
- -18 64 -66 -11
- -25 52 -125 38
- -57 24 -157 86
- -5 86 -111 -40
- 7 -40 -98 75
- -57 38 7 -5
- -11 -11 -48 52
- -5 13 -111 56
- -66 -87 60 38
- -25 -111 75 2
- -66 -66 60 29
- 24 60 -125 -18
- -32 64 -66 2
- -11 19 -40 24
- 60 -32 -18 -32
- -98 56 -157 75
+ 55 -147 -51 55
+ -202 -147 172 -343
+ -343 -163 -182 172
+ -343 -343 190 -343
+ -343 -343 190 -343
+ -343 -343 190 -343
+ -133 111 -133 7
+ -343 188 -293 -343
+ -343 190 -343 -343
+ -120 169 -343 -202
+ 106 12 -133 -120
+ -59 128 -256 -43
+ -51 48 -10 -4
+ -76 -10 -86 95
+ -16 59 -59 -10
+ -22 48 -107 35
+ -51 22 -133 80
+ -4 80 -96 -36
+ 7 -36 -86 70
+ -51 35 7 -4
+ -10 -10 -43 48
+ -4 12 -96 52
+ -59 -76 55 35
+ -22 -96 70 1
+ -59 -59 55 26
+ 22 55 -107 -16
+ -29 59 -59 1
+ -10 17 -36 22
+ 55 -29 -16 -29
+ -86 52 -133 70
diff --git a/profiles/plants/MA1285.1.pwm b/profiles/plants/MA1285.1.pwm
index e69de29..5282960 100644
--- a/profiles/plants/MA1285.1.pwm
+++ b/profiles/plants/MA1285.1.pwm
@@ -0,0 +1,21 @@
+ -34 93 -67 -55
+ -21 102 -74 -97
+ 95 -30 -89 -47
+ -57 -14 -94 93
+ -92 -79 -32 106
+ 6 -72 -114 93
+ -57 -10 59 -17
+ -10 75 -157 6
+ -14 72 -141 10
+ -102 -253 170 -353
+ -412 -211 -412 187
+ -231 -438 189 -438
+ -412 -438 194 -438
+ -184 -438 185 -412
+ -84 -2 -189 113
+ -438 192 -438 -312
+ -390 194 -438 -438
+ -412 186 -412 -194
+ 180 -412 -127 -438
+ -390 176 -270 -134
+ 7 82 -134 -34
diff --git a/profiles/plants/MA1286.1.pwm b/profiles/plants/MA1286.1.pwm
index e69de29..347d3ca 100644
--- a/profiles/plants/MA1286.1.pwm
+++ b/profiles/plants/MA1286.1.pwm
@@ -0,0 +1,12 @@
+ 4 -83 51 -2
+ -38 -44 -63 88
+ -95 -54 39 57
+ -309 -318 185 -268
+ -467 -467 195 -445
+ -467 -467 196 -467
+ 179 -236 -227 -274
+ -467 196 -467 -467
+ -467 196 -467 -467
+ 189 -467 -222 -467
+ -281 187 -336 -336
+ 38 36 -175 16
diff --git a/profiles/plants/MA1287.1.pwm b/profiles/plants/MA1287.1.pwm
index e69de29..d4cc6e5 100644
--- a/profiles/plants/MA1287.1.pwm
+++ b/profiles/plants/MA1287.1.pwm
@@ -0,0 +1,14 @@
+ 32 -90 -57 63
+ -192 -381 186 -467
+ -467 -258 -467 191
+ -467 -467 196 -467
+ -467 -467 196 -467
+ -137 -445 176 -242
+ 4 92 -199 -28
+ -467 195 -467 -445
+ -288 192 -467 -445
+ -119 144 -295 -46
+ 147 -185 -73 -150
+ -128 114 -113 -12
+ 3 0 -33 23
+ 10 -50 -61 64
diff --git a/profiles/plants/MA1288.1.pwm b/profiles/plants/MA1288.1.pwm
index e69de29..6b12938 100644
--- a/profiles/plants/MA1288.1.pwm
+++ b/profiles/plants/MA1288.1.pwm
@@ -0,0 +1,13 @@
+ 59 -64 -43 15
+ 14 -73 -39 61
+ -310 -426 192 -467
+ -467 -232 -467 190
+ -445 -467 195 -467
+ -467 -467 196 -467
+ -130 -409 175 -246
+ 20 59 -127 -10
+ -467 196 -467 -467
+ -445 195 -467 -467
+ -160 152 -336 -52
+ 153 -232 -73 -169
+ -144 108 -102 4
diff --git a/profiles/plants/MA1289.1.pwm b/profiles/plants/MA1289.1.pwm
index e69de29..576b6af 100644
--- a/profiles/plants/MA1289.1.pwm
+++ b/profiles/plants/MA1289.1.pwm
@@ -0,0 +1,13 @@
+ 17 -101 50 -6
+ -24 -58 -87 96
+ -124 -67 33 76
+ -424 -424 191 -285
+ -465 -465 196 -465
+ -465 -465 196 -465
+ 175 -141 -465 -215
+ -465 196 -465 -465
+ -465 196 -465 -465
+ 186 -465 -178 -465
+ -443 190 -365 -292
+ 54 8 -141 15
+ 41 -92 -46 50
diff --git a/profiles/plants/MA1290.1.pwm b/profiles/plants/MA1290.1.pwm
index aee0a1d..12c76ef 100644
--- a/profiles/plants/MA1290.1.pwm
+++ b/profiles/plants/MA1290.1.pwm
@@ -1,11 +1,11 @@
- -175 -217 177 -375
- -375 -243 -10000 190
- -10000 -375 196 -475
- -10000 -10000 197 -375
- -317 -10000 -43 165
- -475 199 -10000 -10000
- -10000 200 -10000 -10000
- -475 197 -475 -10000
- -67 157 -243 -217
- 174 -217 -217 -217
- -158 151 -158 -105
+ -148 -178 168 -269
+ -269 -196 -351 181
+ -351 -269 186 -304
+ -351 -351 188 -269
+ -240 -351 -39 157
+ -304 189 -351 -351
+ -351 190 -351 -351
+ -304 188 -304 -351
+ -59 148 -196 -178
+ 165 -178 -178 -178
+ -135 143 -135 -92
diff --git a/profiles/plants/MA1291.1.pwm b/profiles/plants/MA1291.1.pwm
index e69de29..39cea1e 100644
--- a/profiles/plants/MA1291.1.pwm
+++ b/profiles/plants/MA1291.1.pwm
@@ -0,0 +1,11 @@
+ -444 -466 195 -466
+ -466 -286 -466 192
+ -105 -466 178 -466
+ -466 -466 196 -466
+ -393 -444 194 -466
+ 61 -64 13 -45
+ -245 176 -466 -140
+ -425 195 -466 -466
+ -230 188 -393 -408
+ 158 -209 -92 -201
+ -167 110 -109 11
diff --git a/profiles/plants/MA1292.1.pwm b/profiles/plants/MA1292.1.pwm
index 655a755..c7beb79 100644
--- a/profiles/plants/MA1292.1.pwm
+++ b/profiles/plants/MA1292.1.pwm
@@ -1,15 +1,15 @@
- 90 -90 -45 -21
- 126 -144 -95 -48
- 137 -297 -107 -30
- 165 -10000 -463 -30
- 173 -10000 -622 -59
- 147 -10000 26 -463
- -10000 -10000 -722 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -722
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -490 -10000 199
- 178 -163 -258 -376
- 89 -117 -53 1
- 108 -144 -10 -78
+ 87 -85 -43 -20
+ 123 -134 -90 -46
+ 133 -263 -101 -29
+ 162 -467 -368 -29
+ 169 -467 -426 -56
+ 143 -467 25 -368
+ -467 -467 -445 195
+ -467 -467 -467 196
+ 195 -467 -467 -445
+ -467 -467 196 -467
+ -467 -467 196 -467
+ -467 -380 -467 194
+ 174 -152 -232 -318
+ 87 -111 -51 1
+ 105 -134 -10 -74
diff --git a/profiles/plants/MA1293.1.pwm b/profiles/plants/MA1293.1.pwm
index e69de29..04bef88 100644
--- a/profiles/plants/MA1293.1.pwm
+++ b/profiles/plants/MA1293.1.pwm
@@ -0,0 +1,14 @@
+ -92 40 -139 82
+ -43 2 -83 75
+ -467 -257 -247 185
+ 170 -467 -59 -467
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -426 -467 -467 195
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -445 165 -467 -38
+ -163 -130 -467 169
+ -62 -22 -257 122
+ -16 -45 -132 98
+ 19 -72 -109 83
diff --git a/profiles/plants/MA1294.1.pwm b/profiles/plants/MA1294.1.pwm
index c76ff29..63fb1d0 100644
--- a/profiles/plants/MA1294.1.pwm
+++ b/profiles/plants/MA1294.1.pwm
@@ -1,15 +1,15 @@
- 85 -87 -20 -36
- 63 -32 -57 -3
- 89 -120 -53 3
- 95 -74 -85 -14
- 105 -226 -87 24
- 144 -320 -92 -63
- 3 -178 126 -174
- -10000 -10000 -446 198
- -10000 -10000 -10000 200
- 190 -10000 -10000 -192
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -446 77 -446 114
- 105 -123 -63 -23
- 24 -74 28 0
+ 82 -82 -19 -34
+ 60 -31 -54 -3
+ 86 -111 -50 2
+ 92 -69 -80 -13
+ 101 -203 -82 23
+ 140 -274 -87 -60
+ 2 -163 122 -159
+ -446 -446 -349 193
+ -446 -446 -446 195
+ 185 -446 -446 -175
+ -446 -446 195 -446
+ -446 -446 195 -446
+ -349 75 -349 110
+ 102 -114 -60 -22
+ 23 -69 27 0
diff --git a/profiles/plants/MA1295.1.pwm b/profiles/plants/MA1295.1.pwm
index e69de29..cca8d3f 100644
--- a/profiles/plants/MA1295.1.pwm
+++ b/profiles/plants/MA1295.1.pwm
@@ -0,0 +1,13 @@
+ 63 -135 6 3
+ 11 1 5 -19
+ -196 144 -96 -96
+ -319 -410 145 14
+ -426 -445 -467 195
+ -467 -445 -467 195
+ -467 -467 196 -467
+ 195 -467 -445 -467
+ -445 195 -467 -467
+ -467 82 -467 111
+ 60 -182 -45 55
+ 9 -176 -14 79
+ 5 -107 -23 71
diff --git a/profiles/plants/MA1296.1.pwm b/profiles/plants/MA1296.1.pwm
index e69de29..525a75a 100644
--- a/profiles/plants/MA1296.1.pwm
+++ b/profiles/plants/MA1296.1.pwm
@@ -0,0 +1,11 @@
+ -107 160 -162 -251
+ -251 -251 136 10
+ -251 -251 -251 180
+ -251 -251 -251 180
+ -251 -251 180 -251
+ 152 -251 -37 -251
+ -251 180 -251 -251
+ -251 -68 -251 160
+ -251 -68 -162 152
+ -68 -37 -251 128
+ -162 -37 61 46
diff --git a/profiles/plants/MA1297.1.pwm b/profiles/plants/MA1297.1.pwm
index e69de29..0ff0078 100644
--- a/profiles/plants/MA1297.1.pwm
+++ b/profiles/plants/MA1297.1.pwm
@@ -0,0 +1,13 @@
+ 125 -35 -104 -149
+ 130 -133 -168 -27
+ 132 -81 -214 -52
+ 165 -335 -61 -335
+ -335 -335 189 -335
+ -335 -244 -282 184
+ -335 189 -335 -335
+ 189 -335 -335 -335
+ 189 -335 -335 -335
+ -61 165 -335 -335
+ -43 -168 140 -168
+ 0 6 17 -27
+ -20 6 -168 83
diff --git a/profiles/plants/MA1298.1.pwm b/profiles/plants/MA1298.1.pwm
index e69de29..2a45a10 100644
--- a/profiles/plants/MA1298.1.pwm
+++ b/profiles/plants/MA1298.1.pwm
@@ -0,0 +1,11 @@
+ 105 -36 -112 -54
+ 140 -168 -123 -70
+ 152 -287 -181 -50
+ 170 -467 -83 -274
+ -467 -467 196 -467
+ -467 -445 -467 195
+ -467 196 -467 -467
+ 195 -445 -467 -467
+ 194 -467 -368 -467
+ -16 153 -467 -241
+ -108 -114 86 34
diff --git a/profiles/plants/MA1299.1.pwm b/profiles/plants/MA1299.1.pwm
index e69de29..4d281f7 100644
--- a/profiles/plants/MA1299.1.pwm
+++ b/profiles/plants/MA1299.1.pwm
@@ -0,0 +1,14 @@
+ 79 -31 -42 -48
+ 101 -37 -104 -48
+ 149 -155 -73 -197
+ 179 -362 -197 -234
+ 189 -362 -318 -318
+ -362 -362 191 -362
+ -362 -214 -318 184
+ -362 191 -362 -362
+ 189 -362 -284 -362
+ 191 -362 -362 -362
+ -60 153 -168 -284
+ -12 -155 123 -132
+ 1 24 1 -31
+ -17 37 -88 34
diff --git a/profiles/plants/MA1300.1.pwm b/profiles/plants/MA1300.1.pwm
index 7ec040f..d69a781 100644
--- a/profiles/plants/MA1300.1.pwm
+++ b/profiles/plants/MA1300.1.pwm
@@ -1,19 +1,19 @@
- -80 145 -176 -135
- -615 -10000 188 -170
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 25 -10000 149
- 11 -91 -95 90
- 5 -163 -73 103
- -30 -80 32 45
- -7 -130 24 55
- -27 11 -191 87
- 7 -76 -70 80
- 50 -163 20 15
- 63 -80 -54 25
- -18 19 -13 9
- 29 15 -87 17
- 13 24 -107 32
+ -74 140 -158 -123
+ -385 -416 182 -153
+ -416 -416 -416 194
+ -416 -416 -416 194
+ -416 -416 194 -416
+ 194 -416 -416 -416
+ -416 194 -416 -416
+ -416 24 -416 144
+ 11 -84 -87 86
+ 5 -147 -68 98
+ -28 -74 30 42
+ -6 -118 23 52
+ -26 11 -170 83
+ 7 -71 -65 76
+ 48 -147 19 14
+ 60 -74 -50 24
+ -17 18 -12 9
+ 27 14 -80 16
+ 12 23 -98 30
diff --git a/profiles/plants/MA1301.1.pwm b/profiles/plants/MA1301.1.pwm
index 98a5cde..a526244 100644
--- a/profiles/plants/MA1301.1.pwm
+++ b/profiles/plants/MA1301.1.pwm
@@ -1,11 +1,11 @@
- 99 -4 -161 -47
- 135 -85 -209 -58
- 132 -164 -242 0
- 167 -10000 -29 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 30 142 -10000 -342
- -61 -116 123 -85
+ 96 -4 -150 -45
+ 131 -80 -192 -55
+ 128 -152 -219 0
+ 163 -467 -28 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 29 138 -467 -295
+ -58 -109 119 -80
diff --git a/profiles/plants/MA1302.1.pwm b/profiles/plants/MA1302.1.pwm
index 6fdc902..a794be2 100644
--- a/profiles/plants/MA1302.1.pwm
+++ b/profiles/plants/MA1302.1.pwm
@@ -1,11 +1,11 @@
- 78 -30 -60 -30
- 134 -180 -84 -69
- 148 -258 -214 -29
- 161 -464 -24 -406
- -10000 -10000 200 -10000
- -10000 -723 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -723
- -206 185 -10000 -277
- -158 -198 148 -69
+ 75 -29 -57 -29
+ 131 -167 -79 -66
+ 144 -233 -196 -27
+ 157 -369 -23 -337
+ -467 -467 196 -467
+ -467 -445 -467 195
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ 195 -467 -467 -445
+ -189 181 -467 -247
+ -148 -182 145 -66
diff --git a/profiles/plants/MA1303.1.pwm b/profiles/plants/MA1303.1.pwm
index e69de29..c9c2ad7 100644
--- a/profiles/plants/MA1303.1.pwm
+++ b/profiles/plants/MA1303.1.pwm
@@ -0,0 +1,13 @@
+ 106 -35 -89 -74
+ 158 -215 -147 -126
+ 175 -381 -295 -119
+ 179 -467 -128 -337
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -102 172 -467 -258
+ -137 -124 104 18
+ 27 -9 -22 -1
+ -9 -14 -109 76
diff --git a/profiles/plants/MA1304.1.pwm b/profiles/plants/MA1304.1.pwm
index 1569dc0..66f2f31 100644
--- a/profiles/plants/MA1304.1.pwm
+++ b/profiles/plants/MA1304.1.pwm
@@ -1,12 +1,12 @@
- 37 15 -73 -1
- 133 -185 -79 -68
- 117 -153 -143 6
- 125 -126 -243 2
- 159 -10000 -15 -343
- -10000 -10000 200 -10000
- -10000 -443 -10000 198
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 110 52 -285 -185
- 9 -19 42 -48
+ 35 14 -67 -1
+ 127 -161 -72 -62
+ 111 -135 -127 5
+ 119 -113 -204 2
+ 152 -382 -14 -267
+ -382 -382 192 -382
+ -382 -314 -382 190
+ -382 192 -382 -382
+ 192 -382 -382 -382
+ 192 -382 -382 -382
+ 105 49 -232 -161
+ 8 -17 40 -44
diff --git a/profiles/plants/MA1305.1.pwm b/profiles/plants/MA1305.1.pwm
index e69de29..e9015e1 100644
--- a/profiles/plants/MA1305.1.pwm
+++ b/profiles/plants/MA1305.1.pwm
@@ -0,0 +1,12 @@
+ 32 -98 30 2
+ -8 -2 15 -6
+ -102 143 -126 -137
+ -207 -426 182 -242
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -467 -22 -445 161
+ -70 -100 -153 134
+ -24 -113 -51 100
diff --git a/profiles/plants/MA1306.1.pwm b/profiles/plants/MA1306.1.pwm
index e69de29..bb017b7 100644
--- a/profiles/plants/MA1306.1.pwm
+++ b/profiles/plants/MA1306.1.pwm
@@ -0,0 +1,14 @@
+ 59 -109 21 -19
+ 0 -43 24 11
+ -46 123 -79 -152
+ -318 -467 174 -96
+ -467 -445 -467 195
+ -445 -467 -467 195
+ -467 -467 196 -467
+ 195 -467 -426 -467
+ -467 196 -467 -467
+ -281 -155 -467 180
+ -125 -257 -346 173
+ -132 -169 -185 159
+ -52 -103 -65 112
+ -5 -77 -10 60
diff --git a/profiles/plants/MA1307.1.pwm b/profiles/plants/MA1307.1.pwm
index e69de29..260ee86 100644
--- a/profiles/plants/MA1307.1.pwm
+++ b/profiles/plants/MA1307.1.pwm
@@ -0,0 +1,19 @@
+ 11 -85 28 21
+ -8 -89 37 30
+ 19 -15 1 -6
+ 26 -42 -45 40
+ 43 -11 -111 33
+ 76 -78 -85 22
+ 75 -85 21 -70
+ 49 3 -78 -2
+ 43 22 -67 -23
+ 94 -89 -78 -6
+ 102 -106 -63 -23
+ 152 -407 1 -407
+ -407 -407 193 -407
+ -407 -407 -407 193
+ -375 193 -407 -407
+ 193 -407 -407 -407
+ 193 -407 -407 -407
+ -261 189 -407 -407
+ -97 -167 137 -78
diff --git a/profiles/plants/MA1308.1.pwm b/profiles/plants/MA1308.1.pwm
index e69de29..4896e35 100644
--- a/profiles/plants/MA1308.1.pwm
+++ b/profiles/plants/MA1308.1.pwm
@@ -0,0 +1,13 @@
+ 47 -91 16 -5
+ -27 13 26 -20
+ -94 159 -203 -219
+ -295 -467 192 -445
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -426 -128 -410 180
+ -102 -237 -319 168
+ -82 -161 -185 150
+ -57 -98 -33 102
diff --git a/profiles/plants/MA1309.1.pwm b/profiles/plants/MA1309.1.pwm
index e69de29..db3b560 100644
--- a/profiles/plants/MA1309.1.pwm
+++ b/profiles/plants/MA1309.1.pwm
@@ -0,0 +1,11 @@
+ 109 -17 -117 -89
+ 140 -94 -196 -77
+ 133 -119 -228 -26
+ 160 -467 -18 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 195 -467 -445
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 26 138 -445 -263
+ -47 -105 118 -92
diff --git a/profiles/plants/MA1310.1.pwm b/profiles/plants/MA1310.1.pwm
index e69de29..8526d06 100644
--- a/profiles/plants/MA1310.1.pwm
+++ b/profiles/plants/MA1310.1.pwm
@@ -0,0 +1,21 @@
+ -46 -8 -13 50
+ -11 -73 -39 77
+ -26 -109 -17 85
+ -4 -85 24 37
+ 66 -10 -46 -41
+ 58 24 -125 -15
+ 6 18 -91 37
+ -4 3 -61 44
+ 30 -56 25 -15
+ -19 -15 19 11
+ -56 121 -133 -70
+ -392 -422 190 -284
+ -422 -422 -422 194
+ -422 -422 -422 194
+ -422 -422 193 -367
+ 194 -422 -422 -422
+ -422 194 -422 -422
+ -297 21 -284 137
+ 31 -95 -98 79
+ 8 -73 -95 86
+ -28 -64 24 44
diff --git a/profiles/plants/MA1311.1.pwm b/profiles/plants/MA1311.1.pwm
index e69de29..7317f78 100644
--- a/profiles/plants/MA1311.1.pwm
+++ b/profiles/plants/MA1311.1.pwm
@@ -0,0 +1,13 @@
+ 49 -132 9 18
+ 6 -61 -18 51
+ -46 83 -77 -14
+ -132 -288 122 18
+ -467 -368 -467 194
+ -467 -467 -426 195
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -288 -57 -368 164
+ -39 -196 -215 146
+ -74 -132 -113 135
+ -51 -99 -23 96
diff --git a/profiles/plants/MA1311.2.pwm b/profiles/plants/MA1311.2.pwm
index e69de29..1802c34 100644
--- a/profiles/plants/MA1311.2.pwm
+++ b/profiles/plants/MA1311.2.pwm
@@ -0,0 +1,11 @@
+ 82 -84 -107 27
+ 77 -109 -109 43
+ 80 -277 81 -147
+ -404 -457 195 -445
+ -494 -478 -543 197
+ -451 196 -478 -464
+ 195 -423 -494 -464
+ 195 -486 -418 -423
+ -166 170 -301 -174
+ 18 -101 49 -6
+ 40 -26 -65 27
diff --git a/profiles/plants/MA1312.1.pwm b/profiles/plants/MA1312.1.pwm
index e69de29..17bd8cb 100644
--- a/profiles/plants/MA1312.1.pwm
+++ b/profiles/plants/MA1312.1.pwm
@@ -0,0 +1,14 @@
+ 99 22 -123 -123
+ -57 73 -173 45
+ -138 83 -33 6
+ -67 -138 96 6
+ 17 -33 32 -26
+ -154 176 -249 -338
+ -249 -338 147 -6
+ -338 -338 -286 188
+ -173 -338 -338 181
+ -338 -338 189 -338
+ 165 -338 -67 -286
+ -338 189 -338 -338
+ -286 54 -286 118
+ 58 -67 -219 73
diff --git a/profiles/plants/MA1313.1.pwm b/profiles/plants/MA1313.1.pwm
index cd8f859..c88fd96 100644
--- a/profiles/plants/MA1313.1.pwm
+++ b/profiles/plants/MA1313.1.pwm
@@ -1,14 +1,14 @@
- 57 -91 11 -14
- -30 -36 27 26
- -38 141 -143 -231
- -563 -10000 189 -193
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -721
- 198 -10000 -441 -10000
- -10000 200 -10000 -721
- -563 -351 -10000 196
- -363 -563 -10000 196
- -251 -257 -521 186
- -128 -109 -87 136
- -20 -93 -33 86
+ 55 -86 10 -13
+ -28 -34 26 25
+ -36 138 -134 -210
+ -409 -467 185 -178
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 -467 195 -445
+ 194 -467 -356 -467
+ -467 195 -467 -445
+ -409 -302 -467 192
+ -309 -409 -467 192
+ -227 -231 -394 182
+ -120 -102 -83 133
+ -19 -88 -32 83
diff --git a/profiles/plants/MA1314.1.pwm b/profiles/plants/MA1314.1.pwm
index 99941a5..e211166 100644
--- a/profiles/plants/MA1314.1.pwm
+++ b/profiles/plants/MA1314.1.pwm
@@ -1,13 +1,13 @@
- 94 -22 -94 -50
- 151 -198 -155 -85
- 160 -276 -264 -61
- 177 -722 -83 -522
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -205 188 -10000 -352
- -150 -147 141 -67
- 17 14 -7 -28
- -5 7 -98 56
+ 91 -21 -89 -47
+ 147 -182 -145 -80
+ 156 -247 -237 -58
+ 173 -445 -79 -394
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -189 183 -467 -303
+ -140 -137 137 -64
+ 16 14 -7 -27
+ -5 7 -92 55
diff --git a/profiles/plants/MA1315.1.pwm b/profiles/plants/MA1315.1.pwm
index e69de29..a450160 100644
--- a/profiles/plants/MA1315.1.pwm
+++ b/profiles/plants/MA1315.1.pwm
@@ -0,0 +1,14 @@
+ -40 -20 7 40
+ -170 146 -148 -78
+ -253 -426 177 -143
+ -467 -467 -467 196
+ -426 -467 -467 195
+ -467 -467 196 -467
+ 195 -467 -445 -467
+ -445 195 -467 -467
+ -467 -38 -467 166
+ -17 -215 -224 142
+ -54 -189 -189 147
+ -41 -88 -89 111
+ -27 -53 -52 83
+ -7 -35 -54 66
diff --git a/profiles/plants/MA1316.1.pwm b/profiles/plants/MA1316.1.pwm
index c9abb8c..11cb56e 100644
--- a/profiles/plants/MA1316.1.pwm
+++ b/profiles/plants/MA1316.1.pwm
@@ -1,11 +1,11 @@
- 122 -54 -112 -96
- 167 -222 -205 -144
- 177 -352 -290 -144
- 188 -622 -190 -522
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 7 145 -522 -237
- -22 -87 98 -67
+ 119 -51 -105 -90
+ 163 -203 -189 -135
+ 173 -303 -258 -135
+ 184 -426 -175 -394
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ 7 141 -394 -215
+ -21 -82 95 -64
diff --git a/profiles/plants/MA1317.1.pwm b/profiles/plants/MA1317.1.pwm
index f2ec652..30462b0 100644
--- a/profiles/plants/MA1317.1.pwm
+++ b/profiles/plants/MA1317.1.pwm
@@ -1,13 +1,13 @@
- -45 58 -69 20
- -132 -134 61 75
- -456 -715 -615 198
- -556 -10000 -10000 199
- -10000 -10000 200 -10000
- 200 -10000 -715 -10000
- -10000 200 -10000 -10000
- -615 -269 -715 194
- -172 -383 -515 185
- -229 -263 -334 182
- -148 -117 -156 152
- -29 -69 -66 95
- 0 -20 -71 60
+ -43 57 -66 19
+ -123 -126 59 73
+ -363 -441 -422 193
+ -405 -463 -463 195
+ -463 -463 196 -463
+ 195 -463 -441 -463
+ -463 196 -463 -463
+ -422 -240 -441 189
+ -160 -321 -389 180
+ -208 -235 -289 178
+ -138 -110 -146 148
+ -28 -66 -62 92
+ 0 -19 -67 58
diff --git a/profiles/plants/MA1318.1.pwm b/profiles/plants/MA1318.1.pwm
index 4a255f5..2361a2a 100644
--- a/profiles/plants/MA1318.1.pwm
+++ b/profiles/plants/MA1318.1.pwm
@@ -1,13 +1,13 @@
- 89 -121 -22 -23
- -17 -26 15 22
- 19 120 -164 -206
- -564 -723 188 -184
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 199 -10000 -564 -623
- -10000 200 -10000 -10000
- -464 -291 -10000 194
- -171 -391 -623 185
- -180 -214 -623 180
- -110 -123 -75 133
+ 86 -113 -21 -22
+ -17 -25 15 21
+ 18 117 -153 -189
+ -410 -445 184 -170
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 -467 196 -467
+ 194 -467 -410 -426
+ -467 196 -467 -467
+ -369 -258 -467 189
+ -158 -328 -426 181
+ -167 -196 -426 176
+ -104 -115 -71 130
diff --git a/profiles/plants/MA1320.1.pwm b/profiles/plants/MA1320.1.pwm
index e69de29..7aaa4cc 100644
--- a/profiles/plants/MA1320.1.pwm
+++ b/profiles/plants/MA1320.1.pwm
@@ -0,0 +1,14 @@
+ 54 -95 1 3
+ 81 -83 -48 -6
+ 101 -99 -104 -1
+ -61 -8 -83 87
+ -287 -42 -172 149
+ -287 -406 190 -406
+ -406 -406 -406 193
+ 193 -406 -406 -406
+ -406 193 -406 -406
+ -406 -406 192 -347
+ -406 -406 190 -287
+ 177 -305 -324 -145
+ 16 75 -158 -20
+ 58 -45 10 -51
diff --git a/profiles/plants/MA1321.1.pwm b/profiles/plants/MA1321.1.pwm
index e69de29..572ba25 100644
--- a/profiles/plants/MA1321.1.pwm
+++ b/profiles/plants/MA1321.1.pwm
@@ -0,0 +1,11 @@
+ 83 -110 -56 11
+ -23 -28 -65 76
+ -143 -58 -108 131
+ -465 -465 196 -465
+ -465 -465 -465 196
+ 196 -465 -465 -465
+ -465 196 -465 -465
+ -423 -259 163 -55
+ -82 -465 156 -117
+ 123 -97 -323 6
+ 26 17 -121 32
diff --git a/profiles/plants/MA1322.1.pwm b/profiles/plants/MA1322.1.pwm
index e69de29..4936547 100644
--- a/profiles/plants/MA1322.1.pwm
+++ b/profiles/plants/MA1322.1.pwm
@@ -0,0 +1,11 @@
+ 63 -19 -43 -27
+ 9 -50 -67 68
+ -247 -34 -86 131
+ -467 -467 196 -467
+ -445 -467 -467 195
+ 195 -410 -467 -467
+ -467 196 -467 -467
+ -445 -219 102 77
+ -71 -269 89 47
+ 70 -70 -106 36
+ -10 10 -111 62
diff --git a/profiles/plants/MA1323.1.pwm b/profiles/plants/MA1323.1.pwm
index e0bbcb1..274dc9f 100644
--- a/profiles/plants/MA1323.1.pwm
+++ b/profiles/plants/MA1323.1.pwm
@@ -1,11 +1,11 @@
- -120 100 -90 4
- 15 10 1 -30
- -234 -466 191 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -466 196 -407 -10000
- -566 12 82 17
- -127 -566 183 -10000
- 165 -285 -90 -249
- -61 -566 -307 168
- -307 68 -196 101
+ -108 95 -82 4
+ 14 9 1 -28
+ -200 -328 184 -393
+ 193 -393 -393 -393
+ -393 -393 -393 193
+ -328 189 -304 -393
+ -357 12 78 16
+ -114 -357 176 -393
+ 159 -236 -82 -211
+ -56 -357 -250 161
+ -250 65 -171 97
diff --git a/profiles/plants/MA1324.1.pwm b/profiles/plants/MA1324.1.pwm
index e69de29..dafaf39 100644
--- a/profiles/plants/MA1324.1.pwm
+++ b/profiles/plants/MA1324.1.pwm
@@ -0,0 +1,8 @@
+ 177 -328 -274 -156
+ -328 -106 -328 173
+ -234 177 -328 -178
+ -48 36 92 -328
+ -328 -328 188 -328
+ 188 -328 -328 -328
+ -328 -328 -328 188
+ -234 183 -328 -274
diff --git a/profiles/plants/MA1325.1.pwm b/profiles/plants/MA1325.1.pwm
index e69de29..f85d1a3 100644
--- a/profiles/plants/MA1325.1.pwm
+++ b/profiles/plants/MA1325.1.pwm
@@ -0,0 +1,15 @@
+ -73 -43 -60 99
+ -44 -20 -5 51
+ -73 -63 -159 127
+ 181 -386 -217 -227
+ -461 -439 195 -461
+ 196 -461 -461 -461
+ -461 -419 -461 195
+ -386 194 -461 -461
+ -419 -48 -196 157
+ 53 -147 107 -348
+ 44 -92 -11 25
+ -36 -124 -92 118
+ -90 -29 -69 102
+ -64 -15 -48 80
+ -45 -13 -20 57
diff --git a/profiles/plants/MA1326.1.pwm b/profiles/plants/MA1326.1.pwm
index 4464f38..65974dc 100644
--- a/profiles/plants/MA1326.1.pwm
+++ b/profiles/plants/MA1326.1.pwm
@@ -1,11 +1,11 @@
- 46 -30 -10 -18
- -37 53 -51 11
- 14 -298 131 -174
- -10000 -277 -623 194
- 107 -74 37 -10000
- 198 -564 -464 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -723
- 116 -298 66 -406
- -156 18 -12 68
+ 44 -29 -10 -18
+ -35 52 -49 11
+ 13 -264 127 -161
+ -467 -247 -426 190
+ 104 -70 36 -467
+ 194 -410 -369 -467
+ -467 -467 -467 196
+ -467 -467 -467 196
+ 195 -467 -467 -445
+ 113 -264 64 -337
+ -145 17 -12 66
diff --git a/profiles/plants/MA1327.1.pwm b/profiles/plants/MA1327.1.pwm
index 30eaea2..a1c1fb5 100644
--- a/profiles/plants/MA1327.1.pwm
+++ b/profiles/plants/MA1327.1.pwm
@@ -1,22 +1,22 @@
- 128 -277 -218 27
- 109 -180 -153 31
- 42 -123 -67 68
- 13 16 -36 1
- 29 -75 -51 57
- -253 -323 -353 186
- 160 -723 -7 -10000
- 199 -10000 -10000 -464
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 150 -298 5 -623
- -104 -57 -28 101
- 7 -127 -4 64
- 100 -170 -27 -22
- 60 -53 -75 26
- 6 -108 -94 97
- 75 -202 -116 70
- 132 -283 -108 -16
- 97 -177 -158 49
- 14 -223 -227 131
- 65 -218 -167 92
+ 125 -247 -199 26
+ 106 -167 -142 30
+ 41 -115 -64 66
+ 13 15 -34 1
+ 28 -71 -49 55
+ -228 -282 -303 182
+ 156 -445 -6 -467
+ 194 -467 -467 -369
+ -467 -467 -467 196
+ -467 -467 -467 196
+ 196 -467 -467 -467
+ 146 -263 5 -426
+ -98 -54 -27 98
+ 7 -119 -4 62
+ 97 -158 -26 -21
+ 58 -50 -71 25
+ 6 -102 -89 95
+ 73 -185 -109 68
+ 128 -252 -102 -15
+ 95 -164 -147 48
+ 13 -203 -207 127
+ 63 -199 -155 90
diff --git a/profiles/plants/MA1327.2.pwm b/profiles/plants/MA1327.2.pwm
index 9410c9f..1c49a0f 100644
--- a/profiles/plants/MA1327.2.pwm
+++ b/profiles/plants/MA1327.2.pwm
@@ -1,10 +1,10 @@
- 12 -67 -113 87
- -38 -143 -256 143
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 9 -97 -70 86
- 14 -61 -101 81
+ 12 -66 -110 86
+ -38 -138 -243 141
+ 198 -565 -565 -565
+ 198 -565 -565 -565
+ -565 -565 -565 198
+ -565 -565 -565 198
+ 198 -565 -565 -565
+ 198 -565 -565 -565
+ 9 -94 -68 85
+ 14 -60 -98 79
diff --git a/profiles/plants/MA1328.1.pwm b/profiles/plants/MA1328.1.pwm
index 1793b74..e480063 100644
--- a/profiles/plants/MA1328.1.pwm
+++ b/profiles/plants/MA1328.1.pwm
@@ -1,15 +1,15 @@
- 68 -377 -377 117
- 2 -174 -314 136
- 59 -153 -523 108
- 115 -71 -118 -45
- 56 -98 -56 42
- -12 -13 -145 85
- 21 28 -69 1
- 69 22 -24 -142
- -332 58 -298 118
- -523 -723 -10000 199
- 200 -10000 -10000 -10000
- 200 -10000 -723 -10000
- -523 -406 -10000 197
- -10000 57 -464 131
- 185 -353 -223 -323
+ 66 -319 -319 114
+ 2 -161 -276 133
+ 57 -143 -395 105
+ 111 -67 -111 -43
+ 54 -93 -53 41
+ -12 -13 -135 82
+ 21 27 -66 1
+ 67 21 -23 -133
+ -289 57 -264 115
+ -395 -445 -467 194
+ 196 -467 -467 -467
+ 195 -467 -445 -467
+ -395 -337 -467 193
+ -467 55 -369 128
+ 180 -303 -203 -282
diff --git a/profiles/plants/MA1329.1.pwm b/profiles/plants/MA1329.1.pwm
index e69de29..e134c8a 100644
--- a/profiles/plants/MA1329.1.pwm
+++ b/profiles/plants/MA1329.1.pwm
@@ -0,0 +1,15 @@
+ -2 -44 -167 97
+ 49 28 -98 -19
+ 106 -37 -18 -200
+ -337 76 -347 108
+ -467 -467 -467 196
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -369 -410 194
+ -467 14 -219 140
+ 191 -347 -337 -426
+ 44 16 -164 27
+ -29 -5 48 -29
+ 31 -14 -128 53
+ 6 -91 -140 103
+ 24 -115 -131 98
diff --git a/profiles/plants/MA1329.2.pwm b/profiles/plants/MA1329.2.pwm
index 8521076..9a88c67 100644
--- a/profiles/plants/MA1329.2.pwm
+++ b/profiles/plants/MA1329.2.pwm
@@ -1,13 +1,13 @@
- 43 -82 -100 66
- 65 -55 -89 28
- 155 -133 -168 -149
- -68 90 -168 26
- -372 -469 -610 195
- 196 -546 -457 -495
- 197 -536 -510 -481
- -463 -441 -610 196
- -502 -385 -569 196
- 195 -546 -463 -360
- 185 -308 -336 -254
- -14 -62 -39 74
- 16 -55 -74 68
+ 43 -79 -97 65
+ 64 -54 -87 27
+ 153 -129 -162 -144
+ -66 89 -162 25
+ -341 -411 -488 193
+ 194 -458 -404 -428
+ 195 -452 -437 -419
+ -407 -393 -488 194
+ -433 -351 -469 193
+ 193 -458 -407 -331
+ 183 -288 -312 -241
+ -13 -61 -38 73
+ 16 -53 -72 67
diff --git a/profiles/plants/MA1330.1.pwm b/profiles/plants/MA1330.1.pwm
index e69de29..0d4940f 100644
--- a/profiles/plants/MA1330.1.pwm
+++ b/profiles/plants/MA1330.1.pwm
@@ -0,0 +1,15 @@
+ 126 -161 -215 7
+ 122 -118 -138 -24
+ 77 -93 -73 22
+ 25 3 -93 34
+ 52 -192 67 -48
+ -311 -303 -426 189
+ 142 -296 21 -467
+ 192 -467 -303 -426
+ -467 -467 -467 196
+ -467 -467 -467 196
+ 195 -467 -426 -467
+ 136 -357 34 -357
+ -94 -45 -8 85
+ 15 -98 9 40
+ 90 -140 -63 14
diff --git a/profiles/plants/MA1331.1.pwm b/profiles/plants/MA1331.1.pwm
index e69de29..74a9aef 100644
--- a/profiles/plants/MA1331.1.pwm
+++ b/profiles/plants/MA1331.1.pwm
@@ -0,0 +1,11 @@
+ -467 108 -394 83
+ 7 -445 152 -467
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -426 -467 -467 195
+ -467 -467 196 -467
+ -303 -17 -113 134
+ -68 -73 125 -137
+ 34 -31 37 -65
diff --git a/profiles/plants/MA1332.1.pwm b/profiles/plants/MA1332.1.pwm
index 8fabcd9..fb314a4 100644
--- a/profiles/plants/MA1332.1.pwm
+++ b/profiles/plants/MA1332.1.pwm
@@ -1,11 +1,11 @@
- -85 30 -54 61
- -206 147 -118 -85
- 144 -106 -50 -332
- -10000 200 -10000 -10000
- 200 -10000 -10000 -723
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 144 -723 35
- 64 -10000 129 -10000
+ -81 29 -51 59
+ -189 143 -111 -81
+ 140 -100 -48 -288
+ -467 196 -467 -467
+ 195 -467 -467 -445
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 -467 196 -467
+ -467 141 -445 34
+ 62 -467 125 -467
diff --git a/profiles/plants/MA1333.1.pwm b/profiles/plants/MA1333.1.pwm
index b378307..5436286 100644
--- a/profiles/plants/MA1333.1.pwm
+++ b/profiles/plants/MA1333.1.pwm
@@ -1,11 +1,11 @@
- -562 111 -178 61
- 28 -240 138 -10000
- -10000 200 -10000 -720
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -720 -10000 200 -10000
- -720 -10000 -10000 200
- -10000 -10000 200 -10000
- -153 -100 -130 146
- -130 -8 120 -150
- 70 -70 28 -86
+ -408 108 -165 59
+ 27 -217 134 -466
+ -466 195 -466 -444
+ 196 -466 -466 -466
+ -466 196 -466 -466
+ -444 -466 195 -466
+ -444 -466 -466 195
+ -466 -466 196 -466
+ -143 -94 -122 142
+ -122 -7 116 -140
+ 67 -66 27 -82
diff --git a/profiles/plants/MA1334.1.pwm b/profiles/plants/MA1334.1.pwm
index afdbf92..d1ce14b 100644
--- a/profiles/plants/MA1334.1.pwm
+++ b/profiles/plants/MA1334.1.pwm
@@ -1,15 +1,15 @@
- -102 -90 -49 118
- -321 -340 150 -5
- -6 153 -10000 -281
- -10000 195 -296 -10000
- 200 -10000 -10000 -10000
- -10000 199 -621 -721
- -562 -621 199 -10000
- -10000 -10000 -10000 200
- -178 185 -340 -10000
- 195 -10000 -296 -721
- -621 -168 134 20
- -114 176 -562 -289
- 122 -130 -196 1
- 37 -62 -104 65
- 19 30 -112 22
+ -96 -85 -47 114
+ -280 -294 146 -5
+ -5 150 -466 -251
+ -466 191 -262 -466
+ 196 -466 -466 -466
+ -466 195 -425 -444
+ -408 -425 194 -466
+ -466 -466 -466 196
+ -165 181 -294 -466
+ 191 -466 -262 -444
+ -425 -156 130 19
+ -107 172 -408 -256
+ 119 -122 -180 1
+ 36 -59 -98 63
+ 19 29 -105 21
diff --git a/profiles/plants/MA1335.1.pwm b/profiles/plants/MA1335.1.pwm
index 69327e7..934f447 100644
--- a/profiles/plants/MA1335.1.pwm
+++ b/profiles/plants/MA1335.1.pwm
@@ -1,11 +1,11 @@
- -177 -29 -10000 153
- -277 -36 141 -125
- 192 -564 -491 -253
- -10000 195 -10000 -298
- -108 -623 181 -10000
- -10000 -623 -10000 200
- -184 190 -10000 -10000
- 200 -723 -10000 -10000
- -10000 -75 38 107
- -306 174 -202 -174
- 119 -127 -43 -82
+ -164 -27 -467 149
+ -247 -34 137 -118
+ 187 -410 -381 -228
+ -467 191 -467 -264
+ -102 -426 177 -467
+ -467 -426 -467 195
+ -170 185 -467 -467
+ 195 -445 -467 -467
+ -467 -71 37 104
+ -269 170 -186 -161
+ 116 -120 -41 -78
diff --git a/profiles/plants/MA1336.1.pwm b/profiles/plants/MA1336.1.pwm
index 392f37b..72add2b 100644
--- a/profiles/plants/MA1336.1.pwm
+++ b/profiles/plants/MA1336.1.pwm
@@ -1,14 +1,14 @@
- 28 -112 34 8
- 96 -129 63 -332
- -564 -564 -10000 199
- -10000 -464 196 -405
- 200 -10000 -10000 -10000
- -10000 195 -10000 -283
- -252 -722 193 -10000
- -10000 -722 -10000 200
- -107 182 -10000 -10000
- 199 -10000 -722 -522
- -10000 -85 52 100
- -194 158 -155 -129
- 103 -152 -52 -14
- 6 -116 -78 95
+ 27 -105 33 8
+ 93 -121 61 -288
+ -409 -409 -467 194
+ -467 -368 192 -336
+ 196 -467 -467 -467
+ -467 191 -467 -252
+ -228 -445 189 -467
+ -467 -445 -467 195
+ -101 178 -467 -467
+ 194 -467 -445 -394
+ -467 -80 51 98
+ -179 154 -145 -121
+ 100 -142 -50 -13
+ 6 -109 -74 92
diff --git a/profiles/plants/MA1337.1.pwm b/profiles/plants/MA1337.1.pwm
index e69de29..5250150 100644
--- a/profiles/plants/MA1337.1.pwm
+++ b/profiles/plants/MA1337.1.pwm
@@ -0,0 +1,15 @@
+ 23 -94 28 13
+ 65 -128 -34 30
+ 11 -169 -96 107
+ -187 -368 164 -90
+ 20 124 -121 -435
+ -398 -221 -435 188
+ -458 -458 182 -133
+ 195 -458 -458 -458
+ -458 193 -458 -333
+ -382 -435 194 -458
+ -415 -435 -458 195
+ -458 -458 195 -458
+ -458 -458 164 -34
+ -9 155 -435 -355
+ 128 -70 -84 -131
diff --git a/profiles/plants/MA1338.1.pwm b/profiles/plants/MA1338.1.pwm
index e69de29..c7b6ef7 100644
--- a/profiles/plants/MA1338.1.pwm
+++ b/profiles/plants/MA1338.1.pwm
@@ -0,0 +1,15 @@
+ 70 -166 0 9
+ 57 -142 -7 25
+ 41 -175 -58 77
+ -90 -192 120 -14
+ -7 -96 123 -237
+ 77 -65 -467 70
+ -445 119 64 -310
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -467 -467 196 -467
+ -467 -467 146 23
+ -295 192 -467 -467
+ 158 -185 -92 -232
diff --git a/profiles/plants/MA1339.1.pwm b/profiles/plants/MA1339.1.pwm
index 841f0da..aaa695b 100644
--- a/profiles/plants/MA1339.1.pwm
+++ b/profiles/plants/MA1339.1.pwm
@@ -1,12 +1,12 @@
- -10000 -10000 144 36
- -122 184 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 195 -10000 -281
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 195 -281 -10000
- 195 -10000 -10000 -281
- -10000 -10000 178 -81
- -122 184 -10000 -10000
- 136 -122 -281 -22
+ -265 -265 129 31
+ -95 166 -265 -265
+ -265 182 -265 -265
+ 182 -265 -265 -265
+ -265 177 -265 -184
+ -265 -265 182 -265
+ -265 -265 -265 182
+ -265 177 -184 -265
+ 177 -265 -265 -184
+ -265 -265 161 -64
+ -95 166 -265 -265
+ 122 -95 -184 -18
diff --git a/profiles/plants/MA1340.1.pwm b/profiles/plants/MA1340.1.pwm
index e69de29..9eb7a25 100644
--- a/profiles/plants/MA1340.1.pwm
+++ b/profiles/plants/MA1340.1.pwm
@@ -0,0 +1,15 @@
+ 28 -100 33 3
+ 46 -57 -38 24
+ 6 -129 -125 109
+ -218 -322 157 -52
+ 23 107 -88 -237
+ -176 -127 -442 170
+ -464 -98 162 -137
+ 196 -464 -464 -464
+ -464 194 -406 -377
+ -406 -342 192 -423
+ -464 -464 -464 196
+ -464 -464 196 -464
+ -464 -406 164 -34
+ -15 155 -423 -305
+ 110 -83 -33 -100
diff --git a/profiles/plants/MA1341.1.pwm b/profiles/plants/MA1341.1.pwm
index e69de29..0d02423 100644
--- a/profiles/plants/MA1341.1.pwm
+++ b/profiles/plants/MA1341.1.pwm
@@ -0,0 +1,15 @@
+ 24 -109 30 16
+ 67 -98 -49 25
+ 2 -185 -117 118
+ -258 -445 171 -96
+ 9 134 -147 -426
+ -467 -228 -467 189
+ -467 -295 178 -135
+ 196 -467 -467 -467
+ -467 195 -445 -426
+ -445 -426 195 -467
+ -467 -467 -467 196
+ -467 -247 190 -467
+ -237 -467 155 -26
+ -11 149 -295 -281
+ 119 -55 -84 -105
diff --git a/profiles/plants/MA1343.1.pwm b/profiles/plants/MA1343.1.pwm
index e69de29..08dcb1d 100644
--- a/profiles/plants/MA1343.1.pwm
+++ b/profiles/plants/MA1343.1.pwm
@@ -0,0 +1,14 @@
+ 45 -107 -44 50
+ -145 -107 -158 150
+ -467 -467 183 -145
+ 102 93 -467 -467
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ -445 -467 195 -467
+ -410 164 -77 -203
+ -467 39 -395 137
+ -122 -89 67 52
+ -35 -467 112 1
+ -58 -33 -10 68
+ 31 43 -113 -6
+ 70 -53 -92 21
diff --git a/profiles/plants/MA1344.1.pwm b/profiles/plants/MA1344.1.pwm
index 055a8a6..8105876 100644
--- a/profiles/plants/MA1344.1.pwm
+++ b/profiles/plants/MA1344.1.pwm
@@ -1,15 +1,15 @@
- 37 -108 10 21
- 33 -34 -41 27
- 1 -61 -59 74
- -13 -181 89 -8
- 86 -99 34 -129
- -11 -79 -551 131
- -710 40 120 -143
- 199 -10000 -610 -10000
- -10000 199 -10000 -510
- -510 -10000 199 -10000
- -10000 -10000 -10000 200
- -451 -10000 198 -10000
- -10000 -10000 157 4
- -62 165 -710 -234
- 114 -171 -22 -67
+ 36 -101 10 21
+ 32 -33 -39 26
+ 1 -58 -56 72
+ -13 -167 86 -7
+ 84 -93 33 -121
+ -10 -75 -401 127
+ -438 39 117 -133
+ 195 -461 -419 -461
+ -461 194 -461 -386
+ -386 -461 194 -461
+ -461 -461 -461 195
+ -359 -461 194 -461
+ -461 -461 153 4
+ -59 161 -438 -212
+ 111 -158 -21 -64
diff --git a/profiles/plants/MA1345.1.pwm b/profiles/plants/MA1345.1.pwm
index ede5709..0ff5bae 100644
--- a/profiles/plants/MA1345.1.pwm
+++ b/profiles/plants/MA1345.1.pwm
@@ -1,14 +1,14 @@
- -402 -482 153 1
- -43 170 -10000 -10000
- -10000 200 -10000 -682
- 200 -10000 -10000 -10000
- -682 199 -10000 -524
- -482 -682 198 -10000
- -10000 -682 -10000 200
- -165 188 -10000 -10000
- 193 -10000 -282 -482
- -450 -224 149 -11
- -110 176 -524 -312
- 130 -174 -178 -8
- 20 -56 -65 62
- 11 36 -130 31
+ -327 -367 149 1
+ -41 166 -448 -448
+ -448 195 -448 -423
+ 195 -448 -448 -448
+ -423 194 -448 -383
+ -367 -423 193 -448
+ -448 -423 -448 195
+ -152 183 -448 -448
+ 189 -448 -248 -367
+ -352 -202 145 -10
+ -102 172 -383 -269
+ 126 -159 -163 -8
+ 19 -53 -62 60
+ 10 34 -121 29
diff --git a/profiles/plants/MA1346.1.pwm b/profiles/plants/MA1346.1.pwm
index e69de29..f0fe5ac 100644
--- a/profiles/plants/MA1346.1.pwm
+++ b/profiles/plants/MA1346.1.pwm
@@ -0,0 +1,15 @@
+ 37 -98 53 -39
+ 76 -68 -45 -8
+ -31 -27 -136 98
+ -160 -139 163 -246
+ 106 42 -89 -466
+ -466 -466 -466 196
+ -394 -466 185 -178
+ 195 -466 -409 -466
+ -466 187 -444 -198
+ -367 -466 194 -466
+ -309 -380 -444 191
+ -194 173 -151 -367
+ 178 -466 -151 -251
+ -194 77 -57 44
+ -13 30 -79 35
diff --git a/profiles/plants/MA1348.1.pwm b/profiles/plants/MA1348.1.pwm
index 9101bd9..7cce3e5 100644
--- a/profiles/plants/MA1348.1.pwm
+++ b/profiles/plants/MA1348.1.pwm
@@ -1,11 +1,11 @@
- -154 -154 170 -404
- 110 42 -96 -10000
- -421 -10000 -721 198
- -10000 -10000 183 -117
- 200 -10000 -721 -10000
- -10000 189 -10000 -175
- -375 -10000 197 -10000
- -721 -10000 -10000 200
- -321 190 -262 -10000
- 194 -10000 -257 -10000
- -351 69 -96 83
+ -143 -143 166 -335
+ 107 41 -91 -466
+ -345 -466 -444 193
+ -466 -466 179 -110
+ 195 -466 -444 -466
+ -466 185 -466 -162
+ -317 -466 193 -466
+ -444 -466 -466 195
+ -280 186 -236 -466
+ 190 -466 -231 -466
+ -301 67 -91 81
diff --git a/profiles/plants/MA1349.1.pwm b/profiles/plants/MA1349.1.pwm
index e69de29..5fe0dc0 100644
--- a/profiles/plants/MA1349.1.pwm
+++ b/profiles/plants/MA1349.1.pwm
@@ -0,0 +1,15 @@
+ 45 -102 10 9
+ 59 -141 -34 41
+ 28 -123 -93 87
+ -141 -218 114 27
+ -58 22 75 -104
+ -3 19 -467 88
+ -467 99 81 -222
+ 196 -467 -467 -467
+ -467 194 -356 -445
+ -467 -356 194 -467
+ -467 -467 -467 196
+ -467 -467 196 -467
+ -467 -467 179 -112
+ -198 188 -467 -467
+ 160 -246 -63 -294
diff --git a/profiles/plants/MA1350.1.pwm b/profiles/plants/MA1350.1.pwm
index e69de29..d400623 100644
--- a/profiles/plants/MA1350.1.pwm
+++ b/profiles/plants/MA1350.1.pwm
@@ -0,0 +1,12 @@
+ -32 -190 -320 150
+ -263 -320 181 -222
+ -77 160 -190 -320
+ -320 -320 -320 188
+ -320 -320 183 -222
+ 188 -320 -320 -320
+ -320 188 -320 -320
+ -263 -320 186 -320
+ -263 -320 -320 186
+ -320 -320 188 -320
+ -320 -320 168 -77
+ 9 144 -320 -320
diff --git a/profiles/plants/MA1351.1.pwm b/profiles/plants/MA1351.1.pwm
index 6fd4626..1074e55 100644
--- a/profiles/plants/MA1351.1.pwm
+++ b/profiles/plants/MA1351.1.pwm
@@ -1,15 +1,15 @@
- -205 -70 -193 153
- -622 -722 184 -129
- -83 178 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 199 -563 -10000
- -563 -622 199 -10000
- -10000 -10000 -10000 200
- -158 133 19 -622
- 140 -10000 -15 -109
- -205 16 75 -6
- 11 140 -363 -236
- 103 -105 -193 28
- 33 -39 -115 61
- 18 18 -146 45
+ -188 -66 -178 149
+ -426 -445 179 -121
+ -78 174 -467 -467
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ -467 195 -409 -467
+ -409 -426 194 -467
+ -467 -467 -467 196
+ -147 129 18 -426
+ 136 -467 -15 -103
+ -188 15 73 -6
+ 11 137 -310 -214
+ 100 -99 -178 27
+ 32 -37 -109 59
+ 17 17 -137 44
diff --git a/profiles/plants/MA1352.1.pwm b/profiles/plants/MA1352.1.pwm
index e69de29..72c700d 100644
--- a/profiles/plants/MA1352.1.pwm
+++ b/profiles/plants/MA1352.1.pwm
@@ -0,0 +1,21 @@
+ 167 -328 -271 -81
+ -179 165 -240 -137
+ -192 172 -214 -222
+ -124 145 -240 -63
+ -128 -421 -346 178
+ 192 -421 -367 -346
+ 193 -421 -391 -367
+ 194 -421 -421 -421
+ -328 192 -421 -391
+ -222 186 -421 -328
+ -391 189 -297 -328
+ -346 -367 -367 191
+ 189 -367 -367 -283
+ 188 -260 -367 -391
+ 194 -421 -421 -391
+ -346 185 -391 -207
+ -297 187 -328 -311
+ -152 177 -421 -240
+ -222 -271 -391 183
+ 186 -328 -297 -283
+ 172 -271 -133 -271
diff --git a/profiles/plants/MA1353.1.pwm b/profiles/plants/MA1353.1.pwm
index e69de29..e062648 100644
--- a/profiles/plants/MA1353.1.pwm
+++ b/profiles/plants/MA1353.1.pwm
@@ -0,0 +1,15 @@
+ 31 -64 55 -61
+ 31 -102 67 -56
+ 86 -242 60 -106
+ 74 -328 -91 76
+ -426 -46 -445 167
+ -410 -445 -467 195
+ 194 -467 -395 -445
+ -467 -445 195 -467
+ -467 -467 195 -410
+ -467 -410 187 -207
+ -445 -219 -467 189
+ -247 -445 -467 190
+ -91 -200 -264 161
+ 59 -31 -98 24
+ -93 -83 88 10
diff --git a/profiles/plants/MA1354.1.pwm b/profiles/plants/MA1354.1.pwm
index e69de29..8c3f812 100644
--- a/profiles/plants/MA1354.1.pwm
+++ b/profiles/plants/MA1354.1.pwm
@@ -0,0 +1,29 @@
+ -290 160 -290 -49
+ -139 -139 -290 163
+ 181 -290 -290 -221
+ 181 -290 -290 -221
+ 174 -221 -221 -221
+ -290 185 -290 -290
+ -111 160 -221 -174
+ -290 181 -290 -221
+ -221 -290 -221 178
+ 171 -290 -221 -139
+ 178 -290 -174 -290
+ 174 -290 -139 -290
+ -221 163 -290 -87
+ -290 174 -174 -221
+ -67 147 -221 -139
+ -221 -221 -290 178
+ 185 -290 -290 -290
+ 156 -174 -221 -87
+ 163 -221 -174 -139
+ -174 160 -174 -139
+ -49 129 -290 -49
+ -290 174 -290 -139
+ -33 -290 -290 156
+ 171 -139 -290 -221
+ 178 -290 -290 -174
+ 178 -290 -221 -221
+ -87 160 -290 -174
+ -290 174 -221 -174
+ -290 147 -111 -67
diff --git a/profiles/plants/MA1355.1.pwm b/profiles/plants/MA1355.1.pwm
index a4fe515..aac4230 100644
--- a/profiles/plants/MA1355.1.pwm
+++ b/profiles/plants/MA1355.1.pwm
@@ -1,15 +1,15 @@
- 88 -72 -112 12
- 72 -29 -158 26
- 29 -3 -158 55
- -32 -81 -68 100
- 110 -422 -73 27
- 142 -564 -722 38
- 124 -10000 71 -10000
- -173 189 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 176 -10000 -72 -622
- 40 -70 -376 100
- -70 -31 -242 126
+ 85 -68 -105 12
+ 70 -28 -147 25
+ 28 -3 -147 53
+ -30 -77 -65 98
+ 107 -346 -70 26
+ 138 -409 -445 37
+ 121 -467 69 -467
+ -161 185 -467 -467
+ -467 196 -467 -467
+ -467 196 -467 -467
+ -467 -467 -467 196
+ 196 -467 -467 -467
+ 172 -467 -68 -426
+ 38 -67 -318 97
+ -67 -29 -219 122
diff --git a/profiles/plants/MA1356.1.pwm b/profiles/plants/MA1356.1.pwm
index e69de29..510bcf6 100644
--- a/profiles/plants/MA1356.1.pwm
+++ b/profiles/plants/MA1356.1.pwm
@@ -0,0 +1,21 @@
+ 161 -151 -209 -147
+ 153 -193 -227 -65
+ -118 147 -204 -87
+ -198 165 -175 -166
+ -109 131 -247 -21
+ -53 -443 -361 167
+ 194 -443 -418 -418
+ 193 -418 -396 -377
+ 194 -396 -443 -418
+ -320 192 -443 -396
+ -332 191 -396 -377
+ -443 192 -443 -298
+ -361 -377 -443 193
+ 189 -396 -262 -377
+ 194 -418 -396 -443
+ 189 -361 -396 -288
+ -179 167 -418 -109
+ -227 180 -443 -193
+ -91 147 -320 -75
+ -140 -121 -320 162
+ 162 -175 -247 -115
diff --git a/profiles/plants/MA1357.1.pwm b/profiles/plants/MA1357.1.pwm
index e69de29..90f3ca2 100644
--- a/profiles/plants/MA1357.1.pwm
+++ b/profiles/plants/MA1357.1.pwm
@@ -0,0 +1,11 @@
+ -17 -181 -51 108
+ -49 -268 149 -163
+ -445 195 -467 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 196 -467
+ -467 -467 -467 196
+ -445 -467 64 124
+ -467 -467 196 -467
+ -3 87 -83 -67
+ 64 -8 -149 19
diff --git a/profiles/plants/MA1358.1.pwm b/profiles/plants/MA1358.1.pwm
index be96473..9bf140c 100644
--- a/profiles/plants/MA1358.1.pwm
+++ b/profiles/plants/MA1358.1.pwm
@@ -1,11 +1,11 @@
- 49 -172 22 17
- -58 -49 56 20
- -10000 199 -553 -10000
- 108 91 -10000 -10000
- 200 -10000 -10000 -10000
- -553 199 -10000 -10000
- -553 -10000 -10000 199
- -353 -10000 -10000 197
- -10000 -10000 200 -10000
- -136 118 -144 -4
- 77 17 -128 -40
+ 46 -151 21 16
+ -53 -45 52 18
+ -387 192 -350 -387
+ 103 86 -387 -387
+ 192 -387 -387 -387
+ -350 192 -387 -387
+ -350 -387 -387 192
+ -275 -387 -387 189
+ -387 -387 192 -387
+ -121 113 -128 -4
+ 73 16 -115 -37
diff --git a/profiles/plants/MA1359.1.pwm b/profiles/plants/MA1359.1.pwm
index 462a006..07ad1c4 100644
--- a/profiles/plants/MA1359.1.pwm
+++ b/profiles/plants/MA1359.1.pwm
@@ -1,21 +1,21 @@
- -11 27 53 -124
- 82 -176 -146 65
- -62 -29 46 21
- -13 -57 63 -21
- 14 -36 -84 64
- -24 -18 64 -48
- 4 -7 38 -49
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 197 -10000 -341
- -163 -10000 188 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -84 17 28 15
- -40 29 13 -12
- 35 -8 -66 19
- 33 -30 -62 35
- 6 -65 -77 79
- -56 79 -3 -71
- 75 -56 -84 11
- -60 80 -37 -27
+ -10 26 51 -116
+ 80 -163 -137 63
+ -59 -27 44 20
+ -12 -55 61 -20
+ 14 -34 -80 62
+ -23 -18 61 -45
+ 4 -6 37 -47
+ -467 196 -467 -467
+ 196 -467 -467 -467
+ -467 192 -467 -295
+ -152 -467 184 -467
+ -467 -467 -467 196
+ -467 -467 196 -467
+ -80 16 27 14
+ -38 28 13 -11
+ 34 -7 -63 19
+ 32 -28 -59 34
+ 6 -62 -73 77
+ -53 76 -3 -67
+ 73 -53 -80 10
+ -57 78 -35 -26
diff --git a/profiles/plants/MA1360.1.pwm b/profiles/plants/MA1360.1.pwm
index ab2090c..c24ca05 100644
--- a/profiles/plants/MA1360.1.pwm
+++ b/profiles/plants/MA1360.1.pwm
@@ -1,21 +1,21 @@
- -99 106 -7 -111
- -24 -146 101 -38
- -38 -72 -104 110
- -117 -31 132 -204
- 101 -111 -72 -14
- 28 -63 23 -4
- 37 -111 -4 35
- 56 -42 35 -99
- -93 -1 54 4
- -10000 196 -331 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -563 -10000 195 -304
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 58 46 -63 -104
- -68 42 7 -1
- 37 -38 -4 -4
- -38 28 -24 23
- -34 81 -46 -46
- 75 -217 -146 80
+ -89 101 -7 -100
+ -22 -130 97 -35
+ -35 -66 -95 105
+ -105 -28 127 -177
+ 97 -100 -66 -13
+ 26 -58 21 -4
+ 35 -100 -4 33
+ 53 -39 33 -89
+ -84 -1 51 4
+ -391 189 -264 -391
+ 193 -391 -391 -391
+ -391 193 -391 -391
+ -355 -391 188 -248
+ -391 -391 -391 193
+ -391 -391 193 -391
+ 55 43 -58 -95
+ -62 39 7 -1
+ 35 -35 -4 -4
+ -35 26 -22 21
+ -32 77 -42 -42
+ 71 -187 -130 76
diff --git a/profiles/plants/MA1361.1.pwm b/profiles/plants/MA1361.1.pwm
index c26e068..4c9a1e7 100644
--- a/profiles/plants/MA1361.1.pwm
+++ b/profiles/plants/MA1361.1.pwm
@@ -1,17 +1,17 @@
- -56 135 -133 -140
- 112 -465 21 -65
- -10000 151 -284 2
- -40 -365 161 -307
- -84 -65 -265 140
- -207 -195 121 26
- 26 -174 -79 95
- 13 -90 -70 81
- 28 28 -174 35
- -219 192 -10000 -10000
- 194 -10000 -365 -365
- -10000 199 -10000 -465
- -248 -10000 193 -10000
- -284 -407 -10000 193
- -10000 -10000 197 -365
- -79 -56 65 23
- -37 26 -56 44
+ -52 129 -119 -125
+ 106 -328 19 -60
+ -392 145 -235 2
+ -37 -283 154 -249
+ -77 -60 -222 134
+ -179 -170 115 24
+ 24 -154 -73 90
+ 12 -82 -64 77
+ 26 26 -154 33
+ -189 185 -392 -392
+ 187 -392 -283 -283
+ -392 191 -392 -328
+ -210 -392 186 -392
+ -235 -304 -392 185
+ -392 -392 190 -283
+ -73 -52 62 22
+ -34 24 -52 41
diff --git a/profiles/plants/MA1362.1.pwm b/profiles/plants/MA1362.1.pwm
index 1649997..b2139a2 100644
--- a/profiles/plants/MA1362.1.pwm
+++ b/profiles/plants/MA1362.1.pwm
@@ -1,15 +1,15 @@
- 16 -64 90 -142
- 58 -53 -64 23
- -23 -323 77 42
- 73 -223 -91 68
- 16 -53 23 2
- -53 -142 109 -32
- -10000 29 23 68
- -10000 200 -10000 -10000
- 198 -10000 -423 -10000
- -10000 188 -10000 -164
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 58 94 -10000 -77
- -91 -91 58 53
+ 15 -56 83 -119
+ 53 -46 -56 21
+ -20 -233 71 38
+ 67 -176 -78 62
+ 15 -46 21 2
+ -46 -119 101 -29
+ -327 27 21 62
+ -327 188 -327 -327
+ 186 -327 -272 -327
+ -327 177 -327 -136
+ -327 -327 188 -327
+ -327 -327 -327 188
+ -327 -327 188 -327
+ 53 87 -327 -67
+ -78 -78 53 48
diff --git a/profiles/plants/MA1363.1.pwm b/profiles/plants/MA1363.1.pwm
index 96bae80..fa29cb5 100644
--- a/profiles/plants/MA1363.1.pwm
+++ b/profiles/plants/MA1363.1.pwm
@@ -1,15 +1,15 @@
- -309 167 -77 -309
- -50 -309 144 -109
- -150 -209 -77 150
- -77 -309 156 -150
- -50 8 -9 37
- -10000 -77 61 91
- 8 -28 -209 91
- -10000 23 61 37
- -109 -9 108 -109
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -309 -10000 196 -10000
- -10000 -10000 -10000 200
- -10000 -309 196 -10000
+ -202 151 -62 -202
+ -42 -202 130 -87
+ -116 -153 -62 135
+ -62 -202 141 -116
+ -42 7 -7 32
+ -277 -62 54 81
+ 7 -24 -153 81
+ -277 20 54 32
+ -87 -7 97 -87
+ -277 183 -277 -277
+ 183 -277 -277 -277
+ -277 183 -277 -277
+ -202 -277 179 -277
+ -277 -277 -277 183
+ -277 -202 179 -277
diff --git a/profiles/plants/MA1364.1.pwm b/profiles/plants/MA1364.1.pwm
index e69de29..7ff62fa 100644
--- a/profiles/plants/MA1364.1.pwm
+++ b/profiles/plants/MA1364.1.pwm
@@ -0,0 +1,15 @@
+ -117 22 89 -88
+ 0 -44 -31 54
+ -50 -140 81 22
+ 67 -153 44 -50
+ 54 -88 18 -20
+ 0 -153 -31 89
+ -221 5 116 -97
+ -221 152 -221 -50
+ -353 190 -353 -353
+ 190 -353 -353 -353
+ -353 183 -353 -183
+ -353 -353 190 -353
+ -353 -353 -353 190
+ -353 -353 188 -272
+ -200 -20 114 -57
diff --git a/profiles/plants/MA1365.1.pwm b/profiles/plants/MA1365.1.pwm
index 1a2e789..3c0bd21 100644
--- a/profiles/plants/MA1365.1.pwm
+++ b/profiles/plants/MA1365.1.pwm
@@ -1,15 +1,15 @@
- 28 -176 -223 119
- 32 -102 -89 78
- 7 26 -212 61
- 9 5 -129 58
- 16 -154 -41 84
- -161 -293 -129 165
- -47 -593 -10000 171
- -335 -202 -261 180
- -10000 -10000 -10000 200
- 22 -293 -10000 144
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -235 122 -261 39
- -141 -135 147 -112
- -235 44 -335 123
+ 26 -157 -194 114
+ 30 -94 -81 75
+ 7 24 -186 58
+ 9 4 -117 55
+ 15 -138 -38 80
+ -144 -245 -117 159
+ -44 -373 -405 164
+ -271 -178 -222 174
+ -405 -405 -405 193
+ 21 -245 -405 138
+ 193 -405 -405 -405
+ -405 193 -405 -405
+ -203 117 -222 37
+ -127 -122 141 -102
+ -203 42 -271 118
diff --git a/profiles/plants/MA1365.2.pwm b/profiles/plants/MA1365.2.pwm
index e69de29..b69ef0f 100644
--- a/profiles/plants/MA1365.2.pwm
+++ b/profiles/plants/MA1365.2.pwm
@@ -0,0 +1,11 @@
+ 84 -130 -30 -1
+ 11 -24 -74 56
+ -128 -386 176 -291
+ -622 -622 199 -622
+ -622 -541 -622 198
+ 195 -483 -461 -415
+ 193 -570 -433 -316
+ 184 -505 -349 -178
+ 181 -615 -471 -114
+ 71 -108 -97 46
+ 56 -71 -98 49
diff --git a/profiles/plants/MA1366.1.pwm b/profiles/plants/MA1366.1.pwm
index c3539eb..a06355f 100644
--- a/profiles/plants/MA1366.1.pwm
+++ b/profiles/plants/MA1366.1.pwm
@@ -1,16 +1,16 @@
- 128 -162 -11 -166
- -25 91 -162 -6
- 31 -200 128 -374
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 179 -10000 -310 -126
- 200 -10000 -10000 -10000
- 190 -532 -391 -258
- 166 -532 -10000 -31
- 140 -195 -191 -25
- 67 -76 -72 27
- 31 -155 23 31
- 45 -138 -35 55
- 79 -135 -26 7
- 105 -155 -118 20
- 91 -123 -113 30
+ 125 -150 -11 -153
+ -24 88 -150 -6
+ 30 -182 125 -312
+ -452 -452 195 -452
+ -452 -452 -452 195
+ 175 -452 -269 -118
+ 195 -452 -452 -452
+ 186 -389 -322 -230
+ 162 -389 -452 -29
+ 136 -178 -174 -24
+ 65 -71 -68 26
+ 30 -143 22 30
+ 43 -129 -33 53
+ 76 -126 -25 7
+ 101 -143 -110 19
+ 88 -115 -105 29
diff --git a/profiles/plants/MA1367.1.pwm b/profiles/plants/MA1367.1.pwm
index 60e2911..f5b0d44 100644
--- a/profiles/plants/MA1367.1.pwm
+++ b/profiles/plants/MA1367.1.pwm
@@ -1,14 +1,14 @@
- 87 -28 -110 -19
- 94 -83 -95 1
- 60 16 -81 -33
- -39 60 -64 11
- 133 -244 -525 35
- 194 -451 -451 -351
- 187 -10000 -583 -166
- 197 -425 -10000 -583
- -425 198 -10000 -10000
- -10000 199 -10000 -483
- 62 -483 117 -251
- -148 40 96 -141
- 63 -68 -110 44
- 101 -131 -170 36
+ 84 -26 -103 -18
+ 90 -78 -89 1
+ 58 15 -76 -31
+ -37 58 -61 10
+ 129 -218 -384 33
+ 189 -353 -353 -296
+ 183 -448 -402 -153
+ 193 -340 -448 -402
+ -340 193 -448 -448
+ -448 194 -448 -368
+ 60 -368 114 -224
+ -136 38 93 -130
+ 61 -64 -103 43
+ 97 -122 -156 34
diff --git a/profiles/plants/MA1368.1.pwm b/profiles/plants/MA1368.1.pwm
index ec30874..9db4eec 100644
--- a/profiles/plants/MA1368.1.pwm
+++ b/profiles/plants/MA1368.1.pwm
@@ -1,21 +1,21 @@
- 194 -10000 -270 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 165 -10000 -20
- 167 -10000 -29 -10000
- -10000 -38 -329 165
- -20 -10000 165 -10000
- -229 -10000 192 -10000
- -10000 -429 -10000 198
- -10000 -329 -10000 196
- 198 -429 -10000 -10000
- 169 -329 -58 -10000
- 96 -112 -29 -38
- 76 -270 -170 88
- -112 24 -196 107
- 17 -229 -129 117
- -38 -329 -96 139
- 124 -96 -148 -38
- 133 -170 -148 -29
- -20 107 -148 -58
- 30 96 -229 -70
+ 183 -330 -206 -330
+ 189 -330 -330 -330
+ -330 189 -330 -330
+ -330 154 -330 -18
+ 156 -330 -25 -330
+ -330 -34 -237 154
+ -18 -330 154 -330
+ -181 -330 181 -330
+ -330 -276 -330 187
+ -330 -237 -330 185
+ 187 -276 -330 -330
+ 159 -237 -51 -330
+ 89 -95 -25 -34
+ 70 -206 -140 82
+ -95 22 -159 99
+ 16 -181 -109 109
+ -34 -237 -83 129
+ 115 -83 -124 -34
+ 124 -140 -124 -25
+ -18 99 -124 -51
+ 27 89 -181 -61
diff --git a/profiles/plants/MA1368.2.pwm b/profiles/plants/MA1368.2.pwm
index 7161118..9ee0769 100644
--- a/profiles/plants/MA1368.2.pwm
+++ b/profiles/plants/MA1368.2.pwm
@@ -1,14 +1,14 @@
- 37 -31 -55 29
- -107 -4 -86 100
- -54 -155 -213 146
- 168 -301 -188 -129
- 194 -475 -534 -343
- -401 192 -417 -343
- -434 16 -634 149
- 182 -275 -253 -281
- -301 -263 -229 181
- -89 -734 177 -475
- -301 -501 194 -575
- -417 -501 -575 196
- -136 -217 -388 173
- 129 -198 -136 -15
+ 36 -30 -53 28
+ -101 -4 -82 97
+ -52 -145 -195 142
+ 164 -267 -174 -121
+ 190 -376 -402 -297
+ -336 188 -345 -297
+ -355 16 -433 146
+ 178 -247 -229 -252
+ -267 -238 -209 177
+ -85 -451 173 -376
+ -267 -389 190 -417
+ -345 -389 -417 192
+ -128 -199 -327 169
+ 126 -183 -128 -14
diff --git a/profiles/plants/MA1369.1.pwm b/profiles/plants/MA1369.1.pwm
index 0d6a9ac..9beca29 100644
--- a/profiles/plants/MA1369.1.pwm
+++ b/profiles/plants/MA1369.1.pwm
@@ -1,11 +1,11 @@
- 26 -142 87 -73
- -270 54 -10000 126
- 179 -116 -10000 -342
- 142 -10000 -10000 41
- -10000 -10000 -10000 200
- -25 -10000 -10000 166
- 200 -10000 -723 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -127 -523 170 -173
- 16 96 -270 -34
+ 25 -133 85 -70
+ -242 52 -467 122
+ 175 -109 -467 -295
+ 138 -467 -467 40
+ -467 -467 -467 196
+ -24 -467 -467 162
+ 195 -467 -445 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -119 -395 166 -161
+ 15 93 -242 -33
diff --git a/profiles/plants/MA1370.1.pwm b/profiles/plants/MA1370.1.pwm
index 19674e6..c0cd318 100644
--- a/profiles/plants/MA1370.1.pwm
+++ b/profiles/plants/MA1370.1.pwm
@@ -1,16 +1,16 @@
- 0 -115 -100 104
- -46 -332 -232 157
- -532 -251 -332 189
- -10000 -432 -251 192
- -10000 -374 -10000 197
- -10000 -10000 199 -532
- -10000 -532 -10000 199
- -10000 200 -10000 -10000
- -374 -151 147 -32
- -532 -300 -232 187
- -374 -68 -200 161
- -123 -332 -232 171
- 41 -274 -10000 134
- -162 51 91 -142
- -274 14 -374 142
- -37 -151 96 -11
+ 0 -103 -90 98
+ -42 -259 -195 150
+ -337 -209 -259 181
+ -377 -306 -209 184
+ -377 -281 -377 189
+ -377 -377 191 -337
+ -377 -337 -377 191
+ -377 192 -377 -377
+ -281 -133 140 -30
+ -337 -240 -195 179
+ -281 -62 -171 154
+ -110 -259 -195 164
+ 38 -224 -377 127
+ -142 48 86 -125
+ -224 13 -281 135
+ -34 -133 91 -10
diff --git a/profiles/plants/MA1371.1.pwm b/profiles/plants/MA1371.1.pwm
index e69de29..081e691 100644
--- a/profiles/plants/MA1371.1.pwm
+++ b/profiles/plants/MA1371.1.pwm
@@ -0,0 +1,17 @@
+ 51 64 -168 -50
+ 150 -380 -7 -274
+ -129 74 69 -168
+ 150 -466 -294 -1
+ 175 -466 -466 -82
+ 163 -213 -87 -294
+ 180 -168 -280 -393
+ 32 100 -87 -226
+ -280 -466 192 -466
+ 193 -326 -466 -444
+ -466 196 -466 -466
+ 194 -466 -367 -466
+ 193 -408 -356 -466
+ 185 -287 -240 -367
+ 156 -235 -190 -77
+ 103 -100 -120 2
+ 81 -98 -120 38
diff --git a/profiles/plants/MA1372.1.pwm b/profiles/plants/MA1372.1.pwm
index 36824ff..f5ba610 100644
--- a/profiles/plants/MA1372.1.pwm
+++ b/profiles/plants/MA1372.1.pwm
@@ -1,11 +1,11 @@
- -271 142 -342 10
- 152 -10000 -332 4
- -214 112 7 -84
- -18 -56 -10000 129
- 7 5 -23 8
- 10 3 -723 93
- -10000 170 -10000 -40
- 200 -10000 -10000 -10000
- -10000 157 6 -10000
- -232 -353 -10000 189
- 21 7 -17 -14
+ -242 139 -296 10
+ 149 -467 -289 4
+ -196 108 6 -79
+ -18 -53 -467 125
+ 7 5 -22 8
+ 10 3 -445 90
+ -467 166 -467 -38
+ 196 -467 -467 -467
+ -467 153 5 -467
+ -211 -303 -467 185
+ 20 7 -17 -14
diff --git a/profiles/plants/MA1373.1.pwm b/profiles/plants/MA1373.1.pwm
index e69de29..587e9ce 100644
--- a/profiles/plants/MA1373.1.pwm
+++ b/profiles/plants/MA1373.1.pwm
@@ -0,0 +1,15 @@
+ 23 60 -255 18
+ 136 -201 8 -292
+ -131 49 45 -28
+ 120 -292 -255 49
+ 179 -342 -342 -146
+ 144 -162 -42 -226
+ 185 -255 -292 -342
+ 3 142 -226 -342
+ -255 -342 186 -342
+ 190 -342 -342 -342
+ -180 182 -342 -342
+ 188 -342 -292 -342
+ 172 -95 -342 -342
+ 185 -342 -226 -342
+ 158 -146 -342 -85
diff --git a/profiles/plants/MA1374.1.pwm b/profiles/plants/MA1374.1.pwm
index 1bbe006..45ffb76 100644
--- a/profiles/plants/MA1374.1.pwm
+++ b/profiles/plants/MA1374.1.pwm
@@ -1,18 +1,18 @@
- 38 67 -173 -30
- 143 -287 7 -302
- -62 62 43 -108
- 145 -561 -202 0
- 174 -719 -10000 -62
- 154 -158 -73 -261
- 185 -224 -267 -561
- -10 136 -136 -310
- -619 -10000 200 -10000
- 198 -402 -10000 -719
- -10000 200 -10000 -10000
- 197 -10000 -373 -10000
- 198 -619 -461 -719
- 188 -373 -233 -487
- 159 -255 -191 -87
- 100 -72 -115 -9
- 87 -93 -124 29
- 74 -62 -44 -8
+ 36 64 -161 -28
+ 139 -255 6 -266
+ -59 60 41 -102
+ 141 -407 -186 0
+ 170 -443 -465 -59
+ 150 -147 -70 -234
+ 181 -204 -239 -407
+ -10 132 -127 -272
+ -424 -465 195 -465
+ 193 -334 -465 -443
+ -465 196 -465 -465
+ 193 -465 -316 -465
+ 193 -424 -366 -443
+ 184 -316 -212 -379
+ 155 -229 -176 -82
+ 97 -68 -108 -9
+ 84 -87 -116 28
+ 72 -59 -42 -8
diff --git a/profiles/plants/MA1375.1.pwm b/profiles/plants/MA1375.1.pwm
index e69de29..866459f 100644
--- a/profiles/plants/MA1375.1.pwm
+++ b/profiles/plants/MA1375.1.pwm
@@ -0,0 +1,11 @@
+ -29 -409 113 -9
+ -182 174 -445 -158
+ 196 -467 -467 -467
+ -467 -445 -467 195
+ -467 -445 -467 195
+ 162 -467 -426 -27
+ 196 -467 -467 -467
+ 35 -445 -467 140
+ -346 -467 -169 183
+ 115 -346 59 -242
+ -43 90 -192 18
diff --git a/profiles/plants/MA1376.1.pwm b/profiles/plants/MA1376.1.pwm
index 4b61821..13686bc 100644
--- a/profiles/plants/MA1376.1.pwm
+++ b/profiles/plants/MA1376.1.pwm
@@ -1,17 +1,17 @@
- 36 -6 -73 20
- 63 -129 -9 14
- 58 -441 -41 77
- -305 -464 -19 157
- -10000 -10000 200 -10000
- -341 -722 -341 193
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -722
- -722 -107 -10000 181
- -622 -722 199 -622
- 26 -58 89 -186
- 6 27 -94 29
- -14 -83 49 18
- 7 -41 26 0
- 5 10 -22 5
- 36 -97 33 -6
+ 35 -6 -69 20
+ 61 -121 -9 14
+ 56 -357 -40 75
+ -269 -368 -18 153
+ -467 -467 196 -467
+ -295 -445 -295 189
+ -467 196 -467 -467
+ -467 -467 196 -467
+ -467 -467 195 -445
+ -445 -101 -467 177
+ -426 -445 194 -426
+ 25 -55 87 -172
+ 6 26 -89 28
+ -14 -79 47 17
+ 7 -40 25 0
+ 5 10 -21 4
+ 34 -92 31 -6
diff --git a/profiles/plants/MA1377.1.pwm b/profiles/plants/MA1377.1.pwm
index e69de29..aa3f05d 100644
--- a/profiles/plants/MA1377.1.pwm
+++ b/profiles/plants/MA1377.1.pwm
@@ -0,0 +1,19 @@
+ -64 -166 94 16
+ -20 -262 113 -37
+ -301 174 -390 -109
+ 152 -206 -93 -142
+ -325 187 -301 -301
+ -69 -280 161 -246
+ 26 -23 37 -60
+ 87 -206 -142 64
+ -37 -115 -262 139
+ -17 71 -390 49
+ -166 103 -354 64
+ -390 191 -390 -325
+ -5 -206 131 -166
+ 188 -390 -246 -390
+ -142 -206 148 -73
+ 61 -301 117 -325
+ 68 33 -195 -17
+ 68 -73 1 -33
+ 53 -52 14 -40
diff --git a/profiles/plants/MA1378.1.pwm b/profiles/plants/MA1378.1.pwm
index d4fd893..2a3129b 100644
--- a/profiles/plants/MA1378.1.pwm
+++ b/profiles/plants/MA1378.1.pwm
@@ -1,15 +1,15 @@
- -359 138 -305 26
- 2 140 -335 -205
- -605 -247 -547 192
- -201 143 -201 -30
- -605 -425 196 -473
- 74 -10000 107 -210
- 33 -425 84 -16
- 147 -305 -153 -39
- 75 -247 -170 87
- -47 20 -45 48
- -184 149 -297 -34
- -253 -359 183 -247
- -68 -77 -117 123
- -44 -325 154 -201
- -2 97 -247 -19
+ -305 134 -267 25
+ 2 136 -288 -188
+ -416 -222 -398 187
+ -184 139 -184 -28
+ -416 -344 192 -369
+ 72 -459 103 -191
+ 32 -344 82 -15
+ 143 -267 -142 -38
+ 72 -222 -157 84
+ -44 20 -43 46
+ -170 145 -261 -32
+ -227 -305 179 -222
+ -64 -73 -110 119
+ -42 -281 150 -184
+ -2 94 -222 -19
diff --git a/profiles/plants/MA1379.1.pwm b/profiles/plants/MA1379.1.pwm
index d2e4bac..a68906b 100644
--- a/profiles/plants/MA1379.1.pwm
+++ b/profiles/plants/MA1379.1.pwm
@@ -1,15 +1,15 @@
- 36 -314 -247 128
- -66 -323 -464 169
- 15 -202 -442 137
- 55 -112 -171 83
- 156 -147 -110 -210
- 186 -10000 -180 -342
- 164 -564 -118 -121
- 169 -10000 -271 -69
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 17 -10000 152
- 168 -10000 -35 -10000
- 189 -174 -10000 -10000
- 200 -10000 -723 -10000
- 84 -323 -10000 107
+ 34 -276 -224 125
+ -63 -282 -369 165
+ 15 -186 -357 134
+ 53 -106 -158 80
+ 152 -138 -104 -192
+ 181 -467 -167 -296
+ 160 -410 -111 -113
+ 165 -467 -242 -66
+ -467 -467 -467 196
+ -467 -467 -467 196
+ -467 17 -467 149
+ 164 -467 -33 -467
+ 185 -161 -467 -467
+ 195 -467 -445 -467
+ 81 -282 -467 104
diff --git a/profiles/plants/MA1380.1.pwm b/profiles/plants/MA1380.1.pwm
index 9396349..6104c6f 100644
--- a/profiles/plants/MA1380.1.pwm
+++ b/profiles/plants/MA1380.1.pwm
@@ -1,15 +1,15 @@
- 66 -10000 -218 114
- -10000 -10000 -10000 200
- -10000 -10000 -81 178
- -10000 -86 -10000 179
- 143 -10000 38 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -71 -322 -10000 172
- 3 -64 -352 117
- -422 -231 -10000 191
- -155 -305 -120 163
- -10 -173 -161 129
- 64 -322 -41 67
- 151 -422 -290 -5
- 145 -297 -364 7
+ 64 -467 -199 110
+ -467 -467 -467 196
+ -467 -467 -77 174
+ -467 -82 -467 175
+ 140 -467 37 -467
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -68 -281 -467 168
+ 3 -61 -302 114
+ -346 -211 -467 186
+ -144 -269 -113 159
+ -10 -160 -150 125
+ 62 -281 -40 65
+ 147 -346 -257 -5
+ 142 -263 -310 7
diff --git a/profiles/plants/MA1381.1.pwm b/profiles/plants/MA1381.1.pwm
index df45b8d..ba7d0ba 100644
--- a/profiles/plants/MA1381.1.pwm
+++ b/profiles/plants/MA1381.1.pwm
@@ -1,15 +1,15 @@
- -17 7 -185 83
- -90 85 -175 45
- 63 -10 -266 45
- 32 12 -166 43
- -149 65 -185 85
- -7 34 -141 49
- -249 -10000 -10000 193
- -10000 200 -10000 -10000
- 199 -10000 -10000 -466
- -466 199 -10000 -10000
- -10000 -10000 -10000 200
- -185 138 -120 -53
- -27 -20 -234 107
- 22 63 -196 4
- 32 36 -166 20
+ -15 7 -162 79
+ -82 81 -154 42
+ 59 -10 -223 42
+ 30 12 -147 40
+ -133 61 -162 81
+ -7 32 -126 46
+ -211 -393 -393 186
+ -393 193 -393 -393
+ 191 -393 -393 -328
+ -328 191 -393 -393
+ -393 -393 -393 193
+ -162 132 -108 -49
+ -25 -18 -200 102
+ 21 59 -171 4
+ 30 34 -147 19
diff --git a/profiles/plants/MA1382.1.pwm b/profiles/plants/MA1382.1.pwm
index e69de29..409dc3a 100644
--- a/profiles/plants/MA1382.1.pwm
+++ b/profiles/plants/MA1382.1.pwm
@@ -0,0 +1,15 @@
+ 64 -32 -56 -5
+ -26 36 -58 28
+ -96 65 -126 58
+ -22 37 -301 79
+ -345 185 -274 -280
+ 196 -466 -466 -466
+ -466 196 -466 -466
+ -466 -466 196 -466
+ -466 195 -466 -393
+ -466 -466 195 -444
+ -466 194 -466 -380
+ -222 109 -146 37
+ -38 -118 -1 84
+ -3 50 -80 4
+ -12 55 -109 20
diff --git a/profiles/plants/MA1383.1.pwm b/profiles/plants/MA1383.1.pwm
index e69de29..55c9507 100644
--- a/profiles/plants/MA1383.1.pwm
+++ b/profiles/plants/MA1383.1.pwm
@@ -0,0 +1,15 @@
+ 44 -4 -154 40
+ -23 -29 -169 102
+ 11 -26 -105 68
+ 76 -26 -12 -85
+ -76 -105 103 -17
+ 130 -140 -229 -6
+ 160 -397 -397 -26
+ -397 -397 -397 193
+ 193 -397 -397 -397
+ -397 -397 -397 193
+ -334 -397 -397 192
+ -310 190 -397 -362
+ -242 -15 -397 151
+ -105 4 -187 115
+ -20 -39 -187 107
diff --git a/profiles/plants/MA1384.1.pwm b/profiles/plants/MA1384.1.pwm
index 3c36fdd..22b3c14 100644
--- a/profiles/plants/MA1384.1.pwm
+++ b/profiles/plants/MA1384.1.pwm
@@ -1,13 +1,13 @@
- 120 -137 -73 -50
- 122 -264 -67 -19
- 101 -78 -44 -58
- 80 -29 52 -10000
- -10000 -10000 200 -10000
- 159 -80 -722 -132
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 183 -116 -10000 -10000
- -564 -10000 -10000 199
- -76 -176 -352 160
- -342 186 -490 -201
- -252 87 -39 31
+ 117 -128 -70 -47
+ 119 -237 -64 -18
+ 98 -74 -42 -55
+ 78 -28 51 -467
+ -467 -467 196 -467
+ 155 -76 -445 -123
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 179 -109 -467 -467
+ -409 -467 -467 195
+ -73 -163 -303 156
+ -295 182 -381 -185
+ -228 84 -37 30
diff --git a/profiles/plants/MA1385.1.pwm b/profiles/plants/MA1385.1.pwm
index e69de29..0f7d74e 100644
--- a/profiles/plants/MA1385.1.pwm
+++ b/profiles/plants/MA1385.1.pwm
@@ -0,0 +1,15 @@
+ -11 -21 -224 99
+ 11 -30 -138 79
+ 71 -100 -109 48
+ 71 -111 -38 17
+ 132 -192 -347 21
+ 158 -467 -426 -13
+ -2 1 -192 80
+ 195 -467 -467 -445
+ -467 -467 -467 196
+ -445 -467 -467 195
+ -467 196 -467 -467
+ -467 36 -337 137
+ -16 2 -215 90
+ -93 -81 -258 145
+ -20 -75 -89 99
diff --git a/profiles/plants/MA1386.1.pwm b/profiles/plants/MA1386.1.pwm
index 7830a61..f821d77 100644
--- a/profiles/plants/MA1386.1.pwm
+++ b/profiles/plants/MA1386.1.pwm
@@ -1,11 +1,11 @@
- 81 -187 90 -323
- -10000 -10000 200 -10000
- 196 -10000 -723 -342
- 200 -10000 -10000 -723
- -10000 -10000 -10000 200
- 62 130 -10000 -10000
- -464 -10000 -406 196
- -90 -202 -167 154
- -70 107 -67 -60
- 14 -54 -5 31
- 55 -167 4 26
+ 78 -173 88 -282
+ -467 -467 196 -467
+ 192 -467 -445 -295
+ 195 -467 -467 -445
+ -467 -467 -467 196
+ 60 127 -467 -467
+ -369 -467 -337 192
+ -86 -185 -155 150
+ -67 104 -64 -57
+ 13 -51 -4 30
+ 53 -155 4 25
diff --git a/profiles/plants/MA1387.1.pwm b/profiles/plants/MA1387.1.pwm
index e69de29..c16dc76 100644
--- a/profiles/plants/MA1387.1.pwm
+++ b/profiles/plants/MA1387.1.pwm
@@ -0,0 +1,15 @@
+ 63 -77 -20 -1
+ -23 -111 93 -37
+ 78 -103 -66 22
+ 136 -152 -160 -41
+ -53 -101 -195 135
+ -17 99 -59 -113
+ -5 -53 72 -53
+ 147 -203 -121 -85
+ 184 -467 -257 -219
+ -467 -467 141 35
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -232 -246 -394 183
+ -467 196 -467 -467
+ -166 72 -219 86
diff --git a/profiles/plants/MA1388.1.pwm b/profiles/plants/MA1388.1.pwm
index e69de29..c68a1de 100644
--- a/profiles/plants/MA1388.1.pwm
+++ b/profiles/plants/MA1388.1.pwm
@@ -0,0 +1,8 @@
+ 74 -5 41 -467
+ -467 -467 196 -467
+ 189 -247 -467 -369
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 64 124 -467 -467
+ -26 -357 -328 157
+ 21 -138 43 16
diff --git a/profiles/plants/MA1389.1.pwm b/profiles/plants/MA1389.1.pwm
index e69de29..ef0201a 100644
--- a/profiles/plants/MA1389.1.pwm
+++ b/profiles/plants/MA1389.1.pwm
@@ -0,0 +1,15 @@
+ 132 -75 -78 -167
+ 112 -111 -49 -63
+ 108 -150 31 -182
+ -182 -426 182 -289
+ 164 -150 -233 -164
+ 196 -467 -467 -467
+ -467 -445 -126 181
+ 195 -445 -467 -467
+ -467 -467 -445 195
+ -158 -296 -167 169
+ -426 195 -445 -467
+ -467 79 4 28
+ 57 -29 -25 -23
+ 105 -122 -164 24
+ 4 -93 -54 82
diff --git a/profiles/plants/MA1390.1.pwm b/profiles/plants/MA1390.1.pwm
index e69de29..e6e61b2 100644
--- a/profiles/plants/MA1390.1.pwm
+++ b/profiles/plants/MA1390.1.pwm
@@ -0,0 +1,13 @@
+ -43 -192 138 -138
+ 95 -153 -21 -23
+ 152 -357 -158 -48
+ -164 -73 -276 155
+ -70 132 -233 -53
+ 41 -22 -22 -7
+ 104 -68 -84 -40
+ 167 -328 -145 -148
+ -369 -410 171 -75
+ 195 -426 -467 -467
+ -276 -395 -467 191
+ -118 -145 -228 158
+ -381 194 -467 -467
diff --git a/profiles/plants/MA1391.1.pwm b/profiles/plants/MA1391.1.pwm
index e69de29..c721650 100644
--- a/profiles/plants/MA1391.1.pwm
+++ b/profiles/plants/MA1391.1.pwm
@@ -0,0 +1,11 @@
+ 65 -10 -12 -81
+ -196 -319 -467 185
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -143 88 -88 31
+ -31 -467 164 -467
+ 120 -81 -467 13
+ 101 20 -445 -33
+ 53 -179 -381 113
+ 10 16 -107 42
diff --git a/profiles/plants/MA1391.2.pwm b/profiles/plants/MA1391.2.pwm
index e69de29..aebfd12 100644
--- a/profiles/plants/MA1391.2.pwm
+++ b/profiles/plants/MA1391.2.pwm
@@ -0,0 +1,13 @@
+ 29 -8 -109 44
+ 46 -29 -99 38
+ 110 -99 -83 -35
+ -262 -323 -430 188
+ 194 -413 -413 -430
+ 194 -470 -361 -430
+ -470 194 -470 -361
+ -315 183 -372 -197
+ -212 -448 187 -398
+ -7 -197 -293 141
+ 122 -79 -286 -6
+ 76 -150 -127 62
+ 34 -20 -51 21
diff --git a/profiles/plants/MA1392.1.pwm b/profiles/plants/MA1392.1.pwm
index ab33d98..50b5fa9 100644
--- a/profiles/plants/MA1392.1.pwm
+++ b/profiles/plants/MA1392.1.pwm
@@ -1,15 +1,15 @@
- 63 -102 -19 12
- 110 -197 -141 29
- 80 -163 -115 57
- 69 -119 -138 65
- 12 -24 -138 75
- -172 -10000 189 -10000
- -341 -10000 -10000 197
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -621 -115 173 -217
- -10000 -204 105 76
- 108 -89 -10000 43
- 44 -11 -321 69
- 72 -133 17 -27
+ 61 -97 -18 11
+ 107 -181 -132 28
+ 78 -151 -108 55
+ 66 -112 -129 63
+ 11 -23 -129 73
+ -160 -467 184 -467
+ -294 -467 -467 192
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -426 -108 169 -198
+ -467 -188 102 73
+ 105 -84 -467 41
+ 42 -10 -281 66
+ 70 -125 16 -26
diff --git a/profiles/plants/MA1393.1.pwm b/profiles/plants/MA1393.1.pwm
index e69de29..6623e6b 100644
--- a/profiles/plants/MA1393.1.pwm
+++ b/profiles/plants/MA1393.1.pwm
@@ -0,0 +1,14 @@
+ -104 -31 -289 136
+ 196 -467 -467 -467
+ 190 -242 -467 -467
+ -467 196 -467 -467
+ -186 76 5 -2
+ -70 -467 173 -467
+ 65 -133 -311 94
+ 103 -14 -381 -3
+ 95 -219 -203 68
+ 53 -71 -224 80
+ 149 -224 -228 -37
+ 146 -88 -192 -115
+ -14 118 -200 -81
+ -32 55 -70 16
diff --git a/profiles/plants/MA1393.2.pwm b/profiles/plants/MA1393.2.pwm
index e69de29..e33d2c5 100644
--- a/profiles/plants/MA1393.2.pwm
+++ b/profiles/plants/MA1393.2.pwm
@@ -0,0 +1,11 @@
+ 51 -73 -58 38
+ -4 -63 -132 99
+ 172 -359 -192 -144
+ 185 -475 -211 -286
+ -547 196 -483 -416
+ -264 187 -547 -260
+ -405 -534 196 -522
+ -169 -196 -255 171
+ -145 -218 -400 174
+ 79 -133 -30 9
+ 34 -35 -60 37
diff --git a/profiles/plants/MA1394.1.pwm b/profiles/plants/MA1394.1.pwm
index 9bbc6f1..0c5b9fa 100644
--- a/profiles/plants/MA1394.1.pwm
+++ b/profiles/plants/MA1394.1.pwm
@@ -1,11 +1,11 @@
- -227 -61 -10000 165
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -342 80 5 18
- -237 -10000 193 -10000
- 47 -142 -10000 116
- 111 -2 -10000 -22
- 99 -258 -264 76
- 50 -21 -177 51
- 84 -102 -177 51
+ -207 -58 -467 161
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 196 -467 -467
+ -296 77 5 17
+ -215 -467 189 -467
+ 46 -133 -467 113
+ 108 -2 -467 -21
+ 96 -233 -237 74
+ 48 -20 -164 50
+ 82 -96 -164 49
diff --git a/profiles/plants/MA1394.2.pwm b/profiles/plants/MA1394.2.pwm
index e69de29..f638f11 100644
--- a/profiles/plants/MA1394.2.pwm
+++ b/profiles/plants/MA1394.2.pwm
@@ -0,0 +1,12 @@
+ 16 -26 -46 40
+ 4 1 -234 82
+ 195 -507 -428 -450
+ 191 -264 -491 -438
+ -438 194 -476 -377
+ -334 -132 164 -137
+ -334 -450 191 -345
+ -351 -297 -450 190
+ -46 118 -309 -16
+ 182 -277 -264 -267
+ 61 -20 -99 14
+ 40 -41 -52 29
diff --git a/profiles/plants/MA1396.1.pwm b/profiles/plants/MA1396.1.pwm
index e69de29..e8d9030 100644
--- a/profiles/plants/MA1396.1.pwm
+++ b/profiles/plants/MA1396.1.pwm
@@ -0,0 +1,13 @@
+ -113 59 -138 73
+ 186 -442 -201 -359
+ -442 -442 195 -442
+ 195 -442 -442 -442
+ -442 -442 -442 195
+ -442 195 -442 -442
+ -442 -56 -330 167
+ 168 -442 -50 -442
+ -16 -82 119 -196
+ 147 -99 -164 -131
+ -14 -107 -128 114
+ -19 61 -91 9
+ -7 16 -116 57
diff --git a/profiles/plants/MA1397.1.pwm b/profiles/plants/MA1397.1.pwm
index e69de29..f3d40ab 100644
--- a/profiles/plants/MA1397.1.pwm
+++ b/profiles/plants/MA1397.1.pwm
@@ -0,0 +1,11 @@
+ 97 -347 -296 86
+ 74 -203 -38 39
+ -158 -67 -426 158
+ -179 -467 186 -467
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 190 -369 -381 -319
+ 183 -467 -182 -303
+ 16 -124 63 -13
+ 46 -100 58 -67
diff --git a/profiles/plants/MA1398.1.pwm b/profiles/plants/MA1398.1.pwm
index ef1042b..cfdfc70 100644
--- a/profiles/plants/MA1398.1.pwm
+++ b/profiles/plants/MA1398.1.pwm
@@ -1,15 +1,15 @@
- 59 -33 -153 44
- 34 -30 -116 55
- 89 -104 -125 31
- 95 -173 -70 20
- -98 93 -164 34
- -14 100 -139 -50
- -377 -177 -10000 186
- -377 -464 -332 192
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 182 -10000 -106
- 156 -523 -102 -90
- 52 -25 -242 63
- 103 -323 -406 85
+ 57 -32 -142 42
+ 33 -28 -109 54
+ 86 -98 -117 30
+ 93 -161 -67 19
+ -92 90 -153 33
+ -13 97 -130 -48
+ -319 -164 -467 182
+ -319 -369 -288 188
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -467 177 -467 -100
+ 152 -395 -96 -86
+ 50 -24 -219 61
+ 100 -282 -337 82
diff --git a/profiles/plants/MA1398.2.pwm b/profiles/plants/MA1398.2.pwm
index e69de29..a701e40 100644
--- a/profiles/plants/MA1398.2.pwm
+++ b/profiles/plants/MA1398.2.pwm
@@ -0,0 +1,11 @@
+ 93 -118 -71 7
+ -46 39 -107 57
+ -255 176 -192 -255
+ -176 -270 -402 180
+ -198 -320 -317 182
+ 192 -355 -442 -366
+ -424 -424 -456 195
+ -418 194 -407 -424
+ -335 170 -363 -82
+ 104 -205 -43 -5
+ 47 -26 -133 47
diff --git a/profiles/plants/MA1400.1.pwm b/profiles/plants/MA1400.1.pwm
index fd2867a..b33915d 100644
--- a/profiles/plants/MA1400.1.pwm
+++ b/profiles/plants/MA1400.1.pwm
@@ -1,14 +1,14 @@
- 86 -277 -104 63
- 109 -406 -242 70
- 91 -247 -14 4
- -218 -89 -723 169
- -237 -10000 193 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 195 -423 -490 -464
- 189 -10000 -218 -364
- -87 -142 117 -28
- 20 -130 109 -167
- 10 -80 -164 102
- 17 -108 -80 87
+ 84 -247 -98 61
+ 106 -337 -219 68
+ 89 -223 -13 4
+ -199 -84 -445 165
+ -215 -467 189 -467
+ -467 -467 196 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 191 -346 -381 -369
+ 185 -467 -199 -310
+ -82 -133 114 -27
+ 19 -122 106 -155
+ 10 -76 -153 99
+ 17 -102 -76 84
diff --git a/profiles/plants/MA1401.1.pwm b/profiles/plants/MA1401.1.pwm
index e69de29..cafe965 100644
--- a/profiles/plants/MA1401.1.pwm
+++ b/profiles/plants/MA1401.1.pwm
@@ -0,0 +1,12 @@
+ 73 -65 13 -72
+ 146 -336 -281 2
+ 195 -467 -467 -409
+ 196 -467 -467 -467
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ 196 -467 -467 -467
+ -467 -467 -467 196
+ -467 196 -467 -467
+ -247 -158 -409 178
+ 4 -55 -111 87
+ 96 -52 -45 -69
diff --git a/profiles/plants/MA1402.1.pwm b/profiles/plants/MA1402.1.pwm
index e69de29..087e297 100644
--- a/profiles/plants/MA1402.1.pwm
+++ b/profiles/plants/MA1402.1.pwm
@@ -0,0 +1,21 @@
+ -88 145 -322 -68
+ -123 -117 -388 161
+ -162 171 -191 -276
+ -145 -227 -258 171
+ -171 153 -227 -73
+ -242 -322 -258 182
+ -388 170 -297 -83
+ -322 -242 -351 186
+ -351 184 -322 -214
+ -388 -351 -388 192
+ -351 177 -388 -117
+ -322 -388 -388 191
+ -322 191 -388 -388
+ -388 -351 -388 192
+ -171 177 -388 -227
+ -276 -297 -388 187
+ -171 177 -258 -297
+ -214 -242 -388 181
+ -242 178 -388 -171
+ -297 -322 -322 187
+ 8 133 -351 -153
diff --git a/profiles/plants/MA1403.1.pwm b/profiles/plants/MA1403.1.pwm
index e69de29..168dee8 100644
--- a/profiles/plants/MA1403.1.pwm
+++ b/profiles/plants/MA1403.1.pwm
@@ -0,0 +1,30 @@
+ 180 -347 -156 -347
+ -234 -347 186 -347
+ 190 -347 -347 -347
+ -263 -347 184 -263
+ 187 -347 -347 -263
+ -299 -347 186 -263
+ 186 -347 -347 -234
+ -347 -299 187 -299
+ 186 -347 -263 -299
+ -299 -299 187 -347
+ 190 -347 -347 -347
+ -347 -347 190 -347
+ 190 -347 -347 -347
+ -210 -347 183 -299
+ 189 -347 -299 -347
+ -263 -347 187 -347
+ 189 -347 -299 -347
+ -299 -299 187 -347
+ 184 -347 -299 -234
+ -299 -299 186 -299
+ 189 -347 -299 -347
+ -347 -299 189 -347
+ 187 -347 -347 -263
+ -299 -299 186 -299
+ 184 -347 -234 -299
+ -299 -299 186 -299
+ 184 -347 -347 -210
+ -347 -210 184 -347
+ 187 -263 -347 -347
+ -190 -234 174 -234
diff --git a/profiles/plants/MA1404.1.pwm b/profiles/plants/MA1404.1.pwm
index da4dc53..bc31982 100644
--- a/profiles/plants/MA1404.1.pwm
+++ b/profiles/plants/MA1404.1.pwm
@@ -1,24 +1,24 @@
- -72 -290 164 -290
- 184 -507 -222 -255
- -407 -317 184 -203
- 189 -10000 -290 -275
- -101 -390 173 -317
- 189 -10000 -179 -10000
- -165 -299 177 -290
- 183 -549 -161 -327
- -179 -10000 184 -290
- 195 -449 -607 -361
- -232 -607 191 -607
- 194 -361 -549 -427
- -112 -390 174 -290
- 177 -10000 -127 -255
- -132 -10000 178 -255
- 185 -10000 -132 -10000
- -172 -375 179 -268
- 191 -10000 -390 -261
- -92 -607 177 -427
- 183 -349 -194 -327
- -88 -283 171 -427
- 174 -317 -179 -194
- -152 -275 166 -158
- 169 -261 -165 -183
+ -68 -256 160 -256
+ 180 -384 -201 -229
+ -335 -276 180 -186
+ 185 -460 -256 -245
+ -95 -325 169 -276
+ 185 -460 -165 -460
+ -153 -262 173 -256
+ 178 -400 -150 -283
+ -165 -460 180 -256
+ 190 -357 -417 -306
+ -210 -417 187 -417
+ 190 -306 -400 -346
+ -105 -325 170 -256
+ 173 -460 -119 -229
+ -123 -460 173 -229
+ 180 -460 -123 -460
+ -159 -315 175 -239
+ 187 -460 -325 -234
+ -87 -417 173 -346
+ 178 -298 -178 -283
+ -83 -250 167 -346
+ 170 -276 -165 -178
+ -141 -245 162 -147
+ 165 -234 -153 -168
diff --git a/profiles/plants/MA1405.1.pwm b/profiles/plants/MA1405.1.pwm
index c5df53c..7b22dfd 100644
--- a/profiles/plants/MA1405.1.pwm
+++ b/profiles/plants/MA1405.1.pwm
@@ -1,10 +1,10 @@
- -63 -27 65 -7
- 182 -532 -159 -323
- -657 165 -29 -556
- -291 -477 -432 192
- -175 -308 183 -481
- 134 -262 -241 15
- -481 183 -308 -175
- 192 -432 -477 -291
- -556 -29 165 -657
- -323 -159 -532 182
+ -62 -27 65 -7
+ 182 -515 -158 -319
+ -619 165 -29 -536
+ -288 -465 -424 192
+ -174 -305 182 -470
+ 134 -259 -239 15
+ -470 182 -305 -174
+ 192 -424 -465 -288
+ -536 -29 165 -619
+ -319 -158 -515 182
diff --git a/profiles/plants/MA1406.1.pwm b/profiles/plants/MA1406.1.pwm
index e69de29..97013e4 100644
--- a/profiles/plants/MA1406.1.pwm
+++ b/profiles/plants/MA1406.1.pwm
@@ -0,0 +1,10 @@
+ -334 69 -365 114
+ 172 -289 -517 -85
+ 197 -419 -719 -618
+ -606 -593 -734 199
+ -282 77 69 -91
+ 198 -743 -593 -551
+ -454 -635 -565 197
+ -215 -489 -312 186
+ -47 -277 145 -132
+ -99 43 48 -42
diff --git a/profiles/plants/MA1408.1.pwm b/profiles/plants/MA1408.1.pwm
index 7624b28..9232681 100644
--- a/profiles/plants/MA1408.1.pwm
+++ b/profiles/plants/MA1408.1.pwm
@@ -1,10 +1,10 @@
- 85 -185 11 -25
- -25 -466 156 -250
- -448 -589 -132 182
- -343 -392 -503 193
- 163 -199 -332 -86
- -427 -485 196 -495
- -419 -485 187 -202
- -423 -25 -570 162
- 142 -133 -159 -76
- 21 -32 0 6
+ 85 -184 11 -25
+ -25 -455 155 -248
+ -438 -565 -132 182
+ -339 -386 -489 193
+ 163 -198 -328 -86
+ -419 -473 195 -482
+ -411 -473 187 -201
+ -415 -24 -549 162
+ 142 -132 -158 -76
+ 21 -32 0 6
diff --git a/profiles/plants/MA1409.1.pwm b/profiles/plants/MA1409.1.pwm
index e65d9fa..f3f0105 100644
--- a/profiles/plants/MA1409.1.pwm
+++ b/profiles/plants/MA1409.1.pwm
@@ -1,10 +1,10 @@
- 104 -114 -109 3
- 180 -304 -205 -263
- -568 -558 197 -424
- 197 -644 -501 -460
- -566 -569 -562 198
- 153 -169 -575 -36
- -582 187 -535 -178
- -389 -314 189 -314
- -84 41 90 -202
- -29 -114 -218 133
+ 103 -113 -108 3
+ 179 -301 -203 -260
+ -547 -538 196 -416
+ 197 -610 -487 -450
+ -545 -548 -541 197
+ 153 -168 -553 -36
+ -558 187 -518 -177
+ -383 -310 189 -310
+ -84 41 90 -200
+ -29 -113 -217 132
diff --git a/profiles/plants/MA1410.1.pwm b/profiles/plants/MA1410.1.pwm
index d2de0f9..ef08b1e 100644
--- a/profiles/plants/MA1410.1.pwm
+++ b/profiles/plants/MA1410.1.pwm
@@ -1,10 +1,10 @@
- -112 -8 55 17
- -336 -359 190 -334
- -590 -581 198 -530
- -251 -76 159 -212
- -244 126 34 -266
- -476 197 -470 -579
- -193 187 -460 -515
- 29 108 -114 -228
- -59 106 -136 -21
- -83 96 -48 -38
+ -112 -8 55 17
+ -332 -354 189 -330
+ -565 -558 197 -514
+ -248 -76 158 -211
+ -242 125 34 -264
+ -464 196 -459 -556
+ -192 187 -450 -500
+ 29 108 -113 -226
+ -59 106 -135 -21
+ -83 96 -47 -38
diff --git a/profiles/plants/MA1411.1.pwm b/profiles/plants/MA1411.1.pwm
index e69de29..76f56c3 100644
--- a/profiles/plants/MA1411.1.pwm
+++ b/profiles/plants/MA1411.1.pwm
@@ -0,0 +1,10 @@
+ 32 8 -33 -16
+ -289 -223 186 -635
+ -99 180 -759 -726
+ 190 -804 -216 -447
+ -611 197 -683 -394
+ -394 -683 197 -611
+ -447 -216 -804 190
+ -726 -759 180 -99
+ -635 186 -223 -289
+ 39 -82 42 -35
diff --git a/profiles/plants/MA1412.1.pwm b/profiles/plants/MA1412.1.pwm
index e69de29..745663e 100644
--- a/profiles/plants/MA1412.1.pwm
+++ b/profiles/plants/MA1412.1.pwm
@@ -0,0 +1,10 @@
+ -50 20 -13 29
+ -318 -341 191 -531
+ -359 196 -685 -584
+ 153 -692 10 -524
+ -573 193 -749 -257
+ -257 -749 193 -573
+ -524 10 -692 153
+ -584 -685 196 -359
+ -531 191 -341 -318
+ 9 -35 39 -25
diff --git a/profiles/plants/MA1414.1.pwm b/profiles/plants/MA1414.1.pwm
index e69de29..66061fb 100644
--- a/profiles/plants/MA1414.1.pwm
+++ b/profiles/plants/MA1414.1.pwm
@@ -0,0 +1,10 @@
+ 12 -81 -94 87
+ -3 -10 66 -99
+ -352 -238 187 -418
+ -361 189 -356 -313
+ -306 -458 191 -371
+ -449 194 -376 -418
+ -514 190 -514 -217
+ 189 -425 -361 -260
+ 65 -7 -151 18
+ 55 -30 -12 -32
diff --git a/profiles/plants/MA1415.1.pwm b/profiles/plants/MA1415.1.pwm
index e69de29..ade556f 100644
--- a/profiles/plants/MA1415.1.pwm
+++ b/profiles/plants/MA1415.1.pwm
@@ -0,0 +1,11 @@
+ 109 -206 31 -136
+ 150 -262 -66 -140
+ 189 -447 -458 -228
+ 191 -425 -281 -458
+ -586 197 -586 -458
+ 196 -454 -437 -522
+ -547 -469 196 -422
+ 192 -469 -296 -444
+ -396 -522 194 -382
+ -29 20 -6 10
+ 127 -94 -104 -80
diff --git a/profiles/plants/MA1416.1.pwm b/profiles/plants/MA1416.1.pwm
index e69de29..589dd90 100644
--- a/profiles/plants/MA1416.1.pwm
+++ b/profiles/plants/MA1416.1.pwm
@@ -0,0 +1,14 @@
+ -87 -223 160 -219
+ 158 -240 -62 -261
+ -131 -275 170 -235
+ 171 -277 -108 -323
+ -401 -354 191 -325
+ 198 -550 -695 -645
+ -792 -681 199 -604
+ 199 -576 -698 -633
+ -792 -665 199 -604
+ 199 -631 -708 -688
+ -750 -668 199 -626
+ 173 -315 -106 -358
+ -125 -304 172 -260
+ 160 -282 -60 -265
diff --git a/profiles/plants/MA1417.1.pwm b/profiles/plants/MA1417.1.pwm
index e69de29..0435dc0 100644
--- a/profiles/plants/MA1417.1.pwm
+++ b/profiles/plants/MA1417.1.pwm
@@ -0,0 +1,13 @@
+ -71 -43 102 -69
+ -189 -37 -168 140
+ -369 -468 187 -216
+ -295 192 -448 -455
+ -519 196 -420 -529
+ 196 -519 -448 -529
+ -415 152 -483 5
+ -51 -219 160 -461
+ -509 -442 -529 196
+ -410 194 -373 -553
+ 192 -455 -283 -509
+ -343 -83 -30 134
+ -194 169 -227 -174
diff --git a/profiles/plants/MA1424.1.pwm b/profiles/plants/MA1424.1.pwm
index e69de29..0934a8b 100644
--- a/profiles/plants/MA1424.1.pwm
+++ b/profiles/plants/MA1424.1.pwm
@@ -0,0 +1,15 @@
+ -36 89 -101 -19
+ 14 -129 38 25
+ -186 106 -76 7
+ -276 189 -456 -343
+ 182 -503 -130 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ 164 -93 -432 -172
+ -503 197 -503 -503
+ 154 -139 -88 -258
+ 35 51 -139 -12
+ 23 20 -69 8
+ 19 -52 23 -1
+ 13 39 -37 -29
diff --git a/profiles/plants/MA1425.1.pwm b/profiles/plants/MA1425.1.pwm
index b62bb7b..d5071f2 100644
--- a/profiles/plants/MA1425.1.pwm
+++ b/profiles/plants/MA1425.1.pwm
@@ -1,12 +1,12 @@
- -31 -31 67 -31
- 58 -71 36 -71
- 18 -179 -179 119
- -344 49 107 -129
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -238 -69 158 -238
- -30 -136 65 29
- -49 90 -49 -49
- 36 -14 -14 -14
+ -30 -30 65 -30
+ 56 -69 36 -69
+ 18 -169 -169 117
+ -306 48 104 -123
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -220 -67 155 -220
+ -29 -130 64 29
+ -48 88 -48 -48
+ 35 -14 -14 -14
diff --git a/profiles/plants/MA1426.1.pwm b/profiles/plants/MA1426.1.pwm
index 908e5a1..6468b7b 100644
--- a/profiles/plants/MA1426.1.pwm
+++ b/profiles/plants/MA1426.1.pwm
@@ -1,10 +1,10 @@
- 38 -12 -17 -16
- -32 19 -45 40
- 113 9 -49 -496
- -264 168 -101 -279
- -279 -10000 195 -10000
- -10000 200 -10000 -10000
- -796 -10000 145 35
- -203 152 -107 -132
- -164 129 -65 -74
- 12 -17 -34 31
+ 37 -11 -17 -16
+ -31 18 -43 39
+ 111 9 -47 -402
+ -243 165 -97 -255
+ -255 -503 191 -503
+ -503 197 -503 -503
+ -486 -503 142 34
+ -190 150 -102 -125
+ -155 126 -63 -71
+ 11 -16 -33 30
diff --git a/profiles/plants/MA1427.1.pwm b/profiles/plants/MA1427.1.pwm
index e69de29..138f4ed 100644
--- a/profiles/plants/MA1427.1.pwm
+++ b/profiles/plants/MA1427.1.pwm
@@ -0,0 +1,9 @@
+ 12 -45 53 -45
+ -503 -503 -503 197
+ -503 -503 -132 182
+ -140 -503 183 -503
+ -503 197 -503 -503
+ -503 -503 182 -126
+ -503 -503 -503 197
+ 92 -126 73 -503
+ -53 -63 -174 124
diff --git a/profiles/plants/MA1428.1.pwm b/profiles/plants/MA1428.1.pwm
index e69de29..fa73c8f 100644
--- a/profiles/plants/MA1428.1.pwm
+++ b/profiles/plants/MA1428.1.pwm
@@ -0,0 +1,9 @@
+ -52 -5 57 -22
+ -239 -349 165 -80
+ -77 -280 151 -124
+ -71 3 78 -61
+ -62 136 -186 -99
+ -269 192 -470 -503
+ -321 182 -503 -162
+ 176 -485 -109 -321
+ -269 151 -130 -75
diff --git a/profiles/plants/MA1430.1.pwm b/profiles/plants/MA1430.1.pwm
index e69de29..b6a72b6 100644
--- a/profiles/plants/MA1430.1.pwm
+++ b/profiles/plants/MA1430.1.pwm
@@ -0,0 +1,10 @@
+ -503 -503 197 -503
+ -503 -503 197 -503
+ -149 30 103 -142
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -240 191 -503 -503
+ -252 190 -502 -411
+ -68 172 -444 -456
+ -77 135 -362 -34
+ 61 68 -102 -141
diff --git a/profiles/plants/MA1659.1.pwm b/profiles/plants/MA1659.1.pwm
index 01dfc1c..5f8013a 100644
--- a/profiles/plants/MA1659.1.pwm
+++ b/profiles/plants/MA1659.1.pwm
@@ -1,12 +1,12 @@
- -6 -19 -45 52
- -64 -113 80 22
- -120 177 -461 -329
- -348 193 -414 -461
- 197 -624 -501 -437
- -311 191 -510 -323
- -285 -319 186 -292
- -364 -470 -486 194
- -131 115 27 -258
- 62 -137 -15 24
- -5 30 -70 25
- 11 33 -83 14
+ -6 -19 -45 51
+ -63 -111 79 22
+ -117 176 -423 -313
+ -331 192 -386 -423
+ 195 -528 -453 -405
+ -298 189 -459 -308
+ -274 -305 184 -280
+ -345 -431 -442 193
+ -128 114 27 -249
+ 61 -135 -15 23
+ -5 30 -69 24
+ 11 33 -82 14
diff --git a/profiles/plants/MA1660.1.pwm b/profiles/plants/MA1660.1.pwm
index 7b13551..6d4d433 100644
--- a/profiles/plants/MA1660.1.pwm
+++ b/profiles/plants/MA1660.1.pwm
@@ -1,24 +1,24 @@
- 41 -20 -77 28
- 2 -46 3 31
- -42 -120 -38 104
- -157 -376 -364 181
- -62 -337 -122 150
- 108 -105 -72 -32
- -422 197 -10000 -522
- -722 -505 -188 188
- -822 -722 -10000 200
- -287 -119 169 -232
- -116 -73 -157 139
- -87 -87 -42 111
- -53 90 -59 -36
- -32 -3 -112 81
- -2 82 -60 -77
- -370 191 -342 -390
- 200 -10000 -10000 -822
- 187 -161 -822 -664
- -505 -10000 198 -564
- -26 -101 -132 118
- 155 -147 -432 -59
- 176 -398 -422 -104
- 35 5 -87 20
- 18 24 -76 14
+ 40 -19 -74 27
+ 2 -45 3 30
+ -41 -115 -37 102
+ -149 -333 -324 178
+ -60 -303 -117 147
+ 106 -101 -69 -31
+ -364 194 -515 -421
+ -485 -412 -178 185
+ -500 -485 -515 197
+ -263 -114 166 -216
+ -111 -71 -149 136
+ -83 -83 -40 109
+ -51 88 -57 -35
+ -31 -3 -107 79
+ -2 81 -58 -74
+ -328 188 -307 -342
+ 197 -515 -515 -500
+ 184 -153 -500 -472
+ -412 -515 195 -439
+ -25 -97 -126 116
+ 152 -140 -370 -57
+ 174 -348 -364 -100
+ 34 5 -83 19
+ 17 23 -73 13
diff --git a/profiles/plants/MA1661.1.pwm b/profiles/plants/MA1661.1.pwm
index e69de29..b7d2b1d 100644
--- a/profiles/plants/MA1661.1.pwm
+++ b/profiles/plants/MA1661.1.pwm
@@ -0,0 +1,12 @@
+ 86 -142 -39 7
+ 22 -8 -103 49
+ -310 -419 190 -335
+ -246 -439 190 -428
+ -230 -463 -145 176
+ 16 -346 -175 132
+ 192 -439 -378 -340
+ 191 -371 -393 -346
+ 186 -385 -371 -218
+ 180 -340 -315 -168
+ 59 -104 -92 56
+ 40 -106 -46 56
diff --git a/profiles/plants/MA1662.1.pwm b/profiles/plants/MA1662.1.pwm
index e69de29..e73025c 100644
--- a/profiles/plants/MA1662.1.pwm
+++ b/profiles/plants/MA1662.1.pwm
@@ -0,0 +1,13 @@
+ 40 1 -100 24
+ 22 -106 31 15
+ -182 -194 -205 168
+ -278 -371 -445 190
+ 190 -371 -312 -378
+ 191 -378 -344 -378
+ -312 189 -403 -312
+ 157 -322 -33 -294
+ -344 -403 190 -303
+ 176 -210 -394 -165
+ 57 -46 -11 -22
+ 24 -41 -16 23
+ 11 -24 -98 65
diff --git a/profiles/plants/MA1663.1.pwm b/profiles/plants/MA1663.1.pwm
index e69de29..21fc9c1 100644
--- a/profiles/plants/MA1663.1.pwm
+++ b/profiles/plants/MA1663.1.pwm
@@ -0,0 +1,16 @@
+ -467 196 -467 -467
+ -467 -467 -107 178
+ -467 -467 -467 196
+ -369 -346 192 -467
+ -86 24 -65 71
+ 25 -74 61 -53
+ 32 -28 -76 42
+ 22 36 -147 26
+ 95 -128 29 -119
+ -445 177 -219 -164
+ 196 -467 -467 -467
+ 152 7 -467 -467
+ -467 -467 196 -467
+ -124 -48 -58 113
+ 74 -22 -467 51
+ 182 -467 -467 -135
diff --git a/profiles/plants/MA1664.1.pwm b/profiles/plants/MA1664.1.pwm
index d23d574..e2df621 100644
--- a/profiles/plants/MA1664.1.pwm
+++ b/profiles/plants/MA1664.1.pwm
@@ -1,15 +1,15 @@
- 113 -130 16 -180
- -723 -723 199 -564
- 195 -623 -423 -391
- 176 -464 -323 -112
- -104 4 96 -87
- 8 35 -20 -33
- -110 -214 -353 169
- -277 -423 -323 188
- -523 193 -264 -10000
- -332 -57 -171 155
- 145 -174 -14 -423
- -10000 -491 199 -10000
- 191 -353 -464 -298
- 149 -214 -135 -79
- -11 -31 69 -61
+ 110 -122 16 -167
+ -445 -445 194 -410
+ 191 -426 -347 -328
+ 172 -369 -282 -106
+ -98 4 93 -83
+ 8 34 -19 -32
+ -104 -196 -303 165
+ -247 -347 -282 184
+ -395 189 -237 -467
+ -289 -54 -158 151
+ 142 -161 -14 -347
+ -467 -381 194 -467
+ 186 -303 -369 -264
+ 145 -196 -126 -75
+ -11 -30 67 -58
diff --git a/profiles/plants/MA1665.1.pwm b/profiles/plants/MA1665.1.pwm
index e69de29..b730e54 100644
--- a/profiles/plants/MA1665.1.pwm
+++ b/profiles/plants/MA1665.1.pwm
@@ -0,0 +1,12 @@
+ -311 -410 189 -319
+ 190 -467 -328 -311
+ 189 -467 -369 -253
+ -84 -89 120 -71
+ -57 84 -18 -63
+ -158 -395 -410 182
+ -328 -467 -410 193
+ -467 195 -467 -426
+ -381 6 -192 139
+ 158 -369 -60 -189
+ -41 -276 148 -167
+ 172 -319 -179 -167
diff --git a/profiles/plants/MA1666.1.pwm b/profiles/plants/MA1666.1.pwm
index e69de29..04aad34 100644
--- a/profiles/plants/MA1666.1.pwm
+++ b/profiles/plants/MA1666.1.pwm
@@ -0,0 +1,14 @@
+ -128 -190 -293 167
+ -379 -325 -425 191
+ -466 195 -466 -425
+ -444 -34 -261 158
+ 166 -240 -85 -344
+ -466 -408 195 -466
+ 191 -408 -466 -273
+ 173 -344 -267 -117
+ -27 -25 56 -23
+ -92 101 -28 -66
+ -205 -255 -393 182
+ -325 -393 -425 192
+ -444 194 -466 -393
+ -221 -2 -221 137
diff --git a/profiles/plants/MA1667.1.pwm b/profiles/plants/MA1667.1.pwm
index e69de29..8e44bca 100644
--- a/profiles/plants/MA1667.1.pwm
+++ b/profiles/plants/MA1667.1.pwm
@@ -0,0 +1,11 @@
+ -467 195 -467 -445
+ -467 -53 -289 165
+ 174 -264 -113 -467
+ -467 -410 195 -467
+ 193 -426 -467 -328
+ 180 -445 -269 -167
+ -27 -58 66 -12
+ -104 124 -23 -176
+ -189 -445 -467 187
+ -369 -467 -467 194
+ -467 196 -467 -467
diff --git a/profiles/plants/MA1669.1.pwm b/profiles/plants/MA1669.1.pwm
index c94e4de..9694429 100644
--- a/profiles/plants/MA1669.1.pwm
+++ b/profiles/plants/MA1669.1.pwm
@@ -1,14 +1,14 @@
- 7 -49 -4 34
- -38 9 -79 67
- -71 21 -62 67
- 14 -437 146 -333
- -551 194 -503 -304
- -572 199 -742 -642
- -642 -561 199 -683
- 193 -396 -433 -375
- -610 198 -583 -533
- 171 -266 -154 -209
- -122 -182 -275 165
- 12 36 -25 -34
- 47 -81 13 -6
- 26 -26 -42 29
+ 7 -48 -4 33
+ -37 8 -77 66
+ -70 20 -61 66
+ 14 -392 144 -310
+ -463 192 -435 -286
+ -474 197 -535 -505
+ -505 -469 196 -519
+ 191 -361 -389 -344
+ -492 196 -480 -453
+ 169 -253 -149 -200
+ -119 -175 -260 163
+ 12 36 -24 -34
+ 46 -79 12 -6
+ 25 -26 -41 29
diff --git a/profiles/plants/MA1670.1.pwm b/profiles/plants/MA1670.1.pwm
index e69de29..8958993 100644
--- a/profiles/plants/MA1670.1.pwm
+++ b/profiles/plants/MA1670.1.pwm
@@ -0,0 +1,15 @@
+ 20 -5 -78 38
+ 9 -43 -15 37
+ -9 -17 -84 69
+ -43 -29 -73 88
+ 9 -497 151 -406
+ -470 182 -520 -131
+ -502 197 -581 -515
+ -502 -513 197 -513
+ 197 -487 -491 -518
+ -539 197 -545 -520
+ 156 -179 -167 -114
+ -13 -128 -187 126
+ 44 -17 -32 -8
+ 49 -70 -12 8
+ 39 -38 -47 26
diff --git a/profiles/plants/MA1671.1.pwm b/profiles/plants/MA1671.1.pwm
index 6a23bdc..f60394a 100644
--- a/profiles/plants/MA1671.1.pwm
+++ b/profiles/plants/MA1671.1.pwm
@@ -1,11 +1,11 @@
- -27 110 -186 -40
- 20 -114 43 7
- -174 144 -126 -82
- -482 198 -10000 -503
- -212 -673 191 -641
- -10000 200 -873 -973
- -548 199 -815 -692
- -232 -656 191 -482
- -873 197 -627 -415
- -52 116 -157 -46
- 13 -154 86 -41
+ -27 109 -180 -39
+ 20 -111 42 7
+ -169 143 -123 -80
+ -428 196 -589 -441
+ -204 -526 189 -514
+ -589 198 -570 -579
+ -469 197 -562 -532
+ -223 -520 189 -428
+ -570 196 -508 -379
+ -51 115 -152 -45
+ 13 -150 84 -40
diff --git a/profiles/plants/MA1672.1.pwm b/profiles/plants/MA1672.1.pwm
index 07d718b..1d57bb3 100644
--- a/profiles/plants/MA1672.1.pwm
+++ b/profiles/plants/MA1672.1.pwm
@@ -1,13 +1,13 @@
- 18 -33 19 -11
- 23 7 -154 52
- -182 59 79 -105
- 192 -429 -377 -333
- -315 185 -316 -248
- -263 -421 188 -316
- -313 -396 -468 192
- -351 -458 193 -414
- -257 -369 161 -49
- -95 166 -281 -246
- 149 -173 -115 -118
- 31 -48 -26 27
- 37 -39 -41 25
+ 18 -33 19 -10
+ 23 7 -151 51
+ -178 59 78 -104
+ 191 -402 -358 -319
+ -303 183 -304 -240
+ -255 -395 187 -304
+ -301 -375 -433 191
+ -335 -425 192 -390
+ -250 -351 160 -49
+ -93 165 -272 -239
+ 148 -170 -113 -116
+ 31 -47 -26 27
+ 37 -38 -41 25
diff --git a/profiles/plants/MA1673.1.pwm b/profiles/plants/MA1673.1.pwm
index fc7a0ef..ad0f114 100644
--- a/profiles/plants/MA1673.1.pwm
+++ b/profiles/plants/MA1673.1.pwm
@@ -1,12 +1,12 @@
- -10 -6 -67 57
- -9 59 -82 -2
- -155 -258 172 -236
- -359 186 -234 -350
- -269 182 -221 -326
- -352 -520 192 -314
- -380 -310 186 -255
- 187 -398 -321 -261
- 145 -294 -54 -113
- 156 -164 -193 -111
- 62 -29 -113 24
- 5 -30 -23 38
+ -10 -6 -66 56
+ -8 58 -80 -2
+ -151 -249 171 -228
+ -340 185 -226 -332
+ -259 180 -215 -311
+ -334 -465 190 -300
+ -358 -297 185 -246
+ 186 -373 -306 -252
+ 143 -282 -53 -111
+ 155 -160 -188 -109
+ 62 -28 -111 24
+ 5 -30 -23 38
diff --git a/profiles/plants/MA1674.1.pwm b/profiles/plants/MA1674.1.pwm
index e69de29..5f8da63 100644
--- a/profiles/plants/MA1674.1.pwm
+++ b/profiles/plants/MA1674.1.pwm
@@ -0,0 +1,24 @@
+ 45 -44 -57 29
+ 25 -92 24 13
+ -14 -76 66 -11
+ -157 -388 -419 182
+ -83 -450 -163 162
+ 83 -64 -117 18
+ -490 196 -529 -459
+ -529 -529 -116 181
+ -529 -502 -529 197
+ -372 -295 191 -450
+ -74 -41 -67 102
+ -17 -68 -1 58
+ -10 12 9 -13
+ 59 5 -77 -19
+ 103 -80 -40 -67
+ -434 191 -286 -393
+ 197 -515 -502 -529
+ 179 -106 -529 -529
+ -479 -529 196 -469
+ 10 -109 -59 84
+ 160 -149 -434 -85
+ 181 -382 -377 -147
+ 12 19 -55 12
+ 19 22 -85 18
diff --git a/profiles/plants/MA1675.1.pwm b/profiles/plants/MA1675.1.pwm
index f4b66a3..9c75dd6 100644
--- a/profiles/plants/MA1675.1.pwm
+++ b/profiles/plants/MA1675.1.pwm
@@ -1,13 +1,13 @@
- 6 -26 -52 51
- 108 -116 -105 -6
- -144 92 -46 2
- 199 -680 -10000 -680
- -334 194 -480 -580
- -422 -480 194 -380
- -234 140 -141 -34
- 192 -334 -448 -363
- 192 -580 -580 -248
- -399 180 -234 -194
- -189 -76 -280 158
- -11 -57 -26 65
- 41 -7 -59 8
+ 5 -25 -49 49
+ 104 -108 -98 -6
+ -134 89 -44 2
+ 194 -422 -447 -422
+ -284 189 -365 -400
+ -337 -365 189 -314
+ -210 136 -130 -32
+ 187 -284 -351 -303
+ 187 -400 -400 -221
+ -325 175 -210 -177
+ -173 -71 -246 154
+ -11 -54 -25 63
+ 39 -7 -56 8
diff --git a/profiles/plants/MA1676.1.pwm b/profiles/plants/MA1676.1.pwm
index e69de29..9df54cc 100644
--- a/profiles/plants/MA1676.1.pwm
+++ b/profiles/plants/MA1676.1.pwm
@@ -0,0 +1,24 @@
+ 28 -86 -9 37
+ 28 -71 -23 41
+ -68 -258 -273 161
+ -63 -278 -180 155
+ -8 75 -98 -22
+ -364 194 -458 -425
+ -458 -441 -398 194
+ -441 -458 -479 195
+ 145 -75 -98 -263
+ 110 -82 -89 -41
+ -5 -5 -30 33
+ 14 4 -32 10
+ 43 -23 -33 0
+ -40 -94 -70 107
+ -273 -111 -115 155
+ 195 -441 -479 -411
+ 195 -479 -479 -411
+ -458 -441 194 -375
+ -31 -120 -131 124
+ 158 -183 -322 -69
+ 164 -295 -302 -68
+ 0 58 -144 18
+ 12 7 -92 42
+ 45 -75 -47 40
diff --git a/profiles/plants/MA1677.1.pwm b/profiles/plants/MA1677.1.pwm
index e69de29..925853a 100644
--- a/profiles/plants/MA1677.1.pwm
+++ b/profiles/plants/MA1677.1.pwm
@@ -0,0 +1,12 @@
+ 22 8 -64 19
+ 42 -25 -10 -18
+ -572 196 -572 -384
+ 195 -532 -426 -405
+ 190 -243 -517 -417
+ -620 -572 196 -388
+ 168 -258 -320 -97
+ 186 -366 -477 -196
+ 192 -444 -428 -314
+ -40 83 -93 -9
+ 28 18 -46 -10
+ 28 -61 -34 42
diff --git a/profiles/plants/MA1678.1.pwm b/profiles/plants/MA1678.1.pwm
index 259f419..7376f9f 100644
--- a/profiles/plants/MA1678.1.pwm
+++ b/profiles/plants/MA1678.1.pwm
@@ -1,24 +1,24 @@
- 7 -68 42 -1
- 5 -55 55 -29
- -180 -345 -309 181
- -76 -504 -249 168
- 86 -94 -78 10
- -584 199 -784 -784
- -684 -260 -404 191
- -626 -626 -784 199
- -108 119 -14 -162
- 112 -81 -100 -41
- -2 23 -30 4
- -8 10 5 -8
- -3 -27 29 -4
- -47 -105 -93 118
- -171 -18 120 -96
- 198 -626 -626 -526
- 190 -376 -242 -684
- -10000 -784 199 -552
- 29 -65 -123 78
- 179 -326 -684 -119
- 187 -360 -394 -235
- -114 135 -120 -83
- 6 41 -102 18
- 0 -83 -58 82
+ 7 -66 41 -1
+ 5 -53 53 -28
+ -169 -305 -278 178
+ -73 -402 -229 165
+ 84 -90 -75 10
+ -436 196 -479 -479
+ -463 -238 -346 188
+ -449 -449 -479 195
+ -103 117 -13 -152
+ 110 -78 -95 -39
+ -2 22 -29 4
+ -7 10 5 -8
+ -3 -26 28 -4
+ -45 -100 -88 116
+ -161 -17 117 -92
+ 195 -449 -449 -413
+ 187 -327 -223 -463
+ -497 -479 196 -424
+ 28 -63 -117 76
+ 175 -291 -463 -113
+ 184 -316 -339 -217
+ -109 132 -114 -80
+ 6 40 -98 17
+ 0 -80 -55 80
diff --git a/profiles/plants/MA1679.1.pwm b/profiles/plants/MA1679.1.pwm
index e69de29..0d519e4 100644
--- a/profiles/plants/MA1679.1.pwm
+++ b/profiles/plants/MA1679.1.pwm
@@ -0,0 +1,15 @@
+ -6 60 -83 -6
+ 24 -93 27 13
+ -114 77 -26 1
+ -212 182 -325 -279
+ 182 -461 -144 -382
+ -434 195 -447 -461
+ -422 195 -495 -434
+ -422 -461 195 -461
+ 168 -103 -373 -215
+ -461 195 -477 -434
+ 168 -164 -217 -204
+ 3 7 -156 67
+ -7 -2 -85 59
+ 17 -68 9 25
+ 7 23 -52 11
diff --git a/profiles/plants/MA1681.1.pwm b/profiles/plants/MA1681.1.pwm
index 500db3e..214224e 100644
--- a/profiles/plants/MA1681.1.pwm
+++ b/profiles/plants/MA1681.1.pwm
@@ -1,14 +1,14 @@
- 78 -163 -144 67
- 55 -107 -15 21
- 69 -114 -83 45
- 138 -254 -32 -124
- -616 -762 199 -630
- 196 -416 -537 -498
- -530 -630 -592 198
- 194 -523 -498 -318
- 193 -487 -426 -335
- -313 -262 182 -232
- 21 -168 110 -140
- -8 -158 -175 128
- 28 -114 -101 88
- 66 -101 -54 30
+ 77 -158 -140 66
+ 54 -104 -15 21
+ 68 -111 -81 44
+ 136 -243 -31 -120
+ -500 -547 197 -506
+ 194 -379 -460 -436
+ -456 -506 -489 196
+ 192 -452 -436 -299
+ 191 -429 -386 -314
+ -295 -250 180 -222
+ 21 -162 109 -136
+ -8 -153 -169 126
+ 28 -111 -99 86
+ 65 -98 -53 30
diff --git a/profiles/plants/MA1682.1.pwm b/profiles/plants/MA1682.1.pwm
index 5ac8221..f6e5d8c 100644
--- a/profiles/plants/MA1682.1.pwm
+++ b/profiles/plants/MA1682.1.pwm
@@ -1,14 +1,14 @@
- 37 -66 -143 77
- 91 -93 -142 29
- 153 -234 -195 -61
- 163 -271 -240 -83
- 169 -460 -275 -76
- -346 -534 -446 194
- -334 -792 -692 196
- -10000 200 -10000 -10000
- 195 -692 -446 -375
- 196 -10000 -634 -328
- 198 -692 -634 -446
- -42 -202 -392 155
- 38 -132 -197 103
- 1 -66 -202 108
+ 36 -63 -136 75
+ 89 -89 -134 28
+ 150 -217 -182 -59
+ 160 -248 -222 -79
+ 166 -382 -252 -73
+ -307 -418 -374 191
+ -298 -483 -468 193
+ -501 197 -501 -501
+ 192 -468 -374 -328
+ 192 -501 -454 -293
+ 194 -468 -454 -374
+ -40 -189 -340 152
+ 37 -126 -184 101
+ 1 -63 -189 106
diff --git a/profiles/plants/MA1685.1.pwm b/profiles/plants/MA1685.1.pwm
index 23c8147..0f54a6c 100644
--- a/profiles/plants/MA1685.1.pwm
+++ b/profiles/plants/MA1685.1.pwm
@@ -1,15 +1,15 @@
- 33 106 -140 -184
- 18 27 -130 32
- 151 -133 -136 -146
- 77 -75 51 -187
- 4 15 -60 27
- -190 -293 180 -302
- -423 -489 195 -466
- -473 -430 196 -525
- 147 -420 21 -521
- -367 -372 194 -623
- 194 -510 -303 -663
- -545 197 -507 -575
- 156 -348 -12 -488
- 33 79 -153 -57
- -156 34 42 8
+ 33 105 -138 -181
+ 18 27 -129 32
+ 150 -132 -135 -144
+ 77 -74 50 -184
+ 4 15 -59 26
+ -188 -286 179 -295
+ -406 -462 195 -443
+ -449 -412 195 -491
+ 146 -404 20 -489
+ -356 -360 193 -562
+ 193 -480 -296 -587
+ -507 197 -477 -529
+ 156 -338 -12 -461
+ 32 78 -151 -56
+ -154 34 41 8
diff --git a/profiles/plants/MA1686.1.pwm b/profiles/plants/MA1686.1.pwm
index 9339e18..3e1d17a 100644
--- a/profiles/plants/MA1686.1.pwm
+++ b/profiles/plants/MA1686.1.pwm
@@ -1,14 +1,14 @@
- 146 -140 -169 -84
- 71 -195 93 -236
- -188 168 -218 -170
- -187 -386 182 -299
- -268 -618 193 -545
- -526 -526 198 -639
- -297 -497 193 -542
- -415 -461 196 -628
- 181 -424 -116 -804
- -587 198 -526 -608
- 192 -599 -242 -628
- -149 103 -330 59
- -198 -202 167 -170
- -150 -203 -126 158
+ 145 -138 -165 -83
+ 71 -191 92 -230
+ -184 167 -213 -166
+ -183 -366 181 -288
+ -260 -535 192 -490
+ -477 -477 196 -547
+ -287 -456 192 -488
+ -391 -429 195 -541
+ 179 -399 -114 -610
+ -517 197 -477 -530
+ 191 -525 -235 -541
+ -146 102 -316 58
+ -194 -197 166 -167
+ -147 -198 -124 157
diff --git a/profiles/plants/MA1687.1.pwm b/profiles/plants/MA1687.1.pwm
index 9046e72..52d8dd8 100644
--- a/profiles/plants/MA1687.1.pwm
+++ b/profiles/plants/MA1687.1.pwm
@@ -1,16 +1,16 @@
- -168 157 -202 -108
- -21 -228 145 -234
- -248 -8 144 -266
- -273 -6 147 -297
- -198 -32 150 -305
- -299 -389 192 -508
- 187 -413 -189 -537
- -546 197 -488 -531
- 196 -553 -383 -551
- -350 43 -484 134
- -357 -487 195 -523
- -357 -325 -421 191
- -357 186 -397 -213
- -222 2 123 -121
- -148 -10 132 -221
- -195 -10 133 -176
+ -166 156 -198 -107
+ -20 -223 144 -228
+ -242 -8 143 -259
+ -266 -6 146 -288
+ -194 -32 149 -295
+ -289 -371 191 -469
+ 186 -392 -186 -491
+ -497 196 -454 -486
+ 195 -502 -366 -500
+ -337 43 -450 133
+ -343 -453 194 -480
+ -343 -314 -399 190
+ -343 185 -378 -209
+ -218 2 122 -120
+ -145 -10 131 -216
+ -191 -10 132 -173
diff --git a/profiles/plants/MA1688.1.pwm b/profiles/plants/MA1688.1.pwm
index 2f2b629..2d54791 100644
--- a/profiles/plants/MA1688.1.pwm
+++ b/profiles/plants/MA1688.1.pwm
@@ -1,14 +1,14 @@
- 34 -41 12 -16
- 73 -25 -28 -56
- -100 144 -102 -176
- 153 -104 -176 -158
- 174 -177 -194 -335
- -270 -239 179 -227
- 188 -379 -245 -428
- -246 183 -279 -321
- 188 -315 -319 -329
- 179 -291 -253 -204
- -151 -179 163 -192
- 146 -149 -106 -130
- 25 9 -34 -6
- 45 -25 -14 -19
+ 33 -41 12 -16
+ 72 -25 -28 -55
+ -98 143 -100 -172
+ 152 -103 -172 -155
+ 173 -173 -189 -321
+ -261 -232 177 -221
+ 187 -359 -238 -401
+ -238 182 -270 -309
+ 187 -303 -307 -316
+ 178 -281 -246 -199
+ -148 -175 162 -187
+ 145 -146 -104 -127
+ 25 9 -34 -6
+ 45 -25 -14 -18
diff --git a/profiles/plants/MA1689.1.pwm b/profiles/plants/MA1689.1.pwm
index ba39819..4663fcc 100644
--- a/profiles/plants/MA1689.1.pwm
+++ b/profiles/plants/MA1689.1.pwm
@@ -1,13 +1,13 @@
- 49 -27 -25 -12
- 0 36 10 -64
- -318 174 -381 -106
- -102 172 -294 -347
- -354 -545 195 -493
- 197 -575 -416 -613
- -628 197 -481 -536
- 193 -269 -586 -713
- 171 -218 -174 -230
- 157 -134 -112 -250
- 35 -7 9 -49
- 51 -39 -35 4
- 6 -21 -15 25
+ 49 -26 -24 -12
+ 0 35 10 -62
+ -298 172 -349 -103
+ -99 170 -277 -322
+ -328 -461 193 -430
+ 195 -476 -377 -494
+ -500 195 -422 -456
+ 191 -256 -482 -529
+ 169 -209 -168 -220
+ 155 -130 -109 -238
+ 34 -7 9 -48
+ 51 -38 -34 4
+ 6 -21 -14 25
diff --git a/profiles/plants/MA1690.1.pwm b/profiles/plants/MA1690.1.pwm
index e69de29..bfdc28f 100644
--- a/profiles/plants/MA1690.1.pwm
+++ b/profiles/plants/MA1690.1.pwm
@@ -0,0 +1,15 @@
+ 63 66 -195 -69
+ 147 -146 -130 -110
+ 96 -104 42 -209
+ -2 72 -28 -89
+ -189 -286 179 -296
+ -322 -486 194 -526
+ -452 -497 196 -559
+ 53 -405 129 -454
+ -294 -457 192 -481
+ 190 -481 -221 -617
+ -499 196 -440 -553
+ 193 -523 -273 -575
+ 90 32 -227 -55
+ -182 -93 79 54
+ -130 -104 72 55
diff --git a/profiles/plants/MA1691.1.pwm b/profiles/plants/MA1691.1.pwm
index aea2ce9..6b1c67c 100644
--- a/profiles/plants/MA1691.1.pwm
+++ b/profiles/plants/MA1691.1.pwm
@@ -1,13 +1,13 @@
- -16 41 7 -45
- 18 26 -37 -16
- 65 -99 12 -26
- -129 -135 154 -178
- -330 184 -261 -281
- 180 -143 -389 -353
- -339 -420 191 -340
- 193 -368 -342 -542
- -421 194 -426 -396
- 196 -449 -496 -518
- -113 -187 -152 155
- -5 -19 46 -36
- 21 -9 -3 -10
+ -16 40 7 -44
+ 17 26 -36 -16
+ 65 -97 12 -25
+ -126 -132 153 -174
+ -316 183 -253 -271
+ 178 -140 -367 -336
+ -323 -393 190 -324
+ 192 -349 -326 -483
+ -394 192 -398 -373
+ 195 -416 -451 -467
+ -111 -183 -149 153
+ -5 -19 46 -35
+ 20 -9 -3 -10
diff --git a/profiles/plants/MA1692.1.pwm b/profiles/plants/MA1692.1.pwm
index e69de29..4cca8c8 100644
--- a/profiles/plants/MA1692.1.pwm
+++ b/profiles/plants/MA1692.1.pwm
@@ -0,0 +1,15 @@
+ -8 15 0 -9
+ 14 5 -7 -14
+ -5 -8 -23 30
+ 17 -25 -4 8
+ -145 -145 159 -201
+ -261 181 -301 -234
+ -116 175 -331 -362
+ -372 -528 194 -426
+ 193 -444 -327 -495
+ -528 196 -462 -464
+ 186 -211 -326 -479
+ 159 -194 -110 -194
+ 22 6 22 -68
+ 28 -8 9 -38
+ 30 -12 -40 12
diff --git a/profiles/plants/MA1693.1.pwm b/profiles/plants/MA1693.1.pwm
index 9b6bce3..b425950 100644
--- a/profiles/plants/MA1693.1.pwm
+++ b/profiles/plants/MA1693.1.pwm
@@ -1,13 +1,13 @@
- 39 -47 10 -17
- 13 -19 7 -4
- -320 187 -271 -360
- 174 -135 -261 -318
- -329 -436 193 -465
- 188 -319 -252 -477
- -461 195 -393 -495
- 194 -437 -430 -413
- -129 -255 152 -88
- -153 170 -211 -260
- 69 7 -40 -79
- 31 -10 1 -29
- -14 -2 31 -21
+ 39 -46 10 -17
+ 13 -19 7 -3
+ -310 186 -265 -348
+ 173 -133 -255 -309
+ -319 -414 192 -439
+ 187 -309 -246 -448
+ -435 194 -377 -463
+ 193 -415 -409 -394
+ -127 -250 152 -87
+ -151 170 -207 -254
+ 68 7 -39 -78
+ 30 -10 1 -28
+ -14 -2 31 -20
diff --git a/profiles/plants/MA1694.1.pwm b/profiles/plants/MA1694.1.pwm
index a8b03e2..65f2acc 100644
--- a/profiles/plants/MA1694.1.pwm
+++ b/profiles/plants/MA1694.1.pwm
@@ -1,14 +1,14 @@
- 8 5 11 -26
- -31 30 -4 -1
- 77 -27 -31 -61
- -75 110 -19 -140
- -233 181 -336 -238
- -193 185 -342 -454
- -508 -639 197 -512
- 197 -629 -444 -649
- -749 199 -577 -621
- 191 -231 -501 -590
- 129 -118 -55 -120
- -39 -47 110 -144
- 30 -11 14 -43
- 13 3 -43 18
+ 8 5 10 -26
+ -31 30 -4 -1
+ 76 -26 -30 -60
+ -74 109 -19 -136
+ -225 180 -319 -230
+ -187 183 -324 -415
+ -454 -528 196 -457
+ 196 -524 -407 -533
+ -569 197 -497 -520
+ 189 -223 -449 -504
+ 127 -115 -54 -117
+ -39 -46 109 -141
+ 30 -11 14 -42
+ 13 3 -42 18
diff --git a/profiles/plants/MA1695.1.pwm b/profiles/plants/MA1695.1.pwm
index c1c52a0..98a2db3 100644
--- a/profiles/plants/MA1695.1.pwm
+++ b/profiles/plants/MA1695.1.pwm
@@ -1,14 +1,14 @@
- 62 -104 67 -138
- -84 110 -77 -49
- -135 -182 166 -254
- -268 -454 189 -356
- -242 -503 191 -533
- -90 -444 176 -523
- -238 -455 190 -490
- 190 -501 -211 -665
- -510 197 -508 -573
- 195 -573 -315 -607
- 28 66 -224 -1
- -159 -83 138 -100
- -137 -96 -20 116
- -114 126 -189 -17
+ 62 -103 66 -136
+ -83 109 -76 -49
+ -133 -179 165 -248
+ -261 -427 188 -342
+ -236 -466 190 -488
+ -89 -418 175 -481
+ -232 -428 189 -456
+ 189 -464 -206 -570
+ -471 196 -470 -516
+ 194 -516 -305 -537
+ 28 66 -219 -1
+ -156 -82 137 -99
+ -135 -95 -20 115
+ -113 125 -185 -17
diff --git a/profiles/plants/MA1696.1.pwm b/profiles/plants/MA1696.1.pwm
index e69de29..ab8064f 100644
--- a/profiles/plants/MA1696.1.pwm
+++ b/profiles/plants/MA1696.1.pwm
@@ -0,0 +1,12 @@
+ -90 97 -65 -20
+ -49 -80 121 -132
+ -96 -443 177 -462
+ -406 -459 195 -521
+ -170 -406 181 -306
+ 104 -452 88 -388
+ 190 -452 -246 -437
+ -380 193 -373 -477
+ 191 -308 -360 -429
+ -55 84 -53 -25
+ -110 2 114 -165
+ -68 -95 -59 114
diff --git a/profiles/plants/MA1697.1.pwm b/profiles/plants/MA1697.1.pwm
index e69de29..38e74fd 100644
--- a/profiles/plants/MA1697.1.pwm
+++ b/profiles/plants/MA1697.1.pwm
@@ -0,0 +1,12 @@
+ 27 22 5 -77
+ 4 43 11 -85
+ 164 -116 -216 -223
+ -209 177 -225 -282
+ -225 -337 185 -364
+ 194 -445 -367 -471
+ -493 196 -416 -498
+ 187 -327 -253 -404
+ 165 -130 -268 -171
+ -233 -165 173 -264
+ 21 -17 20 -31
+ 7 7 -10 -5
diff --git a/profiles/plants/MA1698.1.pwm b/profiles/plants/MA1698.1.pwm
index e749e66..8fa4a44 100644
--- a/profiles/plants/MA1698.1.pwm
+++ b/profiles/plants/MA1698.1.pwm
@@ -1,14 +1,14 @@
- 78 -2 -43 -83
- -39 77 -45 -31
- 38 -102 -113 81
- -202 -168 171 -256
- -317 187 -291 -335
- -285 190 -399 -411
- -361 -308 190 -401
- 190 -447 -253 -460
- -582 195 -374 -423
- 139 -255 23 -470
- 163 -115 -215 -215
- -128 -94 151 -225
- -40 -7 79 -84
- -35 -2 -47 59
+ 77 -2 -43 -82
+ -38 76 -44 -31
+ 37 -99 -111 80
+ -195 -163 169 -246
+ -300 185 -277 -315
+ -272 189 -369 -378
+ -338 -292 189 -371
+ 189 -406 -243 -416
+ -493 193 -349 -388
+ 137 -245 23 -423
+ 162 -113 -208 -208
+ -125 -92 150 -217
+ -39 -7 78 -82
+ -34 -2 -46 58
diff --git a/profiles/plants/MA1706.1.pwm b/profiles/plants/MA1706.1.pwm
index e69de29..9590e0b 100644
--- a/profiles/plants/MA1706.1.pwm
+++ b/profiles/plants/MA1706.1.pwm
@@ -0,0 +1,10 @@
+ 26 -34 29 -34
+ 51 -218 -218 110
+ 166 -503 -134 -127
+ -134 123 -503 30
+ 183 -503 -503 -134
+ -503 -503 -503 197
+ -30 -503 -134 147
+ -503 165 -503 -30
+ -73 6 -206 108
+ 26 -30 -30 24
diff --git a/profiles/plants/MA1732.1.pwm b/profiles/plants/MA1732.1.pwm
index c1e6327..be8bb93 100644
--- a/profiles/plants/MA1732.1.pwm
+++ b/profiles/plants/MA1732.1.pwm
@@ -1,15 +1,15 @@
- -27 -480 -2 110
- -127 -697 -427 182
- -241 -597 -697 192
- -279 -10000 -516 194
- -406 -697 -564 197
- -564 -597 198 -697
- -10000 -10000 200 -10000
- -697 200 -10000 -10000
- -697 -10000 199 -697
- -697 -406 198 -10000
- -10000 -451 198 -697
- 199 -10000 -516 -10000
- 200 -10000 -10000 -10000
- 194 -427 -451 -380
- 163 -229 -351 -71
+ -26 -393 -2 108
+ -121 -470 -363 179
+ -223 -444 -470 189
+ -255 -503 -411 190
+ -349 -470 -432 193
+ -432 -444 195 -470
+ -503 -503 197 -503
+ -470 196 -503 -503
+ -470 -503 196 -470
+ -470 -349 194 -503
+ -503 -377 195 -470
+ 196 -503 -411 -503
+ 197 -503 -503 -503
+ 191 -362 -377 -332
+ 160 -213 -311 -68
diff --git a/profiles/plants/MA1733.1.pwm b/profiles/plants/MA1733.1.pwm
index af24b04..0bb20eb 100644
--- a/profiles/plants/MA1733.1.pwm
+++ b/profiles/plants/MA1733.1.pwm
@@ -1,14 +1,14 @@
- 66 -40 -6 -50
- 90 -46 -101 -13
- 117 -94 -151 -19
- 92 -159 -65 19
- 46 -106 19 0
- -44 -10000 -129 151
- 75 -10000 121 -10000
- -206 170 -10000 -94
- -10000 200 -10000 -10000
- -10000 184 -10000 -125
- -406 -127 -464 180
- 92 -316 -10000 99
- 138 -60 -297 -70
- 132 -168 -168 -19
+ 64 -39 -6 -48
+ 88 -44 -97 -12
+ 115 -90 -143 -18
+ 90 -150 -63 18
+ 45 -101 18 0
+ -43 -503 -123 149
+ 73 -503 119 -503
+ -193 167 -503 -90
+ -503 197 -503 -503
+ -503 181 -503 -119
+ -349 -120 -385 177
+ 90 -284 -503 97
+ 135 -58 -269 -67
+ 129 -158 -158 -18
diff --git a/profiles/plants/MA1734.1.pwm b/profiles/plants/MA1734.1.pwm
index e69de29..a9be9b6 100644
--- a/profiles/plants/MA1734.1.pwm
+++ b/profiles/plants/MA1734.1.pwm
@@ -0,0 +1,16 @@
+ -503 197 -503 -503
+ -503 -503 -81 175
+ -503 -503 -503 197
+ -316 -266 184 -285
+ -40 45 -26 5
+ -6 -93 33 33
+ -87 101 -48 -48
+ -73 72 -135 44
+ -56 48 19 -34
+ -503 189 -356 -249
+ 197 -503 -503 -503
+ 160 -15 -503 -503
+ -470 -503 196 -432
+ -195 12 -157 121
+ 21 -74 -432 113
+ 134 -370 -503 44
diff --git a/profiles/plants/MA1735.1.pwm b/profiles/plants/MA1735.1.pwm
index e69de29..2d16263 100644
--- a/profiles/plants/MA1735.1.pwm
+++ b/profiles/plants/MA1735.1.pwm
@@ -0,0 +1,11 @@
+ 134 -135 -297 -9
+ 171 -321 -402 -82
+ 18 58 -186 12
+ 196 -503 -456 -470
+ -503 -503 -470 196
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 40 -402 137
+ -17 18 -204 79
+ -72 -77 -349 144
+ -12 -87 -117 106
diff --git a/profiles/plants/MA1736.1.pwm b/profiles/plants/MA1736.1.pwm
index 4de222e..7d81c6e 100644
--- a/profiles/plants/MA1736.1.pwm
+++ b/profiles/plants/MA1736.1.pwm
@@ -1,11 +1,11 @@
- -51 69 -159 43
- 68 -22 -211 39
- 61 23 -107 -29
- -79 82 -106 23
- 11 -92 -150 103
- 11 -55 -10000 116
- -10000 198 -10000 -406
- 200 -10000 -10000 -10000
- -10000 195 -276 -10000
- -10000 -10000 -10000 200
- 21 15 -47 2
+ -49 68 -150 42
+ 66 -22 -197 38
+ 60 23 -102 -28
+ -75 80 -101 23
+ 11 -88 -143 100
+ 11 -53 -503 114
+ -503 194 -503 -349
+ 197 -503 -503 -503
+ -503 191 -252 -503
+ -503 -503 -503 197
+ 20 14 -46 2
diff --git a/profiles/plants/MA1737.1.pwm b/profiles/plants/MA1737.1.pwm
index efdab74..07be5ab 100644
--- a/profiles/plants/MA1737.1.pwm
+++ b/profiles/plants/MA1737.1.pwm
@@ -1,11 +1,11 @@
- 38 -15 -15 -15
- -1 6 -238 83
- 172 -332 -332 -100
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 20 35 -10000 66
- -10000 164 -10000 -16
- -332 -332 153 -14
- 26 -31 25 -31
- 37 -15 -15 -15
+ 37 -15 -15 -15
+ -1 5 -221 81
+ 169 -297 -297 -96
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ 20 34 -503 64
+ -503 161 -503 -16
+ -297 -297 150 -14
+ 25 -30 24 -30
+ 36 -14 -14 -14
diff --git a/profiles/plants/MA1738.1.pwm b/profiles/plants/MA1738.1.pwm
index 95237d7..593ebae 100644
--- a/profiles/plants/MA1738.1.pwm
+++ b/profiles/plants/MA1738.1.pwm
@@ -1,15 +1,15 @@
- -52 101 -251 15
- 162 -115 -364 -135
- 116 19 -338 -92
- -10000 159 -464 -8
- -59 -3 -306 116
- 96 27 -172 -89
- -124 169 -10000 -154
- -321 161 -10000 -27
- 200 -10000 -10000 -10000
- 156 5 -638 -696
- -10000 200 -10000 -10000
- -33 58 -311 67
- 160 -244 -64 -288
- 21 107 -372 -59
- 8 81 -10000 25
+ -50 99 -231 14
+ 159 -109 -321 -128
+ 114 18 -301 -88
+ -503 156 -385 -8
+ -57 -3 -277 114
+ 94 27 -162 -85
+ -118 166 -503 -146
+ -289 158 -503 -26
+ 197 -503 -503 -503
+ 153 5 -456 -470
+ -503 197 -503 -503
+ -32 56 -280 66
+ 157 -226 -62 -262
+ 20 105 -326 -57
+ 8 79 -503 24
diff --git a/profiles/plants/MA1739.1.pwm b/profiles/plants/MA1739.1.pwm
index ed97558..561d4eb 100644
--- a/profiles/plants/MA1739.1.pwm
+++ b/profiles/plants/MA1739.1.pwm
@@ -1,14 +1,14 @@
- -2 -87 -31 73
- -30 -13 -4 38
- 55 -174 11 21
- -59 -26 51 11
- -438 198 -10000 -10000
- 114 80 -10000 -427
- 200 -10000 -10000 -10000
- -10000 199 -564 -10000
- -10000 -10000 -697 200
- -697 -10000 -10000 200
- -697 -10000 200 -10000
- -98 102 -87 -13
- 50 17 -92 -10
- 19 -1 -113 50
+ -2 -83 -30 71
+ -29 -12 -4 37
+ 53 -164 11 21
+ -57 -25 49 11
+ -370 195 -503 -503
+ 112 78 -503 -362
+ 197 -503 -503 -503
+ -503 196 -432 -503
+ -503 -503 -470 196
+ -470 -503 -503 196
+ -470 -503 196 -503
+ -93 100 -83 -12
+ 49 17 -88 -10
+ 18 -1 -108 48
diff --git a/profiles/plants/MA1740.1.pwm b/profiles/plants/MA1740.1.pwm
index e69de29..bec590a 100644
--- a/profiles/plants/MA1740.1.pwm
+++ b/profiles/plants/MA1740.1.pwm
@@ -0,0 +1,10 @@
+ 27 -10 -10 -10
+ 25 -85 51 -27
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -140 166 -150 -332
+ -23 42 -7 -23
diff --git a/profiles/plants/MA1741.1.pwm b/profiles/plants/MA1741.1.pwm
index e69de29..883381f 100644
--- a/profiles/plants/MA1741.1.pwm
+++ b/profiles/plants/MA1741.1.pwm
@@ -0,0 +1,16 @@
+ -252 191 -503 -456
+ -503 -503 10 152
+ -503 -503 -432 196
+ -32 -25 108 -204
+ 63 -35 -117 30
+ 85 -169 -23 5
+ 35 -49 -57 42
+ -54 6 -80 76
+ 39 -67 -44 40
+ -411 107 -221 71
+ 196 -470 -503 -503
+ 26 145 -503 -503
+ -470 -503 185 -166
+ -216 87 -269 84
+ 80 -85 -411 72
+ 163 -402 -503 -32
diff --git a/profiles/plants/MA1742.1.pwm b/profiles/plants/MA1742.1.pwm
index 42fff42..9bfa0e4 100644
--- a/profiles/plants/MA1742.1.pwm
+++ b/profiles/plants/MA1742.1.pwm
@@ -1,11 +1,11 @@
- -147 -129 -197 157
- -10000 -10000 184 -124
- 107 91 -564 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -406 -10000 198 -10000
- -10000 177 -140 -221
- -10000 -19 -697 164
- -141 -117 113 -2
- -59 -10000 100 42
- -19 -7 -22 39
+ -140 -123 -184 154
+ -503 -503 181 -118
+ 104 89 -432 -503
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -349 -503 194 -503
+ -503 174 -133 -206
+ -503 -18 -470 161
+ -134 -112 111 -2
+ -57 -503 97 41
+ -18 -7 -22 38
diff --git a/profiles/plants/MA1743.1.pwm b/profiles/plants/MA1743.1.pwm
index 1b63b6c..3d5297a 100644
--- a/profiles/plants/MA1743.1.pwm
+++ b/profiles/plants/MA1743.1.pwm
@@ -1,15 +1,15 @@
- 35 -124 25 16
- 65 -117 -47 34
- 8 -213 -131 121
- -327 -697 166 -45
- -19 127 -72 -338
- -174 -170 -10000 176
- -10000 -98 168 -184
- 200 -10000 -10000 -10000
- -10000 199 -10000 -480
- -697 -638 199 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 165 -20
- -31 165 -697 -480
- 135 -117 -90 -111
+ 34 -118 24 16
+ 63 -112 -46 33
+ 8 -199 -124 118
+ -293 -470 163 -43
+ -18 125 -69 -301
+ -164 -160 -503 173
+ -503 -93 165 -173
+ 197 -503 -503 -503
+ -503 195 -503 -393
+ -470 -456 196 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -503 -503 162 -20
+ -30 162 -470 -393
+ 133 -112 -86 -106
diff --git a/profiles/plants/MA1744.1.pwm b/profiles/plants/MA1744.1.pwm
index e69de29..c0a1d55 100644
--- a/profiles/plants/MA1744.1.pwm
+++ b/profiles/plants/MA1744.1.pwm
@@ -0,0 +1,10 @@
+ -93 20 -107 89
+ -135 -503 149 -40
+ 117 75 -470 -503
+ -402 193 -503 -321
+ 187 -255 -456 -301
+ -22 -385 159 -393
+ -302 142 -162 -19
+ -356 -155 -266 177
+ -40 -160 138 -173
+ -144 -192 62 87
diff --git a/profiles/plants/MA1745.1.pwm b/profiles/plants/MA1745.1.pwm
index e69de29..112c7e7 100644
--- a/profiles/plants/MA1745.1.pwm
+++ b/profiles/plants/MA1745.1.pwm
@@ -0,0 +1,12 @@
+ -12 -12 -12 32
+ -29 -29 63 -29
+ -40 79 -40 -40
+ -57 -73 -316 138
+ -503 50 134 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -316 -316 -316 187
+ -223 -98 162 -223
+ -81 -188 123 -30
+ -12 32 -12 -12
diff --git a/profiles/plants/MA1746.1.pwm b/profiles/plants/MA1746.1.pwm
index c0ad423..6bdaa46 100644
--- a/profiles/plants/MA1746.1.pwm
+++ b/profiles/plants/MA1746.1.pwm
@@ -1,11 +1,11 @@
- -157 -113 -284 162
- -364 -406 185 -197
- 94 106 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 195 -564 -306
- -10000 -564 -10000 199
- -10000 -564 199 -564
- -565 -306 36 136
- 75 59 -208 -80
+ -149 -108 -259 159
+ -321 -349 182 -184
+ 92 103 -503 -503
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 -503 197 -503
+ -503 192 -432 -277
+ -503 -432 -503 196
+ -503 -432 195 -432
+ -432 -277 35 134
+ 73 57 -195 -76
diff --git a/profiles/plants/MA1747.1.pwm b/profiles/plants/MA1747.1.pwm
index e69de29..9f321a0 100644
--- a/profiles/plants/MA1747.1.pwm
+++ b/profiles/plants/MA1747.1.pwm
@@ -0,0 +1,14 @@
+ 64 -29 -41 -20
+ 78 -184 -106 61
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 197 -503
+ 26 -47 -138 76
+ 118 -470 45 -162
+ -40 -74 117 -133
+ -456 196 -503 -470
+ -503 -432 -503 196
+ -470 -503 -503 196
+ -503 -470 -503 196
+ 69 -180 -122 74
diff --git a/profiles/plants/MA1748.1.pwm b/profiles/plants/MA1748.1.pwm
index 375a9ee..c53ad5e 100644
--- a/profiles/plants/MA1748.1.pwm
+++ b/profiles/plants/MA1748.1.pwm
@@ -1,9 +1,9 @@
- -40 13 -9 27
- 5 -188 135 -284
- -638 162 -516 -17
- -10000 197 -416 -597
- -597 -797 199 -697
- 194 -372 -597 -406
- -364 196 -479 -10000
- 108 -75 -57 -69
- -75 -75 -94 120
+ -39 12 -9 27
+ 5 -176 132 -259
+ -456 159 -411 -16
+ -503 194 -356 -444
+ -444 -486 196 -470
+ 191 -326 -444 -349
+ -321 192 -393 -503
+ 105 -72 -55 -66
+ -72 -72 -90 117
diff --git a/profiles/plants/MA1749.1.pwm b/profiles/plants/MA1749.1.pwm
index 6382aa1..41be5e6 100644
--- a/profiles/plants/MA1749.1.pwm
+++ b/profiles/plants/MA1749.1.pwm
@@ -1,15 +1,15 @@
- 187 -152 -10000 -10000
- 48 -10000 -94 106
- 65 -10000 -20 65
- 48 -10000 -20 80
- 6 -10000 -20 106
- -52 -254 165 -10000
- -10000 -254 165 -52
- -20 165 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 187 -152 -10000 -10000
- 172 -152 -10000 -152
- 187 -10000 -152 -10000
- 148 -10000 6 -254
+ 184 -144 -503 -503
+ 46 -503 -90 104
+ 63 -503 -20 63
+ 46 -503 -20 78
+ 6 -503 -20 104
+ -50 -234 162 -503
+ -503 -234 162 -50
+ -20 162 -503 -503
+ -503 -503 197 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ 184 -144 -503 -503
+ 169 -144 -503 -144
+ 184 -503 -144 -503
+ 145 -503 6 -234
diff --git a/profiles/plants/MA1750.1.pwm b/profiles/plants/MA1750.1.pwm
index e69de29..be8bb93 100644
--- a/profiles/plants/MA1750.1.pwm
+++ b/profiles/plants/MA1750.1.pwm
@@ -0,0 +1,15 @@
+ -26 -393 -2 108
+ -121 -470 -363 179
+ -223 -444 -470 189
+ -255 -503 -411 190
+ -349 -470 -432 193
+ -432 -444 195 -470
+ -503 -503 197 -503
+ -470 196 -503 -503
+ -470 -503 196 -470
+ -470 -349 194 -503
+ -503 -377 195 -470
+ 196 -503 -411 -503
+ 197 -503 -503 -503
+ 191 -362 -377 -332
+ 160 -213 -311 -68
diff --git a/profiles/plants/MA1751.1.pwm b/profiles/plants/MA1751.1.pwm
index f683afb..ada2408 100644
--- a/profiles/plants/MA1751.1.pwm
+++ b/profiles/plants/MA1751.1.pwm
@@ -1,11 +1,11 @@
- -29 63 -29 -29
- 148 -131 -131 -131
- -344 -344 190 -344
- 100 -10000 100 -10000
- -10000 -10000 -10000 200
- 102 -10000 -10000 98
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -244 -244 -244 179
- -75 -75 -75 115
- -14 35 -14 -14
+ -28 62 -28 -28
+ 145 -124 -124 -124
+ -306 -306 186 -306
+ 97 -503 98 -503
+ -503 -503 -503 197
+ 99 -503 -503 96
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -226 -226 -226 175
+ -72 -72 -72 112
+ -13 34 -13 -13
diff --git a/profiles/plants/MA1752.1.pwm b/profiles/plants/MA1752.1.pwm
index 67dcc30..15cfef4 100644
--- a/profiles/plants/MA1752.1.pwm
+++ b/profiles/plants/MA1752.1.pwm
@@ -1,15 +1,15 @@
- -3 38 -96 27
- -25 45 -87 32
- -37 -54 4 59
- -95 45 -170 85
- -116 51 -213 93
- -6 -638 160 -10000
- -10000 193 -10000 -232
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- 191 -388 -10000 -254
- -697 200 -10000 -10000
- 170 -638 -61 -380
- 58 6 -52 -38
- 48 -33 -116 45
- 43 -77 -10 17
+ -3 37 -92 26
+ -24 44 -83 31
+ -35 -52 4 58
+ -91 44 -160 83
+ -111 50 -199 91
+ -6 -456 157 -503
+ -503 189 -503 -216
+ -503 197 -503 -503
+ -503 -503 197 -503
+ 188 -337 -503 -234
+ -470 196 -503 -503
+ 167 -456 -59 -332
+ 57 5 -50 -37
+ 47 -32 -111 43
+ 42 -74 -9 17
diff --git a/profiles/plants/MA1753.1.pwm b/profiles/plants/MA1753.1.pwm
index 651f7f9..de248a6 100644
--- a/profiles/plants/MA1753.1.pwm
+++ b/profiles/plants/MA1753.1.pwm
@@ -1,15 +1,15 @@
- -156 135 -152 -38
- -84 144 -272 -78
- 55 -111 12 -2
- -272 136 -172 -4
- -178 168 -301 -143
- 11 -638 64 43
- -284 178 -248 -208
- -697 198 -438 -638
- 71 -697 121 -464
- -564 199 -10000 -10000
- -10000 200 -10000 -10000
- -147 -638 181 -292
- -102 147 -438 -55
- -227 178 -10000 -144
- 95 -94 -40 -33
+ -147 132 -144 -37
+ -80 141 -249 -75
+ 54 -106 12 -2
+ -249 133 -162 -3
+ -167 165 -273 -135
+ 11 -456 62 42
+ -259 175 -229 -195
+ -470 194 -370 -456
+ 70 -470 118 -385
+ -432 196 -503 -503
+ -503 197 -503 -503
+ -140 -456 177 -266
+ -98 144 -370 -53
+ -211 174 -503 -137
+ 93 -90 -39 -32
diff --git a/profiles/plants/MA1754.1.pwm b/profiles/plants/MA1754.1.pwm
index e69de29..2b2d9d4 100644
--- a/profiles/plants/MA1754.1.pwm
+++ b/profiles/plants/MA1754.1.pwm
@@ -0,0 +1,21 @@
+ -65 80 -73 3
+ -24 90 -138 -14
+ 31 -95 20 13
+ -107 92 -87 12
+ -45 135 -284 -78
+ -55 -141 58 53
+ -262 154 -66 -175
+ -297 193 -503 -503
+ -269 -503 192 -503
+ -503 196 -503 -411
+ -503 197 -503 -503
+ -369 -503 193 -369
+ -503 189 -503 -211
+ -134 171 -356 -204
+ 99 -503 59 -108
+ -100 60 -150 70
+ 13 22 -188 55
+ 16 -162 8 58
+ -70 73 -115 35
+ -5 70 -107 -10
+ 6 -47 36 -7
diff --git a/profiles/plants/MA1755.1.pwm b/profiles/plants/MA1755.1.pwm
index 1d9102e..f732762 100644
--- a/profiles/plants/MA1755.1.pwm
+++ b/profiles/plants/MA1755.1.pwm
@@ -1,10 +1,10 @@
- 20 0 -50 19
- -47 26 -64 52
- 81 -58 3 -84
- -61 -201 157 -288
- 191 -638 -397 -257
- -257 -397 -638 191
- -288 157 -201 -61
- -84 3 -58 81
- 52 -64 26 -47
- 19 -50 0 20
+ 19 0 -48 19
+ -45 26 -62 51
+ 79 -56 3 -80
+ -58 -188 154 -262
+ 188 -456 -343 -237
+ -237 -343 -456 188
+ -262 154 -188 -58
+ -80 3 -56 79
+ 51 -62 26 -45
+ 19 -48 0 19
diff --git a/profiles/plants/MA1756.1.pwm b/profiles/plants/MA1756.1.pwm
index e69de29..75f5946 100644
--- a/profiles/plants/MA1756.1.pwm
+++ b/profiles/plants/MA1756.1.pwm
@@ -0,0 +1,15 @@
+ -59 -90 -42 104
+ -266 -114 -234 167
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 182 -503 -128
+ 192 -266 -503 -503
+ -503 -503 197 -503
+ 157 -266 -129 -114
+ 91 -59 -26 -69
+ 42 -90 28 -13
+ 85 -60 -101 6
+ -90 0 -6 59
+ 55 -59 -90 42
+ -6 71 -6 -114
+ 91 -20 -101 -42
diff --git a/profiles/plants/MA1757.1.pwm b/profiles/plants/MA1757.1.pwm
index e69de29..c38b503 100644
--- a/profiles/plants/MA1757.1.pwm
+++ b/profiles/plants/MA1757.1.pwm
@@ -0,0 +1,11 @@
+ 12 -385 84 8
+ -277 182 -503 -176
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ 163 -470 -402 -31
+ 196 -503 -432 -503
+ 87 -503 -503 108
+ -385 -503 -173 185
+ 83 -349 64 -82
+ -50 60 -143 49
diff --git a/profiles/plants/MA1758.1.pwm b/profiles/plants/MA1758.1.pwm
index e69de29..ea29765 100644
--- a/profiles/plants/MA1758.1.pwm
+++ b/profiles/plants/MA1758.1.pwm
@@ -0,0 +1,15 @@
+ 138 -178 -8 -259
+ -377 -503 195 -470
+ 195 -503 -362 -503
+ 188 -444 -293 -276
+ -97 -31 121 -141
+ -24 73 -28 -58
+ -97 -266 -377 170
+ -246 -503 -377 189
+ -470 192 -266 -503
+ -221 -147 -363 174
+ 174 -246 -115 -503
+ -470 -411 194 -377
+ 193 -411 -411 -393
+ 160 -276 -144 -115
+ -37 -37 74 -35
diff --git a/profiles/plants/MA1759.1.pwm b/profiles/plants/MA1759.1.pwm
index e69de29..d6cd9e9 100644
--- a/profiles/plants/MA1759.1.pwm
+++ b/profiles/plants/MA1759.1.pwm
@@ -0,0 +1,19 @@
+ -13 -31 -80 77
+ -8 33 -32 -1
+ 18 -28 -52 43
+ 109 -135 -9 -90
+ -67 -169 143 -147
+ 164 -164 -158 -215
+ 166 -284 -229 -99
+ -99 -39 93 -26
+ -117 118 -42 -88
+ -130 -332 -337 176
+ -402 -432 -503 195
+ -456 195 -503 -402
+ -432 -167 -284 181
+ 181 -411 -140 -411
+ -385 -402 192 -370
+ 194 -503 -402 -411
+ 174 -259 -284 -150
+ -35 -85 109 -93
+ 39 57 -62 -86
diff --git a/profiles/plants/MA1760.1.pwm b/profiles/plants/MA1760.1.pwm
index e6cce4b..7e90cbd 100644
--- a/profiles/plants/MA1760.1.pwm
+++ b/profiles/plants/MA1760.1.pwm
@@ -1,13 +1,13 @@
- -638 -10000 200 -10000
- 198 -10000 -10000 -388
- 193 -638 -10000 -244
- -164 -9 120 -117
- 25 37 -34 -45
- -110 -288 -10000 176
- -538 -10000 -10000 199
- -10000 200 -10000 -10000
- -10000 -229 -388 190
- 187 -538 -170 -10000
- -10000 -10000 200 -638
- 200 -10000 -10000 -10000
- 174 -301 -221 -164
+ -456 -503 196 -503
+ 194 -503 -503 -337
+ 189 -456 -503 -226
+ -155 -9 118 -112
+ 24 36 -33 -43
+ -105 -262 -503 173
+ -421 -503 -503 196
+ -503 197 -503 -503
+ -503 -213 -337 187
+ 184 -421 -160 -503
+ -503 -503 196 -456
+ 197 -503 -503 -503
+ 171 -273 -206 -155
diff --git a/profiles/plants/MA1761.1.pwm b/profiles/plants/MA1761.1.pwm
index e7c53bf..94112b0 100644
--- a/profiles/plants/MA1761.1.pwm
+++ b/profiles/plants/MA1761.1.pwm
@@ -1,13 +1,13 @@
- 165 -272 -140 -157
- 184 -516 -10000 -134
- -110 -51 117 -79
- -144 125 -29 -121
- -227 -10000 -480 191
- -697 -10000 -516 199
- -10000 198 -697 -480
- -10000 -33 -238 159
- 185 -451 -166 -451
- -62 -380 151 -124
- 184 -10000 -204 -261
- 168 -301 -199 -127
- -11 -40 74 -62
+ 162 -249 -133 -149
+ 181 -411 -503 -127
+ -105 -49 114 -75
+ -137 123 -28 -116
+ -211 -503 -393 188
+ -470 -503 -411 195
+ -503 195 -470 -393
+ -503 -32 -220 156
+ 181 -377 -157 -377
+ -59 -332 148 -118
+ 181 -503 -190 -240
+ 165 -273 -186 -121
+ -11 -39 72 -60
diff --git a/profiles/plants/MA1762.1.pwm b/profiles/plants/MA1762.1.pwm
index 8797b11..307ee5a 100644
--- a/profiles/plants/MA1762.1.pwm
+++ b/profiles/plants/MA1762.1.pwm
@@ -1,14 +1,14 @@
- -4 1 -63 46
- -134 32 -111 92
- -174 86 -297 81
- -388 150 -372 3
- 199 -10000 -697 -697
- -480 199 -10000 -10000
- -10000 200 -10000 -10000
- 49 -638 -10000 137
- 200 -10000 -10000 -10000
- 42 141 -638 -10000
- -416 172 -697 -64
- 87 -59 -229 38
- 50 -8 -216 50
- 39 -22 -120 48
+ -4 1 -61 45
+ -127 32 -106 90
+ -164 84 -269 79
+ -337 147 -326 3
+ 196 -503 -470 -470
+ -393 195 -503 -503
+ -503 197 -503 -503
+ 47 -456 -503 134
+ 197 -503 -503 -503
+ 40 138 -456 -503
+ -356 169 -470 -61
+ 85 -57 -213 37
+ 49 -8 -201 49
+ 38 -22 -114 47
diff --git a/profiles/plants/MA1763.1.pwm b/profiles/plants/MA1763.1.pwm
index b872ae5..5145c5c 100644
--- a/profiles/plants/MA1763.1.pwm
+++ b/profiles/plants/MA1763.1.pwm
@@ -1,14 +1,14 @@
- 38 -75 -306 99
- 36 -78 -14 29
- -113 -40 91 -14
- -190 26 -90 100
- -172 18 -192 120
- -268 129 -154 9
- 200 -10000 -10000 -10000
- -56 171 -497 -564
- -10000 200 -10000 -10000
- 53 -208 -564 120
- 200 -10000 -697 -10000
- 71 124 -10000 -10000
- -388 145 -10000 26
- 52 -52 -192 68
+ 37 -72 -276 97
+ 35 -74 -13 28
+ -108 -38 89 -13
+ -178 25 -86 98
+ -162 18 -180 118
+ -246 126 -146 9
+ 197 -503 -503 -503
+ -54 168 -402 -432
+ -503 197 -503 -503
+ 52 -195 -432 118
+ 196 -503 -470 -503
+ 69 122 -503 -503
+ -337 142 -503 25
+ 51 -50 -180 66
diff --git a/profiles/plants/MA1764.1.pwm b/profiles/plants/MA1764.1.pwm
index 42c52d8..53f2d0e 100644
--- a/profiles/plants/MA1764.1.pwm
+++ b/profiles/plants/MA1764.1.pwm
@@ -1,13 +1,13 @@
- -67 10 -107 87
- -34 31 -20 14
- -219 -70 -121 145
- 9 -697 155 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -416 -10000 -638 198
- 200 -10000 -10000 -10000
- 197 -351 -10000 -10000
- -10000 186 -10000 -147
- -91 -121 -564 159
- -75 -54 -199 130
- -30 -44 -152 107
+ -65 10 -102 85
+ -32 30 -19 13
+ -204 -67 -116 142
+ 9 -470 152 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -356 -503 -456 194
+ 197 -503 -503 -503
+ 193 -311 -503 -503
+ -503 183 -503 -140
+ -87 -115 -432 156
+ -72 -52 -186 128
+ -29 -43 -144 105
diff --git a/profiles/plants/MA1765.1.pwm b/profiles/plants/MA1765.1.pwm
index e69de29..5843e62 100644
--- a/profiles/plants/MA1765.1.pwm
+++ b/profiles/plants/MA1765.1.pwm
@@ -0,0 +1,14 @@
+ -3 -15 -91 67
+ -89 18 -122 93
+ 30 -54 0 12
+ -33 -124 -115 122
+ 185 -503 -160 -503
+ -456 196 -503 -503
+ -503 197 -503 -503
+ -134 -503 -152 169
+ 197 -503 -503 -503
+ 153 4 -503 -411
+ -237 149 -503 -6
+ 13 -55 -266 105
+ 24 -67 -144 87
+ 43 -77 -124 72
diff --git a/profiles/plants/MA1766.1.pwm b/profiles/plants/MA1766.1.pwm
index 4ef928e..6073fee 100644
--- a/profiles/plants/MA1766.1.pwm
+++ b/profiles/plants/MA1766.1.pwm
@@ -1,15 +1,15 @@
- -184 82 -170 72
- -89 56 -204 80
- -129 128 -451 15
- 199 -10000 -10000 -597
- -94 180 -10000 -10000
- -10000 200 -10000 -10000
- -5 -264 -10000 152
- 200 -10000 -10000 -10000
- -97 179 -564 -697
- -697 169 -10000 -37
- 112 -110 -344 33
- 75 -2 -211 14
- 29 43 -138 7
- 33 -13 -129 51
- 23 -25 -135 68
+ -173 80 -160 71
+ -85 54 -190 78
+ -123 126 -377 15
+ 196 -503 -503 -444
+ -90 177 -503 -503
+ -503 197 -503 -503
+ -5 -243 -503 149
+ 197 -503 -503 -503
+ -92 176 -432 -470
+ -470 166 -503 -36
+ 110 -105 -306 32
+ 73 -2 -197 13
+ 28 42 -131 7
+ 32 -13 -123 50
+ 22 -24 -128 66
diff --git a/profiles/plants/MA1767.1.pwm b/profiles/plants/MA1767.1.pwm
index e69de29..86705c8 100644
--- a/profiles/plants/MA1767.1.pwm
+++ b/profiles/plants/MA1767.1.pwm
@@ -0,0 +1,11 @@
+ -11 46 -100 25
+ -503 195 -503 -356
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ 121 -385 -503 66
+ 197 -503 -503 -503
+ 73 45 -124 -85
+ 1 83 -137 -26
+ 30 -66 -169 87
+ 13 6 -130 54
diff --git a/profiles/plants/MA1768.1.pwm b/profiles/plants/MA1768.1.pwm
index e69de29..3efbe3c 100644
--- a/profiles/plants/MA1768.1.pwm
+++ b/profiles/plants/MA1768.1.pwm
@@ -0,0 +1,15 @@
+ -68 28 -34 45
+ -79 50 -149 72
+ 6 79 -178 -10
+ -46 108 -178 -21
+ -370 172 -503 -75
+ 194 -349 -503 -470
+ 178 -122 -456 -362
+ -503 197 -503 -503
+ -188 105 -311 63
+ 158 -370 -51 -213
+ -56 154 -503 -141
+ -146 142 -503 -10
+ 128 -157 -199 -2
+ 67 61 -228 -55
+ -60 127 -229 -46
diff --git a/profiles/plants/MA1769.1.pwm b/profiles/plants/MA1769.1.pwm
index 8832c29..59f9481 100644
--- a/profiles/plants/MA1769.1.pwm
+++ b/profiles/plants/MA1769.1.pwm
@@ -1,14 +1,14 @@
- -67 -56 -34 93
- -232 31 -141 113
- -190 49 -176 102
- -288 142 -388 16
- 199 -10000 -516 -10000
- -86 178 -10000 -564
- -10000 200 -10000 -10000
- -56 -10000 -10000 173
- 200 -10000 -10000 -10000
- 115 81 -10000 -516
- -244 91 -10000 95
- 2 -166 -10000 142
- -16 -27 -219 104
- 2 -19 -144 80
+ -65 -54 -33 91
+ -216 30 -134 111
+ -179 48 -166 100
+ -262 139 -337 15
+ 196 -503 -411 -503
+ -82 175 -503 -432
+ -503 197 -503 -503
+ -54 -503 -503 170
+ 197 -503 -503 -503
+ 112 79 -503 -411
+ -226 89 -503 93
+ 2 -157 -503 139
+ -15 -26 -204 102
+ 2 -18 -137 78
diff --git a/profiles/plants/MA1770.1.pwm b/profiles/plants/MA1770.1.pwm
index 5156fea..850af8d 100644
--- a/profiles/plants/MA1770.1.pwm
+++ b/profiles/plants/MA1770.1.pwm
@@ -1,13 +1,13 @@
- -257 49 -98 94
- -388 30 -272 135
- -332 78 -10000 112
- 199 -10000 -597 -10000
- -497 199 -10000 -10000
- -10000 199 -597 -10000
- 70 -10000 -10000 125
- 199 -597 -10000 -10000
- 68 124 -10000 -497
- -288 121 -10000 63
- 57 -76 -149 65
- -5 -13 -199 90
- -3 7 -137 67
+ -237 47 -93 92
+ -337 29 -249 132
+ -297 77 -503 110
+ 196 -503 -444 -503
+ -402 195 -503 -503
+ -503 196 -444 -503
+ 68 -503 -503 123
+ 196 -444 -503 -503
+ 66 122 -503 -402
+ -262 118 -503 62
+ 55 -73 -141 63
+ -5 -13 -186 88
+ -3 6 -130 65
diff --git a/profiles/plants/MA1771.1.pwm b/profiles/plants/MA1771.1.pwm
index e69de29..a37915e 100644
--- a/profiles/plants/MA1771.1.pwm
+++ b/profiles/plants/MA1771.1.pwm
@@ -0,0 +1,15 @@
+ 0 -114 0 63
+ -30 -42 -144 105
+ 30 -137 -23 61
+ -122 -79 104 -9
+ -182 -6 -30 96
+ -162 -46 -171 140
+ -122 85 -114 40
+ 197 -503 -503 -503
+ -206 189 -503 -503
+ -503 197 -503 -503
+ -137 -343 -503 180
+ 197 -503 -503 -503
+ 128 55 -503 -377
+ -128 108 -311 44
+ -20 -84 -377 132
diff --git a/profiles/plants/MA1772.1.pwm b/profiles/plants/MA1772.1.pwm
index d50439f..885a59a 100644
--- a/profiles/plants/MA1772.1.pwm
+++ b/profiles/plants/MA1772.1.pwm
@@ -1,13 +1,13 @@
- -91 38 -20 38
- -10000 53 -157 115
- -79 -20 -238 124
- -338 112 -438 76
- 200 -10000 -10000 -10000
- -338 196 -10000 -10000
- -10000 200 -10000 -10000
- 48 -10000 -10000 138
- 200 -10000 -10000 -10000
- 67 127 -10000 -10000
- -10000 141 -438 38
- 21 -67 -338 108
- -5 -56 -338 118
+ -87 37 -20 37
+ -503 52 -149 112
+ -75 -20 -221 121
+ -301 109 -370 74
+ 197 -503 -503 -503
+ -301 193 -503 -503
+ -503 197 -503 -503
+ 47 -503 -503 135
+ 197 -503 -503 -503
+ 65 124 -503 -503
+ -503 138 -370 37
+ 20 -65 -301 106
+ -5 -54 -301 115
diff --git a/profiles/plants/MA1773.1.pwm b/profiles/plants/MA1773.1.pwm
index e69de29..1c15d95 100644
--- a/profiles/plants/MA1773.1.pwm
+++ b/profiles/plants/MA1773.1.pwm
@@ -0,0 +1,21 @@
+ 10 25 -88 26
+ 20 -32 -117 68
+ 13 18 -90 31
+ 7 36 -100 23
+ 59 -35 -103 29
+ 50 -46 -50 21
+ 44 -5 -119 31
+ 60 -35 -73 13
+ 7 9 -61 31
+ 19 -14 -66 40
+ -150 56 -131 82
+ -127 61 -140 75
+ -119 98 -356 59
+ 196 -470 -503 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ 84 -470 -444 109
+ 196 -503 -470 -503
+ -28 160 -356 -393
+ -150 121 -321 29
+ 73 -140 -302 88
diff --git a/profiles/plants/MA1774.1.pwm b/profiles/plants/MA1774.1.pwm
index e69de29..a3ea6e5 100644
--- a/profiles/plants/MA1774.1.pwm
+++ b/profiles/plants/MA1774.1.pwm
@@ -0,0 +1,19 @@
+ 15 32 -112 24
+ 38 -38 -69 39
+ 1 -45 -54 65
+ -75 52 -146 69
+ -112 54 -140 77
+ -146 102 -211 46
+ -503 193 -503 -297
+ 196 -432 -470 -503
+ 177 -93 -503 -470
+ -503 197 -503 -503
+ -180 106 -503 68
+ 193 -503 -297 -503
+ -91 171 -503 -255
+ -94 102 -503 51
+ -3 -146 -180 125
+ -18 25 -169 70
+ -2 18 -123 54
+ 29 -41 -38 33
+ -40 43 -87 43
diff --git a/profiles/plants/MA1775.1.pwm b/profiles/plants/MA1775.1.pwm
index f9195dc..7bb0ab3 100644
--- a/profiles/plants/MA1775.1.pwm
+++ b/profiles/plants/MA1775.1.pwm
@@ -1,13 +1,13 @@
- -8 33 -62 20
- -55 24 -117 76
- -77 80 -61 3
- -10000 108 -516 89
- 200 -10000 -10000 -10000
- -29 167 -10000 -10000
- -10000 200 -10000 -10000
- 77 -186 -10000 101
- 200 -10000 -10000 -10000
- 30 147 -10000 -697
- -10000 178 -10000 -84
- 87 -143 -44 9
- -19 38 -104 41
+ -8 32 -60 19
+ -53 24 -112 74
+ -74 78 -59 3
+ -503 106 -411 87
+ 197 -503 -503 -503
+ -28 164 -503 -503
+ -503 197 -503 -503
+ 76 -174 -503 99
+ 197 -503 -503 -503
+ 29 144 -503 -470
+ -503 175 -503 -80
+ 85 -135 -43 9
+ -18 37 -99 40
diff --git a/profiles/plants/MA1776.1.pwm b/profiles/plants/MA1776.1.pwm
index 600f1d1..1b1e092 100644
--- a/profiles/plants/MA1776.1.pwm
+++ b/profiles/plants/MA1776.1.pwm
@@ -1,21 +1,21 @@
- -132 59 -107 69
- -161 94 -33 -7
- -516 113 -10000 83
- 200 -10000 -10000 -10000
- -144 186 -10000 -638
- -10000 200 -10000 -10000
- 37 -257 -10000 134
- 200 -10000 -10000 -10000
- 126 68 -10000 -697
- -438 183 -10000 -132
- 84 -110 -3 -38
- -17 44 -164 52
- 2 14 -129 56
- 53 -14 -82 11
- 0 30 -69 20
- 22 24 -95 18
- 25 5 -64 18
- -1 41 -85 16
- 35 -15 -90 37
- 20 2 -33 6
- 12 28 -74 13
+ -126 58 -102 68
+ -152 92 -32 -6
+ -411 111 -503 81
+ 197 -503 -503 -503
+ -137 182 -503 -456
+ -503 197 -503 -503
+ 36 -237 -503 132
+ 197 -503 -503 -503
+ 123 66 -503 -470
+ -370 180 -503 -126
+ 82 -105 -3 -37
+ -17 43 -155 51
+ 2 13 -123 55
+ 52 -13 -78 10
+ 0 29 -66 19
+ 22 23 -91 18
+ 24 5 -62 18
+ -1 40 -81 16
+ 34 -15 -86 36
+ 19 2 -32 5
+ 12 27 -71 13
diff --git a/profiles/plants/MA1777.1.pwm b/profiles/plants/MA1777.1.pwm
index c79a89c..0494f0f 100644
--- a/profiles/plants/MA1777.1.pwm
+++ b/profiles/plants/MA1777.1.pwm
@@ -1,14 +1,14 @@
- -33 -20 -18 54
- -188 27 -141 110
- -102 35 -168 94
- -372 118 -311 62
- 200 -10000 -10000 -10000
- -180 189 -697 -697
- -10000 200 -10000 -10000
- -56 -10000 -10000 173
- 200 -10000 -10000 -10000
- 84 114 -10000 -10000
- -564 152 -10000 15
- 57 -144 -464 108
- 37 -12 -190 60
- 14 -11 -111 59
+ -32 -19 -18 53
+ -176 26 -134 108
+ -98 34 -159 92
+ -326 116 -280 60
+ 197 -503 -503 -503
+ -169 185 -470 -470
+ -503 197 -503 -503
+ -54 -503 -503 170
+ 197 -503 -503 -503
+ 83 112 -503 -503
+ -432 149 -503 15
+ 55 -137 -385 105
+ 36 -12 -178 59
+ 13 -10 -106 58
diff --git a/profiles/plants/MA1778.1.pwm b/profiles/plants/MA1778.1.pwm
index c78dbc7..ed83b75 100644
--- a/profiles/plants/MA1778.1.pwm
+++ b/profiles/plants/MA1778.1.pwm
@@ -1,15 +1,15 @@
- -66 -71 35 57
- -201 -5 -88 116
- -131 25 -197 111
- -201 91 -192 68
- 200 -10000 -10000 -697
- -13 162 -10000 -10000
- -10000 200 -10000 -10000
- -24 -497 -564 163
- 200 -10000 -10000 -10000
- 133 57 -10000 -697
- -163 65 -497 105
- -21 -186 -516 150
- 23 -36 -311 95
- -14 -69 -57 85
- 4 -34 -85 70
+ -64 -68 34 55
+ -188 -5 -84 114
+ -124 24 -184 108
+ -188 89 -180 67
+ 196 -503 -503 -470
+ -12 159 -503 -503
+ -503 197 -503 -503
+ -23 -402 -432 160
+ 197 -503 -503 -503
+ 130 55 -503 -470
+ -154 63 -402 103
+ -20 -175 -411 147
+ 23 -35 -280 93
+ -13 -66 -55 83
+ 4 -33 -81 69
diff --git a/profiles/plants/MA1779.1.pwm b/profiles/plants/MA1779.1.pwm
index e69de29..9322fba 100644
--- a/profiles/plants/MA1779.1.pwm
+++ b/profiles/plants/MA1779.1.pwm
@@ -0,0 +1,11 @@
+ -90 100 -130 8
+ -114 167 -432 -162
+ 197 -503 -503 -503
+ -10 157 -393 -503
+ -503 196 -503 -411
+ 173 -356 -411 -90
+ 169 -96 -211 -503
+ -43 165 -356 -503
+ 21 95 -337 -29
+ 32 2 -37 -5
+ -40 113 -180 -39
diff --git a/profiles/plants/MA1780.1.pwm b/profiles/plants/MA1780.1.pwm
index e69de29..6f857d4 100644
--- a/profiles/plants/MA1780.1.pwm
+++ b/profiles/plants/MA1780.1.pwm
@@ -0,0 +1,10 @@
+ -32 7 -71 63
+ -25 28 -104 55
+ -76 59 -173 68
+ 192 -269 -503 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -103 -503 -503 179
+ 197 -503 -503 -503
+ 146 25 -503 -503
+ -138 133 -184 -29
diff --git a/profiles/plants/MA1781.1.pwm b/profiles/plants/MA1781.1.pwm
index f357011..dc561ba 100644
--- a/profiles/plants/MA1781.1.pwm
+++ b/profiles/plants/MA1781.1.pwm
@@ -1,19 +1,19 @@
- 68 -24 -124 17
- 24 6 -134 47
- -38 27 -61 45
- -100 27 -120 89
- -42 86 -124 1
- -121 119 -218 9
- -10000 190 -10000 -186
- 200 -697 -10000 -10000
- 166 -24 -10000 -10000
- -10000 200 -10000 -10000
- -257 86 -697 101
- 196 -10000 -380 -516
- -100 177 -10000 -344
- -229 122 -10000 55
- 40 -163 -251 112
- 10 9 -154 60
- -19 53 -129 34
- 11 4 -86 42
- 30 7 -86 22
+ 66 -23 -118 17
+ 23 6 -127 46
+ -37 26 -59 44
+ -96 26 -114 87
+ -40 84 -118 1
+ -115 117 -204 9
+ -503 186 -503 -175
+ 196 -470 -503 -503
+ 163 -23 -503 -503
+ -503 197 -503 -503
+ -237 84 -470 99
+ 193 -503 -332 -411
+ -96 174 -503 -306
+ -213 119 -503 54
+ 39 -154 -231 110
+ 10 9 -146 59
+ -18 52 -123 33
+ 11 4 -82 41
+ 30 7 -82 21
diff --git a/profiles/plants/MA1782.1.pwm b/profiles/plants/MA1782.1.pwm
index 5e0f98e..7976011 100644
--- a/profiles/plants/MA1782.1.pwm
+++ b/profiles/plants/MA1782.1.pwm
@@ -1,13 +1,13 @@
- 1 24 -67 25
- -126 77 -188 68
- -89 52 -174 79
- -136 130 -438 14
- 200 -10000 -10000 -10000
- -156 187 -10000 -10000
- -10000 200 -10000 -10000
- 34 -406 -10000 142
- 200 -10000 -10000 -10000
- 75 120 -10000 -638
- -327 128 -10000 56
- -19 32 -170 65
- 3 54 -161 26
+ 1 23 -64 24
+ -120 76 -176 66
+ -85 50 -164 77
+ -130 127 -369 13
+ 197 -503 -503 -503
+ -147 184 -503 -503
+ -503 197 -503 -503
+ 33 -349 -503 139
+ 197 -503 -503 -503
+ 73 118 -503 -456
+ -293 125 -503 54
+ -18 32 -160 63
+ 3 53 -152 25
diff --git a/profiles/plants/MA1783.1.pwm b/profiles/plants/MA1783.1.pwm
index e69de29..9db3564 100644
--- a/profiles/plants/MA1783.1.pwm
+++ b/profiles/plants/MA1783.1.pwm
@@ -0,0 +1,19 @@
+ -17 -195 -289 144
+ 52 -159 -137 89
+ 71 -43 11 -89
+ -503 196 -503 -470
+ -503 -503 -456 196
+ -503 -503 -503 197
+ -8 57 19 -123
+ -96 -72 -135 131
+ -38 -72 -53 95
+ -46 46 -186 70
+ 35 -24 -107 49
+ 96 -68 -47 -50
+ -321 96 -186 74
+ 196 -503 -470 -503
+ 196 -432 -503 -503
+ -503 -503 197 -503
+ -186 -64 -105 138
+ 17 -180 -321 131
+ 87 -326 -321 97
diff --git a/profiles/plants/MA1784.1.pwm b/profiles/plants/MA1784.1.pwm
index e69de29..4072112 100644
--- a/profiles/plants/MA1784.1.pwm
+++ b/profiles/plants/MA1784.1.pwm
@@ -0,0 +1,21 @@
+ -7 -164 111 -80
+ -444 -503 -503 196
+ -293 -503 -393 192
+ -39 -293 110 -5
+ -503 197 -503 -503
+ -503 -503 -221 190
+ -503 -393 -503 195
+ -119 76 56 -137
+ 12 -43 -84 69
+ 16 -50 25 -2
+ 14 56 -124 0
+ -21 29 -88 46
+ 56 -173 31 -2
+ -503 164 -119 -124
+ 196 -503 -444 -503
+ 164 -30 -503 -444
+ -503 -503 197 -503
+ -60 5 -103 86
+ 128 -113 -332 2
+ 182 -444 -444 -137
+ -103 108 -137 2
diff --git a/profiles/plants/MA1785.1.pwm b/profiles/plants/MA1785.1.pwm
index be1aef2..cc47128 100644
--- a/profiles/plants/MA1785.1.pwm
+++ b/profiles/plants/MA1785.1.pwm
@@ -1,11 +1,11 @@
- 124 -172 -79 -40
- -311 128 -135 8
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -288 19 -36 96
- 139 21 -10000 -221
- 167 -10000 -10000 -27
- -161 119 -117 -8
- -180 70 -213 90
- -19 -106 -14 80
+ 121 -162 -76 -39
+ -280 126 -128 8
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -262 19 -35 93
+ 136 21 -503 -206
+ 163 -503 -503 -26
+ -152 117 -112 -8
+ -169 68 -199 87
+ -18 -101 -13 78
diff --git a/profiles/plants/MA1786.1.pwm b/profiles/plants/MA1786.1.pwm
index e69de29..6d59ef6 100644
--- a/profiles/plants/MA1786.1.pwm
+++ b/profiles/plants/MA1786.1.pwm
@@ -0,0 +1,10 @@
+ -5 5 -14 12
+ 48 -74 15 -17
+ -240 109 -120 32
+ 194 -470 -470 -377
+ -204 187 -486 -421
+ -411 -444 191 -273
+ -106 12 34 22
+ 103 47 -262 -127
+ 137 -284 -169 -6
+ -56 46 -6 -3
diff --git a/profiles/plants/MA1787.1.pwm b/profiles/plants/MA1787.1.pwm
index e69de29..d7b8999 100644
--- a/profiles/plants/MA1787.1.pwm
+++ b/profiles/plants/MA1787.1.pwm
@@ -0,0 +1,15 @@
+ 4 -94 -173 110
+ 15 -30 -73 56
+ 7 4 -54 30
+ 5 -26 -58 54
+ 112 -143 -99 -7
+ -411 147 -266 1
+ 197 -503 -503 -503
+ -503 196 -503 -432
+ -470 -385 194 -402
+ -237 -12 -69 118
+ 104 54 -432 -117
+ 136 -503 -503 46
+ -221 133 -130 -21
+ -178 18 -229 124
+ -35 -83 -56 98
diff --git a/profiles/plants/MA1788.1.pwm b/profiles/plants/MA1788.1.pwm
index 021d55a..1027ec6 100644
--- a/profiles/plants/MA1788.1.pwm
+++ b/profiles/plants/MA1788.1.pwm
@@ -1,19 +1,19 @@
- -480 199 -10000 -10000
- -10000 -10000 26 149
- -10000 -10000 -10000 200
- -47 -51 131 -351
- -10 -62 -112 97
- -13 -21 -18 42
- -37 32 -40 28
- 42 15 -131 19
- 139 -479 -40 -78
- -10000 170 -10000 -43
- 200 -10000 -10000 -10000
- -102 181 -10000 -10000
- -10000 -10000 199 -597
- -251 60 -124 91
- 60 -21 -427 65
- 182 -480 -480 -137
- -54 74 -87 13
- -102 138 -131 -102
- -37 -143 -102 124
+ -393 195 -503 -503
+ -503 -503 26 146
+ -503 -503 -503 197
+ -45 -49 129 -311
+ -10 -59 -107 95
+ -12 -20 -18 41
+ -35 32 -39 27
+ 41 15 -124 19
+ 137 -393 -39 -75
+ -503 167 -503 -42
+ 197 -503 -503 -503
+ -98 178 -503 -503
+ -503 -503 196 -444
+ -231 59 -118 89
+ 59 -20 -362 63
+ 179 -393 -393 -130
+ -52 73 -83 12
+ -98 136 -124 -98
+ -35 -135 -98 121
diff --git a/profiles/plants/MA1789.1.pwm b/profiles/plants/MA1789.1.pwm
index 27f8471..e4149ff 100644
--- a/profiles/plants/MA1789.1.pwm
+++ b/profiles/plants/MA1789.1.pwm
@@ -1,15 +1,15 @@
- -564 199 -10000 -10000
- -10000 -638 -89 179
- -10000 -638 -10000 200
- -247 102 44 -121
- 73 -91 -128 49
- -13 -14 -99 74
- -44 60 -89 27
- -111 31 -100 84
- -74 -40 -102 110
- -311 157 -78 -157
- 200 -10000 -10000 -10000
- 134 55 -10000 -10000
- -697 -10000 195 -306
- -149 44 -192 101
- 150 -157 -10000 -26
+ -432 196 -503 -503
+ -503 -456 -85 175
+ -503 -456 -503 196
+ -228 100 42 -115
+ 71 -87 -122 47
+ -12 -13 -95 72
+ -43 59 -85 26
+ -106 30 -96 83
+ -71 -38 -98 108
+ -280 154 -74 -149
+ 197 -503 -503 -503
+ 131 54 -503 -503
+ -470 -503 192 -277
+ -141 43 -180 99
+ 147 -149 -503 -25
diff --git a/profiles/plants/MA1790.1.pwm b/profiles/plants/MA1790.1.pwm
index e69de29..ce16256 100644
--- a/profiles/plants/MA1790.1.pwm
+++ b/profiles/plants/MA1790.1.pwm
@@ -0,0 +1,15 @@
+ -456 194 -503 -370
+ -432 -503 -32 164
+ -503 -411 -470 195
+ -86 83 62 -297
+ 35 -123 -243 108
+ -46 -6 -39 63
+ -41 65 -19 -32
+ -3 5 -95 55
+ 74 -289 -223 99
+ -321 120 -102 13
+ 194 -402 -503 -411
+ 80 113 -503 -503
+ -178 -503 171 -133
+ -155 118 -206 21
+ 1 -17 -456 105
diff --git a/profiles/plants/MA1791.1.pwm b/profiles/plants/MA1791.1.pwm
index 2a491b6..db54407 100644
--- a/profiles/plants/MA1791.1.pwm
+++ b/profiles/plants/MA1791.1.pwm
@@ -1,19 +1,19 @@
- -284 -10000 -10000 195
- 0 -397 -98 128
- 58 -81 -3 -7
- -638 200 -10000 -10000
- -10000 -10000 40 142
- -480 -697 -10000 198
- -94 -66 147 -388
- -54 -88 -272 139
- -11 -36 0 37
- -6 33 -62 17
- -27 30 -60 36
- 118 -264 -36 -34
- -10000 164 -464 -24
- 200 -10000 -10000 -10000
- 15 153 -10000 -10000
- -10000 -10000 197 -372
- -170 18 -128 110
- 67 -51 -480 74
- 176 -697 -638 -76
+ -259 -503 -503 192
+ 0 -343 -93 125
+ 57 -77 -3 -7
+ -456 196 -503 -503
+ -503 -503 39 139
+ -393 -470 -503 195
+ -90 -64 145 -337
+ -52 -84 -249 136
+ -11 -34 0 36
+ -6 32 -59 17
+ -26 29 -58 35
+ 116 -243 -35 -32
+ -503 161 -385 -23
+ 197 -503 -503 -503
+ 15 150 -503 -503
+ -503 -503 194 -326
+ -160 17 -122 108
+ 65 -49 -393 72
+ 173 -470 -456 -73
diff --git a/profiles/plants/MA1792.1.pwm b/profiles/plants/MA1792.1.pwm
index 99fde8e..99e6c41 100644
--- a/profiles/plants/MA1792.1.pwm
+++ b/profiles/plants/MA1792.1.pwm
@@ -1,16 +1,16 @@
- -388 198 -10000 -10000
- -10000 -10000 70 125
- -10000 -10000 -10000 200
- -146 -109 164 -464
- -79 -81 -244 141
- -20 -34 2 41
- -8 22 -47 23
- -2 16 -76 39
- 110 -254 -48 -4
- -564 155 -338 -6
- 200 -10000 -10000 -10000
- 35 144 -10000 -638
- -697 -10000 197 -388
- -197 -1 -107 119
- 49 -16 -10000 77
- 173 -697 -565 -61
+ -337 194 -503 -503
+ -503 -503 68 122
+ -503 -503 -503 197
+ -138 -104 161 -385
+ -75 -77 -226 139
+ -20 -32 2 40
+ -8 21 -45 22
+ -2 15 -73 38
+ 107 -234 -46 -4
+ -432 152 -301 -6
+ 197 -503 -503 -503
+ 34 141 -503 -456
+ -470 -503 194 -337
+ -184 -1 -102 116
+ 48 -15 -503 75
+ 170 -470 -432 -59
diff --git a/profiles/plants/MA1793.1.pwm b/profiles/plants/MA1793.1.pwm
index 9e8130d..d0de093 100644
--- a/profiles/plants/MA1793.1.pwm
+++ b/profiles/plants/MA1793.1.pwm
@@ -1,10 +1,10 @@
- -36 63 -3 -53
- -111 -15 -311 133
- -92 -128 -143 143
- 194 -597 -416 -364
- -380 -280 -406 190
- -344 190 -406 -311
- -254 135 -186 1
- 72 -129 17 -29
- -3 -10 -17 26
- 56 -63 -65 31
+ -35 62 -3 -51
+ -106 -15 -280 131
+ -88 -122 -136 140
+ 191 -444 -356 -321
+ -332 -255 -349 186
+ -306 187 -349 -280
+ -234 132 -175 1
+ 70 -123 17 -28
+ -3 -10 -17 26
+ 54 -60 -63 31
diff --git a/profiles/plants/MA1794.1.pwm b/profiles/plants/MA1794.1.pwm
index e69de29..16a4b6d 100644
--- a/profiles/plants/MA1794.1.pwm
+++ b/profiles/plants/MA1794.1.pwm
@@ -0,0 +1,15 @@
+ 82 -114 -103 37
+ 44 -91 -58 53
+ 25 -141 -43 76
+ -385 -44 -470 166
+ -180 -503 187 -503
+ 39 -49 43 -65
+ -503 197 -503 -503
+ -503 81 -243 102
+ -332 63 -311 116
+ -385 -154 -503 183
+ -246 -349 -503 189
+ -127 90 36 -118
+ 66 -109 71 -169
+ 28 -98 48 -18
+ 46 -98 16 0
diff --git a/profiles/plants/MA1795.1.pwm b/profiles/plants/MA1795.1.pwm
index e69de29..6ef6f8a 100644
--- a/profiles/plants/MA1795.1.pwm
+++ b/profiles/plants/MA1795.1.pwm
@@ -0,0 +1,10 @@
+ -45 112 -92 -83
+ 120 -503 72 -503
+ -485 187 -182 -503
+ -486 192 -503 -273
+ -135 -411 162 -109
+ 97 -5 -155 -45
+ -127 169 -503 -158
+ 11 111 -211 -93
+ 88 -79 -61 -12
+ 10 -3 -39 24
diff --git a/profiles/plants/MA1796.1.pwm b/profiles/plants/MA1796.1.pwm
index 137d490..a73df02 100644
--- a/profiles/plants/MA1796.1.pwm
+++ b/profiles/plants/MA1796.1.pwm
@@ -1,8 +1,8 @@
- -797 -797 0 158
- 130 -70 -11 -797
- -797 165 -22 -797
- -797 -797 177 -81
- 147 -797 30 -797
- -797 -797 188 -170
- -797 -797 200 -797
- 13 -797 -46 112
+ -486 -486 0 155
+ 127 -67 -11 -486
+ -486 162 -22 -486
+ -486 -486 174 -77
+ 144 -486 29 -486
+ -486 -486 185 -160
+ -486 -486 196 -486
+ 12 -486 -44 110
diff --git a/profiles/plants/MA1797.1.pwm b/profiles/plants/MA1797.1.pwm
index 565ff02..ccac220 100644
--- a/profiles/plants/MA1797.1.pwm
+++ b/profiles/plants/MA1797.1.pwm
@@ -1,8 +1,8 @@
- -22 -180 151 -797
- -10000 200 -10000 -10000
- 186 -10000 -146 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -87 179
- 117 0 -797 -41
+ -22 -169 148 -486
+ -503 197 -503 -503
+ 183 -503 -138 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -83 176
+ 114 0 -486 -40
diff --git a/profiles/plants/MA1798.1.pwm b/profiles/plants/MA1798.1.pwm
index e69de29..1e1a49e 100644
--- a/profiles/plants/MA1798.1.pwm
+++ b/profiles/plants/MA1798.1.pwm
@@ -0,0 +1,21 @@
+ -160 -411 -503 184
+ -35 -237 -122 137
+ 10 -78 81 -75
+ -266 191 -456 -503
+ -503 -470 18 148
+ -503 -503 -385 195
+ -36 -23 106 -182
+ 62 -64 -126 49
+ 61 -140 0 13
+ 17 -7 -65 36
+ -31 7 -122 78
+ 25 -80 -26 49
+ -411 108 -199 66
+ 197 -503 -503 -503
+ 27 145 -503 -503
+ -349 -503 181 -144
+ -259 92 -306 87
+ 70 -60 -370 71
+ 171 -432 -432 -66
+ -90 104 -176 15
+ -58 112 -110 -54
diff --git a/profiles/plants/MA1799.1.pwm b/profiles/plants/MA1799.1.pwm
index e69de29..db2eeb4 100644
--- a/profiles/plants/MA1799.1.pwm
+++ b/profiles/plants/MA1799.1.pwm
@@ -0,0 +1,10 @@
+ 26 -10 -59 27
+ -33 6 -72 64
+ -262 -503 191 -456
+ -486 -432 -356 194
+ 190 -237 -503 -503
+ -385 192 -393 -385
+ -197 -231 155 -68
+ 42 -306 123 -231
+ 95 -59 -124 -2
+ 25 36 -57 -22
diff --git a/profiles/plants/MA1800.1.pwm b/profiles/plants/MA1800.1.pwm
index 7f8e653..7d55c9a 100644
--- a/profiles/plants/MA1800.1.pwm
+++ b/profiles/plants/MA1800.1.pwm
@@ -1,8 +1,8 @@
- -19 -135 145 -10000
- -151 187 -10000 -10000
- 181 -397 -120 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -5 160
- 126 -100 -10000 14
+ -18 -129 142 -503
+ -143 183 -503 -503
+ 178 -343 -114 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -5 157
+ 124 -96 -503 13
diff --git a/profiles/plants/MA1801.1.pwm b/profiles/plants/MA1801.1.pwm
index e69de29..96d6d80 100644
--- a/profiles/plants/MA1801.1.pwm
+++ b/profiles/plants/MA1801.1.pwm
@@ -0,0 +1,11 @@
+ 39 -16 -16 -16
+ -50 -50 91 -50
+ -216 -64 -5 111
+ -37 -26 -131 99
+ 166 -503 -503 -37
+ -503 -503 182 -127
+ -37 166 -503 -503
+ -127 -503 -503 182
+ 33 -289 77 -15
+ 61 -54 -48 9
+ -31 -31 24 26
diff --git a/profiles/plants/MA1802.1.pwm b/profiles/plants/MA1802.1.pwm
index e69de29..df4d684 100644
--- a/profiles/plants/MA1802.1.pwm
+++ b/profiles/plants/MA1802.1.pwm
@@ -0,0 +1,10 @@
+ -38 48 16 -47
+ 27 -6 -114 47
+ 45 -190 -199 108
+ 173 -326 -102 -337
+ 174 -301 -284 -132
+ 155 -96 -127 -273
+ -231 160 -411 -51
+ -293 186 -337 -293
+ -138 103 -173 35
+ -37 41 -114 54
diff --git a/profiles/plants/MA1803.1.pwm b/profiles/plants/MA1803.1.pwm
index c1684cb..3d79ae6 100644
--- a/profiles/plants/MA1803.1.pwm
+++ b/profiles/plants/MA1803.1.pwm
@@ -1,14 +1,14 @@
- 45 -129 -24 47
- -133 -120 -238 157
- -388 -10000 177 -91
- 102 95 -464 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -372 -10000 197 -10000
- -10000 197 -464 -438
- -10000 -288 -10000 195
- -129 -137 159 -238
- -63 -10000 14 117
- 45 7 -56 -13
- 11 47 -129 18
- 69 -18 -105 2
+ 44 -123 -24 46
+ -127 -114 -220 154
+ -337 -503 173 -87
+ 100 93 -385 -503
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -326 -503 194 -503
+ -503 193 -385 -370
+ -503 -262 -503 192
+ -123 -130 156 -221
+ -60 -503 14 114
+ 44 7 -54 -13
+ 10 46 -123 17
+ 68 -18 -100 2
diff --git a/profiles/plants/MA1804.1.pwm b/profiles/plants/MA1804.1.pwm
index e69de29..c5db7c6 100644
--- a/profiles/plants/MA1804.1.pwm
+++ b/profiles/plants/MA1804.1.pwm
@@ -0,0 +1,10 @@
+ -1 63 9 -134
+ -83 150 -87 -385
+ 60 -486 127 -486
+ -486 164 -40 -337
+ -486 190 -486 -234
+ -30 -393 148 -160
+ -59 141 -157 -159
+ 46 48 -66 -75
+ 2 -59 75 -64
+ -43 -6 -52 68
diff --git a/profiles/plants/MA1805.1.pwm b/profiles/plants/MA1805.1.pwm
index 69a4c06..57fa300 100644
--- a/profiles/plants/MA1805.1.pwm
+++ b/profiles/plants/MA1805.1.pwm
@@ -1,9 +1,9 @@
- 77 -112 69 -213
- -497 -10000 197 -438
- -10000 -10000 -796 200
- -244 193 -796 -696
- 184 -216 -465 -268
- 184 -497 -172 -357
- -156 150 -216 -71
- -88 -37 96 -44
- -29 33 7 -19
+ 75 -107 67 -199
+ -402 -503 194 -370
+ -503 -503 -485 196
+ -226 189 -485 -470
+ 181 -201 -385 -246
+ 181 -402 -162 -316
+ -147 147 -201 -68
+ -84 -35 94 -43
+ -28 32 7 -18
diff --git a/profiles/plants/MA1806.1.pwm b/profiles/plants/MA1806.1.pwm
index e69de29..91429a1 100644
--- a/profiles/plants/MA1806.1.pwm
+++ b/profiles/plants/MA1806.1.pwm
@@ -0,0 +1,11 @@
+ -15 45 -63 12
+ 25 -117 40 7
+ -503 -243 -503 191
+ 133 -173 21 -503
+ 196 -432 -470 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 108 -349 65 -211
+ -321 25 0 77
+ 17 -63 43 -18
diff --git a/profiles/plants/MA1807.1.pwm b/profiles/plants/MA1807.1.pwm
index e69de29..99eeb1e 100644
--- a/profiles/plants/MA1807.1.pwm
+++ b/profiles/plants/MA1807.1.pwm
@@ -0,0 +1,11 @@
+ 3 24 -62 20
+ 29 -184 -56 87
+ -503 -284 -503 193
+ 170 -503 -52 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 130 -503 56 -503
+ -137 -52 -82 123
+ -15 -62 -3 55
diff --git a/profiles/plants/MA1808.1.pwm b/profiles/plants/MA1808.1.pwm
index e69de29..aab65f1 100644
--- a/profiles/plants/MA1808.1.pwm
+++ b/profiles/plants/MA1808.1.pwm
@@ -0,0 +1,11 @@
+ -50 77 -39 -28
+ 141 -158 -91 -106
+ -241 180 -241 -284
+ -315 -395 188 -289
+ -388 -361 -481 193
+ -346 -413 191 -331
+ -244 -243 159 -71
+ -188 181 -295 -344
+ 168 -232 -170 -184
+ 3 -4 -13 13
+ 7 -15 -9 15
diff --git a/profiles/plants/MA1809.1.pwm b/profiles/plants/MA1809.1.pwm
index e69de29..6b47ad8 100644
--- a/profiles/plants/MA1809.1.pwm
+++ b/profiles/plants/MA1809.1.pwm
@@ -0,0 +1,11 @@
+ 13 6 -44 17
+ 19 -47 -53 53
+ -257 184 -276 -331
+ -185 -287 -368 181
+ -291 -334 184 -234
+ 166 -134 -270 -183
+ -301 186 -318 -285
+ 180 -250 -337 -197
+ -303 182 -283 -224
+ 21 -37 -14 22
+ -7 -17 -27 41
diff --git a/profiles/plants/MA1810.1.pwm b/profiles/plants/MA1810.1.pwm
index 703eec1..b73accf 100644
--- a/profiles/plants/MA1810.1.pwm
+++ b/profiles/plants/MA1810.1.pwm
@@ -1,14 +1,14 @@
- 5 -31 -1 22
- -10 48 -52 -4
- 134 -210 -98 -47
- -186 -275 -224 175
- -356 -224 186 -398
- -324 191 -556 -298
- 195 -456 -456 -456
- -275 -398 -556 191
- -456 -356 192 -356
- -256 179 -256 -224
- 174 -256 -239 -175
- -17 -70 19 44
- -4 -20 34 -17
- 2 -35 -4 30
+ 5 -29 -1 21
+ -10 45 -48 -4
+ 128 -181 -89 -44
+ -162 -228 -192 168
+ -277 -192 179 -298
+ -259 183 -351 -243
+ 188 -322 -322 -322
+ -228 -298 -351 184
+ -322 -277 185 -277
+ -215 172 -215 -192
+ 167 -215 -203 -154
+ -16 -64 18 41
+ -4 -19 32 -16
+ 2 -33 -4 28
diff --git a/profiles/plants/MA1811.1.pwm b/profiles/plants/MA1811.1.pwm
index e69de29..5d747d8 100644
--- a/profiles/plants/MA1811.1.pwm
+++ b/profiles/plants/MA1811.1.pwm
@@ -0,0 +1,11 @@
+ -60 84 -41 -32
+ 142 -170 -84 -111
+ -273 186 -294 -337
+ -352 -442 192 -352
+ -375 -352 -473 193
+ -330 -393 190 -327
+ -248 -231 156 -58
+ -192 181 -281 -348
+ 164 -221 -147 -176
+ -2 4 -11 8
+ 9 -7 -8 5
diff --git a/profiles/plants/MA1812.1.pwm b/profiles/plants/MA1812.1.pwm
index 0872c4b..f267ba1 100644
--- a/profiles/plants/MA1812.1.pwm
+++ b/profiles/plants/MA1812.1.pwm
@@ -1,15 +1,15 @@
- 44 -12 -104 30
- 11 -20 -16 21
- -24 39 -70 30
- 167 -196 -296 -120
- -96 -529 179 -10000
- -529 -10000 199 -10000
- -10000 197 -10000 -370
- -10000 200 -10000 -10000
- -10000 199 -10000 -529
- 193 -529 -270 -10000
- 151 -270 -248 -29
- 7 -148 -248 127
- 82 -104 -148 47
- 60 -89 -20 11
- 24 -43 -58 50
+ 41 -11 -93 28
+ 10 -18 -14 19
+ -22 36 -64 28
+ 159 -168 -237 -107
+ -87 -335 171 -375
+ -335 -375 191 -375
+ -375 189 -375 -278
+ -375 192 -375 -375
+ -375 191 -375 -335
+ 185 -335 -221 -375
+ 144 -221 -206 -26
+ 7 -130 -206 121
+ 78 -93 -130 44
+ 56 -80 -18 10
+ 22 -39 -53 46
diff --git a/profiles/plants/MA1813.1.pwm b/profiles/plants/MA1813.1.pwm
index 62dd467..c747704 100644
--- a/profiles/plants/MA1813.1.pwm
+++ b/profiles/plants/MA1813.1.pwm
@@ -1,11 +1,11 @@
- -50 -166 -124 135
- 81 -205 -82 52
- -10000 200 -10000 -10000
- 179 -10000 -221 -159
- 187 -345 -345 -259
- -252 -227 -491 184
- -691 -10000 199 -591
- 169 -432 -432 -59
- 195 -391 -10000 -410
- -68 -28 -124 109
- 31 -20 -57 28
+ -47 -153 -115 131
+ 78 -187 -77 51
+ -452 195 -452 -452
+ 174 -452 -200 -147
+ 182 -293 -293 -230
+ -225 -204 -373 180
+ -428 -452 194 -407
+ 165 -345 -345 -56
+ 191 -322 -452 -333
+ -64 -27 -115 106
+ 30 -19 -54 27
diff --git a/profiles/plants/MA1814.1.pwm b/profiles/plants/MA1814.1.pwm
index 7bd91ce..8197c10 100644
--- a/profiles/plants/MA1814.1.pwm
+++ b/profiles/plants/MA1814.1.pwm
@@ -1,15 +1,15 @@
- 6 -107 -82 93
- 10 -81 -75 81
- -82 143 -229 -92
- -236 -107 -383 170
- 170 -233 -379 -108
- -228 -289 -362 184
- -136 -411 -445 181
- -257 -519 -459 191
- -176 -438 -361 184
- -208 -421 -308 184
- -187 -524 182 -267
- -219 -345 170 -120
- -15 -120 75 -3
- 64 -66 -85 32
- 69 -81 -83 32
+ 6 -104 -80 93
+ 10 -79 -73 81
+ -81 142 -222 -90
+ -228 -105 -358 169
+ 169 -225 -355 -106
+ -220 -276 -341 182
+ -133 -381 -408 180
+ -247 -460 -418 190
+ -171 -402 -339 182
+ -202 -389 -293 183
+ -181 -463 181 -256
+ -211 -326 169 -118
+ -14 -117 74 -3
+ 63 -64 -83 32
+ 68 -79 -81 32
diff --git a/profiles/plants/MA1815.1.pwm b/profiles/plants/MA1815.1.pwm
index e69de29..fb54fd0 100644
--- a/profiles/plants/MA1815.1.pwm
+++ b/profiles/plants/MA1815.1.pwm
@@ -0,0 +1,13 @@
+ 20 51 -87 -19
+ 45 -87 -2 13
+ -102 -260 162 -186
+ -186 174 -186 -318
+ 167 -260 -138 -186
+ -219 -260 179 -260
+ -186 176 -318 -219
+ 159 -219 -318 -60
+ -219 -186 174 -260
+ -219 174 -160 -318
+ 39 -49 -119 62
+ 20 -87 51 -19
+ -49 72 -38 -19
diff --git a/profiles/plants/MA1816.1.pwm b/profiles/plants/MA1816.1.pwm
index 11430d2..1f4fdb6 100644
--- a/profiles/plants/MA1816.1.pwm
+++ b/profiles/plants/MA1816.1.pwm
@@ -1,12 +1,12 @@
- -20 17 26 -31
- -8 5 4 -1
- -50 -23 48 7
- -596 193 -448 -308
- 200 -709 -10000 -741
- -883 199 -651 -883
- -841 -633 199 -841
- -741 -10000 -683 199
- -307 -451 193 -577
- 7 48 -23 -50
- -1 3 5 -8
- -30 26 17 -20
+ -20 17 25 -30
+ -8 5 4 -1
+ -49 -23 47 7
+ -510 192 -412 -295
+ 198 -560 -623 -571
+ -601 198 -537 -601
+ -594 -529 198 -594
+ -571 -623 -550 198
+ -293 -414 192 -499
+ 7 47 -23 -49
+ -1 3 5 -8
+ -30 25 17 -20
diff --git a/profiles/plants/MA1817.1.pwm b/profiles/plants/MA1817.1.pwm
index bd2e45e..8827387 100644
--- a/profiles/plants/MA1817.1.pwm
+++ b/profiles/plants/MA1817.1.pwm
@@ -1,13 +1,13 @@
- -98 101 -24 -65
- -126 117 -31 -94
- -303 -238 183 -292
- -363 186 -244 -320
- -377 188 -274 -340
- -271 -391 188 -348
- -359 186 -255 -321
- -374 189 -305 -349
- -301 -399 188 -297
- -329 184 -249 -286
- -339 184 -228 -314
- -75 -27 105 -97
- -88 92 -16 -57
+ -97 100 -24 -64
+ -125 117 -31 -93
+ -295 -233 182 -285
+ -350 185 -239 -311
+ -363 187 -267 -329
+ -264 -375 188 -337
+ -346 185 -249 -312
+ -360 189 -297 -338
+ -293 -382 187 -290
+ -319 183 -244 -279
+ -328 183 -224 -305
+ -74 -27 104 -96
+ -87 91 -16 -57
diff --git a/profiles/plants/MA1818.1.pwm b/profiles/plants/MA1818.1.pwm
index 678c813..8555487 100644
--- a/profiles/plants/MA1818.1.pwm
+++ b/profiles/plants/MA1818.1.pwm
@@ -1,10 +1,10 @@
- -120 110 -14 -96
- -91 -50 122 -121
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -120 117 -38 -89
- -128 120 -23 -118
+ -118 109 -14 -95
+ -90 -49 121 -119
+ -658 199 -658 -658
+ -658 199 -658 -658
+ -658 -658 199 -658
+ -658 199 -658 -658
+ -658 199 -658 -658
+ -658 -658 199 -658
+ -118 116 -38 -88
+ -126 119 -23 -116
diff --git a/profiles/plants/MA1819.1.pwm b/profiles/plants/MA1819.1.pwm
index e69de29..9883b9d 100644
--- a/profiles/plants/MA1819.1.pwm
+++ b/profiles/plants/MA1819.1.pwm
@@ -0,0 +1,12 @@
+ -82 4 90 -89
+ -89 80 -2 -45
+ -310 183 -235 -291
+ -304 -309 187 -309
+ -295 178 -191 -247
+ -358 188 -284 -327
+ -304 -385 189 -317
+ -289 177 -199 -235
+ -340 186 -274 -312
+ -242 -269 181 -274
+ -85 91 -21 -51
+ -103 98 -6 -80
diff --git a/profiles/plants/MA1820.1.pwm b/profiles/plants/MA1820.1.pwm
index e69de29..6719a7f 100644
--- a/profiles/plants/MA1820.1.pwm
+++ b/profiles/plants/MA1820.1.pwm
@@ -0,0 +1,13 @@
+ -87 6 91 -91
+ -105 91 -6 -56
+ -329 185 -252 -300
+ -310 -310 186 -293
+ -348 186 -256 -310
+ -348 188 -296 -318
+ -312 -388 189 -314
+ -339 183 -233 -278
+ -341 186 -266 -311
+ -298 -363 187 -284
+ -297 181 -231 -253
+ -118 107 -8 -94
+ -91 -7 96 -82
diff --git a/profiles/plants/MA1821.1.pwm b/profiles/plants/MA1821.1.pwm
index e69de29..2b10c0e 100644
--- a/profiles/plants/MA1821.1.pwm
+++ b/profiles/plants/MA1821.1.pwm
@@ -0,0 +1,11 @@
+ -103 -29 113 -101
+ -86 -56 125 -136
+ -641 199 -641 -641
+ -641 -641 199 -641
+ -634 -641 199 -628
+ -641 199 -634 -634
+ -641 -641 199 -641
+ -641 -641 199 -641
+ -641 199 -622 -610
+ -120 -56 131 -130
+ -66 -28 107 -117
diff --git a/profiles/plants/MA1822.1.pwm b/profiles/plants/MA1822.1.pwm
index e69de29..970cc1b 100644
--- a/profiles/plants/MA1822.1.pwm
+++ b/profiles/plants/MA1822.1.pwm
@@ -0,0 +1,13 @@
+ -30 35 -32 15
+ 38 -12 -6 -30
+ -59 89 -57 -30
+ -129 -150 162 -264
+ -347 -171 -259 178
+ 188 -309 -303 -366
+ -323 180 -285 -184
+ -152 -255 174 -291
+ -366 -297 -316 188
+ 178 -285 -161 -339
+ -264 166 -168 -147
+ 1 -30 53 -45
+ -26 1 -13 31
diff --git a/profiles/plants/MA1823.1.pwm b/profiles/plants/MA1823.1.pwm
index e69de29..aabb6b0 100644
--- a/profiles/plants/MA1823.1.pwm
+++ b/profiles/plants/MA1823.1.pwm
@@ -0,0 +1,12 @@
+ 78 -61 -14 -48
+ 68 -63 9 -54
+ 170 -224 -144 -250
+ 182 -336 -230 -264
+ 188 -420 -275 -309
+ -304 -300 178 -164
+ 183 -279 -247 -300
+ 186 -376 -283 -264
+ 186 -287 -264 -361
+ 158 -206 -96 -193
+ 78 -65 -8 -51
+ 76 -89 8 -50
diff --git a/profiles/plants/MA1824.1.pwm b/profiles/plants/MA1824.1.pwm
index 535e620..560f798 100644
--- a/profiles/plants/MA1824.1.pwm
+++ b/profiles/plants/MA1824.1.pwm
@@ -1,12 +1,12 @@
- 51 -36 -32 0
- 31 1 -26 -13
- -89 121 -168 -25
- 194 -458 -491 -365
- 195 -476 -508 -384
- -471 -411 -467 195
- 173 -246 -246 -163
- 196 -550 -486 -446
- -350 -542 -497 195
- -21 -176 -65 114
- 16 -22 18 -18
- 31 -53 -27 31
+ 50 -36 -31 0
+ 31 1 -25 -13
+ -87 119 -163 -25
+ 192 -410 -433 -339
+ 193 -423 -444 -354
+ -419 -376 -416 193
+ 171 -235 -235 -158
+ 194 -468 -429 -401
+ -326 -464 -436 193
+ -20 -170 -63 112
+ 16 -22 18 -17
+ 31 -52 -27 31
diff --git a/profiles/plants/MA1825.1.pwm b/profiles/plants/MA1825.1.pwm
index 0ed3f52..7f9196e 100644
--- a/profiles/plants/MA1825.1.pwm
+++ b/profiles/plants/MA1825.1.pwm
@@ -1,11 +1,11 @@
- 38 -44 -31 21
- 53 -68 -39 23
- -140 99 -108 21
- -629 194 -309 -485
- -529 -391 -246 190
- -485 -961 -861 199
- 199 -644 -580 -961
- -496 -317 -480 193
- -402 196 -629 -509
- -110 64 -137 67
- -5 -4 9 -1
+ 38 -43 -31 20
+ 52 -66 -38 23
+ -136 98 -105 21
+ -505 192 -291 -428
+ -455 -359 -235 188
+ -428 -573 -564 197
+ 197 -511 -483 -573
+ -435 -298 -424 191
+ -368 194 -505 -443
+ -107 63 -133 66
+ -5 -3 9 -1
diff --git a/profiles/plants/MA1826.1.pwm b/profiles/plants/MA1826.1.pwm
index 3120cc9..d4aadcd 100644
--- a/profiles/plants/MA1826.1.pwm
+++ b/profiles/plants/MA1826.1.pwm
@@ -1,14 +1,14 @@
- -50 51 9 -31
- 3 -4 39 -52
- -120 137 -124 -83
- -134 -149 162 -257
- -371 183 -340 -188
- 181 -324 -195 -302
- -510 186 -375 -198
- -198 -371 186 -510
- -296 -188 -321 180
- -189 -344 183 -371
- -257 162 -147 -133
- -85 -124 137 -120
- -51 39 -4 2
- -32 9 52 -50
+ -49 50 9 -30
+ 3 -4 38 -50
+ -116 135 -120 -81
+ -129 -143 160 -241
+ -335 181 -312 -179
+ 179 -298 -186 -280
+ -427 184 -339 -188
+ -188 -335 184 -427
+ -275 -179 -296 178
+ -180 -314 181 -335
+ -241 160 -142 -128
+ -82 -120 135 -116
+ -49 38 -4 2
+ -31 8 51 -48
diff --git a/profiles/plants/MA1827.1.pwm b/profiles/plants/MA1827.1.pwm
index e69de29..7a35f62 100644
--- a/profiles/plants/MA1827.1.pwm
+++ b/profiles/plants/MA1827.1.pwm
@@ -0,0 +1,11 @@
+ 13 -2 -3 -8
+ -5 -22 -33 46
+ -311 172 -216 -143
+ -264 177 -204 -248
+ -154 -220 -229 169
+ -186 -156 -208 166
+ 172 -173 -193 -283
+ -410 -328 -319 190
+ -358 189 -395 -276
+ -106 69 -47 25
+ -20 -1 -11 28
diff --git a/profiles/plants/MA1828.1.pwm b/profiles/plants/MA1828.1.pwm
index e69de29..a8376b7 100644
--- a/profiles/plants/MA1828.1.pwm
+++ b/profiles/plants/MA1828.1.pwm
@@ -0,0 +1,12 @@
+ -31 42 12 -38
+ -35 26 21 -22
+ -166 -115 162 -274
+ -406 -260 -292 187
+ -435 -313 192 -417
+ -448 -455 195 -455
+ -163 -227 -192 168
+ -455 194 -357 -498
+ -373 193 -401 -463
+ 130 -74 -120 -99
+ -54 33 29 -26
+ -59 13 53 -33
diff --git a/profiles/plants/MA1829.1.pwm b/profiles/plants/MA1829.1.pwm
index c9183ac..774501e 100644
--- a/profiles/plants/MA1829.1.pwm
+++ b/profiles/plants/MA1829.1.pwm
@@ -1,13 +1,13 @@
- -56 12 12 21
- -17 -6 -4 24
- -79 -102 -42 113
- 180 -298 -206 -269
- -315 189 -334 -356
- -456 196 -515 -456
- -206 -283 -234 178
- 192 -334 -315 -615
- 178 -134 -283 -456
- -224 180 -456 -190
- -17 8 -115 68
- 26 12 -56 6
- 33 -17 -15 -6
+ -53 11 11 20
+ -16 -6 -4 23
+ -73 -94 -39 108
+ 174 -251 -183 -231
+ -262 183 -275 -288
+ -338 190 -360 -338
+ -183 -240 -205 172
+ 186 -275 -262 -385
+ 172 -122 -240 -338
+ -197 174 -338 -170
+ -16 7 -105 65
+ 25 11 -53 6
+ 31 -16 -14 -6
diff --git a/profiles/plants/MA1830.1.pwm b/profiles/plants/MA1830.1.pwm
index d9cbf69..393be00 100644
--- a/profiles/plants/MA1830.1.pwm
+++ b/profiles/plants/MA1830.1.pwm
@@ -1,23 +1,23 @@
- 33 -14 -34 6
- 41 -24 -46 13
- 99 -131 -107 18
- 101 -21 -136 -43
- 148 -169 -166 -80
- 126 -253 -61 -38
- 5 -253 134 -191
- -163 -366 180 -303
- 179 -280 -312 -183
- 195 -553 -453 -366
- -412 -480 -242 190
- 188 -303 -431 -287
- -129 -412 -453 180
- -280 -312 -260 184
- -203 178 -342 -212
- -280 -60 -312 162
- -40 -82 -191 127
- -97 -131 -85 134
- -114 -112 -31 119
- -16 -99 -142 116
- -26 47 -50 11
- -12 -30 7 28
- 18 -89 -31 60
+ 32 -14 -32 6
+ 40 -23 -44 12
+ 96 -123 -101 18
+ 98 -20 -127 -41
+ 145 -157 -154 -75
+ 123 -228 -58 -36
+ 5 -228 130 -176
+ -151 -310 175 -266
+ 175 -248 -273 -169
+ 190 -403 -361 -310
+ -338 -373 -218 185
+ 184 -266 -349 -254
+ -120 -338 -361 176
+ -248 -273 -233 180
+ -186 174 -294 -193
+ -248 -57 -273 158
+ -39 -77 -176 123
+ -91 -123 -81 130
+ -107 -105 -30 116
+ -16 -93 -132 112
+ -25 45 -48 11
+ -11 -29 7 27
+ 18 -84 -30 58
diff --git a/profiles/plants/MA1831.1.pwm b/profiles/plants/MA1831.1.pwm
index e69de29..2d22d74 100644
--- a/profiles/plants/MA1831.1.pwm
+++ b/profiles/plants/MA1831.1.pwm
@@ -0,0 +1,12 @@
+ -102 94 16 -109
+ -103 3 106 -133
+ 168 -206 -133 -272
+ -393 191 -360 -351
+ -336 -331 191 -417
+ -123 -235 172 -355
+ -376 192 -370 -382
+ -348 -268 189 -413
+ 156 -173 -77 -264
+ -368 187 -239 -362
+ -76 -26 114 -145
+ -2 0 47 -67
diff --git a/profiles/plants/MA1832.1.pwm b/profiles/plants/MA1832.1.pwm
index e69de29..6903833 100644
--- a/profiles/plants/MA1832.1.pwm
+++ b/profiles/plants/MA1832.1.pwm
@@ -0,0 +1,11 @@
+ -105 104 -24 -71
+ -143 130 -51 -110
+ -161 -67 151 -236
+ -712 199 -712 -712
+ -712 199 -712 -712
+ -712 -712 199 -712
+ -712 199 -712 -712
+ -712 199 -712 -712
+ -712 -712 199 -712
+ -140 120 -42 -79
+ -128 124 -34 -122
diff --git a/profiles/plants/MA1833.1.pwm b/profiles/plants/MA1833.1.pwm
index e69de29..8d63301 100644
--- a/profiles/plants/MA1833.1.pwm
+++ b/profiles/plants/MA1833.1.pwm
@@ -0,0 +1,16 @@
+ -97 99 -10 -82
+ -89 0 95 -92
+ -176 153 -107 -156
+ -34 107 -64 -108
+ -265 -214 179 -271
+ -360 188 -288 -335
+ -323 186 -287 -311
+ -277 -355 187 -307
+ -381 188 -290 -330
+ -323 186 -286 -309
+ -287 -372 187 -298
+ -338 185 -253 -302
+ -324 182 -217 -283
+ 5 -74 93 -109
+ -104 98 -18 -59
+ -113 102 -3 -91
diff --git a/profiles/plants/MA1834.1.pwm b/profiles/plants/MA1834.1.pwm
index e69de29..0d8c331 100644
--- a/profiles/plants/MA1834.1.pwm
+++ b/profiles/plants/MA1834.1.pwm
@@ -0,0 +1,11 @@
+ -31 31 37 -61
+ -16 30 -5 -14
+ -299 187 -321 -320
+ -477 180 -172 -257
+ 194 -349 -548 -400
+ -447 190 -262 -418
+ -169 -171 166 -214
+ -193 160 -199 -113
+ -298 -162 177 -288
+ -27 19 20 -17
+ -42 49 11 -37
diff --git a/profiles/plants/MA1835.1.pwm b/profiles/plants/MA1835.1.pwm
index e69de29..81c7db8 100644
--- a/profiles/plants/MA1835.1.pwm
+++ b/profiles/plants/MA1835.1.pwm
@@ -0,0 +1,13 @@
+ -55 8 -6 38
+ 66 -41 0 -59
+ -65 111 -88 -59
+ -142 -121 160 -255
+ -357 -250 -250 183
+ 185 -330 -241 -322
+ -404 188 -307 -276
+ -245 -288 186 -404
+ -339 -228 -315 184
+ 182 -245 -241 -348
+ -232 161 -127 -156
+ -26 -61 77 -31
+ -43 3 -31 52
diff --git a/profiles/urochordates/MA0118.1.pwm b/profiles/urochordates/MA0118.1.pwm
index 3b014fd..16150de 100644
--- a/profiles/urochordates/MA0118.1.pwm
+++ b/profiles/urochordates/MA0118.1.pwm
@@ -1,9 +1,9 @@
- -107 51 -81 61
- -22 -239 113 -39
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -181 -139 113 19
- -10000 -10000 200 -10000
- -107 -58 51 51
- -107 42 -139 86
- 31 42 -7 -107
+ -87 46 -67 54
+ -19 -174 102 -33
+ -290 -290 185 -290
+ -290 -290 185 -290
+ -139 -111 102 17
+ -290 -290 185 -290
+ -87 -49 46 46
+ -87 37 -111 77
+ 27 37 -6 -87
diff --git a/profiles/urochordates/MA1843.1.pwm b/profiles/urochordates/MA1843.1.pwm
index e69de29..218a378 100644
--- a/profiles/urochordates/MA1843.1.pwm
+++ b/profiles/urochordates/MA1843.1.pwm
@@ -0,0 +1,20 @@
+ -7 -35 51 -26
+ 13 -10 -7 3
+ 11 -10 -17 14
+ 30 -43 13 -10
+ 126 -80 -65 -135
+ 24 -103 -195 105
+ -306 187 -321 -326
+ 194 -432 -411 -402
+ -432 -326 191 -362
+ -349 191 -321 -432
+ -432 -444 -444 195
+ -444 -432 195 -432
+ 127 -234 -131 -2
+ -130 -58 -79 123
+ 1 13 -40 19
+ 28 -20 -10 -2
+ 16 -11 -8 0
+ -12 52 -36 -21
+ 52 -2 -42 -27
+ 3 -17 26 -18
diff --git a/profiles/urochordates/MA1844.1.pwm b/profiles/urochordates/MA1844.1.pwm
index 8293c31..bb37b56 100644
--- a/profiles/urochordates/MA1844.1.pwm
+++ b/profiles/urochordates/MA1844.1.pwm
@@ -1,20 +1,20 @@
- 61 -92 -71 42
- 32 -84 -61 62
- 17 -63 -35 53
- 20 -41 -20 29
- 10 -34 -32 41
- 49 -22 -36 -5
- 58 -38 -11 -31
- -134 -90 -115 139
- -272 -272 -416 186
- 187 -316 -306 -311
- 190 -379 -338 -321
- -297 -332 -321 187
- -251 -284 -206 178
- 94 -138 -3 -49
- 18 1 -5 -16
- 5 -4 -33 26
- 21 -27 -44 35
- 22 -34 -60 47
- 28 -46 -72 54
- 51 -63 -83 45
+ 59 -88 -68 41
+ 31 -80 -59 60
+ 17 -60 -34 51
+ 20 -40 -19 29
+ 10 -33 -31 40
+ 47 -22 -35 -5
+ 57 -37 -10 -30
+ -127 -86 -109 136
+ -249 -249 -356 183
+ 184 -284 -277 -280
+ 186 -331 -301 -288
+ -269 -297 -289 184
+ -231 -259 -193 175
+ 92 -131 -3 -47
+ 17 1 -5 -15
+ 4 -4 -32 26
+ 21 -26 -43 34
+ 22 -33 -58 46
+ 27 -44 -69 52
+ 50 -60 -79 44
diff --git a/profiles/urochordates/MA1845.1.pwm b/profiles/urochordates/MA1845.1.pwm
index b43a419..35f3a9c 100644
--- a/profiles/urochordates/MA1845.1.pwm
+++ b/profiles/urochordates/MA1845.1.pwm
@@ -1,20 +1,20 @@
- -7 -3 14 -5
- 3 2 8 -13
- 14 -18 23 -25
- -27 18 -4 9
- 71 -75 19 -68
- 80 -31 -8 -99
- -192 172 -221 -216
- 184 -372 -301 -227
- -406 -306 181 -163
- -149 178 -272 -397
- -379 -388 -438 193
- -538 -597 198 -564
- -221 -92 -144 153
- -88 7 -53 78
- 9 -4 14 -21
- -34 24 -14 16
- -18 5 8 3
- -9 10 0 -2
- -2 11 -1 -10
- -11 13 0 -3
+ -7 -3 13 -5
+ 3 2 7 -13
+ 14 -18 23 -24
+ -26 18 -4 9
+ 70 -72 18 -65
+ 78 -30 -7 -95
+ -180 169 -206 -201
+ 181 -326 -273 -211
+ -349 -277 177 -154
+ -141 175 -249 -343
+ -331 -337 -369 190
+ -421 -444 194 -432
+ -206 -88 -137 150
+ -84 7 -51 76
+ 9 -4 14 -21
+ -33 24 -13 16
+ -18 5 8 3
+ -9 10 0 -2
+ -2 11 -1 -9
+ -11 13 0 -3
diff --git a/profiles/urochordates/MA1846.1.pwm b/profiles/urochordates/MA1846.1.pwm
index e69de29..92d170f 100644
--- a/profiles/urochordates/MA1846.1.pwm
+++ b/profiles/urochordates/MA1846.1.pwm
@@ -0,0 +1,22 @@
+ 10 16 -3 -26
+ 17 -65 33 -3
+ -66 110 -81 -60
+ 83 -102 8 -57
+ -45 47 -11 -6
+ 3 -15 22 -13
+ -15 -32 -7 43
+ 145 -231 -74 -108
+ -115 -120 137 -90
+ -211 -284 178 -234
+ -362 -240 -289 185
+ -332 -411 191 -356
+ -208 -47 -201 148
+ -208 -117 148 -90
+ 176 -306 -201 -208
+ 74 -62 -29 -22
+ 59 -68 -40 16
+ -11 -67 -43 77
+ -21 -34 -10 50
+ -35 -37 -2 54
+ -7 1 18 -13
+ -7 -22 32 -9
diff --git a/profiles/urochordates/MA1847.1.pwm b/profiles/urochordates/MA1847.1.pwm
index d137442..27467d0 100644
--- a/profiles/urochordates/MA1847.1.pwm
+++ b/profiles/urochordates/MA1847.1.pwm
@@ -1,20 +1,20 @@
- 33 -31 -13 3
- 39 -36 -11 -3
- -5 -8 1 12
- -10 -10 19 -2
- 1 29 -10 -25
- -17 5 56 -73
- 3 -14 -4 13
- -364 -332 -497 192
- 189 -388 -332 -292
- 195 -451 -438 -465
- -280 -268 -224 180
- -292 -93 -111 153
- -40 -332 158 -280
- -20 22 20 -28
- -55 30 -24 31
- -18 2 7 8
- 14 -2 -16 3
- 20 -14 -16 7
- 5 -9 -30 28
- 5 -12 -19 23
+ 32 -30 -12 3
+ 38 -35 -10 -3
+ -5 -7 1 11
+ -9 -9 19 -2
+ 1 28 -10 -24
+ -16 5 54 -70
+ 3 -13 -3 13
+ -321 -297 -402 189
+ 185 -337 -297 -266
+ 192 -377 -370 -385
+ -255 -246 -208 177
+ -266 -89 -106 150
+ -38 -297 155 -256
+ -19 21 19 -28
+ -53 29 -24 30
+ -17 2 7 8
+ 14 -2 -16 3
+ 19 -13 -15 7
+ 5 -9 -29 27
+ 5 -12 -19 22
diff --git a/profiles/urochordates/MA1848.1.pwm b/profiles/urochordates/MA1848.1.pwm
index e69de29..de2dcdb 100644
--- a/profiles/urochordates/MA1848.1.pwm
+++ b/profiles/urochordates/MA1848.1.pwm
@@ -0,0 +1,20 @@
+ 7 -4 2 -6
+ 1 -1 2 -2
+ 4 1 5 -11
+ 7 2 -7 -2
+ 12 -7 12 -20
+ 5 -3 8 -10
+ -10 -26 -9 37
+ 166 -218 -113 -255
+ -249 -266 -284 182
+ -326 -321 -331 188
+ -130 -370 168 -171
+ -349 190 -377 -311
+ 156 -188 -105 -176
+ 24 3 -40 6
+ -12 7 -19 20
+ 24 -7 -13 -6
+ 0 1 -9 7
+ 2 -5 -12 14
+ -3 -3 1 6
+ -5 2 0 3
diff --git a/profiles/urochordates/MA1849.1.pwm b/profiles/urochordates/MA1849.1.pwm
index e69de29..d8b4f43 100644
--- a/profiles/urochordates/MA1849.1.pwm
+++ b/profiles/urochordates/MA1849.1.pwm
@@ -0,0 +1,22 @@
+ 9 -1 -1 -7
+ 17 -6 -1 -11
+ 18 -12 -4 -4
+ -5 -9 7 7
+ -53 5 -30 55
+ -40 -31 -7 57
+ 96 -226 78 -306
+ -385 -369 -421 193
+ -411 -326 188 -269
+ 195 -444 -432 -432
+ -456 195 -456 -421
+ -421 -456 195 -456
+ -432 -432 -444 195
+ -269 188 -326 -411
+ 193 -421 -369 -385
+ -306 78 -226 96
+ 57 -7 -31 -40
+ 55 -30 5 -53
+ 7 7 -9 -5
+ -4 -4 -12 18
+ -11 -1 -6 17
+ -7 -1 -1 9
diff --git a/profiles/urochordates/MA1850.1.pwm b/profiles/urochordates/MA1850.1.pwm
index 4447117..c144e70 100644
--- a/profiles/urochordates/MA1850.1.pwm
+++ b/profiles/urochordates/MA1850.1.pwm
@@ -1,22 +1,22 @@
- 18 -20 -14 13
- 2 -14 -5 15
- 2 -5 1 2
- 12 -11 10 -13
- -6 35 3 -43
- -2 -5 55 -76
- 11 -16 38 -47
- -351 -92 -516 175
- 188 -292 -344 -344
- 197 -516 -516 -480
- -516 -451 -497 196
- -379 -316 -275 187
- 174 -497 -85 -380
- -94 92 -43 -24
- -98 106 -39 -63
- -34 6 35 -16
- -13 13 -18 15
- 11 -3 -9 1
- 23 -6 -22 2
- 19 -14 -29 18
- 18 -23 -30 27
- 21 -27 -25 23
+ 17 -20 -13 12
+ 2 -13 -5 15
+ 2 -5 1 2
+ 11 -10 10 -13
+ -6 34 3 -41
+ -2 -5 53 -73
+ 10 -15 37 -45
+ -311 -88 -411 172
+ 185 -266 -306 -306
+ 193 -411 -411 -393
+ -411 -377 -402 193
+ -331 -284 -252 184
+ 171 -402 -81 -332
+ -90 90 -41 -24
+ -93 103 -37 -61
+ -33 5 34 -15
+ -13 12 -18 15
+ 10 -3 -9 1
+ 22 -6 -21 2
+ 18 -13 -28 17
+ 17 -22 -29 26
+ 21 -26 -24 22
diff --git a/profiles/urochordates/MA1851.1.pwm b/profiles/urochordates/MA1851.1.pwm
index 5a79bb2..cbc55e4 100644
--- a/profiles/urochordates/MA1851.1.pwm
+++ b/profiles/urochordates/MA1851.1.pwm
@@ -1,22 +1,22 @@
- 29 -44 -30 30
- 31 -49 -30 31
- 17 -44 -23 36
- 5 -31 -14 32
- 12 -28 0 13
- 15 -27 12 -4
- 9 -6 8 -12
- -44 -61 92 -48
- 86 -68 -17 -56
- -311 -137 -451 179
- 188 -351 -357 -272
- 196 -516 -464 -427
- -416 -497 -497 196
- -292 -379 -326 188
- 166 -464 -59 -297
- -8 12 -20 13
- -17 13 -21 20
- -27 -2 -2 27
- 0 -5 -13 16
- 9 -8 -16 13
- 28 -22 -21 8
- 31 -31 -29 18
+ 28 -43 -29 29
+ 30 -47 -29 30
+ 16 -42 -22 35
+ 4 -30 -13 32
+ 11 -27 0 12
+ 15 -26 11 -4
+ 9 -6 8 -12
+ -42 -59 90 -47
+ 84 -66 -17 -54
+ -280 -130 -377 176
+ 185 -311 -316 -249
+ 192 -411 -385 -362
+ -356 -402 -402 192
+ -266 -331 -293 185
+ 163 -385 -57 -269
+ -7 12 -19 12
+ -17 13 -20 20
+ -26 -2 -2 26
+ 0 -5 -12 15
+ 9 -7 -16 13
+ 27 -21 -20 8
+ 30 -30 -28 18
diff --git a/profiles/urochordates/MA1852.1.pwm b/profiles/urochordates/MA1852.1.pwm
index 1faa5e1..b6f3e5d 100644
--- a/profiles/urochordates/MA1852.1.pwm
+++ b/profiles/urochordates/MA1852.1.pwm
@@ -1,20 +1,20 @@
- 11 -41 -13 33
- 14 -43 -8 28
- -6 -34 -5 36
- -3 -24 -1 24
- 5 -12 2 5
- 10 -13 18 -19
- -25 3 -15 31
- -268 -321 -406 188
- 185 -344 -288 -254
- 190 -438 -364 -288
- -211 -372 -250 181
- -184 -254 -137 166
- -54 -254 150 -164
- 1 -6 24 -22
- -20 -7 10 14
- -9 -10 2 15
- 7 -18 -8 16
- 15 -28 -12 20
- 19 -36 -24 30
- 27 -38 -29 28
+ 11 -40 -13 32
+ 13 -41 -8 27
+ -6 -33 -5 35
+ -3 -23 -1 23
+ 4 -12 2 5
+ 10 -12 18 -18
+ -24 3 -15 30
+ -246 -289 -349 185
+ 182 -306 -262 -234
+ 187 -370 -321 -262
+ -197 -326 -231 178
+ -173 -234 -130 163
+ -52 -234 147 -155
+ 1 -6 24 -22
+ -19 -7 10 14
+ -9 -9 2 15
+ 7 -17 -7 16
+ 14 -27 -12 19
+ 19 -35 -23 29
+ 26 -37 -28 27
diff --git a/profiles/urochordates/MA1853.1.pwm b/profiles/urochordates/MA1853.1.pwm
index e69de29..8b09b1d 100644
--- a/profiles/urochordates/MA1853.1.pwm
+++ b/profiles/urochordates/MA1853.1.pwm
@@ -0,0 +1,20 @@
+ 16 -21 16 -15
+ 9 -18 22 -16
+ 29 -28 15 -25
+ 42 -48 8 -17
+ 81 -98 -2 -42
+ 5 40 -15 -43
+ -22 109 -97 -102
+ -393 -377 192 -377
+ -362 -370 191 -337
+ 192 -362 -411 -356
+ 172 -297 -377 -96
+ -24 -255 154 -356
+ -223 -106 -204 161
+ 25 -37 36 -39
+ 31 7 -5 -43
+ 19 2 -2 -22
+ 22 -2 -8 -14
+ 20 -3 -16 -4
+ 22 -3 -15 -7
+ 16 0 -10 -7
diff --git a/profiles/urochordates/MA1854.1.pwm b/profiles/urochordates/MA1854.1.pwm
index e69de29..d912536 100644
--- a/profiles/urochordates/MA1854.1.pwm
+++ b/profiles/urochordates/MA1854.1.pwm
@@ -0,0 +1,20 @@
+ 2 -10 12 -5
+ -4 4 11 -11
+ -6 1 6 -2
+ -15 3 8 3
+ -7 9 -7 5
+ 52 -57 25 -50
+ -80 64 -35 11
+ -76 -234 -199 157
+ -213 -277 -256 179
+ -289 186 -293 -316
+ -343 189 -321 -356
+ -337 -277 181 -206
+ -218 -111 160 -186
+ 21 -1 -59 24
+ 8 10 -16 -3
+ -10 10 13 -15
+ -18 23 -19 9
+ -1 19 -9 -12
+ 0 19 -10 -11
+ -7 21 -2 -13
diff --git a/profiles/urochordates/MA1855.1.pwm b/profiles/urochordates/MA1855.1.pwm
index 887c1fc..ae5d44f 100644
--- a/profiles/urochordates/MA1855.1.pwm
+++ b/profiles/urochordates/MA1855.1.pwm
@@ -1,20 +1,20 @@
- -22 18 -6 7
- -47 20 0 17
- -35 33 -4 -2
- 2 26 -11 -22
- -20 46 -23 -15
- -2 2 -23 20
- 57 -107 -37 34
- -216 175 -166 -332
- -194 187 -396 -538
- -565 -565 198 -516
- -538 -480 197 -516
- 181 -272 -327 -204
- 167 -235 -268 -108
- 65 -96 62 -138
- -107 27 -53 71
- 5 19 22 -59
- 12 39 -1 -70
- 14 13 10 -44
- 4 29 -24 -16
- 3 30 -32 -8
+ -22 18 -6 7
+ -45 19 0 17
+ -34 32 -3 -2
+ 2 25 -10 -22
+ -19 45 -22 -15
+ -2 2 -22 19
+ 55 -102 -35 33
+ -201 172 -157 -297
+ -182 184 -343 -421
+ -432 -432 194 -411
+ -421 -393 193 -411
+ 178 -249 -293 -190
+ 164 -218 -246 -103
+ 63 -92 61 -131
+ -102 26 -51 69
+ 5 18 21 -57
+ 11 38 -1 -67
+ 13 12 9 -43
+ 4 28 -23 -15
+ 3 29 -31 -8
diff --git a/profiles/urochordates/MA1856.1.pwm b/profiles/urochordates/MA1856.1.pwm
index 3a88810..fef2081 100644
--- a/profiles/urochordates/MA1856.1.pwm
+++ b/profiles/urochordates/MA1856.1.pwm
@@ -1,22 +1,22 @@
- 3 -12 10 -2
- 4 -9 0 5
- -10 5 -4 8
- -24 21 -12 11
- -71 13 17 22
- -61 43 -9 8
- 111 -129 14 -161
- -280 120 -251 47
- -65 -397 -327 168
- -332 -480 -397 193
- -464 195 -479 -438
- -497 196 -497 -497
- -480 -388 184 -166
- -327 -163 167 -138
- -70 -94 -244 142
- -8 -18 -25 41
- -37 -1 -3 32
- -22 6 8 6
- -13 -8 25 -8
- -5 -5 17 -8
- -11 -6 2 14
- -16 -6 6 15
+ 3 -12 10 -2
+ 4 -9 0 4
+ -10 4 -3 8
+ -24 20 -12 11
+ -68 13 17 21
+ -59 42 -9 8
+ 109 -123 13 -152
+ -255 117 -231 46
+ -63 -343 -293 165
+ -297 -393 -343 189
+ -385 192 -393 -369
+ -402 193 -402 -402
+ -393 -337 181 -157
+ -293 -154 164 -131
+ -67 -90 -226 139
+ -8 -17 -24 40
+ -35 -1 -3 31
+ -21 5 8 6
+ -12 -8 25 -7
+ -5 -5 16 -7
+ -11 -6 2 14
+ -16 -6 5 15
diff --git a/profiles/urochordates/MA1857.1.pwm b/profiles/urochordates/MA1857.1.pwm
index e69de29..cbd3ae2 100644
--- a/profiles/urochordates/MA1857.1.pwm
+++ b/profiles/urochordates/MA1857.1.pwm
@@ -0,0 +1,20 @@
+ 16 -4 -9 -4
+ 8 1 -5 -5
+ 10 4 -10 -5
+ 19 -5 -5 -12
+ 13 6 -18 -2
+ 24 -23 -28 19
+ 56 -70 -27 11
+ -122 156 -126 -234
+ -115 172 -266 -321
+ -337 -337 189 -326
+ -301 -311 186 -306
+ 181 -284 -293 -221
+ 170 -246 -285 -122
+ 55 -60 38 -81
+ -40 10 -47 53
+ 13 -10 15 -21
+ 23 -1 -2 -23
+ 18 -3 -6 -10
+ 14 -7 -6 -2
+ 10 -3 -13 5
diff --git a/profiles/urochordates/MA1858.1.pwm b/profiles/urochordates/MA1858.1.pwm
index 1a355a8..b7d42ee 100644
--- a/profiles/urochordates/MA1858.1.pwm
+++ b/profiles/urochordates/MA1858.1.pwm
@@ -1,20 +1,20 @@
- -15 -10 13 10
- 21 -6 -41 18
- 44 1 -43 -15
- 58 -51 -27 -4
- -12 2 18 -10
- 13 -194 48 33
- 176 -244 -172 -301
- -516 -516 -497 197
- -438 -438 193 -357
- 197 -564 -480 -497
- -496 196 -538 -438
- -416 -538 195 -451
- -426 -306 -479 192
- -211 181 -301 -284
- 187 -344 -332 -265
- -272 -176 -221 174
- 35 46 -204 15
- -2 19 -3 -16
- -15 -29 -40 61
- -18 -40 14 33
+ -15 -9 13 10
+ 20 -6 -40 17
+ 42 1 -41 -15
+ 57 -50 -26 -4
+ -11 2 17 -9
+ 12 -182 46 32
+ 173 -226 -162 -273
+ -411 -411 -402 193
+ -370 -370 190 -316
+ 193 -432 -393 -402
+ -402 193 -421 -369
+ -356 -421 192 -377
+ -362 -276 -393 189
+ -197 178 -273 -259
+ 183 -306 -297 -243
+ -249 -166 -206 171
+ 34 44 -190 15
+ -2 19 -3 -16
+ -15 -28 -39 60
+ -17 -38 13 32
diff --git a/profiles/urochordates/MA1859.1.pwm b/profiles/urochordates/MA1859.1.pwm
index e69de29..6998db0 100644
--- a/profiles/urochordates/MA1859.1.pwm
+++ b/profiles/urochordates/MA1859.1.pwm
@@ -0,0 +1,20 @@
+ -1 -19 0 17
+ -70 69 -28 -8
+ 36 75 -45 -171
+ -213 66 -211 97
+ -118 -255 -306 171
+ 155 -234 -48 -273
+ 87 -237 -234 83
+ -273 -356 187 -326
+ -356 -316 -385 190
+ 192 -377 -385 -385
+ 192 -411 -369 -356
+ 193 -411 -393 -411
+ -385 165 -421 -42
+ 171 -213 -216 -184
+ 145 -165 -167 -65
+ 112 -152 -173 24
+ 0 4 12 -18
+ 29 13 6 -65
+ 36 1 -24 -20
+ 27 -21 -32 18
diff --git a/profiles/urochordates/MA1860.1.pwm b/profiles/urochordates/MA1860.1.pwm
index e69de29..5c19917 100644
--- a/profiles/urochordates/MA1860.1.pwm
+++ b/profiles/urochordates/MA1860.1.pwm
@@ -0,0 +1,22 @@
+ 7 -37 -10 31
+ 21 -59 -43 52
+ 22 -40 5 5
+ 22 -46 -11 24
+ 1 -65 43 2
+ -50 26 -81 61
+ 74 -25 -79 -13
+ 157 -193 -182 -107
+ 158 -199 -173 -112
+ -297 -204 -332 182
+ 167 -297 -88 -280
+ -229 -289 -280 181
+ -240 -297 -220 179
+ -173 -285 -114 164
+ 9 -284 135 -204
+ -46 55 -85 33
+ 15 -30 -35 37
+ -22 4 -46 47
+ 64 -96 -47 26
+ 15 -18 -5 7
+ 9 -9 -31 25
+ 30 -21 -24 9
diff --git a/profiles/urochordates/MA1861.1.pwm b/profiles/urochordates/MA1861.1.pwm
index e69de29..13f639e 100644
--- a/profiles/urochordates/MA1861.1.pwm
+++ b/profiles/urochordates/MA1861.1.pwm
@@ -0,0 +1,22 @@
+ 9 2 -13 1
+ 25 1 -9 -21
+ 15 -9 -66 40
+ 53 -116 -208 90
+ 98 -108 -10 -68
+ 56 -114 -82 59
+ 0 -180 113 -93
+ -306 4 -377 147
+ 153 -36 -356 -199
+ 182 -218 -370 -259
+ 187 -337 -349 -255
+ -402 -136 -393 180
+ 189 -402 -273 -377
+ -149 -262 -237 172
+ -180 -259 -216 173
+ -93 -169 12 106
+ 102 -173 31 -122
+ -74 94 -120 7
+ 49 -67 -98 55
+ -18 -23 -85 78
+ 72 -173 -98 62
+ 41 -93 1 19
diff --git a/profiles/urochordates/MA1862.1.pwm b/profiles/urochordates/MA1862.1.pwm
index e69de29..22c7ecf 100644
--- a/profiles/urochordates/MA1862.1.pwm
+++ b/profiles/urochordates/MA1862.1.pwm
@@ -0,0 +1,20 @@
+ 14 -63 -5 36
+ 5 -79 -26 63
+ 8 -90 25 28
+ -26 -81 -30 83
+ -31 -84 12 63
+ 25 -159 -62 87
+ 5 -169 -51 97
+ -273 -343 -343 187
+ -141 -385 176 -249
+ -356 -321 -362 190
+ -246 -393 -229 183
+ -326 -393 -273 188
+ 135 -337 -49 -64
+ -79 -2 -86 92
+ 9 -89 -1 49
+ -73 -45 -91 109
+ 70 -201 -93 68
+ 30 -92 1 31
+ -14 -47 10 38
+ -20 -37 -2 45
diff --git a/profiles/urochordates/MA1863.1.pwm b/profiles/urochordates/MA1863.1.pwm
index cefb905..bfc560d 100644
--- a/profiles/urochordates/MA1863.1.pwm
+++ b/profiles/urochordates/MA1863.1.pwm
@@ -1,20 +1,20 @@
- 4 -40 13 16
- 2 -46 4 30
- 4 -53 -1 36
- -2 -63 6 41
- -25 -69 7 58
- -46 -74 33 50
- -22 -122 29 57
- -182 -272 -161 169
- -327 -406 -292 189
- -184 -357 180 -261
- -316 -332 -292 187
- -208 -372 -176 176
- -194 -380 -151 173
- 31 -147 -20 61
- -16 -61 -35 73
- 30 -104 -24 53
- -79 -22 -60 93
- 60 -124 -58 48
- 24 -85 36 -3
- -26 -20 11 28
+ 4 -39 13 16
+ 2 -44 4 29
+ 4 -51 -1 35
+ -2 -61 6 40
+ -24 -66 6 56
+ -44 -71 32 48
+ -21 -116 28 56
+ -171 -249 -152 166
+ -293 -349 -266 186
+ -173 -316 176 -240
+ -284 -297 -266 184
+ -195 -326 -165 173
+ -182 -332 -143 170
+ 30 -140 -19 60
+ -15 -59 -34 72
+ 29 -99 -24 51
+ -75 -21 -58 90
+ 59 -118 -56 46
+ 23 -81 35 -3
+ -25 -19 11 27
diff --git a/profiles/urochordates/MA1864.1.pwm b/profiles/urochordates/MA1864.1.pwm
index 4ca98b1..3941b42 100644
--- a/profiles/urochordates/MA1864.1.pwm
+++ b/profiles/urochordates/MA1864.1.pwm
@@ -1,20 +1,20 @@
- 34 -19 -29 6
- 21 -14 -56 33
- 53 -43 -31 1
- 26 -27 -116 61
- 84 -61 -61 -15
- 62 -30 -102 21
- 108 -106 -9 -108
- -268 -86 -451 170
- 190 -288 -451 -357
- 187 -311 -464 -235
- 194 -465 -465 -338
- -416 30 -538 143
- 193 -464 -380 -357
- 89 -61 -151 19
- 95 -97 -121 16
- -16 58 -131 27
- 111 -80 -93 -44
- 31 23 -67 -6
- 52 -10 -50 -12
- 22 16 -55 5
+ 33 -18 -28 6
+ 20 -13 -54 32
+ 52 -42 -30 1
+ 25 -26 -110 60
+ 82 -59 -59 -14
+ 61 -29 -98 21
+ 105 -101 -9 -103
+ -246 -82 -377 167
+ 187 -262 -377 -316
+ 183 -280 -385 -218
+ 190 -385 -385 -302
+ -356 29 -421 140
+ 189 -385 -332 -316
+ 87 -59 -143 18
+ 93 -92 -115 16
+ -15 56 -124 26
+ 109 -76 -89 -43
+ 30 22 -64 -6
+ 51 -9 -48 -12
+ 21 16 -53 5
diff --git a/profiles/urochordates/MA1865.1.pwm b/profiles/urochordates/MA1865.1.pwm
index e45b4e6..93ff14a 100644
--- a/profiles/urochordates/MA1865.1.pwm
+++ b/profiles/urochordates/MA1865.1.pwm
@@ -1,20 +1,20 @@
- -21 -49 20 35
- -15 -51 23 29
- -20 -46 22 31
- -27 -51 17 43
- -20 -44 26 25
- -11 -61 5 47
- -18 -74 15 49
- -275 -296 -244 182
- -149 -327 176 -264
- -306 -306 -257 184
- -254 -344 -188 179
- -204 -316 -178 175
- -144 -288 170 -197
- -66 -28 -3 64
- -29 -73 22 50
- -26 -62 17 47
- -14 -55 22 32
- -25 -43 12 41
- -14 -54 21 32
- -18 -51 18 36
+ -20 -47 20 34
+ -15 -49 23 28
+ -20 -44 22 30
+ -26 -49 16 42
+ -19 -43 26 24
+ -10 -59 4 46
+ -17 -71 15 48
+ -252 -269 -226 179
+ -141 -293 173 -243
+ -277 -277 -237 181
+ -234 -306 -176 176
+ -190 -284 -167 171
+ -137 -262 167 -184
+ -64 -27 -3 63
+ -28 -70 22 48
+ -25 -59 17 46
+ -13 -53 21 31
+ -24 -42 12 40
+ -13 -52 20 31
+ -17 -50 18 35
diff --git a/profiles/urochordates/MA1866.1.pwm b/profiles/urochordates/MA1866.1.pwm
index e69de29..976285f 100644
--- a/profiles/urochordates/MA1866.1.pwm
+++ b/profiles/urochordates/MA1866.1.pwm
@@ -0,0 +1,20 @@
+ 47 -3 -60 -4
+ 80 -33 -87 -13
+ 104 -59 -155 -9
+ 100 -14 -120 -60
+ 70 14 -162 -7
+ 116 -35 -57 -169
+ 40 37 -226 24
+ 169 -100 -421 -218
+ 173 -133 -402 -216
+ 189 -321 -370 -337
+ -343 186 -421 -211
+ 190 -321 -385 -343
+ 158 -123 -223 -143
+ 93 -11 -154 -28
+ 46 57 -106 -60
+ 87 1 -97 -62
+ 57 23 -80 -37
+ 52 19 -81 -23
+ 47 20 -65 -27
+ 35 26 -60 -21
diff --git a/profiles/urochordates/MA1867.1.pwm b/profiles/urochordates/MA1867.1.pwm
index e69de29..1d72d9d 100644
--- a/profiles/urochordates/MA1867.1.pwm
+++ b/profiles/urochordates/MA1867.1.pwm
@@ -0,0 +1,20 @@
+ 14 -34 -18 30
+ -18 -24 -35 57
+ -12 -47 2 43
+ -43 -65 -40 89
+ -2 -37 -10 39
+ 31 -87 -57 62
+ 22 -122 -87 90
+ -393 -421 -444 194
+ -13 -456 158 -402
+ -421 -421 -456 194
+ -201 -456 -178 177
+ -444 -457 -204 187
+ 168 -402 -175 -123
+ -165 92 -70 23
+ 74 -177 -105 64
+ 38 -20 -93 39
+ 130 -229 -206 13
+ 122 -99 -188 -15
+ 2 68 -164 9
+ 133 -112 -157 -54
diff --git a/profiles/urochordates/MA1868.1.pwm b/profiles/urochordates/MA1868.1.pwm
index e69de29..caecdf2 100644
--- a/profiles/urochordates/MA1868.1.pwm
+++ b/profiles/urochordates/MA1868.1.pwm
@@ -0,0 +1,20 @@
+ 35 -39 8 -14
+ 11 11 -29 2
+ -17 26 47 -93
+ -35 -59 25 44
+ 37 -33 -6 -6
+ -85 4 73 -39
+ -22 -22 35 2
+ 170 -218 -167 -218
+ -301 -218 -190 176
+ -252 -301 180 -218
+ -301 -167 -301 178
+ -218 -218 -218 174
+ -113 -252 -218 165
+ -22 -31 -13 51
+ -23 -56 20 40
+ 5 -52 -5 38
+ -73 5 15 32
+ -31 -31 35 16
+ -18 -99 10 63
+ 12 -5 64 -138
diff --git a/profiles/urochordates/MA1869.1.pwm b/profiles/urochordates/MA1869.1.pwm
index f01bf02..0787887 100644
--- a/profiles/urochordates/MA1869.1.pwm
+++ b/profiles/urochordates/MA1869.1.pwm
@@ -1,20 +1,20 @@
- -6 -58 14 34
- -10 -63 8 44
- -20 -62 18 42
- -29 -69 13 55
- -29 -65 22 47
- -16 -86 -13 72
- -25 -115 12 69
- -372 -388 -379 192
- -141 -480 179 -306
- -388 -388 -396 193
- -188 -438 -154 174
- -380 -416 -221 187
- 140 -344 -42 -94
- -136 2 -59 95
- 27 -101 -15 49
- -6 -82 -18 67
- 19 -88 -21 53
- -20 -24 -15 47
- 23 -69 -1 28
- 6 -56 -3 38
+ -6 -56 14 33
+ -9 -60 8 43
+ -19 -59 18 41
+ -28 -66 13 54
+ -28 -63 21 46
+ -16 -82 -13 70
+ -24 -109 12 68
+ -326 -337 -331 189
+ -134 -393 176 -277
+ -337 -337 -343 189
+ -176 -370 -146 171
+ -332 -356 -206 184
+ 137 -306 -40 -90
+ -130 2 -57 93
+ 26 -97 -15 48
+ -6 -78 -18 65
+ 19 -84 -20 52
+ -20 -24 -14 46
+ 22 -66 -1 27
+ 5 -54 -3 37
diff --git a/profiles/urochordates/MA1870.1.pwm b/profiles/urochordates/MA1870.1.pwm
index 34e2583..c94bd02 100644
--- a/profiles/urochordates/MA1870.1.pwm
+++ b/profiles/urochordates/MA1870.1.pwm
@@ -1,20 +1,20 @@
- 44 -13 -43 -1
- 45 -16 -69 16
- 68 -63 -69 18
- 75 -77 -174 52
- 102 -82 -89 -20
- 46 -1 -137 31
- 113 -146 -45 -48
- -112 -57 -464 150
- 194 -388 -538 -397
- 174 -124 -564 -216
- 194 -497 -357 -416
- -372 179 -538 -121
- 193 -427 -438 -338
- 106 -51 -190 -10
- 84 -35 -104 -9
- 33 44 -82 -29
- 78 -18 -76 -29
- 44 17 -71 -14
- 49 -2 -63 -5
- 44 7 -62 -8
+ 43 -13 -42 -1
+ 44 -15 -66 16
+ 66 -60 -66 17
+ 73 -74 -164 50
+ 100 -79 -85 -20
+ 45 -1 -130 30
+ 111 -138 -43 -46
+ -107 -55 -385 147
+ 191 -337 -421 -343
+ 171 -118 -432 -201
+ 190 -402 -316 -356
+ -326 176 -421 -115
+ 189 -362 -370 -301
+ 104 -49 -178 -9
+ 82 -34 -99 -9
+ 32 43 -78 -28
+ 76 -18 -73 -28
+ 42 17 -68 -13
+ 47 -2 -61 -5
+ 42 7 -59 -7
diff --git a/profiles/urochordates/MA1871.1.pwm b/profiles/urochordates/MA1871.1.pwm
index cb44c95..27a2dac 100644
--- a/profiles/urochordates/MA1871.1.pwm
+++ b/profiles/urochordates/MA1871.1.pwm
@@ -1,20 +1,20 @@
- 49 40 -134 -18
- 111 -65 -113 -41
- 106 -75 -126 -15
- 105 -50 -138 -27
- 88 -2 -148 -31
- 134 -62 -95 -172
- 84 8 -235 -8
- 171 -161 -450 -149
- 189 -288 -480 -301
- 194 -438 -416 -396
- -128 165 -416 -135
- 195 -438 -480 -451
- 173 -229 -332 -138
- 71 -2 -105 -16
- 74 -9 -81 -29
- 94 -19 -138 -29
- 62 16 -93 -29
- 83 -25 -96 -22
- 71 -16 -76 -19
- 64 1 -76 -25
+ 48 39 -127 -17
+ 109 -63 -108 -40
+ 104 -72 -120 -15
+ 103 -48 -131 -26
+ 86 -2 -140 -30
+ 131 -59 -91 -162
+ 83 8 -218 -7
+ 168 -152 -377 -141
+ 186 -262 -393 -273
+ 190 -369 -356 -343
+ -122 162 -356 -128
+ 192 -370 -393 -377
+ 170 -213 -297 -131
+ 69 -2 -100 -16
+ 72 -9 -77 -28
+ 92 -18 -131 -28
+ 61 16 -89 -28
+ 81 -24 -92 -21
+ 69 -15 -73 -18
+ 63 1 -73 -24
diff --git a/profiles/urochordates/MA1872.1.pwm b/profiles/urochordates/MA1872.1.pwm
index e69de29..cf57d77 100644
--- a/profiles/urochordates/MA1872.1.pwm
+++ b/profiles/urochordates/MA1872.1.pwm
@@ -0,0 +1,20 @@
+ 5 -12 -7 13
+ 38 -36 28 -50
+ 41 -46 -86 48
+ 63 -15 -52 -22
+ 114 -119 -122 -11
+ 120 -141 -100 -28
+ -22 69 -90 -1
+ 150 -269 -169 -49
+ -349 -370 -432 192
+ -46 -432 162 -280
+ -402 -349 -411 192
+ -306 -402 -273 187
+ -173 -393 -108 166
+ 48 -221 -7 52
+ -221 40 -36 76
+ -20 -24 23 16
+ -7 -22 -42 53
+ -12 -27 -4 35
+ -7 -14 -13 30
+ 4 -41 -13 39
diff --git a/profiles/urochordates/MA1873.1.pwm b/profiles/urochordates/MA1873.1.pwm
index 3098335..942bfbc 100644
--- a/profiles/urochordates/MA1873.1.pwm
+++ b/profiles/urochordates/MA1873.1.pwm
@@ -1,20 +1,20 @@
- 25 -41 -24 27
- 8 -35 -21 37
- 20 -38 -21 28
- 8 -39 -22 40
- 50 -78 -29 24
- 31 -39 -53 39
- 28 -79 -63 64
- -166 -192 169 -232
- -251 -264 -311 183
- -176 -406 -229 178
- -284 -397 -288 187
- 181 -380 -204 -257
- -232 -135 -257 170
- 46 -71 -20 19
- 4 -36 -57 60
- 43 -65 -47 37
- 28 -44 -29 30
- 22 -39 -24 29
- 12 -28 -20 29
- 13 -38 -12 28
+ 25 -40 -23 26
+ 8 -34 -21 36
+ 20 -37 -20 27
+ 7 -38 -21 39
+ 49 -74 -28 24
+ 30 -37 -51 38
+ 27 -75 -61 63
+ -157 -180 166 -215
+ -231 -243 -280 179
+ -165 -349 -213 175
+ -259 -343 -262 184
+ 178 -332 -191 -237
+ -216 -128 -237 167
+ 45 -68 -19 18
+ 4 -35 -55 58
+ 42 -63 -46 36
+ 27 -43 -28 29
+ 21 -37 -23 28
+ 11 -28 -19 28
+ 13 -37 -11 27
diff --git a/profiles/urochordates/MA1874.1.pwm b/profiles/urochordates/MA1874.1.pwm
index e69de29..70d638c 100644
--- a/profiles/urochordates/MA1874.1.pwm
+++ b/profiles/urochordates/MA1874.1.pwm
@@ -0,0 +1,20 @@
+ 9 -13 -5 8
+ 12 -9 -11 7
+ 10 -9 -9 7
+ 6 -11 -6 10
+ 14 -13 -9 7
+ 18 -21 1 -1
+ -9 29 -2 -22
+ -12 -71 -259 120
+ -356 -362 191 -385
+ 193 -402 -402 -377
+ -432 -393 -444 194
+ 183 -421 -377 -169
+ 168 -215 -184 -173
+ -59 22 45 -31
+ 24 -3 23 -59
+ 5 -5 -3 2
+ 12 -1 -8 -3
+ 9 -5 -9 4
+ 6 4 -18 6
+ 2 3 -16 9
diff --git a/profiles/urochordates/MA1875.1.pwm b/profiles/urochordates/MA1875.1.pwm
index 9899506..8f0653f 100644
--- a/profiles/urochordates/MA1875.1.pwm
+++ b/profiles/urochordates/MA1875.1.pwm
@@ -1,20 +1,20 @@
- 16 -20 -13 13
- 20 -23 -13 12
- 25 -27 -18 13
- 11 -31 7 9
- 29 -24 -13 3
- 16 -24 -16 19
- 7 -7 7 -8
- 141 -89 -254 -68
- -388 -451 192 -338
- 196 -497 -480 -427
- -497 -427 -538 196
- 174 -247 -311 -146
- 168 -224 -190 -164
- -22 -3 23 -2
- 37 1 -5 -43
- 14 -24 -21 24
- 16 -7 -23 10
- 13 -10 -24 17
- 12 -9 -24 17
- 14 -11 -24 17
+ 16 -19 -13 13
+ 19 -22 -13 11
+ 24 -26 -17 13
+ 10 -30 7 9
+ 28 -24 -13 3
+ 16 -23 -16 18
+ 7 -6 6 -8
+ 139 -85 -234 -65
+ -337 -377 189 -301
+ 192 -402 -393 -362
+ -402 -362 -421 193
+ 171 -229 -280 -138
+ 165 -208 -178 -155
+ -22 -3 23 -2
+ 36 1 -5 -42
+ 14 -23 -20 24
+ 16 -7 -22 10
+ 13 -10 -24 17
+ 12 -9 -23 16
+ 14 -10 -24 16
diff --git a/profiles/urochordates/MA1876.1.pwm b/profiles/urochordates/MA1876.1.pwm
index 203f877..33fc1b0 100644
--- a/profiles/urochordates/MA1876.1.pwm
+++ b/profiles/urochordates/MA1876.1.pwm
@@ -1,20 +1,20 @@
- 177 -297 -268 -170
- -72 -99 -221 142
- -31 -147 11 81
- 80 -105 13 -56
- -37 15 32 -20
- 60 -36 -72 13
- 73 -70 -60 8
- -22 -238 -184 142
- -197 -257 -251 177
- -113 -406 -427 178
- 193 -480 -321 -427
- 192 -464 -451 -280
- -227 -306 -416 185
- -11 -108 -32 85
- 55 -56 6 -29
- -29 24 1 -1
- 30 3 -82 24
- 76 -52 -77 4
- 31 -163 -124 101
- -87 -143 -190 149
+ 174 -269 -246 -160
+ -69 -95 -206 139
+ -30 -140 11 79
+ 78 -100 13 -54
+ -36 14 32 -20
+ 59 -35 -69 12
+ 72 -67 -58 8
+ -21 -221 -173 139
+ -184 -237 -231 173
+ -108 -349 -362 175
+ 189 -393 -289 -362
+ 188 -385 -377 -255
+ -211 -277 -356 182
+ -11 -103 -31 83
+ 53 -54 5 -28
+ -28 23 1 -1
+ 29 3 -78 23
+ 74 -50 -74 3
+ 31 -154 -118 98
+ -83 -135 -178 146
diff --git a/profiles/urochordates/MA1877.1.pwm b/profiles/urochordates/MA1877.1.pwm
index e69de29..a22f0f4 100644
--- a/profiles/urochordates/MA1877.1.pwm
+++ b/profiles/urochordates/MA1877.1.pwm
@@ -0,0 +1,22 @@
+ -25 37 7 -30
+ -19 -7 46 -33
+ -15 13 2 -1
+ -10 -22 35 -9
+ -6 -1 11 -5
+ -1 -10 20 -11
+ -6 -22 -10 32
+ -130 -104 145 -143
+ -74 -108 134 -133
+ -226 174 -221 -216
+ 157 -293 -46 -259
+ -240 176 -231 -213
+ -226 -311 183 -301
+ -234 -48 -243 154
+ -255 -277 181 -252
+ -55 48 -28 14
+ -46 56 -2 -30
+ 16 -16 -7 5
+ -5 -9 17 -5
+ -7 -7 13 0
+ -9 19 -3 -10
+ -8 -16 26 -5
diff --git a/profiles/urochordates/MA1878.1.pwm b/profiles/urochordates/MA1878.1.pwm
index bad013f..731b3cc 100644
--- a/profiles/urochordates/MA1878.1.pwm
+++ b/profiles/urochordates/MA1878.1.pwm
@@ -1,22 +1,22 @@
- -28 56 -20 -26
- -3 -28 54 -44
- -28 29 -30 19
- -20 -36 62 -29
- -10 16 -18 9
- -6 10 4 -9
- 10 -24 -11 21
- -106 -45 116 -87
- -60 -208 133 -77
- -247 180 -288 -229
- -3 -380 148 -264
- -344 176 -338 -120
- -257 -406 189 -372
- -284 -122 -338 174
- -327 -364 188 -288
- -74 37 -13 25
- -50 34 22 -22
- 0 -20 5 13
- -20 5 13 1
- 2 -28 29 -8
- -39 58 -22 -17
- 13 -40 36 -20
+ -27 54 -19 -26
+ -3 -27 53 -43
+ -27 28 -29 19
+ -19 -35 60 -28
+ -10 15 -17 9
+ -6 9 4 -9
+ 10 -23 -11 20
+ -101 -43 114 -83
+ -58 -195 130 -74
+ -229 177 -262 -213
+ -3 -332 145 -243
+ -306 172 -301 -114
+ -237 -349 185 -326
+ -259 -117 -301 171
+ -293 -321 185 -262
+ -71 36 -12 24
+ -48 33 22 -22
+ 0 -19 5 12
+ -19 4 12 1
+ 2 -27 28 -8
+ -37 56 -22 -17
+ 12 -39 35 -20
diff --git a/profiles/urochordates/MA1879.1.pwm b/profiles/urochordates/MA1879.1.pwm
index e69de29..6a20b32 100644
--- a/profiles/urochordates/MA1879.1.pwm
+++ b/profiles/urochordates/MA1879.1.pwm
@@ -0,0 +1,20 @@
+ 40 -75 -61 52
+ 42 -69 -40 37
+ 39 -55 -18 18
+ 9 -22 -12 21
+ -10 1 -55 46
+ 49 -56 -37 19
+ 100 -107 -68 -16
+ -158 -203 -164 163
+ -289 -171 -284 177
+ 181 -356 -208 -252
+ 187 -343 -332 -277
+ -246 -362 -326 186
+ -83 -226 -226 159
+ 74 -134 47 -87
+ 21 3 -9 -18
+ -13 -12 -58 59
+ 10 -25 -46 45
+ 36 -51 -37 32
+ 32 -54 -43 41
+ 27 -50 -70 56
diff --git a/profiles/urochordates/MA1880.1.pwm b/profiles/urochordates/MA1880.1.pwm
index e69de29..d250051 100644
--- a/profiles/urochordates/MA1880.1.pwm
+++ b/profiles/urochordates/MA1880.1.pwm
@@ -0,0 +1,22 @@
+ -12 26 7 -26
+ -4 18 7 -24
+ -2 15 7 -22
+ -11 9 17 -18
+ -24 11 14 -4
+ -64 -29 91 -59
+ 27 -49 61 -85
+ -289 185 -293 -293
+ 177 -311 -146 -311
+ -349 186 -337 -252
+ -259 -301 185 -326
+ -326 -147 -343 178
+ -266 -285 183 -281
+ -134 112 -102 -10
+ -96 133 -88 -124
+ 8 10 4 -24
+ -18 23 -3 -5
+ -23 8 15 -3
+ -28 11 11 3
+ -26 11 25 -16
+ -22 16 15 -13
+ -22 15 14 -11
diff --git a/profiles/urochordates/MA1881.1.pwm b/profiles/urochordates/MA1881.1.pwm
index 48225de..d7af05b 100644
--- a/profiles/urochordates/MA1881.1.pwm
+++ b/profiles/urochordates/MA1881.1.pwm
@@ -1,20 +1,20 @@
- 6 -15 8 0
- 10 -14 1 2
- 6 -11 -3 7
- 8 -18 -8 15
- 16 -36 -29 36
- 65 -62 -36 -1
- 70 -73 -58 14
- -137 -154 -147 154
- -264 -306 -416 187
- 183 -321 -306 -227
- 189 -388 -338 -306
- -238 -344 -332 185
- -172 -257 -261 175
- 107 -149 -39 -34
- 40 -24 -15 -10
- 16 -29 -18 23
- -5 -21 -27 43
- -1 -14 -18 29
- -3 -11 -10 21
- -3 -6 -3 12
+ 5 -15 8 0
+ 10 -13 1 2
+ 6 -11 -3 7
+ 8 -18 -7 15
+ 16 -35 -28 35
+ 64 -59 -35 -1
+ 69 -70 -56 13
+ -130 -146 -140 151
+ -243 -276 -356 184
+ 180 -289 -277 -211
+ 186 -337 -301 -277
+ -221 -306 -297 182
+ -162 -237 -240 172
+ 104 -141 -38 -33
+ 39 -24 -15 -10
+ 16 -28 -17 23
+ -5 -20 -26 42
+ -1 -14 -17 28
+ -3 -10 -9 20
+ -3 -6 -3 11
diff --git a/profiles/urochordates/MA1882.1.pwm b/profiles/urochordates/MA1882.1.pwm
index e69de29..046b5c5 100644
--- a/profiles/urochordates/MA1882.1.pwm
+++ b/profiles/urochordates/MA1882.1.pwm
@@ -0,0 +1,20 @@
+ 83 -133 -122 47
+ 36 -107 -99 80
+ 21 -72 -57 64
+ 29 -37 -28 24
+ 12 -29 -41 42
+ 56 -22 -40 -14
+ 61 -31 -6 -50
+ -123 -54 -100 125
+ -280 -269 -402 186
+ 189 -343 -311 -343
+ 188 -362 -289 -332
+ -301 -259 -301 184
+ -249 -280 -204 178
+ 109 -176 2 -82
+ 20 2 7 -34
+ 5 -5 -28 23
+ 29 -33 -41 30
+ 29 -48 -64 50
+ 35 -76 -84 66
+ 73 -105 -105 46
diff --git a/profiles/urochordates/MA1883.1.pwm b/profiles/urochordates/MA1883.1.pwm
index e69de29..e7ac508 100644
--- a/profiles/urochordates/MA1883.1.pwm
+++ b/profiles/urochordates/MA1883.1.pwm
@@ -0,0 +1,20 @@
+ 18 -37 -18 28
+ 18 -36 -17 26
+ 18 -36 -15 24
+ 11 -30 -13 26
+ 9 -27 -22 32
+ 29 -30 -18 11
+ 45 -54 -19 10
+ -154 -188 -162 161
+ -208 -218 -269 176
+ 175 -249 -218 -206
+ 180 -288 -273 -215
+ -199 -273 -259 178
+ -195 -211 -180 169
+ 52 -67 -6 -3
+ 19 -17 -13 8
+ 10 -17 -25 26
+ 13 -24 -26 29
+ 17 -26 -26 27
+ 19 -26 -26 25
+ 19 -26 -27 26
diff --git a/profiles/urochordates/MA1884.1.pwm b/profiles/urochordates/MA1884.1.pwm
index e69de29..90977ea 100644
--- a/profiles/urochordates/MA1884.1.pwm
+++ b/profiles/urochordates/MA1884.1.pwm
@@ -0,0 +1,20 @@
+ 42 -60 -46 35
+ 28 -59 -45 47
+ 41 -43 -26 13
+ 46 -43 -26 7
+ 7 -6 -31 24
+ 28 -12 24 -54
+ 22 -16 -24 13
+ -237 -306 -337 184
+ 179 -326 -186 -252
+ 191 -393 -356 -362
+ -402 -211 -393 186
+ -223 -186 140 -20
+ 165 -211 -160 -171
+ -50 -5 -22 55
+ 7 -8 -5 5
+ 64 -51 -48 3
+ 5 -40 -68 66
+ 19 -48 -38 46
+ 47 -60 -54 34
+ 40 -46 -62 39
diff --git a/profiles/urochordates/MA1885.1.pwm b/profiles/urochordates/MA1885.1.pwm
index 3e6ea16..0b1a3ca 100644
--- a/profiles/urochordates/MA1885.1.pwm
+++ b/profiles/urochordates/MA1885.1.pwm
@@ -1,20 +1,20 @@
- 25 -37 -40 35
- 36 -39 -35 22
- 44 -37 -28 7
- 47 -44 -28 8
- 12 -13 -20 18
- 13 -16 22 -24
- 42 -34 -2 -16
- -238 -168 -292 175
- 37 126 -257 -272
- 190 -464 -244 -464
- -427 -438 -497 195
- -321 -311 -427 190
- 191 -396 -388 -306
- 49 -44 -26 4
- -55 23 -15 32
- -1 -31 14 13
- 17 -18 -24 20
- 7 -16 -28 30
- 19 -20 -37 28
- 23 -29 -40 31
+ 25 -35 -39 34
+ 35 -37 -34 22
+ 43 -35 -27 6
+ 46 -43 -27 8
+ 11 -13 -19 17
+ 13 -15 21 -23
+ 41 -33 -2 -16
+ -221 -159 -266 172
+ 36 123 -237 -249
+ 187 -385 -226 -385
+ -363 -370 -402 192
+ -289 -280 -362 186
+ 187 -343 -337 -276
+ 47 -43 -25 4
+ -53 22 -15 31
+ -1 -30 14 12
+ 16 -18 -24 20
+ 7 -15 -28 29
+ 19 -20 -36 27
+ 23 -28 -38 31
diff --git a/profiles/urochordates/MA1886.1.pwm b/profiles/urochordates/MA1886.1.pwm
index e69de29..a2462bf 100644
--- a/profiles/urochordates/MA1886.1.pwm
+++ b/profiles/urochordates/MA1886.1.pwm
@@ -0,0 +1,20 @@
+ 24 -32 -10 12
+ 15 -32 -9 20
+ 20 -29 -3 8
+ 21 -24 -5 4
+ 4 -5 -8 8
+ 13 -15 19 -21
+ -3 -22 -10 29
+ -237 -280 -326 183
+ 177 -297 -240 -193
+ 189 -377 -343 -284
+ -213 -321 -259 181
+ -201 -208 -115 162
+ -53 -252 150 -173
+ -15 11 8 -5
+ -21 -5 -1 23
+ -1 -15 -10 23
+ 2 -24 -23 36
+ -4 -28 -17 40
+ 1 -30 -19 38
+ 7 -32 -20 35
diff --git a/profiles/urochordates/MA1887.1.pwm b/profiles/urochordates/MA1887.1.pwm
index 30c1d83..832d03c 100644
--- a/profiles/urochordates/MA1887.1.pwm
+++ b/profiles/urochordates/MA1887.1.pwm
@@ -1,20 +1,20 @@
- -33 -21 -17 54
- 55 7 -14 -79
- -124 -144 149 -129
- 146 -138 -152 -94
- 135 -138 -137 -55
- -16 22 -34 20
- 7 -43 21 8
- -306 -416 -388 191
- -388 -538 -372 194
- -597 198 -564 -597
- -464 -91 -84 152
- 148 -65 -97 -380
- -438 -372 193 -388
- 160 -163 -211 -131
- 153 -164 -170 -106
- 7 14 -35 9
- 15 -29 8 2
- -48 -121 -125 128
- -84 -138 -122 139
- -105 136 -122 -94
+ -32 -21 -16 52
+ 53 7 -14 -76
+ -118 -137 146 -123
+ 143 -131 -144 -90
+ 132 -131 -130 -53
+ -15 21 -33 20
+ 7 -42 20 8
+ -277 -356 -337 188
+ -337 -421 -326 191
+ -444 195 -432 -444
+ -385 -87 -80 149
+ 145 -63 -92 -332
+ -370 -326 190 -337
+ 157 -154 -197 -124
+ 150 -155 -160 -101
+ 6 13 -33 9
+ 14 -28 8 2
+ -46 -115 -119 126
+ -80 -131 -117 137
+ -100 133 -116 -90
diff --git a/profiles/urochordates/MA1888.1.pwm b/profiles/urochordates/MA1888.1.pwm
index 8b1aa39..a2d56a8 100644
--- a/profiles/urochordates/MA1888.1.pwm
+++ b/profiles/urochordates/MA1888.1.pwm
@@ -1,22 +1,22 @@
- -101 -351 175 -438
- 178 -241 -184 -332
- 75 -464 5 32
- 191 -416 -301 -406
- -99 144 -57 -306
- -137 -51 -166 137
- 26 -15 7 -23
- -33 -27 63 -27
- 182 -464 -155 -357
- -406 -181 182 -292
- -372 -638 -597 196
- 5 -216 -416 143
- -464 -372 -280 190
- -311 187 -416 -264
- -122 -292 173 -301
- -37 94 -199 8
- -52 -1 -58 71
- -50 -43 -97 103
- -43 20 -71 58
- -40 -75 36 44
- -32 62 -61 0
- -94 -20 37 40
+ -97 -311 172 -370
+ 175 -223 -173 -297
+ 73 -385 5 31
+ 188 -356 -273 -349
+ -95 141 -55 -277
+ -130 -49 -157 135
+ 25 -14 7 -22
+ -32 -26 62 -26
+ 179 -385 -147 -316
+ -349 -171 178 -266
+ -326 -456 -444 193
+ 5 -201 -356 140
+ -385 -326 -255 187
+ -280 184 -356 -243
+ -117 -266 170 -273
+ -35 92 -186 8
+ -50 -1 -56 70
+ -48 -42 -92 101
+ -41 19 -68 56
+ -38 -72 35 43
+ -31 61 -58 0
+ -90 -19 36 39
diff --git a/profiles/urochordates/MA1889.1.pwm b/profiles/urochordates/MA1889.1.pwm
index f8ae45a..1c2d25e 100644
--- a/profiles/urochordates/MA1889.1.pwm
+++ b/profiles/urochordates/MA1889.1.pwm
@@ -1,20 +1,20 @@
- 47 -52 -29 14
- 51 -47 -25 2
- 8 -35 -27 41
- -6 -43 -42 63
- 57 -68 -32 13
- 100 -76 -46 -56
- 39 -56 -36 30
- -146 -99 -140 146
- -204 -192 -272 174
- 187 -388 -268 -321
- 191 -438 -338 -344
- -211 -321 -327 183
- -268 -250 -257 181
- 69 -104 -4 -11
- 51 -48 12 -37
- 55 -46 -25 -5
- -44 -65 -70 101
- -4 -47 -81 80
- 63 -60 -52 13
- 28 -33 -25 20
+ 46 -50 -28 14
+ 50 -45 -24 2
+ 8 -34 -26 40
+ -6 -41 -40 61
+ 55 -65 -31 13
+ 98 -73 -44 -54
+ 38 -54 -35 29
+ -138 -95 -133 143
+ -190 -180 -249 171
+ 184 -337 -246 -289
+ 188 -370 -302 -306
+ -197 -289 -293 180
+ -246 -231 -237 178
+ 68 -99 -4 -11
+ 50 -46 12 -36
+ 54 -44 -24 -5
+ -43 -63 -67 99
+ -4 -46 -77 78
+ 61 -58 -50 13
+ 27 -32 -24 19
diff --git a/profiles/urochordates/MA1890.1.pwm b/profiles/urochordates/MA1890.1.pwm
index 75a24bc..51a9c9b 100644
--- a/profiles/urochordates/MA1890.1.pwm
+++ b/profiles/urochordates/MA1890.1.pwm
@@ -1,22 +1,22 @@
- -55 128 -75 -182
- -50 136 -132 -166
- -22 123 -135 -132
- -34 111 -73 -116
- -18 75 -95 -11
- -38 56 40 -120
- 37 109 -211 -151
- -247 184 -397 -251
- 164 -72 -229 -380
- -438 194 -538 -332
- 35 -29 77 -235
- -364 193 -406 -427
- -257 189 -372 -464
- -224 185 -464 -272
- -59 157 -350 -184
- -41 109 -125 -51
- -5 95 -132 -50
- -11 111 -135 -91
- 0 125 -182 -159
- 19 123 -194 -194
- 2 118 -118 -186
- -25 127 -105 -190
+ -53 126 -72 -171
+ -48 134 -126 -157
+ -21 121 -128 -126
+ -33 109 -70 -110
+ -18 73 -91 -11
+ -37 55 39 -114
+ 36 106 -197 -143
+ -229 181 -343 -231
+ 161 -69 -213 -332
+ -370 190 -421 -297
+ 34 -28 76 -218
+ -321 190 -349 -362
+ -237 186 -326 -385
+ -208 181 -385 -249
+ -57 154 -311 -173
+ -40 106 -119 -49
+ -5 93 -126 -48
+ -11 108 -128 -87
+ 0 123 -171 -151
+ 18 120 -182 -182
+ 2 116 -113 -175
+ -24 124 -100 -178
diff --git a/profiles/urochordates/MA1891.1.pwm b/profiles/urochordates/MA1891.1.pwm
index 8a8d21d..5909f85 100644
--- a/profiles/urochordates/MA1891.1.pwm
+++ b/profiles/urochordates/MA1891.1.pwm
@@ -1,20 +1,20 @@
- 31 106 -180 -135
- 33 76 -105 -82
- 21 31 -10 -58
- -18 -71 0 59
- 9 -93 117 -268
- -108 172 -364 -264
- -208 185 -427 -327
- 187 -196 -364 -564
- -451 195 -497 -438
- 67 -288 112 -332
- -438 197 -638 -638
- -516 198 -597 -597
- -416 191 -697 -257
- 86 -1 -229 -2
- 32 7 -44 -6
- 24 12 -17 -25
- 3 55 -22 -61
- -29 90 -21 -116
- -2 106 -82 -144
- 3 106 -81 -163
+ 30 104 -169 -128
+ 32 74 -100 -78
+ 21 30 -10 -56
+ -17 -68 0 57
+ 9 -89 115 -246
+ -103 169 -321 -243
+ -195 182 -363 -293
+ 183 -184 -321 -432
+ -377 192 -402 -370
+ 65 -262 110 -297
+ -369 194 -456 -456
+ -411 194 -444 -444
+ -356 188 -470 -237
+ 84 -1 -213 -2
+ 31 7 -42 -6
+ 24 12 -17 -24
+ 3 54 -22 -59
+ -28 88 -20 -110
+ -2 103 -79 -137
+ 3 103 -77 -154
diff --git a/profiles/urochordates/MA1892.1.pwm b/profiles/urochordates/MA1892.1.pwm
index e69de29..9d0f52a 100644
--- a/profiles/urochordates/MA1892.1.pwm
+++ b/profiles/urochordates/MA1892.1.pwm
@@ -0,0 +1,20 @@
+ -50 87 -18 -76
+ -33 75 -27 -53
+ -29 63 -22 -36
+ -11 28 5 -28
+ -2 13 33 -61
+ -27 100 -99 -59
+ -59 121 -152 -57
+ 160 -89 -188 -266
+ -337 190 -377 -337
+ -28 -231 145 -208
+ -370 192 -385 -385
+ -306 189 -332 -385
+ -332 181 -377 -166
+ 30 24 -102 12
+ 10 20 -35 -1
+ 1 39 -24 -24
+ -25 64 -23 -43
+ -22 69 -20 -61
+ -26 78 -32 -64
+ -18 68 -20 -62
diff --git a/profiles/urochordates/MA1893.1.pwm b/profiles/urochordates/MA1893.1.pwm
index eec7d68..c3fd606 100644
--- a/profiles/urochordates/MA1893.1.pwm
+++ b/profiles/urochordates/MA1893.1.pwm
@@ -1,20 +1,20 @@
- -88 135 -84 -154
- -47 119 -74 -131
- -44 93 -62 -51
- -10 45 -2 -48
- 20 17 40 -131
- -51 139 -192 -129
- -105 153 -238 -117
- 161 -47 -257 -416
- -480 196 -564 -464
- 6 -241 137 -244
- -564 198 -638 -597
- -480 197 -516 -597
- -479 192 -596 -250
- 56 33 -132 -20
- 11 31 -17 -34
- -6 70 -24 -81
- -39 114 -69 -129
- -25 124 -108 -163
- -5 123 -115 -201
- -9 116 -91 -174
+ -84 132 -80 -146
+ -45 116 -71 -125
+ -43 91 -59 -49
+ -10 44 -2 -46
+ 20 16 39 -124
+ -49 137 -180 -123
+ -100 150 -220 -112
+ 158 -46 -237 -356
+ -393 193 -432 -385
+ 6 -223 134 -226
+ -432 195 -456 -444
+ -393 194 -411 -444
+ -393 188 -444 -231
+ 54 32 -126 -19
+ 11 30 -17 -32
+ -6 69 -24 -77
+ -38 112 -66 -123
+ -24 122 -103 -154
+ -5 120 -109 -188
+ -9 113 -87 -164
diff --git a/profiles/urochordates/MA1894.1.pwm b/profiles/urochordates/MA1894.1.pwm
index 8b780d5..b42cfd3 100644
--- a/profiles/urochordates/MA1894.1.pwm
+++ b/profiles/urochordates/MA1894.1.pwm
@@ -1,20 +1,20 @@
- 32 -31 -39 24
- 44 -50 -47 29
- 58 -63 -46 17
- 71 -112 -54 28
- 63 -117 -82 53
- 47 -76 -85 55
- 5 -35 -30 45
- -186 -106 -332 165
- -397 -416 193 -388
- -192 184 -451 -321
- -297 -357 -365 189
- -276 -357 179 -166
- 186 -280 -351 -284
- -71 68 -24 -10
- -34 -82 0 71
- 1 46 -99 16
- 72 -68 -29 -13
- -22 -118 94 -35
- -43 65 -15 -34
- 54 -42 -15 -16
+ 31 -30 -37 23
+ 42 -48 -46 28
+ 57 -61 -44 17
+ 70 -107 -52 27
+ 61 -112 -78 52
+ 46 -73 -81 54
+ 5 -34 -29 44
+ -174 -101 -297 162
+ -343 -356 190 -337
+ -180 181 -377 -289
+ -269 -316 -321 186
+ -252 -316 176 -157
+ 183 -256 -311 -259
+ -68 66 -23 -9
+ -32 -78 0 70
+ 1 45 -95 15
+ 70 -65 -28 -13
+ -22 -113 92 -34
+ -41 63 -14 -33
+ 53 -40 -14 -16
diff --git a/profiles/urochordates/MA1895.1.pwm b/profiles/urochordates/MA1895.1.pwm
index e69de29..525bcf8 100644
--- a/profiles/urochordates/MA1895.1.pwm
+++ b/profiles/urochordates/MA1895.1.pwm
@@ -0,0 +1,20 @@
+ 20 -43 -14 26
+ 20 -39 -12 23
+ 12 -33 -9 23
+ 5 -24 -8 22
+ 9 -30 -12 26
+ 36 -42 -5 1
+ 59 -59 -23 -3
+ -164 -175 -160 161
+ -215 -213 -255 176
+ 175 -252 -190 -243
+ 183 -306 -284 -246
+ -221 -280 -293 181
+ -180 -167 -211 166
+ 53 -62 -3 -11
+ 27 -17 -4 -10
+ 12 -15 -20 19
+ 11 -17 -28 27
+ 18 -19 -28 22
+ 21 -21 -26 19
+ 25 -22 -30 19
diff --git a/profiles/urochordates/MA1896.1.pwm b/profiles/urochordates/MA1896.1.pwm
index c3904a2..b1ce3b5 100644
--- a/profiles/urochordates/MA1896.1.pwm
+++ b/profiles/urochordates/MA1896.1.pwm
@@ -1,20 +1,20 @@
- 20 -18 -16 10
- 19 -13 -19 10
- 12 -10 -15 11
- 8 -15 -14 18
- 15 -35 -47 47
- 73 -47 -53 -11
- 81 -64 -44 -21
- -132 -129 -101 143
- -292 -297 -416 188
- 187 -321 -332 -288
- 191 -379 -364 -332
- -280 -351 -357 188
- -192 -272 -254 177
- 119 -161 -46 -61
- 39 -2 -21 -25
- 4 -16 -19 26
- -1 -27 -29 45
- 6 -19 -29 33
- 6 -16 -17 24
- 6 -14 -12 18
+ 19 -17 -16 10
+ 18 -13 -18 10
+ 12 -10 -15 11
+ 8 -14 -13 17
+ 15 -34 -46 45
+ 71 -45 -51 -11
+ 79 -61 -43 -21
+ -126 -123 -97 140
+ -266 -269 -356 185
+ 184 -289 -297 -262
+ 187 -331 -321 -297
+ -256 -311 -316 185
+ -180 -249 -234 174
+ 117 -152 -44 -59
+ 38 -2 -20 -24
+ 4 -15 -18 26
+ -1 -26 -28 44
+ 6 -18 -28 32
+ 5 -16 -17 23
+ 5 -13 -12 17
diff --git a/profiles/urochordates/MA1897.1.pwm b/profiles/urochordates/MA1897.1.pwm
index e69de29..7b72c1a 100644
--- a/profiles/urochordates/MA1897.1.pwm
+++ b/profiles/urochordates/MA1897.1.pwm
@@ -0,0 +1,20 @@
+ -123 -23 9 73
+ -98 -54 87 -3
+ -36 -3 26 7
+ -13 -2 -1 14
+ 5 -19 8 4
+ 32 -18 4 -25
+ 8 39 -3 -62
+ -208 186 -393 -411
+ 179 -432 -155 -280
+ -456 178 -377 -119
+ -119 -377 178 -456
+ -280 -155 -432 179
+ -411 -393 186 -208
+ -62 -3 39 8
+ -25 4 -18 32
+ 4 8 -19 5
+ 14 -1 -2 -13
+ 7 26 -3 -36
+ -3 87 -54 -98
+ 73 9 -23 -123
diff --git a/profiles/urochordates/MA1898.1.pwm b/profiles/urochordates/MA1898.1.pwm
index e69de29..16361d0 100644
--- a/profiles/urochordates/MA1898.1.pwm
+++ b/profiles/urochordates/MA1898.1.pwm
@@ -0,0 +1,20 @@
+ 26 -49 -28 33
+ 34 -46 -19 17
+ 23 -28 -18 16
+ 20 -27 -26 24
+ 22 -15 -24 12
+ 34 -33 -1 -7
+ -18 -49 -24 64
+ -280 -316 -362 187
+ 183 -377 -223 -269
+ 192 -411 -385 -332
+ -370 -269 -411 189
+ -195 -175 111 36
+ 172 -255 -178 -206
+ -17 11 -9 13
+ -13 11 -28 24
+ 15 -23 -29 28
+ 16 -24 -45 39
+ 12 -24 -42 40
+ 19 -30 -52 44
+ 38 -37 -48 27
diff --git a/profiles/urochordates/MA1899.1.pwm b/profiles/urochordates/MA1899.1.pwm
index e69de29..3045182 100644
--- a/profiles/urochordates/MA1899.1.pwm
+++ b/profiles/urochordates/MA1899.1.pwm
@@ -0,0 +1,20 @@
+ -4 3 16 -16
+ -19 16 14 -14
+ 13 3 3 -21
+ 3 8 -6 -6
+ 39 -43 45 -78
+ -74 -38 -28 86
+ -199 172 -195 -243
+ 176 -266 -191 -237
+ -411 181 -332 -154
+ -160 -293 179 -385
+ -306 -316 -297 186
+ -402 -284 190 -393
+ 157 -119 -158 -190
+ -120 72 -71 39
+ -6 9 0 -3
+ -15 11 -2 5
+ -18 19 14 -19
+ -7 18 -4 -9
+ -35 49 -10 -19
+ -10 15 15 -24
diff --git a/profiles/urochordates/MA1900.1.pwm b/profiles/urochordates/MA1900.1.pwm
index 071b83b..331ebac 100644
--- a/profiles/urochordates/MA1900.1.pwm
+++ b/profiles/urochordates/MA1900.1.pwm
@@ -1,20 +1,20 @@
- 21 -89 -90 82
- 21 -56 -53 55
- 47 -64 -22 16
- 23 -31 -15 16
- 7 -27 -57 54
- 50 -39 -42 11
- 69 -81 -34 3
- -110 -134 -121 144
- -288 -257 -438 187
- 191 -427 -306 -372
- 189 -388 -344 -288
- -224 -321 -332 184
- -211 -216 -178 170
- 97 -152 3 -57
- 18 -9 -6 -5
- 3 -13 -49 44
- 30 -40 -37 31
- 55 -70 -59 32
- 11 -64 -63 71
- 14 -61 -83 75
+ 21 -85 -86 80
+ 21 -54 -51 54
+ 46 -62 -22 16
+ 22 -30 -15 16
+ 6 -26 -55 53
+ 48 -37 -40 10
+ 68 -77 -33 3
+ -105 -127 -115 141
+ -262 -237 -370 183
+ 187 -362 -277 -326
+ 186 -337 -306 -262
+ -208 -289 -297 181
+ -197 -201 -167 167
+ 95 -144 3 -55
+ 17 -9 -6 -5
+ 3 -13 -47 43
+ 29 -38 -36 30
+ 54 -67 -57 32
+ 11 -61 -60 69
+ 13 -59 -79 73
diff --git a/profiles/urochordates/MA1901.1.pwm b/profiles/urochordates/MA1901.1.pwm
index e69de29..85b8daf 100644
--- a/profiles/urochordates/MA1901.1.pwm
+++ b/profiles/urochordates/MA1901.1.pwm
@@ -0,0 +1,20 @@
+ 35 -64 -34 37
+ 27 -58 -19 32
+ 4 -40 -5 31
+ -1 -27 -5 27
+ 12 -17 5 -2
+ 23 -22 12 -18
+ -17 -24 6 28
+ -231 -229 -332 180
+ 181 -377 -243 -213
+ 192 -421 -385 -343
+ -337 -385 -311 189
+ -288 -280 -284 184
+ 4 -229 124 -131
+ -16 8 26 -22
+ -22 -8 0 25
+ -13 -2 -4 17
+ 16 -20 -17 16
+ 31 -32 -29 19
+ 29 -46 -45 39
+ 38 -59 -54 43
diff --git a/profiles/urochordates/MA1902.1.pwm b/profiles/urochordates/MA1902.1.pwm
index 4314ba9..59bb545 100644
--- a/profiles/urochordates/MA1902.1.pwm
+++ b/profiles/urochordates/MA1902.1.pwm
@@ -1,22 +1,22 @@
- 7 4 2 -14
- 10 2 -1 -11
- 13 -2 -2 -10
- 12 -5 -3 -5
- 18 -4 -5 -10
- 10 -22 38 -38
- -102 -132 146 -147
- -438 -464 195 -416
- -365 -497 188 -235
- -69 -372 160 -188
- 157 -229 -87 -182
- 145 -216 -216 -27
- -77 -134 -190 146
- -149 139 -235 -29
- -178 181 -451 -268
- -147 175 -311 -272
- -194 165 -182 -170
- -59 78 -42 -19
- -10 -4 -3 15
- 0 -2 -4 6
- -4 3 -5 6
- -8 4 0 4
+ 7 4 2 -14
+ 9 2 -1 -11
+ 13 -2 -2 -10
+ 11 -4 -3 -5
+ 17 -4 -5 -10
+ 10 -21 37 -37
+ -98 -126 143 -140
+ -370 -385 191 -356
+ -321 -402 185 -218
+ -66 -326 157 -176
+ 154 -213 -83 -171
+ 142 -201 -201 -26
+ -74 -127 -178 143
+ -141 137 -218 -28
+ -167 178 -377 -246
+ -140 172 -280 -249
+ -182 162 -171 -160
+ -57 76 -40 -18
+ -9 -4 -3 15
+ 0 -2 -4 5
+ -4 3 -5 5
+ -8 4 0 4
diff --git a/profiles/urochordates/MA1903.1.pwm b/profiles/urochordates/MA1903.1.pwm
index b957679..d58a744 100644
--- a/profiles/urochordates/MA1903.1.pwm
+++ b/profiles/urochordates/MA1903.1.pwm
@@ -1,20 +1,20 @@
- 16 2 -42 17
- 25 -5 -33 7
- 27 -3 -36 5
- 34 -6 -39 2
- 32 -15 -27 2
- 23 -21 -28 19
- -13 9 -16 17
- -288 181 -306 -211
- 172 -170 -238 -224
- 185 -292 -357 -254
- -276 -316 -388 188
- -174 -125 -276 165
- 168 -194 -157 -229
- 48 -4 -52 -10
- 30 16 -40 -16
- 16 16 -28 -9
- 22 8 -33 -3
- 16 20 -38 -5
- 21 17 -45 -2
- 23 9 -41 1
+ 15 2 -41 17
+ 24 -5 -32 7
+ 26 -3 -35 5
+ 33 -6 -37 2
+ 32 -14 -26 2
+ 22 -20 -27 18
+ -13 9 -15 17
+ -262 178 -276 -197
+ 169 -160 -221 -208
+ 182 -266 -316 -234
+ -252 -284 -337 184
+ -164 -119 -252 162
+ 165 -182 -149 -213
+ 47 -4 -50 -9
+ 29 16 -39 -15
+ 16 16 -27 -9
+ 21 8 -32 -3
+ 16 19 -37 -4
+ 20 17 -43 -2
+ 23 9 -40 1
diff --git a/profiles/urochordates/MA1904.1.pwm b/profiles/urochordates/MA1904.1.pwm
index 8332401..baee0db 100644
--- a/profiles/urochordates/MA1904.1.pwm
+++ b/profiles/urochordates/MA1904.1.pwm
@@ -1,20 +1,20 @@
- 49 -73 -62 42
- 29 -65 -35 44
- 22 -61 -6 29
- -1 -35 -5 32
- -1 -10 -43 41
- 54 -30 -27 -14
- 77 -60 -23 -35
- -174 -131 -157 157
- -264 -190 -397 181
- 186 -327 -272 -311
- 190 -397 -332 -338
- -235 -327 -306 184
- -201 -257 -166 171
- 84 -168 32 -63
- 46 -27 2 -36
- -14 -6 -34 43
- 8 -26 -31 38
- 25 -56 -29 40
- 23 -45 -49 47
- 36 -46 -64 44
+ 48 -70 -59 41
+ 28 -62 -34 43
+ 21 -58 -6 28
+ -1 -34 -5 32
+ -1 -9 -42 40
+ 52 -29 -26 -13
+ 75 -58 -22 -34
+ -164 -125 -149 154
+ -243 -178 -343 178
+ 183 -293 -249 -281
+ 187 -343 -297 -302
+ -218 -293 -277 181
+ -188 -237 -157 168
+ 82 -158 31 -61
+ 45 -26 2 -35
+ -13 -6 -33 42
+ 8 -25 -30 37
+ 24 -54 -28 39
+ 22 -43 -47 46
+ 35 -44 -62 42
diff --git a/profiles/urochordates/MA1905.1.pwm b/profiles/urochordates/MA1905.1.pwm
index 4774f26..f6d12c7 100644
--- a/profiles/urochordates/MA1905.1.pwm
+++ b/profiles/urochordates/MA1905.1.pwm
@@ -1,20 +1,20 @@
- 8 -25 -20 30
- 6 -22 -14 25
- 7 -18 -6 14
- 1 -8 -3 9
- -1 -6 -18 21
- 16 3 -15 -6
- 39 -26 -2 -20
- -164 -151 -137 156
- -261 -251 -344 184
- 184 -301 -257 -301
- 187 -338 -301 -297
- -238 -280 -257 181
- -213 -229 -132 166
- 61 -86 15 -30
- 6 0 8 -15
- -6 -6 2 10
- 6 -19 2 10
- 15 -24 -5 11
- 6 -24 -4 19
- 11 -25 -5 16
+ 8 -24 -20 29
+ 6 -22 -13 25
+ 7 -17 -6 14
+ 1 -7 -3 9
+ -1 -6 -17 21
+ 16 3 -14 -6
+ 38 -25 -2 -20
+ -155 -143 -130 153
+ -240 -231 -306 180
+ 181 -273 -237 -273
+ 184 -301 -273 -269
+ -221 -255 -237 177
+ -199 -213 -126 163
+ 59 -82 15 -29
+ 5 0 8 -15
+ -6 -6 2 10
+ 5 -19 2 10
+ 15 -24 -5 10
+ 6 -24 -4 18
+ 11 -24 -5 16
diff --git a/profiles/urochordates/MA1906.1.pwm b/profiles/urochordates/MA1906.1.pwm
index 835f7e6..9d543dc 100644
--- a/profiles/urochordates/MA1906.1.pwm
+++ b/profiles/urochordates/MA1906.1.pwm
@@ -1,20 +1,20 @@
- 18 -31 -13 20
- 12 -26 -7 17
- 7 -16 -2 10
- 7 -10 -5 7
- 8 -4 -5 0
- 17 -2 5 -22
- -1 2 -32 26
- -244 -292 -365 185
- 183 -326 -250 -268
- 193 -480 -380 -344
- -451 -388 -451 194
- -156 -206 134 -18
- 171 -235 -161 -227
- -28 -13 24 12
- -23 6 8 7
- 3 -1 -12 9
- 2 -13 -19 26
- 13 -18 -23 23
- 22 -25 -30 24
- 24 -28 -33 26
+ 17 -30 -13 20
+ 11 -25 -7 17
+ 7 -16 -2 10
+ 7 -10 -5 7
+ 8 -3 -5 0
+ 16 -2 5 -22
+ -1 2 -31 25
+ -226 -266 -321 182
+ 180 -293 -231 -246
+ 189 -393 -332 -306
+ -377 -337 -377 191
+ -147 -193 132 -17
+ 168 -218 -152 -211
+ -27 -13 23 12
+ -22 6 7 6
+ 3 -1 -12 9
+ 2 -13 -18 26
+ 13 -18 -22 22
+ 22 -24 -29 23
+ 23 -27 -32 26
diff --git a/profiles/urochordates/MA1907.1.pwm b/profiles/urochordates/MA1907.1.pwm
index e69de29..9ea7019 100644
--- a/profiles/urochordates/MA1907.1.pwm
+++ b/profiles/urochordates/MA1907.1.pwm
@@ -0,0 +1,20 @@
+ 86 -120 -113 37
+ 57 -105 -81 55
+ 21 -80 -80 76
+ 8 -96 -90 92
+ 69 -101 -85 42
+ 112 -88 -85 -46
+ 71 -99 -68 30
+ -135 -89 -195 149
+ -166 -234 -337 176
+ 189 -349 -311 -362
+ 191 -393 -343 -343
+ -157 -326 -326 179
+ -246 -269 -262 181
+ 118 -188 -81 -17
+ 98 -105 -29 -46
+ 65 -47 -78 18
+ -3 -69 -87 89
+ 7 -82 -118 96
+ 90 -118 -140 40
+ 78 -115 -78 33
diff --git a/profiles/urochordates/MA1908.1.pwm b/profiles/urochordates/MA1908.1.pwm
index d919874..a3dce99 100644
--- a/profiles/urochordates/MA1908.1.pwm
+++ b/profiles/urochordates/MA1908.1.pwm
@@ -1,22 +1,22 @@
- 28 -32 -21 16
- 29 -16 -31 11
- 15 -8 -25 14
- 5 9 -11 -4
- 5 -2 12 -16
- 5 1 14 -22
- 24 9 -11 -27
- -56 -63 -138 120
- -154 -338 -406 181
- 187 -427 -297 -264
- 190 -416 -332 -316
- -264 -284 -149 174
- -194 170 -204 -204
- -218 162 -170 -134
- -102 -32 113 -95
- 7 23 -19 -15
- 4 -12 -38 36
- 6 -13 -44 39
- 36 -24 -45 19
- 32 -15 -39 12
- 28 -4 -37 6
- 20 1 -38 11
+ 27 -31 -20 16
+ 28 -15 -30 10
+ 15 -7 -24 13
+ 4 9 -11 -3
+ 5 -2 12 -16
+ 4 1 14 -22
+ 24 9 -11 -26
+ -54 -60 -131 117
+ -146 -301 -349 178
+ 184 -362 -269 -243
+ 187 -356 -297 -284
+ -243 -259 -141 171
+ -182 167 -191 -191
+ -204 159 -160 -127
+ -98 -31 111 -91
+ 7 22 -18 -15
+ 4 -11 -37 35
+ 5 -12 -42 38
+ 35 -23 -44 18
+ 31 -14 -37 11
+ 27 -3 -36 5
+ 20 1 -37 10
diff --git a/profiles/urochordates/MA1909.1.pwm b/profiles/urochordates/MA1909.1.pwm
index e69de29..cd482d6 100644
--- a/profiles/urochordates/MA1909.1.pwm
+++ b/profiles/urochordates/MA1909.1.pwm
@@ -0,0 +1,20 @@
+ 16 -40 7 11
+ 26 -42 3 5
+ -21 -17 -3 34
+ -12 -26 -13 41
+ 35 -52 -2 6
+ 75 -62 -17 -36
+ 18 -40 -22 32
+ -169 -137 -157 157
+ -193 -204 -249 173
+ 178 -302 -199 -246
+ 185 -343 -285 -259
+ -175 -246 -269 175
+ -221 -186 -226 172
+ 48 -63 -18 11
+ 44 -36 8 -31
+ 59 -44 -5 -32
+ -38 -35 -69 87
+ -6 -7 -62 52
+ 42 -22 -32 1
+ 16 1 -15 -5
diff --git a/profiles/urochordates/MA1910.1.pwm b/profiles/urochordates/MA1910.1.pwm
index e69de29..2828cd2 100644
--- a/profiles/urochordates/MA1910.1.pwm
+++ b/profiles/urochordates/MA1910.1.pwm
@@ -0,0 +1,20 @@
+ 28 -43 -24 26
+ 31 -41 -17 16
+ 21 -33 -17 22
+ -5 -21 -15 34
+ 6 -24 -8 22
+ 40 -29 -3 -18
+ 40 -38 -1 -13
+ -152 -132 -149 153
+ -221 -216 -280 177
+ 179 -284 -213 -249
+ 183 -321 -252 -266
+ -223 -252 -252 178
+ -211 -201 -193 170
+ 53 -68 9 -20
+ 28 -31 18 -24
+ 3 -17 -9 21
+ -10 -26 -21 45
+ 13 -30 -20 29
+ 32 -38 -21 16
+ 22 -38 -18 24
diff --git a/profiles/urochordates/MA1911.1.pwm b/profiles/urochordates/MA1911.1.pwm
index e69de29..c0ddb39 100644
--- a/profiles/urochordates/MA1911.1.pwm
+++ b/profiles/urochordates/MA1911.1.pwm
@@ -0,0 +1,20 @@
+ -5 -12 9 7
+ -2 -17 13 4
+ -2 -17 10 7
+ -14 -15 12 15
+ -18 -17 11 20
+ -60 -9 35 18
+ -171 -43 113 -39
+ -402 -421 193 -393
+ -107 -421 172 -259
+ 170 -411 -103 -234
+ 175 -316 -311 -128
+ -42 -377 -349 163
+ -356 -311 -402 190
+ -137 36 -249 111
+ -175 139 -226 -20
+ -122 130 -81 -90
+ -18 39 16 -52
+ -1 1 -1 0
+ 0 -15 3 11
+ -7 -13 5 13
diff --git a/profiles/urochordates/MA1912.1.pwm b/profiles/urochordates/MA1912.1.pwm
index e69de29..d82acb6 100644
--- a/profiles/urochordates/MA1912.1.pwm
+++ b/profiles/urochordates/MA1912.1.pwm
@@ -0,0 +1,20 @@
+ 5 -5 -17 14
+ -14 -27 -1 35
+ -15 -42 46 -5
+ 37 -45 -50 35
+ 71 -35 -63 -9
+ 69 -40 -75 5
+ 30 -50 -26 29
+ -249 -146 -237 171
+ -211 -293 180 -266
+ 191 -385 -393 -337
+ -316 -213 -393 185
+ 186 -218 -370 -393
+ -316 148 -169 -34
+ -48 48 21 -44
+ -38 26 8 -4
+ -4 8 -9 5
+ 9 -23 -43 42
+ 29 3 -52 9
+ 24 -2 -41 11
+ 10 8 -29 8
diff --git a/profiles/urochordates/MA1913.1.pwm b/profiles/urochordates/MA1913.1.pwm
index 73ba990..6d88b6d 100644
--- a/profiles/urochordates/MA1913.1.pwm
+++ b/profiles/urochordates/MA1913.1.pwm
@@ -1,20 +1,20 @@
- -8 -10 6 11
- 8 -22 7 5
- 35 -53 8 -4
- 52 -94 -10 15
- 55 -120 -55 50
- 28 -89 -71 71
- 12 -58 -16 43
- -208 -129 -364 171
- -480 -480 196 -516
- -201 186 -480 -372
- -316 -364 -451 191
- -296 -388 176 -129
- 185 -311 -332 -254
- -124 64 -2 5
- -41 -31 5 49
- -23 10 -53 47
- 42 -36 -5 -13
- 1 -120 83 -36
- -73 54 38 -65
- 29 30 -23 -52
+ -8 -9 5 11
+ 8 -22 7 5
+ 34 -51 8 -3
+ 51 -90 -10 15
+ 53 -114 -53 49
+ 27 -85 -68 69
+ 12 -56 -15 42
+ -195 -123 -321 168
+ -393 -393 193 -411
+ -188 183 -393 -326
+ -284 -321 -377 188
+ -269 -337 173 -123
+ 182 -280 -297 -234
+ -118 62 -2 5
+ -40 -30 5 48
+ -22 10 -51 45
+ 41 -35 -5 -12
+ 1 -114 81 -35
+ -70 53 37 -63
+ 28 29 -22 -50
diff --git a/profiles/urochordates/MA1914.1.pwm b/profiles/urochordates/MA1914.1.pwm
index e69de29..4fd9bf9 100644
--- a/profiles/urochordates/MA1914.1.pwm
+++ b/profiles/urochordates/MA1914.1.pwm
@@ -0,0 +1,20 @@
+ 10 19 -12 -20
+ 6 30 -16 -28
+ 6 30 -21 -22
+ 9 15 -9 -17
+ 12 1 1 -16
+ -22 7 -53 48
+ 23 -36 73 -137
+ -255 185 -411 -259
+ 194 -393 -421 -432
+ -421 194 -421 -421
+ -349 184 -311 -216
+ -277 -385 -377 189
+ -316 -343 185 -243
+ -26 74 -130 11
+ 8 41 -82 7
+ 9 45 -33 -36
+ -3 43 -25 -27
+ 1 34 -28 -15
+ 3 33 -25 -18
+ 10 28 -26 -20
diff --git a/profiles/urochordates/MA1915.1.pwm b/profiles/urochordates/MA1915.1.pwm
index 444ff8c..25120ad 100644
--- a/profiles/urochordates/MA1915.1.pwm
+++ b/profiles/urochordates/MA1915.1.pwm
@@ -1,20 +1,20 @@
- 93 20 -174 -63
- 55 80 -170 -105
- 151 -192 -182 -72
- 105 -157 -134 26
- -44 -131 -56 113
- 17 -76 25 13
- 27 -2 -34 2
- -93 143 -276 -64
- 196 -564 -497 -416
- -101 -464 -451 177
- -497 -538 -516 197
- -257 -306 187 -416
- -170 -297 -306 178
- -19 -23 -21 49
- 34 -4 -56 12
- -2 -31 -40 53
- -23 -40 -33 67
- -28 -49 43 16
- -1 -56 1 40
- 2 -35 -15 38
+ 90 20 -164 -60
+ 54 78 -160 -100
+ 148 -180 -171 -69
+ 103 -149 -127 26
+ -43 -125 -54 110
+ 17 -73 24 12
+ 26 -2 -32 2
+ -89 140 -252 -62
+ 193 -432 -402 -356
+ -97 -385 -377 174
+ -402 -421 -411 194
+ -237 -276 184 -356
+ -160 -269 -277 175
+ -19 -22 -20 48
+ 33 -3 -54 11
+ -2 -30 -38 52
+ -22 -39 -32 66
+ -27 -47 42 16
+ -1 -54 1 39
+ 2 -34 -14 37
diff --git a/profiles/urochordates/MA1916.1.pwm b/profiles/urochordates/MA1916.1.pwm
index e69de29..77aaaae 100644
--- a/profiles/urochordates/MA1916.1.pwm
+++ b/profiles/urochordates/MA1916.1.pwm
@@ -0,0 +1,20 @@
+ 47 -51 -31 14
+ 50 -72 -18 13
+ 43 -62 -10 10
+ 14 -43 -5 25
+ -2 -25 10 14
+ -100 67 -14 1
+ -41 57 -184 57
+ 177 -411 -321 -126
+ -343 -402 -393 192
+ -326 -411 -326 190
+ -221 -306 185 -385
+ -311 -332 -356 189
+ -124 -122 -123 144
+ -10 -6 -73 59
+ -12 -27 -38 57
+ -6 0 -22 24
+ -3 -6 -25 28
+ -5 -12 -33 39
+ -3 -10 -46 44
+ 2 -17 -56 50
diff --git a/profiles/urochordates/MA1917.1.pwm b/profiles/urochordates/MA1917.1.pwm
index e69de29..6414d25 100644
--- a/profiles/urochordates/MA1917.1.pwm
+++ b/profiles/urochordates/MA1917.1.pwm
@@ -0,0 +1,20 @@
+ 28 0 -29 -5
+ 53 -50 -26 2
+ 33 -43 -18 16
+ 4 -39 -12 37
+ 10 -34 -2 20
+ -6 -6 -11 20
+ 3 14 -54 25
+ 166 -259 -186 -130
+ -213 -262 -237 177
+ -266 -301 -262 183
+ -192 -237 173 -220
+ -213 -262 -249 178
+ -180 -195 -169 165
+ -2 -21 -9 28
+ -5 -26 -12 35
+ -4 -25 -8 31
+ -4 -18 -7 25
+ 3 -21 -9 24
+ 3 -20 -10 24
+ 4 -18 -10 22
diff --git a/profiles/urochordates/MA1918.1.pwm b/profiles/urochordates/MA1918.1.pwm
index e69de29..209d968 100644
--- a/profiles/urochordates/MA1918.1.pwm
+++ b/profiles/urochordates/MA1918.1.pwm
@@ -0,0 +1,20 @@
+ 72 -7 -87 -24
+ 90 -122 -63 9
+ 57 -90 -37 28
+ 7 -71 -18 54
+ 22 -49 -2 18
+ -40 47 -28 4
+ 18 38 -134 23
+ 191 -421 -362 -306
+ -259 -385 -393 189
+ -349 -402 -349 191
+ -184 -281 180 -321
+ -234 -311 -321 184
+ -106 -98 -127 138
+ 2 5 -65 39
+ -9 -26 -46 58
+ -4 -23 -35 47
+ -5 -20 -14 32
+ 14 -40 -20 34
+ 21 -48 -29 39
+ 27 -40 -32 31
diff --git a/profiles/urochordates/MA1919.1.pwm b/profiles/urochordates/MA1919.1.pwm
index 1b4803c..d4bb8da 100644
--- a/profiles/urochordates/MA1919.1.pwm
+++ b/profiles/urochordates/MA1919.1.pwm
@@ -1,22 +1,22 @@
- -12 -6 29 -15
- -14 -4 18 -2
- -26 -10 36 -8
- -24 -8 18 11
- -6 -23 32 -8
- 20 -63 34 -8
- 102 -170 13 -83
- -146 -161 162 -216
- -427 -316 190 -344
- -406 -143 -316 179
- -465 -565 196 -465
- -188 -36 -221 145
- -229 -127 149 -82
- 186 -388 -221 -338
- 139 -159 -88 -101
- 25 -40 -5 11
- -4 -70 5 46
- -33 -37 4 49
- -37 -38 36 24
- -13 -18 16 12
- -15 -18 35 -8
- -16 17 15 -21
+ -12 -6 28 -14
+ -14 -4 18 -2
+ -25 -9 35 -8
+ -24 -7 17 10
+ -6 -22 31 -8
+ 19 -60 33 -8
+ 100 -160 13 -79
+ -138 -152 159 -201
+ -362 -284 187 -306
+ -349 -135 -284 176
+ -385 -432 193 -385
+ -176 -35 -206 142
+ -213 -120 146 -78
+ 182 -337 -206 -302
+ 137 -150 -84 -97
+ 25 -39 -4 11
+ -3 -67 5 44
+ -32 -36 4 48
+ -36 -37 35 23
+ -13 -17 16 11
+ -15 -17 34 -8
+ -15 17 15 -20
diff --git a/profiles/urochordates/MA1920.1.pwm b/profiles/urochordates/MA1920.1.pwm
index e69de29..c47696a 100644
--- a/profiles/urochordates/MA1920.1.pwm
+++ b/profiles/urochordates/MA1920.1.pwm
@@ -0,0 +1,22 @@
+ -73 96 -99 -7
+ -64 46 -93 55
+ -32 3 -43 52
+ -8 -5 -22 30
+ 2 -2 -2 2
+ 26 -12 3 -23
+ 52 -44 7 -35
+ 171 -289 -154 -197
+ -71 -144 149 -221
+ -284 -326 187 -332
+ -321 -204 -216 178
+ -349 -411 192 -385
+ -108 15 -229 115
+ -171 -102 140 -82
+ 185 -356 -231 -311
+ 94 -73 -83 -13
+ 41 -71 -82 58
+ 23 -22 -77 47
+ 32 -47 -24 25
+ -74 52 -86 50
+ 69 27 -68 -84
+ 5 44 -26 -37
diff --git a/profiles/urochordates/MA1921.1.pwm b/profiles/urochordates/MA1921.1.pwm
index e69de29..7d7ca83 100644
--- a/profiles/urochordates/MA1921.1.pwm
+++ b/profiles/urochordates/MA1921.1.pwm
@@ -0,0 +1,22 @@
+ -7 -18 7 16
+ -10 -13 15 7
+ 5 -11 6 -1
+ -10 -18 21 4
+ -8 -10 19 -2
+ 15 -15 4 -5
+ 15 -50 33 -10
+ 161 -280 -99 -171
+ -109 -162 154 -175
+ -289 -316 186 -301
+ -377 -184 -273 181
+ -385 -432 193 -411
+ -144 -154 -273 165
+ -201 -52 115 -25
+ 171 -362 -176 -152
+ -24 -53 -176 111
+ 33 26 7 -101
+ 97 -137 -69 4
+ -184 162 -176 -150
+ 137 -199 -31 -147
+ -134 148 -101 -167
+ -67 80 -38 -21
diff --git a/profiles/urochordates/MA1922.1.pwm b/profiles/urochordates/MA1922.1.pwm
index 1a28a13..de9bd2a 100644
--- a/profiles/urochordates/MA1922.1.pwm
+++ b/profiles/urochordates/MA1922.1.pwm
@@ -1,20 +1,20 @@
- 22 -42 16 -4
- 56 -38 -16 -20
- 14 -11 -3 0
- 15 -23 9 -5
- 30 -70 23 -3
- 149 -272 -57 -146
- -61 -157 135 -115
- -464 -451 196 -497
- -497 -227 -465 190
- -538 -564 197 -516
- -216 -168 -406 177
- -213 -112 140 -56
- 192 -451 -332 -365
- 77 -63 -101 20
- 23 -64 -71 65
- -5 -37 -101 82
- 49 11 -92 -1
- 48 34 -121 -14
- 42 91 -83 -216
- 68 65 -135 -120
+ 21 -41 16 -4
+ 54 -37 -16 -20
+ 13 -11 -3 0
+ 15 -22 9 -5
+ 29 -67 22 -3
+ 146 -249 -55 -138
+ -59 -149 133 -109
+ -385 -377 192 -402
+ -402 -211 -385 186
+ -421 -432 194 -411
+ -201 -159 -349 174
+ -199 -107 137 -54
+ 188 -377 -297 -321
+ 75 -60 -97 20
+ 23 -62 -68 64
+ -5 -35 -97 80
+ 48 10 -88 -1
+ 46 33 -115 -13
+ 41 89 -79 -201
+ 66 63 -128 -114
diff --git a/profiles/urochordates/MA1923.1.pwm b/profiles/urochordates/MA1923.1.pwm
index e69de29..52e7de3 100644
--- a/profiles/urochordates/MA1923.1.pwm
+++ b/profiles/urochordates/MA1923.1.pwm
@@ -0,0 +1,20 @@
+ -82 78 -32 -13
+ 60 -61 5 -33
+ -73 35 34 -22
+ -36 53 4 -41
+ -41 -17 -43 69
+ -15 7 37 -41
+ 49 11 -9 -78
+ -284 191 -444 -393
+ 192 -385 -362 -402
+ -316 157 -88 -141
+ -208 174 -152 -370
+ -332 -293 -280 186
+ -289 -343 181 -188
+ -30 18 -13 19
+ -23 67 -40 -33
+ 78 -15 -48 -58
+ -34 57 -1 -45
+ -7 77 -28 -95
+ -31 30 -105 56
+ 9 -7 60 -109
diff --git a/profiles/urochordates/MA1924.1.pwm b/profiles/urochordates/MA1924.1.pwm
index e69de29..54a85ef 100644
--- a/profiles/urochordates/MA1924.1.pwm
+++ b/profiles/urochordates/MA1924.1.pwm
@@ -0,0 +1,20 @@
+ 18 -16 -28 20
+ 19 -12 -28 16
+ 26 -19 -29 14
+ 31 -29 -29 17
+ 26 -35 -28 26
+ 3 -9 -32 31
+ -6 20 -84 41
+ 165 -176 -223 -147
+ 166 -211 -231 -129
+ -211 -281 -311 181
+ -190 -259 -284 178
+ 179 -311 -234 -213
+ 174 -226 -237 -190
+ 36 -31 -64 34
+ 18 -28 -33 32
+ 28 -35 -4 4
+ 23 -17 -13 4
+ 34 -18 -37 11
+ 29 -21 -40 21
+ 25 -20 -35 21
diff --git a/profiles/urochordates/MA1925.1.pwm b/profiles/urochordates/MA1925.1.pwm
index bd15780..ae7f78a 100644
--- a/profiles/urochordates/MA1925.1.pwm
+++ b/profiles/urochordates/MA1925.1.pwm
@@ -1,20 +1,20 @@
- 37 -49 -45 34
- 39 -46 -43 28
- 29 -40 -40 33
- 9 -34 -47 51
- 19 -40 -41 44
- 58 -44 -35 -3
- 54 -51 -32 6
- -127 -151 -174 155
- -229 -235 -332 181
- 181 -306 -229 -251
- 186 -344 -316 -251
- -251 -306 -321 185
- -235 -221 -261 178
- 75 -95 -32 1
- 38 -46 -10 6
- 11 -24 -34 36
- -5 -38 -42 60
- 16 -36 -42 44
- 35 -50 -42 35
- 18 -45 -39 46
+ 36 -47 -43 33
+ 38 -44 -41 28
+ 28 -38 -38 32
+ 9 -32 -45 49
+ 18 -39 -40 42
+ 57 -43 -34 -3
+ 53 -49 -31 5
+ -120 -143 -164 152
+ -213 -218 -297 178
+ 178 -277 -213 -231
+ 182 -306 -284 -231
+ -231 -277 -289 181
+ -218 -206 -240 174
+ 73 -91 -31 1
+ 37 -44 -10 5
+ 10 -23 -32 35
+ -5 -37 -40 59
+ 16 -35 -41 43
+ 34 -48 -40 34
+ 17 -43 -37 44
diff --git a/profiles/urochordates/MA1926.1.pwm b/profiles/urochordates/MA1926.1.pwm
index e69de29..8b93c79 100644
--- a/profiles/urochordates/MA1926.1.pwm
+++ b/profiles/urochordates/MA1926.1.pwm
@@ -0,0 +1,20 @@
+ 13 -2 -7 -5
+ 5 5 -12 2
+ 27 -32 -11 9
+ 35 -59 11 -3
+ 65 -100 66 -150
+ -76 -23 -113 107
+ -234 178 -237 -252
+ 194 -421 -411 -411
+ -402 190 -402 -277
+ -301 -393 191 -402
+ -402 -402 -421 193
+ -385 -332 191 -393
+ 139 -167 -57 -136
+ -155 74 -113 61
+ 10 12 -62 25
+ 21 -9 -34 15
+ 16 -10 2 -9
+ 11 -7 -3 -2
+ 9 -4 -6 1
+ 10 -3 -5 -2
diff --git a/profiles/urochordates/MA1927.1.pwm b/profiles/urochordates/MA1927.1.pwm
index e489f96..8921d1a 100644
--- a/profiles/urochordates/MA1927.1.pwm
+++ b/profiles/urochordates/MA1927.1.pwm
@@ -1,22 +1,22 @@
- -4 12 16 -29
- 9 -16 20 -17
- -54 -28 63 -8
- -56 108 -47 -105
- -77 98 19 -176
- -104 -135 118 -22
- -197 173 -216 -238
- -235 188 -397 -380
- 186 -479 -338 -213
- -132 -372 -451 180
- 104 -292 -216 67
- 191 -516 -406 -265
- -497 -427 -497 196
- -497 -638 198 -565
- -357 -397 188 -254
- -33 132 -216 -104
- -211 -13 118 -78
- -113 -86 120 -54
- -6 70 -49 -50
- -28 26 -8 4
- -55 10 29 3
- -34 10 -7 24
+ -3 11 16 -28
+ 9 -15 20 -16
+ -52 -27 61 -8
+ -54 106 -45 -100
+ -74 96 19 -165
+ -99 -128 115 -21
+ -184 170 -201 -221
+ -218 184 -343 -332
+ 183 -393 -301 -199
+ -126 -326 -377 177
+ 102 -266 -201 65
+ 187 -411 -349 -243
+ -402 -362 -402 192
+ -402 -456 194 -432
+ -316 -343 185 -234
+ -32 129 -201 -99
+ -197 -12 116 -74
+ -108 -82 118 -52
+ -6 68 -47 -48
+ -27 26 -7 3
+ -53 10 28 3
+ -32 10 -7 24
diff --git a/profiles/vertebrates/MA0002.1.pwm b/profiles/vertebrates/MA0002.1.pwm
index c20d0e0..1a96846 100644
--- a/profiles/vertebrates/MA0002.1.pwm
+++ b/profiles/vertebrates/MA0002.1.pwm
@@ -1,11 +1,11 @@
- 62 -170 -112 76
- 88 -170 -270 76
- -70 11 -270 111
- -270 -270 -10000 188
- -170 -10000 182 -270
- -170 30 -10000 130
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -270 -10000 194
- 30 -170 -10000 130
- 100 -170 -70 11
+ 54 -125 -86 66
+ 77 -125 -177 66
+ -56 9 -177 97
+ -177 -177 -261 170
+ -125 -261 164 -177
+ -125 25 -261 115
+ -261 -261 181 -261
+ -261 -261 181 -261
+ -261 -177 -261 176
+ 25 -125 -261 115
+ 88 -125 -56 9
diff --git a/profiles/vertebrates/MA0002.2.pwm b/profiles/vertebrates/MA0002.2.pwm
index 44ce4f6..be8f1d6 100644
--- a/profiles/vertebrates/MA0002.2.pwm
+++ b/profiles/vertebrates/MA0002.2.pwm
@@ -1,11 +1,11 @@
- -80 -1 48 6
- -110 -4 -10 70
- -202 110 -175 39
- -313 -10000 -616 195
- -10000 -274 190 -324
- -252 -198 -284 178
- -10000 -10000 199 -527
- -488 -357 189 -243
- -564 -32 -99 142
- -193 -11 -263 141
- 0 -166 -79 107
+ -78 -1 47 6
+ -106 -4 -10 69
+ -193 108 -167 38
+ -291 -551 -481 193
+ -551 -257 188 -299
+ -238 -189 -265 176
+ -551 -551 197 -440
+ -418 -326 186 -229
+ -459 -31 -96 140
+ -185 -11 -247 139
+ 0 -160 -77 106
diff --git a/profiles/vertebrates/MA0003.1.pwm b/profiles/vertebrates/MA0003.1.pwm
index e69de29..a108ebb 100644
--- a/profiles/vertebrates/MA0003.1.pwm
+++ b/profiles/vertebrates/MA0003.1.pwm
@@ -0,0 +1,9 @@
+ -387 -387 192 -387
+ -387 192 -387 -387
+ -387 192 -387 -387
+ -97 58 -1 -1
+ -115 28 38 5
+ 23 -7 50 -115
+ 18 -57 93 -179
+ -115 -136 150 -160
+ -200 71 73 -115
diff --git a/profiles/vertebrates/MA0003.2.pwm b/profiles/vertebrates/MA0003.2.pwm
index 7ebbe78..d834cc7 100644
--- a/profiles/vertebrates/MA0003.2.pwm
+++ b/profiles/vertebrates/MA0003.2.pwm
@@ -1,15 +1,15 @@
- 12 35 -58 -5
- 75 -27 -69 -21
- -81 24 -53 64
- 25 -130 -37 70
- -451 -9 154 -328
- -10000 200 -10000 -10000
- -10000 190 -10000 -192
- -436 45 -391 133
- -188 110 43 -205
- 155 -243 -47 -264
- -147 -10000 186 -10000
- -10000 -10000 200 -10000
- -346 18 144 -392
- -150 153 -145 -132
- 130 -89 -292 -22
+ 12 35 -57 -5
+ 74 -26 -67 -20
+ -79 24 -52 63
+ 25 -127 -37 70
+ -413 -9 153 -312
+ -618 198 -618 -618
+ -618 189 -618 -187
+ -402 44 -365 132
+ -183 109 42 -199
+ 154 -235 -46 -254
+ -144 -618 185 -618
+ -618 -618 198 -618
+ -327 18 143 -367
+ -146 151 -142 -129
+ 129 -87 -280 -22
diff --git a/profiles/vertebrates/MA0003.3.pwm b/profiles/vertebrates/MA0003.3.pwm
index bfb7a80..b996f82 100644
--- a/profiles/vertebrates/MA0003.3.pwm
+++ b/profiles/vertebrates/MA0003.3.pwm
@@ -1,11 +1,11 @@
- 36 55 -226 6
- -333 -50 166 -487
- -10000 196 -329 -10000
- -10000 192 -699 -232
- -533 31 -101 116
- -121 102 28 -160
- 146 -42 -110 -457
- -69 -287 170 -10000
- -10000 -543 199 -10000
- -543 182 -120 -600
- 49 -73 -4 2
+ 36 54 -219 6
+ -316 -50 165 -441
+ -622 195 -313 -622
+ -626 191 -559 -224
+ -471 31 -99 115
+ -118 101 28 -156
+ 144 -41 -108 -417
+ -68 -277 169 -648
+ -619 -477 198 -619
+ -478 180 -118 -510
+ 49 -72 -3 2
diff --git a/profiles/vertebrates/MA0003.4.pwm b/profiles/vertebrates/MA0003.4.pwm
index c9f3439..7125889 100644
--- a/profiles/vertebrates/MA0003.4.pwm
+++ b/profiles/vertebrates/MA0003.4.pwm
@@ -1,14 +1,14 @@
- 12 4 3 -20
- -53 21 -24 38
- -49 -60 -7 75
- -188 -14 132 -161
- -383 194 -442 -447
- -510 194 -423 -379
- -384 -177 -241 179
- -291 176 -151 -301
- 176 -243 -170 -320
- -442 -420 195 -491
- -470 -409 195 -466
- -171 124 4 -173
- 8 26 -39 -3
- 38 -3 -6 -41
+ 12 4 3 -20
+ -53 21 -24 38
+ -49 -59 -7 74
+ -185 -14 131 -159
+ -369 193 -420 -425
+ -477 193 -405 -365
+ -370 -174 -236 178
+ -284 175 -148 -293
+ 176 -238 -167 -311
+ -421 -402 194 -461
+ -444 -392 194 -441
+ -168 124 4 -170
+ 8 26 -38 -3
+ 38 -3 -6 -40
diff --git a/profiles/vertebrates/MA0004.1.pwm b/profiles/vertebrates/MA0004.1.pwm
index e69de29..dcb31e5 100644
--- a/profiles/vertebrates/MA0004.1.pwm
+++ b/profiles/vertebrates/MA0004.1.pwm
@@ -0,0 +1,6 @@
+ -26 148 -245 -245
+ 172 -245 -153 -245
+ -245 179 -245 -245
+ -245 -245 179 -245
+ -245 -245 -245 179
+ -245 -245 179 -245
diff --git a/profiles/vertebrates/MA0006.1.pwm b/profiles/vertebrates/MA0006.1.pwm
index e69de29..a937205 100644
--- a/profiles/vertebrates/MA0006.1.pwm
+++ b/profiles/vertebrates/MA0006.1.pwm
@@ -0,0 +1,6 @@
+ -77 35 -116 76
+ -256 -256 175 -170
+ -256 175 -256 -170
+ -256 -256 175 -170
+ -256 -256 -256 180
+ -256 -256 180 -256
diff --git a/profiles/vertebrates/MA0007.1.pwm b/profiles/vertebrates/MA0007.1.pwm
index 7ddfa86..d025a89 100644
--- a/profiles/vertebrates/MA0007.1.pwm
+++ b/profiles/vertebrates/MA0007.1.pwm
@@ -1,22 +1,22 @@
- 58 22 -158 0
- 58 -158 -100 74
- 87 -100 -100 22
- 142 -258 22 -10000
- -10000 -10000 187 -158
- 100 0 -258 -26
- 181 -158 -10000 -258
- -10000 200 -10000 -10000
- 132 -10000 42 -258
- -58 58 -158 58
- -26 87 -158 0
- 0 58 58 -10000
- -100 -26 -258 132
- -10000 -10000 200 -10000
- -58 -10000 -10000 174
- 87 -26 -258 22
- -258 187 -258 -10000
- -100 142 -258 -58
- 0 22 -26 0
- 0 -26 58 -58
- 74 87 -10000 -100
- -26 87 0 -158
+ 50 19 -116 0
+ 50 -116 -77 64
+ 76 -77 -77 19
+ 125 -170 19 -256
+ -256 -256 168 -116
+ 87 0 -170 -21
+ 162 -116 -256 -170
+ -256 180 -256 -256
+ 117 -256 35 -170
+ -47 50 -116 50
+ -21 76 -116 0
+ 0 50 50 -256
+ -77 -21 -170 117
+ -256 -256 180 -256
+ -47 -256 -256 155
+ 76 -21 -170 19
+ -170 168 -170 -256
+ -77 125 -170 -47
+ 0 19 -21 0
+ 0 -21 50 -47
+ 64 76 -256 -77
+ -21 76 0 -116
diff --git a/profiles/vertebrates/MA0007.2.pwm b/profiles/vertebrates/MA0007.2.pwm
index d0ddd61..e42848c 100644
--- a/profiles/vertebrates/MA0007.2.pwm
+++ b/profiles/vertebrates/MA0007.2.pwm
@@ -1,15 +1,15 @@
- 116 -133 12 -187
- 121 -10000 75 -10000
- -10000 -10000 200 -10000
- 121 -110 -116 -36
- 200 -10000 -10000 -10000
- -675 199 -543 -10000
- 190 -10000 -471 -206
- -92 9 52 -4
- 64 -42 -38 -10
- 24 21 23 -105
- 21 -430 -320 142
- -10000 -242 193 -10000
- -34 -115 -206 133
- -8 -20 -19 38
- -81 133 -323 -30
+ 116 -131 12 -183
+ 121 -674 74 -674
+ -674 -674 199 -674
+ 120 -109 -114 -35
+ 199 -674 -674 -674
+ -575 198 -495 -674
+ 189 -674 -441 -202
+ -91 9 52 -4
+ 63 -41 -38 -10
+ 24 21 23 -103
+ 21 -407 -309 142
+ -674 -236 192 -674
+ -34 -113 -202 133
+ -8 -20 -19 38
+ -80 132 -312 -30
diff --git a/profiles/vertebrates/MA0007.3.pwm b/profiles/vertebrates/MA0007.3.pwm
index 0cab446..9777c1a 100644
--- a/profiles/vertebrates/MA0007.3.pwm
+++ b/profiles/vertebrates/MA0007.3.pwm
@@ -1,17 +1,17 @@
- 50 -222 100 -144
- 23 -555 147 -539
- -691 -10000 199 -733
- 83 -121 -187 61
- 199 -677 -750 -750
- -710 199 -678 -810
- 180 -485 -108 -571
- -163 99 -91 21
- -25 -13 57 -39
- 7 -153 121 -180
- -443 -136 -648 183
- -10000 -782 200 -982
- -499 -745 -10000 199
- 86 -255 -152 73
- -628 199 -10000 -609
- -423 136 -823 46
- -69 65 -102 39
+ 49 -213 99 -140
+ 23 -475 146 -466
+ -553 -622 198 -567
+ 81 -118 -180 60
+ 197 -494 -511 -511
+ -504 197 -496 -522
+ 177 -415 -104 -461
+ -157 98 -88 20
+ -25 -13 56 -38
+ 6 -148 120 -174
+ -397 -132 -510 181
+ -613 -575 198 -602
+ -434 -538 -576 197
+ 85 -242 -146 72
+ -479 196 -541 -472
+ -377 134 -534 45
+ -68 64 -99 39
diff --git a/profiles/vertebrates/MA0009.1.pwm b/profiles/vertebrates/MA0009.1.pwm
index ccf1e4b..4f63c29 100644
--- a/profiles/vertebrates/MA0009.1.pwm
+++ b/profiles/vertebrates/MA0009.1.pwm
@@ -1,11 +1,11 @@
- -232 149 -32 -232
- -332 -332 -10000 193
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -232 -10000 193
- -332 -51 149 -132
- 200 -10000 -10000 -10000
- 163 -100 -10000 -132
+ -169 135 -27 -169
+ -217 -217 -287 177
+ 184 -287 -287 -287
+ -287 -287 184 -287
+ -287 -287 184 -287
+ -287 -287 -287 184
+ -287 -287 184 -287
+ -287 -169 -287 177
+ -217 -43 135 -105
+ 184 -287 -287 -287
+ 149 -82 -287 -105
diff --git a/profiles/vertebrates/MA0009.2.pwm b/profiles/vertebrates/MA0009.2.pwm
index 2fe96b2..9347e0c 100644
--- a/profiles/vertebrates/MA0009.2.pwm
+++ b/profiles/vertebrates/MA0009.2.pwm
@@ -1,16 +1,16 @@
- -510 -351 -634 195
- 6 115 -70 -308
- 147 -464 4 -266
- -10000 200 -10000 -936
- 195 -10000 -291 -10000
- -274 181 -372 -187
- -1 95 -46 -150
- -167 -171 -323 171
- 168 -342 -140 -164
- -147 -56 98 -2
- -167 -397 179 -253
- -10000 -320 -707 196
- -731 -10000 200 -10000
- -214 8 -501 143
- -279 -106 145 -64
- 195 -649 -328 -599
+ -462 -334 -537 194
+ 6 115 -69 -298
+ 146 -419 4 -255
+ -596 198 -596 -584
+ 193 -566 -274 -566
+ -263 179 -348 -181
+ -1 94 -45 -148
+ -164 -168 -310 170
+ 166 -321 -136 -159
+ -145 -55 97 -2
+ -164 -377 178 -246
+ -637 -306 -568 194
+ -585 -650 199 -650
+ -210 8 -463 142
+ -272 -105 144 -63
+ 193 -504 -305 -484
diff --git a/profiles/vertebrates/MA0014.1.pwm b/profiles/vertebrates/MA0014.1.pwm
index ab0ae9d..9f79e5f 100644
--- a/profiles/vertebrates/MA0014.1.pwm
+++ b/profiles/vertebrates/MA0014.1.pwm
@@ -1,20 +1,20 @@
- 42 -158 42 0
- 42 -10000 142 -10000
- 42 0 0 -58
- -158 -58 74 42
- -58 122 -158 -58
- 122 -58 -158 -58
- -58 74 0 -58
- -10000 0 -58 122
- -158 -58 142 -158
- 100 -158 0 -58
- 100 -10000 -58 42
- -10000 -10000 200 -10000
- -58 142 -158 -158
- 0 -10000 158 -10000
- -158 -10000 42 122
- 100 -158 74 -10000
- 74 -158 74 -158
- -58 174 -10000 -10000
- -58 74 74 -10000
- 74 -10000 100 -158
+ 33 -105 33 0
+ 33 -216 120 -216
+ 33 0 0 -43
+ -105 -43 60 33
+ -43 102 -105 -43
+ 102 -43 -105 -43
+ -43 60 0 -43
+ -216 0 -43 102
+ -105 -43 120 -105
+ 83 -105 0 -43
+ 83 -216 -43 33
+ -216 -216 173 -216
+ -43 120 -105 -105
+ 0 -216 135 -216
+ -105 -216 33 102
+ 83 -105 60 -216
+ 60 -105 60 -105
+ -43 149 -216 -216
+ -43 60 60 -216
+ 60 -216 83 -105
diff --git a/profiles/vertebrates/MA0014.2.pwm b/profiles/vertebrates/MA0014.2.pwm
index 892bd50..22c8f6d 100644
--- a/profiles/vertebrates/MA0014.2.pwm
+++ b/profiles/vertebrates/MA0014.2.pwm
@@ -1,19 +1,19 @@
- 22 3 57 -160
- 49 -192 -1 42
- 46 -290 129 -422
- 13 -60 58 -42
- -10000 -41 102 28
- -252 172 -10000 -89
- 177 -342 -143 -311
- -56 -46 125 -222
- -464 126 -268 49
- -36 90 39 -464
- 127 -481 62 -681
- 126 -372 -28 -51
- -10000 -6 160 -681
- -622 175 -372 -84
- 50 -372 127 -335
- -55 -245 -53 129
- 1 -522 156 -522
- 139 -276 -1 -205
- -56 157 -316 -211
+ 21 2 56 -151
+ 48 -180 -1 41
+ 45 -263 126 -357
+ 13 -57 57 -41
+ -495 -39 100 27
+ -232 168 -495 -85
+ 174 -302 -136 -279
+ -54 -44 122 -206
+ -381 124 -245 47
+ -35 88 38 -381
+ 125 -390 60 -461
+ 123 -324 -27 -49
+ -495 -6 157 -461
+ -446 171 -324 -81
+ 49 -324 124 -297
+ -53 -226 -51 126
+ 1 -410 153 -410
+ 136 -252 -1 -191
+ -54 154 -283 -196
diff --git a/profiles/vertebrates/MA0014.3.pwm b/profiles/vertebrates/MA0014.3.pwm
index f5c85b2..00a9181 100644
--- a/profiles/vertebrates/MA0014.3.pwm
+++ b/profiles/vertebrates/MA0014.3.pwm
@@ -1,12 +1,12 @@
- 61 -98 71 -162
- 82 -125 0 -31
- -429 -123 180 -488
- -429 185 -338 -207
- -167 -333 182 -394
- -191 -200 -356 177
- -446 -325 194 -646
- 182 -318 -233 -256
- -346 189 -263 -429
- -235 161 -158 -129
- 9 20 -18 -15
- -42 19 2 13
+ 60 -94 70 -154
+ 81 -120 0 -30
+ -373 -118 178 -408
+ -373 183 -306 -196
+ -159 -303 179 -348
+ -181 -190 -320 174
+ -383 -297 191 -476
+ 179 -290 -219 -238
+ -313 186 -245 -373
+ -221 159 -151 -124
+ 9 19 -17 -15
+ -41 19 2 13
diff --git a/profiles/vertebrates/MA0017.1.pwm b/profiles/vertebrates/MA0017.1.pwm
index e69de29..9341940 100644
--- a/profiles/vertebrates/MA0017.1.pwm
+++ b/profiles/vertebrates/MA0017.1.pwm
@@ -0,0 +1,14 @@
+ -220 -220 -52 152
+ -113 -220 164 -220
+ 164 -220 -113 -220
+ 73 93 -220 -220
+ -220 174 -220 -220
+ -220 -9 -220 139
+ -220 -52 -220 152
+ -113 -220 -220 164
+ -52 -220 152 -220
+ 73 24 -9 -220
+ 73 51 -113 -113
+ -113 139 -113 -113
+ -9 73 -220 24
+ -220 -9 -9 93
diff --git a/profiles/vertebrates/MA0017.2.pwm b/profiles/vertebrates/MA0017.2.pwm
index e69de29..17b075b 100644
--- a/profiles/vertebrates/MA0017.2.pwm
+++ b/profiles/vertebrates/MA0017.2.pwm
@@ -0,0 +1,13 @@
+ -29 96 -84 -56
+ 126 -82 -136 -62
+ 106 -286 69 -261
+ 146 -663 30 -663
+ -660 -564 199 -660
+ -660 -660 199 -660
+ -660 -660 -660 199
+ -660 199 -660 -660
+ 198 -661 -465 -661
+ 76 2 -89 -40
+ 10 -2 54 -102
+ 12 -28 36 -31
+ -110 -206 159 -181
diff --git a/profiles/vertebrates/MA0018.1.pwm b/profiles/vertebrates/MA0018.1.pwm
index 41d119d..c1934aa 100644
--- a/profiles/vertebrates/MA0018.1.pwm
+++ b/profiles/vertebrates/MA0018.1.pwm
@@ -1,12 +1,12 @@
- -10000 81 32 0
- -42 32 0 0
- -10000 -42 58 81
- -100 -42 146 -10000
- 32 -200 81 -42
- -10000 -10000 -10000 200
- -10000 -10000 191 -200
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -200 32 -10000 132
- 32 58 -42 -100
+ -232 68 26 0
+ -32 26 0 0
+ -232 -32 49 68
+ -74 -32 126 -232
+ 26 -132 68 -32
+ -232 -232 -232 177
+ -232 -232 168 -132
+ 177 -232 -232 -232
+ -232 177 -232 -232
+ -232 -232 177 -232
+ -132 26 -232 114
+ 26 49 -32 -74
diff --git a/profiles/vertebrates/MA0018.2.pwm b/profiles/vertebrates/MA0018.2.pwm
index e69de29..2c8bf2c 100644
--- a/profiles/vertebrates/MA0018.2.pwm
+++ b/profiles/vertebrates/MA0018.2.pwm
@@ -0,0 +1,8 @@
+ -211 -97 -97 146
+ -211 -97 160 -211
+ 172 -211 -211 -211
+ -211 146 -34 -211
+ -97 -211 160 -211
+ -211 10 -211 130
+ -34 113 -97 -97
+ 130 -211 -97 -34
diff --git a/profiles/vertebrates/MA0018.3.pwm b/profiles/vertebrates/MA0018.3.pwm
index e69de29..06ffd12 100644
--- a/profiles/vertebrates/MA0018.3.pwm
+++ b/profiles/vertebrates/MA0018.3.pwm
@@ -0,0 +1,12 @@
+ -20 -18 38 -8
+ 33 -10 56 -159
+ -327 -324 -350 189
+ -390 -318 189 -320
+ 190 -424 -283 -369
+ -326 168 -195 -118
+ -118 -195 168 -326
+ -369 -283 -424 190
+ -320 189 -318 -390
+ 189 -350 -324 -327
+ -159 56 -10 33
+ -8 38 -18 -20
diff --git a/profiles/vertebrates/MA0018.4.pwm b/profiles/vertebrates/MA0018.4.pwm
index e69de29..9e6805c 100644
--- a/profiles/vertebrates/MA0018.4.pwm
+++ b/profiles/vertebrates/MA0018.4.pwm
@@ -0,0 +1,13 @@
+ 11 -16 -35 31
+ 8 -40 9 17
+ 52 -61 48 -97
+ -333 -426 -408 192
+ -347 -307 186 -272
+ 188 -346 -326 -309
+ -314 -49 -164 151
+ -375 -334 190 -339
+ -116 -394 -397 177
+ -247 185 -315 -338
+ 193 -420 -395 -368
+ -95 12 -42 72
+ 18 14 -55 12
diff --git a/profiles/vertebrates/MA0019.1.pwm b/profiles/vertebrates/MA0019.1.pwm
index eed6b9c..04b6217 100644
--- a/profiles/vertebrates/MA0019.1.pwm
+++ b/profiles/vertebrates/MA0019.1.pwm
@@ -1,12 +1,12 @@
- 52 -48 30 -70
- 17 -48 52 -48
- 88 -170 62 -170
- -10000 -329 -10000 196
- -10000 -10000 196 -329
- -129 176 -10000 -229
- 196 -329 -10000 -10000
- 188 -229 -329 -10000
- -10000 -70 -10000 176
- 52 80 -96 -170
- -129 124 -12 -170
- -10000 142 -70 -48
+ 46 -40 26 -58
+ 15 -40 46 -40
+ 79 -131 55 -131
+ -286 -214 -286 181
+ -286 -286 181 -214
+ -102 161 -286 -167
+ 181 -214 -286 -286
+ 173 -167 -214 -286
+ -286 -58 -286 161
+ 46 71 -79 -131
+ -102 112 -10 -131
+ -286 128 -58 -40
diff --git a/profiles/vertebrates/MA0024.1.pwm b/profiles/vertebrates/MA0024.1.pwm
index 880267c..eccc3b1 100644
--- a/profiles/vertebrates/MA0024.1.pwm
+++ b/profiles/vertebrates/MA0024.1.pwm
@@ -1,8 +1,8 @@
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 68 126 -10000
- -10000 -32 168 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 185 -132 -10000
+ -206 -206 -206 171
+ -206 -206 -206 171
+ -206 -206 -206 171
+ -206 54 105 -206
+ -206 -24 142 -206
+ -206 171 -206 -206
+ -206 -206 171 -206
+ -206 157 -88 -206
diff --git a/profiles/vertebrates/MA0024.2.pwm b/profiles/vertebrates/MA0024.2.pwm
index e69de29..8d4aa34 100644
--- a/profiles/vertebrates/MA0024.2.pwm
+++ b/profiles/vertebrates/MA0024.2.pwm
@@ -0,0 +1,11 @@
+ -3 25 8 -37
+ -27 -507 122 -30
+ -84 5 125 -507
+ -507 -507 197 -507
+ -507 197 -507 -507
+ -507 -507 197 -507
+ -507 34 142 -507
+ -507 11 152 -507
+ 197 -507 -507 -507
+ 92 -507 103 -507
+ 20 2 85 -507
diff --git a/profiles/vertebrates/MA0024.3.pwm b/profiles/vertebrates/MA0024.3.pwm
index 37ccad0..2c6f417 100644
--- a/profiles/vertebrates/MA0024.3.pwm
+++ b/profiles/vertebrates/MA0024.3.pwm
@@ -1,12 +1,12 @@
- -1 -115 -152 114
- -9 -248 -136 132
- -29 -282 -81 130
- -223 -184 181 -799
- -10000 -294 195 -10000
- -10000 200 -10000 -623
- -10000 -798 200 -10000
- -625 195 -316 -10000
- -10000 178 -187 -175
- 133 -29 -338 -81
- 130 -138 -184 -19
- 116 -190 -98 -1
+ -1 -110 -145 112
+ -9 -230 -130 129
+ -28 -259 -78 128
+ -209 -173 178 -496
+ -510 -268 192 -510
+ -441 194 -441 -407
+ -514 -495 197 -514
+ -408 190 -271 -443
+ -457 173 -172 -161
+ 130 -28 -298 -77
+ 127 -130 -172 -18
+ 113 -178 -93 -1
diff --git a/profiles/vertebrates/MA0025.1.pwm b/profiles/vertebrates/MA0025.1.pwm
index d9a8fce..4efd293 100644
--- a/profiles/vertebrates/MA0025.1.pwm
+++ b/profiles/vertebrates/MA0025.1.pwm
@@ -1,11 +1,11 @@
- -252 -10000 -10000 194
- -10000 -10000 -152 187
- 194 -10000 -10000 -252
- -10000 48 -10000 138
- -152 -10000 187 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 194 -10000 -252 -10000
- -10000 94 -52 48
- 28 -20 28 -52
- -20 -20 -94 80
+ -166 -254 -254 174
+ -254 -254 -112 168
+ 174 -254 -254 -166
+ -254 40 -254 122
+ -112 -254 168 -254
+ -254 -254 -254 180
+ 180 -254 -254 -254
+ 174 -254 -166 -254
+ -254 81 -42 40
+ 24 -16 24 -42
+ -16 -16 -73 69
diff --git a/profiles/vertebrates/MA0025.2.pwm b/profiles/vertebrates/MA0025.2.pwm
index e69de29..1e14c72 100644
--- a/profiles/vertebrates/MA0025.2.pwm
+++ b/profiles/vertebrates/MA0025.2.pwm
@@ -0,0 +1,13 @@
+ 15 -55 -3 30
+ 65 -56 33 -103
+ -267 -301 -338 186
+ -352 -456 -172 183
+ 189 -449 -249 -362
+ -305 -190 -345 182
+ -195 -352 182 -316
+ -205 106 -356 67
+ 192 -332 -479 -362
+ 192 -432 -386 -350
+ -138 -21 -108 119
+ 41 -3 -47 -5
+ 22 -22 -36 26
diff --git a/profiles/vertebrates/MA0027.1.pwm b/profiles/vertebrates/MA0027.1.pwm
index 0815e6b..d8140b9 100644
--- a/profiles/vertebrates/MA0027.1.pwm
+++ b/profiles/vertebrates/MA0027.1.pwm
@@ -1,11 +1,11 @@
- 68 -132 -32 26
- 100 -32 -32 -132
- 26 -10000 149 -10000
- -10000 -10000 -32 168
- 68 -10000 26 26
- 26 -10000 149 -10000
- 26 -10000 -10000 149
- -32 -132 68 26
- -132 26 26 26
- -132 68 -132 68
- -132 126 -132 -32
+ 54 -88 -24 20
+ 82 -24 -24 -88
+ 20 -206 124 -206
+ -206 -206 -24 142
+ 54 -206 20 20
+ 20 -206 124 -206
+ 20 -206 -206 124
+ -24 -88 54 20
+ -88 20 20 20
+ -88 54 -88 54
+ -88 105 -88 -24
diff --git a/profiles/vertebrates/MA0027.2.pwm b/profiles/vertebrates/MA0027.2.pwm
index e69de29..1ca9ba2 100644
--- a/profiles/vertebrates/MA0027.2.pwm
+++ b/profiles/vertebrates/MA0027.2.pwm
@@ -0,0 +1,8 @@
+ -74 69 8 -45
+ -270 81 -535 105
+ 190 -279 -320 -582
+ 197 -415 -575 -575
+ -574 -574 -574 198
+ -369 -88 -238 167
+ 190 -582 -415 -241
+ -7 -8 74 -122
diff --git a/profiles/vertebrates/MA0028.1.pwm b/profiles/vertebrates/MA0028.1.pwm
index 47fd300..0c8a718 100644
--- a/profiles/vertebrates/MA0028.1.pwm
+++ b/profiles/vertebrates/MA0028.1.pwm
@@ -1,10 +1,10 @@
- 0 0 51 -81
- 51 -22 -22 -22
- 36 -81 51 -49
- -49 144 -281 -122
- -181 178 -281 -281
- -10000 -10000 178 -81
- -281 -10000 195 -10000
- 195 -10000 -281 -10000
- 158 -49 -10000 -181
- 89 -10000 100 -281
+ 0 0 44 -64
+ 44 -18 -18 -18
+ 31 -64 44 -40
+ -40 129 -184 -95
+ -132 161 -184 -184
+ -265 -265 161 -64
+ -184 -265 177 -265
+ 177 -265 -184 -265
+ 142 -40 -265 -132
+ 78 -265 88 -184
diff --git a/profiles/vertebrates/MA0028.2.pwm b/profiles/vertebrates/MA0028.2.pwm
index 8cfaacc..8ca2b07 100644
--- a/profiles/vertebrates/MA0028.2.pwm
+++ b/profiles/vertebrates/MA0028.2.pwm
@@ -1,10 +1,10 @@
- 145 -261 -38 -156
- -332 191 -304 -569
- -501 199 -761 -910
- -10000 -909 200 -878
- -1151 -815 198 -403
- 199 -563 -754 -885
- 192 -518 -765 -248
- -209 -245 183 -545
- -389 -110 -359 176
- 21 -78 59 -42
+ 144 -259 -37 -155
+ -327 191 -300 -539
+ -481 198 -666 -724
+ -769 -723 199 -714
+ -761 -691 197 -393
+ 198 -533 -662 -716
+ 192 -496 -671 -245
+ -207 -242 183 -521
+ -381 -109 -353 175
+ 21 -77 59 -41
diff --git a/profiles/vertebrates/MA0029.1.pwm b/profiles/vertebrates/MA0029.1.pwm
index 3f85bf4..02d8e0f 100644
--- a/profiles/vertebrates/MA0029.1.pwm
+++ b/profiles/vertebrates/MA0029.1.pwm
@@ -1,14 +1,14 @@
- 105 -175 -17 -43
- 157 -275 -175 -75
- -10000 -275 189 -275
- 200 -10000 -10000 -10000
- -275 57 -10000 125
- 200 -10000 -10000 -10000
- 195 -10000 -275 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 -117 -10000 183
- 183 -275 -10000 -175
- 177 -10000 -75 -10000
- -17 5 5 5
- 115 -17 -117 -117
+ 93 -129 -14 -35
+ 140 -181 -129 -60
+ -263 -181 171 -181
+ 181 -263 -263 -263
+ -181 49 -263 110
+ 181 -263 -263 -263
+ 176 -263 -181 -263
+ -263 -263 181 -263
+ 181 -263 -263 -263
+ -263 -90 -263 165
+ 165 -181 -263 -129
+ 159 -263 -60 -263
+ -14 4 4 4
+ 102 -14 -90 -90
diff --git a/profiles/vertebrates/MA0030.1.pwm b/profiles/vertebrates/MA0030.1.pwm
index f53938a..176cf1f 100644
--- a/profiles/vertebrates/MA0030.1.pwm
+++ b/profiles/vertebrates/MA0030.1.pwm
@@ -1,14 +1,14 @@
- -275 57 5 42
- 57 5 -43 -43
- 133 -75 -175 -75
- 89 -49 -49 -49
- -87 100 54 -10000
- 5 -10000 157 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 189 -10000 -175
- 200 -10000 -10000 -10000
- 125 -75 -175 -43
- 5 -75 -17 57
+ -181 49 4 36
+ 49 4 -35 -35
+ 119 -60 -129 -60
+ 79 -40 -40 -40
+ -66 86 45 -239
+ 4 -264 140 -264
+ -264 -264 -264 181
+ 181 -264 -264 -264
+ 181 -264 -264 -264
+ 181 -264 -264 -264
+ -264 171 -264 -129
+ 181 -264 -264 -264
+ 110 -60 -129 -35
+ 4 -60 -14 49
diff --git a/profiles/vertebrates/MA0031.1.pwm b/profiles/vertebrates/MA0031.1.pwm
index e69de29..0d23aa3 100644
--- a/profiles/vertebrates/MA0031.1.pwm
+++ b/profiles/vertebrates/MA0031.1.pwm
@@ -0,0 +1,8 @@
+ -153 -153 157 -153
+ -245 -245 -245 179
+ 172 -153 -245 -245
+ 179 -245 -245 -245
+ 164 -153 -153 -245
+ -153 164 -245 -153
+ 179 -245 -245 -245
+ 41 -97 -57 58
diff --git a/profiles/vertebrates/MA0032.1.pwm b/profiles/vertebrates/MA0032.1.pwm
index 6bb5342..b1c55c3 100644
--- a/profiles/vertebrates/MA0032.1.pwm
+++ b/profiles/vertebrates/MA0032.1.pwm
@@ -1,8 +1,8 @@
- 0 0 32 -42
- -100 32 58 -42
- 0 0 -42 32
- 58 0 32 -200
- 81 -42 -100 0
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
+ 0 0 26 -32
+ -74 26 49 -32
+ 0 0 -32 26
+ 49 0 26 -132
+ 68 -32 -74 0
+ -232 -232 177 -232
+ -232 -232 -232 177
+ 177 -232 -232 -232
diff --git a/profiles/vertebrates/MA0032.2.pwm b/profiles/vertebrates/MA0032.2.pwm
index e69de29..2ddf046 100644
--- a/profiles/vertebrates/MA0032.2.pwm
+++ b/profiles/vertebrates/MA0032.2.pwm
@@ -0,0 +1,11 @@
+ 40 -261 -386 129
+ 147 -276 -30 -187
+ 46 -150 -123 88
+ 4 -368 152 -578
+ -119 -178 -377 168
+ 149 21 -637 -586
+ 198 -503 -705 -567
+ 197 -570 -475 -501
+ -491 90 -456 104
+ 194 -627 -336 -446
+ 34 -174 -222 115
diff --git a/profiles/vertebrates/MA0033.1.pwm b/profiles/vertebrates/MA0033.1.pwm
index 4b72411..bbd91ef 100644
--- a/profiles/vertebrates/MA0033.1.pwm
+++ b/profiles/vertebrates/MA0033.1.pwm
@@ -1,8 +1,8 @@
- 28 -252 -52 94
- 80 -52 -152 28
- 6 -94 6 48
- 118 -52 -52 -152
- -52 80 -152 28
- 187 -10000 -152 -10000
- -10000 -152 -10000 187
- 194 -252 -10000 -10000
+ 24 -166 -42 81
+ 69 -42 -112 24
+ 5 -73 5 40
+ 103 -42 -42 -112
+ -42 69 -112 24
+ 168 -254 -112 -254
+ -254 -112 -254 168
+ 174 -166 -254 -254
diff --git a/profiles/vertebrates/MA0033.2.pwm b/profiles/vertebrates/MA0033.2.pwm
index e69de29..3462074 100644
--- a/profiles/vertebrates/MA0033.2.pwm
+++ b/profiles/vertebrates/MA0033.2.pwm
@@ -0,0 +1,7 @@
+ 76 -535 111 -299
+ -558 -160 -622 186
+ 179 -110 -421 -629
+ 197 -446 -612 -523
+ 195 -364 -420 -614
+ -610 163 -610 -17
+ 196 -410 -612 -515
diff --git a/profiles/vertebrates/MA0035.1.pwm b/profiles/vertebrates/MA0035.1.pwm
index 8f00559..cd5073a 100644
--- a/profiles/vertebrates/MA0035.1.pwm
+++ b/profiles/vertebrates/MA0035.1.pwm
@@ -1,6 +1,6 @@
- -3 8 18 -27
- -10000 -10000 200 -10000
- 192 -273 -10000 -373
- -373 -10000 -373 194
- -3 -114 92 -56
- -114 27 73 -56
+ -2 7 16 -23
+ -305 -305 186 -305
+ 178 -198 -305 -242
+ -242 -305 -242 181
+ -2 -95 83 -48
+ -95 24 66 -48
diff --git a/profiles/vertebrates/MA0035.2.pwm b/profiles/vertebrates/MA0035.2.pwm
index 5ba2bd0..44fc942 100644
--- a/profiles/vertebrates/MA0035.2.pwm
+++ b/profiles/vertebrates/MA0035.2.pwm
@@ -1,11 +1,11 @@
- 51 -84 31 -37
- -50 71 30 -124
- 148 -501 -664 24
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -521 -511 -320 194
- 196 -10000 -738 -322
- 183 -797 -138 -399
- -32 -55 120 -216
- 52 -16 44 -169
- 57 -27 14 -77
+ 50 -82 31 -36
+ -49 70 30 -121
+ 146 -444 -530 23
+ -601 -601 198 -601
+ 198 -601 -601 -601
+ -457 -450 -302 192
+ 194 -601 -554 -305
+ 181 -568 -135 -369
+ -32 -54 119 -208
+ 51 -15 44 -164
+ 57 -27 13 -76
diff --git a/profiles/vertebrates/MA0035.3.pwm b/profiles/vertebrates/MA0035.3.pwm
index e69de29..ec43b1c 100644
--- a/profiles/vertebrates/MA0035.3.pwm
+++ b/profiles/vertebrates/MA0035.3.pwm
@@ -0,0 +1,11 @@
+ -113 -5 -82 101
+ -307 51 -68 87
+ -708 172 -326 -75
+ -708 -263 -708 193
+ -708 -708 -708 199
+ 199 -708 -708 -708
+ -708 -708 -708 199
+ -708 199 -708 -708
+ -104 -708 -708 181
+ -83 46 57 -78
+ -124 18 -147 106
diff --git a/profiles/vertebrates/MA0035.4.pwm b/profiles/vertebrates/MA0035.4.pwm
index e69de29..b3ab1c5 100644
--- a/profiles/vertebrates/MA0035.4.pwm
+++ b/profiles/vertebrates/MA0035.4.pwm
@@ -0,0 +1,11 @@
+ 31 -55 -36 38
+ -5 -31 -69 69
+ -216 179 -270 -268
+ -371 -477 -465 194
+ 147 -454 -429 20
+ 191 -373 -409 -313
+ -299 -379 -472 191
+ -277 187 -355 -323
+ -127 -254 -444 175
+ 56 -68 -32 14
+ 33 -23 -94 45
diff --git a/profiles/vertebrates/MA0036.1.pwm b/profiles/vertebrates/MA0036.1.pwm
index 748cf2f..117269e 100644
--- a/profiles/vertebrates/MA0036.1.pwm
+++ b/profiles/vertebrates/MA0036.1.pwm
@@ -1,5 +1,5 @@
- -3 -3 44 -56
- -10000 -141 186 -10000
- 197 -10000 -373 -10000
- -10000 -10000 -10000 200
- 92 -92 18 -114
+ -2 -2 40 -48
+ -305 -114 173 -305
+ 184 -305 -242 -305
+ -305 -305 -305 186
+ 83 -77 16 -95
diff --git a/profiles/vertebrates/MA0036.2.pwm b/profiles/vertebrates/MA0036.2.pwm
index e69de29..864aeb1 100644
--- a/profiles/vertebrates/MA0036.2.pwm
+++ b/profiles/vertebrates/MA0036.2.pwm
@@ -0,0 +1,14 @@
+ 51 -93 -53 44
+ 4 -50 63 -48
+ 50 -58 15 -32
+ -6 -104 -133 111
+ -452 -5 -51 119
+ -544 145 -26 -128
+ -607 -241 -607 192
+ -404 -607 -607 197
+ 198 -607 -607 -607
+ -607 -607 -607 198
+ -607 198 -607 -607
+ 16 -607 -607 151
+ -320 68 84 -99
+ 20 11 -221 64
diff --git a/profiles/vertebrates/MA0036.3.pwm b/profiles/vertebrates/MA0036.3.pwm
index e69de29..06c6319 100644
--- a/profiles/vertebrates/MA0036.3.pwm
+++ b/profiles/vertebrates/MA0036.3.pwm
@@ -0,0 +1,11 @@
+ -10 -25 -15 41
+ -83 20 -26 54
+ -189 157 -152 -128
+ -292 -363 -432 190
+ -300 -581 -614 194
+ 198 -635 -562 -535
+ -436 -507 -553 196
+ -483 195 -452 -393
+ -58 -278 -317 162
+ -28 6 4 14
+ -12 12 -67 44
diff --git a/profiles/vertebrates/MA0037.1.pwm b/profiles/vertebrates/MA0037.1.pwm
index e69de29..96f135d 100644
--- a/profiles/vertebrates/MA0037.1.pwm
+++ b/profiles/vertebrates/MA0037.1.pwm
@@ -0,0 +1,6 @@
+ 61 -15 -157 31
+ -316 -257 185 -316
+ 183 -316 -257 -257
+ -316 -316 -134 176
+ 121 -257 -157 24
+ -6 -183 114 -83
diff --git a/profiles/vertebrates/MA0037.2.pwm b/profiles/vertebrates/MA0037.2.pwm
index e69de29..247419f 100644
--- a/profiles/vertebrates/MA0037.2.pwm
+++ b/profiles/vertebrates/MA0037.2.pwm
@@ -0,0 +1,8 @@
+ 198 -611 -611 -611
+ -611 -611 198 -611
+ 198 -611 -611 -611
+ -611 -611 -611 198
+ 198 -611 -611 -611
+ 198 -611 -611 -611
+ 15 -611 151 -611
+ 126 -69 -5 -611
diff --git a/profiles/vertebrates/MA0037.3.pwm b/profiles/vertebrates/MA0037.3.pwm
index e69de29..b7ba14c 100644
--- a/profiles/vertebrates/MA0037.3.pwm
+++ b/profiles/vertebrates/MA0037.3.pwm
@@ -0,0 +1,8 @@
+ 98 -14 -486 11
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ 184 -470 -503 -150
+ 175 -349 -162 -223
+ -108 26 91 -114
+ 74 -40 35 -176
diff --git a/profiles/vertebrates/MA0037.4.pwm b/profiles/vertebrates/MA0037.4.pwm
index 4d8472d..01069bc 100644
--- a/profiles/vertebrates/MA0037.4.pwm
+++ b/profiles/vertebrates/MA0037.4.pwm
@@ -1,12 +1,12 @@
- 2 -40 3 27
- 23 -15 -78 43
- -162 -69 -129 140
- -272 166 -152 -160
- -297 -274 -447 188
- -266 -304 -270 183
- 189 -346 -356 -296
- -386 -446 -442 194
- -440 194 -461 -370
- -100 -278 -335 170
- -26 7 11 5
- 0 4 -65 41
+ 2 -40 3 27
+ 23 -15 -77 42
+ -161 -68 -127 140
+ -267 166 -150 -158
+ -291 -269 -429 187
+ -261 -297 -265 183
+ 188 -337 -346 -290
+ -375 -428 -424 193
+ -423 193 -441 -359
+ -99 -273 -327 170
+ -26 7 11 4
+ 0 4 -65 41
diff --git a/profiles/vertebrates/MA0038.1.pwm b/profiles/vertebrates/MA0038.1.pwm
index e69de29..613c2eb 100644
--- a/profiles/vertebrates/MA0038.1.pwm
+++ b/profiles/vertebrates/MA0038.1.pwm
@@ -0,0 +1,10 @@
+ -48 53 -48 16
+ 98 24 -77 -198
+ 186 -305 -305 -305
+ 186 -305 -305 -305
+ -242 -305 -242 181
+ -242 184 -305 -305
+ 112 -77 -198 -2
+ -62 98 -23 -95
+ 47 -23 -198 60
+ -77 -2 98 -114
diff --git a/profiles/vertebrates/MA0038.2.pwm b/profiles/vertebrates/MA0038.2.pwm
index e949899..549b4e9 100644
--- a/profiles/vertebrates/MA0038.2.pwm
+++ b/profiles/vertebrates/MA0038.2.pwm
@@ -1,12 +1,12 @@
- -104 62 -3 0
- 132 40 -324 -376
- 200 -1188 -10000 -10000
- 200 -10000 -10000 -1288
- -10000 -10000 -10000 200
- -897 200 -10000 -956
- 192 -10000 -10000 -227
- -328 177 -106 -10000
- 4 -712 15 89
- -175 -486 183 -312
- -477 181 -10000 -111
- 115 -53 -89 -87
+ -103 62 -3 0
+ 131 40 -317 -366
+ 199 -737 -744 -744
+ 199 -744 -744 -740
+ -744 -744 -744 199
+ -701 199 -744 -714
+ 192 -747 -747 -224
+ -321 177 -105 -754
+ 4 -628 15 89
+ -174 -465 182 -306
+ -458 180 -752 -110
+ 114 -53 -88 -86
diff --git a/profiles/vertebrates/MA0039.1.pwm b/profiles/vertebrates/MA0039.1.pwm
index dc0f5fb..7b559c6 100644
--- a/profiles/vertebrates/MA0039.1.pwm
+++ b/profiles/vertebrates/MA0039.1.pwm
@@ -1,10 +1,10 @@
- 56 -44 -261 71
- 143 -10000 9 -203
- 129 -203 29 -361
- 91 -361 63 -103
- 9 -103 124 -361
- 71 -161 91 -261
- 156 -161 -129 -161
- 139 -261 9 -261
- 9 -361 143 -261
- -261 -361 191 -10000
+ 50 -38 -190 64
+ 131 -300 8 -156
+ 118 -156 26 -235
+ 82 -235 57 -85
+ 8 -85 114 -235
+ 64 -128 82 -190
+ 143 -128 -105 -128
+ 127 -190 8 -190
+ 8 -235 131 -190
+ -190 -235 177 -300
diff --git a/profiles/vertebrates/MA0039.2.pwm b/profiles/vertebrates/MA0039.2.pwm
index 56d04b0..ca5f9dd 100644
--- a/profiles/vertebrates/MA0039.2.pwm
+++ b/profiles/vertebrates/MA0039.2.pwm
@@ -1,10 +1,10 @@
- 44 -374 -8 70
- -362 -691 197 -750
- -628 -638 199 -638
- -628 -492 198 -609
- -197 82 -663 98
- -563 -618 198 -500
- -469 -376 100 91
- -204 -456 185 -312
- -314 -306 181 -191
- -209 140 -195 -21
+ 43 -350 -8 69
+ -340 -543 195 -562
+ -518 -523 197 -523
+ -518 -439 196 -509
+ -191 81 -533 97
+ -484 -513 196 -445
+ -424 -351 99 90
+ -197 -414 183 -296
+ -298 -291 179 -185
+ -202 139 -189 -21
diff --git a/profiles/vertebrates/MA0039.3.pwm b/profiles/vertebrates/MA0039.3.pwm
index e69de29..5356596 100644
--- a/profiles/vertebrates/MA0039.3.pwm
+++ b/profiles/vertebrates/MA0039.3.pwm
@@ -0,0 +1,11 @@
+ 11 97 -90 -121
+ -100 139 -115 -123
+ 190 -352 -328 -359
+ -399 193 -418 -408
+ 174 -468 -93 -352
+ -359 188 -328 -298
+ -277 187 -333 -352
+ -346 191 -441 -333
+ 9 -165 -242 128
+ -38 20 22 -12
+ -7 28 -25 0
diff --git a/profiles/vertebrates/MA0039.4.pwm b/profiles/vertebrates/MA0039.4.pwm
index e69de29..eec8a02 100644
--- a/profiles/vertebrates/MA0039.4.pwm
+++ b/profiles/vertebrates/MA0039.4.pwm
@@ -0,0 +1,12 @@
+ -15 33 3 -28
+ -28 1 40 -24
+ -247 181 -309 -242
+ -269 177 -346 -158
+ -98 170 -324 -279
+ -351 192 -404 -376
+ 170 -599 -107 -200
+ -394 190 -320 -356
+ -306 187 -286 -346
+ -347 187 -372 -242
+ 22 39 -114 10
+ -48 46 5 -19
diff --git a/profiles/vertebrates/MA0040.1.pwm b/profiles/vertebrates/MA0040.1.pwm
index e69de29..240da94 100644
--- a/profiles/vertebrates/MA0040.1.pwm
+++ b/profiles/vertebrates/MA0040.1.pwm
@@ -0,0 +1,11 @@
+ -14 -14 -45 54
+ 134 -143 -45 -143
+ 12 -86 -239 112
+ -45 -239 -239 153
+ -239 -239 178 -239
+ -239 -239 -239 178
+ -239 -239 -239 178
+ -239 -239 -239 178
+ 170 -239 -143 -239
+ -239 -143 -14 134
+ 34 -239 -45 86
diff --git a/profiles/vertebrates/MA0041.1.pwm b/profiles/vertebrates/MA0041.1.pwm
index c9898cf..7b4842a 100644
--- a/profiles/vertebrates/MA0041.1.pwm
+++ b/profiles/vertebrates/MA0041.1.pwm
@@ -1,12 +1,12 @@
- -10 -197 115 -75
- 135 -255 -10000 35
- 103 -355 -10000 90
- -355 -155 -10000 184
- 3 -10000 153 -355
- -10000 -10000 -10000 200
- -355 -10000 -10000 197
- -123 -10000 -23 145
- 25 -10000 84 3
- -97 -75 -10000 153
- -355 -255 -155 177
- -10000 3 -10000 157
+ -8 -151 104 -63
+ 124 -186 -297 31
+ 93 -231 -297 82
+ -231 -124 -297 170
+ 3 -297 141 -231
+ -297 -297 -297 186
+ -231 -297 -297 183
+ -100 -297 -20 132
+ 22 -297 75 3
+ -80 -63 -297 141
+ -231 -186 -124 163
+ -297 3 -297 145
diff --git a/profiles/vertebrates/MA0041.2.pwm b/profiles/vertebrates/MA0041.2.pwm
index 8fb13a0..3a07b6c 100644
--- a/profiles/vertebrates/MA0041.2.pwm
+++ b/profiles/vertebrates/MA0041.2.pwm
@@ -1,16 +1,16 @@
- 74 -123 -199 72
- 119 -163 -2 -126
- 47 -54 -54 31
- 18 -154 122 -231
- 3 17 -360 82
- 170 -51 -572 -472
- 188 -254 -10000 -273
- 192 -550 -269 -450
- -10000 1 -10000 158
- 189 -352 -452 -272
- 177 -219 -265 -219
- 149 -184 -160 -80
- -213 159 -213 -92
- 117 -147 -89 -24
- 89 -117 -10 -37
- -52 3 -67 72
+ 70 -110 -173 68
+ 113 -145 -2 -114
+ 45 -51 -51 29
+ 17 -136 116 -196
+ 3 17 -311 80
+ 163 -47 -360 -332
+ 180 -210 -378 -223
+ 184 -339 -220 -311
+ -366 1 -366 150
+ 181 -270 -313 -222
+ 170 -188 -221 -188
+ 144 -164 -144 -74
+ -186 153 -186 -84
+ 112 -132 -81 -22
+ 83 -103 -9 -34
+ -47 3 -61 68
diff --git a/profiles/vertebrates/MA0042.1.pwm b/profiles/vertebrates/MA0042.1.pwm
index 3957c4c..470e4c9 100644
--- a/profiles/vertebrates/MA0042.1.pwm
+++ b/profiles/vertebrates/MA0042.1.pwm
@@ -1,12 +1,12 @@
- -37 -295 85 37
- -95 5 63 -15
- 51 -95 5 5
- -10000 -10000 -10000 200
- 75 -10000 122 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 95 -10000 105 -10000
- -10000 -10000 -15 163
- 5 -295 -95 122
- -195 -295 -95 163
+ -31 -193 75 32
+ -76 4 55 -12
+ 44 -76 4 4
+ -272 -272 -272 183
+ 65 -272 108 -272
+ -272 -272 -272 183
+ -272 -272 -272 183
+ -272 -272 -272 183
+ 84 -272 93 -272
+ -272 -272 -12 147
+ 4 -193 -76 108
+ -143 -193 -76 147
diff --git a/profiles/vertebrates/MA0042.2.pwm b/profiles/vertebrates/MA0042.2.pwm
index fa3e1e7..b5161b6 100644
--- a/profiles/vertebrates/MA0042.2.pwm
+++ b/profiles/vertebrates/MA0042.2.pwm
@@ -1,7 +1,7 @@
- -124 -522 183 -10000
- -417 -448 -525 195
- 185 -141 -528 -10000
- 199 -582 -10000 -10000
- 197 -585 -551 -433
- -330 174 -501 -93
- 199 -676 -570 -10000
+ -121 -468 181 -631
+ -387 -411 -466 194
+ 183 -138 -471 -629
+ 198 -499 -615 -615
+ 195 -501 -482 -399
+ -316 173 -456 -92
+ 197 -543 -492 -615
diff --git a/profiles/vertebrates/MA0043.1.pwm b/profiles/vertebrates/MA0043.1.pwm
index e611efe..33ea1bd 100644
--- a/profiles/vertebrates/MA0043.1.pwm
+++ b/profiles/vertebrates/MA0043.1.pwm
@@ -1,12 +1,12 @@
- -217 -17 83 15
- 42 -10000 142 -10000
- -217 -10000 -10000 192
- -10000 -10000 -58 174
- 153 -217 -117 -117
- -10000 174 -217 -117
- 42 -10000 142 -10000
- -10000 100 -10000 100
- 153 -17 -217 -10000
- 174 -10000 -217 -117
- -117 -58 -217 142
- 15 15 -58 15
+ -143 -14 70 12
+ 34 -239 123 -239
+ -143 -239 -239 170
+ -239 -239 -45 153
+ 134 -143 -86 -86
+ -239 153 -143 -86
+ 34 -239 123 -239
+ -239 86 -239 86
+ 134 -14 -143 -239
+ 153 -239 -143 -86
+ -86 -45 -143 123
+ 12 12 -45 12
diff --git a/profiles/vertebrates/MA0043.2.pwm b/profiles/vertebrates/MA0043.2.pwm
index 7eaff22..c448bad 100644
--- a/profiles/vertebrates/MA0043.2.pwm
+++ b/profiles/vertebrates/MA0043.2.pwm
@@ -1,12 +1,12 @@
- -32 46 -50 15
- 63 -6 41 -265
- -626 -907 -10000 199
- -666 -400 -129 182
- 179 -10000 -99 -488
- -563 152 -441 9
- 81 -340 110 -651
- -376 -8 -649 157
- 182 -111 -725 -666
- 199 -10000 -675 -626
- -232 96 -118 50
- 27 46 -57 -43
+ -31 45 -48 15
+ 62 -6 41 -253
+ -480 -532 -543 197
+ -505 -361 -125 179
+ 177 -563 -96 -422
+ -477 151 -399 8
+ 81 -323 109 -541
+ -348 -8 -514 155
+ 179 -107 -521 -505
+ 197 -543 -495 -480
+ -222 95 -115 49
+ 26 45 -55 -42
diff --git a/profiles/vertebrates/MA0043.3.pwm b/profiles/vertebrates/MA0043.3.pwm
index e69de29..603954e 100644
--- a/profiles/vertebrates/MA0043.3.pwm
+++ b/profiles/vertebrates/MA0043.3.pwm
@@ -0,0 +1,14 @@
+ 16 -27 -12 18
+ 2 -60 4 37
+ 52 -46 68 -208
+ -420 -445 -504 195
+ -493 -551 -272 192
+ 189 -523 -215 -463
+ -470 -195 -440 187
+ -132 -535 182 -475
+ -391 149 -469 12
+ 198 -525 -614 -549
+ 197 -586 -475 -534
+ -210 111 -88 9
+ 54 7 -92 -5
+ 18 -21 -14 14
diff --git a/profiles/vertebrates/MA0046.1.pwm b/profiles/vertebrates/MA0046.1.pwm
index e69de29..9459b14 100644
--- a/profiles/vertebrates/MA0046.1.pwm
+++ b/profiles/vertebrates/MA0046.1.pwm
@@ -0,0 +1,14 @@
+ -6 -248 124 -102
+ -158 -248 173 -248
+ -158 -248 -248 173
+ -158 -248 -248 173
+ 173 -248 -248 -158
+ 142 -102 -158 -102
+ -158 -248 -248 173
+ 52 -102 -31 35
+ 124 -248 -158 16
+ -102 -248 -248 166
+ -248 -31 -248 150
+ 115 -158 -63 -31
+ 52 52 -63 -102
+ -6 115 -248 -63
diff --git a/profiles/vertebrates/MA0046.2.pwm b/profiles/vertebrates/MA0046.2.pwm
index e69de29..b4bce3e 100644
--- a/profiles/vertebrates/MA0046.2.pwm
+++ b/profiles/vertebrates/MA0046.2.pwm
@@ -0,0 +1,15 @@
+ 55 -53 -2 -23
+ 87 -310 91 -252
+ -335 -193 -215 177
+ -76 -118 -311 151
+ 196 -673 -371 -633
+ 189 -252 -660 -327
+ -161 -314 -670 183
+ -8 8 36 -49
+ 189 -657 -337 -248
+ -242 -648 -218 184
+ -563 -381 -669 196
+ 170 -403 -168 -139
+ 180 -248 -185 -431
+ -151 171 -266 -220
+ 17 -5 -63 34
diff --git a/profiles/vertebrates/MA0047.1.pwm b/profiles/vertebrates/MA0047.1.pwm
index 08dd909..c8e397f 100644
--- a/profiles/vertebrates/MA0047.1.pwm
+++ b/profiles/vertebrates/MA0047.1.pwm
@@ -1,12 +1,12 @@
- 50 72 -50 -209
- 137 -50 -209 -109
- 91 -50 -209 23
- -10000 -209 -10000 191
- 137 -10000 50 -10000
- -10000 -209 -10000 191
- -10000 -209 -10000 191
- -10000 -10000 50 137
- 108 -10000 91 -10000
- -10000 108 -10000 91
- -209 -209 -209 172
- -10000 23 -10000 150
+ 41 60 -39 -138
+ 119 -39 -138 -80
+ 77 -39 -138 19
+ -236 -138 -236 169
+ 119 -236 41 -236
+ -236 -138 -236 169
+ -236 -138 -236 169
+ -236 -236 41 119
+ 93 -236 77 -236
+ -236 93 -236 77
+ -138 -138 -138 151
+ -236 19 -236 130
diff --git a/profiles/vertebrates/MA0047.2.pwm b/profiles/vertebrates/MA0047.2.pwm
index e69de29..05e4135 100644
--- a/profiles/vertebrates/MA0047.2.pwm
+++ b/profiles/vertebrates/MA0047.2.pwm
@@ -0,0 +1,12 @@
+ -469 -469 -469 196
+ 12 -437 149 -437
+ -469 -469 -469 196
+ -469 -437 -228 189
+ -469 -469 -20 161
+ 183 -424 -150 -437
+ -452 180 -452 -125
+ 72 -132 -437 93
+ -187 38 -169 108
+ 102 -399 -275 81
+ -59 -180 123 -50
+ -61 -4 52 -8
diff --git a/profiles/vertebrates/MA0047.3.pwm b/profiles/vertebrates/MA0047.3.pwm
index a7523a0..d4d608c 100644
--- a/profiles/vertebrates/MA0047.3.pwm
+++ b/profiles/vertebrates/MA0047.3.pwm
@@ -1,11 +1,11 @@
- 78 -94 -4 -33
- 52 -240 -77 84
- -180 -448 185 -398
- -413 -501 -512 196
- 190 -280 -463 -338
- 177 -155 -334 -269
- 192 -430 -455 -307
- -476 159 -419 -15
- 191 -441 -446 -280
- 23 -37 -38 36
- 38 -29 -21 2
+ 78 -94 -4 -33
+ 52 -239 -76 84
+ -180 -443 185 -394
+ -409 -492 -502 196
+ 189 -278 -457 -336
+ 177 -154 -331 -267
+ 192 -425 -448 -305
+ -469 159 -414 -15
+ 191 -435 -440 -278
+ 23 -37 -37 36
+ 38 -29 -21 2
diff --git a/profiles/vertebrates/MA0048.1.pwm b/profiles/vertebrates/MA0048.1.pwm
index e69de29..fb8c200 100644
--- a/profiles/vertebrates/MA0048.1.pwm
+++ b/profiles/vertebrates/MA0048.1.pwm
@@ -0,0 +1,12 @@
+ -5 -5 30 -26
+ -5 141 -200 -306
+ -166 -117 134 -50
+ -243 184 -306 -306
+ 186 -306 -306 -306
+ -243 -243 181 -306
+ -243 176 -166 -306
+ -243 -243 -306 181
+ -306 -306 184 -243
+ -166 134 -64 -97
+ -200 -306 134 13
+ -117 30 -15 51
diff --git a/profiles/vertebrates/MA0048.2.pwm b/profiles/vertebrates/MA0048.2.pwm
index e69de29..ce81a2b 100644
--- a/profiles/vertebrates/MA0048.2.pwm
+++ b/profiles/vertebrates/MA0048.2.pwm
@@ -0,0 +1,10 @@
+ -4 140 -209 -273
+ -66 -197 154 -227
+ -511 197 -541 -541
+ 197 -511 -530 -541
+ -565 -107 173 -237
+ -248 184 -215 -554
+ -541 -502 -502 197
+ -520 -502 197 -530
+ -126 156 -269 -103
+ -189 -67 88 34
diff --git a/profiles/vertebrates/MA0050.1.pwm b/profiles/vertebrates/MA0050.1.pwm
index 6ac8b1c..7067986 100644
--- a/profiles/vertebrates/MA0050.1.pwm
+++ b/profiles/vertebrates/MA0050.1.pwm
@@ -1,12 +1,12 @@
- 26 -32 100 -10000
- 193 -10000 -232 -10000
- 193 -10000 -10000 -232
- 200 -10000 -10000 -10000
- 0 -74 114 -232
- -10000 100 -10000 100
- -232 -232 185 -10000
- 200 -10000 -10000 -10000
- 193 -232 -10000 -10000
- 200 -10000 -10000 -10000
- -232 138 26 -10000
- -232 138 -232 0
+ 22 -26 86 -245
+ 172 -245 -153 -245
+ 172 -245 -245 -153
+ 179 -245 -245 -245
+ 0 -57 99 -153
+ -245 86 -245 86
+ -153 -153 164 -245
+ 179 -245 -245 -245
+ 172 -153 -245 -245
+ 179 -245 -245 -245
+ -153 121 22 -245
+ -153 121 -153 0
diff --git a/profiles/vertebrates/MA0050.2.pwm b/profiles/vertebrates/MA0050.2.pwm
index 5ee0649..4961760 100644
--- a/profiles/vertebrates/MA0050.2.pwm
+++ b/profiles/vertebrates/MA0050.2.pwm
@@ -1,21 +1,21 @@
- -11 -9 -36 43
- -44 -26 -44 76
- -98 -7 -68 94
- -130 34 -120 92
- 111 -175 8 -105
- -383 122 57 -309
- -483 -10000 -10000 199
- -10000 -346 -10000 197
- -10000 -260 -641 194
- -10000 188 -10000 -159
- 142 -313 -52 -99
- -409 121 2 -70
- -441 -841 -10000 198
- -560 -460 -609 197
- -495 -255 -10000 192
- -432 159 -360 -21
- 59 -47 -37 0
- -64 45 -23 19
- -123 -87 -158 143
- -78 -82 -178 136
- -104 -4 -117 107
+ -10 -9 -35 42
+ -43 -25 -43 74
+ -94 -7 -66 92
+ -125 33 -115 91
+ 109 -167 8 -101
+ -340 120 56 -283
+ -404 -524 -524 196
+ -524 -312 -524 194
+ -524 -242 -472 191
+ -524 185 -524 -152
+ 140 -286 -50 -95
+ -358 119 2 -67
+ -379 -510 -524 195
+ -443 -391 -462 194
+ -411 -238 -524 190
+ -374 156 -323 -21
+ 58 -46 -36 0
+ -62 44 -22 19
+ -118 -84 -150 141
+ -76 -79 -169 133
+ -100 -4 -113 105
diff --git a/profiles/vertebrates/MA0050.3.pwm b/profiles/vertebrates/MA0050.3.pwm
index e69de29..ff058bf 100644
--- a/profiles/vertebrates/MA0050.3.pwm
+++ b/profiles/vertebrates/MA0050.3.pwm
@@ -0,0 +1,15 @@
+ 104 -88 -82 -25
+ 20 1 -3 -22
+ -7 -157 -93 113
+ -122 -256 169 -251
+ 181 -333 -190 -294
+ 191 -379 -377 -343
+ 192 -425 -386 -339
+ -100 132 -24 -273
+ -103 -203 -369 167
+ -191 -351 183 -359
+ 185 -358 -229 -312
+ 187 -336 -289 -332
+ 185 -331 -263 -290
+ -55 37 61 -101
+ -14 6 -101 63
diff --git a/profiles/vertebrates/MA0051.1.pwm b/profiles/vertebrates/MA0051.1.pwm
index b7416d9..34f3bda 100644
--- a/profiles/vertebrates/MA0051.1.pwm
+++ b/profiles/vertebrates/MA0051.1.pwm
@@ -1,18 +1,18 @@
- -10000 42 122 -158
- -58 -10000 174 -10000
- 200 -10000 -10000 -10000
- 187 -10000 -10000 -158
- 200 -10000 -10000 -10000
- -58 -10000 174 -10000
- -10000 100 -10000 100
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 100 100 -10000
- -10000 122 -58 0
- 74 -58 0 -58
- 100 -10000 -58 42
- 100 -158 -158 42
- 74 -58 -158 42
- 0 100 -158 -58
+ -216 33 102 -105
+ -43 -216 149 -216
+ 173 -216 -216 -216
+ 162 -216 -216 -105
+ 173 -216 -216 -216
+ -43 -216 149 -216
+ -216 83 -216 83
+ -216 -216 173 -216
+ 173 -216 -216 -216
+ 173 -216 -216 -216
+ 173 -216 -216 -216
+ -216 83 83 -216
+ -216 102 -43 0
+ 60 -43 0 -43
+ 83 -216 -43 33
+ 83 -105 -105 33
+ 60 -43 -105 33
+ 0 83 -105 -43
diff --git a/profiles/vertebrates/MA0052.1.pwm b/profiles/vertebrates/MA0052.1.pwm
index e69de29..336e5cf 100644
--- a/profiles/vertebrates/MA0052.1.pwm
+++ b/profiles/vertebrates/MA0052.1.pwm
@@ -0,0 +1,10 @@
+ -250 166 -311 -88
+ -311 -311 -311 187
+ 184 -250 -311 -311
+ -207 -250 -311 179
+ -59 -311 -311 163
+ -105 -311 -311 172
+ 125 -311 -311 48
+ -207 -311 -311 182
+ 182 -311 -207 -311
+ -105 -311 166 -207
diff --git a/profiles/vertebrates/MA0052.2.pwm b/profiles/vertebrates/MA0052.2.pwm
index 980a419..8f7791b 100644
--- a/profiles/vertebrates/MA0052.2.pwm
+++ b/profiles/vertebrates/MA0052.2.pwm
@@ -1,15 +1,15 @@
- 39 -132 4 34
- -112 -131 76 53
- -167 168 -352 -133
- -10000 36 -10000 144
- 179 -244 -472 -163
- 145 -10000 -163 -9
- 191 -10000 -324 -285
- 188 -620 -10000 -167
- 192 -10000 -10000 -215
- -594 -10000 -10000 199
- 200 -10000 -10000 -852
- -67 -291 166 -348
- 67 78 -172 -137
- 53 15 -174 20
- -9 29 -86 37
+ 38 -126 4 33
+ -108 -125 75 51
+ -159 165 -318 -128
+ -530 35 -530 142
+ 176 -228 -400 -155
+ 143 -530 -155 -9
+ 188 -530 -296 -264
+ 185 -469 -530 -159
+ 189 -530 -530 -203
+ -460 -530 -530 197
+ 197 -530 -530 -516
+ -65 -269 163 -315
+ 66 76 -164 -132
+ 51 15 -166 20
+ -9 28 -83 36
diff --git a/profiles/vertebrates/MA0052.3.pwm b/profiles/vertebrates/MA0052.3.pwm
index 3c4ea43..ace4769 100644
--- a/profiles/vertebrates/MA0052.3.pwm
+++ b/profiles/vertebrates/MA0052.3.pwm
@@ -1,12 +1,12 @@
- -88 -183 64 70
- -240 185 -649 -240
- -10000 -477 -10000 199
- 199 -635 -10000 -593
- 109 -10000 -693 90
- 178 -714 -10000 -86
- 193 -10000 -10000 -232
- 194 -599 -10000 -270
- -10000 -693 -10000 200
- 200 -693 -10000 -793
- -80 -585 175 -459
- 112 41 -275 -154
+ -85 -174 62 68
+ -223 182 -464 -223
+ -497 -389 -497 195
+ 195 -451 -496 -438
+ 106 -496 -464 88
+ 175 -484 -516 -83
+ 189 -502 -502 -216
+ 190 -443 -501 -247
+ -496 -464 -496 196
+ 196 -464 -496 -479
+ -78 -450 172 -388
+ 110 40 -254 -147
diff --git a/profiles/vertebrates/MA0052.4.pwm b/profiles/vertebrates/MA0052.4.pwm
index e69de29..72cc776 100644
--- a/profiles/vertebrates/MA0052.4.pwm
+++ b/profiles/vertebrates/MA0052.4.pwm
@@ -0,0 +1,15 @@
+ 33 -92 -15 39
+ 0 -103 15 49
+ -101 143 -197 -83
+ -263 -44 -393 160
+ 161 -196 -189 -128
+ 169 -384 -267 -89
+ 185 -456 -292 -223
+ 183 -395 -390 -168
+ 188 -431 -412 -224
+ -311 -342 -404 190
+ 194 -564 -317 -486
+ -65 -190 145 -148
+ 93 0 -131 -52
+ 61 -20 -114 20
+ 38 -8 -70 19
diff --git a/profiles/vertebrates/MA0056.1.pwm b/profiles/vertebrates/MA0056.1.pwm
index 694f71f..730a2db 100644
--- a/profiles/vertebrates/MA0056.1.pwm
+++ b/profiles/vertebrates/MA0056.1.pwm
@@ -1,6 +1,6 @@
- -74 0 -32 68
- -10000 -10000 193 -232
- -132 -10000 185 -10000
- -10000 -10000 193 -232
- -10000 -10000 200 -10000
- 185 -10000 -132 -10000
+ -57 0 -26 58
+ -245 -245 172 -153
+ -97 -245 164 -245
+ -245 -245 172 -153
+ -245 -245 179 -245
+ 164 -245 -97 -245
diff --git a/profiles/vertebrates/MA0056.2.pwm b/profiles/vertebrates/MA0056.2.pwm
index 055408a..a60ba4c 100644
--- a/profiles/vertebrates/MA0056.2.pwm
+++ b/profiles/vertebrates/MA0056.2.pwm
@@ -1,13 +1,13 @@
- 6 13 -19 -2
- 27 -8 -42 14
- 151 -102 -104 -247
- 179 -227 -242 -287
- -428 -520 -439 195
- -436 195 -436 -447
- -393 195 -525 -418
- -421 194 -515 -374
- -414 190 -463 -248
- 155 -175 -209 -89
- -28 55 -44 -3
- 2 1 -48 33
- -23 10 -22 28
+ 5 13 -19 -2
+ 26 -8 -41 14
+ 150 -100 -103 -240
+ 178 -221 -235 -277
+ -402 -473 -411 194
+ -409 194 -409 -417
+ -372 193 -476 -393
+ -396 193 -469 -356
+ -390 189 -430 -241
+ 154 -172 -204 -88
+ -28 54 -43 -3
+ 2 1 -47 32
+ -22 10 -21 28
diff --git a/profiles/vertebrates/MA0058.1.pwm b/profiles/vertebrates/MA0058.1.pwm
index ad52129..77efd73 100644
--- a/profiles/vertebrates/MA0058.1.pwm
+++ b/profiles/vertebrates/MA0058.1.pwm
@@ -1,10 +1,10 @@
- 50 -209 50 -9
- 137 -209 23 -10000
- 23 72 -209 -9
- -10000 200 -10000 -10000
- 191 -209 -10000 -10000
- -10000 200 -10000 -10000
- -209 -10000 191 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 50 -50 23 -50
+ 41 -138 41 -7
+ 119 -138 19 -236
+ 19 60 -138 -7
+ -236 177 -236 -236
+ 169 -138 -236 -236
+ -236 177 -236 -236
+ -138 -236 169 -236
+ -236 -236 -236 177
+ -236 -236 177 -236
+ 41 -39 19 -39
diff --git a/profiles/vertebrates/MA0058.2.pwm b/profiles/vertebrates/MA0058.2.pwm
index e69de29..ca10d7d 100644
--- a/profiles/vertebrates/MA0058.2.pwm
+++ b/profiles/vertebrates/MA0058.2.pwm
@@ -0,0 +1,10 @@
+ 103 -299 42 -101
+ 114 -242 14 -97
+ -29 -77 103 -85
+ -730 199 -730 -730
+ 199 -730 -730 -730
+ -730 199 -730 -730
+ 167 -730 -31 -730
+ -730 -730 -730 199
+ -730 -730 199 -730
+ -526 -108 120 26
diff --git a/profiles/vertebrates/MA0058.3.pwm b/profiles/vertebrates/MA0058.3.pwm
index 870c75f..1543073 100644
--- a/profiles/vertebrates/MA0058.3.pwm
+++ b/profiles/vertebrates/MA0058.3.pwm
@@ -1,10 +1,10 @@
- 94 -14 -41 -126
- 16 71 -18 -143
- -547 199 -10000 -10000
- 197 -10000 -433 -553
- -10000 195 -799 -296
- -246 -554 192 -658
- -469 -349 -648 195
- -10000 -601 199 -559
- -36 51 -7 -25
- -62 37 -80 56
+ 94 -14 -40 -123
+ 15 70 -18 -140
+ -487 198 -639 -639
+ 196 -641 -404 -491
+ -643 194 -601 -285
+ -239 -494 191 -552
+ -433 -332 -546 194
+ -639 -520 197 -495
+ -35 51 -7 -25
+ -61 37 -79 56
diff --git a/profiles/vertebrates/MA0059.1.pwm b/profiles/vertebrates/MA0059.1.pwm
index e69de29..f2dbf3e 100644
--- a/profiles/vertebrates/MA0059.1.pwm
+++ b/profiles/vertebrates/MA0059.1.pwm
@@ -0,0 +1,11 @@
+ 35 -158 67 -31
+ 134 -158 -31 -158
+ -102 67 67 -158
+ -158 173 -248 -248
+ 179 -248 -248 -248
+ -248 173 -248 -158
+ -158 -248 173 -248
+ -248 -158 -248 173
+ -248 -248 179 -248
+ -158 -158 158 -158
+ -63 -6 -248 115
diff --git a/profiles/vertebrates/MA0060.1.pwm b/profiles/vertebrates/MA0060.1.pwm
index c16c176..016b969 100644
--- a/profiles/vertebrates/MA0060.1.pwm
+++ b/profiles/vertebrates/MA0060.1.pwm
@@ -1,16 +1,16 @@
- 23 35 -10 -69
- -86 19 -16 50
- -205 81 -21 19
- 100 -105 50 -327
- 81 -286 95 -254
- -10000 200 -10000 -10000
- -386 196 -486 -10000
- 195 -10000 -486 -327
- 200 -10000 -10000 -10000
- -10000 -486 -10000 199
- -105 116 19 -286
- 119 -227 53 -386
- -116 -54 133 -154
- 43 57 -40 -127
- 31 -169 70 -27
- -21 27 0 -10
+ 21 32 -9 -62
+ -76 17 -14 46
+ -171 76 -19 17
+ 94 -92 46 -248
+ 76 -224 89 -204
+ -356 191 -356 -356
+ -276 187 -310 -356
+ 186 -356 -310 -248
+ 191 -356 -356 -356
+ -356 -310 -356 189
+ -92 109 17 -224
+ 112 -187 50 -276
+ -101 -48 126 -132
+ 40 53 -36 -111
+ 29 -144 65 -25
+ -19 25 0 -9
diff --git a/profiles/vertebrates/MA0060.2.pwm b/profiles/vertebrates/MA0060.2.pwm
index c3d8548..0000637 100644
--- a/profiles/vertebrates/MA0060.2.pwm
+++ b/profiles/vertebrates/MA0060.2.pwm
@@ -1,18 +1,18 @@
- 110 -53 -116 -49
- -88 -115 106 -12
- 69 4 -2 -146
- -87 44 86 -184
- -26 10 -281 97
- -351 -139 113 43
- -321 175 -219 -172
- -710 -114 -318 178
- -330 -111 171 -266
- 196 -1010 -387 -517
- -878 -540 -810 199
- -778 -878 -878 200
- -624 -778 199 -793
- -751 -497 199 -951
- -254 29 -719 138
- -225 85 -23 19
- -51 93 2 -140
- 96 -95 30 -172
+ 109 -53 -114 -48
+ -87 -113 106 -12
+ 69 4 -2 -143
+ -85 44 85 -180
+ -26 10 -272 96
+ -336 -137 112 43
+ -309 174 -213 -168
+ -581 -112 -306 177
+ -317 -109 170 -258
+ 195 -645 -368 -471
+ -629 -488 -614 198
+ -605 -629 -629 199
+ -540 -605 198 -610
+ -597 -457 197 -639
+ -247 29 -585 137
+ -220 84 -22 18
+ -51 92 2 -138
+ 95 -93 30 -169
diff --git a/profiles/vertebrates/MA0060.3.pwm b/profiles/vertebrates/MA0060.3.pwm
index 0414566..d07bdee 100644
--- a/profiles/vertebrates/MA0060.3.pwm
+++ b/profiles/vertebrates/MA0060.3.pwm
@@ -1,11 +1,11 @@
- 65 -67 59 -176
- 67 -158 62 -92
- -571 195 -515 -344
- -528 197 -543 -451
- 196 -538 -615 -365
- 193 -368 -328 -571
- -503 -319 -678 195
- -286 181 -192 -327
- 176 -250 -130 -511
- -98 -9 117 -170
- 62 18 -44 -76
+ 65 -66 58 -171
+ 67 -154 62 -90
+ -492 193 -457 -325
+ -466 195 -475 -412
+ 194 -472 -515 -343
+ 191 -346 -311 -492
+ -449 -303 -543 193
+ -274 179 -186 -310
+ 175 -241 -127 -455
+ -96 -9 116 -166
+ 61 18 -44 -74
diff --git a/profiles/vertebrates/MA0062.1.pwm b/profiles/vertebrates/MA0062.1.pwm
index 4e37503..6bc8fcd 100644
--- a/profiles/vertebrates/MA0062.1.pwm
+++ b/profiles/vertebrates/MA0062.1.pwm
@@ -1,10 +1,10 @@
- 151 -81 -81 -10000
- -81 151 -81 -10000
- -81 178 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- 78 -81 -81 19
- -10000 19 119 -81
+ 123 -54 -54 -187
+ -54 123 -54 -187
+ -54 147 -187 -187
+ -187 -187 167 -187
+ -187 -187 167 -187
+ 167 -187 -187 -187
+ 167 -187 -187 -187
+ -187 -187 167 -187
+ 60 -54 -54 14
+ -187 14 95 -54
diff --git a/profiles/vertebrates/MA0062.2.pwm b/profiles/vertebrates/MA0062.2.pwm
index e69de29..a39b462 100644
--- a/profiles/vertebrates/MA0062.2.pwm
+++ b/profiles/vertebrates/MA0062.2.pwm
@@ -0,0 +1,11 @@
+ -268 160 -38 -485
+ -171 185 -443 -485
+ -502 -502 196 -485
+ -502 -502 197 -502
+ 196 -485 -485 -502
+ 196 -470 -502 -470
+ -133 -268 177 -502
+ -200 7 -251 134
+ -66 -82 126 -130
+ 9 8 73 -217
+ -8 51 -14 -47
diff --git a/profiles/vertebrates/MA0062.3.pwm b/profiles/vertebrates/MA0062.3.pwm
index e69de29..b312c41 100644
--- a/profiles/vertebrates/MA0062.3.pwm
+++ b/profiles/vertebrates/MA0062.3.pwm
@@ -0,0 +1,14 @@
+ -4 5 -4 3
+ -57 40 -25 22
+ -109 134 -122 -79
+ 167 -202 -173 -189
+ -405 176 -288 -128
+ -206 -345 -400 185
+ -415 -367 -328 191
+ -349 190 -376 -334
+ -396 194 -481 -415
+ -320 -336 -183 181
+ -285 -136 166 -169
+ -160 -45 -108 130
+ -46 15 -12 31
+ -27 9 -31 38
diff --git a/profiles/vertebrates/MA0063.1.pwm b/profiles/vertebrates/MA0063.1.pwm
index 76d30bd..073292c 100644
--- a/profiles/vertebrates/MA0063.1.pwm
+++ b/profiles/vertebrates/MA0063.1.pwm
@@ -1,7 +1,7 @@
- 72 -10000 -209 108
- -10000 -9 -10000 161
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 72 123
- -9 -109 -10000 137
- -109 -209 137 -50
+ 60 -236 -138 93
+ -236 -7 -236 141
+ 177 -236 -236 -236
+ 177 -236 -236 -236
+ -236 -236 60 106
+ -7 -80 -236 119
+ -80 -138 119 -39
diff --git a/profiles/vertebrates/MA0063.2.pwm b/profiles/vertebrates/MA0063.2.pwm
index e69de29..79e1dfa 100644
--- a/profiles/vertebrates/MA0063.2.pwm
+++ b/profiles/vertebrates/MA0063.2.pwm
@@ -0,0 +1,11 @@
+ 34 -40 31 -42
+ 16 27 -5 -50
+ -359 186 -502 -202
+ 193 -438 -387 -390
+ -309 189 -435 -301
+ -317 -378 -412 191
+ -252 165 -410 -68
+ 181 -332 -255 -217
+ 184 -291 -357 -236
+ 12 5 12 -34
+ 42 -12 -32 -9
diff --git a/profiles/vertebrates/MA0065.1.pwm b/profiles/vertebrates/MA0065.1.pwm
index e69de29..b9016cd 100644
--- a/profiles/vertebrates/MA0065.1.pwm
+++ b/profiles/vertebrates/MA0065.1.pwm
@@ -0,0 +1,20 @@
+ -3 20 -46 20
+ -46 30 -30 30
+ 80 -108 -64 20
+ 30 -219 127 -289
+ 65 -289 111 -289
+ -289 -289 185 -289
+ -289 -289 178 -172
+ -289 -172 -289 178
+ -172 170 -172 -289
+ 185 -289 -289 -289
+ 185 -289 -289 -289
+ 178 -289 -172 -289
+ -289 -289 185 -289
+ -289 -289 178 -172
+ -289 -172 -289 178
+ -172 167 -219 -172
+ 174 -219 -172 -289
+ -3 20 -108 49
+ 30 49 -16 -108
+ -46 -3 20 20
diff --git a/profiles/vertebrates/MA0065.2.pwm b/profiles/vertebrates/MA0065.2.pwm
index e69de29..adf86a9 100644
--- a/profiles/vertebrates/MA0065.2.pwm
+++ b/profiles/vertebrates/MA0065.2.pwm
@@ -0,0 +1,15 @@
+ -113 55 56 -73
+ -103 -36 -72 109
+ 84 -287 76 -136
+ -105 -443 161 -124
+ -61 -332 161 -243
+ -55 -71 85 -15
+ -151 131 -26 -160
+ 189 -298 -332 -386
+ 125 -201 31 -288
+ 169 -418 -63 -377
+ -132 -458 180 -353
+ -221 -377 165 -81
+ -293 -107 28 112
+ -186 134 -56 -94
+ 162 -177 -204 -133
diff --git a/profiles/vertebrates/MA0066.1.pwm b/profiles/vertebrates/MA0066.1.pwm
index e69de29..984cc1f 100644
--- a/profiles/vertebrates/MA0066.1.pwm
+++ b/profiles/vertebrates/MA0066.1.pwm
@@ -0,0 +1,20 @@
+ -95 16 88 -95
+ -95 -265 -265 166
+ 129 -265 31 -265
+ -265 -184 177 -265
+ -184 -265 171 -184
+ -265 -184 -64 155
+ -132 155 -95 -265
+ 171 -184 -265 -184
+ -40 97 -64 -64
+ -40 0 44 -18
+ -64 -132 122 -64
+ -184 -265 -132 166
+ -132 -40 136 -184
+ 149 -40 -265 -184
+ -184 177 -265 -265
+ -265 166 -265 -95
+ -95 68 -265 78
+ 149 -40 -265 -184
+ -40 68 -18 -40
+ 0 -265 -184 136
diff --git a/profiles/vertebrates/MA0067.1.pwm b/profiles/vertebrates/MA0067.1.pwm
index e69de29..0f3f3ce 100644
--- a/profiles/vertebrates/MA0067.1.pwm
+++ b/profiles/vertebrates/MA0067.1.pwm
@@ -0,0 +1,8 @@
+ 32 -12 -52 18
+ -12 -193 129 -143
+ -106 -143 -272 158
+ -272 168 -193 -143
+ 158 -193 -106 -193
+ -143 101 -193 44
+ -143 -272 116 32
+ -193 44 44 4
diff --git a/profiles/vertebrates/MA0067.2.pwm b/profiles/vertebrates/MA0067.2.pwm
index d4a457e..77af666 100644
--- a/profiles/vertebrates/MA0067.2.pwm
+++ b/profiles/vertebrates/MA0067.2.pwm
@@ -1,17 +1,17 @@
- -748 9 49 61
- -377 149 -613 14
- 162 -426 -26 -441
- 12 -7 51 -90
- -422 -1 -498 155
- -189 85 93 -511
- 134 -10000 53 -506
- 137 -370 -312 29
- -781 -31 166 -523
- -703 197 -537 -437
- -135 -681 184 -591
- -402 -355 -130 178
- -32 -822 167 -749
- 184 -527 -258 -208
- -357 193 -501 -401
- -283 -70 158 -193
- 61 -116 61 -99
+ -548 8 48 60
+ -350 147 -504 14
+ 160 -388 -25 -400
+ 12 -7 50 -88
+ -385 -1 -439 153
+ -183 84 92 -450
+ 132 -590 52 -444
+ 136 -345 -295 28
+ -557 -30 164 -454
+ -538 195 -463 -397
+ -132 -529 182 -491
+ -370 -332 -126 177
+ -31 -564 166 -549
+ 182 -462 -247 -201
+ -333 192 -442 -370
+ -270 -69 156 -187
+ 60 -113 60 -97
diff --git a/profiles/vertebrates/MA0068.1.pwm b/profiles/vertebrates/MA0068.1.pwm
index e69de29..588f56b 100644
--- a/profiles/vertebrates/MA0068.1.pwm
+++ b/profiles/vertebrates/MA0068.1.pwm
@@ -0,0 +1,30 @@
+ 35 -102 93 -158
+ 173 -248 -158 -248
+ 142 -102 -158 -102
+ 93 -158 -158 52
+ 115 -158 -63 -31
+ 93 -63 -158 16
+ 16 -158 -102 104
+ 67 -158 -158 80
+ -6 -63 16 35
+ -6 93 -158 -31
+ 16 93 -31 -248
+ 35 35 -6 -102
+ 52 35 -102 -31
+ 16 -6 -158 67
+ 80 -6 -31 -102
+ -31 52 -31 -6
+ -63 16 -31 52
+ 35 52 -63 -63
+ -31 67 -63 -6
+ 67 16 -102 -31
+ -6 35 -6 -31
+ -6 16 -102 52
+ 35 93 -248 -63
+ 16 67 -158 -6
+ -63 104 -102 -31
+ 35 67 -102 -63
+ -63 104 -102 -31
+ -158 93 -63 16
+ 16 93 -158 -63
+ -63 115 -102 -63
diff --git a/profiles/vertebrates/MA0068.2.pwm b/profiles/vertebrates/MA0068.2.pwm
index e69de29..a11f572 100644
--- a/profiles/vertebrates/MA0068.2.pwm
+++ b/profiles/vertebrates/MA0068.2.pwm
@@ -0,0 +1,8 @@
+ -168 132 -138 -30
+ -115 -200 -17 127
+ 191 -363 -410 -345
+ 193 -408 -408 -408
+ -410 -410 -313 191
+ -208 -260 -269 178
+ 154 -31 -284 -276
+ -4 -70 108 -179
diff --git a/profiles/vertebrates/MA0069.1.pwm b/profiles/vertebrates/MA0069.1.pwm
index e69de29..4fd0a86 100644
--- a/profiles/vertebrates/MA0069.1.pwm
+++ b/profiles/vertebrates/MA0069.1.pwm
@@ -0,0 +1,14 @@
+ -177 -114 -114 148
+ -177 -177 -292 171
+ -114 116 -223 14
+ 171 -177 -223 -223
+ -142 152 -223 -90
+ -223 -292 178 -223
+ -223 164 -114 -223
+ 87 -177 -177 66
+ -223 -114 -223 164
+ -177 34 110 -177
+ 160 -292 -70 -223
+ 3 3 24 -36
+ -223 -90 -142 152
+ -223 -292 59 110
diff --git a/profiles/vertebrates/MA0070.1.pwm b/profiles/vertebrates/MA0070.1.pwm
index 9530ff1..92f89f4 100644
--- a/profiles/vertebrates/MA0070.1.pwm
+++ b/profiles/vertebrates/MA0070.1.pwm
@@ -1,12 +1,12 @@
- 15 42 -117 15
- -58 100 -58 -58
- 183 -217 -217 -10000
- -217 -217 -10000 183
- -10000 200 -10000 -10000
- 192 -217 -10000 -10000
- 192 -10000 -10000 -217
- -10000 -10000 -217 192
- -10000 200 -10000 -10000
- 183 -217 -10000 -217
- 142 -10000 -217 15
- 83 -117 -117 42
+ 12 34 -86 12
+ -45 86 -45 -45
+ 162 -143 -143 -239
+ -143 -143 -239 162
+ -239 178 -239 -239
+ 170 -143 -239 -239
+ 170 -239 -239 -143
+ -239 -239 -143 170
+ -239 178 -239 -239
+ 162 -143 -239 -143
+ 123 -239 -143 12
+ 70 -86 -86 34
diff --git a/profiles/vertebrates/MA0071.1.pwm b/profiles/vertebrates/MA0071.1.pwm
index e69de29..19e7067 100644
--- a/profiles/vertebrates/MA0071.1.pwm
+++ b/profiles/vertebrates/MA0071.1.pwm
@@ -0,0 +1,10 @@
+ 112 -174 -121 14
+ 45 -174 -258 112
+ -5 82 -51 -82
+ 71 -121 -26 14
+ 157 -258 -51 -258
+ -258 -258 181 -258
+ -258 -258 181 -258
+ -258 -258 -258 181
+ -258 181 -258 -258
+ 181 -258 -258 -258
diff --git a/profiles/vertebrates/MA0072.1.pwm b/profiles/vertebrates/MA0072.1.pwm
index e69de29..8ba3d10 100644
--- a/profiles/vertebrates/MA0072.1.pwm
+++ b/profiles/vertebrates/MA0072.1.pwm
@@ -0,0 +1,14 @@
+ 0 -14 -14 25
+ 82 -158 -30 13
+ 65 -281 -122 89
+ 180 -207 -281 -281
+ 122 -281 -281 47
+ -158 36 47 0
+ -281 -281 -281 184
+ 149 -281 -14 -281
+ -281 -281 184 -281
+ -281 -281 184 -281
+ -281 -281 -281 184
+ -281 184 -281 -281
+ 184 -281 -281 -281
+ 65 -49 13 -69
diff --git a/profiles/vertebrates/MA0073.1.pwm b/profiles/vertebrates/MA0073.1.pwm
index e69de29..7790d1a 100644
--- a/profiles/vertebrates/MA0073.1.pwm
+++ b/profiles/vertebrates/MA0073.1.pwm
@@ -0,0 +1,20 @@
+ 10 130 -211 -211
+ -97 160 -211 -211
+ 10 130 -211 -211
+ -211 172 -211 -211
+ 113 43 -211 -211
+ 146 -34 -211 -211
+ 130 10 -211 -211
+ 43 93 -211 -97
+ -211 172 -211 -211
+ 172 -211 -211 -211
+ 43 113 -211 -211
+ -97 160 -211 -211
+ 10 130 -211 -211
+ 43 93 -97 -211
+ -34 146 -211 -211
+ 43 70 -211 -34
+ 43 70 -97 -97
+ 43 93 -211 -97
+ -97 113 10 -211
+ 43 43 -34 -97
diff --git a/profiles/vertebrates/MA0074.1.pwm b/profiles/vertebrates/MA0074.1.pwm
index e69de29..678540a 100644
--- a/profiles/vertebrates/MA0074.1.pwm
+++ b/profiles/vertebrates/MA0074.1.pwm
@@ -0,0 +1,15 @@
+ 20 -206 124 -206
+ -206 -206 171 -206
+ -206 -206 157 -88
+ -206 -206 -206 171
+ -206 157 -206 -88
+ 157 -206 -88 -206
+ 54 -24 -206 54
+ -24 54 -24 -24
+ -24 -206 142 -206
+ 82 -206 82 -206
+ -206 -206 171 -206
+ -206 -206 -206 171
+ -88 -206 -206 157
+ -206 157 -206 -88
+ 124 -88 -24 -206
diff --git a/profiles/vertebrates/MA0075.1.pwm b/profiles/vertebrates/MA0075.1.pwm
index e69de29..94c07b1 100644
--- a/profiles/vertebrates/MA0075.1.pwm
+++ b/profiles/vertebrates/MA0075.1.pwm
@@ -0,0 +1,5 @@
+ 169 -209 -149 -251
+ 187 -312 -312 -312
+ -312 -312 -251 185
+ -312 -312 -312 187
+ 185 -312 -251 -312
diff --git a/profiles/vertebrates/MA0075.2.pwm b/profiles/vertebrates/MA0075.2.pwm
index e69de29..76ea90f 100644
--- a/profiles/vertebrates/MA0075.2.pwm
+++ b/profiles/vertebrates/MA0075.2.pwm
@@ -0,0 +1,8 @@
+ -57 65 -42 1
+ -143 86 -210 67
+ 163 -172 -154 -199
+ 183 -213 -295 -365
+ -507 -468 -517 196
+ -141 -130 -233 159
+ 176 -241 -436 -145
+ 35 -13 10 -45
diff --git a/profiles/vertebrates/MA0075.3.pwm b/profiles/vertebrates/MA0075.3.pwm
index e69de29..67dd6cb 100644
--- a/profiles/vertebrates/MA0075.3.pwm
+++ b/profiles/vertebrates/MA0075.3.pwm
@@ -0,0 +1,8 @@
+ -180 128 -77 -51
+ -362 20 -353 142
+ 198 -508 -613 -632
+ 199 -631 -631 -631
+ -631 -631 -631 199
+ -631 -631 -631 199
+ 190 -633 -210 -639
+ 44 -40 15 -37
diff --git a/profiles/vertebrates/MA0076.1.pwm b/profiles/vertebrates/MA0076.1.pwm
index fded57f..f74630c 100644
--- a/profiles/vertebrates/MA0076.1.pwm
+++ b/profiles/vertebrates/MA0076.1.pwm
@@ -1,9 +1,9 @@
- 168 -232 -132 -232
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 168 -10000 -10000 -32
- -32 -232 158 -10000
- -232 26 -10000 138
+ 148 -153 -97 -153
+ -245 179 -245 -245
+ -245 179 -245 -245
+ -245 -245 179 -245
+ -245 -245 179 -245
+ 179 -245 -245 -245
+ 148 -245 -245 -26
+ -26 -153 140 -245
+ -153 22 -245 121
diff --git a/profiles/vertebrates/MA0076.2.pwm b/profiles/vertebrates/MA0076.2.pwm
index ae5f2f3..d5c500c 100644
--- a/profiles/vertebrates/MA0076.2.pwm
+++ b/profiles/vertebrates/MA0076.2.pwm
@@ -1,11 +1,11 @@
- -152 77 5 -13
- -113 115 -59 -61
- 125 -256 28 -203
- -10000 165 -574 -24
- -674 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 177 -74
- -10000 -77 173 -337
- -156 55 -36 51
+ -148 76 5 -12
+ -110 114 -58 -60
+ 123 -245 27 -196
+ -590 163 -483 -24
+ -527 -590 -590 198
+ -590 -590 -590 198
+ -590 198 -590 -590
+ -590 198 -590 -590
+ -590 -590 175 -73
+ -590 -76 171 -316
+ -152 54 -35 50
diff --git a/profiles/vertebrates/MA0077.1.pwm b/profiles/vertebrates/MA0077.1.pwm
index 4631da1..3aae96b 100644
--- a/profiles/vertebrates/MA0077.1.pwm
+++ b/profiles/vertebrates/MA0077.1.pwm
@@ -1,9 +1,9 @@
- -266 153 -108 -108
- -125 100 -166 34
- 190 -425 -10000 -225
- -325 -425 -325 190
- -144 -10000 -225 177
- -325 -325 192 -10000
- -55 -10000 -225 163
- -108 -144 -166 151
- -44 71 -144 34
+ -203 143 -92 -92
+ -106 92 -137 31
+ 179 -274 -328 -178
+ -234 -274 -234 179
+ -121 -328 -178 167
+ -234 -234 181 -328
+ -48 -328 -178 153
+ -92 -121 -137 141
+ -39 65 -121 31
diff --git a/profiles/vertebrates/MA0078.1.pwm b/profiles/vertebrates/MA0078.1.pwm
index e69de29..c0de772 100644
--- a/profiles/vertebrates/MA0078.1.pwm
+++ b/profiles/vertebrates/MA0078.1.pwm
@@ -0,0 +1,9 @@
+ -12 18 -31 18
+ 4 4 -76 44
+ -106 108 -193 18
+ 178 -272 -272 -193
+ -272 -193 -272 178
+ -272 -272 -272 183
+ -272 -272 183 -272
+ -272 -272 -143 173
+ -272 101 32 -76
diff --git a/profiles/vertebrates/MA0078.2.pwm b/profiles/vertebrates/MA0078.2.pwm
index e69de29..7bbc27a 100644
--- a/profiles/vertebrates/MA0078.2.pwm
+++ b/profiles/vertebrates/MA0078.2.pwm
@@ -0,0 +1,14 @@
+ 15 -22 12 -9
+ 17 13 2 -39
+ 134 -165 -69 -92
+ -17 -176 110 -58
+ 149 -144 -96 -173
+ 193 -435 -402 -389
+ -338 186 -258 -331
+ 194 -421 -455 -424
+ 191 -344 -333 -445
+ -159 -423 -384 183
+ -120 -348 173 -264
+ -131 -158 157 -179
+ 26 13 -2 -47
+ 13 5 -16 -4
diff --git a/profiles/vertebrates/MA0079.1.pwm b/profiles/vertebrates/MA0079.1.pwm
index e69de29..6f64bd6 100644
--- a/profiles/vertebrates/MA0079.1.pwm
+++ b/profiles/vertebrates/MA0079.1.pwm
@@ -0,0 +1,10 @@
+ -67 -67 80 0
+ 0 -67 80 -67
+ -194 -194 169 -194
+ -194 -194 169 -194
+ -194 108 0 -67
+ 0 -194 80 0
+ -194 -67 108 0
+ -194 -194 131 0
+ -67 -67 131 -194
+ 0 -194 -194 131
diff --git a/profiles/vertebrates/MA0079.2.pwm b/profiles/vertebrates/MA0079.2.pwm
index e69de29..f52337d 100644
--- a/profiles/vertebrates/MA0079.2.pwm
+++ b/profiles/vertebrates/MA0079.2.pwm
@@ -0,0 +1,10 @@
+ -279 171 -204 -156
+ -279 162 -204 -90
+ -279 183 -279 -279
+ -90 148 -279 -90
+ -156 -66 69 50
+ -279 153 -204 -45
+ -204 167 -279 -119
+ -279 132 -119 -11
+ -45 137 -279 -90
+ -119 143 -119 -119
diff --git a/profiles/vertebrates/MA0079.3.pwm b/profiles/vertebrates/MA0079.3.pwm
index e69de29..5ac0987 100644
--- a/profiles/vertebrates/MA0079.3.pwm
+++ b/profiles/vertebrates/MA0079.3.pwm
@@ -0,0 +1,11 @@
+ -133 -29 96 -26
+ -656 150 -173 -22
+ -417 161 -656 -17
+ -656 199 -656 -656
+ -656 198 -656 -452
+ -67 -656 107 33
+ -656 199 -656 -656
+ -656 199 -656 -656
+ -656 160 -656 -9
+ -103 153 -656 -71
+ -171 118 -154 12
diff --git a/profiles/vertebrates/MA0079.4.pwm b/profiles/vertebrates/MA0079.4.pwm
index 93146be..e10e1ae 100644
--- a/profiles/vertebrates/MA0079.4.pwm
+++ b/profiles/vertebrates/MA0079.4.pwm
@@ -1,15 +1,15 @@
- -66 10 -36 60
- 115 -277 -367 64
- 118 -306 61 -343
- 16 -10000 152 -642
- -370 197 -725 -666
- -787 195 -10000 -294
- 162 -11 -10000 -10000
- -10000 200 -10000 -865
- -373 -10000 195 -387
- -10000 200 -10000 -951
- -1060 200 -10000 -10000
- -10000 196 -10000 -312
- 97 95 -971 -319
- -340 158 -378 -23
- 2 33 -203 57
+ -65 10 -36 60
+ 114 -273 -360 64
+ 117 -302 61 -337
+ 16 -787 152 -597
+ -362 196 -651 -612
+ -686 195 -784 -290
+ 162 -11 -793 -793
+ -779 199 -779 -716
+ -365 -782 194 -379
+ -779 199 -779 -741
+ -760 199 -779 -779
+ -781 195 -781 -308
+ 97 94 -747 -314
+ -334 157 -370 -23
+ 2 33 -201 57
diff --git a/profiles/vertebrates/MA0079.5.pwm b/profiles/vertebrates/MA0079.5.pwm
index e69de29..32b5b8c 100644
--- a/profiles/vertebrates/MA0079.5.pwm
+++ b/profiles/vertebrates/MA0079.5.pwm
@@ -0,0 +1,9 @@
+ -485 -485 189 -223
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 9 152 -486 -486
+ -486 -486 196 -486
+ -485 -147 184 -485
+ 2 -211 137 -259
+ -61 -485 171 -485
diff --git a/profiles/vertebrates/MA0080.1.pwm b/profiles/vertebrates/MA0080.1.pwm
index a526aee..f33d00a 100644
--- a/profiles/vertebrates/MA0080.1.pwm
+++ b/profiles/vertebrates/MA0080.1.pwm
@@ -1,6 +1,6 @@
- -3 56 42 -225
- -183 -283 175 -225
- -225 -10000 187 -283
- 197 -383 -10000 -10000
- 197 -10000 -10000 -383
- -225 34 125 -283
+ -2 50 37 -172
+ -145 -205 163 -172
+ -172 -310 174 -205
+ 184 -248 -310 -310
+ 184 -310 -310 -248
+ -172 30 115 -205
diff --git a/profiles/vertebrates/MA0080.2.pwm b/profiles/vertebrates/MA0080.2.pwm
index c9cd7b0..e55492f 100644
--- a/profiles/vertebrates/MA0080.2.pwm
+++ b/profiles/vertebrates/MA0080.2.pwm
@@ -1,7 +1,7 @@
- 165 -181 -81 -10000
- -139 -10000 182 -339
- -139 -10000 186 -10000
- 200 -10000 -10000 -10000
- 197 -10000 -339 -10000
- -107 -181 165 -339
- -181 -107 -239 161
+ 151 -139 -67 -290
+ -111 -290 167 -221
+ -111 -290 171 -290
+ 185 -290 -290 -290
+ 181 -290 -221 -290
+ -87 -139 151 -221
+ -139 -87 -174 147
diff --git a/profiles/vertebrates/MA0080.3.pwm b/profiles/vertebrates/MA0080.3.pwm
index e69de29..c88b6fa 100644
--- a/profiles/vertebrates/MA0080.3.pwm
+++ b/profiles/vertebrates/MA0080.3.pwm
@@ -0,0 +1,15 @@
+ 65 -60 14 -57
+ 76 -101 47 -123
+ 129 -224 -21 -105
+ 140 -234 -40 -132
+ 128 -474 -47 -29
+ -34 -97 143 -799
+ 151 -229 -12 -491
+ -172 -799 188 -799
+ -799 -799 200 -799
+ 199 -799 -714 -799
+ 200 -799 -799 -799
+ -219 -65 165 -799
+ -94 -228 -221 161
+ -202 -40 151 -277
+ 46 -40 40 -86
diff --git a/profiles/vertebrates/MA0080.4.pwm b/profiles/vertebrates/MA0080.4.pwm
index e69de29..e474704 100644
--- a/profiles/vertebrates/MA0080.4.pwm
+++ b/profiles/vertebrates/MA0080.4.pwm
@@ -0,0 +1,14 @@
+ 136 -143 -42 -165
+ 185 -496 -181 -378
+ 197 -599 -561 -474
+ 196 -615 -615 -347
+ 183 -594 -536 -134
+ -438 -241 191 -611
+ 12 129 -116 -642
+ -483 -612 198 -605
+ -620 -612 198 -620
+ 198 -599 -614 -606
+ 198 -607 -607 -580
+ -623 -277 194 -615
+ -503 -388 -540 196
+ 101 -205 -75 20
diff --git a/profiles/vertebrates/MA0080.5.pwm b/profiles/vertebrates/MA0080.5.pwm
index e69de29..f70ff4d 100644
--- a/profiles/vertebrates/MA0080.5.pwm
+++ b/profiles/vertebrates/MA0080.5.pwm
@@ -0,0 +1,20 @@
+ 34 -56 21 -15
+ 53 -65 4 -18
+ 70 -72 16 -63
+ 124 -154 -36 -96
+ 130 -143 -38 -130
+ 158 -347 -130 -96
+ -112 -160 160 -243
+ 176 -325 -140 -298
+ -265 -566 191 -422
+ -329 -500 194 -460
+ 195 -455 -448 -461
+ 194 -524 -458 -334
+ -155 -174 172 -387
+ -125 -313 -219 170
+ -159 -138 163 -246
+ 145 -155 -69 -168
+ 87 -72 -12 -62
+ 83 -97 -19 -27
+ 24 -34 6 -3
+ 36 -42 -23 16
diff --git a/profiles/vertebrates/MA0080.6.pwm b/profiles/vertebrates/MA0080.6.pwm
index 640b552..a3479d4 100644
--- a/profiles/vertebrates/MA0080.6.pwm
+++ b/profiles/vertebrates/MA0080.6.pwm
@@ -1,17 +1,17 @@
- 66 -77 7 -35
- 51 -82 48 -70
- 134 -194 -21 -155
- 165 -219 -131 -201
- 163 -350 -136 -123
- -161 -111 160 -259
- 177 -334 -145 -312
- -269 -558 192 -444
- -370 -498 195 -478
- 196 -459 -463 -468
- 192 -478 -385 -319
- -179 -190 176 -426
- -63 -282 -236 159
- -140 -211 166 -219
- -18 -118 113 -104
- 58 -59 8 -35
- 51 -62 0 -10
+ 66 -76 7 -35
+ 51 -82 48 -70
+ 134 -193 -20 -154
+ 164 -218 -130 -199
+ 163 -345 -136 -123
+ -160 -110 160 -257
+ 177 -330 -144 -309
+ -267 -539 191 -435
+ -364 -485 194 -467
+ 195 -449 -453 -457
+ 192 -467 -379 -315
+ -178 -188 176 -418
+ -63 -280 -234 159
+ -139 -210 166 -217
+ -18 -118 113 -104
+ 58 -59 8 -35
+ 51 -62 0 -10
diff --git a/profiles/vertebrates/MA0081.1.pwm b/profiles/vertebrates/MA0081.1.pwm
index 3d163fc..33fb5d9 100644
--- a/profiles/vertebrates/MA0081.1.pwm
+++ b/profiles/vertebrates/MA0081.1.pwm
@@ -1,7 +1,7 @@
- 134 -10000 -10000 56
- -161 19 124 -261
- 97 39 -81 -261
- -261 -10000 194 -10000
- -361 -10000 194 -361
- 197 -10000 -10000 -361
- 194 -10000 -10000 -261
+ 123 -300 -300 50
+ -128 17 114 -190
+ 88 34 -68 -190
+ -190 -300 180 -300
+ -235 -300 180 -235
+ 183 -300 -300 -235
+ 180 -300 -300 -190
diff --git a/profiles/vertebrates/MA0081.2.pwm b/profiles/vertebrates/MA0081.2.pwm
index 2fa1ebd..4845327 100644
--- a/profiles/vertebrates/MA0081.2.pwm
+++ b/profiles/vertebrates/MA0081.2.pwm
@@ -1,16 +1,16 @@
- -33 -22 -74 80
- -52 30 -57 48
- -163 -7 -108 117
- -415 183 -197 -297
- 185 -344 -333 -235
- -482 176 -142 -222
- -390 -483 -542 195
- -515 -507 -479 197
- -503 196 -546 -398
- -461 192 -571 -270
- -296 -58 -188 155
- -272 158 -154 -95
- -44 -78 -311 136
- -125 -31 -169 130
- -69 -16 -148 109
- -74 35 -69 59
+ -33 -21 -74 80
+ -52 30 -56 48
+ -161 -7 -107 116
+ -401 183 -194 -291
+ 185 -336 -325 -231
+ -460 175 -141 -219
+ -379 -461 -510 195
+ -487 -481 -458 196
+ -478 195 -513 -386
+ -442 191 -532 -266
+ -290 -57 -186 154
+ -267 157 -152 -94
+ -44 -77 -304 135
+ -123 -31 -167 130
+ -69 -16 -147 109
+ -74 35 -69 59
diff --git a/profiles/vertebrates/MA0083.1.pwm b/profiles/vertebrates/MA0083.1.pwm
index e69de29..ae68695 100644
--- a/profiles/vertebrates/MA0083.1.pwm
+++ b/profiles/vertebrates/MA0083.1.pwm
@@ -0,0 +1,12 @@
+ -184 -229 162 -121
+ -30 139 -184 -184
+ -296 182 -229 -296
+ -229 182 -296 -296
+ 135 -229 -296 16
+ -149 -229 -296 173
+ 185 -296 -296 -296
+ -229 -296 -296 182
+ 176 -296 -296 -149
+ 34 -229 -296 126
+ -184 -296 179 -296
+ -184 -229 176 -296
diff --git a/profiles/vertebrates/MA0083.2.pwm b/profiles/vertebrates/MA0083.2.pwm
index c382c03..2db0c73 100644
--- a/profiles/vertebrates/MA0083.2.pwm
+++ b/profiles/vertebrates/MA0083.2.pwm
@@ -1,18 +1,18 @@
- -42 51 -102 41
- 84 -35 -78 -24
- -14 -100 -147 116
- -108 -115 81 40
- -26 26 -9 4
- -354 191 -10000 -276
- -10000 189 -10000 -173
- 163 -311 -463 -44
- 106 -10000 -296 84
- 197 -10000 -515 -402
- 5 -225 -515 145
- 185 -557 -348 -178
- 135 -583 -271 35
- -307 -10000 196 -10000
- -525 -635 199 -10000
- 10 60 -37 -65
- 125 -18 -131 -158
- 119 -168 -31 -74
+ -41 51 -99 40
+ 82 -34 -76 -23
+ -14 -97 -142 114
+ -104 -111 80 39
+ -25 25 -9 4
+ -325 189 -561 -260
+ -561 186 -561 -166
+ 161 -290 -406 -42
+ 104 -561 -277 83
+ 195 -561 -438 -363
+ 5 -214 -438 143
+ 183 -460 -321 -171
+ 133 -473 -255 35
+ -286 -561 193 -561
+ -443 -494 196 -561
+ 9 59 -36 -63
+ 123 -17 -126 -153
+ 117 -161 -30 -72
diff --git a/profiles/vertebrates/MA0083.3.pwm b/profiles/vertebrates/MA0083.3.pwm
index e69de29..6c7d743 100644
--- a/profiles/vertebrates/MA0083.3.pwm
+++ b/profiles/vertebrates/MA0083.3.pwm
@@ -0,0 +1,16 @@
+ -83 -156 -214 152
+ -239 -146 137 -22
+ 68 64 -137 -117
+ -552 196 -419 -552
+ -517 195 -447 -401
+ 185 -379 -351 -216
+ -271 -540 -471 192
+ 196 -492 -466 -492
+ -525 -480 -454 196
+ 194 -494 -494 -355
+ 20 -416 -530 147
+ -477 -469 197 -562
+ -475 -534 196 -483
+ -70 -194 63 66
+ -22 135 -138 -230
+ 144 -222 -166 -40
diff --git a/profiles/vertebrates/MA0084.1.pwm b/profiles/vertebrates/MA0084.1.pwm
index a5f1529..b5691d8 100644
--- a/profiles/vertebrates/MA0084.1.pwm
+++ b/profiles/vertebrates/MA0084.1.pwm
@@ -1,9 +1,9 @@
- -49 -49 51 19
- 19 -122 -81 89
- 110 -10000 -122 51
- 136 -122 -122 -81
- 184 -10000 -10000 -122
- -10000 189 -10000 -181
- 200 -10000 -10000 -10000
- 195 -10000 -281 -10000
- 0 -10000 -181 144
+ -40 -40 44 16
+ 16 -95 -64 78
+ 97 -265 -95 44
+ 122 -95 -95 -64
+ 166 -265 -265 -95
+ -265 171 -265 -132
+ 182 -265 -265 -265
+ 177 -265 -184 -265
+ 0 -265 -132 129
diff --git a/profiles/vertebrates/MA0087.1.pwm b/profiles/vertebrates/MA0087.1.pwm
index b18cce4..da53c63 100644
--- a/profiles/vertebrates/MA0087.1.pwm
+++ b/profiles/vertebrates/MA0087.1.pwm
@@ -1,7 +1,7 @@
- 200 -10000 -10000 -10000
- -10000 -10000 -252 194
- -10000 -10000 -10000 200
- -252 -10000 194 -10000
- -10000 -252 -10000 194
- -252 -252 -10000 187
- 48 -94 -52 48
+ 180 -254 -254 -254
+ -254 -254 -166 174
+ -254 -254 -254 180
+ -166 -254 174 -254
+ -254 -166 -254 174
+ -166 -166 -254 168
+ 40 -73 -42 40
diff --git a/profiles/vertebrates/MA0087.2.pwm b/profiles/vertebrates/MA0087.2.pwm
index e69de29..d9f7d32 100644
--- a/profiles/vertebrates/MA0087.2.pwm
+++ b/profiles/vertebrates/MA0087.2.pwm
@@ -0,0 +1,13 @@
+ 0 -33 59 -51
+ 72 -45 12 -93
+ -18 4 59 -77
+ 166 -232 -119 -232
+ 189 -360 -316 -316
+ -360 186 -282 -282
+ 186 -282 -282 -360
+ 179 -212 -232 -316
+ -194 -255 -316 179
+ -57 -360 162 -255
+ -110 -101 146 -179
+ -45 20 34 -23
+ 24 12 -23 -18
diff --git a/profiles/vertebrates/MA0088.1.pwm b/profiles/vertebrates/MA0088.1.pwm
index e69de29..33e897d 100644
--- a/profiles/vertebrates/MA0088.1.pwm
+++ b/profiles/vertebrates/MA0088.1.pwm
@@ -0,0 +1,20 @@
+ -206 20 54 20
+ 105 -24 -88 -88
+ -24 20 -88 54
+ -206 20 -24 82
+ -24 -88 -206 124
+ -88 124 -206 -24
+ -206 171 -206 -206
+ -206 171 -206 -206
+ 157 -88 -206 -206
+ -206 -88 54 82
+ 54 54 -24 -206
+ 105 -24 -24 -206
+ -206 -206 -88 157
+ -206 -88 105 20
+ -206 171 -206 -206
+ 54 82 -206 -88
+ 20 -88 -88 82
+ -24 20 -206 82
+ -88 -88 124 -88
+ 20 105 -88 -206
diff --git a/profiles/vertebrates/MA0088.2.pwm b/profiles/vertebrates/MA0088.2.pwm
index e69de29..6527d80 100644
--- a/profiles/vertebrates/MA0088.2.pwm
+++ b/profiles/vertebrates/MA0088.2.pwm
@@ -0,0 +1,16 @@
+ -241 0 -167 132
+ 121 -529 -413 68
+ -371 195 -516 -516
+ -504 197 -529 -529
+ -528 197 -528 -528
+ 197 -529 -483 -493
+ -533 112 -257 71
+ 154 -154 -48 -540
+ 191 -531 -244 -518
+ -464 -529 -516 197
+ -261 -319 188 -444
+ -528 197 -528 -528
+ 181 -140 -499 -352
+ -84 76 -464 77
+ -247 88 -472 96
+ -41 -404 155 -200
diff --git a/profiles/vertebrates/MA0089.1.pwm b/profiles/vertebrates/MA0089.1.pwm
index 0f34bad..3c1f94f 100644
--- a/profiles/vertebrates/MA0089.1.pwm
+++ b/profiles/vertebrates/MA0089.1.pwm
@@ -1,6 +1,6 @@
- -28 37 23 -50
- 177 -209 -150 -10000
- -10000 -10000 -10000 200
- -309 -10000 191 -309
- 200 -10000 -10000 -10000
- -10000 161 -209 -50
+ -24 32 20 -42
+ 161 -153 -116 -277
+ -277 -277 -277 183
+ -202 -277 175 -202
+ 183 -277 -277 -277
+ -277 146 -153 -42
diff --git a/profiles/vertebrates/MA0089.2.pwm b/profiles/vertebrates/MA0089.2.pwm
index f5878f0..e8132cc 100644
--- a/profiles/vertebrates/MA0089.2.pwm
+++ b/profiles/vertebrates/MA0089.2.pwm
@@ -1,16 +1,16 @@
- 57 -26 -32 -19
- 7 17 32 -80
- 24 2 -18 -13
- 162 -388 -25 -625
- -613 -739 -871 199
- -563 -691 198 -513
- 199 -771 -639 -713
- -404 177 -123 -334
- -194 -613 -458 188
- -218 186 -507 -311
- 192 -654 -343 -310
- -388 -554 185 -167
- -571 197 -467 -501
- 177 -371 -256 -152
- 70 -70 -27 -10
- 45 -191 -146 100
+ 56 -25 -32 -18
+ 6 17 32 -78
+ 24 2 -17 -12
+ 161 -358 -24 -507
+ -501 -545 -569 197
+ -476 -531 196 -447
+ 197 -553 -512 -538
+ -370 175 -120 -313
+ -188 -501 -411 186
+ -210 184 -443 -294
+ 190 -518 -321 -292
+ -358 -472 183 -162
+ -481 195 -417 -440
+ 175 -344 -245 -147
+ 69 -68 -27 -10
+ 44 -184 -142 99
diff --git a/profiles/vertebrates/MA0090.1.pwm b/profiles/vertebrates/MA0090.1.pwm
index 0083c55..d6a8719 100644
--- a/profiles/vertebrates/MA0090.1.pwm
+++ b/profiles/vertebrates/MA0090.1.pwm
@@ -1,12 +1,12 @@
- -158 100 -158 42
- 158 -10000 0 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 187 -10000 -158
- 74 -10000 -10000 122
- -158 122 42 -10000
- -58 42 0 0
- -10000 -58 142 -58
+ -105 83 -105 33
+ 135 -216 0 -216
+ -216 173 -216 -216
+ 173 -216 -216 -216
+ -216 -216 -216 173
+ -216 -216 -216 173
+ -216 173 -216 -216
+ -216 162 -216 -105
+ 60 -216 -216 102
+ -105 102 33 -216
+ -43 33 0 0
+ -216 -43 120 -43
diff --git a/profiles/vertebrates/MA0090.2.pwm b/profiles/vertebrates/MA0090.2.pwm
index 05113f1..5ffe8e7 100644
--- a/profiles/vertebrates/MA0090.2.pwm
+++ b/profiles/vertebrates/MA0090.2.pwm
@@ -1,10 +1,10 @@
- -38 68 -95 15
- 119 -168 31 -265
- -47 165 -380 -402
- 188 -228 -10000 -326
- -10000 -484 -616 198
- -14 -314 -10000 157
- -336 193 -721 -363
- -10000 167 -848 -29
- 78 -173 -81 50
- -1 29 -103 38
+ -36 66 -91 14
+ 117 -160 30 -246
+ -45 162 -334 -349
+ 185 -214 -517 -295
+ -507 -398 -453 195
+ -13 -284 -510 155
+ -302 190 -483 -322
+ -538 164 -522 -28
+ 77 -165 -79 49
+ -1 28 -99 37
diff --git a/profiles/vertebrates/MA0090.3.pwm b/profiles/vertebrates/MA0090.3.pwm
index 2382643..8dd5990 100644
--- a/profiles/vertebrates/MA0090.3.pwm
+++ b/profiles/vertebrates/MA0090.3.pwm
@@ -1,13 +1,13 @@
- 1 13 -29 11
- -8 33 -55 16
- 172 -382 -94 -318
- -153 180 -319 -400
- 195 -477 -422 -465
- -504 -465 -477 196
- -182 -482 -386 185
- -371 193 -452 -372
- -465 194 -556 -338
- 170 -335 -310 -90
- -95 -150 144 -129
- -41 18 59 -73
- 13 28 -11 -38
+ 1 13 -29 11
+ -8 32 -54 16
+ 172 -375 -93 -314
+ -152 180 -315 -392
+ 195 -463 -413 -453
+ -488 -453 -463 196
+ -181 -468 -379 185
+ -364 192 -441 -366
+ -452 194 -533 -333
+ 170 -330 -306 -90
+ -94 -149 144 -128
+ -41 18 59 -73
+ 12 28 -11 -38
diff --git a/profiles/vertebrates/MA0091.1.pwm b/profiles/vertebrates/MA0091.1.pwm
index 55f3dd8..b894dba 100644
--- a/profiles/vertebrates/MA0091.1.pwm
+++ b/profiles/vertebrates/MA0091.1.pwm
@@ -1,12 +1,12 @@
- 24 35 -46 -29
- -29 -14 86 -114
- 183 -10000 -187 -246
- 86 113 -10000 -10000
- -10000 197 -346 -10000
- 200 -10000 -10000 -10000
- -10000 -346 0 154
- 13 154 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 197 -346
- -10000 -187 86 93
- -146 -146 -246 163
+ 21 31 -39 -25
+ -25 -12 77 -93
+ 168 -293 -144 -179
+ 77 102 -293 -293
+ -293 182 -225 -293
+ 185 -293 -293 -293
+ -293 -225 0 141
+ 11 141 -293 -293
+ -293 -293 -293 185
+ -293 -293 182 -225
+ -293 -144 77 84
+ -116 -116 -179 149
diff --git a/profiles/vertebrates/MA0092.1.pwm b/profiles/vertebrates/MA0092.1.pwm
index 89aae6f..a6b7340 100644
--- a/profiles/vertebrates/MA0092.1.pwm
+++ b/profiles/vertebrates/MA0092.1.pwm
@@ -1,10 +1,10 @@
- -86 14 46 -5
- 46 -10000 105 -86
- -186 -186 -286 173
- -10000 195 -10000 -286
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -127 179 -286
- 31 95 -286 -54
- 114 -10000 -127 46
- -54 -86 -86 114
+ -69 12 40 -4
+ 40 -267 93 -69
+ -136 -136 -187 156
+ -267 177 -267 -187
+ -267 -267 -267 182
+ -267 -267 182 -267
+ -267 -98 162 -187
+ 27 84 -187 -44
+ 101 -267 -98 40
+ -44 -69 -69 101
diff --git a/profiles/vertebrates/MA0093.1.pwm b/profiles/vertebrates/MA0093.1.pwm
index e69de29..d2c4f66 100644
--- a/profiles/vertebrates/MA0093.1.pwm
+++ b/profiles/vertebrates/MA0093.1.pwm
@@ -0,0 +1,7 @@
+ -270 182 -270 -270
+ 182 -270 -270 -270
+ -270 173 -270 -140
+ -190 -270 178 -270
+ -270 -190 -190 173
+ -270 -270 182 -270
+ 23 -140 79 -48
diff --git a/profiles/vertebrates/MA0093.2.pwm b/profiles/vertebrates/MA0093.2.pwm
index c691862..a560159 100644
--- a/profiles/vertebrates/MA0093.2.pwm
+++ b/profiles/vertebrates/MA0093.2.pwm
@@ -1,11 +1,11 @@
- 20 -16 77 -198
- -152 82 -50 23
- -661 200 -10000 -10000
- 198 -10000 -10000 -397
- -449 129 -218 37
- -139 -282 180 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 181 -10000 -161 -258
- -10000 164 -10000 -20
- -121 124 -192 -8
+ 20 -16 76 -194
+ -150 82 -49 23
+ -581 199 -703 -703
+ 197 -703 -703 -382
+ -427 128 -214 37
+ -137 -276 179 -703
+ -703 -703 -703 199
+ -703 -703 199 -703
+ 180 -703 -159 -252
+ -703 164 -703 -19
+ -119 123 -189 -8
diff --git a/profiles/vertebrates/MA0093.3.pwm b/profiles/vertebrates/MA0093.3.pwm
index 7919cc7..2223436 100644
--- a/profiles/vertebrates/MA0093.3.pwm
+++ b/profiles/vertebrates/MA0093.3.pwm
@@ -1,14 +1,14 @@
- 6 -40 8 19
- 22 -114 59 -18
- -87 -219 164 -308
- -185 -54 -182 146
- -470 195 -417 -479
- 196 -440 -486 -466
- -505 -7 -192 146
- -200 -332 186 -505
- -495 -571 -452 197
- -510 -408 195 -485
- 172 -218 -156 -277
- -291 158 -220 -62
- -29 49 -99 35
- 3 7 -42 25
+ 6 -40 8 19
+ 22 -113 59 -18
+ -86 -217 164 -304
+ -183 -53 -181 146
+ -455 195 -407 -464
+ 195 -428 -470 -451
+ -486 -7 -190 146
+ -198 -326 185 -486
+ -478 -543 -440 196
+ -491 -399 195 -469
+ 172 -216 -155 -274
+ -287 158 -217 -61
+ -29 49 -99 35
+ 3 7 -42 25
diff --git a/profiles/vertebrates/MA0095.1.pwm b/profiles/vertebrates/MA0095.1.pwm
index 28ba0d5..3fd62d6 100644
--- a/profiles/vertebrates/MA0095.1.pwm
+++ b/profiles/vertebrates/MA0095.1.pwm
@@ -1,6 +1,6 @@
- 50 -209 72 -50
- -10000 191 -10000 -209
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -50 91 -50 -50
+ 41 -138 60 -39
+ -236 169 -236 -138
+ -236 177 -236 -236
+ 177 -236 -236 -236
+ -236 -236 -236 177
+ -39 77 -39 -39
diff --git a/profiles/vertebrates/MA0095.2.pwm b/profiles/vertebrates/MA0095.2.pwm
index 4fcf025..92dca92 100644
--- a/profiles/vertebrates/MA0095.2.pwm
+++ b/profiles/vertebrates/MA0095.2.pwm
@@ -1,12 +1,12 @@
- -67 135 -116 -144
- 196 -10000 -331 -690
- 191 -418 -274 -483
- 48 -68 87 -275
- 200 -10000 -10000 -10000
- -10000 -722 -10000 200
- -735 -10000 200 -10000
- -711 -10000 200 -10000
- -114 165 -556 -139
- -105 -9 63 5
- -100 -103 138 -127
- -43 135 -220 -103
+ -66 134 -114 -141
+ 195 -642 -317 -565
+ 190 -392 -265 -443
+ 48 -67 86 -266
+ 199 -642 -642 -642
+ -642 -577 -642 198
+ -582 -642 199 -642
+ -573 -642 198 -642
+ -112 164 -494 -136
+ -103 -9 62 5
+ -98 -102 137 -125
+ -42 134 -214 -101
diff --git a/profiles/vertebrates/MA0095.3.pwm b/profiles/vertebrates/MA0095.3.pwm
index 0711921..5caf3f3 100644
--- a/profiles/vertebrates/MA0095.3.pwm
+++ b/profiles/vertebrates/MA0095.3.pwm
@@ -1,12 +1,12 @@
- 36 -38 -28 17
- 24 9 -34 -6
- -179 161 -156 -166
- 194 -355 -524 -416
- 187 -290 -304 -357
- 151 -210 -32 -297
- 194 -386 -393 -482
- -398 -549 -394 194
- -427 -604 196 -492
- -276 -348 187 -321
- -6 101 -116 -77
- -14 -56 36 18
+ 36 -37 -28 17
+ 24 9 -33 -6
+ -178 161 -154 -165
+ 193 -348 -501 -405
+ 187 -286 -299 -349
+ 150 -207 -32 -292
+ 193 -377 -383 -464
+ -388 -522 -384 194
+ -415 -565 196 -473
+ -272 -341 186 -316
+ -6 100 -115 -77
+ -14 -56 35 18
diff --git a/profiles/vertebrates/MA0098.1.pwm b/profiles/vertebrates/MA0098.1.pwm
index 4bb3c61..cc4a050 100644
--- a/profiles/vertebrates/MA0098.1.pwm
+++ b/profiles/vertebrates/MA0098.1.pwm
@@ -1,6 +1,6 @@
- -132 68 -132 68
- 77 -10000 -10000 120
- -10000 -332 -10000 196
- -10000 196 -332 -10000
- -10000 196 -10000 -332
- -100 -174 77 58
+ -105 60 -105 60
+ 68 -287 -287 109
+ -287 -217 -287 181
+ -287 181 -217 -287
+ -287 181 -287 -217
+ -82 -134 68 52
diff --git a/profiles/vertebrates/MA0098.2.pwm b/profiles/vertebrates/MA0098.2.pwm
index e69de29..44d4d4d 100644
--- a/profiles/vertebrates/MA0098.2.pwm
+++ b/profiles/vertebrates/MA0098.2.pwm
@@ -0,0 +1,15 @@
+ -11 51 -15 -41
+ -162 129 -91 -53
+ -80 107 -127 -13
+ 132 -190 -5 -186
+ -547 167 -501 -38
+ -49 -547 -547 170
+ -547 -547 -547 198
+ -547 198 -547 -547
+ -547 198 -547 -547
+ -547 -547 -152 185
+ -547 -49 158 -190
+ -266 30 -271 130
+ -161 53 -9 37
+ -59 21 -58 60
+ -79 42 2 10
diff --git a/profiles/vertebrates/MA0098.3.pwm b/profiles/vertebrates/MA0098.3.pwm
index 3755c44..0b0f369 100644
--- a/profiles/vertebrates/MA0098.3.pwm
+++ b/profiles/vertebrates/MA0098.3.pwm
@@ -1,10 +1,10 @@
- 151 -217 -56 -197
- -214 175 -142 -518
- -87 178 -680 -10000
- -10000 -501 199 -10000
- -10000 -10000 199 -581
- 200 -10000 -10000 -10000
- 156 -666 -487 0
- 70 -501 122 -582
- -302 -2 -255 144
- 26 -74 69 -76
+ 149 -210 -55 -191
+ -206 174 -138 -450
+ -85 177 -526 -585
+ -565 -431 197 -565
+ -565 -565 197 -474
+ 198 -564 -564 -564
+ 155 -534 -437 0
+ 69 -432 120 -475
+ -284 -2 -242 143
+ 25 -72 68 -74
diff --git a/profiles/vertebrates/MA0099.1.pwm b/profiles/vertebrates/MA0099.1.pwm
index 36cb238..c712091 100644
--- a/profiles/vertebrates/MA0099.1.pwm
+++ b/profiles/vertebrates/MA0099.1.pwm
@@ -1,8 +1,8 @@
- 7 -125 134 -10000
- -10000 -10000 -10000 200
- -10000 -225 192 -10000
- 192 -225 -10000 -10000
- -225 34 92 -66
- -225 -225 -10000 184
- 34 145 -10000 -10000
- 192 -10000 -10000 -225
+ 6 -92 116 -242
+ -242 -242 -242 178
+ -242 -148 171 -242
+ 171 -148 -242 -242
+ -148 28 79 -51
+ -148 -148 -242 163
+ 28 127 -242 -242
+ 171 -242 -242 -148
diff --git a/profiles/vertebrates/MA0099.2.pwm b/profiles/vertebrates/MA0099.2.pwm
index b26407f..e49da63 100644
--- a/profiles/vertebrates/MA0099.2.pwm
+++ b/profiles/vertebrates/MA0099.2.pwm
@@ -1,7 +1,7 @@
- -10000 -217 -10000 192
- -10000 -10000 174 -58
- 183 -117 -10000 -10000
- 15 142 -217 -10000
- -58 -10000 -217 164
- -10000 174 -58 -10000
- 183 -10000 -217 -217
+ -239 -143 -239 170
+ -239 -239 153 -45
+ 162 -86 -239 -239
+ 12 123 -143 -239
+ -45 -239 -143 144
+ -239 153 -45 -239
+ 162 -239 -143 -143
diff --git a/profiles/vertebrates/MA0099.3.pwm b/profiles/vertebrates/MA0099.3.pwm
index 93835ae..2f65679 100644
--- a/profiles/vertebrates/MA0099.3.pwm
+++ b/profiles/vertebrates/MA0099.3.pwm
@@ -1,10 +1,10 @@
- 124 -117 4 -264
- -638 -564 -697 199
- -516 -797 172 -57
- 171 -93 -597 -247
- -168 -47 146 -221
- -564 -697 -697 199
- -306 195 -638 -597
- 199 -697 -697 -597
- -338 32 -140 118
- 15 67 -61 -63
+ 122 -112 4 -243
+ -456 -432 -470 195
+ -411 -486 169 -55
+ 168 -89 -444 -229
+ -159 -46 143 -206
+ -432 -470 -470 195
+ -277 191 -456 -444
+ 195 -470 -470 -444
+ -301 32 -133 116
+ 14 65 -59 -60
diff --git a/profiles/vertebrates/MA0100.1.pwm b/profiles/vertebrates/MA0100.1.pwm
index e69de29..1804669 100644
--- a/profiles/vertebrates/MA0100.1.pwm
+++ b/profiles/vertebrates/MA0100.1.pwm
@@ -0,0 +1,8 @@
+ -57 -133 130 -110
+ 71 -238 88 -160
+ -194 178 -238 -303
+ 29 37 29 -194
+ -238 -303 183 -303
+ -194 -238 -303 178
+ -303 -303 -303 186
+ -90 -303 166 -238
diff --git a/profiles/vertebrates/MA0100.2.pwm b/profiles/vertebrates/MA0100.2.pwm
index e69de29..2f9c3e4 100644
--- a/profiles/vertebrates/MA0100.2.pwm
+++ b/profiles/vertebrates/MA0100.2.pwm
@@ -0,0 +1,10 @@
+ -138 60 -35 40
+ -11 86 -501 29
+ 197 -501 -501 -501
+ 186 -501 -172 -501
+ -501 197 -501 -501
+ -205 -501 -501 189
+ -501 -501 197 -501
+ -68 75 -391 71
+ -274 192 -501 -501
+ 154 -400 -501 1
diff --git a/profiles/vertebrates/MA0100.3.pwm b/profiles/vertebrates/MA0100.3.pwm
index e69de29..e7e36c1 100644
--- a/profiles/vertebrates/MA0100.3.pwm
+++ b/profiles/vertebrates/MA0100.3.pwm
@@ -0,0 +1,10 @@
+ 15 14 -34 -1
+ -38 16 6 10
+ -532 196 -473 -438
+ 193 -494 -301 -455
+ 197 -506 -532 -463
+ -532 197 -532 -532
+ -518 -249 -233 185
+ -446 -494 196 -532
+ 7 33 -132 37
+ 14 46 -74 -11
diff --git a/profiles/vertebrates/MA0101.1.pwm b/profiles/vertebrates/MA0101.1.pwm
index 0a78af7..a38a02d 100644
--- a/profiles/vertebrates/MA0101.1.pwm
+++ b/profiles/vertebrates/MA0101.1.pwm
@@ -1,10 +1,10 @@
- -10000 23 91 -9
- -10000 -209 182 -209
- -209 -10000 182 -209
- 23 -209 108 -109
- 50 23 -50 -50
- 23 -209 -209 123
- -209 -10000 -10000 191
- -109 -10000 -10000 182
- -10000 182 -10000 -109
- -209 191 -10000 -10000
+ -236 19 77 -7
+ -236 -138 160 -138
+ -138 -236 160 -138
+ 19 -138 93 -80
+ 41 19 -39 -39
+ 19 -138 -138 106
+ -138 -236 -236 169
+ -80 -236 -236 160
+ -236 160 -236 -80
+ -138 169 -236 -236
diff --git a/profiles/vertebrates/MA0102.1.pwm b/profiles/vertebrates/MA0102.1.pwm
index e69de29..58cbde8 100644
--- a/profiles/vertebrates/MA0102.1.pwm
+++ b/profiles/vertebrates/MA0102.1.pwm
@@ -0,0 +1,12 @@
+ -45 -239 -239 153
+ -143 -143 -14 123
+ -14 -143 34 54
+ -86 86 -86 12
+ -14 -86 99 -86
+ -86 153 -239 -143
+ 178 -239 -239 -239
+ 178 -239 -239 -239
+ -239 34 -86 99
+ 12 34 12 -86
+ -86 12 -45 70
+ -143 34 12 34
diff --git a/profiles/vertebrates/MA0102.2.pwm b/profiles/vertebrates/MA0102.2.pwm
index e69de29..0584c81 100644
--- a/profiles/vertebrates/MA0102.2.pwm
+++ b/profiles/vertebrates/MA0102.2.pwm
@@ -0,0 +1,9 @@
+ -45 -239 -239 153
+ -143 -143 -14 123
+ -14 -143 34 54
+ -86 86 -86 12
+ -14 -86 99 -86
+ -86 153 -239 -143
+ 178 -239 -239 -239
+ 178 -239 -239 -239
+ -239 34 -86 99
diff --git a/profiles/vertebrates/MA0102.3.pwm b/profiles/vertebrates/MA0102.3.pwm
index e69de29..bf4b12d 100644
--- a/profiles/vertebrates/MA0102.3.pwm
+++ b/profiles/vertebrates/MA0102.3.pwm
@@ -0,0 +1,11 @@
+ 143 -150 -7 -696
+ -696 -696 -696 199
+ -696 -696 -696 199
+ -239 -696 155 -21
+ -696 199 -696 -696
+ 163 -156 -182 -187
+ -52 99 -696 38
+ 167 -31 -696 -696
+ 199 -696 -696 -696
+ -696 57 -107 103
+ 60 37 -207 -6
diff --git a/profiles/vertebrates/MA0102.4.pwm b/profiles/vertebrates/MA0102.4.pwm
index 6a52798..165d8ca 100644
--- a/profiles/vertebrates/MA0102.4.pwm
+++ b/profiles/vertebrates/MA0102.4.pwm
@@ -1,14 +1,14 @@
- 28 -41 -32 30
- -16 -63 2 53
- 146 -144 -63 -211
- -451 -458 -477 196
- -430 -613 -306 193
- -109 -440 155 -85
- -410 193 -486 -327
- 166 -248 -155 -165
- -170 164 -364 -101
- 186 -180 -586 -418
- 193 -426 -384 -381
- -213 -29 -143 137
- 51 -18 -61 6
- 13 -20 -30 29
+ 28 -41 -32 30
+ -16 -62 2 53
+ 146 -143 -63 -209
+ -440 -447 -464 195
+ -421 -581 -302 193
+ -109 -430 155 -85
+ -402 192 -473 -322
+ 166 -246 -154 -164
+ -168 164 -358 -101
+ 186 -179 -559 -409
+ 192 -417 -377 -374
+ -211 -29 -142 137
+ 50 -18 -61 6
+ 13 -20 -30 29
diff --git a/profiles/vertebrates/MA0103.1.pwm b/profiles/vertebrates/MA0103.1.pwm
index 54b41a4..666988c 100644
--- a/profiles/vertebrates/MA0103.1.pwm
+++ b/profiles/vertebrates/MA0103.1.pwm
@@ -1,6 +1,6 @@
- -336 173 -336 -104
- 189 -10000 -236 -336
- -10000 196 -336 -10000
- -10000 189 -177 -10000
- -10000 -336 -10000 196
- -4 -336 64 45
+ -219 159 -219 -84
+ 174 -289 -172 -219
+ -289 181 -219 -289
+ -289 174 -137 -289
+ -289 -219 -289 181
+ -3 -219 57 40
diff --git a/profiles/vertebrates/MA0103.2.pwm b/profiles/vertebrates/MA0103.2.pwm
index e69de29..16f0c06 100644
--- a/profiles/vertebrates/MA0103.2.pwm
+++ b/profiles/vertebrates/MA0103.2.pwm
@@ -0,0 +1,9 @@
+ -5 70 -10 -108
+ -592 173 -592 -64
+ 42 -138 -102 83
+ -592 182 -592 -118
+ 198 -592 -592 -592
+ -592 198 -592 -592
+ -592 198 -592 -592
+ -592 -592 -592 198
+ -592 -592 198 -592
diff --git a/profiles/vertebrates/MA0103.3.pwm b/profiles/vertebrates/MA0103.3.pwm
index e69de29..fc2f109 100644
--- a/profiles/vertebrates/MA0103.3.pwm
+++ b/profiles/vertebrates/MA0103.3.pwm
@@ -0,0 +1,11 @@
+ -64 66 5 -44
+ -10 14 4 -9
+ -508 192 -471 -286
+ 198 -716 -429 -712
+ -623 197 -526 -501
+ -447 193 -289 -627
+ -700 -324 -370 193
+ -341 -457 194 -495
+ -133 92 4 -56
+ -24 28 39 -67
+ -52 46 21 -38
diff --git a/profiles/vertebrates/MA0104.1.pwm b/profiles/vertebrates/MA0104.1.pwm
index ab851c5..b92b0e7 100644
--- a/profiles/vertebrates/MA0104.1.pwm
+++ b/profiles/vertebrates/MA0104.1.pwm
@@ -1,6 +1,6 @@
- -10000 200 -10000 -10000
- 190 -10000 -10000 -195
- -10000 195 -10000 -295
- -195 -295 185 -10000
- -10000 -137 -10000 185
- -10000 -10000 200 -10000
+ -272 183 -272 -272
+ 173 -272 -272 -143
+ -272 178 -272 -193
+ -143 -193 168 -272
+ -272 -106 -272 168
+ -272 -272 183 -272
diff --git a/profiles/vertebrates/MA0104.2.pwm b/profiles/vertebrates/MA0104.2.pwm
index 9b0c901..ab0559e 100644
--- a/profiles/vertebrates/MA0104.2.pwm
+++ b/profiles/vertebrates/MA0104.2.pwm
@@ -1,10 +1,10 @@
- 48 54 -80 -80
- -149 63 84 -173
- -397 198 -10000 -10000
- 192 -10000 -260 -419
- -10000 194 -377 -360
- -182 -677 189 -677
- -219 -17 -577 152
- -10000 -10000 191 -202
- -202 -116 157 -153
- -84 128 -145 -60
+ 46 52 -75 -75
+ -138 61 81 -159
+ -323 193 -445 -445
+ 187 -445 -230 -335
+ -445 189 -312 -301
+ -166 -420 184 -420
+ -197 -17 -399 148
+ -445 -445 186 -183
+ -183 -108 152 -141
+ -79 124 -134 -57
diff --git a/profiles/vertebrates/MA0104.3.pwm b/profiles/vertebrates/MA0104.3.pwm
index d3201c7..adc2bc0 100644
--- a/profiles/vertebrates/MA0104.3.pwm
+++ b/profiles/vertebrates/MA0104.3.pwm
@@ -1,8 +1,8 @@
- 59 -126 69 -111
- -10000 169 -39 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -106 -10000 182 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
+ 58 -121 68 -106
+ -527 167 -38 -527
+ -527 197 -527 -527
+ 197 -527 -527 -527
+ -527 197 -527 -527
+ -102 -527 179 -527
+ -527 -527 -527 197
+ -527 -527 197 -527
diff --git a/profiles/vertebrates/MA0104.4.pwm b/profiles/vertebrates/MA0104.4.pwm
index 7d64211..e707131 100644
--- a/profiles/vertebrates/MA0104.4.pwm
+++ b/profiles/vertebrates/MA0104.4.pwm
@@ -1,12 +1,12 @@
- -23 12 49 -60
- -1 -17 57 -67
- -186 161 -123 -206
- -568 199 -696 -796
- 187 -496 -262 -267
- -631 190 -384 -243
- -243 -384 190 -631
- -267 -262 -496 187
- -796 -696 199 -568
- -206 -123 161 -186
- -67 57 -17 -1
- -60 49 12 -23
+ -23 12 49 -60
+ -1 -17 57 -66
+ -182 160 -121 -200
+ -501 198 -566 -599
+ 185 -452 -253 -258
+ -536 189 -363 -236
+ -236 -363 189 -536
+ -258 -253 -452 185
+ -599 -566 198 -501
+ -200 -121 160 -182
+ -66 57 -17 -1
+ -60 49 12 -23
diff --git a/profiles/vertebrates/MA0105.1.pwm b/profiles/vertebrates/MA0105.1.pwm
index e69de29..eae58b0 100644
--- a/profiles/vertebrates/MA0105.1.pwm
+++ b/profiles/vertebrates/MA0105.1.pwm
@@ -0,0 +1,10 @@
+ -284 -284 184 -284
+ -284 -284 184 -284
+ -212 -284 180 -284
+ 127 -284 40 -284
+ 90 40 -212 -76
+ -37 -212 -128 137
+ -212 -164 -164 165
+ -164 75 -284 90
+ -164 173 -284 -212
+ -284 177 -284 -164
diff --git a/profiles/vertebrates/MA0105.2.pwm b/profiles/vertebrates/MA0105.2.pwm
index 974f51f..5ab2475 100644
--- a/profiles/vertebrates/MA0105.2.pwm
+++ b/profiles/vertebrates/MA0105.2.pwm
@@ -1,11 +1,11 @@
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -117 -10000 183 -10000
- 129 -217 42 -10000
- 15 -10000 -117 129
- -10000 15 -117 129
- -10000 153 -10000 15
- -10000 192 -10000 -217
- -10000 200 -10000 -10000
- -217 174 -217 -217
+ -239 -239 178 -239
+ -239 -239 178 -239
+ -239 -239 178 -239
+ -86 -239 162 -239
+ 112 -143 34 -239
+ 12 -239 -86 112
+ -239 12 -86 112
+ -239 134 -239 12
+ -239 170 -239 -143
+ -239 178 -239 -239
+ -143 153 -143 -143
diff --git a/profiles/vertebrates/MA0105.3.pwm b/profiles/vertebrates/MA0105.3.pwm
index e69de29..7cc0b83 100644
--- a/profiles/vertebrates/MA0105.3.pwm
+++ b/profiles/vertebrates/MA0105.3.pwm
@@ -0,0 +1,11 @@
+ -114 -194 106 27
+ -415 -618 197 -618
+ -322 -618 192 -360
+ 129 -242 35 -332
+ 79 -8 -64 -55
+ -618 -618 -618 198
+ -618 -415 -367 195
+ -618 25 -618 148
+ -618 191 -618 -225
+ -618 196 -618 -364
+ 30 90 -218 -55
diff --git a/profiles/vertebrates/MA0105.4.pwm b/profiles/vertebrates/MA0105.4.pwm
index e69de29..6038190 100644
--- a/profiles/vertebrates/MA0105.4.pwm
+++ b/profiles/vertebrates/MA0105.4.pwm
@@ -0,0 +1,13 @@
+ 145 -60 -160 -187
+ -694 -732 199 -710
+ -733 -719 199 -724
+ -717 -735 197 -382
+ -426 -723 197 -644
+ 188 -515 -194 -584
+ 102 -618 -581 96
+ -626 -157 -477 185
+ -571 196 -618 -394
+ -227 191 -636 -627
+ -616 199 -629 -625
+ -609 198 -626 -601
+ -161 -154 -19 129
diff --git a/profiles/vertebrates/MA0106.1.pwm b/profiles/vertebrates/MA0106.1.pwm
index b735d39..5927850 100644
--- a/profiles/vertebrates/MA0106.1.pwm
+++ b/profiles/vertebrates/MA0106.1.pwm
@@ -1,20 +1,20 @@
- 23 91 -109 -109
- -50 72 50 -209
- -9 -10000 161 -10000
- 23 -10000 150 -10000
- 161 -10000 -9 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 137 -10000 50
- -10000 191 -10000 -209
- -10000 191 -10000 -209
- -209 -10000 182 -209
- -209 -10000 172 -109
- -9 -10000 161 -10000
- -209 172 -109 -10000
- 182 -10000 -10000 -109
- -109 -10000 -10000 182
- -209 -209 172 -209
- -209 -109 -209 161
+ 19 77 -80 -80
+ -39 60 41 -138
+ -7 -236 141 -236
+ 19 -236 130 -236
+ 141 -236 -7 -236
+ -236 177 -236 -236
+ 177 -236 -236 -236
+ -236 -236 -236 177
+ -236 -236 177 -236
+ -236 119 -236 41
+ -236 169 -236 -138
+ -236 169 -236 -138
+ -138 -236 160 -138
+ -138 -236 151 -80
+ -7 -236 141 -236
+ -138 151 -80 -236
+ 160 -236 -236 -80
+ -80 -236 -236 160
+ -138 -138 151 -138
+ -138 -80 -138 141
diff --git a/profiles/vertebrates/MA0106.2.pwm b/profiles/vertebrates/MA0106.2.pwm
index 580fbb5..1ea882d 100644
--- a/profiles/vertebrates/MA0106.2.pwm
+++ b/profiles/vertebrates/MA0106.2.pwm
@@ -1,15 +1,15 @@
- 126 -10000 61 -357
- -668 195 -594 -327
- 165 -277 -341 -67
- -19 -481 -322 158
- -10000 -10000 200 -10000
- -208 96 -10000 87
- -81 141 -271 -69
- -194 158 -257 -77
- 140 -93 -182 -84
- 13 -277 136 -238
- 144 -10000 29 -418
- -10000 199 -668 -727
- 172 -357 -468 -77
- -79 -284 -362 168
- -310 -568 195 -668
+ 123 -517 59 -319
+ -475 192 -452 -296
+ 162 -256 -307 -64
+ -19 -400 -292 155
+ -517 -517 197 -517
+ -195 94 -517 85
+ -78 139 -250 -66
+ -183 155 -238 -75
+ 137 -89 -172 -81
+ 13 -256 134 -222
+ 142 -517 29 -362
+ -517 196 -475 -488
+ 169 -319 -393 -75
+ -76 -261 -323 165
+ -282 -442 192 -475
diff --git a/profiles/vertebrates/MA0106.3.pwm b/profiles/vertebrates/MA0106.3.pwm
index 14ee314..18d2314 100644
--- a/profiles/vertebrates/MA0106.3.pwm
+++ b/profiles/vertebrates/MA0106.3.pwm
@@ -1,18 +1,18 @@
- 79 -207 59 -94
- 161 -489 -50 -223
- -684 194 -863 -262
- 182 -405 -237 -219
- -163 -382 -527 184
- -932 -1132 200 -10000
- -432 130 -548 55
- -213 168 -369 -103
- -205 133 -114 -33
- -18 -156 119 -104
- -73 -297 159 -194
- 82 -728 113 -441
- -10000 200 -1024 -1224
- 184 -386 -453 -165
- -145 -540 -580 184
- -400 -731 197 -627
- -266 -73 -558 169
- -181 83 -264 82
+ 79 -203 59 -93
+ 160 -453 -50 -218
+ -603 193 -677 -257
+ 181 -384 -231 -214
+ -161 -370 -495 183
+ -692 -714 199 -722
+ -414 130 -510 54
+ -210 167 -359 -102
+ -202 132 -113 -32
+ -17 -154 119 -103
+ -72 -292 158 -192
+ 81 -607 112 -418
+ -714 199 -699 -710
+ 183 -368 -426 -162
+ -143 -504 -534 184
+ -387 -629 196 -569
+ -261 -73 -521 168
+ -178 83 -259 82
diff --git a/profiles/vertebrates/MA0107.1.pwm b/profiles/vertebrates/MA0107.1.pwm
index 556d72d..9d12466 100644
--- a/profiles/vertebrates/MA0107.1.pwm
+++ b/profiles/vertebrates/MA0107.1.pwm
@@ -1,10 +1,10 @@
- -10000 -17 129 -58
- -10000 -10000 192 -217
- -10000 -10000 200 -10000
- 129 -10000 64 -10000
- 115 -58 -17 -217
- -117 -10000 -10000 183
- -10000 -10000 -10000 200
- -10000 -117 -10000 183
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
+ -239 -14 112 -45
+ -239 -239 170 -143
+ -239 -239 178 -239
+ 112 -239 54 -239
+ 99 -45 -14 -143
+ -86 -239 -239 162
+ -239 -239 -239 178
+ -239 -86 -239 162
+ -239 178 -239 -239
+ -239 178 -239 -239
diff --git a/profiles/vertebrates/MA0108.1.pwm b/profiles/vertebrates/MA0108.1.pwm
index c880742..e706d70 100644
--- a/profiles/vertebrates/MA0108.1.pwm
+++ b/profiles/vertebrates/MA0108.1.pwm
@@ -1,15 +1,15 @@
- -67 58 64 -165
- -260 -108 -243 167
- 186 -10000 -560 -147
- -502 -328 -560 194
- 186 -10000 -428 -170
- 146 -10000 -10000 32
- 193 -498 -324 -398
- 119 -560 -114 32
- 67 -114 69 -156
- -80 47 63 -102
- -23 60 40 -165
- -25 39 40 -90
- -25 28 40 -67
- -52 14 52 -37
- -34 5 53 -45
+ -63 55 62 -151
+ -229 -100 -216 162
+ 180 -437 -388 -136
+ -369 -278 -388 189
+ 181 -437 -336 -155
+ 142 -437 -437 30
+ 187 -365 -274 -319
+ 115 -388 -106 30
+ 65 -106 66 -143
+ -75 45 60 -95
+ -22 57 38 -151
+ -23 37 38 -84
+ -23 27 38 -63
+ -49 13 49 -35
+ -32 5 50 -43
diff --git a/profiles/vertebrates/MA0108.2.pwm b/profiles/vertebrates/MA0108.2.pwm
index e69de29..7e551b5 100644
--- a/profiles/vertebrates/MA0108.2.pwm
+++ b/profiles/vertebrates/MA0108.2.pwm
@@ -0,0 +1,15 @@
+ -63 55 62 -151
+ -229 -100 -216 162
+ 180 -437 -388 -136
+ -369 -277 -388 189
+ 181 -437 -336 -155
+ 142 -437 -437 30
+ 184 -369 -204 -322
+ 115 -388 -106 30
+ 65 -106 66 -143
+ -75 45 60 -95
+ -22 57 38 -151
+ -23 37 38 -84
+ -23 27 38 -63
+ -49 13 49 -35
+ -32 5 50 -43
diff --git a/profiles/vertebrates/MA0111.1.pwm b/profiles/vertebrates/MA0111.1.pwm
index e69de29..b6cdee5 100644
--- a/profiles/vertebrates/MA0111.1.pwm
+++ b/profiles/vertebrates/MA0111.1.pwm
@@ -0,0 +1,11 @@
+ 135 -216 0 -216
+ -216 -43 135 -105
+ -43 -216 149 -216
+ -216 -216 162 -105
+ -105 -216 -105 149
+ 120 -216 -216 33
+ 83 -216 -43 33
+ -105 135 -43 -216
+ 149 -216 -43 -216
+ -216 -105 135 -43
+ -43 120 -43 -216
diff --git a/profiles/vertebrates/MA0112.1.pwm b/profiles/vertebrates/MA0112.1.pwm
index 7622bbe..b38c402 100644
--- a/profiles/vertebrates/MA0112.1.pwm
+++ b/profiles/vertebrates/MA0112.1.pwm
@@ -1,18 +1,18 @@
- -117 115 -117 -17
- -117 115 -117 -17
- 164 -117 -117 -10000
- -17 -10000 164 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 164 -17 -10000
- 142 -10000 -17 -117
- -117 164 -117 -10000
- -17 115 -117 -117
- 42 -17 83 -10000
- -117 -117 -117 142
- -117 -10000 183 -10000
- 115 -117 42 -10000
- -10000 183 -10000 -117
- -10000 200 -10000 -10000
- -17 83 -10000 42
- 42 83 -117 -117
+ -78 94 -78 -13
+ -78 94 -78 -13
+ 137 -78 -78 -200
+ -13 -200 137 -200
+ -200 -200 170 -200
+ -200 -200 -200 170
+ -200 137 -13 -200
+ 117 -200 -13 -78
+ -78 137 -78 -200
+ -13 94 -78 -78
+ 32 -13 66 -200
+ -78 -78 -78 117
+ -78 -200 154 -200
+ 94 -78 32 -200
+ -200 154 -200 -78
+ -200 170 -200 -200
+ -13 66 -200 32
+ 32 66 -78 -78
diff --git a/profiles/vertebrates/MA0112.2.pwm b/profiles/vertebrates/MA0112.2.pwm
index e69de29..1c53174 100644
--- a/profiles/vertebrates/MA0112.2.pwm
+++ b/profiles/vertebrates/MA0112.2.pwm
@@ -0,0 +1,20 @@
+ 6 4 38 -68
+ -12 -52 47 0
+ -82 54 33 -49
+ -48 93 -80 -32
+ 18 95 -123 -98
+ 134 -189 -39 -121
+ -158 -321 166 -136
+ -235 -241 178 -241
+ -169 -142 -36 134
+ -372 169 -109 -208
+ 170 -275 -194 -155
+ -97 104 -14 -92
+ -86 118 -109 -49
+ -84 108 -28 -102
+ -173 -235 -321 176
+ -223 -218 180 -344
+ 132 -16 -177 -169
+ -301 183 -283 -247
+ -95 153 -406 -90
+ -198 46 -218 111
diff --git a/profiles/vertebrates/MA0112.3.pwm b/profiles/vertebrates/MA0112.3.pwm
index e69de29..7d89ac9 100644
--- a/profiles/vertebrates/MA0112.3.pwm
+++ b/profiles/vertebrates/MA0112.3.pwm
@@ -0,0 +1,17 @@
+ 90 -85 -25 -44
+ 136 -374 41 -475
+ -484 -484 189 -209
+ -439 -481 196 -481
+ -460 -460 -401 195
+ -411 194 -434 -392
+ 186 -447 -187 -447
+ -26 133 -121 -224
+ -55 23 83 -146
+ 58 -78 85 -309
+ -456 -227 -433 189
+ -437 -479 196 -479
+ 194 -422 -422 -445
+ -436 194 -394 -436
+ -256 190 -438 -438
+ -483 -18 -371 159
+ -172 -87 67 64
diff --git a/profiles/vertebrates/MA0113.1.pwm b/profiles/vertebrates/MA0113.1.pwm
index e69de29..f876009 100644
--- a/profiles/vertebrates/MA0113.1.pwm
+++ b/profiles/vertebrates/MA0113.1.pwm
@@ -0,0 +1,18 @@
+ 32 -13 66 -200
+ 66 -200 94 -200
+ 32 -200 117 -200
+ 137 -200 -78 -78
+ 117 -78 -78 -78
+ -78 117 -13 -200
+ 154 -200 -78 -200
+ -13 -200 -13 94
+ 32 -13 -200 66
+ 94 32 -200 -78
+ -78 32 -200 94
+ -200 -200 154 -78
+ -78 -200 -200 154
+ -13 66 -200 32
+ -200 154 -78 -200
+ -78 -13 -78 94
+ 66 -200 66 -78
+ 32 -78 -13 32
diff --git a/profiles/vertebrates/MA0113.2.pwm b/profiles/vertebrates/MA0113.2.pwm
index e69de29..1a851b9 100644
--- a/profiles/vertebrates/MA0113.2.pwm
+++ b/profiles/vertebrates/MA0113.2.pwm
@@ -0,0 +1,15 @@
+ 106 -450 35 -75
+ -69 -450 163 -200
+ 80 -29 -9 -101
+ 174 -450 -156 -187
+ -450 195 -450 -450
+ 168 -450 -265 -77
+ 37 22 58 -450
+ 98 -67 -49 -53
+ 106 -11 -9 -450
+ -10 -450 -232 150
+ -450 -450 195 -450
+ -122 -318 -450 177
+ 4 46 -450 63
+ -450 176 -450 -94
+ -90 35 -450 110
diff --git a/profiles/vertebrates/MA0113.3.pwm b/profiles/vertebrates/MA0113.3.pwm
index e69de29..9c42a17 100644
--- a/profiles/vertebrates/MA0113.3.pwm
+++ b/profiles/vertebrates/MA0113.3.pwm
@@ -0,0 +1,17 @@
+ 19 -131 68 -23
+ 69 -525 121 -439
+ -646 -725 199 -650
+ 64 -317 -99 87
+ 199 -663 -660 -657
+ -733 199 -688 -733
+ 193 -643 -272 -547
+ -129 65 -192 81
+ 43 -64 -4 6
+ 104 -247 51 -158
+ -569 -335 -612 195
+ -748 -712 199 -730
+ -706 -703 -613 199
+ 62 -86 -308 85
+ -643 199 -715 -600
+ -452 123 -479 65
+ 9 61 -90 -20
diff --git a/profiles/vertebrates/MA0114.1.pwm b/profiles/vertebrates/MA0114.1.pwm
index e69de29..059fe25 100644
--- a/profiles/vertebrates/MA0114.1.pwm
+++ b/profiles/vertebrates/MA0114.1.pwm
@@ -0,0 +1,13 @@
+ 68 -106 63 -142
+ -222 -222 163 -106
+ -42 -164 98 -6
+ -142 41 23 16
+ -190 150 -164 -77
+ 170 -263 -190 -164
+ 155 -222 -64 -222
+ 163 -263 -90 -222
+ -164 -164 168 -263
+ -122 -222 90 58
+ -190 36 -53 81
+ -164 144 -142 -77
+ 123 -106 -64 -90
diff --git a/profiles/vertebrates/MA0114.2.pwm b/profiles/vertebrates/MA0114.2.pwm
index 1073d7d..156206f 100644
--- a/profiles/vertebrates/MA0114.2.pwm
+++ b/profiles/vertebrates/MA0114.2.pwm
@@ -1,15 +1,15 @@
- -60 51 -8 -5
- -128 -254 -221 168
- -232 -636 192 -590
- 54 -118 100 -314
- 140 8 -367 -209
- -516 198 -597 -642
- -733 -136 -10000 185
- -456 -67 -351 170
- -10000 -460 -336 195
- -228 -690 191 -503
- 33 -16 35 -80
- 55 43 -133 -33
- -186 169 -357 -124
- -116 63 -334 93
- -102 62 -48 32
+ -59 51 -8 -5
+ -126 -249 -217 167
+ -228 -566 191 -537
+ 53 -117 99 -305
+ 139 8 -355 -205
+ -482 197 -541 -570
+ -618 -135 -703 184
+ -433 -66 -340 169
+ -703 -436 -327 194
+ -224 -597 190 -472
+ 33 -16 35 -79
+ 54 43 -132 -33
+ -183 168 -346 -123
+ -115 63 -324 92
+ -101 62 -48 32
diff --git a/profiles/vertebrates/MA0114.3.pwm b/profiles/vertebrates/MA0114.3.pwm
index e69de29..593f0b1 100644
--- a/profiles/vertebrates/MA0114.3.pwm
+++ b/profiles/vertebrates/MA0114.3.pwm
@@ -0,0 +1,16 @@
+ 26 -138 107 -170
+ 32 -499 143 -581
+ -574 -615 198 -607
+ -275 -557 175 -108
+ -317 -415 -137 178
+ -611 195 -584 -325
+ 194 -604 -293 -619
+ 196 -617 -393 -549
+ 197 -616 -423 -616
+ -615 -607 198 -593
+ -615 -580 -569 198
+ -345 168 -343 -72
+ -620 193 -592 -270
+ 173 -466 -89 -314
+ 73 -22 -20 -71
+ -34 -27 -50 74
diff --git a/profiles/vertebrates/MA0114.4.pwm b/profiles/vertebrates/MA0114.4.pwm
index 79fe6a4..8631a7e 100644
--- a/profiles/vertebrates/MA0114.4.pwm
+++ b/profiles/vertebrates/MA0114.4.pwm
@@ -1,13 +1,13 @@
- -21 -70 26 41
- -25 31 -32 16
- -299 183 -323 -230
- 190 -321 -345 -375
- 179 -309 -169 -316
- 190 -442 -262 -386
- -402 -367 190 -311
- -365 -406 -241 188
- -207 170 -267 -150
- -309 186 -418 -243
- 166 -206 -199 -149
- 22 -24 16 -21
- 39 -36 1 -16
+ -21 -70 26 41
+ -25 31 -32 16
+ -294 183 -318 -228
+ 189 -316 -339 -367
+ 179 -304 -167 -311
+ 189 -429 -258 -378
+ -392 -359 190 -306
+ -357 -396 -238 187
+ -205 170 -264 -149
+ -304 186 -407 -240
+ 165 -204 -197 -148
+ 22 -24 16 -21
+ 39 -36 1 -15
diff --git a/profiles/vertebrates/MA0115.1.pwm b/profiles/vertebrates/MA0115.1.pwm
index 8cf7a92..b33e0ab 100644
--- a/profiles/vertebrates/MA0115.1.pwm
+++ b/profiles/vertebrates/MA0115.1.pwm
@@ -1,17 +1,17 @@
- 144 -32 -10000 -106
- 144 -264 -32 -164
- 168 -10000 -32 -10000
- -10000 -10000 200 -10000
- -10000 -10000 194 -264
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 194 -10000 -10000 -264
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 168 -264 -164 -164
- -10000 126 -6 -64
+ 128 -26 -258 -82
+ 128 -174 -26 -121
+ 150 -258 -26 -258
+ -258 -258 181 -258
+ -258 -258 175 -174
+ -258 -258 -258 181
+ -258 181 -258 -258
+ 181 -258 -258 -258
+ 175 -258 -258 -174
+ 181 -258 -258 -258
+ -258 -258 181 -258
+ -258 -258 181 -258
+ -258 -258 -258 181
+ -258 181 -258 -258
+ 181 -258 -258 -258
+ 150 -174 -121 -121
+ -258 112 -5 -51
diff --git a/profiles/vertebrates/MA0116.1.pwm b/profiles/vertebrates/MA0116.1.pwm
index fa4eb6f..1e3f9ad 100644
--- a/profiles/vertebrates/MA0116.1.pwm
+++ b/profiles/vertebrates/MA0116.1.pwm
@@ -1,15 +1,15 @@
- -24 -104 142 -10000
- -10000 96 104 -10000
- 96 104 -10000 -10000
- 104 96 -10000 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -304 104 -10000 86
- 154 -10000 -10000 13
- 66 -10000 96 -104
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 104 96
- -10000 -10000 96 104
- -10000 -4 96 13
- 42 142 -10000 -10000
+ -20 -83 127 -275
+ -275 85 93 -275
+ 85 93 -275 -275
+ 93 85 -275 -275
+ -275 183 -275 -275
+ -275 183 -275 -275
+ -199 93 -275 76
+ 139 -275 -275 11
+ 58 -275 85 -83
+ -275 -275 183 -275
+ -275 -275 183 -275
+ -275 -275 93 85
+ -275 -275 85 93
+ -275 -4 85 11
+ 36 127 -275 -275
diff --git a/profiles/vertebrates/MA0117.1.pwm b/profiles/vertebrates/MA0117.1.pwm
index e69de29..5a2378b 100644
--- a/profiles/vertebrates/MA0117.1.pwm
+++ b/profiles/vertebrates/MA0117.1.pwm
@@ -0,0 +1,8 @@
+ -228 -228 176 -228
+ -126 146 -126 -126
+ -228 -25 -126 134
+ -126 -228 146 -67
+ 146 -67 -228 -126
+ -25 93 -126 -25
+ -25 -126 76 7
+ -67 34 34 -25
diff --git a/profiles/vertebrates/MA0117.2.pwm b/profiles/vertebrates/MA0117.2.pwm
index d1e6d97..dd33a23 100644
--- a/profiles/vertebrates/MA0117.2.pwm
+++ b/profiles/vertebrates/MA0117.2.pwm
@@ -1,12 +1,12 @@
- 118 -165 -74 -29
- 121 -217 -178 23
- 99 -134 -158 37
- 45 -45 -35 16
- -155 -32 -464 150
- -811 -530 199 -678
- -108 181 -696 -647
- -418 -397 -814 196
- -374 -553 186 -183
- 197 -542 -503 -542
- -210 148 -67 -152
- 9 -198 24 58
+ 116 -158 -72 -28
+ 119 -207 -170 22
+ 97 -129 -152 36
+ 44 -44 -34 16
+ -151 -32 -418 148
+ -531 -442 196 -503
+ -105 179 -520 -504
+ -373 -358 -534 193
+ -343 -461 184 -175
+ 195 -449 -428 -449
+ -203 147 -66 -148
+ 9 -189 24 57
diff --git a/profiles/vertebrates/MA0119.1.pwm b/profiles/vertebrates/MA0119.1.pwm
index cd74cb1..f49fd1c 100644
--- a/profiles/vertebrates/MA0119.1.pwm
+++ b/profiles/vertebrates/MA0119.1.pwm
@@ -1,14 +1,14 @@
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- 181 -200 -10000 -200
- -100 100 32 -200
- -100 100 0 -100
- 81 -200 32 -42
- 0 -42 -100 81
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 181 -10000 -200 -200
+ -232 -232 -232 177
+ -232 -232 177 -232
+ -232 -232 177 -232
+ -232 177 -232 -232
+ 158 -132 -232 -132
+ -74 85 26 -132
+ -74 85 0 -74
+ 68 -132 26 -32
+ 0 -32 -74 68
+ -232 -232 177 -232
+ -232 177 -232 -232
+ -232 177 -232 -232
+ 177 -232 -232 -232
+ 158 -232 -132 -132
diff --git a/profiles/vertebrates/MA0122.1.pwm b/profiles/vertebrates/MA0122.1.pwm
index e69de29..5a0a0a8 100644
--- a/profiles/vertebrates/MA0122.1.pwm
+++ b/profiles/vertebrates/MA0122.1.pwm
@@ -0,0 +1,9 @@
+ -47 19 -47 50
+ -170 -47 -21 108
+ 98 -170 19 -77
+ 180 -256 -256 -256
+ -256 -256 180 -256
+ -256 -256 -256 180
+ 0 -256 141 -256
+ -47 0 87 -116
+ 50 19 -21 -77
diff --git a/profiles/vertebrates/MA0122.2.pwm b/profiles/vertebrates/MA0122.2.pwm
index 59f97c9..6c33f72 100644
--- a/profiles/vertebrates/MA0122.2.pwm
+++ b/profiles/vertebrates/MA0122.2.pwm
@@ -1,9 +1,9 @@
- 62 -47 17 -72
- -66 107 6 -214
- -621 187 -644 -168
- 190 -387 -497 -250
- -313 194 -583 -578
- -817 -533 -585 198
- -583 -291 -10000 194
- 171 -229 -334 -120
- 101 -109 -21 -60
+ 62 -46 17 -71
+ -66 107 6 -211
+ -523 186 -533 -163
+ 188 -362 -447 -241
+ -298 193 -499 -496
+ -580 -468 -499 197
+ -499 -279 -615 193
+ 169 -223 -319 -118
+ 100 -108 -21 -60
diff --git a/profiles/vertebrates/MA0122.3.pwm b/profiles/vertebrates/MA0122.3.pwm
index 02be13e..95bddff 100644
--- a/profiles/vertebrates/MA0122.3.pwm
+++ b/profiles/vertebrates/MA0122.3.pwm
@@ -1,13 +1,13 @@
- 61 -79 -56 29
- 42 -66 -57 44
- 116 -142 -80 -29
- 113 -120 -115 -12
- 3 99 -76 -131
- -502 195 -680 -355
- 196 -496 -707 -359
- -408 196 -800 -476
- -568 -632 -646 198
- -475 -421 -523 196
- 192 -412 -523 -297
- 114 -137 -90 -19
- 41 -29 -47 18
+ 60 -78 -55 29
+ 42 -65 -56 43
+ 115 -140 -79 -29
+ 112 -119 -113 -11
+ 3 98 -75 -129
+ -463 194 -574 -341
+ 194 -459 -586 -344
+ -387 195 -619 -444
+ -510 -549 -557 197
+ -442 -398 -479 195
+ 191 -390 -479 -288
+ 113 -134 -89 -19
+ 41 -29 -46 18
diff --git a/profiles/vertebrates/MA0124.1.pwm b/profiles/vertebrates/MA0124.1.pwm
index 3fa2325..d30e378 100644
--- a/profiles/vertebrates/MA0124.1.pwm
+++ b/profiles/vertebrates/MA0124.1.pwm
@@ -1,7 +1,7 @@
- 138 -232 -74 -74
- -10000 -232 -10000 193
- 200 -10000 -10000 -10000
- -10000 193 -10000 -232
- -232 -10000 -10000 193
- -232 -10000 -10000 193
- 193 -10000 -232 -10000
+ 121 -153 -57 -57
+ -245 -153 -245 172
+ 179 -245 -245 -245
+ -245 172 -245 -153
+ -153 -245 -245 172
+ -153 -245 -245 172
+ 172 -245 -153 -245
diff --git a/profiles/vertebrates/MA0124.2.pwm b/profiles/vertebrates/MA0124.2.pwm
index 8c8d3de..6e0ef67 100644
--- a/profiles/vertebrates/MA0124.2.pwm
+++ b/profiles/vertebrates/MA0124.2.pwm
@@ -1,9 +1,9 @@
- 87 -43 3 -129
- -109 135 -24 -293
- -10000 191 -715 -208
- 197 -561 -709 -396
- -452 198 -723 -723
- -10000 -1038 -10000 200
- -10000 -246 -10000 193
- 176 -253 -319 -159
- 104 -88 -28 -78
+ 86 -42 3 -126
+ -108 134 -23 -284
+ -617 189 -558 -202
+ 195 -485 -553 -368
+ -412 196 -556 -556
+ -608 -601 -608 198
+ -614 -237 -614 192
+ 175 -245 -305 -156
+ 103 -87 -28 -77
diff --git a/profiles/vertebrates/MA0125.1.pwm b/profiles/vertebrates/MA0125.1.pwm
index e69de29..c24416a 100644
--- a/profiles/vertebrates/MA0125.1.pwm
+++ b/profiles/vertebrates/MA0125.1.pwm
@@ -0,0 +1,8 @@
+ -284 -212 -284 180
+ 177 -284 -284 -164
+ 184 -284 -284 -284
+ -212 -212 -164 169
+ -164 -284 -99 160
+ 58 -284 109 -212
+ -99 29 82 -99
+ -164 40 -55 75
diff --git a/profiles/vertebrates/MA0130.1.pwm b/profiles/vertebrates/MA0130.1.pwm
index ba0c151..2af60cb 100644
--- a/profiles/vertebrates/MA0130.1.pwm
+++ b/profiles/vertebrates/MA0130.1.pwm
@@ -1,6 +1,6 @@
- 81 58 -42 -10000
- -42 -100 -10000 146
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 191 -200 -10000
+ 68 49 -32 -232
+ -32 -74 -232 126
+ -232 177 -232 -232
+ -232 177 -232 -232
+ 177 -232 -232 -232
+ -232 168 -132 -232
diff --git a/profiles/vertebrates/MA0131.1.pwm b/profiles/vertebrates/MA0131.1.pwm
index 5b4d093..4a08e9f 100644
--- a/profiles/vertebrates/MA0131.1.pwm
+++ b/profiles/vertebrates/MA0131.1.pwm
@@ -1,10 +1,10 @@
- -132 26 0 49
- 138 -232 -10000 26
- 200 -10000 -10000 -10000
- -132 177 -232 -10000
- -10000 -10000 193 -232
- -10000 -232 -10000 193
- -10000 193 -10000 -232
- -10000 185 -132 -10000
- -10000 -10000 193 -232
- -132 138 -232 -32
+ -97 22 0 41
+ 121 -153 -245 22
+ 179 -245 -245 -245
+ -97 157 -153 -245
+ -245 -245 172 -153
+ -245 -153 -245 172
+ -245 172 -245 -153
+ -245 164 -97 -245
+ -245 -245 172 -153
+ -97 121 -153 -26
diff --git a/profiles/vertebrates/MA0131.2.pwm b/profiles/vertebrates/MA0131.2.pwm
index e69de29..77fea44 100644
--- a/profiles/vertebrates/MA0131.2.pwm
+++ b/profiles/vertebrates/MA0131.2.pwm
@@ -0,0 +1,12 @@
+ -237 123 -41 -49
+ 94 -15 -35 -137
+ 96 -151 63 -268
+ -431 161 -33 -336
+ -459 -276 189 -310
+ -448 -448 -448 195
+ -432 190 -257 -432
+ -432 193 -432 -369
+ -463 -190 181 -236
+ -410 185 -244 -267
+ -30 -89 79 -12
+ -43 -31 52 2
diff --git a/profiles/vertebrates/MA0132.1.pwm b/profiles/vertebrates/MA0132.1.pwm
index aa53f19..cacf187 100644
--- a/profiles/vertebrates/MA0132.1.pwm
+++ b/profiles/vertebrates/MA0132.1.pwm
@@ -1,6 +1,6 @@
- -295 129 -63 -37
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -295 195
- -295 -295 37 129
+ -193 116 -52 -31
+ -272 -272 -272 183
+ 183 -272 -272 -272
+ 183 -272 -272 -272
+ -272 -272 -193 178
+ -193 -193 32 116
diff --git a/profiles/vertebrates/MA0132.2.pwm b/profiles/vertebrates/MA0132.2.pwm
index e69de29..f3c5579 100644
--- a/profiles/vertebrates/MA0132.2.pwm
+++ b/profiles/vertebrates/MA0132.2.pwm
@@ -0,0 +1,8 @@
+ -26 30 45 -82
+ -258 41 -647 132
+ 138 31 -318 -424
+ 198 -478 -642 -642
+ -641 -641 -641 199
+ -641 -641 -641 199
+ 199 -641 -641 -641
+ 29 -54 69 -105
diff --git a/profiles/vertebrates/MA0132.3.pwm b/profiles/vertebrates/MA0132.3.pwm
index 121786f..58907ae 100644
--- a/profiles/vertebrates/MA0132.3.pwm
+++ b/profiles/vertebrates/MA0132.3.pwm
@@ -1,8 +1,8 @@
- -162 93 -105 36
- -96 4 -310 123
- 133 2 -151 -302
- 199 -10000 -10000 -560
- -313 -358 -144 178
- -176 -70 42 81
- 106 -283 58 -180
- -98 75 -31 0
+ -157 92 -102 35
+ -94 4 -297 122
+ 132 2 -148 -289
+ 197 -559 -559 -461
+ -294 -332 -139 176
+ -173 -69 41 81
+ 105 -274 57 -176
+ -96 74 -30 0
diff --git a/profiles/vertebrates/MA0135.1.pwm b/profiles/vertebrates/MA0135.1.pwm
index e69de29..1c6a569 100644
--- a/profiles/vertebrates/MA0135.1.pwm
+++ b/profiles/vertebrates/MA0135.1.pwm
@@ -0,0 +1,13 @@
+ 73 -245 -57 58
+ 148 -97 -97 -245
+ 172 -245 -245 -153
+ -245 -245 -245 179
+ -245 -245 -245 179
+ 172 -245 -245 -153
+ 179 -245 -245 -245
+ -97 -97 -245 148
+ -245 -153 -245 172
+ 148 -153 -245 -57
+ 73 -245 -57 58
+ -97 58 -245 86
+ -97 73 -57 22
diff --git a/profiles/vertebrates/MA0136.1.pwm b/profiles/vertebrates/MA0136.1.pwm
index 1081059..1089d74 100644
--- a/profiles/vertebrates/MA0136.1.pwm
+++ b/profiles/vertebrates/MA0136.1.pwm
@@ -1,9 +1,9 @@
- 13 -29 -187 86
- 140 -187 -65 -114
- -246 86 -114 63
- 35 -10000 -346 140
- -10000 -346 -10000 197
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -146 -187 0 124
- -146 -46 0 93
+ 11 -25 -144 77
+ 128 -144 -55 -93
+ -179 77 -93 56
+ 31 -293 -225 128
+ -293 -225 -293 182
+ -293 185 -293 -293
+ -293 185 -293 -293
+ -116 -144 0 113
+ -116 -39 0 84
diff --git a/profiles/vertebrates/MA0136.2.pwm b/profiles/vertebrates/MA0136.2.pwm
index e69de29..bafb3b9 100644
--- a/profiles/vertebrates/MA0136.2.pwm
+++ b/profiles/vertebrates/MA0136.2.pwm
@@ -0,0 +1,11 @@
+ 135 -184 -160 -24
+ -13 78 -48 -62
+ -28 102 8 -344
+ 42 121 -177 -395
+ -553 -579 197 -459
+ -539 -580 197 -440
+ 197 -472 -541 -517
+ 182 -330 -562 -153
+ -16 -257 151 -335
+ -104 -46 -162 130
+ 47 -87 14 -5
diff --git a/profiles/vertebrates/MA0136.3.pwm b/profiles/vertebrates/MA0136.3.pwm
index a78c5fc..9dba9b0 100644
--- a/profiles/vertebrates/MA0136.3.pwm
+++ b/profiles/vertebrates/MA0136.3.pwm
@@ -1,12 +1,12 @@
- 84 -121 1 -39
- -11 -9 59 -68
- 148 -80 -102 -286
- 188 -343 -236 -495
- -436 -586 196 -463
- -417 -437 195 -464
- 196 -418 -476 -523
- 194 -476 -445 -386
- -201 -309 184 -440
- -102 -165 -109 144
- 29 -42 37 -43
- 32 -34 26 -39
+ 84 -120 1 -38
+ -11 -9 59 -67
+ 148 -79 -101 -282
+ 187 -336 -233 -475
+ -423 -550 196 -447
+ -405 -424 194 -448
+ 195 -407 -458 -500
+ 194 -459 -431 -377
+ -199 -304 184 -426
+ -102 -164 -108 144
+ 29 -42 36 -42
+ 31 -33 26 -38
diff --git a/profiles/vertebrates/MA0137.1.pwm b/profiles/vertebrates/MA0137.1.pwm
index 024650d..81f2c5a 100644
--- a/profiles/vertebrates/MA0137.1.pwm
+++ b/profiles/vertebrates/MA0137.1.pwm
@@ -1,14 +1,14 @@
- 42 -191 126 -10000
- -91 -10000 179 -10000
- 155 -10000 9 -10000
- 200 -10000 -10000 -10000
- 190 -191 -10000 -10000
- 109 -32 -32 -191
- -191 68 -91 68
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 190 -191 -10000
- -191 -32 -10000 155
- 9 -91 90 -91
+ 34 -126 108 -228
+ -67 -228 157 -228
+ 134 -228 7 -228
+ 176 -228 -228 -228
+ 167 -126 -228 -228
+ 93 -25 -25 -126
+ -126 56 -67 56
+ -228 -228 176 -228
+ 176 -228 -228 -228
+ 176 -228 -228 -228
+ 176 -228 -228 -228
+ -228 167 -126 -228
+ -126 -25 -228 134
+ 7 -67 76 -67
diff --git a/profiles/vertebrates/MA0137.2.pwm b/profiles/vertebrates/MA0137.2.pwm
index 32ee7a4..551af3d 100644
--- a/profiles/vertebrates/MA0137.2.pwm
+++ b/profiles/vertebrates/MA0137.2.pwm
@@ -1,15 +1,15 @@
- -132 105 -32 -46
- 72 -7 -90 -22
- -105 14 -185 110
- -570 -456 -556 197
- -602 -522 -378 196
- -230 188 -522 -357
- -450 187 -622 -175
- 2 55 -218 38
- 42 -407 131 -298
- -330 -412 171 -79
- 187 -207 -417 -403
- 196 -494 -450 -512
- 87 -99 8 -73
- -63 55 -95 46
- -32 63 -29 -27
+ -127 104 -32 -45
+ 71 -7 -87 -22
+ -102 14 -177 108
+ -463 -399 -457 195
+ -478 -439 -343 193
+ -218 186 -439 -327
+ -395 184 -485 -168
+ 2 54 -208 38
+ 41 -365 129 -278
+ -305 -369 168 -77
+ 184 -198 -372 -362
+ 194 -423 -395 -433
+ 86 -96 8 -71
+ -61 54 -92 45
+ -31 62 -28 -26
diff --git a/profiles/vertebrates/MA0137.3.pwm b/profiles/vertebrates/MA0137.3.pwm
index e69de29..b346b7b 100644
--- a/profiles/vertebrates/MA0137.3.pwm
+++ b/profiles/vertebrates/MA0137.3.pwm
@@ -0,0 +1,11 @@
+ -128 -31 -21 93
+ -594 -378 -594 196
+ -594 -545 -288 194
+ -129 183 -545 -594
+ -289 113 -594 73
+ 93 -594 84 -178
+ -237 -594 192 -594
+ -439 -539 190 -234
+ 198 -594 -526 -594
+ 198 -552 -594 -594
+ 104 -150 -32 -34
diff --git a/profiles/vertebrates/MA0138.1.pwm b/profiles/vertebrates/MA0138.1.pwm
index f307173..0df3acf 100644
--- a/profiles/vertebrates/MA0138.1.pwm
+++ b/profiles/vertebrates/MA0138.1.pwm
@@ -1,19 +1,19 @@
- -246 -146 145 -46
- 35 71 -246 -14
- -246 -87 145 -87
- -10000 200 -10000 -10000
- -10000 -246 -10000 193
- -246 -46 163 -10000
- -10000 -10000 -146 186
- -10000 179 -246 -146
- -10000 193 -10000 -246
- 100 -87 -14 -87
- -14 -246 -87 124
- -146 -10000 186 -10000
- -10000 -246 193 -10000
- -246 -10000 -246 186
- -10000 -87 154 -87
- -10000 193 -10000 -246
- -10000 -246 -10000 193
- -246 -246 186 -10000
- 145 -246 -14 -246
+ -162 -107 128 -37
+ 29 61 -162 -11
+ -162 -68 128 -68
+ -251 180 -251 -251
+ -251 -162 -251 173
+ -162 -37 145 -251
+ -251 -251 -107 167
+ -251 160 -162 -107
+ -251 173 -251 -162
+ 87 -68 -11 -68
+ -11 -162 -68 109
+ -107 -251 167 -251
+ -251 -162 173 -251
+ -162 -251 -162 167
+ -251 -68 136 -68
+ -251 173 -251 -162
+ -251 -162 -251 173
+ -162 -162 167 -251
+ 128 -162 -11 -162
diff --git a/profiles/vertebrates/MA0138.2.pwm b/profiles/vertebrates/MA0138.2.pwm
index e69de29..e91cc87 100644
--- a/profiles/vertebrates/MA0138.2.pwm
+++ b/profiles/vertebrates/MA0138.2.pwm
@@ -0,0 +1,21 @@
+ -88 -115 -12 106
+ -259 -55 -139 147
+ -225 175 -277 -183
+ 183 -336 -198 -351
+ -322 -293 189 -436
+ -164 126 -30 -110
+ 195 -460 -423 -423
+ -498 196 -423 -478
+ -319 186 -378 -236
+ 117 -96 -126 -28
+ -84 -9 -162 112
+ -307 -460 193 -460
+ -378 -478 195 -510
+ 179 -175 -322 -275
+ -416 165 -75 -229
+ 195 -443 -459 -436
+ -297 -415 191 -443
+ -93 132 -108 -97
+ -12 -331 77 34
+ -87 121 -31 -159
+ -111 146 -312 -59
diff --git a/profiles/vertebrates/MA0139.1.pwm b/profiles/vertebrates/MA0139.1.pwm
index e69de29..b7eb5d3 100644
--- a/profiles/vertebrates/MA0139.1.pwm
+++ b/profiles/vertebrates/MA0139.1.pwm
@@ -0,0 +1,19 @@
+ -132 34 -150 98
+ -43 -63 84 -28
+ 29 -206 95 -74
+ -189 178 -305 -244
+ -392 195 -497 -463
+ 167 -352 -170 -126
+ -231 118 53 -367
+ -104 90 -208 49
+ 187 -367 -257 -320
+ -423 -496 195 -448
+ 53 -448 129 -383
+ -193 -359 112 57
+ -359 -496 193 -392
+ -189 -392 174 -158
+ -107 166 -423 -166
+ 69 -351 113 -326
+ -139 106 42 -240
+ -91 49 -154 78
+ 80 -31 22 -182
diff --git a/profiles/vertebrates/MA0140.1.pwm b/profiles/vertebrates/MA0140.1.pwm
index 68ac51a..d7cd718 100644
--- a/profiles/vertebrates/MA0140.1.pwm
+++ b/profiles/vertebrates/MA0140.1.pwm
@@ -1,18 +1,18 @@
- -88 85 -25 -31
- -149 -73 -50 122
- -249 -202 138 -5
- -147 2 74 -6
- -14 -21 7 23
- -7 -10 29 -17
- -15 2 35 -30
- -5 -8 27 -19
- -1 -16 23 -9
- 44 -86 35 -29
- -48 67 29 -109
- 141 -457 -432 32
- -794 -672 200 -10000
- 199 -672 -853 -620
- -552 -482 -462 196
- 191 -694 -500 -235
- 169 -385 -97 -246
- -43 -42 112 -160
+ -86 84 -25 -30
+ -145 -71 -49 121
+ -237 -194 137 -5
+ -143 2 73 -6
+ -14 -21 7 23
+ -7 -10 29 -17
+ -15 2 34 -29
+ -5 -7 27 -19
+ -1 -15 22 -9
+ 43 -83 35 -28
+ -47 66 29 -106
+ 139 -407 -389 32
+ -550 -519 198 -579
+ 197 -519 -559 -499
+ -466 -424 -411 194
+ 189 -526 -436 -225
+ 168 -354 -94 -234
+ -42 -41 111 -155
diff --git a/profiles/vertebrates/MA0140.2.pwm b/profiles/vertebrates/MA0140.2.pwm
index 5fbe986..e9f8943 100644
--- a/profiles/vertebrates/MA0140.2.pwm
+++ b/profiles/vertebrates/MA0140.2.pwm
@@ -1,18 +1,18 @@
- -15 72 -36 -57
- -259 -62 -296 161
- -196 -10000 -10000 190
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 73 -430 -449 117
- -91 10 84 -72
- -36 -3 1 31
- -6 -14 30 -15
- 52 -13 -32 -23
- -26 0 47 -36
- 13 -12 24 -32
- 61 -26 -60 -3
- 16 0 60 -145
- -349 196 -575 -10000
- 191 -10000 -10000 -207
- -295 -48 152 -178
+ -15 71 -35 -56
+ -249 -61 -283 160
+ -190 -616 -616 189
+ 198 -616 -616 -616
+ -616 -616 -616 198
+ -616 198 -616 -616
+ 72 -396 -411 116
+ -89 10 83 -71
+ -36 -3 1 30
+ -6 -13 29 -15
+ 52 -13 -32 -23
+ -25 0 46 -35
+ 12 -12 24 -31
+ 60 -26 -58 -3
+ 15 0 60 -142
+ -330 195 -495 -616
+ 190 -616 -616 -200
+ -282 -47 150 -173
diff --git a/profiles/vertebrates/MA0141.1.pwm b/profiles/vertebrates/MA0141.1.pwm
index 3ccf201..aebd914 100644
--- a/profiles/vertebrates/MA0141.1.pwm
+++ b/profiles/vertebrates/MA0141.1.pwm
@@ -1,12 +1,12 @@
- 22 -18 12 -20
- -43 -13 59 -25
- -112 41 41 -18
- -182 45 -103 89
- -156 154 -54 -413
- 186 -484 -188 -419
- 196 -884 -393 -508
- -484 -751 197 -488
- -544 -625 198 -575
- -232 -431 -190 180
- -666 189 -242 -342
- 193 -551 -282 -507
+ 21 -18 12 -19
+ -43 -13 58 -24
+ -109 40 40 -18
+ -176 45 -100 88
+ -151 153 -53 -379
+ 185 -430 -182 -384
+ 195 -576 -363 -446
+ -430 -553 196 -433
+ -468 -510 196 -485
+ -223 -392 -184 178
+ -526 187 -232 -321
+ 191 -472 -268 -446
diff --git a/profiles/vertebrates/MA0141.2.pwm b/profiles/vertebrates/MA0141.2.pwm
index e69de29..950a735 100644
--- a/profiles/vertebrates/MA0141.2.pwm
+++ b/profiles/vertebrates/MA0141.2.pwm
@@ -0,0 +1,12 @@
+ 22 -17 12 -22
+ -42 -12 57 -24
+ -114 41 41 -17
+ -175 43 -100 89
+ -150 153 -52 -381
+ 186 -430 -182 -446
+ 196 -576 -363 -546
+ -427 -577 196 -440
+ -510 -516 197 -490
+ -225 -400 -185 179
+ -527 188 -235 -321
+ 191 -468 -270 -450
diff --git a/profiles/vertebrates/MA0141.3.pwm b/profiles/vertebrates/MA0141.3.pwm
index 658fcb6..82345c0 100644
--- a/profiles/vertebrates/MA0141.3.pwm
+++ b/profiles/vertebrates/MA0141.3.pwm
@@ -1,11 +1,11 @@
- -241 -63 -294 160
- -581 179 -98 -617
- 200 -877 -10000 -677
- 200 -877 -719 -10000
- -719 -777 200 -877
- -878 -678 199 -719
- -621 -533 -579 198
- -778 199 -878 -488
- 195 -10000 -301 -723
- 46 -100 -361 103
- 66 -41 -121 30
+ -230 -61 -277 158
+ -470 177 -95 -486
+ 197 -525 -538 -492
+ 197 -525 -502 -538
+ -503 -513 197 -525
+ -525 -493 197 -503
+ -476 -438 -459 195
+ -514 196 -526 -413
+ 193 -542 -279 -507
+ 45 -97 -331 102
+ 65 -40 -116 29
diff --git a/profiles/vertebrates/MA0142.1.pwm b/profiles/vertebrates/MA0142.1.pwm
index baa4631..c633b58 100644
--- a/profiles/vertebrates/MA0142.1.pwm
+++ b/profiles/vertebrates/MA0142.1.pwm
@@ -1,15 +1,15 @@
- -244 131 -237 19
- 76 -256 -361 104
- -496 -277 -325 189
- -286 -483 -212 185
- -154 8 127 -244
- 28 -425 -356 141
- -73 9 -88 84
- 185 -351 -383 -210
- -433 -610 -451 196
- -510 -442 186 -172
- -461 159 -141 -80
- 162 -441 -351 -34
- 138 -232 -11 -189
- 182 -337 -218 -268
- -78 -152 -72 130
+ -228 129 -222 19
+ 75 -238 -324 102
+ -412 -257 -296 187
+ -264 -405 -199 182
+ -147 8 125 -228
+ 27 -369 -320 138
+ -71 9 -85 82
+ 182 -316 -340 -198
+ -374 -463 -386 193
+ -419 -380 183 -163
+ -392 156 -135 -78
+ 160 -380 -316 -33
+ 136 -218 -11 -179
+ 179 -305 -205 -249
+ -75 -145 -69 128
diff --git a/profiles/vertebrates/MA0143.1.pwm b/profiles/vertebrates/MA0143.1.pwm
index 9d06f27..e7d9d70 100644
--- a/profiles/vertebrates/MA0143.1.pwm
+++ b/profiles/vertebrates/MA0143.1.pwm
@@ -1,15 +1,15 @@
- -263 141 -91 -64
- -306 144 -293 6
- 97 -458 -539 98
- -639 -406 -458 196
- -358 -739 -480 195
- -214 -101 166 -314
- -97 -538 -421 177
- -138 22 -112 100
- 129 -43 -213 -79
- -268 -209 -268 179
- -262 -111 142 -51
- -238 134 -98 -39
- 136 -202 -221 -4
- 114 -131 -8 -117
- 155 -147 -144 -152
+ -237 138 -86 -61
+ -271 140 -261 5
+ 94 -369 -405 96
+ -436 -340 -369 192
+ -309 -454 -380 191
+ -197 -96 162 -277
+ -92 -405 -349 173
+ -130 21 -106 97
+ 126 -41 -196 -76
+ -241 -193 -241 175
+ -237 -105 138 -48
+ -217 131 -93 -37
+ 133 -186 -202 -4
+ 111 -123 -8 -110
+ 151 -138 -135 -142
diff --git a/profiles/vertebrates/MA0143.2.pwm b/profiles/vertebrates/MA0143.2.pwm
index e69de29..c67fb36 100644
--- a/profiles/vertebrates/MA0143.2.pwm
+++ b/profiles/vertebrates/MA0143.2.pwm
@@ -0,0 +1,15 @@
+ -238 138 -86 -61
+ -271 141 -261 5
+ 95 -380 -420 96
+ -436 -340 -380 192
+ -309 -475 -380 192
+ -203 -96 163 -277
+ -92 -405 -358 174
+ -132 22 -107 97
+ 126 -40 -196 -76
+ -241 -199 -241 175
+ -241 -105 139 -48
+ -221 131 -93 -37
+ 133 -183 -199 -6
+ 111 -123 -9 -110
+ 152 -137 -139 -142
diff --git a/profiles/vertebrates/MA0143.3.pwm b/profiles/vertebrates/MA0143.3.pwm
index e69de29..f06c6bb 100644
--- a/profiles/vertebrates/MA0143.3.pwm
+++ b/profiles/vertebrates/MA0143.3.pwm
@@ -0,0 +1,8 @@
+ -530 197 -530 -530
+ -530 197 -530 -530
+ 84 -530 -530 111
+ -530 -530 -530 197
+ -530 -530 -530 197
+ -530 -530 197 -530
+ -530 -530 -530 197
+ -530 18 -30 102
diff --git a/profiles/vertebrates/MA0143.4.pwm b/profiles/vertebrates/MA0143.4.pwm
index e69de29..b316363 100644
--- a/profiles/vertebrates/MA0143.4.pwm
+++ b/profiles/vertebrates/MA0143.4.pwm
@@ -0,0 +1,11 @@
+ 44 -95 0 17
+ 50 -50 -32 11
+ 196 -540 -545 -388
+ -396 187 -403 -213
+ 192 -407 -511 -311
+ 191 -357 -337 -410
+ -214 -474 -442 188
+ -111 -462 177 -364
+ -54 -176 134 -105
+ 43 -32 -27 4
+ 43 -29 -42 12
diff --git a/profiles/vertebrates/MA0144.1.pwm b/profiles/vertebrates/MA0144.1.pwm
index e69de29..70f9d7e 100644
--- a/profiles/vertebrates/MA0144.1.pwm
+++ b/profiles/vertebrates/MA0144.1.pwm
@@ -0,0 +1,10 @@
+ -261 -266 -235 180
+ -305 -330 -24 155
+ -185 181 -339 -298
+ -371 178 -447 -116
+ 104 -255 -5 -30
+ -349 -469 194 -469
+ -371 -428 191 -305
+ 189 -255 -360 -469
+ 194 -447 -383 -447
+ 31 -291 132 -298
diff --git a/profiles/vertebrates/MA0144.2.pwm b/profiles/vertebrates/MA0144.2.pwm
index e69de29..2ddfbe0 100644
--- a/profiles/vertebrates/MA0144.2.pwm
+++ b/profiles/vertebrates/MA0144.2.pwm
@@ -0,0 +1,11 @@
+ -146 66 -50 43
+ -287 -721 -721 194
+ -425 -383 11 148
+ -238 185 -721 -235
+ -263 52 -721 126
+ -55 -721 108 26
+ -176 -721 188 -721
+ -108 -721 178 -363
+ 199 -721 -721 -721
+ 199 -721 -721 -721
+ 78 -245 28 -18
diff --git a/profiles/vertebrates/MA0145.1.pwm b/profiles/vertebrates/MA0145.1.pwm
index e69de29..badcedb 100644
--- a/profiles/vertebrates/MA0145.1.pwm
+++ b/profiles/vertebrates/MA0145.1.pwm
@@ -0,0 +1,14 @@
+ -543 187 -193 -421
+ -178 168 -477 -107
+ 124 -481 14 -98
+ -470 -320 194 -516
+ -50 42 -310 88
+ -131 21 -194 113
+ -51 66 -71 15
+ 51 -15 1 -58
+ 132 -179 -38 -118
+ 65 -220 31 -4
+ -507 188 -211 -438
+ -195 168 -521 -100
+ 109 -449 29 -72
+ -399 -295 192 -497
diff --git a/profiles/vertebrates/MA0145.2.pwm b/profiles/vertebrates/MA0145.2.pwm
index e69de29..061f220 100644
--- a/profiles/vertebrates/MA0145.2.pwm
+++ b/profiles/vertebrates/MA0145.2.pwm
@@ -0,0 +1,14 @@
+ -543 187 -193 -421
+ -178 168 -477 -111
+ 124 -481 13 -99
+ -470 -319 194 -521
+ -51 43 -312 88
+ -131 21 -195 113
+ -52 67 -72 15
+ 51 -15 0 -58
+ 132 -178 -38 -118
+ 65 -219 30 -3
+ -502 188 -212 -438
+ -195 169 -521 -103
+ 110 -449 27 -72
+ -399 -295 192 -497
diff --git a/profiles/vertebrates/MA0146.1.pwm b/profiles/vertebrates/MA0146.1.pwm
index ce8dd84..2cd1b32 100644
--- a/profiles/vertebrates/MA0146.1.pwm
+++ b/profiles/vertebrates/MA0146.1.pwm
@@ -1,14 +1,14 @@
- -125 57 59 -77
- -99 51 53 -67
- -39 34 74 -169
- -73 -129 132 -100
- -359 130 26 -200
- -432 159 -591 -12
- -200 6 60 26
- 67 36 1 -300
- -374 -591 196 -691
- -10000 -532 199 -691
- -691 200 -10000 -10000
- -10000 200 -10000 -691
- -10000 -591 -10000 199
- -52 2 86 -110
+ -117 55 57 -72
+ -93 49 51 -63
+ -37 32 71 -156
+ -69 -120 128 -94
+ -302 127 25 -183
+ -345 155 -407 -11
+ -183 5 58 25
+ 64 34 1 -262
+ -312 -407 192 -428
+ -452 -389 194 -428
+ -428 195 -452 -452
+ -452 195 -452 -428
+ -452 -407 -452 195
+ -49 2 84 -103
diff --git a/profiles/vertebrates/MA0146.2.pwm b/profiles/vertebrates/MA0146.2.pwm
index e69de29..5f89d54 100644
--- a/profiles/vertebrates/MA0146.2.pwm
+++ b/profiles/vertebrates/MA0146.2.pwm
@@ -0,0 +1,14 @@
+ -117 56 56 -72
+ -95 49 52 -63
+ -37 32 71 -156
+ -69 -120 127 -91
+ -302 127 25 -183
+ -345 154 -407 -10
+ -183 4 58 25
+ 64 33 2 -262
+ -322 -407 192 -428
+ -452 -389 194 -428
+ -452 195 -452 -452
+ -452 195 -452 -428
+ -452 -428 -452 195
+ -49 2 83 -103
diff --git a/profiles/vertebrates/MA0147.1.pwm b/profiles/vertebrates/MA0147.1.pwm
index 6e13850..188b4bd 100644
--- a/profiles/vertebrates/MA0147.1.pwm
+++ b/profiles/vertebrates/MA0147.1.pwm
@@ -1,10 +1,10 @@
- 24 76 -66 -102
- -74 -10 120 -250
- -283 195 -10000 -10000
- 194 -383 -350 -583
- -10000 190 -424 -224
- -158 -483 185 -483
- -266 -37 -10000 162
- -10000 -483 193 -266
- -10000 -174 169 -107
- -33 91 -124 -15
+ 23 72 -61 -93
+ -68 -9 114 -214
+ -236 188 -401 -401
+ 187 -296 -279 -367
+ -401 183 -316 -194
+ -141 -339 178 -339
+ -224 -34 -401 155
+ -401 -339 186 -224
+ -401 -154 163 -98
+ -31 87 -112 -14
diff --git a/profiles/vertebrates/MA0147.2.pwm b/profiles/vertebrates/MA0147.2.pwm
index 3db2e52..be9c419 100644
--- a/profiles/vertebrates/MA0147.2.pwm
+++ b/profiles/vertebrates/MA0147.2.pwm
@@ -1,10 +1,10 @@
- -18 145 -140 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 78 -10000 119
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -477 78 64 -55
- -65 -30 -126 109
- -402 49 -74 95
+ -17 144 -137 -621
+ -621 199 -621 -621
+ 199 -621 -621 -621
+ -621 77 -621 118
+ -621 -621 199 -621
+ -621 -621 -621 199
+ -621 -621 199 -621
+ -433 78 63 -55
+ -64 -29 -124 108
+ -375 49 -72 94
diff --git a/profiles/vertebrates/MA0147.3.pwm b/profiles/vertebrates/MA0147.3.pwm
index e69de29..fe35a78 100644
--- a/profiles/vertebrates/MA0147.3.pwm
+++ b/profiles/vertebrates/MA0147.3.pwm
@@ -0,0 +1,12 @@
+ -25 12 41 -43
+ -27 6 50 -48
+ -146 159 -136 -205
+ -435 195 -469 -481
+ 188 -403 -274 -326
+ -413 186 -384 -201
+ -275 -284 187 -449
+ -403 -280 -396 190
+ -495 -409 195 -430
+ -152 117 -4 -121
+ -36 30 -25 20
+ -70 52 12 -23
diff --git a/profiles/vertebrates/MA0148.1.pwm b/profiles/vertebrates/MA0148.1.pwm
index 93bfadb..b5e7125 100644
--- a/profiles/vertebrates/MA0148.1.pwm
+++ b/profiles/vertebrates/MA0148.1.pwm
@@ -1,11 +1,11 @@
- -410 -680 -680 197
- -105 -500 179 -480
- -781 -500 -548 198
- -549 -500 -322 194
- -522 -622 -152 185
- 109 -422 72 -249
- -522 185 -549 -151
- 38 -108 -549 114
- -232 72 -170 89
- 76 -463 -322 111
- -131 -84 106 -8
+ -349 -460 -460 194
+ -100 -399 175 -390
+ -477 -400 -421 194
+ -421 -400 -288 191
+ -410 -447 -144 182
+ 106 -357 70 -229
+ -410 181 -421 -142
+ 37 -103 -421 112
+ -214 70 -160 86
+ 74 -381 -287 109
+ -124 -80 104 -8
diff --git a/profiles/vertebrates/MA0148.2.pwm b/profiles/vertebrates/MA0148.2.pwm
index 4d16baa..d93fc7e 100644
--- a/profiles/vertebrates/MA0148.2.pwm
+++ b/profiles/vertebrates/MA0148.2.pwm
@@ -1,11 +1,11 @@
- -410 -780 -680 197
- -105 -500 179 -500
- -781 -500 -581 198
- -581 -500 -322 194
- -522 -622 -154 185
- 109 -422 72 -256
- -581 185 -549 -150
- 37 -108 -549 115
- -241 72 -170 89
- 77 -499 -322 111
- -133 -84 107 -8
+ -349 -476 -460 194
+ -100 -400 175 -400
+ -477 -400 -434 195
+ -434 -400 -288 191
+ -410 -447 -146 182
+ 107 -357 70 -235
+ -433 182 -421 -142
+ 36 -103 -421 112
+ -222 70 -159 87
+ 75 -399 -287 109
+ -126 -80 104 -8
diff --git a/profiles/vertebrates/MA0148.3.pwm b/profiles/vertebrates/MA0148.3.pwm
index cf24b1c..ad7e416 100644
--- a/profiles/vertebrates/MA0148.3.pwm
+++ b/profiles/vertebrates/MA0148.3.pwm
@@ -1,15 +1,15 @@
- -35 -19 -42 67
- -24 32 -22 7
- -85 64 -5 -12
- 37 -35 -60 33
- -630 -10000 -884 199
- 10 -10000 155 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -209 191
- -10000 -10000 -94 180
- 173 -10000 -55 -10000
- -10000 190 -10000 -192
- 74 -105 -10000 88
- -273 41 -198 118
- 96 -1243 -645 103
- -19 -108 78 -9
+ -34 -19 -41 66
+ -24 31 -22 7
+ -84 63 -5 -12
+ 37 -35 -59 33
+ -569 -722 -682 199
+ 10 -722 154 -722
+ -722 -722 -722 199
+ -722 -722 -206 191
+ -722 -722 -94 179
+ 172 -722 -55 -722
+ -722 189 -722 -190
+ 74 -104 -722 88
+ -268 40 -195 118
+ 96 -718 -579 103
+ -19 -107 77 -9
diff --git a/profiles/vertebrates/MA0148.4.pwm b/profiles/vertebrates/MA0148.4.pwm
index e69de29..73cf420 100644
--- a/profiles/vertebrates/MA0148.4.pwm
+++ b/profiles/vertebrates/MA0148.4.pwm
@@ -0,0 +1,12 @@
+ 73 -60 -32 -19
+ 51 -232 -59 77
+ -179 -373 180 -274
+ -285 -252 -370 185
+ 188 -245 -391 -391
+ 187 -258 -437 -290
+ 195 -496 -441 -436
+ -342 176 -403 -110
+ 193 -440 -459 -350
+ -93 -180 -156 151
+ 3 -41 23 8
+ 13 -33 -19 30
diff --git a/profiles/vertebrates/MA0149.1.pwm b/profiles/vertebrates/MA0149.1.pwm
index e69de29..acd3361 100644
--- a/profiles/vertebrates/MA0149.1.pwm
+++ b/profiles/vertebrates/MA0149.1.pwm
@@ -0,0 +1,18 @@
+ -349 -349 190 -349
+ -266 -349 187 -349
+ 189 -349 -302 -349
+ 189 -349 -302 -349
+ -302 -349 189 -349
+ -266 -349 186 -302
+ 187 -349 -266 -349
+ 186 -349 -237 -349
+ -349 -349 189 -302
+ -349 -266 187 -349
+ 182 -213 -266 -349
+ 190 -349 -349 -349
+ -349 -349 190 -349
+ -349 -266 187 -349
+ 183 -237 -349 -266
+ 186 -349 -266 -302
+ -193 -349 179 -237
+ -237 -237 179 -266
diff --git a/profiles/vertebrates/MA0150.1.pwm b/profiles/vertebrates/MA0150.1.pwm
index 482fa73..ca46d39 100644
--- a/profiles/vertebrates/MA0150.1.pwm
+++ b/profiles/vertebrates/MA0150.1.pwm
@@ -1,11 +1,11 @@
- 100 -232 85 -10000
- -10000 -10000 -10000 200
- -10000 -10000 193 -232
- 200 -10000 -10000 -10000
- -10000 177 -232 -132
- 26 -132 -232 114
- 0 100 -232 -32
- 168 -10000 -132 -132
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- 158 -132 -132 -232
+ 86 -153 73 -245
+ -245 -245 -245 179
+ -245 -245 172 -153
+ 179 -245 -245 -245
+ -245 157 -153 -97
+ 22 -97 -153 99
+ 0 86 -153 -26
+ 148 -245 -97 -97
+ -245 -245 179 -245
+ -245 179 -245 -245
+ 140 -97 -97 -153
diff --git a/profiles/vertebrates/MA0150.2.pwm b/profiles/vertebrates/MA0150.2.pwm
index 7578c62..808baff 100644
--- a/profiles/vertebrates/MA0150.2.pwm
+++ b/profiles/vertebrates/MA0150.2.pwm
@@ -1,15 +1,15 @@
- -13 90 -74 -68
- 114 -122 -19 -104
- -62 40 60 -95
- 16 44 -26 -55
- 143 -270 18 -518
- -10000 -10000 -10000 200
- -10000 -10000 197 -360
- 200 -10000 -10000 -10000
- -318 155 -62 -172
- -111 -318 -350 174
- -148 160 -198 -146
- 167 -592 -101 -170
- -418 -404 194 -470
- -550 195 -326 -550
- 178 -280 -255 -198
+ -12 87 -70 -65
+ 112 -115 -18 -99
+ -59 38 58 -90
+ 16 43 -25 -53
+ 139 -244 17 -400
+ -480 -480 -480 196
+ -480 -480 193 -311
+ 196 -480 -480 -480
+ -282 152 -59 -161
+ -105 -282 -305 170
+ -139 156 -184 -137
+ 163 -427 -96 -159
+ -349 -341 190 -378
+ -413 191 -287 -413
+ 174 -252 -232 -184
diff --git a/profiles/vertebrates/MA0151.1.pwm b/profiles/vertebrates/MA0151.1.pwm
index e69de29..3b7b6be 100644
--- a/profiles/vertebrates/MA0151.1.pwm
+++ b/profiles/vertebrates/MA0151.1.pwm
@@ -0,0 +1,6 @@
+ 181 -263 -263 -263
+ -263 -263 -263 181
+ -181 36 -263 118
+ 181 -263 -263 -263
+ 181 -263 -263 -263
+ 140 -263 -181 -14
diff --git a/profiles/vertebrates/MA0152.1.pwm b/profiles/vertebrates/MA0152.1.pwm
index 2cf495d..a38b537 100644
--- a/profiles/vertebrates/MA0152.1.pwm
+++ b/profiles/vertebrates/MA0152.1.pwm
@@ -1,7 +1,7 @@
- -112 -270 -170 162
- -270 -170 -170 169
- -270 -270 -10000 188
- -10000 -10000 -10000 200
- -270 194 -10000 -10000
- -10000 200 -10000 -10000
- 147 -112 -270 -70
+ -86 -177 -125 145
+ -177 -125 -125 152
+ -177 -177 -261 170
+ -261 -261 -261 181
+ -177 176 -261 -261
+ -261 181 -261 -261
+ 131 -86 -177 -56
diff --git a/profiles/vertebrates/MA0152.2.pwm b/profiles/vertebrates/MA0152.2.pwm
index e69de29..dd755a7 100644
--- a/profiles/vertebrates/MA0152.2.pwm
+++ b/profiles/vertebrates/MA0152.2.pwm
@@ -0,0 +1,16 @@
+ 26 -22 -13 5
+ 13 -29 12 0
+ -15 -54 81 -61
+ 3 33 -29 -15
+ 140 -80 -143 -130
+ 166 -190 -126 -261
+ -216 -258 -284 179
+ -316 -472 193 -436
+ -412 -432 193 -377
+ 192 -398 -338 -390
+ 194 -463 -380 -407
+ 184 -280 -314 -271
+ 24 44 -51 -40
+ 27 -97 -103 84
+ 21 -37 -11 20
+ -4 -6 -54 46
diff --git a/profiles/vertebrates/MA0153.1.pwm b/profiles/vertebrates/MA0153.1.pwm
index 64684ba..16cba06 100644
--- a/profiles/vertebrates/MA0153.1.pwm
+++ b/profiles/vertebrates/MA0153.1.pwm
@@ -1,12 +1,12 @@
- -10000 42 -10000 142
- -10000 42 -10000 142
- 183 -117 -10000 -10000
- 164 -117 -117 -10000
- -10000 -10000 -10000 200
- 115 -10000 83 -10000
- 42 -10000 -117 115
- -10000 -10000 -117 183
- -10000 -10000 -10000 200
- 183 -10000 -117 -10000
- 200 -10000 -10000 -10000
- -10000 183 -10000 -117
+ -200 32 -200 117
+ -200 32 -200 117
+ 154 -78 -200 -200
+ 137 -78 -78 -200
+ -200 -200 -200 170
+ 94 -200 66 -200
+ 32 -200 -78 94
+ -200 -200 -78 154
+ -200 -200 -200 170
+ 154 -200 -78 -200
+ 170 -200 -200 -200
+ -200 154 -200 -78
diff --git a/profiles/vertebrates/MA0153.2.pwm b/profiles/vertebrates/MA0153.2.pwm
index e69de29..35bfd8a 100644
--- a/profiles/vertebrates/MA0153.2.pwm
+++ b/profiles/vertebrates/MA0153.2.pwm
@@ -0,0 +1,13 @@
+ -248 -303 181 -239
+ -392 -177 -259 180
+ -83 -155 -364 159
+ 197 -705 -415 -637
+ 191 -277 -547 -364
+ -209 -331 -624 187
+ -24 26 32 -49
+ 192 -610 -366 -290
+ -265 -422 -239 185
+ -597 -348 -739 196
+ 162 -358 -92 -167
+ 182 -252 -211 -427
+ -219 103 -344 72
diff --git a/profiles/vertebrates/MA0154.1.pwm b/profiles/vertebrates/MA0154.1.pwm
index 6f09895..8e91d66 100644
--- a/profiles/vertebrates/MA0154.1.pwm
+++ b/profiles/vertebrates/MA0154.1.pwm
@@ -1,10 +1,10 @@
- 82 53 -164 -106
- -10000 182 -10000 -106
- -264 136 -264 16
- -164 168 -10000 -106
- 82 53 -10000 -32
- 136 -264 -32 -106
- -10000 -10000 200 -10000
- -164 -10000 188 -10000
- -10000 -10000 200 -10000
- 175 -10000 -64 -10000
+ 71 45 -121 -82
+ -258 163 -258 -82
+ -174 120 -174 14
+ -121 150 -258 -82
+ 71 45 -258 -26
+ 120 -174 -26 -82
+ -258 -258 181 -258
+ -121 -258 169 -258
+ -258 -258 181 -258
+ 157 -258 -51 -258
diff --git a/profiles/vertebrates/MA0154.2.pwm b/profiles/vertebrates/MA0154.2.pwm
index e69de29..992647b 100644
--- a/profiles/vertebrates/MA0154.2.pwm
+++ b/profiles/vertebrates/MA0154.2.pwm
@@ -0,0 +1,11 @@
+ -90 -25 57 19
+ -753 28 -166 130
+ -753 199 -753 -753
+ -319 142 -753 27
+ -753 199 -753 -615
+ 12 139 -753 -183
+ 133 -753 -753 56
+ -291 -753 195 -753
+ -1 -753 157 -556
+ -753 -753 199 -753
+ 138 -153 -23 -235
diff --git a/profiles/vertebrates/MA0154.3.pwm b/profiles/vertebrates/MA0154.3.pwm
index e69de29..4265310 100644
--- a/profiles/vertebrates/MA0154.3.pwm
+++ b/profiles/vertebrates/MA0154.3.pwm
@@ -0,0 +1,14 @@
+ 150 -166 -117 -128
+ -57 -47 -20 80
+ -330 -94 -554 175
+ -532 197 -494 -518
+ -496 195 -485 -385
+ -532 197 -532 -464
+ 53 2 -244 44
+ 99 -219 -86 31
+ -370 -466 195 -534
+ -186 -456 187 -541
+ -466 -534 195 -366
+ 186 -399 -218 -365
+ 63 59 -135 -85
+ -61 -8 -212 112
diff --git a/profiles/vertebrates/MA0154.4.pwm b/profiles/vertebrates/MA0154.4.pwm
index a8ff69b..9546402 100644
--- a/profiles/vertebrates/MA0154.4.pwm
+++ b/profiles/vertebrates/MA0154.4.pwm
@@ -1,15 +1,15 @@
- 32 -36 -6 2
- 1 -25 25 -5
- -227 -133 -105 154
- -310 161 -256 -59
- -432 193 -494 -321
- -413 191 -468 -268
- -216 180 -372 -227
- 161 -273 -272 -65
- -170 -380 177 -225
- -212 -452 187 -410
- -291 -464 191 -409
- -36 -221 153 -308
- 148 -84 -120 -220
- -2 23 -20 -4
- 7 -7 -31 25
+ 32 -35 -6 2
+ 1 -25 25 -5
+ -225 -132 -104 154
+ -305 161 -253 -59
+ -420 192 -475 -315
+ -402 190 -452 -264
+ -214 180 -364 -225
+ 161 -270 -268 -64
+ -168 -372 177 -223
+ -210 -438 187 -400
+ -286 -449 191 -399
+ -36 -218 152 -303
+ 147 -83 -119 -217
+ -2 23 -20 -4
+ 7 -7 -31 25
diff --git a/profiles/vertebrates/MA0155.1.pwm b/profiles/vertebrates/MA0155.1.pwm
index e69de29..8fb98f5 100644
--- a/profiles/vertebrates/MA0155.1.pwm
+++ b/profiles/vertebrates/MA0155.1.pwm
@@ -0,0 +1,12 @@
+ -170 -256 -47 149
+ -256 -256 155 -47
+ -256 35 -77 98
+ 0 117 -256 -77
+ 125 -256 -256 35
+ -256 -256 180 -256
+ -256 -170 175 -256
+ -256 -256 180 -256
+ -256 -256 180 -256
+ -256 -116 125 0
+ -77 125 -256 -21
+ 64 -256 87 -116
diff --git a/profiles/vertebrates/MA0156.1.pwm b/profiles/vertebrates/MA0156.1.pwm
index b0e293c..94df3d5 100644
--- a/profiles/vertebrates/MA0156.1.pwm
+++ b/profiles/vertebrates/MA0156.1.pwm
@@ -1,8 +1,8 @@
- -70 147 -170 -170
- 147 -12 -170 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 188 -10000 -10000 -170
- 111 -10000 88 -10000
- -10000 -10000 -10000 200
+ -52 125 -113 -113
+ 125 -9 -113 -220
+ -220 -220 174 -220
+ -220 -220 174 -220
+ 174 -220 -220 -220
+ 164 -220 -220 -113
+ 93 -220 73 -220
+ -220 -220 -220 174
diff --git a/profiles/vertebrates/MA0156.2.pwm b/profiles/vertebrates/MA0156.2.pwm
index e69de29..c3d06cb 100644
--- a/profiles/vertebrates/MA0156.2.pwm
+++ b/profiles/vertebrates/MA0156.2.pwm
@@ -0,0 +1,10 @@
+ 139 -222 -81 -75
+ -99 162 -167 -315
+ -165 186 -475 -624
+ -566 -629 198 -617
+ -617 -623 198 -582
+ 198 -574 -612 -547
+ 158 -377 -636 -13
+ 27 -284 139 -459
+ -245 -47 -198 151
+ 23 -41 31 -27
diff --git a/profiles/vertebrates/MA0156.3.pwm b/profiles/vertebrates/MA0156.3.pwm
index f680964..73e68e9 100644
--- a/profiles/vertebrates/MA0156.3.pwm
+++ b/profiles/vertebrates/MA0156.3.pwm
@@ -1,12 +1,12 @@
- 53 -43 37 -94
- 175 -321 -145 -264
- -376 194 -354 -594
- -418 198 -717 -10000
- -10000 -10000 200 -10000
- -510 -10000 199 -661
- 199 -537 -734 -844
- 190 -464 -753 -211
- -16 -403 160 -656
- -456 -72 -402 172
- -8 -17 69 -86
- 35 0 22 -83
+ 53 -43 36 -93
+ 174 -311 -143 -257
+ -358 192 -339 -525
+ -394 197 -585 -658
+ -655 -655 199 -655
+ -467 -657 197 -560
+ 198 -486 -591 -622
+ 189 -433 -603 -207
+ -15 -381 159 -558
+ -426 -71 -381 171
+ -8 -17 68 -85
+ 35 0 22 -82
diff --git a/profiles/vertebrates/MA0157.1.pwm b/profiles/vertebrates/MA0157.1.pwm
index e69de29..6704c95 100644
--- a/profiles/vertebrates/MA0157.1.pwm
+++ b/profiles/vertebrates/MA0157.1.pwm
@@ -0,0 +1,8 @@
+ -220 -220 51 110
+ -113 -52 139 -220
+ -9 -220 -113 125
+ 174 -220 -220 -220
+ 164 -113 -220 -220
+ 174 -220 -220 -220
+ -220 164 -220 -113
+ 164 -220 -220 -113
diff --git a/profiles/vertebrates/MA0157.2.pwm b/profiles/vertebrates/MA0157.2.pwm
index 1531a21..cf8f22f 100644
--- a/profiles/vertebrates/MA0157.2.pwm
+++ b/profiles/vertebrates/MA0157.2.pwm
@@ -1,8 +1,8 @@
- -272 -10000 194 -10000
- -10000 -10000 -339 197
- 194 -311 -479 -711
- 200 -706 -10000 -10000
- 197 -376 -10000 -10000
- -320 195 -10000 -552
- 197 -363 -10000 -10000
- 113 -359 -201 57
+ -242 -462 190 -462
+ -460 -460 -291 192
+ 190 -272 -373 -439
+ 195 -434 -457 -457
+ 193 -316 -459 -459
+ -278 191 -461 -402
+ 193 -307 -459 -459
+ 110 -308 -185 55
diff --git a/profiles/vertebrates/MA0157.3.pwm b/profiles/vertebrates/MA0157.3.pwm
index e69de29..61287ae 100644
--- a/profiles/vertebrates/MA0157.3.pwm
+++ b/profiles/vertebrates/MA0157.3.pwm
@@ -0,0 +1,12 @@
+ 17 -18 -6 3
+ 36 -124 -14 47
+ -78 -326 168 -313
+ -192 -367 -228 179
+ 189 -258 -404 -386
+ 189 -284 -402 -351
+ 191 -353 -358 -373
+ -377 182 -391 -163
+ 188 -327 -391 -280
+ 78 -37 -21 -65
+ 24 -7 13 -37
+ 13 -2 -7 -5
diff --git a/profiles/vertebrates/MA0158.1.pwm b/profiles/vertebrates/MA0158.1.pwm
index e69de29..83d492c 100644
--- a/profiles/vertebrates/MA0158.1.pwm
+++ b/profiles/vertebrates/MA0158.1.pwm
@@ -0,0 +1,8 @@
+ -66 156 -225 -225
+ 68 -233 26 0
+ -233 68 26 0
+ 49 -233 -132 100
+ 159 -233 -233 -74
+ 159 -233 -74 -233
+ -233 -233 -233 177
+ -233 -132 49 100
diff --git a/profiles/vertebrates/MA0158.2.pwm b/profiles/vertebrates/MA0158.2.pwm
index 0361515..f8fd783 100644
--- a/profiles/vertebrates/MA0158.2.pwm
+++ b/profiles/vertebrates/MA0158.2.pwm
@@ -1,8 +1,8 @@
- -246 9 117 -98
- -10000 43 -10000 141
- 137 43 -390 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -18 164
- 200 -10000 -10000 -10000
- -71 90 53 -386
+ -235 9 115 -95
+ -576 42 -576 139
+ 136 43 -368 -638
+ 198 -576 -576 -576
+ -576 -576 -576 198
+ -611 -611 -18 163
+ 198 -576 -576 -576
+ -69 89 53 -354
diff --git a/profiles/vertebrates/MA0159.1.pwm b/profiles/vertebrates/MA0159.1.pwm
index e69de29..ba67733 100644
--- a/profiles/vertebrates/MA0159.1.pwm
+++ b/profiles/vertebrates/MA0159.1.pwm
@@ -0,0 +1,17 @@
+ 93 -254 81 -254
+ -254 -254 180 -254
+ -166 -254 103 55
+ -254 -254 -166 174
+ -254 147 -73 -112
+ 174 -254 -166 -254
+ -42 24 -16 24
+ -16 40 55 -166
+ -16 -42 81 -73
+ 103 -166 24 -112
+ -16 5 93 -254
+ 139 -73 -73 -254
+ -166 -166 161 -166
+ -254 -166 131 5
+ -112 -166 -73 139
+ -166 139 -73 -112
+ 168 -254 -166 -166
diff --git a/profiles/vertebrates/MA0160.1.pwm b/profiles/vertebrates/MA0160.1.pwm
index d3950da..fdac2ef 100644
--- a/profiles/vertebrates/MA0160.1.pwm
+++ b/profiles/vertebrates/MA0160.1.pwm
@@ -1,8 +1,8 @@
- 130 -170 -12 -170
- 189 -10000 -181 -10000
- -10000 -10000 189 -181
- -22 -10000 165 -10000
- -81 -81 -10000 151
- -10000 189 -10000 -181
- 200 -10000 -10000 -10000
- -12 130 -70 -10000
+ 110 -112 -9 -112
+ 165 -226 -120 -226
+ -226 -226 165 -120
+ -17 -226 143 -226
+ -60 -60 -226 130
+ -226 165 -226 -120
+ 175 -226 -226 -226
+ -9 110 -51 -217
diff --git a/profiles/vertebrates/MA0160.2.pwm b/profiles/vertebrates/MA0160.2.pwm
index e69de29..ce8e9da 100644
--- a/profiles/vertebrates/MA0160.2.pwm
+++ b/profiles/vertebrates/MA0160.2.pwm
@@ -0,0 +1,10 @@
+ -59 -20 18 41
+ -11 -59 -40 73
+ 163 -400 -110 -139
+ 180 -383 -353 -146
+ 188 -264 -345 -375
+ -371 -371 154 -9
+ -373 -373 190 -318
+ -274 -139 -144 163
+ -381 182 -350 -172
+ 166 -302 -61 -397
diff --git a/profiles/vertebrates/MA0161.1.pwm b/profiles/vertebrates/MA0161.1.pwm
index e69de29..92e5bd6 100644
--- a/profiles/vertebrates/MA0161.1.pwm
+++ b/profiles/vertebrates/MA0161.1.pwm
@@ -0,0 +1,6 @@
+ -221 8 -315 138
+ -410 -432 -245 189
+ -410 -432 195 -461
+ -397 -401 193 -398
+ -49 162 -327 -326
+ 92 -80 -54 -25
diff --git a/profiles/vertebrates/MA0161.2.pwm b/profiles/vertebrates/MA0161.2.pwm
index e69de29..f972015 100644
--- a/profiles/vertebrates/MA0161.2.pwm
+++ b/profiles/vertebrates/MA0161.2.pwm
@@ -0,0 +1,11 @@
+ -15 -13 -23 41
+ 42 -44 -47 26
+ -274 185 -304 -306
+ -402 -315 -289 188
+ -295 -302 -384 188
+ -312 -423 192 -476
+ -355 -431 191 -321
+ -333 188 -467 -239
+ 180 -279 -254 -228
+ -14 2 13 -3
+ 20 -10 -7 -6
diff --git a/profiles/vertebrates/MA0162.1.pwm b/profiles/vertebrates/MA0162.1.pwm
index 7b7797a..16acb09 100644
--- a/profiles/vertebrates/MA0162.1.pwm
+++ b/profiles/vertebrates/MA0162.1.pwm
@@ -1,11 +1,11 @@
- -32 9 -191 90
- -91 -191 168 -10000
- -10000 179 -10000 -91
- -10000 -10000 200 -10000
- -10000 -10000 -32 168
- -32 -10000 168 -10000
- -191 -10000 190 -10000
- -10000 -10000 200 -10000
- -91 142 -10000 -32
- -10000 -10000 200 -10000
- -191 -10000 90 90
+ -25 7 -126 76
+ -67 -126 146 -228
+ -228 157 -228 -67
+ -228 -228 176 -228
+ -228 -228 -25 146
+ -25 -228 146 -228
+ -126 -228 167 -228
+ -228 -228 176 -228
+ -67 122 -228 -25
+ -228 -228 176 -228
+ -126 -228 76 76
diff --git a/profiles/vertebrates/MA0162.2.pwm b/profiles/vertebrates/MA0162.2.pwm
index e69de29..e19b6f1 100644
--- a/profiles/vertebrates/MA0162.2.pwm
+++ b/profiles/vertebrates/MA0162.2.pwm
@@ -0,0 +1,14 @@
+ -146 90 1 -38
+ -101 115 -116 -27
+ -138 97 -44 -13
+ -118 176 -680 -258
+ -357 191 -680 -270
+ -7 -680 115 -29
+ -680 199 -680 -680
+ -680 194 -680 -284
+ -680 172 -228 -103
+ 25 144 -680 -351
+ -680 195 -680 -322
+ -37 -680 110 10
+ -680 168 -109 -161
+ -2 86 -67 -82
diff --git a/profiles/vertebrates/MA0162.3.pwm b/profiles/vertebrates/MA0162.3.pwm
index 239b203..e361da5 100644
--- a/profiles/vertebrates/MA0162.3.pwm
+++ b/profiles/vertebrates/MA0162.3.pwm
@@ -1,14 +1,14 @@
- 12 -11 -113 61
- 156 0 -704 -446
- -522 198 -709 -609
- -377 -10000 197 -10000
- -10000 200 -10000 -10000
- -10000 199 -10000 -499
- -10000 197 -10000 -362
- 167 -32 -578 -10000
- -10000 200 -10000 -869
- -10000 -10000 200 -808
- -10000 199 -10000 -500
- 179 -425 -125 -366
- 23 16 -198 54
- 28 -99 -121 89
+ 12 -11 -109 60
+ 154 0 -493 -384
+ -430 196 -498 -468
+ -346 -571 195 -571
+ -534 197 -534 -534
+ -536 196 -536 -419
+ -538 194 -538 -328
+ 164 -31 -451 -526
+ -536 197 -536 -522
+ -574 -574 198 -548
+ -537 196 -537 -419
+ 176 -368 -119 -327
+ 23 16 -188 53
+ 27 -96 -117 87
diff --git a/profiles/vertebrates/MA0162.4.pwm b/profiles/vertebrates/MA0162.4.pwm
index e69de29..f895dab 100644
--- a/profiles/vertebrates/MA0162.4.pwm
+++ b/profiles/vertebrates/MA0162.4.pwm
@@ -0,0 +1,14 @@
+ -11 60 -21 -53
+ -93 94 -8 -72
+ 92 43 -98 -196
+ -349 189 -327 -319
+ -58 -271 153 -183
+ -483 193 -344 -422
+ -237 183 -236 -418
+ -443 191 -337 -352
+ 154 -49 -183 -326
+ -529 194 -337 -477
+ -70 -143 142 -157
+ -293 171 -181 -173
+ 22 45 -27 -64
+ -100 84 4 -54
diff --git a/profiles/vertebrates/MA0163.1.pwm b/profiles/vertebrates/MA0163.1.pwm
index 4b703c7..f0c37ae 100644
--- a/profiles/vertebrates/MA0163.1.pwm
+++ b/profiles/vertebrates/MA0163.1.pwm
@@ -1,14 +1,14 @@
- -10000 -10000 200 -10000
- -58 -10000 164 -217
- -10000 -10000 200 -10000
- -10000 -10000 192 -217
- -10000 164 -17 -10000
- -10000 174 -217 -117
- -17 115 -217 -58
- 142 -10000 -10000 42
- 129 15 -117 -10000
- -117 -10000 164 -117
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 -10000 183 -117
- -117 -10000 183 -10000
+ -239 -239 178 -239
+ -45 -239 144 -143
+ -239 -239 178 -239
+ -239 -239 170 -143
+ -239 144 -14 -239
+ -239 153 -143 -86
+ -14 99 -143 -45
+ 123 -239 -239 34
+ 112 12 -86 -239
+ -86 -239 144 -86
+ -239 -239 178 -239
+ -239 -239 178 -239
+ -239 -239 162 -86
+ -86 -239 162 -239
diff --git a/profiles/vertebrates/MA0164.1.pwm b/profiles/vertebrates/MA0164.1.pwm
index e69de29..f84154a 100644
--- a/profiles/vertebrates/MA0164.1.pwm
+++ b/profiles/vertebrates/MA0164.1.pwm
@@ -0,0 +1,7 @@
+ -42 93 -112 -16
+ 180 -254 -254 -254
+ 180 -254 -254 -254
+ -254 -166 174 -254
+ -254 180 -254 -254
+ -254 -254 -254 180
+ -254 -254 -254 180
diff --git a/profiles/vertebrates/MA0258.1.pwm b/profiles/vertebrates/MA0258.1.pwm
index e412296..92546eb 100644
--- a/profiles/vertebrates/MA0258.1.pwm
+++ b/profiles/vertebrates/MA0258.1.pwm
@@ -1,18 +1,18 @@
- -19 85 -50 -70
- 82 -81 -112 26
- 106 -257 79 -548
- -172 -10000 162 -70
- -231 -216 184 -10000
- -278 -223 -144 171
- -10000 200 -10000 -10000
- 192 -648 -10000 -223
- -87 46 34 -31
- -48 -50 74 -14
- -78 -55 72 12
- -209 -144 -189 164
- -50 -184 157 -448
- 100 15 -223 -55
- -139 159 -548 -75
- -96 170 -10000 -202
- -172 1 -10000 143
- -57 7 61 -41
+ -18 82 -47 -65
+ 79 -75 -104 25
+ 102 -225 76 -380
+ -157 -431 157 -65
+ -205 -193 178 -431
+ -241 -199 -132 166
+ -431 194 -431 -431
+ 186 -404 -431 -199
+ -81 44 33 -29
+ -45 -47 71 -13
+ -73 -52 69 11
+ -187 -132 -171 159
+ -47 -166 152 -343
+ 96 14 -199 -52
+ -128 154 -380 -70
+ -89 164 -431 -181
+ -157 1 -431 138
+ -54 7 58 -39
diff --git a/profiles/vertebrates/MA0258.2.pwm b/profiles/vertebrates/MA0258.2.pwm
index 9d415fe..3f18fd7 100644
--- a/profiles/vertebrates/MA0258.2.pwm
+++ b/profiles/vertebrates/MA0258.2.pwm
@@ -1,15 +1,15 @@
- 139 -442 31 -357
- -226 -10000 180 -168
- -513 -10000 198 -565
- -480 -381 -106 177
- -10000 189 -195 -453
- 197 -1101 -518 -457
- -204 103 41 -136
- 2 65 -29 -75
- -19 28 8 -23
- -36 -108 -195 132
- -88 -237 169 -496
- 67 0 -57 -44
- -225 165 -251 -108
- -89 151 -10000 -69
- -131 39 -177 99
+ 138 -413 31 -340
+ -221 -652 179 -164
+ -467 -652 197 -503
+ -443 -362 -104 176
+ -652 188 -191 -422
+ 196 -646 -471 -425
+ -199 102 41 -134
+ 2 64 -28 -74
+ -19 28 8 -23
+ -36 -106 -191 131
+ -87 -231 168 -455
+ 66 0 -56 -44
+ -219 164 -243 -106
+ -88 150 -652 -68
+ -128 39 -173 98
diff --git a/profiles/vertebrates/MA0259.1.pwm b/profiles/vertebrates/MA0259.1.pwm
index e69de29..7b94743 100644
--- a/profiles/vertebrates/MA0259.1.pwm
+++ b/profiles/vertebrates/MA0259.1.pwm
@@ -0,0 +1,8 @@
+ 5 10 85 -349
+ -119 14 36 23
+ 150 -265 -16 -301
+ -349 189 -349 -301
+ -349 -349 190 -349
+ -349 -349 -349 190
+ -349 -349 190 -349
+ -47 91 -34 -70
diff --git a/profiles/vertebrates/MA0442.1.pwm b/profiles/vertebrates/MA0442.1.pwm
index e69de29..e9786ba 100644
--- a/profiles/vertebrates/MA0442.1.pwm
+++ b/profiles/vertebrates/MA0442.1.pwm
@@ -0,0 +1,6 @@
+ -251 160 -251 -68
+ 46 -107 -107 74
+ -251 -162 -37 145
+ -251 -251 -251 180
+ -251 -68 160 -251
+ -251 -251 -162 173
diff --git a/profiles/vertebrates/MA0442.2.pwm b/profiles/vertebrates/MA0442.2.pwm
index 65e2c11..5f1b0b3 100644
--- a/profiles/vertebrates/MA0442.2.pwm
+++ b/profiles/vertebrates/MA0442.2.pwm
@@ -1,11 +1,11 @@
- 41 -37 4 -20
- 49 -86 15 -10
- 112 -47 -70 -105
- 198 -700 -742 -436
- -742 195 -555 -330
- 198 -620 -620 -542
- 194 -420 -468 -372
- 193 -448 -542 -307
- -568 -530 197 -468
- 37 10 27 -124
- 31 11 -2 -53
+ 40 -36 4 -19
+ 48 -84 15 -10
+ 110 -45 -68 -102
+ 195 -510 -520 -385
+ -520 193 -456 -305
+ 196 -484 -484 -449
+ 191 -374 -407 -338
+ 191 -393 -449 -286
+ -462 -443 195 -407
+ 37 10 26 -120
+ 31 11 -2 -51
diff --git a/profiles/vertebrates/MA0461.1.pwm b/profiles/vertebrates/MA0461.1.pwm
index a7ddf56..b70d5d2 100644
--- a/profiles/vertebrates/MA0461.1.pwm
+++ b/profiles/vertebrates/MA0461.1.pwm
@@ -1,8 +1,8 @@
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- 114 85 -10000 -10000
- -31 -10000 -10000 167
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 131 -10000 61
+ -647 199 -647 -647
+ 199 -647 -647 -647
+ -647 -647 199 -647
+ 113 84 -647 -647
+ -30 -647 -647 166
+ -647 -647 199 -647
+ -647 -647 199 -647
+ -647 130 -647 60
diff --git a/profiles/vertebrates/MA0461.2.pwm b/profiles/vertebrates/MA0461.2.pwm
index e69de29..592e3ef 100644
--- a/profiles/vertebrates/MA0461.2.pwm
+++ b/profiles/vertebrates/MA0461.2.pwm
@@ -0,0 +1,10 @@
+ 111 -140 31 -219
+ 100 37 -75 -318
+ -246 190 -409 -506
+ 189 -330 -272 -506
+ -359 -406 -108 176
+ 187 -178 -509 -509
+ -317 -447 -436 192
+ -473 -487 192 -280
+ -265 -13 53 56
+ -127 61 -129 72
diff --git a/profiles/vertebrates/MA0462.1.pwm b/profiles/vertebrates/MA0462.1.pwm
index e69de29..c558e21 100644
--- a/profiles/vertebrates/MA0462.1.pwm
+++ b/profiles/vertebrates/MA0462.1.pwm
@@ -0,0 +1,11 @@
+ 23 -239 96 -52
+ 86 -220 13 -19
+ 77 -376 -24 45
+ 164 -82 -669 -171
+ -669 -669 -669 199
+ -669 -669 197 -394
+ 199 -669 -669 -669
+ -212 93 89 -669
+ -669 -669 -669 199
+ -101 170 -199 -669
+ 195 -669 -669 -323
diff --git a/profiles/vertebrates/MA0462.2.pwm b/profiles/vertebrates/MA0462.2.pwm
index 74867fe..8e8869c 100644
--- a/profiles/vertebrates/MA0462.2.pwm
+++ b/profiles/vertebrates/MA0462.2.pwm
@@ -1,11 +1,11 @@
- 17 -100 -3 48
- 98 -39 -50 -83
- -470 -512 -571 197
- -352 -458 180 -133
- 197 -555 -477 -490
- -277 171 -119 -277
- -366 -531 -415 194
- -127 178 -419 -339
- 195 -491 -449 -410
- -60 -64 -30 92
- 49 2 -95 9
+ 17 -99 -3 48
+ 97 -39 -50 -82
+ -453 -489 -538 196
+ -344 -442 179 -132
+ 196 -524 -459 -470
+ -273 170 -118 -273
+ -358 -505 -403 194
+ -126 178 -407 -333
+ 194 -471 -434 -398
+ -59 -64 -30 91
+ 49 2 -95 9
diff --git a/profiles/vertebrates/MA0463.1.pwm b/profiles/vertebrates/MA0463.1.pwm
index e69de29..8e8503c 100644
--- a/profiles/vertebrates/MA0463.1.pwm
+++ b/profiles/vertebrates/MA0463.1.pwm
@@ -0,0 +1,14 @@
+ -31 -47 3 53
+ -253 -305 -279 183
+ -428 -149 -271 178
+ -271 184 -296 -287
+ -500 174 -500 -77
+ -500 -500 -500 197
+ 88 -140 74 -315
+ -72 -500 174 -500
+ 194 -500 -372 -439
+ 140 -118 -43 -243
+ 134 -407 -16 -94
+ -118 -131 137 -81
+ -33 102 -100 -58
+ 61 -33 -51 -4
diff --git a/profiles/vertebrates/MA0463.2.pwm b/profiles/vertebrates/MA0463.2.pwm
index e69de29..a1e5cc4 100644
--- a/profiles/vertebrates/MA0463.2.pwm
+++ b/profiles/vertebrates/MA0463.2.pwm
@@ -0,0 +1,16 @@
+ 23 -12 -18 4
+ -97 12 -133 100
+ -84 -344 165 -217
+ -287 188 -364 -322
+ -212 -255 -415 183
+ -152 -124 -119 148
+ -447 -576 -587 197
+ -614 194 -596 -288
+ -365 -118 105 50
+ 189 -355 -402 -269
+ -132 -467 180 -352
+ -483 -385 191 -279
+ 176 -326 -179 -221
+ 179 -392 -339 -142
+ -22 6 -248 94
+ -17 -45 11 38
diff --git a/profiles/vertebrates/MA0464.1.pwm b/profiles/vertebrates/MA0464.1.pwm
index 605dcc5..ef12c31 100644
--- a/profiles/vertebrates/MA0464.1.pwm
+++ b/profiles/vertebrates/MA0464.1.pwm
@@ -1,11 +1,11 @@
- -128 80 68 -198
- 30 -291 -33 88
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 188 -10000 -159
- -46 -184 158 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -3 159 -725 -10000
- 75 11 -352 21
- -96 67 -10 -6
+ -126 79 67 -195
+ 30 -284 -33 87
+ -699 199 -699 -699
+ 199 -699 -699 -699
+ -699 187 -699 -157
+ -45 -181 157 -699
+ -699 -699 -699 199
+ -699 -699 199 -699
+ -3 159 -612 -699
+ 74 11 -340 21
+ -95 67 -10 -6
diff --git a/profiles/vertebrates/MA0464.2.pwm b/profiles/vertebrates/MA0464.2.pwm
index e69de29..d21f22d 100644
--- a/profiles/vertebrates/MA0464.2.pwm
+++ b/profiles/vertebrates/MA0464.2.pwm
@@ -0,0 +1,10 @@
+ 44 11 6 -94
+ -122 -270 61 92
+ -505 198 -673 -612
+ 195 -421 -479 -480
+ -583 198 -662 -559
+ -494 -565 198 -673
+ -393 -343 -470 193
+ -653 -620 198 -485
+ 99 83 -426 -250
+ -85 102 -100 -12
diff --git a/profiles/vertebrates/MA0465.1.pwm b/profiles/vertebrates/MA0465.1.pwm
index e69de29..f9cc04b 100644
--- a/profiles/vertebrates/MA0465.1.pwm
+++ b/profiles/vertebrates/MA0465.1.pwm
@@ -0,0 +1,11 @@
+ 61 -31 26 -107
+ 72 -451 32 8
+ -36 -149 151 -536
+ -536 137 -536 45
+ 79 104 -536 -239
+ 197 -536 -536 -536
+ -536 -536 -536 197
+ 197 -536 -536 -536
+ 197 -536 -536 -536
+ 197 -536 -536 -536
+ 132 -135 -34 -164
diff --git a/profiles/vertebrates/MA0465.2.pwm b/profiles/vertebrates/MA0465.2.pwm
index dbb921a..d3c2014 100644
--- a/profiles/vertebrates/MA0465.2.pwm
+++ b/profiles/vertebrates/MA0465.2.pwm
@@ -1,12 +1,12 @@
- 51 -33 -11 -23
- 55 -164 14 15
- -134 -193 160 -165
- -271 173 -372 -115
- 174 -127 -544 -215
- 190 -427 -274 -412
- -487 -436 -437 195
- 187 -340 -300 -294
- 194 -452 -445 -359
- 191 -375 -400 -332
- 78 -60 -44 -18
- 35 -21 -43 17
+ 50 -33 -11 -23
+ 55 -162 14 15
+ -133 -191 159 -163
+ -266 173 -363 -114
+ 173 -126 -514 -212
+ 190 -413 -270 -400
+ -466 -421 -422 195
+ 186 -332 -295 -289
+ 193 -435 -429 -350
+ 191 -365 -388 -325
+ 78 -59 -44 -17
+ 35 -21 -43 17
diff --git a/profiles/vertebrates/MA0466.1.pwm b/profiles/vertebrates/MA0466.1.pwm
index e69de29..e1fb3c7 100644
--- a/profiles/vertebrates/MA0466.1.pwm
+++ b/profiles/vertebrates/MA0466.1.pwm
@@ -0,0 +1,11 @@
+ -93 -130 43 78
+ 159 -207 -43 -831
+ -831 -831 -831 200
+ -831 -831 -831 200
+ -243 -831 160 -36
+ -831 200 -831 -831
+ 158 -217 -131 -141
+ -151 106 -831 64
+ 127 66 -831 -831
+ 200 -831 -831 -831
+ -831 53 -356 130
diff --git a/profiles/vertebrates/MA0466.2.pwm b/profiles/vertebrates/MA0466.2.pwm
index e69de29..b6bece4 100644
--- a/profiles/vertebrates/MA0466.2.pwm
+++ b/profiles/vertebrates/MA0466.2.pwm
@@ -0,0 +1,10 @@
+ 89 -18 14 -267
+ -631 -629 -693 199
+ -681 -689 -144 185
+ 80 -643 91 -147
+ -390 182 -463 -151
+ -95 -353 173 -371
+ -142 172 -735 -166
+ 195 -312 -693 -723
+ 199 -689 -719 -689
+ -495 83 -261 102
diff --git a/profiles/vertebrates/MA0466.3.pwm b/profiles/vertebrates/MA0466.3.pwm
index e69de29..28f6287 100644
--- a/profiles/vertebrates/MA0466.3.pwm
+++ b/profiles/vertebrates/MA0466.3.pwm
@@ -0,0 +1,12 @@
+ -95 -89 36 73
+ 151 -205 -15 -649
+ -668 -663 -673 199
+ -673 -673 -481 198
+ -68 -670 172 -385
+ -674 198 -664 -444
+ -454 -638 198 -674
+ -383 173 -660 -73
+ 198 -478 -673 -673
+ 199 -667 -673 -673
+ -671 -14 -205 151
+ 71 37 -87 -95
diff --git a/profiles/vertebrates/MA0467.1.pwm b/profiles/vertebrates/MA0467.1.pwm
index e69de29..ddde471 100644
--- a/profiles/vertebrates/MA0467.1.pwm
+++ b/profiles/vertebrates/MA0467.1.pwm
@@ -0,0 +1,11 @@
+ 119 -80 -19 -187
+ 145 -330 -32 -146
+ -58 -301 147 -118
+ 83 -120 64 -215
+ -3 -555 157 -478
+ -555 -555 198 -555
+ 162 -17 -555 -555
+ -555 -555 -555 198
+ -555 -373 -555 196
+ 191 -555 -555 -224
+ 5 -308 132 -152
diff --git a/profiles/vertebrates/MA0467.2.pwm b/profiles/vertebrates/MA0467.2.pwm
index 5135594..62ec721 100644
--- a/profiles/vertebrates/MA0467.2.pwm
+++ b/profiles/vertebrates/MA0467.2.pwm
@@ -1,10 +1,10 @@
- -5 -23 33 -11
- 47 -69 37 -50
- -583 -281 193 -517
- -538 -491 196 -393
- 196 -599 -469 -453
- -662 -508 -691 198
- -444 -544 -576 197
- 197 -544 -556 -462
- 32 -55 32 -28
- 15 9 6 -35
+ -5 -23 32 -11
+ 46 -68 36 -49
+ -495 -268 191 -457
+ -469 -439 194 -365
+ 195 -504 -423 -412
+ -532 -450 -543 197
+ -405 -473 -491 195
+ 195 -473 -480 -419
+ 31 -54 32 -28
+ 15 9 6 -34
diff --git a/profiles/vertebrates/MA0468.1.pwm b/profiles/vertebrates/MA0468.1.pwm
index e69de29..dcfd8ac 100644
--- a/profiles/vertebrates/MA0468.1.pwm
+++ b/profiles/vertebrates/MA0468.1.pwm
@@ -0,0 +1,11 @@
+ -39 -192 -322 152
+ 195 -762 -292 -762
+ 199 -762 -762 -762
+ -86 29 -223 101
+ -762 78 -93 81
+ -762 54 -64 92
+ 188 -171 -762 -660
+ 199 -762 -762 -762
+ -762 -762 -762 199
+ -762 196 -762 -348
+ 182 -762 -762 -110
diff --git a/profiles/vertebrates/MA0469.1.pwm b/profiles/vertebrates/MA0469.1.pwm
index fa5c3e9..e75894e 100644
--- a/profiles/vertebrates/MA0469.1.pwm
+++ b/profiles/vertebrates/MA0469.1.pwm
@@ -1,15 +1,15 @@
- -10000 114 -10000 85
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 195 -299 -10000
- -10000 200 -10000 -10000
- -10000 -10000 181 -104
- -10000 200 -10000 -10000
- -10000 142 -7 -141
- -80 106 -68 -47
- -121 50 22 -2
- -170 123 -20 -108
- 75 -55 9 -81
- -214 116 27 -159
- -13 41 -127 42
- -66 58 42 -89
+ -573 112 -573 84
+ -573 -573 -573 198
+ -573 198 -573 -573
+ -573 193 -282 -573
+ -573 198 -573 -573
+ -573 -573 179 -102
+ -573 198 -573 -573
+ -573 140 -7 -137
+ -78 104 -67 -46
+ -118 49 22 -2
+ -164 121 -19 -105
+ 74 -53 9 -79
+ -203 114 27 -152
+ -12 40 -122 41
+ -64 56 41 -86
diff --git a/profiles/vertebrates/MA0469.2.pwm b/profiles/vertebrates/MA0469.2.pwm
index 6a526af..f45cad4 100644
--- a/profiles/vertebrates/MA0469.2.pwm
+++ b/profiles/vertebrates/MA0469.2.pwm
@@ -1,18 +1,18 @@
- 105 -122 -17 -73
- 158 -380 -18 -415
- 185 -10000 -556 -139
- 189 -10000 -10000 -176
- 170 -10000 -389 -54
- -50 -10000 48 93
- -440 -110 175 -311
- -10000 -833 200 -10000
- -10000 200 -10000 -10000
- -10000 -838 200 -10000
- -10000 200 -10000 -10000
- -300 164 -49 -443
- 138 -25 -10000 -84
- 53 -501 -546 132
- 12 -666 -639 153
- -92 -511 -589 178
- -329 -76 -251 165
- -132 -1 -101 107
+ 104 -118 -16 -71
+ 156 -345 -18 -371
+ 182 -547 -453 -134
+ 187 -550 -550 -169
+ 168 -562 -353 -53
+ -49 -623 47 92
+ -407 -108 174 -298
+ -612 -584 198 -612
+ -549 198 -549 -549
+ -616 -588 198 -616
+ -546 198 -546 -546
+ -283 162 -48 -397
+ 136 -25 -581 -82
+ 52 -448 -477 131
+ 11 -541 -529 152
+ -90 -447 -491 176
+ -307 -74 -239 163
+ -127 0 -98 106
diff --git a/profiles/vertebrates/MA0469.3.pwm b/profiles/vertebrates/MA0469.3.pwm
index e69de29..4004241 100644
--- a/profiles/vertebrates/MA0469.3.pwm
+++ b/profiles/vertebrates/MA0469.3.pwm
@@ -0,0 +1,16 @@
+ 68 -137 24 -26
+ 14 -549 -454 150
+ -82 -606 -604 177
+ -144 -442 -567 183
+ -173 -591 -109 168
+ -616 -110 181 -755
+ -706 -737 199 -703
+ -691 199 -711 -675
+ -671 -698 199 -673
+ -698 199 -737 -714
+ -755 182 -113 -617
+ 169 -113 -612 -173
+ 184 -562 -462 -151
+ 177 -607 -594 -86
+ 150 -433 -581 14
+ -28 25 -140 68
diff --git a/profiles/vertebrates/MA0470.1.pwm b/profiles/vertebrates/MA0470.1.pwm
index 35c75b2..82ed861 100644
--- a/profiles/vertebrates/MA0470.1.pwm
+++ b/profiles/vertebrates/MA0470.1.pwm
@@ -1,11 +1,11 @@
- -79 -34 85 -28
- -160 12 137 -10000
- -10000 -542 199 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -412 -111 180 -10000
- -497 -352 196 -10000
- 194 -10000 -265 -10000
- 142 -10000 41 -10000
- 60 -43 62 -228
- 10 -26 39 -36
+ -76 -33 84 -27
+ -153 12 135 -547
+ -547 -446 197 -547
+ -547 198 -547 -547
+ -547 -547 198 -547
+ -367 -107 177 -547
+ -422 -321 193 -547
+ 192 -547 -248 -547
+ 140 -547 40 -547
+ 59 -42 61 -216
+ 10 -25 38 -35
diff --git a/profiles/vertebrates/MA0470.2.pwm b/profiles/vertebrates/MA0470.2.pwm
index be8be90..cc44290 100644
--- a/profiles/vertebrates/MA0470.2.pwm
+++ b/profiles/vertebrates/MA0470.2.pwm
@@ -1,14 +1,14 @@
- 9 -197 -120 117
- -40 -230 -223 150
- -87 -329 -62 143
- -212 -307 -140 171
- -367 -89 176 -766
- -845 -613 199 -10000
- -786 200 -1077 -831
- -860 -896 200 -713
- -10000 199 -604 -10000
- -730 158 -20 -299
- 127 -17 -226 -102
- 32 -97 -290 108
- 29 -207 -216 121
- 29 -61 -87 65
+ 9 -194 -119 116
+ -40 -226 -219 149
+ -86 -320 -61 143
+ -208 -299 -138 170
+ -354 -89 175 -629
+ -640 -543 198 -679
+ -623 199 -670 -636
+ -643 -650 199 -595
+ -679 198 -538 -679
+ -624 158 -20 -292
+ 126 -16 -223 -102
+ 31 -96 -283 107
+ 28 -203 -212 121
+ 29 -60 -86 65
diff --git a/profiles/vertebrates/MA0471.1.pwm b/profiles/vertebrates/MA0471.1.pwm
index e69de29..b4edbde 100644
--- a/profiles/vertebrates/MA0471.1.pwm
+++ b/profiles/vertebrates/MA0471.1.pwm
@@ -0,0 +1,11 @@
+ 23 -291 101 -57
+ -63 -74 145 -574
+ -574 -574 198 -574
+ -4 149 -574 -228
+ -513 -574 198 -574
+ -574 -574 198 -574
+ -441 -406 195 -574
+ 198 -574 -574 -574
+ 127 -574 63 -574
+ 51 -59 71 -186
+ 16 3 39 -87
diff --git a/profiles/vertebrates/MA0471.2.pwm b/profiles/vertebrates/MA0471.2.pwm
index e69de29..ea425c0 100644
--- a/profiles/vertebrates/MA0471.2.pwm
+++ b/profiles/vertebrates/MA0471.2.pwm
@@ -0,0 +1,13 @@
+ -18 -4 58 -62
+ 2 -16 49 -54
+ 20 -69 48 -26
+ -195 -280 182 -406
+ -474 -324 194 -505
+ -109 167 -349 -194
+ -277 -383 188 -328
+ -444 -412 194 -438
+ -438 -324 193 -461
+ 182 -277 -181 -473
+ 163 -234 -72 -337
+ 12 -16 60 -98
+ -12 3 46 -56
diff --git a/profiles/vertebrates/MA0472.1.pwm b/profiles/vertebrates/MA0472.1.pwm
index e635150..48c014a 100644
--- a/profiles/vertebrates/MA0472.1.pwm
+++ b/profiles/vertebrates/MA0472.1.pwm
@@ -1,15 +1,15 @@
- -88 88 -10 -54
- 11 56 -79 -21
- -89 88 -53 -10
- 31 121 -226 -211
- -358 193 -10000 -320
- 52 -10000 95 -67
- -10000 200 -10000 -10000
- -104 181 -10000 -10000
- -10000 191 -10000 -202
- 177 -74 -10000 -10000
- -10000 200 -10000 -10000
- 56 -10000 89 -59
- -10000 174 -145 -178
- 84 -4 -65 -74
- -129 99 -31 -31
+ -85 86 -10 -52
+ 11 55 -76 -21
+ -86 86 -51 -10
+ 31 119 -212 -199
+ -320 190 -518 -290
+ 51 -518 93 -65
+ -518 197 -518 -518
+ -99 178 -518 -518
+ -518 188 -518 -190
+ 174 -71 -518 -518
+ -518 197 -518 -518
+ 55 -518 88 -57
+ -518 171 -138 -168
+ 82 -4 -62 -71
+ -124 97 -30 -30
diff --git a/profiles/vertebrates/MA0472.2.pwm b/profiles/vertebrates/MA0472.2.pwm
index e69de29..d588ebe 100644
--- a/profiles/vertebrates/MA0472.2.pwm
+++ b/profiles/vertebrates/MA0472.2.pwm
@@ -0,0 +1,11 @@
+ 114 38 -232 -178
+ -514 188 -341 -232
+ -181 -647 180 -220
+ -452 191 -349 -334
+ -352 192 -393 -404
+ -524 169 -319 -66
+ 189 -226 -394 -537
+ -509 195 -487 -355
+ -321 -649 189 -257
+ -478 185 -379 -180
+ 126 -210 -39 -72
diff --git a/profiles/vertebrates/MA0473.1.pwm b/profiles/vertebrates/MA0473.1.pwm
index e69de29..9eeb9cf 100644
--- a/profiles/vertebrates/MA0473.1.pwm
+++ b/profiles/vertebrates/MA0473.1.pwm
@@ -0,0 +1,13 @@
+ 29 -63 72 -104
+ 104 -115 8 -119
+ 123 -146 -54 -74
+ 27 44 -12 -95
+ -184 156 -38 -687
+ 139 44 -687 -687
+ -687 -687 199 -687
+ -687 -687 199 -687
+ 199 -687 -687 -687
+ 199 -687 -687 -687
+ -149 -687 186 -687
+ -109 -68 -403 151
+ -36 -95 126 -169
diff --git a/profiles/vertebrates/MA0473.2.pwm b/profiles/vertebrates/MA0473.2.pwm
index e69de29..34b50ce 100644
--- a/profiles/vertebrates/MA0473.2.pwm
+++ b/profiles/vertebrates/MA0473.2.pwm
@@ -0,0 +1,12 @@
+ 122 -149 -73 -49
+ 160 -168 -270 -98
+ -89 154 -191 -185
+ -309 184 -182 -594
+ -278 193 -585 -585
+ -580 -580 198 -580
+ -580 -580 198 -580
+ 198 -580 -534 -580
+ 196 -574 -583 -358
+ -87 -601 177 -592
+ -427 -161 -593 185
+ 27 -39 64 -110
diff --git a/profiles/vertebrates/MA0473.3.pwm b/profiles/vertebrates/MA0473.3.pwm
index d46a28a..c54e0be 100644
--- a/profiles/vertebrates/MA0473.3.pwm
+++ b/profiles/vertebrates/MA0473.3.pwm
@@ -1,14 +1,14 @@
- 65 -47 -5 -42
- 64 -61 -8 -26
- 55 9 -19 -73
- -195 167 -131 -263
- 182 -156 -368 -423
- -522 -483 197 -495
- -420 -456 194 -421
- 194 -391 -414 -502
- 192 -408 -394 -352
- -156 -293 181 -490
- -199 -258 -257 177
- -107 -150 154 -195
- 7 -1 50 -89
- 1 9 17 -32
+ 64 -47 -5 -42
+ 64 -60 -8 -26
+ 54 9 -19 -73
+ -193 166 -130 -259
+ 182 -155 -360 -412
+ -500 -466 196 -476
+ -409 -442 194 -410
+ 194 -382 -404 -483
+ 192 -398 -385 -345
+ -154 -288 180 -472
+ -197 -255 -254 177
+ -106 -148 154 -193
+ 7 -1 50 -88
+ 1 9 17 -31
diff --git a/profiles/vertebrates/MA0474.1.pwm b/profiles/vertebrates/MA0474.1.pwm
index e69de29..209407b 100644
--- a/profiles/vertebrates/MA0474.1.pwm
+++ b/profiles/vertebrates/MA0474.1.pwm
@@ -0,0 +1,11 @@
+ 117 -400 49 -178
+ -149 132 18 -597
+ 193 -254 -615 -703
+ -703 -703 199 -703
+ -703 -703 199 -703
+ 199 -703 -703 -703
+ 198 -703 -703 -455
+ -36 -703 168 -703
+ -140 -5 -95 110
+ 24 -146 97 -100
+ 12 -75 94 -132
diff --git a/profiles/vertebrates/MA0474.2.pwm b/profiles/vertebrates/MA0474.2.pwm
index e69de29..cc21629 100644
--- a/profiles/vertebrates/MA0474.2.pwm
+++ b/profiles/vertebrates/MA0474.2.pwm
@@ -0,0 +1,10 @@
+ 146 -255 -95 -82
+ -112 167 -180 -365
+ -102 179 -504 -577
+ -591 -599 198 -599
+ -600 -592 197 -463
+ 197 -493 -600 -553
+ 161 -345 -590 -25
+ 75 -333 112 -469
+ -344 -7 -217 145
+ -18 -5 54 -52
diff --git a/profiles/vertebrates/MA0474.3.pwm b/profiles/vertebrates/MA0474.3.pwm
index e69de29..90f757a 100644
--- a/profiles/vertebrates/MA0474.3.pwm
+++ b/profiles/vertebrates/MA0474.3.pwm
@@ -0,0 +1,14 @@
+ 38 -26 18 -45
+ 31 -6 20 -61
+ 138 -144 -60 -146
+ -201 171 -145 -328
+ 183 -154 -390 -461
+ -515 -542 197 -498
+ -447 -462 195 -456
+ 195 -425 -457 -506
+ 189 -419 -456 -226
+ -61 -264 165 -411
+ -168 -117 -138 152
+ -63 -92 126 -119
+ 15 -16 42 -60
+ -7 5 22 -24
diff --git a/profiles/vertebrates/MA0475.1.pwm b/profiles/vertebrates/MA0475.1.pwm
index e69de29..e6e97ff 100644
--- a/profiles/vertebrates/MA0475.1.pwm
+++ b/profiles/vertebrates/MA0475.1.pwm
@@ -0,0 +1,11 @@
+ 99 -208 63 -211
+ -159 160 -70 -594
+ 155 6 -594 -594
+ -594 -594 198 -594
+ -594 -594 198 -594
+ 198 -594 -594 -594
+ 192 -594 -594 -252
+ -55 -594 172 -594
+ -308 12 -156 129
+ -11 -156 120 -121
+ 14 -97 102 -149
diff --git a/profiles/vertebrates/MA0475.2.pwm b/profiles/vertebrates/MA0475.2.pwm
index e69de29..703106f 100644
--- a/profiles/vertebrates/MA0475.2.pwm
+++ b/profiles/vertebrates/MA0475.2.pwm
@@ -0,0 +1,10 @@
+ 167 -318 -140 -160
+ -204 184 -268 -514
+ -203 190 -634 -776
+ -754 -767 199 -761
+ -767 -767 199 -659
+ 199 -719 -723 -740
+ 180 -546 -733 -103
+ 79 -417 114 -634
+ -362 -6 -252 148
+ -3 -50 77 -70
diff --git a/profiles/vertebrates/MA0476.1.pwm b/profiles/vertebrates/MA0476.1.pwm
index 65d88ea..1da1956 100644
--- a/profiles/vertebrates/MA0476.1.pwm
+++ b/profiles/vertebrates/MA0476.1.pwm
@@ -1,11 +1,11 @@
- 10 -337 40 60
- 2 47 56 -302
- -10000 -10000 -10000 200
- -10000 -10000 188 -168
- 200 -10000 -10000 -10000
- -288 94 61 -124
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -483 -34 -226 157
- -88 16 10 33
+ 10 -329 40 59
+ 2 47 56 -297
+ -743 -743 -743 199
+ -743 -743 188 -167
+ 199 -743 -743 -743
+ -283 93 61 -123
+ -743 -743 -743 199
+ -743 199 -743 -743
+ 199 -743 -743 -743
+ -462 -33 -223 156
+ -87 16 10 33
diff --git a/profiles/vertebrates/MA0477.1.pwm b/profiles/vertebrates/MA0477.1.pwm
index 9284ad7..5f4faa6 100644
--- a/profiles/vertebrates/MA0477.1.pwm
+++ b/profiles/vertebrates/MA0477.1.pwm
@@ -1,11 +1,11 @@
- 44 -347 86 -43
- 25 -159 124 -306
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -341 124 62 -10000
- -10000 -10000 -10000 200
- -290 195 -10000 -10000
- 200 -10000 -10000 -10000
- -515 -70 40 103
- -15 35 51 -132
+ 44 -328 85 -42
+ 25 -155 123 -292
+ -620 -620 -620 199
+ -620 -620 199 -620
+ 199 -620 -620 -620
+ -323 123 61 -620
+ -620 -620 -620 199
+ -278 194 -620 -620
+ 199 -620 -620 -620
+ -460 -69 39 102
+ -15 35 50 -129
diff --git a/profiles/vertebrates/MA0477.2.pwm b/profiles/vertebrates/MA0477.2.pwm
index e69de29..9e27973 100644
--- a/profiles/vertebrates/MA0477.2.pwm
+++ b/profiles/vertebrates/MA0477.2.pwm
@@ -0,0 +1,13 @@
+ 5 -21 4 9
+ 14 -39 22 -5
+ 128 -110 -13 -234
+ -550 -480 -590 197
+ -465 -533 192 -265
+ 197 -538 -539 -532
+ -247 160 -74 -245
+ -369 -602 -446 195
+ -218 189 -542 -455
+ 196 -516 -453 -510
+ -238 -47 -114 140
+ 2 12 -23 6
+ -5 29 -38 6
diff --git a/profiles/vertebrates/MA0478.1.pwm b/profiles/vertebrates/MA0478.1.pwm
index 14a5bf2..12b546e 100644
--- a/profiles/vertebrates/MA0478.1.pwm
+++ b/profiles/vertebrates/MA0478.1.pwm
@@ -1,11 +1,11 @@
- -67 -42 65 8
- 20 -117 103 -143
- 111 -460 81 -417
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 193 -470 -279 -10000
- -10000 131 47 -278
- -10000 -10000 -10000 200
- -270 194 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 7 54 58
+ -66 -41 64 8
+ 20 -114 102 -140
+ 110 -420 80 -387
+ -621 -621 -621 199
+ -621 -621 199 -621
+ 192 -428 -268 -621
+ -621 129 46 -267
+ -621 -621 -621 199
+ -259 193 -621 -621
+ 199 -621 -621 -621
+ -621 7 53 57
diff --git a/profiles/vertebrates/MA0479.1.pwm b/profiles/vertebrates/MA0479.1.pwm
index e69de29..cd74963 100644
--- a/profiles/vertebrates/MA0479.1.pwm
+++ b/profiles/vertebrates/MA0479.1.pwm
@@ -0,0 +1,11 @@
+ -111 46 -46 51
+ -37 18 6 7
+ -106 66 62 -130
+ 199 -652 -652 -652
+ 187 -652 -304 -218
+ -652 -652 -652 199
+ 21 148 -652 -458
+ -53 172 -652 -652
+ 199 -652 -652 -652
+ -652 199 -652 -652
+ 179 -652 -652 -92
diff --git a/profiles/vertebrates/MA0480.1.pwm b/profiles/vertebrates/MA0480.1.pwm
index e69de29..9029e37 100644
--- a/profiles/vertebrates/MA0480.1.pwm
+++ b/profiles/vertebrates/MA0480.1.pwm
@@ -0,0 +1,11 @@
+ -40 -113 -37 101
+ -219 102 27 -88
+ -267 116 -152 33
+ -567 -567 -567 198
+ -567 -567 198 -567
+ -567 -567 -567 198
+ -567 -567 -567 198
+ -567 -567 -108 180
+ 157 -191 -567 -42
+ -567 167 -567 -36
+ 77 -12 -293 31
diff --git a/profiles/vertebrates/MA0480.2.pwm b/profiles/vertebrates/MA0480.2.pwm
index e69de29..d909591 100644
--- a/profiles/vertebrates/MA0480.2.pwm
+++ b/profiles/vertebrates/MA0480.2.pwm
@@ -0,0 +1,11 @@
+ 28 -14 2 -21
+ 27 -106 -6 44
+ -130 -280 172 -261
+ -187 -261 -175 171
+ 181 -188 -281 -345
+ 183 -202 -310 -383
+ 187 -309 -273 -367
+ -346 184 -321 -218
+ 191 -354 -428 -321
+ 4 6 20 -35
+ 20 -4 -1 -17
diff --git a/profiles/vertebrates/MA0481.1.pwm b/profiles/vertebrates/MA0481.1.pwm
index d026fba..736ef9b 100644
--- a/profiles/vertebrates/MA0481.1.pwm
+++ b/profiles/vertebrates/MA0481.1.pwm
@@ -1,15 +1,15 @@
- 41 47 -70 -58
- 75 -45 -50 -19
- 100 -100 -96 -1
- 121 -89 -55 -111
- 83 -370 18 2
- 2 -282 151 -10000
- -13 -428 -10000 160
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -228 184 -296 -347
- 200 -10000 -10000 -10000
- 118 -1 -45 -628
- 164 -211 -176 -153
- 39 -89 73 -103
+ 39 45 -65 -54
+ 72 -42 -47 -18
+ 96 -92 -89 -1
+ 117 -82 -52 -102
+ 79 -298 17 2
+ 2 -241 146 -422
+ -12 -329 -422 155
+ 194 -422 -422 -422
+ 194 -422 -422 -422
+ 194 -422 -422 -422
+ -201 178 -251 -285
+ 194 -422 -422 -422
+ 113 -1 -42 -393
+ 159 -187 -158 -139
+ 37 -82 70 -95
diff --git a/profiles/vertebrates/MA0481.2.pwm b/profiles/vertebrates/MA0481.2.pwm
index 4e3f33b..07d951c 100644
--- a/profiles/vertebrates/MA0481.2.pwm
+++ b/profiles/vertebrates/MA0481.2.pwm
@@ -1,12 +1,12 @@
- 49 -23 -10 -30
- 53 -200 -15 49
- -184 -441 185 -413
- -297 -281 -337 186
- 194 -304 -525 -530
- 192 -291 -589 -389
- 197 -574 -425 -541
- -481 190 -515 -227
- 194 -625 -485 -328
- -24 -65 103 -106
- 50 -31 -19 -15
- 29 -18 -24 7
+ 48 -23 -10 -30
+ 52 -193 -14 49
+ -179 -403 184 -381
+ -283 -269 -318 185
+ 192 -289 -461 -464
+ 190 -277 -498 -362
+ 195 -490 -390 -471
+ -432 188 -455 -219
+ 193 -516 -434 -310
+ -23 -64 102 -104
+ 49 -30 -19 -15
+ 28 -18 -23 6
diff --git a/profiles/vertebrates/MA0481.3.pwm b/profiles/vertebrates/MA0481.3.pwm
index e36d636..56d8522 100644
--- a/profiles/vertebrates/MA0481.3.pwm
+++ b/profiles/vertebrates/MA0481.3.pwm
@@ -1,11 +1,11 @@
- 53 -43 -17 -12
- 53 -159 -40 56
- -84 -357 167 -259
- -395 -468 -434 194
- 190 -316 -412 -326
- 180 -188 -335 -285
- 191 -365 -404 -317
- -381 171 -365 -79
- 187 -329 -464 -237
- 11 -12 -24 20
- 48 -38 -54 21
+ 53 -42 -17 -12
+ 52 -158 -40 56
+ -83 -351 167 -256
+ -388 -456 -425 194
+ 189 -312 -404 -322
+ 180 -187 -330 -282
+ 190 -359 -397 -313
+ -374 171 -359 -79
+ 187 -325 -452 -235
+ 11 -12 -24 20
+ 47 -38 -54 21
diff --git a/profiles/vertebrates/MA0482.1.pwm b/profiles/vertebrates/MA0482.1.pwm
index e5f9eb0..15aeae0 100644
--- a/profiles/vertebrates/MA0482.1.pwm
+++ b/profiles/vertebrates/MA0482.1.pwm
@@ -1,11 +1,11 @@
- -610 60 -88 95
- -10000 166 -117 -132
- -10000 -295 -10000 195
- -10000 -10000 -10000 200
- 198 -414 -10000 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -33 -10000 -10000 168
- -10000 85 45 -28
- -19 55 -213 52
- -83 44 -1 13
+ -492 59 -85 93
+ -574 164 -113 -128
+ -574 -278 -574 193
+ -574 -574 -574 198
+ 196 -375 -574 -574
+ -574 -574 -574 198
+ -574 198 -574 -574
+ -32 -574 -574 166
+ -574 84 45 -27
+ -19 54 -204 51
+ -81 43 -1 12
diff --git a/profiles/vertebrates/MA0482.2.pwm b/profiles/vertebrates/MA0482.2.pwm
index f6157b0..64e43ae 100644
--- a/profiles/vertebrates/MA0482.2.pwm
+++ b/profiles/vertebrates/MA0482.2.pwm
@@ -1,12 +1,12 @@
- -1 -33 -41 55
- -12 -22 -40 55
- -189 138 -153 -34
- -223 176 -374 -165
- -322 -337 -430 190
- -316 -342 -419 190
- 188 -311 -357 -316
- -426 -466 -477 195
- -494 194 -470 -338
- -95 -304 -342 171
- -42 12 5 18
- 6 -2 -72 45
+ -1 -33 -41 54
+ -12 -21 -39 55
+ -188 137 -152 -34
+ -221 176 -367 -164
+ -317 -331 -419 190
+ -311 -337 -409 190
+ 188 -307 -350 -312
+ -416 -453 -463 195
+ -478 193 -456 -332
+ -94 -300 -337 170
+ -42 12 5 18
+ 6 -2 -72 45
diff --git a/profiles/vertebrates/MA0483.1.pwm b/profiles/vertebrates/MA0483.1.pwm
index e69de29..69632c7 100644
--- a/profiles/vertebrates/MA0483.1.pwm
+++ b/profiles/vertebrates/MA0483.1.pwm
@@ -0,0 +1,11 @@
+ 133 -1 -198 -210
+ 197 -543 -543 -543
+ 197 -543 -517 -543
+ -543 -37 -355 164
+ -543 197 -543 -543
+ 121 -384 -543 67
+ -266 155 -18 -543
+ 132 -543 -529 54
+ -274 -529 190 -359
+ -156 157 -238 -100
+ 74 -2 -168 6
diff --git a/profiles/vertebrates/MA0484.1.pwm b/profiles/vertebrates/MA0484.1.pwm
index e69de29..bddcb27 100644
--- a/profiles/vertebrates/MA0484.1.pwm
+++ b/profiles/vertebrates/MA0484.1.pwm
@@ -0,0 +1,15 @@
+ 57 -34 -23 -19
+ 46 -62 69 -148
+ 98 -424 68 -146
+ -108 -341 165 -179
+ -28 -170 48 56
+ -64 28 -5 24
+ -662 189 -328 -248
+ 197 -491 -493 -662
+ 173 -449 -67 -662
+ 183 -662 -131 -501
+ -428 -630 193 -313
+ -278 -383 61 117
+ -326 87 -108 67
+ -370 182 -445 -148
+ 151 -154 -204 -83
diff --git a/profiles/vertebrates/MA0484.2.pwm b/profiles/vertebrates/MA0484.2.pwm
index 7ffbe92..d4717b6 100644
--- a/profiles/vertebrates/MA0484.2.pwm
+++ b/profiles/vertebrates/MA0484.2.pwm
@@ -1,13 +1,13 @@
- -25 -71 29 41
- -32 31 -25 16
- -339 186 -344 -237
- 190 -334 -332 -390
- 179 -317 -153 -339
- 190 -473 -257 -384
- -445 -379 192 -328
- -404 -433 -244 189
- -203 171 -271 -161
- -301 186 -433 -228
- 163 -194 -181 -144
- 14 -16 23 -26
- 35 -29 3 -18
+ -24 -70 29 40
+ -32 31 -25 16
+ -329 185 -334 -233
+ 189 -325 -323 -376
+ 178 -309 -151 -329
+ 189 -448 -252 -371
+ -425 -366 191 -319
+ -388 -414 -239 188
+ -199 170 -265 -159
+ -294 185 -414 -224
+ 162 -191 -178 -142
+ 14 -16 22 -25
+ 35 -29 3 -18
diff --git a/profiles/vertebrates/MA0485.1.pwm b/profiles/vertebrates/MA0485.1.pwm
index e69de29..f1e7413 100644
--- a/profiles/vertebrates/MA0485.1.pwm
+++ b/profiles/vertebrates/MA0485.1.pwm
@@ -0,0 +1,13 @@
+ 8 -96 84 -64
+ -94 -36 125 -164
+ -126 142 -227 -52
+ 2 106 -476 -20
+ 155 -445 -11 -329
+ -494 -380 -494 195
+ 172 -132 -243 -301
+ 196 -494 -494 -432
+ 195 -409 -494 -494
+ -317 -494 -494 193
+ -204 166 -420 -88
+ 133 -153 -409 11
+ -62 56 -45 20
diff --git a/profiles/vertebrates/MA0485.2.pwm b/profiles/vertebrates/MA0485.2.pwm
index 1d83532..71d0304 100644
--- a/profiles/vertebrates/MA0485.2.pwm
+++ b/profiles/vertebrates/MA0485.2.pwm
@@ -1,10 +1,10 @@
- -32 -162 152 -10000
- -10000 -474 -10000 199
- -10000 200 -10000 -10000
- -22 -10000 165 -10000
- -960 -960 -847 200
- 182 -10000 -10000 -107
- 200 -10000 -10000 -10000
- 200 -834 -10000 -10000
- 147 -147 -204 -67
- -25 37 -83 38
+ -31 -160 152 -736
+ -690 -446 -690 198
+ -689 199 -689 -689
+ -22 -723 164 -723
+ -669 -669 -648 199
+ 181 -707 -707 -106
+ 199 -689 -689 -689
+ 199 -644 -689 -689
+ 146 -145 -201 -66
+ -25 37 -82 38
diff --git a/profiles/vertebrates/MA0486.1.pwm b/profiles/vertebrates/MA0486.1.pwm
index 6f17d2b..c42bddf 100644
--- a/profiles/vertebrates/MA0486.1.pwm
+++ b/profiles/vertebrates/MA0486.1.pwm
@@ -1,15 +1,15 @@
- -117 54 -1 14
- -281 -111 -223 167
- -423 -235 -281 185
- -581 198 -481 -10000
- -381 34 -323 136
- 119 -301 66 -581
- -10000 -10000 200 -10000
- 173 -123 -423 -235
- 173 -323 -191 -164
- -35 16 38 -32
- -53 14 25 2
- -211 -181 -264 173
- -281 -349 -381 189
- -10000 195 -481 -349
- -323 65 -164 101
+ -106 52 -1 13
+ -235 -101 -193 161
+ -315 -202 -235 178
+ -366 191 -338 -400
+ -295 32 -262 130
+ 113 -248 63 -366
+ -400 -400 193 -400
+ 167 -111 -315 -202
+ 166 -262 -168 -146
+ -33 15 36 -30
+ -49 13 24 2
+ -184 -160 -223 167
+ -235 -278 -295 182
+ -400 189 -338 -278
+ -262 61 -146 96
diff --git a/profiles/vertebrates/MA0486.2.pwm b/profiles/vertebrates/MA0486.2.pwm
index e69de29..256a281 100644
--- a/profiles/vertebrates/MA0486.2.pwm
+++ b/profiles/vertebrates/MA0486.2.pwm
@@ -0,0 +1,13 @@
+ -244 -384 -352 187
+ -419 -477 -382 194
+ -432 195 -432 -467
+ -523 -50 -108 148
+ 135 -41 -55 -548
+ -523 -523 197 -523
+ 195 -440 -498 -448
+ 194 -478 -478 -337
+ -223 95 -115 49
+ 42 -90 69 -95
+ -345 -467 -526 194
+ -456 -498 -475 196
+ -486 196 -486 -475
diff --git a/profiles/vertebrates/MA0488.1.pwm b/profiles/vertebrates/MA0488.1.pwm
index e69de29..0388254 100644
--- a/profiles/vertebrates/MA0488.1.pwm
+++ b/profiles/vertebrates/MA0488.1.pwm
@@ -0,0 +1,13 @@
+ 63 -90 -10 -3
+ 44 -83 -7 18
+ 31 -144 88 -85
+ 165 -279 -49 -719
+ -719 -719 -719 199
+ -719 -719 198 -509
+ 199 -719 -719 -715
+ -719 -60 -21 131
+ -719 -303 195 -719
+ -244 -57 -719 165
+ 39 142 -719 -719
+ 199 -719 -719 -719
+ -446 -50 -233 161
diff --git a/profiles/vertebrates/MA0489.1.pwm b/profiles/vertebrates/MA0489.1.pwm
index 0ffce56..acda970 100644
--- a/profiles/vertebrates/MA0489.1.pwm
+++ b/profiles/vertebrates/MA0489.1.pwm
@@ -1,14 +1,14 @@
- 82 -113 4 -43
- 52 -105 59 -78
- 44 -128 66 -63
- 68 -129 34 -47
- 60 -221 62 -45
- 111 -146 56 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -983
- -284 106 58 -181
- -378 -10000 -10000 197
- -152 187 -10000 -10000
- 200 -10000 -10000 -10000
- -286 -13 -5 99
+ 82 -112 4 -42
+ 52 -103 58 -77
+ 44 -126 66 -62
+ 68 -127 33 -47
+ 59 -216 62 -45
+ 111 -144 55 -672
+ -672 -672 -672 199
+ -672 -672 199 -672
+ 199 -672 -672 -657
+ -276 105 57 -178
+ -362 -672 -672 196
+ -149 186 -672 -672
+ 199 -672 -672 -672
+ -278 -13 -5 98
diff --git a/profiles/vertebrates/MA0489.2.pwm b/profiles/vertebrates/MA0489.2.pwm
index e69de29..759fa31 100644
--- a/profiles/vertebrates/MA0489.2.pwm
+++ b/profiles/vertebrates/MA0489.2.pwm
@@ -0,0 +1,12 @@
+ 7 -46 14 17
+ 44 1 30 -131
+ -425 -490 -489 196
+ -450 -393 191 -307
+ 192 -391 -372 -377
+ -258 159 -65 -247
+ -292 -457 -444 192
+ -265 190 -418 -450
+ 192 -363 -427 -379
+ -222 -68 -85 138
+ -4 10 -10 4
+ 2 4 -14 7
diff --git a/profiles/vertebrates/MA0490.1.pwm b/profiles/vertebrates/MA0490.1.pwm
index 42d295a..1842f9d 100644
--- a/profiles/vertebrates/MA0490.1.pwm
+++ b/profiles/vertebrates/MA0490.1.pwm
@@ -1,11 +1,11 @@
- -24 -34 49 -7
- 25 -201 99 -79
- 98 -287 92 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- -10000 121 56 -232
- -10000 -10000 -10000 200
- -176 189 -10000 -10000
- 200 -10000 -10000 -10000
- -253 -52 53 76
+ -23 -33 49 -7
+ 25 -197 98 -78
+ 98 -280 91 -704
+ -704 -704 -704 199
+ -704 -704 199 -704
+ 199 -704 -704 -704
+ -704 121 56 -227
+ -704 -704 -704 199
+ -173 188 -704 -704
+ 199 -704 -704 -704
+ -248 -52 52 75
diff --git a/profiles/vertebrates/MA0490.2.pwm b/profiles/vertebrates/MA0490.2.pwm
index e69de29..b898237 100644
--- a/profiles/vertebrates/MA0490.2.pwm
+++ b/profiles/vertebrates/MA0490.2.pwm
@@ -0,0 +1,13 @@
+ 19 -27 -14 16
+ 24 -34 3 1
+ 150 -134 -78 -235
+ -504 -479 -567 197
+ -457 -501 190 -238
+ 196 -508 -501 -473
+ -205 158 -92 -204
+ -328 -580 -435 194
+ -191 187 -486 -453
+ 196 -493 -437 -471
+ -240 -116 -140 158
+ 11 -5 -27 18
+ 8 5 -40 20
diff --git a/profiles/vertebrates/MA0491.1.pwm b/profiles/vertebrates/MA0491.1.pwm
index e69de29..7314647 100644
--- a/profiles/vertebrates/MA0491.1.pwm
+++ b/profiles/vertebrates/MA0491.1.pwm
@@ -0,0 +1,11 @@
+ 35 -359 49 30
+ 65 -100 95 -763
+ -763 -763 -763 199
+ -763 -763 199 -763
+ 199 -763 -763 -763
+ -763 124 54 -241
+ -763 -763 -763 199
+ -261 194 -763 -763
+ 199 -763 -763 -763
+ -763 -91 -205 169
+ -74 63 36 -80
diff --git a/profiles/vertebrates/MA0491.2.pwm b/profiles/vertebrates/MA0491.2.pwm
index e69de29..8351808 100644
--- a/profiles/vertebrates/MA0491.2.pwm
+++ b/profiles/vertebrates/MA0491.2.pwm
@@ -0,0 +1,13 @@
+ 10 -27 -8 20
+ 14 -42 24 -5
+ 140 -137 -36 -238
+ -519 -499 -566 197
+ -420 -480 191 -273
+ 197 -518 -534 -472
+ -249 152 -36 -249
+ -364 -552 -443 195
+ -241 189 -468 -412
+ 196 -500 -467 -490
+ -321 -113 -173 165
+ 8 9 -25 5
+ 9 17 -46 12
diff --git a/profiles/vertebrates/MA0492.1.pwm b/profiles/vertebrates/MA0492.1.pwm
index e69de29..53afd35 100644
--- a/profiles/vertebrates/MA0492.1.pwm
+++ b/profiles/vertebrates/MA0492.1.pwm
@@ -0,0 +1,15 @@
+ 44 -95 -7 23
+ 67 -137 5 -3
+ 42 -79 -5 16
+ 69 -176 90 -219
+ 159 -530 -5 -753
+ -753 -753 -753 199
+ -753 -753 199 -567
+ 199 -753 -753 -753
+ -753 31 -2 83
+ -71 -218 166 -753
+ -753 -109 -753 181
+ 6 155 -550 -753
+ 199 -753 -753 -753
+ -476 -62 -179 159
+ 29 36 -40 -44
diff --git a/profiles/vertebrates/MA0493.1.pwm b/profiles/vertebrates/MA0493.1.pwm
index 245af85..f370c5c 100644
--- a/profiles/vertebrates/MA0493.1.pwm
+++ b/profiles/vertebrates/MA0493.1.pwm
@@ -1,11 +1,11 @@
- 19 -79 62 -42
- 34 -172 121 -323
- -97 159 -204 -208
- -334 181 -10000 -134
- 162 -16 -10000 -504
- -10000 200 -10000 -10000
- 160 -10000 -44 -218
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 195 -10000 -287
- 109 -191 -10000 68
+ 18 -75 60 -40
+ 33 -159 118 -280
+ -92 155 -186 -190
+ -287 177 -458 -125
+ 158 -15 -458 -382
+ -458 195 -458 -458
+ 156 -458 -42 -198
+ -458 195 -458 -458
+ -458 195 -458 -458
+ -458 190 -458 -253
+ 106 -175 -458 66
diff --git a/profiles/vertebrates/MA0493.2.pwm b/profiles/vertebrates/MA0493.2.pwm
index 15b3261..22ae479 100644
--- a/profiles/vertebrates/MA0493.2.pwm
+++ b/profiles/vertebrates/MA0493.2.pwm
@@ -1,9 +1,9 @@
- -2 -182 58 30
- -797 -797 200 -797
- -797 -797 200 -797
- -797 -797 200 -797
- -100 108 -797 47
- -797 -797 200 -797
- -797 -797 143 37
- -161 -797 184 -357
- -797 -797 200 -797
+ -2 -171 57 29
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -96 106 -486 46
+ -486 -486 196 -486
+ -486 -486 140 36
+ -152 -486 181 -316
+ -486 -486 196 -486
diff --git a/profiles/vertebrates/MA0494.1.pwm b/profiles/vertebrates/MA0494.1.pwm
index a124bc4..fe33946 100644
--- a/profiles/vertebrates/MA0494.1.pwm
+++ b/profiles/vertebrates/MA0494.1.pwm
@@ -1,19 +1,19 @@
- -10000 -267 -350 191
- -118 -340 178 -499
- 122 -38 -121 -107
- -37 161 -10000 -261
- -245 177 -672 -131
- -202 -2 -131 124
- 17 0 11 -34
- 24 -30 8 -7
- 132 -10000 2 -104
- -19 -406 151 -220
- -204 -10000 -631 190
- 82 -204 47 -72
- 150 -84 -72 -10000
- -32 160 -399 -331
- -144 171 -10000 -150
- -485 66 -292 117
- -123 68 -69 44
- -18 -69 7 53
- -42 -13 47 -7
+ -519 -247 -314 188
+ -113 -307 175 -411
+ 120 -37 -116 -103
+ -36 159 -519 -242
+ -229 174 -478 -125
+ -191 -2 -125 122
+ 17 0 11 -33
+ 23 -29 8 -7
+ 130 -519 2 -100
+ -18 -355 148 -207
+ -192 -519 -466 188
+ 80 -192 46 -69
+ 148 -81 -70 -519
+ -31 157 -350 -300
+ -137 169 -519 -143
+ -403 65 -268 115
+ -118 66 -67 43
+ -17 -67 7 52
+ -41 -13 46 -6
diff --git a/profiles/vertebrates/MA0495.1.pwm b/profiles/vertebrates/MA0495.1.pwm
index e69de29..489c1af 100644
--- a/profiles/vertebrates/MA0495.1.pwm
+++ b/profiles/vertebrates/MA0495.1.pwm
@@ -0,0 +1,18 @@
+ -103 -12 100 -75
+ -3 113 -261 -60
+ -9 -34 -236 105
+ 13 -115 69 -25
+ 128 -148 -119 -37
+ -66 29 93 -208
+ -368 -515 -519 195
+ -203 191 -786 -786
+ 198 -786 -786 -479
+ -492 -786 181 -115
+ -786 199 -786 -688
+ 185 -494 -407 -177
+ 57 -81 -52 32
+ 67 -199 -234 97
+ 44 -173 -279 114
+ 7 -90 -192 110
+ -37 -29 -67 83
+ -8 -32 -50 62
diff --git a/profiles/vertebrates/MA0495.2.pwm b/profiles/vertebrates/MA0495.2.pwm
index 6574c4f..8498f66 100644
--- a/profiles/vertebrates/MA0495.2.pwm
+++ b/profiles/vertebrates/MA0495.2.pwm
@@ -1,21 +1,21 @@
- 62 -107 -34 27
- 81 -138 -125 53
- 38 -129 -131 92
- -20 -61 -91 96
- -139 -243 -232 169
- -253 -231 179 -268
- -118 171 -305 -259
- -190 -281 -487 183
- -212 -329 174 -156
- 182 -346 -364 -172
- -146 -13 124 -147
- -270 -367 -346 188
- -161 177 -367 -238
- 187 -583 -303 -235
- -274 -249 163 -80
- -218 174 -214 -227
- 164 -208 -211 -127
- 93 -93 -58 -15
- 92 -125 -113 29
- 50 -120 -124 79
- 30 -44 -92 59
+ 61 -106 -34 26
+ 80 -136 -124 53
+ 37 -127 -129 91
+ -20 -61 -90 96
+ -137 -237 -227 168
+ -247 -226 179 -261
+ -116 170 -296 -253
+ -186 -274 -455 182
+ -208 -318 173 -153
+ 181 -333 -350 -170
+ -144 -13 123 -144
+ -263 -352 -333 187
+ -158 176 -353 -233
+ 186 -525 -294 -230
+ -267 -243 162 -79
+ -213 173 -210 -222
+ 163 -204 -207 -125
+ 92 -92 -57 -15
+ 92 -124 -112 29
+ 50 -119 -122 78
+ 30 -43 -91 59
diff --git a/profiles/vertebrates/MA0495.3.pwm b/profiles/vertebrates/MA0495.3.pwm
index d5df98e..ea68bda 100644
--- a/profiles/vertebrates/MA0495.3.pwm
+++ b/profiles/vertebrates/MA0495.3.pwm
@@ -1,16 +1,16 @@
- 34 -76 24 -6
- 90 -119 -90 21
- -126 -116 156 -236
- -404 -468 -453 195
- -245 189 -484 -382
- 195 -596 -441 -384
- -389 -456 185 -176
- -454 194 -450 -377
- 187 -408 -318 -248
- -30 -111 -109 117
- -40 -223 -236 150
- -71 -196 -266 157
- -53 -97 -201 135
- 31 -41 -100 59
- 8 -32 -49 51
- 27 -36 -39 32
+ 34 -75 24 -6
+ 90 -118 -89 21
+ -125 -115 155 -233
+ -393 -451 -437 194
+ -242 189 -465 -373
+ 195 -556 -427 -374
+ -379 -440 184 -174
+ -438 194 -435 -368
+ 186 -396 -312 -245
+ -30 -111 -108 117
+ -40 -220 -233 150
+ -70 -194 -262 157
+ -53 -96 -199 135
+ 31 -41 -99 59
+ 8 -31 -49 51
+ 27 -36 -39 32
diff --git a/profiles/vertebrates/MA0496.1.pwm b/profiles/vertebrates/MA0496.1.pwm
index f8f8532..1b0ade4 100644
--- a/profiles/vertebrates/MA0496.1.pwm
+++ b/profiles/vertebrates/MA0496.1.pwm
@@ -1,15 +1,15 @@
- 17 96 -174 -68
- 0 -19 -197 90
- 19 -71 49 -25
- 119 -164 -92 -21
- -56 20 95 -202
- -10000 -586 -10000 199
- -251 194 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 187 -153
- -10000 200 -831 -10000
- 193 -514 -10000 -262
- 63 -64 -63 22
- 84 -194 -358 90
- 46 -154 -327 112
- 19 -71 -249 105
+ 17 96 -173 -68
+ 0 -19 -195 90
+ 19 -71 49 -25
+ 119 -163 -91 -21
+ -55 20 94 -200
+ -795 -556 -795 199
+ -248 193 -795 -795
+ 200 -795 -795 -795
+ -795 -795 187 -152
+ -795 199 -712 -795
+ 193 -496 -795 -259
+ 62 -63 -62 22
+ 84 -192 -352 90
+ 46 -153 -322 112
+ 18 -71 -247 105
diff --git a/profiles/vertebrates/MA0496.2.pwm b/profiles/vertebrates/MA0496.2.pwm
index 4445f01..4af808d 100644
--- a/profiles/vertebrates/MA0496.2.pwm
+++ b/profiles/vertebrates/MA0496.2.pwm
@@ -1,19 +1,19 @@
- 91 -151 -122 43
- 67 -139 -117 66
- 1 -48 -73 74
- -141 -208 -257 169
- -281 -235 183 -311
- -122 176 -442 -285
- -195 -239 -495 181
- -212 -328 173 -156
- 183 -376 -372 -181
- -160 18 114 -160
- -269 -368 -366 188
- -159 178 -394 -253
- 187 -607 -267 -252
- -309 -433 173 -98
- -279 182 -230 -292
- 166 -244 -202 -130
- 71 -80 -45 8
- 66 -119 -125 64
- 42 -125 -150 91
+ 90 -148 -120 43
+ 66 -136 -115 65
+ 1 -47 -72 74
+ -138 -203 -249 168
+ -271 -229 181 -299
+ -120 175 -412 -275
+ -190 -232 -453 180
+ -206 -315 172 -153
+ 182 -357 -353 -177
+ -157 18 113 -157
+ -260 -350 -348 187
+ -156 177 -372 -245
+ 186 -527 -259 -244
+ -297 -405 172 -97
+ -270 180 -224 -282
+ 165 -237 -197 -128
+ 70 -78 -44 8
+ 66 -117 -123 63
+ 42 -123 -147 91
diff --git a/profiles/vertebrates/MA0496.3.pwm b/profiles/vertebrates/MA0496.3.pwm
index e69de29..262b19e 100644
--- a/profiles/vertebrates/MA0496.3.pwm
+++ b/profiles/vertebrates/MA0496.3.pwm
@@ -0,0 +1,15 @@
+ -11 -26 -37 56
+ -43 -28 76 -43
+ 12 106 -94 -170
+ -296 -300 -354 187
+ -348 -319 185 -231
+ 187 -291 -325 -329
+ -235 159 -77 -232
+ -222 -345 -351 185
+ -279 188 -368 -351
+ 188 -379 -329 -272
+ -312 -272 176 -156
+ -226 174 -194 -247
+ 94 13 -148 -65
+ 30 -27 -30 17
+ 20 -40 -60 52
diff --git a/profiles/vertebrates/MA0497.1.pwm b/profiles/vertebrates/MA0497.1.pwm
index a194d5c..5c7249c 100644
--- a/profiles/vertebrates/MA0497.1.pwm
+++ b/profiles/vertebrates/MA0497.1.pwm
@@ -1,15 +1,15 @@
- 35 -78 29 -12
- 41 -187 5 45
- -36 -149 57 46
- -53 135 -282 -71
- -10000 83 -10000 115
- 155 -111 -290 -107
- 163 -411 -120 -126
- 193 -10000 -267 -520
- 195 -10000 -811 -286
- 195 -10000 -711 -298
- -330 -315 -10000 192
- 198 -10000 -411 -10000
- -51 -220 160 -425
- 82 60 -190 -114
- 87 -30 -213 18
+ 35 -76 29 -12
+ 40 -179 5 44
+ -35 -144 56 45
+ -52 134 -265 -69
+ -558 82 -558 113
+ 153 -107 -272 -104
+ 161 -369 -116 -122
+ 191 -558 -251 -440
+ 193 -558 -536 -268
+ 193 -558 -516 -279
+ -306 -293 -558 190
+ 196 -558 -369 -558
+ -49 -210 158 -379
+ 81 59 -182 -111
+ 86 -29 -203 17
diff --git a/profiles/vertebrates/MA0498.1.pwm b/profiles/vertebrates/MA0498.1.pwm
index e69de29..06780c9 100644
--- a/profiles/vertebrates/MA0498.1.pwm
+++ b/profiles/vertebrates/MA0498.1.pwm
@@ -0,0 +1,15 @@
+ 103 -230 -38 -1
+ -185 22 110 -127
+ -231 187 -540 -297
+ -570 -570 -570 198
+ -570 -570 198 -570
+ -276 -340 -570 190
+ -570 198 -570 -570
+ 189 -570 -570 -204
+ -128 76 71 -198
+ -94 -27 -127 116
+ -182 116 -39 -47
+ 69 -25 -207 39
+ -33 29 9 -13
+ -46 62 -28 -14
+ -29 17 -43 40
diff --git a/profiles/vertebrates/MA0498.2.pwm b/profiles/vertebrates/MA0498.2.pwm
index e69de29..d64ae09 100644
--- a/profiles/vertebrates/MA0498.2.pwm
+++ b/profiles/vertebrates/MA0498.2.pwm
@@ -0,0 +1,7 @@
+ 30 -4 -98 37
+ -144 -207 -287 170
+ -810 -390 197 -810
+ 193 -277 -477 -814
+ -810 197 -810 -400
+ 177 -830 -128 -253
+ -16 -37 63 -35
diff --git a/profiles/vertebrates/MA0499.1.pwm b/profiles/vertebrates/MA0499.1.pwm
index e69de29..05b75ab 100644
--- a/profiles/vertebrates/MA0499.1.pwm
+++ b/profiles/vertebrates/MA0499.1.pwm
@@ -0,0 +1,13 @@
+ 16 -13 -29 20
+ -56 9 84 -109
+ -730 199 -730 -730
+ 198 -730 -730 -495
+ -730 7 155 -673
+ -730 199 -730 -730
+ -730 -730 -730 199
+ -730 -730 199 -730
+ -700 57 -315 126
+ -681 84 -107 78
+ -6 31 -4 -26
+ -166 92 -50 12
+ -57 32 -47 44
diff --git a/profiles/vertebrates/MA0499.2.pwm b/profiles/vertebrates/MA0499.2.pwm
index e69de29..1c50e8b 100644
--- a/profiles/vertebrates/MA0499.2.pwm
+++ b/profiles/vertebrates/MA0499.2.pwm
@@ -0,0 +1,13 @@
+ -26 39 -8 -15
+ 14 -27 -2 12
+ -91 -60 135 -191
+ -445 195 -443 -477
+ 191 -378 -327 -377
+ -408 155 -22 -276
+ -389 192 -314 -452
+ -491 -382 -439 194
+ -508 -432 196 -492
+ -427 -173 -230 178
+ -222 115 -94 7
+ 14 29 -46 -7
+ -59 45 -19 13
diff --git a/profiles/vertebrates/MA0500.1.pwm b/profiles/vertebrates/MA0500.1.pwm
index e69de29..819661f 100644
--- a/profiles/vertebrates/MA0500.1.pwm
+++ b/profiles/vertebrates/MA0500.1.pwm
@@ -0,0 +1,11 @@
+ 69 -75 83 -713
+ 125 -374 62 -713
+ -713 199 -713 -713
+ 199 -713 -713 -713
+ -713 -713 199 -713
+ -558 174 -67 -713
+ -713 -713 -713 199
+ -713 -713 199 -713
+ -77 81 28 -118
+ 14 -36 9 7
+ -25 -2 63 -68
diff --git a/profiles/vertebrates/MA0500.2.pwm b/profiles/vertebrates/MA0500.2.pwm
index e69de29..6a390d1 100644
--- a/profiles/vertebrates/MA0500.2.pwm
+++ b/profiles/vertebrates/MA0500.2.pwm
@@ -0,0 +1,12 @@
+ -7 19 0 -14
+ 59 -57 -3 -25
+ 36 -102 94 -171
+ -551 197 -535 -468
+ 196 -472 -436 -481
+ -541 -507 197 -477
+ -478 197 -506 -541
+ -481 -435 -470 195
+ -468 -534 197 -549
+ -172 94 -104 36
+ -26 -2 -58 60
+ -15 2 19 -7
diff --git a/profiles/vertebrates/MA0501.1.pwm b/profiles/vertebrates/MA0501.1.pwm
index e69de29..b571fa4 100644
--- a/profiles/vertebrates/MA0501.1.pwm
+++ b/profiles/vertebrates/MA0501.1.pwm
@@ -0,0 +1,15 @@
+ 139 -303 29 -452
+ -509 -509 -509 197
+ -509 -509 196 -411
+ 197 -509 -509 -509
+ -353 165 -69 -263
+ -125 -492 -379 180
+ -167 175 -321 -224
+ 181 -509 -224 -202
+ -411 -452 190 -263
+ -509 193 -321 -440
+ 174 -347 -179 -186
+ 48 -41 5 -29
+ 40 -137 -102 85
+ 10 -135 -150 113
+ -36 5 -130 83
diff --git a/profiles/vertebrates/MA0502.1.pwm b/profiles/vertebrates/MA0502.1.pwm
index bd32b29..5799df6 100644
--- a/profiles/vertebrates/MA0502.1.pwm
+++ b/profiles/vertebrates/MA0502.1.pwm
@@ -1,15 +1,15 @@
- 76 -15 18 -184
- 68 0 -70 -36
- 68 0 -58 -47
- -142 34 -69 80
- -138 24 63 -17
- 69 -69 76 -388
- 100 -366 73 -196
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -669 -10000
- -10000 -10000 -10000 200
- -209 145 -4 -389
- 164 -418 -27 -719
- -128 -90 155 -302
+ 75 -15 17 -179
+ 68 0 -69 -36
+ 68 0 -57 -47
+ -139 34 -68 79
+ -135 24 62 -17
+ 68 -68 76 -367
+ 99 -347 73 -191
+ -641 199 -641 -641
+ -641 199 -641 -641
+ 199 -641 -641 -641
+ 198 -641 -555 -641
+ -641 -641 -641 199
+ -203 143 -4 -368
+ 162 -391 -26 -575
+ -125 -88 154 -291
diff --git a/profiles/vertebrates/MA0502.2.pwm b/profiles/vertebrates/MA0502.2.pwm
index a26ad86..f5d8137 100644
--- a/profiles/vertebrates/MA0502.2.pwm
+++ b/profiles/vertebrates/MA0502.2.pwm
@@ -1,12 +1,12 @@
- -120 103 -39 -40
- -209 54 -105 87
- -327 155 -33 -248
- 191 -336 -503 -300
- -380 -295 -304 188
- -447 -565 -419 196
- -514 -551 196 -408
- -489 -501 196 -493
- -360 180 -343 -154
- -360 164 -374 -48
- 74 -16 -19 -86
- 31 -32 52 -92
+ -118 102 -39 -39
+ -204 53 -103 86
+ -314 154 -33 -241
+ 189 -322 -458 -289
+ -360 -284 -292 187
+ -416 -501 -393 194
+ -466 -491 195 -384
+ -448 -457 195 -451
+ -342 179 -328 -151
+ -342 163 -355 -47
+ 74 -16 -19 -84
+ 31 -32 51 -91
diff --git a/profiles/vertebrates/MA0504.1.pwm b/profiles/vertebrates/MA0504.1.pwm
index 0d1ffc6..dad04e1 100644
--- a/profiles/vertebrates/MA0504.1.pwm
+++ b/profiles/vertebrates/MA0504.1.pwm
@@ -1,15 +1,15 @@
- 39 35 -13 -98
- -27 -50 116 -217
- 97 -404 98 -663
- -10000 -363 189 -223
- -330 -504 185 -187
- -504 -10000 -32 166
- -404 165 -87 -193
- 180 -10000 -104 -463
- 92 -10000 107 -10000
- 171 -10000 -48 -10000
- -330 -10000 196 -10000
- -317 -10000 177 -104
- -10000 -187 -15 150
- -346 167 -150 -146
- 155 -10000 -10 -293
+ 37 34 -13 -92
+ -25 -47 112 -194
+ 93 -324 95 -412
+ -438 -300 184 -200
+ -279 -370 180 -170
+ -370 -438 -30 162
+ -324 160 -81 -174
+ 175 -438 -97 -353
+ 89 -438 104 -438
+ 167 -438 -45 -438
+ -279 -438 191 -438
+ -270 -438 172 -97
+ -438 -170 -14 145
+ -289 163 -138 -134
+ 151 -438 -10 -253
diff --git a/profiles/vertebrates/MA0505.1.pwm b/profiles/vertebrates/MA0505.1.pwm
index e69de29..9363f94 100644
--- a/profiles/vertebrates/MA0505.1.pwm
+++ b/profiles/vertebrates/MA0505.1.pwm
@@ -0,0 +1,15 @@
+ 59 -90 56 -106
+ 119 -127 -33 -98
+ -61 -106 120 -81
+ -172 -17 -21 96
+ -242 -27 -371 154
+ -457 190 -237 -493
+ 196 -416 -540 -503
+ 195 -540 -371 -540
+ -314 -540 194 -540
+ -540 -540 197 -540
+ -128 45 -261 104
+ -540 186 -429 -172
+ 173 -385 -212 -140
+ -63 -29 78 -29
+ -75 69 9 -46
diff --git a/profiles/vertebrates/MA0505.2.pwm b/profiles/vertebrates/MA0505.2.pwm
index e69de29..3387ac1 100644
--- a/profiles/vertebrates/MA0505.2.pwm
+++ b/profiles/vertebrates/MA0505.2.pwm
@@ -0,0 +1,13 @@
+ 5 25 3 -41
+ -92 -128 -171 146
+ -189 -307 182 -387
+ 138 -264 -18 -147
+ -437 196 -552 -477
+ -449 196 -519 -431
+ -424 -338 -425 193
+ -463 -433 -455 195
+ -432 -307 192 -439
+ 178 -348 -165 -272
+ 84 23 -53 -155
+ -51 94 -86 -27
+ -53 -35 -81 97
diff --git a/profiles/vertebrates/MA0506.1.pwm b/profiles/vertebrates/MA0506.1.pwm
index e69de29..0f11b98 100644
--- a/profiles/vertebrates/MA0506.1.pwm
+++ b/profiles/vertebrates/MA0506.1.pwm
@@ -0,0 +1,11 @@
+ -92 -158 164 -611
+ -87 178 -611 -611
+ -246 -251 186 -611
+ -611 178 -127 -290
+ 38 68 -30 -183
+ -611 -148 -111 166
+ -611 -611 198 -611
+ -611 189 -611 -195
+ -611 -168 187 -611
+ -369 196 -611 -611
+ 95 -51 44 -611
diff --git a/profiles/vertebrates/MA0506.2.pwm b/profiles/vertebrates/MA0506.2.pwm
index e69de29..1c51395 100644
--- a/profiles/vertebrates/MA0506.2.pwm
+++ b/profiles/vertebrates/MA0506.2.pwm
@@ -0,0 +1,15 @@
+ -53 10 63 -54
+ -34 43 -30 8
+ -129 117 6 -179
+ -206 -79 -185 154
+ -276 -313 189 -460
+ -288 188 -311 -385
+ -335 -386 191 -367
+ -420 189 -258 -361
+ 44 78 -34 -288
+ -436 -241 -276 185
+ -506 -352 194 -481
+ -433 192 -381 -351
+ -341 -241 180 -212
+ -282 140 -163 -17
+ 38 -34 59 -129
diff --git a/profiles/vertebrates/MA0507.1.pwm b/profiles/vertebrates/MA0507.1.pwm
index e69de29..2aa9b4b 100644
--- a/profiles/vertebrates/MA0507.1.pwm
+++ b/profiles/vertebrates/MA0507.1.pwm
@@ -0,0 +1,13 @@
+ -45 15 -50 54
+ -11 -107 5 64
+ 8 52 -45 -36
+ 180 -424 -549 -115
+ -561 -561 -561 198
+ -112 -539 -561 181
+ -561 -561 -561 198
+ -178 -561 178 -202
+ -561 197 -561 -438
+ 196 -380 -561 -561
+ -561 -539 -561 198
+ 100 -352 10 -26
+ 5 -65 -229 108
diff --git a/profiles/vertebrates/MA0507.2.pwm b/profiles/vertebrates/MA0507.2.pwm
index e69de29..34ca066 100644
--- a/profiles/vertebrates/MA0507.2.pwm
+++ b/profiles/vertebrates/MA0507.2.pwm
@@ -0,0 +1,14 @@
+ 85 -51 -55 -31
+ 101 -268 -52 18
+ -534 -425 -637 197
+ 199 -657 -657 -657
+ -657 -596 -646 199
+ -659 -659 197 -412
+ -648 177 -396 -95
+ 165 -657 -657 -25
+ 198 -622 -563 -485
+ 199 -630 -657 -616
+ -487 -618 -530 197
+ -102 -171 37 94
+ 152 -179 -141 -109
+ -41 -81 122 -152
diff --git a/profiles/vertebrates/MA0508.1.pwm b/profiles/vertebrates/MA0508.1.pwm
index e69de29..f10c822 100644
--- a/profiles/vertebrates/MA0508.1.pwm
+++ b/profiles/vertebrates/MA0508.1.pwm
@@ -0,0 +1,15 @@
+ 62 -126 -15 19
+ 51 -189 101 -177
+ 144 -169 -73 -141
+ 158 -136 -135 -221
+ 184 -611 -139 -611
+ -141 -611 180 -287
+ -65 -320 -30 129
+ -236 -611 192 -611
+ 198 -611 -611 -611
+ 184 -611 -139 -533
+ 195 -611 -438 -380
+ -273 -288 185 -313
+ -312 -130 -112 159
+ -12 -118 95 -50
+ 82 -55 -24 -50
diff --git a/profiles/vertebrates/MA0508.2.pwm b/profiles/vertebrates/MA0508.2.pwm
index e69de29..b447912 100644
--- a/profiles/vertebrates/MA0508.2.pwm
+++ b/profiles/vertebrates/MA0508.2.pwm
@@ -0,0 +1,10 @@
+ -46 -71 -75 105
+ -51 115 -156 -45
+ 198 -579 -519 -588
+ -571 198 -588 -556
+ -543 -579 -457 197
+ -503 -579 -549 197
+ -465 -556 -579 197
+ -549 198 -579 -597
+ 88 -43 -236 28
+ -95 135 -169 -66
diff --git a/profiles/vertebrates/MA0508.3.pwm b/profiles/vertebrates/MA0508.3.pwm
index e69de29..0d5f40d 100644
--- a/profiles/vertebrates/MA0508.3.pwm
+++ b/profiles/vertebrates/MA0508.3.pwm
@@ -0,0 +1,11 @@
+ -66 36 -106 68
+ 31 -17 -66 32
+ -347 192 -420 -397
+ -338 -473 -398 193
+ -264 -331 -370 187
+ -290 -467 -449 192
+ -328 194 -571 -483
+ -195 -362 -327 183
+ -298 192 -532 -428
+ -40 -3 -174 97
+ -45 34 -81 52
diff --git a/profiles/vertebrates/MA0509.1.pwm b/profiles/vertebrates/MA0509.1.pwm
index c258f26..a8d3169 100644
--- a/profiles/vertebrates/MA0509.1.pwm
+++ b/profiles/vertebrates/MA0509.1.pwm
@@ -1,14 +1,14 @@
- -88 -177 152 -175
- -320 -127 -50 147
- -188 64 -203 94
- -34 -30 51 -3
- -385 171 -248 -106
- -10000 194 -10000 -257
- 123 -41 -287 -39
- -195 -222 -248 174
- 18 -10000 152 -10000
- -152 -10000 187 -10000
- -90 168 -548 -205
- 175 -10000 -113 -240
- 196 -10000 -325 -10000
- -10000 200 -10000 -10000
+ -86 -170 150 -168
+ -297 -123 -49 145
+ -180 63 -194 93
+ -34 -30 50 -3
+ -349 169 -234 -102
+ -556 192 -556 -243
+ 121 -40 -269 -38
+ -187 -211 -234 172
+ 17 -556 150 -556
+ -147 -556 185 -556
+ -87 166 -453 -196
+ 172 -556 -110 -228
+ 194 -556 -301 -556
+ -556 198 -556 -556
diff --git a/profiles/vertebrates/MA0509.2.pwm b/profiles/vertebrates/MA0509.2.pwm
index a1e4900..1efa168 100644
--- a/profiles/vertebrates/MA0509.2.pwm
+++ b/profiles/vertebrates/MA0509.2.pwm
@@ -1,14 +1,14 @@
- -47 31 -26 27
- -37 -79 20 58
- -339 -539 194 -444
- -509 -391 -473 195
- -321 -312 -474 190
- -205 -390 182 -256
- -520 193 -551 -291
- -614 56 -545 132
- 188 -385 -254 -373
- -92 -242 -73 142
- -113 -322 169 -219
- -79 -152 147 -170
- 0 41 -33 -20
- 106 -123 -28 -60
+ -47 31 -26 27
+ -37 -78 20 58
+ -329 -501 193 -424
+ -477 -376 -448 194
+ -312 -304 -449 189
+ -201 -376 181 -250
+ -486 192 -510 -284
+ -554 55 -505 131
+ 187 -371 -249 -360
+ -91 -237 -72 142
+ -112 -313 168 -215
+ -78 -150 146 -167
+ 0 41 -33 -19
+ 106 -122 -27 -60
diff --git a/profiles/vertebrates/MA0509.3.pwm b/profiles/vertebrates/MA0509.3.pwm
index 01fafc2..2d603dc 100644
--- a/profiles/vertebrates/MA0509.3.pwm
+++ b/profiles/vertebrates/MA0509.3.pwm
@@ -1,16 +1,16 @@
- -203 85 49 -87
- -776 -1192 200 -10000
- -10000 -934 -1034 200
- -704 -250 -1041 193
- -33 -607 161 -285
- -1193 171 -672 -49
- -1192 186 -1192 -140
- 200 -1034 -734 -860
- -876 -760 -960 200
- -146 -1092 186 -1192
- -57 -688 173 -1193
- -291 141 -589 26
- 173 -1199 -255 -95
- 200 -992 -934 -1092
- -10000 200 -10000 -775
- -91 45 88 -197
+ -200 85 49 -87
+ -630 -690 199 -695
+ -694 -670 -681 199
+ -603 -245 -688 192
+ -33 -547 160 -278
+ -690 171 -583 -49
+ -690 185 -690 -138
+ 199 -682 -614 -655
+ -659 -624 -674 199
+ -144 -686 185 -690
+ -57 -592 172 -690
+ -284 140 -535 26
+ 172 -696 -249 -94
+ 199 -677 -670 -686
+ -695 199 -695 -630
+ -91 45 88 -194
diff --git a/profiles/vertebrates/MA0510.1.pwm b/profiles/vertebrates/MA0510.1.pwm
index 5c37b64..997efc7 100644
--- a/profiles/vertebrates/MA0510.1.pwm
+++ b/profiles/vertebrates/MA0510.1.pwm
@@ -1,15 +1,15 @@
- -150 70 -79 53
- -70 -28 -17 74
- -733 95 41 -45
- -242 193 -10000 -10000
- 30 117 -399 -111
- -10000 -22 -10000 165
- 93 -992 106 -10000
- -198 -10000 186 -315
- -10000 154 -124 -58
- 166 -96 -162 -10000
- 193 -246 -10000 -10000
- -10000 200 -10000 -10000
- 111 -31 -10000 5
- -2 -142 118 -140
- -15 52 36 -139
+ -145 69 -77 52
+ -69 -28 -16 73
+ -551 94 40 -44
+ -232 191 -598 -598
+ 29 115 -368 -109
+ -598 -21 -598 163
+ 92 -589 105 -598
+ -191 -598 184 -298
+ -598 153 -121 -57
+ 164 -94 -158 -598
+ 192 -236 -598 -598
+ -598 198 -598 -598
+ 110 -30 -598 5
+ -2 -138 116 -136
+ -15 51 35 -135
diff --git a/profiles/vertebrates/MA0510.2.pwm b/profiles/vertebrates/MA0510.2.pwm
index fa312ef..82f5d61 100644
--- a/profiles/vertebrates/MA0510.2.pwm
+++ b/profiles/vertebrates/MA0510.2.pwm
@@ -1,16 +1,16 @@
- -125 71 26 -43
- -302 -10000 195 -634
- -753 -448 -562 197
- -399 -293 -623 192
- 27 -307 130 -226
- -770 193 -403 -317
- -948 157 -667 2
- 182 -385 -369 -169
- -243 -379 -514 189
- 0 -611 157 -657
- -232 -389 190 -10000
- -228 126 -347 39
- 190 -586 -255 -366
- 197 -474 -514 -597
- -458 194 -569 -321
- -46 49 51 -115
+ -121 70 26 -42
+ -285 -584 193 -508
+ -547 -403 -475 196
+ -367 -278 -505 191
+ 27 -288 128 -216
+ -531 191 -364 -295
+ -570 155 -518 2
+ 180 -349 -337 -162
+ -232 -351 -449 188
+ 0 -501 156 -520
+ -222 -357 188 -580
+ -218 124 -321 38
+ 188 -469 -241 -333
+ 195 -408 -431 -471
+ -402 192 -466 -299
+ -45 48 50 -112
diff --git a/profiles/vertebrates/MA0511.1.pwm b/profiles/vertebrates/MA0511.1.pwm
index 843f52e..df6f608 100644
--- a/profiles/vertebrates/MA0511.1.pwm
+++ b/profiles/vertebrates/MA0511.1.pwm
@@ -1,15 +1,15 @@
- -142 -100 74 54
- -69 -116 74 33
- -81 -175 68 61
- -113 -63 85 14
- -110 -78 -12 102
- -182 56 -100 80
- -488 -605 -459 197
- -10000 -805 196 -310
- -415 -647 -10000 198
- -10000 -10000 200 -10000
- -10000 -10000 200 -705
- -10000 -101 -156 166
- -266 -48 -75 134
- -4 -505 -89 130
- -108 -108 80 39
+ -135 -96 72 53
+ -66 -111 72 32
+ -78 -165 67 60
+ -108 -60 83 13
+ -105 -75 -11 100
+ -172 55 -96 78
+ -400 -449 -384 193
+ -507 -490 192 -281
+ -356 -462 -507 194
+ -507 -507 197 -507
+ -507 -507 196 -475
+ -507 -97 -148 163
+ -245 -47 -72 131
+ -4 -408 -86 127
+ -103 -103 78 38
diff --git a/profiles/vertebrates/MA0511.2.pwm b/profiles/vertebrates/MA0511.2.pwm
index e69de29..01cb3ce 100644
--- a/profiles/vertebrates/MA0511.2.pwm
+++ b/profiles/vertebrates/MA0511.2.pwm
@@ -0,0 +1,9 @@
+ 94 -87 -255 45
+ 155 -197 -87 -191
+ 192 -234 -637 -637
+ -630 199 -630 -630
+ -630 199 -630 -630
+ 17 -491 146 -360
+ -630 199 -630 -630
+ 176 -198 -203 -321
+ 133 -126 -54 -142
diff --git a/profiles/vertebrates/MA0512.1.pwm b/profiles/vertebrates/MA0512.1.pwm
index f0729bf..449e611 100644
--- a/profiles/vertebrates/MA0512.1.pwm
+++ b/profiles/vertebrates/MA0512.1.pwm
@@ -1,11 +1,11 @@
- -227 176 -213 -245
- 164 -168 -721 -80
- 97 -241 89 -10000
- 187 -10000 -151 -10000
- -10000 -10000 200 -10000
- -10000 -10000 154 13
- -10000 -120 -106 162
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -22 -32 81 -76
- 29 -85 23 6
+ -219 174 -207 -237
+ 162 -164 -563 -79
+ 96 -233 88 -621
+ 185 -621 -147 -621
+ -621 -621 199 -621
+ -621 -621 152 13
+ -621 -117 -104 161
+ -621 199 -621 -621
+ 199 -621 -621 -621
+ -21 -32 80 -74
+ 29 -83 23 6
diff --git a/profiles/vertebrates/MA0512.2.pwm b/profiles/vertebrates/MA0512.2.pwm
index 676fba0..0e55700 100644
--- a/profiles/vertebrates/MA0512.2.pwm
+++ b/profiles/vertebrates/MA0512.2.pwm
@@ -1,14 +1,14 @@
- -1 -133 129 -260
- 71 -602 123 -744
- -646 -697 199 -592
- -628 -715 183 -123
- -777 -656 -479 198
- -694 189 -437 -215
- 199 -783 -659 -911
- 196 -703 -381 -498
- 195 -732 -309 -926
- -800 -714 199 -761
- -737 -694 187 -164
- -784 -647 -524 198
- -751 193 -504 -269
- 192 -622 -226 -831
+ -1 -132 128 -257
+ 71 -569 122 -667
+ -590 -622 198 -552
+ -580 -637 182 -122
+ -669 -600 -460 198
+ -632 189 -425 -213
+ 199 -681 -607 -730
+ 195 -637 -373 -480
+ 195 -654 -304 -735
+ -677 -634 199 -660
+ -650 -625 187 -163
+ -671 -592 -498 198
+ -664 192 -485 -266
+ 191 -581 -224 -704
diff --git a/profiles/vertebrates/MA0513.1.pwm b/profiles/vertebrates/MA0513.1.pwm
index 09e7206..5479129 100644
--- a/profiles/vertebrates/MA0513.1.pwm
+++ b/profiles/vertebrates/MA0513.1.pwm
@@ -1,13 +1,13 @@
- -44 94 -42 -76
- -20 -158 -272 140
- -400 -481 196 -10000
- -277 -232 -113 168
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -108 4 126 -329
- -9 -85 32 33
- -10000 200 -623 -10000
- 177 -356 -364 -121
- -291 171 -76 -10000
- -94 138 -226 -56
- -103 -7 -268 126
+ -42 92 -40 -73
+ -19 -149 -248 137
+ -343 -391 193 -495
+ -252 -215 -107 164
+ -495 196 -495 -495
+ -495 -495 -495 196
+ -103 4 123 -293
+ -9 -81 31 32
+ -495 196 -447 -495
+ 173 -313 -319 -115
+ -263 168 -73 -495
+ -90 135 -209 -54
+ -98 -7 -245 124
diff --git a/profiles/vertebrates/MA0514.1.pwm b/profiles/vertebrates/MA0514.1.pwm
index 86b0e55..710beb6 100644
--- a/profiles/vertebrates/MA0514.1.pwm
+++ b/profiles/vertebrates/MA0514.1.pwm
@@ -1,10 +1,10 @@
- -10000 152 -65 -105
- -10000 159 -10000 0
- -98 -10000 -10000 180
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -184 190 -10000
- -10000 -10000 -10000 200
- -10000 43 -102 111
- -477 72 -455 118
- -362 34 -44 94
+ -554 150 -63 -101
+ -554 157 -554 0
+ -95 -554 -554 178
+ -554 -554 -554 198
+ -554 -554 -554 198
+ -554 -177 187 -554
+ -554 -554 -554 198
+ -554 43 -99 109
+ -412 71 -398 117
+ -331 33 -42 92
diff --git a/profiles/vertebrates/MA0514.2.pwm b/profiles/vertebrates/MA0514.2.pwm
index c6245a8..623189a 100644
--- a/profiles/vertebrates/MA0514.2.pwm
+++ b/profiles/vertebrates/MA0514.2.pwm
@@ -1,11 +1,11 @@
- 32 -71 22 -4
- 45 -11 -2 -47
- 197 -585 -530 -507
- -432 189 -407 -251
- 191 -326 -501 -337
- 196 -439 -439 -544
- -239 -432 -485 190
- -89 -449 175 -400
- -77 -92 136 -162
- 20 19 -4 -44
- 21 -5 -4 -14
+ 32 -70 21 -4
+ 45 -11 -2 -47
+ 196 -525 -487 -470
+ -409 188 -388 -245
+ 190 -315 -465 -326
+ 195 -415 -415 -497
+ -233 -409 -452 189
+ -88 -424 174 -382
+ -76 -91 135 -159
+ 20 18 -4 -43
+ 20 -5 -4 -13
diff --git a/profiles/vertebrates/MA0515.1.pwm b/profiles/vertebrates/MA0515.1.pwm
index ed14ff3..78dfe48 100644
--- a/profiles/vertebrates/MA0515.1.pwm
+++ b/profiles/vertebrates/MA0515.1.pwm
@@ -1,10 +1,10 @@
- -396 116 -32 -15
- -10000 183 -10000 -115
- 137 -10000 -10000 50
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 89 -364 105
- -396 85 -10000 110
- -215 29 -101 104
+ -306 111 -30 -14
+ -407 176 -407 -105
+ 132 -407 -407 47
+ -407 -407 -407 193
+ -407 -407 -407 193
+ -407 -407 193 -407
+ -407 -407 -407 193
+ -407 85 -289 101
+ -306 81 -407 105
+ -188 27 -92 100
diff --git a/profiles/vertebrates/MA0516.1.pwm b/profiles/vertebrates/MA0516.1.pwm
index e69de29..3773958 100644
--- a/profiles/vertebrates/MA0516.1.pwm
+++ b/profiles/vertebrates/MA0516.1.pwm
@@ -0,0 +1,15 @@
+ -134 -71 127 -76
+ -313 93 -69 45
+ -279 169 -526 -75
+ -539 197 -464 -539
+ -539 194 -539 -302
+ -123 -539 158 -83
+ -539 197 -539 -539
+ -539 195 -539 -342
+ -539 137 -539 45
+ -100 148 -539 -55
+ -179 118 -198 24
+ -113 39 -36 55
+ -87 75 -7 -29
+ -86 90 -5 -70
+ -102 81 0 -40
diff --git a/profiles/vertebrates/MA0516.2.pwm b/profiles/vertebrates/MA0516.2.pwm
index e69de29..cf27a2e 100644
--- a/profiles/vertebrates/MA0516.2.pwm
+++ b/profiles/vertebrates/MA0516.2.pwm
@@ -0,0 +1,17 @@
+ 36 62 -66 -86
+ -193 -36 -184 142
+ 147 -143 -495 -26
+ 165 -140 -258 -170
+ -209 -96 161 -238
+ -237 112 -380 65
+ -326 193 -462 -481
+ -319 190 -339 -380
+ -424 190 -287 -347
+ -147 -206 167 -224
+ -485 193 -485 -306
+ -413 190 -269 -391
+ -282 187 -487 -264
+ 93 89 -288 -315
+ -283 172 -465 -94
+ -89 8 -489 124
+ -39 3 -111 81
diff --git a/profiles/vertebrates/MA0516.3.pwm b/profiles/vertebrates/MA0516.3.pwm
index 5fd2168..4abbe94 100644
--- a/profiles/vertebrates/MA0516.3.pwm
+++ b/profiles/vertebrates/MA0516.3.pwm
@@ -1,9 +1,9 @@
- -71 -797 162 -164
- -57 -797 173 -797
- -797 -797 200 -797
- -797 -797 200 -797
- -116 183 -797 -797
- -797 -797 200 -797
- -797 -797 196 -338
- -105 -797 181 -797
- -28 -60 129 -380
+ -68 -486 159 -155
+ -55 -486 170 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -110 179 -486 -486
+ -486 -486 196 -486
+ -486 -486 193 -301
+ -100 -486 178 -486
+ -27 -58 126 -332
diff --git a/profiles/vertebrates/MA0517.1.pwm b/profiles/vertebrates/MA0517.1.pwm
index 109fb4e..13ea209 100644
--- a/profiles/vertebrates/MA0517.1.pwm
+++ b/profiles/vertebrates/MA0517.1.pwm
@@ -1,15 +1,15 @@
- -117 -130 -101 141
- -5 57 -88 1
- 147 -447 -4 -228
- -569 -7 159 -628
- -10000 -628 -10000 200
- -569 -628 -10000 199
- -569 -358 -528 195
- -10000 191 -10000 -199
- 72 -105 30 -65
- -53 -48 5 64
- -528 -358 -395 194
- -395 -628 -10000 197
- -528 13 -528 151
- -337 166 -411 -53
- -247 124 -211 30
+ -110 -122 -95 137
+ -5 55 -84 1
+ 144 -361 -4 -208
+ -413 -6 155 -429
+ -469 -429 -469 195
+ -413 -429 -469 195
+ -413 -307 -398 191
+ -469 186 -469 -183
+ 70 -99 29 -62
+ -51 -46 5 62
+ -398 -307 -331 189
+ -331 -429 -469 193
+ -398 13 -398 148
+ -293 162 -340 -51
+ -224 120 -193 29
diff --git a/profiles/vertebrates/MA0518.1.pwm b/profiles/vertebrates/MA0518.1.pwm
index e69de29..23a39ec 100644
--- a/profiles/vertebrates/MA0518.1.pwm
+++ b/profiles/vertebrates/MA0518.1.pwm
@@ -0,0 +1,14 @@
+ -171 50 -56 68
+ -485 -557 -577 197
+ -421 -577 -43 167
+ -18 162 -485 -577
+ -119 104 -310 47
+ 100 -414 76 -198
+ 3 -577 155 -524
+ -365 -577 196 -577
+ 198 -577 -577 -577
+ 198 -577 -577 -577
+ 112 -132 21 -186
+ -55 13 -7 35
+ -18 1 51 -53
+ 30 -68 63 -74
diff --git a/profiles/vertebrates/MA0519.1.pwm b/profiles/vertebrates/MA0519.1.pwm
index e69de29..7e19b75 100644
--- a/profiles/vertebrates/MA0519.1.pwm
+++ b/profiles/vertebrates/MA0519.1.pwm
@@ -0,0 +1,11 @@
+ 58 -82 10 -20
+ -98 -20 -50 94
+ -702 -702 -702 199
+ -702 -135 -702 184
+ -702 198 -702 -439
+ -382 162 -702 -26
+ 77 57 -702 -31
+ 148 -702 0 -228
+ -702 -702 199 -702
+ 184 -505 -702 -142
+ 184 -702 -133 -702
diff --git a/profiles/vertebrates/MA0520.1.pwm b/profiles/vertebrates/MA0520.1.pwm
index 5761d90..0fff46b 100644
--- a/profiles/vertebrates/MA0520.1.pwm
+++ b/profiles/vertebrates/MA0520.1.pwm
@@ -1,15 +1,15 @@
- -85 52 6 -4
- 52 -50 -32 7
- -161 29 -9 59
- -10000 -10000 -10000 200
- -515 -10000 -10000 199
- -192 186 -10000 -321
- -273 138 -10000 32
- 52 -446 -108 103
- -50 21 96 -233
- 132 -727 -15 -73
- -415 -10000 196 -395
- 200 -10000 -10000 -10000
- 200 -10000 -727 -10000
- 42 22 -22 -66
- -42 8 -98 76
+ -82 51 6 -4
+ 51 -48 -31 7
+ -154 28 -8 58
+ -546 -546 -546 198
+ -432 -546 -546 197
+ -184 184 -546 -296
+ -255 136 -546 31
+ 51 -390 -104 102
+ -48 20 94 -220
+ 130 -511 -15 -70
+ -369 -546 193 -354
+ 198 -546 -546 -546
+ 197 -546 -511 -546
+ 42 22 -21 -64
+ -41 8 -95 74
diff --git a/profiles/vertebrates/MA0521.1.pwm b/profiles/vertebrates/MA0521.1.pwm
index e69de29..9a95314 100644
--- a/profiles/vertebrates/MA0521.1.pwm
+++ b/profiles/vertebrates/MA0521.1.pwm
@@ -0,0 +1,11 @@
+ 93 -101 66 -616
+ 144 -442 29 -684
+ -684 199 -684 -684
+ 199 -684 -684 -684
+ -648 -684 199 -684
+ -394 174 -76 -684
+ -684 -684 -684 199
+ -684 -684 199 -684
+ -77 77 24 -93
+ 28 -41 -14 17
+ -17 -10 58 -55
diff --git a/profiles/vertebrates/MA0521.2.pwm b/profiles/vertebrates/MA0521.2.pwm
index e69de29..3379251 100644
--- a/profiles/vertebrates/MA0521.2.pwm
+++ b/profiles/vertebrates/MA0521.2.pwm
@@ -0,0 +1,12 @@
+ -8 0 13 -5
+ 15 14 13 -54
+ 92 -44 -14 -110
+ -542 197 -530 -491
+ 196 -452 -473 -550
+ -436 -330 191 -351
+ -351 191 -330 -436
+ -550 -473 -453 196
+ -491 -530 197 -539
+ -110 -14 -44 92
+ -54 13 14 15
+ -5 13 0 -8
diff --git a/profiles/vertebrates/MA0522.1.pwm b/profiles/vertebrates/MA0522.1.pwm
index 8ed15ec..375e712 100644
--- a/profiles/vertebrates/MA0522.1.pwm
+++ b/profiles/vertebrates/MA0522.1.pwm
@@ -1,11 +1,11 @@
- -67 98 12 -166
- 91 58 -130 -215
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -7 152 -251
- -10000 197 -339 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 154 -35 -169
- 69 -4 -549 48
- -88 -7 62 -5
+ -66 97 12 -164
+ 90 57 -128 -211
+ -705 199 -705 -705
+ 199 -705 -705 -705
+ -705 -7 152 -246
+ -705 196 -329 -705
+ -705 -705 -705 199
+ -705 -705 199 -705
+ -705 153 -34 -167
+ 68 -4 -508 47
+ -87 -7 61 -5
diff --git a/profiles/vertebrates/MA0522.2.pwm b/profiles/vertebrates/MA0522.2.pwm
index e69de29..f51e90a 100644
--- a/profiles/vertebrates/MA0522.2.pwm
+++ b/profiles/vertebrates/MA0522.2.pwm
@@ -0,0 +1,10 @@
+ 53 12 -93 -8
+ 80 -55 54 -307
+ -646 199 -646 -646
+ 198 -617 -647 -558
+ -672 173 -89 -280
+ -654 191 -210 -654
+ -493 -512 -608 197
+ -533 -552 198 -618
+ -284 62 2 39
+ 8 -48 10 20
diff --git a/profiles/vertebrates/MA0522.3.pwm b/profiles/vertebrates/MA0522.3.pwm
index abe71ad..0fa28e8 100644
--- a/profiles/vertebrates/MA0522.3.pwm
+++ b/profiles/vertebrates/MA0522.3.pwm
@@ -1,11 +1,11 @@
- -32 39 13 -32
- 4 25 27 -79
- -406 191 -346 -347
- 189 -430 -231 -438
- -466 187 -252 -304
- -279 180 -156 -479
- -436 -196 -255 182
- -284 -291 187 -399
- -473 188 -299 -266
- -10 16 4 -11
- -51 37 24 -28
+ -32 38 13 -32
+ 4 24 27 -78
+ -394 190 -339 -339
+ 188 -416 -228 -423
+ -448 187 -248 -298
+ -275 179 -154 -459
+ -421 -194 -251 181
+ -279 -286 187 -387
+ -453 187 -293 -262
+ -10 16 4 -11
+ -51 37 24 -28
diff --git a/profiles/vertebrates/MA0523.1.pwm b/profiles/vertebrates/MA0523.1.pwm
index e69de29..7424898 100644
--- a/profiles/vertebrates/MA0523.1.pwm
+++ b/profiles/vertebrates/MA0523.1.pwm
@@ -0,0 +1,14 @@
+ 54 -46 12 -44
+ 78 -31 14 -140
+ 154 -280 -89 -128
+ -339 88 93 -270
+ 140 -466 -604 38
+ -279 -604 -604 194
+ -263 164 -51 -604
+ 198 -604 -604 -604
+ 195 -509 -362 -604
+ 198 -604 -492 -604
+ -174 -432 186 -604
+ -2 -30 93 -177
+ 41 10 21 -117
+ 76 -34 -46 -34
diff --git a/profiles/vertebrates/MA0524.1.pwm b/profiles/vertebrates/MA0524.1.pwm
index e69de29..d7a6423 100644
--- a/profiles/vertebrates/MA0524.1.pwm
+++ b/profiles/vertebrates/MA0524.1.pwm
@@ -0,0 +1,15 @@
+ 6 55 -111 4
+ 49 3 -46 -23
+ -84 10 -79 84
+ 9 -118 40 23
+ -335 39 125 -226
+ -710 199 -710 -710
+ -710 168 -710 -35
+ -710 101 -187 77
+ -206 168 -136 -250
+ 183 -710 -192 -250
+ -437 -710 198 -710
+ -710 -710 199 -710
+ -386 78 114 -669
+ -8 100 -135 -58
+ 95 -49 -85 -30
diff --git a/profiles/vertebrates/MA0524.2.pwm b/profiles/vertebrates/MA0524.2.pwm
index e69de29..d341ba5 100644
--- a/profiles/vertebrates/MA0524.2.pwm
+++ b/profiles/vertebrates/MA0524.2.pwm
@@ -0,0 +1,12 @@
+ -18 -3 -217 94
+ -126 -33 144 -376
+ -421 181 -138 -455
+ -511 195 -571 -343
+ -470 129 -187 32
+ -146 54 -13 35
+ 71 -1 22 -232
+ 60 -203 115 -532
+ -306 -558 194 -541
+ -370 -116 178 -490
+ -286 156 -74 -168
+ 125 -185 -49 -65
diff --git a/profiles/vertebrates/MA0525.1.pwm b/profiles/vertebrates/MA0525.1.pwm
index 7afb40d..aa987c1 100644
--- a/profiles/vertebrates/MA0525.1.pwm
+++ b/profiles/vertebrates/MA0525.1.pwm
@@ -1,20 +1,20 @@
- 59 -46 -2 -35
- 0 -85 58 -7
- 74 -215 66 -94
- -699 193 -456 -275
- 144 -55 -197 -152
- 28 -324 -93 111
- -488 -10000 199 -10000
- -143 87 -502 82
- -23 77 -127 3
- -246 154 -76 -163
- 107 -23 -353 -5
- 22 -128 92 -92
- 97 -360 55 -103
- -10000 200 -10000 -10000
- 108 -38 -519 12
- -134 -156 -179 157
- -342 -10000 196 -753
- -219 118 -350 51
- -2 76 -256 19
- -74 65 -57 21
+ 58 -45 -2 -34
+ 0 -84 57 -7
+ 74 -210 65 -92
+ -580 192 -426 -267
+ 143 -55 -193 -149
+ 28 -312 -92 110
+ -451 -663 198 -663
+ -140 86 -463 82
+ -22 77 -125 3
+ -240 153 -75 -160
+ 106 -23 -339 -5
+ 22 -126 91 -90
+ 97 -345 55 -102
+ -663 199 -663 -663
+ 108 -37 -475 11
+ -132 -153 -176 156
+ -329 -663 195 -602
+ -214 117 -336 51
+ -2 76 -249 19
+ -73 64 -56 21
diff --git a/profiles/vertebrates/MA0525.2.pwm b/profiles/vertebrates/MA0525.2.pwm
index 812afd0..61541ee 100644
--- a/profiles/vertebrates/MA0525.2.pwm
+++ b/profiles/vertebrates/MA0525.2.pwm
@@ -1,18 +1,18 @@
- 122 -471 55 -257
- 187 -927 -174 -488
- -10000 200 -10000 -10000
- 195 -10000 -294 -718
- -15 -454 -10000 161
- -10000 -10000 200 -10000
- -580 -320 -10000 195
- -300 40 -490 134
- -31 -75 137 -595
- -287 -27 101 2
- 32 -963 143 -408
- 194 -10000 -357 -367
- -10000 200 -10000 -10000
- 188 -10000 -919 -161
- -355 -51 -678 168
- -10000 -10000 200 -10000
- -411 -206 -972 189
- -36 122 -219 -57
+ 120 -413 54 -243
+ 185 -542 -167 -418
+ -556 198 -556 -556
+ 192 -544 -273 -507
+ -15 -407 -583 160
+ -621 -621 199 -621
+ -484 -301 -585 193
+ -284 39 -431 132
+ -30 -73 135 -493
+ -273 -26 100 2
+ 32 -577 141 -373
+ 191 -541 -324 -332
+ -569 198 -569 -569
+ 185 -545 -534 -154
+ -333 -50 -536 167
+ -603 -603 198 -603
+ -377 -199 -586 187
+ -36 121 -211 -56
diff --git a/profiles/vertebrates/MA0526.1.pwm b/profiles/vertebrates/MA0526.1.pwm
index e69de29..ea485e2 100644
--- a/profiles/vertebrates/MA0526.1.pwm
+++ b/profiles/vertebrates/MA0526.1.pwm
@@ -0,0 +1,11 @@
+ 20 -73 104 -237
+ -119 38 -85 77
+ -689 199 -689 -689
+ 199 -689 -689 -689
+ -689 49 -132 113
+ -689 -689 199 -689
+ -689 -689 -689 199
+ -689 -689 199 -689
+ 159 -217 -42 -540
+ -689 152 -220 -13
+ -65 94 -285 39
diff --git a/profiles/vertebrates/MA0526.2.pwm b/profiles/vertebrates/MA0526.2.pwm
index e69de29..f28cc68 100644
--- a/profiles/vertebrates/MA0526.2.pwm
+++ b/profiles/vertebrates/MA0526.2.pwm
@@ -0,0 +1,16 @@
+ -30 24 14 -14
+ -27 15 17 -10
+ 5 -29 19 2
+ -14 -161 112 -76
+ -98 -264 172 -470
+ -302 -174 -309 179
+ -567 197 -474 -571
+ 197 -497 -472 -550
+ -576 193 -433 -306
+ -176 -510 187 -571
+ -435 -427 -446 195
+ -562 -543 198 -536
+ 67 -182 82 -149
+ -233 83 -45 36
+ -49 63 -40 -3
+ 9 17 -11 -18
diff --git a/profiles/vertebrates/MA0526.3.pwm b/profiles/vertebrates/MA0526.3.pwm
index 3bb7b4e..2842d08 100644
--- a/profiles/vertebrates/MA0526.3.pwm
+++ b/profiles/vertebrates/MA0526.3.pwm
@@ -1,14 +1,14 @@
- -2 -31 6 22
- 14 -79 58 -29
- -54 -158 148 -237
- -179 -55 -163 144
- -471 195 -419 -469
- 195 -413 -486 -454
- -494 20 -232 139
- -245 -360 189 -513
- -474 -559 -426 196
- -483 -409 195 -480
- 171 -216 -156 -263
- -272 158 -199 -70
- -31 53 -103 33
- 7 4 -32 17
+ -2 -31 6 22
+ 14 -79 58 -29
+ -54 -156 147 -234
+ -178 -55 -161 143
+ -454 195 -406 -452
+ 195 -401 -467 -439
+ -473 20 -229 138
+ -242 -352 188 -490
+ -456 -528 -413 195
+ -464 -398 195 -461
+ 171 -214 -154 -259
+ -268 157 -197 -69
+ -31 53 -102 33
+ 7 4 -32 17
diff --git a/profiles/vertebrates/MA0526.4.pwm b/profiles/vertebrates/MA0526.4.pwm
index e69de29..0ccabea 100644
--- a/profiles/vertebrates/MA0526.4.pwm
+++ b/profiles/vertebrates/MA0526.4.pwm
@@ -0,0 +1,12 @@
+ 4 -89 67 -24
+ 54 -298 127 -592
+ -333 -92 -465 174
+ -710 199 -687 -683
+ 199 -687 -694 -690
+ -710 199 -677 -601
+ -597 -710 199 -710
+ -673 -694 -667 199
+ -658 -677 199 -710
+ 174 -463 -91 -336
+ -617 127 -300 54
+ -23 67 -90 3
diff --git a/profiles/vertebrates/MA0527.1.pwm b/profiles/vertebrates/MA0527.1.pwm
index 6ef9f0e..1c8f28d 100644
--- a/profiles/vertebrates/MA0527.1.pwm
+++ b/profiles/vertebrates/MA0527.1.pwm
@@ -1,15 +1,15 @@
- -110 54 -27 33
- -488 -142 -246 177
- -265 190 -400 -465
- -414 -99 -514 177
- -10000 200 -10000 -10000
- -233 -10000 192 -588
- -646 192 -10000 -233
- -10000 -10000 200 -10000
- 139 -114 -58 -194
- -446 -163 135 11
- 124 -91 -32 -171
- -105 40 -37 52
- -321 90 -204 84
- -116 -28 -69 108
- -97 40 59 -60
+ -104 52 -26 32
+ -386 -133 -224 173
+ -240 186 -337 -375
+ -346 -94 -397 173
+ -478 196 -478 -478
+ -213 -478 188 -425
+ -440 188 -478 -213
+ -478 -478 196 -478
+ 135 -108 -55 -180
+ -364 -152 132 10
+ 121 -86 -31 -159
+ -100 38 -36 50
+ -283 87 -188 81
+ -109 -27 -66 105
+ -92 39 58 -58
diff --git a/profiles/vertebrates/MA0528.1.pwm b/profiles/vertebrates/MA0528.1.pwm
index e69de29..527fd62 100644
--- a/profiles/vertebrates/MA0528.1.pwm
+++ b/profiles/vertebrates/MA0528.1.pwm
@@ -0,0 +1,21 @@
+ -68 -357 153 -133
+ 27 -696 147 -696
+ 154 -696 -44 -151
+ -299 -696 185 -195
+ -188 -112 170 -572
+ 186 -272 -570 -235
+ -126 -213 156 -126
+ -128 -140 158 -220
+ 108 -194 53 -251
+ 43 -129 88 -131
+ -30 -180 131 -124
+ 79 -263 82 -151
+ 13 -256 122 -129
+ 11 -122 124 -294
+ 105 -197 33 -127
+ 1 -691 134 -111
+ -28 -696 158 -248
+ 112 -696 63 -184
+ 45 -394 122 -210
+ 9 -250 136 -240
+ 93 -203 68 -201
diff --git a/profiles/vertebrates/MA0528.2.pwm b/profiles/vertebrates/MA0528.2.pwm
index 5cef9f1..98d252d 100644
--- a/profiles/vertebrates/MA0528.2.pwm
+++ b/profiles/vertebrates/MA0528.2.pwm
@@ -1,12 +1,12 @@
- -8 -11 53 -53
- -35 8 34 -17
- -12 -119 104 -77
- -313 -309 188 -347
- -416 -319 191 -356
- -389 -386 192 -384
- 194 -308 -643 -451
- -408 -387 191 -307
- -434 -269 190 -430
- 190 -300 -328 -446
- -56 13 82 -110
- -74 -27 83 -34
+ -8 -11 52 -53
+ -35 8 34 -17
+ -12 -118 103 -77
+ -308 -304 187 -341
+ -406 -314 190 -350
+ -381 -378 192 -376
+ 193 -304 -599 -438
+ -399 -379 190 -303
+ -423 -265 190 -419
+ 189 -296 -323 -434
+ -56 13 81 -109
+ -74 -27 83 -34
diff --git a/profiles/vertebrates/MA0591.1.pwm b/profiles/vertebrates/MA0591.1.pwm
index ccc2194..d958738 100644
--- a/profiles/vertebrates/MA0591.1.pwm
+++ b/profiles/vertebrates/MA0591.1.pwm
@@ -1,15 +1,15 @@
- 66 -103 52 -103
- -103 34 69 -66
- -93 52 92 -283
- 121 -83 17 -10000
- -383 -483 -10000 196
- -10000 -10000 191 -203
- 199 -10000 -10000 -483
- -10000 172 -51 -10000
- -483 -10000 -283 194
- -251 191 -383 -10000
- 192 -483 -325 -383
- -10000 -483 199 -10000
- -10000 200 -10000 -10000
- 178 -283 -225 -225
- -125 56 42 -37
+ 61 -90 49 -90
+ -90 31 64 -59
+ -82 49 86 -222
+ 114 -74 15 -355
+ -274 -309 -355 187
+ -355 -355 181 -169
+ 189 -355 -355 -309
+ -355 163 -46 -355
+ -309 -355 -222 184
+ -202 181 -274 -355
+ 183 -309 -246 -274
+ -355 -309 189 -355
+ -355 190 -355 -355
+ 169 -222 -185 -185
+ -109 52 38 -34
diff --git a/profiles/vertebrates/MA0592.1.pwm b/profiles/vertebrates/MA0592.1.pwm
index a8e0318..50829d9 100644
--- a/profiles/vertebrates/MA0592.1.pwm
+++ b/profiles/vertebrates/MA0592.1.pwm
@@ -1,11 +1,11 @@
- -161 118 -224 25
- -153 174 -179 -570
- 194 -470 -312 -10000
- 193 -10000 -238 -10000
- -10000 -10000 196 -338
- -10000 -10000 199 -570
- -312 -10000 -124 179
- -10000 198 -412 -10000
- 192 -570 -238 -10000
- -118 105 -24 -66
- 43 5 -38 -24
+ -143 113 -193 24
+ -136 168 -158 -359
+ 187 -331 -253 -395
+ 186 -395 -203 -395
+ -395 -395 189 -269
+ -395 -395 192 -359
+ -253 -395 -112 172
+ -395 191 -307 -395
+ 185 -359 -203 -395
+ -106 101 -22 -60
+ 40 5 -35 -22
diff --git a/profiles/vertebrates/MA0592.2.pwm b/profiles/vertebrates/MA0592.2.pwm
index e69de29..d3f0b02 100644
--- a/profiles/vertebrates/MA0592.2.pwm
+++ b/profiles/vertebrates/MA0592.2.pwm
@@ -0,0 +1,11 @@
+ -380 -132 -25 143
+ -317 -191 -416 184
+ -470 186 -165 -592
+ 198 -608 -579 -608
+ 198 -608 -579 -608
+ -601 -586 198 -550
+ -608 -593 198 -586
+ -568 -541 -414 196
+ -615 191 -248 -441
+ 190 -575 -205 -601
+ -68 -172 -405 159
diff --git a/profiles/vertebrates/MA0592.3.pwm b/profiles/vertebrates/MA0592.3.pwm
index f775b5c..03ae187 100644
--- a/profiles/vertebrates/MA0592.3.pwm
+++ b/profiles/vertebrates/MA0592.3.pwm
@@ -1,13 +1,13 @@
- -31 -36 47 4
- -87 44 -4 18
- -150 -1 -181 124
- -274 175 -148 -294
- 193 -419 -355 -401
- 193 -397 -351 -461
- -376 -426 192 -370
- -487 -548 196 -447
- -270 -410 -278 186
- -447 188 -305 -281
- 192 -485 -306 -426
- -23 49 -54 8
- 52 -22 -14 -32
+ -31 -36 47 4
+ -87 43 -4 18
+ -148 -1 -179 124
+ -269 174 -147 -288
+ 192 -405 -345 -388
+ 192 -384 -342 -441
+ -365 -410 192 -360
+ -463 -513 196 -429
+ -265 -396 -272 186
+ -429 188 -298 -276
+ 192 -462 -299 -410
+ -23 49 -54 8
+ 52 -22 -14 -32
diff --git a/profiles/vertebrates/MA0593.1.pwm b/profiles/vertebrates/MA0593.1.pwm
index e69de29..f84d566 100644
--- a/profiles/vertebrates/MA0593.1.pwm
+++ b/profiles/vertebrates/MA0593.1.pwm
@@ -0,0 +1,11 @@
+ 76 -73 -1 -50
+ 81 -383 -41 52
+ -25 -484 163 -484
+ -159 -484 -484 185
+ 196 -484 -484 -484
+ 196 -484 -484 -484
+ 196 -484 -484 -484
+ -484 194 -484 -364
+ 196 -484 -484 -484
+ 62 -30 60 -278
+ 77 -60 -6 -58
diff --git a/profiles/vertebrates/MA0594.1.pwm b/profiles/vertebrates/MA0594.1.pwm
index 276ba01..e0e7427 100644
--- a/profiles/vertebrates/MA0594.1.pwm
+++ b/profiles/vertebrates/MA0594.1.pwm
@@ -1,11 +1,11 @@
- -34 30 91 -343
- -184 136 -310 7
- -18 144 -10000 -134
- 190 -384 -243 -10000
- -10000 -10000 -10000 200
- 123 43 -243 -310
- 187 -284 -10000 -226
- 199 -543 -10000 -10000
- -310 -10000 -543 195
- -262 184 -10000 -197
- 161 -197 -10000 -52
+ -31 28 86 -267
+ -160 129 -248 6
+ -16 138 -382 -119
+ 183 -288 -204 -382
+ -382 -382 -382 192
+ 117 41 -204 -248
+ 179 -232 -382 -191
+ 191 -344 -382 -382
+ -248 -382 -344 187
+ -217 176 -382 -170
+ 154 -170 -382 -48
diff --git a/profiles/vertebrates/MA0594.2.pwm b/profiles/vertebrates/MA0594.2.pwm
index e69de29..92e1600 100644
--- a/profiles/vertebrates/MA0594.2.pwm
+++ b/profiles/vertebrates/MA0594.2.pwm
@@ -0,0 +1,10 @@
+ 33 -42 93 -355
+ -120 -28 -208 132
+ -238 184 -406 -249
+ 13 -434 150 -563
+ -520 -289 -520 193
+ 107 -255 -320 69
+ 174 -234 -383 -139
+ 86 -4 -201 -4
+ -15 23 -28 14
+ -22 12 27 -24
diff --git a/profiles/vertebrates/MA0595.1.pwm b/profiles/vertebrates/MA0595.1.pwm
index e69de29..4f04214 100644
--- a/profiles/vertebrates/MA0595.1.pwm
+++ b/profiles/vertebrates/MA0595.1.pwm
@@ -0,0 +1,10 @@
+ 87 -4 13 -311
+ -311 -311 -311 187
+ -311 187 -311 -311
+ 187 -311 -311 -311
+ -311 169 -88 -311
+ -105 128 -14 -250
+ -311 148 -311 -4
+ -207 152 -35 -311
+ 187 -311 -311 -311
+ -311 77 -88 71
diff --git a/profiles/vertebrates/MA0596.1.pwm b/profiles/vertebrates/MA0596.1.pwm
index e69de29..6edff36 100644
--- a/profiles/vertebrates/MA0596.1.pwm
+++ b/profiles/vertebrates/MA0596.1.pwm
@@ -0,0 +1,10 @@
+ 93 -33 22 -297
+ -297 -297 -297 186
+ -297 -151 176 -297
+ -20 -297 152 -297
+ -186 -20 109 -47
+ -186 -33 149 -297
+ -297 -297 -297 186
+ -297 -297 186 -297
+ 186 -297 -297 -297
+ -186 40 -186 109
diff --git a/profiles/vertebrates/MA0597.1.pwm b/profiles/vertebrates/MA0597.1.pwm
index e69de29..1efc93f 100644
--- a/profiles/vertebrates/MA0597.1.pwm
+++ b/profiles/vertebrates/MA0597.1.pwm
@@ -0,0 +1,9 @@
+ -131 86 -80 28
+ -152 -8 -178 127
+ -118 -392 140 -23
+ -234 180 -392 -198
+ -303 190 -392 -356
+ 21 139 -356 -282
+ -8 -138 60 21
+ -67 48 -26 18
+ 117 -51 -138 -58
diff --git a/profiles/vertebrates/MA0598.1.pwm b/profiles/vertebrates/MA0598.1.pwm
index b9ca0b6..4ab2466 100644
--- a/profiles/vertebrates/MA0598.1.pwm
+++ b/profiles/vertebrates/MA0598.1.pwm
@@ -1,8 +1,8 @@
- 98 102 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- -10000 99 101 -10000
+ 96 100 -528 -528
+ -528 197 -528 -528
+ -528 -528 -528 197
+ -528 -528 -528 197
+ -528 197 -528 -528
+ -528 197 -528 -528
+ -528 -528 -528 197
+ -528 97 99 -528
diff --git a/profiles/vertebrates/MA0598.2.pwm b/profiles/vertebrates/MA0598.2.pwm
index 2036292..a2a0bc6 100644
--- a/profiles/vertebrates/MA0598.2.pwm
+++ b/profiles/vertebrates/MA0598.2.pwm
@@ -1,12 +1,12 @@
- 77 -63 -92 17
- 172 -299 -304 -116
- -137 147 -100 -159
- -177 159 -55 -573
- -115 180 -453 -572
- -751 -851 200 -10000
- -10000 -10000 200 -10000
- 199 -589 -789 -689
- 197 -459 -474 -591
- -99 -376 176 -491
- -315 -213 -346 184
- 104 -154 -7 -62
+ 75 -60 -88 16
+ 169 -270 -273 -110
+ -132 146 -97 -153
+ -170 157 -54 -466
+ -111 178 -391 -455
+ -507 -520 197 -535
+ -535 -535 197 -535
+ 195 -422 -460 -446
+ 193 -371 -378 -425
+ -96 -339 174 -418
+ -287 -200 -311 181
+ 102 -147 -6 -60
diff --git a/profiles/vertebrates/MA0598.3.pwm b/profiles/vertebrates/MA0598.3.pwm
index 65dd8c8..bfbea83 100644
--- a/profiles/vertebrates/MA0598.3.pwm
+++ b/profiles/vertebrates/MA0598.3.pwm
@@ -1,15 +1,15 @@
- -24 18 9 -7
- -51 27 -20 29
- -86 121 -132 -44
- 180 -307 -231 -241
- -451 177 -335 -117
- -317 -452 -466 193
- -478 -455 -427 195
- -430 195 -479 -426
- -460 196 -525 -510
- -317 -266 -132 174
- -247 -37 124 -55
- -73 -34 -22 81
- -77 -112 -160 139
- -26 -7 -32 49
- -32 33 -27 15
+ -23 17 9 -7
+ -50 27 -19 28
+ -85 120 -130 -44
+ 180 -299 -226 -236
+ -428 176 -325 -116
+ -308 -429 -440 192
+ -450 -431 -407 194
+ -410 194 -451 -406
+ -436 196 -487 -476
+ -308 -260 -130 173
+ -242 -36 123 -54
+ -72 -34 -22 80
+ -77 -111 -158 139
+ -25 -7 -31 49
+ -31 33 -26 15
diff --git a/profiles/vertebrates/MA0599.1.pwm b/profiles/vertebrates/MA0599.1.pwm
index e69de29..aea895b 100644
--- a/profiles/vertebrates/MA0599.1.pwm
+++ b/profiles/vertebrates/MA0599.1.pwm
@@ -0,0 +1,10 @@
+ -123 -74 115 -39
+ -688 180 -688 -98
+ -688 181 -688 -107
+ 3 148 -688 -253
+ -688 199 -688 -688
+ 57 -688 60 -1
+ -688 199 -688 -688
+ -688 199 -688 -688
+ -688 194 -688 -276
+ 20 71 -688 27
diff --git a/profiles/vertebrates/MA0600.1.pwm b/profiles/vertebrates/MA0600.1.pwm
index 44daeb7..dc01cdc 100644
--- a/profiles/vertebrates/MA0600.1.pwm
+++ b/profiles/vertebrates/MA0600.1.pwm
@@ -1,19 +1,19 @@
- -65 -206 155 -234
- -324 -167 -89 160
- -161 33 -320 121
- -44 -89 63 23
- -411 172 -228 -120
- -920 188 -639 -174
- 142 -44 -384 -94
- -184 -140 -264 167
- -1 -10000 159 -10000
- -160 -687 187 -820
- -145 172 -10000 -155
- 184 -620 -179 -301
- 198 -10000 -439 -661
- -10000 197 -10000 -350
- 37 42 -12 -116
- 0 -54 101 -173
- -53 50 32 -64
- 0 10 38 -66
- 8 19 21 -63
+ -64 -197 153 -222
+ -301 -161 -86 158
+ -155 32 -298 119
+ -43 -86 62 23
+ -370 170 -217 -116
+ -551 186 -497 -167
+ 140 -43 -349 -91
+ -177 -135 -250 165
+ -1 -563 157 -563
+ -155 -513 185 -541
+ -140 170 -563 -150
+ 182 -490 -172 -281
+ 196 -563 -390 -505
+ -563 195 -563 -322
+ 37 41 -12 -112
+ 0 -53 99 -166
+ -52 49 32 -63
+ 0 10 37 -65
+ 8 18 21 -61
diff --git a/profiles/vertebrates/MA0600.2.pwm b/profiles/vertebrates/MA0600.2.pwm
index e69de29..c9d9e2b 100644
--- a/profiles/vertebrates/MA0600.2.pwm
+++ b/profiles/vertebrates/MA0600.2.pwm
@@ -0,0 +1,16 @@
+ -126 75 27 -52
+ -358 -644 196 -659
+ -594 -571 -634 198
+ -94 -208 -649 169
+ 24 -366 125 -149
+ -650 183 -493 -132
+ -699 164 -686 -21
+ 195 -524 -476 -358
+ -383 -489 -590 196
+ -28 -673 166 -694
+ -91 -461 177 -690
+ -138 121 -323 26
+ 169 -571 -155 -124
+ 198 -586 -553 -580
+ -665 196 -691 -342
+ -42 17 75 -115
diff --git a/profiles/vertebrates/MA0601.1.pwm b/profiles/vertebrates/MA0601.1.pwm
index bf8e4b0..01f0695 100644
--- a/profiles/vertebrates/MA0601.1.pwm
+++ b/profiles/vertebrates/MA0601.1.pwm
@@ -1,11 +1,11 @@
- 91 -50 -50 -50
- 13 -164 -164 118
- 128 -107 -288 -7
- -126 -10000 -10000 184
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 187 -10000 -10000 -149
- -149 -10000 -10000 187
- 7 -57 -178 99
- 97 -56 -56 -56
- 49 -21 -21 -21
+ 89 -48 -48 -48
+ 12 -155 -155 116
+ 126 -102 -262 -7
+ -120 -503 -503 181
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 183 -503 -503 -141
+ -141 -503 -503 183
+ 6 -55 -167 97
+ 95 -54 -54 -54
+ 48 -20 -20 -20
diff --git a/profiles/vertebrates/MA0602.1.pwm b/profiles/vertebrates/MA0602.1.pwm
index 2b7d4b6..1cf9073 100644
--- a/profiles/vertebrates/MA0602.1.pwm
+++ b/profiles/vertebrates/MA0602.1.pwm
@@ -1,14 +1,14 @@
- -49 77 -13 -57
- -63 37 -304 96
- 177 -306 -184 -232
- 196 -10000 -463 -363
- -206 -10000 -464 190
- 188 -466 -466 -207
- -364 -464 -464 194
- -264 -147 -264 173
- -12 -306 106 -18
- 46 50 -46 -104
- 21 -94 11 31
- 119 -164 -40 -64
- 21 -47 6 11
- 46 -11 -72 13
+ -44 71 -12 -51
+ -56 34 -231 89
+ 167 -232 -153 -187
+ 185 -345 -296 -260
+ -169 -346 -297 180
+ 178 -299 -299 -171
+ -261 -297 -297 184
+ -208 -126 -208 164
+ -11 -232 99 -17
+ 42 46 -41 -91
+ 20 -83 10 28
+ 111 -139 -36 -57
+ 20 -42 5 10
+ 42 -10 -64 11
diff --git a/profiles/vertebrates/MA0603.1.pwm b/profiles/vertebrates/MA0603.1.pwm
index b971cc8..1f8900f 100644
--- a/profiles/vertebrates/MA0603.1.pwm
+++ b/profiles/vertebrates/MA0603.1.pwm
@@ -1,10 +1,10 @@
- 1 -13 6 5
- -2 -100 116 -182
- -201 -251 -81 159
- -638 200 -10000 -10000
- 193 -397 -464 -357
- -697 195 -480 -338
- -238 -638 192 -638
- -221 -211 -229 174
- -479 -596 191 -238
- 3 40 -78 10
+ 1 -12 6 5
+ -2 -96 113 -171
+ -188 -231 -77 156
+ -456 196 -503 -503
+ 190 -343 -385 -316
+ -470 192 -393 -301
+ -221 -456 189 -456
+ -206 -197 -213 171
+ -393 -444 188 -220
+ 3 39 -74 10
diff --git a/profiles/vertebrates/MA0604.1.pwm b/profiles/vertebrates/MA0604.1.pwm
index cf74905..edcd98a 100644
--- a/profiles/vertebrates/MA0604.1.pwm
+++ b/profiles/vertebrates/MA0604.1.pwm
@@ -1,8 +1,8 @@
- 89 -154 63 -194
- -338 -397 -10000 194
- -10000 -351 168 -51
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -516 -10000 199 -10000
- -147 -34 -10000 151
- 126 -86 -62 -132
+ 87 -146 61 -182
+ -301 -343 -503 191
+ -503 -311 165 -50
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -411 -503 196 -503
+ -140 -32 -503 148
+ 124 -82 -60 -126
diff --git a/profiles/vertebrates/MA0605.1.pwm b/profiles/vertebrates/MA0605.1.pwm
index e69de29..6cffe44 100644
--- a/profiles/vertebrates/MA0605.1.pwm
+++ b/profiles/vertebrates/MA0605.1.pwm
@@ -0,0 +1,8 @@
+ -144 -89 145 -144
+ 170 -503 -52 -503
+ -503 -503 -503 197
+ -503 -503 190 -221
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -115 -503 167 -154
+ -130 -35 -266 141
diff --git a/profiles/vertebrates/MA0605.2.pwm b/profiles/vertebrates/MA0605.2.pwm
index 15b0f0d..8f21a0e 100644
--- a/profiles/vertebrates/MA0605.2.pwm
+++ b/profiles/vertebrates/MA0605.2.pwm
@@ -1,12 +1,12 @@
- -25 -30 74 -55
- 124 -295 59 -10000
- -10000 -10000 -1331 200
- -10000 -10000 195 -294
- 200 -10000 -10000 -10000
- -10000 198 -10000 -421
- -354 -10000 197 -10000
- -10000 -10000 -10000 200
- -279 195 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 60 -325 125
- -55 73 -30 -24
+ -25 -30 73 -55
+ 124 -291 59 -770
+ -765 -765 -762 199
+ -770 -770 195 -289
+ 199 -765 -765 -765
+ -767 198 -767 -409
+ -347 -768 196 -768
+ -765 -765 -765 199
+ -275 194 -770 -770
+ 199 -765 -765 -765
+ -769 59 -319 125
+ -55 73 -30 -24
diff --git a/profiles/vertebrates/MA0606.1.pwm b/profiles/vertebrates/MA0606.1.pwm
index 2f49200..8b9293e 100644
--- a/profiles/vertebrates/MA0606.1.pwm
+++ b/profiles/vertebrates/MA0606.1.pwm
@@ -1,10 +1,10 @@
- 57 -25 -25 -25
- -51 -151 -151 137
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- -149 -157 -10000 173
- -10000 187 -10000 -156
- -10000 172 -156 -149
- 173 -157 -10000 -156
- -101 20 -261 113
- 10 -62 -1 36
+ 55 -24 -24 -24
+ -49 -143 -143 135
+ -503 -503 -503 197
+ -503 -503 -503 197
+ -141 -149 -503 169
+ -503 184 -503 -147
+ -503 169 -147 -141
+ 170 -149 -503 -147
+ -97 19 -240 111
+ 10 -60 -1 35
diff --git a/profiles/vertebrates/MA0606.2.pwm b/profiles/vertebrates/MA0606.2.pwm
index a99dbb8..e16025b 100644
--- a/profiles/vertebrates/MA0606.2.pwm
+++ b/profiles/vertebrates/MA0606.2.pwm
@@ -1,12 +1,12 @@
- 54 -17 -33 -21
- 25 41 -43 -43
- 165 -239 -92 -278
- -135 -315 -331 176
- -278 -10000 190 -302
- -248 -348 187 -367
- 188 -348 -257 -415
- 192 -648 -315 -331
- 191 -448 -348 -315
- 182 -348 -223 -267
- -2 -95 -50 84
- -10 -54 11 38
+ 51 -16 -31 -20
+ 24 39 -41 -41
+ 160 -211 -86 -240
+ -124 -267 -277 171
+ -240 -431 185 -258
+ -218 -288 181 -300
+ 183 -288 -225 -327
+ 186 -403 -267 -277
+ 185 -343 -288 -267
+ 177 -288 -198 -232
+ -2 -89 -47 80
+ -10 -51 10 37
diff --git a/profiles/vertebrates/MA0607.1.pwm b/profiles/vertebrates/MA0607.1.pwm
index e69de29..9e76f67 100644
--- a/profiles/vertebrates/MA0607.1.pwm
+++ b/profiles/vertebrates/MA0607.1.pwm
@@ -0,0 +1,8 @@
+ -77 117 19 -486
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -31 165
+ 165 -31 -503 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -486 -11 -67 127
diff --git a/profiles/vertebrates/MA0607.2.pwm b/profiles/vertebrates/MA0607.2.pwm
index 807c95d..9d34446 100644
--- a/profiles/vertebrates/MA0607.2.pwm
+++ b/profiles/vertebrates/MA0607.2.pwm
@@ -1,10 +1,10 @@
- 122 -220 -8 -99
- -15 150 -198 -653
- -612 199 -10000 -10000
- 197 -770 -376 -605
- -10000 -565 -291 194
- 195 -298 -572 -10000
- -586 -371 -892 197
- -10000 -10000 200 -623
- -636 -197 149 -13
- -99 -10 -217 123
+ 122 -216 -8 -98
+ -15 149 -194 -566
+ -539 198 -671 -671
+ 196 -614 -360 -536
+ -676 -511 -283 193
+ 194 -289 -515 -675
+ -524 -355 -645 195
+ -671 -671 198 -546
+ -557 -193 149 -13
+ -98 -9 -213 122
diff --git a/profiles/vertebrates/MA0608.1.pwm b/profiles/vertebrates/MA0608.1.pwm
index e69de29..b22b8da 100644
--- a/profiles/vertebrates/MA0608.1.pwm
+++ b/profiles/vertebrates/MA0608.1.pwm
@@ -0,0 +1,9 @@
+ -470 -470 155 0
+ 0 129 -486 -95
+ -486 177 -95 -486
+ 196 -485 -485 -485
+ -485 196 -485 -485
+ -485 -485 196 -485
+ -485 -485 -485 196
+ -485 -77 174 -485
+ 0 -470 0 97
diff --git a/profiles/vertebrates/MA0609.1.pwm b/profiles/vertebrates/MA0609.1.pwm
index 9b6ba46..fd08573 100644
--- a/profiles/vertebrates/MA0609.1.pwm
+++ b/profiles/vertebrates/MA0609.1.pwm
@@ -1,10 +1,10 @@
- -45 -45 12 54
- 137 -152 -47 -152
- -10000 -10000 -10000 200
- -10000 -10000 154 14
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 113 35 -190 -190
- 103 -62 -62 -62
+ -43 -43 11 52
+ 134 -144 -46 -144
+ -503 -503 -503 197
+ -503 -503 151 13
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ 111 34 -178 -178
+ 101 -59 -59 -59
diff --git a/profiles/vertebrates/MA0609.2.pwm b/profiles/vertebrates/MA0609.2.pwm
index e69de29..a541a0d 100644
--- a/profiles/vertebrates/MA0609.2.pwm
+++ b/profiles/vertebrates/MA0609.2.pwm
@@ -0,0 +1,16 @@
+ -14 -1 27 -16
+ -10 37 -10 -25
+ 46 -54 7 -18
+ -53 -97 138 -239
+ -286 -249 -299 183
+ -320 -200 180 -261
+ 187 -363 -272 -331
+ -296 171 -221 -141
+ -141 -220 171 -296
+ -331 -271 -363 187
+ -261 180 -200 -320
+ 183 -299 -249 -285
+ -238 138 -97 -53
+ -18 7 -54 46
+ -25 -10 37 -10
+ -16 27 -1 -14
diff --git a/profiles/vertebrates/MA0610.1.pwm b/profiles/vertebrates/MA0610.1.pwm
index f257656..c1d94ed 100644
--- a/profiles/vertebrates/MA0610.1.pwm
+++ b/profiles/vertebrates/MA0610.1.pwm
@@ -1,11 +1,11 @@
- 86 -6 -70 -70
- 111 -102 -102 -21
- -124 -351 -351 177
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- -31 -10000 -127 147
- -10000 200 -10000 -10000
- 131 -41 -137 -137
- 103 -98 -98 -8
- -13 -13 -13 33
+ 84 -6 -67 -67
+ 108 -98 -98 -21
+ -118 -311 -311 173
+ -503 -503 197 -503
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ -30 -503 -120 144
+ -503 197 -503 -503
+ 128 -40 -130 -130
+ 100 -93 -93 -8
+ -13 -13 -13 33
diff --git a/profiles/vertebrates/MA0611.1.pwm b/profiles/vertebrates/MA0611.1.pwm
index e69de29..0d2eef3 100644
--- a/profiles/vertebrates/MA0611.1.pwm
+++ b/profiles/vertebrates/MA0611.1.pwm
@@ -0,0 +1,8 @@
+ -18 31 0 -18
+ -503 177 -503 -89
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ 93 -273 -5 -5
diff --git a/profiles/vertebrates/MA0611.2.pwm b/profiles/vertebrates/MA0611.2.pwm
index e69de29..1767030 100644
--- a/profiles/vertebrates/MA0611.2.pwm
+++ b/profiles/vertebrates/MA0611.2.pwm
@@ -0,0 +1,16 @@
+ -49 34 -1 5
+ 11 -322 -158 131
+ -257 -471 190 -394
+ 197 -509 -530 -497
+ -462 -503 -344 194
+ -516 -174 -444 186
+ -88 26 11 24
+ 194 -444 -366 -492
+ 196 -444 -537 -476
+ -509 -530 -553 197
+ -415 191 -523 -257
+ 183 -368 -441 -167
+ -4 63 -29 -59
+ 20 -47 -89 66
+ 0 -18 -12 26
+ 31 -20 -49 24
diff --git a/profiles/vertebrates/MA0612.1.pwm b/profiles/vertebrates/MA0612.1.pwm
index f0764dd..7b43e92 100644
--- a/profiles/vertebrates/MA0612.1.pwm
+++ b/profiles/vertebrates/MA0612.1.pwm
@@ -1,10 +1,10 @@
- 15 30 11 -80
- -93 71 -93 40
- -170 -168 -479 174
- 189 -379 -268 -388
- 196 -638 -597 -364
- -288 -357 -351 188
- -176 -247 25 122
- 152 -380 -20 -244
- -55 52 37 -76
- -62 48 -26 16
+ 15 29 11 -76
+ -89 69 -89 39
+ -160 -158 -393 171
+ 186 -331 -246 -337
+ 193 -456 -444 -321
+ -262 -316 -311 185
+ -165 -229 25 120
+ 149 -332 -20 -226
+ -53 50 36 -73
+ -59 46 -25 16
diff --git a/profiles/vertebrates/MA0612.2.pwm b/profiles/vertebrates/MA0612.2.pwm
index e69de29..4fdb83f 100644
--- a/profiles/vertebrates/MA0612.2.pwm
+++ b/profiles/vertebrates/MA0612.2.pwm
@@ -0,0 +1,8 @@
+ -89 52 36 -42
+ -579 -8 -661 160
+ 181 -111 -678 -678
+ 199 -660 -660 -660
+ -660 -660 -660 199
+ -674 -674 -146 186
+ 199 -660 -660 -660
+ -83 14 91 -115
diff --git a/profiles/vertebrates/MA0613.1.pwm b/profiles/vertebrates/MA0613.1.pwm
index e69de29..10f8650 100644
--- a/profiles/vertebrates/MA0613.1.pwm
+++ b/profiles/vertebrates/MA0613.1.pwm
@@ -0,0 +1,8 @@
+ 57 -485 129 -485
+ -486 -486 -486 196
+ 196 -486 -486 -486
+ 196 -486 -486 -486
+ 196 -486 -486 -486
+ -486 196 -486 -486
+ 196 -486 -486 -486
+ 97 -56 -470 40
diff --git a/profiles/vertebrates/MA0614.1.pwm b/profiles/vertebrates/MA0614.1.pwm
index e69de29..9a394a8 100644
--- a/profiles/vertebrates/MA0614.1.pwm
+++ b/profiles/vertebrates/MA0614.1.pwm
@@ -0,0 +1,8 @@
+ 86 -503 108 -503
+ -215 -297 -503 185
+ 164 -28 -503 -503
+ 193 -503 -503 -311
+ 197 -503 -503 -503
+ -503 190 -503 -226
+ 197 -503 -503 -503
+ 122 -96 -96 -65
diff --git a/profiles/vertebrates/MA0615.1.pwm b/profiles/vertebrates/MA0615.1.pwm
index e69de29..8195fbf 100644
--- a/profiles/vertebrates/MA0615.1.pwm
+++ b/profiles/vertebrates/MA0615.1.pwm
@@ -0,0 +1,17 @@
+ -50 5 45 -17
+ 41 28 -65 -29
+ -103 -11 45 28
+ -83 -17 20 49
+ -83 -153 63 63
+ -189 -209 36 115
+ 142 -297 15 -346
+ -346 188 -346 -297
+ -297 -346 188 -346
+ -346 15 -297 142
+ 115 36 -209 -189
+ 63 63 -153 -83
+ -23 -11 52 -36
+ 74 -67 -44 -7
+ -42 5 -11 37
+ 11 -21 30 -28
+ -5 0 10 -5
diff --git a/profiles/vertebrates/MA0616.1.pwm b/profiles/vertebrates/MA0616.1.pwm
index e69de29..774a37f 100644
--- a/profiles/vertebrates/MA0616.1.pwm
+++ b/profiles/vertebrates/MA0616.1.pwm
@@ -0,0 +1,13 @@
+ -22 -22 -22 50
+ 44 -33 -33 8
+ 44 -33 -33 8
+ -3 40 -3 -48
+ -150 -69 142 -150
+ 124 -503 65 -503
+ 17 149 -503 -503
+ 186 -503 -173 -503
+ -50 156 -255 -255
+ -98 -208 159 -208
+ -208 -208 -208 172
+ -77 -167 148 -167
+ -7 76 -56 -56
diff --git a/profiles/vertebrates/MA0616.2.pwm b/profiles/vertebrates/MA0616.2.pwm
index 6947bf5..80c0164 100644
--- a/profiles/vertebrates/MA0616.2.pwm
+++ b/profiles/vertebrates/MA0616.2.pwm
@@ -1,10 +1,10 @@
- -186 -124 159 -182
- -108 -152 142 -100
- -421 195 -469 -491
- 161 -10000 -6 -10000
- -10000 198 -10000 -406
- -10000 -10000 200 -10000
- -10000 -113 -10000 182
- -533 -715 199 -10000
- -233 85 -100 58
- -113 107 -29 -69
+ -183 -122 158 -179
+ -107 -150 141 -99
+ -396 194 -434 -451
+ 159 -646 -6 -646
+ -648 197 -648 -383
+ -646 -646 199 -646
+ -663 -111 -663 181
+ -480 -578 198 -647
+ -227 84 -98 58
+ -112 106 -29 -68
diff --git a/profiles/vertebrates/MA0618.1.pwm b/profiles/vertebrates/MA0618.1.pwm
index 3109481..2eff663 100644
--- a/profiles/vertebrates/MA0618.1.pwm
+++ b/profiles/vertebrates/MA0618.1.pwm
@@ -1,8 +1,8 @@
- -20 -93 -52 94
- -10000 -235 -10000 193
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 7 -10000 156
- -81 -10000 -107 156
- 155 -10000 10 -10000
- -311 -113 168 -213
+ -20 -89 -50 91
+ -503 -218 -503 189
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 7 -503 153
+ -77 -503 -102 153
+ 152 -503 10 -503
+ -280 -108 165 -199
diff --git a/profiles/vertebrates/MA0619.1.pwm b/profiles/vertebrates/MA0619.1.pwm
index e69de29..19f6f0b 100644
--- a/profiles/vertebrates/MA0619.1.pwm
+++ b/profiles/vertebrates/MA0619.1.pwm
@@ -0,0 +1,9 @@
+ 70 -138 -23 18
+ -503 -503 -503 197
+ -503 -503 -503 197
+ -503 -23 -503 163
+ 79 -503 114 -503
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -120 -24 -503 143
+ -4 -1 -63 47
diff --git a/profiles/vertebrates/MA0620.1.pwm b/profiles/vertebrates/MA0620.1.pwm
index e69de29..095cc1b 100644
--- a/profiles/vertebrates/MA0620.1.pwm
+++ b/profiles/vertebrates/MA0620.1.pwm
@@ -0,0 +1,10 @@
+ 13 -36 31 -18
+ 65 -154 87 -195
+ -160 -133 -126 151
+ -411 195 -457 -470
+ 179 -211 -343 -216
+ -402 151 -167 -35
+ -65 -266 164 -362
+ -7 -37 -114 86
+ -284 -284 179 -193
+ -3 -21 44 -32
diff --git a/profiles/vertebrates/MA0620.2.pwm b/profiles/vertebrates/MA0620.2.pwm
index e69de29..cf19ce3 100644
--- a/profiles/vertebrates/MA0620.2.pwm
+++ b/profiles/vertebrates/MA0620.2.pwm
@@ -0,0 +1,18 @@
+ 4 -7 -8 10
+ 7 -7 0 0
+ 68 -94 -29 8
+ 12 -170 90 -43
+ -28 -168 148 -357
+ -293 -179 -260 177
+ -609 198 -541 -619
+ 197 -510 -572 -455
+ -602 163 -397 -29
+ -29 -397 163 -602
+ -455 -572 -510 197
+ -619 -541 198 -610
+ 177 -260 -179 -294
+ -357 148 -168 -29
+ -43 90 -170 12
+ 8 -29 -94 68
+ 0 0 -7 7
+ 10 -8 -7 4
diff --git a/profiles/vertebrates/MA0620.3.pwm b/profiles/vertebrates/MA0620.3.pwm
index 5654987..c5609bc 100644
--- a/profiles/vertebrates/MA0620.3.pwm
+++ b/profiles/vertebrates/MA0620.3.pwm
@@ -1,18 +1,18 @@
- 9 -14 -14 17
- 17 -17 -7 4
- 40 -45 -14 6
- 58 -114 22 -17
- 29 -161 121 -291
- -272 -167 -241 174
- -607 198 -525 -625
- 195 -440 -508 -439
- -567 159 -380 -15
- -15 -380 159 -567
- -439 -508 -440 195
- -625 -525 198 -607
- 174 -241 -167 -272
- -291 121 -161 29
- -17 22 -114 58
- 6 -14 -45 40
- 4 -7 -17 17
- 17 -14 -14 9
+ 9 -14 -14 16
+ 17 -17 -7 4
+ 40 -45 -14 6
+ 57 -113 22 -17
+ 29 -160 121 -287
+ -269 -166 -238 174
+ -573 198 -506 -588
+ 195 -429 -491 -428
+ -541 158 -373 -15
+ -15 -373 158 -541
+ -428 -491 -429 195
+ -588 -506 198 -573
+ 174 -238 -166 -269
+ -287 121 -160 29
+ -17 22 -113 57
+ 6 -14 -45 40
+ 4 -7 -17 17
+ 16 -14 -14 9
diff --git a/profiles/vertebrates/MA0621.1.pwm b/profiles/vertebrates/MA0621.1.pwm
index 2dd2e77..d903566 100644
--- a/profiles/vertebrates/MA0621.1.pwm
+++ b/profiles/vertebrates/MA0621.1.pwm
@@ -1,11 +1,11 @@
- 32 -13 -13 -13
- 46 -74 6 -4
- -94 -78 -244 144
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 191 -357 -357 -357
- -13 -132 96 -44
- -29 -29 21 27
+ 31 -12 -12 -12
+ 45 -71 6 -3
+ -90 -75 -226 141
+ -503 -503 -503 197
+ 197 -503 -503 -503
+ 197 -503 -503 -503
+ -503 -503 -503 197
+ -503 -503 -503 197
+ 187 -316 -316 -316
+ -13 -126 94 -43
+ -28 -28 21 26
diff --git a/profiles/vertebrates/MA0622.1.pwm b/profiles/vertebrates/MA0622.1.pwm
index ffdf2eb..9e13e6d 100644
--- a/profiles/vertebrates/MA0622.1.pwm
+++ b/profiles/vertebrates/MA0622.1.pwm
@@ -1,8 +1,8 @@
- -224 7 75 7
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -41 -199 0 100
+ -208 7 73 7
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 197 -503 -503
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -40 -186 0 97
diff --git a/profiles/vertebrates/MA0623.1.pwm b/profiles/vertebrates/MA0623.1.pwm
index e69de29..87f1162 100644
--- a/profiles/vertebrates/MA0623.1.pwm
+++ b/profiles/vertebrates/MA0623.1.pwm
@@ -0,0 +1,10 @@
+ 75 -109 -9 -14
+ -54 122 -53 -178
+ 11 143 -289 -356
+ 138 -259 -40 -109
+ -485 -184 -77 163
+ 164 -79 -201 -393
+ -162 -70 -377 158
+ -370 -486 177 -104
+ -246 -70 74 62
+ -137 11 -9 67
diff --git a/profiles/vertebrates/MA0623.2.pwm b/profiles/vertebrates/MA0623.2.pwm
index e69de29..e296a1c 100644
--- a/profiles/vertebrates/MA0623.2.pwm
+++ b/profiles/vertebrates/MA0623.2.pwm
@@ -0,0 +1,10 @@
+ 84 -281 101 -428
+ 110 -1 -27 -495
+ -590 198 -529 -590
+ 196 -592 -354 -592
+ -560 -284 -595 193
+ 195 -593 -327 -593
+ -593 -318 -593 195
+ -590 -590 198 -590
+ -456 -42 4 112
+ -353 96 -225 82
diff --git a/profiles/vertebrates/MA0624.1.pwm b/profiles/vertebrates/MA0624.1.pwm
index e69de29..64e8a5e 100644
--- a/profiles/vertebrates/MA0624.1.pwm
+++ b/profiles/vertebrates/MA0624.1.pwm
@@ -0,0 +1,10 @@
+ 60 -86 -56 33
+ -14 -36 -39 63
+ -64 -193 -99 137
+ -326 -259 -411 188
+ -316 -280 -349 187
+ -356 192 -402 -411
+ -393 192 -432 -331
+ 102 -229 50 -151
+ -12 6 -95 60
+ -12 -13 -35 47
diff --git a/profiles/vertebrates/MA0624.2.pwm b/profiles/vertebrates/MA0624.2.pwm
index e69de29..c3ee94e 100644
--- a/profiles/vertebrates/MA0624.2.pwm
+++ b/profiles/vertebrates/MA0624.2.pwm
@@ -0,0 +1,12 @@
+ -12 19 18 -31
+ 63 -16 -33 -40
+ 93 -54 -24 -85
+ -341 -267 -421 189
+ -439 -558 197 -542
+ -426 -546 196 -439
+ 196 -498 -507 -441
+ 197 -558 -492 -474
+ 193 -402 -464 -345
+ 109 -50 -43 -122
+ 47 -96 -93 65
+ 37 -42 -17 9
diff --git a/profiles/vertebrates/MA0625.1.pwm b/profiles/vertebrates/MA0625.1.pwm
index 106d426..25f923e 100644
--- a/profiles/vertebrates/MA0625.1.pwm
+++ b/profiles/vertebrates/MA0625.1.pwm
@@ -1,10 +1,10 @@
- 75 -143 -85 48
- -48 -47 -57 92
- -110 -264 -178 162
- -416 -464 -564 196
- -638 -344 -480 195
- -280 190 -797 -306
- -497 194 -344 -464
- 114 -268 45 -190
- -53 1 -91 83
- -22 -24 -53 68
+ 73 -136 -81 46
+ -46 -45 -55 90
+ -105 -243 -167 159
+ -356 -385 -432 192
+ -457 -306 -393 192
+ -255 187 -486 -277
+ -402 191 -306 -385
+ 112 -246 44 -178
+ -51 1 -87 81
+ -21 -24 -51 66
diff --git a/profiles/vertebrates/MA0625.2.pwm b/profiles/vertebrates/MA0625.2.pwm
index bd97e42..0a4b2c3 100644
--- a/profiles/vertebrates/MA0625.2.pwm
+++ b/profiles/vertebrates/MA0625.2.pwm
@@ -1,9 +1,9 @@
- 72 -51 10 -80
- -251 49 -187 111
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 175 -274 -108 -776
- 196 -10000 -304 -10000
- 138 -51 -225 -105
- 49 39 -52 -77
- 30 -14 -71 32
+ 72 -50 10 -79
+ -243 48 -183 110
+ -615 -615 198 -615
+ -615 -615 198 -615
+ 174 -264 -106 -592
+ 194 -619 -290 -619
+ 137 -50 -220 -104
+ 49 38 -51 -76
+ 29 -14 -69 32
diff --git a/profiles/vertebrates/MA0626.1.pwm b/profiles/vertebrates/MA0626.1.pwm
index e69de29..e845571 100644
--- a/profiles/vertebrates/MA0626.1.pwm
+++ b/profiles/vertebrates/MA0626.1.pwm
@@ -0,0 +1,10 @@
+ 12 -48 22 4
+ -67 58 73 -220
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -154 185 -503 -503
+ -154 -503 185 -503
+ -503 -503 -503 197
+ -154 -503 185 -503
+ -165 -52 -40 115
+ 24 25 -30 -30
diff --git a/profiles/vertebrates/MA0627.1.pwm b/profiles/vertebrates/MA0627.1.pwm
index 8363d95..125e354 100644
--- a/profiles/vertebrates/MA0627.1.pwm
+++ b/profiles/vertebrates/MA0627.1.pwm
@@ -1,16 +1,16 @@
- -64 -32 -32 82
- -6 -18 -74 64
- -40 -94 68 16
- -147 -106 -264 158
- 199 -10000 -10000 -464
- -10000 -463 -10000 199
- -10000 -10000 191 -206
- -10000 188 -10000 -163
- 157 -10000 -10000 6
- 186 -10000 -464 -164
- 199 -10000 -10000 -464
- -364 -10000 -364 194
- -74 -64 21 68
- 88 -6 -118 -40
- 23 -63 50 -38
- 73 -4 -46 -63
+ -57 -29 -29 76
+ -5 -17 -65 59
+ -36 -83 63 15
+ -126 -92 -208 149
+ 188 -346 -346 -298
+ -345 -296 -345 188
+ -346 -346 181 -169
+ -345 178 -345 -138
+ 148 -346 -346 5
+ 177 -346 -298 -139
+ 188 -346 -346 -298
+ -261 -346 -261 184
+ -65 -57 20 63
+ 82 -5 -103 -36
+ 21 -56 46 -34
+ 67 -4 -41 -56
diff --git a/profiles/vertebrates/MA0627.2.pwm b/profiles/vertebrates/MA0627.2.pwm
index e69de29..db5b6cd 100644
--- a/profiles/vertebrates/MA0627.2.pwm
+++ b/profiles/vertebrates/MA0627.2.pwm
@@ -0,0 +1,13 @@
+ 31 -30 -38 24
+ 93 -103 -67 -2
+ -71 -102 -219 142
+ 196 -580 -509 -383
+ -361 -521 -342 193
+ -376 -550 189 -229
+ -381 184 -363 -190
+ 197 -666 -616 -388
+ 187 -449 -403 -208
+ 198 -598 -559 -518
+ -144 -199 -176 163
+ 22 -40 -8 18
+ 43 -23 -81 30
diff --git a/profiles/vertebrates/MA0628.1.pwm b/profiles/vertebrates/MA0628.1.pwm
index e69de29..cafda1d 100644
--- a/profiles/vertebrates/MA0628.1.pwm
+++ b/profiles/vertebrates/MA0628.1.pwm
@@ -0,0 +1,10 @@
+ 100 -36 -24 -141
+ -70 48 -75 48
+ -269 -385 -402 189
+ 182 -173 -402 -332
+ 187 -262 -356 -356
+ -356 -356 -262 187
+ -332 -402 -173 182
+ 189 -402 -385 -269
+ 48 -75 48 -70
+ -141 -24 -36 100
diff --git a/profiles/vertebrates/MA0629.1.pwm b/profiles/vertebrates/MA0629.1.pwm
index 7a52a77..3523b1e 100644
--- a/profiles/vertebrates/MA0629.1.pwm
+++ b/profiles/vertebrates/MA0629.1.pwm
@@ -1,17 +1,17 @@
- 111 -94 -74 -47
- 39 15 -13 -57
- -54 -117 62 42
- 26 16 -12 -40
- -94 116 -206 0
- -306 -464 193 -464
- -147 160 -74 -10000
- -466 -10000 -466 197
- -264 -10000 191 -364
- -466 -466 -10000 197
- 118 -10000 -10000 80
- 164 -264 -306 -74
- 107 -131 -463 54
- 32 -117 42 -4
- -6 53 16 -106
- 31 -64 78 -132
- 73 -93 -131 50
+ 104 -83 -65 -42
+ 36 14 -12 -51
+ -48 -101 57 38
+ 24 15 -11 -36
+ -83 109 -169 0
+ -232 -297 183 -297
+ -126 151 -65 -346
+ -299 -347 -299 187
+ -208 -346 181 -261
+ -299 -299 -347 187
+ 110 -345 -345 74
+ 155 -208 -232 -65
+ 100 -112 -296 50
+ 30 -101 38 -4
+ -5 49 15 -92
+ 28 -57 73 -114
+ 67 -81 -112 46
diff --git a/profiles/vertebrates/MA0630.1.pwm b/profiles/vertebrates/MA0630.1.pwm
index e69de29..e37258f 100644
--- a/profiles/vertebrates/MA0630.1.pwm
+++ b/profiles/vertebrates/MA0630.1.pwm
@@ -0,0 +1,8 @@
+ -46 26 -60 50
+ -165 -277 -393 179
+ 174 -221 -204 -229
+ 195 -470 -432 -470
+ -349 -349 -289 188
+ -128 -216 -149 159
+ 72 -220 75 -112
+ 26 -40 59 -87
diff --git a/profiles/vertebrates/MA0631.1.pwm b/profiles/vertebrates/MA0631.1.pwm
index e69de29..72f3d07 100644
--- a/profiles/vertebrates/MA0631.1.pwm
+++ b/profiles/vertebrates/MA0631.1.pwm
@@ -0,0 +1,17 @@
+ 38 -124 50 -21
+ 144 -139 -139 -92
+ -11 -187 -50 106
+ 86 -112 34 -112
+ -153 -153 162 -208
+ -263 -263 174 -155
+ -57 -297 164 -346
+ -345 -345 -207 184
+ 186 -346 -232 -346
+ -345 -345 -345 190
+ -296 187 -345 -296
+ 178 -232 -232 -261
+ -36 79 -126 10
+ 0 -11 -29 33
+ 64 -138 -101 64
+ 40 -18 -44 9
+ -140 -104 -7 112
diff --git a/profiles/vertebrates/MA0632.1.pwm b/profiles/vertebrates/MA0632.1.pwm
index e69de29..c7063cc 100644
--- a/profiles/vertebrates/MA0632.1.pwm
+++ b/profiles/vertebrates/MA0632.1.pwm
@@ -0,0 +1,10 @@
+ 7 -29 29 -14
+ -109 -13 53 24
+ -197 177 -337 -213
+ 56 -184 42 -13
+ -421 182 -326 -171
+ -171 -326 182 -421
+ -13 42 -184 56
+ -213 -337 177 -197
+ 24 53 -13 -109
+ -14 29 -29 7
diff --git a/profiles/vertebrates/MA0632.2.pwm b/profiles/vertebrates/MA0632.2.pwm
index e69de29..076148c 100644
--- a/profiles/vertebrates/MA0632.2.pwm
+++ b/profiles/vertebrates/MA0632.2.pwm
@@ -0,0 +1,10 @@
+ -266 -77 30 102
+ -795 200 -795 -795
+ 138 -857 9 -157
+ -798 196 -798 -344
+ -350 -798 196 -798
+ -334 162 -798 -26
+ -242 -472 192 -803
+ -358 187 -209 -481
+ 84 13 -108 -64
+ -77 139 -165 -106
diff --git a/profiles/vertebrates/MA0633.1.pwm b/profiles/vertebrates/MA0633.1.pwm
index e69de29..a1798a5 100644
--- a/profiles/vertebrates/MA0633.1.pwm
+++ b/profiles/vertebrates/MA0633.1.pwm
@@ -0,0 +1,10 @@
+ 26 -31 25 -31
+ 17 119 -175 -175
+ -503 197 -503 -503
+ 197 -503 -503 -503
+ -503 -20 -503 162
+ 163 -503 -24 -503
+ -503 -503 -503 197
+ -503 -503 197 -503
+ -216 -216 -66 155
+ -45 -45 12 53
diff --git a/profiles/vertebrates/MA0633.2.pwm b/profiles/vertebrates/MA0633.2.pwm
index 4544079..167f219 100644
--- a/profiles/vertebrates/MA0633.2.pwm
+++ b/profiles/vertebrates/MA0633.2.pwm
@@ -1,10 +1,10 @@
- 7 17 5 -34
- 15 23 35 -118
- -969 200 -726 -769
- 198 -517 -507 -10000
- -1043 -960 200 -921
- -921 200 -960 -1043
- -10000 -507 -518 198
- -769 -726 200 -969
- -118 35 23 15
- -33 5 17 7
+ 7 17 5 -34
+ 15 23 35 -118
+ -746 199 -651 -675
+ 197 -496 -488 -781
+ -759 -744 199 -734
+ -734 199 -744 -759
+ -781 -488 -497 197
+ -675 -651 199 -746
+ -118 35 23 15
+ -33 5 17 7
diff --git a/profiles/vertebrates/MA0634.1.pwm b/profiles/vertebrates/MA0634.1.pwm
index e69de29..a66c0e6 100644
--- a/profiles/vertebrates/MA0634.1.pwm
+++ b/profiles/vertebrates/MA0634.1.pwm
@@ -0,0 +1,10 @@
+ -64 14 -88 78
+ -98 78 -76 24
+ -148 57 -263 99
+ 166 -224 -146 -194
+ 187 -267 -372 -309
+ -436 -442 -603 196
+ -174 -168 -320 171
+ 174 -233 -443 -125
+ 40 -23 16 -48
+ 48 31 -38 -74
diff --git a/profiles/vertebrates/MA0635.1.pwm b/profiles/vertebrates/MA0635.1.pwm
index bf0bc73..01ae878 100644
--- a/profiles/vertebrates/MA0635.1.pwm
+++ b/profiles/vertebrates/MA0635.1.pwm
@@ -1,10 +1,10 @@
- 5 10 44 -91
- 5 34 -87 20
- -239 -10000 -10000 193
- 179 -10000 -10000 -91
- 200 -10000 -10000 -10000
- 151 -528 -206 -17
- -358 128 -538 55
- -133 -10000 171 -156
- 17 -55 60 -56
- -57 -10 -133 100
+ 5 10 44 -90
+ 5 34 -86 20
+ -234 -681 -681 192
+ 179 -694 -694 -90
+ 199 -674 -674 -674
+ 150 -496 -203 -16
+ -349 127 -508 55
+ -131 -703 170 -154
+ 16 -55 60 -55
+ -56 -10 -131 99
diff --git a/profiles/vertebrates/MA0636.1.pwm b/profiles/vertebrates/MA0636.1.pwm
index e69de29..b82de49 100644
--- a/profiles/vertebrates/MA0636.1.pwm
+++ b/profiles/vertebrates/MA0636.1.pwm
@@ -0,0 +1,10 @@
+ 27 -118 121 -493
+ -401 -567 -4 156
+ -599 198 -592 -605
+ 198 -546 -511 -593
+ -605 198 -605 -580
+ -599 -605 198 -612
+ -518 -530 -530 197
+ -605 -605 198 -612
+ 169 -47 -598 -532
+ -452 137 -111 -13
diff --git a/profiles/vertebrates/MA0638.1.pwm b/profiles/vertebrates/MA0638.1.pwm
index e69de29..0d6ae37 100644
--- a/profiles/vertebrates/MA0638.1.pwm
+++ b/profiles/vertebrates/MA0638.1.pwm
@@ -0,0 +1,14 @@
+ 1 -1 43 -61
+ -173 -56 -61 124
+ -250 -490 150 -6
+ 19 132 -367 -178
+ -263 176 -181 -263
+ 193 -412 -412 -384
+ -382 192 -382 -382
+ -394 -466 194 -414
+ -413 -413 -441 194
+ -228 181 -250 -304
+ 185 -367 -235 -299
+ -282 54 -134 101
+ -48 115 -129 -61
+ 59 -59 32 -79
diff --git a/profiles/vertebrates/MA0639.1.pwm b/profiles/vertebrates/MA0639.1.pwm
index 8068075..bc299de 100644
--- a/profiles/vertebrates/MA0639.1.pwm
+++ b/profiles/vertebrates/MA0639.1.pwm
@@ -1,12 +1,12 @@
- -19 -5 10 12
- 83 -88 71 -448
- -847 -880 -980 200
- -891 -833 -168 188
- 190 -10000 -193 -889
- -1026 154 -686 12
- 30 -724 146 -1133
- -932 -182 -809 189
- 194 -268 -805 -827
- 200 -1079 -979 -979
- -380 75 -51 62
- 54 -10 -2 -66
+ -19 -5 10 12
+ 83 -87 70 -419
+ -604 -609 -621 198
+ -621 -610 -164 187
+ 189 -643 -189 -619
+ -666 153 -583 12
+ 30 -604 146 -680
+ -625 -178 -604 188
+ 193 -259 -600 -605
+ 199 -627 -621 -621
+ -362 75 -51 62
+ 53 -10 -2 -65
diff --git a/profiles/vertebrates/MA0640.1.pwm b/profiles/vertebrates/MA0640.1.pwm
index e69de29..f078ca9 100644
--- a/profiles/vertebrates/MA0640.1.pwm
+++ b/profiles/vertebrates/MA0640.1.pwm
@@ -0,0 +1,13 @@
+ 88 -102 -118 30
+ 185 -391 -449 -177
+ -246 162 -63 -344
+ -141 169 -138 -543
+ -151 184 -493 -530
+ -537 -575 198 -575
+ -576 -509 197 -500
+ 196 -480 -480 -494
+ 195 -483 -496 -371
+ -198 -582 188 -476
+ -363 -313 -432 191
+ 119 -250 10 -111
+ 94 -114 5 -76
diff --git a/profiles/vertebrates/MA0640.2.pwm b/profiles/vertebrates/MA0640.2.pwm
index 6ef9b88..07dea94 100644
--- a/profiles/vertebrates/MA0640.2.pwm
+++ b/profiles/vertebrates/MA0640.2.pwm
@@ -1,14 +1,14 @@
- -5 6 -24 20
- -30 12 -3 16
- -109 103 -81 -12
- -91 121 -156 -29
- 174 -257 -221 -192
- -445 179 -315 -139
- -337 -315 -398 190
- -481 -368 -367 193
- -420 194 -442 -393
- -476 196 -468 -467
- -397 -320 -261 187
- -235 -39 122 -51
- -43 13 20 2
- -19 -42 -101 91
+ -5 6 -24 20
+ -30 12 -3 16
+ -109 102 -80 -12
+ -90 120 -154 -28
+ 174 -254 -219 -190
+ -432 179 -310 -138
+ -331 -310 -389 189
+ -464 -361 -359 192
+ -409 193 -429 -384
+ -460 195 -453 -452
+ -387 -315 -258 187
+ -232 -38 122 -51
+ -43 13 20 2
+ -19 -41 -101 91
diff --git a/profiles/vertebrates/MA0641.1.pwm b/profiles/vertebrates/MA0641.1.pwm
index e69de29..72640d6 100644
--- a/profiles/vertebrates/MA0641.1.pwm
+++ b/profiles/vertebrates/MA0641.1.pwm
@@ -0,0 +1,12 @@
+ 115 -122 -70 -45
+ 155 -159 -339 -63
+ -70 148 -201 -155
+ -351 180 -134 -496
+ -213 188 -426 -506
+ -510 -527 197 -527
+ -527 -527 197 -495
+ 195 -457 -425 -425
+ 193 -389 -426 -400
+ -267 -364 190 -453
+ -450 -210 -293 184
+ 59 -159 78 -118
diff --git a/profiles/vertebrates/MA0642.1.pwm b/profiles/vertebrates/MA0642.1.pwm
index 3b54452..e5865d0 100644
--- a/profiles/vertebrates/MA0642.1.pwm
+++ b/profiles/vertebrates/MA0642.1.pwm
@@ -1,10 +1,10 @@
- -3 45 15 -87
- -96 73 0 -26
- -540 127 -360 56
- 161 -86 -172 -335
- 191 -207 -597 -10000
- -10000 -10000 -10000 200
- -10000 -43 -148 154
- 196 -10000 -323 -10000
- -24 25 61 -122
- -119 78 21 -54
+ -3 44 14 -84
+ -92 71 0 -26
+ -440 125 -325 55
+ 159 -84 -166 -312
+ 188 -196 -468 -542
+ -532 -532 -532 197
+ -578 -43 -144 152
+ 193 -536 -297 -536
+ -23 25 60 -117
+ -114 77 20 -53
diff --git a/profiles/vertebrates/MA0642.2.pwm b/profiles/vertebrates/MA0642.2.pwm
index e69de29..ec10a75 100644
--- a/profiles/vertebrates/MA0642.2.pwm
+++ b/profiles/vertebrates/MA0642.2.pwm
@@ -0,0 +1,8 @@
+ 9 41 -4 -66
+ -189 98 7 -51
+ -465 133 -465 50
+ 150 -63 -259 -151
+ 191 -470 -258 -470
+ -465 -465 -465 196
+ -269 -469 -469 191
+ 171 -438 -64 -489
diff --git a/profiles/vertebrates/MA0643.1.pwm b/profiles/vertebrates/MA0643.1.pwm
index 754158b..c375f8d 100644
--- a/profiles/vertebrates/MA0643.1.pwm
+++ b/profiles/vertebrates/MA0643.1.pwm
@@ -1,10 +1,10 @@
- -96 -19 -128 113
- -251 131 28 -304
- 192 -10000 -270 -433
- 200 -828 -678 -955
- -831 -909 197 -368
- -10000 -778 200 -806
- -311 -663 -227 187
- -920 186 -393 -169
- 185 -693 -141 -611
- 21 -22 -166 74
+ -95 -18 -127 113
+ -246 131 28 -296
+ 192 -693 -264 -412
+ 199 -641 -583 -665
+ -643 -661 196 -354
+ -686 -625 199 -634
+ -302 -580 -223 187
+ -672 185 -377 -166
+ 184 -597 -139 -550
+ 21 -21 -163 73
diff --git a/profiles/vertebrates/MA0644.1.pwm b/profiles/vertebrates/MA0644.1.pwm
index fd6826d..6b668f9 100644
--- a/profiles/vertebrates/MA0644.1.pwm
+++ b/profiles/vertebrates/MA0644.1.pwm
@@ -1,10 +1,10 @@
- 26 -13 9 -28
- -46 77 -73 -6
- -176 88 -437 86
- 168 -188 -170 -221
- 183 -204 -353 -320
- -363 -323 -1119 193
- -160 -131 -315 166
- 187 -436 -444 -196
- 44 -22 20 -65
- -23 71 -52 -30
+ 26 -13 9 -28
+ -46 77 -73 -6
+ -174 88 -423 85
+ 168 -186 -169 -219
+ 183 -201 -346 -314
+ -354 -317 -746 193
+ -159 -130 -310 165
+ 186 -422 -430 -194
+ 44 -22 20 -64
+ -23 71 -51 -30
diff --git a/profiles/vertebrates/MA0644.2.pwm b/profiles/vertebrates/MA0644.2.pwm
index 1d4f05e..11ee2b3 100644
--- a/profiles/vertebrates/MA0644.2.pwm
+++ b/profiles/vertebrates/MA0644.2.pwm
@@ -1,8 +1,8 @@
- -242 107 -144 43
- -310 58 -10000 125
- 188 -307 -270 -488
- 199 -570 -10000 -10000
- -10000 -10000 -10000 200
- -680 -238 -454 191
- 190 -10000 -252 -325
- 3 1 37 -55
+ -238 106 -142 43
+ -303 58 -715 125
+ 188 -300 -265 -463
+ 199 -525 -711 -711
+ -711 -711 -711 199
+ -599 -234 -434 190
+ 189 -721 -247 -317
+ 2 1 37 -54
diff --git a/profiles/vertebrates/MA0645.1.pwm b/profiles/vertebrates/MA0645.1.pwm
index e69de29..1cc14a2 100644
--- a/profiles/vertebrates/MA0645.1.pwm
+++ b/profiles/vertebrates/MA0645.1.pwm
@@ -0,0 +1,10 @@
+ 73 21 -27 -149
+ -237 35 119 -203
+ -53 157 -236 -271
+ -580 -618 198 -554
+ -526 -619 198 -523
+ 198 -618 -580 -618
+ 197 -556 -495 -474
+ -126 -466 182 -634
+ -328 -123 -297 174
+ 29 -221 93 -61
diff --git a/profiles/vertebrates/MA0646.1.pwm b/profiles/vertebrates/MA0646.1.pwm
index e69de29..36ff10b 100644
--- a/profiles/vertebrates/MA0646.1.pwm
+++ b/profiles/vertebrates/MA0646.1.pwm
@@ -0,0 +1,11 @@
+ -108 67 -6 -4
+ 163 -190 -77 -453
+ -478 -483 -535 196
+ -57 -439 171 -692
+ -253 184 -330 -271
+ -337 -448 171 -77
+ -710 -696 199 -619
+ -710 -656 199 -678
+ -518 -42 -517 168
+ 132 -155 -11 -207
+ -270 132 -15 -114
diff --git a/profiles/vertebrates/MA0647.1.pwm b/profiles/vertebrates/MA0647.1.pwm
index f4d5aba..786357d 100644
--- a/profiles/vertebrates/MA0647.1.pwm
+++ b/profiles/vertebrates/MA0647.1.pwm
@@ -1,12 +1,12 @@
- 111 -40 -133 -54
- 154 -297 -107 -104
- 190 -780 -257 -343
- 198 -930 -650 -450
- -10000 200 -10000 -10000
- -108 167 -394 -183
- -121 -389 170 -194
- -10000 -928 200 -10000
- -308 -733 -833 195
- -247 -192 -587 182
- -41 -91 -205 130
- 14 -111 7 47
+ 109 -39 -129 -53
+ 153 -283 -104 -101
+ 188 -538 -244 -317
+ 196 -549 -499 -396
+ -557 198 -557 -557
+ -105 165 -363 -177
+ -118 -358 168 -187
+ -557 -547 198 -557
+ -288 -524 -542 193
+ -235 -185 -482 180
+ -40 -89 -199 129
+ 13 -107 7 46
diff --git a/profiles/vertebrates/MA0648.1.pwm b/profiles/vertebrates/MA0648.1.pwm
index 5fde67c..c837055 100644
--- a/profiles/vertebrates/MA0648.1.pwm
+++ b/profiles/vertebrates/MA0648.1.pwm
@@ -1,10 +1,10 @@
- -28 33 42 -79
- -67 92 -146 15
- -10000 -483 -10000 199
- 192 -450 -319 -417
- 200 -10000 -10000 -10000
- -10000 -597 -344 196
- -222 165 -210 -130
- -272 155 -133 -92
- -86 66 19 -45
- -47 53 -130 51
+ -28 33 42 -77
+ -66 92 -143 15
+ -627 -439 -627 197
+ 191 -415 -305 -389
+ 199 -625 -625 -625
+ -629 -513 -327 195
+ -216 164 -205 -128
+ -265 154 -131 -91
+ -85 65 19 -44
+ -46 53 -127 51
diff --git a/profiles/vertebrates/MA0649.1.pwm b/profiles/vertebrates/MA0649.1.pwm
index e69de29..06a5494 100644
--- a/profiles/vertebrates/MA0649.1.pwm
+++ b/profiles/vertebrates/MA0649.1.pwm
@@ -0,0 +1,10 @@
+ -219 -229 175 -226
+ 52 -54 45 -97
+ -245 181 -246 -291
+ 188 -549 -183 -549
+ -469 197 -540 -540
+ -368 -255 190 -547
+ -341 -193 -551 186
+ -545 -341 192 -354
+ -305 107 -186 60
+ -64 93 -23 -75
diff --git a/profiles/vertebrates/MA0650.1.pwm b/profiles/vertebrates/MA0650.1.pwm
index df93ffb..13cdffc 100644
--- a/profiles/vertebrates/MA0650.1.pwm
+++ b/profiles/vertebrates/MA0650.1.pwm
@@ -1,10 +1,10 @@
- -63 136 -44 -458
- -657 137 -357 39
- 142 -40 -336 -110
- 183 -10000 -10000 -116
- -10000 -10000 -10000 200
- 184 -294 -379 -220
- 191 -10000 -10000 -204
- 198 -438 -10000 -10000
- 136 -68 -113 -150
- 75 22 -142 -36
+ -60 132 -41 -358
+ -421 134 -301 38
+ 138 -38 -285 -103
+ 177 -407 -407 -106
+ -391 -391 -391 193
+ 178 -245 -297 -192
+ 184 -400 -400 -178
+ 191 -318 -393 -393
+ 132 -64 -106 -139
+ 71 21 -127 -34
diff --git a/profiles/vertebrates/MA0650.2.pwm b/profiles/vertebrates/MA0650.2.pwm
index 9953f5f..13534ef 100644
--- a/profiles/vertebrates/MA0650.2.pwm
+++ b/profiles/vertebrates/MA0650.2.pwm
@@ -1,11 +1,11 @@
- 30 56 28 -373
- -233 159 -32 -10000
- -10000 192 -10000 -222
- 150 23 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 197 -10000 -384 -10000
- 200 -10000 -790 -10000
- 200 -10000 -10000 -10000
- 153 -43 -319 -201
- -67 128 -162 -69
+ 29 54 27 -323
+ -219 156 -31 -531
+ -498 189 -498 -206
+ 148 22 -539 -539
+ 196 -491 -491 -491
+ -491 -491 -491 196
+ 194 -493 -331 -493
+ 196 -491 -474 -491
+ 196 -491 -491 -491
+ 151 -41 -293 -190
+ -65 126 -154 -67
diff --git a/profiles/vertebrates/MA0650.3.pwm b/profiles/vertebrates/MA0650.3.pwm
index c45897a..c407516 100644
--- a/profiles/vertebrates/MA0650.3.pwm
+++ b/profiles/vertebrates/MA0650.3.pwm
@@ -1,12 +1,12 @@
- 37 -38 -16 6
- 0 -4 8 -4
- -158 155 -119 -171
- -176 171 -581 -126
- 171 -144 -488 -158
- 184 -415 -269 -221
- -536 -411 -422 195
- 187 -439 -341 -237
- 196 -511 -546 -435
- 194 -382 -489 -413
- 82 -42 -65 -24
- 29 -3 -51 14
+ 37 -38 -16 6
+ 0 -4 8 -4
+ -156 154 -118 -169
+ -173 170 -531 -125
+ 170 -142 -460 -156
+ 183 -398 -264 -218
+ -498 -395 -404 194
+ 187 -419 -330 -233
+ 196 -478 -505 -415
+ 193 -368 -461 -396
+ 82 -42 -64 -24
+ 28 -3 -51 14
diff --git a/profiles/vertebrates/MA0651.1.pwm b/profiles/vertebrates/MA0651.1.pwm
index e69de29..e20f6f6 100644
--- a/profiles/vertebrates/MA0651.1.pwm
+++ b/profiles/vertebrates/MA0651.1.pwm
@@ -0,0 +1,11 @@
+ 15 -120 84 -58
+ 6 -103 129 -625
+ -367 -359 -421 192
+ -325 188 -473 -259
+ -40 -586 168 -586
+ -464 -557 -557 197
+ 150 -504 -405 12
+ 195 -559 -559 -353
+ 193 -353 -442 -420
+ 131 -117 -177 -34
+ 20 3 -66 26
diff --git a/profiles/vertebrates/MA0651.2.pwm b/profiles/vertebrates/MA0651.2.pwm
index ff47444..7ffed6f 100644
--- a/profiles/vertebrates/MA0651.2.pwm
+++ b/profiles/vertebrates/MA0651.2.pwm
@@ -1,12 +1,12 @@
- 120 -119 -87 -48
- 7 -244 137 -245
- -161 -266 181 -10000
- -648 -404 -608 197
- -429 198 -761 -912
- -283 -10000 195 -10000
- -10000 -10000 -10000 200
- 166 -10000 -858 -28
- 200 -10000 -10000 -691
- 199 -746 -642 -663
- 179 -238 -324 -208
- 57 3 -145 17
+ 119 -117 -86 -47
+ 7 -240 136 -240
+ -159 -260 181 -700
+ -571 -388 -547 196
+ -409 197 -625 -668
+ -276 -694 194 -694
+ -694 -694 -694 199
+ 166 -695 -655 -27
+ 199 -695 -695 -593
+ 198 -619 -567 -579
+ 179 -234 -316 -205
+ 57 3 -143 17
diff --git a/profiles/vertebrates/MA0652.1.pwm b/profiles/vertebrates/MA0652.1.pwm
index e69de29..438d36e 100644
--- a/profiles/vertebrates/MA0652.1.pwm
+++ b/profiles/vertebrates/MA0652.1.pwm
@@ -0,0 +1,14 @@
+ -16 44 -133 44
+ -439 177 -548 -94
+ -603 -623 198 -609
+ 199 -609 -623 -623
+ 198 -624 -624 -483
+ 198 -623 -623 -603
+ -448 184 -146 -600
+ -612 171 -650 -53
+ -623 -623 199 -623
+ 198 -623 -603 -623
+ 197 -625 -611 -410
+ 198 -591 -623 -623
+ -584 174 -70 -566
+ -251 -39 -612 161
diff --git a/profiles/vertebrates/MA0653.1.pwm b/profiles/vertebrates/MA0653.1.pwm
index fb99119..8b010b4 100644
--- a/profiles/vertebrates/MA0653.1.pwm
+++ b/profiles/vertebrates/MA0653.1.pwm
@@ -1,15 +1,15 @@
- 192 -414 -442 -306
- 120 -107 -235 5
- -423 192 -480 -296
- -435 -820 198 -746
- 200 -744 -976 -10000
- 200 -10000 -10000 -818
- 200 -876 -10000 -976
- -443 190 -224 -669
- -607 168 -10000 -38
- -876 -10000 200 -976
- 200 -876 -10000 -10000
- 199 -977 -10000 -538
- 200 -10000 -10000 -818
- -786 190 -196 -886
- -317 34 -700 139
+ 190 -380 -401 -290
+ 119 -104 -227 4
+ -386 190 -428 -281
+ -394 -563 196 -548
+ 198 -546 -578 -587
+ 198 -587 -587 -561
+ 198 -569 -587 -578
+ -402 188 -215 -529
+ -514 167 -618 -37
+ -569 -587 198 -578
+ 198 -569 -587 -587
+ 197 -579 -588 -462
+ 198 -587 -587 -561
+ -563 188 -189 -579
+ -299 33 -536 137
diff --git a/profiles/vertebrates/MA0654.1.pwm b/profiles/vertebrates/MA0654.1.pwm
index 9fbfdf2..d138be7 100644
--- a/profiles/vertebrates/MA0654.1.pwm
+++ b/profiles/vertebrates/MA0654.1.pwm
@@ -1,8 +1,8 @@
- -70 74 -50 1
- -570 95 -10000 103
- 195 -348 -674 -448
- 198 -503 -10000 -571
- -10000 -10000 -10000 200
- -10000 -10000 -444 198
- 197 -10000 -10000 -343
- 58 -75 45 -87
+ -68 73 -49 1
+ -463 94 -554 102
+ 192 -320 -506 -395
+ 196 -428 -555 -464
+ -553 -553 -553 198
+ -555 -555 -391 196
+ 194 -556 -556 -316
+ 57 -73 44 -84
diff --git a/profiles/vertebrates/MA0655.1.pwm b/profiles/vertebrates/MA0655.1.pwm
index e69de29..6a90eb3 100644
--- a/profiles/vertebrates/MA0655.1.pwm
+++ b/profiles/vertebrates/MA0655.1.pwm
@@ -0,0 +1,9 @@
+ 184 -397 -162 -465
+ -478 -469 -521 196
+ -536 -499 195 -372
+ 195 -523 -511 -359
+ -413 151 6 -419
+ -469 -535 -469 196
+ -372 194 -500 -446
+ 197 -534 -534 -460
+ -402 -35 -510 164
diff --git a/profiles/vertebrates/MA0656.1.pwm b/profiles/vertebrates/MA0656.1.pwm
index e9faf8d..813bbd3 100644
--- a/profiles/vertebrates/MA0656.1.pwm
+++ b/profiles/vertebrates/MA0656.1.pwm
@@ -1,12 +1,12 @@
- -52 -15 86 -75
- 185 -236 -227 -864
- -1099 -941 -1099 200
- -923 -10000 189 -176
- 200 -977 -999 -999
- -1027 198 -1001 -419
- -341 -1029 197 -1161
- -867 -799 -977 200
- -188 190 -1068 -1268
- 200 -925 -941 -10000
- -707 94 -292 96
- -48 99 -56 -69
+ -51 -15 85 -75
+ 184 -233 -224 -691
+ -717 -698 -717 199
+ -703 -739 188 -174
+ 199 -704 -707 -707
+ -713 197 -709 -404
+ -333 -714 196 -724
+ -682 -660 -704 199
+ -186 189 -724 -734
+ 199 -695 -698 -728
+ -620 93 -286 95
+ -47 99 -56 -69
diff --git a/profiles/vertebrates/MA0657.1.pwm b/profiles/vertebrates/MA0657.1.pwm
index 6b36d1a..671f2b2 100644
--- a/profiles/vertebrates/MA0657.1.pwm
+++ b/profiles/vertebrates/MA0657.1.pwm
@@ -1,18 +1,18 @@
- 89 -172 17 -47
- -19 -418 -7 108
- 20 -10000 149 -480
- 33 123 -277 -195
- -182 180 -705 -212
- 199 -10000 -577 -10000
- -10000 199 -561 -683
- -500 -858 198 -641
- -10000 199 -10000 -584
- -652 200 -10000 -10000
- -880 199 -10000 -480
- -17 163 -10000 -584
- -741 32 -741 146
- -206 -89 -359 165
- -191 -198 -178 167
- -57 -98 -38 104
- -76 -196 -50 129
- -101 -137 110 -3
+ 88 -167 16 -46
+ -19 -385 -7 107
+ 20 -701 149 -453
+ 32 120 -252 -183
+ -166 175 -423 -191
+ 197 -557 -468 -557
+ -478 195 -415 -448
+ -440 -571 197 -516
+ -501 196 -501 -438
+ -450 196 -489 -489
+ -504 196 -515 -399
+ -16 161 -551 -468
+ -505 31 -505 143
+ -197 -87 -331 163
+ -186 -193 -174 166
+ -57 -97 -37 103
+ -74 -188 -49 127
+ -98 -132 108 -3
diff --git a/profiles/vertebrates/MA0658.1.pwm b/profiles/vertebrates/MA0658.1.pwm
index e69de29..1e9ffe9 100644
--- a/profiles/vertebrates/MA0658.1.pwm
+++ b/profiles/vertebrates/MA0658.1.pwm
@@ -0,0 +1,10 @@
+ 73 -52 47 -200
+ -141 106 -85 -2
+ -610 -215 -472 190
+ 181 -356 -133 -619
+ 198 -517 -602 -602
+ -605 -332 -515 195
+ -627 -78 -342 173
+ 191 -609 -219 -593
+ 34 -103 106 -266
+ -99 57 -60 44
diff --git a/profiles/vertebrates/MA0659.1.pwm b/profiles/vertebrates/MA0659.1.pwm
index 396abfd..81ccd55 100644
--- a/profiles/vertebrates/MA0659.1.pwm
+++ b/profiles/vertebrates/MA0659.1.pwm
@@ -1,21 +1,21 @@
- 82 -106 -38 -2
- 96 -182 -124 43
- 70 -100 -114 51
- 24 -55 -15 30
- -216 -55 -358 159
- -538 -453 197 -661
- -133 180 -725 -314
- -188 -164 -349 173
- -244 -337 170 -109
- 179 -235 -370 -187
- -162 65 82 -154
- -211 -396 -189 178
- -104 166 -290 -214
- 166 -346 -126 -162
- -343 -617 183 -157
- -658 194 -337 -450
- 146 -383 -19 -178
- 38 -42 -66 40
- 71 -144 -78 50
- 68 -131 -144 70
- 11 -50 -107 80
+ 81 -103 -38 -2
+ 95 -176 -121 43
+ 69 -98 -111 50
+ 24 -54 -15 30
+ -210 -54 -341 158
+ -480 -419 196 -548
+ -130 179 -568 -300
+ -184 -160 -332 172
+ -237 -323 169 -107
+ 177 -225 -344 -181
+ -158 64 81 -151
+ -205 -372 -184 177
+ -102 165 -279 -208
+ 165 -327 -123 -157
+ -327 -529 182 -154
+ -540 193 -320 -413
+ 145 -358 -18 -174
+ 38 -41 -65 39
+ 70 -140 -77 49
+ 67 -127 -141 69
+ 10 -49 -104 79
diff --git a/profiles/vertebrates/MA0659.2.pwm b/profiles/vertebrates/MA0659.2.pwm
index e69de29..11cd6cc 100644
--- a/profiles/vertebrates/MA0659.2.pwm
+++ b/profiles/vertebrates/MA0659.2.pwm
@@ -0,0 +1,15 @@
+ 8 -110 68 -19
+ 118 -136 -128 -10
+ -127 -56 140 -188
+ -412 -473 -452 195
+ -288 191 -502 -383
+ 195 -565 -468 -393
+ -416 -414 186 -202
+ -444 194 -451 -402
+ 187 -399 -300 -262
+ -12 -105 -90 104
+ -41 -187 -203 145
+ -63 -186 -231 152
+ -33 5 -157 87
+ -19 -14 -97 77
+ 14 -33 -44 45
diff --git a/profiles/vertebrates/MA0659.3.pwm b/profiles/vertebrates/MA0659.3.pwm
index e3c5393..6e73646 100644
--- a/profiles/vertebrates/MA0659.3.pwm
+++ b/profiles/vertebrates/MA0659.3.pwm
@@ -1,15 +1,15 @@
- 6 -20 28 -20
- 15 -86 -97 87
- -212 -107 163 -238
- 75 97 -231 -264
- -311 -244 -380 186
- -360 -366 188 -274
- 185 -362 -208 -375
- -260 158 -52 -274
- -265 -370 -416 189
- -286 188 -349 -361
- 189 -486 -302 -293
- -420 -450 190 -250
- -328 185 -252 -304
- 131 -138 -106 -60
- -1 -26 35 -15
+ 6 -20 28 -20
+ 15 -86 -96 87
+ -209 -106 163 -234
+ 74 97 -227 -259
+ -304 -239 -368 185
+ -349 -355 188 -268
+ 184 -351 -204 -363
+ -255 157 -52 -269
+ -259 -358 -400 188
+ -279 188 -339 -350
+ 188 -460 -295 -287
+ -404 -430 189 -245
+ -320 184 -247 -297
+ 130 -136 -105 -59
+ -1 -26 35 -15
diff --git a/profiles/vertebrates/MA0660.1.pwm b/profiles/vertebrates/MA0660.1.pwm
index e69de29..0fc2d63 100644
--- a/profiles/vertebrates/MA0660.1.pwm
+++ b/profiles/vertebrates/MA0660.1.pwm
@@ -0,0 +1,12 @@
+ 56 -345 91 -87
+ -464 197 -581 -494
+ -581 -436 -581 197
+ 197 -580 -580 -477
+ 91 -561 -580 106
+ 169 -609 -521 -44
+ 192 -559 -567 -241
+ 196 -581 -581 -377
+ -579 -579 -579 198
+ 198 -553 -561 -553
+ -289 -464 193 -558
+ 11 117 -307 -87
diff --git a/profiles/vertebrates/MA0661.1.pwm b/profiles/vertebrates/MA0661.1.pwm
index 2dd7752..c7c26c9 100644
--- a/profiles/vertebrates/MA0661.1.pwm
+++ b/profiles/vertebrates/MA0661.1.pwm
@@ -1,10 +1,10 @@
- 27 -9 39 -89
- -244 100 74 -283
- -378 -112 -405 177
- 157 -25 -274 -469
- 200 -10000 -855 -797
- -657 -471 -10000 198
- -600 -189 -145 174
- 184 -10000 -131 -712
- 35 28 -74 -13
- -39 80 -29 -57
+ 27 -9 39 -87
+ -234 99 73 -268
+ -351 -109 -373 175
+ 156 -25 -263 -426
+ 198 -574 -555 -547
+ -512 -416 -576 196
+ -501 -183 -141 173
+ 183 -589 -127 -539
+ 34 28 -72 -13
+ -38 79 -28 -56
diff --git a/profiles/vertebrates/MA0662.1.pwm b/profiles/vertebrates/MA0662.1.pwm
index e69de29..04364f1 100644
--- a/profiles/vertebrates/MA0662.1.pwm
+++ b/profiles/vertebrates/MA0662.1.pwm
@@ -0,0 +1,10 @@
+ 0 -16 -2 17
+ -76 42 -31 34
+ -154 59 -259 99
+ 168 -211 -119 -297
+ 189 -337 -361 -323
+ -734 -366 -496 196
+ -261 -102 -207 163
+ 175 -205 -567 -145
+ 52 -46 33 -78
+ 25 32 -14 -62
diff --git a/profiles/vertebrates/MA0663.1.pwm b/profiles/vertebrates/MA0663.1.pwm
index e69de29..781ca0f 100644
--- a/profiles/vertebrates/MA0663.1.pwm
+++ b/profiles/vertebrates/MA0663.1.pwm
@@ -0,0 +1,10 @@
+ 105 -333 39 -94
+ -447 -227 -67 164
+ -318 187 -318 -300
+ 188 -377 -259 -377
+ -387 192 -387 -387
+ -466 -494 196 -466
+ -365 -388 -388 192
+ -443 -494 195 -390
+ 162 -254 -100 -194
+ -173 -5 -310 139
diff --git a/profiles/vertebrates/MA0664.1.pwm b/profiles/vertebrates/MA0664.1.pwm
index e69de29..f13006d 100644
--- a/profiles/vertebrates/MA0664.1.pwm
+++ b/profiles/vertebrates/MA0664.1.pwm
@@ -0,0 +1,10 @@
+ 94 -230 30 -62
+ -56 -251 -49 128
+ -427 191 -281 -427
+ 191 -414 -374 -329
+ -389 190 -275 -429
+ -289 -456 192 -496
+ -455 -455 -399 195
+ -490 -490 196 -490
+ 107 -57 -89 -53
+ -54 -16 -182 110
diff --git a/profiles/vertebrates/MA0665.1.pwm b/profiles/vertebrates/MA0665.1.pwm
index e69de29..16f84ce 100644
--- a/profiles/vertebrates/MA0665.1.pwm
+++ b/profiles/vertebrates/MA0665.1.pwm
@@ -0,0 +1,10 @@
+ 147 -354 -35 -148
+ 162 -71 -215 -339
+ -321 180 -197 -267
+ 187 -314 -314 -314
+ -334 -66 166 -334
+ -319 182 -196 -319
+ -314 -314 -314 187
+ -321 -321 180 -172
+ -219 -96 -193 159
+ -336 -102 -187 165
diff --git a/profiles/vertebrates/MA0666.1.pwm b/profiles/vertebrates/MA0666.1.pwm
index e69de29..c3a3540 100644
--- a/profiles/vertebrates/MA0666.1.pwm
+++ b/profiles/vertebrates/MA0666.1.pwm
@@ -0,0 +1,8 @@
+ -72 77 3 -60
+ -307 139 -410 26
+ 177 -138 -256 -490
+ 193 -274 -582 -582
+ -579 -579 -412 197
+ -356 -206 -178 176
+ 184 -270 -285 -303
+ 15 8 29 -72
diff --git a/profiles/vertebrates/MA0666.2.pwm b/profiles/vertebrates/MA0666.2.pwm
index bdf2e69..2fa424e 100644
--- a/profiles/vertebrates/MA0666.2.pwm
+++ b/profiles/vertebrates/MA0666.2.pwm
@@ -1,8 +1,8 @@
- -69 75 16 -77
- -309 139 -10000 33
- 192 -342 -319 -10000
- 199 -493 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -225 -10000 192
- 196 -10000 -304 -10000
- 66 -45 6 -63
+ -68 74 16 -76
+ -299 139 -671 32
+ 191 -324 -304 -619
+ 197 -442 -613 -613
+ -612 -612 -612 198
+ -619 -218 -619 191
+ 194 -616 -290 -616
+ 65 -44 6 -62
diff --git a/profiles/vertebrates/MA0667.1.pwm b/profiles/vertebrates/MA0667.1.pwm
index e69de29..bf42672 100644
--- a/profiles/vertebrates/MA0667.1.pwm
+++ b/profiles/vertebrates/MA0667.1.pwm
@@ -0,0 +1,10 @@
+ 170 -299 -88 -347
+ 182 -244 -211 -429
+ -441 195 -441 -441
+ 192 -381 -325 -444
+ 46 -175 113 -278
+ -277 159 -156 -96
+ -285 -444 -444 191
+ -442 -397 194 -442
+ -403 -216 -448 188
+ -485 6 -366 151
diff --git a/profiles/vertebrates/MA0668.1.pwm b/profiles/vertebrates/MA0668.1.pwm
index e69de29..b492649 100644
--- a/profiles/vertebrates/MA0668.1.pwm
+++ b/profiles/vertebrates/MA0668.1.pwm
@@ -0,0 +1,10 @@
+ 59 -165 94 -195
+ 35 107 -75 -534
+ -538 189 -203 -538
+ 168 -558 -64 -299
+ -543 -142 -543 184
+ 184 -178 -321 -496
+ -556 -53 -556 171
+ -539 -539 188 -183
+ -533 -12 78 42
+ -89 57 -187 77
diff --git a/profiles/vertebrates/MA0668.2.pwm b/profiles/vertebrates/MA0668.2.pwm
index d1c87e7..cf84029 100644
--- a/profiles/vertebrates/MA0668.2.pwm
+++ b/profiles/vertebrates/MA0668.2.pwm
@@ -1,15 +1,15 @@
- 12 -15 34 -41
- 3 -49 40 -8
- -25 -63 77 -31
- 78 -74 35 -129
- 133 -48 -49 -403
- -527 197 -507 -559
- 198 -597 -529 -591
- -483 -395 189 -235
- 184 -168 -354 -501
- -345 -391 -472 193
- -552 -577 197 -419
- -381 -217 175 -151
- -75 28 -52 58
- -1 17 8 -27
- 8 4 2 -14
+ 12 -15 34 -41
+ 3 -49 40 -8
+ -24 -62 77 -31
+ 78 -74 34 -128
+ 132 -48 -49 -391
+ -500 197 -483 -526
+ 197 -555 -501 -551
+ -463 -384 188 -232
+ 183 -166 -346 -479
+ -338 -380 -453 192
+ -521 -540 196 -406
+ -371 -214 174 -150
+ -74 27 -51 58
+ -1 17 8 -27
+ 8 4 2 -14
diff --git a/profiles/vertebrates/MA0669.1.pwm b/profiles/vertebrates/MA0669.1.pwm
index e69de29..46f0103 100644
--- a/profiles/vertebrates/MA0669.1.pwm
+++ b/profiles/vertebrates/MA0669.1.pwm
@@ -0,0 +1,10 @@
+ 116 -391 72 -435
+ 138 -9 -123 -491
+ -412 193 -436 -343
+ 194 -436 -373 -436
+ -365 -350 -223 186
+ 190 -309 -346 -439
+ -344 -374 -437 192
+ -435 -435 195 -435
+ -450 -13 -33 117
+ -435 148 -435 15
diff --git a/profiles/vertebrates/MA0670.1.pwm b/profiles/vertebrates/MA0670.1.pwm
index 5430bc1..426a050 100644
--- a/profiles/vertebrates/MA0670.1.pwm
+++ b/profiles/vertebrates/MA0670.1.pwm
@@ -1,10 +1,10 @@
- 0 -4 8 -4
- -17 -71 59 -2
- -10000 -10000 -10000 200
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 4 -8 35 -41
- 29 -65 -46 50
+ 0 -4 8 -4
+ -17 -70 59 -2
+ -830 -830 -830 200
+ -834 -834 200 -834
+ -827 200 -827 -827
+ -827 200 -827 -827
+ 200 -820 -820 -820
+ 200 -820 -820 -820
+ 4 -8 35 -41
+ 29 -65 -46 50
diff --git a/profiles/vertebrates/MA0671.1.pwm b/profiles/vertebrates/MA0671.1.pwm
index 2161bd1..75a2957 100644
--- a/profiles/vertebrates/MA0671.1.pwm
+++ b/profiles/vertebrates/MA0671.1.pwm
@@ -1,9 +1,9 @@
- -5 10 9 -16
- -7 -42 40 -3
- -41 -62 -134 114
- -608 -559 188 -181
- -1156 186 -147 -828
- -10000 200 -10000 -10000
- 189 -199 -562 -633
- 141 -318 4 -236
- 1 14 15 -35
+ -5 10 9 -15
+ -7 -42 40 -3
+ -40 -62 -133 114
+ -563 -526 187 -179
+ -745 186 -146 -686
+ -739 199 -739 -739
+ 189 -196 -528 -580
+ 141 -314 4 -234
+ 1 14 15 -35
diff --git a/profiles/vertebrates/MA0672.1.pwm b/profiles/vertebrates/MA0672.1.pwm
index 75d430f..6cd921f 100644
--- a/profiles/vertebrates/MA0672.1.pwm
+++ b/profiles/vertebrates/MA0672.1.pwm
@@ -1,10 +1,10 @@
- 62 -9 -22 -60
- -98 122 17 -483
- -596 197 -10000 -416
- 194 -462 -724 -327
- -818 200 -10000 -10000
- -10000 -10000 -701 200
- -10000 -144 -10000 186
- 62 -93 86 -301
- 136 -198 -98 -57
- 45 25 27 -203
+ 62 -9 -22 -59
+ -97 121 17 -460
+ -522 196 -652 -392
+ 193 -430 -586 -314
+ -611 199 -650 -650
+ -650 -650 -574 199
+ -663 -142 -663 185
+ 61 -92 86 -292
+ 135 -195 -97 -56
+ 45 25 26 -199
diff --git a/profiles/vertebrates/MA0673.1.pwm b/profiles/vertebrates/MA0673.1.pwm
index e69de29..9446653 100644
--- a/profiles/vertebrates/MA0673.1.pwm
+++ b/profiles/vertebrates/MA0673.1.pwm
@@ -0,0 +1,9 @@
+ -14 71 41 -298
+ -485 166 -679 -32
+ 181 -198 -663 -218
+ -583 197 -648 -403
+ -647 -424 -647 197
+ -596 12 -691 153
+ -30 8 99 -287
+ 147 -174 -211 -51
+ 57 -12 27 -137
diff --git a/profiles/vertebrates/MA0674.1.pwm b/profiles/vertebrates/MA0674.1.pwm
index e69de29..01381ca 100644
--- a/profiles/vertebrates/MA0674.1.pwm
+++ b/profiles/vertebrates/MA0674.1.pwm
@@ -0,0 +1,8 @@
+ -45 32 40 -52
+ -556 5 -556 155
+ 121 41 -568 -157
+ 182 -157 -471 -359
+ -556 -556 -556 198
+ -308 -337 -562 191
+ 187 -396 -208 -439
+ 137 -89 -188 -74
diff --git a/profiles/vertebrates/MA0675.1.pwm b/profiles/vertebrates/MA0675.1.pwm
index f38a9bc..442784f 100644
--- a/profiles/vertebrates/MA0675.1.pwm
+++ b/profiles/vertebrates/MA0675.1.pwm
@@ -1,8 +1,8 @@
- -33 36 14 -29
- -216 58 -268 109
- 101 43 -242 -113
- 192 -401 -471 -319
- -306 -10000 -10000 196
- -129 -144 -346 165
- 187 -381 -274 -294
- 107 -45 -151 -30
+ -33 36 14 -29
+ -212 58 -263 108
+ 100 42 -238 -112
+ 191 -386 -447 -311
+ -299 -709 -709 195
+ -128 -142 -337 164
+ 186 -369 -269 -287
+ 107 -45 -149 -30
diff --git a/profiles/vertebrates/MA0676.1.pwm b/profiles/vertebrates/MA0676.1.pwm
index e69de29..93e0395 100644
--- a/profiles/vertebrates/MA0676.1.pwm
+++ b/profiles/vertebrates/MA0676.1.pwm
@@ -0,0 +1,9 @@
+ 118 -97 -131 -28
+ 113 -239 -17 -45
+ 182 -494 -153 -349
+ 187 -504 -189 -442
+ -261 -500 191 -411
+ -501 -217 -501 189
+ -398 180 -391 -141
+ 196 -494 -494 -494
+ 145 -156 -171 -69
diff --git a/profiles/vertebrates/MA0677.1.pwm b/profiles/vertebrates/MA0677.1.pwm
index e69de29..b4336a5 100644
--- a/profiles/vertebrates/MA0677.1.pwm
+++ b/profiles/vertebrates/MA0677.1.pwm
@@ -0,0 +1,14 @@
+ 45 -65 55 -93
+ 110 -266 66 -319
+ -260 -291 177 -182
+ -250 -279 175 -165
+ -333 -229 -191 178
+ -327 175 -275 -136
+ 189 -346 -322 -322
+ 169 -303 -150 -173
+ 184 -412 -166 -458
+ -358 -358 189 -308
+ -326 -382 184 -206
+ -399 -293 -252 186
+ -482 179 -277 -148
+ 178 -342 -142 -342
diff --git a/profiles/vertebrates/MA0678.1.pwm b/profiles/vertebrates/MA0678.1.pwm
index e69de29..0225756 100644
--- a/profiles/vertebrates/MA0678.1.pwm
+++ b/profiles/vertebrates/MA0678.1.pwm
@@ -0,0 +1,10 @@
+ 160 -240 -86 -217
+ 61 105 -157 -408
+ -235 190 -487 -533
+ 191 -508 -276 -372
+ -526 -526 -526 197
+ 193 -369 -388 -484
+ -385 -143 -541 182
+ -442 -502 186 -180
+ -512 -34 77 56
+ -202 14 -323 135
diff --git a/profiles/vertebrates/MA0679.1.pwm b/profiles/vertebrates/MA0679.1.pwm
index e69de29..43a6605 100644
--- a/profiles/vertebrates/MA0679.1.pwm
+++ b/profiles/vertebrates/MA0679.1.pwm
@@ -0,0 +1,14 @@
+ 63 -9 -18 -65
+ 105 -125 -15 -72
+ 137 -162 -93 -81
+ 158 -232 -406 -43
+ 192 -646 -238 -634
+ 199 -633 -621 -633
+ -639 -627 -606 199
+ -639 199 -639 -611
+ 56 -639 132 -627
+ 199 -639 -639 -587
+ -627 -621 -639 199
+ 182 -380 -327 -175
+ 67 1 -180 15
+ -40 5 -102 78
diff --git a/profiles/vertebrates/MA0679.2.pwm b/profiles/vertebrates/MA0679.2.pwm
index a5efab4..cdef834 100644
--- a/profiles/vertebrates/MA0679.2.pwm
+++ b/profiles/vertebrates/MA0679.2.pwm
@@ -1,16 +1,16 @@
- 77 -64 -40 -16
- 88 -92 -33 -26
- 95 -88 -69 -15
- 129 -104 -134 -55
- 175 -394 -100 -362
- 195 -544 -374 -452
- -501 -573 -601 198
- -353 195 -581 -523
- 194 -515 -367 -402
- 197 -598 -541 -440
- -611 -545 -659 198
- 164 -217 -136 -190
- 100 -61 -102 -22
- 69 -58 -96 27
- 27 -58 -62 56
- 36 -39 -47 31
+ 77 -63 -40 -16
+ 88 -91 -33 -26
+ 95 -87 -68 -15
+ 128 -104 -133 -55
+ 174 -386 -99 -355
+ 194 -522 -367 -439
+ -484 -545 -569 197
+ -347 195 -552 -503
+ 193 -496 -360 -393
+ 196 -566 -519 -429
+ -576 -522 -612 198
+ 164 -215 -135 -188
+ 99 -61 -102 -22
+ 69 -58 -95 27
+ 27 -58 -62 56
+ 36 -39 -47 31
diff --git a/profiles/vertebrates/MA0680.1.pwm b/profiles/vertebrates/MA0680.1.pwm
index 1d1ee8f..b3ce925 100644
--- a/profiles/vertebrates/MA0680.1.pwm
+++ b/profiles/vertebrates/MA0680.1.pwm
@@ -1,10 +1,10 @@
- -75 -407 -354 170
- 198 -570 -587 -729
- 200 -827 -10000 -10000
- -728 -548 -828 199
- -655 165 -528 -27
- 28 -511 146 -10000
- 199 -10000 -654 -654
- -628 -10000 -10000 200
- -549 -523 -671 198
- 186 -382 -444 -203
+ -73 -379 -335 169
+ 197 -483 -492 -547
+ 198 -567 -593 -593
+ -546 -470 -568 197
+ -522 163 -459 -27
+ 28 -448 145 -594
+ 197 -593 -521 -521
+ -510 -593 -593 198
+ -471 -456 -529 196
+ 185 -356 -405 -197
diff --git a/profiles/vertebrates/MA0680.2.pwm b/profiles/vertebrates/MA0680.2.pwm
index e69de29..06eace2 100644
--- a/profiles/vertebrates/MA0680.2.pwm
+++ b/profiles/vertebrates/MA0680.2.pwm
@@ -0,0 +1,15 @@
+ 50 -60 -19 6
+ 20 -49 -65 59
+ -15 -154 -170 129
+ 189 -352 -345 -324
+ 191 -384 -376 -327
+ -350 -319 -356 189
+ -311 158 -289 -40
+ 177 -255 -148 -384
+ 190 -413 -318 -344
+ -319 -444 -426 192
+ -317 -249 -378 186
+ 163 -270 -265 -75
+ 42 -95 -73 62
+ 1 -12 -51 45
+ 22 -31 -62 46
diff --git a/profiles/vertebrates/MA0681.1.pwm b/profiles/vertebrates/MA0681.1.pwm
index e69de29..83732e9 100644
--- a/profiles/vertebrates/MA0681.1.pwm
+++ b/profiles/vertebrates/MA0681.1.pwm
@@ -0,0 +1,11 @@
+ -101 -207 -350 167
+ 176 -447 -136 -253
+ 199 -647 -582 -702
+ -228 7 -323 140
+ -291 56 -46 74
+ -118 53 -172 85
+ 167 -268 -78 -351
+ 195 -457 -380 -540
+ -714 -686 -714 199
+ -208 -248 -616 184
+ 175 -483 -260 -123
diff --git a/profiles/vertebrates/MA0681.2.pwm b/profiles/vertebrates/MA0681.2.pwm
index 9215898..37f604d 100644
--- a/profiles/vertebrates/MA0681.2.pwm
+++ b/profiles/vertebrates/MA0681.2.pwm
@@ -1,16 +1,16 @@
- 48 -87 -70 53
- 55 -92 -98 59
- -36 -228 -239 150
- 168 -278 -254 -108
- 194 -475 -471 -374
- -293 -444 -483 192
- -244 146 -283 -11
- 169 -281 -450 -79
- 187 -320 -323 -287
- 193 -488 -413 -330
- -385 -534 -516 196
- -170 -279 -343 179
- 169 -278 -263 -108
- 27 -144 -126 100
- 61 -68 -80 35
- 48 -85 -93 61
+ 48 -86 -70 53
+ 54 -91 -97 59
+ -36 -225 -236 149
+ 168 -275 -251 -107
+ 194 -459 -456 -367
+ -289 -431 -467 192
+ -241 146 -279 -11
+ 169 -278 -437 -79
+ 186 -315 -318 -284
+ 192 -472 -403 -325
+ -377 -511 -496 195
+ -168 -275 -337 178
+ 168 -275 -259 -108
+ 27 -143 -125 100
+ 61 -68 -80 35
+ 48 -84 -92 60
diff --git a/profiles/vertebrates/MA0682.1.pwm b/profiles/vertebrates/MA0682.1.pwm
index e69de29..0b7c814 100644
--- a/profiles/vertebrates/MA0682.1.pwm
+++ b/profiles/vertebrates/MA0682.1.pwm
@@ -0,0 +1,8 @@
+ -37 11 -117 77
+ -225 -448 -584 190
+ 180 -240 -200 -382
+ 197 -577 -577 -465
+ -348 -368 -97 173
+ -196 177 -402 -188
+ -252 161 -274 -71
+ -13 70 -84 -15
diff --git a/profiles/vertebrates/MA0682.2.pwm b/profiles/vertebrates/MA0682.2.pwm
index 7ece22f..db71e9e 100644
--- a/profiles/vertebrates/MA0682.2.pwm
+++ b/profiles/vertebrates/MA0682.2.pwm
@@ -1,8 +1,8 @@
- -45 63 -73 17
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -148 186
- -424 196 -10000 -426
- -537 190 -440 -237
- -17 67 -49 -32
+ -44 62 -72 16
+ -664 -664 -664 199
+ 199 -664 -664 -664
+ 199 -664 -664 -664
+ -677 -677 -145 185
+ -401 195 -667 -402
+ -491 189 -415 -231
+ -16 67 -48 -31
diff --git a/profiles/vertebrates/MA0683.1.pwm b/profiles/vertebrates/MA0683.1.pwm
index e69de29..77b45dc 100644
--- a/profiles/vertebrates/MA0683.1.pwm
+++ b/profiles/vertebrates/MA0683.1.pwm
@@ -0,0 +1,16 @@
+ 86 -74 -7 -66
+ -264 -252 -352 184
+ -220 -429 186 -332
+ 35 143 -581 -557
+ 197 -527 -542 -495
+ -554 -564 -564 198
+ 185 -515 -487 -161
+ 157 -320 -372 -24
+ -303 -343 -412 190
+ -126 -502 -508 182
+ 184 -442 -180 -360
+ 197 -546 -512 -581
+ -445 -404 -314 192
+ -265 -231 129 26
+ 168 -197 -177 -195
+ -61 -74 131 -194
diff --git a/profiles/vertebrates/MA0684.1.pwm b/profiles/vertebrates/MA0684.1.pwm
index e69de29..87f922d 100644
--- a/profiles/vertebrates/MA0684.1.pwm
+++ b/profiles/vertebrates/MA0684.1.pwm
@@ -0,0 +1,10 @@
+ 104 -33 -340 7
+ 144 -198 -20 -261
+ 188 -256 -281 -649
+ -621 199 -639 -639
+ -639 198 -543 -639
+ 62 -431 125 -494
+ -522 195 -405 -472
+ 185 -244 -324 -336
+ 142 -147 -68 -154
+ 110 -66 -113 -40
diff --git a/profiles/vertebrates/MA0684.2.pwm b/profiles/vertebrates/MA0684.2.pwm
index e69de29..ecc51d2 100644
--- a/profiles/vertebrates/MA0684.2.pwm
+++ b/profiles/vertebrates/MA0684.2.pwm
@@ -0,0 +1,12 @@
+ 18 -17 -3 0
+ 48 -45 -94 43
+ 148 -135 -96 -170
+ 193 -427 -387 -400
+ -388 194 -485 -378
+ -368 193 -401 -438
+ -11 -390 -182 144
+ -340 192 -400 -410
+ 193 -392 -418 -366
+ 123 -114 -54 -97
+ 36 -19 -28 2
+ 1 1 -10 8
diff --git a/profiles/vertebrates/MA0685.1.pwm b/profiles/vertebrates/MA0685.1.pwm
index 638042c..16489aa 100644
--- a/profiles/vertebrates/MA0685.1.pwm
+++ b/profiles/vertebrates/MA0685.1.pwm
@@ -1,17 +1,17 @@
- -85 33 -44 54
- 105 -275 -401 78
- 118 -297 52 -253
- -61 -790 174 -649
- -218 192 -10000 -820
- -918 196 -786 -310
- 159 -1 -838 -10000
- -919 200 -10000 -10000
- -711 -662 198 -465
- -919 200 -819 -10000
- -862 200 -921 -10000
- -10000 198 -863 -404
- 76 116 -692 -402
- -360 164 -603 -36
- -22 -57 -251 120
- -86 19 -154 97
- -12 16 -92 52
+ -83 33 -43 53
+ 104 -262 -370 77
+ 117 -283 51 -243
+ -60 -597 172 -545
+ -211 190 -612 -582
+ -594 194 -573 -295
+ 157 -1 -565 -589
+ -595 198 -611 -611
+ -568 -549 197 -428
+ -595 198 -581 -611
+ -590 198 -597 -613
+ -613 196 -590 -375
+ 75 115 -540 -371
+ -341 163 -518 -35
+ -22 -56 -242 119
+ -84 19 -150 96
+ -12 16 -90 51
diff --git a/profiles/vertebrates/MA0685.2.pwm b/profiles/vertebrates/MA0685.2.pwm
index d875076..4d7b922 100644
--- a/profiles/vertebrates/MA0685.2.pwm
+++ b/profiles/vertebrates/MA0685.2.pwm
@@ -1,9 +1,9 @@
- -75 -797 139 -35
- -797 -797 200 -797
- -797 -797 200 -797
- -797 -797 200 -797
- 14 153 -797 -797
- -797 -797 200 -797
- -797 -797 188 -168
- 21 -797 140 -232
- -797 -797 200 -797
+ -72 -486 136 -34
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 13 150 -486 -486
+ -486 -486 196 -486
+ -486 -486 185 -159
+ 20 -486 137 -216
+ -486 -486 196 -486
diff --git a/profiles/vertebrates/MA0686.1.pwm b/profiles/vertebrates/MA0686.1.pwm
index e69de29..920a7a9 100644
--- a/profiles/vertebrates/MA0686.1.pwm
+++ b/profiles/vertebrates/MA0686.1.pwm
@@ -0,0 +1,11 @@
+ 166 -363 -292 -66
+ 52 105 -126 -380
+ -411 194 -346 -607
+ -228 191 -602 -602
+ -587 -587 198 -603
+ -561 -603 198 -550
+ 198 -603 -561 -587
+ -127 -393 -551 181
+ -13 -149 142 -437
+ -433 -17 -506 160
+ 72 -100 21 -50
diff --git a/profiles/vertebrates/MA0687.1.pwm b/profiles/vertebrates/MA0687.1.pwm
index e69de29..f896431 100644
--- a/profiles/vertebrates/MA0687.1.pwm
+++ b/profiles/vertebrates/MA0687.1.pwm
@@ -0,0 +1,14 @@
+ 63 -14 -41 -33
+ 106 -119 -11 -86
+ 156 -115 -193 -155
+ 183 -210 -381 -281
+ 142 -404 -404 27
+ -121 0 123 -221
+ 80 26 -2 -373
+ -394 -235 186 -313
+ -208 -417 172 -126
+ 178 -247 -393 -160
+ 159 -89 -194 -244
+ -194 -403 185 -403
+ -60 -140 -182 142
+ 129 -29 -191 -108
diff --git a/profiles/vertebrates/MA0688.1.pwm b/profiles/vertebrates/MA0688.1.pwm
index e69de29..2617ff0 100644
--- a/profiles/vertebrates/MA0688.1.pwm
+++ b/profiles/vertebrates/MA0688.1.pwm
@@ -0,0 +1,11 @@
+ 65 -96 -15 2
+ 152 -390 -61 -128
+ -93 -114 144 -168
+ -507 -400 195 -480
+ -584 -138 -462 183
+ -430 -571 196 -489
+ -162 -128 -454 169
+ -226 -26 103 -13
+ 186 -440 -264 -270
+ 125 -107 -97 -67
+ 88 -81 -42 -25
diff --git a/profiles/vertebrates/MA0689.1.pwm b/profiles/vertebrates/MA0689.1.pwm
index e69de29..8e84912 100644
--- a/profiles/vertebrates/MA0689.1.pwm
+++ b/profiles/vertebrates/MA0689.1.pwm
@@ -0,0 +1,11 @@
+ 45 -386 -23 78
+ 173 -257 -153 -253
+ -165 -213 171 -245
+ -466 -466 186 -178
+ -459 -459 -322 193
+ -458 -437 194 -387
+ -343 -440 -316 191
+ -176 -350 165 -106
+ 191 -440 -364 -324
+ 147 -323 -182 -25
+ 10 -117 103 -120
diff --git a/profiles/vertebrates/MA0690.1.pwm b/profiles/vertebrates/MA0690.1.pwm
index e69de29..5adab03 100644
--- a/profiles/vertebrates/MA0690.1.pwm
+++ b/profiles/vertebrates/MA0690.1.pwm
@@ -0,0 +1,10 @@
+ 107 -199 -23 -33
+ 182 -472 -173 -293
+ -118 -248 163 -178
+ -585 -503 197 -448
+ -563 -256 -512 192
+ -591 -599 198 -584
+ -263 -185 -460 182
+ -369 -313 181 -172
+ 197 -600 -434 -600
+ 144 -183 -228 -32
diff --git a/profiles/vertebrates/MA0690.2.pwm b/profiles/vertebrates/MA0690.2.pwm
index e69de29..a34755c 100644
--- a/profiles/vertebrates/MA0690.2.pwm
+++ b/profiles/vertebrates/MA0690.2.pwm
@@ -0,0 +1,11 @@
+ -28 -104 -36 94
+ -125 -207 -164 159
+ -516 -364 -553 195
+ -153 171 -165 -408
+ 176 -435 -120 -296
+ -581 198 -581 -581
+ 190 -381 -247 -566
+ -526 197 -441 -566
+ -254 170 -183 -180
+ -283 -76 -445 169
+ -89 -89 -179 140
diff --git a/profiles/vertebrates/MA0691.1.pwm b/profiles/vertebrates/MA0691.1.pwm
index 74fab38..83a3dea 100644
--- a/profiles/vertebrates/MA0691.1.pwm
+++ b/profiles/vertebrates/MA0691.1.pwm
@@ -1,10 +1,10 @@
- 161 -117 -174 -230
- 110 -88 -402 33
- -10000 200 -10000 -10000
- 200 -874 -10000 -10000
- -878 -337 196 -598
- -538 197 -416 -719
- -974 -974 -10000 200
- -10000 -974 200 -10000
- 90 -309 -154 74
- -202 -83 -148 150
+ 160 -114 -169 -222
+ 109 -87 -372 32
+ -582 198 -582 -582
+ 198 -565 -582 -582
+ -569 -316 194 -493
+ -461 195 -379 -538
+ -573 -573 -582 198
+ -582 -573 198 -582
+ 89 -293 -150 73
+ -196 -81 -145 149
diff --git a/profiles/vertebrates/MA0692.1.pwm b/profiles/vertebrates/MA0692.1.pwm
index 47ec067..da3bcfe 100644
--- a/profiles/vertebrates/MA0692.1.pwm
+++ b/profiles/vertebrates/MA0692.1.pwm
@@ -1,10 +1,10 @@
- 90 -77 50 -295
- -89 6 -79 88
- -701 200 -10000 -951
- 190 -303 -523 -309
- -10000 181 -491 -111
- -9 -335 157 -920
- -239 -381 -398 188
- -792 -777 200 -763
- 145 -44 -187 -198
- -308 130 -210 24
+ 90 -76 49 -286
+ -89 6 -79 88
+ -568 198 -640 -624
+ 189 -292 -474 -298
+ -658 180 -453 -109
+ -9 -324 156 -657
+ -232 -362 -377 187
+ -597 -593 198 -589
+ 145 -44 -184 -195
+ -297 129 -205 24
diff --git a/profiles/vertebrates/MA0693.1.pwm b/profiles/vertebrates/MA0693.1.pwm
index e69de29..2babba6 100644
--- a/profiles/vertebrates/MA0693.1.pwm
+++ b/profiles/vertebrates/MA0693.1.pwm
@@ -0,0 +1,16 @@
+ -45 -237 161 -516
+ 131 -718 60 -745
+ -703 -711 199 -695
+ -734 -713 -110 182
+ -467 -399 -305 192
+ -707 197 -679 -369
+ 184 -582 -143 -528
+ -120 6 -233 122
+ -54 53 -173 65
+ -41 -183 154 -396
+ 131 -711 60 -739
+ -708 -719 199 -711
+ -735 -721 -164 187
+ -465 -415 -259 190
+ -779 194 -664 -280
+ 184 -584 -137 -575
diff --git a/profiles/vertebrates/MA0693.2.pwm b/profiles/vertebrates/MA0693.2.pwm
index 14e113f..91e3c41 100644
--- a/profiles/vertebrates/MA0693.2.pwm
+++ b/profiles/vertebrates/MA0693.2.pwm
@@ -1,8 +1,8 @@
- -17 16 -254 86
- 51 -247 118 -297
- 115 -338 63 -288
- -338 -332 188 -297
- -388 -344 -184 183
- -204 -301 -161 172
- -218 157 -316 -52
- 183 -372 -172 -372
+ -17 16 -234 84
+ 50 -229 116 -269
+ 113 -301 61 -262
+ -301 -297 185 -269
+ -337 -306 -173 180
+ -191 -273 -152 169
+ -204 154 -284 -50
+ 179 -326 -162 -326
diff --git a/profiles/vertebrates/MA0693.3.pwm b/profiles/vertebrates/MA0693.3.pwm
index e69de29..feaee24 100644
--- a/profiles/vertebrates/MA0693.3.pwm
+++ b/profiles/vertebrates/MA0693.3.pwm
@@ -0,0 +1,11 @@
+ -9 20 -19 5
+ 26 -35 -37 32
+ -60 -103 139 -214
+ 189 -380 -303 -349
+ -350 -390 190 -306
+ -324 -409 -259 188
+ -248 -378 -396 188
+ -255 183 -441 -220
+ 191 -377 -347 -360
+ -9 -21 -3 28
+ 21 -34 -10 16
diff --git a/profiles/vertebrates/MA0694.1.pwm b/profiles/vertebrates/MA0694.1.pwm
index 813676c..096c46b 100644
--- a/profiles/vertebrates/MA0694.1.pwm
+++ b/profiles/vertebrates/MA0694.1.pwm
@@ -1,12 +1,12 @@
- 20 -154 78 -34
- -198 170 -134 -340
- -57 -495 166 -291
- 182 -114 -10000 -745
- -654 200 -886 -10000
- -10000 200 -786 -10000
- 147 29 -839 -780
- -654 200 -10000 -886
- -10000 199 -10000 -605
- -10 -86 111 -149
- 144 -121 -163 -90
- 111 -58 -92 -62
+ 20 -148 76 -33
+ -190 168 -130 -314
+ -56 -428 164 -273
+ 180 -110 -550 -518
+ -483 197 -522 -534
+ -533 197 -511 -533
+ 145 29 -563 -553
+ -483 197 -534 -522
+ -534 197 -534 -466
+ -10 -84 110 -146
+ 142 -118 -158 -88
+ 109 -57 -89 -60
diff --git a/profiles/vertebrates/MA0695.1.pwm b/profiles/vertebrates/MA0695.1.pwm
index e69de29..8c27d5c 100644
--- a/profiles/vertebrates/MA0695.1.pwm
+++ b/profiles/vertebrates/MA0695.1.pwm
@@ -0,0 +1,12 @@
+ 9 -105 84 -61
+ -102 140 -80 -171
+ -21 -161 130 -152
+ 165 -49 -427 -331
+ -251 191 -493 -493
+ -491 194 -427 -355
+ 162 -27 -431 -415
+ -335 191 -410 -340
+ -170 167 -235 -170
+ -1 -84 102 -127
+ 92 -26 -106 -34
+ 38 30 -36 -53
diff --git a/profiles/vertebrates/MA0696.1.pwm b/profiles/vertebrates/MA0696.1.pwm
index e69de29..890f07f 100644
--- a/profiles/vertebrates/MA0696.1.pwm
+++ b/profiles/vertebrates/MA0696.1.pwm
@@ -0,0 +1,14 @@
+ -311 -133 137 -15
+ 146 -161 -15 -692
+ -310 194 -619 -547
+ -257 191 -497 -458
+ -148 179 -431 -293
+ -736 199 -723 -715
+ -502 198 -708 -698
+ -675 135 -732 52
+ -197 -658 190 -718
+ -700 166 -417 -36
+ -283 -231 -68 160
+ -621 -698 199 -756
+ -119 10 -206 117
+ -689 -407 186 -177
diff --git a/profiles/vertebrates/MA0697.1.pwm b/profiles/vertebrates/MA0697.1.pwm
index c1fb23d..8ad0b29 100644
--- a/profiles/vertebrates/MA0697.1.pwm
+++ b/profiles/vertebrates/MA0697.1.pwm
@@ -1,15 +1,15 @@
- -192 -59 111 -13
- 145 -89 -47 -10000
- -293 192 -10000 -374
- -298 188 -420 -298
- -138 172 -10000 -159
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 148 -10000 27
- -148 -362 182 -494
- -376 171 -318 -90
- -185 -132 -29 133
- -427 -10000 196 -427
- -106 83 -194 57
- -433 -492 182 -140
- 16 65 -195 8
+ -174 -56 107 -12
+ 140 -82 -44 -407
+ -241 185 -392 -288
+ -245 182 -312 -245
+ -124 165 -402 -142
+ -389 193 -389 -389
+ -387 192 -387 -387
+ -385 142 -385 25
+ -134 -290 176 -350
+ -290 165 -257 -82
+ -166 -121 -28 128
+ -318 -403 189 -318
+ -95 79 -168 53
+ -325 -348 176 -126
+ 15 62 -169 7
diff --git a/profiles/vertebrates/MA0697.2.pwm b/profiles/vertebrates/MA0697.2.pwm
index afa8f43..2d91162 100644
--- a/profiles/vertebrates/MA0697.2.pwm
+++ b/profiles/vertebrates/MA0697.2.pwm
@@ -1,13 +1,13 @@
- -29 100 -34 -136
- 38 -1 -14 -32
- -425 194 -383 -429
- 187 -291 -311 -346
- -431 -329 193 -462
- -421 189 -311 -305
- 181 -353 -189 -293
- -406 -371 189 -276
- -424 -278 190 -362
- 100 -68 -19 -102
- -34 -78 109 -101
- -21 -5 50 -40
- -53 44 6 -14
+ -29 100 -34 -135
+ 37 -1 -14 -32
+ -409 193 -372 -414
+ 187 -285 -304 -337
+ -415 -321 192 -443
+ -406 188 -305 -298
+ 181 -344 -186 -287
+ -393 -361 189 -271
+ -409 -273 189 -352
+ 100 -67 -19 -101
+ -34 -77 109 -100
+ -21 -5 49 -40
+ -53 44 6 -14
diff --git a/profiles/vertebrates/MA0698.1.pwm b/profiles/vertebrates/MA0698.1.pwm
index a2f31c4..2709002 100644
--- a/profiles/vertebrates/MA0698.1.pwm
+++ b/profiles/vertebrates/MA0698.1.pwm
@@ -1,13 +1,13 @@
- 6 29 -45 0
- 105 -218 -43 -4
- -222 -151 -8 131
- -41 151 -134 -633
- -735 200 -1016 -874
- 197 -944 -672 -408
- -1018 -383 197 -918
- 184 -187 -378 -369
- -794 -784 -520 199
- -1015 -1174 200 -1174
- -620 -349 -661 196
- -406 -431 65 121
- -99 24 18 24
+ 6 29 -45 0
+ 104 -214 -43 -4
+ -220 -149 -8 131
+ -41 150 -133 -574
+ -607 199 -668 -648
+ 197 -662 -579 -389
+ -671 -367 196 -658
+ 183 -184 -364 -356
+ -629 -625 -480 198
+ -668 -677 199 -677
+ -550 -336 -574 195
+ -388 -409 65 120
+ -97 24 18 23
diff --git a/profiles/vertebrates/MA0699.1.pwm b/profiles/vertebrates/MA0699.1.pwm
index e69de29..bcc68a5 100644
--- a/profiles/vertebrates/MA0699.1.pwm
+++ b/profiles/vertebrates/MA0699.1.pwm
@@ -0,0 +1,10 @@
+ 11 -2 15 -28
+ -100 93 -64 -7
+ -228 99 -275 73
+ 167 -142 -148 -373
+ 176 -155 -263 -311
+ -581 -421 -260 191
+ -251 -179 -161 168
+ 185 -411 -280 -236
+ 40 -77 59 -76
+ -5 38 -2 -41
diff --git a/profiles/vertebrates/MA0700.1.pwm b/profiles/vertebrates/MA0700.1.pwm
index 356f11a..b5fb6b9 100644
--- a/profiles/vertebrates/MA0700.1.pwm
+++ b/profiles/vertebrates/MA0700.1.pwm
@@ -1,10 +1,10 @@
- 41 -19 36 -95
- -215 153 -139 -98
- -468 -4 -792 158
- 181 -119 -559 -448
- 200 -10000 -759 -10000
- -10000 -10000 -10000 200
- -567 -355 -221 188
- 176 -928 -81 -478
- 67 -83 34 -78
- -66 49 -2 -3
+ 40 -19 36 -95
+ -214 153 -138 -98
+ -456 -4 -703 157
+ 180 -118 -533 -436
+ 199 -771 -665 -771
+ -771 -771 -771 199
+ -538 -349 -219 188
+ 176 -747 -81 -463
+ 67 -82 34 -78
+ -66 48 -2 -3
diff --git a/profiles/vertebrates/MA0700.2.pwm b/profiles/vertebrates/MA0700.2.pwm
index 2fa525f..528455b 100644
--- a/profiles/vertebrates/MA0700.2.pwm
+++ b/profiles/vertebrates/MA0700.2.pwm
@@ -1,11 +1,11 @@
- 58 -68 -33 11
- 52 -74 -34 24
- -82 111 -60 -69
- -517 183 -542 -131
- 187 -448 -493 -191
- 193 -397 -436 -357
- -362 -477 -463 194
- -456 -831 -831 198
- 199 -693 -804 -534
- 45 -70 -11 13
- 29 -24 -61 35
+ 58 -67 -32 11
+ 51 -73 -33 24
+ -80 110 -59 -68
+ -465 181 -482 -128
+ 186 -414 -448 -187
+ 191 -373 -405 -339
+ -343 -436 -426 193
+ -421 -601 -601 197
+ 197 -561 -595 -477
+ 45 -69 -11 12
+ 29 -23 -60 35
diff --git a/profiles/vertebrates/MA0701.1.pwm b/profiles/vertebrates/MA0701.1.pwm
index ed4202f..bcb6114 100644
--- a/profiles/vertebrates/MA0701.1.pwm
+++ b/profiles/vertebrates/MA0701.1.pwm
@@ -1,8 +1,8 @@
- -41 60 -33 -10
- -170 94 -10000 83
- 157 -80 -244 -183
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -282 -193 -74 158
- 181 -393 -192 -257
- 57 -76 50 -97
+ -39 59 -32 -10
+ -162 92 -535 81
+ 155 -78 -232 -176
+ 197 -524 -524 -524
+ -524 -524 -524 197
+ -265 -185 -72 156
+ 178 -352 -183 -241
+ 56 -74 49 -94
diff --git a/profiles/vertebrates/MA0701.2.pwm b/profiles/vertebrates/MA0701.2.pwm
index e69de29..2bf8581 100644
--- a/profiles/vertebrates/MA0701.2.pwm
+++ b/profiles/vertebrates/MA0701.2.pwm
@@ -0,0 +1,8 @@
+ -243 147 -103 -83
+ -625 46 -625 138
+ 187 -167 -637 -538
+ 199 -625 -625 -625
+ -625 -625 -625 199
+ -629 -629 -306 195
+ 192 -632 -231 -632
+ 57 -58 35 -81
diff --git a/profiles/vertebrates/MA0702.1.pwm b/profiles/vertebrates/MA0702.1.pwm
index cb875e3..fccc81a 100644
--- a/profiles/vertebrates/MA0702.1.pwm
+++ b/profiles/vertebrates/MA0702.1.pwm
@@ -1,8 +1,8 @@
- -94 -11 -34 82
- -180 -59 -431 158
- 174 -229 -208 -219
- 195 -520 -558 -372
- -321 -466 -543 194
- -105 -235 -206 162
- 170 -393 -110 -225
- 113 -86 -18 -141
+ -92 -11 -33 81
+ -176 -59 -406 157
+ 173 -223 -203 -213
+ 194 -465 -489 -350
+ -306 -427 -480 192
+ -103 -229 -201 161
+ 169 -372 -108 -219
+ 112 -85 -17 -138
diff --git a/profiles/vertebrates/MA0702.2.pwm b/profiles/vertebrates/MA0702.2.pwm
index d787050..12b7307 100644
--- a/profiles/vertebrates/MA0702.2.pwm
+++ b/profiles/vertebrates/MA0702.2.pwm
@@ -1,8 +1,8 @@
- -443 20 -267 141
- -10000 -590 -661 199
- 200 -10000 -10000 -10000
- 200 -768 -10000 -10000
- -10000 -521 -10000 199
- -10000 -10000 -10000 200
- 189 -429 -199 -10000
- 61 48 -67 -115
+ -413 20 -258 140
+ -644 -515 -553 198
+ 199 -643 -643 -643
+ 199 -593 -643 -643
+ -644 -471 -644 198
+ -643 -643 -643 199
+ 187 -402 -194 -654
+ 61 47 -66 -113
diff --git a/profiles/vertebrates/MA0703.1.pwm b/profiles/vertebrates/MA0703.1.pwm
index e69de29..e9ab837 100644
--- a/profiles/vertebrates/MA0703.1.pwm
+++ b/profiles/vertebrates/MA0703.1.pwm
@@ -0,0 +1,8 @@
+ -24 -9 -6 32
+ -114 23 -272 115
+ 165 -202 -192 -150
+ 189 -385 -421 -248
+ -178 -533 -419 186
+ -22 -189 -187 138
+ 179 -342 -500 -124
+ 103 -62 -34 -94
diff --git a/profiles/vertebrates/MA0703.2.pwm b/profiles/vertebrates/MA0703.2.pwm
index 6664044..a1deaf9 100644
--- a/profiles/vertebrates/MA0703.2.pwm
+++ b/profiles/vertebrates/MA0703.2.pwm
@@ -1,11 +1,11 @@
- 90 -72 -19 -62
- 54 -102 -86 58
- -32 -134 -57 109
- -10000 -83 -248 170
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -641 -10000 -10000
- 119 -37 -154 -74
+ 89 -70 -19 -60
+ 54 -100 -85 58
+ -32 -131 -56 108
+ -603 -81 -239 169
+ -597 -597 -597 198
+ 198 -597 -597 -597
+ 198 -597 -597 -597
+ -597 -597 -597 198
+ -597 -597 -597 198
+ 198 -518 -597 -597
+ 118 -37 -149 -72
diff --git a/profiles/vertebrates/MA0704.1.pwm b/profiles/vertebrates/MA0704.1.pwm
index e69de29..7f7cf0f 100644
--- a/profiles/vertebrates/MA0704.1.pwm
+++ b/profiles/vertebrates/MA0704.1.pwm
@@ -0,0 +1,8 @@
+ -76 17 -54 67
+ -214 -14 -615 151
+ 156 -116 -161 -187
+ 190 -576 -576 -220
+ -568 -568 -568 198
+ -591 -91 -360 175
+ 176 -401 -138 -253
+ 85 -67 24 -135
diff --git a/profiles/vertebrates/MA0705.1.pwm b/profiles/vertebrates/MA0705.1.pwm
index a4cc7d4..e601bdc 100644
--- a/profiles/vertebrates/MA0705.1.pwm
+++ b/profiles/vertebrates/MA0705.1.pwm
@@ -1,8 +1,8 @@
- -143 102 -46 -20
- -10000 17 -10000 152
- 156 -344 -5 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 20 -437 149
- 154 -10000 14 -10000
- 10 -14 76 -162
+ -140 101 -45 -20
+ -652 17 -652 151
+ 155 -329 -5 -649
+ 198 -605 -605 -605
+ -605 -605 -605 198
+ -656 20 -409 148
+ 153 -651 13 -651
+ 10 -14 75 -158
diff --git a/profiles/vertebrates/MA0706.1.pwm b/profiles/vertebrates/MA0706.1.pwm
index bbe43a4..7b082e9 100644
--- a/profiles/vertebrates/MA0706.1.pwm
+++ b/profiles/vertebrates/MA0706.1.pwm
@@ -1,10 +1,10 @@
- 44 -65 19 -21
- -120 26 100 -144
- -240 -62 -360 162
- 138 -3 -161 -335
- 191 -302 -455 -369
- -632 -732 -516 198
- -297 -58 -86 141
- 170 -436 -84 -283
- 69 -82 -55 19
- -2 27 -7 -23
+ 43 -64 19 -21
+ -119 26 100 -143
+ -237 -62 -351 162
+ 137 -3 -160 -330
+ 190 -295 -435 -359
+ -569 -625 -485 198
+ -292 -58 -85 140
+ 170 -420 -84 -278
+ 68 -82 -55 19
+ -2 26 -7 -23
diff --git a/profiles/vertebrates/MA0707.1.pwm b/profiles/vertebrates/MA0707.1.pwm
index e69de29..9dfaf92 100644
--- a/profiles/vertebrates/MA0707.1.pwm
+++ b/profiles/vertebrates/MA0707.1.pwm
@@ -0,0 +1,10 @@
+ 47 -234 47 5
+ -25 13 31 -27
+ -444 47 -358 131
+ 160 -67 -498 -170
+ 188 -198 -471 -471
+ -357 -180 -474 184
+ -56 -297 -159 152
+ 196 -463 -463 -463
+ 104 -139 -42 -28
+ 76 -30 -46 -39
diff --git a/profiles/vertebrates/MA0707.2.pwm b/profiles/vertebrates/MA0707.2.pwm
index d9c82da..7b57587 100644
--- a/profiles/vertebrates/MA0707.2.pwm
+++ b/profiles/vertebrates/MA0707.2.pwm
@@ -1,8 +1,8 @@
- -4 8 46 -76
- -10000 76 -10000 121
- 98 -159 76 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -136 -280 179
- 200 -10000 -10000 -10000
- -80 -35 5 68
+ -4 8 45 -75
+ -702 76 -702 120
+ 97 -158 76 -804
+ 199 -702 -702 -702
+ -702 -702 -702 199
+ -723 -134 -274 179
+ 199 -702 -702 -702
+ -79 -34 5 68
diff --git a/profiles/vertebrates/MA0708.1.pwm b/profiles/vertebrates/MA0708.1.pwm
index e69de29..2604d21 100644
--- a/profiles/vertebrates/MA0708.1.pwm
+++ b/profiles/vertebrates/MA0708.1.pwm
@@ -0,0 +1,8 @@
+ -70 98 -3 -121
+ -291 153 -394 -13
+ 186 -242 -353 -325
+ 197 -435 -588 -588
+ -587 -587 -587 198
+ -381 -235 -343 186
+ 195 -355 -590 -463
+ 49 -10 7 -70
diff --git a/profiles/vertebrates/MA0708.2.pwm b/profiles/vertebrates/MA0708.2.pwm
index e69de29..880e01c 100644
--- a/profiles/vertebrates/MA0708.2.pwm
+++ b/profiles/vertebrates/MA0708.2.pwm
@@ -0,0 +1,8 @@
+ -68 73 19 -80
+ -329 144 -682 23
+ 189 -313 -262 -637
+ 196 -362 -630 -630
+ -628 -628 -628 199
+ -442 -152 -642 184
+ 193 -633 -266 -633
+ 59 -36 4 -54
diff --git a/profiles/vertebrates/MA0709.1.pwm b/profiles/vertebrates/MA0709.1.pwm
index 1dbaae4..a2bfbac 100644
--- a/profiles/vertebrates/MA0709.1.pwm
+++ b/profiles/vertebrates/MA0709.1.pwm
@@ -1,8 +1,8 @@
- -60 63 25 -74
- -280 141 -623 24
- 192 -379 -323 -456
- 198 -458 -581 -873
- -10000 -10000 -10000 200
- -419 -336 -439 193
- 194 -521 -463 -336
- 36 -27 31 -62
+ -59 63 25 -73
+ -272 140 -540 24
+ 191 -361 -311 -426
+ 197 -426 -514 -625
+ -651 -651 -651 199
+ -395 -323 -412 191
+ 193 -475 -431 -322
+ 36 -27 31 -62
diff --git a/profiles/vertebrates/MA0710.1.pwm b/profiles/vertebrates/MA0710.1.pwm
index 93532f1..0649a2a 100644
--- a/profiles/vertebrates/MA0710.1.pwm
+++ b/profiles/vertebrates/MA0710.1.pwm
@@ -1,10 +1,10 @@
- 7 9 29 -59
- -288 130 -321 38
- -22 -105 -385 137
- 149 23 -10000 -528
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -390 -649 -372 194
- 176 -10000 -162 -174
- 40 -47 52 -92
- -39 53 4 -38
+ 7 9 29 -58
+ -282 129 -313 38
+ -22 -104 -376 137
+ 148 23 -715 -494
+ 199 -714 -714 -714
+ -714 -714 -714 199
+ -377 -581 -361 194
+ 175 -739 -161 -172
+ 39 -47 52 -91
+ -39 52 4 -37
diff --git a/profiles/vertebrates/MA0711.1.pwm b/profiles/vertebrates/MA0711.1.pwm
index fc5ffa1..6776b63 100644
--- a/profiles/vertebrates/MA0711.1.pwm
+++ b/profiles/vertebrates/MA0711.1.pwm
@@ -1,8 +1,8 @@
- -20 15 -88 56
- -303 -608 -10000 195
- 195 -10000 -458 -348
- 200 -10000 -10000 -10000
- -479 -10000 -109 180
- -328 190 -325 -405
- -352 137 -7 -143
- -165 8 85 -29
+ -19 15 -87 56
+ -296 -555 -725 194
+ 194 -724 -437 -338
+ 199 -720 -720 -720
+ -458 -739 -108 180
+ -320 189 -318 -392
+ -346 137 -7 -142
+ -162 8 85 -29
diff --git a/profiles/vertebrates/MA0712.1.pwm b/profiles/vertebrates/MA0712.1.pwm
index e69de29..f4e47dd 100644
--- a/profiles/vertebrates/MA0712.1.pwm
+++ b/profiles/vertebrates/MA0712.1.pwm
@@ -0,0 +1,8 @@
+ -21 -3 -150 85
+ -285 -535 -739 194
+ 191 -643 -421 -245
+ 199 -734 -734 -734
+ -423 -620 -169 186
+ -282 185 -339 -262
+ -311 152 -255 -23
+ -143 12 24 45
diff --git a/profiles/vertebrates/MA0712.2.pwm b/profiles/vertebrates/MA0712.2.pwm
index e69de29..d38466e 100644
--- a/profiles/vertebrates/MA0712.2.pwm
+++ b/profiles/vertebrates/MA0712.2.pwm
@@ -0,0 +1,12 @@
+ 49 -30 -45 7
+ 38 -80 8 10
+ 30 -248 89 -43
+ -245 -505 189 -345
+ -333 -415 191 -366
+ 194 -371 -525 -440
+ -515 -547 -511 197
+ -392 -403 -434 193
+ 192 -539 -445 -291
+ 3 -128 80 -27
+ 40 -24 -15 -9
+ 25 -55 -2 18
diff --git a/profiles/vertebrates/MA0713.1.pwm b/profiles/vertebrates/MA0713.1.pwm
index 9cd3506..5d7da1e 100644
--- a/profiles/vertebrates/MA0713.1.pwm
+++ b/profiles/vertebrates/MA0713.1.pwm
@@ -1,11 +1,11 @@
- -83 -163 -295 158
- 169 -398 -121 -183
- 200 -10000 -640 -916
- -171 -1 -283 136
- -249 56 -64 77
- -142 44 -207 102
- 166 -234 -93 -305
- 192 -392 -329 -452
- -10000 -816 -1048 200
- -156 -211 -537 177
- 169 -395 -211 -109
+ -82 -161 -288 157
+ 168 -381 -119 -180
+ 198 -662 -551 -640
+ -169 -1 -277 135
+ -244 56 -64 77
+ -140 44 -203 102
+ 165 -229 -92 -297
+ 191 -374 -317 -424
+ -662 -620 -652 199
+ -154 -207 -494 176
+ 169 -379 -208 -108
diff --git a/profiles/vertebrates/MA0714.1.pwm b/profiles/vertebrates/MA0714.1.pwm
index c35090c..ccd4bc1 100644
--- a/profiles/vertebrates/MA0714.1.pwm
+++ b/profiles/vertebrates/MA0714.1.pwm
@@ -1,9 +1,9 @@
- 6 30 6 -55
- -43 42 -143 63
- -179 -506 -756 188
- 190 -571 -269 -341
- 200 -10000 -671 -10000
- -289 -381 -82 169
- -245 184 -339 -288
- -308 170 -301 -99
- -46 92 -69 -39
+ 6 30 6 -54
+ -43 42 -140 63
+ -174 -458 -584 186
+ 189 -500 -259 -324
+ 198 -624 -546 -624
+ -279 -362 -80 168
+ -238 183 -324 -278
+ -297 169 -290 -97
+ -45 91 -68 -38
diff --git a/profiles/vertebrates/MA0715.1.pwm b/profiles/vertebrates/MA0715.1.pwm
index e69de29..fdd650e 100644
--- a/profiles/vertebrates/MA0715.1.pwm
+++ b/profiles/vertebrates/MA0715.1.pwm
@@ -0,0 +1,11 @@
+ -131 -323 -340 176
+ 193 -462 -462 -315
+ 195 -460 -420 -460
+ -189 -195 -285 174
+ -225 41 -263 120
+ 33 -125 -83 81
+ 179 -192 -475 -210
+ 183 -415 -165 -374
+ -420 -460 -460 195
+ -305 -272 -370 187
+ 181 -473 -296 -164
diff --git a/profiles/vertebrates/MA0716.1.pwm b/profiles/vertebrates/MA0716.1.pwm
index fbfccca..f782125 100644
--- a/profiles/vertebrates/MA0716.1.pwm
+++ b/profiles/vertebrates/MA0716.1.pwm
@@ -1,8 +1,8 @@
- -53 60 -46 9
- -153 70 -261 90
- 179 -266 -196 -309
- 195 -362 -494 -489
- -10000 -1096 -10000 200
- -249 -163 -283 175
- 188 -333 -557 -240
- 67 -48 9 -67
+ -53 60 -46 9
+ -151 70 -257 90
+ 179 -262 -193 -303
+ 194 -352 -469 -465
+ -723 -712 -723 199
+ -246 -161 -278 174
+ 188 -325 -521 -236
+ 67 -48 9 -66
diff --git a/profiles/vertebrates/MA0717.1.pwm b/profiles/vertebrates/MA0717.1.pwm
index e69de29..f564ab8 100644
--- a/profiles/vertebrates/MA0717.1.pwm
+++ b/profiles/vertebrates/MA0717.1.pwm
@@ -0,0 +1,8 @@
+ -86 70 -46 13
+ -162 83 -267 80
+ 167 -198 -143 -231
+ 188 -275 -371 -329
+ -496 -367 -583 195
+ -243 -149 -223 170
+ 175 -210 -481 -143
+ 46 -37 35 -79
diff --git a/profiles/vertebrates/MA0718.1.pwm b/profiles/vertebrates/MA0718.1.pwm
index dfe20fd..9b3b1cb 100644
--- a/profiles/vertebrates/MA0718.1.pwm
+++ b/profiles/vertebrates/MA0718.1.pwm
@@ -1,10 +1,10 @@
- 36 -71 61 -80
- -83 67 -53 20
- -163 95 -473 77
- 196 -518 -769 -395
- 196 -403 -569 -469
- -237 -10000 -10000 193
- -320 -320 -373 189
- 192 -10000 -500 -234
- 80 -109 22 -68
- -16 47 -65 11
+ 35 -69 60 -78
+ -81 66 -51 20
+ -158 94 -417 76
+ 194 -442 -535 -359
+ 194 -365 -469 -412
+ -225 -569 -569 191
+ -299 -299 -343 187
+ 189 -571 -433 -224
+ 79 -105 21 -67
+ -16 47 -64 11
diff --git a/profiles/vertebrates/MA0719.1.pwm b/profiles/vertebrates/MA0719.1.pwm
index ce12ea7..76805fb 100644
--- a/profiles/vertebrates/MA0719.1.pwm
+++ b/profiles/vertebrates/MA0719.1.pwm
@@ -1,8 +1,8 @@
- 24 -5 -56 23
- -33 -10000 -290 162
- 85 -10000 81 -117
- 200 -10000 -10000 -10000
- -10000 -10000 38 143
- -10000 200 -10000 -10000
- -10000 173 -10000 -54
- 24 34 -37 -36
+ 24 -5 -55 22
+ -32 -705 -283 161
+ 85 -683 80 -115
+ 199 -667 -667 -667
+ -667 -667 37 143
+ -667 199 -667 -667
+ -694 172 -694 -53
+ 24 34 -36 -36
diff --git a/profiles/vertebrates/MA0720.1.pwm b/profiles/vertebrates/MA0720.1.pwm
index 4ff1f0d..2580284 100644
--- a/profiles/vertebrates/MA0720.1.pwm
+++ b/profiles/vertebrates/MA0720.1.pwm
@@ -1,8 +1,8 @@
- -93 76 -47 8
- -231 90 -441 92
- 186 -300 -355 -271
- 198 -506 -1058 -586
- -730 -857 -10000 200
- -308 -321 -254 185
- 191 -464 -707 -243
- 53 -59 48 -100
+ -92 76 -46 8
+ -227 89 -422 91
+ 186 -293 -345 -265
+ 197 -475 -695 -535
+ -618 -663 -706 199
+ -301 -313 -249 184
+ 191 -442 -611 -239
+ 52 -58 48 -99
diff --git a/profiles/vertebrates/MA0721.1.pwm b/profiles/vertebrates/MA0721.1.pwm
index caead5c..e112b8c 100644
--- a/profiles/vertebrates/MA0721.1.pwm
+++ b/profiles/vertebrates/MA0721.1.pwm
@@ -1,8 +1,8 @@
- -89 53 -69 48
- -143 64 -237 91
- 166 -220 -135 -215
- 190 -292 -456 -347
- -432 -357 -636 195
- -188 -153 -268 169
- 176 -231 -390 -149
- 58 -24 18 -94
+ -88 53 -69 48
+ -142 64 -234 90
+ 166 -218 -134 -213
+ 190 -288 -440 -340
+ -418 -349 -584 194
+ -186 -152 -265 169
+ 175 -228 -381 -148
+ 58 -24 18 -93
diff --git a/profiles/vertebrates/MA0722.1.pwm b/profiles/vertebrates/MA0722.1.pwm
index 8e7010a..50e3ac5 100644
--- a/profiles/vertebrates/MA0722.1.pwm
+++ b/profiles/vertebrates/MA0722.1.pwm
@@ -1,8 +1,8 @@
- -178 85 -176 69
- -137 -82 -412 158
- 167 -94 -313 -245
- 191 -319 -492 -339
- -230 -409 -278 184
- -198 -265 -4 139
- 157 -434 -41 -215
- -43 54 -49 13
+ -174 84 -171 68
+ -135 -81 -388 157
+ 166 -92 -300 -238
+ 190 -303 -442 -321
+ -222 -380 -267 183
+ -194 -257 -4 138
+ 156 -406 -40 -210
+ -42 53 -48 12
diff --git a/profiles/vertebrates/MA0723.1.pwm b/profiles/vertebrates/MA0723.1.pwm
index 2c0cbe9..a1dd602 100644
--- a/profiles/vertebrates/MA0723.1.pwm
+++ b/profiles/vertebrates/MA0723.1.pwm
@@ -1,8 +1,8 @@
- -217 91 -158 64
- -173 -73 -441 161
- 166 -70 -345 -300
- 195 -412 -530 -409
- -276 -460 -279 187
- -206 -250 3 136
- 160 -472 -30 -307
- -40 66 -32 -22
+ -213 91 -156 64
+ -171 -73 -422 160
+ 166 -69 -335 -293
+ 194 -393 -488 -390
+ -269 -434 -272 187
+ -203 -246 3 135
+ 159 -448 -30 -300
+ -39 66 -31 -22
diff --git a/profiles/vertebrates/MA0723.2.pwm b/profiles/vertebrates/MA0723.2.pwm
index f5c64e0..363a06c 100644
--- a/profiles/vertebrates/MA0723.2.pwm
+++ b/profiles/vertebrates/MA0723.2.pwm
@@ -1,8 +1,8 @@
- -79 26 33 -5
- -208 65 -495 111
- 125 -1 -256 -110
- 178 -322 -10000 -109
- -328 -10000 -10000 196
- -172 -508 -59 159
- 189 -10000 -10000 -175
- 20 -8 48 -99
+ -78 26 33 -5
+ -204 65 -462 110
+ 124 -1 -252 -109
+ 177 -313 -698 -108
+ -317 -680 -680 195
+ -170 -478 -58 158
+ 188 -687 -687 -172
+ 20 -7 48 -98
diff --git a/profiles/vertebrates/MA0724.1.pwm b/profiles/vertebrates/MA0724.1.pwm
index e69de29..8a52362 100644
--- a/profiles/vertebrates/MA0724.1.pwm
+++ b/profiles/vertebrates/MA0724.1.pwm
@@ -0,0 +1,9 @@
+ 153 -256 -161 -70
+ 12 60 -40 -63
+ -357 174 -745 -84
+ 5 -42 109 -351
+ 198 -464 -721 -573
+ -720 -720 -720 199
+ -720 -720 -720 199
+ 199 -720 -720 -720
+ 39 -317 117 -160
diff --git a/profiles/vertebrates/MA0725.1.pwm b/profiles/vertebrates/MA0725.1.pwm
index e69de29..73edde4 100644
--- a/profiles/vertebrates/MA0725.1.pwm
+++ b/profiles/vertebrates/MA0725.1.pwm
@@ -0,0 +1,8 @@
+ -225 118 -266 46
+ -136 -60 -299 150
+ 182 -255 -272 -272
+ 195 -425 -412 -486
+ -412 -394 -472 194
+ -214 -237 -201 174
+ 152 -311 -49 -175
+ -37 7 11 14
diff --git a/profiles/vertebrates/MA0726.1.pwm b/profiles/vertebrates/MA0726.1.pwm
index e69de29..4816319 100644
--- a/profiles/vertebrates/MA0726.1.pwm
+++ b/profiles/vertebrates/MA0726.1.pwm
@@ -0,0 +1,8 @@
+ -301 137 -296 21
+ -203 -72 -352 161
+ 188 -314 -333 -312
+ 196 -452 -453 -524
+ -459 -405 -486 195
+ -257 -270 -303 183
+ 167 -363 -102 -206
+ -25 -9 31 -3
diff --git a/profiles/vertebrates/MA0727.1.pwm b/profiles/vertebrates/MA0727.1.pwm
index e69de29..c4d7510 100644
--- a/profiles/vertebrates/MA0727.1.pwm
+++ b/profiles/vertebrates/MA0727.1.pwm
@@ -0,0 +1,17 @@
+ -51 -84 75 9
+ 49 -527 133 -419
+ -700 -786 199 -696
+ 83 -279 -56 48
+ 199 -681 -685 -694
+ -790 200 -777 -790
+ 194 -677 -299 -500
+ -62 69 -183 54
+ 76 -113 -31 6
+ 109 -244 39 -140
+ -464 -343 -724 195
+ -814 -791 200 -814
+ -763 -721 -766 199
+ 42 -48 -288 85
+ -729 199 -745 -631
+ -415 124 -410 61
+ -24 69 -47 -29
diff --git a/profiles/vertebrates/MA0728.1.pwm b/profiles/vertebrates/MA0728.1.pwm
index e3b9f22..9ed0d34 100644
--- a/profiles/vertebrates/MA0728.1.pwm
+++ b/profiles/vertebrates/MA0728.1.pwm
@@ -1,15 +1,15 @@
- 47 -217 126 -10000
- 172 -10000 -60 -474
- -10000 -10000 200 -10000
- -552 -10000 199 -10000
- -10000 -10000 -657 200
- -10000 189 -749 -182
- 191 -213 -10000 -704
- 193 -473 -393 -356
- 105 -10000 24 -43
- 200 -10000 -10000 -10000
- -10000 -10000 200 -10000
- -10000 -10000 195 -300
- -554 -10000 -10000 199
- -10000 199 -10000 -583
- 197 -10000 -366 -10000
+ 45 -188 120 -399
+ 167 -414 -56 -344
+ -357 -357 191 -357
+ -312 -339 189 -339
+ -436 -436 -409 194
+ -525 186 -498 -172
+ 187 -197 -481 -454
+ 188 -365 -323 -301
+ 101 -412 23 -40
+ 192 -384 -384 -384
+ -415 -415 194 -415
+ -321 -321 183 -219
+ -383 -433 -433 194
+ -518 196 -518 -448
+ 193 -462 -310 -462
diff --git a/profiles/vertebrates/MA0729.1.pwm b/profiles/vertebrates/MA0729.1.pwm
index c561ae2..f337969 100644
--- a/profiles/vertebrates/MA0729.1.pwm
+++ b/profiles/vertebrates/MA0729.1.pwm
@@ -1,18 +1,18 @@
- 38 -758 142 -558
- 190 -708 -196 -10000
- -10000 -10000 200 -10000
- -758 -10000 196 -333
- -10000 -482 -714 198
- -652 194 -282 -10000
- 199 -10000 -506 -10000
- 156 -10000 -268 -14
- 189 -10000 -556 -194
- 198 -473 -505 -10000
- -10000 -10000 200 -757
- -10000 -10000 182 -108
- -552 -10000 -10000 199
- -10000 200 -10000 -647
- 200 -10000 -708 -10000
- 146 -245 -271 -12
- -612 -10000 71 123
- -10000 -27 71 62
+ 37 -475 139 -425
+ 185 -426 -178 -447
+ -491 -491 196 -491
+ -474 -495 193 -296
+ -453 -370 -432 194
+ -450 191 -255 -489
+ 194 -445 -375 -445
+ 152 -486 -243 -14
+ 185 -453 -398 -177
+ 193 -361 -374 -444
+ -494 -494 196 -473
+ -511 -511 179 -104
+ -393 -449 -449 194
+ -484 196 -484 -445
+ 195 -447 -426 -447
+ 143 -226 -248 -11
+ -412 -451 68 120
+ -450 -25 68 59
diff --git a/profiles/vertebrates/MA0730.1.pwm b/profiles/vertebrates/MA0730.1.pwm
index dc48625..7e48905 100644
--- a/profiles/vertebrates/MA0730.1.pwm
+++ b/profiles/vertebrates/MA0730.1.pwm
@@ -1,17 +1,17 @@
- 161 -389 -19 -10000
- -10000 -10000 200 -754
- -10000 -757 193 -242
- -562 -474 -411 196
- -566 197 -581 -459
- 197 -447 -501 -747
- -18 22 -202 77
- -77 25 69 -70
- -133 87 -124 44
- 136 -168 -94 -73
- 155 -435 1 -563
- 167 -446 -39 -846
- -751 -10000 199 -651
- -853 -573 196 -341
- -518 -472 -448 196
- -695 196 -425 -449
- 196 -699 -393 -525
+ 159 -344 -18 -525
+ -531 -531 197 -504
+ -534 -507 190 -228
+ -428 -388 -351 192
+ -471 195 -479 -407
+ 194 -383 -414 -497
+ -17 21 -190 75
+ -74 25 67 -68
+ -128 85 -119 43
+ 134 -161 -90 -71
+ 152 -374 1 -442
+ 165 -382 -38 -509
+ -501 -528 197 -478
+ -516 -451 193 -309
+ -409 -386 -373 192
+ -521 194 -382 -399
+ 194 -495 -350 -431
diff --git a/profiles/vertebrates/MA0731.1.pwm b/profiles/vertebrates/MA0731.1.pwm
index e69de29..ef7db99 100644
--- a/profiles/vertebrates/MA0731.1.pwm
+++ b/profiles/vertebrates/MA0731.1.pwm
@@ -0,0 +1,17 @@
+ -391 -139 -391 180
+ -287 -368 188 -336
+ -458 195 -458 -400
+ -382 -382 -382 192
+ -383 -383 -383 192
+ -384 -384 -325 191
+ -463 196 -463 -463
+ -410 -211 -86 166
+ 194 -420 -420 -420
+ -355 -355 190 -355
+ -354 -354 190 -354
+ 193 -425 -367 -425
+ 194 -425 -425 -425
+ -385 -327 -385 191
+ -391 -160 -391 182
+ 30 137 -287 -456
+ 109 77 -300 -445
diff --git a/profiles/vertebrates/MA0732.1.pwm b/profiles/vertebrates/MA0732.1.pwm
index e0b52a2..2a0a693 100644
--- a/profiles/vertebrates/MA0732.1.pwm
+++ b/profiles/vertebrates/MA0732.1.pwm
@@ -1,15 +1,15 @@
- -36 58 -64 12
- 10 22 -112 38
- 123 67 -546 -446
- -787 199 -10000 -517
- -312 -416 191 -399
- -10000 200 -786 -10000
- -10000 199 -10000 -555
- -10000 193 -609 -258
- 151 16 -521 -667
- -10000 199 -607 -788
- -385 -433 194 -443
- -791 198 -891 -452
- 169 -286 -122 -229
- -4 53 -192 40
- -6 -26 -85 72
+ -35 57 -62 12
+ 10 22 -108 37
+ 121 66 -445 -388
+ -523 196 -548 -433
+ -293 -377 189 -364
+ -547 197 -522 -547
+ -548 197 -548 -453
+ -551 191 -479 -243
+ 148 16 -427 -483
+ -549 197 -477 -524
+ -352 -389 192 -396
+ -527 196 -539 -395
+ 166 -263 -117 -215
+ -4 52 -182 39
+ -6 -25 -82 71
diff --git a/profiles/vertebrates/MA0733.1.pwm b/profiles/vertebrates/MA0733.1.pwm
index e69de29..c569444 100644
--- a/profiles/vertebrates/MA0733.1.pwm
+++ b/profiles/vertebrates/MA0733.1.pwm
@@ -0,0 +1,16 @@
+ -25 6 -47 48
+ -25 28 -134 63
+ 113 62 -289 -284
+ -341 181 -292 -192
+ -195 -217 167 -161
+ -529 193 -384 -345
+ -312 189 -326 -367
+ -596 191 -319 -298
+ 151 -56 -211 -205
+ -428 186 -320 -221
+ -319 -35 158 -308
+ -538 185 -258 -235
+ 144 -99 -101 -177
+ 37 8 -165 42
+ 5 -79 -110 94
+ -25 -34 -59 77
diff --git a/profiles/vertebrates/MA0734.1.pwm b/profiles/vertebrates/MA0734.1.pwm
index 30f7b55..2ebb0e8 100644
--- a/profiles/vertebrates/MA0734.1.pwm
+++ b/profiles/vertebrates/MA0734.1.pwm
@@ -1,12 +1,12 @@
- -64 -156 140 -142
- -178 170 -193 -241
- -455 -523 194 -338
- 182 -146 -381 -476
- -592 198 -592 -551
- -10000 199 -550 -650
- 196 -414 -594 -472
- -619 198 -534 -619
- 98 10 -62 -172
- -66 154 -243 -185
- 14 -238 -150 124
- 26 -167 103 -119
+ -63 -151 139 -137
+ -170 168 -183 -227
+ -386 -423 191 -305
+ 179 -140 -340 -403
+ -450 195 -450 -433
+ -514 196 -433 -467
+ 193 -359 -452 -395
+ -459 195 -426 -459
+ 96 10 -60 -163
+ -64 152 -230 -178
+ 14 -228 -146 122
+ 26 -162 102 -116
diff --git a/profiles/vertebrates/MA0734.2.pwm b/profiles/vertebrates/MA0734.2.pwm
index 0f97025..76e89c4 100644
--- a/profiles/vertebrates/MA0734.2.pwm
+++ b/profiles/vertebrates/MA0734.2.pwm
@@ -1,15 +1,15 @@
- 35 25 19 -136
- -559 -430 191 -254
- 159 -70 -141 -10000
- -10000 200 -10000 -900
- -10000 200 -10000 -1201
- 190 -264 -544 -380
- -10000 200 -10000 -10000
- -47 171 -10000 -10000
- -463 197 -831 -477
- 195 -922 -296 -745
- -191 176 -271 -244
- -70 -41 128 -225
- 58 -149 -64 59
- -23 82 -193 17
- -316 -184 178 -254
+ 35 25 19 -134
+ -514 -411 190 -249
+ 158 -69 -140 -714
+ -695 199 -695 -664
+ -695 199 -695 -691
+ 190 -258 -502 -366
+ -695 199 -695 -695
+ -47 171 -711 -711
+ -438 196 -649 -449
+ 194 -670 -288 -620
+ -189 176 -266 -239
+ -70 -41 127 -222
+ 58 -147 -64 59
+ -23 81 -191 17
+ -308 -181 177 -249
diff --git a/profiles/vertebrates/MA0734.3.pwm b/profiles/vertebrates/MA0734.3.pwm
index e69de29..b2f13fd 100644
--- a/profiles/vertebrates/MA0734.3.pwm
+++ b/profiles/vertebrates/MA0734.3.pwm
@@ -0,0 +1,13 @@
+ 7 18 20 -58
+ 64 -87 54 -119
+ -313 -255 183 -270
+ 160 -141 -86 -496
+ -349 193 -401 -443
+ -496 196 -464 -503
+ 181 -360 -275 -193
+ -489 195 -470 -429
+ -97 176 -429 -458
+ -315 186 -283 -298
+ 173 -270 -163 -234
+ -103 58 72 -141
+ 25 -15 55 -114
diff --git a/profiles/vertebrates/MA0735.1.pwm b/profiles/vertebrates/MA0735.1.pwm
index ca9e8d6..e32067c 100644
--- a/profiles/vertebrates/MA0735.1.pwm
+++ b/profiles/vertebrates/MA0735.1.pwm
@@ -1,16 +1,16 @@
- 109 28 -392 -77
- -966 -578 183 -125
- 200 -10000 -804 -763
- -10000 200 -923 -10000
- -822 200 -922 -864
- -10000 200 -677 -10000
- -865 200 -791 -924
- -10000 200 -10000 -739
- -756 200 -782 -914
- 196 -918 -344 -818
- -10000 200 -10000 -10000
- -850 -10000 199 -564
- 156 -893 -593 5
- 71 -38 -10000 68
- -842 -891 199 -665
- -87 96 -23 -61
+ 108 28 -368 -75
+ -673 -525 182 -124
+ 198 -632 -594 -584
+ -593 198 -579 -593
+ -566 198 -578 -572
+ -593 198 -530 -593
+ -573 198 -561 -580
+ -590 198 -590 -547
+ -546 198 -552 -570
+ 195 -625 -329 -608
+ -585 198 -585 -585
+ -656 -699 198 -517
+ 155 -636 -525 5
+ 70 -37 -646 67
+ -648 -660 199 -578
+ -86 95 -22 -60
diff --git a/profiles/vertebrates/MA0736.1.pwm b/profiles/vertebrates/MA0736.1.pwm
index 931e078..2b1a6a3 100644
--- a/profiles/vertebrates/MA0736.1.pwm
+++ b/profiles/vertebrates/MA0736.1.pwm
@@ -1,14 +1,14 @@
- -245 -118 120 12
- 165 -147 -100 -802
- -650 199 -650 -576
- -608 199 -10000 -808
- -529 197 -10000 -429
- -709 200 -10000 -10000
- -232 192 -10000 -613
- -254 181 -824 -161
- 25 -485 140 -280
- -662 187 -340 -210
- 32 -335 131 -252
- 101 -391 -4 -8
- 73 11 -113 -32
- -446 -82 168 -238
+ -232 -114 118 11
+ 162 -139 -95 -480
+ -459 195 -459 -436
+ -446 196 -501 -486
+ -418 194 -503 -364
+ -473 196 -503 -503
+ -216 189 -507 -452
+ -236 178 -501 -153
+ 24 -411 138 -260
+ -471 184 -305 -197
+ 32 -307 129 -237
+ 98 -334 -4 -7
+ 71 11 -107 -30
+ -384 -79 165 -224
diff --git a/profiles/vertebrates/MA0737.1.pwm b/profiles/vertebrates/MA0737.1.pwm
index e69de29..1b7d6ab 100644
--- a/profiles/vertebrates/MA0737.1.pwm
+++ b/profiles/vertebrates/MA0737.1.pwm
@@ -0,0 +1,14 @@
+ -421 -243 144 7
+ 190 -393 -263 -438
+ -383 191 -359 -359
+ -378 192 -378 -378
+ -351 188 -396 -256
+ -382 192 -382 -358
+ -257 186 -336 -336
+ -352 178 -352 -131
+ 186 -524 -176 -409
+ -328 173 -222 -149
+ -10 -346 140 -157
+ 167 -448 -220 -86
+ 141 -45 -315 -99
+ -488 -292 192 -410
diff --git a/profiles/vertebrates/MA0738.1.pwm b/profiles/vertebrates/MA0738.1.pwm
index b9516eb..5fe559f 100644
--- a/profiles/vertebrates/MA0738.1.pwm
+++ b/profiles/vertebrates/MA0738.1.pwm
@@ -1,9 +1,9 @@
- 88 -184 69 -194
- -10000 -342 -10000 197
- -158 -206 173 -329
- -574 199 -646 -10000
- -163 186 -10000 -451
- 26 149 -10000 -10000
- 103 -78 8 -162
- -67 85 2 -84
- -69 50 -29 19
+ 87 -180 69 -189
+ -614 -323 -614 195
+ -154 -200 172 -314
+ -493 197 -529 -612
+ -159 185 -625 -415
+ 26 147 -611 -611
+ 102 -77 8 -157
+ -65 84 2 -82
+ -67 50 -28 19
diff --git a/profiles/vertebrates/MA0739.1.pwm b/profiles/vertebrates/MA0739.1.pwm
index e69de29..998b1cb 100644
--- a/profiles/vertebrates/MA0739.1.pwm
+++ b/profiles/vertebrates/MA0739.1.pwm
@@ -0,0 +1,9 @@
+ 103 -207 59 -217
+ -503 -270 -486 192
+ -172 -238 178 -393
+ -519 197 -425 -669
+ -461 197 -560 -489
+ 166 -50 -656 -305
+ 115 -47 -28 -212
+ -163 151 -122 -135
+ -76 80 -54 -3
diff --git a/profiles/vertebrates/MA0740.1.pwm b/profiles/vertebrates/MA0740.1.pwm
index daccb74..8922e79 100644
--- a/profiles/vertebrates/MA0740.1.pwm
+++ b/profiles/vertebrates/MA0740.1.pwm
@@ -1,14 +1,14 @@
- -42 -142 75 27
- 41 -364 133 -368
- -18 119 -264 -56
- -10000 178 -554 -90
- 184 -181 -304 -658
- -764 200 -10000 -764
- -348 -442 193 -463
- -10000 200 -706 -10000
- -10000 199 -707 -607
- -10000 194 -671 -269
- 74 117 -874 -378
- -401 150 -511 11
- -84 25 -249 106
- -38 -19 -143 99
+ -41 -137 73 26
+ 40 -344 132 -347
+ -18 117 -250 -55
+ -534 176 -445 -87
+ 182 -173 -281 -487
+ -491 197 -513 -491
+ -327 -403 192 -419
+ -514 197 -481 -514
+ -515 196 -482 -455
+ -520 191 -478 -249
+ 73 115 -511 -336
+ -360 148 -431 11
+ -81 24 -235 104
+ -37 -18 -139 98
diff --git a/profiles/vertebrates/MA0740.2.pwm b/profiles/vertebrates/MA0740.2.pwm
index e69de29..8b9acdb 100644
--- a/profiles/vertebrates/MA0740.2.pwm
+++ b/profiles/vertebrates/MA0740.2.pwm
@@ -0,0 +1,9 @@
+ -273 -486 128 47
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -133 167 -486 -140
+ -486 -486 196 -486
+ -486 -486 149 16
+ -116 -486 180 -486
+ -32 -188 153 -486
diff --git a/profiles/vertebrates/MA0741.1.pwm b/profiles/vertebrates/MA0741.1.pwm
index 05d9f18..7e00e99 100644
--- a/profiles/vertebrates/MA0741.1.pwm
+++ b/profiles/vertebrates/MA0741.1.pwm
@@ -1,11 +1,11 @@
- -20 -51 108 -167
- 41 125 -314 -254
- -280 190 -617 -326
- 149 17 -368 -10000
- -270 191 -466 -450
- -43 -196 126 -74
- -566 199 -10000 -10000
- -766 199 -566 -10000
- -475 190 -717 -215
- 6 149 -446 -338
- -399 166 -447 -46
+ -19 -50 107 -162
+ 41 124 -296 -243
+ -260 188 -468 -298
+ 146 16 -329 -523
+ -251 188 -396 -386
+ -43 -189 125 -72
+ -444 196 -521 -521
+ -498 196 -444 -521
+ -402 187 -496 -203
+ 6 147 -383 -307
+ -359 164 -393 -45
diff --git a/profiles/vertebrates/MA0742.1.pwm b/profiles/vertebrates/MA0742.1.pwm
index e69de29..4fb6fa0 100644
--- a/profiles/vertebrates/MA0742.1.pwm
+++ b/profiles/vertebrates/MA0742.1.pwm
@@ -0,0 +1,15 @@
+ -121 -324 153 -80
+ 99 -391 94 -519
+ -278 188 -355 -346
+ -383 191 -319 -408
+ 192 -272 -456 -489
+ -343 193 -455 -394
+ -85 -553 175 -409
+ -455 194 -455 -395
+ -462 191 -351 -320
+ -462 193 -462 -320
+ 68 -103 -508 91
+ -1 -13 -121 73
+ 41 5 -138 32
+ -3 -37 -100 80
+ 18 -17 -72 46
diff --git a/profiles/vertebrates/MA0742.2.pwm b/profiles/vertebrates/MA0742.2.pwm
index e69de29..e844733 100644
--- a/profiles/vertebrates/MA0742.2.pwm
+++ b/profiles/vertebrates/MA0742.2.pwm
@@ -0,0 +1,9 @@
+ -123 -486 148 -40
+ -146 -486 183 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -223 189 -486 -486
+ -486 -486 196 -486
+ -421 -157 151 -38
+ -177 -486 186 -486
+ -486 -486 192 -280
diff --git a/profiles/vertebrates/MA0743.1.pwm b/profiles/vertebrates/MA0743.1.pwm
index e69de29..dd2995a 100644
--- a/profiles/vertebrates/MA0743.1.pwm
+++ b/profiles/vertebrates/MA0743.1.pwm
@@ -0,0 +1,15 @@
+ 50 -95 78 -150
+ 63 -49 -160 49
+ -368 -336 148 6
+ -453 194 -493 -369
+ 189 -269 -492 -310
+ 196 -488 -488 -488
+ -521 197 -535 -535
+ 196 -489 -489 -489
+ -109 -509 179 -488
+ -547 -547 197 -519
+ -497 -457 -469 196
+ -145 -312 155 -76
+ -170 -109 111 8
+ -72 -5 -7 56
+ -18 4 -131 75
diff --git a/profiles/vertebrates/MA0743.2.pwm b/profiles/vertebrates/MA0743.2.pwm
index 074d5cf..bf570fd 100644
--- a/profiles/vertebrates/MA0743.2.pwm
+++ b/profiles/vertebrates/MA0743.2.pwm
@@ -1,16 +1,16 @@
- 12 -9 -7 4
- 61 -55 -5 -27
- 18 -79 -57 69
- -177 -102 12 109
- -337 187 -354 -252
- 160 -78 -304 -191
- 193 -535 -326 -391
- -614 198 -607 -613
- 196 -601 -656 -383
- -110 -476 177 -353
- -318 -501 191 -325
- -409 -378 -586 195
- -95 -219 145 -93
- -49 -78 84 -13
- -17 -1 -16 29
- 13 -23 -45 40
+ 12 -9 -7 4
+ 61 -54 -5 -27
+ 18 -79 -57 69
+ -176 -101 12 108
+ -332 186 -348 -249
+ 160 -78 -299 -189
+ 192 -513 -322 -383
+ -578 198 -573 -577
+ 196 -568 -610 -376
+ -109 -461 177 -347
+ -313 -484 190 -320
+ -400 -370 -556 194
+ -94 -217 145 -92
+ -49 -77 84 -13
+ -17 -1 -16 29
+ 13 -23 -44 40
diff --git a/profiles/vertebrates/MA0744.1.pwm b/profiles/vertebrates/MA0744.1.pwm
index e69de29..40ffd9a 100644
--- a/profiles/vertebrates/MA0744.1.pwm
+++ b/profiles/vertebrates/MA0744.1.pwm
@@ -0,0 +1,13 @@
+ 81 -158 66 -160
+ 40 -41 -293 84
+ -464 -352 161 -29
+ -518 197 -533 -533
+ 194 -363 -462 -488
+ 197 -503 -503 -503
+ -403 195 -503 -490
+ 196 -441 -504 -504
+ -139 -476 183 -539
+ -540 -399 196 -540
+ -467 -479 -508 196
+ -170 -246 152 -62
+ -108 -10 80 -23
diff --git a/profiles/vertebrates/MA0744.2.pwm b/profiles/vertebrates/MA0744.2.pwm
index e69de29..c251fcb 100644
--- a/profiles/vertebrates/MA0744.2.pwm
+++ b/profiles/vertebrates/MA0744.2.pwm
@@ -0,0 +1,16 @@
+ 20 -30 11 -6
+ 51 -36 9 -44
+ 87 -137 -39 4
+ -160 -117 112 7
+ -351 185 -355 -212
+ 170 -156 -282 -189
+ 192 -511 -308 -402
+ -580 198 -543 -594
+ 196 -552 -570 -372
+ -116 -438 177 -342
+ -310 -399 188 -290
+ -294 -222 -374 184
+ -64 -152 121 -53
+ -29 -53 62 -7
+ -3 -3 -16 19
+ 12 -24 -40 39
diff --git a/profiles/vertebrates/MA0745.1.pwm b/profiles/vertebrates/MA0745.1.pwm
index 46c412b..d6ef41b 100644
--- a/profiles/vertebrates/MA0745.1.pwm
+++ b/profiles/vertebrates/MA0745.1.pwm
@@ -1,9 +1,9 @@
- 46 -81 35 -35
- 79 -280 70 -99
- -257 185 -352 -293
- 192 -394 -522 -308
- -103 -450 174 -310
- -627 -10000 199 -643
- -893 -573 -10000 199
- -126 -277 153 -85
- -149 44 -13 46
+ 46 -81 35 -35
+ 79 -277 70 -99
+ -255 185 -347 -290
+ 192 -388 -507 -305
+ -103 -442 174 -307
+ -596 -832 199 -609
+ -759 -551 -832 199
+ -126 -276 152 -85
+ -148 44 -13 45
diff --git a/profiles/vertebrates/MA0745.2.pwm b/profiles/vertebrates/MA0745.2.pwm
index 1ef47c4..b97a3b2 100644
--- a/profiles/vertebrates/MA0745.2.pwm
+++ b/profiles/vertebrates/MA0745.2.pwm
@@ -1,13 +1,13 @@
- 36 -19 -4 -20
- -58 10 -27 51
- -15 -84 122 -228
- -481 196 -515 -420
- 197 -583 -476 -566
- -668 198 -513 -561
- -554 197 -456 -506
- -720 -519 -587 198
- -600 -549 198 -651
- -381 -82 -318 170
- 7 71 -87 -39
- 25 -6 10 -36
- -88 23 -48 64
+ 35 -19 -4 -20
+ -58 10 -27 51
+ -15 -84 122 -225
+ -464 195 -493 -409
+ 197 -549 -459 -536
+ -612 197 -492 -532
+ -526 196 -441 -486
+ -645 -497 -553 198
+ -563 -523 198 -600
+ -373 -82 -313 170
+ 7 71 -86 -39
+ 25 -6 10 -36
+ -88 23 -48 64
diff --git a/profiles/vertebrates/MA0746.1.pwm b/profiles/vertebrates/MA0746.1.pwm
index e69de29..9d02588 100644
--- a/profiles/vertebrates/MA0746.1.pwm
+++ b/profiles/vertebrates/MA0746.1.pwm
@@ -0,0 +1,11 @@
+ -16 26 51 -105
+ -50 150 -249 -177
+ -151 173 -286 -243
+ 151 -7 -307 -356
+ -328 189 -404 -284
+ 6 -262 115 -78
+ -339 193 -481 -405
+ -311 192 -450 -439
+ -433 169 -381 -60
+ 79 85 -324 -145
+ -96 115 -145 -16
diff --git a/profiles/vertebrates/MA0746.2.pwm b/profiles/vertebrates/MA0746.2.pwm
index b33f9d3..ccb2ae4 100644
--- a/profiles/vertebrates/MA0746.2.pwm
+++ b/profiles/vertebrates/MA0746.2.pwm
@@ -1,13 +1,13 @@
- -38 19 20 -9
- 19 -183 124 -216
- -156 175 -311 -250
- -345 191 -502 -312
- 167 -30 -969 -723
- -811 200 -10000 -711
- -202 -10000 180 -191
- -10000 200 -10000 -10000
- -10000 200 -10000 -752
- -984 185 -984 -135
- 93 82 -552 -170
- -174 146 -265 -34
- -12 66 -165 24
+ -37 19 20 -9
+ 18 -179 123 -211
+ -153 174 -300 -243
+ -329 190 -456 -299
+ 166 -30 -619 -571
+ -596 198 -632 -567
+ -198 -651 179 -186
+ -631 199 -631 -631
+ -632 198 -632 -580
+ -633 184 -633 -132
+ 93 81 -492 -166
+ -171 145 -257 -33
+ -12 66 -161 24
diff --git a/profiles/vertebrates/MA0747.1.pwm b/profiles/vertebrates/MA0747.1.pwm
index 11ba5d2..01f60a5 100644
--- a/profiles/vertebrates/MA0747.1.pwm
+++ b/profiles/vertebrates/MA0747.1.pwm
@@ -1,12 +1,12 @@
- 32 -63 90 -206
- 34 140 -10000 -342
- -104 170 -10000 -198
- 165 -36 -540 -440
- -268 189 -549 -317
- -142 -86 132 -78
- -317 189 -291 -449
- -443 196 -384 -10000
- -10000 184 -354 -163
- 103 81 -287 -387
- -221 148 -151 -62
- -42 33 -538 98
+ 29 -57 85 -175
+ 31 133 -374 -263
+ -94 164 -399 -173
+ 158 -33 -336 -307
+ -221 181 -345 -252
+ -131 -80 127 -73
+ -252 181 -236 -315
+ -309 188 -285 -375
+ -386 177 -275 -144
+ 98 76 -233 -288
+ -195 143 -138 -58
+ -38 30 -334 93
diff --git a/profiles/vertebrates/MA0748.1.pwm b/profiles/vertebrates/MA0748.1.pwm
index e69de29..826755c 100644
--- a/profiles/vertebrates/MA0748.1.pwm
+++ b/profiles/vertebrates/MA0748.1.pwm
@@ -0,0 +1,11 @@
+ -3 -60 75 -56
+ 48 -92 -60 50
+ -186 140 -219 -20
+ -337 185 -253 -296
+ -265 -196 178 -282
+ -304 192 -437 -459
+ -457 194 -457 -372
+ 186 -356 -336 -241
+ -329 -458 -458 193
+ -94 -70 -98 124
+ 92 -226 -60 32
diff --git a/profiles/vertebrates/MA0748.2.pwm b/profiles/vertebrates/MA0748.2.pwm
index e69de29..07366bc 100644
--- a/profiles/vertebrates/MA0748.2.pwm
+++ b/profiles/vertebrates/MA0748.2.pwm
@@ -0,0 +1,11 @@
+ 46 16 -41 -41
+ -15 17 58 -106
+ 187 -448 -193 -472
+ -423 -231 -333 187
+ -443 -338 194 -498
+ -332 -359 190 -359
+ -350 190 -504 -282
+ -412 -205 186 -388
+ -175 -143 164 -217
+ -56 100 -62 -58
+ -59 10 73 -72
diff --git a/profiles/vertebrates/MA0749.1.pwm b/profiles/vertebrates/MA0749.1.pwm
index c911452..3aaf075 100644
--- a/profiles/vertebrates/MA0749.1.pwm
+++ b/profiles/vertebrates/MA0749.1.pwm
@@ -1,13 +1,13 @@
- -14 104 -110 -83
- -173 -605 -470 187
- 137 -663 48 -753
- -785 -743 -10000 200
- -10000 199 -781 -623
- -359 -899 197 -958
- -842 197 -10000 -364
- -856 -856 200 -10000
- 199 -721 -680 -10000
- -776 174 -10000 -59
- 196 -695 -709 -324
- -369 -248 -126 173
- 109 -244 35 -127
+ -13 103 -108 -82
+ -169 -518 -431 185
+ 136 -547 47 -581
+ -582 -571 -622 198
+ -619 198 -579 -522
+ -341 -615 196 -622
+ -593 196 -621 -343
+ -606 -606 198 -634
+ 198 -561 -546 -617
+ -573 172 -613 -58
+ 194 -553 -558 -308
+ -349 -240 -124 172
+ 108 -237 35 -125
diff --git a/profiles/vertebrates/MA0750.1.pwm b/profiles/vertebrates/MA0750.1.pwm
index eacb79c..5ddbfb0 100644
--- a/profiles/vertebrates/MA0750.1.pwm
+++ b/profiles/vertebrates/MA0750.1.pwm
@@ -1,12 +1,12 @@
- -56 -34 64 -4
- -63 -90 128 -138
- -10000 187 -151 -10000
- -124 -10000 184 -10000
- 163 -41 -584 -284
- -10000 198 -10000 -448
- -399 189 -299 -326
- 186 -202 -10000 -302
- -10000 200 -10000 -10000
- -51 156 -274 -232
- -61 -66 99 -47
- 94 -24 -32 -120
+ -51 -31 60 -4
+ -59 -84 124 -127
+ -387 179 -134 -387
+ -111 -390 177 -390
+ 157 -39 -374 -240
+ -377 190 -377 -312
+ -297 182 -243 -258
+ 179 -175 -388 -245
+ -375 192 -375 -375
+ -48 151 -234 -203
+ -55 -60 94 -43
+ 89 -22 -30 -107
diff --git a/profiles/vertebrates/MA0750.2.pwm b/profiles/vertebrates/MA0750.2.pwm
index 8756ef1..ea22d2e 100644
--- a/profiles/vertebrates/MA0750.2.pwm
+++ b/profiles/vertebrates/MA0750.2.pwm
@@ -1,13 +1,13 @@
- 18 -6 19 -37
- -40 55 26 -80
- -294 177 -129 -420
- -56 163 -255 -397
- -440 -412 195 -484
- -500 -449 196 -487
- 192 -374 -345 -436
- 191 -342 -381 -352
- -254 -236 184 -428
- -168 -9 -117 121
- -107 -56 132 -153
- -43 26 68 -112
- -36 41 35 -69
+ 17 -6 19 -37
+ -39 55 26 -79
+ -286 176 -127 -401
+ -55 162 -250 -380
+ -418 -394 194 -454
+ -468 -426 195 -457
+ 191 -360 -334 -415
+ 190 -331 -366 -341
+ -248 -232 183 -407
+ -166 -9 -116 120
+ -106 -55 131 -151
+ -43 26 68 -111
+ -36 40 35 -68
diff --git a/profiles/vertebrates/MA0751.1.pwm b/profiles/vertebrates/MA0751.1.pwm
index 0d1ab80..cecd1a4 100644
--- a/profiles/vertebrates/MA0751.1.pwm
+++ b/profiles/vertebrates/MA0751.1.pwm
@@ -1,15 +1,15 @@
- -170 -101 113 0
- 116 -73 20 -601
- -140 178 -400 -309
- -201 178 -280 -252
- -66 151 -210 -182
- -655 200 -10000 -955
- -277 194 -10000 -614
- -512 142 -712 37
- -46 -447 167 -445
- -522 135 -183 19
- -80 -108 6 93
- -240 -624 191 -434
- -43 14 -67 61
- -439 -178 154 -42
- 27 45 -130 3
+ -167 -100 113 0
+ 115 -72 20 -517
+ -136 176 -363 -289
+ -193 176 -264 -239
+ -64 149 -203 -175
+ -495 197 -550 -542
+ -260 192 -555 -483
+ -437 140 -521 37
+ -45 -416 166 -415
+ -447 134 -176 18
+ -79 -106 6 93
+ -232 -530 189 -403
+ -42 13 -65 60
+ -411 -174 153 -42
+ 27 44 -127 3
diff --git a/profiles/vertebrates/MA0752.1.pwm b/profiles/vertebrates/MA0752.1.pwm
index 950200a..e8ddc18 100644
--- a/profiles/vertebrates/MA0752.1.pwm
+++ b/profiles/vertebrates/MA0752.1.pwm
@@ -1,17 +1,17 @@
- -59 -51 -7 75
- 78 91 -132 -896
- -997 186 -10000 -144
- 200 -896 -996 -796
- -433 -493 -302 192
- -387 197 -997 -797
- -638 200 -10000 -10000
- -10000 200 -996 -10000
- 200 -764 -996 -896
- -10000 -679 -10000 200
- 200 -696 -10000 -10000
- 200 -896 -838 -996
- -796 -738 -10000 200
- 197 -588 -454 -539
- 10 37 -69 3
- -256 -31 -36 117
- -34 138 -344 -96
+ -58 -50 -7 74
+ 77 90 -129 -583
+ -592 184 -601 -140
+ 198 -583 -591 -568
+ -396 -439 -287 191
+ -359 196 -592 -569
+ -519 198 -600 -600
+ -600 198 -591 -600
+ 198 -561 -591 -583
+ -600 -535 -600 198
+ 198 -541 -600 -600
+ 198 -583 -575 -591
+ -568 -554 -600 198
+ 195 -496 -412 -468
+ 10 36 -67 3
+ -245 -30 -36 115
+ -33 137 -324 -94
diff --git a/profiles/vertebrates/MA0753.1.pwm b/profiles/vertebrates/MA0753.1.pwm
index 7b3c052..276ddb1 100644
--- a/profiles/vertebrates/MA0753.1.pwm
+++ b/profiles/vertebrates/MA0753.1.pwm
@@ -1,10 +1,10 @@
- 13 89 -49 -154
- -168 177 -454 -212
- -201 187 -639 -359
- -472 196 -611 -402
- -479 196 -553 -407
- -611 196 -472 -420
- -342 193 -390 -462
- -247 185 -470 -252
- 144 -43 -279 -135
- -100 131 -224 -30
+ 13 87 -48 -148
+ -162 175 -402 -203
+ -192 185 -495 -329
+ -408 193 -479 -361
+ -412 193 -453 -364
+ -479 194 -408 -373
+ -314 190 -352 -403
+ -234 183 -410 -239
+ 143 -42 -267 -132
+ -98 130 -217 -29
diff --git a/profiles/vertebrates/MA0753.2.pwm b/profiles/vertebrates/MA0753.2.pwm
index 9536802..b69b4ec 100644
--- a/profiles/vertebrates/MA0753.2.pwm
+++ b/profiles/vertebrates/MA0753.2.pwm
@@ -1,13 +1,13 @@
- -50 93 -54 -51
- -99 107 -216 23
- 25 -83 79 -97
- -232 181 -302 -262
- -142 184 -440 -820
- -392 195 -609 -409
- -364 194 -529 -420
- -357 195 -651 -463
- -475 197 -527 -549
- -705 199 -647 -647
- -136 184 -562 -620
- 150 -65 -246 -148
- -92 143 -285 -67
+ -48 91 -51 -49
+ -95 105 -203 22
+ 25 -81 78 -95
+ -216 178 -275 -241
+ -135 181 -372 -493
+ -339 191 -444 -350
+ -319 191 -415 -356
+ -314 192 -456 -382
+ -387 193 -412 -422
+ -464 195 -452 -452
+ -129 181 -434 -455
+ 147 -63 -231 -142
+ -89 141 -266 -65
diff --git a/profiles/vertebrates/MA0754.1.pwm b/profiles/vertebrates/MA0754.1.pwm
index e69de29..585b830 100644
--- a/profiles/vertebrates/MA0754.1.pwm
+++ b/profiles/vertebrates/MA0754.1.pwm
@@ -0,0 +1,10 @@
+ -116 -98 -192 147
+ 98 -197 25 -77
+ 197 -542 -480 -496
+ -583 -428 -575 197
+ -611 195 -608 -337
+ 55 -441 130 -523
+ 197 -619 -566 -457
+ -507 -555 -647 198
+ 104 -40 -71 -81
+ 35 25 -69 -12
diff --git a/profiles/vertebrates/MA0754.2.pwm b/profiles/vertebrates/MA0754.2.pwm
index e69de29..28bd11a 100644
--- a/profiles/vertebrates/MA0754.2.pwm
+++ b/profiles/vertebrates/MA0754.2.pwm
@@ -0,0 +1,10 @@
+ -149 -98 -175 151
+ 165 -391 -99 -182
+ 177 -632 -82 -570
+ -602 -362 -391 194
+ -519 194 -451 -367
+ 14 -605 150 -438
+ 197 -534 -486 -507
+ -467 -374 -434 194
+ 164 -169 -202 -161
+ 93 2 -125 -59
diff --git a/profiles/vertebrates/MA0755.1.pwm b/profiles/vertebrates/MA0755.1.pwm
index 992872b..b72db13 100644
--- a/profiles/vertebrates/MA0755.1.pwm
+++ b/profiles/vertebrates/MA0755.1.pwm
@@ -1,10 +1,10 @@
- -95 -177 -188 154
- 108 -209 12 -82
- 196 -555 -443 -508
- -466 -272 -464 191
- -729 197 -695 -398
- 25 -579 146 -487
- 199 -738 -614 -591
- -487 -538 -745 198
- 124 -71 -134 -67
- 80 -26 -117 -3
+ -94 -176 -186 154
+ 108 -208 12 -82
+ 196 -525 -429 -486
+ -450 -268 -448 191
+ -646 197 -626 -388
+ 25 -544 146 -468
+ 198 -650 -570 -553
+ -468 -511 -654 197
+ 124 -71 -134 -67
+ 79 -26 -116 -3
diff --git a/profiles/vertebrates/MA0756.1.pwm b/profiles/vertebrates/MA0756.1.pwm
index b3db2d1..cc0279f 100644
--- a/profiles/vertebrates/MA0756.1.pwm
+++ b/profiles/vertebrates/MA0756.1.pwm
@@ -1,14 +1,14 @@
- 79 -42 -14 -70
- 120 -163 -21 -95
- 144 -179 -123 -79
- 157 -236 -327 -43
- 191 -572 -247 -498
- 198 -923 -506 -665
- -623 -623 -606 198
- -664 199 -10000 -690
- 58 -523 131 -10000
- 198 -823 -923 -477
- -491 -543 -10000 198
- 178 -304 -272 -176
- 95 -47 -175 6
- 13 -18 -133 70
+ 78 -41 -14 -68
+ 118 -157 -20 -92
+ 142 -174 -120 -78
+ 155 -226 -309 -43
+ 189 -470 -234 -429
+ 196 -547 -432 -503
+ -488 -488 -481 196
+ -502 197 -557 -510
+ 57 -441 129 -558
+ 196 -537 -547 -414
+ -423 -452 -559 196
+ 176 -287 -258 -170
+ 94 -46 -169 6
+ 13 -17 -128 69
diff --git a/profiles/vertebrates/MA0756.2.pwm b/profiles/vertebrates/MA0756.2.pwm
index 1f53cc8..a713e3e 100644
--- a/profiles/vertebrates/MA0756.2.pwm
+++ b/profiles/vertebrates/MA0756.2.pwm
@@ -1,9 +1,9 @@
- -21 88 -20 -122
- -19 -362 159 -470
- 174 -545 -80 -401
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- 48 -622 137 -10000
- 200 -10000 -10000 -10000
- -10000 -568 -10000 199
- 173 -401 -85 -423
+ -21 87 -20 -120
+ -18 -347 158 -437
+ 173 -499 -79 -383
+ -657 -657 -657 199
+ -657 199 -657 -657
+ 48 -539 136 -657
+ 199 -657 -657 -657
+ -657 -507 -657 198
+ 173 -383 -84 -401
diff --git a/profiles/vertebrates/MA0757.1.pwm b/profiles/vertebrates/MA0757.1.pwm
index 9829436..292b978 100644
--- a/profiles/vertebrates/MA0757.1.pwm
+++ b/profiles/vertebrates/MA0757.1.pwm
@@ -1,14 +1,14 @@
- 90 -57 -13 -87
- 134 -200 -41 -110
- 165 -282 -196 -114
- 168 -345 -408 -64
- 196 -581 -394 -486
- 199 -826 -523 -712
- -560 -392 -680 197
- -605 199 -899 -826
- 137 -626 48 -712
- 199 -799 -741 -612
- -516 -800 -778 199
- 186 -400 -317 -228
- 125 -82 -187 -36
- 29 -26 -126 61
+ 89 -56 -13 -86
+ 133 -195 -41 -108
+ 164 -273 -191 -112
+ 167 -331 -386 -63
+ 194 -505 -370 -442
+ 197 -596 -467 -565
+ -492 -368 -554 195
+ -517 198 -607 -595
+ 136 -527 47 -564
+ 198 -590 -574 -521
+ -462 -590 -585 197
+ 184 -377 -304 -222
+ 124 -81 -182 -36
+ 29 -25 -124 60
diff --git a/profiles/vertebrates/MA0758.1.pwm b/profiles/vertebrates/MA0758.1.pwm
index e69de29..3886213 100644
--- a/profiles/vertebrates/MA0758.1.pwm
+++ b/profiles/vertebrates/MA0758.1.pwm
@@ -0,0 +1,14 @@
+ -24 -176 -51 111
+ -243 -406 -326 187
+ -501 -453 -501 196
+ -499 -482 -499 196
+ -500 196 -467 -500
+ -501 195 -382 -501
+ -500 197 -500 -500
+ -472 -488 196 -505
+ -503 197 -503 -503
+ -505 194 -337 -487
+ 196 -493 -493 -422
+ 195 -479 -450 -414
+ 189 -458 -491 -220
+ 140 -458 -458 36
diff --git a/profiles/vertebrates/MA0759.1.pwm b/profiles/vertebrates/MA0759.1.pwm
index c88d9f0..7a2dafc 100644
--- a/profiles/vertebrates/MA0759.1.pwm
+++ b/profiles/vertebrates/MA0759.1.pwm
@@ -1,10 +1,10 @@
- 127 -165 -38 -102
- -138 167 -165 -319
- -231 191 -541 -622
- -913 -10000 200 -10000
- -818 -718 195 -290
- 199 -633 -755 -913
- 176 -394 -10000 -90
- -61 -163 156 -371
- -233 -64 -218 156
- 48 -81 21 -18
+ 126 -161 -37 -100
+ -134 166 -160 -299
+ -219 189 -450 -486
+ -536 -547 197 -547
+ -531 -513 192 -271
+ 197 -485 -518 -537
+ 175 -359 -570 -88
+ -60 -158 154 -345
+ -224 -63 -210 154
+ 47 -79 21 -18
diff --git a/profiles/vertebrates/MA0759.2.pwm b/profiles/vertebrates/MA0759.2.pwm
index adcee1d..f19715d 100644
--- a/profiles/vertebrates/MA0759.2.pwm
+++ b/profiles/vertebrates/MA0759.2.pwm
@@ -1,11 +1,11 @@
- 142 -241 -4 -254
- -400 183 -150 -507
- -848 200 -883 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 198 -558 -508 -631
- 192 -492 -551 -258
- -151 -253 179 -726
- -403 -69 -333 169
- 8 -57 64 -49
- -9 28 47 -113
+ 141 -237 -4 -249
+ -386 182 -148 -477
+ -666 199 -675 -714
+ -714 -714 199 -714
+ -714 -714 199 -714
+ 197 -517 -478 -568
+ 191 -465 -512 -253
+ -149 -248 179 -624
+ -389 -69 -324 168
+ 7 -57 64 -48
+ -9 28 47 -112
diff --git a/profiles/vertebrates/MA0760.1.pwm b/profiles/vertebrates/MA0760.1.pwm
index e69de29..0bc26c7 100644
--- a/profiles/vertebrates/MA0760.1.pwm
+++ b/profiles/vertebrates/MA0760.1.pwm
@@ -0,0 +1,10 @@
+ 168 -305 -82 -325
+ -263 163 -251 -83
+ -112 173 -267 -403
+ -384 -384 192 -384
+ -386 -303 190 -386
+ 187 -306 -306 -329
+ 174 -403 -403 -89
+ 10 -194 139 -438
+ -415 -60 -220 162
+ 26 -78 81 -109
diff --git a/profiles/vertebrates/MA0761.1.pwm b/profiles/vertebrates/MA0761.1.pwm
index e69de29..abd9fe3 100644
--- a/profiles/vertebrates/MA0761.1.pwm
+++ b/profiles/vertebrates/MA0761.1.pwm
@@ -0,0 +1,10 @@
+ 129 -193 -48 -80
+ -144 158 -108 -256
+ -175 186 -438 -487
+ -582 -582 198 -582
+ -584 -584 195 -344
+ 195 -423 -528 -404
+ 144 -268 -471 13
+ 1 -159 138 -412
+ -185 -1 -174 128
+ 55 -74 25 -41
diff --git a/profiles/vertebrates/MA0761.2.pwm b/profiles/vertebrates/MA0761.2.pwm
index 1795c49..f6272e1 100644
--- a/profiles/vertebrates/MA0761.2.pwm
+++ b/profiles/vertebrates/MA0761.2.pwm
@@ -1,14 +1,14 @@
- 44 -32 5 -30
- 28 -11 16 -43
- 129 -111 -63 -116
- -234 178 -197 -328
- 184 -161 -403 -456
- -534 -509 197 -474
- -463 -511 195 -404
- 195 -431 -464 -468
- 184 -426 -450 -160
- -114 -284 174 -411
- -148 -126 -157 153
- -24 -88 102 -79
- 32 -32 21 -34
- 8 -3 6 -11
+ 43 -32 5 -29
+ 28 -11 16 -43
+ 128 -110 -63 -115
+ -231 178 -194 -321
+ 183 -159 -392 -440
+ -507 -486 196 -456
+ -446 -488 195 -393
+ 195 -418 -447 -451
+ 183 -413 -435 -159
+ -113 -279 174 -399
+ -147 -125 -155 153
+ -24 -88 102 -79
+ 32 -32 21 -34
+ 8 -3 5 -11
diff --git a/profiles/vertebrates/MA0762.1.pwm b/profiles/vertebrates/MA0762.1.pwm
index 252dbcb..18e299e 100644
--- a/profiles/vertebrates/MA0762.1.pwm
+++ b/profiles/vertebrates/MA0762.1.pwm
@@ -1,11 +1,11 @@
- 110 -113 -47 -58
- 195 -493 -373 -593
- -257 181 -163 -10000
- -149 186 -676 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 183 -838 -10000 -122
- 151 -721 19 -10000
- -457 4 -269 147
- 91 -129 16 -77
+ 109 -110 -46 -57
+ 192 -402 -328 -445
+ -239 178 -155 -521
+ -142 183 -476 -516
+ -503 -503 197 -503
+ -503 -503 197 -503
+ 197 -503 -503 -503
+ 181 -504 -519 -116
+ 148 -475 18 -503
+ -400 4 -253 145
+ 90 -124 16 -75
diff --git a/profiles/vertebrates/MA0763.1.pwm b/profiles/vertebrates/MA0763.1.pwm
index e69de29..f49d655 100644
--- a/profiles/vertebrates/MA0763.1.pwm
+++ b/profiles/vertebrates/MA0763.1.pwm
@@ -0,0 +1,10 @@
+ 145 -137 -93 -151
+ -174 158 -203 -107
+ -228 179 -399 -190
+ -394 -394 184 -177
+ -395 -395 183 -163
+ 185 -234 -393 -293
+ 154 -424 -424 -1
+ -29 -207 153 -425
+ -408 -91 -262 170
+ -5 -37 81 -100
diff --git a/profiles/vertebrates/MA0764.1.pwm b/profiles/vertebrates/MA0764.1.pwm
index 9e89f32..48cc89a 100644
--- a/profiles/vertebrates/MA0764.1.pwm
+++ b/profiles/vertebrates/MA0764.1.pwm
@@ -1,10 +1,10 @@
- 118 -176 -37 -60
- -94 151 -94 -309
- -145 185 -529 -699
- -10000 -568 199 -10000
- -10000 -10000 199 -477
- 199 -10000 -604 -653
- 143 -351 -561 27
- 12 -172 133 -358
- -191 -18 -140 131
- 70 -79 7 -42
+ 117 -171 -37 -59
+ -92 149 -91 -290
+ -139 182 -437 -501
+ -528 -448 196 -528
+ -528 -528 196 -402
+ 196 -528 -462 -478
+ 141 -327 -473 27
+ 12 -167 132 -334
+ -185 -18 -136 129
+ 68 -77 7 -41
diff --git a/profiles/vertebrates/MA0764.2.pwm b/profiles/vertebrates/MA0764.2.pwm
index e69de29..5c6420f 100644
--- a/profiles/vertebrates/MA0764.2.pwm
+++ b/profiles/vertebrates/MA0764.2.pwm
@@ -0,0 +1,10 @@
+ 56 -49 37 -95
+ -79 112 -12 -163
+ 198 -466 -653 -653
+ -653 -421 197 -585
+ -647 -647 198 -456
+ 198 -653 -653 -508
+ 197 -447 -653 -610
+ -597 -538 198 -530
+ -69 6 -11 50
+ 15 -39 53 -55
diff --git a/profiles/vertebrates/MA0764.3.pwm b/profiles/vertebrates/MA0764.3.pwm
index e69de29..4a075df 100644
--- a/profiles/vertebrates/MA0764.3.pwm
+++ b/profiles/vertebrates/MA0764.3.pwm
@@ -0,0 +1,10 @@
+ 117 -173 -3 -110
+ -241 171 -110 -361
+ -252 191 -407 -690
+ -694 -694 199 -694
+ -694 -694 199 -694
+ 195 -469 -450 -455
+ 160 -290 -396 -38
+ -57 -178 158 -438
+ -269 -7 -179 138
+ 8 -44 62 -59
diff --git a/profiles/vertebrates/MA0765.1.pwm b/profiles/vertebrates/MA0765.1.pwm
index e69de29..f4bfd05 100644
--- a/profiles/vertebrates/MA0765.1.pwm
+++ b/profiles/vertebrates/MA0765.1.pwm
@@ -0,0 +1,10 @@
+ 98 -135 -8 -55
+ -93 116 -35 -115
+ -152 183 -396 -537
+ -590 -590 198 -500
+ -590 -590 197 -415
+ 194 -477 -488 -349
+ 112 -252 -340 64
+ -28 -124 139 -297
+ -179 25 -124 107
+ 18 -34 27 -20
diff --git a/profiles/vertebrates/MA0765.2.pwm b/profiles/vertebrates/MA0765.2.pwm
index 5960bb1..4001ae2 100644
--- a/profiles/vertebrates/MA0765.2.pwm
+++ b/profiles/vertebrates/MA0765.2.pwm
@@ -1,11 +1,11 @@
- -54 28 11 2
- -46 65 -10 -37
- 156 -143 -112 -218
- -440 187 -273 -276
- -266 -252 -401 185
- -489 -278 -301 189
- -476 195 -429 -469
- -416 193 -372 -407
- -235 -192 151 -54
- -112 7 86 -57
- -49 35 -12 13
+ -53 28 11 2
+ -46 64 -10 -36
+ 155 -141 -111 -215
+ -423 186 -268 -271
+ -261 -248 -388 184
+ -466 -273 -295 188
+ -455 195 -414 -449
+ -402 192 -362 -394
+ -231 -189 151 -54
+ -111 7 86 -56
+ -49 35 -12 13
diff --git a/profiles/vertebrates/MA0765.3.pwm b/profiles/vertebrates/MA0765.3.pwm
index 51e3557..f10eec3 100644
--- a/profiles/vertebrates/MA0765.3.pwm
+++ b/profiles/vertebrates/MA0765.3.pwm
@@ -1,10 +1,10 @@
- 157 -269 -91 -158
- -440 192 -286 -527
- -554 199 -740 -10000
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 197 -444 -748 -525
- 184 -509 -790 -136
- -126 -308 179 -663
- -389 -83 -361 172
- 41 -66 52 -73
+ 157 -263 -90 -156
+ -419 191 -279 -491
+ -509 198 -617 -696
+ -695 -695 199 -695
+ -695 -695 199 -695
+ 196 -422 -621 -488
+ 183 -475 -636 -134
+ -124 -300 178 -581
+ -374 -82 -348 171
+ 41 -66 52 -73
diff --git a/profiles/vertebrates/MA0766.1.pwm b/profiles/vertebrates/MA0766.1.pwm
index 770d79b..ea2f2d7 100644
--- a/profiles/vertebrates/MA0766.1.pwm
+++ b/profiles/vertebrates/MA0766.1.pwm
@@ -1,8 +1,8 @@
- 84 -37 -299 40
- -10000 -10000 200 -10000
- 200 -10000 -689 -10000
- -10000 -10000 -10000 200
- 160 -209 -469 -54
- 153 -196 -120 -122
- -56 26 75 -118
- 73 -47 36 -155
+ 83 -37 -290 40
+ -548 -548 198 -548
+ 197 -548 -503 -548
+ -548 -548 -548 198
+ 159 -201 -418 -53
+ 151 -190 -117 -119
+ -54 26 73 -114
+ 71 -45 35 -148
diff --git a/profiles/vertebrates/MA0766.2.pwm b/profiles/vertebrates/MA0766.2.pwm
index e69de29..93b1ee4 100644
--- a/profiles/vertebrates/MA0766.2.pwm
+++ b/profiles/vertebrates/MA0766.2.pwm
@@ -0,0 +1,10 @@
+ -61 78 -12 -49
+ 85 -92 -574 72
+ -693 -693 199 -693
+ 199 -693 -693 -693
+ -693 -693 -693 199
+ 196 -696 -696 -345
+ 195 -697 -410 -408
+ -406 90 94 -272
+ 58 -58 76 -279
+ 38 25 -29 -54
diff --git a/profiles/vertebrates/MA0767.1.pwm b/profiles/vertebrates/MA0767.1.pwm
index 62ff2e1..e6eb8da 100644
--- a/profiles/vertebrates/MA0767.1.pwm
+++ b/profiles/vertebrates/MA0767.1.pwm
@@ -1,10 +1,10 @@
- -88 4 18 37
- 160 -250 -54 -327
- -394 -310 -387 191
- -62 -366 171 -10000
- -231 166 -160 -172
- -282 -849 188 -245
- -10000 -10000 199 -468
- -837 -10000 200 -10000
- -247 7 -248 137
- 86 -124 5 -46
+ -85 4 18 36
+ 158 -236 -53 -302
+ -347 -283 -342 188
+ -60 -331 169 -541
+ -219 164 -153 -164
+ -260 -510 185 -229
+ -514 -514 195 -391
+ -498 -512 197 -512
+ -235 7 -236 136
+ 84 -118 5 -44
diff --git a/profiles/vertebrates/MA0768.1.pwm b/profiles/vertebrates/MA0768.1.pwm
index 46d0429..4b0bd86 100644
--- a/profiles/vertebrates/MA0768.1.pwm
+++ b/profiles/vertebrates/MA0768.1.pwm
@@ -1,15 +1,15 @@
- 114 -98 -35 -99
- 146 -319 -20 -192
- 189 -475 -247 -375
- -603 -43 169 -676
- 196 -10000 -549 -358
- -466 -624 -10000 198
- -416 190 -236 -565
- 199 -10000 -10000 -548
- 199 -10000 -548 -10000
- 197 -10000 -381 -551
- -309 -355 192 -10000
- -78 -88 133 -145
- 10 -81 96 -125
- 72 -182 -134 74
- 61 -134 -164 81
+ 112 -94 -34 -95
+ 143 -286 -19 -180
+ 185 -373 -223 -317
+ -471 -42 167 -496
+ 192 -460 -400 -304
+ -381 -445 -493 194
+ -357 187 -219 -434
+ 195 -459 -459 -399
+ 195 -459 -399 -459
+ 192 -462 -320 -402
+ -283 -319 190 -522
+ -76 -85 131 -140
+ 10 -79 94 -120
+ 70 -170 -127 72
+ 59 -127 -155 79
diff --git a/profiles/vertebrates/MA0768.2.pwm b/profiles/vertebrates/MA0768.2.pwm
index e69de29..d2388d9 100644
--- a/profiles/vertebrates/MA0768.2.pwm
+++ b/profiles/vertebrates/MA0768.2.pwm
@@ -0,0 +1,14 @@
+ 8 -17 -23 27
+ -18 -26 -13 45
+ -60 -22 18 43
+ -178 152 -101 -150
+ -302 184 -325 -239
+ -378 -335 -365 191
+ -335 -233 -256 182
+ -341 -341 -358 190
+ -178 -174 168 -223
+ 184 -294 -307 -250
+ -101 -294 -223 166
+ -96 17 75 -57
+ -20 -30 -92 84
+ -50 14 -4 28
diff --git a/profiles/vertebrates/MA0769.1.pwm b/profiles/vertebrates/MA0769.1.pwm
index e69de29..baeb4b6 100644
--- a/profiles/vertebrates/MA0769.1.pwm
+++ b/profiles/vertebrates/MA0769.1.pwm
@@ -0,0 +1,12 @@
+ 137 -151 -79 -105
+ 153 -284 -87 -122
+ 187 -441 -285 -269
+ -438 10 150 -427
+ 189 -467 -440 -232
+ -490 -419 -317 193
+ -328 187 -297 -328
+ 195 -496 -424 -413
+ 194 -414 -377 -450
+ 196 -494 -494 -434
+ -252 -487 191 -487
+ -62 -74 125 -141
diff --git a/profiles/vertebrates/MA0769.2.pwm b/profiles/vertebrates/MA0769.2.pwm
index e69de29..445f635 100644
--- a/profiles/vertebrates/MA0769.2.pwm
+++ b/profiles/vertebrates/MA0769.2.pwm
@@ -0,0 +1,11 @@
+ -31 -4 9 21
+ -27 29 -23 12
+ -374 193 -400 -433
+ -377 -460 -527 195
+ -351 -376 -367 191
+ -327 -535 -506 194
+ -367 -361 189 -289
+ 195 -534 -470 -381
+ 24 -209 -160 117
+ -36 35 50 -91
+ -10 -45 -114 91
diff --git a/profiles/vertebrates/MA0770.1.pwm b/profiles/vertebrates/MA0770.1.pwm
index e69de29..c62ab59 100644
--- a/profiles/vertebrates/MA0770.1.pwm
+++ b/profiles/vertebrates/MA0770.1.pwm
@@ -0,0 +1,13 @@
+ -224 -410 -307 185
+ -446 -563 -375 195
+ -473 197 -560 -579
+ -607 -55 -179 159
+ 148 -99 -51 -628
+ -560 -578 198 -569
+ 194 -371 -547 -428
+ 192 -574 -448 -278
+ -213 81 -33 30
+ 32 -75 59 -63
+ -250 -342 -311 185
+ -384 -304 -389 190
+ -320 175 -286 -133
diff --git a/profiles/vertebrates/MA0771.1.pwm b/profiles/vertebrates/MA0771.1.pwm
index 4d0254f..cb92a80 100644
--- a/profiles/vertebrates/MA0771.1.pwm
+++ b/profiles/vertebrates/MA0771.1.pwm
@@ -1,13 +1,13 @@
- -88 -178 -166 151
- -203 -503 -159 176
- -478 196 -454 -521
- -616 -3 -45 119
- 109 -24 2 -716
- -972 -772 200 -830
- 177 -182 -591 -182
- 169 -292 -308 -92
- -89 55 -20 17
- 5 -18 40 -39
- -119 -341 -297 174
- -305 -505 -428 193
- -474 194 -471 -362
+ -87 -176 -164 150
+ -199 -466 -156 175
+ -442 195 -423 -474
+ -563 -3 -44 118
+ 109 -23 2 -629
+ -637 -600 198 -616
+ 176 -179 -528 -178
+ 168 -284 -299 -91
+ -88 55 -20 17
+ 5 -18 40 -39
+ -118 -329 -288 173
+ -295 -464 -403 191
+ -440 193 -437 -346
diff --git a/profiles/vertebrates/MA0772.1.pwm b/profiles/vertebrates/MA0772.1.pwm
index e69de29..72ed0ad 100644
--- a/profiles/vertebrates/MA0772.1.pwm
+++ b/profiles/vertebrates/MA0772.1.pwm
@@ -0,0 +1,14 @@
+ 62 42 -164 -31
+ -149 171 -234 -244
+ -273 -197 171 -159
+ 196 -441 -469 -484
+ 196 -484 -484 -468
+ 196 -454 -469 -469
+ 21 -59 105 -327
+ -391 124 -455 62
+ -274 -447 190 -404
+ 193 -336 -433 -422
+ 195 -442 -442 -469
+ 188 -381 -407 -240
+ 36 6 42 -158
+ -81 -87 -290 146
diff --git a/profiles/vertebrates/MA0773.1.pwm b/profiles/vertebrates/MA0773.1.pwm
index e69de29..7be03ea 100644
--- a/profiles/vertebrates/MA0773.1.pwm
+++ b/profiles/vertebrates/MA0773.1.pwm
@@ -0,0 +1,12 @@
+ 54 -352 41 18
+ -498 197 -627 -436
+ -605 -516 -625 198
+ 198 -575 -611 -586
+ 93 -625 -611 105
+ 181 -616 -643 -106
+ 193 -630 -616 -269
+ 197 -612 -619 -407
+ -625 -625 -625 199
+ 198 -625 -598 -625
+ -212 -542 190 -600
+ 98 68 -419 -144
diff --git a/profiles/vertebrates/MA0774.1.pwm b/profiles/vertebrates/MA0774.1.pwm
index 5eb35a4..3f2692c 100644
--- a/profiles/vertebrates/MA0774.1.pwm
+++ b/profiles/vertebrates/MA0774.1.pwm
@@ -1,8 +1,8 @@
- -52 -115 -90 121
- -352 -689 -315 192
- -10000 -10000 200 -10000
- 191 -691 -385 -254
- -524 199 -10000 -609
- 199 -560 -641 -10000
- -227 -203 176 -258
- -135 81 70 -218
+ -51 -112 -88 120
+ -316 -483 -288 189
+ -514 -514 197 -514
+ 188 -485 -341 -236
+ -422 195 -515 -456
+ 196 -438 -466 -515
+ -214 -192 173 -241
+ -129 80 69 -206
diff --git a/profiles/vertebrates/MA0775.1.pwm b/profiles/vertebrates/MA0775.1.pwm
index e69de29..a65476a 100644
--- a/profiles/vertebrates/MA0775.1.pwm
+++ b/profiles/vertebrates/MA0775.1.pwm
@@ -0,0 +1,8 @@
+ 6 -446 0 94
+ -210 -237 -289 178
+ -633 -599 199 -633
+ 189 -551 -203 -469
+ -463 194 -593 -336
+ 187 -601 -200 -355
+ -92 -76 115 -61
+ -88 38 68 -86
diff --git a/profiles/vertebrates/MA0776.1.pwm b/profiles/vertebrates/MA0776.1.pwm
index e69de29..bc6c36a 100644
--- a/profiles/vertebrates/MA0776.1.pwm
+++ b/profiles/vertebrates/MA0776.1.pwm
@@ -0,0 +1,12 @@
+ 151 -389 -48 -140
+ -98 164 -240 -251
+ -136 167 -132 -574
+ -323 -486 194 -509
+ -471 -388 -547 195
+ -463 -476 -545 196
+ 196 -546 -452 -440
+ 195 -422 -396 -547
+ -441 196 -535 -452
+ -285 45 80 -41
+ -98 -142 115 -15
+ -71 46 -342 94
diff --git a/profiles/vertebrates/MA0777.1.pwm b/profiles/vertebrates/MA0777.1.pwm
index e69de29..316c0ba 100644
--- a/profiles/vertebrates/MA0777.1.pwm
+++ b/profiles/vertebrates/MA0777.1.pwm
@@ -0,0 +1,15 @@
+ 124 -295 44 -273
+ 95 -229 18 -44
+ -194 175 -197 -293
+ -178 164 -100 -333
+ -445 -506 196 -491
+ -414 -439 -328 192
+ -506 -410 -506 196
+ 132 -257 -252 20
+ 191 -302 -369 -460
+ 181 -289 -323 -200
+ -378 194 -438 -457
+ -225 43 59 -9
+ -210 -157 166 -191
+ -75 26 -193 96
+ -274 100 -359 82
diff --git a/profiles/vertebrates/MA0778.1.pwm b/profiles/vertebrates/MA0778.1.pwm
index bd34464..23125d9 100644
--- a/profiles/vertebrates/MA0778.1.pwm
+++ b/profiles/vertebrates/MA0778.1.pwm
@@ -1,13 +1,13 @@
- 78 -26 -35 -57
- -535 -541 198 -1001
- -1197 -1197 200 -1038
- -902 -970 195 -288
- -66 -858 165 -209
- 163 -147 -166 -209
- 88 -555 -579 108
- -164 -139 -176 159
- -201 168 -750 -88
- -366 197 -1166 -620
- -1063 200 -1163 -1063
- -866 200 -1007 -713
- -109 3 -58 88
+ 77 -26 -35 -57
+ -499 -504 197 -696
+ -705 -705 199 -696
+ -681 -693 194 -282
+ -65 -671 164 -206
+ 162 -145 -163 -204
+ 87 -499 -515 108
+ -162 -137 -174 158
+ -198 167 -616 -87
+ -352 196 -675 -548
+ -667 199 -672 -667
+ -645 199 -665 -596
+ -108 3 -57 87
diff --git a/profiles/vertebrates/MA0779.1.pwm b/profiles/vertebrates/MA0779.1.pwm
index de118aa..63920d9 100644
--- a/profiles/vertebrates/MA0779.1.pwm
+++ b/profiles/vertebrates/MA0779.1.pwm
@@ -1,17 +1,17 @@
- -206 127 12 -200
- -880 -10000 198 -408
- -233 -388 -10000 190
- -869 185 -1028 -139
- 192 -215 -889 -10000
- -933 180 -10000 -98
- -879 -938 200 -879
- -10000 170 -41 -10000
- 120 -358 -449 66
- -675 -148 -921 186
- -1066 13 152 -491
- 178 -903 -81 -10000
- -43 56 15 -57
- -405 -100 -526 177
- -83 -710 151 -78
- 17 99 -17 -10000
- 63 32 -113 -41
+ -200 126 12 -194
+ -602 -625 196 -381
+ -225 -361 -607 188
+ -592 184 -606 -135
+ 190 -206 -560 -576
+ -604 179 -619 -96
+ -601 -608 198 -601
+ -627 169 -41 -627
+ 118 -332 -402 65
+ -538 -144 -592 184
+ -644 13 151 -451
+ 176 -574 -79 -590
+ -42 55 15 -56
+ -376 -98 -464 176
+ -82 -572 150 -76
+ 17 98 -17 -620
+ 62 32 -112 -40
diff --git a/profiles/vertebrates/MA0780.1.pwm b/profiles/vertebrates/MA0780.1.pwm
index 9c09686..cf5f476 100644
--- a/profiles/vertebrates/MA0780.1.pwm
+++ b/profiles/vertebrates/MA0780.1.pwm
@@ -1,10 +1,10 @@
- -41 -344 -275 159
- 197 -598 -440 -603
- 199 -638 -738 -726
- -781 -432 -689 198
- -738 139 -502 42
- 42 -538 140 -816
- 198 -652 -514 -602
- -10000 -715 -715 199
- -513 -439 -560 196
- 175 -334 -358 -115
+ -40 -333 -268 158
+ 196 -522 -411 -525
+ 198 -543 -585 -581
+ -600 -404 -567 196
+ -586 138 -458 41
+ 42 -483 139 -608
+ 197 -550 -467 -524
+ -646 -577 -577 198
+ -467 -410 -499 195
+ 174 -322 -344 -114
diff --git a/profiles/vertebrates/MA0781.1.pwm b/profiles/vertebrates/MA0781.1.pwm
index 61eeac8..a89c9d3 100644
--- a/profiles/vertebrates/MA0781.1.pwm
+++ b/profiles/vertebrates/MA0781.1.pwm
@@ -1,17 +1,17 @@
- -269 127 24 -203
- -10000 -10000 200 -658
- -357 -594 -706 196
- -10000 194 -10000 -253
- 197 -355 -869 -969
- -10000 190 -10000 -195
- -10000 -10000 200 -10000
- -10000 174 -60 -10000
- 126 -321 -589 57
- -967 -358 -10000 197
- -869 18 152 -869
- 180 -10000 -92 -10000
- -47 72 16 -96
- -712 -201 -10000 191
- -282 -697 185 -200
- 28 122 -113 -10000
- 80 9 -96 -56
+ -258 126 24 -196
+ -597 -597 198 -525
+ -330 -483 -524 194
+ -601 192 -601 -243
+ 195 -329 -559 -568
+ -608 189 -608 -189
+ -601 -601 198 -601
+ -617 173 -59 -617
+ 124 -299 -478 56
+ -565 -331 -574 195
+ -609 18 150 -609
+ 178 -586 -90 -586
+ -46 71 15 -93
+ -531 -194 -578 189
+ -269 -544 183 -193
+ 28 121 -110 -607
+ 79 9 -94 -55
diff --git a/profiles/vertebrates/MA0782.1.pwm b/profiles/vertebrates/MA0782.1.pwm
index e69de29..2082493 100644
--- a/profiles/vertebrates/MA0782.1.pwm
+++ b/profiles/vertebrates/MA0782.1.pwm
@@ -0,0 +1,12 @@
+ -526 -420 -552 196
+ -660 -543 198 -687
+ 198 -677 -462 -630
+ -665 199 -705 -675
+ 199 -690 -595 -675
+ -663 -707 191 -220
+ -212 86 96 -610
+ -694 -613 -659 199
+ -387 -690 197 -713
+ -441 -514 -678 197
+ -641 198 -546 -658
+ 194 -565 -434 -334
diff --git a/profiles/vertebrates/MA0782.2.pwm b/profiles/vertebrates/MA0782.2.pwm
index e69de29..34606d0 100644
--- a/profiles/vertebrates/MA0782.2.pwm
+++ b/profiles/vertebrates/MA0782.2.pwm
@@ -0,0 +1,15 @@
+ -3 -7 -6 14
+ 4 -2 -7 5
+ -93 -258 -157 157
+ -256 -305 185 -320
+ 187 -379 -286 -301
+ -208 -127 139 -44
+ -308 -344 -322 188
+ -405 -325 191 -376
+ 186 -445 -200 -370
+ -384 192 -399 -342
+ 176 -334 -203 -191
+ -184 -106 145 -97
+ -24 71 -13 -72
+ -21 -9 -14 37
+ 7 -11 4 -2
diff --git a/profiles/vertebrates/MA0783.1.pwm b/profiles/vertebrates/MA0783.1.pwm
index 731ace7..5ea2927 100644
--- a/profiles/vertebrates/MA0783.1.pwm
+++ b/profiles/vertebrates/MA0783.1.pwm
@@ -1,12 +1,12 @@
- -306 -10000 -510 195
- -845 -586 199 -10000
- 197 -658 -446 -558
- -10000 199 -10000 -513
- 199 -10000 -820 -620
- -567 -10000 187 -159
- -274 22 143 -10000
- -10000 -624 -10000 200
- -684 -842 200 -10000
- -492 -338 -592 195
- -487 198 -574 -674
- 196 -825 -386 -508
+ -280 -517 -416 192
+ -519 -459 197 -534
+ 194 -464 -376 -432
+ -520 196 -520 -418
+ 196 -510 -494 -456
+ -453 -537 184 -152
+ -250 21 140 -493
+ -514 -460 -514 196
+ -490 -516 197 -532
+ -405 -304 -449 192
+ -406 195 -448 -480
+ 193 -500 -340 -414
diff --git a/profiles/vertebrates/MA0784.1.pwm b/profiles/vertebrates/MA0784.1.pwm
index e69de29..4fdcf64 100644
--- a/profiles/vertebrates/MA0784.1.pwm
+++ b/profiles/vertebrates/MA0784.1.pwm
@@ -0,0 +1,14 @@
+ 117 -107 -93 -41
+ 87 -220 -164 70
+ -120 -279 -246 169
+ 193 -440 -366 -415
+ -334 -275 -391 188
+ -388 -467 184 -167
+ -275 152 -208 -44
+ 122 -449 -482 67
+ 186 -465 -264 -259
+ 197 -461 -545 -514
+ -272 -356 -347 188
+ -149 -138 37 98
+ 160 -192 -177 -130
+ -40 -100 112 -82
diff --git a/profiles/vertebrates/MA0784.2.pwm b/profiles/vertebrates/MA0784.2.pwm
index f02b728..31e16b2 100644
--- a/profiles/vertebrates/MA0784.2.pwm
+++ b/profiles/vertebrates/MA0784.2.pwm
@@ -1,16 +1,16 @@
- 97 -107 -47 -24
- 10 8 29 -63
- -314 165 -164 -120
- -336 -311 -231 184
- 99 69 -258 -213
- 198 -723 -523 -508
- -10000 -10000 -1001 200
- -354 -635 -905 196
- 60 -10000 -10000 131
- -133 -397 182 -604
- -428 198 -1003 -845
- 199 -685 -770 -593
- -843 -843 -10000 200
- 198 -771 -771 -415
- 110 -272 -425 73
- -62 -89 -176 133
+ 96 -104 -46 -23
+ 10 8 28 -61
+ -299 163 -160 -117
+ -318 -296 -223 183
+ 98 68 -248 -206
+ 196 -551 -458 -449
+ -600 -600 -591 198
+ -332 -519 -587 195
+ 59 -600 -600 130
+ -130 -368 180 -504
+ -392 196 -593 -577
+ 197 -538 -562 -498
+ -576 -576 -600 198
+ 196 -564 -564 -382
+ 108 -260 -391 72
+ -61 -88 -172 132
diff --git a/profiles/vertebrates/MA0785.1.pwm b/profiles/vertebrates/MA0785.1.pwm
index e69de29..c4724cb 100644
--- a/profiles/vertebrates/MA0785.1.pwm
+++ b/profiles/vertebrates/MA0785.1.pwm
@@ -0,0 +1,12 @@
+ 93 -44 -81 -35
+ 63 -169 -68 60
+ -208 -127 -273 168
+ 198 -609 -558 -526
+ -400 -245 -359 188
+ -385 -481 179 -118
+ -358 143 -151 -21
+ 137 -548 -520 45
+ 177 -452 -178 -194
+ 196 -541 -512 -388
+ -120 -278 -209 167
+ -42 -52 -8 68
diff --git a/profiles/vertebrates/MA0786.1.pwm b/profiles/vertebrates/MA0786.1.pwm
index d954205..ee85574 100644
--- a/profiles/vertebrates/MA0786.1.pwm
+++ b/profiles/vertebrates/MA0786.1.pwm
@@ -1,12 +1,12 @@
- 50 -253 -118 98
- -70 -214 -268 159
- 197 -649 -460 -491
- -388 -361 -495 193
- -422 -573 184 -157
- -262 124 -134 10
- 119 -928 -489 75
- 173 -286 -252 -140
- 194 -501 -469 -336
- -151 -296 -253 174
- -69 -103 1 92
- 83 -83 -91 18
+ 50 -241 -115 96
+ -69 -207 -256 157
+ 195 -497 -403 -422
+ -352 -331 -426 191
+ -380 -473 182 -152
+ -253 123 -131 10
+ 117 -545 -420 74
+ 171 -271 -241 -135
+ 192 -430 -409 -310
+ -146 -279 -241 172
+ -67 -100 1 90
+ 82 -81 -89 17
diff --git a/profiles/vertebrates/MA0787.1.pwm b/profiles/vertebrates/MA0787.1.pwm
index e69de29..d2a5c26 100644
--- a/profiles/vertebrates/MA0787.1.pwm
+++ b/profiles/vertebrates/MA0787.1.pwm
@@ -0,0 +1,12 @@
+ 62 -246 -111 86
+ -121 -242 -301 170
+ 192 -373 -330 -513
+ -321 -314 -401 189
+ -362 -424 188 -235
+ -263 144 -156 -33
+ 106 -460 -495 88
+ 187 -379 -309 -270
+ 195 -442 -511 -389
+ -231 -365 -325 185
+ -148 -122 18 106
+ 111 -115 -116 -8
diff --git a/profiles/vertebrates/MA0788.1.pwm b/profiles/vertebrates/MA0788.1.pwm
index e69de29..6bb7df3 100644
--- a/profiles/vertebrates/MA0788.1.pwm
+++ b/profiles/vertebrates/MA0788.1.pwm
@@ -0,0 +1,13 @@
+ 107 -173 -93 10
+ 48 -269 -120 101
+ -131 -237 -223 167
+ 190 -388 -381 -291
+ -317 -287 -240 183
+ -332 -403 182 -170
+ -344 144 -166 -19
+ 88 -444 -483 105
+ 176 -401 -190 -187
+ 192 -427 -359 -365
+ -228 -338 -384 186
+ -80 -153 -82 133
+ 73 -181 -141 75
diff --git a/profiles/vertebrates/MA0789.1.pwm b/profiles/vertebrates/MA0789.1.pwm
index e69de29..44d5d9f 100644
--- a/profiles/vertebrates/MA0789.1.pwm
+++ b/profiles/vertebrates/MA0789.1.pwm
@@ -0,0 +1,9 @@
+ -171 -307 -427 182
+ 197 -581 -489 -573
+ -504 -504 -579 197
+ -516 -596 195 -340
+ -447 162 -253 -49
+ 120 -624 -508 73
+ 180 -315 -322 -181
+ 195 -527 -464 -388
+ -209 -351 -329 184
diff --git a/profiles/vertebrates/MA0790.1.pwm b/profiles/vertebrates/MA0790.1.pwm
index e69de29..104704c 100644
--- a/profiles/vertebrates/MA0790.1.pwm
+++ b/profiles/vertebrates/MA0790.1.pwm
@@ -0,0 +1,14 @@
+ 81 -40 -33 -52
+ -261 -203 -287 179
+ -54 -195 135 -99
+ 97 92 -429 -326
+ 188 -367 -428 -238
+ -310 -487 -487 193
+ 135 -323 -278 26
+ 159 -279 -260 -57
+ -104 -302 -277 170
+ -130 -350 -185 169
+ 108 -97 -91 -25
+ 193 -400 -357 -473
+ -178 -142 -209 163
+ -67 -135 103 -9
diff --git a/profiles/vertebrates/MA0791.1.pwm b/profiles/vertebrates/MA0791.1.pwm
index 0be6a52..d2ec199 100644
--- a/profiles/vertebrates/MA0791.1.pwm
+++ b/profiles/vertebrates/MA0791.1.pwm
@@ -1,16 +1,16 @@
- 76 -63 -18 -37
- -211 -198 -206 171
- -76 -227 139 -76
- 91 102 -537 -385
- 191 -437 -459 -272
- -343 -563 -537 195
- 132 -328 -320 37
- 163 -305 -299 -61
- -138 -348 -276 176
- -122 -408 -253 174
- 120 -105 -78 -64
- 197 -553 -513 -532
- -241 -167 -265 174
- -93 -117 108 -13
- 96 -21 -81 -68
- -7 -36 69 -63
+ 75 -61 -18 -36
+ -205 -192 -200 170
+ -75 -222 138 -75
+ 90 101 -461 -355
+ 189 -390 -405 -257
+ -322 -478 -464 193
+ 131 -311 -304 37
+ 161 -288 -283 -59
+ -134 -327 -264 174
+ -119 -377 -242 172
+ 119 -103 -76 -63
+ 195 -462 -440 -451
+ -232 -162 -254 172
+ -92 -115 107 -13
+ 95 -20 -80 -67
+ -6 -35 68 -61
diff --git a/profiles/vertebrates/MA0792.1.pwm b/profiles/vertebrates/MA0792.1.pwm
index e69de29..4752b76 100644
--- a/profiles/vertebrates/MA0792.1.pwm
+++ b/profiles/vertebrates/MA0792.1.pwm
@@ -0,0 +1,9 @@
+ -132 -91 -202 150
+ 196 -568 -471 -447
+ -371 -273 -348 188
+ -308 -461 169 -70
+ -316 133 -152 3
+ 138 -497 -473 41
+ 173 -408 -171 -164
+ 193 -477 -433 -344
+ -98 -247 -201 161
diff --git a/profiles/vertebrates/MA0793.1.pwm b/profiles/vertebrates/MA0793.1.pwm
index 0ad5284..50587f2 100644
--- a/profiles/vertebrates/MA0793.1.pwm
+++ b/profiles/vertebrates/MA0793.1.pwm
@@ -1,10 +1,10 @@
- 116 -136 -50 -59
- -58 14 98 -201
- -207 172 -220 -196
- -356 -379 -296 189
- 48 130 -410 -340
- 196 -350 -10000 -534
- -10000 -769 -10000 200
- -10000 -612 -435 198
- 196 -498 -527 -400
- 62 -59 -201 63
+ 115 -132 -49 -58
+ -57 14 97 -195
+ -200 170 -212 -190
+ -333 -352 -281 188
+ 47 128 -375 -319
+ 194 -326 -586 -459
+ -582 -548 -582 198
+ -584 -499 -393 196
+ 194 -437 -455 -367
+ 61 -58 -193 62
diff --git a/profiles/vertebrates/MA0794.1.pwm b/profiles/vertebrates/MA0794.1.pwm
index e69de29..d434c49 100644
--- a/profiles/vertebrates/MA0794.1.pwm
+++ b/profiles/vertebrates/MA0794.1.pwm
@@ -0,0 +1,12 @@
+ -218 83 -62 44
+ 192 -481 -304 -388
+ 171 -208 -404 -125
+ -349 -588 195 -578
+ 194 -462 -316 -571
+ -425 195 -588 -410
+ -497 -580 185 -158
+ -506 99 -524 97
+ -560 197 -501 -472
+ -556 -564 -264 193
+ -484 -230 -408 189
+ 133 -59 -46 -327
diff --git a/profiles/vertebrates/MA0795.1.pwm b/profiles/vertebrates/MA0795.1.pwm
index e69de29..15c96b3 100644
--- a/profiles/vertebrates/MA0795.1.pwm
+++ b/profiles/vertebrates/MA0795.1.pwm
@@ -0,0 +1,10 @@
+ -88 81 -336 68
+ -467 -484 196 -476
+ -299 -441 -326 190
+ -520 197 -508 -539
+ -588 -389 -429 195
+ 196 -431 -459 -587
+ -586 -513 198 -560
+ 188 -215 -555 -374
+ -467 196 -515 -467
+ 147 -149 -193 -71
diff --git a/profiles/vertebrates/MA0796.1.pwm b/profiles/vertebrates/MA0796.1.pwm
index ef59461..6fad8dc 100644
--- a/profiles/vertebrates/MA0796.1.pwm
+++ b/profiles/vertebrates/MA0796.1.pwm
@@ -1,12 +1,12 @@
- -641 -745 -1170 199
- -855 -872 200 -972
- 200 -953 -679 -10000
- -1170 200 -938 -889
- 199 -880 -666 -912
- -793 -742 189 -183
- -291 164 -43 -814
- -1165 -569 -865 199
- -824 -800 200 -853
- -614 -705 -1005 199
- -656 199 -803 -764
- 199 -707 -615 -611
+ -565 -617 -687 198
+ -654 -658 199 -675
+ 198 -619 -556 -634
+ -687 199 -668 -660
+ 198 -611 -550 -615
+ -637 -618 188 -180
+ -283 163 -42 -643
+ -682 -518 -651 198
+ -644 -637 199 -652
+ -547 -596 -671 198
+ -575 198 -639 -626
+ 197 -569 -527 -525
diff --git a/profiles/vertebrates/MA0797.1.pwm b/profiles/vertebrates/MA0797.1.pwm
index 59f4cf7..4657ccc 100644
--- a/profiles/vertebrates/MA0797.1.pwm
+++ b/profiles/vertebrates/MA0797.1.pwm
@@ -1,12 +1,12 @@
- -275 -293 -439 188
- -495 -597 198 -585
- 193 -651 -297 -432
- -458 196 -589 -428
- 196 -692 -349 -621
- -354 -385 165 -49
- -116 116 37 -520
- -544 -291 -576 194
- -434 -530 196 -519
- -245 -240 -474 184
- -544 196 -448 -474
- 188 -422 -302 -293
+ -268 -285 -416 187
+ -460 -531 197 -524
+ 192 -565 -288 -409
+ -430 195 -527 -406
+ 195 -585 -336 -547
+ -343 -371 164 -48
+ -114 115 37 -482
+ -497 -283 -519 193
+ -410 -486 195 -478
+ -240 -235 -445 184
+ -496 195 -422 -444
+ 187 -401 -293 -285
diff --git a/profiles/vertebrates/MA0798.1.pwm b/profiles/vertebrates/MA0798.1.pwm
index b2a5fbb..2eea8fe 100644
--- a/profiles/vertebrates/MA0798.1.pwm
+++ b/profiles/vertebrates/MA0798.1.pwm
@@ -1,16 +1,16 @@
- -91 49 27 -22
- -150 -761 186 -564
- -417 -325 -430 192
- -42 -105 -593 146
- 24 -257 109 -96
- -653 182 -313 -154
- -1221 164 -665 -19
- 182 -377 -323 -185
- -191 -415 -436 186
- -10 -681 161 -1215
- -54 -357 169 -806
- -68 99 -228 24
- 151 -583 -87 -79
- 194 -489 -328 -569
- -546 191 -733 -231
- -34 35 71 -178
+ -90 49 27 -22
+ -149 -673 185 -536
+ -404 -318 -415 192
+ -42 -105 -555 146
+ 24 -252 109 -96
+ -565 181 -303 -151
+ -687 163 -578 -19
+ 182 -364 -315 -182
+ -189 -401 -420 185
+ -10 -625 161 -778
+ -53 -350 168 -696
+ -67 99 -223 24
+ 151 -539 -86 -79
+ 193 -460 -319 -522
+ -497 190 -601 -226
+ -34 35 71 -175
diff --git a/profiles/vertebrates/MA0798.2.pwm b/profiles/vertebrates/MA0798.2.pwm
index e69de29..072200d 100644
--- a/profiles/vertebrates/MA0798.2.pwm
+++ b/profiles/vertebrates/MA0798.2.pwm
@@ -0,0 +1,14 @@
+ -94 62 -17 7
+ -65 -23 33 32
+ -285 -414 190 -367
+ -439 -336 -354 191
+ -292 -198 -354 182
+ -169 -278 171 -190
+ -421 184 -426 -171
+ -405 95 -442 97
+ 185 -324 -221 -381
+ -173 -273 -136 166
+ -183 -414 182 -296
+ -149 -216 170 -260
+ -2 59 -53 -29
+ 104 -130 4 -96
diff --git a/profiles/vertebrates/MA0798.3.pwm b/profiles/vertebrates/MA0798.3.pwm
index bd27b95..4b7dd36 100644
--- a/profiles/vertebrates/MA0798.3.pwm
+++ b/profiles/vertebrates/MA0798.3.pwm
@@ -1,16 +1,16 @@
- -330 135 5 -164
- -655 -10000 200 -10000
- -10000 -656 -756 199
- -129 -125 -830 166
- 47 -489 127 -249
- -815 172 -524 -54
- -10000 191 -914 -204
- 199 -756 -756 -634
- -615 -683 -656 199
- -111 -914 182 -10000
- -16 -534 162 -815
- -177 181 -493 -265
- 189 -10000 -176 -666
- 199 -814 -656 -10000
- -914 200 -10000 -755
- -134 46 106 -281
+ -306 133 5 -158
+ -500 -558 197 -558
+ -558 -500 -526 197
+ -125 -122 -551 165
+ 46 -424 125 -236
+ -537 169 -442 -53
+ -558 189 -546 -195
+ 197 -527 -527 -492
+ -485 -509 -501 197
+ -107 -546 180 -558
+ -16 -447 160 -537
+ -170 179 -430 -252
+ 186 -569 -169 -511
+ 197 -536 -500 -558
+ -547 197 -558 -526
+ -130 45 105 -264
diff --git a/profiles/vertebrates/MA0799.1.pwm b/profiles/vertebrates/MA0799.1.pwm
index e69de29..2d4249c 100644
--- a/profiles/vertebrates/MA0799.1.pwm
+++ b/profiles/vertebrates/MA0799.1.pwm
@@ -0,0 +1,16 @@
+ -40 51 -1 -27
+ -102 -663 178 -407
+ -305 -317 -399 189
+ 40 -87 -505 107
+ 30 -280 96 -56
+ -640 175 -586 -74
+ -666 151 -538 17
+ 165 -190 -177 -173
+ -216 -268 -300 180
+ -61 -553 173 -720
+ -8 -301 154 -512
+ -103 104 -446 49
+ 117 -467 -113 33
+ 194 -390 -358 -557
+ -520 193 -582 -279
+ -63 15 71 -74
diff --git a/profiles/vertebrates/MA0799.2.pwm b/profiles/vertebrates/MA0799.2.pwm
index e69de29..4c54638 100644
--- a/profiles/vertebrates/MA0799.2.pwm
+++ b/profiles/vertebrates/MA0799.2.pwm
@@ -0,0 +1,17 @@
+ -97 60 -6 2
+ -166 80 38 -63
+ -417 -472 195 -472
+ -473 -397 -443 195
+ -355 -220 -480 187
+ -242 -403 188 -385
+ -490 195 -442 -442
+ -408 94 -363 96
+ 64 -129 -126 69
+ 101 -363 89 -419
+ -456 -442 196 -490
+ -394 188 -385 -246
+ 188 -480 -225 -369
+ 195 -443 -407 -473
+ -472 195 -490 -417
+ -73 36 84 -166
+ 3 -11 65 -103
diff --git a/profiles/vertebrates/MA0800.1.pwm b/profiles/vertebrates/MA0800.1.pwm
index e69de29..6f5431d 100644
--- a/profiles/vertebrates/MA0800.1.pwm
+++ b/profiles/vertebrates/MA0800.1.pwm
@@ -0,0 +1,13 @@
+ 87 -141 -11 -21
+ 172 -402 -122 -214
+ -96 -177 149 -140
+ -564 -441 196 -438
+ -583 -208 -509 189
+ -608 -612 198 -634
+ -253 -95 -459 171
+ -362 -234 176 -154
+ 197 -550 -432 -561
+ 128 -104 -195 -27
+ 91 -27 -82 -46
+ 71 -80 -80 28
+ 2 7 -33 19
diff --git a/profiles/vertebrates/MA0801.1.pwm b/profiles/vertebrates/MA0801.1.pwm
index e69de29..ef458a2 100644
--- a/profiles/vertebrates/MA0801.1.pwm
+++ b/profiles/vertebrates/MA0801.1.pwm
@@ -0,0 +1,8 @@
+ 145 -323 -33 -141
+ -122 -143 159 -236
+ -695 -381 196 -569
+ -718 -126 -590 183
+ -697 -731 199 -704
+ -301 -149 -436 180
+ -375 -246 163 -60
+ 193 -567 -305 -464
diff --git a/profiles/vertebrates/MA0802.1.pwm b/profiles/vertebrates/MA0802.1.pwm
index 6d1d3fe..fa89804 100644
--- a/profiles/vertebrates/MA0802.1.pwm
+++ b/profiles/vertebrates/MA0802.1.pwm
@@ -1,10 +1,10 @@
- 180 -479 -157 -279
- -84 -192 149 -145
- -697 -511 198 -536
- -787 -237 -669 192
- -10000 -1049 200 -1108
- -213 -114 -606 172
- -327 -215 161 -69
- 196 -662 -392 -543
- 158 -174 -254 -91
- 110 -62 -93 -56
+ 180 -461 -156 -275
+ -83 -190 149 -144
+ -621 -486 197 -507
+ -670 -234 -606 192
+ -746 -730 199 -735
+ -211 -113 -567 172
+ -321 -213 161 -69
+ 196 -600 -381 -513
+ 158 -173 -250 -91
+ 110 -61 -92 -56
diff --git a/profiles/vertebrates/MA0803.1.pwm b/profiles/vertebrates/MA0803.1.pwm
index faabc9e..b2edff6 100644
--- a/profiles/vertebrates/MA0803.1.pwm
+++ b/profiles/vertebrates/MA0803.1.pwm
@@ -1,8 +1,8 @@
- 189 -526 -210 -466
- -261 -479 191 -476
- -711 -855 200 -10000
- -549 -397 -349 194
- -10000 -836 200 -10000
- -435 -271 -314 188
- -608 -272 182 -167
- 194 -527 -316 -484
+ 188 -484 -205 -437
+ -254 -447 190 -445
+ -587 -632 199 -666
+ -499 -378 -335 193
+ -665 -627 199 -665
+ -411 -264 -304 187
+ -542 -265 181 -164
+ 193 -483 -306 -450
diff --git a/profiles/vertebrates/MA0804.1.pwm b/profiles/vertebrates/MA0804.1.pwm
index e69de29..3258e31 100644
--- a/profiles/vertebrates/MA0804.1.pwm
+++ b/profiles/vertebrates/MA0804.1.pwm
@@ -0,0 +1,20 @@
+ 8 -84 -29 65
+ -46 -126 -37 106
+ -487 -340 -540 194
+ 14 98 -45 -236
+ 130 -422 35 -229
+ -598 197 -577 -484
+ 190 -636 -210 -673
+ -185 159 -266 -88
+ -15 82 -25 -101
+ -126 -160 -220 160
+ 158 -253 -121 -127
+ -93 -55 94 -19
+ -82 -302 160 -187
+ -646 -195 -522 189
+ -523 -743 198 -610
+ -189 21 -381 133
+ -258 -132 137 -23
+ 194 -567 -318 -485
+ 119 -81 -94 -67
+ 82 -60 -61 -13
diff --git a/profiles/vertebrates/MA0805.1.pwm b/profiles/vertebrates/MA0805.1.pwm
index fb5041a..1d26e36 100644
--- a/profiles/vertebrates/MA0805.1.pwm
+++ b/profiles/vertebrates/MA0805.1.pwm
@@ -1,8 +1,8 @@
- 181 -491 -176 -259
- -125 -239 168 -247
- -10000 -10000 200 -10000
- -678 -385 -445 195
- -10000 -922 200 -10000
- -449 -238 -488 190
- -462 -226 179 -173
- 199 -650 -738 -10000
+ 180 -460 -173 -253
+ -124 -234 167 -243
+ -673 -673 199 -673
+ -578 -368 -420 194
+ -673 -649 199 -673
+ -424 -233 -455 189
+ -436 -222 178 -171
+ 198 -562 -603 -673
diff --git a/profiles/vertebrates/MA0806.1.pwm b/profiles/vertebrates/MA0806.1.pwm
index 98678e1..9615142 100644
--- a/profiles/vertebrates/MA0806.1.pwm
+++ b/profiles/vertebrates/MA0806.1.pwm
@@ -1,8 +1,8 @@
- 171 -370 -127 -215
- -103 -144 156 -244
- -696 -464 198 -716
- -10000 -164 -474 186
- -10000 -10000 200 -10000
- -191 -103 -426 167
- -264 -65 114 -1
- 177 -322 -166 -251
+ 171 -359 -126 -211
+ -102 -142 156 -240
+ -597 -439 197 -607
+ -708 -162 -449 186
+ -695 -695 199 -695
+ -189 -102 -410 167
+ -261 -64 114 -1
+ 176 -314 -164 -246
diff --git a/profiles/vertebrates/MA0807.1.pwm b/profiles/vertebrates/MA0807.1.pwm
index e69de29..3123eb5 100644
--- a/profiles/vertebrates/MA0807.1.pwm
+++ b/profiles/vertebrates/MA0807.1.pwm
@@ -0,0 +1,8 @@
+ 151 -266 -60 -154
+ -129 -158 159 -205
+ -527 -527 195 -355
+ -326 -194 -162 173
+ -358 -527 195 -527
+ -181 -136 -152 157
+ -267 -48 105 8
+ 151 -286 -85 -111
diff --git a/profiles/vertebrates/MA0808.1.pwm b/profiles/vertebrates/MA0808.1.pwm
index fcfae8c..f069fe9 100644
--- a/profiles/vertebrates/MA0808.1.pwm
+++ b/profiles/vertebrates/MA0808.1.pwm
@@ -1,8 +1,8 @@
- 115 -642 66 -235
- -112 179 -363 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -30 -793 -253 159
- -10000 200 -10000 -10000
- -10000 200 -10000 -1039
- 94 -343 -37 29
+ 114 -576 65 -231
+ -110 178 -352 -713
+ 199 -710 -710 -710
+ -710 -710 -710 199
+ -29 -650 -249 158
+ -710 199 -710 -710
+ -710 199 -710 -696
+ 93 -338 -37 29
diff --git a/profiles/vertebrates/MA0809.1.pwm b/profiles/vertebrates/MA0809.1.pwm
index e69de29..b4b9fc5 100644
--- a/profiles/vertebrates/MA0809.1.pwm
+++ b/profiles/vertebrates/MA0809.1.pwm
@@ -0,0 +1,10 @@
+ -19 50 -23 -23
+ 125 -317 45 -283
+ 21 141 -317 -385
+ 188 -375 -322 -300
+ -317 -496 -496 194
+ -52 -522 -370 168
+ -500 190 -331 -294
+ -265 150 -524 -2
+ 78 -190 -53 40
+ -20 19 -33 26
diff --git a/profiles/vertebrates/MA0809.2.pwm b/profiles/vertebrates/MA0809.2.pwm
index af4a6f0..b4b77fb 100644
--- a/profiles/vertebrates/MA0809.2.pwm
+++ b/profiles/vertebrates/MA0809.2.pwm
@@ -1,12 +1,12 @@
- -4 19 -37 15
- -17 45 -34 -6
- 165 -302 -79 -263
- -137 176 -257 -423
- 194 -400 -510 -370
- -434 -411 -425 194
- -287 -405 -322 189
- -384 189 -363 -292
- -389 194 -652 -371
- 166 -233 -403 -80
- -23 -49 72 -34
- -2 6 21 -30
+ -4 19 -37 15
+ -17 44 -34 -6
+ 165 -298 -79 -261
+ -136 176 -254 -414
+ 193 -393 -494 -364
+ -424 -403 -416 194
+ -284 -398 -317 188
+ -377 189 -357 -288
+ -382 194 -612 -365
+ 166 -231 -396 -80
+ -23 -49 72 -34
+ -2 6 21 -30
diff --git a/profiles/vertebrates/MA0810.1.pwm b/profiles/vertebrates/MA0810.1.pwm
index e69de29..f78236d 100644
--- a/profiles/vertebrates/MA0810.1.pwm
+++ b/profiles/vertebrates/MA0810.1.pwm
@@ -0,0 +1,12 @@
+ -55 24 -242 97
+ -103 14 121 -341
+ -509 190 -214 -602
+ -595 197 -527 -437
+ -526 147 -210 -6
+ -225 71 -26 40
+ 40 52 7 -231
+ 75 -126 89 -451
+ -237 -441 190 -601
+ -582 -60 172 -552
+ -337 172 -133 -233
+ 93 -118 -3 -57
diff --git a/profiles/vertebrates/MA0811.1.pwm b/profiles/vertebrates/MA0811.1.pwm
index 732754f..59f4113 100644
--- a/profiles/vertebrates/MA0811.1.pwm
+++ b/profiles/vertebrates/MA0811.1.pwm
@@ -1,12 +1,12 @@
- -15 -6 -214 94
- -88 -30 136 -360
- -524 187 -174 -524
- -965 198 -10000 -456
- -618 137 -239 28
- -193 59 -23 46
- 71 4 16 -215
- 68 -190 109 -10000
- -330 -559 196 -10000
- -462 -113 180 -625
- -344 167 -104 -206
- 121 -207 -25 -73
+ -15 -6 -206 92
+ -87 -30 135 -343
+ -455 185 -168 -455
+ -570 196 -580 -407
+ -498 135 -228 27
+ -186 58 -22 45
+ 70 4 16 -206
+ 67 -183 108 -578
+ -309 -472 194 -582
+ -416 -110 179 -511
+ -325 166 -102 -200
+ 120 -199 -24 -71
diff --git a/profiles/vertebrates/MA0812.1.pwm b/profiles/vertebrates/MA0812.1.pwm
index e69de29..cb7ebe4 100644
--- a/profiles/vertebrates/MA0812.1.pwm
+++ b/profiles/vertebrates/MA0812.1.pwm
@@ -0,0 +1,11 @@
+ 64 31 -221 -2
+ -447 -90 176 -464
+ -609 198 -578 -609
+ -614 194 -606 -277
+ -513 8 -88 124
+ -96 89 39 -166
+ 160 -88 -132 -522
+ -227 -586 191 -600
+ -566 -543 198 -601
+ -420 186 -189 -480
+ 67 -157 1 8
diff --git a/profiles/vertebrates/MA0813.1.pwm b/profiles/vertebrates/MA0813.1.pwm
index e69de29..45821a7 100644
--- a/profiles/vertebrates/MA0813.1.pwm
+++ b/profiles/vertebrates/MA0813.1.pwm
@@ -0,0 +1,13 @@
+ -9 -105 -169 118
+ -539 -8 159 -539
+ -481 196 -481 -481
+ -473 196 -473 -473
+ -417 169 -299 -75
+ -293 63 -114 90
+ -107 12 30 27
+ 95 -55 29 -263
+ -3 -232 146 -397
+ -522 -522 197 -522
+ -534 -534 197 -534
+ -501 173 -67 -501
+ 114 -138 -67 -35
diff --git a/profiles/vertebrates/MA0814.1.pwm b/profiles/vertebrates/MA0814.1.pwm
index e69de29..6b945c4 100644
--- a/profiles/vertebrates/MA0814.1.pwm
+++ b/profiles/vertebrates/MA0814.1.pwm
@@ -0,0 +1,11 @@
+ 50 24 -174 15
+ -348 -123 178 -444
+ -648 196 -355 -648
+ -639 188 -526 -178
+ -353 -15 -78 128
+ -78 57 56 -114
+ 155 -119 -76 -465
+ -108 -439 179 -584
+ -648 -393 197 -648
+ -376 181 -149 -408
+ 63 -188 -5 29
diff --git a/profiles/vertebrates/MA0814.2.pwm b/profiles/vertebrates/MA0814.2.pwm
index e69de29..50bea96 100644
--- a/profiles/vertebrates/MA0814.2.pwm
+++ b/profiles/vertebrates/MA0814.2.pwm
@@ -0,0 +1,14 @@
+ -42 6 16 13
+ -16 -27 40 -7
+ -199 -5 131 -170
+ -426 190 -271 -432
+ -481 192 -285 -440
+ -342 -145 -162 168
+ -346 -230 186 -355
+ 174 -167 -193 -374
+ -403 -330 193 -486
+ -430 -322 193 -450
+ -180 149 -62 -195
+ -58 -28 85 -50
+ 9 0 30 -50
+ -33 11 19 -3
diff --git a/profiles/vertebrates/MA0815.1.pwm b/profiles/vertebrates/MA0815.1.pwm
index 71c7f80..f686a0c 100644
--- a/profiles/vertebrates/MA0815.1.pwm
+++ b/profiles/vertebrates/MA0815.1.pwm
@@ -1,13 +1,13 @@
- -27 -87 -158 119
- -10000 -20 165 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -521 172 -273 -93
- -293 56 -75 84
- -85 48 49 -63
- 74 -75 69 -306
- -92 -270 172 -516
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 169 -35 -10000
- 120 -168 -70 -36
+ -26 -85 -152 118
+ -590 -20 163 -590
+ -562 198 -562 -562
+ -557 198 -557 -557
+ -442 170 -257 -90
+ -276 55 -73 83
+ -83 47 48 -61
+ 72 -73 68 -285
+ -89 -257 170 -447
+ -592 -592 198 -592
+ -595 -595 198 -595
+ -571 167 -34 -571
+ 118 -161 -68 -35
diff --git a/profiles/vertebrates/MA0816.1.pwm b/profiles/vertebrates/MA0816.1.pwm
index 869ac7e..ee21946 100644
--- a/profiles/vertebrates/MA0816.1.pwm
+++ b/profiles/vertebrates/MA0816.1.pwm
@@ -1,10 +1,10 @@
- 143 -129 -48 -246
- 58 -106 101 -642
- -466 198 -10000 -625
- 193 -10000 -10000 -239
- -364 -192 179 -227
- -467 197 -526 -626
- -425 -10000 -10000 198
- -10000 -624 199 -524
- -374 136 -242 23
- -141 16 -169 114
+ 138 -119 -45 -217
+ 56 -98 97 -403
+ -342 192 -416 -387
+ 187 -421 -421 -209
+ -299 -173 173 -202
+ -343 191 -364 -388
+ -324 -416 -416 192
+ -415 -386 192 -362
+ -301 131 -212 22
+ -130 15 -155 110
diff --git a/profiles/vertebrates/MA0817.1.pwm b/profiles/vertebrates/MA0817.1.pwm
index be1f4b2..d109f37 100644
--- a/profiles/vertebrates/MA0817.1.pwm
+++ b/profiles/vertebrates/MA0817.1.pwm
@@ -1,12 +1,12 @@
- 103 -87 -54 -46
- 174 -477 -75 -509
- 115 4 -42 -729
- -590 199 -10000 -10000
- 198 -10000 -425 -623
- -10000 -829 -1029 200
- 200 -797 -871 -10000
- -478 -349 -801 195
- -10000 -829 200 -748
- -659 -6 50 69
- -281 -21 -421 156
- 28 -46 -38 36
+ 102 -85 -54 -45
+ 173 -437 -74 -461
+ 114 4 -42 -560
+ -503 198 -614 -614
+ 196 -615 -392 -520
+ -613 -584 -605 198
+ 198 -578 -591 -613
+ -433 -330 -582 194
+ -613 -584 198 -566
+ -535 -6 50 68
+ -272 -21 -397 155
+ 28 -45 -37 36
diff --git a/profiles/vertebrates/MA0818.1.pwm b/profiles/vertebrates/MA0818.1.pwm
index e69de29..b5d59e7 100644
--- a/profiles/vertebrates/MA0818.1.pwm
+++ b/profiles/vertebrates/MA0818.1.pwm
@@ -0,0 +1,10 @@
+ 146 -257 -10 -282
+ 52 79 -38 -376
+ -351 194 -451 -451
+ 185 -359 -228 -337
+ -450 -408 -450 195
+ 193 -378 -410 -410
+ -315 -148 -464 180
+ -451 -410 194 -378
+ -376 55 -8 60
+ -235 28 -298 130
diff --git a/profiles/vertebrates/MA0818.2.pwm b/profiles/vertebrates/MA0818.2.pwm
index e69de29..0ff8b7e 100644
--- a/profiles/vertebrates/MA0818.2.pwm
+++ b/profiles/vertebrates/MA0818.2.pwm
@@ -0,0 +1,10 @@
+ 172 -236 -219 -174
+ 52 86 -49 -478
+ -652 199 -652 -652
+ 184 -666 -147 -454
+ -654 -475 -449 197
+ 197 -503 -503 -653
+ -441 -154 -666 185
+ -652 -652 199 -652
+ -428 -54 88 51
+ -233 58 -296 112
diff --git a/profiles/vertebrates/MA0819.1.pwm b/profiles/vertebrates/MA0819.1.pwm
index e69de29..b90ab23 100644
--- a/profiles/vertebrates/MA0819.1.pwm
+++ b/profiles/vertebrates/MA0819.1.pwm
@@ -0,0 +1,10 @@
+ 104 -148 -19 -49
+ 145 -82 -76 -311
+ -282 190 -395 -395
+ 188 -348 -252 -441
+ -252 181 -449 -188
+ -143 -447 182 -447
+ -377 -346 -346 190
+ -439 -376 191 -299
+ -477 -18 -63 128
+ -26 24 -134 67
diff --git a/profiles/vertebrates/MA0819.2.pwm b/profiles/vertebrates/MA0819.2.pwm
index e69de29..86b3627 100644
--- a/profiles/vertebrates/MA0819.2.pwm
+++ b/profiles/vertebrates/MA0819.2.pwm
@@ -0,0 +1,10 @@
+ 48 -17 -9 -37
+ 74 -101 11 -41
+ 137 -38 -98 -293
+ -179 187 -534 -534
+ 193 -500 -301 -528
+ -544 177 -507 -91
+ -117 -456 180 -541
+ -471 -243 -479 190
+ -483 -518 193 -302
+ -244 47 26 30
diff --git a/profiles/vertebrates/MA0820.1.pwm b/profiles/vertebrates/MA0820.1.pwm
index e69de29..0f35e17 100644
--- a/profiles/vertebrates/MA0820.1.pwm
+++ b/profiles/vertebrates/MA0820.1.pwm
@@ -0,0 +1,10 @@
+ 98 -70 -129 1
+ 62 63 -142 -88
+ -541 195 -541 -354
+ 193 -305 -544 -424
+ -576 161 -13 -576
+ -475 174 -74 -562
+ -283 -545 -409 192
+ -338 -348 187 -269
+ -147 -95 35 89
+ 3 -63 -60 74
diff --git a/profiles/vertebrates/MA0821.1.pwm b/profiles/vertebrates/MA0821.1.pwm
index 1565deb..0338792 100644
--- a/profiles/vertebrates/MA0821.1.pwm
+++ b/profiles/vertebrates/MA0821.1.pwm
@@ -1,12 +1,12 @@
- -85 100 -370 46
- -310 -607 195 -866
- 36 -324 139 -10000
- -10000 200 -10000 -10000
- 200 -10000 -861 -10000
- -861 200 -10000 -861
- -861 -10000 200 -10000
- -10000 -581 -10000 199
- -10000 -10000 200 -10000
- -10000 176 -504 -78
- -10000 199 -862 -481
- 74 -135 29 -48
+ -82 98 -332 45
+ -285 -468 192 -521
+ 35 -305 137 -590
+ -530 197 -530 -530
+ 197 -530 -516 -530
+ -516 197 -530 -516
+ -516 -530 197 -530
+ -530 -455 -530 197
+ -530 -530 197 -530
+ -553 174 -428 -76
+ -531 196 -517 -406
+ 73 -129 28 -47
diff --git a/profiles/vertebrates/MA0821.2.pwm b/profiles/vertebrates/MA0821.2.pwm
index e69de29..f23f6ab 100644
--- a/profiles/vertebrates/MA0821.2.pwm
+++ b/profiles/vertebrates/MA0821.2.pwm
@@ -0,0 +1,10 @@
+ -60 -71 121 -130
+ 39 -40 87 -317
+ -357 194 -433 -480
+ 168 -361 -62 -402
+ -525 190 -372 -255
+ -256 -392 190 -493
+ -392 -63 -364 168
+ -492 -426 193 -346
+ -324 87 -40 39
+ -132 121 -69 -60
diff --git a/profiles/vertebrates/MA0822.1.pwm b/profiles/vertebrates/MA0822.1.pwm
index e69de29..e76e3e5 100644
--- a/profiles/vertebrates/MA0822.1.pwm
+++ b/profiles/vertebrates/MA0822.1.pwm
@@ -0,0 +1,12 @@
+ -141 75 -315 87
+ -381 -403 194 -514
+ -162 -372 184 -535
+ -533 197 -546 -510
+ 197 -511 -474 -546
+ -545 198 -545 -545
+ -501 -533 197 -533
+ -511 -511 -533 197
+ -521 -533 197 -546
+ -474 190 -499 -228
+ -547 196 -460 -460
+ 100 -304 64 -169
diff --git a/profiles/vertebrates/MA0823.1.pwm b/profiles/vertebrates/MA0823.1.pwm
index e69de29..f3a807d 100644
--- a/profiles/vertebrates/MA0823.1.pwm
+++ b/profiles/vertebrates/MA0823.1.pwm
@@ -0,0 +1,10 @@
+ -91 -13 109 -121
+ 71 -34 52 -277
+ -577 197 -560 -485
+ 191 -432 -270 -465
+ -586 198 -586 -586
+ -587 -471 197 -587
+ -605 -99 -530 179
+ -422 -469 195 -457
+ -129 107 -111 5
+ -79 136 -113 -135
diff --git a/profiles/vertebrates/MA0825.1.pwm b/profiles/vertebrates/MA0825.1.pwm
index e69de29..b4632c7 100644
--- a/profiles/vertebrates/MA0825.1.pwm
+++ b/profiles/vertebrates/MA0825.1.pwm
@@ -0,0 +1,10 @@
+ 69 -39 -22 -38
+ 13 41 25 -135
+ -246 190 -481 -400
+ 192 -479 -479 -272
+ -479 191 -375 -301
+ -306 -478 193 -478
+ -478 -478 -306 193
+ -480 -480 191 -254
+ -18 70 -36 -48
+ -10 41 -112 35
diff --git a/profiles/vertebrates/MA0826.1.pwm b/profiles/vertebrates/MA0826.1.pwm
index d997bc1..94243d4 100644
--- a/profiles/vertebrates/MA0826.1.pwm
+++ b/profiles/vertebrates/MA0826.1.pwm
@@ -1,10 +1,10 @@
- 177 -380 -113 -403
- 106 54 -111 -10000
- -578 199 -10000 -10000
- 197 -1150 -438 -518
- -791 -759 -467 198
- 199 -517 -740 -817
- -391 -407 -10000 195
- -10000 -10000 199 -528
- -789 -45 68 73
- -293 -41 -386 161
+ 176 -365 -112 -386
+ 105 54 -109 -671
+ -518 198 -672 -672
+ 196 -669 -414 -477
+ -621 -610 -437 197
+ 198 -476 -603 -628
+ -374 -387 -676 194
+ -672 -672 198 -483
+ -619 -45 68 73
+ -286 -41 -373 160
diff --git a/profiles/vertebrates/MA0827.1.pwm b/profiles/vertebrates/MA0827.1.pwm
index e69de29..12aaa0f 100644
--- a/profiles/vertebrates/MA0827.1.pwm
+++ b/profiles/vertebrates/MA0827.1.pwm
@@ -0,0 +1,10 @@
+ 150 -166 -63 -224
+ 58 105 -131 -491
+ -122 182 -550 -518
+ 188 -457 -224 -394
+ -541 -376 -262 190
+ 189 -217 -449 -543
+ -304 -125 -532 178
+ -513 -513 178 -97
+ -405 2 47 62
+ -160 21 -216 119
diff --git a/profiles/vertebrates/MA0828.1.pwm b/profiles/vertebrates/MA0828.1.pwm
index 31d1254..e66a62e 100644
--- a/profiles/vertebrates/MA0828.1.pwm
+++ b/profiles/vertebrates/MA0828.1.pwm
@@ -1,10 +1,10 @@
- 145 -190 -1 -635
- -154 -311 -613 182
- -715 199 -596 -996
- 197 -898 -375 -640
- -840 197 -363 -653
- -568 -166 187 -10000
- -459 -214 -10000 190
- -837 -626 199 -696
- 194 -701 -473 -308
- -567 105 -329 85
+ 143 -185 -1 -521
+ -150 -296 -515 180
+ -545 197 -498 -588
+ 195 -583 -350 -519
+ -575 195 -339 -525
+ -488 -162 186 -609
+ -416 -207 -606 188
+ -573 -512 197 -539
+ 192 -544 -425 -292
+ -484 104 -311 84
diff --git a/profiles/vertebrates/MA0828.2.pwm b/profiles/vertebrates/MA0828.2.pwm
index feb795b..319ea30 100644
--- a/profiles/vertebrates/MA0828.2.pwm
+++ b/profiles/vertebrates/MA0828.2.pwm
@@ -1,14 +1,14 @@
- 59 -64 -158 60
- -7 -56 -38 68
- 143 -492 34 -1181
- -513 -591 -982 198
- -10000 200 -722 -10000
- 198 -10000 -414 -1182
- -827 194 -274 -953
- -927 -274 194 -827
- -1082 -405 -10000 198
- -10000 -710 200 -10000
- 198 -1182 -589 -507
- -1181 34 -495 143
- 67 -36 -57 -6
- 59 -157 -63 59
+ 59 -63 -155 59
+ -7 -55 -37 67
+ 143 -460 34 -687
+ -477 -534 -674 197
+ -691 199 -606 -691
+ 197 -692 -395 -688
+ -647 193 -267 -674
+ -670 -268 193 -647
+ -683 -388 -693 197
+ -691 -601 199 -691
+ 197 -687 -532 -473
+ -687 34 -463 143
+ 67 -36 -56 -6
+ 59 -155 -63 59
diff --git a/profiles/vertebrates/MA0829.1.pwm b/profiles/vertebrates/MA0829.1.pwm
index 33ba04e..5161658 100644
--- a/profiles/vertebrates/MA0829.1.pwm
+++ b/profiles/vertebrates/MA0829.1.pwm
@@ -1,10 +1,10 @@
- 134 -181 20 -487
- -130 -326 -515 179
- -617 199 -10000 -10000
- 197 -10000 -403 -546
- -10000 194 -306 -456
- -562 -108 181 -10000
- -483 -253 -651 192
- -876 -595 199 -10000
- 191 -438 -584 -249
- -457 97 -291 90
+ 132 -173 19 -417
+ -126 -302 -436 177
+ -473 197 -537 -537
+ 194 -540 -358 -445
+ -543 192 -283 -395
+ -460 -105 179 -555
+ -413 -238 -489 189
+ -525 -465 197 -537
+ 188 -385 -465 -234
+ -396 95 -271 89
diff --git a/profiles/vertebrates/MA0829.2.pwm b/profiles/vertebrates/MA0829.2.pwm
index e69de29..9ed743a 100644
--- a/profiles/vertebrates/MA0829.2.pwm
+++ b/profiles/vertebrates/MA0829.2.pwm
@@ -0,0 +1,14 @@
+ 50 -56 16 -34
+ 19 -10 33 -58
+ 145 -184 -18 -332
+ -318 -328 -360 189
+ -386 191 -333 -378
+ 194 -446 -453 -357
+ -471 161 -28 -364
+ -309 122 59 -446
+ -358 -390 -477 193
+ -442 -290 191 -429
+ 190 -370 -372 -305
+ -348 -29 -177 148
+ -60 34 -17 24
+ -38 16 -65 56
diff --git a/profiles/vertebrates/MA0830.1.pwm b/profiles/vertebrates/MA0830.1.pwm
index e69de29..0798169 100644
--- a/profiles/vertebrates/MA0830.1.pwm
+++ b/profiles/vertebrates/MA0830.1.pwm
@@ -0,0 +1,10 @@
+ -10 70 -124 3
+ 62 -103 92 -352
+ -693 199 -715 -671
+ 199 -715 -715 -715
+ -739 176 -136 -214
+ -583 196 -363 -718
+ -507 -716 -716 198
+ -635 -697 199 -639
+ -364 53 31 31
+ 6 -8 -7 8
diff --git a/profiles/vertebrates/MA0830.2.pwm b/profiles/vertebrates/MA0830.2.pwm
index e69de29..e99d456 100644
--- a/profiles/vertebrates/MA0830.2.pwm
+++ b/profiles/vertebrates/MA0830.2.pwm
@@ -0,0 +1,13 @@
+ -28 45 -4 -24
+ -7 -12 23 -6
+ -82 -54 132 -206
+ -470 196 -435 -484
+ 187 -345 -247 -374
+ -484 186 -206 -322
+ -422 191 -258 -500
+ -416 -281 -336 189
+ -466 -367 194 -470
+ -209 136 -48 -104
+ -41 80 -57 -26
+ -20 23 11 -19
+ -52 42 6 -11
diff --git a/profiles/vertebrates/MA0831.1.pwm b/profiles/vertebrates/MA0831.1.pwm
index e69de29..6a0c49a 100644
--- a/profiles/vertebrates/MA0831.1.pwm
+++ b/profiles/vertebrates/MA0831.1.pwm
@@ -0,0 +1,10 @@
+ 76 -18 9 -148
+ -59 9 -42 61
+ -686 199 -653 -686
+ 165 -185 -227 -141
+ -702 183 -441 -140
+ -65 -277 168 -717
+ -107 -184 -300 164
+ -688 -563 197 -451
+ 126 -18 -125 -172
+ -123 104 -129 14
diff --git a/profiles/vertebrates/MA0831.2.pwm b/profiles/vertebrates/MA0831.2.pwm
index 2a863a2..d8d4a45 100644
--- a/profiles/vertebrates/MA0831.2.pwm
+++ b/profiles/vertebrates/MA0831.2.pwm
@@ -1,8 +1,8 @@
- -796 200 -796 -796
- 152 -288 -120 -86
- -797 173 -564 -61
- -95 -480 178 -797
- -597 -597 -597 198
- -797 -797 200 -797
- 170 -170 -184 -272
- -638 106 -276 81
+ -485 196 -485 -485
+ 149 -262 -114 -82
+ -486 170 -432 -59
+ -91 -393 175 -486
+ -444 -444 -444 195
+ -486 -486 196 -486
+ 167 -160 -173 -249
+ -456 104 -252 79
diff --git a/profiles/vertebrates/MA0831.3.pwm b/profiles/vertebrates/MA0831.3.pwm
index 6897e55..75c957c 100644
--- a/profiles/vertebrates/MA0831.3.pwm
+++ b/profiles/vertebrates/MA0831.3.pwm
@@ -1,10 +1,10 @@
- 25 -233 137 -522
- -332 -176 -219 176
- -10000 200 -1028 -10000
- 200 -896 -970 -720
- -10000 194 -975 -274
- -273 -975 194 -10000
- -700 -10000 -829 200
- -10000 -996 200 -10000
- 176 -217 -177 -331
- -541 137 -233 25
+ 25 -229 136 -490
+ -324 -174 -215 175
+ -711 199 -696 -711
+ 199 -676 -690 -616
+ -717 194 -695 -269
+ -267 -695 194 -717
+ -606 -712 -659 199
+ -711 -693 199 -711
+ 175 -214 -175 -323
+ -505 136 -229 25
diff --git a/profiles/vertebrates/MA0832.1.pwm b/profiles/vertebrates/MA0832.1.pwm
index e69de29..132bed9 100644
--- a/profiles/vertebrates/MA0832.1.pwm
+++ b/profiles/vertebrates/MA0832.1.pwm
@@ -0,0 +1,14 @@
+ 34 -51 67 -118
+ -56 78 -87 9
+ 172 -361 -100 -306
+ 184 -187 -387 -387
+ -379 192 -379 -379
+ 191 -342 -380 -380
+ -380 -380 190 -313
+ -380 190 -343 -343
+ -379 -379 -379 192
+ -379 -379 192 -379
+ -397 -283 -116 174
+ -267 -101 -399 172
+ 20 -82 85 -105
+ -47 18 -38 46
diff --git a/profiles/vertebrates/MA0833.1.pwm b/profiles/vertebrates/MA0833.1.pwm
index 4123022..19be8ef 100644
--- a/profiles/vertebrates/MA0833.1.pwm
+++ b/profiles/vertebrates/MA0833.1.pwm
@@ -1,13 +1,13 @@
- -9 -165 99 -39
- -43 -96 85 -9
- 140 -27 -93 -634
- -10000 -10000 -514 199
- -388 -10000 196 -467
- 196 -10000 -10000 -319
- -674 80 -457 114
- -812 -10000 199 -612
- -265 173 -398 -116
- 196 -345 -10000 -626
- 199 -622 -781 -581
- -10000 3 -207 145
- 94 33 -110 -147
+ -9 -155 96 -38
+ -41 -91 83 -9
+ 137 -26 -89 -454
+ -504 -504 -411 196
+ -343 -521 193 -394
+ 192 -493 -493 -285
+ -450 78 -372 111
+ -503 -520 196 -460
+ -244 170 -345 -110
+ 193 -305 -494 -447
+ 195 -443 -473 -430
+ -511 3 -194 143
+ 91 32 -104 -139
diff --git a/profiles/vertebrates/MA0833.2.pwm b/profiles/vertebrates/MA0833.2.pwm
index e68d7dc..3fbe0ee 100644
--- a/profiles/vertebrates/MA0833.2.pwm
+++ b/profiles/vertebrates/MA0833.2.pwm
@@ -1,14 +1,14 @@
- 54 -72 12 -23
- 50 -93 29 -25
- 133 -53 -48 -369
- -406 -443 -481 195
- -519 -539 196 -396
- 195 -526 -394 -428
- -510 -236 -466 190
- -574 -735 199 -623
- -76 147 -631 -66
- 198 -562 -681 -601
- 199 -689 -621 -599
- -337 -44 -157 150
- 60 24 -82 -45
- 41 -46 -54 33
+ 54 -71 12 -23
+ 50 -92 29 -25
+ 132 -52 -48 -360
+ -394 -428 -461 194
+ -493 -510 195 -385
+ 194 -499 -383 -414
+ -486 -232 -448 190
+ -537 -644 198 -574
+ -76 146 -580 -66
+ 198 -528 -613 -558
+ 198 -618 -573 -557
+ -330 -44 -155 149
+ 60 24 -81 -44
+ 41 -45 -53 32
diff --git a/profiles/vertebrates/MA0834.1.pwm b/profiles/vertebrates/MA0834.1.pwm
index 3ff936e..50a926f 100644
--- a/profiles/vertebrates/MA0834.1.pwm
+++ b/profiles/vertebrates/MA0834.1.pwm
@@ -1,14 +1,14 @@
- -30 45 -22 -6
- 9 -99 59 -12
- 172 -400 -64 -716
- -878 -1024 -682 200
- -767 -956 187 -159
- 199 -924 -639 -866
- -793 199 -720 -616
- -594 -908 199 -1025
- -760 -825 -598 199
- -103 181 -676 -797
- 200 -1124 -663 -878
- -637 11 -395 151
- 22 75 -118 -48
- 23 3 29 -77
+ -30 45 -21 -6
+ 9 -98 59 -11
+ 171 -387 -64 -627
+ -670 -694 -595 199
+ -643 -696 187 -157
+ 199 -680 -570 -667
+ -645 198 -615 -556
+ -541 -677 199 -694
+ -633 -656 -544 198
+ -102 180 -600 -659
+ 199 -701 -585 -670
+ -586 11 -384 150
+ 22 74 -117 -48
+ 23 3 28 -76
diff --git a/profiles/vertebrates/MA0835.2.pwm b/profiles/vertebrates/MA0835.2.pwm
index e69de29..36fb0f3 100644
--- a/profiles/vertebrates/MA0835.2.pwm
+++ b/profiles/vertebrates/MA0835.2.pwm
@@ -0,0 +1,11 @@
+ 27 -125 -20 59
+ 103 -50 -70 -65
+ -424 -513 -555 196
+ -347 -508 179 -125
+ 195 -466 -472 -440
+ -279 181 -236 -279
+ -336 -483 -439 193
+ -124 178 -471 -329
+ 194 -476 -439 -352
+ -35 -84 -41 93
+ 59 -13 -124 21
diff --git a/profiles/vertebrates/MA0836.1.pwm b/profiles/vertebrates/MA0836.1.pwm
index 0b16154..4640ac5 100644
--- a/profiles/vertebrates/MA0836.1.pwm
+++ b/profiles/vertebrates/MA0836.1.pwm
@@ -1,10 +1,10 @@
- 106 -49 11 -299
- -10000 -10000 -979 200
- -1093 -1093 -138 185
- 81 -860 92 -147
- -447 186 -584 -167
- -130 -458 181 -476
- -137 171 -949 -157
- 197 -370 -10000 -849
- 200 -10000 -10000 -10000
- -509 71 -306 115
+ 105 -48 11 -287
+ -636 -636 -623 199
+ -644 -644 -135 184
+ 80 -620 91 -144
+ -417 185 -514 -163
+ -128 -426 180 -441
+ -135 170 -646 -155
+ 196 -350 -639 -609
+ 199 -636 -636 -636
+ -461 70 -294 114
diff --git a/profiles/vertebrates/MA0836.2.pwm b/profiles/vertebrates/MA0836.2.pwm
index 8e927cf..14007f1 100644
--- a/profiles/vertebrates/MA0836.2.pwm
+++ b/profiles/vertebrates/MA0836.2.pwm
@@ -1,13 +1,13 @@
- -7 -58 5 42
- 85 -58 10 -114
- -467 -417 -474 195
- -475 -605 -452 197
- -152 -416 169 -144
- -435 195 -465 -420
- 157 -239 -103 -155
- -200 170 -383 -124
- 194 -304 -616 -486
- 193 -409 -373 -390
- -135 24 -78 88
- 44 -7 -58 3
- 6 -5 -29 23
+ -7 -57 5 42
+ 85 -57 10 -113
+ -445 -402 -451 194
+ -452 -552 -432 196
+ -150 -401 168 -142
+ -417 194 -443 -404
+ 157 -235 -102 -153
+ -197 170 -371 -122
+ 193 -297 -560 -461
+ 192 -394 -362 -377
+ -134 24 -77 88
+ 44 -7 -58 3
+ 6 -5 -29 23
diff --git a/profiles/vertebrates/MA0837.1.pwm b/profiles/vertebrates/MA0837.1.pwm
index e69de29..324ae34 100644
--- a/profiles/vertebrates/MA0837.1.pwm
+++ b/profiles/vertebrates/MA0837.1.pwm
@@ -0,0 +1,10 @@
+ 83 -13 12 -218
+ -453 -395 -503 195
+ -494 -549 -104 179
+ 70 -558 94 -119
+ -315 173 -371 -103
+ -71 -275 164 -302
+ -100 164 -544 -143
+ 191 -229 -599 -568
+ 198 -593 -593 -561
+ -391 79 -226 99
diff --git a/profiles/vertebrates/MA0837.2.pwm b/profiles/vertebrates/MA0837.2.pwm
index e69de29..7fb8133 100644
--- a/profiles/vertebrates/MA0837.2.pwm
+++ b/profiles/vertebrates/MA0837.2.pwm
@@ -0,0 +1,12 @@
+ -106 -111 52 70
+ 155 -218 -26 -566
+ -672 -640 -662 199
+ -674 -669 -405 197
+ -86 -665 174 -348
+ -666 195 -636 -315
+ -314 -608 195 -644
+ -336 174 -656 -89
+ 197 -407 -674 -674
+ 199 -667 -653 -672
+ -586 -27 -216 155
+ 71 51 -112 -107
diff --git a/profiles/vertebrates/MA0838.1.pwm b/profiles/vertebrates/MA0838.1.pwm
index e69de29..0896045 100644
--- a/profiles/vertebrates/MA0838.1.pwm
+++ b/profiles/vertebrates/MA0838.1.pwm
@@ -0,0 +1,10 @@
+ 129 -108 2 -403
+ -461 -530 -442 196
+ -605 -665 -254 193
+ 71 -710 120 -401
+ -516 195 -633 -347
+ -200 -469 186 -377
+ -331 188 -613 -228
+ 199 -716 -600 -664
+ 199 -716 -646 -599
+ -477 74 -380 115
diff --git a/profiles/vertebrates/MA0839.1.pwm b/profiles/vertebrates/MA0839.1.pwm
index 65033ed..3b445c4 100644
--- a/profiles/vertebrates/MA0839.1.pwm
+++ b/profiles/vertebrates/MA0839.1.pwm
@@ -1,14 +1,14 @@
- 56 -23 11 -75
- -256 -50 -295 158
- -315 -589 191 -331
- -159 187 -10000 -652
- -582 198 -10000 -509
- 199 -10000 -581 -10000
- -10000 199 -581 -10000
- -305 -586 195 -10000
- -460 -10000 -583 198
- -80 167 -240 -440
- 172 -263 -150 -239
- -148 15 -42 84
- -155 159 -180 -149
- 138 -199 -62 -102
+ 54 -22 11 -71
+ -236 -48 -269 155
+ -278 -422 187 -289
+ -149 183 -479 -442
+ -416 194 -468 -389
+ 195 -467 -415 -467
+ -467 195 -415 -467
+ -269 -419 191 -471
+ -367 -468 -416 194
+ -77 164 -221 -369
+ 169 -240 -142 -220
+ -138 14 -41 81
+ -147 156 -169 -142
+ 136 -188 -60 -98
diff --git a/profiles/vertebrates/MA0840.1.pwm b/profiles/vertebrates/MA0840.1.pwm
index e69de29..add70e4 100644
--- a/profiles/vertebrates/MA0840.1.pwm
+++ b/profiles/vertebrates/MA0840.1.pwm
@@ -0,0 +1,12 @@
+ 37 -32 20 -41
+ 179 -214 -198 -427
+ -545 -490 -592 197
+ -536 -576 166 -33
+ 198 -591 -582 -520
+ -593 196 -593 -372
+ -255 -597 193 -597
+ -481 -545 -592 197
+ -33 167 -622 -590
+ 198 -591 -591 -574
+ -457 96 -338 94
+ -32 65 -128 28
diff --git a/profiles/vertebrates/MA0841.1.pwm b/profiles/vertebrates/MA0841.1.pwm
index e69de29..e7f0aca 100644
--- a/profiles/vertebrates/MA0841.1.pwm
+++ b/profiles/vertebrates/MA0841.1.pwm
@@ -0,0 +1,11 @@
+ 25 61 17 -263
+ 190 -686 -192 -700
+ -702 -680 -710 199
+ -710 -710 199 -702
+ 199 -670 -710 -694
+ -605 160 -8 -652
+ -710 -644 -698 199
+ -706 199 -710 -698
+ 199 -664 -680 -690
+ -729 -99 -692 180
+ -318 106 11 -46
diff --git a/profiles/vertebrates/MA0842.1.pwm b/profiles/vertebrates/MA0842.1.pwm
index e69de29..5351f98 100644
--- a/profiles/vertebrates/MA0842.1.pwm
+++ b/profiles/vertebrates/MA0842.1.pwm
@@ -0,0 +1,11 @@
+ 63 -89 -23 8
+ 80 -122 -71 28
+ 46 -69 -125 66
+ -5 -7 -22 29
+ -144 -32 -269 142
+ -440 -511 197 -621
+ -86 174 -644 -324
+ -183 -251 -402 180
+ -223 -401 160 -51
+ 178 -230 -333 -198
+ -233 118 -65 -16
diff --git a/profiles/vertebrates/MA0842.2.pwm b/profiles/vertebrates/MA0842.2.pwm
index 1c5b987..ed21fcf 100644
--- a/profiles/vertebrates/MA0842.2.pwm
+++ b/profiles/vertebrates/MA0842.2.pwm
@@ -1,13 +1,13 @@
- 108 -113 -28 -72
- 142 -324 -111 -39
- 131 -447 -347 47
- 93 -248 -316 85
- 1 -26 23 -1
- -372 -147 -682 183
- -1273 -10000 200 -10000
- -281 195 -833 -898
- -10000 -973 -10000 200
- -660 -10000 194 -277
- 200 -10000 -1073 -10000
- -733 185 -376 -166
- -18 -203 109 -44
+ 108 -112 -28 -72
+ 141 -318 -110 -39
+ 130 -429 -339 47
+ 93 -244 -309 84
+ 1 -26 23 -1
+ -363 -145 -613 182
+ -731 -734 199 -734
+ -276 194 -679 -698
+ -734 -709 -734 199
+ -595 -740 194 -272
+ 199 -734 -721 -734
+ -641 184 -366 -164
+ -18 -200 109 -43
diff --git a/profiles/vertebrates/MA0843.1.pwm b/profiles/vertebrates/MA0843.1.pwm
index f236706..ccd83b1 100644
--- a/profiles/vertebrates/MA0843.1.pwm
+++ b/profiles/vertebrates/MA0843.1.pwm
@@ -1,12 +1,12 @@
- -73 23 -8 36
- 99 -142 71 -696
- -337 -569 -754 196
- -313 -10000 -491 195
- 196 -10000 -310 -10000
- -590 183 -10000 -119
- 56 -10000 134 -10000
- -10000 -283 -446 193
- 190 -366 -645 -258
- 199 -10000 -558 -650
- -10000 113 -185 61
- 62 34 -70 -79
+ -72 22 -8 35
+ 97 -138 70 -544
+ -316 -482 -554 194
+ -296 -595 -436 193
+ 194 -594 -293 -594
+ -500 181 -607 -116
+ 55 -590 132 -590
+ -597 -269 -404 191
+ 189 -342 -521 -247
+ 197 -591 -475 -519
+ -600 112 -179 61
+ 61 34 -69 -77
diff --git a/profiles/vertebrates/MA0844.1.pwm b/profiles/vertebrates/MA0844.1.pwm
index e69de29..680311f 100644
--- a/profiles/vertebrates/MA0844.1.pwm
+++ b/profiles/vertebrates/MA0844.1.pwm
@@ -0,0 +1,14 @@
+ 109 -184 -133 26
+ 62 -104 18 -25
+ -101 -90 25 83
+ -170 -305 151 -46
+ 91 95 -458 -287
+ -341 183 -304 -212
+ 191 -567 -280 -388
+ -583 198 -617 -578
+ -524 -691 198 -641
+ -659 -585 -617 198
+ -228 190 -478 -505
+ 193 -487 -342 -418
+ -358 -40 7 108
+ -128 136 -99 -95
diff --git a/profiles/vertebrates/MA0845.1.pwm b/profiles/vertebrates/MA0845.1.pwm
index e69de29..cd8d2e5 100644
--- a/profiles/vertebrates/MA0845.1.pwm
+++ b/profiles/vertebrates/MA0845.1.pwm
@@ -0,0 +1,11 @@
+ 39 -265 -313 127
+ 147 -277 -35 -173
+ 9 -298 -213 137
+ -81 -478 173 -383
+ -321 -283 -379 188
+ 147 16 -420 -423
+ 187 -300 -646 -222
+ 192 -473 -473 -293
+ -516 37 -381 139
+ 192 -640 -334 -342
+ -1 -154 -158 122
diff --git a/profiles/vertebrates/MA0846.1.pwm b/profiles/vertebrates/MA0846.1.pwm
index e69de29..087c9c5 100644
--- a/profiles/vertebrates/MA0846.1.pwm
+++ b/profiles/vertebrates/MA0846.1.pwm
@@ -0,0 +1,12 @@
+ 68 -208 -350 105
+ 148 -212 -52 -180
+ 74 -95 -110 43
+ 29 -347 141 -492
+ -171 -81 -421 162
+ 157 -2 -578 -542
+ 196 -379 -546 -518
+ 195 -521 -406 -424
+ -621 148 -560 23
+ 195 -525 -386 -439
+ 113 -152 -180 24
+ 74 -108 -129 53
diff --git a/profiles/vertebrates/MA0847.1.pwm b/profiles/vertebrates/MA0847.1.pwm
index e69de29..f9a6598 100644
--- a/profiles/vertebrates/MA0847.1.pwm
+++ b/profiles/vertebrates/MA0847.1.pwm
@@ -0,0 +1,7 @@
+ 31 -295 135 -359
+ -123 -69 -580 155
+ 170 -98 -565 -214
+ 189 -284 -401 -354
+ 195 -541 -541 -339
+ -540 150 -362 9
+ 170 -565 -130 -162
diff --git a/profiles/vertebrates/MA0847.2.pwm b/profiles/vertebrates/MA0847.2.pwm
index 1140457..8b89717 100644
--- a/profiles/vertebrates/MA0847.2.pwm
+++ b/profiles/vertebrates/MA0847.2.pwm
@@ -1,13 +1,13 @@
- -9 29 63 -176
- -105 42 -254 100
- 53 -539 -897 134
- 170 -433 -52 -633
- 73 -31 -99 5
- 26 -443 146 -850
- -359 -83 -10000 175
- 184 -134 -725 -725
- 194 -290 -652 -715
- 199 -10000 -592 -552
- -10000 153 -10000 15
- 191 -491 -367 -293
- 68 -58 -154 47
+ -9 29 62 -172
+ -103 42 -246 99
+ 53 -476 -602 133
+ 168 -406 -51 -542
+ 72 -31 -98 5
+ 26 -418 145 -637
+ -342 -82 -646 173
+ 183 -132 -574 -574
+ 193 -278 -539 -564
+ 197 -622 -507 -484
+ -667 152 -667 15
+ 190 -446 -347 -282
+ 67 -57 -150 46
diff --git a/profiles/vertebrates/MA0847.3.pwm b/profiles/vertebrates/MA0847.3.pwm
index e69de29..8a5cf3c 100644
--- a/profiles/vertebrates/MA0847.3.pwm
+++ b/profiles/vertebrates/MA0847.3.pwm
@@ -0,0 +1,12 @@
+ -35 91 10 -192
+ -164 35 -232 114
+ -37 -430 -558 166
+ 189 -452 -216 -566
+ 156 -150 -147 -162
+ 126 -485 64 -591
+ -275 105 -533 82
+ 189 -284 -566 -287
+ 195 -415 -436 -549
+ 197 -558 -512 -537
+ -595 160 -595 -8
+ 182 -424 -390 -153
diff --git a/profiles/vertebrates/MA0848.1.pwm b/profiles/vertebrates/MA0848.1.pwm
index e69de29..86af732 100644
--- a/profiles/vertebrates/MA0848.1.pwm
+++ b/profiles/vertebrates/MA0848.1.pwm
@@ -0,0 +1,7 @@
+ -8 -578 160 -652
+ -204 -408 -339 185
+ 167 -40 -504 -542
+ 194 -309 -520 -516
+ 196 -615 -367 -556
+ -439 173 -495 -73
+ 197 -555 -555 -453
diff --git a/profiles/vertebrates/MA0849.1.pwm b/profiles/vertebrates/MA0849.1.pwm
index eddc8ca..6047303 100644
--- a/profiles/vertebrates/MA0849.1.pwm
+++ b/profiles/vertebrates/MA0849.1.pwm
@@ -1,7 +1,7 @@
- -55 -10000 173 -10000
- -355 -10000 -582 196
- 178 -83 -819 -10000
- 196 -322 -10000 -612
- 200 -10000 -10000 -10000
- -10000 192 -591 -227
- 200 -10000 -708 -10000
+ -54 -662 172 -662
+ -338 -640 -509 195
+ 177 -82 -617 -658
+ 194 -308 -640 -527
+ 199 -636 -636 -636
+ -644 190 -516 -221
+ 198 -636 -568 -636
diff --git a/profiles/vertebrates/MA0850.1.pwm b/profiles/vertebrates/MA0850.1.pwm
index 129eaa3..a699ac9 100644
--- a/profiles/vertebrates/MA0850.1.pwm
+++ b/profiles/vertebrates/MA0850.1.pwm
@@ -1,7 +1,7 @@
- 49 -10000 138 -10000
- -182 -44 -10000 158
- 180 -10000 -10000 -96
- 189 -10000 -266 -283
- 162 -220 -49 -10000
- -10000 158 -114 -85
- 188 -10000 -167 -10000
+ 46 -384 131 -384
+ -164 -42 -424 152
+ 174 -403 -403 -88
+ 182 -395 -223 -235
+ 156 -194 -46 -420
+ -424 153 -105 -79
+ 181 -395 -148 -395
diff --git a/profiles/vertebrates/MA0851.1.pwm b/profiles/vertebrates/MA0851.1.pwm
index 67b8f76..6ef697f 100644
--- a/profiles/vertebrates/MA0851.1.pwm
+++ b/profiles/vertebrates/MA0851.1.pwm
@@ -1,17 +1,17 @@
- 11 6 -25 6
- 44 -94 31 -18
- 94 -40 -64 -56
- 103 -94 -56 -40
- 47 -96 39 -34
- 28 -463 146 -10000
- -464 -364 -10000 196
- 188 -163 -10000 -10000
- 193 -366 -10000 -307
- 199 -10000 -10000 -464
- -10000 171 -10000 -46
- 199 -10000 -10000 -464
- 165 -185 -207 -149
- 119 -147 -184 11
- -18 44 6 -47
- 11 11 -6 -18
- -4 66 -54 -38
+ 10 5 -23 5
+ 41 -83 28 -17
+ 88 -36 -57 -50
+ 96 -83 -50 -36
+ 43 -84 36 -30
+ 25 -296 137 -345
+ -297 -261 -346 186
+ 178 -138 -345 -345
+ 183 -262 -347 -234
+ 188 -346 -346 -297
+ -345 162 -345 -41
+ 188 -346 -346 -297
+ 155 -155 -171 -127
+ 111 -126 -153 10
+ -17 41 5 -42
+ 10 10 -5 -17
+ -4 61 -48 -34
diff --git a/profiles/vertebrates/MA0852.1.pwm b/profiles/vertebrates/MA0852.1.pwm
index e69de29..8605a37 100644
--- a/profiles/vertebrates/MA0852.1.pwm
+++ b/profiles/vertebrates/MA0852.1.pwm
@@ -0,0 +1,17 @@
+ 41 -36 -23 5
+ 65 -94 14 -30
+ 118 -153 -92 -23
+ 142 -208 -187 -29
+ -92 -92 -42 114
+ -29 -298 157 -346
+ -260 -345 -345 187
+ 178 -139 -346 -346
+ 186 -298 -346 -261
+ 190 -345 -345 -345
+ -346 173 -346 -103
+ 190 -345 -345 -345
+ 160 -168 -260 -101
+ 110 -124 -112 -4
+ 10 24 20 -74
+ 41 -17 0 -36
+ -64 11 34 1
diff --git a/profiles/vertebrates/MA0852.2.pwm b/profiles/vertebrates/MA0852.2.pwm
index e69de29..639009c 100644
--- a/profiles/vertebrates/MA0852.2.pwm
+++ b/profiles/vertebrates/MA0852.2.pwm
@@ -0,0 +1,14 @@
+ 31 -50 -3 11
+ 64 -57 3 -42
+ -9 -86 4 57
+ -85 -291 169 -344
+ -200 -437 -238 181
+ 189 -259 -391 -427
+ 189 -259 -383 -399
+ 192 -369 -391 -383
+ -391 183 -376 -169
+ 191 -350 -376 -369
+ 93 -39 -36 -87
+ -49 -38 108 -131
+ -12 3 44 -51
+ 10 12 3 -29
diff --git a/profiles/vertebrates/MA0853.1.pwm b/profiles/vertebrates/MA0853.1.pwm
index 722fa37..c47d02f 100644
--- a/profiles/vertebrates/MA0853.1.pwm
+++ b/profiles/vertebrates/MA0853.1.pwm
@@ -1,17 +1,17 @@
- -66 122 -75 -120
- -132 -6 116 -132
- -40 82 -64 -25
- 68 -74 21 -64
- -363 46 -463 132
- -466 -166 -10000 187
- 197 -466 -466 -10000
- 197 -10000 -464 -464
- -464 -464 -10000 197
- -10000 -466 -466 197
- 187 -10000 -166 -466
- 132 -463 46 -363
- -56 -12 -47 75
- 21 16 -94 26
- 53 -12 -40 -18
- -12 21 0 -12
- -106 78 -25 -6
+ -58 115 -67 -104
+ -114 -5 109 -114
+ -36 76 -57 -23
+ 63 -65 20 -57
+ -260 42 -296 124
+ -299 -140 -347 177
+ 187 -299 -299 -347
+ 187 -346 -297 -297
+ -297 -297 -346 187
+ -347 -299 -299 187
+ 177 -347 -140 -299
+ 124 -296 42 -260
+ -50 -11 -42 69
+ 20 15 -83 24
+ 49 -11 -36 -17
+ -11 20 0 -11
+ -92 73 -23 -5
diff --git a/profiles/vertebrates/MA0854.1.pwm b/profiles/vertebrates/MA0854.1.pwm
index 597cbaf..f272971 100644
--- a/profiles/vertebrates/MA0854.1.pwm
+++ b/profiles/vertebrates/MA0854.1.pwm
@@ -1,17 +1,17 @@
- -40 82 -56 -32
- -184 -25 138 -184
- 60 40 -84 -74
- 78 -147 31 -56
- -232 68 -364 108
- -464 -184 -10000 188
- 199 -10000 -463 -10000
- 197 -10000 -464 -464
- -464 -464 -10000 197
- -10000 -463 -10000 199
- 188 -10000 -184 -464
- 108 -364 68 -232
- -74 -25 -118 108
- -12 36 -64 21
- 66 32 -104 -54
- -6 21 -12 -6
- -74 68 -84 31
+ -36 76 -50 -29
+ -153 -23 130 -153
+ 56 37 -74 -65
+ 73 -126 28 -50
+ -187 63 -261 101
+ -297 -153 -346 178
+ 188 -345 -296 -345
+ 187 -346 -297 -297
+ -297 -297 -346 187
+ -345 -296 -345 188
+ 178 -346 -153 -297
+ 101 -261 63 -187
+ -65 -23 -103 101
+ -11 33 -57 20
+ 61 30 -91 -48
+ -5 20 -11 -5
+ -65 63 -74 28
diff --git a/profiles/vertebrates/MA0855.1.pwm b/profiles/vertebrates/MA0855.1.pwm
index e69de29..2380fde 100644
--- a/profiles/vertebrates/MA0855.1.pwm
+++ b/profiles/vertebrates/MA0855.1.pwm
@@ -0,0 +1,14 @@
+ 15 -186 128 -243
+ 29 -571 145 -601
+ -498 -572 197 -517
+ -578 -585 180 -104
+ -597 -582 -529 198
+ -511 189 -387 -237
+ 198 -634 -561 -626
+ 195 -603 -346 -494
+ 193 -629 -265 -637
+ -568 -576 198 -529
+ -568 -583 187 -165
+ -588 -581 -493 198
+ -576 193 -395 -320
+ 191 -562 -227 -617
diff --git a/profiles/vertebrates/MA0856.1.pwm b/profiles/vertebrates/MA0856.1.pwm
index e69de29..cc3e97e 100644
--- a/profiles/vertebrates/MA0856.1.pwm
+++ b/profiles/vertebrates/MA0856.1.pwm
@@ -0,0 +1,14 @@
+ -16 -119 129 -218
+ 69 -631 124 -702
+ -594 -684 198 -557
+ -547 -686 175 -73
+ -753 -689 -582 199
+ -766 188 -431 -195
+ 199 -763 -626 -751
+ 193 -718 -315 -386
+ 192 -750 -237 -735
+ -702 -724 199 -677
+ -705 -734 180 -102
+ -756 -718 -570 199
+ -674 188 -378 -215
+ 190 -675 -205 -703
diff --git a/profiles/vertebrates/MA0857.1.pwm b/profiles/vertebrates/MA0857.1.pwm
index e69de29..bfd1f40 100644
--- a/profiles/vertebrates/MA0857.1.pwm
+++ b/profiles/vertebrates/MA0857.1.pwm
@@ -0,0 +1,16 @@
+ 116 -90 -138 -23
+ 163 -334 -81 -211
+ 173 -501 -65 -527
+ -560 -560 198 -546
+ -560 -547 195 -361
+ -482 -500 -418 196
+ -492 195 -415 -423
+ 196 -533 -410 -533
+ 189 -431 -499 -217
+ 179 -487 -120 -362
+ 194 -528 -332 -528
+ -547 -560 198 -560
+ -565 -552 177 -89
+ -528 -459 -495 196
+ -501 196 -488 -431
+ 197 -528 -491 -502
diff --git a/profiles/vertebrates/MA0858.1.pwm b/profiles/vertebrates/MA0858.1.pwm
index 217b4e7..74b38bc 100644
--- a/profiles/vertebrates/MA0858.1.pwm
+++ b/profiles/vertebrates/MA0858.1.pwm
@@ -1,17 +1,17 @@
- 190 -576 -206 -10000
- -10000 -748 200 -10000
- -643 -743 195 -297
- -10000 -644 -10000 200
- -743 199 -643 -743
- 199 -10000 -552 -10000
- 70 22 -359 18
- 50 52 -33 -146
- -215 50 -54 74
- 138 -230 -203 -9
- 135 -529 48 -529
- 192 -10000 -219 -740
- -742 -742 200 -10000
- -10000 -643 194 -273
- -10000 -583 -541 199
- -10000 199 -10000 -559
- 199 -10000 -644 -744
+ 186 -415 -190 -469
+ -481 -461 196 -481
+ -438 -456 191 -264
+ -478 -440 -478 196
+ -456 195 -438 -456
+ 195 -485 -416 -485
+ 68 21 -312 17
+ 48 50 -32 -137
+ -197 49 -51 72
+ 135 -210 -187 -8
+ 132 -394 47 -394
+ 188 -474 -201 -454
+ -455 -455 196 -475
+ -477 -439 190 -246
+ -475 -421 -406 194
+ -492 196 -492 -423
+ 195 -478 -440 -457
diff --git a/profiles/vertebrates/MA0859.1.pwm b/profiles/vertebrates/MA0859.1.pwm
index 3e74e1b..a02861f 100644
--- a/profiles/vertebrates/MA0859.1.pwm
+++ b/profiles/vertebrates/MA0859.1.pwm
@@ -1,16 +1,16 @@
- 91 -202 75 -236
- 147 -415 24 -903
- -1006 -10000 200 -10000
- -10000 -1017 179 -92
- -699 -618 -531 198
- -1006 199 -639 -534
- 200 -1011 -721 -10000
- 194 -561 -439 -322
- 185 -757 -199 -280
- 194 -923 -261 -10000
- -1170 -1170 200 -1011
- -10000 -1054 164 -18
- -868 -595 -560 199
- -10000 198 -547 -482
- 199 -917 -482 -1117
- 89 -31 -128 -10
+ 90 -200 75 -233
+ 146 -391 23 -631
+ -669 -683 199 -683
+ -694 -680 179 -91
+ -573 -534 -480 197
+ -669 198 -560 -491
+ 198 -621 -570 -631
+ 192 -497 -409 -309
+ 184 -591 -195 -271
+ 193 -623 -252 -643
+ -684 -684 199 -674
+ -673 -664 163 -18
+ -619 -519 -498 197
+ -673 197 -498 -449
+ 197 -618 -441 -632
+ 88 -30 -127 -10
diff --git a/profiles/vertebrates/MA0860.1.pwm b/profiles/vertebrates/MA0860.1.pwm
index e69de29..40f60e1 100644
--- a/profiles/vertebrates/MA0860.1.pwm
+++ b/profiles/vertebrates/MA0860.1.pwm
@@ -0,0 +1,17 @@
+ 171 -549 -60 -468
+ 190 -562 -210 -610
+ -638 -609 199 -623
+ -636 -636 194 -275
+ -595 -525 -520 197
+ -632 199 -647 -647
+ 198 -563 -511 -585
+ 9 102 -172 -73
+ -197 47 92 -109
+ 143 -127 -107 -128
+ 113 -406 76 -408
+ 167 -451 -41 -584
+ -638 -638 199 -631
+ -625 -572 190 -201
+ -518 -587 -602 198
+ -578 198 -610 -509
+ 198 -573 -567 -609
diff --git a/profiles/vertebrates/MA0861.1.pwm b/profiles/vertebrates/MA0861.1.pwm
index e69de29..6f722dd 100644
--- a/profiles/vertebrates/MA0861.1.pwm
+++ b/profiles/vertebrates/MA0861.1.pwm
@@ -0,0 +1,18 @@
+ 33 -309 43 36
+ 128 -249 38 -344
+ -661 199 -661 -661
+ 185 -400 -206 -343
+ -10 -369 -231 148
+ -637 -574 199 -668
+ -455 -50 -496 169
+ -123 131 -202 -25
+ -41 2 -37 55
+ 23 -30 25 -28
+ 27 -283 123 -170
+ 172 -409 -103 -264
+ -672 199 -672 -672
+ 165 -424 -340 -48
+ -372 68 -456 119
+ -625 -408 197 -564
+ -190 87 -419 88
+ 43 78 -245 -41
diff --git a/profiles/vertebrates/MA0862.1.pwm b/profiles/vertebrates/MA0862.1.pwm
index e69de29..e1f168a 100644
--- a/profiles/vertebrates/MA0862.1.pwm
+++ b/profiles/vertebrates/MA0862.1.pwm
@@ -0,0 +1,8 @@
+ -163 -58 -7 104
+ -168 -271 -6 137
+ 190 -389 -280 -389
+ -295 190 -389 -389
+ -389 -295 190 -389
+ -398 -145 -398 181
+ 150 -29 -239 -268
+ 140 -6 -170 -330
diff --git a/profiles/vertebrates/MA0863.1.pwm b/profiles/vertebrates/MA0863.1.pwm
index e69de29..dcef91d 100644
--- a/profiles/vertebrates/MA0863.1.pwm
+++ b/profiles/vertebrates/MA0863.1.pwm
@@ -0,0 +1,14 @@
+ -239 -297 -139 172
+ -172 -124 -46 135
+ -239 -239 -297 180
+ -227 -268 182 -326
+ -274 187 -332 -332
+ 180 -297 -239 -239
+ -234 181 -234 -334
+ 173 -170 -244 -244
+ -323 188 -323 -323
+ -274 -332 185 -274
+ -69 -215 131 -56
+ -330 172 -330 -98
+ 139 -60 -102 -219
+ -225 175 -266 -193
diff --git a/profiles/vertebrates/MA0864.1.pwm b/profiles/vertebrates/MA0864.1.pwm
index e69de29..4763e7c 100644
--- a/profiles/vertebrates/MA0864.1.pwm
+++ b/profiles/vertebrates/MA0864.1.pwm
@@ -0,0 +1,16 @@
+ 174 -280 -280 -139
+ 177 -280 -280 -172
+ 180 -277 -277 -213
+ 130 -238 -160 2
+ -7 -282 -101 127
+ -353 -141 175 -245
+ -338 -338 189 -338
+ -240 178 -240 -240
+ -342 -342 190 -342
+ -240 178 -240 -240
+ -251 167 -110 -251
+ 148 -150 -291 -47
+ 27 -263 -326 134
+ -64 -322 -322 165
+ -242 -306 -306 184
+ -40 -157 -235 144
diff --git a/profiles/vertebrates/MA0864.2.pwm b/profiles/vertebrates/MA0864.2.pwm
index 377f71a..c7edb34 100644
--- a/profiles/vertebrates/MA0864.2.pwm
+++ b/profiles/vertebrates/MA0864.2.pwm
@@ -1,16 +1,16 @@
- 23 -78 74 -80
- 46 -215 -79 87
- -31 -164 -60 115
- -34 -233 -85 129
- -55 -334 -83 141
- -247 -19 155 -557
- -919 -519 199 -1019
- -587 199 -10000 -10000
- -611 -10000 199 -820
- -861 199 -549 -1019
- -213 154 -47 -274
- 132 -53 -267 -62
- 43 -117 -347 108
- 29 -138 -135 100
- 55 -55 -137 55
- -69 55 -54 30
+ 23 -76 73 -78
+ 45 -209 -78 86
+ -30 -161 -60 114
+ -33 -226 -84 128
+ -54 -320 -82 140
+ -239 -19 154 -494
+ -585 -456 197 -592
+ -495 198 -600 -600
+ -506 -600 198 -572
+ -578 197 -473 -592
+ -208 153 -47 -264
+ 131 -53 -259 -61
+ 43 -115 -328 107
+ 29 -135 -132 99
+ 55 -54 -135 55
+ -67 54 -53 29
diff --git a/profiles/vertebrates/MA0865.1.pwm b/profiles/vertebrates/MA0865.1.pwm
index c27f71d..a03e6d5 100644
--- a/profiles/vertebrates/MA0865.1.pwm
+++ b/profiles/vertebrates/MA0865.1.pwm
@@ -1,12 +1,12 @@
- -297 -297 -455 189
- -10000 -295 -10000 195
- -10000 -10000 -454 198
- -10000 199 -10000 -463
- -10000 196 -10000 -304
- -10000 199 -461 -10000
- -302 -222 187 -10000
- -10000 199 -10000 -460
- -363 191 -263 -10000
- 191 -441 -282 -441
- 200 -10000 -10000 -10000
- 188 -343 -443 -243
+ -225 -225 -291 179
+ -339 -224 -339 185
+ -339 -339 -290 188
+ -347 188 -347 -298
+ -347 186 -347 -232
+ -346 188 -296 -346
+ -244 -189 180 -383
+ -344 188 -344 -295
+ -261 181 -208 -347
+ 180 -278 -212 -278
+ 188 -324 -324 -324
+ 177 -243 -279 -189
diff --git a/profiles/vertebrates/MA0865.2.pwm b/profiles/vertebrates/MA0865.2.pwm
index 034af5c..2334b49 100644
--- a/profiles/vertebrates/MA0865.2.pwm
+++ b/profiles/vertebrates/MA0865.2.pwm
@@ -1,12 +1,12 @@
- -134 -29 -233 137
- -51 -128 -258 144
- -255 178 -143 -484
- -535 168 -38 -10000
- -321 194 -608 -497
- -338 -586 195 -497
- -865 196 -395 -474
- -258 134 -21 -118
- 173 -188 -231 -228
- 63 -7 -114 7
- 91 -86 -85 2
- 106 -88 -139 -2
+ -127 -28 -217 134
+ -50 -124 -245 142
+ -239 175 -137 -409
+ -440 166 -37 -543
+ -291 191 -457 -409
+ -305 -449 192 -409
+ -504 193 -346 -396
+ -245 132 -20 -115
+ 171 -179 -218 -215
+ 62 -7 -112 7
+ 91 -85 -84 2
+ 104 -85 -133 -2
diff --git a/profiles/vertebrates/MA0866.1.pwm b/profiles/vertebrates/MA0866.1.pwm
index e69de29..ea6788f 100644
--- a/profiles/vertebrates/MA0866.1.pwm
+++ b/profiles/vertebrates/MA0866.1.pwm
@@ -0,0 +1,15 @@
+ 196 -515 -414 -489
+ 178 -403 -118 -413
+ -642 199 -606 -616
+ 199 -669 -621 -693
+ 199 -648 -551 -698
+ -672 -684 -601 199
+ -339 -641 128 55
+ -104 -161 99 26
+ -464 86 -525 108
+ 199 -627 -580 -693
+ -538 -662 143 35
+ -512 -643 -521 198
+ -658 -680 199 -665
+ -595 -636 -586 198
+ -381 -241 -308 186
diff --git a/profiles/vertebrates/MA0867.1.pwm b/profiles/vertebrates/MA0867.1.pwm
index e69de29..a04a072 100644
--- a/profiles/vertebrates/MA0867.1.pwm
+++ b/profiles/vertebrates/MA0867.1.pwm
@@ -0,0 +1,16 @@
+ 2 -93 89 -71
+ 195 -460 -460 -460
+ 194 -461 -372 -461
+ -460 195 -460 -460
+ 195 -460 -437 -460
+ 194 -461 -401 -438
+ -460 -460 -437 195
+ -462 -462 -311 193
+ -147 -189 128 -10
+ -460 195 -460 -460
+ 195 -460 -437 -460
+ -466 -466 189 -227
+ -461 -461 -386 194
+ -437 -460 195 -460
+ -460 -437 -460 195
+ -419 -438 -438 194
diff --git a/profiles/vertebrates/MA0867.2.pwm b/profiles/vertebrates/MA0867.2.pwm
index e69de29..9866fdf 100644
--- a/profiles/vertebrates/MA0867.2.pwm
+++ b/profiles/vertebrates/MA0867.2.pwm
@@ -0,0 +1,10 @@
+ -1 -85 80 -48
+ 130 -123 -14 -233
+ 198 -606 -606 -555
+ -608 197 -462 -472
+ 198 -599 -570 -606
+ 198 -570 -546 -606
+ 139 -392 -491 36
+ -72 -432 171 -403
+ 22 -33 95 -322
+ 34 4 43 -150
diff --git a/profiles/vertebrates/MA0868.1.pwm b/profiles/vertebrates/MA0868.1.pwm
index 3b0995e..c3aadf4 100644
--- a/profiles/vertebrates/MA0868.1.pwm
+++ b/profiles/vertebrates/MA0868.1.pwm
@@ -1,16 +1,16 @@
- 198 -10000 -10000 -406
- 200 -10000 -10000 -10000
- -685 200 -10000 -10000
- 199 -10000 -585 -10000
- 199 -685 -685 -685
- -10000 -10000 -685 200
- 36 -417 124 -177
- -685 -10000 -10000 200
- -215 -170 148 -58
- -10000 199 -586 -586
- 200 -10000 -10000 -10000
- -685 -10000 199 -585
- -10000 -10000 -685 200
- -10000 -10000 200 -10000
- -685 -10000 -10000 200
- -10000 -486 -10000 199
+ 193 -450 -450 -330
+ 195 -448 -448 -448
+ -423 195 -448 -448
+ 194 -448 -403 -448
+ 194 -424 -424 -424
+ -448 -448 -423 195
+ 35 -340 121 -163
+ -423 -448 -448 195
+ -196 -157 145 -55
+ -449 194 -403 -403
+ 195 -448 -448 -448
+ -424 -448 194 -403
+ -448 -448 -423 195
+ -448 -448 195 -448
+ -423 -448 -448 195
+ -449 -369 -449 194
diff --git a/profiles/vertebrates/MA0868.2.pwm b/profiles/vertebrates/MA0868.2.pwm
index e69de29..ed01b3f 100644
--- a/profiles/vertebrates/MA0868.2.pwm
+++ b/profiles/vertebrates/MA0868.2.pwm
@@ -0,0 +1,10 @@
+ 68 -1 -40 -64
+ -26 -108 103 -63
+ 155 -194 -119 -142
+ 194 -524 -524 -306
+ -498 189 -338 -259
+ 196 -522 -522 -404
+ 191 -313 -527 -333
+ -95 -350 -408 174
+ 55 -208 98 -164
+ -59 -11 98 -119
diff --git a/profiles/vertebrates/MA0869.1.pwm b/profiles/vertebrates/MA0869.1.pwm
index 83ad9cb..1d630f8 100644
--- a/profiles/vertebrates/MA0869.1.pwm
+++ b/profiles/vertebrates/MA0869.1.pwm
@@ -1,15 +1,15 @@
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -626 -10000 200
- -230 -238 59 107
- -10000 200 -10000 -626
- 200 -10000 -10000 -10000
- -10000 -10000 159 -3
- -10000 -10000 -526 199
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -634 -254 -402 191
+ 194 -412 -412 -412
+ 194 -412 -412 -412
+ -412 194 -412 -412
+ 194 -412 -412 -412
+ 194 -412 -412 -412
+ -412 -412 -412 194
+ -412 -384 -412 193
+ -218 -225 58 105
+ -412 193 -412 -384
+ 194 -412 -412 -412
+ -450 -450 155 -3
+ -413 -413 -361 193
+ -412 -412 194 -412
+ -412 -412 -412 194
+ -392 -220 -315 185
diff --git a/profiles/vertebrates/MA0869.2.pwm b/profiles/vertebrates/MA0869.2.pwm
index 44a1a44..ac00da7 100644
--- a/profiles/vertebrates/MA0869.2.pwm
+++ b/profiles/vertebrates/MA0869.2.pwm
@@ -1,12 +1,12 @@
- 17 -7 26 -46
- 70 -140 28 -36
- -134 -175 165 -265
- 163 -174 -98 -324
- 194 -468 -360 -498
- -443 189 -235 -403
- 197 -457 -571 -517
- 192 -328 -337 -542
- 186 -539 -346 -192
- -234 -411 189 -457
- 34 -14 62 -178
- 47 13 4 -100
+ 17 -7 25 -46
+ 69 -137 28 -35
+ -132 -171 164 -258
+ 162 -171 -97 -312
+ 193 -437 -345 -461
+ -416 188 -230 -383
+ 196 -428 -512 -475
+ 191 -316 -324 -492
+ 185 -491 -332 -188
+ -228 -390 188 -428
+ 34 -14 61 -174
+ 46 13 4 -99
diff --git a/profiles/vertebrates/MA0870.1.pwm b/profiles/vertebrates/MA0870.1.pwm
index 7dcf684..11aadf5 100644
--- a/profiles/vertebrates/MA0870.1.pwm
+++ b/profiles/vertebrates/MA0870.1.pwm
@@ -1,15 +1,15 @@
- 124 -55 -70 -157
- 190 -361 -411 -287
- -10000 200 -10000 -10000
- 199 -560 -10000 -638
- 181 -102 -10000 -10000
- -549 -10000 -10000 199
- 133 -707 -90 -8
- 43 -19 -14 -21
- -723 195 -356 -419
- 200 -10000 -10000 -10000
- -10000 -10000 -139 186
- -10000 -538 -10000 199
- -10000 -10000 200 -10000
- -310 -138 -355 177
- -138 -81 -113 137
+ 122 -53 -68 -151
+ 188 -332 -371 -270
+ -559 198 -559 -559
+ 197 -462 -560 -495
+ 179 -100 -577 -577
+ -455 -559 -559 197
+ 131 -530 -88 -8
+ 43 -19 -14 -20
+ -523 192 -328 -376
+ 198 -559 -559 -559
+ -573 -573 -135 184
+ -559 -450 -559 197
+ -559 -559 198 -559
+ -292 -134 -330 175
+ -133 -79 -109 135
diff --git a/profiles/vertebrates/MA0871.1.pwm b/profiles/vertebrates/MA0871.1.pwm
index c50c2ed..ac93bdd 100644
--- a/profiles/vertebrates/MA0871.1.pwm
+++ b/profiles/vertebrates/MA0871.1.pwm
@@ -1,10 +1,10 @@
- 107 -84 43 -10000
- -65 -71 -21 91
- -423 198 -10000 -10000
- 198 -10000 -10000 -423
- -458 162 -158 -88
- 44 -385 136 -10000
- -155 -155 -255 165
- -10000 -10000 200 -10000
- 147 -83 -83 -316
- -10000 64 -11 60
+ 99 -73 39 -328
+ -60 -66 -19 87
+ -261 185 -310 -310
+ 185 -310 -310 -261
+ -293 153 -134 -77
+ 41 -280 129 -366
+ -131 -131 -201 156
+ -309 -309 187 -309
+ 139 -74 -74 -242
+ -341 59 -10 55
diff --git a/profiles/vertebrates/MA0871.2.pwm b/profiles/vertebrates/MA0871.2.pwm
index e69de29..22e9a87 100644
--- a/profiles/vertebrates/MA0871.2.pwm
+++ b/profiles/vertebrates/MA0871.2.pwm
@@ -0,0 +1,11 @@
+ 1 52 -46 -26
+ -11 53 21 -109
+ -644 199 -627 -644
+ 190 -653 -367 -243
+ -648 195 -648 -315
+ -446 -646 198 -646
+ -644 -644 -644 199
+ -644 -621 199 -644
+ 188 -232 -370 -495
+ -566 177 -465 -92
+ -10 50 -22 -34
diff --git a/profiles/vertebrates/MA0872.1.pwm b/profiles/vertebrates/MA0872.1.pwm
index 125b172..4e379a7 100644
--- a/profiles/vertebrates/MA0872.1.pwm
+++ b/profiles/vertebrates/MA0872.1.pwm
@@ -1,13 +1,13 @@
- -40 -117 -137 127
- -10000 -27 166 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -285 168 -187 -141
- -271 54 -76 85
- -99 44 55 -57
- 67 -64 63 -222
- -117 -271 171 -303
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -10000 159 0 -10000
- 117 -165 -69 -30
+ -39 -112 -131 125
+ -549 -26 164 -549
+ -517 197 -517 -517
+ -518 197 -518 -518
+ -263 166 -177 -134
+ -251 53 -74 83
+ -95 43 54 -55
+ 66 -61 61 -208
+ -113 -255 169 -282
+ -564 -564 198 -564
+ -564 -564 198 -564
+ -527 156 0 -527
+ 115 -156 -67 -29
diff --git a/profiles/vertebrates/MA0873.1.pwm b/profiles/vertebrates/MA0873.1.pwm
index e69de29..01f1836 100644
--- a/profiles/vertebrates/MA0873.1.pwm
+++ b/profiles/vertebrates/MA0873.1.pwm
@@ -0,0 +1,11 @@
+ 86 -109 61 -237
+ -21 -53 127 -471
+ -508 -264 -436 191
+ -478 196 -457 -517
+ -90 -509 177 -536
+ -503 -416 -517 196
+ 176 -537 -511 -81
+ 197 -516 -478 -516
+ 192 -521 -452 -276
+ 149 -133 -308 -58
+ 64 48 -202 -33
diff --git a/profiles/vertebrates/MA0874.1.pwm b/profiles/vertebrates/MA0874.1.pwm
index e69de29..8d86e92 100644
--- a/profiles/vertebrates/MA0874.1.pwm
+++ b/profiles/vertebrates/MA0874.1.pwm
@@ -0,0 +1,17 @@
+ -5 -17 63 -74
+ -83 -57 -36 99
+ -58 51 18 -37
+ -18 108 -84 -115
+ 92 -171 55 -155
+ -297 56 -297 118
+ -297 -83 -346 169
+ 188 -345 -345 -296
+ 187 -347 -299 -299
+ -299 -299 -347 187
+ -296 -345 -345 188
+ 169 -346 -83 -297
+ 118 -297 56 -297
+ -57 -57 -74 104
+ -42 -103 76 10
+ -126 49 52 -42
+ 101 -114 -153 24
diff --git a/profiles/vertebrates/MA0875.1.pwm b/profiles/vertebrates/MA0875.1.pwm
index e69de29..1698473 100644
--- a/profiles/vertebrates/MA0875.1.pwm
+++ b/profiles/vertebrates/MA0875.1.pwm
@@ -0,0 +1,8 @@
+ 14 10 39 -94
+ -166 142 -286 -19
+ 96 23 -29 -400
+ 191 -300 -310 -645
+ -637 -637 -637 199
+ -637 -637 -637 199
+ 199 -637 -637 -637
+ 17 -29 50 -65
diff --git a/profiles/vertebrates/MA0876.1.pwm b/profiles/vertebrates/MA0876.1.pwm
index 5f6c943..f71d468 100644
--- a/profiles/vertebrates/MA0876.1.pwm
+++ b/profiles/vertebrates/MA0876.1.pwm
@@ -1,8 +1,8 @@
- -61 83 5 -92
- -181 122 -455 43
- 87 17 -1 -425
- 180 -371 -124 -527
- -10000 -10000 -10000 200
- -454 -10000 -10000 198
- 200 -10000 -10000 -10000
- 33 10 13 -79
+ -60 82 5 -91
+ -177 121 -426 43
+ 86 17 -1 -400
+ 179 -356 -122 -484
+ -655 -655 -655 199
+ -423 -656 -656 197
+ 199 -655 -655 -655
+ 32 10 13 -78
diff --git a/profiles/vertebrates/MA0877.1.pwm b/profiles/vertebrates/MA0877.1.pwm
index e69de29..97bc335 100644
--- a/profiles/vertebrates/MA0877.1.pwm
+++ b/profiles/vertebrates/MA0877.1.pwm
@@ -0,0 +1,10 @@
+ -36 5 43 -26
+ -47 46 -47 24
+ -151 -479 -631 185
+ 193 -622 -446 -302
+ 198 -618 -471 -600
+ 13 -276 -60 107
+ -68 -58 -64 104
+ -35 -267 146 -171
+ -46 39 23 -34
+ -66 17 -38 56
diff --git a/profiles/vertebrates/MA0877.2.pwm b/profiles/vertebrates/MA0877.2.pwm
index f5e9a63..7352734 100644
--- a/profiles/vertebrates/MA0877.2.pwm
+++ b/profiles/vertebrates/MA0877.2.pwm
@@ -1,8 +1,8 @@
- -50 68 12 -72
- -267 -10000 -10000 194
- 159 -460 -252 -35
- 198 -444 -10000 -10000
- 130 -327 -154 14
- -10000 149 -10000 25
- -117 -10000 175 -244
- -15 -24 35 -4
+ -49 67 11 -70
+ -256 -605 -605 193
+ 157 -425 -244 -35
+ 197 -404 -601 -601
+ 129 -316 -151 13
+ -650 148 -650 25
+ -115 -624 174 -235
+ -15 -23 35 -4
diff --git a/profiles/vertebrates/MA0877.3.pwm b/profiles/vertebrates/MA0877.3.pwm
index 51e8bd1..118fd76 100644
--- a/profiles/vertebrates/MA0877.3.pwm
+++ b/profiles/vertebrates/MA0877.3.pwm
@@ -1,8 +1,8 @@
- 129 -171 -60 -77
- -12 88 -123 -29
- -237 192 -845 -533
- -55 -516 170 -473
- -200 -233 -509 182
- -10000 -795 -10000 200
- -340 -682 -10000 196
- 194 -601 -531 -305
+ 128 -168 -59 -76
+ -12 87 -122 -29
+ -228 190 -568 -460
+ -54 -458 169 -427
+ -193 -225 -449 180
+ -582 -553 -582 198
+ -318 -527 -586 194
+ 192 -495 -458 -288
diff --git a/profiles/vertebrates/MA0878.1.pwm b/profiles/vertebrates/MA0878.1.pwm
index e69de29..af1ae12 100644
--- a/profiles/vertebrates/MA0878.1.pwm
+++ b/profiles/vertebrates/MA0878.1.pwm
@@ -0,0 +1,9 @@
+ -5 -57 107 -198
+ -295 109 -578 78
+ 102 63 -354 -159
+ 185 -402 -172 -471
+ -547 -599 -656 198
+ 173 -311 -436 -93
+ 184 -471 -465 -159
+ 179 -239 -326 -199
+ 100 -40 -87 -51
diff --git a/profiles/vertebrates/MA0878.2.pwm b/profiles/vertebrates/MA0878.2.pwm
index af422eb..57a5037 100644
--- a/profiles/vertebrates/MA0878.2.pwm
+++ b/profiles/vertebrates/MA0878.2.pwm
@@ -1,11 +1,11 @@
- -55 -94 89 -8
- -150 -10000 187 -1076
- -10000 149 -1221 25
- 60 131 -741 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -889 -10000
- 200 -10000 -10000 -10000
- 200 -10000 -797 -10000
- 128 -11 -221 -121
- -141 117 -82 -31
+ -54 -93 88 -8
+ -148 -720 186 -709
+ -707 148 -703 25
+ 60 130 -624 -707
+ 199 -707 -707 -707
+ -707 -707 -707 199
+ 199 -707 -671 -707
+ 199 -707 -707 -707
+ 199 -707 -645 -707
+ 128 -11 -219 -121
+ -140 116 -81 -31
diff --git a/profiles/vertebrates/MA0878.3.pwm b/profiles/vertebrates/MA0878.3.pwm
index c667f84..ed7ecc4 100644
--- a/profiles/vertebrates/MA0878.3.pwm
+++ b/profiles/vertebrates/MA0878.3.pwm
@@ -1,10 +1,10 @@
- -128 -158 151 -130
- -211 -268 183 -412
- -762 117 -10000 80
- 110 76 -10000 -266
- 194 -10000 -270 -10000
- -10000 -10000 -10000 200
- 195 -531 -10000 -327
- 197 -494 -451 -625
- 200 -10000 -10000 -10000
- 149 -85 -176 -158
+ -126 -156 150 -128
+ -206 -260 182 -389
+ -597 117 -651 79
+ 110 75 -657 -258
+ 193 -657 -262 -657
+ -651 -651 -651 199
+ 194 -482 -656 -315
+ 196 -454 -420 -540
+ 199 -651 -651 -651
+ 149 -84 -173 -156
diff --git a/profiles/vertebrates/MA0879.1.pwm b/profiles/vertebrates/MA0879.1.pwm
index e69de29..f905f24 100644
--- a/profiles/vertebrates/MA0879.1.pwm
+++ b/profiles/vertebrates/MA0879.1.pwm
@@ -0,0 +1,10 @@
+ 4 44 -19 -44
+ 32 43 -37 -65
+ -22 4 -397 104
+ 173 -150 -251 -275
+ 187 -413 -510 -202
+ -121 -519 -502 181
+ -370 -262 -214 182
+ 167 -436 -544 -43
+ -22 -13 0 29
+ -36 59 -13 -32
diff --git a/profiles/vertebrates/MA0879.2.pwm b/profiles/vertebrates/MA0879.2.pwm
index a914f09..a1e8aef 100644
--- a/profiles/vertebrates/MA0879.2.pwm
+++ b/profiles/vertebrates/MA0879.2.pwm
@@ -1,8 +1,8 @@
- -33 31 43 -70
- -262 132 -10000 42
- 148 -88 -123 -205
- 195 -286 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -146 -350 183
- 183 -10000 -338 -151
- -11 20 1 -13
+ -33 31 43 -69
+ -253 131 -631 41
+ 147 -87 -121 -201
+ 194 -275 -631 -631
+ -626 -626 -626 199
+ -643 -143 -334 181
+ 182 -642 -323 -148
+ -11 20 1 -12
diff --git a/profiles/vertebrates/MA0880.1.pwm b/profiles/vertebrates/MA0880.1.pwm
index 943089c..fcf11a9 100644
--- a/profiles/vertebrates/MA0880.1.pwm
+++ b/profiles/vertebrates/MA0880.1.pwm
@@ -1,8 +1,8 @@
- -11 35 18 -60
- -182 104 -362 66
- 162 -126 -202 -189
- 183 -194 -505 -278
- -346 -485 -499 194
- -245 -202 -227 175
- 182 -336 -436 -159
- 15 22 -43 -2
+ -11 35 18 -59
+ -178 103 -345 66
+ 161 -124 -198 -186
+ 182 -190 -462 -269
+ -330 -444 -455 193
+ -238 -198 -221 174
+ 181 -323 -409 -156
+ 15 22 -43 -2
diff --git a/profiles/vertebrates/MA0881.1.pwm b/profiles/vertebrates/MA0881.1.pwm
index e69de29..2b5138c 100644
--- a/profiles/vertebrates/MA0881.1.pwm
+++ b/profiles/vertebrates/MA0881.1.pwm
@@ -0,0 +1,8 @@
+ -19 38 29 -73
+ -211 108 -423 69
+ 166 -132 -232 -207
+ 184 -212 -533 -267
+ -473 -477 -554 196
+ -290 -197 -262 179
+ 181 -332 -440 -157
+ 2 29 -39 -1
diff --git a/profiles/vertebrates/MA0882.1.pwm b/profiles/vertebrates/MA0882.1.pwm
index e69de29..598aaf7 100644
--- a/profiles/vertebrates/MA0882.1.pwm
+++ b/profiles/vertebrates/MA0882.1.pwm
@@ -0,0 +1,8 @@
+ -12 49 5 -64
+ -224 101 -437 79
+ 169 -152 -239 -205
+ 188 -238 -575 -337
+ -473 -567 -567 197
+ -358 -226 -317 185
+ 186 -408 -464 -182
+ 10 32 -46 -7
diff --git a/profiles/vertebrates/MA0883.1.pwm b/profiles/vertebrates/MA0883.1.pwm
index e69de29..47ed3a0 100644
--- a/profiles/vertebrates/MA0883.1.pwm
+++ b/profiles/vertebrates/MA0883.1.pwm
@@ -0,0 +1,17 @@
+ 41 -83 -92 66
+ 15 -139 52 10
+ 91 -139 28 -92
+ 91 -139 -83 24
+ 0 49 -42 -23
+ 14 92 -30 -234
+ -169 -297 180 -346
+ -346 -297 188 -346
+ 181 -169 -346 -346
+ -345 -345 -345 190
+ -297 -297 -346 187
+ 186 -346 -346 -232
+ 63 -187 45 -29
+ -124 -101 54 71
+ -65 15 24 10
+ 25 -28 -34 25
+ 52 -92 -65 49
diff --git a/profiles/vertebrates/MA0884.1.pwm b/profiles/vertebrates/MA0884.1.pwm
index ddf8908..30d441b 100644
--- a/profiles/vertebrates/MA0884.1.pwm
+++ b/profiles/vertebrates/MA0884.1.pwm
@@ -1,13 +1,13 @@
- -18 30 -39 16
- -78 -53 -189 130
- 135 -569 48 -442
- 197 -543 -456 -569
- -123 31 -135 96
- -440 63 -39 72
- -402 -12 -169 144
- 183 -235 -260 -369
- 197 -521 -470 -521
- -10000 -799 -567 199
- -10000 185 -655 -138
- 177 -336 -251 -169
- 52 -51 16 -42
+ -17 30 -37 15
+ -76 -52 -182 128
+ 132 -430 46 -370
+ 193 -421 -378 -431
+ -118 30 -129 94
+ -368 61 -38 70
+ -360 -12 -162 142
+ 180 -218 -240 -327
+ 193 -411 -386 -411
+ -495 -479 -429 196
+ -509 182 -465 -131
+ 174 -302 -233 -160
+ 51 -49 15 -41
diff --git a/profiles/vertebrates/MA0884.2.pwm b/profiles/vertebrates/MA0884.2.pwm
index 8e61cd6..3db91a4 100644
--- a/profiles/vertebrates/MA0884.2.pwm
+++ b/profiles/vertebrates/MA0884.2.pwm
@@ -1,13 +1,13 @@
- -121 24 -152 103
- -376 -533 -792 196
- 87 -10000 112 -10000
- 200 -10000 -947 -10000
- -667 39 -597 142
- -697 -40 -641 169
- 84 -222 -228 84
- 170 -805 -42 -705
- 141 -597 38 -620
- -10000 -10000 -10000 200
- -10000 113 -10000 86
- 196 -777 -518 -374
- 104 -154 23 -121
+ -120 23 -150 102
+ -358 -483 -608 195
+ 86 -650 111 -650
+ 199 -651 -633 -651
+ -560 38 -523 141
+ -573 -39 -547 168
+ 83 -217 -222 84
+ 168 -609 -41 -576
+ 140 -523 38 -536
+ -650 -650 -650 199
+ -650 112 -650 85
+ 195 -603 -472 -356
+ 103 -151 23 -120
diff --git a/profiles/vertebrates/MA0885.1.pwm b/profiles/vertebrates/MA0885.1.pwm
index 83fb5fe..4daa375 100644
--- a/profiles/vertebrates/MA0885.1.pwm
+++ b/profiles/vertebrates/MA0885.1.pwm
@@ -1,8 +1,8 @@
- -12 5 46 -60
- -273 104 -474 81
- 183 -250 -298 -288
- 195 -362 -789 -431
- -10000 -10000 -10000 200
- -385 -325 -273 188
- 193 -629 -604 -264
- 11 -7 -17 11
+ -12 5 46 -59
+ -267 103 -446 81
+ 182 -245 -291 -281
+ 194 -349 -632 -410
+ -686 -686 -686 199
+ -370 -316 -266 187
+ 192 -558 -542 -258
+ 11 -7 -16 10
diff --git a/profiles/vertebrates/MA0885.2.pwm b/profiles/vertebrates/MA0885.2.pwm
index e69de29..6044511 100644
--- a/profiles/vertebrates/MA0885.2.pwm
+++ b/profiles/vertebrates/MA0885.2.pwm
@@ -0,0 +1,12 @@
+ 32 -7 -28 -5
+ 54 -160 -12 37
+ -215 -208 174 -232
+ -260 170 -338 -102
+ 192 -334 -478 -356
+ 191 -359 -379 -351
+ -340 -482 -451 194
+ -436 -248 -392 189
+ 188 -543 -379 -224
+ -98 -175 149 -134
+ 15 20 -31 -9
+ 29 -28 -16 9
diff --git a/profiles/vertebrates/MA0886.1.pwm b/profiles/vertebrates/MA0886.1.pwm
index e69de29..9326057 100644
--- a/profiles/vertebrates/MA0886.1.pwm
+++ b/profiles/vertebrates/MA0886.1.pwm
@@ -0,0 +1,10 @@
+ 17 -15 46 -74
+ -70 52 18 -28
+ -344 -29 -761 163
+ 175 -115 -393 -311
+ 199 -758 -758 -758
+ -758 -758 -758 199
+ -773 -773 -135 185
+ 199 -758 -758 -758
+ -3 -38 92 -147
+ -64 48 13 -21
diff --git a/profiles/vertebrates/MA0887.1.pwm b/profiles/vertebrates/MA0887.1.pwm
index 93753d0..8a7d92c 100644
--- a/profiles/vertebrates/MA0887.1.pwm
+++ b/profiles/vertebrates/MA0887.1.pwm
@@ -1,10 +1,10 @@
- -1 -13 65 -93
- 5 34 41 -147
- -129 -32 -344 143
- 98 -17 -7 -246
- 195 -614 -311 -10000
- -10000 -494 -295 194
- -324 -224 -368 185
- 184 -730 -160 -368
- -57 9 46 -18
- -46 75 -1 -73
+ -1 -13 64 -91
+ 5 34 41 -144
+ -127 -32 -334 142
+ 97 -17 -7 -239
+ 194 -531 -299 -648
+ -649 -453 -284 193
+ -312 -219 -351 184
+ 183 -591 -157 -351
+ -56 9 46 -18
+ -46 74 -1 -72
diff --git a/profiles/vertebrates/MA0888.1.pwm b/profiles/vertebrates/MA0888.1.pwm
index e69de29..0b2950f 100644
--- a/profiles/vertebrates/MA0888.1.pwm
+++ b/profiles/vertebrates/MA0888.1.pwm
@@ -0,0 +1,10 @@
+ -21 0 61 -72
+ 1 30 46 -139
+ -153 -38 -289 146
+ 98 -2 -17 -270
+ 192 -481 -256 -719
+ -700 -472 -286 193
+ -403 -262 -352 188
+ 186 -725 -182 -355
+ -32 -7 61 -47
+ -43 59 -3 -37
diff --git a/profiles/vertebrates/MA0889.1.pwm b/profiles/vertebrates/MA0889.1.pwm
index f0b03ea..83fbf64 100644
--- a/profiles/vertebrates/MA0889.1.pwm
+++ b/profiles/vertebrates/MA0889.1.pwm
@@ -1,10 +1,10 @@
- 55 -2 20 -130
- -203 113 3 -88
- -483 97 -885 100
- 192 -361 -325 -552
- 199 -532 -789 -823
- -726 -575 -1275 199
- -450 -402 -485 195
- 198 -711 -976 -443
- -26 -10 84 -117
- -95 78 -33 -4
+ 55 -2 20 -129
+ -200 113 3 -87
+ -461 97 -694 100
+ 192 -352 -318 -519
+ 198 -502 -662 -675
+ -632 -535 -734 198
+ -433 -389 -463 194
+ 197 -625 -713 -426
+ -26 -10 83 -116
+ -95 77 -33 -4
diff --git a/profiles/vertebrates/MA0890.1.pwm b/profiles/vertebrates/MA0890.1.pwm
index e69de29..10e3181 100644
--- a/profiles/vertebrates/MA0890.1.pwm
+++ b/profiles/vertebrates/MA0890.1.pwm
@@ -0,0 +1,10 @@
+ 59 -41 25 -86
+ -86 62 30 -55
+ -326 113 -558 75
+ 190 -359 -267 -478
+ 197 -458 -549 -671
+ -737 -607 -602 199
+ -434 -357 -335 191
+ 195 -595 -662 -335
+ 27 -60 63 -77
+ -34 42 5 -25
diff --git a/profiles/vertebrates/MA0891.1.pwm b/profiles/vertebrates/MA0891.1.pwm
index 13828d9..d5f3642 100644
--- a/profiles/vertebrates/MA0891.1.pwm
+++ b/profiles/vertebrates/MA0891.1.pwm
@@ -1,10 +1,10 @@
- -13 44 -19 -24
- -50 74 -141 32
- -220 -10000 -10000 192
- 177 -276 -340 -155
- 190 -562 -10000 -203
- -10000 -375 -192 187
- -138 160 -189 -170
- -207 140 -86 -80
- -130 41 47 -18
- 1 69 -158 6
+ -13 44 -18 -23
+ -49 72 -135 32
+ -209 -552 -552 190
+ 175 -261 -315 -150
+ 188 -459 -554 -194
+ -556 -341 -184 185
+ -134 159 -182 -165
+ -200 138 -84 -78
+ -125 40 46 -18
+ 1 68 -152 6
diff --git a/profiles/vertebrates/MA0892.1.pwm b/profiles/vertebrates/MA0892.1.pwm
index f83acff..007ad36 100644
--- a/profiles/vertebrates/MA0892.1.pwm
+++ b/profiles/vertebrates/MA0892.1.pwm
@@ -1,10 +1,10 @@
- 16 40 -50 -23
- -85 86 -20 -39
- -145 41 -282 111
- 114 18 -256 -100
- 169 -179 -157 -287
- -191 -210 -682 180
- -172 -172 -10000 176
- 187 -10000 -517 -165
- 60 -25 8 -77
- 24 4 -47 9
+ 16 39 -48 -22
+ -82 84 -19 -37
+ -139 40 -261 109
+ 112 18 -240 -97
+ 167 -170 -150 -267
+ -181 -198 -485 178
+ -164 -164 -531 174
+ 184 -521 -421 -157
+ 58 -24 8 -74
+ 24 4 -45 9
diff --git a/profiles/vertebrates/MA0893.1.pwm b/profiles/vertebrates/MA0893.1.pwm
index 97a276e..551694b 100644
--- a/profiles/vertebrates/MA0893.1.pwm
+++ b/profiles/vertebrates/MA0893.1.pwm
@@ -1,10 +1,10 @@
- 25 5 -19 -16
- -62 71 -9 -37
- -128 56 -243 94
- 111 22 -251 -99
- 175 -263 -214 -199
- -199 -293 -10000 185
- -175 -180 -444 175
- 182 -317 -412 -176
- 89 -53 -9 -95
- 59 -6 -63 -18
+ 25 5 -19 -16
+ -62 71 -9 -37
+ -127 56 -237 94
+ 110 22 -245 -97
+ 174 -256 -210 -195
+ -195 -284 -670 184
+ -172 -177 -419 174
+ 181 -307 -391 -172
+ 88 -53 -9 -93
+ 59 -5 -62 -18
diff --git a/profiles/vertebrates/MA0893.2.pwm b/profiles/vertebrates/MA0893.2.pwm
index e69de29..c2bd674 100644
--- a/profiles/vertebrates/MA0893.2.pwm
+++ b/profiles/vertebrates/MA0893.2.pwm
@@ -0,0 +1,8 @@
+ -82 64 90 -625
+ -204 29 -236 122
+ 110 79 -351 -475
+ 180 -622 -99 -622
+ -607 -321 -607 195
+ -606 -606 -374 196
+ 172 -630 -57 -528
+ 39 -129 78 -83
diff --git a/profiles/vertebrates/MA0894.1.pwm b/profiles/vertebrates/MA0894.1.pwm
index e69de29..19dfa97 100644
--- a/profiles/vertebrates/MA0894.1.pwm
+++ b/profiles/vertebrates/MA0894.1.pwm
@@ -0,0 +1,10 @@
+ -29 -43 77 -44
+ -21 49 -116 36
+ -242 -608 -444 191
+ 195 -604 -393 -449
+ 198 -549 -537 -602
+ -602 -602 -506 198
+ -602 -506 -602 198
+ 84 -430 104 -324
+ 29 -39 72 -141
+ -34 65 -112 24
diff --git a/profiles/vertebrates/MA0895.1.pwm b/profiles/vertebrates/MA0895.1.pwm
index 84cd56a..37e2624 100644
--- a/profiles/vertebrates/MA0895.1.pwm
+++ b/profiles/vertebrates/MA0895.1.pwm
@@ -1,10 +1,10 @@
- 66 54 -67 -161
- -166 83 -105 51
- -222 -380 -247 182
- 158 -10000 -16 -322
- -733 -266 193 -601
- -360 -830 -598 196
- -69 -293 -558 169
- 186 -640 -432 -173
- 100 35 -153 -142
- -61 82 27 -140
+ 65 53 -64 -152
+ -158 81 -101 50
+ -208 -338 -231 179
+ 156 -549 -16 -298
+ -487 -246 190 -453
+ -320 -497 -450 193
+ -67 -272 -449 167
+ 183 -470 -372 -164
+ 99 34 -146 -136
+ -59 80 26 -133
diff --git a/profiles/vertebrates/MA0896.1.pwm b/profiles/vertebrates/MA0896.1.pwm
index e69de29..b25d3fb 100644
--- a/profiles/vertebrates/MA0896.1.pwm
+++ b/profiles/vertebrates/MA0896.1.pwm
@@ -0,0 +1,17 @@
+ 41 20 -5 -83
+ -50 73 10 -83
+ 49 20 5 -126
+ 138 -169 -57 -126
+ -83 -139 144 -153
+ -297 183 -346 -208
+ 170 -346 -92 -297
+ 172 -103 -346 -297
+ -345 -345 -345 190
+ -263 -171 -347 178
+ 184 -345 -296 -231
+ 173 -296 -207 -168
+ 0 -65 -50 73
+ -72 -15 95 -81
+ 57 21 16 -207
+ 36 -84 -7 27
+ -42 -29 -17 63
diff --git a/profiles/vertebrates/MA0897.1.pwm b/profiles/vertebrates/MA0897.1.pwm
index e69de29..e9b7923 100644
--- a/profiles/vertebrates/MA0897.1.pwm
+++ b/profiles/vertebrates/MA0897.1.pwm
@@ -0,0 +1,17 @@
+ 93 -29 -11 -153
+ -36 76 -11 -74
+ 106 -36 -50 -126
+ 152 -171 -94 -171
+ -50 -65 111 -103
+ -296 187 -345 -296
+ 167 -346 -65 -346
+ 167 -83 -297 -297
+ -297 -346 -346 188
+ -262 -171 -347 178
+ 181 -345 -296 -186
+ 173 -297 -261 -139
+ 49 -36 -103 41
+ -1 -24 65 -75
+ 66 10 10 -187
+ 85 -114 0 -42
+ -124 -152 -124 149
diff --git a/profiles/vertebrates/MA0898.1.pwm b/profiles/vertebrates/MA0898.1.pwm
index 6d16d53..0bdeaed 100644
--- a/profiles/vertebrates/MA0898.1.pwm
+++ b/profiles/vertebrates/MA0898.1.pwm
@@ -1,17 +1,17 @@
- 97 -25 -25 -147
- -104 99 1 -93
- 94 -12 -40 -132
- 160 -184 -118 -206
- -72 -131 125 -72
- -364 191 -10000 -264
- 173 -10000 -66 -466
- 180 -106 -10000 -464
- -464 -10000 -10000 199
- -463 -263 -10000 193
- 189 -10000 -363 -231
- 181 -363 -304 -182
- 63 -75 -107 47
- 6 -47 60 -47
- 91 -25 6 -206
- 106 -118 -47 -40
- -94 -132 -94 136
+ 91 -23 -23 -126
+ -91 92 1 -81
+ 88 -11 -36 -114
+ 151 -153 -103 -169
+ -64 -112 117 -64
+ -261 181 -346 -208
+ 164 -347 -59 -299
+ 170 -92 -346 -297
+ -297 -346 -346 188
+ -296 -207 -345 182
+ 179 -345 -260 -186
+ 172 -260 -231 -152
+ 58 -67 -94 43
+ 5 -42 56 -42
+ 85 -23 5 -169
+ 99 -103 -42 -36
+ -83 -114 -83 127
diff --git a/profiles/vertebrates/MA0899.1.pwm b/profiles/vertebrates/MA0899.1.pwm
index 4423d9d..4d2d219 100644
--- a/profiles/vertebrates/MA0899.1.pwm
+++ b/profiles/vertebrates/MA0899.1.pwm
@@ -1,11 +1,11 @@
- 14 -56 51 -34
- -52 -98 127 -137
- -381 85 -519 107
- 117 28 -186 -196
- 177 -243 -177 -320
- -258 -764 -10000 194
- 147 -468 -415 17
- 192 -595 -487 -253
- 183 -205 -423 -283
- 125 -76 -117 -77
- 53 0 -77 -4
+ 14 -55 51 -34
+ -51 -97 126 -136
+ -361 84 -469 106
+ 117 28 -184 -193
+ 176 -237 -174 -308
+ -250 -593 -645 192
+ 146 -431 -389 17
+ 190 -519 -447 -245
+ 182 -200 -398 -274
+ 125 -75 -116 -77
+ 52 0 -76 -3
diff --git a/profiles/vertebrates/MA0900.1.pwm b/profiles/vertebrates/MA0900.1.pwm
index e69de29..812c44b 100644
--- a/profiles/vertebrates/MA0900.1.pwm
+++ b/profiles/vertebrates/MA0900.1.pwm
@@ -0,0 +1,10 @@
+ -3 22 8 -32
+ -51 59 24 -72
+ -150 9 -229 125
+ 124 34 -188 -344
+ 186 -276 -227 -525
+ -654 -654 -623 199
+ -382 -104 -675 178
+ 191 -391 -544 -273
+ -4 34 34 -100
+ -45 75 -14 -56
diff --git a/profiles/vertebrates/MA0900.2.pwm b/profiles/vertebrates/MA0900.2.pwm
index e69de29..1871a89 100644
--- a/profiles/vertebrates/MA0900.2.pwm
+++ b/profiles/vertebrates/MA0900.2.pwm
@@ -0,0 +1,8 @@
+ -68 45 67 -125
+ -798 -204 -798 191
+ 147 27 -536 -790
+ 200 -790 -790 -790
+ -790 -790 -790 200
+ -790 -790 -790 200
+ 194 -795 -281 -795
+ -42 20 64 -88
diff --git a/profiles/vertebrates/MA0901.1.pwm b/profiles/vertebrates/MA0901.1.pwm
index e69de29..2538c52 100644
--- a/profiles/vertebrates/MA0901.1.pwm
+++ b/profiles/vertebrates/MA0901.1.pwm
@@ -0,0 +1,10 @@
+ -170 156 -83 -244
+ -281 161 -501 -38
+ 135 -11 -538 -103
+ 190 -437 -384 -267
+ -563 -506 -563 197
+ 181 -446 -431 -133
+ 197 -564 -564 -451
+ 193 -301 -558 -450
+ 152 -79 -242 -144
+ 50 54 -178 -24
diff --git a/profiles/vertebrates/MA0901.2.pwm b/profiles/vertebrates/MA0901.2.pwm
index e69de29..7e9e224 100644
--- a/profiles/vertebrates/MA0901.2.pwm
+++ b/profiles/vertebrates/MA0901.2.pwm
@@ -0,0 +1,14 @@
+ 67 -85 -59 25
+ 47 -57 -37 23
+ -72 127 -111 -96
+ -221 173 -492 -119
+ 175 -208 -555 -141
+ 189 -463 -332 -267
+ -533 -499 -491 197
+ 190 -506 -410 -247
+ 195 -488 -514 -354
+ 195 -457 -483 -390
+ 183 -296 -334 -223
+ 22 -66 -141 87
+ 41 -58 -74 49
+ 35 -55 -69 51
diff --git a/profiles/vertebrates/MA0902.1.pwm b/profiles/vertebrates/MA0902.1.pwm
index e69de29..545184e 100644
--- a/profiles/vertebrates/MA0902.1.pwm
+++ b/profiles/vertebrates/MA0902.1.pwm
@@ -0,0 +1,10 @@
+ 17 -15 10 -15
+ -22 19 38 -53
+ -94 0 -237 119
+ 119 27 -137 -309
+ 186 -315 -222 -419
+ -632 -632 -632 199
+ -206 -139 -478 174
+ 187 -320 -506 -223
+ 37 -35 32 -58
+ -6 36 -8 -30
diff --git a/profiles/vertebrates/MA0902.2.pwm b/profiles/vertebrates/MA0902.2.pwm
index 116d180..d4163aa 100644
--- a/profiles/vertebrates/MA0902.2.pwm
+++ b/profiles/vertebrates/MA0902.2.pwm
@@ -1,8 +1,8 @@
- -108 26 78 -69
- -508 72 -10000 122
- 141 35 -369 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -21 165
- 200 -10000 -10000 -10000
- -42 25 78 -153
+ -106 25 77 -68
+ -458 71 -633 121
+ 140 34 -356 -691
+ 199 -632 -632 -632
+ -632 -632 -632 199
+ -667 -667 -21 164
+ 199 -632 -632 -632
+ -42 25 77 -150
diff --git a/profiles/vertebrates/MA0903.1.pwm b/profiles/vertebrates/MA0903.1.pwm
index 711b297..e0c6255 100644
--- a/profiles/vertebrates/MA0903.1.pwm
+++ b/profiles/vertebrates/MA0903.1.pwm
@@ -1,10 +1,10 @@
- 48 -35 -3 -24
- -34 36 31 -56
- -113 39 -266 106
- 111 50 -211 -237
- 185 -272 -248 -389
- -10000 -444 -10000 198
- -301 -208 -10000 186
- 192 -484 -10000 -257
- 49 -61 55 -110
- -1 31 -11 -24
+ 48 -35 -3 -24
+ -33 36 31 -55
+ -112 38 -260 105
+ 110 50 -207 -232
+ 184 -265 -243 -373
+ -682 -420 -682 197
+ -293 -204 -694 185
+ 192 -453 -687 -251
+ 49 -60 55 -108
+ -1 31 -11 -24
diff --git a/profiles/vertebrates/MA0904.1.pwm b/profiles/vertebrates/MA0904.1.pwm
index 35aba5e..a01c54f 100644
--- a/profiles/vertebrates/MA0904.1.pwm
+++ b/profiles/vertebrates/MA0904.1.pwm
@@ -1,16 +1,16 @@
- 106 -12 -84 -118
- 11 49 -40 -40
- -57 -149 136 -134
- -106 -74 60 49
- -464 -184 -10000 188
- 186 -146 -10000 -10000
- 197 -464 -10000 -464
- -464 -10000 -464 197
- -10000 -10000 -146 186
- 188 -10000 -184 -464
- -40 21 71 -118
- -134 136 -149 -57
- 18 1 -131 54
- 16 82 -118 -56
- 143 -234 -85 -85
- -18 -64 -84 94
+ 99 -11 -74 -103
+ 10 45 -36 -36
+ -51 -127 128 -115
+ -92 -65 56 45
+ -297 -153 -346 178
+ 176 -124 -345 -345
+ 187 -297 -346 -297
+ -297 -346 -297 187
+ -345 -345 -124 176
+ 178 -346 -153 -297
+ -36 20 66 -103
+ -115 128 -127 -51
+ 16 1 -112 50
+ 15 76 -103 -50
+ 135 -189 -75 -75
+ -17 -57 -74 88
diff --git a/profiles/vertebrates/MA0904.2.pwm b/profiles/vertebrates/MA0904.2.pwm
index e69de29..6c89516 100644
--- a/profiles/vertebrates/MA0904.2.pwm
+++ b/profiles/vertebrates/MA0904.2.pwm
@@ -0,0 +1,8 @@
+ -98 54 72 -134
+ -596 -73 -596 175
+ 157 1 -614 -614
+ 198 -573 -573 -573
+ -573 -573 -573 198
+ -567 -469 3 155
+ 174 -597 -67 -597
+ -155 66 57 -75
diff --git a/profiles/vertebrates/MA0905.1.pwm b/profiles/vertebrates/MA0905.1.pwm
index e69de29..3a367bd 100644
--- a/profiles/vertebrates/MA0905.1.pwm
+++ b/profiles/vertebrates/MA0905.1.pwm
@@ -0,0 +1,10 @@
+ 5 -46 115 -556
+ -440 -176 -580 186
+ -150 178 -507 -248
+ 84 -608 112 -522
+ -426 -569 -569 197
+ 141 -529 -536 37
+ 193 -548 -534 -284
+ 183 -330 -315 -216
+ 125 -126 -131 -32
+ 29 -24 -80 44
diff --git a/profiles/vertebrates/MA0906.1.pwm b/profiles/vertebrates/MA0906.1.pwm
index e69de29..58c8596 100644
--- a/profiles/vertebrates/MA0906.1.pwm
+++ b/profiles/vertebrates/MA0906.1.pwm
@@ -0,0 +1,11 @@
+ 43 -198 100 -133
+ -31 -113 145 -644
+ -530 -371 -585 196
+ -245 186 -534 -272
+ -159 -595 186 -611
+ -599 -583 -591 198
+ 181 -531 -580 -111
+ 197 -600 -584 -470
+ 197 -519 -600 -458
+ 158 -115 -234 -144
+ 42 8 -149 32
diff --git a/profiles/vertebrates/MA0907.1.pwm b/profiles/vertebrates/MA0907.1.pwm
index e69de29..ea353c7 100644
--- a/profiles/vertebrates/MA0907.1.pwm
+++ b/profiles/vertebrates/MA0907.1.pwm
@@ -0,0 +1,11 @@
+ -89 -12 64 -2
+ -273 185 -239 -398
+ -464 -345 -454 194
+ -337 179 -425 -137
+ -58 -487 171 -487
+ -513 -513 -451 196
+ 179 -516 -502 -107
+ 195 -463 -486 -424
+ 197 -513 -513 -498
+ 152 -127 -216 -104
+ 30 18 -105 20
diff --git a/profiles/vertebrates/MA0908.1.pwm b/profiles/vertebrates/MA0908.1.pwm
index e69de29..b1e5188 100644
--- a/profiles/vertebrates/MA0908.1.pwm
+++ b/profiles/vertebrates/MA0908.1.pwm
@@ -0,0 +1,10 @@
+ 30 -88 113 -469
+ -390 -390 -390 193
+ -183 171 -411 -140
+ -12 -425 157 -425
+ -239 -394 -394 188
+ 153 -390 -390 -4
+ 191 -391 -391 -313
+ 186 -298 -396 -253
+ 132 -150 -154 -32
+ 57 -17 -119 24
diff --git a/profiles/vertebrates/MA0909.1.pwm b/profiles/vertebrates/MA0909.1.pwm
index e69de29..a5b7dd9 100644
--- a/profiles/vertebrates/MA0909.1.pwm
+++ b/profiles/vertebrates/MA0909.1.pwm
@@ -0,0 +1,10 @@
+ -229 132 11 -217
+ -326 116 -404 67
+ 126 29 -535 -152
+ 185 -476 -250 -242
+ -466 -447 -466 195
+ 175 -486 -486 -82
+ 194 -416 -467 -403
+ 195 -447 -466 -466
+ 166 -142 -242 -180
+ 48 26 -116 -6
diff --git a/profiles/vertebrates/MA0909.2.pwm b/profiles/vertebrates/MA0909.2.pwm
index e69de29..c0d9ffd 100644
--- a/profiles/vertebrates/MA0909.2.pwm
+++ b/profiles/vertebrates/MA0909.2.pwm
@@ -0,0 +1,11 @@
+ -95 94 46 -249
+ -148 93 77 -521
+ -420 194 -420 -420
+ 150 14 -464 -464
+ 192 -422 -326 -422
+ -313 -422 -422 192
+ 194 -420 -420 -420
+ 190 -424 -254 -424
+ 169 -56 -445 -445
+ 120 64 -315 -494
+ -58 166 -355 -374
diff --git a/profiles/vertebrates/MA0909.3.pwm b/profiles/vertebrates/MA0909.3.pwm
index e69de29..628dcbd 100644
--- a/profiles/vertebrates/MA0909.3.pwm
+++ b/profiles/vertebrates/MA0909.3.pwm
@@ -0,0 +1,10 @@
+ 23 -17 -4 -5
+ -12 25 20 -42
+ -542 196 -483 -424
+ 194 -596 -318 -447
+ 197 -555 -564 -494
+ -629 -615 -608 198
+ 198 -602 -585 -564
+ 197 -475 -615 -546
+ 149 -107 -193 -114
+ 72 -43 -43 -21
diff --git a/profiles/vertebrates/MA0910.1.pwm b/profiles/vertebrates/MA0910.1.pwm
index 3133ca2..5712fdd 100644
--- a/profiles/vertebrates/MA0910.1.pwm
+++ b/profiles/vertebrates/MA0910.1.pwm
@@ -1,17 +1,17 @@
- -94 -106 -32 114
- 128 -104 -117 -63
- 128 -163 -31 -117
- 40 -232 21 40
- -184 -12 -464 146
- 154 -104 -304 -104
- 188 -364 -364 -264
- -264 -464 -464 191
- -232 -464 -10000 191
- 194 -10000 -463 -304
- 167 -231 -363 -93
- -184 -147 -232 166
- 49 -264 91 -84
- -6 -184 116 -94
- -41 99 -166 -7
- -41 -149 -85 122
- 53 -25 -47 0
+ -83 -92 -29 106
+ 120 -91 -101 -56
+ 120 -138 -28 -101
+ 37 -187 20 37
+ -153 -11 -297 138
+ 145 -91 -231 -91
+ 178 -261 -261 -208
+ -208 -297 -297 181
+ -187 -297 -346 181
+ 184 -345 -296 -231
+ 158 -186 -260 -81
+ -153 -126 -187 157
+ 45 -208 85 -74
+ -5 -153 109 -83
+ -37 92 -140 -7
+ -37 -127 -75 115
+ 49 -23 -42 0
diff --git a/profiles/vertebrates/MA0910.2.pwm b/profiles/vertebrates/MA0910.2.pwm
index e69de29..4136599 100644
--- a/profiles/vertebrates/MA0910.2.pwm
+++ b/profiles/vertebrates/MA0910.2.pwm
@@ -0,0 +1,8 @@
+ -74 -113 132 -115
+ -585 123 -585 70
+ 111 84 -474 -672
+ 198 -585 -585 -585
+ -585 -585 -585 198
+ -250 -610 -107 174
+ 198 -585 -585 -585
+ 5 88 -70 -98
diff --git a/profiles/vertebrates/MA0911.1.pwm b/profiles/vertebrates/MA0911.1.pwm
index e69de29..1c615d8 100644
--- a/profiles/vertebrates/MA0911.1.pwm
+++ b/profiles/vertebrates/MA0911.1.pwm
@@ -0,0 +1,12 @@
+ 2 -67 78 -63
+ -9 -30 114 -498
+ -457 -247 -307 187
+ -242 183 -479 -221
+ 5 -475 152 -413
+ -315 -451 -420 192
+ 141 -420 -321 25
+ 189 -473 -438 -233
+ 183 -255 -430 -209
+ 124 -86 -128 -56
+ 2 -10 -22 25
+ -33 -64 -62 93
diff --git a/profiles/vertebrates/MA0912.1.pwm b/profiles/vertebrates/MA0912.1.pwm
index e69de29..91a8fee 100644
--- a/profiles/vertebrates/MA0912.1.pwm
+++ b/profiles/vertebrates/MA0912.1.pwm
@@ -0,0 +1,16 @@
+ -36 52 -187 59
+ -36 -139 -139 130
+ -74 -114 118 -57
+ 51 -115 36 -24
+ -7 -127 74 -7
+ -74 -5 20 37
+ -296 -72 -345 167
+ 172 -91 -345 -345
+ 187 -297 -346 -297
+ -297 -346 -297 187
+ -345 -345 -91 172
+ 167 -345 -72 -296
+ 54 54 -72 -101
+ -7 74 -127 -7
+ -94 51 27 -24
+ -126 -17 -23 88
diff --git a/profiles/vertebrates/MA0912.2.pwm b/profiles/vertebrates/MA0912.2.pwm
index 961031f..6b8d67d 100644
--- a/profiles/vertebrates/MA0912.2.pwm
+++ b/profiles/vertebrates/MA0912.2.pwm
@@ -1,8 +1,8 @@
- -383 157 -224 -41
- -10000 -528 -10000 199
- 193 -237 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -9 162
- 180 -10000 -93 -10000
- -235 130 -19 -112
+ -368 156 -220 -41
+ -689 -488 -689 198
+ 192 -232 -695 -695
+ 199 -688 -688 -688
+ -688 -688 -688 199
+ -726 -726 -9 161
+ 179 -708 -92 -708
+ -230 130 -19 -111
diff --git a/profiles/vertebrates/MA0913.1.pwm b/profiles/vertebrates/MA0913.1.pwm
index e69de29..090eca9 100644
--- a/profiles/vertebrates/MA0913.1.pwm
+++ b/profiles/vertebrates/MA0913.1.pwm
@@ -0,0 +1,10 @@
+ -10 -81 123 -269
+ -221 110 -302 60
+ 129 0 -101 -430
+ 167 -335 -82 -277
+ -179 -242 -242 174
+ 95 -291 -370 89
+ 179 -323 -380 -144
+ 182 -234 -377 -234
+ 131 -141 -86 -74
+ 72 -72 -119 39
diff --git a/profiles/vertebrates/MA0913.2.pwm b/profiles/vertebrates/MA0913.2.pwm
index 1b5e0b1..2f96baf 100644
--- a/profiles/vertebrates/MA0913.2.pwm
+++ b/profiles/vertebrates/MA0913.2.pwm
@@ -1,10 +1,10 @@
- -188 -246 177 -287
- -10000 125 -661 68
- 130 38 -330 -284
- 194 -424 -328 -1006
- -427 -10000 -10000 198
- 159 -941 -10000 0
- 199 -10000 -10000 -507
- 200 -10000 -10000 -10000
- 157 -132 -218 -132
- 2 50 -92 5
+ -186 -241 176 -281
+ -691 125 -576 68
+ 129 38 -324 -280
+ 193 -404 -318 -681
+ -407 -693 -693 197
+ 158 -702 -732 0
+ 198 -692 -692 -472
+ 199 -691 -691 -691
+ 157 -131 -214 -131
+ 2 50 -90 5
diff --git a/profiles/vertebrates/MA0914.1.pwm b/profiles/vertebrates/MA0914.1.pwm
index e69de29..67b8d6a 100644
--- a/profiles/vertebrates/MA0914.1.pwm
+++ b/profiles/vertebrates/MA0914.1.pwm
@@ -0,0 +1,8 @@
+ -78 -6 104 -129
+ -327 169 -356 -75
+ 185 -309 -332 -253
+ 43 126 -361 -249
+ -270 -335 -303 186
+ -248 -118 -556 175
+ 162 -301 -449 -41
+ 95 -122 16 -94
diff --git a/profiles/vertebrates/MA1099.1.pwm b/profiles/vertebrates/MA1099.1.pwm
index 5a7c2b3..71b5d98 100644
--- a/profiles/vertebrates/MA1099.1.pwm
+++ b/profiles/vertebrates/MA1099.1.pwm
@@ -1,10 +1,10 @@
- -42 5 59 -49
- -26 26 66 -138
- -264 181 -416 -182
- 157 -292 -82 -161
- -311 174 -216 -161
- -60 -261 162 -327
- -111 91 -190 48
- -211 -115 140 -57
- -15 27 -73 36
- -20 62 -33 -32
+ -40 4 58 -47
+ -25 25 65 -131
+ -243 178 -356 -171
+ 154 -266 -79 -152
+ -280 171 -201 -152
+ -58 -240 159 -293
+ -106 89 -179 46
+ -197 -109 137 -55
+ -14 26 -70 35
+ -20 61 -32 -31
diff --git a/profiles/vertebrates/MA1099.2.pwm b/profiles/vertebrates/MA1099.2.pwm
index e69de29..f63f955 100644
--- a/profiles/vertebrates/MA1099.2.pwm
+++ b/profiles/vertebrates/MA1099.2.pwm
@@ -0,0 +1,10 @@
+ -115 -107 132 -80
+ -55 -204 110 -11
+ -326 195 -700 -643
+ 100 -698 95 -413
+ -702 193 -702 -255
+ -632 -696 199 -696
+ -431 -49 -726 169
+ -693 -697 199 -569
+ -200 42 45 6
+ -115 103 -3 -92
diff --git a/profiles/vertebrates/MA1100.1.pwm b/profiles/vertebrates/MA1100.1.pwm
index 53505d5..0941a70 100644
--- a/profiles/vertebrates/MA1100.1.pwm
+++ b/profiles/vertebrates/MA1100.1.pwm
@@ -1,13 +1,13 @@
- -22 4 56 -66
- -42 67 20 -97
- 131 -135 -48 -127
- -306 -334 191 -603
- -598 197 -450 -608
- 195 -485 -455 -420
- -639 -265 193 -520
- -342 185 -175 -639
- -500 -468 -461 196
- -661 -620 199 -626
- -240 31 100 -82
- -26 30 -4 -6
- -20 1 49 -47
+ -22 4 56 -65
+ -42 67 20 -96
+ 130 -132 -48 -124
+ -294 -319 190 -522
+ -519 196 -417 -525
+ 194 -444 -422 -393
+ -541 -257 191 -469
+ -326 183 -171 -541
+ -455 -431 -426 195
+ -552 -531 197 -534
+ -233 31 99 -80
+ -25 29 -4 -6
+ -20 1 49 -47
diff --git a/profiles/vertebrates/MA1100.2.pwm b/profiles/vertebrates/MA1100.2.pwm
index f4a2a88..8992c0e 100644
--- a/profiles/vertebrates/MA1100.2.pwm
+++ b/profiles/vertebrates/MA1100.2.pwm
@@ -1,10 +1,10 @@
- 20 -25 44 -60
- 1 -134 122 -190
- -10000 200 -10000 -630
- 186 -295 -434 -247
- -391 -32 146 -136
- -115 145 -30 -634
- -331 -561 -327 192
- -443 -10000 197 -528
- -293 118 -73 0
- -39 43 -31 11
+ 20 -25 43 -59
+ 1 -131 121 -185
+ -598 198 -598 -514
+ 185 -281 -398 -238
+ -370 -32 145 -134
+ -113 144 -29 -544
+ -313 -483 -310 190
+ -403 -600 196 -461
+ -281 117 -72 0
+ -38 42 -31 11
diff --git a/profiles/vertebrates/MA1101.1.pwm b/profiles/vertebrates/MA1101.1.pwm
index e69de29..7b8a421 100644
--- a/profiles/vertebrates/MA1101.1.pwm
+++ b/profiles/vertebrates/MA1101.1.pwm
@@ -0,0 +1,14 @@
+ -38 5 52 -39
+ 83 13 -16 -211
+ -447 -402 -454 194
+ -388 -428 189 -255
+ 193 -402 -423 -397
+ -253 158 -68 -226
+ -200 -423 -357 185
+ -275 190 -428 -393
+ 191 -434 -353 -334
+ -312 -304 177 -148
+ -243 180 -232 -299
+ 147 -150 -141 -101
+ 11 -22 8 1
+ 16 -35 -67 56
diff --git a/profiles/vertebrates/MA1101.2.pwm b/profiles/vertebrates/MA1101.2.pwm
index 7c4ce5d..d22002a 100644
--- a/profiles/vertebrates/MA1101.2.pwm
+++ b/profiles/vertebrates/MA1101.2.pwm
@@ -1,19 +1,19 @@
- 65 -48 -31 -13
- 92 -120 -108 27
- 142 -200 -139 -53
- -46 31 32 -35
- -119 152 -167 -140
- 168 -624 -36 -10000
- -1406 -1125 -1406 200
- -1147 -10000 200 -830
- 198 -399 -1037 -1149
- -842 113 85 -989
- -1249 -975 -433 198
- -721 200 -10000 -1248
- 200 -1306 -1060 -10000
- -869 -74 -326 172
- -206 90 69 -184
- 20 5 17 -53
- -35 -81 -162 122
- 21 -93 -131 94
- -16 -13 -60 61
+ 65 -48 -31 -13
+ 91 -120 -107 27
+ 142 -199 -138 -52
+ -46 31 32 -35
+ -119 152 -166 -139
+ 168 -591 -36 -817
+ -795 -783 -795 200
+ -785 -797 199 -713
+ 197 -390 -773 -786
+ -718 113 85 -763
+ -792 -761 -422 198
+ -655 199 -797 -791
+ 200 -793 -776 -797
+ -740 -73 -321 172
+ -205 90 69 -183
+ 20 5 17 -53
+ -35 -81 -161 121
+ 21 -92 -130 93
+ -16 -13 -60 61
diff --git a/profiles/vertebrates/MA1102.1.pwm b/profiles/vertebrates/MA1102.1.pwm
index 883e996..0249a36 100644
--- a/profiles/vertebrates/MA1102.1.pwm
+++ b/profiles/vertebrates/MA1102.1.pwm
@@ -1,14 +1,14 @@
- -182 165 -136 -238
- 60 -57 19 -58
- -128 108 39 -258
- -214 160 -204 -102
- 193 -373 -386 -470
- -486 -457 196 -520
- -196 -393 186 -484
- -305 -276 181 -209
- -416 -362 194 -486
- -412 -402 193 -360
- -424 197 -590 -558
- 87 -160 75 -257
- -163 77 64 -131
- -73 62 -29 6
+ -178 164 -134 -232
+ 59 -56 19 -57
+ -126 107 39 -251
+ -209 159 -200 -100
+ 192 -356 -367 -436
+ -449 -426 195 -474
+ -191 -373 185 -447
+ -295 -268 180 -204
+ -393 -346 193 -449
+ -389 -381 191 -344
+ -399 196 -520 -500
+ 86 -157 74 -250
+ -160 77 64 -129
+ -72 62 -28 6
diff --git a/profiles/vertebrates/MA1102.2.pwm b/profiles/vertebrates/MA1102.2.pwm
index e69de29..62b00fe 100644
--- a/profiles/vertebrates/MA1102.2.pwm
+++ b/profiles/vertebrates/MA1102.2.pwm
@@ -0,0 +1,12 @@
+ 37 -11 10 -50
+ -75 64 65 -182
+ -177 151 -114 -128
+ 193 -335 -365 -628
+ -525 -314 193 -438
+ -266 -284 186 -404
+ -357 -195 177 -197
+ -433 -250 189 -396
+ -356 -390 191 -334
+ -440 196 -548 -431
+ -11 -58 104 -151
+ -133 77 49 -103
diff --git a/profiles/vertebrates/MA1103.1.pwm b/profiles/vertebrates/MA1103.1.pwm
index c9596bb..75f9dff 100644
--- a/profiles/vertebrates/MA1103.1.pwm
+++ b/profiles/vertebrates/MA1103.1.pwm
@@ -1,11 +1,11 @@
- 75 -56 -35 -22
- 3 -60 -36 63
- -14 -243 144 -237
- -410 -523 -383 194
- 195 -407 -501 -492
- 182 -232 -414 -221
- 195 -473 -513 -376
- -445 180 -466 -124
- 195 -490 -414 -409
- 29 -9 -17 -7
- 15 -8 43 -74
+ 74 -55 -34 -22
+ 3 -59 -36 62
+ -13 -237 143 -230
+ -387 -474 -363 193
+ 194 -383 -458 -451
+ 181 -226 -390 -215
+ 194 -437 -467 -357
+ -415 179 -431 -122
+ 193 -450 -390 -386
+ 28 -9 -17 -7
+ 15 -8 42 -73
diff --git a/profiles/vertebrates/MA1103.2.pwm b/profiles/vertebrates/MA1103.2.pwm
index 0767845..e06b54f 100644
--- a/profiles/vertebrates/MA1103.2.pwm
+++ b/profiles/vertebrates/MA1103.2.pwm
@@ -1,11 +1,11 @@
- 65 -54 -26 -14
- 22 -92 -28 57
- -63 -292 161 -259
- -353 -431 -367 192
- 193 -391 -482 -361
- 179 -169 -326 -288
- 190 -366 -341 -351
- -306 178 -329 -150
- 191 -382 -462 -305
- 21 -11 -8 -5
- 22 -14 27 -46
+ 65 -53 -26 -14
+ 22 -91 -28 57
+ -62 -285 160 -253
+ -342 -412 -355 191
+ 192 -376 -454 -349
+ 178 -167 -317 -281
+ 189 -354 -331 -340
+ -298 177 -320 -148
+ 191 -368 -438 -297
+ 21 -10 -8 -5
+ 22 -14 26 -46
diff --git a/profiles/vertebrates/MA1104.1.pwm b/profiles/vertebrates/MA1104.1.pwm
index 462d74c..7a292c4 100644
--- a/profiles/vertebrates/MA1104.1.pwm
+++ b/profiles/vertebrates/MA1104.1.pwm
@@ -1,13 +1,13 @@
- 20 -26 -13 14
- 39 -65 -2 9
- 15 10 15 -50
- 179 -435 -440 -114
- -447 -551 197 -649
- 197 -526 -492 -523
- -383 -507 -415 194
- 191 -465 -451 -270
- 194 -588 -376 -369
- -229 -138 173 -347
- 143 -132 -39 -277
- 44 -59 -6 3
- 58 -47 -30 -4
+ 19 -26 -13 14
+ 38 -64 -2 9
+ 15 10 15 -49
+ 178 -416 -420 -113
+ -427 -511 196 -577
+ 196 -491 -464 -489
+ -370 -476 -399 193
+ 190 -442 -430 -265
+ 193 -538 -363 -357
+ -225 -137 172 -337
+ 142 -130 -39 -271
+ 44 -58 -6 3
+ 57 -46 -29 -4
diff --git a/profiles/vertebrates/MA1104.2.pwm b/profiles/vertebrates/MA1104.2.pwm
index e69de29..52997a1 100644
--- a/profiles/vertebrates/MA1104.2.pwm
+++ b/profiles/vertebrates/MA1104.2.pwm
@@ -0,0 +1,13 @@
+ 17 -29 -56 47
+ 7 -49 -74 71
+ 83 -57 -93 3
+ -174 -74 -148 146
+ -211 166 -161 -184
+ -292 -372 -494 191
+ -196 -377 -486 186
+ 195 -449 -449 -406
+ -366 -443 -524 194
+ -409 193 -467 -349
+ -59 -260 -341 162
+ -7 -6 -13 23
+ 16 -14 -77 48
diff --git a/profiles/vertebrates/MA1105.1.pwm b/profiles/vertebrates/MA1105.1.pwm
index e69de29..a515013 100644
--- a/profiles/vertebrates/MA1105.1.pwm
+++ b/profiles/vertebrates/MA1105.1.pwm
@@ -0,0 +1,15 @@
+ -15 -67 86 -61
+ 24 12 -58 9
+ 29 69 -74 -80
+ 141 -119 -137 -97
+ 183 -398 -219 -256
+ 187 -406 -276 -276
+ -457 195 -413 -462
+ -192 178 -332 -230
+ 154 -323 -147 -68
+ -506 -372 194 -447
+ -271 -254 -374 185
+ -229 -173 -342 177
+ -51 8 -81 74
+ -20 -32 -4 44
+ 1 -47 13 23
diff --git a/profiles/vertebrates/MA1105.2.pwm b/profiles/vertebrates/MA1105.2.pwm
index 4a3b28c..d962f16 100644
--- a/profiles/vertebrates/MA1105.2.pwm
+++ b/profiles/vertebrates/MA1105.2.pwm
@@ -1,12 +1,12 @@
- 47 -10 -19 -30
- 77 -58 4 -74
- 180 -319 -198 -269
- 182 -388 -188 -305
- -438 195 -410 -503
- 170 -276 -443 -85
- -189 -417 183 -307
- -403 -341 192 -407
- -248 -217 -381 182
- -258 -239 -310 182
- -57 -16 -40 74
- -24 -30 1 41
+ 47 -10 -19 -30
+ 77 -58 4 -74
+ 180 -313 -196 -266
+ 182 -379 -186 -300
+ -425 194 -399 -483
+ 170 -272 -429 -84
+ -187 -406 183 -302
+ -392 -334 192 -396
+ -245 -214 -372 181
+ -254 -236 -305 181
+ -56 -16 -39 74
+ -24 -29 1 41
diff --git a/profiles/vertebrates/MA1106.1.pwm b/profiles/vertebrates/MA1106.1.pwm
index e69de29..145967f 100644
--- a/profiles/vertebrates/MA1106.1.pwm
+++ b/profiles/vertebrates/MA1106.1.pwm
@@ -0,0 +1,10 @@
+ -30 -9 74 -77
+ -116 14 10 47
+ 196 -501 -469 -469
+ -501 196 -501 -484
+ -484 -501 196 -501
+ -469 -263 -375 190
+ -146 -237 175 -375
+ -140 174 -318 -256
+ -24 24 7 -11
+ -56 35 14 -9
diff --git a/profiles/vertebrates/MA1107.1.pwm b/profiles/vertebrates/MA1107.1.pwm
index e69de29..7386c61 100644
--- a/profiles/vertebrates/MA1107.1.pwm
+++ b/profiles/vertebrates/MA1107.1.pwm
@@ -0,0 +1,13 @@
+ 29 -29 39 -62
+ -59 1 98 -147
+ -21 142 -197 -232
+ -508 196 -465 -484
+ 189 -247 -400 -453
+ -508 195 -390 -496
+ 167 -341 -66 -341
+ -460 193 -335 -424
+ -161 181 -365 -377
+ -430 193 -434 -337
+ 128 -7 -204 -142
+ -157 118 -54 -50
+ -25 61 -72 4
diff --git a/profiles/vertebrates/MA1107.2.pwm b/profiles/vertebrates/MA1107.2.pwm
index 43c7ed0..44ab2f9 100644
--- a/profiles/vertebrates/MA1107.2.pwm
+++ b/profiles/vertebrates/MA1107.2.pwm
@@ -1,16 +1,16 @@
- -25 70 -30 -47
- 33 -32 28 -45
- -116 -56 140 -207
- -46 148 -195 -218
- -448 195 -446 -445
- 178 -132 -318 -395
- -485 196 -418 -549
- 159 -258 -56 -270
- -484 193 -312 -465
- -140 179 -340 -390
- -545 195 -496 -355
- 156 -56 -291 -204
- -301 169 -185 -144
- 12 46 -96 3
- -64 72 -53 3
- -12 57 -17 -51
+ -25 70 -30 -47
+ 32 -32 28 -45
+ -115 -55 139 -204
+ -45 147 -192 -214
+ -430 194 -428 -428
+ 177 -131 -310 -383
+ -462 195 -403 -514
+ 158 -254 -55 -265
+ -461 192 -305 -445
+ -138 178 -332 -378
+ -511 194 -472 -346
+ 155 -56 -285 -202
+ -295 168 -182 -142
+ 12 46 -95 3
+ -63 71 -53 3
+ -12 57 -17 -50
diff --git a/profiles/vertebrates/MA1108.1.pwm b/profiles/vertebrates/MA1108.1.pwm
index be9fd27..8ccd39f 100644
--- a/profiles/vertebrates/MA1108.1.pwm
+++ b/profiles/vertebrates/MA1108.1.pwm
@@ -1,13 +1,13 @@
- -36 38 32 -57
- -18 28 39 -76
- 58 -16 6 -82
- -129 152 -93 -235
- -402 194 -410 -481
- 193 -427 -325 -510
- -585 192 -436 -269
- -366 -400 195 -785
- -553 -307 -485 194
- -553 -336 194 -443
- -145 94 26 -94
- -46 32 16 -14
- -81 52 20 -24
+ -36 38 31 -56
+ -18 27 39 -74
+ 57 -16 6 -80
+ -126 151 -91 -226
+ -370 193 -377 -429
+ 191 -390 -307 -448
+ -491 190 -397 -257
+ -342 -368 193 -561
+ -474 -291 -432 192
+ -474 -316 192 -401
+ -141 93 26 -92
+ -46 32 16 -14
+ -79 52 19 -24
diff --git a/profiles/vertebrates/MA1108.2.pwm b/profiles/vertebrates/MA1108.2.pwm
index e69de29..486c04b 100644
--- a/profiles/vertebrates/MA1108.2.pwm
+++ b/profiles/vertebrates/MA1108.2.pwm
@@ -0,0 +1,10 @@
+ 7 -22 20 -8
+ 16 8 14 -48
+ -525 195 -537 -348
+ 198 -719 -474 -697
+ -688 196 -665 -346
+ 189 -722 -181 -722
+ -722 -335 -722 196
+ -330 -520 194 -471
+ -95 -5 39 27
+ -16 20 -3 -4
diff --git a/profiles/vertebrates/MA1109.1.pwm b/profiles/vertebrates/MA1109.1.pwm
index e69de29..970c347 100644
--- a/profiles/vertebrates/MA1109.1.pwm
+++ b/profiles/vertebrates/MA1109.1.pwm
@@ -0,0 +1,13 @@
+ -2 -40 34 -1
+ 40 -80 66 -91
+ 116 -33 -20 -330
+ -433 195 -455 -460
+ 195 -494 -438 -428
+ -438 -402 189 -251
+ 181 -185 -271 -414
+ -312 -321 -423 190
+ -455 -494 195 -376
+ -304 -247 176 -169
+ -60 66 -44 2
+ 27 -8 7 -33
+ -8 5 14 -12
diff --git a/profiles/vertebrates/MA1110.1.pwm b/profiles/vertebrates/MA1110.1.pwm
index f3a2289..00b7be9 100644
--- a/profiles/vertebrates/MA1110.1.pwm
+++ b/profiles/vertebrates/MA1110.1.pwm
@@ -1,11 +1,11 @@
- -73 -61 -11 86
- -89 93 -54 -20
- 187 -366 -340 -252
- 171 -217 -181 -217
- -540 -307 -440 193
- -240 -417 187 -340
- 185 -252 -317 -317
- -228 189 -10000 -352
- -340 191 -440 -352
- -81 10 -64 78
- 10 5 -27 9
+ -69 -57 -10 83
+ -84 90 -51 -19
+ 182 -308 -290 -226
+ 167 -197 -166 -197
+ -394 -268 -350 188
+ -215 -339 183 -290
+ 180 -226 -275 -275
+ -206 184 -455 -299
+ -290 187 -350 -299
+ -76 9 -61 76
+ 9 5 -25 8
diff --git a/profiles/vertebrates/MA1110.2.pwm b/profiles/vertebrates/MA1110.2.pwm
index 27f6178..c82a793 100644
--- a/profiles/vertebrates/MA1110.2.pwm
+++ b/profiles/vertebrates/MA1110.2.pwm
@@ -1,10 +1,10 @@
- 3 9 7 -21
- -4 5 52 -85
- 196 -383 -459 -740
- -651 -298 194 -526
- -526 -821 198 -530
- -1021 -10000 -10000 200
- -286 188 -689 -248
- 195 -535 -333 -10000
- -43 19 27 -13
- -27 -10 4 28
+ 3 9 6 -20
+ -4 5 52 -84
+ 194 -358 -418 -563
+ -531 -284 192 -464
+ -464 -582 196 -467
+ -604 -613 -613 198
+ -274 186 -546 -239
+ 194 -470 -315 -613
+ -42 19 27 -13
+ -26 -10 4 27
diff --git a/profiles/vertebrates/MA1111.1.pwm b/profiles/vertebrates/MA1111.1.pwm
index e69de29..76559d7 100644
--- a/profiles/vertebrates/MA1111.1.pwm
+++ b/profiles/vertebrates/MA1111.1.pwm
@@ -0,0 +1,11 @@
+ -17 32 -39 13
+ 88 -27 -76 -45
+ 168 -353 -161 -137
+ 190 -440 -259 -402
+ -353 -434 191 -336
+ -365 -457 193 -386
+ -429 -406 -375 193
+ -375 182 -390 -163
+ 192 -434 -336 -362
+ 20 -13 -2 -7
+ 61 -51 5 -45
diff --git a/profiles/vertebrates/MA1112.1.pwm b/profiles/vertebrates/MA1112.1.pwm
index 35e07cf..7489769 100644
--- a/profiles/vertebrates/MA1112.1.pwm
+++ b/profiles/vertebrates/MA1112.1.pwm
@@ -1,10 +1,10 @@
- 23 -27 -23 19
- 144 -225 -75 -105
- 197 -745 -486 -451
- 196 -368 -713 -523
- -657 -347 193 -370
- -595 -695 199 -703
- -695 -623 -664 199
- -554 199 -10000 -695
- 161 -233 -128 -157
- -5 16 -6 -6
+ 23 -26 -23 19
+ 143 -219 -74 -103
+ 196 -592 -448 -420
+ 195 -351 -580 -475
+ -556 -332 192 -353
+ -522 -573 198 -577
+ -573 -538 -559 198
+ -496 198 -653 -573
+ 160 -226 -126 -154
+ -5 15 -6 -6
diff --git a/profiles/vertebrates/MA1112.2.pwm b/profiles/vertebrates/MA1112.2.pwm
index be0a982..76272d2 100644
--- a/profiles/vertebrates/MA1112.2.pwm
+++ b/profiles/vertebrates/MA1112.2.pwm
@@ -1,12 +1,12 @@
- -19 -28 6 33
- 16 -16 -24 18
- 185 -408 -227 -284
- 194 -509 -358 -425
- 198 -600 -496 -623
- -322 -544 164 -42
- -373 -458 191 -300
- -345 -227 -155 175
- -583 191 -472 -240
- 193 -472 -360 -363
- 16 0 3 -22
- 40 -24 -3 -21
+ -19 -28 6 33
+ 16 -16 -23 18
+ 184 -391 -223 -277
+ 193 -476 -346 -406
+ 197 -542 -465 -557
+ -313 -502 164 -42
+ -360 -434 190 -292
+ -334 -223 -153 174
+ -530 190 -446 -235
+ 192 -446 -348 -351
+ 16 0 3 -22
+ 39 -24 -3 -21
diff --git a/profiles/vertebrates/MA1113.1.pwm b/profiles/vertebrates/MA1113.1.pwm
index be35066..75a6125 100644
--- a/profiles/vertebrates/MA1113.1.pwm
+++ b/profiles/vertebrates/MA1113.1.pwm
@@ -1,12 +1,12 @@
- -4 -5 18 -11
- -47 -183 -123 136
- -171 -191 160 -137
- 193 -443 -376 -393
- -221 -101 -30 131
- -345 -483 -241 188
- -428 -383 191 -318
- 185 -489 -164 -428
- -504 196 -464 -428
- 188 -464 -276 -288
- -125 -64 122 -72
- -28 27 35 -52
+ -4 -5 18 -11
+ -46 -176 -119 135
+ -164 -183 159 -133
+ 191 -394 -344 -357
+ -211 -98 -29 129
+ -319 -421 -230 186
+ -384 -349 189 -296
+ 183 -425 -158 -384
+ -434 193 -409 -384
+ 186 -409 -261 -271
+ -121 -63 121 -70
+ -28 27 34 -50
diff --git a/profiles/vertebrates/MA1113.2.pwm b/profiles/vertebrates/MA1113.2.pwm
index e69de29..f2b144c 100644
--- a/profiles/vertebrates/MA1113.2.pwm
+++ b/profiles/vertebrates/MA1113.2.pwm
@@ -0,0 +1,13 @@
+ 18 -33 38 -36
+ 17 26 -127 34
+ -58 140 -219 -109
+ 184 -347 -209 -345
+ -480 -356 -437 194
+ 171 -169 -311 -177
+ 187 -359 -427 -233
+ 188 -322 -360 -282
+ -332 -391 -433 192
+ -167 169 -364 -136
+ 180 -306 -424 -158
+ -8 -7 -90 64
+ 9 -6 -41 29
diff --git a/profiles/vertebrates/MA1114.1.pwm b/profiles/vertebrates/MA1114.1.pwm
index e69de29..90e018e 100644
--- a/profiles/vertebrates/MA1114.1.pwm
+++ b/profiles/vertebrates/MA1114.1.pwm
@@ -0,0 +1,17 @@
+ -14 -4 32 -20
+ -21 -3 14 8
+ -41 7 13 13
+ -153 -285 -176 169
+ -283 -284 186 -330
+ 186 -361 -292 -268
+ -232 -113 148 -84
+ -273 -301 -254 183
+ -341 -276 189 -409
+ 180 -378 -151 -342
+ -338 188 -295 -348
+ 178 -357 -199 -216
+ -219 -204 169 -164
+ -97 -35 121 -134
+ -48 59 -14 -20
+ 9 -12 23 -26
+ -23 4 33 -22
diff --git a/profiles/vertebrates/MA1115.1.pwm b/profiles/vertebrates/MA1115.1.pwm
index e69de29..61a95d1 100644
--- a/profiles/vertebrates/MA1115.1.pwm
+++ b/profiles/vertebrates/MA1115.1.pwm
@@ -0,0 +1,11 @@
+ 60 -133 -71 56
+ 14 -23 -77 55
+ 194 -446 -368 -507
+ -489 -438 -511 196
+ -215 -391 181 -232
+ -256 164 -252 -92
+ 183 -436 -450 -154
+ 168 -220 -165 -193
+ 190 -347 -353 -330
+ -36 -63 -66 96
+ 8 -42 11 15
diff --git a/profiles/vertebrates/MA1116.1.pwm b/profiles/vertebrates/MA1116.1.pwm
index 8f37402..7b0dd83 100644
--- a/profiles/vertebrates/MA1116.1.pwm
+++ b/profiles/vertebrates/MA1116.1.pwm
@@ -1,10 +1,10 @@
- -80 49 1 3
- -30 54 39 -124
- -823 -565 -823 199
- -410 -459 196 -923
- -606 -491 195 -332
- -642 -623 194 -294
- 198 -10000 -723 -437
- 199 -532 -923 -723
- 31 13 -2 -54
- -9 -5 24 -13
+ -78 48 1 2
+ -29 53 38 -120
+ -543 -466 -543 197
+ -370 -404 194 -553
+ -485 -425 192 -308
+ -499 -492 192 -276
+ 196 -564 -524 -389
+ 197 -449 -553 -524
+ 30 12 -2 -53
+ -9 -5 24 -13
diff --git a/profiles/vertebrates/MA1117.1.pwm b/profiles/vertebrates/MA1117.1.pwm
index f1eb665..e1a77ac 100644
--- a/profiles/vertebrates/MA1117.1.pwm
+++ b/profiles/vertebrates/MA1117.1.pwm
@@ -1,11 +1,11 @@
- -5 -99 94 -70
- 58 -55 -5 -22
- 178 -270 -239 -225
- -197 -294 -237 177
- -319 -300 -396 189
- -251 183 -436 -221
- -316 191 -488 -351
- -249 187 -383 -349
- -338 188 -294 -358
- -5 -39 26 10
- -21 16 28 -31
+ -5 -97 93 -69
+ 57 -54 -5 -22
+ 177 -257 -229 -216
+ -190 -279 -227 176
+ -300 -283 -364 187
+ -240 181 -394 -212
+ -298 189 -430 -328
+ -238 186 -353 -326
+ -316 187 -279 -333
+ -5 -38 25 10
+ -21 16 27 -31
diff --git a/profiles/vertebrates/MA1118.1.pwm b/profiles/vertebrates/MA1118.1.pwm
index e69de29..61509d0 100644
--- a/profiles/vertebrates/MA1118.1.pwm
+++ b/profiles/vertebrates/MA1118.1.pwm
@@ -0,0 +1,11 @@
+ -145 -247 160 -127
+ 52 -174 -154 95
+ 189 -344 -432 -272
+ 193 -413 -396 -368
+ -247 176 -381 -148
+ -125 162 -286 -148
+ -227 -239 -290 179
+ -234 -404 186 -306
+ 192 -422 -388 -333
+ -89 -61 6 82
+ 96 37 -181 -106
diff --git a/profiles/vertebrates/MA1119.1.pwm b/profiles/vertebrates/MA1119.1.pwm
index b90a224..cd38d58 100644
--- a/profiles/vertebrates/MA1119.1.pwm
+++ b/profiles/vertebrates/MA1119.1.pwm
@@ -1,16 +1,16 @@
- 30 -14 -25 4
- 24 -13 -15 2
- -50 109 -72 -86
- -70 -266 -128 149
- -305 -461 189 -303
- 139 -210 -232 -9
- 184 -237 -437 -252
- 195 -513 -420 -439
- -284 168 -300 -91
- -122 161 -280 -144
- -207 -221 -296 177
- -209 -358 182 -286
- 193 -418 -400 -391
- -130 -115 -19 118
- 82 41 -128 -104
- -67 89 -142 20
+ 29 -14 -25 4
+ 23 -13 -15 2
+ -49 108 -71 -84
+ -69 -257 -125 148
+ -291 -421 188 -290
+ 138 -203 -225 -9
+ 183 -229 -403 -243
+ 194 -459 -390 -405
+ -273 167 -287 -89
+ -119 160 -269 -141
+ -201 -214 -284 176
+ -203 -338 181 -274
+ 192 -389 -374 -366
+ -127 -113 -19 117
+ 82 41 -125 -102
+ -66 88 -138 19
diff --git a/profiles/vertebrates/MA1120.1.pwm b/profiles/vertebrates/MA1120.1.pwm
index 07d6615..be98992 100644
--- a/profiles/vertebrates/MA1120.1.pwm
+++ b/profiles/vertebrates/MA1120.1.pwm
@@ -1,11 +1,11 @@
- 44 -78 29 -25
- 66 -25 -12 -60
- 197 -569 -483 -487
- -437 191 -425 -282
- 193 -437 -451 -327
- 195 -457 -418 -448
- -287 -389 -534 191
- -96 -432 175 -396
- -55 -81 123 -130
- 11 14 -8 -20
- 11 -2 -12 2
+ 43 -76 29 -25
+ 65 -24 -12 -59
+ 195 -489 -434 -437
+ -401 189 -391 -270
+ 191 -401 -411 -310
+ 193 -415 -385 -409
+ -274 -362 -469 190
+ -94 -397 174 -368
+ -54 -80 122 -127
+ 11 14 -8 -19
+ 11 -2 -12 2
diff --git a/profiles/vertebrates/MA1121.1.pwm b/profiles/vertebrates/MA1121.1.pwm
index e69de29..3a45698 100644
--- a/profiles/vertebrates/MA1121.1.pwm
+++ b/profiles/vertebrates/MA1121.1.pwm
@@ -0,0 +1,13 @@
+ 2 9 -26 12
+ -59 79 -70 -1
+ 166 -263 -90 -283
+ -166 178 -283 -307
+ 189 -371 -307 -325
+ -418 -316 -358 191
+ -276 -335 -325 187
+ -335 184 -316 -224
+ -335 188 -400 -257
+ 93 -110 -119 26
+ -26 -27 59 -26
+ -27 33 11 -26
+ -30 68 -20 -49
diff --git a/profiles/vertebrates/MA1122.1.pwm b/profiles/vertebrates/MA1122.1.pwm
index c512b0e..2ae6f26 100644
--- a/profiles/vertebrates/MA1122.1.pwm
+++ b/profiles/vertebrates/MA1122.1.pwm
@@ -1,11 +1,11 @@
- -29 -3 63 -61
- -93 45 91 -206
- -339 -282 189 -427
- -416 191 -451 -282
- -516 -322 195 -616
- -380 -265 189 -427
- -422 -397 194 -411
- 189 -439 -236 -406
- 171 -156 -187 -319
- -11 37 37 -102
- -40 27 37 -42
+ -28 -3 62 -60
+ -90 44 89 -197
+ -312 -264 187 -379
+ -371 189 -395 -264
+ -435 -298 192 -482
+ -344 -249 187 -379
+ -375 -357 191 -367
+ 186 -387 -223 -364
+ 169 -150 -179 -295
+ -11 36 36 -99
+ -39 26 36 -41
diff --git a/profiles/vertebrates/MA1123.1.pwm b/profiles/vertebrates/MA1123.1.pwm
index e69de29..815d674 100644
--- a/profiles/vertebrates/MA1123.1.pwm
+++ b/profiles/vertebrates/MA1123.1.pwm
@@ -0,0 +1,13 @@
+ 25 -22 -1 -6
+ 18 -24 -24 23
+ 17 -68 -29 52
+ -77 154 -140 -297
+ -423 196 -509 -484
+ 196 -532 -468 -453
+ -408 -227 182 -238
+ 185 -207 -298 -470
+ -444 -390 -452 194
+ -413 -406 193 -362
+ -210 -132 -84 149
+ -80 5 19 32
+ -7 6 -11 11
diff --git a/profiles/vertebrates/MA1123.2.pwm b/profiles/vertebrates/MA1123.2.pwm
index 71836d8..651660b 100644
--- a/profiles/vertebrates/MA1123.2.pwm
+++ b/profiles/vertebrates/MA1123.2.pwm
@@ -1,13 +1,13 @@
- 29 -25 -8 -2
- 19 -31 -26 27
- 14 -57 -24 46
- -87 158 -155 -300
- -418 196 -587 -530
- 197 -565 -502 -464
- -396 -237 182 -228
- 184 -202 -291 -500
- -426 -391 -457 194
- -417 -411 193 -355
- -192 -123 -75 144
- -75 12 9 33
- 0 -6 -14 18
+ 28 -24 -7 -2
+ 19 -30 -25 27
+ 14 -57 -24 46
+ -87 157 -153 -294
+ -404 196 -544 -500
+ 196 -528 -477 -445
+ -384 -234 182 -225
+ 184 -199 -286 -475
+ -411 -379 -438 193
+ -403 -397 192 -346
+ -190 -122 -74 143
+ -74 11 9 33
+ 0 -6 -14 18
diff --git a/profiles/vertebrates/MA1124.1.pwm b/profiles/vertebrates/MA1124.1.pwm
index e69de29..6eb1ddb 100644
--- a/profiles/vertebrates/MA1124.1.pwm
+++ b/profiles/vertebrates/MA1124.1.pwm
@@ -0,0 +1,13 @@
+ -149 154 -208 -102
+ 162 -166 -155 -194
+ -256 -145 -292 174
+ -364 -333 -355 190
+ -401 192 -523 -295
+ 194 -451 -344 -499
+ -544 -266 -514 192
+ -474 -399 -474 195
+ -390 191 -548 -283
+ 191 -374 -323 -421
+ -248 -148 -279 173
+ -252 -144 -244 171
+ -148 160 -271 -111
diff --git a/profiles/vertebrates/MA1125.1.pwm b/profiles/vertebrates/MA1125.1.pwm
index e69de29..c8f1820 100644
--- a/profiles/vertebrates/MA1125.1.pwm
+++ b/profiles/vertebrates/MA1125.1.pwm
@@ -0,0 +1,12 @@
+ 31 -62 -43 45
+ 26 -11 -56 27
+ 32 -113 -70 74
+ 78 2 -68 -63
+ 199 -724 -708 -622
+ 198 -660 -693 -505
+ 198 -689 -678 -442
+ 199 -708 -703 -528
+ 198 -678 -705 -503
+ 199 -727 -745 -689
+ 141 -137 -144 -77
+ 131 -93 -138 -70
diff --git a/profiles/vertebrates/MA1126.1.pwm b/profiles/vertebrates/MA1126.1.pwm
index e69de29..242dd46 100644
--- a/profiles/vertebrates/MA1126.1.pwm
+++ b/profiles/vertebrates/MA1126.1.pwm
@@ -0,0 +1,16 @@
+ 9 -186 73 1
+ 113 -229 55 -277
+ -223 -165 -188 168
+ -237 -110 136 -37
+ 155 -273 -85 -146
+ -155 171 -240 -240
+ -89 -108 150 -262
+ -243 -306 -269 182
+ -208 173 -231 -199
+ 183 -301 -255 -266
+ -277 -9 -193 141
+ 25 35 -62 -18
+ 36 32 -61 -28
+ -38 -47 6 55
+ -61 -164 -7 105
+ -29 21 -26 25
diff --git a/profiles/vertebrates/MA1127.1.pwm b/profiles/vertebrates/MA1127.1.pwm
index e5a105e..ea24793 100644
--- a/profiles/vertebrates/MA1127.1.pwm
+++ b/profiles/vertebrates/MA1127.1.pwm
@@ -1,11 +1,11 @@
- -37 -184 120 -63
- 138 -152 -21 -238
- -438 -464 -438 195
- -388 -464 180 -132
- 193 -496 -388 -364
- -238 182 -332 -257
- -174 -416 184 -416
- -332 -213 -416 185
- -2 148 -364 -280
- 192 -397 -416 -357
- -144 6 -224 125
+ -36 -173 118 -60
+ 135 -144 -20 -221
+ -369 -385 -369 192
+ -337 -385 177 -126
+ 190 -402 -337 -321
+ -221 179 -297 -237
+ -164 -356 181 -356
+ -297 -199 -356 182
+ -2 145 -321 -255
+ 189 -343 -356 -316
+ -137 6 -208 122
diff --git a/profiles/vertebrates/MA1128.1.pwm b/profiles/vertebrates/MA1128.1.pwm
index e69de29..a49335b 100644
--- a/profiles/vertebrates/MA1128.1.pwm
+++ b/profiles/vertebrates/MA1128.1.pwm
@@ -0,0 +1,13 @@
+ -26 -2 2 22
+ -52 -63 59 20
+ 124 -141 17 -293
+ -486 -470 -486 196
+ -456 -470 190 -249
+ 196 -470 -470 -457
+ -293 169 -213 -130
+ -266 -470 -80 169
+ -63 171 -470 -444
+ 194 -444 -393 -444
+ -199 -3 -102 119
+ 24 29 -51 -16
+ 15 20 -7 -34
diff --git a/profiles/vertebrates/MA1129.1.pwm b/profiles/vertebrates/MA1129.1.pwm
index e69de29..494a023 100644
--- a/profiles/vertebrates/MA1129.1.pwm
+++ b/profiles/vertebrates/MA1129.1.pwm
@@ -0,0 +1,10 @@
+ 133 -175 9 -293
+ -285 -277 -302 184
+ -266 -201 140 -6
+ 169 -293 -118 -234
+ -311 173 -249 -133
+ -135 -255 173 -301
+ -240 -119 -289 169
+ -7 139 -197 -259
+ 184 -311 -273 -277
+ -301 8 -171 133
diff --git a/profiles/vertebrates/MA1130.1.pwm b/profiles/vertebrates/MA1130.1.pwm
index d943526..a6e6eff 100644
--- a/profiles/vertebrates/MA1130.1.pwm
+++ b/profiles/vertebrates/MA1130.1.pwm
@@ -1,12 +1,12 @@
- -40 -1 24 10
- -22 -48 44 11
- 112 -105 17 -218
- -797 -797 -797 200
- -797 -797 175 -66
- 176 -102 -797 -311
- -128 -83 148 -211
- -797 -797 -797 200
- -365 197 -797 -797
- 200 -10000 -797 -797
- -372 26 -143 124
- 11 45 -47 -26
+ -39 -1 23 10
+ -22 -46 42 10
+ 109 -100 17 -204
+ -486 -486 -486 196
+ -486 -486 172 -64
+ 173 -98 -486 -280
+ -122 -79 145 -197
+ -486 -486 -486 196
+ -321 193 -486 -486
+ 196 -503 -486 -486
+ -326 25 -135 121
+ 10 44 -46 -25
diff --git a/profiles/vertebrates/MA1131.1.pwm b/profiles/vertebrates/MA1131.1.pwm
index e69de29..b1bb393 100644
--- a/profiles/vertebrates/MA1131.1.pwm
+++ b/profiles/vertebrates/MA1131.1.pwm
@@ -0,0 +1,11 @@
+ -16 -134 86 -15
+ 131 -277 36 -349
+ -421 -402 -402 193
+ -411 -356 184 -188
+ 191 -421 -393 -306
+ -377 183 -311 -190
+ -137 -228 173 -337
+ -356 -173 -393 183
+ 48 130 -343 -402
+ 191 -385 -362 -349
+ -249 -19 -57 118
diff --git a/profiles/vertebrates/MA1132.1.pwm b/profiles/vertebrates/MA1132.1.pwm
index e69de29..3977472 100644
--- a/profiles/vertebrates/MA1132.1.pwm
+++ b/profiles/vertebrates/MA1132.1.pwm
@@ -0,0 +1,10 @@
+ -29 -92 69 6
+ 130 -86 -39 -216
+ -377 -385 -262 189
+ -385 -316 185 -223
+ 188 -385 -284 -332
+ -289 169 -107 -266
+ -197 -301 48 115
+ -61 147 -385 -99
+ 186 -301 -332 -289
+ -40 -1 -184 98
diff --git a/profiles/vertebrates/MA1133.1.pwm b/profiles/vertebrates/MA1133.1.pwm
index e69de29..1257144 100644
--- a/profiles/vertebrates/MA1133.1.pwm
+++ b/profiles/vertebrates/MA1133.1.pwm
@@ -0,0 +1,12 @@
+ -206 -88 50 85
+ 57 -115 94 -277
+ -197 -234 -297 177
+ -213 -284 146 -19
+ 162 -311 -186 -92
+ -306 175 -223 -176
+ -204 -255 176 -237
+ -277 -289 -243 182
+ -138 171 -259 -243
+ 185 -326 -259 -293
+ -266 -96 -90 148
+ -23 2 3 15
diff --git a/profiles/vertebrates/MA1134.1.pwm b/profiles/vertebrates/MA1134.1.pwm
index e69de29..fa886cb 100644
--- a/profiles/vertebrates/MA1134.1.pwm
+++ b/profiles/vertebrates/MA1134.1.pwm
@@ -0,0 +1,12 @@
+ -50 -55 56 19
+ 122 -119 9 -256
+ -486 -486 -486 196
+ -486 -486 176 -89
+ 192 -277 -486 -444
+ -221 30 128 -297
+ -486 -486 -456 196
+ -289 192 -486 -486
+ 196 -486 -486 -486
+ -411 18 -213 137
+ 13 52 -47 -43
+ 18 28 3 -65
diff --git a/profiles/vertebrates/MA1135.1.pwm b/profiles/vertebrates/MA1135.1.pwm
index e69de29..0fa51eb 100644
--- a/profiles/vertebrates/MA1135.1.pwm
+++ b/profiles/vertebrates/MA1135.1.pwm
@@ -0,0 +1,10 @@
+ -102 -44 76 11
+ 123 -190 35 -321
+ -486 -503 -486 196
+ -486 -503 194 -326
+ 196 -486 -486 -486
+ -262 123 30 -190
+ -470 -486 -246 191
+ -38 166 -486 -486
+ 196 -503 -486 -486
+ -252 5 -95 118
diff --git a/profiles/vertebrates/MA1136.1.pwm b/profiles/vertebrates/MA1136.1.pwm
index e69de29..ae12a28 100644
--- a/profiles/vertebrates/MA1136.1.pwm
+++ b/profiles/vertebrates/MA1136.1.pwm
@@ -0,0 +1,10 @@
+ 114 -195 54 -370
+ -276 -255 -343 184
+ -363 -226 146 -5
+ 176 -231 -193 -285
+ -277 172 -289 -124
+ -211 -259 180 -321
+ -201 -155 -284 171
+ -51 160 -255 -349
+ 185 -343 -277 -273
+ -377 5 -182 138
diff --git a/profiles/vertebrates/MA1137.1.pwm b/profiles/vertebrates/MA1137.1.pwm
index e69de29..7a102c5 100644
--- a/profiles/vertebrates/MA1137.1.pwm
+++ b/profiles/vertebrates/MA1137.1.pwm
@@ -0,0 +1,13 @@
+ -8 10 -35 25
+ -21 -75 57 7
+ 115 -126 19 -223
+ -306 -343 -343 189
+ -255 -316 178 -186
+ 184 -321 -316 -237
+ -186 130 -32 -109
+ -195 -306 -107 165
+ 11 142 -393 -252
+ 182 -316 -249 -252
+ -208 -15 -54 112
+ 26 25 -28 -32
+ -2 26 -16 -12
diff --git a/profiles/vertebrates/MA1138.1.pwm b/profiles/vertebrates/MA1138.1.pwm
index f575188..f108270 100644
--- a/profiles/vertebrates/MA1138.1.pwm
+++ b/profiles/vertebrates/MA1138.1.pwm
@@ -1,10 +1,10 @@
- -73 -61 70 15
- 131 -224 33 -427
- -10000 -10000 -10000 200
- -10000 -10000 198 -416
- 200 -10000 -10000 -10000
- -221 119 23 -155
- -797 -10000 -327 196
- -57 173 -10000 -10000
- 200 -10000 -10000 -10000
- -284 1 -116 127
+ -70 -58 69 15
+ 128 -208 32 -363
+ -503 -503 -503 197
+ -503 -503 195 -356
+ 197 -503 -503 -503
+ -206 116 22 -147
+ -486 -503 -293 193
+ -55 170 -503 -503
+ 197 -503 -503 -503
+ -259 1 -110 124
diff --git a/profiles/vertebrates/MA1139.1.pwm b/profiles/vertebrates/MA1139.1.pwm
index e69de29..cf7c562 100644
--- a/profiles/vertebrates/MA1139.1.pwm
+++ b/profiles/vertebrates/MA1139.1.pwm
@@ -0,0 +1,12 @@
+ -13 -71 51 7
+ 132 -182 10 -280
+ -402 -337 -421 192
+ -370 -316 161 -40
+ 193 -432 -362 -385
+ -385 181 -337 -165
+ -165 -343 182 -385
+ -385 -370 -421 193
+ -41 161 -306 -362
+ 192 -432 -326 -402
+ -284 9 -178 133
+ 7 50 -70 -13
diff --git a/profiles/vertebrates/MA1140.1.pwm b/profiles/vertebrates/MA1140.1.pwm
index 7507f2c..71cfdd5 100644
--- a/profiles/vertebrates/MA1140.1.pwm
+++ b/profiles/vertebrates/MA1140.1.pwm
@@ -1,10 +1,10 @@
- 108 -129 13 -138
- -254 -332 -280 184
- -301 -186 128 22
- 177 -364 -192 -197
- -306 172 -204 -157
- -159 -211 173 -297
- -201 -199 -344 177
- 21 128 -180 -292
- 184 -292 -311 -248
- -140 11 -125 108
+ 106 -123 13 -131
+ -234 -297 -255 181
+ -273 -174 126 21
+ 173 -321 -180 -184
+ -277 169 -190 -149
+ -151 -197 170 -269
+ -188 -186 -306 174
+ 21 125 -169 -266
+ 180 -266 -281 -229
+ -133 11 -119 106
diff --git a/profiles/vertebrates/MA1140.2.pwm b/profiles/vertebrates/MA1140.2.pwm
index 95bb741..f0c6441 100644
--- a/profiles/vertebrates/MA1140.2.pwm
+++ b/profiles/vertebrates/MA1140.2.pwm
@@ -1,12 +1,12 @@
- -61 -73 109 -70
- 187 -357 -247 -379
- -628 -628 -428 197
- -10000 -10000 194 -261
- 199 -626 -626 -10000
- -10000 199 -10000 -526
- -10000 -626 200 -10000
- -628 -469 -628 198
- -226 190 -476 -635
- 198 -527 -627 -627
- -10000 53 -298 128
- -93 129 -83 -112
+ -57 -68 104 -65
+ 182 -294 -217 -307
+ -392 -392 -329 191
+ -425 -425 188 -227
+ 193 -390 -390 -420
+ -420 193 -420 -366
+ -419 -390 193 -419
+ -392 -346 -392 192
+ -200 185 -353 -399
+ 192 -367 -391 -391
+ -423 51 -253 123
+ -86 125 -77 -103
diff --git a/profiles/vertebrates/MA1141.1.pwm b/profiles/vertebrates/MA1141.1.pwm
index e69de29..8a56b58 100644
--- a/profiles/vertebrates/MA1141.1.pwm
+++ b/profiles/vertebrates/MA1141.1.pwm
@@ -0,0 +1,13 @@
+ -43 -3 32 4
+ -44 -56 62 7
+ 122 -121 9 -249
+ -503 -486 -503 197
+ -503 -503 177 -91
+ 181 -138 -503 -349
+ -164 -243 176 -326
+ -503 -503 -503 197
+ -280 192 -503 -503
+ 197 -503 -503 -503
+ -316 21 -160 127
+ 0 55 -35 -42
+ 8 8 22 -46
diff --git a/profiles/vertebrates/MA1142.1.pwm b/profiles/vertebrates/MA1142.1.pwm
index 76a3845..52fa873 100644
--- a/profiles/vertebrates/MA1142.1.pwm
+++ b/profiles/vertebrates/MA1142.1.pwm
@@ -1,10 +1,10 @@
- 8 -18 16 -9
- 114 -98 17 -264
- -306 -344 -288 187
- -351 -204 164 -84
- 179 -438 -161 -261
- -235 122 -39 -48
- -135 -247 -42 142
- 11 136 -332 -197
- 187 -264 -388 -301
- -52 -24 -80 91
+ 8 -17 15 -9
+ 112 -93 17 -243
+ -277 -306 -262 184
+ -311 -190 161 -80
+ 176 -369 -152 -240
+ -218 119 -38 -46
+ -128 -228 -40 139
+ 11 133 -297 -184
+ 183 -243 -337 -273
+ -50 -23 -76 89
diff --git a/profiles/vertebrates/MA1143.1.pwm b/profiles/vertebrates/MA1143.1.pwm
index e69de29..f1285a6 100644
--- a/profiles/vertebrates/MA1143.1.pwm
+++ b/profiles/vertebrates/MA1143.1.pwm
@@ -0,0 +1,10 @@
+ 114 -164 36 -243
+ -255 -216 -231 177
+ -246 -124 161 -152
+ 177 -229 -240 -231
+ -269 171 -184 -176
+ -106 -195 135 -49
+ -105 7 -246 119
+ 110 39 -150 -240
+ 134 -180 -126 -40
+ -98 66 -152 64
diff --git a/profiles/vertebrates/MA1144.1.pwm b/profiles/vertebrates/MA1144.1.pwm
index e69de29..eaf2440 100644
--- a/profiles/vertebrates/MA1144.1.pwm
+++ b/profiles/vertebrates/MA1144.1.pwm
@@ -0,0 +1,10 @@
+ -83 -77 81 13
+ 132 -192 21 -356
+ -503 -503 -503 197
+ -503 -503 195 -385
+ 196 -485 -503 -503
+ -226 125 22 -197
+ -421 -503 -193 187
+ -80 175 -503 -503
+ 197 -503 -503 -503
+ -249 9 -109 120
diff --git a/profiles/vertebrates/MA1145.1.pwm b/profiles/vertebrates/MA1145.1.pwm
index e69de29..e322faa 100644
--- a/profiles/vertebrates/MA1145.1.pwm
+++ b/profiles/vertebrates/MA1145.1.pwm
@@ -0,0 +1,15 @@
+ -32 -48 19 43
+ -18 -39 43 1
+ 113 -229 43 -199
+ -293 -289 -385 187
+ -411 -226 141 10
+ 188 -421 -273 -321
+ -369 183 -259 -240
+ -85 -349 169 -285
+ -284 -370 -385 189
+ -266 188 -349 -377
+ 193 -421 -377 -377
+ -306 45 -204 118
+ -20 78 -120 -3
+ -60 -17 72 -31
+ -1 20 -5 -16
diff --git a/profiles/vertebrates/MA1146.1.pwm b/profiles/vertebrates/MA1146.1.pwm
index e69de29..39e4143 100644
--- a/profiles/vertebrates/MA1146.1.pwm
+++ b/profiles/vertebrates/MA1146.1.pwm
@@ -0,0 +1,15 @@
+ -16 -52 83 -67
+ 136 -203 16 -377
+ -280 -349 187 -326
+ -311 -393 134 36
+ -301 -218 -124 169
+ -377 178 -362 -126
+ 150 -362 0 -337
+ -76 -100 -164 137
+ -306 -137 -221 171
+ -115 -123 156 -252
+ 158 -111 -159 -221
+ -86 160 -393 -150
+ -109 164 -249 -213
+ -297 60 -171 104
+ -133 32 -23 59
diff --git a/profiles/vertebrates/MA1147.1.pwm b/profiles/vertebrates/MA1147.1.pwm
index e69de29..6cb9eab 100644
--- a/profiles/vertebrates/MA1147.1.pwm
+++ b/profiles/vertebrates/MA1147.1.pwm
@@ -0,0 +1,15 @@
+ 20 -23 55 -90
+ 97 -97 47 -280
+ -321 -377 185 -226
+ -213 -411 165 -81
+ -226 -86 -92 144
+ -411 169 -273 -82
+ 122 -249 44 -289
+ -1 -192 -144 125
+ -470 -175 -432 185
+ -173 -152 171 -370
+ 186 -206 -337 -456
+ -65 170 -470 -377
+ -243 187 -444 -321
+ -432 107 -306 79
+ -121 90 -46 -4
diff --git a/profiles/vertebrates/MA1148.1.pwm b/profiles/vertebrates/MA1148.1.pwm
index fdd1682..72c2928 100644
--- a/profiles/vertebrates/MA1148.1.pwm
+++ b/profiles/vertebrates/MA1148.1.pwm
@@ -1,18 +1,18 @@
- 113 -84 -121 -29
- 78 -178 -206 80
- -2 -24 41 -25
- -204 -141 -7 128
- 98 -139 57 -257
- -188 -372 175 -182
- -164 -406 178 -235
- -257 -67 -3 115
- -93 83 -31 -16
- 183 -397 -190 -306
- 142 -338 -27 -134
- 169 -332 -81 -332
- -117 -397 179 -451
- -380 -416 165 -44
- -388 -235 -112 171
- -147 126 -78 -59
- 146 -275 -12 -254
- -17 -8 -4 25
+ 111 -80 -115 -28
+ 77 -167 -193 79
+ -2 -24 40 -24
+ -191 -134 -7 125
+ 96 -132 55 -237
+ -177 -326 172 -171
+ -155 -349 174 -218
+ -237 -65 -3 113
+ -89 81 -30 -16
+ 179 -343 -178 -277
+ 139 -301 -26 -127
+ 166 -297 -77 -297
+ -112 -343 175 -377
+ -332 -356 162 -43
+ -337 -218 -107 168
+ -140 123 -74 -57
+ 144 -252 -12 -234
+ -17 -7 -4 25
diff --git a/profiles/vertebrates/MA1149.1.pwm b/profiles/vertebrates/MA1149.1.pwm
index 3b16902..df824a7 100644
--- a/profiles/vertebrates/MA1149.1.pwm
+++ b/profiles/vertebrates/MA1149.1.pwm
@@ -1,18 +1,18 @@
- 46 -115 72 -95
- 99 -272 88 -538
- -427 -638 193 -306
- -451 -638 173 -66
- -564 -406 -182 186
- -380 173 -211 -143
- 181 -564 -117 -464
- 12 -6 -70 42
- -22 0 36 -22
- -24 -24 12 29
- 46 -33 -12 -14
- 48 -91 67 -105
- 99 -147 64 -332
- -327 -597 189 -254
- -438 -565 170 -57
- -206 -116 -14 127
- -178 148 -137 -89
- 149 -224 -28 -265
+ 45 -109 71 -91
+ 97 -249 86 -421
+ -362 -456 190 -277
+ -377 -456 170 -64
+ -432 -349 -171 183
+ -332 170 -197 -135
+ 177 -432 -112 -385
+ 12 -6 -67 41
+ -21 0 35 -21
+ -24 -23 12 28
+ 45 -32 -11 -14
+ 47 -87 65 -100
+ 96 -140 63 -297
+ -293 -444 186 -234
+ -370 -432 167 -55
+ -192 -110 -14 124
+ -167 145 -130 -85
+ 146 -208 -27 -243
diff --git a/profiles/vertebrates/MA1150.1.pwm b/profiles/vertebrates/MA1150.1.pwm
index e69de29..5b90636 100644
--- a/profiles/vertebrates/MA1150.1.pwm
+++ b/profiles/vertebrates/MA1150.1.pwm
@@ -0,0 +1,11 @@
+ 162 -356 -280 -52
+ 105 -293 -302 75
+ -10 -60 -30 67
+ -208 -58 -9 111
+ 124 -356 50 -293
+ -343 -297 183 -211
+ -269 -362 186 -289
+ -284 -74 -216 160
+ -223 161 -337 -66
+ 181 -349 -186 -293
+ -28 37 -75 36
diff --git a/profiles/vertebrates/MA1151.1.pwm b/profiles/vertebrates/MA1151.1.pwm
index 6f2f466..7fe27ea 100644
--- a/profiles/vertebrates/MA1151.1.pwm
+++ b/profiles/vertebrates/MA1151.1.pwm
@@ -1,12 +1,12 @@
- 29 -48 6 3
- 40 -113 -83 73
- 177 -416 -451 -106
- 108 -464 -297 79
- -15 -1 15 -1
- -254 -152 -111 159
- 132 -338 45 -451
- -564 -697 188 -176
- -279 -638 193 -496
- -208 -116 -57 140
- -538 172 -372 -71
- 165 -438 -63 -257
+ 28 -46 5 3
+ 39 -108 -79 72
+ 174 -356 -377 -101
+ 105 -385 -269 77
+ -15 -1 14 -1
+ -234 -144 -106 156
+ 129 -302 44 -377
+ -432 -470 185 -165
+ -255 -456 190 -402
+ -195 -110 -55 137
+ -421 169 -326 -68
+ 162 -370 -61 -237
diff --git a/profiles/vertebrates/MA1152.1.pwm b/profiles/vertebrates/MA1152.1.pwm
index e69de29..f0204cb 100644
--- a/profiles/vertebrates/MA1152.1.pwm
+++ b/profiles/vertebrates/MA1152.1.pwm
@@ -0,0 +1,10 @@
+ -269 112 -74 9
+ -188 70 -293 98
+ 131 -456 -432 52
+ -456 -456 -421 195
+ -456 -470 -470 196
+ -150 -316 180 -432
+ -301 -470 -456 192
+ -46 -40 -96 100
+ -21 2 -108 72
+ -5 -40 -58 68
diff --git a/profiles/vertebrates/MA1153.1.pwm b/profiles/vertebrates/MA1153.1.pwm
index 07fdfe0..7c74254 100644
--- a/profiles/vertebrates/MA1153.1.pwm
+++ b/profiles/vertebrates/MA1153.1.pwm
@@ -1,8 +1,8 @@
- -151 0 -163 122
- -10000 -10000 200 -10000
- -10000 -10000 -10000 200
- -10000 200 -10000 -10000
- -10000 -10000 -10000 200
- 125 -10000 69 -10000
- -10000 -10000 200 -10000
- 98 12 -100 -118
+ -143 0 -154 119
+ -503 -503 197 -503
+ -503 -503 -503 197
+ -503 197 -503 -503
+ -503 -503 -503 197
+ 123 -503 68 -503
+ -503 -503 197 -503
+ 96 12 -96 -113
diff --git a/profiles/vertebrates/MA1154.1.pwm b/profiles/vertebrates/MA1154.1.pwm
index 87b5321..18afb2f 100644
--- a/profiles/vertebrates/MA1154.1.pwm
+++ b/profiles/vertebrates/MA1154.1.pwm
@@ -1,17 +1,17 @@
- -189 133 -64 -79
- -151 -241 -399 176
- -268 -10000 -368 191
- -501 -560 -501 197
- -10000 199 -472 -10000
- -10000 199 -10000 -571
- -10000 197 -413 -471
- 111 61 -10000 -163
- -250 96 -509 89
- 152 -489 -127 -55
- 199 -10000 -10000 -512
- -477 194 -377 -419
- 171 -75 -520 -340
- -575 197 -475 -475
- -297 -10000 143 23
- 107 -91 -32 -80
- -72 43 42 -51
+ -170 128 -60 -74
+ -142 -219 -335 173
+ -240 -463 -312 187
+ -379 -400 -379 192
+ -372 190 -317 -372
+ -371 191 -371 -341
+ -371 188 -295 -317
+ 106 58 -400 -145
+ -215 91 -351 85
+ 148 -367 -118 -52
+ 193 -409 -409 -355
+ -322 186 -283 -301
+ 166 -69 -362 -278
+ -344 188 -320 -320
+ -264 -472 140 22
+ 102 -84 -30 -75
+ -67 41 40 -47
diff --git a/profiles/vertebrates/MA1155.1.pwm b/profiles/vertebrates/MA1155.1.pwm
index 653bc79..5d9ab2c 100644
--- a/profiles/vertebrates/MA1155.1.pwm
+++ b/profiles/vertebrates/MA1155.1.pwm
@@ -1,15 +1,15 @@
- -105 -47 -225 137
- -81 -799 178 -10000
- -10000 200 -871 -10000
- 200 -10000 -10000 -734
- -10000 200 -10000 -10000
- 200 -10000 -733 -733
- -721 194 -10000 -261
- 107 2 -20 -553
- -592 199 -10000 -773
- -581 -535 -258 192
- -748 -342 181 -130
- 130 -209 -98 -33
- 170 -44 -10000 -598
- 200 -10000 -731 -831
- 116 -117 -30 -97
+ -102 -46 -215 135
+ -79 -540 176 -565
+ -539 197 -525 -539
+ 196 -502 -502 -476
+ -538 197 -538 -538
+ 196 -501 -476 -476
+ -510 191 -547 -245
+ 105 2 -20 -437
+ -465 197 -540 -514
+ -465 -443 -243 190
+ -536 -318 179 -126
+ 128 -199 -95 -32
+ 167 -42 -524 -457
+ 196 -500 -474 -486
+ 114 -113 -29 -94
diff --git a/profiles/vertebrates/MA1418.1.pwm b/profiles/vertebrates/MA1418.1.pwm
index e69de29..5b1e954 100644
--- a/profiles/vertebrates/MA1418.1.pwm
+++ b/profiles/vertebrates/MA1418.1.pwm
@@ -0,0 +1,21 @@
+ -30 11 46 -46
+ -67 31 69 -95
+ 38 -315 118 -161
+ 119 -665 68 -309
+ 160 -562 -78 -146
+ 193 -431 -443 -359
+ 46 50 -88 -58
+ -485 -35 151 -161
+ -519 -705 198 -692
+ 199 -649 -570 -663
+ 198 -649 -564 -571
+ 196 -634 -592 -378
+ -350 181 -214 -254
+ -305 156 -86 -138
+ -404 -723 197 -723
+ 197 -480 -533 -623
+ 195 -580 -606 -326
+ 192 -537 -574 -263
+ -319 168 -75 -333
+ -123 26 -113 94
+ 50 -148 86 -127
diff --git a/profiles/vertebrates/MA1419.1.pwm b/profiles/vertebrates/MA1419.1.pwm
index e69de29..359b7d6 100644
--- a/profiles/vertebrates/MA1419.1.pwm
+++ b/profiles/vertebrates/MA1419.1.pwm
@@ -0,0 +1,15 @@
+ -12 73 -240 29
+ -496 181 -652 -112
+ -483 -658 198 -708
+ 198 -601 -631 -611
+ 198 -754 -719 -453
+ 199 -757 -762 -752
+ -560 195 -418 -441
+ -725 188 -773 -168
+ -668 -757 199 -764
+ 199 -683 -755 -759
+ 196 -748 -724 -346
+ 199 -737 -762 -741
+ -384 184 -156 -656
+ -304 58 -526 124
+ 115 -128 -100 -20
diff --git a/profiles/vertebrates/MA1420.1.pwm b/profiles/vertebrates/MA1420.1.pwm
index 9d05c0d..88fed4f 100644
--- a/profiles/vertebrates/MA1420.1.pwm
+++ b/profiles/vertebrates/MA1420.1.pwm
@@ -1,14 +1,14 @@
- -94 133 -161 -67
- -260 155 -183 -67
- -272 -504 185 -224
- 191 -489 -331 -309
- 169 -379 -411 -65
- 196 -10000 -353 -585
- -553 196 -10000 -353
- -10000 173 -10000 -57
- -27 -208 152 -399
- 188 -247 -312 -592
- 157 -353 -147 -79
- 142 1 -280 -248
- -109 147 -130 -149
- -168 18 -162 116
+ -86 128 -144 -62
+ -219 149 -161 -62
+ -243 -384 181 -203
+ 183 -336 -264 -251
+ 164 -300 -316 -61
+ 189 -388 -275 -358
+ -328 187 -359 -262
+ -381 166 -381 -52
+ -26 -194 149 -343
+ 181 -210 -254 -364
+ 152 -285 -133 -73
+ 137 1 -244 -219
+ -99 141 -118 -133
+ -151 17 -146 111
diff --git a/profiles/vertebrates/MA1421.1.pwm b/profiles/vertebrates/MA1421.1.pwm
index e69de29..3c74a1a 100644
--- a/profiles/vertebrates/MA1421.1.pwm
+++ b/profiles/vertebrates/MA1421.1.pwm
@@ -0,0 +1,12 @@
+ 138 -89 -222 -66
+ 159 -240 -70 -240
+ 187 -376 -376 -242
+ -377 -30 154 -226
+ 161 -211 -170 -132
+ -384 -234 -193 179
+ -242 187 -376 -376
+ 189 -306 -336 -375
+ 192 -372 -372 -372
+ 190 -374 -305 -374
+ -383 -192 180 -249
+ -46 -181 143 -181
diff --git a/profiles/vertebrates/MA1463.1.pwm b/profiles/vertebrates/MA1463.1.pwm
index ade7803..0b0a7e4 100644
--- a/profiles/vertebrates/MA1463.1.pwm
+++ b/profiles/vertebrates/MA1463.1.pwm
@@ -1,10 +1,10 @@
- -9 -124 11 64
- -131 139 -186 -52
- -407 -200 -556 188
- 200 -650 -10000 -1002
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -656 -10000 200
- 176 -330 -172 -223
- 120 -300 47 -233
- 75 -2 -82 -39
+ -9 -123 11 64
+ -130 139 -184 -51
+ -391 -197 -514 187
+ 199 -572 -696 -680
+ 199 -696 -696 -696
+ -696 -696 -696 199
+ -696 -576 -696 199
+ 175 -321 -170 -219
+ 119 -293 47 -228
+ 75 -2 -81 -39
diff --git a/profiles/vertebrates/MA1464.1.pwm b/profiles/vertebrates/MA1464.1.pwm
index 9af9983..1bc926e 100644
--- a/profiles/vertebrates/MA1464.1.pwm
+++ b/profiles/vertebrates/MA1464.1.pwm
@@ -1,10 +1,10 @@
- 1 -146 130 -259
- -76 -172 -76 133
- -435 198 -649 -10000
- 196 -642 -429 -450
- -10000 199 -10000 -611
- -692 -10000 200 -10000
- -402 -350 -657 194
- -954 -10000 197 -342
- 52 77 -172 -85
- -36 29 24 -30
+ 1 -145 130 -255
+ -75 -171 -76 133
+ -421 197 -595 -761
+ 196 -590 -416 -435
+ -759 199 -759 -567
+ -622 -759 199 -759
+ -392 -343 -602 194
+ -728 -762 196 -335
+ 52 77 -171 -85
+ -36 29 24 -30
diff --git a/profiles/vertebrates/MA1466.1.pwm b/profiles/vertebrates/MA1466.1.pwm
index 9bc9526..7366406 100644
--- a/profiles/vertebrates/MA1466.1.pwm
+++ b/profiles/vertebrates/MA1466.1.pwm
@@ -1,14 +1,14 @@
- -173 -31 -134 132
- -162 -96 135 -71
- 113 -82 29 -640
- -10000 -718 -10000 200
- -660 -660 199 -619
- 198 -819 -474 -719
- -10000 200 -10000 -818
- -718 -10000 200 -10000
- -10000 -660 -10000 200
- -358 -10000 195 -432
- -560 -841 177 -80
- -332 195 -10000 -464
- 158 -279 -50 -276
- -27 6 26 -10
+ -164 -30 -128 129
+ -156 -93 133 -70
+ 111 -79 29 -475
+ -507 -478 -507 196
+ -466 -466 196 -454
+ 195 -493 -392 -479
+ -507 197 -507 -491
+ -478 -507 196 -507
+ -507 -465 -507 196
+ -319 -511 192 -369
+ -446 -514 174 -77
+ -299 192 -512 -389
+ 156 -261 -48 -258
+ -26 5 25 -9
diff --git a/profiles/vertebrates/MA1467.1.pwm b/profiles/vertebrates/MA1467.1.pwm
index e69de29..09267bc 100644
--- a/profiles/vertebrates/MA1467.1.pwm
+++ b/profiles/vertebrates/MA1467.1.pwm
@@ -0,0 +1,10 @@
+ 143 -150 -10 -573
+ 153 -90 -88 -519
+ -519 197 -519 -519
+ 189 -527 -527 -211
+ -537 -537 180 -106
+ -91 177 -539 -539
+ -519 -519 -519 197
+ -519 -519 197 -519
+ -178 -20 -298 144
+ -519 144 -519 31
diff --git a/profiles/vertebrates/MA1467.2.pwm b/profiles/vertebrates/MA1467.2.pwm
index bd9839f..229e0ee 100644
--- a/profiles/vertebrates/MA1467.2.pwm
+++ b/profiles/vertebrates/MA1467.2.pwm
@@ -1,11 +1,11 @@
- 43 -58 50 -80
- 47 22 22 -180
- -430 194 -469 -399
- 197 -498 -438 -620
- -502 -366 182 -144
- 197 -555 -483 -584
- -552 -328 -576 195
- -426 -508 196 -474
- -221 -131 155 -115
- -47 54 -48 15
- 18 4 -3 -22
+ 43 -58 49 -79
+ 46 22 22 -178
+ -413 194 -447 -385
+ 196 -471 -420 -562
+ -474 -355 181 -143
+ 197 -516 -458 -537
+ -514 -320 -532 194
+ -409 -479 195 -451
+ -218 -130 155 -114
+ -46 53 -48 15
+ 17 4 -3 -22
diff --git a/profiles/vertebrates/MA1468.1.pwm b/profiles/vertebrates/MA1468.1.pwm
index d3b20e4..de8b1d8 100644
--- a/profiles/vertebrates/MA1468.1.pwm
+++ b/profiles/vertebrates/MA1468.1.pwm
@@ -1,10 +1,10 @@
- 149 -138 -83 -203
- 76 25 -21 -198
- -10000 200 -10000 -10000
- 171 -10000 -110 -191
- -389 -107 -192 167
- 155 -43 -164 -10000
- -10000 -293 -293 190
- -10000 -10000 200 -10000
- -515 -20 55 71
- -343 113 -651 77
+ 147 -132 -80 -191
+ 74 24 -20 -183
+ -470 196 -470 -470
+ 168 -498 -104 -179
+ -338 -102 -180 164
+ 153 -42 -155 -513
+ -480 -262 -262 186
+ -470 -470 196 -470
+ -393 -19 53 69
+ -298 110 -438 75
diff --git a/profiles/vertebrates/MA1470.1.pwm b/profiles/vertebrates/MA1470.1.pwm
index e69de29..7ae5547 100644
--- a/profiles/vertebrates/MA1470.1.pwm
+++ b/profiles/vertebrates/MA1470.1.pwm
@@ -0,0 +1,20 @@
+ 111 -121 -64 -37
+ 125 -248 -151 12
+ 153 -250 -148 -80
+ -64 8 20 20
+ -213 122 47 -423
+ 193 -424 -424 -351
+ -331 -421 -421 192
+ -13 -459 159 -459
+ 194 -423 -394 -423
+ -423 194 -423 -423
+ -424 -424 194 -424
+ -422 -422 -422 194
+ -463 151 9 -463
+ 188 -218 -428 -428
+ -422 -33 -422 163
+ -369 30 119 -126
+ 38 21 -23 -54
+ -31 -155 -395 148
+ 0 -262 -346 146
+ -7 -117 -75 101
diff --git a/profiles/vertebrates/MA1471.1.pwm b/profiles/vertebrates/MA1471.1.pwm
index a6dd1d4..a8cf343 100644
--- a/profiles/vertebrates/MA1471.1.pwm
+++ b/profiles/vertebrates/MA1471.1.pwm
@@ -1,12 +1,12 @@
- 29 -13 -7 -13
- 93 -130 -129 36
- 138 -669 -724 47
- 166 -823 -651 -26
- 160 -149 -168 -172
- -153 106 -260 49
- 26 111 -136 -193
- 156 -762 6 -10000
- -999 -10000 -744 200
- -865 -189 -10000 190
- 177 -468 -433 -97
- -14 39 6 -43
+ 29 -13 -7 -13
+ 93 -129 -128 36
+ 137 -596 -627 47
+ 165 -689 -596 -26
+ 159 -147 -167 -170
+ -152 105 -256 49
+ 26 110 -135 -192
+ 156 -666 6 -771
+ -707 -727 -636 199
+ -688 -187 -737 189
+ 176 -450 -419 -96
+ -14 38 6 -43
diff --git a/profiles/vertebrates/MA1472.1.pwm b/profiles/vertebrates/MA1472.1.pwm
index ec0081d..08e976f 100644
--- a/profiles/vertebrates/MA1472.1.pwm
+++ b/profiles/vertebrates/MA1472.1.pwm
@@ -1,10 +1,10 @@
- 89 -42 -8 -115
- 72 16 12 -275
- -308 192 -605 -359
- 182 -369 -369 -164
- -551 -407 158 -11
- -19 157 -282 -553
- -285 -661 -10000 195
- -10000 -10000 200 -10000
- -333 17 -15 91
- -90 12 -25 62
+ 87 -41 -7 -110
+ 71 16 12 -260
+ -283 189 -463 -323
+ 179 -333 -333 -157
+ -458 -366 156 -10
+ -19 155 -265 -459
+ -264 -479 -525 192
+ -520 -520 197 -520
+ -310 17 -15 89
+ -86 12 -24 60
diff --git a/profiles/vertebrates/MA1472.2.pwm b/profiles/vertebrates/MA1472.2.pwm
index 5dc14ec..c412ffe 100644
--- a/profiles/vertebrates/MA1472.2.pwm
+++ b/profiles/vertebrates/MA1472.2.pwm
@@ -1,12 +1,12 @@
- -6 2 20 -19
- 37 27 -2 -98
- 147 -73 -93 -329
- -435 195 -396 -580
- 196 -543 -511 -383
- -560 -406 193 -326
- -326 193 -406 -560
- -383 -511 -543 196
- -580 -396 195 -435
- -329 -93 -73 147
- -98 -2 27 37
- -19 20 2 -6
+ -6 2 20 -19
+ 37 27 -2 -97
+ 146 -73 -92 -320
+ -417 194 -382 -535
+ 195 -507 -481 -371
+ -520 -391 192 -318
+ -318 192 -391 -520
+ -371 -481 -507 195
+ -535 -382 194 -417
+ -320 -92 -73 146
+ -97 -2 27 37
+ -19 20 2 -6
diff --git a/profiles/vertebrates/MA1473.1.pwm b/profiles/vertebrates/MA1473.1.pwm
index 3356497..365bc26 100644
--- a/profiles/vertebrates/MA1473.1.pwm
+++ b/profiles/vertebrates/MA1473.1.pwm
@@ -1,11 +1,11 @@
- -65 -139 106 -15
- -142 -267 179 -611
- -10000 133 -10000 57
- 108 91 -787 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- 200 -668 -10000 -10000
- 134 -50 -209 -93
- -111 97 -64 -10
+ -65 -137 105 -15
+ -140 -262 178 -563
+ -722 132 -722 57
+ 108 90 -651 -722
+ 199 -722 -722 -722
+ -722 -722 -722 199
+ 199 -722 -722 -722
+ 199 -722 -722 -722
+ 199 -593 -722 -722
+ 134 -50 -207 -93
+ -109 97 -63 -10
diff --git a/profiles/vertebrates/MA1474.1.pwm b/profiles/vertebrates/MA1474.1.pwm
index b905436..1c8af11 100644
--- a/profiles/vertebrates/MA1474.1.pwm
+++ b/profiles/vertebrates/MA1474.1.pwm
@@ -1,12 +1,12 @@
- -71 33 -58 55
- -94 -269 129 -18
- -28 152 -304 -246
- -211 180 -332 -234
- 190 -438 -232 -702
- -628 194 -566 -296
- -180 -403 187 -10000
- -434 -184 -410 185
- -142 154 -96 -226
- 151 -140 -83 -231
- -211 108 -75 9
- -55 84 -30 -48
+ -70 33 -57 54
+ -93 -261 128 -18
+ -27 151 -291 -238
+ -204 178 -314 -226
+ 189 -397 -223 -538
+ -508 192 -478 -281
+ -174 -372 185 -596
+ -396 -178 -377 184
+ -139 153 -94 -220
+ 150 -137 -81 -224
+ -204 106 -74 9
+ -54 83 -30 -47
diff --git a/profiles/vertebrates/MA1475.1.pwm b/profiles/vertebrates/MA1475.1.pwm
index e69de29..16c1a75 100644
--- a/profiles/vertebrates/MA1475.1.pwm
+++ b/profiles/vertebrates/MA1475.1.pwm
@@ -0,0 +1,12 @@
+ -48 -51 80 -25
+ 34 -82 97 -227
+ -529 -136 -272 178
+ -340 -78 146 -82
+ 182 -333 -200 -293
+ -515 192 -446 -271
+ -196 -480 188 -519
+ -385 -176 -302 181
+ -127 154 -92 -271
+ 174 -312 -126 -297
+ -178 81 -57 36
+ -45 83 -28 -59
diff --git a/profiles/vertebrates/MA1476.1.pwm b/profiles/vertebrates/MA1476.1.pwm
index e69de29..3defdd5 100644
--- a/profiles/vertebrates/MA1476.1.pwm
+++ b/profiles/vertebrates/MA1476.1.pwm
@@ -0,0 +1,8 @@
+ -60 10 76 -80
+ -442 122 -685 70
+ 198 -509 -545 -685
+ 199 -684 -684 -684
+ -684 -684 -684 199
+ -684 -684 -684 199
+ 199 -684 -684 -684
+ -49 24 -6 20
diff --git a/profiles/vertebrates/MA1476.2.pwm b/profiles/vertebrates/MA1476.2.pwm
index 66762b7..7869777 100644
--- a/profiles/vertebrates/MA1476.2.pwm
+++ b/profiles/vertebrates/MA1476.2.pwm
@@ -1,12 +1,12 @@
- 26 -4 -30 2
- 56 -172 -19 42
- -224 -248 178 -244
- -284 172 -371 -104
- 194 -353 -575 -399
- 194 -404 -411 -414
- -391 -529 -547 196
- -495 -283 -429 192
- 191 -741 -478 -236
- -88 -175 138 -86
- 15 24 -33 -13
- 34 -35 -19 11
+ 26 -4 -29 2
+ 56 -167 -19 42
+ -216 -238 176 -234
+ -271 171 -346 -102
+ 192 -332 -489 -369
+ 192 -373 -379 -381
+ -362 -462 -473 194
+ -440 -270 -393 190
+ 190 -556 -429 -227
+ -86 -169 137 -84
+ 15 24 -32 -13
+ 33 -35 -19 11
diff --git a/profiles/vertebrates/MA1478.1.pwm b/profiles/vertebrates/MA1478.1.pwm
index e457d09..6cee22c 100644
--- a/profiles/vertebrates/MA1478.1.pwm
+++ b/profiles/vertebrates/MA1478.1.pwm
@@ -1,12 +1,12 @@
- 84 -42 -63 -30
- 97 -122 -55 -11
- -2 -95 -114 103
- -138 -12 -59 102
- -10000 -875 199 -616
- 37 -9 -581 81
- -9 -207 -441 147
- 192 -565 -267 -512
- -10000 200 -10000 -716
- 172 -449 -273 -99
- 2 -128 -48 89
- -102 -86 -75 124
+ 82 -40 -61 -29
+ 95 -117 -53 -11
+ -2 -93 -111 102
+ -134 -12 -58 101
+ -517 -506 196 -460
+ 37 -9 -469 79
+ -9 -198 -393 145
+ 190 -445 -248 -420
+ -517 197 -517 -485
+ 170 -391 -255 -96
+ 2 -126 -47 89
+ -100 -84 -73 123
diff --git a/profiles/vertebrates/MA1479.1.pwm b/profiles/vertebrates/MA1479.1.pwm
index 8997fd6..ad4b9f8 100644
--- a/profiles/vertebrates/MA1479.1.pwm
+++ b/profiles/vertebrates/MA1479.1.pwm
@@ -1,12 +1,12 @@
- 131 -137 -167 -27
- 131 -212 -128 -18
- -66 -191 -302 158
- -258 -167 -110 161
- -10000 -420 198 -10000
- 107 29 -777 -57
- -141 -173 -524 172
- 198 -520 -10000 -547
- -10000 200 -677 -10000
- 182 -10000 -262 -176
- -49 -104 -209 136
- -62 -63 -51 100
+ 128 -131 -158 -26
+ 128 -198 -122 -17
+ -64 -181 -277 155
+ -239 -159 -105 158
+ -485 -352 194 -485
+ 104 28 -466 -55
+ -134 -163 -419 169
+ 194 -403 -484 -414
+ -483 196 -451 -483
+ 179 -500 -241 -165
+ -48 -101 -198 134
+ -59 -60 -49 98
diff --git a/profiles/vertebrates/MA1480.1.pwm b/profiles/vertebrates/MA1480.1.pwm
index e69de29..02d0e97 100644
--- a/profiles/vertebrates/MA1480.1.pwm
+++ b/profiles/vertebrates/MA1480.1.pwm
@@ -0,0 +1,10 @@
+ 112 -59 -50 -116
+ -152 -141 164 -258
+ 135 29 -408 -253
+ -645 -645 -645 199
+ 145 -84 -146 -152
+ 199 -645 -645 -645
+ -648 -648 -331 195
+ -130 174 -338 -277
+ -330 141 -206 1
+ -49 47 8 -25
diff --git a/profiles/vertebrates/MA1481.1.pwm b/profiles/vertebrates/MA1481.1.pwm
index e0ec6f8..0ad3212 100644
--- a/profiles/vertebrates/MA1481.1.pwm
+++ b/profiles/vertebrates/MA1481.1.pwm
@@ -1,8 +1,8 @@
- -200 80 -80 51
- -198 49 -194 106
- 177 -312 -109 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -229 -425 190
- 189 -788 -205 -479
- -25 32 10 -26
+ -197 80 -79 51
+ -195 49 -191 105
+ 177 -304 -108 -711
+ 199 -688 -688 -688
+ -688 -688 -688 199
+ -697 -224 -406 190
+ 189 -637 -202 -452
+ -25 32 10 -26
diff --git a/profiles/vertebrates/MA1483.1.pwm b/profiles/vertebrates/MA1483.1.pwm
index fbf5bd2..b03b7dd 100644
--- a/profiles/vertebrates/MA1483.1.pwm
+++ b/profiles/vertebrates/MA1483.1.pwm
@@ -1,12 +1,12 @@
- 97 -80 -59 -30
- 161 -175 -396 -76
- -29 145 -293 -165
- -338 184 -165 -838
- -315 196 -1003 -955
- -10000 -10000 200 -10000
- -792 -1132 200 -932
- 200 -999 -973 -10000
- 199 -973 -10000 -584
- -93 -396 177 -10000
- -269 -105 -511 174
- 66 -89 52 -115
+ 96 -80 -58 -30
+ 160 -173 -385 -75
+ -28 144 -288 -164
+ -330 183 -163 -671
+ -307 195 -695 -689
+ -709 -709 199 -709
+ -645 -702 199 -682
+ 199 -691 -688 -709
+ 199 -689 -710 -535
+ -93 -384 176 -732
+ -264 -104 -484 173
+ 66 -88 51 -114
diff --git a/profiles/vertebrates/MA1483.2.pwm b/profiles/vertebrates/MA1483.2.pwm
index 51e7a86..1d08e2b 100644
--- a/profiles/vertebrates/MA1483.2.pwm
+++ b/profiles/vertebrates/MA1483.2.pwm
@@ -1,12 +1,12 @@
- 106 -121 -63 -26
- 121 -154 -187 10
- 23 106 -207 -98
- -191 166 -84 -687
- -85 178 -673 -1100
- -1046 -991 200 -1020
- -997 -1037 200 -1004
- 200 -870 -1105 -706
- 197 -854 -904 -358
- -4 -255 151 -628
- -213 -106 -255 164
- 72 -98 29 -69
+ 106 -120 -63 -26
+ 120 -153 -186 10
+ 23 106 -205 -98
+ -189 166 -84 -644
+ -85 178 -631 -807
+ -780 -770 199 -776
+ -772 -779 199 -773
+ 199 -734 -789 -647
+ 196 -730 -749 -352
+ -4 -253 151 -601
+ -212 -105 -253 164
+ 72 -97 29 -69
diff --git a/profiles/vertebrates/MA1484.1.pwm b/profiles/vertebrates/MA1484.1.pwm
index e69de29..3668439 100644
--- a/profiles/vertebrates/MA1484.1.pwm
+++ b/profiles/vertebrates/MA1484.1.pwm
@@ -0,0 +1,10 @@
+ 33 -56 44 -50
+ 166 -339 -74 -280
+ -280 183 -181 -715
+ -179 189 -710 -710
+ -672 -700 199 -679
+ -683 -672 199 -700
+ 199 -652 -672 -700
+ 146 -415 -699 24
+ -46 -700 170 -700
+ -699 95 -323 96
diff --git a/profiles/vertebrates/MA1485.1.pwm b/profiles/vertebrates/MA1485.1.pwm
index 6b5f445..a78f4c4 100644
--- a/profiles/vertebrates/MA1485.1.pwm
+++ b/profiles/vertebrates/MA1485.1.pwm
@@ -1,14 +1,14 @@
- -189 -688 189 -515
- -408 140 -445 33
- 96 -160 78 -664
- 106 34 -124 -211
- -769 200 -10000 -10000
- 198 -590 -599 -570
- -10000 -338 175 -91
- -121 181 -416 -10000
- -653 -586 -516 198
- -10000 -10000 200 -10000
- -255 -93 -112 151
- -617 23 -32 101
- 152 -367 -7 -343
- -10000 200 -10000 -727
+ -187 -616 188 -490
+ -395 139 -428 33
+ 95 -158 78 -598
+ 105 34 -122 -209
+ -654 199 -739 -739
+ 197 -547 -554 -532
+ -764 -332 175 -90
+ -120 181 -404 -758
+ -591 -545 -489 197
+ -739 -739 199 -739
+ -250 -92 -111 150
+ -566 23 -32 101
+ 152 -360 -7 -337
+ -739 199 -739 -634
diff --git a/profiles/vertebrates/MA1487.1.pwm b/profiles/vertebrates/MA1487.1.pwm
index c64ea8f..34a5156 100644
--- a/profiles/vertebrates/MA1487.1.pwm
+++ b/profiles/vertebrates/MA1487.1.pwm
@@ -1,15 +1,15 @@
- -162 80 -1 -10
- 28 68 25 -10000
- -232 69 -228 99
- -16 -10000 -10000 164
- 191 -356 -256 -10000
- 145 -209 -207 -33
- 157 -10000 3 -10000
- -10000 96 -10000 103
- 198 -407 -10000 -10000
- 198 -439 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 200 -10000 -10000
- 199 -10000 -580 -10000
- 126 -137 -82 -62
- -16 12 -73 50
+ -150 78 -1 -9
+ 27 66 24 -516
+ -213 67 -209 96
+ -16 -501 -501 160
+ 187 -307 -232 -474
+ 142 -197 -195 -32
+ 155 -506 3 -506
+ -465 94 -465 100
+ 194 -338 -467 -467
+ 194 -356 -467 -467
+ 196 -465 -465 -465
+ -465 196 -465 -465
+ 195 -466 -414 -466
+ 123 -130 -79 -59
+ -16 11 -69 49
diff --git a/profiles/vertebrates/MA1487.2.pwm b/profiles/vertebrates/MA1487.2.pwm
index e69de29..feb6409 100644
--- a/profiles/vertebrates/MA1487.2.pwm
+++ b/profiles/vertebrates/MA1487.2.pwm
@@ -0,0 +1,14 @@
+ -2 65 19 -170
+ -305 100 -354 84
+ -44 -381 -579 167
+ 178 -442 -113 -399
+ 159 -274 -271 -52
+ 145 -266 9 -432
+ -65 18 -491 113
+ 182 -124 -593 -469
+ 192 -299 -583 -362
+ 197 -578 -442 -509
+ -581 194 -581 -304
+ 191 -417 -468 -275
+ 136 -97 -155 -78
+ 57 -40 -93 30
diff --git a/profiles/vertebrates/MA1489.1.pwm b/profiles/vertebrates/MA1489.1.pwm
index e69de29..76befcd 100644
--- a/profiles/vertebrates/MA1489.1.pwm
+++ b/profiles/vertebrates/MA1489.1.pwm
@@ -0,0 +1,8 @@
+ -393 -393 193 -393
+ -393 -393 -393 193
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ 193 -393 -393 -393
+ -393 193 -393 -393
+ 193 -393 -393 -393
+ 193 -393 -393 -393
diff --git a/profiles/vertebrates/MA1491.1.pwm b/profiles/vertebrates/MA1491.1.pwm
index a9d17b3..497edbb 100644
--- a/profiles/vertebrates/MA1491.1.pwm
+++ b/profiles/vertebrates/MA1491.1.pwm
@@ -1,15 +1,15 @@
- 43 20 16 -139
- -485 -446 187 -195
- 152 -60 -109 -1098
- -615 199 -943 -10000
- -943 200 -1224 -10000
- 177 -127 -478 -293
- -1065 200 -1024 -1224
- -21 165 -1249 -1149
- -322 194 -836 -393
- 189 -10000 -176 -10000
- -139 164 -208 -193
- -39 -17 106 -192
- 36 -97 -29 47
- -4 76 -151 -2
- -259 -113 162 -173
+ 43 20 16 -138
+ -459 -426 186 -192
+ 152 -60 -108 -723
+ -553 199 -677 -702
+ -677 199 -698 -702
+ 177 -125 -453 -286
+ -691 199 -687 -698
+ -21 164 -724 -720
+ -314 193 -657 -379
+ 188 -708 -174 -708
+ -138 164 -205 -191
+ -39 -17 106 -189
+ 36 -96 -29 47
+ -4 76 -149 -2
+ -254 -112 161 -171
diff --git a/profiles/vertebrates/MA1491.2.pwm b/profiles/vertebrates/MA1491.2.pwm
index fe50ed5..fc6e651 100644
--- a/profiles/vertebrates/MA1491.2.pwm
+++ b/profiles/vertebrates/MA1491.2.pwm
@@ -1,16 +1,16 @@
- 60 -61 74 -273
- -790 -949 198 -449
- 188 -266 -262 -1118
- -906 200 -10000 -10000
- -1106 200 -1106 -1106
- 194 -323 -794 -465
- -1106 200 -10000 -1106
- -155 187 -1106 -1106
- -621 199 -1106 -698
- 199 -1007 -534 -1007
- -198 187 -463 -471
- -188 -198 177 -402
- 64 -319 -269 113
- 8 78 -268 10
- -566 -355 194 -407
- 32 46 -178 12
+ 60 -60 74 -266
+ -606 -636 197 -419
+ 187 -259 -255 -657
+ -629 199 -651 -651
+ -645 199 -645 -645
+ 193 -311 -610 -432
+ -645 199 -651 -645
+ -152 186 -645 -645
+ -536 198 -646 -574
+ 198 -640 -482 -640
+ -193 186 -430 -436
+ -184 -194 176 -383
+ 63 -308 -261 112
+ 8 77 -260 10
+ -505 -339 193 -385
+ 31 46 -175 11
diff --git a/profiles/vertebrates/MA1493.1.pwm b/profiles/vertebrates/MA1493.1.pwm
index e69de29..907c0b2 100644
--- a/profiles/vertebrates/MA1493.1.pwm
+++ b/profiles/vertebrates/MA1493.1.pwm
@@ -0,0 +1,10 @@
+ -299 -164 168 -152
+ -261 -170 176 -283
+ -251 180 -239 -265
+ 189 -446 -306 -287
+ -403 187 -308 -251
+ -297 -279 188 -447
+ -451 -332 -185 184
+ -440 -440 195 -440
+ -174 -228 -456 179
+ -45 45 -440 89
diff --git a/profiles/vertebrates/MA1494.1.pwm b/profiles/vertebrates/MA1494.1.pwm
index e69de29..d3fa2cc 100644
--- a/profiles/vertebrates/MA1494.1.pwm
+++ b/profiles/vertebrates/MA1494.1.pwm
@@ -0,0 +1,15 @@
+ 37 -114 97 -177
+ 83 -367 105 -367
+ -418 -434 193 -367
+ -435 -453 -289 192
+ -111 151 -228 -106
+ -370 190 -406 -303
+ 194 -471 -366 -471
+ 194 -450 -432 -416
+ 195 -471 -389 -471
+ -470 -470 196 -449
+ -429 -483 182 -140
+ -475 -406 -253 190
+ -440 187 -374 -212
+ 145 -390 16 -348
+ 9 40 -65 -3
diff --git a/profiles/vertebrates/MA1495.1.pwm b/profiles/vertebrates/MA1495.1.pwm
index 75842ce..96fac55 100644
--- a/profiles/vertebrates/MA1495.1.pwm
+++ b/profiles/vertebrates/MA1495.1.pwm
@@ -1,8 +1,8 @@
- -67 28 53 -48
- -10000 -53 -10000 173
- 146 -37 -111 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -107 -28 143
- 172 -10000 -51 -10000
- -66 60 27 -65
+ -66 27 52 -47
+ -660 -53 -660 172
+ 146 -36 -109 -686
+ 199 -633 -633 -633
+ -633 -633 -633 199
+ -689 -105 -27 142
+ 171 -661 -50 -661
+ -65 60 27 -64
diff --git a/profiles/vertebrates/MA1496.1.pwm b/profiles/vertebrates/MA1496.1.pwm
index e69de29..89eaf9e 100644
--- a/profiles/vertebrates/MA1496.1.pwm
+++ b/profiles/vertebrates/MA1496.1.pwm
@@ -0,0 +1,8 @@
+ 56 -87 88 -280
+ -603 17 -603 151
+ 43 123 -183 -565
+ 163 -590 -19 -590
+ -558 -558 -360 195
+ -574 -194 -195 179
+ 176 -219 -141 -577
+ 5 -5 45 -65
diff --git a/profiles/vertebrates/MA1497.1.pwm b/profiles/vertebrates/MA1497.1.pwm
index 838aae2..461c14a 100644
--- a/profiles/vertebrates/MA1497.1.pwm
+++ b/profiles/vertebrates/MA1497.1.pwm
@@ -1,10 +1,10 @@
- -50 -17 60 -17
- -115 -78 128 -89
- -441 68 -421 120
- 112 18 -200 -116
- 170 -157 -129 -765
- -10000 -10000 -10000 200
- -37 -341 -216 154
- 177 -449 -207 -167
- 58 -39 -14 -27
- -54 45 17 -27
+ -49 -17 59 -17
+ -114 -77 127 -88
+ -408 68 -392 119
+ 111 18 -197 -115
+ 169 -154 -127 -602
+ -628 -628 -628 199
+ -37 -328 -212 153
+ 176 -419 -202 -164
+ 58 -38 -14 -27
+ -54 44 16 -27
diff --git a/profiles/vertebrates/MA1498.1.pwm b/profiles/vertebrates/MA1498.1.pwm
index e69de29..f3ac23f 100644
--- a/profiles/vertebrates/MA1498.1.pwm
+++ b/profiles/vertebrates/MA1498.1.pwm
@@ -0,0 +1,8 @@
+ -111 -33 111 -79
+ -595 112 -535 84
+ 104 70 -225 -309
+ 190 -350 -474 -278
+ -594 -594 -594 198
+ -290 -624 -66 169
+ 198 -594 -594 -594
+ -35 69 -11 -58
diff --git a/profiles/vertebrates/MA1498.2.pwm b/profiles/vertebrates/MA1498.2.pwm
index e69de29..cbe09d7 100644
--- a/profiles/vertebrates/MA1498.2.pwm
+++ b/profiles/vertebrates/MA1498.2.pwm
@@ -0,0 +1,8 @@
+ -46 18 71 -98
+ -111 107 -284 38
+ 91 62 -212 -150
+ 180 -338 -185 -282
+ -632 -643 -643 199
+ -124 -238 -667 175
+ 174 -227 -314 -155
+ 64 5 -31 -74
diff --git a/profiles/vertebrates/MA1499.1.pwm b/profiles/vertebrates/MA1499.1.pwm
index 1d872de..01f02f1 100644
--- a/profiles/vertebrates/MA1499.1.pwm
+++ b/profiles/vertebrates/MA1499.1.pwm
@@ -1,8 +1,8 @@
- 71 -106 62 -149
- -10000 -41 -10000 170
- 67 127 -10000 -10000
- 196 -10000 -314 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -311 196
- 199 -10000 -538 -10000
- 57 -108 66 -110
+ 70 -105 61 -147
+ -681 -41 -681 169
+ 67 126 -652 -652
+ 195 -656 -303 -656
+ -652 -652 -652 199
+ -656 -656 -300 195
+ 198 -652 -485 -652
+ 56 -106 65 -108
diff --git a/profiles/vertebrates/MA1500.1.pwm b/profiles/vertebrates/MA1500.1.pwm
index 487b191..64e1b18 100644
--- a/profiles/vertebrates/MA1500.1.pwm
+++ b/profiles/vertebrates/MA1500.1.pwm
@@ -1,8 +1,8 @@
- -87 -1 -5 58
- -10000 -128 -10000 184
- 174 -152 -10000 -171
- 200 -10000 -10000 -10000
- -10000 -208 -134 175
- -285 -165 51 109
- 101 -10000 99 -10000
- -151 131 -98 -57
+ -86 -1 -5 58
+ -629 -126 -629 183
+ 173 -148 -639 -168
+ 198 -614 -614 -614
+ -638 -202 -131 174
+ -279 -163 50 108
+ 100 -614 97 -614
+ -148 130 -97 -57
diff --git a/profiles/vertebrates/MA1501.1.pwm b/profiles/vertebrates/MA1501.1.pwm
index 16e5315..07bfd37 100644
--- a/profiles/vertebrates/MA1501.1.pwm
+++ b/profiles/vertebrates/MA1501.1.pwm
@@ -1,10 +1,10 @@
- -14 -52 88 -84
- -10000 -10000 186 -139
- -10000 21 -260 142
- 166 -24 -10000 -10000
- 195 -289 -10000 -10000
- -10000 -10000 -279 195
- -153 -624 -10000 186
- 176 -10000 -70 -10000
- 65 -33 37 -154
- -65 77 27 -117
+ -13 -50 85 -80
+ -495 -495 182 -132
+ -538 21 -244 140
+ 163 -23 -515 -515
+ 191 -260 -486 -486
+ -487 -487 -253 191
+ -144 -447 -495 183
+ 173 -505 -67 -505
+ 63 -31 36 -145
+ -62 75 26 -111
diff --git a/profiles/vertebrates/MA1502.1.pwm b/profiles/vertebrates/MA1502.1.pwm
index e6884dc..2cd1f24 100644
--- a/profiles/vertebrates/MA1502.1.pwm
+++ b/profiles/vertebrates/MA1502.1.pwm
@@ -1,8 +1,8 @@
- -110 -106 131 -81
- -10000 119 -10000 78
- 117 77 -448 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -222 -10000 -129 176
- 200 -10000 -10000 -10000
- 7 61 -43 -55
+ -107 -104 130 -80
+ -600 118 -600 77
+ 117 76 -423 -682
+ 198 -600 -600 -600
+ -600 -600 -600 198
+ -215 -625 -126 174
+ 198 -600 -600 -600
+ 7 60 -42 -54
diff --git a/profiles/vertebrates/MA1503.1.pwm b/profiles/vertebrates/MA1503.1.pwm
index e69de29..c783655 100644
--- a/profiles/vertebrates/MA1503.1.pwm
+++ b/profiles/vertebrates/MA1503.1.pwm
@@ -0,0 +1,10 @@
+ -14 -126 141 -568
+ -538 -314 -538 194
+ -535 197 -535 -535
+ 5 -517 155 -577
+ -535 -535 -523 197
+ 165 -465 -534 -32
+ 197 -535 -535 -535
+ 193 -318 -539 -409
+ 137 -123 -176 -53
+ -14 -1 -79 60
diff --git a/profiles/vertebrates/MA1504.1.pwm b/profiles/vertebrates/MA1504.1.pwm
index 4545e77..654b1ea 100644
--- a/profiles/vertebrates/MA1504.1.pwm
+++ b/profiles/vertebrates/MA1504.1.pwm
@@ -1,8 +1,8 @@
- 32 -23 36 -69
- -400 5 -10000 154
- 72 123 -10000 -10000
- 191 -10000 -200 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 187 -10000 -154 -10000
- 34 -38 31 -46
+ 32 -23 36 -69
+ -384 5 -697 153
+ 71 123 -652 -652
+ 190 -661 -196 -661
+ -652 -652 -652 199
+ -652 -652 -652 199
+ 186 -665 -151 -665
+ 34 -38 31 -45
diff --git a/profiles/vertebrates/MA1505.1.pwm b/profiles/vertebrates/MA1505.1.pwm
index db6c7fd..fc96d73 100644
--- a/profiles/vertebrates/MA1505.1.pwm
+++ b/profiles/vertebrates/MA1505.1.pwm
@@ -1,8 +1,8 @@
- -39 -58 68 -6
- -10000 40 -10000 142
- 151 -25 -742 -173
- 200 -686 -10000 -10000
- -10000 -10000 -349 197
- -176 -504 -29 151
- 145 -10000 35 -10000
- -3 73 -66 -46
+ -39 -57 68 -6
+ -703 40 -703 142
+ 150 -25 -617 -170
+ 198 -566 -646 -646
+ -649 -649 -333 196
+ -173 -470 -29 151
+ 144 -701 34 -701
+ -3 73 -65 -45
diff --git a/profiles/vertebrates/MA1506.1.pwm b/profiles/vertebrates/MA1506.1.pwm
index e69de29..e17cb6a 100644
--- a/profiles/vertebrates/MA1506.1.pwm
+++ b/profiles/vertebrates/MA1506.1.pwm
@@ -0,0 +1,11 @@
+ 11 -111 104 -131
+ -48 -186 158 -645
+ -606 -436 -591 197
+ -457 197 -606 -606
+ -21 -631 164 -639
+ -609 -609 -285 194
+ 187 -616 -515 -172
+ 198 -605 -605 -605
+ 197 -447 -606 -558
+ 160 -168 -246 -105
+ 18 32 -124 26
diff --git a/profiles/vertebrates/MA1507.1.pwm b/profiles/vertebrates/MA1507.1.pwm
index e69de29..e88843d 100644
--- a/profiles/vertebrates/MA1507.1.pwm
+++ b/profiles/vertebrates/MA1507.1.pwm
@@ -0,0 +1,8 @@
+ 47 -27 43 -121
+ -628 4 -628 156
+ 85 112 -585 -585
+ 191 -592 -225 -592
+ -585 -585 -585 198
+ -585 -585 -585 198
+ 190 -593 -213 -593
+ 37 -68 42 -42
diff --git a/profiles/vertebrates/MA1508.1.pwm b/profiles/vertebrates/MA1508.1.pwm
index e69de29..aad2c8e 100644
--- a/profiles/vertebrates/MA1508.1.pwm
+++ b/profiles/vertebrates/MA1508.1.pwm
@@ -0,0 +1,12 @@
+ 27 -41 50 -68
+ 61 -25 7 -79
+ 156 -122 -142 -207
+ 173 -246 -149 -287
+ -198 166 -109 -310
+ 189 -353 -331 -327
+ -419 -438 194 -426
+ -263 -375 189 -408
+ 191 -333 -309 -516
+ 190 -430 -326 -313
+ 27 -70 84 -139
+ -29 13 -23 31
diff --git a/profiles/vertebrates/MA1509.1.pwm b/profiles/vertebrates/MA1509.1.pwm
index e69de29..9023f5c 100644
--- a/profiles/vertebrates/MA1509.1.pwm
+++ b/profiles/vertebrates/MA1509.1.pwm
@@ -0,0 +1,9 @@
+ 156 -235 -45 -314
+ -340 165 -349 -56
+ -568 196 -428 -441
+ -349 -524 195 -495
+ 196 -567 -567 -412
+ 178 -567 -492 -95
+ 197 -567 -449 -547
+ -567 197 -474 -567
+ -266 -88 -511 171
diff --git a/profiles/vertebrates/MA1511.1.pwm b/profiles/vertebrates/MA1511.1.pwm
index e69de29..0200bc1 100644
--- a/profiles/vertebrates/MA1511.1.pwm
+++ b/profiles/vertebrates/MA1511.1.pwm
@@ -0,0 +1,11 @@
+ -24 -120 132 -214
+ 27 120 -205 -197
+ -297 191 -529 -333
+ 175 -171 -166 -704
+ -422 196 -702 -472
+ 141 -675 30 -314
+ -707 199 -704 -711
+ -711 199 -711 -711
+ -721 184 -721 -127
+ 44 103 -317 -104
+ -245 131 -272 25
diff --git a/profiles/vertebrates/MA1511.2.pwm b/profiles/vertebrates/MA1511.2.pwm
index e69de29..1001598 100644
--- a/profiles/vertebrates/MA1511.2.pwm
+++ b/profiles/vertebrates/MA1511.2.pwm
@@ -0,0 +1,9 @@
+ -164 -486 168 -120
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -234 165 -486 -68
+ -486 -486 196 -486
+ -486 -208 144 2
+ -180 -486 183 -289
+ -180 -486 179 -218
diff --git a/profiles/vertebrates/MA1512.1.pwm b/profiles/vertebrates/MA1512.1.pwm
index e014588..be08226 100644
--- a/profiles/vertebrates/MA1512.1.pwm
+++ b/profiles/vertebrates/MA1512.1.pwm
@@ -1,11 +1,11 @@
- -28 -16 78 -82
- -18 128 -251 -94
- -194 180 -400 -230
- 178 -97 -445 -655
- -10000 199 -10000 -592
- -20 -574 158 -299
- -771 199 -700 -665
- -1117 200 -684 -836
- -10000 186 -926 -147
- 94 79 -514 -168
- -219 166 -289 -105
+ -28 -16 77 -81
+ -18 127 -244 -93
+ -190 179 -380 -225
+ 177 -95 -419 -562
+ -655 198 -655 -521
+ -19 -519 157 -291
+ -603 198 -577 -561
+ -650 198 -570 -620
+ -665 185 -643 -145
+ 94 79 -472 -165
+ -215 165 -281 -104
diff --git a/profiles/vertebrates/MA1513.1.pwm b/profiles/vertebrates/MA1513.1.pwm
index 92786e6..6414c74 100644
--- a/profiles/vertebrates/MA1513.1.pwm
+++ b/profiles/vertebrates/MA1513.1.pwm
@@ -1,11 +1,11 @@
- -126 3 96 -70
- -160 119 -43 -65
- -615 198 -505 -830
- -493 194 -309 -989
- -10000 200 -1147 -10000
- -10000 -10000 200 -10000
- -801 200 -1047 -801
- -569 195 -298 -1147
- -789 199 -483 -989
- -86 114 -56 -83
- -141 82 14 -39
+ -124 3 96 -70
+ -157 119 -42 -64
+ -543 197 -467 -633
+ -458 193 -300 -660
+ -675 199 -670 -675
+ -675 -675 199 -675
+ -625 199 -665 -625
+ -513 194 -290 -670
+ -621 198 -450 -660
+ -85 113 -55 -82
+ -139 81 14 -39
diff --git a/profiles/vertebrates/MA1514.1.pwm b/profiles/vertebrates/MA1514.1.pwm
index 2fbdc48..fcb3ef2 100644
--- a/profiles/vertebrates/MA1514.1.pwm
+++ b/profiles/vertebrates/MA1514.1.pwm
@@ -1,15 +1,15 @@
- 25 93 -119 -108
- 121 24 -197 -195
- -512 198 -597 -607
- -573 198 -618 -646
- 187 -533 -656 -167
- -650 197 -718 -418
- -46 -52 129 -300
- -91 177 -636 -452
- 118 -297 -71 -1
- -327 188 -250 -518
- -586 198 -525 -707
- -512 197 -659 -504
- 52 79 -116 -137
- -116 -83 -187 144
- -97 14 -161 104
+ 25 92 -118 -107
+ 120 24 -195 -193
+ -485 197 -553 -560
+ -534 198 -568 -586
+ 186 -504 -595 -165
+ -589 197 -629 -404
+ -46 -51 129 -296
+ -90 176 -585 -436
+ 118 -292 -70 -1
+ -321 188 -247 -492
+ -544 198 -497 -623
+ -486 197 -595 -480
+ 52 79 -115 -136
+ -115 -83 -185 144
+ -96 14 -160 104
diff --git a/profiles/vertebrates/MA1515.1.pwm b/profiles/vertebrates/MA1515.1.pwm
index e69de29..884d410 100644
--- a/profiles/vertebrates/MA1515.1.pwm
+++ b/profiles/vertebrates/MA1515.1.pwm
@@ -0,0 +1,11 @@
+ -13 25 19 -40
+ 70 -47 45 -179
+ -105 156 -161 -211
+ -173 173 -277 -208
+ 117 15 -93 -315
+ -602 196 -602 -363
+ 42 -213 119 -279
+ -601 196 -414 -488
+ -310 188 -256 -552
+ -394 180 -343 -152
+ 66 -2 -153 12
diff --git a/profiles/vertebrates/MA1516.1.pwm b/profiles/vertebrates/MA1516.1.pwm
index ea5e167..e1d7563 100644
--- a/profiles/vertebrates/MA1516.1.pwm
+++ b/profiles/vertebrates/MA1516.1.pwm
@@ -1,11 +1,11 @@
- -49 -203 130 -78
- 117 -416 75 -573
- -304 187 -260 -407
- -521 197 -548 -504
- 127 -397 57 -473
- -238 188 -913 -306
- -153 -520 182 -334
- -575 199 -845 -10000
- -703 200 -855 -10000
- -718 196 -786 -319
- 65 -10 -284 43
+ -48 -200 129 -77
+ 116 -405 74 -541
+ -299 186 -257 -397
+ -498 197 -520 -484
+ 127 -387 57 -456
+ -235 188 -732 -301
+ -152 -499 181 -328
+ -542 199 -702 -769
+ -632 199 -705 -768
+ -643 195 -679 -314
+ 65 -10 -279 43
diff --git a/profiles/vertebrates/MA1517.1.pwm b/profiles/vertebrates/MA1517.1.pwm
index e69de29..e6f8460 100644
--- a/profiles/vertebrates/MA1517.1.pwm
+++ b/profiles/vertebrates/MA1517.1.pwm
@@ -0,0 +1,11 @@
+ -30 18 19 -13
+ 55 -51 71 -227
+ -53 139 -129 -186
+ -81 150 -132 -235
+ 174 -116 -319 -319
+ -548 196 -548 -395
+ 34 -601 143 -601
+ -546 198 -546 -546
+ -395 192 -300 -552
+ -284 188 -460 -296
+ 79 27 -312 -7
diff --git a/profiles/vertebrates/MA1518.1.pwm b/profiles/vertebrates/MA1518.1.pwm
index d8e8e7f..16a73c5 100644
--- a/profiles/vertebrates/MA1518.1.pwm
+++ b/profiles/vertebrates/MA1518.1.pwm
@@ -1,8 +1,8 @@
- -48 14 49 -36
- -212 116 -285 47
- 120 -41 -69 -164
- 192 -387 -667 -280
- -10000 -10000 -10000 200
- -248 -18 -99 128
- 172 -320 -288 -111
- -31 43 6 -32
+ -47 14 48 -35
+ -208 116 -278 47
+ 120 -41 -68 -162
+ 191 -372 -578 -273
+ -680 -680 -680 199
+ -244 -18 -98 128
+ 171 -311 -281 -110
+ -30 43 6 -32
diff --git a/profiles/vertebrates/MA1518.2.pwm b/profiles/vertebrates/MA1518.2.pwm
index 62d0736..4f682d5 100644
--- a/profiles/vertebrates/MA1518.2.pwm
+++ b/profiles/vertebrates/MA1518.2.pwm
@@ -1,18 +1,18 @@
- 23 -33 21 -18
- 6 -21 38 -33
- -15 -15 38 -15
- -32 -118 -50 104
- -130 -97 128 -62
- -158 120 -80 -32
- -313 -224 -424 186
- 184 -192 -283 -524
- 194 -583 -450 -350
- -350 -450 -683 195
- -524 -283 -202 184
- 186 -450 -224 -313
- -27 -83 120 -166
- -62 128 -94 -133
- 104 -52 -113 -33
- -23 39 -10 -15
- -33 40 -24 6
- -15 22 -38 23
+ 22 -32 20 -17
+ 5 -20 37 -32
+ -15 -15 37 -15
+ -30 -110 -48 100
+ -121 -91 124 -58
+ -146 116 -76 -30
+ -270 -202 -339 181
+ 179 -175 -248 -383
+ 190 -402 -352 -295
+ -295 -352 -423 190
+ -383 -248 -183 179
+ 181 -352 -202 -270
+ -26 -78 116 -152
+ -58 124 -89 -124
+ 100 -49 -105 -32
+ -22 38 -9 -15
+ -32 39 -23 5
+ -15 21 -36 22
diff --git a/profiles/vertebrates/MA1519.1.pwm b/profiles/vertebrates/MA1519.1.pwm
index 7c1675a..9686a71 100644
--- a/profiles/vertebrates/MA1519.1.pwm
+++ b/profiles/vertebrates/MA1519.1.pwm
@@ -1,8 +1,8 @@
- -247 64 77 -85
- -10000 23 -10000 150
- 196 -329 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -367 -603 197
- 197 -10000 -351 -10000
- 62 -18 -27 -42
+ -241 64 76 -84
+ -639 23 -639 149
+ 195 -315 -643 -643
+ 199 -639 -639 -639
+ -639 -639 -639 199
+ -643 -348 -522 195
+ 196 -642 -335 -642
+ 62 -18 -26 -42
diff --git a/profiles/vertebrates/MA1520.1.pwm b/profiles/vertebrates/MA1520.1.pwm
index 5be5e50..f45237d 100644
--- a/profiles/vertebrates/MA1520.1.pwm
+++ b/profiles/vertebrates/MA1520.1.pwm
@@ -1,15 +1,15 @@
- 37 -54 -35 30
- -190 -62 -396 159
- -326 -409 194 -658
- -125 171 -403 -199
- -106 -191 -298 164
- -163 -241 148 -52
- 159 -139 -296 -106
- -115 57 74 -132
- -82 -339 -121 154
- -66 153 -262 -167
- 166 -316 -155 -136
- -198 -407 172 -138
- -403 192 -381 -357
- 156 -347 -51 -193
- 38 -38 -62 35
+ 37 -52 -34 30
+ -183 -61 -362 158
+ -305 -371 192 -511
+ -122 169 -371 -192
+ -103 -185 -283 163
+ -159 -232 147 -51
+ 157 -136 -281 -104
+ -112 56 73 -129
+ -80 -319 -118 152
+ -64 152 -251 -163
+ 164 -299 -151 -132
+ -191 -373 171 -134
+ -367 190 -350 -331
+ 154 -323 -50 -186
+ 38 -37 -61 35
diff --git a/profiles/vertebrates/MA1521.1.pwm b/profiles/vertebrates/MA1521.1.pwm
index 35986f5..795e0fb 100644
--- a/profiles/vertebrates/MA1521.1.pwm
+++ b/profiles/vertebrates/MA1521.1.pwm
@@ -1,15 +1,15 @@
- 10 -44 2 23
- -176 -30 -285 146
- -288 -344 190 -424
- -131 172 -370 -216
- -144 -142 -255 163
- -197 -246 162 -102
- 149 -72 -307 -111
- -194 78 80 -182
- -108 -350 -60 148
- -110 163 -261 -185
- 162 -255 -157 -124
- -233 -451 174 -129
- -642 192 -333 -310
- 143 -335 -22 -151
- 22 1 -47 15
+ 10 -43 2 22
+ -172 -29 -276 145
+ -279 -330 188 -398
+ -129 171 -354 -211
+ -142 -140 -248 162
+ -193 -240 161 -100
+ 148 -71 -298 -110
+ -190 78 79 -178
+ -106 -337 -60 147
+ -108 162 -254 -182
+ 161 -248 -155 -122
+ -227 -422 173 -127
+ -547 190 -319 -299
+ 142 -322 -22 -148
+ 22 1 -46 14
diff --git a/profiles/vertebrates/MA1522.1.pwm b/profiles/vertebrates/MA1522.1.pwm
index e69de29..eb760a0 100644
--- a/profiles/vertebrates/MA1522.1.pwm
+++ b/profiles/vertebrates/MA1522.1.pwm
@@ -0,0 +1,11 @@
+ -60 46 18 -27
+ -104 43 45 -32
+ -632 198 -517 -607
+ -557 195 -319 -695
+ -583 196 -357 -669
+ -577 195 -333 -690
+ -669 -695 -456 198
+ -498 198 -662 -677
+ -614 198 -491 -695
+ -174 131 -108 -42
+ -89 84 -56 -1
diff --git a/profiles/vertebrates/MA1523.1.pwm b/profiles/vertebrates/MA1523.1.pwm
index e69de29..ae95cbf 100644
--- a/profiles/vertebrates/MA1523.1.pwm
+++ b/profiles/vertebrates/MA1523.1.pwm
@@ -0,0 +1,10 @@
+ -128 10 102 -104
+ -111 -23 -18 85
+ 40 12 0 -75
+ -184 151 -273 -45
+ 194 -503 -470 -343
+ -273 181 -288 -228
+ -252 -411 -503 190
+ -223 176 -280 -192
+ 160 -80 -301 -194
+ 12 116 -186 -131
diff --git a/profiles/vertebrates/MA1524.1.pwm b/profiles/vertebrates/MA1524.1.pwm
index e69de29..e7c8a4b 100644
--- a/profiles/vertebrates/MA1524.1.pwm
+++ b/profiles/vertebrates/MA1524.1.pwm
@@ -0,0 +1,12 @@
+ -41 38 2 -10
+ 74 -164 83 -212
+ -179 143 -53 -166
+ -625 198 -540 -625
+ 190 -633 -211 -633
+ 44 -147 -376 114
+ 102 -314 -116 49
+ -576 -246 -547 192
+ -625 -569 198 -625
+ -221 -79 64 72
+ -198 63 -48 56
+ -20 31 16 -37
diff --git a/profiles/vertebrates/MA1524.2.pwm b/profiles/vertebrates/MA1524.2.pwm
index 6920520..a637449 100644
--- a/profiles/vertebrates/MA1524.2.pwm
+++ b/profiles/vertebrates/MA1524.2.pwm
@@ -1,16 +1,16 @@
- 39 -50 43 -64
- 3 -56 68 -51
- 62 -176 62 -66
- 51 -269 126 -508
- 142 -8 -156 -476
- -10000 199 -608 -708
- 199 -550 -10000 -608
- 176 -408 -138 -262
- 199 -508 -10000 -708
- -291 -450 -550 193
- -708 -608 197 -408
- -476 -408 192 -299
- -187 5 -144 122
- -38 -26 60 -18
- 15 -21 17 -14
- -15 22 -12 2
+ 37 -47 41 -61
+ 3 -53 66 -49
+ 60 -162 60 -62
+ 49 -240 122 -385
+ 138 -8 -145 -371
+ -460 195 -418 -437
+ 194 -400 -460 -418
+ 172 -335 -129 -234
+ 194 -385 -460 -437
+ -257 -358 -400 188
+ -437 -418 193 -335
+ -371 -335 187 -263
+ -172 5 -134 118
+ -36 -25 58 -17
+ 14 -20 16 -13
+ -14 21 -11 2
diff --git a/profiles/vertebrates/MA1525.1.pwm b/profiles/vertebrates/MA1525.1.pwm
index e69de29..36f9a49 100644
--- a/profiles/vertebrates/MA1525.1.pwm
+++ b/profiles/vertebrates/MA1525.1.pwm
@@ -0,0 +1,10 @@
+ 59 -24 -17 -40
+ 113 -252 26 -121
+ -331 46 -593 133
+ -590 -590 198 -590
+ -590 -590 198 -590
+ 197 -428 -591 -591
+ 198 -590 -590 -590
+ 157 -42 -334 -241
+ 70 29 -58 -104
+ 6 -77 -159 103
diff --git a/profiles/vertebrates/MA1525.2.pwm b/profiles/vertebrates/MA1525.2.pwm
index e69de29..17e47cd 100644
--- a/profiles/vertebrates/MA1525.2.pwm
+++ b/profiles/vertebrates/MA1525.2.pwm
@@ -0,0 +1,10 @@
+ 89 -33 -62 -50
+ 125 -203 -20 -98
+ -554 52 -478 133
+ -629 -629 199 -629
+ -629 -629 199 -629
+ 199 -629 -629 -629
+ 199 -629 -629 -629
+ 187 -202 -491 -391
+ 83 70 -178 -176
+ 60 -47 -349 75
diff --git a/profiles/vertebrates/MA1527.1.pwm b/profiles/vertebrates/MA1527.1.pwm
index e69de29..28e3149 100644
--- a/profiles/vertebrates/MA1527.1.pwm
+++ b/profiles/vertebrates/MA1527.1.pwm
@@ -0,0 +1,17 @@
+ -40 8 51 -40
+ -207 -26 -329 150
+ -552 -552 -501 197
+ -552 -552 198 -552
+ -552 -520 197 -552
+ -234 191 -559 -559
+ 39 -95 38 -20
+ -43 41 -10 0
+ -25 13 35 -34
+ -15 -46 72 -47
+ -171 -100 -269 160
+ -552 -552 198 -552
+ -553 197 -446 -553
+ -520 197 -552 -552
+ 198 -552 -552 -552
+ 91 -425 84 -182
+ -53 38 28 -35
diff --git a/profiles/vertebrates/MA1528.1.pwm b/profiles/vertebrates/MA1528.1.pwm
index 3b74fd8..8aa2187 100644
--- a/profiles/vertebrates/MA1528.1.pwm
+++ b/profiles/vertebrates/MA1528.1.pwm
@@ -1,17 +1,17 @@
- -45 -2 61 -42
- -69 -90 -110 125
- -531 -444 -107 179
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- -141 184 -10000 -479
- 71 -120 23 -41
- -47 45 -17 4
- -50 14 47 -30
- -34 -78 87 -33
- -169 -131 -200 160
- -10000 -10000 196 -328
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- 183 -140 -628 -396
- 55 -140 66 -78
- -60 29 40 -33
+ -44 -2 61 -42
+ -68 -89 -110 125
+ -497 -425 -106 178
+ -698 -698 199 -698
+ -698 -698 199 -698
+ -139 184 -714 -454
+ 71 -118 23 -41
+ -47 45 -17 4
+ -50 14 46 -30
+ -34 -77 87 -33
+ -167 -130 -198 160
+ -702 -702 195 -318
+ -698 199 -698 -698
+ -698 199 -698 -698
+ 182 -138 -566 -382
+ 54 -138 66 -77
+ -60 29 40 -33
diff --git a/profiles/vertebrates/MA1529.1.pwm b/profiles/vertebrates/MA1529.1.pwm
index e69de29..c08ea96 100644
--- a/profiles/vertebrates/MA1529.1.pwm
+++ b/profiles/vertebrates/MA1529.1.pwm
@@ -0,0 +1,18 @@
+ -14 -100 86 -36
+ -57 -151 111 -30
+ -79 -257 150 -122
+ -12 20 -12 1
+ 3 149 -296 -487
+ -145 -148 152 -131
+ -707 199 -707 -697
+ 199 -715 -640 -711
+ -708 -125 176 -244
+ -337 181 -133 -726
+ -715 -669 -704 199
+ -715 -707 199 -715
+ -297 185 -420 -218
+ -449 -453 192 -284
+ -227 30 -192 120
+ -77 150 -241 -134
+ 5 112 -195 -89
+ -56 107 -122 -33
diff --git a/profiles/vertebrates/MA1530.1.pwm b/profiles/vertebrates/MA1530.1.pwm
index e69de29..d7a1dae 100644
--- a/profiles/vertebrates/MA1530.1.pwm
+++ b/profiles/vertebrates/MA1530.1.pwm
@@ -0,0 +1,9 @@
+ -30 65 65 -457
+ -699 67 -699 126
+ -354 173 -188 -165
+ 199 -627 -627 -627
+ -627 -627 -627 199
+ -636 -193 -636 189
+ 185 -641 -141 -641
+ 122 -188 -289 34
+ 81 -33 -95 -11
diff --git a/profiles/vertebrates/MA1531.1.pwm b/profiles/vertebrates/MA1531.1.pwm
index 47c218c..886cdc9 100644
--- a/profiles/vertebrates/MA1531.1.pwm
+++ b/profiles/vertebrates/MA1531.1.pwm
@@ -1,15 +1,15 @@
- 89 -229 94 -535
- -684 -984 185 -134
- -503 -10000 199 -712
- -10000 -336 -36 164
- -10000 128 -1040 65
- 200 -969 -969 -788
- -140 -41 143 -245
- -644 -389 -303 193
- 109 -419 85 -725
- -10000 -10000 178 -79
- -769 -10000 200 -811
- -322 -221 -150 173
- -1078 191 -430 -235
- 181 -888 -104 -656
- 2 -11 13 -6
+ 88 -222 93 -478
+ -563 -631 183 -132
+ -454 -630 197 -565
+ -664 -323 -35 163
+ -699 128 -686 64
+ 198 -616 -616 -588
+ -137 -40 141 -237
+ -541 -367 -291 191
+ 109 -390 84 -571
+ -650 -650 176 -78
+ -583 -629 198 -593
+ -310 -215 -148 172
+ -631 190 -401 -228
+ 180 -623 -102 -552
+ 2 -10 13 -6
diff --git a/profiles/vertebrates/MA1532.1.pwm b/profiles/vertebrates/MA1532.1.pwm
index e69de29..93fdff5 100644
--- a/profiles/vertebrates/MA1532.1.pwm
+++ b/profiles/vertebrates/MA1532.1.pwm
@@ -0,0 +1,15 @@
+ 67 -183 98 -268
+ -359 -551 154 -1
+ -305 -485 189 -274
+ -509 -245 -24 156
+ -389 63 -496 123
+ 187 -529 -349 -215
+ -78 -45 104 -67
+ -270 -190 -137 167
+ 81 -328 102 -310
+ -462 -576 141 36
+ -309 -482 192 -394
+ -192 -203 -100 158
+ -386 140 -212 9
+ 149 -432 -7 -249
+ -8 -55 14 35
diff --git a/profiles/vertebrates/MA1532.2.pwm b/profiles/vertebrates/MA1532.2.pwm
index 41b973c..5001095 100644
--- a/profiles/vertebrates/MA1532.2.pwm
+++ b/profiles/vertebrates/MA1532.2.pwm
@@ -1,15 +1,15 @@
- -435 -313 -159 181
- 95 -404 99 -591
- -792 -755 188 -175
- -716 -958 200 -869
- -915 -505 -188 189
- -920 99 -1020 101
- 199 -10000 -1290 -563
- -206 -109 164 -247
- -785 -506 -400 196
- 106 -562 92 -741
- -813 -947 170 -43
- -587 -757 199 -780
- -342 -282 -167 179
- -860 180 -414 -116
- 177 -856 -83 -495
+ -424 -308 -158 181
+ 95 -395 99 -560
+ -694 -675 188 -174
+ -649 -751 199 -725
+ -744 -488 -186 188
+ -741 98 -764 101
+ 199 -791 -786 -536
+ -204 -108 163 -245
+ -689 -488 -391 196
+ 106 -543 92 -682
+ -713 -764 170 -43
+ -557 -673 199 -686
+ -337 -279 -166 178
+ -727 180 -405 -115
+ 176 -727 -83 -479
diff --git a/profiles/vertebrates/MA1533.1.pwm b/profiles/vertebrates/MA1533.1.pwm
index e69de29..397fe07 100644
--- a/profiles/vertebrates/MA1533.1.pwm
+++ b/profiles/vertebrates/MA1533.1.pwm
@@ -0,0 +1,17 @@
+ 47 -105 40 -29
+ -268 42 -194 117
+ -193 -380 183 -313
+ 140 -55 -122 -196
+ 149 11 -414 -414
+ -283 188 -337 -375
+ -217 19 -288 132
+ -184 101 29 -105
+ 29 -41 42 -55
+ 64 -76 -4 -18
+ -371 16 -371 145
+ -110 -328 168 -208
+ 151 -41 -194 -281
+ 154 -8 -342 -409
+ -374 189 -374 -282
+ -338 33 -244 130
+ -163 96 -29 -14
diff --git a/profiles/vertebrates/MA1534.1.pwm b/profiles/vertebrates/MA1534.1.pwm
index e69de29..6a3633e 100644
--- a/profiles/vertebrates/MA1534.1.pwm
+++ b/profiles/vertebrates/MA1534.1.pwm
@@ -0,0 +1,9 @@
+ 96 -140 11 -74
+ -609 -42 -800 169
+ -105 -645 181 -789
+ 189 -229 -503 -395
+ 191 -209 -778 -778
+ -770 199 -770 -770
+ -775 -271 -775 194
+ -25 -12 -234 103
+ -46 -90 -176 129
diff --git a/profiles/vertebrates/MA1535.1.pwm b/profiles/vertebrates/MA1535.1.pwm
index e69de29..eb26c59 100644
--- a/profiles/vertebrates/MA1535.1.pwm
+++ b/profiles/vertebrates/MA1535.1.pwm
@@ -0,0 +1,9 @@
+ 8 24 -27 -11
+ 41 -129 87 -119
+ 97 -331 93 -496
+ -663 -663 195 -296
+ -659 -659 199 -659
+ -663 -663 -308 195
+ -663 194 -286 -663
+ 175 -682 -72 -682
+ -7 21 -24 5
diff --git a/profiles/vertebrates/MA1536.1.pwm b/profiles/vertebrates/MA1536.1.pwm
index 15e1f8f..3e9ab0f 100644
--- a/profiles/vertebrates/MA1536.1.pwm
+++ b/profiles/vertebrates/MA1536.1.pwm
@@ -1,8 +1,8 @@
- 42 -58 46 -70
- 108 -275 80 -10000
- -10000 -442 188 -191
- -10000 -10000 167 -29
- -10000 -10000 -167 188
- -10000 159 -191 -49
- 156 -10000 7 -10000
- 12 3 -34 14
+ 42 -58 46 -70
+ 108 -269 79 -706
+ -712 -422 188 -188
+ -734 -734 166 -29
+ -712 -712 -165 187
+ -741 159 -189 -48
+ 155 -744 7 -744
+ 12 3 -34 14
diff --git a/profiles/vertebrates/MA1537.1.pwm b/profiles/vertebrates/MA1537.1.pwm
index e69de29..d44d311 100644
--- a/profiles/vertebrates/MA1537.1.pwm
+++ b/profiles/vertebrates/MA1537.1.pwm
@@ -0,0 +1,15 @@
+ 52 -88 66 -115
+ 123 -417 64 -473
+ -460 -570 194 -344
+ -410 -663 194 -348
+ -734 -413 -270 192
+ -733 188 -375 -202
+ 197 -734 -373 -703
+ 175 -520 -157 -187
+ 189 -659 -183 -670
+ -714 -749 199 -633
+ -491 -752 196 -401
+ -707 -353 -227 189
+ -688 177 -265 -125
+ 172 -499 -72 -375
+ 10 16 -21 -8
diff --git a/profiles/vertebrates/MA1538.1.pwm b/profiles/vertebrates/MA1538.1.pwm
index 5accac0..8e2198f 100644
--- a/profiles/vertebrates/MA1538.1.pwm
+++ b/profiles/vertebrates/MA1538.1.pwm
@@ -1,15 +1,15 @@
- 91 -165 53 -149
- 143 -361 19 -354
- -452 -306 180 -150
- -363 -436 193 -379
- -545 -347 -205 187
- -556 190 -402 -246
- 147 -395 22 -780
- -11 -4 -3 17
- -10000 -336 -414 194
- -348 -592 196 -624
- 196 -325 -10000 -10000
- -10000 198 -980 -431
- -285 190 -365 -424
- -398 7 -482 151
- -151 42 -210 105
+ 90 -160 53 -145
+ 141 -337 19 -331
+ -411 -291 179 -146
+ -338 -397 191 -352
+ -472 -326 -199 185
+ -477 188 -371 -236
+ 145 -364 22 -557
+ -11 -4 -3 17
+ -594 -316 -379 193
+ -326 -493 194 -508
+ 194 -306 -592 -592
+ -590 196 -581 -391
+ -271 188 -341 -388
+ -367 7 -428 149
+ -147 42 -202 104
diff --git a/profiles/vertebrates/MA1539.1.pwm b/profiles/vertebrates/MA1539.1.pwm
index e69de29..62aede5 100644
--- a/profiles/vertebrates/MA1539.1.pwm
+++ b/profiles/vertebrates/MA1539.1.pwm
@@ -0,0 +1,15 @@
+ 110 -197 34 -162
+ 159 -580 -8 -597
+ -569 -673 197 -431
+ -553 -626 197 -413
+ -584 -486 -345 195
+ -664 191 -369 -273
+ 161 -549 -17 -535
+ -23 18 2 1
+ -504 -310 -503 193
+ -291 -374 192 -642
+ 195 -344 -451 -665
+ -402 197 -678 -557
+ -477 198 -636 -587
+ -589 -5 -580 159
+ -166 35 -199 111
diff --git a/profiles/vertebrates/MA1540.1.pwm b/profiles/vertebrates/MA1540.1.pwm
index e69de29..a390f40 100644
--- a/profiles/vertebrates/MA1540.1.pwm
+++ b/profiles/vertebrates/MA1540.1.pwm
@@ -0,0 +1,11 @@
+ -42 -5 30 8
+ -70 19 -70 71
+ -365 169 -80 -307
+ 188 -598 -188 -569
+ 185 -298 -289 -284
+ -591 -591 195 -336
+ -588 -588 198 -588
+ -96 11 -224 113
+ -387 169 -244 -94
+ 137 -262 9 -239
+ -27 36 -32 13
diff --git a/profiles/vertebrates/MA1541.1.pwm b/profiles/vertebrates/MA1541.1.pwm
index 3a96f35..40d8db0 100644
--- a/profiles/vertebrates/MA1541.1.pwm
+++ b/profiles/vertebrates/MA1541.1.pwm
@@ -1,17 +1,17 @@
- -39 -19 48 -5
- -95 -6 -50 86
- -159 126 -13 -150
- 191 -590 -244 -444
- 169 -161 -195 -244
- -424 -477 187 -198
- -361 -427 93 97
- -796 -175 -326 185
- -512 188 -307 -260
- 197 -10000 -683 -403
- 171 -151 -296 -207
- -356 -405 185 -200
- -301 -441 116 67
- -207 -105 -10 123
- -306 147 -157 -35
- 145 -404 13 -300
- 33 -34 -11 4
+ -37 -18 47 -5
+ -93 -6 -49 85
+ -153 124 -12 -144
+ 187 -431 -224 -367
+ 166 -152 -183 -227
+ -356 -386 184 -185
+ -313 -356 91 94
+ -477 -164 -290 181
+ -403 185 -275 -238
+ 194 -481 -450 -340
+ 168 -143 -270 -194
+ -313 -346 182 -187
+ -270 -364 113 65
+ -197 -101 -10 121
+ -281 144 -150 -34
+ 142 -357 12 -277
+ 32 -33 -11 4
diff --git a/profiles/vertebrates/MA1542.1.pwm b/profiles/vertebrates/MA1542.1.pwm
index 5605932..c17f52a 100644
--- a/profiles/vertebrates/MA1542.1.pwm
+++ b/profiles/vertebrates/MA1542.1.pwm
@@ -1,10 +1,10 @@
- -25 9 -77 59
- -164 -257 181 -636
- -10000 199 -10000 -609
- -829 -366 -10000 197
- 184 -404 -517 -162
- -694 200 -10000 -10000
- -10000 78 -794 119
- -433 -828 197 -570
- -198 -139 -167 161
- -15 -117 31 50
+ -25 9 -76 59
+ -160 -248 179 -534
+ -611 198 -611 -511
+ -585 -344 -614 195
+ 183 -377 -462 -158
+ -547 198 -611 -611
+ -611 77 -575 118
+ -398 -584 196 -491
+ -193 -136 -163 160
+ -15 -114 30 50
diff --git a/profiles/vertebrates/MA1544.1.pwm b/profiles/vertebrates/MA1544.1.pwm
index e69de29..a64d96d 100644
--- a/profiles/vertebrates/MA1544.1.pwm
+++ b/profiles/vertebrates/MA1544.1.pwm
@@ -0,0 +1,14 @@
+ 72 -56 -31 -20
+ 91 -324 11 -10
+ 74 -254 -52 54
+ 177 -339 -709 -105
+ -687 199 -687 -687
+ -687 199 -687 -687
+ -683 -687 199 -671
+ -687 -687 -671 199
+ -687 -687 -687 199
+ 199 -652 -687 -687
+ -263 -7 -128 131
+ -16 -2 -13 27
+ -139 62 -296 97
+ -36 7 37 -19
diff --git a/profiles/vertebrates/MA1545.1.pwm b/profiles/vertebrates/MA1545.1.pwm
index 7eba632..1717145 100644
--- a/profiles/vertebrates/MA1545.1.pwm
+++ b/profiles/vertebrates/MA1545.1.pwm
@@ -1,13 +1,13 @@
- 37 -160 54 -12
- 19 -135 -5 59
- 129 -118 -301 -1
- -1003 200 -703 -10000
- -10000 200 -626 -10000
- -10000 -10000 200 -10000
- -10000 -131 -10000 185
- -10000 -10000 -844 200
- 198 -793 -439 -10000
- -126 34 -37 62
- 5 -26 12 6
- -62 46 -125 64
- -22 1 31 -16
+ 36 -157 54 -12
+ 18 -134 -5 59
+ 128 -117 -293 -1
+ -660 199 -588 -674
+ -674 199 -549 -674
+ -673 -673 199 -673
+ -689 -129 -689 184
+ -674 -674 -635 199
+ 197 -623 -414 -675
+ -125 34 -37 62
+ 5 -26 12 6
+ -61 46 -124 63
+ -22 1 31 -15
diff --git a/profiles/vertebrates/MA1546.1.pwm b/profiles/vertebrates/MA1546.1.pwm
index e69de29..d7356f8 100644
--- a/profiles/vertebrates/MA1546.1.pwm
+++ b/profiles/vertebrates/MA1546.1.pwm
@@ -0,0 +1,16 @@
+ -70 60 -62 28
+ -177 110 19 -123
+ -514 -501 184 -148
+ -111 -222 -471 172
+ -448 169 -368 -62
+ 195 -490 -361 -490
+ -414 176 -509 -92
+ -118 -517 181 -531
+ -477 128 57 -447
+ -74 29 -134 83
+ 59 -54 -123 46
+ 146 -161 -44 -237
+ -265 -283 -347 185
+ -216 -149 -275 171
+ 161 -255 -191 -98
+ 21 -4 11 -33
diff --git a/profiles/vertebrates/MA1547.1.pwm b/profiles/vertebrates/MA1547.1.pwm
index d1ae8f6..bccea41 100644
--- a/profiles/vertebrates/MA1547.1.pwm
+++ b/profiles/vertebrates/MA1547.1.pwm
@@ -1,8 +1,8 @@
- 19 6 -35 4
- -344 -10000 -10000 197
- 200 -10000 -733 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -424 198
- -10000 182 -10000 -109
- -390 190 -357 -301
- -37 108 -69 -100
+ 19 6 -35 4
+ -330 -666 -666 196
+ 199 -663 -594 -663
+ 199 -663 -663 -663
+ -664 -664 -400 197
+ -680 181 -680 -108
+ -372 189 -343 -292
+ -37 107 -69 -98
diff --git a/profiles/vertebrates/MA1547.2.pwm b/profiles/vertebrates/MA1547.2.pwm
index 3bd4b6a..1bd5aa6 100644
--- a/profiles/vertebrates/MA1547.2.pwm
+++ b/profiles/vertebrates/MA1547.2.pwm
@@ -1,8 +1,8 @@
- -112 47 -214 94
- -10000 -531 -10000 199
- 200 -10000 -10000 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -170 188
- -10000 200 -10000 -10000
- -10000 197 -10000 -344
- -119 104 -135 15
+ -110 47 -209 94
+ -650 -479 -650 198
+ 199 -649 -649 -649
+ 199 -649 -649 -649
+ -660 -660 -167 187
+ -649 199 -649 -649
+ -652 195 -652 -329
+ -117 103 -133 15
diff --git a/profiles/vertebrates/MA1548.1.pwm b/profiles/vertebrates/MA1548.1.pwm
index 32cba48..d2f6adf 100644
--- a/profiles/vertebrates/MA1548.1.pwm
+++ b/profiles/vertebrates/MA1548.1.pwm
@@ -1,10 +1,10 @@
- -16 -16 -16 39
- -268 -268 170 -122
- -10000 -10000 200 -10000
- -10000 -73 176 -10000
- -10000 168 -32 -10000
- -10000 200 -10000 -10000
- -10000 200 -10000 -10000
- -10000 189 -10000 -175
- -147 146 -332 -33
- -25 -25 -25 56
+ -15 -15 -15 38
+ -246 -246 167 -116
+ -503 -503 197 -503
+ -503 -70 173 -503
+ -503 165 -31 -503
+ -503 197 -503 -503
+ -503 197 -503 -503
+ -503 186 -503 -165
+ -139 143 -297 -32
+ -24 -24 -24 55
diff --git a/profiles/vertebrates/MA1549.1.pwm b/profiles/vertebrates/MA1549.1.pwm
index 19d4fae..cc72aa1 100644
--- a/profiles/vertebrates/MA1549.1.pwm
+++ b/profiles/vertebrates/MA1549.1.pwm
@@ -1,10 +1,10 @@
- 78 -195 27 -29
- -339 -265 -742 190
- 191 -326 -275 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -249 193
- -464 -302 179 -144
- 189 -417 -10000 -207
- -291 -147 144 -35
- -32 32 44 -75
- -2 -37 -6 36
+ 77 -189 26 -29
+ -323 -256 -579 189
+ 189 -311 -265 -635
+ 199 -625 -625 -625
+ -632 -632 -241 192
+ -426 -290 178 -141
+ 188 -390 -636 -202
+ -283 -145 144 -34
+ -32 31 44 -74
+ -2 -37 -6 36
diff --git a/profiles/vertebrates/MA1550.1.pwm b/profiles/vertebrates/MA1550.1.pwm
index e69de29..846d4f7 100644
--- a/profiles/vertebrates/MA1550.1.pwm
+++ b/profiles/vertebrates/MA1550.1.pwm
@@ -0,0 +1,16 @@
+ 54 -19 -47 -8
+ 31 -143 108 -185
+ 93 -500 104 -630
+ -468 -609 197 -485
+ -454 -652 175 -75
+ -607 -588 -293 194
+ -561 167 -193 -93
+ 197 -684 -421 -684
+ 185 -578 -196 -302
+ 187 -658 -165 -689
+ -570 -634 198 -549
+ -593 -688 179 -93
+ -685 -563 -295 194
+ -464 173 -240 -114
+ 180 -570 -108 -546
+ 21 20 -69 11
diff --git a/profiles/vertebrates/MA1552.1.pwm b/profiles/vertebrates/MA1552.1.pwm
index 6cf5327..ece240a 100644
--- a/profiles/vertebrates/MA1552.1.pwm
+++ b/profiles/vertebrates/MA1552.1.pwm
@@ -1,14 +1,14 @@
- 88 -198 52 -108
- 148 -152 -22 -10000
- -545 -294 185 -208
- -381 -513 175 -89
- -286 -125 -155 163
- -464 192 -416 -297
- 144 -10000 34 -531
- -532 -458 -10000 198
- -297 -397 192 -497
- 184 -235 -288 -335
- -87 177 -10000 -431
- -340 189 -399 -299
- -372 -38 -155 149
- -91 12 -110 94
+ 85 -179 50 -100
+ 144 -141 -21 -457
+ -397 -259 181 -190
+ -322 -392 171 -84
+ -257 -118 -145 160
+ -361 187 -337 -259
+ 140 -445 32 -384
+ -386 -356 -447 193
+ -259 -326 187 -375
+ 179 -212 -254 -288
+ -82 173 -467 -351
+ -291 185 -328 -261
+ -313 -37 -144 145
+ -85 11 -103 91
diff --git a/profiles/vertebrates/MA1553.1.pwm b/profiles/vertebrates/MA1553.1.pwm
index e69de29..2ad2f2d 100644
--- a/profiles/vertebrates/MA1553.1.pwm
+++ b/profiles/vertebrates/MA1553.1.pwm
@@ -0,0 +1,14 @@
+ 96 -149 18 -82
+ 149 -150 -50 -300
+ -291 -418 186 -247
+ -442 -475 156 -6
+ -163 -186 -172 163
+ -443 189 -367 -250
+ 157 -517 -6 -456
+ -421 -378 -498 194
+ -310 -389 192 -505
+ 178 -225 -281 -222
+ -16 161 -579 -536
+ -292 191 -478 -386
+ -379 -45 -172 153
+ -99 21 -156 100
diff --git a/profiles/vertebrates/MA1554.1.pwm b/profiles/vertebrates/MA1554.1.pwm
index e69de29..1da2575 100644
--- a/profiles/vertebrates/MA1554.1.pwm
+++ b/profiles/vertebrates/MA1554.1.pwm
@@ -0,0 +1,9 @@
+ -407 115 -17 -28
+ -405 -352 192 -405
+ -415 -149 -415 182
+ -417 -136 -417 181
+ -11 -458 140 -134
+ -376 168 -116 -191
+ -410 62 -215 112
+ 133 -209 -5 -184
+ -84 57 -124 61
diff --git a/profiles/vertebrates/MA1555.1.pwm b/profiles/vertebrates/MA1555.1.pwm
index 5d51d38..114c0cf 100644
--- a/profiles/vertebrates/MA1555.1.pwm
+++ b/profiles/vertebrates/MA1555.1.pwm
@@ -1,14 +1,14 @@
- 45 -125 92 -161
- 99 -299 89 -497
- -308 -410 185 -227
- -431 -378 175 -99
- -389 -261 -173 179
- -443 186 -360 -202
- 140 -493 39 -603
- -541 -299 -10000 195
- -240 -379 190 -592
- 192 -317 -354 -509
- -80 175 -561 -454
- -307 189 -393 -307
- -467 92 -503 103
- -186 95 -122 45
+ 44 -120 90 -154
+ 98 -278 87 -421
+ -286 -367 183 -216
+ -384 -345 173 -96
+ -353 -247 -166 177
+ -390 183 -329 -192
+ 138 -417 38 -470
+ -444 -278 -544 192
+ -227 -343 187 -470
+ 189 -293 -323 -429
+ -77 173 -464 -401
+ -285 186 -354 -285
+ -402 90 -423 101
+ -177 93 -117 44
diff --git a/profiles/vertebrates/MA1556.1.pwm b/profiles/vertebrates/MA1556.1.pwm
index e69de29..b76cb02 100644
--- a/profiles/vertebrates/MA1556.1.pwm
+++ b/profiles/vertebrates/MA1556.1.pwm
@@ -0,0 +1,14 @@
+ 59 -162 100 -257
+ 123 -485 67 -552
+ -559 -226 191 -559
+ -493 -375 189 -238
+ -454 -504 -363 194
+ -553 196 -541 -429
+ 197 -434 -553 -553
+ -552 65 -552 125
+ -293 -311 188 -393
+ 173 -151 -284 -230
+ -197 181 -302 -301
+ -202 176 -175 -369
+ -401 67 -303 115
+ -188 90 -119 51
diff --git a/profiles/vertebrates/MA1557.1.pwm b/profiles/vertebrates/MA1557.1.pwm
index e69de29..228c651 100644
--- a/profiles/vertebrates/MA1557.1.pwm
+++ b/profiles/vertebrates/MA1557.1.pwm
@@ -0,0 +1,10 @@
+ -96 66 -210 74
+ -458 -518 197 -573
+ -214 -353 -166 175
+ -441 196 -446 -574
+ -620 -257 -127 177
+ 180 -134 -322 -573
+ -499 -461 197 -567
+ 177 -153 -522 -227
+ -495 197 -573 -488
+ 137 -126 -194 -43
diff --git a/profiles/vertebrates/MA1558.1.pwm b/profiles/vertebrates/MA1558.1.pwm
index e69de29..8a6d2fb 100644
--- a/profiles/vertebrates/MA1558.1.pwm
+++ b/profiles/vertebrates/MA1558.1.pwm
@@ -0,0 +1,10 @@
+ 8 -64 36 3
+ 22 -349 111 -76
+ -345 192 -408 -381
+ 192 -398 -536 -312
+ -166 -336 182 -405
+ -553 -689 198 -627
+ -606 -707 -599 199
+ -283 -713 192 -392
+ -201 70 -34 42
+ 38 -75 35 -28
diff --git a/profiles/vertebrates/MA1559.1.pwm b/profiles/vertebrates/MA1559.1.pwm
index e69de29..3eeab84 100644
--- a/profiles/vertebrates/MA1559.1.pwm
+++ b/profiles/vertebrates/MA1559.1.pwm
@@ -0,0 +1,10 @@
+ 91 -121 -3 -49
+ 127 -629 53 -300
+ -519 197 -626 -484
+ 198 -625 -486 -606
+ -355 -503 194 -467
+ -625 -535 198 -625
+ -625 -560 -503 198
+ -381 -627 196 -499
+ -268 111 -76 13
+ 131 -142 -25 -172
diff --git a/profiles/vertebrates/MA1560.1.pwm b/profiles/vertebrates/MA1560.1.pwm
index b814dfa..c21b6b4 100644
--- a/profiles/vertebrates/MA1560.1.pwm
+++ b/profiles/vertebrates/MA1560.1.pwm
@@ -1,10 +1,10 @@
- -40 68 -72 5
- -148 -87 133 -80
- -291 184 -355 -228
- 195 -10000 -293 -10000
- -10000 198 -481 -546
- -447 -10000 197 -437
- -319 -234 -10000 188
- -294 -630 194 -630
- -73 142 -139 -156
- 33 -34 28 -44
+ -38 66 -69 5
+ -144 -84 132 -78
+ -268 181 -319 -214
+ 192 -512 -268 -512
+ -509 195 -396 -428
+ -378 -510 193 -372
+ -290 -218 -518 186
+ -269 -461 191 -461
+ -71 140 -135 -151
+ 32 -33 28 -42
diff --git a/profiles/vertebrates/MA1561.1.pwm b/profiles/vertebrates/MA1561.1.pwm
index 7348a81..d48398d 100644
--- a/profiles/vertebrates/MA1561.1.pwm
+++ b/profiles/vertebrates/MA1561.1.pwm
@@ -1,11 +1,11 @@
- 132 -36 -165 -131
- -90 158 -230 -187
- -237 178 -287 -215
- -237 -323 181 -234
- 195 -309 -679 -779
- 199 -675 -575 -10000
- -10000 199 -10000 -616
- 200 -10000 -10000 -10000
- 176 -147 -252 -366
- -128 -57 -246 145
- -11 -2 51 -60
+ 130 -35 -158 -126
+ -87 155 -216 -177
+ -219 175 -261 -200
+ -220 -289 178 -217
+ 191 -275 -453 -468
+ 195 -449 -422 -481
+ -481 196 -481 -435
+ 196 -480 -480 -480
+ 173 -140 -233 -322
+ -123 -55 -230 143
+ -10 -2 50 -57
diff --git a/profiles/vertebrates/MA1562.1.pwm b/profiles/vertebrates/MA1562.1.pwm
index e69de29..205753e 100644
--- a/profiles/vertebrates/MA1562.1.pwm
+++ b/profiles/vertebrates/MA1562.1.pwm
@@ -0,0 +1,10 @@
+ -24 91 -54 -76
+ -148 153 -204 -98
+ -189 -293 167 -130
+ 179 -356 -236 -199
+ 188 -305 -461 -267
+ -393 188 -329 -278
+ 195 -454 -454 -454
+ 190 -276 -459 -378
+ -458 -420 -282 191
+ -93 -107 129 -84
diff --git a/profiles/vertebrates/MA1563.1.pwm b/profiles/vertebrates/MA1563.1.pwm
index e69de29..e9a249c 100644
--- a/profiles/vertebrates/MA1563.1.pwm
+++ b/profiles/vertebrates/MA1563.1.pwm
@@ -0,0 +1,8 @@
+ 5 53 18 -139
+ 143 -247 -59 -113
+ -448 195 -448 -448
+ 126 -77 -16 -288
+ 157 -85 -144 -326
+ -516 62 -516 127
+ -5 -486 157 -486
+ -34 92 34 -449
diff --git a/profiles/vertebrates/MA1563.2.pwm b/profiles/vertebrates/MA1563.2.pwm
index 3982f44..4b1f5fb 100644
--- a/profiles/vertebrates/MA1563.2.pwm
+++ b/profiles/vertebrates/MA1563.2.pwm
@@ -1,8 +1,8 @@
- 126 -113 -6 -238
- 200 -10000 -10000 -10000
- -10000 171 -51 -601
- 200 -10000 -10000 -10000
- 183 -177 -281 -10000
- -10000 -10000 -10000 200
- 32 -10000 44 48
- 17 70 32 -10000
+ 123 -107 -6 -219
+ 194 -417 -417 -417
+ -444 167 -48 -404
+ 194 -417 -417 -417
+ 178 -160 -243 -432
+ -424 -424 -424 194
+ 31 -476 43 47
+ 17 69 32 -579
diff --git a/profiles/vertebrates/MA1564.1.pwm b/profiles/vertebrates/MA1564.1.pwm
index e69de29..64e14ca 100644
--- a/profiles/vertebrates/MA1564.1.pwm
+++ b/profiles/vertebrates/MA1564.1.pwm
@@ -0,0 +1,12 @@
+ 44 -47 62 -139
+ -75 134 -160 -87
+ -127 161 -267 -144
+ 138 27 -377 -311
+ -536 196 -438 -482
+ -178 -186 167 -205
+ -416 196 -556 -453
+ -556 196 -556 -387
+ -383 173 -431 -81
+ 74 81 -381 -98
+ -184 138 -182 -26
+ -53 91 -153 10
diff --git a/profiles/vertebrates/MA1565.1.pwm b/profiles/vertebrates/MA1565.1.pwm
index e69de29..d33fbdc 100644
--- a/profiles/vertebrates/MA1565.1.pwm
+++ b/profiles/vertebrates/MA1565.1.pwm
@@ -0,0 +1,12 @@
+ 15 -111 68 -27
+ 40 -126 74 -77
+ 153 -197 -71 -203
+ -161 -193 167 -217
+ -325 -475 193 -475
+ -394 -135 -487 181
+ -287 -394 191 -444
+ -137 -140 -126 149
+ -214 -64 158 -273
+ 189 -462 -407 -235
+ 135 -214 -17 -158
+ 63 -48 33 -105
diff --git a/profiles/vertebrates/MA1566.1.pwm b/profiles/vertebrates/MA1566.1.pwm
index bde18fd..d0af058 100644
--- a/profiles/vertebrates/MA1566.1.pwm
+++ b/profiles/vertebrates/MA1566.1.pwm
@@ -1,10 +1,10 @@
- 2 -67 66 -36
- 103 -138 -5 -72
- -128 -26 130 -178
- -676 -385 197 -10000
- -569 -16 -10000 163
- -10000 -10000 200 -10000
- -291 -44 -248 156
- -296 15 94 -25
- 121 -142 -21 -118
- 26 -12 -4 -14
+ 2 -65 65 -35
+ 102 -135 -5 -70
+ -125 -26 129 -173
+ -499 -347 195 -547
+ -476 -16 -581 161
+ -544 -544 197 -544
+ -275 -43 -237 154
+ -286 15 93 -25
+ 120 -139 -21 -116
+ 25 -12 -4 -13
diff --git a/profiles/vertebrates/MA1566.2.pwm b/profiles/vertebrates/MA1566.2.pwm
index e69de29..db1eb88 100644
--- a/profiles/vertebrates/MA1566.2.pwm
+++ b/profiles/vertebrates/MA1566.2.pwm
@@ -0,0 +1,11 @@
+ 63 -53 9 -52
+ 170 -379 -91 -276
+ -143 -151 166 -320
+ -588 -507 198 -588
+ -583 -190 -597 189
+ -588 -573 198 -588
+ -351 -119 -509 178
+ -380 -76 151 -103
+ 197 -561 -466 -554
+ 162 -196 -165 -151
+ 59 1 -8 -89
diff --git a/profiles/vertebrates/MA1567.1.pwm b/profiles/vertebrates/MA1567.1.pwm
index e69de29..6a6e928 100644
--- a/profiles/vertebrates/MA1567.1.pwm
+++ b/profiles/vertebrates/MA1567.1.pwm
@@ -0,0 +1,10 @@
+ 11 -76 53 -17
+ 131 -189 -40 -103
+ -116 -54 138 -197
+ -501 -493 197 -656
+ -537 -157 -667 186
+ -599 -655 199 -606
+ -270 -30 -343 156
+ -201 -26 92 3
+ 158 -244 -70 -232
+ 71 -42 -37 -25
diff --git a/profiles/vertebrates/MA1567.2.pwm b/profiles/vertebrates/MA1567.2.pwm
index 3924074..540542a 100644
--- a/profiles/vertebrates/MA1567.2.pwm
+++ b/profiles/vertebrates/MA1567.2.pwm
@@ -1,12 +1,12 @@
- 14 -34 43 -39
- 104 -191 7 -69
- -167 -370 179 -274
- -455 -280 192 -509
- -393 -340 -399 192
- -595 -434 196 -458
- -176 -340 -184 174
- -372 -164 177 -240
- 191 -387 -286 -471
- 171 -229 -143 -269
- 31 -39 34 -45
- 4 -33 -2 25
+ 14 -34 42 -39
+ 103 -187 7 -68
+ -164 -353 178 -266
+ -426 -271 191 -467
+ -374 -327 -379 191
+ -526 -409 195 -428
+ -173 -327 -180 173
+ -355 -161 176 -234
+ 190 -368 -277 -439
+ 170 -224 -140 -262
+ 31 -39 34 -45
+ 4 -33 -2 25
diff --git a/profiles/vertebrates/MA1568.1.pwm b/profiles/vertebrates/MA1568.1.pwm
index e69de29..947826a 100644
--- a/profiles/vertebrates/MA1568.1.pwm
+++ b/profiles/vertebrates/MA1568.1.pwm
@@ -0,0 +1,12 @@
+ -90 85 -30 -22
+ 126 -372 -3 -86
+ -166 152 -53 -309
+ -427 193 -353 -453
+ 170 -509 -65 -362
+ -501 -205 -177 178
+ 179 -232 -169 -500
+ -316 -117 -502 177
+ -428 -486 193 -316
+ -323 -142 110 46
+ -139 85 -416 82
+ 45 -51 52 -100
diff --git a/profiles/vertebrates/MA1569.1.pwm b/profiles/vertebrates/MA1569.1.pwm
index e69de29..b2382e2 100644
--- a/profiles/vertebrates/MA1569.1.pwm
+++ b/profiles/vertebrates/MA1569.1.pwm
@@ -0,0 +1,11 @@
+ -50 60 -131 45
+ -742 37 143 -742
+ -686 199 -686 -686
+ -686 199 -686 -686
+ -688 37 -83 109
+ -131 71 67 -144
+ 107 -59 29 -688
+ -686 -686 199 -686
+ -686 -686 199 -686
+ -741 144 36 -741
+ 44 -124 55 -40
diff --git a/profiles/vertebrates/MA1570.1.pwm b/profiles/vertebrates/MA1570.1.pwm
index c5c6bb9..f604138 100644
--- a/profiles/vertebrates/MA1570.1.pwm
+++ b/profiles/vertebrates/MA1570.1.pwm
@@ -1,10 +1,10 @@
- 118 -70 -10 -244
- 82 23 -10000 7
- -10000 200 -10000 -10000
- 196 -10000 -314 -10000
- -10000 3 -42 116
- 107 -62 33 -10000
- -10000 -10000 -10000 200
- -10000 -533 199 -10000
- -22 -310 38 78
- -184 -3 -97 116
+ 116 -67 -10 -226
+ 79 22 -435 7
+ -432 194 -432 -432
+ 191 -436 -267 -436
+ -513 3 -40 113
+ 105 -60 32 -522
+ -432 -432 -432 194
+ -433 -377 194 -433
+ -21 -263 36 75
+ -174 -3 -93 113
diff --git a/profiles/vertebrates/MA1571.1.pwm b/profiles/vertebrates/MA1571.1.pwm
index d29e999..b4ffa26 100644
--- a/profiles/vertebrates/MA1571.1.pwm
+++ b/profiles/vertebrates/MA1571.1.pwm
@@ -1,12 +1,12 @@
- -179 -121 -250 163
- -376 -192 185 -391
- 168 -363 -258 -89
- -438 193 -452 -349
- 180 -534 -120 -419
- -410 -14 130 -81
- -74 130 -20 -406
- -430 -120 -499 180
- -337 -485 194 -491
- -89 -264 -346 168
- -397 185 -204 -342
- 164 -263 -118 -181
+ -173 -118 -239 162
+ -346 -184 183 -357
+ 167 -338 -247 -87
+ -390 191 -400 -323
+ 178 -456 -117 -379
+ -368 -14 128 -79
+ -72 129 -19 -366
+ -388 -116 -435 178
+ -312 -421 192 -425
+ -87 -252 -324 166
+ -362 183 -195 -318
+ 162 -251 -115 -176
diff --git a/profiles/vertebrates/MA1572.1.pwm b/profiles/vertebrates/MA1572.1.pwm
index e69de29..3d7428a 100644
--- a/profiles/vertebrates/MA1572.1.pwm
+++ b/profiles/vertebrates/MA1572.1.pwm
@@ -0,0 +1,12 @@
+ -127 -109 -207 152
+ -300 -233 184 -356
+ 158 -326 -225 -52
+ -330 190 -404 -310
+ 174 -479 -88 -360
+ -314 -4 109 -35
+ -33 112 -13 -307
+ -331 -87 -410 172
+ -286 -413 189 -333
+ -64 -214 -339 160
+ -324 184 -239 -293
+ 155 -222 -111 -135
diff --git a/profiles/vertebrates/MA1573.1.pwm b/profiles/vertebrates/MA1573.1.pwm
index c23370d..0178ede 100644
--- a/profiles/vertebrates/MA1573.1.pwm
+++ b/profiles/vertebrates/MA1573.1.pwm
@@ -1,19 +1,19 @@
- 45 -63 43 -65
- 83 -257 92 -265
- 79 -450 111 -382
- 197 -450 -582 -682
- -10000 199 -682 -582
- -582 -291 -682 194
- 187 -282 -350 -301
- -682 198 -682 -523
- 183 -382 -173 -401
- 55 -153 -177 92
- -182 -8 -126 123
- -523 -273 -450 192
- -482 196 -682 -423
- -682 199 -682 -682
- -582 197 -582 -482
- 176 -450 -96 -450
- -173 -229 169 -196
- 44 71 -34 -217
- 113 -42 -41 -169
+ 43 -59 41 -61
+ 80 -228 89 -234
+ 76 -352 107 -315
+ 192 -352 -401 -423
+ -447 194 -423 -401
+ -401 -254 -423 189
+ 182 -247 -295 -261
+ -423 193 -423 -383
+ 179 -315 -159 -326
+ 53 -141 -162 89
+ -166 -7 -117 120
+ -383 -240 -352 187
+ -366 192 -423 -338
+ -423 194 -423 -423
+ -401 192 -401 -366
+ 172 -352 -90 -352
+ -159 -206 165 -178
+ 42 68 -32 -196
+ 110 -40 -39 -155
diff --git a/profiles/vertebrates/MA1573.2.pwm b/profiles/vertebrates/MA1573.2.pwm
index 112260e..78ff5e9 100644
--- a/profiles/vertebrates/MA1573.2.pwm
+++ b/profiles/vertebrates/MA1573.2.pwm
@@ -1,14 +1,14 @@
- 183 -212 -304 -356
- -304 187 -320 -312
- -504 -208 -478 189
- 193 -328 -404 -478
- -537 195 -420 -437
- 188 -367 -251 -420
- 133 -184 -156 -20
- -124 34 0 39
- -320 -304 -312 187
- -504 194 -637 -291
- -437 196 -504 -504
- -420 191 -404 -312
- 153 -337 -17 -291
- -116 -128 135 -77
+ 179 -195 -270 -307
+ -270 183 -281 -275
+ -391 -192 -379 185
+ 189 -287 -338 -379
+ -404 191 -347 -357
+ 184 -314 -227 -347
+ 129 -171 -146 -19
+ -117 33 0 38
+ -281 -270 -275 183
+ -391 189 -435 -259
+ -357 192 -391 -391
+ -347 187 -338 -275
+ 149 -293 -16 -259
+ -109 -120 132 -73
diff --git a/profiles/vertebrates/MA1574.1.pwm b/profiles/vertebrates/MA1574.1.pwm
index d883fc9..3c30ccf 100644
--- a/profiles/vertebrates/MA1574.1.pwm
+++ b/profiles/vertebrates/MA1574.1.pwm
@@ -1,15 +1,15 @@
- 10 -63 78 -82
- 86 -325 104 -492
- -379 -547 190 -256
- -468 -757 170 -49
- -689 -417 -171 186
- -634 161 -178 -61
- 187 -721 -154 -751
- 148 -423 -61 -97
- 171 -594 -48 -791
- -650 -850 198 -516
- -621 -758 169 -41
- -681 -339 -88 174
- -447 152 -205 -24
- 145 -442 21 -382
- -16 2 0 12
+ 10 -62 77 -81
+ 85 -312 103 -451
+ -360 -492 189 -248
+ -438 -609 169 -49
+ -573 -393 -168 185
+ -557 160 -175 -61
+ 185 -586 -151 -597
+ 147 -404 -61 -96
+ 170 -529 -47 -620
+ -548 -614 197 -467
+ -546 -610 168 -41
+ -575 -326 -87 173
+ -423 151 -201 -23
+ 144 -420 21 -367
+ -15 2 0 12
diff --git a/profiles/vertebrates/MA1575.1.pwm b/profiles/vertebrates/MA1575.1.pwm
index 717e9bd..fc89f74 100644
--- a/profiles/vertebrates/MA1575.1.pwm
+++ b/profiles/vertebrates/MA1575.1.pwm
@@ -1,19 +1,19 @@
- -3 -72 67 -30
- -552 -95 -631 179
- -238 -103 165 -251
- 130 -225 -195 10
- -516 199 -902 -10000
- -1001 200 -901 -701
- -10000 -19 -412 162
- -185 56 -24 49
- 126 -209 40 -403
- 4 1 -13 7
- -403 30 -172 127
- 51 -19 53 -203
- 159 -368 -14 -941
- -10000 -842 200 -10000
- -10000 -10000 199 -511
- 4 -181 -244 132
- -273 164 -95 -218
- 179 -789 -92 -789
- -30 68 -75 -2
+ -2 -70 67 -29
+ -481 -93 -523 177
+ -230 -101 164 -242
+ 129 -220 -191 10
+ -451 197 -578 -594
+ -585 198 -577 -538
+ -631 -18 -385 160
+ -179 55 -23 48
+ 124 -202 39 -370
+ 4 1 -13 7
+ -370 30 -167 125
+ 51 -18 53 -196
+ 158 -349 -14 -617
+ -593 -570 198 -593
+ -594 -594 197 -448
+ 4 -177 -237 131
+ -263 162 -93 -212
+ 178 -577 -90 -577
+ -29 67 -74 -1
diff --git a/profiles/vertebrates/MA1576.1.pwm b/profiles/vertebrates/MA1576.1.pwm
index e69de29..0ab0287 100644
--- a/profiles/vertebrates/MA1576.1.pwm
+++ b/profiles/vertebrates/MA1576.1.pwm
@@ -0,0 +1,19 @@
+ 28 -150 66 -23
+ -431 -296 -431 191
+ -211 -60 146 -151
+ 161 -242 -254 -76
+ -438 187 -355 -228
+ -456 169 -93 -228
+ -288 -74 -163 156
+ -266 44 -6 61
+ 139 -163 -12 -285
+ -112 115 -42 -79
+ 5 -18 102 -432
+ -434 -434 -323 192
+ -432 -432 193 -366
+ 164 -297 -462 -47
+ -432 194 -432 -384
+ -312 190 -370 -353
+ -434 -289 -434 191
+ -455 58 -63 86
+ 162 -301 -43 -436
diff --git a/profiles/vertebrates/MA1577.1.pwm b/profiles/vertebrates/MA1577.1.pwm
index 6edb8eb..d0a4cee 100644
--- a/profiles/vertebrates/MA1577.1.pwm
+++ b/profiles/vertebrates/MA1577.1.pwm
@@ -1,8 +1,8 @@
- -97 40 -7 29
- -169 75 -206 82
- 199 -10000 -462 -10000
- 200 -10000 -10000 -10000
- -10000 -10000 -10000 200
- -10000 -10000 -10000 200
- 200 -10000 -10000 -10000
- 16 -56 82 -119
+ -95 40 -7 28
+ -167 75 -203 82
+ 197 -638 -426 -638
+ 199 -637 -637 -637
+ -637 -637 -637 199
+ -637 -637 -637 199
+ 199 -637 -637 -637
+ 16 -55 81 -117
diff --git a/profiles/vertebrates/MA1578.1.pwm b/profiles/vertebrates/MA1578.1.pwm
index e967959..b15e909 100644
--- a/profiles/vertebrates/MA1578.1.pwm
+++ b/profiles/vertebrates/MA1578.1.pwm
@@ -1,10 +1,10 @@
- -181 166 -86 -10000
- -796 200 -10000 -10000
- -596 199 -10000 -10000
- -696 200 -10000 -10000
- -538 199 -10000 -596
- -464 197 -638 -496
- 70 52 -118 -100
- -250 114 -183 42
- -6 -55 -24 59
- 42 -53 -71 44
+ -171 163 -83 -503
+ -485 196 -503 -503
+ -444 196 -503 -503
+ -470 196 -503 -503
+ -421 195 -503 -444
+ -385 194 -456 -402
+ 69 50 -113 -95
+ -231 112 -172 41
+ -6 -53 -24 58
+ 41 -51 -69 43
diff --git a/profiles/vertebrates/MA1579.1.pwm b/profiles/vertebrates/MA1579.1.pwm
index e69de29..de78167 100644
--- a/profiles/vertebrates/MA1579.1.pwm
+++ b/profiles/vertebrates/MA1579.1.pwm
@@ -0,0 +1,15 @@
+ -3 -7 -2 11
+ 14 -24 2 6
+ -55 108 -165 -18
+ -445 -479 -479 196
+ -379 194 -424 -499
+ -479 186 -417 -184
+ 189 -394 -282 -353
+ -349 -499 193 -400
+ 193 -370 -445 -411
+ 146 -149 -84 -155
+ 70 -31 -33 -39
+ 51 -10 -26 -30
+ 8 -10 24 -28
+ 6 1 -5 -2
+ -9 14 -31 20
diff --git a/profiles/vertebrates/MA1580.1.pwm b/profiles/vertebrates/MA1580.1.pwm
index e69de29..4dfc697 100644
--- a/profiles/vertebrates/MA1580.1.pwm
+++ b/profiles/vertebrates/MA1580.1.pwm
@@ -0,0 +1,10 @@
+ -1 -22 -350 104
+ -129 -566 176 -241
+ -551 -583 -566 198
+ 198 -551 -592 -592
+ -592 198 -583 -592
+ 198 -566 -558 -531
+ -593 -566 198 -544
+ -592 -558 -592 198
+ 141 -287 -29 -135
+ 80 -199 -198 81
diff --git a/profiles/vertebrates/MA1581.1.pwm b/profiles/vertebrates/MA1581.1.pwm
index b76102a..981975a 100644
--- a/profiles/vertebrates/MA1581.1.pwm
+++ b/profiles/vertebrates/MA1581.1.pwm
@@ -1,13 +1,13 @@
- 9 -81 36 12
- -48 16 -21 38
- -84 106 9 -175
- -257 190 -448 -431
- -426 -242 -342 187
- -143 -363 -44 149
- -542 -324 195 -631
- 195 -431 -480 -473
- -326 -480 194 -531
- -331 191 -387 -360
- -245 170 -266 -132
- 8 34 -25 -26
- -4 9 43 -69
+ 9 -79 35 12
+ -47 16 -21 37
+ -81 104 9 -169
+ -243 188 -395 -384
+ -380 -230 -316 185
+ -138 -332 -43 147
+ -452 -301 193 -492
+ 193 -384 -416 -412
+ -303 -416 192 -446
+ -307 188 -351 -330
+ -232 168 -251 -128
+ 8 34 -25 -26
+ -4 9 42 -68
diff --git a/profiles/vertebrates/MA1583.1.pwm b/profiles/vertebrates/MA1583.1.pwm
index e69de29..98aae7a 100644
--- a/profiles/vertebrates/MA1583.1.pwm
+++ b/profiles/vertebrates/MA1583.1.pwm
@@ -0,0 +1,13 @@
+ -45 12 21 4
+ -3 2 1 -1
+ 49 -6 5 -74
+ -128 -57 -33 108
+ -565 -482 -333 194
+ -519 -414 196 -519
+ -513 197 -548 -484
+ -570 181 -112 -590
+ -385 -548 195 -434
+ -479 187 -242 -295
+ 168 -219 -110 -319
+ -12 10 26 -29
+ -23 7 4 9
diff --git a/profiles/vertebrates/MA1584.1.pwm b/profiles/vertebrates/MA1584.1.pwm
index e69de29..ce3a7c4 100644
--- a/profiles/vertebrates/MA1584.1.pwm
+++ b/profiles/vertebrates/MA1584.1.pwm
@@ -0,0 +1,16 @@
+ 19 37 -3 -77
+ -351 -101 136 -24
+ 166 -138 -113 -732
+ -423 197 -714 -661
+ -486 197 -581 -582
+ -206 185 -347 -394
+ -695 199 -713 -709
+ -567 199 -706 -706
+ -679 173 -713 -57
+ -140 -658 185 -653
+ -732 160 -456 -14
+ -143 -84 -108 138
+ -422 -686 197 -706
+ -34 50 -193 62
+ -609 -180 170 -114
+ 32 84 -297 -27
diff --git a/profiles/vertebrates/MA1585.1.pwm b/profiles/vertebrates/MA1585.1.pwm
index 5a9c52b..9543a62 100644
--- a/profiles/vertebrates/MA1585.1.pwm
+++ b/profiles/vertebrates/MA1585.1.pwm
@@ -1,10 +1,10 @@
- 160 -175 -139 -175
- -303 57 -207 111
- 198 -485 -626 -10000
- -641 -826 199 -700
- -10000 -10000 -10000 200
- 199 -500 -10000 -10000
- -700 -392 196 -549
- -688 -700 199 -583
- -134 -23 -103 118
- -27 -5 91 -163
+ 158 -171 -136 -171
+ -291 56 -202 110
+ 197 -442 -529 -631
+ -537 -598 198 -562
+ -631 -631 -631 199
+ 197 -452 -631 -631
+ -562 -369 195 -486
+ -557 -562 197 -506
+ -131 -23 -101 117
+ -26 -5 90 -159
diff --git a/profiles/vertebrates/MA1587.1.pwm b/profiles/vertebrates/MA1587.1.pwm
index 5b54f1d..e0f39cb 100644
--- a/profiles/vertebrates/MA1587.1.pwm
+++ b/profiles/vertebrates/MA1587.1.pwm
@@ -1,14 +1,14 @@
- -227 133 -96 -38
- -389 186 -343 -219
- -589 -268 -398 191
- -508 170 -457 -58
- -198 -324 186 -789
- 190 -630 -219 -508
- -380 192 -319 -472
- -789 199 -689 -530
- -789 -530 -689 199
- -630 198 -530 -630
- -272 176 -508 -117
- -211 75 -230 91
- 35 -184 114 -208
- 92 -276 83 -246
+ -211 130 -92 -37
+ -337 182 -304 -204
+ -439 -245 -343 188
+ -406 167 -379 -55
+ -185 -290 183 -481
+ 187 -452 -204 -406
+ -331 188 -286 -387
+ -481 195 -466 -416
+ -481 -416 -466 195
+ -452 195 -416 -452
+ -249 172 -406 -112
+ -196 73 -214 89
+ 34 -173 112 -194
+ 90 -252 81 -227
diff --git a/profiles/vertebrates/MA1588.1.pwm b/profiles/vertebrates/MA1588.1.pwm
index e69de29..3b6a7aa 100644
--- a/profiles/vertebrates/MA1588.1.pwm
+++ b/profiles/vertebrates/MA1588.1.pwm
@@ -0,0 +1,15 @@
+ 49 -238 117 -271
+ 101 -230 -144 50
+ 192 -424 -329 -438
+ -397 -408 -408 193
+ -431 -329 -431 192
+ -352 184 -417 -191
+ -394 -307 -376 190
+ -86 -293 -63 142
+ -144 -471 179 -286
+ -271 -371 189 -371
+ -225 -25 -411 153
+ -307 -346 -281 187
+ -218 -391 184 -294
+ 122 -260 38 -236
+ -47 129 -308 -48
diff --git a/profiles/vertebrates/MA1589.1.pwm b/profiles/vertebrates/MA1589.1.pwm
index e69de29..2a75f11 100644
--- a/profiles/vertebrates/MA1589.1.pwm
+++ b/profiles/vertebrates/MA1589.1.pwm
@@ -0,0 +1,21 @@
+ -49 -74 -81 108
+ 129 -136 -42 -126
+ -70 -327 139 -60
+ -357 -451 193 -431
+ 187 -425 -199 -451
+ -368 -444 193 -414
+ -451 91 -333 98
+ 18 -481 136 -187
+ -444 -533 195 -414
+ 196 -521 -473 -465
+ 196 -458 -437 -510
+ -465 -227 -364 188
+ -253 -343 -300 185
+ -399 -451 195 -490
+ -357 178 -385 -128
+ -102 -176 -256 161
+ -55 -173 141 -148
+ -43 -147 132 -134
+ -2 -123 111 -123
+ -94 -65 -86 120
+ -70 105 -84 -42
diff --git a/profiles/vertebrates/MA1592.1.pwm b/profiles/vertebrates/MA1592.1.pwm
index f239aad..1a086d3 100644
--- a/profiles/vertebrates/MA1592.1.pwm
+++ b/profiles/vertebrates/MA1592.1.pwm
@@ -1,16 +1,16 @@
- 3 -10 9 -4
- 25 -92 94 -146
- -324 2 -206 140
- 103 -849 71 -164
- -594 -483 -98 178
- -947 -1061 200 -10000
- 188 -875 -251 -272
- -229 -159 178 -573
- -679 -861 -624 199
- -649 38 -10000 142
- -902 200 -1034 -993
- -10000 -10000 -10000 200
- -1068 186 -10000 -146
- -4 -329 121 -71
- -126 66 -47 36
- -4 -51 19 24
+ 3 -10 9 -4
+ 25 -91 94 -145
+ -319 2 -204 140
+ 102 -691 71 -162
+ -553 -463 -97 178
+ -710 -726 199 -741
+ 187 -698 -247 -268
+ -226 -157 178 -538
+ -607 -690 -571 198
+ -600 38 -780 142
+ -700 199 -723 -718
+ -741 -741 -741 199
+ -734 186 -749 -145
+ -4 -323 121 -71
+ -125 66 -47 36
+ -4 -51 19 24
diff --git a/profiles/vertebrates/MA1593.1.pwm b/profiles/vertebrates/MA1593.1.pwm
index e543555..f1978d8 100644
--- a/profiles/vertebrates/MA1593.1.pwm
+++ b/profiles/vertebrates/MA1593.1.pwm
@@ -1,12 +1,12 @@
- 5 -125 -53 89
- 58 -42 36 -106
- 171 -300 -258 -120
- -335 192 -397 -401
- 185 -508 -318 -200
- -205 -390 186 -380
- -286 189 -368 -360
- 170 -352 -331 -84
- -333 -395 190 -345
- 192 -378 -380 -368
- -47 62 -110 35
- 43 -75 -95 63
+ 5 -124 -52 89
+ 57 -42 35 -104
+ 170 -291 -251 -119
+ -323 191 -379 -382
+ 184 -469 -307 -196
+ -201 -372 185 -364
+ -278 188 -353 -345
+ 169 -339 -320 -83
+ -322 -376 189 -332
+ 191 -362 -364 -353
+ -46 61 -109 35
+ 42 -74 -94 62
diff --git a/profiles/vertebrates/MA1594.1.pwm b/profiles/vertebrates/MA1594.1.pwm
index e69de29..766bddc 100644
--- a/profiles/vertebrates/MA1594.1.pwm
+++ b/profiles/vertebrates/MA1594.1.pwm
@@ -0,0 +1,24 @@
+ 173 -300 -159 -216
+ -76 -299 138 -56
+ -175 -163 171 -325
+ 74 -409 99 -182
+ -188 -424 183 -306
+ 174 -204 -174 -307
+ -266 94 -175 70
+ 196 -506 -416 -511
+ -131 -212 -259 168
+ -330 136 -437 35
+ 196 -525 -471 -478
+ -386 185 -253 -277
+ -81 66 -451 85
+ 197 -506 -474 -547
+ -515 192 -429 -292
+ 87 44 -333 -48
+ -91 -419 174 -360
+ 188 -378 -256 -349
+ -296 59 -328 118
+ -21 147 -276 -224
+ -243 175 -380 -137
+ -152 129 -337 16
+ 166 -267 -202 -122
+ -253 167 -276 -100
diff --git a/profiles/vertebrates/MA1596.1.pwm b/profiles/vertebrates/MA1596.1.pwm
index e69de29..9784c7c 100644
--- a/profiles/vertebrates/MA1596.1.pwm
+++ b/profiles/vertebrates/MA1596.1.pwm
@@ -0,0 +1,16 @@
+ 3 -155 132 -288
+ -281 163 -108 -174
+ -383 183 -242 -244
+ -348 -86 -215 165
+ -393 189 -286 -340
+ 106 29 -111 -212
+ -254 -364 186 -320
+ -469 195 -460 -430
+ -523 196 -444 -469
+ -416 -423 -393 194
+ -499 195 -404 -437
+ -478 195 -404 -444
+ -423 190 -348 -305
+ 35 -178 119 -264
+ 127 -116 6 -340
+ -71 -130 149 -248
diff --git a/profiles/vertebrates/MA1597.1.pwm b/profiles/vertebrates/MA1597.1.pwm
index e69de29..f641373 100644
--- a/profiles/vertebrates/MA1597.1.pwm
+++ b/profiles/vertebrates/MA1597.1.pwm
@@ -0,0 +1,17 @@
+ -83 127 -115 -80
+ -109 122 -78 -69
+ -59 136 -119 -156
+ 173 -314 -125 -267
+ -207 -412 185 -350
+ -360 -384 192 -371
+ -251 -429 190 -429
+ 194 -412 -412 -429
+ 187 -397 -231 -360
+ -384 -447 194 -429
+ -196 139 -141 -43
+ -292 190 -412 -350
+ 193 -429 -360 -447
+ -322 -159 -322 179
+ -447 -63 -299 167
+ -322 -24 -123 139
+ -285 182 -350 -199
diff --git a/profiles/vertebrates/MA1599.1.pwm b/profiles/vertebrates/MA1599.1.pwm
index 9e9d911..547d7e9 100644
--- a/profiles/vertebrates/MA1599.1.pwm
+++ b/profiles/vertebrates/MA1599.1.pwm
@@ -1,16 +1,16 @@
- -37 68 -31 -29
- 20 -18 40 -63
- -127 -164 155 -157
- -136 -265 173 -288
- -140 159 -133 -219
- -246 117 -227 44
- 185 -188 -373 -435
- 192 -309 -359 -546
- -546 -524 197 -524
- -435 192 -435 -300
- -573 197 -488 -459
- -524 197 -473 -524
- -200 176 -305 -205
- 47 -118 -116 79
- 29 -6 18 -56
- -46 -2 -45 64
+ -36 66 -30 -28
+ 20 -17 39 -61
+ -121 -155 152 -149
+ -129 -244 170 -263
+ -133 156 -127 -204
+ -228 115 -211 43
+ 182 -177 -328 -369
+ 189 -280 -318 -427
+ -427 -417 194 -417
+ -369 189 -369 -273
+ -438 193 -399 -383
+ -417 193 -391 -417
+ -188 173 -276 -192
+ 46 -112 -111 77
+ 28 -6 18 -54
+ -45 -2 -43 62
diff --git a/profiles/vertebrates/MA1600.1.pwm b/profiles/vertebrates/MA1600.1.pwm
index e69de29..05d3119 100644
--- a/profiles/vertebrates/MA1600.1.pwm
+++ b/profiles/vertebrates/MA1600.1.pwm
@@ -0,0 +1,18 @@
+ 72 -87 20 -59
+ -209 8 -27 91
+ 185 -338 -217 -362
+ -419 193 -419 -356
+ 170 -419 -163 -139
+ -246 -76 159 -219
+ -424 -389 -234 188
+ -389 191 -327 -410
+ -280 185 -493 -216
+ 161 -419 -233 -54
+ -483 183 -227 -231
+ -266 190 -413 -447
+ -440 185 -440 -176
+ -514 197 -514 -474
+ -58 -148 -382 154
+ -241 -235 -390 183
+ -79 -113 43 69
+ 92 -63 5 -125
diff --git a/profiles/vertebrates/MA1601.1.pwm b/profiles/vertebrates/MA1601.1.pwm
index e69de29..d5f361e 100644
--- a/profiles/vertebrates/MA1601.1.pwm
+++ b/profiles/vertebrates/MA1601.1.pwm
@@ -0,0 +1,10 @@
+ 32 -10 13 -46
+ -67 -122 -20 105
+ -624 -638 199 -638
+ -581 -443 -612 197
+ -520 -547 198 -606
+ -468 -473 194 -356
+ -526 -511 197 -514
+ 198 -540 -559 -547
+ 127 -152 0 -204
+ 162 -263 -116 -168
diff --git a/profiles/vertebrates/MA1601.2.pwm b/profiles/vertebrates/MA1601.2.pwm
index c916dce..24dad73 100644
--- a/profiles/vertebrates/MA1601.2.pwm
+++ b/profiles/vertebrates/MA1601.2.pwm
@@ -1,12 +1,12 @@
- -638 -797 199 -797
- -268 -351 -564 190
- -427 -638 198 -797
- -238 -638 182 -194
- -84 -380 170 -301
- 198 -565 -638 -565
- 189 -397 -238 -451
- 177 -797 -82 -565
- -143 -47 106 -28
- -351 162 -118 -137
- -186 168 -380 -113
- -351 -121 -365 177
+ -456 -486 196 -486
+ -246 -311 -432 187
+ -362 -456 194 -486
+ -221 -456 179 -182
+ -80 -332 167 -273
+ 195 -432 -456 -432
+ 186 -343 -221 -377
+ 174 -486 -78 -432
+ -135 -46 104 -27
+ -311 159 -113 -130
+ -175 165 -332 -108
+ -311 -116 -321 173
diff --git a/profiles/vertebrates/MA1602.1.pwm b/profiles/vertebrates/MA1602.1.pwm
index e69de29..f75052f 100644
--- a/profiles/vertebrates/MA1602.1.pwm
+++ b/profiles/vertebrates/MA1602.1.pwm
@@ -0,0 +1,12 @@
+ -176 97 -97 30
+ -320 -503 194 -503
+ -503 -343 -443 194
+ -443 196 -503 -503
+ -503 -220 -503 190
+ 195 -443 -503 -443
+ -443 172 -503 -66
+ 135 -503 48 -503
+ -503 191 -301 -369
+ 29 -26 30 -49
+ -93 -242 163 -231
+ -32 23 38 -46
diff --git a/profiles/vertebrates/MA1603.1.pwm b/profiles/vertebrates/MA1603.1.pwm
index 614ff87..81d80b3 100644
--- a/profiles/vertebrates/MA1603.1.pwm
+++ b/profiles/vertebrates/MA1603.1.pwm
@@ -1,13 +1,13 @@
- -82 -204 143 -102
- 71 -12 -188 23
- -22 -190 -232 142
- 197 -605 -580 -444
- -444 195 -504 -387
- 193 -538 -546 -295
- 177 -325 -333 -135
- 144 -448 -383 22
- -265 -463 190 -370
- -306 -483 -452 193
- 118 -189 -86 -13
- 37 -178 -15 60
- -77 137 -172 -92
+ -81 -201 142 -101
+ 70 -11 -185 23
+ -22 -187 -228 141
+ 196 -549 -531 -423
+ -423 194 -474 -374
+ 193 -500 -506 -288
+ 176 -316 -323 -134
+ 144 -427 -369 22
+ -260 -440 189 -358
+ -299 -456 -430 192
+ 117 -186 -85 -13
+ 37 -175 -15 59
+ -76 136 -170 -92
diff --git a/profiles/vertebrates/MA1604.1.pwm b/profiles/vertebrates/MA1604.1.pwm
index e69de29..f045e55 100644
--- a/profiles/vertebrates/MA1604.1.pwm
+++ b/profiles/vertebrates/MA1604.1.pwm
@@ -0,0 +1,13 @@
+ -49 -16 22 29
+ -102 13 -102 94
+ -480 195 -399 -483
+ -358 188 -446 -237
+ -380 193 -455 -376
+ 154 -80 -217 -180
+ 154 -225 -85 -161
+ -309 -456 193 -489
+ -233 -466 189 -398
+ -271 -341 187 -340
+ 173 -216 -192 -228
+ 11 22 7 -50
+ 2 12 -44 21
diff --git a/profiles/vertebrates/MA1606.1.pwm b/profiles/vertebrates/MA1606.1.pwm
index 0b3b6dd..a39cee2 100644
--- a/profiles/vertebrates/MA1606.1.pwm
+++ b/profiles/vertebrates/MA1606.1.pwm
@@ -1,11 +1,11 @@
- 64 -47 -26 -18
- 21 -98 -84 83
- 32 -199 117 -203
- -471 -506 -368 195
- 194 -405 -506 -404
- 186 -273 -420 -255
- 194 -497 -380 -416
- -509 187 -483 -183
- 192 -432 -507 -296
- 33 -24 -6 -10
- 45 -35 -21 -2
+ 64 -47 -26 -18
+ 21 -97 -84 83
+ 32 -197 117 -201
+ -457 -488 -362 194
+ 194 -396 -488 -395
+ 185 -269 -410 -252
+ 194 -480 -373 -407
+ -491 187 -468 -181
+ 192 -421 -489 -292
+ 33 -23 -6 -10
+ 45 -34 -21 -2
diff --git a/profiles/vertebrates/MA1607.1.pwm b/profiles/vertebrates/MA1607.1.pwm
index 6603377..95b4435 100644
--- a/profiles/vertebrates/MA1607.1.pwm
+++ b/profiles/vertebrates/MA1607.1.pwm
@@ -1,14 +1,14 @@
- 46 -58 3 -10
- 39 -64 -36 35
- 51 -152 -150 91
- 130 -114 -110 -70
- -60 -234 -172 151
- -80 -362 169 -324
- -204 -391 -343 185
- 193 -302 -534 -447
- 193 -375 -460 -363
- 192 -439 -346 -379
- -400 179 -491 -120
- 179 -249 -350 -183
- 21 -9 -24 8
- 18 -6 0 -14
+ 46 -57 3 -10
+ 38 -63 -36 34
+ 50 -150 -148 90
+ 130 -113 -109 -69
+ -59 -229 -170 150
+ -79 -351 169 -315
+ -201 -377 -333 184
+ 192 -295 -497 -426
+ 192 -362 -437 -351
+ 191 -419 -336 -366
+ -385 179 -463 -119
+ 178 -244 -339 -181
+ 21 -9 -23 8
+ 18 -6 0 -14
diff --git a/profiles/vertebrates/MA1608.1.pwm b/profiles/vertebrates/MA1608.1.pwm
index e09f81d..315ea74 100644
--- a/profiles/vertebrates/MA1608.1.pwm
+++ b/profiles/vertebrates/MA1608.1.pwm
@@ -1,11 +1,11 @@
- 38 -41 0 -7
- -39 -12 6 35
- -198 174 -288 -189
- -171 179 -471 -241
- 196 -555 -383 -546
- -439 -471 -537 196
- -446 -376 -518 195
- 195 -497 -614 -368
- -37 -178 139 -169
- -37 31 -10 8
- 8 6 -2 -13
+ 37 -41 0 -7
+ -38 -12 6 34
+ -193 173 -276 -184
+ -166 178 -429 -233
+ 194 -487 -360 -481
+ -406 -429 -476 195
+ -411 -354 -463 193
+ 194 -448 -520 -347
+ -37 -174 138 -165
+ -37 30 -10 7
+ 8 6 -2 -13
diff --git a/profiles/vertebrates/MA1615.1.pwm b/profiles/vertebrates/MA1615.1.pwm
index e69de29..63d21d2 100644
--- a/profiles/vertebrates/MA1615.1.pwm
+++ b/profiles/vertebrates/MA1615.1.pwm
@@ -0,0 +1,13 @@
+ -34 35 27 -44
+ -29 31 19 -32
+ -72 104 -22 -106
+ -87 -125 -138 141
+ -398 -371 193 -459
+ -152 -321 178 -334
+ -404 -359 192 -407
+ -409 -329 192 -438
+ -214 184 -338 -335
+ -408 189 -298 -306
+ 176 -232 -175 -315
+ -75 38 45 -45
+ -5 3 37 -46
diff --git a/profiles/vertebrates/MA1616.1.pwm b/profiles/vertebrates/MA1616.1.pwm
index e69de29..89f59b6 100644
--- a/profiles/vertebrates/MA1616.1.pwm
+++ b/profiles/vertebrates/MA1616.1.pwm
@@ -0,0 +1,15 @@
+ 19 -20 0 -2
+ 15 -74 71 -60
+ -111 -76 124 -75
+ 182 -299 -196 -374
+ 190 -364 -303 -399
+ 177 -328 -143 -325
+ 167 -193 -180 -186
+ -286 177 -234 -203
+ -129 173 -226 -408
+ -130 -62 -384 152
+ -421 -492 195 -458
+ -291 -404 190 -399
+ 143 -81 -130 -164
+ 29 -34 41 -60
+ -5 18 -28 10
diff --git a/profiles/vertebrates/MA1618.1.pwm b/profiles/vertebrates/MA1618.1.pwm
index 0977034..27b8650 100644
--- a/profiles/vertebrates/MA1618.1.pwm
+++ b/profiles/vertebrates/MA1618.1.pwm
@@ -1,13 +1,13 @@
- 18 -27 2 4
- 31 2 -2 -40
- 124 -39 -58 -231
- -476 196 -480 -439
- 196 -494 -456 -509
- -385 -295 186 -247
- 175 -107 -305 -461
- -484 -401 -494 195
- -390 -489 194 -410
- -190 -81 -34 125
- -126 -62 -65 120
- -5 0 2 3
- 6 3 -10 0
+ 18 -27 2 3
+ 31 2 -2 -40
+ 124 -39 -57 -227
+ -448 195 -451 -417
+ 195 -462 -431 -474
+ -370 -288 185 -241
+ 174 -105 -296 -435
+ -454 -384 -462 194
+ -375 -458 193 -392
+ -187 -80 -34 124
+ -124 -62 -65 119
+ -5 0 2 3
+ 6 3 -10 0
diff --git a/profiles/vertebrates/MA1619.1.pwm b/profiles/vertebrates/MA1619.1.pwm
index 9235241..ed3dba0 100644
--- a/profiles/vertebrates/MA1619.1.pwm
+++ b/profiles/vertebrates/MA1619.1.pwm
@@ -1,12 +1,12 @@
- 4 -1 12 -17
- 13 42 -15 -58
- 126 -76 -47 -178
- -521 198 -602 -607
- 197 -547 -480 -602
- -574 -256 188 -302
- -302 188 -260 -578
- -612 -478 -550 197
- -607 -607 198 -521
- -176 -47 -77 126
- -57 -15 42 12
- -18 12 -1 5
+ 4 -1 12 -17
+ 12 42 -15 -57
+ 125 -75 -46 -174
+ -471 197 -522 -525
+ 196 -488 -441 -522
+ -505 -248 187 -291
+ -290 187 -252 -508
+ -528 -439 -490 196
+ -525 -525 197 -471
+ -172 -46 -76 125
+ -56 -15 42 12
+ -18 12 -1 4
diff --git a/profiles/vertebrates/MA1620.1.pwm b/profiles/vertebrates/MA1620.1.pwm
index be47d30..5a5ed7d 100644
--- a/profiles/vertebrates/MA1620.1.pwm
+++ b/profiles/vertebrates/MA1620.1.pwm
@@ -1,12 +1,12 @@
- 14 -6 5 -15
- 2 52 -11 -69
- 142 -111 -87 -164
- -381 194 -451 -459
- 196 -542 -494 -450
- -447 174 -112 -259
- -333 190 -313 -432
- -492 -477 -471 196
- -524 -456 195 -418
- -229 -67 -76 137
- -62 -3 38 9
- -17 22 -24 13
+ 14 -6 5 -15
+ 2 52 -11 -68
+ 141 -110 -86 -161
+ -363 193 -423 -429
+ 195 -493 -457 -422
+ -420 173 -111 -253
+ -321 189 -302 -407
+ -456 -444 -440 195
+ -480 -427 194 -396
+ -223 -66 -75 136
+ -61 -3 37 9
+ -16 22 -23 13
diff --git a/profiles/vertebrates/MA1621.1.pwm b/profiles/vertebrates/MA1621.1.pwm
index df4e718..8e1b645 100644
--- a/profiles/vertebrates/MA1621.1.pwm
+++ b/profiles/vertebrates/MA1621.1.pwm
@@ -1,14 +1,14 @@
- -27 26 4 -8
- 3 1 8 -13
- 48 37 -42 -82
- 132 -81 -69 -163
- -412 194 -455 -414
- 196 -511 -446 -481
- -484 182 -184 -273
- -337 190 -293 -465
- -526 -407 -419 195
- -456 -420 195 -428
- -208 -49 -61 126
- -65 43 16 -15
- -9 26 -30 7
- -21 32 -8 -8
+ -26 25 4 -8
+ 3 1 8 -13
+ 48 37 -42 -81
+ 131 -80 -68 -160
+ -390 193 -426 -392
+ 195 -469 -418 -446
+ -449 181 -181 -265
+ -324 189 -284 -434
+ -480 -385 -396 194
+ -427 -397 193 -404
+ -204 -48 -60 125
+ -64 42 15 -15
+ -9 25 -30 7
+ -21 31 -8 -8
diff --git a/profiles/vertebrates/MA1622.1.pwm b/profiles/vertebrates/MA1622.1.pwm
index e69de29..661ec50 100644
--- a/profiles/vertebrates/MA1622.1.pwm
+++ b/profiles/vertebrates/MA1622.1.pwm
@@ -0,0 +1,14 @@
+ 21 -20 2 -6
+ -4 -4 -15 21
+ -5 -65 42 7
+ 78 -22 16 -167
+ -464 -495 -500 196
+ -450 -460 191 -260
+ 196 -523 -497 -436
+ -200 152 -74 -186
+ -326 -506 -480 194
+ -183 186 -450 -437
+ 195 -456 -464 -412
+ -188 -33 -38 112
+ 19 -6 -26 9
+ 9 0 -3 -6
diff --git a/profiles/vertebrates/MA1623.1.pwm b/profiles/vertebrates/MA1623.1.pwm
index 1226c1d..b5f17d3 100644
--- a/profiles/vertebrates/MA1623.1.pwm
+++ b/profiles/vertebrates/MA1623.1.pwm
@@ -1,13 +1,13 @@
- 70 -88 18 -52
- -3 -169 121 -132
- 184 -370 -256 -262
- 192 -372 -380 -368
- 192 -378 -351 -400
- -179 155 -92 -203
- 167 -271 -374 -75
- -270 -446 191 -417
- 190 -434 -260 -440
- 192 -446 -334 -384
- 183 -275 -266 -281
- -42 60 25 -88
- 35 -38 -74 45
+ 69 -86 18 -51
+ -3 -164 120 -128
+ 183 -345 -245 -251
+ 190 -347 -354 -344
+ 190 -352 -329 -369
+ -174 154 -90 -196
+ 165 -259 -349 -74
+ -258 -405 189 -383
+ 189 -396 -249 -400
+ 190 -405 -314 -357
+ 181 -263 -254 -268
+ -41 59 25 -86
+ 35 -38 -73 44
diff --git a/profiles/vertebrates/MA1624.1.pwm b/profiles/vertebrates/MA1624.1.pwm
index c182186..d801107 100644
--- a/profiles/vertebrates/MA1624.1.pwm
+++ b/profiles/vertebrates/MA1624.1.pwm
@@ -1,12 +1,12 @@
- 23 -41 -17 24
- -185 -160 -245 168
- -290 -366 -297 187
- -410 196 -544 -478
- -399 184 -533 -161
- 150 -94 -304 -92
- 157 -382 -20 -345
- -589 -568 198 -514
- 194 -478 -453 -370
- 192 -410 -348 -395
- 34 -13 -19 -8
- 4 11 -72 36
+ 23 -40 -17 23
+ -179 -156 -236 167
+ -277 -344 -283 186
+ -379 194 -474 -431
+ -371 183 -468 -157
+ 149 -92 -290 -90
+ 156 -356 -20 -326
+ -500 -488 196 -455
+ 193 -431 -412 -346
+ 191 -379 -328 -367
+ 34 -13 -19 -8
+ 4 11 -70 36
diff --git a/profiles/vertebrates/MA1625.1.pwm b/profiles/vertebrates/MA1625.1.pwm
index 375a943..e8fd9a0 100644
--- a/profiles/vertebrates/MA1625.1.pwm
+++ b/profiles/vertebrates/MA1625.1.pwm
@@ -1,15 +1,15 @@
- -17 14 -2 2
- 40 -26 -9 -13
- 2 -18 -36 41
- -376 -368 -376 192
- -291 -434 -434 191
- -443 195 -491 -415
- -322 166 -400 -56
- -58 134 -244 -70
- 184 -352 -220 -318
- -611 -543 198 -534
- 189 -430 -300 -302
- 195 -479 -379 -504
- 38 -17 4 -37
- -1 -2 -35 30
- -6 15 8 -20
+ -17 14 -2 2
+ 39 -26 -9 -13
+ 2 -18 -35 40
+ -345 -339 -345 190
+ -274 -390 -390 189
+ -396 193 -428 -375
+ -301 164 -365 -55
+ -57 132 -233 -68
+ 182 -327 -211 -298
+ -493 -459 196 -454
+ 187 -387 -283 -284
+ 193 -420 -348 -436
+ 38 -16 4 -36
+ -1 -2 -34 30
+ -6 15 8 -20
diff --git a/profiles/vertebrates/MA1627.1.pwm b/profiles/vertebrates/MA1627.1.pwm
index 30622b0..3ac6e07 100644
--- a/profiles/vertebrates/MA1627.1.pwm
+++ b/profiles/vertebrates/MA1627.1.pwm
@@ -1,14 +1,14 @@
- -42 68 -56 -4
- -81 47 -1 7
- -48 133 -154 -123
- -461 195 -434 -491
- -329 -409 -188 183
- -580 197 -480 -550
- -487 189 -397 -240
- -477 186 -329 -209
- -46 163 -354 -350
- -524 196 -467 -484
- 149 -447 -24 -173
- -289 168 -143 -175
- 51 20 -34 -67
- -117 79 -18 -8
+ -41 67 -55 -4
+ -80 47 -1 7
+ -47 132 -150 -120
+ -419 194 -399 -441
+ -312 -379 -182 182
+ -496 196 -433 -479
+ -438 188 -369 -231
+ -431 184 -312 -202
+ -46 162 -333 -330
+ -463 195 -424 -436
+ 148 -408 -24 -168
+ -276 166 -139 -170
+ 51 20 -33 -66
+ -115 78 -17 -8
diff --git a/profiles/vertebrates/MA1628.1.pwm b/profiles/vertebrates/MA1628.1.pwm
index e69de29..be3b093 100644
--- a/profiles/vertebrates/MA1628.1.pwm
+++ b/profiles/vertebrates/MA1628.1.pwm
@@ -0,0 +1,11 @@
+ -25 89 -16 -129
+ 30 7 16 -74
+ -554 195 -425 -373
+ 189 -261 -310 -644
+ -437 -351 194 -466
+ -464 190 -437 -246
+ 185 -289 -194 -644
+ -612 -222 190 -444
+ -514 -443 195 -407
+ -3 2 16 -19
+ 3 -20 50 -53
diff --git a/profiles/vertebrates/MA1629.1.pwm b/profiles/vertebrates/MA1629.1.pwm
index e69de29..c8c33ee 100644
--- a/profiles/vertebrates/MA1629.1.pwm
+++ b/profiles/vertebrates/MA1629.1.pwm
@@ -0,0 +1,14 @@
+ 8 23 -11 -25
+ -28 -75 36 38
+ -134 173 -230 -349
+ 120 -75 -181 -29
+ -421 194 -380 -435
+ 188 -285 -382 -335
+ -417 -356 194 -500
+ -481 191 -334 -321
+ 182 -437 -198 -268
+ -378 -423 190 -278
+ -461 -370 193 -405
+ 4 -100 72 -27
+ 29 -83 74 -85
+ -35 -45 83 -50
diff --git a/profiles/vertebrates/MA1630.1.pwm b/profiles/vertebrates/MA1630.1.pwm
index e69de29..65988d5 100644
--- a/profiles/vertebrates/MA1630.1.pwm
+++ b/profiles/vertebrates/MA1630.1.pwm
@@ -0,0 +1,11 @@
+ -45 -89 110 -77
+ -71 -60 118 -112
+ -588 -271 -508 193
+ -540 -394 196 -569
+ -520 -318 194 -523
+ -488 -346 194 -526
+ -530 -362 195 -508
+ -544 -476 196 -452
+ 197 -467 -588 -573
+ -114 -192 138 -57
+ -208 -214 174 -231
diff --git a/profiles/vertebrates/MA1630.2.pwm b/profiles/vertebrates/MA1630.2.pwm
index 6727e46..ba9fb8f 100644
--- a/profiles/vertebrates/MA1630.2.pwm
+++ b/profiles/vertebrates/MA1630.2.pwm
@@ -1,12 +1,12 @@
- -797 -797 200 -797
- -797 -797 200 -797
- -284 -797 195 -797
- -797 -797 200 -797
- -797 -797 200 -797
- 153 -45 -797 -138
- -104 -797 163 -125
- -797 -797 200 -797
- -261 -797 191 -380
- -241 -321 188 -516
- 35 12 17 -97
- 6 -5 67 -129
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -259 -486 191 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 150 -43 -486 -131
+ -99 -486 160 -119
+ -486 -486 196 -486
+ -240 -486 188 -332
+ -223 -289 185 -411
+ 34 12 16 -92
+ 6 -5 65 -123
diff --git a/profiles/vertebrates/MA1631.1.pwm b/profiles/vertebrates/MA1631.1.pwm
index e69de29..611c516 100644
--- a/profiles/vertebrates/MA1631.1.pwm
+++ b/profiles/vertebrates/MA1631.1.pwm
@@ -0,0 +1,13 @@
+ -33 46 -4 -22
+ 6 -10 0 4
+ -55 -37 111 -137
+ -523 196 -456 -469
+ 191 -382 -325 -370
+ -537 181 -141 -333
+ -516 195 -372 -545
+ -438 -346 -400 193
+ -486 -414 195 -487
+ -428 174 -164 -182
+ -93 105 -152 7
+ -28 30 6 -14
+ -52 48 -4 -10
diff --git a/profiles/vertebrates/MA1632.1.pwm b/profiles/vertebrates/MA1632.1.pwm
index e69de29..3fe34fd 100644
--- a/profiles/vertebrates/MA1632.1.pwm
+++ b/profiles/vertebrates/MA1632.1.pwm
@@ -0,0 +1,13 @@
+ 44 -46 -32 16
+ 37 -53 35 -43
+ 171 -222 -125 -331
+ -469 -396 -526 195
+ -360 -499 189 -254
+ 196 -503 -553 -385
+ -375 19 64 29
+ -339 -398 193 -553
+ -386 -531 -544 196
+ -175 184 -439 -394
+ 196 -574 -417 -471
+ -231 -7 -131 129
+ -11 9 -36 30
diff --git a/profiles/vertebrates/MA1633.1.pwm b/profiles/vertebrates/MA1633.1.pwm
index 75d04da..c312045 100644
--- a/profiles/vertebrates/MA1633.1.pwm
+++ b/profiles/vertebrates/MA1633.1.pwm
@@ -1,13 +1,13 @@
- -26 2 31 -14
- 83 -2 -2 -204
- -521 -386 -471 195
- -533 -471 193 -302
- 195 -408 -454 -509
- -313 170 -90 -316
- -258 -414 -387 189
- -276 190 -445 -402
- 193 -433 -365 -382
- -352 -264 175 -133
- -234 178 -218 -283
- 118 -84 -98 -57
- 21 -12 -13 2
+ -25 2 31 -14
+ 83 -2 -2 -200
+ -485 -372 -444 194
+ -493 -444 192 -294
+ 194 -391 -431 -476
+ -305 169 -89 -308
+ -252 -396 -372 188
+ -269 190 -423 -385
+ 192 -412 -352 -368
+ -340 -258 174 -131
+ -229 177 -214 -276
+ 117 -83 -97 -56
+ 21 -12 -13 2
diff --git a/profiles/vertebrates/MA1633.2.pwm b/profiles/vertebrates/MA1633.2.pwm
index 8c70f85..38119a8 100644
--- a/profiles/vertebrates/MA1633.2.pwm
+++ b/profiles/vertebrates/MA1633.2.pwm
@@ -1,9 +1,9 @@
- 166 -279 -73 -329
- -1018 -834 -834 200
- -10000 -932 196 -335
- 200 -774 -840 -918
- -392 195 -10000 -401
- -408 -819 -145 184
- -164 188 -740 -893
- 200 -770 -734 -890
- -130 -49 -205 140
+ 165 -275 -73 -323
+ -722 -681 -681 199
+ -745 -711 196 -328
+ 199 -657 -683 -705
+ -381 195 -746 -389
+ -397 -686 -144 183
+ -162 187 -648 -708
+ 199 -656 -639 -698
+ -129 -49 -203 140
diff --git a/profiles/vertebrates/MA1634.1.pwm b/profiles/vertebrates/MA1634.1.pwm
index a06c0e0..6698178 100644
--- a/profiles/vertebrates/MA1634.1.pwm
+++ b/profiles/vertebrates/MA1634.1.pwm
@@ -1,11 +1,11 @@
- 21 -103 -3 46
- 94 -40 -45 -77
- -460 -505 -538 197
- -337 -437 179 -133
- 197 -555 -511 -464
- -252 167 -108 -252
- -338 -526 -381 193
- -131 178 -405 -320
- 195 -477 -453 -396
- -53 -64 -28 88
- 46 4 -99 13
+ 21 -103 -3 46
+ 94 -39 -44 -77
+ -446 -485 -513 196
+ -331 -424 178 -132
+ 196 -528 -490 -449
+ -249 166 -107 -249
+ -332 -503 -373 192
+ -130 177 -395 -315
+ 194 -460 -439 -387
+ -53 -63 -28 88
+ 46 4 -98 13
diff --git a/profiles/vertebrates/MA1635.1.pwm b/profiles/vertebrates/MA1635.1.pwm
index fe57560..54531da 100644
--- a/profiles/vertebrates/MA1635.1.pwm
+++ b/profiles/vertebrates/MA1635.1.pwm
@@ -1,10 +1,10 @@
- -24 29 -5 -6
- -4 16 66 -159
- -10000 200 -870 -836
- 199 -695 -646 -10000
- -1216 -644 199 -836
- -836 199 -644 -1216
- -10000 -646 -695 199
- -836 -826 200 -10000
- -159 66 16 -4
- -6 -5 29 -24
+ -24 29 -5 -6
+ -4 15 66 -157
+ -709 199 -669 -659
+ 199 -603 -575 -709
+ -705 -573 199 -659
+ -659 199 -573 -705
+ -709 -575 -603 199
+ -659 -656 199 -709
+ -157 66 15 -4
+ -6 -5 29 -24
diff --git a/profiles/vertebrates/MA1636.1.pwm b/profiles/vertebrates/MA1636.1.pwm
index e69de29..d047ef6 100644
--- a/profiles/vertebrates/MA1636.1.pwm
+++ b/profiles/vertebrates/MA1636.1.pwm
@@ -0,0 +1,15 @@
+ 37 -29 -11 -6
+ 32 -99 12 22
+ 147 -158 -30 -359
+ -468 -498 -473 196
+ -373 -455 168 -55
+ 177 -415 -184 -195
+ -214 -176 -303 175
+ -404 -515 195 -442
+ -108 163 -471 -131
+ 195 -390 -572 -467
+ 196 -529 -473 -441
+ -305 -96 -200 164
+ 47 69 -120 -82
+ 48 -40 -80 35
+ -8 -6 -64 53
diff --git a/profiles/vertebrates/MA1637.1.pwm b/profiles/vertebrates/MA1637.1.pwm
index 99003a1..8890678 100644
--- a/profiles/vertebrates/MA1637.1.pwm
+++ b/profiles/vertebrates/MA1637.1.pwm
@@ -1,13 +1,13 @@
- -53 -10 15 34
- -112 12 -86 92
- -465 195 -393 -490
- -385 191 -440 -290
- -404 193 -409 -384
- 145 -60 -194 -154
- 153 -226 -71 -177
- -342 -441 194 -580
- -265 -458 190 -393
- -328 -342 190 -357
- 159 -160 -147 -179
- 26 15 7 -63
- 5 -1 -27 20
+ -53 -10 14 34
+ -111 12 -85 92
+ -444 194 -380 -464
+ -373 190 -422 -284
+ -390 192 -394 -372
+ 145 -60 -191 -152
+ 152 -223 -70 -175
+ -333 -422 193 -535
+ -260 -438 189 -380
+ -320 -333 189 -347
+ 159 -158 -146 -177
+ 25 15 7 -62
+ 5 -1 -27 19
diff --git a/profiles/vertebrates/MA1638.1.pwm b/profiles/vertebrates/MA1638.1.pwm
index e69de29..7afdd08 100644
--- a/profiles/vertebrates/MA1638.1.pwm
+++ b/profiles/vertebrates/MA1638.1.pwm
@@ -0,0 +1,10 @@
+ 42 -44 -2 -9
+ 22 57 -11 -125
+ -693 198 -544 -607
+ 194 -407 -346 -732
+ -710 -648 199 -589
+ 199 -669 -655 -684
+ -705 -171 -668 188
+ -478 -531 197 -636
+ -53 2 23 17
+ -29 43 -31 4
diff --git a/profiles/vertebrates/MA1639.1.pwm b/profiles/vertebrates/MA1639.1.pwm
index e3178b0..4909a0c 100644
--- a/profiles/vertebrates/MA1639.1.pwm
+++ b/profiles/vertebrates/MA1639.1.pwm
@@ -1,13 +1,13 @@
- 12 -24 18 -9
- 15 23 -114 34
- -80 144 -320 -73
- 192 -479 -295 -451
- -440 -461 -434 195
- 45 109 -274 -147
- 185 -233 -567 -247
- 186 -298 -313 -295
- -373 -427 -474 194
- -343 192 -479 -347
- 169 -259 -347 -95
- 4 -16 -85 61
- 15 -13 -42 29
+ 11 -24 17 -9
+ 14 23 -112 34
+ -78 143 -307 -72
+ 191 -439 -284 -417
+ -408 -425 -404 194
+ 44 108 -264 -144
+ 184 -226 -499 -239
+ 185 -286 -300 -284
+ -353 -399 -435 193
+ -327 191 -439 -330
+ 168 -251 -330 -93
+ 4 -16 -84 60
+ 15 -13 -41 29
diff --git a/profiles/vertebrates/MA1640.1.pwm b/profiles/vertebrates/MA1640.1.pwm
index e69de29..50266ce 100644
--- a/profiles/vertebrates/MA1640.1.pwm
+++ b/profiles/vertebrates/MA1640.1.pwm
@@ -0,0 +1,15 @@
+ 30 -60 19 -5
+ 35 -32 -11 -1
+ 97 -108 -37 -34
+ -37 -333 -182 151
+ -175 -391 177 -220
+ 193 -439 -429 -361
+ -305 -406 -325 189
+ -276 -442 -402 190
+ -161 -304 -147 167
+ 193 -458 -326 -472
+ -332 -222 -324 184
+ -93 -218 134 -48
+ 19 -163 70 -13
+ -37 37 -27 15
+ -15 6 -58 47
diff --git a/profiles/vertebrates/MA1641.1.pwm b/profiles/vertebrates/MA1641.1.pwm
index e69de29..de7055a 100644
--- a/profiles/vertebrates/MA1641.1.pwm
+++ b/profiles/vertebrates/MA1641.1.pwm
@@ -0,0 +1,12 @@
+ -5 -5 22 -13
+ 32 9 16 -82
+ 141 -102 -65 -223
+ -454 195 -392 -535
+ 196 -527 -489 -419
+ -448 -346 192 -351
+ -350 192 -346 -448
+ -419 -490 -527 196
+ -537 -392 195 -454
+ -223 -65 -102 141
+ -82 17 9 32
+ -13 22 -5 -5
diff --git a/profiles/vertebrates/MA1642.1.pwm b/profiles/vertebrates/MA1642.1.pwm
index e69de29..15a3ce9 100644
--- a/profiles/vertebrates/MA1642.1.pwm
+++ b/profiles/vertebrates/MA1642.1.pwm
@@ -0,0 +1,13 @@
+ 2 -22 33 -19
+ 7 -33 23 -4
+ 49 -41 37 -86
+ 93 -8 -10 -227
+ -474 196 -457 -493
+ 197 -507 -464 -540
+ -428 -336 182 -160
+ 192 -311 -422 -475
+ -364 -319 -455 191
+ -473 -510 195 -403
+ -246 -152 153 -80
+ -37 28 -18 17
+ 14 7 2 -26
diff --git a/profiles/vertebrates/MA1643.1.pwm b/profiles/vertebrates/MA1643.1.pwm
index 49b0466..d389206 100644
--- a/profiles/vertebrates/MA1643.1.pwm
+++ b/profiles/vertebrates/MA1643.1.pwm
@@ -1,21 +1,21 @@
- -7 -22 -11 33
- 10 -40 23 -1
- -138 140 -107 -99
- -202 151 -252 -45
- -305 -579 -277 189
- -779 -665 199 -665
- -611 -652 199 -611
- -290 194 -535 -594
- 153 -109 -266 -102
- -132 11 -86 98
- -2 -48 6 33
- -89 -105 135 -124
- -66 -261 -129 148
- -630 -515 192 -262
- -611 198 -558 -579
- -711 199 -665 -620
- 183 -157 -494 -398
- 144 -278 -7 -239
- -100 -124 143 -137
- 7 11 -34 11
- 31 -12 -17 -7
+ -6 -22 -11 33
+ 10 -39 23 -1
+ -135 139 -105 -97
+ -195 150 -242 -44
+ -290 -494 -265 188
+ -570 -534 198 -534
+ -510 -529 197 -510
+ -277 192 -468 -502
+ 151 -107 -255 -100
+ -129 11 -84 97
+ -2 -47 6 33
+ -88 -103 134 -121
+ -64 -250 -126 147
+ -519 -456 191 -251
+ -510 196 -482 -494
+ -551 197 -534 -515
+ 182 -152 -441 -369
+ 142 -266 -6 -230
+ -98 -121 141 -133
+ 7 11 -33 11
+ 30 -12 -16 -7
diff --git a/profiles/vertebrates/MA1644.1.pwm b/profiles/vertebrates/MA1644.1.pwm
index 4ce1bf6..b5096eb 100644
--- a/profiles/vertebrates/MA1644.1.pwm
+++ b/profiles/vertebrates/MA1644.1.pwm
@@ -1,11 +1,11 @@
- 61 -69 45 -102
- 35 -96 55 -42
- -357 188 -311 -299
- -316 192 -494 -380
- 191 -339 -505 -305
- 186 -318 -263 -319
- -372 -319 -558 192
- -268 172 -122 -310
- 180 -226 -193 -418
- -65 12 81 -94
- 61 -8 -38 -39
+ 60 -68 44 -101
+ 35 -95 55 -42
+ -344 187 -302 -291
+ -307 191 -461 -365
+ 190 -328 -470 -296
+ 185 -308 -257 -309
+ -357 -309 -510 191
+ -261 171 -120 -301
+ 179 -221 -190 -398
+ -64 12 80 -93
+ 60 -7 -38 -39
diff --git a/profiles/vertebrates/MA1645.1.pwm b/profiles/vertebrates/MA1645.1.pwm
index 268d431..c4e0d84 100644
--- a/profiles/vertebrates/MA1645.1.pwm
+++ b/profiles/vertebrates/MA1645.1.pwm
@@ -1,14 +1,14 @@
- 10 10 -41 15
- 54 -21 -42 -10
- 17 -23 -4 7
- -142 164 -150 -262
- -340 190 -521 -287
- 187 -381 -466 -206
- -377 192 -395 -391
- -373 -385 -446 193
- -403 189 -296 -316
- 171 -123 -349 -227
- 162 -163 -152 -198
- 9 3 22 -41
- 29 -13 -23 1
- 19 -5 -10 -5
+ 10 10 -40 15
+ 54 -21 -42 -10
+ 16 -23 -4 7
+ -140 163 -149 -257
+ -331 190 -492 -282
+ 186 -370 -446 -204
+ -366 192 -383 -379
+ -363 -373 -429 192
+ -390 188 -290 -309
+ 171 -122 -340 -224
+ 161 -161 -151 -195
+ 9 3 22 -41
+ 29 -13 -23 1
+ 19 -5 -10 -5
diff --git a/profiles/vertebrates/MA1646.1.pwm b/profiles/vertebrates/MA1646.1.pwm
index 0534e12..d7ea93b 100644
--- a/profiles/vertebrates/MA1646.1.pwm
+++ b/profiles/vertebrates/MA1646.1.pwm
@@ -1,12 +1,12 @@
- 26 -2 -19 -9
- 20 18 -30 -14
- 120 -74 -81 -92
- -387 191 -319 -413
- 188 -423 -233 -375
- -410 -401 194 -456
- 166 -240 -204 -128
- 189 -368 -284 -373
- -315 -444 192 -395
- -247 171 -214 -163
- 24 21 -71 7
- 13 -16 35 -44
+ 26 -2 -19 -9
+ 20 18 -30 -14
+ 120 -73 -80 -91
+ -371 190 -310 -395
+ 187 -404 -228 -361
+ -392 -385 193 -432
+ 165 -235 -200 -126
+ 188 -355 -277 -359
+ -306 -422 191 -379
+ -242 170 -210 -161
+ 24 21 -70 7
+ 13 -16 35 -44
diff --git a/profiles/vertebrates/MA1647.1.pwm b/profiles/vertebrates/MA1647.1.pwm
index e69de29..83f2888 100644
--- a/profiles/vertebrates/MA1647.1.pwm
+++ b/profiles/vertebrates/MA1647.1.pwm
@@ -0,0 +1,11 @@
+ 13 -63 49 -22
+ 17 -83 19 22
+ -260 183 -244 -339
+ -106 -258 -164 160
+ -255 -380 190 -493
+ -345 -354 -415 191
+ -327 -211 -215 178
+ -308 -353 -379 190
+ -187 180 -361 -255
+ 22 -31 -130 70
+ 50 -24 -43 -1
diff --git a/profiles/vertebrates/MA1647.2.pwm b/profiles/vertebrates/MA1647.2.pwm
index e69de29..594a1f7 100644
--- a/profiles/vertebrates/MA1647.2.pwm
+++ b/profiles/vertebrates/MA1647.2.pwm
@@ -0,0 +1,17 @@
+ 10 -78 69 -45
+ 40 -61 31 -35
+ -41 -10 55 -24
+ -41 131 -184 -103
+ -287 186 -375 -277
+ -336 -264 -381 188
+ -53 -274 -52 130
+ -298 -459 192 -438
+ 194 -388 -428 -428
+ 192 -403 -309 -459
+ 194 -438 -411 -448
+ -363 193 -419 -403
+ -39 54 -267 70
+ -77 -66 125 -133
+ -98 56 -145 73
+ -106 82 -159 51
+ 45 -38 12 -35
diff --git a/profiles/vertebrates/MA1648.1.pwm b/profiles/vertebrates/MA1648.1.pwm
index 5418608..f083c3e 100644
--- a/profiles/vertebrates/MA1648.1.pwm
+++ b/profiles/vertebrates/MA1648.1.pwm
@@ -1,11 +1,11 @@
- -25 33 14 -31
- -6 19 26 -51
- -402 190 -371 -304
- 176 -295 -146 -316
- -438 185 -203 -314
- -302 185 -213 -455
- -349 -199 -256 180
- -246 -289 185 -389
- -383 183 -274 -218
- -16 19 -11 6
- -44 23 37 -34
+ -25 32 14 -31
+ -6 19 26 -50
+ -393 190 -364 -299
+ 176 -291 -145 -311
+ -427 184 -202 -310
+ -298 185 -211 -442
+ -343 -198 -253 180
+ -243 -285 185 -381
+ -375 183 -271 -216
+ -16 19 -11 6
+ -44 23 37 -34
diff --git a/profiles/vertebrates/MA1649.1.pwm b/profiles/vertebrates/MA1649.1.pwm
index e69de29..dbe23f0 100644
--- a/profiles/vertebrates/MA1649.1.pwm
+++ b/profiles/vertebrates/MA1649.1.pwm
@@ -0,0 +1,11 @@
+ 29 -22 23 -42
+ -65 17 -59 66
+ -291 186 -265 -378
+ -304 -237 -254 181
+ 62 -374 122 -404
+ -355 -364 189 -311
+ 189 -320 -329 -376
+ 190 -388 -333 -348
+ -415 191 -417 -281
+ 15 58 -86 -24
+ -30 31 -26 16
diff --git a/profiles/vertebrates/MA1650.1.pwm b/profiles/vertebrates/MA1650.1.pwm
index a25cc5f..a33ebd5 100644
--- a/profiles/vertebrates/MA1650.1.pwm
+++ b/profiles/vertebrates/MA1650.1.pwm
@@ -1,12 +1,12 @@
- -100 65 55 -110
- -118 79 45 -113
- -176 163 -89 -396
- -479 192 -287 -427
- -361 -195 185 -420
- -406 184 -183 -379
- -311 -190 183 -408
- -434 188 -212 -445
- 199 -494 -683 -10000
- -352 169 -80 -321
- -23 51 35 -116
- -136 99 12 -91
+ -98 64 55 -108
+ -116 79 45 -111
+ -171 162 -87 -368
+ -432 190 -275 -393
+ -339 -189 183 -387
+ -376 183 -178 -354
+ -295 -184 182 -378
+ -398 186 -205 -407
+ 197 -442 -542 -610
+ -332 168 -79 -304
+ -23 50 35 -114
+ -133 98 12 -89
diff --git a/profiles/vertebrates/MA1651.1.pwm b/profiles/vertebrates/MA1651.1.pwm
index e69de29..ab3510a 100644
--- a/profiles/vertebrates/MA1651.1.pwm
+++ b/profiles/vertebrates/MA1651.1.pwm
@@ -0,0 +1,21 @@
+ -24 10 19 -8
+ 5 -6 -9 9
+ -11 -12 -16 33
+ -16 58 -41 -22
+ -40 116 -111 -88
+ 185 -340 -233 -337
+ 180 -280 -250 -237
+ 88 -139 60 -195
+ 195 -468 -426 -460
+ -477 -426 -468 195
+ -486 -486 197 -529
+ -366 -351 182 -174
+ -344 193 -468 -438
+ -310 -183 -42 151
+ -228 -62 148 -150
+ -173 163 -234 -130
+ -135 128 -118 -44
+ -7 6 -28 24
+ -69 56 -5 -9
+ -25 35 3 -21
+ 1 -11 20 -12
diff --git a/profiles/vertebrates/MA1652.1.pwm b/profiles/vertebrates/MA1652.1.pwm
index 7fa4e40..180ec5d 100644
--- a/profiles/vertebrates/MA1652.1.pwm
+++ b/profiles/vertebrates/MA1652.1.pwm
@@ -1,14 +1,14 @@
- 6 -39 48 -33
- -2 -24 53 -46
- 86 -140 -5 -25
- -261 -479 190 -406
- -445 -495 196 -500
- 194 -375 -415 -545
- 80 -495 114 -495
- -318 -449 192 -409
- -351 -327 -345 189
- -427 -512 197 -653
- 194 -434 -375 -506
- -115 -117 129 -60
- 61 -72 37 -80
- 49 -55 34 -63
+ 6 -38 47 -33
+ -2 -24 52 -45
+ 85 -136 -5 -24
+ -249 -425 189 -372
+ -401 -435 194 -439
+ 193 -347 -378 -466
+ 79 -435 112 -435
+ -299 -404 190 -374
+ -327 -307 -323 188
+ -388 -446 195 -518
+ 193 -393 -347 -442
+ -112 -114 128 -59
+ 60 -71 37 -78
+ 48 -54 33 -62
diff --git a/profiles/vertebrates/MA1653.1.pwm b/profiles/vertebrates/MA1653.1.pwm
index e69de29..778050f 100644
--- a/profiles/vertebrates/MA1653.1.pwm
+++ b/profiles/vertebrates/MA1653.1.pwm
@@ -0,0 +1,12 @@
+ -99 71 -32 8
+ -113 53 20 -7
+ -470 194 -361 -434
+ -416 188 -251 -364
+ -412 190 -273 -412
+ -461 194 -357 -493
+ -415 -613 -144 183
+ -493 196 -435 -492
+ -290 182 -254 -252
+ -259 172 -276 -135
+ -170 136 -54 -122
+ -170 134 -44 -123
diff --git a/profiles/vertebrates/MA1654.1.pwm b/profiles/vertebrates/MA1654.1.pwm
index e69de29..301f629 100644
--- a/profiles/vertebrates/MA1654.1.pwm
+++ b/profiles/vertebrates/MA1654.1.pwm
@@ -0,0 +1,23 @@
+ 164 -113 -172 -298
+ 78 9 12 -288
+ -196 -132 -67 144
+ 74 -334 57 -42
+ -315 -455 192 -414
+ -349 -426 191 -341
+ -471 -365 194 -471
+ 196 -490 -471 -490
+ -341 -471 193 -440
+ -392 189 -426 -261
+ -365 181 -490 -139
+ 191 -315 -349 -426
+ -250 -25 -250 149
+ -32 -270 104 -2
+ -279 -321 187 -356
+ 152 -112 -108 -235
+ 130 -315 4 -136
+ -156 -426 174 -186
+ -116 -392 176 -349
+ -170 -37 -139 134
+ -246 -177 -57 151
+ -164 36 -59 79
+ -154 -89 -108 140
diff --git a/profiles/vertebrates/MA1655.1.pwm b/profiles/vertebrates/MA1655.1.pwm
index 62277e1..d2daa18 100644
--- a/profiles/vertebrates/MA1655.1.pwm
+++ b/profiles/vertebrates/MA1655.1.pwm
@@ -1,12 +1,12 @@
- -13 -14 31 -9
- 13 -110 92 -85
- -164 -120 155 -170
- 187 -229 -319 -465
- 192 -447 -302 -428
- -396 184 -218 -301
- 191 -355 -332 -432
- -480 -371 194 -435
- -437 194 -412 -436
- -60 123 -103 -96
- 18 -8 0 -12
- -32 30 28 -41
+ -13 -14 31 -9
+ 13 -109 91 -84
+ -162 -118 155 -168
+ 186 -225 -311 -442
+ 191 -427 -295 -410
+ -381 184 -214 -294
+ 190 -344 -323 -414
+ -454 -358 193 -416
+ -417 194 -395 -417
+ -60 122 -102 -95
+ 18 -8 0 -12
+ -32 29 28 -40
diff --git a/profiles/vertebrates/MA1656.1.pwm b/profiles/vertebrates/MA1656.1.pwm
index 1582c9d..08ef2a7 100644
--- a/profiles/vertebrates/MA1656.1.pwm
+++ b/profiles/vertebrates/MA1656.1.pwm
@@ -1,14 +1,14 @@
- -8 50 -29 -29
- 14 28 0 -54
- 111 -12 -39 -266
- 170 -172 -310 -164
- -415 -438 194 -438
- -378 189 -257 -411
- -490 198 -610 -610
- -482 197 -515 -502
- 184 -267 -340 -255
- 179 -432 -121 -406
- -338 192 -352 -488
- -74 139 -202 -92
- 44 -3 -27 -25
- -20 20 22 -30
+ -8 50 -29 -28
+ 13 27 0 -53
+ 110 -12 -38 -258
+ 169 -168 -298 -160
+ -390 -409 193 -409
+ -359 188 -249 -387
+ -450 197 -528 -528
+ -443 195 -467 -458
+ 183 -259 -325 -247
+ 178 -404 -119 -382
+ -323 191 -336 -448
+ -73 138 -197 -90
+ 43 -3 -27 -25
+ -20 19 22 -29
diff --git a/profiles/vertebrates/MA1657.1.pwm b/profiles/vertebrates/MA1657.1.pwm
index e69de29..a250b2d 100644
--- a/profiles/vertebrates/MA1657.1.pwm
+++ b/profiles/vertebrates/MA1657.1.pwm
@@ -0,0 +1,12 @@
+ -59 -17 41 17
+ 99 -54 -47 -73
+ 187 -296 -318 -341
+ 185 -474 -218 -285
+ -340 -238 182 -247
+ 129 -454 46 -293
+ -392 -451 194 -417
+ -365 -409 -389 192
+ -354 -337 -350 190
+ 191 -368 -374 -352
+ 156 -133 -156 -170
+ 38 -19 -50 15
diff --git a/profiles/vertebrates/MA1683.1.pwm b/profiles/vertebrates/MA1683.1.pwm
index 532ef78..977e5cd 100644
--- a/profiles/vertebrates/MA1683.1.pwm
+++ b/profiles/vertebrates/MA1683.1.pwm
@@ -1,11 +1,11 @@
- 59 -52 6 -40
- 45 -175 -40 66
- -145 -306 172 -224
- -401 -376 -415 193
- 188 -263 -427 -342
- 182 -166 -365 -364
- 191 -365 -371 -364
- -369 169 -334 -75
- 190 -371 -432 -273
- 14 -29 -10 20
- 28 -31 -14 9
+ 58 -52 6 -39
+ 45 -174 -39 66
+ -144 -302 172 -221
+ -392 -368 -404 192
+ 188 -259 -415 -336
+ 181 -164 -357 -357
+ 191 -358 -363 -356
+ -361 169 -329 -75
+ 189 -364 -420 -270
+ 14 -29 -10 20
+ 28 -31 -14 9
diff --git a/profiles/vertebrates/MA1684.1.pwm b/profiles/vertebrates/MA1684.1.pwm
index 9a94776..03dd682 100644
--- a/profiles/vertebrates/MA1684.1.pwm
+++ b/profiles/vertebrates/MA1684.1.pwm
@@ -1,6 +1,6 @@
- 16 -10000 97 -11
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 81 117 -10000 -10000
- -10000 -10000 200 -10000
- -10000 200 -10000 -10000
+ 16 -620 96 -11
+ -620 -620 199 -620
+ 199 -620 -620 -620
+ 80 116 -620 -620
+ -620 -620 199 -620
+ -620 199 -620 -620
diff --git a/profiles/vertebrates/MA1707.1.pwm b/profiles/vertebrates/MA1707.1.pwm
index 9817556..719887b 100644
--- a/profiles/vertebrates/MA1707.1.pwm
+++ b/profiles/vertebrates/MA1707.1.pwm
@@ -1,12 +1,12 @@
- 101 -109 -66 -18
- 96 -149 -49 -2
- -14 -90 -156 115
- -143 -87 -101 137
- -10000 -706 200 -10000
- 33 -17 -975 89
- -20 -331 -10000 160
- 199 -739 -549 -10000
- -838 200 -10000 -10000
- 181 -10000 -429 -116
- 17 -205 -108 111
- -93 -79 -94 125
+ 100 -106 -65 -18
+ 95 -145 -48 -2
+ -14 -89 -152 114
+ -140 -86 -99 136
+ -550 -509 197 -550
+ 32 -17 -576 88
+ -19 -311 -589 158
+ 197 -517 -451 -551
+ -532 197 -550 -550
+ 179 -569 -385 -112
+ 17 -200 -106 110
+ -92 -78 -92 124
diff --git a/profiles/vertebrates/MA1708.1.pwm b/profiles/vertebrates/MA1708.1.pwm
index e69de29..28e8e18 100644
--- a/profiles/vertebrates/MA1708.1.pwm
+++ b/profiles/vertebrates/MA1708.1.pwm
@@ -0,0 +1,11 @@
+ 69 -155 28 -26
+ -28 -47 72 -31
+ -64 25 95 -210
+ -49 137 -150 -149
+ -621 -598 198 -621
+ -609 -598 198 -532
+ 198 -621 -621 -490
+ 195 -445 -607 -365
+ 29 -449 144 -675
+ -244 -170 -118 162
+ 21 -206 115 -138
diff --git a/profiles/vertebrates/MA1709.1.pwm b/profiles/vertebrates/MA1709.1.pwm
index b6d4a18..fd79483 100644
--- a/profiles/vertebrates/MA1709.1.pwm
+++ b/profiles/vertebrates/MA1709.1.pwm
@@ -1,15 +1,15 @@
- 89 -103 -5 -54
- 36 -34 41 -72
- 31 95 -170 -96
- 197 -519 -534 -543
- 194 -533 -423 -349
- -234 188 -331 -582
- 199 -682 -679 -582
- -447 -590 197 -581
- 188 -236 -471 -368
- 198 -558 -529 -563
- 172 -381 -290 -103
- -79 80 -23 -26
- -166 182 -530 -307
- -55 46 -234 81
- 82 -6 -85 -48
+ 89 -102 -5 -54
+ 35 -34 40 -71
+ 31 95 -167 -95
+ 196 -485 -497 -503
+ 193 -496 -405 -339
+ -229 187 -321 -532
+ 198 -594 -592 -532
+ -426 -537 196 -530
+ 188 -231 -445 -356
+ 197 -514 -492 -518
+ 172 -368 -284 -102
+ -79 79 -23 -26
+ -163 182 -493 -299
+ -55 46 -230 80
+ 82 -6 -84 -48
diff --git a/profiles/vertebrates/MA1710.1.pwm b/profiles/vertebrates/MA1710.1.pwm
index 05a7fe5..f8ccb58 100644
--- a/profiles/vertebrates/MA1710.1.pwm
+++ b/profiles/vertebrates/MA1710.1.pwm
@@ -1,12 +1,12 @@
- -40 17 58 -66
- 50 -85 -2 6
- -797 -797 200 -797
- 189 -797 -797 -176
- -797 -797 200 -797
- -797 -797 200 -797
- -7 135 -797 -101
- 113 -219 66 -797
- 173 -797 -59 -797
- -797 -797 200 -797
- 80 -156 94 -797
- -116 -131 132 -63
+ -39 16 56 -64
+ 49 -81 -2 6
+ -486 -486 196 -486
+ 185 -486 -486 -165
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -6 132 -486 -97
+ 111 -204 65 -486
+ 170 -486 -57 -486
+ -486 -486 196 -486
+ 78 -147 92 -486
+ -110 -124 130 -60
diff --git a/profiles/vertebrates/MA1711.1.pwm b/profiles/vertebrates/MA1711.1.pwm
index 9c3045c..87790cd 100644
--- a/profiles/vertebrates/MA1711.1.pwm
+++ b/profiles/vertebrates/MA1711.1.pwm
@@ -1,17 +1,17 @@
- -27 103 -17 -205
- -166 149 -273 -48
- -164 -642 186 -473
- -10000 200 -10000 -1057
- -933 -882 -10000 200
- -10000 -849 -1157 200
- -10000 200 -10000 -10000
- 118 51 -411 -203
- -443 186 -252 -267
- -212 144 -72 -114
- 58 -165 36 -14
- -392 185 -581 -165
- -342 -499 194 -515
- -259 -276 184 -311
- -312 143 -333 14
- 121 34 -269 -189
- 5 29 27 -90
+ -27 103 -17 -203
+ -164 149 -270 -47
+ -163 -597 186 -458
+ -775 199 -775 -756
+ -734 -719 -775 199
+ -775 -708 -766 199
+ -775 199 -775 -775
+ 118 51 -402 -201
+ -430 185 -249 -263
+ -210 143 -72 -113
+ 58 -163 36 -14
+ -384 184 -551 -164
+ -335 -481 194 -494
+ -256 -272 183 -307
+ -307 142 -328 14
+ 120 34 -266 -188
+ 5 29 27 -89
diff --git a/profiles/vertebrates/MA1712.1.pwm b/profiles/vertebrates/MA1712.1.pwm
index de1d4f2..488d649 100644
--- a/profiles/vertebrates/MA1712.1.pwm
+++ b/profiles/vertebrates/MA1712.1.pwm
@@ -1,18 +1,18 @@
- 74 -65 -24 -24
- -211 -211 181 -538
- -296 -159 181 -538
- -538 177 -538 -89
- -538 -43 -538 168
- -538 197 -538 -538
- -159 90 7 -43
- -64 33 65 -89
- -120 -297 177 -538
- -538 -538 197 -538
- -89 119 -65 -89
- -120 153 -297 -89
- -89 163 -538 -159
- -538 105 -211 74
- -211 -159 125 7
- 7 20 74 -297
- -120 -64 65 44
- -120 -64 148 -297
+ 72 -62 -23 -23
+ -197 -197 178 -421
+ -269 -150 178 -421
+ -421 174 -421 -85
+ -421 -41 -421 165
+ -421 194 -421 -421
+ -150 88 7 -41
+ -62 32 63 -85
+ -114 -269 174 -421
+ -421 -421 194 -421
+ -85 117 -62 -85
+ -114 150 -269 -85
+ -85 160 -421 -150
+ -421 103 -197 72
+ -197 -150 123 7
+ 7 20 72 -269
+ -114 -62 63 43
+ -114 -62 145 -269
diff --git a/profiles/vertebrates/MA1713.1.pwm b/profiles/vertebrates/MA1713.1.pwm
index e69de29..9db416d 100644
--- a/profiles/vertebrates/MA1713.1.pwm
+++ b/profiles/vertebrates/MA1713.1.pwm
@@ -0,0 +1,14 @@
+ -73 68 39 -103
+ -169 102 30 -122
+ -73 116 -59 -100
+ -292 -219 181 -274
+ -363 189 -266 -424
+ -433 193 -352 -448
+ -433 -341 193 -471
+ -523 196 -420 -523
+ -433 -372 -341 192
+ -506 193 -304 -532
+ -217 171 -162 -243
+ -205 68 50 -44
+ -113 89 14 -76
+ -35 66 15 -92
diff --git a/profiles/vertebrates/MA1714.1.pwm b/profiles/vertebrates/MA1714.1.pwm
index e69de29..ac42731 100644
--- a/profiles/vertebrates/MA1714.1.pwm
+++ b/profiles/vertebrates/MA1714.1.pwm
@@ -0,0 +1,21 @@
+ 66 -124 58 -99
+ -78 -246 135 -56
+ -140 -259 164 -159
+ 63 6 -2 -124
+ -41 52 -87 35
+ -80 42 -134 76
+ 80 -3 -50 -80
+ 32 -326 134 -316
+ -237 -385 187 -356
+ 145 -316 -10 -213
+ -259 -411 172 -107
+ -277 -432 175 -115
+ 121 27 -159 -284
+ -113 136 -259 -32
+ 161 -150 -266 -122
+ 141 -115 -52 -231
+ 196 -457 -457 -486
+ 195 -432 -456 -486
+ -276 -15 -226 146
+ -252 -432 187 -316
+ 8 -144 -20 77
diff --git a/profiles/vertebrates/MA1715.1.pwm b/profiles/vertebrates/MA1715.1.pwm
index c2c2200..fdc84a1 100644
--- a/profiles/vertebrates/MA1715.1.pwm
+++ b/profiles/vertebrates/MA1715.1.pwm
@@ -1,15 +1,15 @@
- -297 173 -309 -120
- -297 187 -322 -318
- -459 194 -501 -342
- -282 185 -518 -218
- 194 -585 -409 -348
- -501 194 -585 -318
- -585 -472 -718 198
- -618 151 -472 15
- -459 190 -501 -234
- -409 -180 -585 186
- -278 -427 184 -211
- -234 -427 188 -393
- -285 -218 -232 178
- 156 -100 -256 -139
- -110 150 -126 -182
+ -271 170 -281 -115
+ -271 184 -291 -288
+ -386 191 -409 -307
+ -259 182 -417 -204
+ 191 -446 -355 -311
+ -409 191 -446 -288
+ -446 -393 -483 195
+ -457 148 -393 15
+ -386 187 -409 -218
+ -355 -170 -446 183
+ -256 -366 181 -198
+ -218 -366 185 -344
+ -262 -204 -216 175
+ 153 -96 -237 -133
+ -105 147 -120 -172
diff --git a/profiles/vertebrates/MA1716.1.pwm b/profiles/vertebrates/MA1716.1.pwm
index 902ca77..021b23d 100644
--- a/profiles/vertebrates/MA1716.1.pwm
+++ b/profiles/vertebrates/MA1716.1.pwm
@@ -1,21 +1,21 @@
- 9 38 -30 -29
- -23 33 -62 31
- -49 -35 -105 101
- 91 -109 -211 51
- -355 196 -10000 -649
- -904 200 -904 -10000
- -904 200 -904 -804
- 190 -532 -220 -567
- -245 79 -59 51
- 157 -60 -151 -604
- 185 -294 -217 -498
- -404 -373 -263 189
- -195 -132 166 -245
- -804 200 -746 -10000
- 156 -92 -397 -112
- -8 71 -165 14
- -109 92 -370 64
- -38 -373 141 -103
- -489 179 -171 -236
- -51 -160 138 -144
- -23 79 -45 -54
+ 9 37 -29 -28
+ -23 33 -61 30
+ -48 -34 -102 100
+ 89 -105 -201 50
+ -324 194 -549 -491
+ -535 197 -535 -546
+ -535 197 -535 -524
+ 188 -444 -209 -462
+ -233 78 -58 50
+ 156 -59 -146 -491
+ 183 -275 -207 -426
+ -362 -339 -248 187
+ -188 -127 164 -233
+ -524 197 -515 -546
+ 154 -89 -363 -109
+ -8 70 -158 13
+ -106 91 -338 63
+ -37 -346 140 -100
+ -423 177 -164 -224
+ -50 -155 136 -140
+ -22 77 -44 -52
diff --git a/profiles/vertebrates/MA1717.1.pwm b/profiles/vertebrates/MA1717.1.pwm
index e69de29..a6ff81e 100644
--- a/profiles/vertebrates/MA1717.1.pwm
+++ b/profiles/vertebrates/MA1717.1.pwm
@@ -0,0 +1,11 @@
+ -33 -6 99 -195
+ -85 -53 -49 103
+ 198 -588 -622 -622
+ -512 196 -624 -420
+ -418 137 -409 38
+ -297 -283 -392 187
+ 196 -488 -471 -525
+ -479 195 -572 -354
+ -357 181 -169 -340
+ -148 -176 129 -15
+ -40 51 -77 30
diff --git a/profiles/vertebrates/MA1718.1.pwm b/profiles/vertebrates/MA1718.1.pwm
index b3c9046..d1df49c 100644
--- a/profiles/vertebrates/MA1718.1.pwm
+++ b/profiles/vertebrates/MA1718.1.pwm
@@ -1,20 +1,20 @@
- -101 -387 162 -151
- -136 -97 -367 160
- 158 -217 -64 -285
- -354 -313 -431 191
- 23 -681 144 -335
- -381 -305 155 -19
- 191 -372 -276 -500
- -581 -101 -622 180
- 147 -500 20 -422
- -378 -593 -464 195
- 192 -939 -224 -622
- -681 199 -939 -569
- -372 195 -549 -522
- 194 -581 -307 -515
- -335 172 -318 -102
- 185 -361 -234 -324
- -55 -320 16 107
- -255 -265 -219 179
- -221 -217 -189 172
- -214 -251 -193 174
+ -98 -354 161 -146
+ -132 -95 -338 158
+ 157 -208 -62 -269
+ -327 -293 -387 189
+ 23 -518 142 -312
+ -349 -287 153 -19
+ 189 -342 -261 -433
+ -478 -99 -496 178
+ 145 -433 20 -381
+ -347 -484 -410 193
+ 190 -562 -215 -496
+ -518 197 -562 -472
+ -342 193 -462 -447
+ 192 -478 -288 -442
+ -312 170 -298 -99
+ 183 -333 -223 -303
+ -54 -300 15 105
+ -242 -251 -210 177
+ -212 -208 -181 170
+ -205 -239 -185 172
diff --git a/profiles/vertebrates/MA1719.1.pwm b/profiles/vertebrates/MA1719.1.pwm
index 8bfb423..be3c1dc 100644
--- a/profiles/vertebrates/MA1719.1.pwm
+++ b/profiles/vertebrates/MA1719.1.pwm
@@ -1,18 +1,18 @@
- 45 -61 27 -37
- 69 -83 23 -62
- 68 -57 37 -119
- -76 -211 11 107
- -309 -604 193 -446
- -472 -546 197 -604
- -523 -546 198 -572
- -413 -446 195 -546
- 198 -646 -472 -646
- -379 195 -434 -546
- 158 -88 -156 -291
- -249 -163 -125 162
- -279 -329 185 -275
- -95 122 -231 -6
- 62 -33 -60 1
- -10 -131 95 -45
- -82 -155 148 -168
- -106 -106 138 -116
+ 44 -58 26 -36
+ 68 -80 22 -60
+ 66 -55 36 -114
+ -73 -197 11 105
+ -279 -449 190 -375
+ -391 -427 194 -449
+ -417 -427 194 -437
+ -355 -375 192 -427
+ 195 -461 -391 -461
+ -332 191 -368 -427
+ 155 -84 -148 -265
+ -230 -154 -119 159
+ -256 -295 182 -253
+ -91 119 -215 -6
+ 60 -32 -58 1
+ -9 -125 93 -43
+ -79 -147 145 -159
+ -102 -102 135 -111
diff --git a/profiles/vertebrates/MA1720.1.pwm b/profiles/vertebrates/MA1720.1.pwm
index b78bab0..9ae92ca 100644
--- a/profiles/vertebrates/MA1720.1.pwm
+++ b/profiles/vertebrates/MA1720.1.pwm
@@ -1,16 +1,16 @@
- 58 -50 -2 -31
- 58 10 -64 -33
- 54 -100 7 -1
- 9 -115 117 -206
- 174 -519 -104 -280
- -519 -487 197 -519
- 197 -619 -487 -519
- -487 -619 -360 195
- -438 -487 -560 196
- 144 -10 -180 -373
- -619 199 -560 -719
- 115 -328 -243 58
- -238 -280 108 64
- -360 190 -338 -338
- 162 -210 -194 -124
- -98 -36 75 4
+ 57 -48 -2 -29
+ 56 9 -60 -32
+ 53 -94 6 -1
+ 8 -108 114 -189
+ 170 -392 -98 -249
+ -392 -378 192 -392
+ 193 -424 -378 -392
+ -378 -424 -308 191
+ -354 -378 -407 192
+ 140 -10 -166 -316
+ -424 194 -407 -443
+ 111 -285 -220 57
+ -216 -249 105 62
+ -308 186 -292 -292
+ 158 -192 -179 -116
+ -93 -34 73 4
diff --git a/profiles/vertebrates/MA1721.1.pwm b/profiles/vertebrates/MA1721.1.pwm
index ffcaee5..1f6e58a 100644
--- a/profiles/vertebrates/MA1721.1.pwm
+++ b/profiles/vertebrates/MA1721.1.pwm
@@ -1,16 +1,16 @@
- -35 -110 133 -206
- -177 -136 164 -228
- -235 91 -150 65
- 129 -175 15 -268
- -329 -239 131 29
- -397 193 -476 -358
- 75 -270 108 -422
- -505 -452 197 -590
- -470 193 -383 -376
- 147 -264 -5 -339
- -431 -490 196 -590
- -497 194 -418 -376
- -81 -211 158 -224
- -305 -216 185 -401
- -67 89 -150 22
- -22 -141 127 -148
+ -35 -106 131 -197
+ -170 -131 162 -217
+ -224 89 -145 64
+ 127 -169 15 -253
+ -306 -227 130 28
+ -360 191 -415 -329
+ 73 -255 107 -378
+ -433 -399 195 -478
+ -411 191 -349 -344
+ 146 -249 -5 -314
+ -385 -424 194 -478
+ -429 192 -375 -344
+ -79 -202 156 -214
+ -285 -206 182 -363
+ -65 87 -145 22
+ -21 -136 125 -143
diff --git a/profiles/vertebrates/MA1722.1.pwm b/profiles/vertebrates/MA1722.1.pwm
index e69de29..b95e50d 100644
--- a/profiles/vertebrates/MA1722.1.pwm
+++ b/profiles/vertebrates/MA1722.1.pwm
@@ -0,0 +1,19 @@
+ -107 -410 147 -52
+ -484 169 -359 -61
+ 168 -40 -593 -632
+ -617 -629 -635 199
+ 167 -645 -651 -33
+ 197 -602 -431 -636
+ -537 138 -663 45
+ -483 -578 -89 177
+ -579 -417 195 -403
+ -586 198 -586 -536
+ -468 192 -570 -258
+ -520 194 -368 -434
+ -500 -204 -530 189
+ -536 -636 198 -582
+ -520 196 -619 -369
+ -27 -350 93 23
+ -43 -100 46 47
+ -169 158 -215 -107
+ -9 72 -53 -48
diff --git a/profiles/vertebrates/MA1723.1.pwm b/profiles/vertebrates/MA1723.1.pwm
index e69de29..37e9656 100644
--- a/profiles/vertebrates/MA1723.1.pwm
+++ b/profiles/vertebrates/MA1723.1.pwm
@@ -0,0 +1,24 @@
+ 42 -252 85 -54
+ -70 -280 148 -117
+ -1 -377 41 68
+ -252 -470 183 -204
+ -204 -470 188 -470
+ -86 -55 93 -22
+ 26 59 -22 -116
+ 160 -377 -28 -377
+ -62 -28 106 -117
+ -96 -377 174 -377
+ -280 -470 187 -252
+ 83 -140 45 -106
+ -470 -470 196 -470
+ -321 -470 193 -470
+ 48 22 -28 -70
+ 65 -47 13 -70
+ 55 -470 80 -41
+ 8 74 -116 -28
+ 162 -470 -54 -226
+ 34 -154 117 -280
+ 42 26 4 -117
+ 123 -106 -12 -204
+ 48 -62 68 -154
+ 4 -96 91 -77
diff --git a/profiles/vertebrates/MA1724.1.pwm b/profiles/vertebrates/MA1724.1.pwm
index e69de29..72bf565 100644
--- a/profiles/vertebrates/MA1724.1.pwm
+++ b/profiles/vertebrates/MA1724.1.pwm
@@ -0,0 +1,13 @@
+ -8 -6 -76 60
+ -12 -5 -8 23
+ -336 187 -308 -287
+ -95 157 -303 -137
+ -256 -99 -368 170
+ 174 -463 -81 -460
+ -342 -411 193 -481
+ -243 179 -250 -258
+ 191 -395 -380 -318
+ 185 -294 -258 -319
+ -191 166 -191 -172
+ 36 44 -61 -50
+ 8 -16 46 -57
diff --git a/profiles/vertebrates/MA1725.1.pwm b/profiles/vertebrates/MA1725.1.pwm
index e720b1a..57ae77f 100644
--- a/profiles/vertebrates/MA1725.1.pwm
+++ b/profiles/vertebrates/MA1725.1.pwm
@@ -1,13 +1,13 @@
- -35 54 -33 -5
- 33 4 -54 5
- -184 -37 -65 121
- -144 -244 136 -17
- -379 192 -388 -375
- -365 -327 -327 189
- -336 -212 183 -307
- -357 -339 -397 191
- -464 -419 -357 193
- -436 194 -446 -412
- -407 193 -488 -338
- 18 64 -177 2
- -104 -2 -6 65
+ -34 53 -33 -5
+ 32 3 -53 5
+ -181 -37 -64 120
+ -142 -239 135 -17
+ -365 191 -373 -362
+ -352 -318 -317 188
+ -326 -208 182 -299
+ -345 -329 -381 190
+ -439 -401 -345 193
+ -415 194 -424 -395
+ -390 192 -459 -328
+ 18 63 -175 2
+ -103 -2 -6 65
diff --git a/profiles/vertebrates/MA1726.1.pwm b/profiles/vertebrates/MA1726.1.pwm
index 1fb1465..4974178 100644
--- a/profiles/vertebrates/MA1726.1.pwm
+++ b/profiles/vertebrates/MA1726.1.pwm
@@ -1,14 +1,14 @@
- 7 53 -44 -38
- -8 88 -99 -48
- -106 79 -119 44
- -92 -224 -180 157
- -459 -436 195 -459
- -408 195 -500 -447
- 158 -336 -271 -41
- -417 -485 196 -559
- 193 -365 -392 -447
- -217 -471 190 -659
- -400 194 -426 -408
- -80 155 -278 -151
- -82 120 -98 -65
- 47 -48 -107 52
+ 7 52 -43 -36
+ -8 86 -95 -47
+ -102 77 -114 43
+ -89 -209 -170 154
+ -386 -372 192 -386
+ -354 192 -408 -379
+ 156 -302 -250 -40
+ -360 -400 193 -436
+ 190 -324 -343 -379
+ -203 -393 187 -469
+ -349 191 -366 -354
+ -77 152 -256 -144
+ -79 117 -94 -62
+ 45 -47 -103 50
diff --git a/profiles/vertebrates/MA1727.1.pwm b/profiles/vertebrates/MA1727.1.pwm
index e69de29..7d7729b 100644
--- a/profiles/vertebrates/MA1727.1.pwm
+++ b/profiles/vertebrates/MA1727.1.pwm
@@ -0,0 +1,15 @@
+ 26 37 -9 -81
+ 75 -100 8 -40
+ -107 37 2 29
+ 32 -5 26 -75
+ -28 20 -32 29
+ -24 -81 -157 117
+ -54 -32 89 -59
+ -485 -485 196 -485
+ -485 -485 196 -485
+ -411 187 -485 -203
+ -485 -485 196 -485
+ -485 195 -485 -411
+ -273 190 -485 -362
+ 194 -362 -485 -485
+ 79 37 -65 -157
diff --git a/profiles/vertebrates/MA1728.1.pwm b/profiles/vertebrates/MA1728.1.pwm
index e69de29..d2a6f43 100644
--- a/profiles/vertebrates/MA1728.1.pwm
+++ b/profiles/vertebrates/MA1728.1.pwm
@@ -0,0 +1,12 @@
+ 4 -25 38 -26
+ -6 24 22 -52
+ -129 -174 -125 152
+ -378 -278 188 -332
+ -418 192 -370 -368
+ -231 -267 -307 182
+ -475 -365 190 -285
+ -408 184 -265 -230
+ -331 186 -341 -258
+ -261 176 -373 -143
+ 59 -75 -43 21
+ 36 -61 55 -76
diff --git a/profiles/vertebrates/MA1729.1.pwm b/profiles/vertebrates/MA1729.1.pwm
index e69de29..aab1a8b 100644
--- a/profiles/vertebrates/MA1729.1.pwm
+++ b/profiles/vertebrates/MA1729.1.pwm
@@ -0,0 +1,15 @@
+ 2 -218 132 -188
+ 31 -43 -39 33
+ -174 174 -326 -200
+ -36 157 -405 -242
+ 189 -421 -269 -357
+ 164 -534 -36 -349
+ -456 -547 197 -530
+ 196 -512 -454 -530
+ 191 -551 -272 -402
+ -151 -463 182 -377
+ 196 -461 -465 -505
+ 147 -82 -300 -88
+ -272 -182 -265 177
+ 13 -89 37 10
+ 133 -158 -162 -27
diff --git a/profiles/vertebrates/MA1730.1.pwm b/profiles/vertebrates/MA1730.1.pwm
index e69de29..040b81b 100644
--- a/profiles/vertebrates/MA1730.1.pwm
+++ b/profiles/vertebrates/MA1730.1.pwm
@@ -0,0 +1,15 @@
+ -44 48 -6 -14
+ -41 42 -1 -13
+ 27 -173 88 -63
+ -281 -344 186 -301
+ -394 194 -428 -442
+ -394 -184 -384 184
+ -344 -394 193 -456
+ -359 -264 -306 186
+ 90 -428 101 -405
+ -416 183 -196 -281
+ -428 193 -351 -416
+ -416 -252 -344 188
+ -29 92 -42 -88
+ -36 114 -158 -55
+ -128 36 -84 80
diff --git a/profiles/vertebrates/MA1731.1.pwm b/profiles/vertebrates/MA1731.1.pwm
index 9616263..8095081 100644
--- a/profiles/vertebrates/MA1731.1.pwm
+++ b/profiles/vertebrates/MA1731.1.pwm
@@ -1,18 +1,18 @@
- -172 35 -98 94
- -52 49 -45 22
- -27 -9 58 -45
- -156 132 -37 -134
- -134 2 -60 95
- -140 45 -27 51
- 57 -108 53 -73
- -24 94 10 -254
- -311 162 -201 -83
- -254 139 -48 -102
- -288 -268 -451 187
- -797 193 -311 -364
- -538 -538 -254 192
- -797 198 -451 -797
- -797 -797 -451 198
- -797 -332 196 -797
- 17 -238 55 29
- -120 -406 123 22
+ -162 34 -93 91
+ -50 48 -43 21
+ -26 -9 57 -43
+ -147 129 -36 -127
+ -127 2 -58 93
+ -133 44 -26 50
+ 55 -103 52 -70
+ -24 91 10 -234
+ -280 159 -188 -79
+ -234 136 -46 -98
+ -262 -246 -377 184
+ -486 189 -280 -321
+ -421 -421 -234 189
+ -486 195 -377 -486
+ -486 -486 -377 195
+ -486 -297 193 -486
+ 17 -221 53 28
+ -114 -349 120 21
diff --git a/profiles/vertebrates/MA1928.1.pwm b/profiles/vertebrates/MA1928.1.pwm
index e69de29..4d1f692 100644
--- a/profiles/vertebrates/MA1928.1.pwm
+++ b/profiles/vertebrates/MA1928.1.pwm
@@ -0,0 +1,12 @@
+ 3 0 -8 6
+ 35 -95 -16 39
+ 5 -68 100 -159
+ -312 -408 -365 191
+ -323 -398 186 -226
+ 189 -340 -417 -278
+ -255 -75 160 -229
+ -378 -352 -386 192
+ -261 187 -346 -352
+ 194 -430 -426 -388
+ -123 20 -25 66
+ 25 -7 -46 18
diff --git a/profiles/vertebrates/MA1929.1.pwm b/profiles/vertebrates/MA1929.1.pwm
index f963432..b63ccc1 100644
--- a/profiles/vertebrates/MA1929.1.pwm
+++ b/profiles/vertebrates/MA1929.1.pwm
@@ -1,34 +1,34 @@
- -90 118 -45 -110
- -89 -206 -241 160
- -338 -368 189 -295
- -256 169 -281 -114
- 143 -143 -212 -51
- -3 -55 97 -142
- -151 -78 -157 145
- -58 -112 7 87
- -123 123 -115 -37
- -113 121 -164 -14
- 28 13 -57 2
- -20 18 30 -38
- -5 45 -23 -30
- 21 -26 -24 22
- -11 -24 37 -10
- -103 55 -84 58
- -19 -28 42 -6
- -4 -110 90 -53
- -121 158 -171 -191
- -292 190 -442 -357
- 134 -224 -86 -51
- -197 107 55 -250
- -44 70 -145 35
- 162 -279 -110 -169
- -301 -389 192 -494
- 56 -430 127 -407
- -177 -274 104 58
- -287 -448 190 -368
- -229 -215 168 -142
- -71 148 -278 -113
- 69 -186 87 -182
- -127 97 23 -115
- -54 45 -107 55
- 43 2 25 -115
+ -89 117 -45 -108
+ -87 -201 -233 159
+ -322 -349 187 -284
+ -248 168 -271 -111
+ 142 -140 -206 -50
+ -3 -54 97 -139
+ -148 -77 -153 144
+ -57 -110 7 86
+ -121 122 -113 -36
+ -111 120 -160 -14
+ 28 13 -56 2
+ -20 18 29 -38
+ -4 44 -23 -29
+ 21 -26 -24 21
+ -11 -24 37 -10
+ -101 54 -83 57
+ -19 -28 42 -6
+ -4 -108 89 -52
+ -119 157 -167 -186
+ -281 189 -410 -340
+ 133 -218 -84 -50
+ -192 106 55 -242
+ -43 69 -142 34
+ 161 -269 -108 -166
+ -289 -367 190 -450
+ 55 -401 126 -382
+ -173 -264 103 58
+ -276 -415 189 -349
+ -222 -209 166 -139
+ -70 147 -268 -111
+ 69 -182 86 -178
+ -124 97 22 -113
+ -54 45 -105 55
+ 42 2 25 -113
diff --git a/profiles/vertebrates/MA1930.1.pwm b/profiles/vertebrates/MA1930.1.pwm
index e69de29..1b4d0a3 100644
--- a/profiles/vertebrates/MA1930.1.pwm
+++ b/profiles/vertebrates/MA1930.1.pwm
@@ -0,0 +1,35 @@
+ -110 120 -67 -72
+ -137 -246 -207 167
+ -361 -378 192 -416
+ -273 171 -412 -91
+ 161 -223 -197 -103
+ -52 -79 116 -103
+ -194 -118 -178 159
+ -87 -96 46 64
+ -50 104 -95 -47
+ -37 80 -61 -27
+ 15 30 -5 -52
+ -26 40 25 -62
+ -45 81 -19 -64
+ 4 -9 -76 52
+ -19 18 -25 20
+ -12 48 -37 -13
+ -50 27 -69 55
+ -20 -48 68 -31
+ -9 -107 93 -57
+ -178 167 -197 -185
+ -370 194 -492 -462
+ 155 -258 -119 -108
+ -223 111 57 -284
+ -86 65 -181 68
+ 174 -330 -155 -219
+ -388 -492 195 -499
+ 81 -462 110 -420
+ -185 -297 89 80
+ -314 -462 192 -401
+ -232 -212 170 -161
+ -92 149 -273 -97
+ 65 -189 84 -144
+ -117 101 20 -132
+ -101 46 -124 77
+ 28 -12 3 -25
diff --git a/profiles/vertebrates/MA1931.1.pwm b/profiles/vertebrates/MA1931.1.pwm
index 09f08f4..98158db 100644
--- a/profiles/vertebrates/MA1931.1.pwm
+++ b/profiles/vertebrates/MA1931.1.pwm
@@ -1,14 +1,14 @@
- 128 -197 -97 -31
- -10000 157 -63 -137
- -415 196 -10000 -415
- -10000 -10000 200 -10000
- -10000 -10000 200 -10000
- 200 -10000 -10000 -10000
- 198 -10000 -10000 -413
- -10000 -413 198 -10000
- -243 -162 -184 168
- 155 -55 -197 -297
- 158 -172 -135 -172
- -209 -109 -77 144
- -291 -132 -132 162
- 117 -94 -124 -30
+ 120 -164 -85 -28
+ -347 148 -56 -118
+ -260 183 -312 -260
+ -308 -308 187 -308
+ -308 -308 187 -308
+ 187 -308 -308 -308
+ 185 -310 -310 -258
+ -310 -258 185 -310
+ -192 -136 -152 158
+ 147 -50 -164 -228
+ 149 -144 -116 -144
+ -174 -96 -68 136
+ -222 -113 -113 152
+ 111 -85 -111 -28
diff --git a/profiles/vertebrates/MA1932.1.pwm b/profiles/vertebrates/MA1932.1.pwm
index e69de29..022542e 100644
--- a/profiles/vertebrates/MA1932.1.pwm
+++ b/profiles/vertebrates/MA1932.1.pwm
@@ -0,0 +1,16 @@
+ 135 -254 3 -196
+ -319 171 -96 -341
+ -340 194 -461 -482
+ -632 -632 199 -632
+ -638 -638 192 -247
+ 196 -635 -365 -635
+ 189 -640 -413 -221
+ -232 -403 190 -640
+ -413 -172 -581 186
+ 9 40 -208 46
+ 29 -443 132 -212
+ -409 -239 -230 183
+ 155 -377 -230 -34
+ 175 -220 -190 -268
+ 144 -103 -155 -112
+ 64 -21 -19 -53
diff --git a/profiles/vertebrates/MA1933.1.pwm b/profiles/vertebrates/MA1933.1.pwm
index e69de29..762db1a 100644
--- a/profiles/vertebrates/MA1933.1.pwm
+++ b/profiles/vertebrates/MA1933.1.pwm
@@ -0,0 +1,16 @@
+ 68 -246 41 -18
+ -75 136 -61 -240
+ -368 184 -355 -202
+ -450 -334 194 -494
+ -498 -369 190 -264
+ 190 -384 -481 -274
+ 167 -399 -423 -53
+ -95 -460 177 -491
+ -371 -279 -351 188
+ -182 75 78 -169
+ 79 -381 109 -381
+ -304 164 -137 -138
+ -225 -189 180 -440
+ -170 -121 -299 165
+ -228 -235 177 -243
+ 158 -286 -180 -76
diff --git a/profiles/vertebrates/MA1934.1.pwm b/profiles/vertebrates/MA1934.1.pwm
index e69de29..3869dcf 100644
--- a/profiles/vertebrates/MA1934.1.pwm
+++ b/profiles/vertebrates/MA1934.1.pwm
@@ -0,0 +1,16 @@
+ 97 -114 2 -81
+ -94 131 -17 -311
+ -1 154 -369 -553
+ -620 -573 198 -620
+ -564 -659 198 -516
+ 198 -541 -587 -601
+ 141 -325 -566 27
+ 91 -32 32 -378
+ -537 198 -673 -613
+ 198 -541 -530 -635
+ -585 121 69 -433
+ -387 138 38 -539
+ -599 -281 -390 192
+ -571 -571 196 -375
+ -80 -21 40 31
+ -13 11 -17 16
diff --git a/profiles/vertebrates/MA1935.1.pwm b/profiles/vertebrates/MA1935.1.pwm
index 65a5d5c..4213243 100644
--- a/profiles/vertebrates/MA1935.1.pwm
+++ b/profiles/vertebrates/MA1935.1.pwm
@@ -1,14 +1,14 @@
- 20 -101 105 -185
- -37 -63 -40 87
- 114 -19 -139 -88
- 120 -96 -106 -48
- 159 -226 -45 -432
- -148 157 -111 -222
- 111 76 -279 -10000
- -248 -280 188 -10000
- -10000 -255 190 -327
- 197 -752 -494 -420
- 146 -156 -571 -15
- 48 -124 107 -368
- -109 -14 -99 108
- 12 -57 62 -49
+ 19 -96 103 -173
+ -37 -62 -39 86
+ 112 -18 -134 -85
+ 118 -93 -103 -47
+ 156 -209 -43 -364
+ -140 154 -106 -207
+ 108 74 -248 -464
+ -225 -251 184 -471
+ -469 -230 186 -285
+ 192 -445 -380 -343
+ 143 -148 -440 -15
+ 47 -117 105 -317
+ -104 -13 -94 106
+ 11 -54 60 -47
diff --git a/profiles/vertebrates/MA1936.1.pwm b/profiles/vertebrates/MA1936.1.pwm
index e69de29..77cdd87 100644
--- a/profiles/vertebrates/MA1936.1.pwm
+++ b/profiles/vertebrates/MA1936.1.pwm
@@ -0,0 +1,14 @@
+ 75 -219 103 -424
+ 14 -191 -113 112
+ 100 46 -133 -214
+ 147 -465 -80 -70
+ 182 -255 -199 -430
+ -256 190 -422 -422
+ 151 -22 -199 -461
+ -278 -259 186 -426
+ -234 -432 179 -180
+ 168 -87 -443 -238
+ 161 -294 -232 -70
+ 40 -240 129 -423
+ -64 -3 18 32
+ -93 35 82 -120
diff --git a/profiles/vertebrates/MA1937.1.pwm b/profiles/vertebrates/MA1937.1.pwm
index 35b5512..c24bb95 100644
--- a/profiles/vertebrates/MA1937.1.pwm
+++ b/profiles/vertebrates/MA1937.1.pwm
@@ -1,16 +1,16 @@
- 47 -33 29 -76
- -25 84 -15 -112
- -15 140 -128 -412
- -484 -708 198 -628
- -430 -10000 196 -394
- 192 -353 -433 -378
- 140 -151 -327 -16
- 51 -162 113 -400
- -296 57 -252 115
- 21 24 -68 5
- 76 -275 77 -114
- -486 -180 -263 181
- 111 -222 -148 34
- 175 -514 -288 -111
- 137 -84 -155 -95
- 38 -10 -9 -28
+ 46 -32 29 -74
+ -24 83 -14 -108
+ -15 138 -124 -370
+ -414 -507 196 -483
+ -380 -549 193 -354
+ 190 -323 -383 -343
+ 139 -147 -309 -15
+ 50 -156 111 -361
+ -275 56 -238 113
+ 20 24 -66 5
+ 75 -259 76 -110
+ -421 -173 -249 179
+ 110 -215 -145 34
+ 173 -441 -272 -108
+ 136 -82 -150 -93
+ 37 -9 -9 -27
diff --git a/profiles/vertebrates/MA1938.1.pwm b/profiles/vertebrates/MA1938.1.pwm
index 11b54a2..b4ebcd3 100644
--- a/profiles/vertebrates/MA1938.1.pwm
+++ b/profiles/vertebrates/MA1938.1.pwm
@@ -1,17 +1,17 @@
- 94 0 0 -354
- -10000 -254 184 -195
- -415 184 -266 -230
- 200 -10000 -10000 -10000
- -636 -290 181 -155
- -170 184 -540 -340
- -320 -220 -282 182
- -643 -285 188 -252
- -10000 194 -378 -337
- -287 190 -300 -646
- -173 -10000 186 -368
- -446 -314 183 -176
- 185 -210 -491 -291
- 152 -10000 -293 0
- 45 -479 108 -105
- -10000 37 -238 133
- 37 1 -14 -33
+ 90 0 0 -289
+ -422 -221 178 -175
+ -328 179 -232 -204
+ 194 -421 -421 -421
+ -395 -247 176 -141
+ -154 178 -375 -282
+ -272 -197 -245 177
+ -402 -245 182 -221
+ -424 188 -304 -279
+ -248 184 -256 -404
+ -158 -435 180 -302
+ -343 -267 177 -160
+ 180 -189 -364 -251
+ 147 -426 -250 0
+ 42 -352 104 -97
+ -426 35 -210 128
+ 35 1 -13 -31
diff --git a/profiles/vertebrates/MA1939.1.pwm b/profiles/vertebrates/MA1939.1.pwm
index 426d659..43a6251 100644
--- a/profiles/vertebrates/MA1939.1.pwm
+++ b/profiles/vertebrates/MA1939.1.pwm
@@ -1,17 +1,17 @@
- -35 9 39 -25
- -38 81 42 -283
- -101 168 -686 -178
- -427 -378 195 -10000
- -566 -275 188 -285
- 186 -388 -10000 -173
- 156 -106 -10000 -80
- 128 -10000 64 -655
- -454 -454 -284 192
- -154 180 -394 -316
- 197 -557 -457 -657
- -10000 192 -430 -271
- -10000 -30 165 -457
- -181 -340 -372 183
- -10000 -10000 196 -326
- 168 -10000 -196 -90
- -373 26 -354 140
+ -33 9 37 -24
+ -36 78 41 -251
+ -95 164 -432 -164
+ -333 -307 190 -432
+ -391 -240 183 -248
+ 181 -316 -441 -158
+ 152 -100 -470 -76
+ 124 -428 62 -402
+ -344 -344 -244 186
+ -142 175 -322 -272
+ 192 -382 -346 -404
+ -435 187 -336 -236
+ -461 -29 161 -362
+ -165 -287 -308 178
+ -431 -431 191 -274
+ 163 -428 -176 -84
+ -302 24 -291 136
diff --git a/profiles/vertebrates/MA1940.1.pwm b/profiles/vertebrates/MA1940.1.pwm
index e69de29..3a35cc5 100644
--- a/profiles/vertebrates/MA1940.1.pwm
+++ b/profiles/vertebrates/MA1940.1.pwm
@@ -0,0 +1,14 @@
+ 88 -124 21 -77
+ -14 81 6 -172
+ -31 160 -274 -534
+ -521 -467 197 -521
+ -521 -497 197 -476
+ 195 -451 -460 -410
+ 144 -247 -410 7
+ 9 -71 113 -285
+ -285 75 -201 95
+ 136 -124 -65 -141
+ 163 -153 -178 -194
+ -432 -350 -366 192
+ -152 -140 -311 166
+ 169 -318 -255 -101
diff --git a/profiles/vertebrates/MA1941.1.pwm b/profiles/vertebrates/MA1941.1.pwm
index e69de29..b64dde8 100644
--- a/profiles/vertebrates/MA1941.1.pwm
+++ b/profiles/vertebrates/MA1941.1.pwm
@@ -0,0 +1,16 @@
+ 84 -159 38 -80
+ -72 107 11 -223
+ -68 161 -213 -341
+ -381 -315 191 -407
+ -364 -412 192 -350
+ 184 -281 -301 -283
+ 158 -301 -318 -38
+ 116 -103 28 -431
+ -443 188 -328 -259
+ 187 -342 -244 -368
+ -370 -40 163 -384
+ -263 39 130 -419
+ -346 -320 -310 188
+ -337 -398 190 -306
+ -96 -17 72 -7
+ 2 -50 8 29
diff --git a/profiles/vertebrates/MA1942.1.pwm b/profiles/vertebrates/MA1942.1.pwm
index e69de29..a65a3b6 100644
--- a/profiles/vertebrates/MA1942.1.pwm
+++ b/profiles/vertebrates/MA1942.1.pwm
@@ -0,0 +1,15 @@
+ -70 41 10 -4
+ -21 -114 129 -209
+ -81 -79 -58 113
+ 133 -28 -151 -171
+ 135 -105 -78 -135
+ 177 -296 -141 -342
+ -330 185 -235 -345
+ 160 -18 -415 -531
+ -419 -349 192 -393
+ -344 -540 187 -205
+ 193 -331 -533 -418
+ 141 -280 -449 21
+ 8 -385 151 -498
+ -109 45 -166 88
+ 16 -106 69 -33
diff --git a/profiles/vertebrates/MA1943.1.pwm b/profiles/vertebrates/MA1943.1.pwm
index e69de29..435370e 100644
--- a/profiles/vertebrates/MA1943.1.pwm
+++ b/profiles/vertebrates/MA1943.1.pwm
@@ -0,0 +1,15 @@
+ 108 -72 -32 -104
+ -117 152 -97 -247
+ -116 180 -450 -580
+ -602 -602 198 -580
+ -602 -602 198 -602
+ 198 -527 -531 -602
+ 131 -123 -588 10
+ 81 46 -25 -480
+ -93 91 -442 63
+ 160 -416 -22 -407
+ -559 -215 -610 190
+ 129 -341 -298 42
+ 187 -428 -524 -193
+ 159 -101 -227 -179
+ 30 64 -92 -55
diff --git a/profiles/vertebrates/MA1944.1.pwm b/profiles/vertebrates/MA1944.1.pwm
index e69de29..d7e30fe 100644
--- a/profiles/vertebrates/MA1944.1.pwm
+++ b/profiles/vertebrates/MA1944.1.pwm
@@ -0,0 +1,14 @@
+ 81 -133 57 -143
+ -56 78 41 -183
+ 41 123 -279 -250
+ -360 -376 192 -393
+ -437 -282 191 -437
+ 191 -291 -437 -414
+ 140 -187 -261 -12
+ -132 -132 166 -462
+ -185 47 -170 102
+ 151 -272 -9 -416
+ 146 -152 -94 -139
+ -258 -280 -191 178
+ -184 -85 -202 155
+ 155 -256 -70 -183
diff --git a/profiles/vertebrates/MA1945.1.pwm b/profiles/vertebrates/MA1945.1.pwm
index e76d94f..79a2cf4 100644
--- a/profiles/vertebrates/MA1945.1.pwm
+++ b/profiles/vertebrates/MA1945.1.pwm
@@ -1,15 +1,15 @@
- 48 -141 87 -132
- -57 -6 107 -190
- 0 125 -94 -342
- -528 -686 198 -654
- -10000 -734 192 -231
- 193 -356 -427 -433
- 153 -376 -350 -9
- 45 -153 115 -387
- -608 196 -456 -430
- 197 -555 -417 -729
- -522 -57 171 -581
- -322 -32 162 -690
- -473 -531 -358 195
- -498 -531 195 -380
- -96 -64 102 -28
+ 47 -137 86 -128
+ -56 -6 106 -183
+ 0 124 -92 -323
+ -434 -494 196 -485
+ -542 -509 190 -218
+ 191 -323 -376 -380
+ 152 -346 -326 -9
+ 44 -148 113 -349
+ -470 193 -394 -377
+ 194 -448 -368 -505
+ -443 -56 169 -473
+ -301 -32 161 -520
+ -405 -437 -324 192
+ -419 -437 193 -342
+ -93 -62 100 -28
diff --git a/profiles/vertebrates/MA1946.1.pwm b/profiles/vertebrates/MA1946.1.pwm
index e69de29..ef6b9bd 100644
--- a/profiles/vertebrates/MA1946.1.pwm
+++ b/profiles/vertebrates/MA1946.1.pwm
@@ -0,0 +1,13 @@
+ -55 -188 159 -470
+ -108 -162 -63 135
+ 147 3 -310 -346
+ 184 -256 -243 -400
+ 171 -458 -69 -380
+ -455 173 -215 -129
+ 146 11 -294 -482
+ -286 -131 177 -451
+ -285 -406 178 -148
+ 184 -421 -237 -256
+ 121 -216 -245 35
+ -97 -331 174 -436
+ -113 9 -58 86
diff --git a/profiles/vertebrates/MA1947.1.pwm b/profiles/vertebrates/MA1947.1.pwm
index e69de29..a656176 100644
--- a/profiles/vertebrates/MA1947.1.pwm
+++ b/profiles/vertebrates/MA1947.1.pwm
@@ -0,0 +1,13 @@
+ 26 -216 127 -260
+ -16 -299 -26 110
+ 122 44 -234 -302
+ 173 -100 -379 -333
+ 166 -418 -67 -265
+ -290 181 -403 -170
+ 169 -86 -274 -359
+ -165 -264 179 -405
+ -394 -394 189 -267
+ 164 -307 -168 -114
+ 63 -41 -163 46
+ 14 -57 93 -164
+ -89 -5 -33 76
diff --git a/profiles/vertebrates/MA1948.1.pwm b/profiles/vertebrates/MA1948.1.pwm
index e69de29..3b63242 100644
--- a/profiles/vertebrates/MA1948.1.pwm
+++ b/profiles/vertebrates/MA1948.1.pwm
@@ -0,0 +1,14 @@
+ 93 -185 46 -120
+ -40 29 42 -55
+ -105 147 -108 -185
+ -419 -419 193 -352
+ -255 -422 190 -422
+ 185 -290 -360 -243
+ 102 -139 -202 43
+ -175 -185 174 -370
+ -449 -27 -449 162
+ 89 42 -73 -221
+ 153 -246 -28 -311
+ -431 -147 -347 181
+ -462 -30 -166 150
+ 177 -236 -435 -155
diff --git a/profiles/vertebrates/MA1949.1.pwm b/profiles/vertebrates/MA1949.1.pwm
index e69de29..7538456 100644
--- a/profiles/vertebrates/MA1949.1.pwm
+++ b/profiles/vertebrates/MA1949.1.pwm
@@ -0,0 +1,15 @@
+ 115 -167 -35 -56
+ -131 143 -127 -104
+ -33 160 -308 -422
+ -409 -433 194 -409
+ -290 -439 187 -272
+ 193 -355 -433 -433
+ 137 -436 -254 26
+ -105 -111 147 -184
+ -309 31 -264 131
+ 143 -69 -168 -139
+ 155 -282 -55 -203
+ -367 -161 -126 167
+ -171 -48 -241 148
+ 147 -125 -120 -139
+ -36 -91 -23 88
diff --git a/profiles/vertebrates/MA1950.1.pwm b/profiles/vertebrates/MA1950.1.pwm
index 392e4f7..c60e872 100644
--- a/profiles/vertebrates/MA1950.1.pwm
+++ b/profiles/vertebrates/MA1950.1.pwm
@@ -1,14 +1,14 @@
- 34 -119 89 -121
- -94 -62 -101 122
- 142 -54 -144 -195
- 162 -166 -181 -159
- 187 -892 -198 -331
- -407 191 -323 -371
- 170 -63 -340 -10000
- -335 -10000 194 -420
- -10000 -10000 199 -463
- 195 -380 -514 -459
- 140 -288 -410 22
- 69 -291 109 -300
- -147 48 -103 81
- 13 -60 31 1
+ 34 -115 88 -117
+ -92 -61 -99 121
+ 141 -53 -140 -188
+ 160 -160 -174 -153
+ 184 -531 -188 -304
+ -361 188 -297 -334
+ 168 -61 -309 -533
+ -306 -535 192 -369
+ -531 -531 196 -395
+ 192 -340 -426 -394
+ 138 -273 -375 22
+ 68 -270 107 -278
+ -142 47 -100 80
+ 13 -58 30 1
diff --git a/profiles/vertebrates/MA1951.1.pwm b/profiles/vertebrates/MA1951.1.pwm
index ebd82c3..956c0d9 100644
--- a/profiles/vertebrates/MA1951.1.pwm
+++ b/profiles/vertebrates/MA1951.1.pwm
@@ -1,14 +1,14 @@
- -89 13 15 32
- -114 -66 116 -55
- 150 -280 -5 -402
- -715 -541 -473 198
- -352 -355 188 -289
- 195 -495 -362 -675
- -546 192 -778 -246
- -311 -776 194 -495
- -416 -10000 -389 195
- -203 186 -435 -390
- 198 -10000 -455 -10000
- -469 -51 -332 166
- -103 155 -176 -183
- 93 -260 86 -312
+ -86 13 15 32
+ -110 -65 114 -54
+ 148 -264 -5 -365
+ -499 -440 -403 195
+ -320 -323 186 -269
+ 193 -416 -327 -491
+ -444 190 -514 -231
+ -287 -512 192 -416
+ -367 -536 -347 193
+ -193 184 -381 -350
+ 196 -533 -391 -533
+ -408 -49 -307 164
+ -100 153 -170 -176
+ 92 -244 84 -288
diff --git a/profiles/vertebrates/MA1952.1.pwm b/profiles/vertebrates/MA1952.1.pwm
index e69de29..0cf62dd 100644
--- a/profiles/vertebrates/MA1952.1.pwm
+++ b/profiles/vertebrates/MA1952.1.pwm
@@ -0,0 +1,14 @@
+ 59 -65 26 -61
+ -8 -64 -104 95
+ 138 -50 -241 -98
+ 137 -81 -222 -65
+ 165 -123 -153 -347
+ -216 169 -232 -150
+ 119 64 -350 -386
+ -107 -188 167 -387
+ -354 -519 195 -519
+ 196 -518 -472 -431
+ 189 -524 -524 -208
+ -9 -206 144 -328
+ 4 -74 -381 120
+ 65 -125 35 -44
diff --git a/profiles/vertebrates/MA1953.1.pwm b/profiles/vertebrates/MA1953.1.pwm
index 5e631cf..4658149 100644
--- a/profiles/vertebrates/MA1953.1.pwm
+++ b/profiles/vertebrates/MA1953.1.pwm
@@ -1,14 +1,14 @@
- 47 -99 98 -288
- -13 -117 -99 110
- 121 38 -510 -151
- 176 -149 -339 -261
- 184 -411 -172 -411
- -10000 177 -10000 -79
- 188 -217 -327 -10000
- -292 -292 187 -350
- -406 -260 190 -447
- 184 -165 -411 -453
- 160 -10000 -335 -20
- -10 -154 141 -396
- -76 -32 -150 117
- 31 -46 0 5
+ 45 -91 94 -244
+ -13 -109 -92 106
+ 117 36 -352 -136
+ 170 -135 -277 -225
+ 178 -314 -154 -314
+ -414 172 -414 -73
+ 181 -189 -266 -405
+ -244 -244 180 -281
+ -309 -221 183 -327
+ 178 -148 -314 -333
+ 155 -431 -280 -19
+ -10 -143 137 -324
+ -72 -31 -140 114
+ 29 -43 0 4
diff --git a/profiles/vertebrates/MA1954.1.pwm b/profiles/vertebrates/MA1954.1.pwm
index 8a59800..8fa5947 100644
--- a/profiles/vertebrates/MA1954.1.pwm
+++ b/profiles/vertebrates/MA1954.1.pwm
@@ -1,14 +1,14 @@
- 81 -82 63 -298
- 39 -240 -57 87
- 75 87 -427 -119
- 185 -338 -272 -283
- 190 -412 -251 -451
- -433 190 -398 -272
- 176 -82 -474 -633
- -742 -642 199 -583
- -527 -563 197 -474
- 194 -342 -446 -566
- 176 -352 -419 -109
- -80 -207 165 -451
- -120 -24 -93 113
- 40 -120 53 -32
+ 80 -79 62 -276
+ 38 -227 -55 86
+ 74 86 -389 -116
+ 183 -307 -253 -261
+ 187 -359 -234 -385
+ -374 187 -350 -252
+ 173 -79 -404 -478
+ -487 -465 196 -446
+ -423 -439 194 -395
+ 191 -308 -380 -442
+ 174 -319 -368 -105
+ -78 -197 163 -393
+ -115 -24 -90 112
+ 39 -115 52 -31
diff --git a/profiles/vertebrates/MA1955.1.pwm b/profiles/vertebrates/MA1955.1.pwm
index e69de29..5f965c3 100644
--- a/profiles/vertebrates/MA1955.1.pwm
+++ b/profiles/vertebrates/MA1955.1.pwm
@@ -0,0 +1,14 @@
+ 55 -195 96 -158
+ 23 -66 -183 93
+ 109 76 -349 -349
+ 182 -317 -219 -285
+ 181 -358 -162 -358
+ -353 186 -353 -234
+ 157 -50 -212 -342
+ -283 -236 184 -355
+ -262 -241 179 -241
+ 182 -357 -357 -173
+ 166 -144 -333 -144
+ -72 -177 154 -246
+ -148 -31 -134 129
+ 9 -26 27 -16
diff --git a/profiles/vertebrates/MA1956.1.pwm b/profiles/vertebrates/MA1956.1.pwm
index e69de29..5cec6bc 100644
--- a/profiles/vertebrates/MA1956.1.pwm
+++ b/profiles/vertebrates/MA1956.1.pwm
@@ -0,0 +1,14 @@
+ -48 -159 153 -396
+ 7 -70 -239 110
+ 137 28 -388 -285
+ 189 -269 -389 -389
+ 189 -390 -390 -254
+ -388 190 -388 -305
+ 185 -208 -360 -393
+ -192 -293 182 -396
+ -229 -392 187 -358
+ 192 -387 -387 -353
+ 170 -306 -409 -79
+ -47 -216 159 -420
+ -303 -59 -186 156
+ -86 -117 79 34
diff --git a/profiles/vertebrates/MA1957.1.pwm b/profiles/vertebrates/MA1957.1.pwm
index 64df6ed..d804fcc 100644
--- a/profiles/vertebrates/MA1957.1.pwm
+++ b/profiles/vertebrates/MA1957.1.pwm
@@ -1,14 +1,14 @@
- 92 -206 62 -159
- -168 144 -23 -306
- -271 192 -588 -422
- -540 -10000 198 -582
- -10000 -10000 199 -559
- 200 -10000 -10000 -639
- 189 -10000 -433 -204
- -288 -388 192 -688
- -512 -127 -412 181
- 35 91 -112 -138
- 116 -309 52 -219
- -327 -293 -327 187
- -237 -37 -328 155
- 159 -280 -147 -103
+ 90 -195 61 -152
+ -160 142 -23 -281
+ -251 189 -453 -366
+ -430 -516 195 -447
+ -515 -515 196 -437
+ 196 -515 -515 -465
+ 186 -525 -374 -192
+ -265 -343 189 -484
+ -424 -122 -363 178
+ 34 90 -108 -133
+ 114 -283 51 -206
+ -298 -270 -298 184
+ -225 -37 -304 153
+ 157 -263 -141 -100
diff --git a/profiles/vertebrates/MA1958.1.pwm b/profiles/vertebrates/MA1958.1.pwm
index eab5114..e837fd2 100644
--- a/profiles/vertebrates/MA1958.1.pwm
+++ b/profiles/vertebrates/MA1958.1.pwm
@@ -1,17 +1,17 @@
- 15 -64 58 -40
- 56 -102 72 -136
- -17 53 57 -247
- -71 165 -219 -496
- -535 -10000 199 -10000
- -10000 -10000 198 -395
- 200 -693 -10000 -10000
- 191 -602 -10000 -216
- -290 -540 194 -10000
- -414 -10000 -10000 198
- -123 132 -461 6
- -132 -10000 185 -10000
- -10000 -10000 -414 198
- 176 -385 -485 -94
- 199 -10000 -462 -10000
- 176 -129 -558 -242
- 64 -61 -34 -1
+ 14 -61 56 -38
+ 54 -97 70 -128
+ -16 51 56 -227
+ -68 161 -202 -390
+ -387 -448 194 -448
+ -449 -449 193 -323
+ 195 -424 -447 -447
+ 187 -412 -455 -196
+ -254 -392 189 -452
+ -334 -449 -449 193
+ -114 128 -357 6
+ -124 -461 181 -461
+ -449 -449 -334 193
+ 172 -325 -380 -89
+ 194 -448 -358 -448
+ 172 -121 -409 -219
+ 62 -57 -33 -1
diff --git a/profiles/vertebrates/MA1959.1.pwm b/profiles/vertebrates/MA1959.1.pwm
index e69de29..57cea60 100644
--- a/profiles/vertebrates/MA1959.1.pwm
+++ b/profiles/vertebrates/MA1959.1.pwm
@@ -0,0 +1,9 @@
+ 9 -177 68 6
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ -229 162 -486 -56
+ -486 -486 196 -486
+ -486 -297 150 2
+ -71 -237 133 -56
+ -486 -486 196 -486
diff --git a/profiles/vertebrates/MA1960.1.pwm b/profiles/vertebrates/MA1960.1.pwm
index e69de29..7a5f411 100644
--- a/profiles/vertebrates/MA1960.1.pwm
+++ b/profiles/vertebrates/MA1960.1.pwm
@@ -0,0 +1,12 @@
+ 101 -290 38 -86
+ -34 -319 155 -249
+ -395 -410 190 -283
+ -243 -344 -405 187
+ -521 -412 196 -551
+ 53 -177 -133 90
+ -416 -303 -271 188
+ 194 -553 -506 -316
+ 184 -298 -289 -258
+ -260 -353 -428 189
+ -454 -193 117 54
+ 70 -208 -24 37
diff --git a/profiles/vertebrates/MA1961.1.pwm b/profiles/vertebrates/MA1961.1.pwm
index 8d3c237..65d38b4 100644
--- a/profiles/vertebrates/MA1961.1.pwm
+++ b/profiles/vertebrates/MA1961.1.pwm
@@ -1,12 +1,12 @@
- -100 41 83 -135
- -100 20 112 -251
- -188 -13 144 -338
- -36 -168 154 -797
- -797 -797 200 -797
- -797 -797 200 -797
- 51 97 -797 -69
- -797 -797 200 -797
- -797 -261 194 -797
- -797 -288 195 -797
- -221 -797 192 -797
- -229 65 106 -288
+ -96 40 81 -129
+ -96 20 109 -231
+ -176 -13 142 -301
+ -35 -159 151 -486
+ -486 -486 196 -486
+ -486 -486 196 -486
+ 49 95 -486 -66
+ -486 -486 196 -486
+ -486 -240 190 -486
+ -486 -262 191 -486
+ -206 -486 188 -486
+ -213 63 104 -262
diff --git a/profiles/vertebrates/MA1962.1.pwm b/profiles/vertebrates/MA1962.1.pwm
index c4c785e..24d76ae 100644
--- a/profiles/vertebrates/MA1962.1.pwm
+++ b/profiles/vertebrates/MA1962.1.pwm
@@ -1,17 +1,17 @@
- 96 30 -68 -230
- 180 -309 -337 -176
- -294 -429 -759 193
- -197 -302 -640 185
- 15 -345 -631 148
- 45 -240 128 -742
- -140 184 -596 -495
- 194 -517 -302 -686
- -699 -472 -637 198
- 96 43 -67 -373
- 189 -307 -479 -279
- -366 174 -280 -119
- 194 -459 -557 -350
- 197 -496 -608 -502
- 24 -390 -587 145
- 72 -277 88 -147
- -92 -11 113 -152
+ 95 30 -67 -225
+ 180 -301 -328 -174
+ -286 -410 -628 192
+ -194 -294 -571 184
+ 15 -336 -573 147
+ 45 -235 128 -621
+ -138 183 -541 -466
+ 193 -481 -294 -591
+ -598 -445 -564 197
+ 95 43 -66 -359
+ 188 -300 -452 -273
+ -355 173 -274 -118
+ 194 -435 -512 -339
+ 196 -465 -547 -470
+ 24 -377 -541 144
+ 72 -270 88 -146
+ -91 -11 113 -150
diff --git a/profiles/vertebrates/MA1963.1.pwm b/profiles/vertebrates/MA1963.1.pwm
index 4de1c3e..01c10d2 100644
--- a/profiles/vertebrates/MA1963.1.pwm
+++ b/profiles/vertebrates/MA1963.1.pwm
@@ -1,13 +1,13 @@
- 44 -83 -87 62
- 39 -100 -73 67
- 41 -69 -11 16
- -503 195 -593 -361
- -412 -546 -785 197
- 198 -571 -527 -566
- 193 -622 -616 -274
- -489 -606 -612 198
- 190 -414 -327 -335
- 184 -328 -300 -241
- 3 63 -173 19
- 51 -83 -118 65
- 62 -86 -61 33
+ 44 -83 -87 62
+ 39 -99 -73 66
+ 41 -68 -11 16
+ -480 195 -553 -353
+ -400 -516 -669 196
+ 197 -535 -501 -532
+ 193 -574 -569 -270
+ -469 -563 -567 197
+ 190 -402 -320 -328
+ 184 -321 -294 -238
+ 3 62 -171 18
+ 51 -83 -117 65
+ 62 -85 -61 33
diff --git a/profiles/vertebrates/MA1964.1.pwm b/profiles/vertebrates/MA1964.1.pwm
index e69de29..e4e6a4c 100644
--- a/profiles/vertebrates/MA1964.1.pwm
+++ b/profiles/vertebrates/MA1964.1.pwm
@@ -0,0 +1,10 @@
+ -18 9 -4 12
+ -85 22 54 -27
+ -406 192 -324 -476
+ -548 187 -236 -309
+ 186 -254 -250 -536
+ -542 -440 196 -484
+ 198 -596 -596 -518
+ -587 198 -596 -596
+ 54 -64 10 -27
+ -52 18 45 -31
diff --git a/profiles/vertebrates/MA1965.1.pwm b/profiles/vertebrates/MA1965.1.pwm
index 57080ad..5f081d8 100644
--- a/profiles/vertebrates/MA1965.1.pwm
+++ b/profiles/vertebrates/MA1965.1.pwm
@@ -1,10 +1,10 @@
- -101 101 -51 -35
- -117 65 -18 15
- -975 200 -1075 -1034
- -953 197 -368 -10000
- -10000 -10000 -449 198
- -678 200 -10000 -10000
- -888 198 -447 -10000
- -10000 199 -581 -10000
- -1 45 -62 -2
- -85 67 12 -39
+ -100 101 -51 -35
+ -116 64 -18 15
+ -696 199 -706 -703
+ -692 196 -357 -718
+ -718 -718 -429 198
+ -597 199 -718 -718
+ -679 198 -427 -718
+ -718 199 -535 -718
+ -1 45 -61 -2
+ -84 67 12 -38
diff --git a/profiles/vertebrates/MA1966.1.pwm b/profiles/vertebrates/MA1966.1.pwm
index 7bf2863..58ec138 100644
--- a/profiles/vertebrates/MA1966.1.pwm
+++ b/profiles/vertebrates/MA1966.1.pwm
@@ -1,16 +1,16 @@
- 63 -170 74 -106
- -146 85 70 -228
- -90 166 -234 -320
- -447 -510 196 -456
- -423 -392 193 -359
- 188 -375 -268 -348
- 138 -378 -296 26
- -5 -103 132 -423
- -527 193 -559 -272
- 178 -376 -140 -311
- -367 -83 152 -105
- -38 62 66 -313
- -281 -149 -224 172
- -549 -505 194 -312
- -43 -98 85 -7
- -49 -20 39 14
+ 62 -165 73 -104
+ -142 84 69 -219
+ -88 164 -225 -303
+ -398 -439 194 -404
+ -382 -358 191 -332
+ 186 -346 -255 -324
+ 137 -356 -284 26
+ -5 -100 130 -380
+ -450 191 -468 -258
+ 176 -348 -136 -293
+ -345 -81 151 -103
+ -37 61 65 -297
+ -267 -145 -216 170
+ -462 -437 192 -292
+ -42 -95 83 -7
+ -48 -20 39 14
diff --git a/profiles/vertebrates/MA1967.1.pwm b/profiles/vertebrates/MA1967.1.pwm
index e69de29..2d841fd 100644
--- a/profiles/vertebrates/MA1967.1.pwm
+++ b/profiles/vertebrates/MA1967.1.pwm
@@ -0,0 +1,16 @@
+ 137 -177 -23 -191
+ -105 133 -20 -295
+ -88 169 -252 -402
+ -508 -223 188 -370
+ -246 -159 167 -177
+ 189 -330 -362 -330
+ 177 -401 -519 -101
+ 171 -339 -90 -330
+ -500 197 -500 -500
+ 196 -500 -484 -484
+ -501 -407 196 -501
+ -501 195 -357 -501
+ -500 -500 -500 197
+ -500 -500 197 -500
+ 36 -105 -5 35
+ -34 4 -72 65
diff --git a/profiles/vertebrates/MA1968.1.pwm b/profiles/vertebrates/MA1968.1.pwm
index 364cecb..ed996f1 100644
--- a/profiles/vertebrates/MA1968.1.pwm
+++ b/profiles/vertebrates/MA1968.1.pwm
@@ -1,10 +1,10 @@
- 124 -124 -16 -162
- 185 -473 -273 -232
- 174 -642 -442 -75
- -717 199 -617 -10000
- -513 172 -745 -56
- -47 -589 169 -467
- -719 -402 197 -719
- -8 -251 -10000 153
- -193 -155 -313 171
- -58 45 -221 81
+ 120 -116 -15 -149
+ 181 -374 -245 -211
+ 171 -441 -363 -72
+ -435 195 -417 -456
+ -399 168 -462 -53
+ -45 -430 165 -379
+ -437 -331 193 -437
+ -8 -232 -501 150
+ -179 -145 -278 168
+ -55 43 -201 78
diff --git a/profiles/vertebrates/MA1969.1.pwm b/profiles/vertebrates/MA1969.1.pwm
index e69de29..ea5d238 100644
--- a/profiles/vertebrates/MA1969.1.pwm
+++ b/profiles/vertebrates/MA1969.1.pwm
@@ -0,0 +1,24 @@
+ -1 30 -11 -24
+ -84 87 -59 -8
+ -106 -28 -64 104
+ -84 -43 120 -134
+ -319 -141 -386 178
+ -210 -198 174 -255
+ 4 -255 -113 123
+ -273 188 -319 -386
+ -348 190 -386 -319
+ -386 -106 -386 176
+ -255 153 -119 -100
+ 172 -294 -134 -255
+ -84 7 -8 53
+ 28 -113 72 -55
+ -386 -255 -294 186
+ -106 -198 165 -294
+ 156 -198 -69 -255
+ -187 178 -294 -255
+ -319 188 -386 -294
+ -319 -55 -348 164
+ -273 87 -59 44
+ 53 -106 -100 66
+ -69 53 -1 -8
+ -55 53 -31 10
diff --git a/profiles/vertebrates/MA1970.1.pwm b/profiles/vertebrates/MA1970.1.pwm
index e69de29..688f0b7 100644
--- a/profiles/vertebrates/MA1970.1.pwm
+++ b/profiles/vertebrates/MA1970.1.pwm
@@ -0,0 +1,12 @@
+ 3 -49 -23 50
+ 39 -35 -69 35
+ -173 -84 -137 146
+ -224 163 -166 -145
+ -276 -296 -370 187
+ -234 -322 -325 184
+ 192 -421 -367 -379
+ -374 -395 -444 193
+ -401 190 -396 -281
+ -71 -248 -262 161
+ -16 -7 6 16
+ 13 -18 -71 49
diff --git a/profiles/vertebrates/MA1971.1.pwm b/profiles/vertebrates/MA1971.1.pwm
index e69de29..d7325e5 100644
--- a/profiles/vertebrates/MA1971.1.pwm
+++ b/profiles/vertebrates/MA1971.1.pwm
@@ -0,0 +1,14 @@
+ -8 12 29 -42
+ 17 18 2 -46
+ 62 34 -55 -95
+ 82 17 -55 -121
+ -271 185 -271 -363
+ -357 -347 192 -457
+ 191 -392 -313 -429
+ 193 -392 -429 -399
+ 177 -169 -274 -306
+ -368 188 -268 -352
+ -199 154 -257 -59
+ 24 7 7 -49
+ 1 15 28 -59
+ 12 6 36 -77
diff --git a/profiles/vertebrates/MA1972.1.pwm b/profiles/vertebrates/MA1972.1.pwm
index e69de29..b1d0eb6 100644
--- a/profiles/vertebrates/MA1972.1.pwm
+++ b/profiles/vertebrates/MA1972.1.pwm
@@ -0,0 +1,15 @@
+ -82 -356 170 -337
+ -102 -486 178 -444
+ 196 -444 -486 -486
+ -486 -486 196 -444
+ -144 -17 144 -486
+ -10 110 -51 -218
+ 49 48 -184 -12
+ -85 141 -135 -131
+ -15 -26 -44 61
+ -99 -486 157 -99
+ -411 -486 195 -486
+ 193 -486 -321 -486
+ 123 -140 30 -444
+ -71 10 -2 41
+ -246 -197 165 -126
diff --git a/profiles/vertebrates/MA1973.1.pwm b/profiles/vertebrates/MA1973.1.pwm
index e69de29..07c75db 100644
--- a/profiles/vertebrates/MA1973.1.pwm
+++ b/profiles/vertebrates/MA1973.1.pwm
@@ -0,0 +1,20 @@
+ -43 -92 68 18
+ -15 -113 41 39
+ -184 -43 78 33
+ -108 144 -144 -119
+ -144 147 -159 -92
+ -50 108 -43 -119
+ 177 -332 -131 -360
+ -254 -360 187 -332
+ -395 -270 188 -332
+ -270 173 -288 -138
+ -332 -254 -332 186
+ 184 -308 -227 -332
+ -308 -254 177 -176
+ -50 161 -288 -332
+ -395 181 -360 -152
+ -360 180 -332 -159
+ 131 -102 -152 -58
+ -83 35 25 -4
+ 9 -18 11 -4
+ -18 11 6 -1
diff --git a/profiles/vertebrates/MA1974.1.pwm b/profiles/vertebrates/MA1974.1.pwm
index e8cdc7d..88d8227 100644
--- a/profiles/vertebrates/MA1974.1.pwm
+++ b/profiles/vertebrates/MA1974.1.pwm
@@ -1,15 +1,15 @@
- 57 -21 -150 38
- 102 -146 -84 7
- -221 47 -126 99
- 193 -324 -393 -605
- -605 -355 -531 195
- 198 -563 -483 -663
- -563 -417 -605 197
- 196 -483 -505 -483
- -605 197 -483 -463
- -431 190 -531 -239
- 184 -324 -331 -228
- -139 40 -217 105
- 78 -91 21 -76
- -41 10 -113 78
- 74 -114 -196 70
+ 55 -20 -142 37
+ 99 -138 -80 7
+ -204 46 -119 96
+ 189 -287 -336 -435
+ -435 -310 -409 192
+ 194 -422 -387 -451
+ -422 -351 -435 193
+ 193 -387 -398 -387
+ -435 193 -387 -377
+ -359 186 -409 -219
+ 181 -287 -293 -210
+ -131 39 -201 103
+ 76 -86 21 -73
+ -40 10 -107 76
+ 72 -108 -182 68
diff --git a/profiles/vertebrates/MA1975.1.pwm b/profiles/vertebrates/MA1975.1.pwm
index 1d29cae..5b6cbc2 100644
--- a/profiles/vertebrates/MA1975.1.pwm
+++ b/profiles/vertebrates/MA1975.1.pwm
@@ -1,15 +1,15 @@
- 68 -24 21 -132
- -4 -43 -124 90
- -24 -115 -357 139
- -66 150 -288 -132
- 194 -288 -697 -497
- -206 -357 -124 170
- -241 142 -152 -34
- 180 -697 -99 -697
- 195 -406 -406 -697
- -107 -8 63 4
- -12 -357 138 -132
- -132 -115 -39 125
- -206 163 -66 -496
- -697 198 -697 -497
- -357 -164 -697 184
+ 66 -24 20 -126
+ -4 -42 -118 88
+ -24 -109 -316 136
+ -64 147 -262 -126
+ 190 -262 -470 -402
+ -192 -316 -118 167
+ -223 139 -144 -32
+ 177 -470 -95 -470
+ 192 -349 -349 -470
+ -102 -7 61 4
+ -12 -316 135 -126
+ -126 -109 -37 123
+ -192 160 -64 -402
+ -470 195 -470 -402
+ -316 -155 -470 181
diff --git a/profiles/vertebrates/MA1976.1.pwm b/profiles/vertebrates/MA1976.1.pwm
index 8fec524..c1778cc 100644
--- a/profiles/vertebrates/MA1976.1.pwm
+++ b/profiles/vertebrates/MA1976.1.pwm
@@ -1,27 +1,27 @@
- 57 -149 41 -26
- -224 -229 171 -164
- -350 -211 116 53
- -79 -229 146 -108
- -497 -464 196 -497
- -406 -464 196 -797
- 24 -311 88 -21
- -100 118 -75 -65
- -137 161 -288 -124
- 56 87 -235 -97
- 29 -276 106 -89
- -174 -497 163 -82
- -465 -797 198 -797
- -311 -797 195 -797
- -321 -406 190 -332
- 25 145 -388 -797
- 12 120 -288 -105
- 29 -235 -63 96
- 9 -152 119 -174
- -174 -105 -82 140
- -261 -149 164 -149
- 9 65 -89 -27
- -13 -11 64 -72
- 22 -18 11 -19
- -32 6 33 -15
- -41 -18 24 24
- -18 11 32 -34
+ 55 -141 40 -25
+ -208 -213 168 -155
+ -311 -197 114 51
+ -76 -213 143 -103
+ -402 -385 193 -402
+ -349 -385 193 -486
+ 24 -280 86 -20
+ -96 116 -72 -63
+ -130 158 -262 -118
+ 54 85 -218 -93
+ 28 -252 104 -85
+ -164 -402 160 -78
+ -385 -486 195 -486
+ -280 -486 192 -486
+ -289 -349 187 -297
+ 25 142 -337 -486
+ 12 117 -262 -100
+ 28 -218 -61 93
+ 9 -144 117 -164
+ -164 -100 -78 138
+ -240 -141 161 -141
+ 9 63 -85 -26
+ -13 -11 62 -69
+ 21 -17 10 -18
+ -31 5 32 -14
+ -40 -17 24 24
+ -17 10 31 -33
diff --git a/profiles/vertebrates/MA1977.1.pwm b/profiles/vertebrates/MA1977.1.pwm
index b1ee1c5..3d63d7f 100644
--- a/profiles/vertebrates/MA1977.1.pwm
+++ b/profiles/vertebrates/MA1977.1.pwm
@@ -1,21 +1,21 @@
- 8 -43 18 10
- 8 27 -11 -29
- -63 35 15 -5
- 62 -54 -89 31
- 8 -157 91 -47
- -79 -94 111 -43
- 94 35 -135 -128
- 157 -464 -89 -116
- -241 -311 179 -204
- 39 27 -75 -17
- -33 104 -406 13
- 189 -464 -464 -216
- 150 -292 -26 -227
- -166 -796 188 -796
- -796 -464 198 -796
- 160 -216 -538 -47
- -157 -272 -254 174
- -66 -538 174 -797
- -797 -797 200 -797
- -364 22 -797 146
- -364 -464 -58 168
+ 8 -42 17 10
+ 7 26 -11 -28
+ -60 34 15 -5
+ 60 -52 -85 30
+ 8 -149 89 -45
+ -76 -90 109 -42
+ 92 34 -128 -122
+ 154 -385 -85 -110
+ -223 -280 176 -190
+ 38 26 -72 -17
+ -32 101 -349 12
+ 185 -385 -385 -201
+ 147 -266 -25 -211
+ -157 -485 185 -485
+ -485 -385 195 -485
+ 157 -201 -421 -45
+ -149 -249 -234 171
+ -64 -421 171 -486
+ -486 -486 196 -486
+ -321 21 -486 143
+ -321 -385 -56 165
diff --git a/profiles/vertebrates/MA1978.1.pwm b/profiles/vertebrates/MA1978.1.pwm
index ee8d4f0..17a60d7 100644
--- a/profiles/vertebrates/MA1978.1.pwm
+++ b/profiles/vertebrates/MA1978.1.pwm
@@ -1,21 +1,21 @@
- 62 28 -204 0
- 15 -112 -204 113
- 156 -151 -516 -56
- 145 -82 -288 -82
- 62 -82 -35 15
- -16 -35 -82 81
- 120 -151 15 -204
- -112 -112 -288 156
- 176 -516 -112 -288
- 176 -288 -204 -204
- 166 -151 -204 -204
- -35 -288 -35 120
- -112 -288 176 -516
- 28 -112 90 -112
- 90 -35 -35 -82
- -82 106 -288 28
- 15 -82 -82 81
- 150 -16 -288 -288
- 106 -288 -56 15
- -35 -35 -56 81
- -112 -288 -204 166
+ 61 27 -190 0
+ 14 -107 -190 111
+ 153 -143 -411 -54
+ 142 -78 -262 -78
+ 61 -78 -34 14
+ -16 -34 -78 79
+ 117 -143 14 -190
+ -107 -107 -262 153
+ 172 -411 -107 -262
+ 172 -262 -191 -191
+ 163 -143 -191 -191
+ -34 -262 -34 117
+ -107 -262 172 -411
+ 27 -107 88 -107
+ 88 -34 -34 -78
+ -78 103 -262 27
+ 14 -78 -78 79
+ 147 -16 -262 -262
+ 103 -262 -54 14
+ -34 -34 -54 79
+ -107 -262 -191 163
diff --git a/profiles/vertebrates/MA1979.1.pwm b/profiles/vertebrates/MA1979.1.pwm
index e69de29..287fd6c 100644
--- a/profiles/vertebrates/MA1979.1.pwm
+++ b/profiles/vertebrates/MA1979.1.pwm
@@ -0,0 +1,11 @@
+ -82 -131 -157 143
+ 115 -162 -15 -84
+ -79 -148 -221 151
+ -401 190 -296 -357
+ -377 -309 -401 191
+ -401 -296 190 -377
+ -377 -324 190 -357
+ -429 -401 193 -357
+ -339 184 -357 -201
+ 125 -109 -143 -36
+ -32 63 -103 22
diff --git a/profiles/vertebrates/MA1980.1.pwm b/profiles/vertebrates/MA1980.1.pwm
index d4707de..6d9cf0b 100644
--- a/profiles/vertebrates/MA1980.1.pwm
+++ b/profiles/vertebrates/MA1980.1.pwm
@@ -1,15 +1,15 @@
- 96 24 -63 -218
- 67 -438 53 -11
- -206 -516 186 -344
- 130 -144 -250 -2
- 10 -516 152 -516
- -192 -516 185 -316
- -292 192 -388 -796
- -268 -11 -516 153
- 175 -316 -152 -251
- 155 -58 -218 -251
- 199 -797 -516 -797
- 186 -797 -161 -438
- -73 -516 168 -268
- -516 192 -797 -251
- 195 -388 -796 -388
+ 94 23 -60 -204
+ 65 -370 51 -11
+ -193 -411 183 -306
+ 128 -137 -231 -2
+ 10 -411 149 -411
+ -180 -411 181 -285
+ -266 189 -337 -485
+ -246 -11 -411 150
+ 172 -284 -144 -231
+ 152 -56 -204 -231
+ 195 -486 -411 -486
+ 182 -486 -152 -370
+ -70 -411 165 -246
+ -411 189 -486 -231
+ 192 -337 -485 -337
diff --git a/profiles/vertebrates/MA1981.1.pwm b/profiles/vertebrates/MA1981.1.pwm
index 1aa7ad9..bfd20a1 100644
--- a/profiles/vertebrates/MA1981.1.pwm
+++ b/profiles/vertebrates/MA1981.1.pwm
@@ -1,18 +1,18 @@
- -244 -497 192 -697
- 101 47 -119 -265
- 190 -244 -416 -497
- 78 -224 44 -47
- -292 -497 194 -697
- -697 -697 199 -697
- 110 24 -168 -146
- 66 -37 24 -111
- 184 -697 -194 -264
- -697 -697 199 -697
- -119 -497 182 -697
- -697 -697 199 -697
- -497 27 142 -357
- -137 165 -180 -244
- 20 -47 55 -58
- -168 -63 142 -146
- -52 7 73 -76
- 38 17 7 -95
+ -226 -402 188 -470
+ 99 46 -113 -243
+ 187 -226 -356 -402
+ 76 -208 43 -46
+ -266 -402 190 -470
+ -470 -470 196 -470
+ 108 23 -159 -138
+ 65 -36 23 -106
+ 180 -470 -182 -243
+ -470 -470 196 -470
+ -113 -402 178 -470
+ -470 -470 196 -470
+ -402 26 139 -316
+ -130 162 -169 -226
+ 20 -46 53 -56
+ -159 -61 139 -138
+ -51 7 72 -73
+ 37 17 7 -91
diff --git a/profiles/vertebrates/MA1982.1.pwm b/profiles/vertebrates/MA1982.1.pwm
index d6238e0..30c5731 100644
--- a/profiles/vertebrates/MA1982.1.pwm
+++ b/profiles/vertebrates/MA1982.1.pwm
@@ -1,15 +1,15 @@
- -27 2 54 -49
- -137 -327 130 6
- -292 71 111 -372
- -188 181 -221 -797
- -254 -11 -372 150
- 200 -797 -797 -797
- -797 -597 199 -797
- 198 -497 -497 -797
- -211 -438 189 -797
- 27 103 -96 -211
- -372 -406 195 -797
- -211 -108 146 -88
- -105 168 -438 -194
- -148 116 -16 -96
- -105 97 37 -194
+ -26 2 52 -47
+ -130 -293 128 5
+ -266 69 109 -326
+ -176 178 -206 -486
+ -234 -11 -326 147
+ 196 -486 -486 -486
+ -486 -444 196 -486
+ 194 -402 -402 -486
+ -197 -370 186 -486
+ 26 101 -92 -197
+ -326 -349 192 -486
+ -197 -104 143 -84
+ -100 165 -370 -182
+ -140 113 -15 -92
+ -100 95 36 -182
diff --git a/profiles/vertebrates/MA1983.1.pwm b/profiles/vertebrates/MA1983.1.pwm
index 568f670..add99fe 100644
--- a/profiles/vertebrates/MA1983.1.pwm
+++ b/profiles/vertebrates/MA1983.1.pwm
@@ -1,21 +1,21 @@
- -155 -102 -111 143
- -149 125 -161 -9
- -129 -115 -202 153
- -124 -36 114 -74
- -361 -274 -419 189
- -419 -419 -339 192
- 176 -87 -619 -419
- -287 188 -619 -261
- -339 -249 -339 186
- -519 -619 -619 198
- -419 -619 194 -361
- -461 196 -619 -419
- 184 -239 -387 -261
- -319 -287 186 -287
- -387 195 -519 -461
- -361 154 -619 0
- 79 -26 -31 -67
- 174 -261 -167 -239
- 167 -229 -134 -219
- 90 -52 -149 11
- -36 -202 138 -144
+ -140 -94 -102 138
+ -136 120 -145 -8
+ -118 -106 -180 148
+ -114 -34 109 -68
+ -291 -234 -323 183
+ -323 -323 -278 186
+ 170 -81 -388 -323
+ -244 182 -388 -225
+ -278 -217 -278 180
+ -363 -388 -388 192
+ -323 -388 188 -291
+ -341 190 -388 -323
+ 178 -208 -306 -225
+ -266 -244 180 -244
+ -306 189 -363 -341
+ -291 149 -388 0
+ 76 -25 -29 -62
+ 168 -225 -151 -208
+ 161 -201 -122 -193
+ 87 -49 -136 10
+ -34 -180 133 -131
diff --git a/profiles/vertebrates/MA1984.1.pwm b/profiles/vertebrates/MA1984.1.pwm
index e69de29..561ce25 100644
--- a/profiles/vertebrates/MA1984.1.pwm
+++ b/profiles/vertebrates/MA1984.1.pwm
@@ -0,0 +1,12 @@
+ -362 -180 14 134
+ -362 -180 -103 165
+ 174 -362 -180 -180
+ 108 -15 -180 -53
+ 14 -362 145 -362
+ 165 -362 -53 -362
+ -362 -362 183 -180
+ -362 191 -362 -362
+ -53 -103 -362 145
+ -362 191 -362 -362
+ 174 -103 -362 -362
+ 14 -15 78 -180
diff --git a/profiles/vertebrates/MA1985.1.pwm b/profiles/vertebrates/MA1985.1.pwm
index cb59f19..d6cd1ad 100644
--- a/profiles/vertebrates/MA1985.1.pwm
+++ b/profiles/vertebrates/MA1985.1.pwm
@@ -1,15 +1,15 @@
- -79 -100 123 -79
- -332 -564 195 -564
- -332 -564 195 -564
- -100 -43 123 -125
- -247 132 -564 38
- -564 -564 198 -564
- 189 -194 -564 -564
- -564 96 -564 101
- -564 -564 198 -564
- 150 -29 -332 -194
- -564 182 -564 -125
- -332 169 -156 -156
- 96 -194 62 -194
- -125 96 -15 -43
- -194 -125 -125 154
+ -75 -96 120 -75
+ -297 -432 192 -432
+ -297 -432 192 -432
+ -96 -42 120 -119
+ -229 130 -432 37
+ -432 -432 194 -432
+ 185 -182 -432 -432
+ -432 93 -432 99
+ -432 -432 194 -432
+ 147 -28 -297 -182
+ -432 179 -432 -119
+ -297 166 -147 -147
+ 93 -182 61 -182
+ -119 93 -15 -42
+ -182 -119 -119 151
diff --git a/profiles/vertebrates/MA1986.1.pwm b/profiles/vertebrates/MA1986.1.pwm
index 3f7a249..e3d54e8 100644
--- a/profiles/vertebrates/MA1986.1.pwm
+++ b/profiles/vertebrates/MA1986.1.pwm
@@ -1,10 +1,10 @@
- -75 -25 64 1
- -94 -103 135 -117
- -10000 -490 199 -769
- -644 -939 199 -669
- -664 199 -858 -693
- -603 196 -348 -730
- -981 197 -393 -700
- 197 -10000 -368 -10000
- -166 90 46 -117
- -13 40 13 -57
+ -74 -24 63 1
+ -92 -102 134 -115
+ -671 -455 198 -612
+ -557 -650 198 -571
+ -568 198 -636 -582
+ -534 195 -334 -598
+ -655 196 -375 -585
+ 196 -671 -352 -671
+ -163 89 46 -116
+ -13 39 13 -56
diff --git a/profiles/vertebrates/MA1987.1.pwm b/profiles/vertebrates/MA1987.1.pwm
index e69de29..022213e 100644
--- a/profiles/vertebrates/MA1987.1.pwm
+++ b/profiles/vertebrates/MA1987.1.pwm
@@ -0,0 +1,21 @@
+ -289 -349 190 -456
+ 188 -456 -213 -456
+ -289 -289 188 -456
+ 26 126 -146 -456
+ 171 -349 -86 -349
+ -213 102 2 -44
+ -146 99 -74 8
+ 81 -64 -36 -28
+ 81 -99 -20 -20
+ 77 -128 60 -146
+ -165 -456 181 -289
+ -349 -456 194 -456
+ -349 -213 185 -349
+ -44 -456 156 -188
+ -113 -456 177 -349
+ 77 -146 84 -289
+ 144 -213 -74 -113
+ 46 -64 14 -20
+ 14 -74 31 8
+ -5 -128 56 20
+ -28 -36 65 -28
diff --git a/profiles/vertebrates/MA1988.1.pwm b/profiles/vertebrates/MA1988.1.pwm
index e69de29..564a553 100644
--- a/profiles/vertebrates/MA1988.1.pwm
+++ b/profiles/vertebrates/MA1988.1.pwm
@@ -0,0 +1,11 @@
+ 5 -54 21 17
+ 69 -33 24 -130
+ -442 -424 -505 195
+ -308 -478 183 -179
+ 196 -505 -470 -450
+ -256 174 -159 -256
+ -252 -461 -327 188
+ -133 176 -444 -268
+ 192 -423 -358 -386
+ -73 -7 -6 57
+ 22 6 -41 6
diff --git a/profiles/vertebrates/MA1989.1.pwm b/profiles/vertebrates/MA1989.1.pwm
index e69de29..cae9094 100644
--- a/profiles/vertebrates/MA1989.1.pwm
+++ b/profiles/vertebrates/MA1989.1.pwm
@@ -0,0 +1,14 @@
+ 33 -19 -11 -8
+ 32 -12 -2 -25
+ 131 -96 -141 -67
+ 165 -207 -169 -171
+ 186 -279 -255 -394
+ -279 188 -362 -349
+ -317 191 -442 -349
+ 188 -334 -356 -287
+ -250 185 -298 -344
+ 185 -279 -295 -313
+ 125 -148 -48 -87
+ 7 -41 71 -83
+ 29 0 -9 -26
+ 28 2 -27 -8
diff --git a/profiles/vertebrates/MA1990.1.pwm b/profiles/vertebrates/MA1990.1.pwm
index 8eaf1c7..baa1742 100644
--- a/profiles/vertebrates/MA1990.1.pwm
+++ b/profiles/vertebrates/MA1990.1.pwm
@@ -1,14 +1,14 @@
- 3 23 -9 -20
- 8 13 16 -44
- 109 -174 14 -107
- -315 -237 182 -263
- 164 -160 -101 -421
- -332 190 -351 -382
- -382 193 -376 -435
- 187 -378 -352 -240
- -472 194 -374 -399
- -84 169 -279 -388
- -271 183 -319 -252
- 173 -241 -200 -199
- -77 52 62 -118
- 12 -16 49 -70
+ 3 22 -8 -20
+ 8 13 15 -43
+ 107 -169 14 -105
+ -298 -228 180 -252
+ 163 -155 -98 -386
+ -313 189 -329 -355
+ -355 191 -350 -397
+ 185 -352 -331 -230
+ -424 192 -348 -369
+ -82 168 -266 -360
+ -259 182 -301 -242
+ 171 -232 -193 -192
+ -75 52 61 -115
+ 12 -16 48 -69
diff --git a/profiles/vertebrates/MA1991.1.pwm b/profiles/vertebrates/MA1991.1.pwm
index e69de29..89bcee1 100644
--- a/profiles/vertebrates/MA1991.1.pwm
+++ b/profiles/vertebrates/MA1991.1.pwm
@@ -0,0 +1,14 @@
+ -40 2 3 27
+ -79 15 30 11
+ -152 123 -59 -63
+ -358 183 -275 -218
+ -353 -305 -434 190
+ -369 -242 -222 182
+ -369 -402 -395 192
+ -305 -134 170 -206
+ 182 -287 -369 -197
+ -150 -343 -301 178
+ -177 112 27 -159
+ -96 -55 -157 130
+ -77 18 16 22
+ -31 -3 16 13
diff --git a/profiles/vertebrates/MA1992.1.pwm b/profiles/vertebrates/MA1992.1.pwm
index e69de29..8e1bc9f 100644
--- a/profiles/vertebrates/MA1992.1.pwm
+++ b/profiles/vertebrates/MA1992.1.pwm
@@ -0,0 +1,15 @@
+ 33 -20 22 -50
+ -6 21 29 -60
+ 91 -75 9 -113
+ -235 173 -145 -294
+ 180 -211 -243 -346
+ -459 -429 195 -438
+ -352 -363 192 -420
+ 190 -318 -331 -438
+ 181 -389 -341 -158
+ -146 -251 174 -318
+ -130 -97 -135 143
+ -119 -102 142 -137
+ -32 -25 78 -65
+ -24 0 54 -50
+ -14 -21 35 -7
diff --git a/profiles/vertebrates/MA1993.1.pwm b/profiles/vertebrates/MA1993.1.pwm
index e69de29..fa6d70e 100644
--- a/profiles/vertebrates/MA1993.1.pwm
+++ b/profiles/vertebrates/MA1993.1.pwm
@@ -0,0 +1,10 @@
+ 29 -12 36 -82
+ 29 38 26 -184
+ -756 199 -687 -713
+ 198 -520 -478 -787
+ -768 -754 199 -750
+ -750 199 -754 -768
+ -787 -478 -520 198
+ -713 -687 199 -756
+ -184 26 38 29
+ -82 36 -12 29
diff --git a/profiles/vertebrates/MA1994.1.pwm b/profiles/vertebrates/MA1994.1.pwm
index e69de29..f3c8503 100644
--- a/profiles/vertebrates/MA1994.1.pwm
+++ b/profiles/vertebrates/MA1994.1.pwm
@@ -0,0 +1,13 @@
+ 36 -39 4 -11
+ 12 40 11 -97
+ -367 187 -426 -216
+ 192 -374 -452 -345
+ -436 194 -477 -356
+ -335 -440 -268 189
+ -385 -290 -356 189
+ -214 -257 180 -290
+ 190 -390 -406 -284
+ 102 -64 3 -171
+ 36 45 -74 -40
+ 11 -20 -39 36
+ 1 5 -33 22
diff --git a/profiles/vertebrates/MA1995.1.pwm b/profiles/vertebrates/MA1995.1.pwm
index 443d53e..e2884b8 100644
--- a/profiles/vertebrates/MA1995.1.pwm
+++ b/profiles/vertebrates/MA1995.1.pwm
@@ -1,11 +1,11 @@
- 19 2 0 -24
- 7 -3 7 -13
- -205 -219 -167 169
- -275 178 -195 -275
- -212 -268 183 -415
- -418 -440 -316 192
- -532 -361 194 -425
- 174 -185 -261 -213
- -247 170 -179 -186
- 12 -41 -53 55
- -19 17 15 -16
+ 18 2 0 -24
+ 7 -3 7 -13
+ -201 -213 -164 168
+ -266 177 -191 -267
+ -207 -260 182 -392
+ -394 -413 -304 191
+ -483 -345 193 -400
+ 173 -181 -253 -208
+ -240 169 -175 -182
+ 12 -40 -52 54
+ -19 17 15 -16
diff --git a/profiles/vertebrates/MA1996.1.pwm b/profiles/vertebrates/MA1996.1.pwm
index e69de29..d3dcfa6 100644
--- a/profiles/vertebrates/MA1996.1.pwm
+++ b/profiles/vertebrates/MA1996.1.pwm
@@ -0,0 +1,11 @@
+ -25 28 -15 6
+ 21 -10 -27 11
+ 84 -73 32 -145
+ 192 -340 -386 -421
+ -434 -354 191 -340
+ -430 -525 195 -415
+ -474 -527 -513 197
+ -373 191 -457 -295
+ 193 -492 -310 -522
+ -44 30 -1 6
+ 14 -12 1 -5
diff --git a/profiles/vertebrates/MA1997.1.pwm b/profiles/vertebrates/MA1997.1.pwm
index 7b7a8bb..a47418b 100644
--- a/profiles/vertebrates/MA1997.1.pwm
+++ b/profiles/vertebrates/MA1997.1.pwm
@@ -1,10 +1,10 @@
- 31 -3 11 -51
- 15 26 37 -133
- -1058 200 -707 -826
- 197 -452 -437 -10000
- -1009 -973 200 -854
- -854 200 -973 -1009
- -10000 -437 -452 197
- -826 -707 200 -1058
- -133 37 26 15
- -51 11 -3 31
+ 31 -3 11 -51
+ 15 26 36 -132
+ -774 199 -645 -710
+ 196 -439 -426 -796
+ -766 -759 199 -722
+ -722 199 -759 -766
+ -796 -426 -439 196
+ -710 -645 199 -774
+ -132 36 26 15
+ -51 11 -3 31
diff --git a/profiles/vertebrates/MA1998.1.pwm b/profiles/vertebrates/MA1998.1.pwm
index e99ca98..f4c1626 100644
--- a/profiles/vertebrates/MA1998.1.pwm
+++ b/profiles/vertebrates/MA1998.1.pwm
@@ -1,12 +1,12 @@
- 11 10 -28 5
- 47 -126 49 -33
- -224 -168 169 -207
- -356 -260 185 -271
- -267 -318 -149 176
- -370 185 -262 -278
- -306 -144 -424 179
- -471 180 -196 -213
- -409 -364 -476 194
- 186 -278 -314 -317
- 89 -64 -81 -9
- -73 73 -10 -31
+ 11 9 -28 5
+ 47 -124 48 -33
+ -219 -165 169 -203
+ -344 -254 184 -264
+ -261 -309 -147 175
+ -356 185 -256 -271
+ -297 -142 -404 178
+ -443 179 -192 -209
+ -391 -350 -447 193
+ 185 -271 -305 -308
+ 88 -63 -80 -9
+ -72 72 -10 -31
diff --git a/profiles/vertebrates/MA1999.1.pwm b/profiles/vertebrates/MA1999.1.pwm
index e69de29..6aed5bf 100644
--- a/profiles/vertebrates/MA1999.1.pwm
+++ b/profiles/vertebrates/MA1999.1.pwm
@@ -0,0 +1,15 @@
+ -47 94 -91 -28
+ -78 -18 -6 66
+ -216 -152 161 -144
+ -154 -105 -176 152
+ -295 -195 -213 176
+ -284 183 -328 -238
+ -207 -234 -284 178
+ -307 183 -238 -301
+ -274 185 -295 -314
+ 160 -113 -204 -192
+ -295 -154 -51 150
+ -195 145 -105 -94
+ -102 -34 -138 122
+ -23 16 14 -12
+ -35 30 18 -25
diff --git a/profiles/vertebrates/MA2000.1.pwm b/profiles/vertebrates/MA2000.1.pwm
index 86e51d9..bbb1fe3 100644
--- a/profiles/vertebrates/MA2000.1.pwm
+++ b/profiles/vertebrates/MA2000.1.pwm
@@ -1,17 +1,17 @@
- 35 -22 8 -30
- -6 -18 2 19
- 15 -73 68 -54
- 133 -156 -89 -70
- -73 -107 127 -95
- -164 -65 -69 128
- -288 -106 -318 171
- -403 188 -264 -329
- 187 -261 -323 -367
- 189 -377 -288 -340
- -347 -471 193 -379
- -375 -447 192 -333
- -159 -28 -278 143
- -413 186 -339 -225
- 184 -303 -293 -257
- -41 -5 44 -12
- -26 58 -26 -27
+ 34 -21 8 -30
+ -5 -18 2 19
+ 15 -72 67 -53
+ 131 -152 -87 -69
+ -72 -105 125 -94
+ -160 -64 -68 126
+ -275 -104 -302 170
+ -374 186 -253 -312
+ 185 -250 -307 -345
+ 187 -353 -275 -322
+ -327 -426 191 -354
+ -352 -409 190 -315
+ -155 -28 -266 142
+ -382 185 -321 -217
+ 182 -289 -280 -247
+ -40 -4 43 -12
+ -25 57 -26 -26
diff --git a/profiles/vertebrates/MA2001.1.pwm b/profiles/vertebrates/MA2001.1.pwm
index e69de29..b9994d3 100644
--- a/profiles/vertebrates/MA2001.1.pwm
+++ b/profiles/vertebrates/MA2001.1.pwm
@@ -0,0 +1,11 @@
+ -60 -116 123 -88
+ 47 -75 -45 37
+ 191 -324 -389 -362
+ 187 -308 -380 -274
+ -227 169 -305 -119
+ -113 163 -306 -159
+ -232 -194 -227 174
+ -296 -275 185 -305
+ 193 -380 -399 -397
+ -36 5 20 4
+ 32 38 -63 -32
diff --git a/profiles/vertebrates/MA2002.1.pwm b/profiles/vertebrates/MA2002.1.pwm
index e69de29..f323447 100644
--- a/profiles/vertebrates/MA2002.1.pwm
+++ b/profiles/vertebrates/MA2002.1.pwm
@@ -0,0 +1,11 @@
+ 23 -13 43 -81
+ 23 -13 6 -20
+ -70 -168 -43 122
+ -244 186 -335 -335
+ 179 -214 -335 -214
+ -335 -244 184 -282
+ -335 -335 186 -244
+ -244 184 -282 -335
+ 167 -282 -92 -282
+ -43 38 33 -52
+ -35 17 -61 52
diff --git a/profiles/vertebrates/MA2003.1.pwm b/profiles/vertebrates/MA2003.1.pwm
index 6dfd965..43b437e 100644
--- a/profiles/vertebrates/MA2003.1.pwm
+++ b/profiles/vertebrates/MA2003.1.pwm
@@ -1,10 +1,10 @@
- -46 116 -13 -312
- -458 183 -558 -137
- 163 -160 -450 -89
- -10000 200 -10000 -10000
- -10000 -360 -824 197
- -300 -2 -500 151
- -61 55 78 -268
- 171 -270 -267 -125
- 49 26 10 -164
- 27 56 -40 -84
+ -45 115 -12 -292
+ -382 180 -431 -130
+ 160 -152 -385 -86
+ -489 196 -489 -489
+ -492 -315 -479 193
+ -277 -2 -419 149
+ -59 54 77 -248
+ 168 -249 -247 -119
+ 49 26 10 -160
+ 27 55 -39 -81
diff --git a/scan-sequence.py b/scan-sequence.py
new file mode 100755
index 0000000..377df6a
--- /dev/null
+++ b/scan-sequence.py
@@ -0,0 +1,250 @@
+#!/usr/bin/env python
+
+import click
+from click_option_group import optgroup
+from functools import partial
+from itertools import chain
+import json
+from multiprocessing import Pool
+from numpy import log10 as log
+import os
+import re
+import shutil
+import subprocess
+from tqdm import tqdm
+
+# Authorship
+__author__ = "Oriol Fornes"
+__organization__ = "The JASPAR Consortium"
+__version__ = "2021.9.1"
+__maintainer__ = "Oriol Fornes"
+__email__ = "oriol@cmmt.ubc.ca"
+__status__ = "Production"
+
+# Globals
+pid = os.getpid()
+taxons = ["fungi", "insects", "nematodes", "plants", "urochordates",
+ "vertebrates"]
+
+CONTEXT_SETTINGS = {
+ "help_option_names": ["-h", "--help"],
+}
+
+@click.command(no_args_is_help=True, context_settings=CONTEXT_SETTINGS)
+@click.argument(
+ "fasta_file",
+ type=click.Path(exists=True, resolve_path=True),
+)
+@click.argument(
+ "profiles_dir",
+ type=click.Path(exists=True, resolve_path=True),
+)
+@click.option(
+ "-d", "--dummy-dir",
+ help="Dummy directory.",
+ type=click.Path(exists=True, resolve_path=True),
+ default="/tmp/",
+ show_default=True,
+)
+@click.option(
+ "-o", "--output-dir",
+ help="Output directory.",
+ type=click.Path(resolve_path=True),
+ default="./",
+ show_default=True,
+)
+@click.option(
+ "-t", "--threads",
+ help="Number of CPU threads to use.",
+ type=int,
+ default=1,
+ show_default=True,
+)
+@optgroup.group("Search arguments")
+@optgroup.option(
+ "-b", "--background",
+ help="A, C, G, T background probabilities.",
+ type=float,
+ nargs=4,
+ default=[.25, .25, .25, .25],
+ show_default=True,
+)
+@optgroup.option(
+ "-l", "--latest",
+ help="Use the latest version of each profile.",
+ is_flag=True,
+)
+@optgroup.option(
+ "--profile",
+ help="Profile ID(s) to use. [default: all]",
+ multiple=True,
+)
+@optgroup.option(
+ "--pthresh",
+ help="P-value threshold.",
+ type=float,
+ default=.05,
+ show_default=True,
+)
+@optgroup.option(
+ "--rthresh",
+ help="Relative score threshold.",
+ type=float,
+ default=.8,
+ show_default=True,
+)
+@optgroup.option(
+ "--taxon",
+ help="Taxon(s) to use. [default: all]",
+ multiple=True,
+ default=taxons,
+)
+
+def main(**params):
+
+ # Scan sequence
+ scan_sequence(params["fasta_file"], params["profiles_dir"],
+ params["dummy_dir"], params["output_dir"], params["threads"],
+ params["background"], params["latest"], set(params["profile"]),
+ params["pthresh"], params["rthresh"], params["taxon"])
+
+def scan_sequence(fasta_file, profiles_dir, dummy_dir="/tmp/", output_dir="./",
+ threads=1, background=(.25, .25, .25, .25), latest=False, profile=set(),
+ pthresh=.05, rthresh=.8, taxon=taxons):
+
+ # Initialize
+ A, C, G, T = background
+
+ # Create output directory
+ if not os.path.exists(output_dir):
+ os.makedirs(output_dir)
+
+ # Get profiles with which to scan sequence
+ profiles = _get_profiles(profiles_dir, latest, profile, taxon)
+
+ # Get profile names
+ with open(os.path.join(profiles_dir, "names.json")) as handle:
+ names = json.load(handle)
+
+ # Scan profiles against sequence
+ _scan_profiles(profiles, fasta_file, names, dummy_dir, output_dir, threads,
+ A, C, G, T, pthresh, rthresh)
+
+def _get_profiles(profiles_dir, latest=False, profile=set(), taxon=taxons):
+
+ # Initialize
+ profiles = []
+ profiles_dict = {}
+
+ # For each taxon...
+ for t in taxon:
+
+ # Initialize
+ taxon_dir = os.path.join(os.path.abspath(profiles_dir), t)
+
+ # For each profile...
+ for profile_file in sorted(os.listdir(taxon_dir), reverse=True):
+
+ # Ignore profiles
+ if len(profile) > 0:
+ if profile_file[:8] not in profile:
+ continue
+
+ # Initialize key
+ key = profile_file[:6]
+ profiles_dict.setdefault(key, [])
+
+ # Skip profile if only using the latest version of each profile
+ if latest:
+ if len(profiles_dict[key]) == 1:
+ continue
+
+ # Add profile
+ profiles_dict[key].append(os.path.join(taxon_dir, profile_file))
+
+ # Create list of profiles
+ for value_list in profiles_dict.values():
+ for p in value_list:
+ profiles.append(p)
+
+ return(profiles)
+
+def _scan_profiles(profiles, fasta_file, names, dummy_dir="/tmp/",
+ output_dir="./", threads=1, A=.25, C=.25, G=.25, T=.25, pthresh=.05,
+ rthresh=.8):
+
+ # Parallelize scanning
+ kwargs = {"total": len(profiles), "ncols": 100}
+ pool = Pool(threads)
+ p = partial(_scan_profile, fasta_file=fasta_file, names=names,
+ dummy_dir=dummy_dir, output_dir=output_dir, threads=threads,
+ A=A, C=C, G=G, T=T, pthresh=pthresh, rthresh=rthresh)
+ for _ in tqdm(pool.imap(p, profiles), **kwargs):
+ pass
+ pool.close()
+ pool.join()
+
+def _scan_profile(profile_file, fasta_file, names, dummy_dir="/tmp/",
+ output_dir="./", threads=1, A=.25, C=.25, G=.25, T=.25, pthresh=.05,
+ rthresh=.8):
+
+ # Initialize
+ cutoff = None
+ matrix_id = os.path.basename(profile_file)[:8]
+ bin_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "bin")
+ tsv_file = os.path.join(dummy_dir, "%s.%s.%s" % \
+ (os.path.basename(__file__), pid, matrix_id))
+ gzipped_file = "%s.gz" % tsv_file
+ output_file = os.path.join(output_dir, "%s.tsv.gz" % matrix_id)
+
+ # Skip if profile already scanned (i.e. for speed)
+ output_file = os.path.join(output_dir, "%s.tsv.gz" % matrix_id)
+ if not os.path.exists(output_file):
+
+ # Calculate distribution of PWM scores
+ cmd = "%s %s" % (os.path.join(bin_dir, "matrix_prob"), profile_file)
+ process = subprocess.run([cmd], shell=True, stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
+
+ with open(tsv_file, "w") as f:
+
+ for line in process.stdout.decode("utf-8").split("\n"):
+
+ matches = re.findall("(\S+)", line)
+
+ if len(matches) == 3:
+
+ score = matches[0]
+ p_value = float(matches[1])
+ perc = float(matches[2][:-1])
+
+ f.write(f"{score}\t{int(perc * 10)}\t" +\
+ f"{int(log(p_value) * 1000 / -10)}\n")
+
+ # Get PWM score cutoff
+ if cutoff is None:
+ cutoff = score
+ elif p_value < pthresh and perc >= rthresh * 100:
+ cutoff = score
+
+ # Scan FASTA file (ugly code but very efficient)
+ cmd_1 = "%s -m %s -c %s %s" % (os.path.join(bin_dir, "matrix_scan"),
+ profile_file, cutoff, fasta_file)
+ cmd_2 = "gzip > %s" % gzipped_file
+ cmd = '''%s | awk -v score_tab="%s" -v name="%s" 'BEGIN { while((getline line < score_tab) > 0 ) {split(line,f," "); scores[f[1]]=f[2]; pvalues[f[1]]=f[3]} close(score_tab) } {print $1"\t"$2"\t"$3"\t"name"\t"scores[$5]"\t"pvalues[$5]"\t"$6}' | %s''' % \
+ (cmd_1, tsv_file, names[matrix_id], cmd_2)
+ subprocess.call(cmd, shell=True, stderr=subprocess.STDOUT)
+
+ # Write output
+ shutil.copy(gzipped_file, output_file)
+
+ # Remove dummy files
+ os.remove(tsv_file)
+ os.remove(gzipped_file)
+
+#-------------#
+# Main #
+#-------------#
+
+if __name__ == "__main__":
+ main()
\ No newline at end of file
diff --git a/scan-sequences.sh b/scan-sequences.sh
new file mode 100755
index 0000000..450f2eb
--- /dev/null
+++ b/scan-sequences.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/sacCer3/ --taxon fungi ./genomes/sacCer3/sacCer3.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/dm6/ --taxon insects ./genomes/dm6/dm6.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/ce10/ --taxon nematodes ./genomes/ce10/ce10.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/ce11/ --taxon nematodes ./genomes/ce11/ce11.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/araTha1/ --taxon plants ./genomes/araTha1/araTha1.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/ci3/ --taxon urochordates ./genomes/ci3/ci3.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/danRer11/ --taxon vertebrates ./genomes/danRer11/danRer11.fa \
+ ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/hg19/ --taxon vertebrates ./genomes/hg19/hg19.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/hg38/ --taxon vertebrates ./genomes/hg38/hg38.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/mm10/ --taxon vertebrates ./genomes/mm10/mm10.fa ./profiles/
+./scan-sequence.py --threads 4 --latest \
+ -o ./tracks/mm39/ --taxon vertebrates ./genomes/mm39/mm39.fa ./profiles/
\ No newline at end of file
diff --git a/scans2bigBed b/scans2bigBed
index a48bcfd..bcac353 100755
--- a/scans2bigBed
+++ b/scans2bigBed
@@ -104,7 +104,7 @@ LC_ALL=C sort --parallel=$THREADS --buffer-size=${MEM}G -T $DUMMY_DIR -k1,1 -k2,
##
## Remove BED file
##
-rm $BED_FILE
+#rm $BED_FILE
##
## Create bigBed
@@ -114,4 +114,4 @@ bedToBigBed -type=bed6 -tab $SORTED_BED_FILE $CHROM_SIZES $OUT_FILE
##
## Remove sorted BED file
##
-rm $SORTED_BED_FILE
+#rm $SORTED_BED_FILE
diff --git a/scans2bigBed.sh b/scans2bigBed.sh
new file mode 100755
index 0000000..a883742
--- /dev/null
+++ b/scans2bigBed.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+./scans2bigBed -c ./genomes/hg38/hg38.fa.sizes -i ./tracks/hg38/ -d ./ -o ./tracks/hg38.bb -t 4
+./scans2bigBed -c ./genomes/mm10/mm10.fa.sizes -i ./tracks/mm10/ -d ./ -o ./tracks/mm10.bb -t 4
+./scans2bigBed -c ./genomes/mm39/mm39.fa.sizes -i ./tracks/mm39/ -d ./ -o ./tracks/mm39.bb -t 4
\ No newline at end of file