| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
package jalview.analysis; |
| 22 |
|
|
| 23 |
|
import java.util.ArrayList; |
| 24 |
|
import java.util.Arrays; |
| 25 |
|
import java.util.BitSet; |
| 26 |
|
import java.util.Collections; |
| 27 |
|
import java.util.HashMap; |
| 28 |
|
import java.util.List; |
| 29 |
|
import java.util.Map; |
| 30 |
|
import java.util.Optional; |
| 31 |
|
import java.util.Vector; |
| 32 |
|
|
| 33 |
|
import jalview.datamodel.AlignmentAnnotation; |
| 34 |
|
import jalview.datamodel.PDBEntry; |
| 35 |
|
import jalview.datamodel.SequenceGroup; |
| 36 |
|
import jalview.datamodel.SequenceI; |
| 37 |
|
import jalview.renderer.AnnotationRenderer; |
| 38 |
|
import jalview.util.Constants; |
| 39 |
|
|
| |
|
| 0% |
Uncovered Elements: 236 (236) |
Complexity: 81 |
Complexity Density: 0.59 |
|
| 40 |
|
public class AlignmentAnnotationUtils |
| 41 |
|
{ |
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
@param |
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
@param |
| 64 |
|
|
| 65 |
|
@param |
| 66 |
|
|
| 67 |
|
@param |
| 68 |
|
|
| 69 |
|
|
| |
|
| 0% |
Uncovered Elements: 74 (74) |
Complexity: 21 |
Complexity Density: 0.48 |
|
| 70 |
0 |
public static void getShownHiddenTypes(... |
| 71 |
|
Map<String, List<List<String>>> shownTypes, |
| 72 |
|
Map<String, List<List<String>>> hiddenTypes, |
| 73 |
|
List<AlignmentAnnotation> annotations, |
| 74 |
|
List<SequenceI> forSequences) |
| 75 |
|
{ |
| 76 |
0 |
BitSet visibleGraphGroups = AlignmentAnnotationUtils |
| 77 |
|
.getVisibleLineGraphGroups(annotations); |
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
0 |
Map<String, Map<Integer, List<String>>> groupLabels = new HashMap<>(); |
| 84 |
|
|
| 85 |
|
|
| 86 |
0 |
List<String> addedToShown = new ArrayList<>(); |
| 87 |
0 |
List<String> addedToHidden = new ArrayList<>(); |
| 88 |
|
|
| 89 |
0 |
for (AlignmentAnnotation aa : annotations) |
| 90 |
|
{ |
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
0 |
if (aa.annotations == null) |
| 96 |
|
{ |
| 97 |
0 |
continue; |
| 98 |
|
} |
| 99 |
0 |
if (forSequences != null && (aa.sequenceRef != null |
| 100 |
|
&& forSequences.contains(aa.sequenceRef))) |
| 101 |
|
{ |
| 102 |
0 |
String calcId = aa.getCalcId(); |
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
0 |
final List<String> labelAsList = new ArrayList<>(); |
| 108 |
0 |
final String displayLabel = aa.label; |
| 109 |
0 |
labelAsList.add(displayLabel); |
| 110 |
0 |
if (aa.graph == AlignmentAnnotation.LINE_GRAPH |
| 111 |
|
&& aa.graphGroup > -1) |
| 112 |
|
{ |
| 113 |
0 |
if (!groupLabels.containsKey(calcId)) |
| 114 |
|
{ |
| 115 |
0 |
groupLabels.put(calcId, new HashMap<Integer, List<String>>()); |
| 116 |
|
} |
| 117 |
0 |
Map<Integer, List<String>> groupLabelsForCalcId = groupLabels |
| 118 |
|
.get(calcId); |
| 119 |
0 |
if (groupLabelsForCalcId.containsKey(aa.graphGroup)) |
| 120 |
|
{ |
| 121 |
0 |
if (!groupLabelsForCalcId.get(aa.graphGroup) |
| 122 |
|
.contains(displayLabel)) |
| 123 |
|
{ |
| 124 |
0 |
groupLabelsForCalcId.get(aa.graphGroup).add(displayLabel); |
| 125 |
|
} |
| 126 |
|
} |
| 127 |
|
else |
| 128 |
|
{ |
| 129 |
0 |
groupLabelsForCalcId.put(aa.graphGroup, labelAsList); |
| 130 |
|
} |
| 131 |
|
} |
| 132 |
|
else |
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
{ |
| 138 |
0 |
String rememberAs = calcId + "!" + displayLabel; |
| 139 |
0 |
if (aa.isForDisplay() && !addedToShown.contains(rememberAs)) |
| 140 |
|
{ |
| 141 |
0 |
if (!shownTypes.containsKey(calcId)) |
| 142 |
|
{ |
| 143 |
0 |
shownTypes.put(calcId, new ArrayList<List<String>>()); |
| 144 |
|
} |
| 145 |
0 |
shownTypes.get(calcId).add(labelAsList); |
| 146 |
0 |
addedToShown.add(rememberAs); |
| 147 |
|
} |
| 148 |
|
else |
| 149 |
|
{ |
| 150 |
0 |
if (!aa.visible && !addedToHidden.contains(rememberAs)) |
| 151 |
|
{ |
| 152 |
0 |
if (!hiddenTypes.containsKey(calcId)) |
| 153 |
|
{ |
| 154 |
0 |
hiddenTypes.put(calcId, new ArrayList<List<String>>()); |
| 155 |
|
} |
| 156 |
0 |
hiddenTypes.get(calcId).add(labelAsList); |
| 157 |
0 |
addedToHidden.add(rememberAs); |
| 158 |
|
} |
| 159 |
|
} |
| 160 |
|
} |
| 161 |
|
} |
| 162 |
|
} |
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
0 |
for (String calcId : groupLabels.keySet()) |
| 170 |
|
{ |
| 171 |
0 |
for (int group : groupLabels.get(calcId).keySet()) |
| 172 |
|
{ |
| 173 |
0 |
final List<String> groupLabel = groupLabels.get(calcId).get(group); |
| 174 |
|
|
| 175 |
0 |
Collections.sort(groupLabel); |
| 176 |
0 |
if (visibleGraphGroups.get(group)) |
| 177 |
|
{ |
| 178 |
0 |
if (!shownTypes.containsKey(calcId)) |
| 179 |
|
{ |
| 180 |
0 |
shownTypes.put(calcId, new ArrayList<List<String>>()); |
| 181 |
|
} |
| 182 |
0 |
if (!shownTypes.get(calcId).contains(groupLabel)) |
| 183 |
|
{ |
| 184 |
0 |
shownTypes.get(calcId).add(groupLabel); |
| 185 |
|
} |
| 186 |
|
} |
| 187 |
|
else |
| 188 |
|
{ |
| 189 |
0 |
if (!hiddenTypes.containsKey(calcId)) |
| 190 |
|
{ |
| 191 |
0 |
hiddenTypes.put(calcId, new ArrayList<List<String>>()); |
| 192 |
|
} |
| 193 |
0 |
if (!hiddenTypes.get(calcId).contains(groupLabel)) |
| 194 |
|
{ |
| 195 |
0 |
hiddenTypes.get(calcId).add(groupLabel); |
| 196 |
|
} |
| 197 |
|
} |
| 198 |
|
} |
| 199 |
|
} |
| 200 |
|
} |
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
@param |
| 207 |
|
|
| 208 |
|
|
| 209 |
|
@param |
| 210 |
|
|
| 211 |
|
|
| 212 |
|
@param |
| 213 |
|
|
| 214 |
|
@param |
| 215 |
|
|
| 216 |
|
|
| |
|
| 0% |
Uncovered Elements: 24 (24) |
Complexity: 13 |
Complexity Density: 0.93 |
|
| 217 |
0 |
public static void getShownHiddenSecondaryStructureProvidersForGroup(... |
| 218 |
|
List<String> shownTypes, List<String> hiddenTypes, |
| 219 |
|
List<AlignmentAnnotation> annotations, |
| 220 |
|
SequenceGroup selectedSequenceGroup) |
| 221 |
|
{ |
| 222 |
|
|
| 223 |
0 |
if (selectedSequenceGroup == null || annotations == null) |
| 224 |
|
{ |
| 225 |
0 |
return; |
| 226 |
|
} |
| 227 |
|
|
| 228 |
|
|
| 229 |
0 |
List<String> ssSourcesForSelectedGroup = selectedSequenceGroup |
| 230 |
|
.getSecondaryStructureSources(); |
| 231 |
|
|
| 232 |
|
|
| 233 |
0 |
if (ssSourcesForSelectedGroup == null |
| 234 |
|
|| ssSourcesForSelectedGroup.isEmpty()) |
| 235 |
|
{ |
| 236 |
0 |
return; |
| 237 |
|
} |
| 238 |
|
|
| 239 |
|
|
| 240 |
0 |
for (AlignmentAnnotation aa : annotations) |
| 241 |
|
{ |
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
0 |
if (aa.annotations == null || aa.groupRef == null |
| 247 |
|
|| selectedSequenceGroup != aa.groupRef |
| 248 |
|
|| !aa.label.startsWith( |
| 249 |
|
Constants.SECONDARY_STRUCTURE_CONSENSUS_LABEL)) |
| 250 |
|
{ |
| 251 |
0 |
continue; |
| 252 |
|
} |
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
0 |
Optional<String> provider = ssSourcesForSelectedGroup.stream() |
| 259 |
|
.filter(aa.label::contains).findFirst() |
| 260 |
|
.map(substring -> aa.label.substring(0, |
| 261 |
|
aa.label.indexOf(substring) + substring.length())); |
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 266 |
0 |
provider.ifPresent(p -> { |
| 267 |
0 |
if (aa.visible && !shownTypes.contains(p)) |
| 268 |
|
{ |
| 269 |
0 |
shownTypes.add(p); |
| 270 |
|
} |
| 271 |
0 |
else if (!aa.visible && !shownTypes.contains(p)) |
| 272 |
|
{ |
| 273 |
0 |
hiddenTypes.add(p); |
| 274 |
|
} |
| 275 |
|
}); |
| 276 |
|
} |
| 277 |
|
} |
| 278 |
|
|
| 279 |
|
|
| 280 |
|
|
| 281 |
|
|
| 282 |
|
|
| 283 |
|
|
| 284 |
|
|
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| 288 |
|
|
| 289 |
|
@see |
| 290 |
|
@param |
| 291 |
|
@return |
| 292 |
|
|
| |
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 4 |
Complexity Density: 0.57 |
|
| 293 |
0 |
public static BitSet getVisibleLineGraphGroups(... |
| 294 |
|
List<AlignmentAnnotation> annotations) |
| 295 |
|
{ |
| 296 |
0 |
BitSet result = new BitSet(); |
| 297 |
0 |
for (AlignmentAnnotation ann : annotations) |
| 298 |
|
{ |
| 299 |
0 |
if (ann.graph == AlignmentAnnotation.LINE_GRAPH && ann.visible) |
| 300 |
|
{ |
| 301 |
0 |
int gg = ann.graphGroup; |
| 302 |
0 |
if (gg > -1) |
| 303 |
|
{ |
| 304 |
0 |
result.set(gg); |
| 305 |
|
} |
| 306 |
|
} |
| 307 |
|
} |
| 308 |
0 |
return result; |
| 309 |
|
} |
| 310 |
|
|
| 311 |
|
|
| 312 |
|
|
| 313 |
|
|
| 314 |
|
|
| 315 |
|
@param |
| 316 |
|
@return |
| 317 |
|
|
| |
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
| 318 |
0 |
public static List<AlignmentAnnotation> asList(AlignmentAnnotation[] anns)... |
| 319 |
|
{ |
| 320 |
|
|
| 321 |
0 |
return (anns == null ? Collections.<AlignmentAnnotation> emptyList() |
| 322 |
|
: Arrays.asList(anns)); |
| 323 |
|
} |
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
|
|
| 333 |
|
@param |
| 334 |
|
|
| 335 |
|
|
| 336 |
|
@param |
| 337 |
|
|
| 338 |
|
@param |
| 339 |
|
|
| 340 |
|
@param |
| 341 |
|
|
| 342 |
|
|
| |
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 7 |
Complexity Density: 0.58 |
|
| 343 |
0 |
public static void replaceAnnotationOnAlignmentWith(... |
| 344 |
|
AlignmentAnnotation newAnnot, String typeName, String calcId, |
| 345 |
|
SequenceI aSeq) |
| 346 |
|
{ |
| 347 |
0 |
if (newAnnot.sequenceRef==null && aSeq==null) |
| 348 |
|
{ |
| 349 |
|
|
| 350 |
0 |
return; |
| 351 |
|
} |
| 352 |
|
|
| 353 |
0 |
SequenceI dsseq = (aSeq!=null) ? aSeq : newAnnot.sequenceRef; |
| 354 |
0 |
while (dsseq.getDatasetSequence() != null) |
| 355 |
|
{ |
| 356 |
0 |
dsseq = dsseq.getDatasetSequence(); |
| 357 |
|
} |
| 358 |
|
|
| 359 |
0 |
List<AlignmentAnnotation> dsan = dsseq.getAlignmentAnnotations(calcId, |
| 360 |
|
typeName); |
| 361 |
0 |
if (dsan != null && dsan.size() > 0) |
| 362 |
|
{ |
| 363 |
0 |
for (AlignmentAnnotation dssan : dsan) |
| 364 |
|
{ |
| 365 |
0 |
dsseq.removeAlignmentAnnotation(dssan); |
| 366 |
|
} |
| 367 |
|
} |
| 368 |
0 |
AlignmentAnnotation dssan = new AlignmentAnnotation(newAnnot); |
| 369 |
0 |
dsseq.addAlignmentAnnotation(dssan); |
| 370 |
0 |
dssan.adjustForAlignment(); |
| 371 |
|
} |
| 372 |
|
|
| 373 |
|
|
| 374 |
|
|
| 375 |
|
|
| 376 |
|
|
| 377 |
|
|
| 378 |
|
@param |
| 379 |
|
@return |
| 380 |
|
|
| |
|
| 0% |
Uncovered Elements: 80 (80) |
Complexity: 29 |
Complexity Density: 0.6 |
|
| 381 |
0 |
public static String extractSSSourceFromAnnotationDescription(... |
| 382 |
|
AlignmentAnnotation aa) |
| 383 |
|
{ |
| 384 |
0 |
if (aa == null || aa.label == null) |
| 385 |
|
{ |
| 386 |
0 |
return null; |
| 387 |
|
} |
| 388 |
|
|
| 389 |
0 |
String label = aa.label; |
| 390 |
|
|
| 391 |
|
|
| 392 |
0 |
if (!Constants.SECONDARY_STRUCTURE_LABELS.containsKey(label)) |
| 393 |
|
{ |
| 394 |
0 |
return null; |
| 395 |
|
} |
| 396 |
|
|
| 397 |
|
|
| 398 |
0 |
String provider = aa.getProperty(Constants.SS_PROVIDER_PROPERTY); |
| 399 |
0 |
if (provider != null) |
| 400 |
|
{ |
| 401 |
|
|
| 402 |
0 |
if( Constants.PDB.equals(aa.getProperty(Constants.SS_PROVIDER_PROPERTY)) |
| 403 |
|
&& aa.getProperty(Constants.PDBID) != null |
| 404 |
|
&& !aa.hasAnnotationDetailsProperty() ) |
| 405 |
|
{ |
| 406 |
0 |
String annotDetails = aa.getProperty(Constants.PDBID); |
| 407 |
0 |
if(aa.getProperty(Constants.CHAINID) != null) |
| 408 |
|
{ |
| 409 |
0 |
annotDetails = annotDetails + ":" + aa.getProperty(Constants.CHAINID); |
| 410 |
|
} |
| 411 |
|
|
| 412 |
0 |
aa.setAnnotationDetailsProperty(annotDetails); |
| 413 |
|
|
| 414 |
|
} |
| 415 |
|
|
| 416 |
0 |
return provider; |
| 417 |
|
} |
| 418 |
|
|
| 419 |
|
|
| 420 |
0 |
if (Constants.SS_ANNOTATION_FROM_JPRED_LABEL.equals(label)) |
| 421 |
|
{ |
| 422 |
0 |
provider = Constants.SECONDARY_STRUCTURE_LABELS.get(label); |
| 423 |
0 |
aa.setProperty(Constants.SS_PROVIDER_PROPERTY, provider); |
| 424 |
0 |
return provider; |
| 425 |
|
} |
| 426 |
|
|
| 427 |
|
|
| 428 |
0 |
if (aa.description != null |
| 429 |
|
&& Constants.SS_ANNOTATION_LABEL.equals(label) |
| 430 |
|
&& Constants.SS_ANNOTATION_LABEL.equals(aa.description)) |
| 431 |
|
{ |
| 432 |
0 |
provider = Constants.SECONDARY_STRUCTURE_LABELS.get(label); |
| 433 |
0 |
aa.setProperty(Constants.SS_PROVIDER_PROPERTY, provider); |
| 434 |
0 |
return provider; |
| 435 |
|
} |
| 436 |
|
|
| 437 |
|
|
| 438 |
0 |
if (aa.sequenceRef == null |
| 439 |
|
|| aa.sequenceRef.getDatasetSequence() == null) |
| 440 |
|
{ |
| 441 |
0 |
return null; |
| 442 |
|
} |
| 443 |
|
|
| 444 |
0 |
Vector<PDBEntry> pdbEntries = aa.sequenceRef.getDatasetSequence() |
| 445 |
|
.getAllPDBEntries(); |
| 446 |
0 |
if (pdbEntries == null || pdbEntries.isEmpty()) |
| 447 |
|
{ |
| 448 |
0 |
return null; |
| 449 |
|
} |
| 450 |
|
|
| 451 |
0 |
for (PDBEntry entry : pdbEntries) |
| 452 |
|
{ |
| 453 |
0 |
if (entry == null || entry.getId() == null) |
| 454 |
|
{ |
| 455 |
0 |
continue; |
| 456 |
|
} |
| 457 |
|
|
| 458 |
0 |
String entryProvider = entry.getProvider(); |
| 459 |
|
|
| 460 |
0 |
if (entryProvider == null) |
| 461 |
|
{ |
| 462 |
|
|
| 463 |
|
|
| 464 |
0 |
entryProvider = Constants.PDB; |
| 465 |
|
} |
| 466 |
|
|
| 467 |
|
|
| 468 |
|
|
| 469 |
0 |
String entryId = entry.getId(); |
| 470 |
0 |
int colonIndex = entryId.indexOf(':'); |
| 471 |
|
|
| 472 |
0 |
if (colonIndex != -1) |
| 473 |
|
{ |
| 474 |
|
|
| 475 |
0 |
entryId = entryId.substring(0, colonIndex); |
| 476 |
|
} |
| 477 |
|
|
| 478 |
|
|
| 479 |
0 |
if (Constants.PDB.equals(entryProvider) && aa.description != null |
| 480 |
|
&& aa.description.toLowerCase().contains( |
| 481 |
|
"secondary structure for " + entryId.toLowerCase())) |
| 482 |
|
{ |
| 483 |
|
|
| 484 |
0 |
aa.setProperty(Constants.SS_PROVIDER_PROPERTY, Constants.PDB); |
| 485 |
|
|
| 486 |
0 |
String annotDetails = aa.getProperty(Constants.PDBID); |
| 487 |
0 |
if (annotDetails != null |
| 488 |
|
&& aa.getProperty(Constants.CHAINID) != null) |
| 489 |
|
{ |
| 490 |
0 |
annotDetails += ":" + aa.getProperty(Constants.CHAINID); |
| 491 |
|
} |
| 492 |
|
|
| 493 |
0 |
if (annotDetails != null) |
| 494 |
|
{ |
| 495 |
0 |
aa.setAnnotationDetailsProperty(annotDetails); |
| 496 |
|
} |
| 497 |
|
|
| 498 |
0 |
return Constants.PDB; |
| 499 |
|
} |
| 500 |
|
|
| 501 |
|
|
| 502 |
0 |
if (!Constants.PDB.equals(entryProvider) |
| 503 |
|
&& aa.description.toLowerCase().contains(entryId.toLowerCase())) |
| 504 |
|
{ |
| 505 |
0 |
aa.setProperty(Constants.SS_PROVIDER_PROPERTY, entryProvider); |
| 506 |
0 |
return entryProvider; |
| 507 |
|
} |
| 508 |
|
|
| 509 |
|
} |
| 510 |
|
|
| 511 |
0 |
return null; |
| 512 |
|
|
| 513 |
|
} |
| 514 |
|
|
| 515 |
|
|
| 516 |
|
|
| 517 |
|
|
| 518 |
|
|
| 519 |
|
@param |
| 520 |
|
|
| 521 |
|
|
| 522 |
|
@param |
| 523 |
|
|
| 524 |
|
@param |
| 525 |
|
|
| 526 |
|
|
| |
|
| 0% |
Uncovered Elements: 17 (17) |
Complexity: 5 |
Complexity Density: 0.45 |
|
| 527 |
0 |
public static void replaceAnnotationOnAlignmentWith(... |
| 528 |
|
AlignmentAnnotation newAnnot, String typeName, String calcId) |
| 529 |
|
{ |
| 530 |
0 |
if (newAnnot.sequenceRef != null) |
| 531 |
|
{ |
| 532 |
0 |
SequenceI dsseq = newAnnot.sequenceRef; |
| 533 |
0 |
while (dsseq.getDatasetSequence() != null) |
| 534 |
|
{ |
| 535 |
0 |
dsseq = dsseq.getDatasetSequence(); |
| 536 |
|
} |
| 537 |
|
|
| 538 |
0 |
List<AlignmentAnnotation> dsan = dsseq.getAlignmentAnnotations(calcId, |
| 539 |
|
typeName); |
| 540 |
0 |
if (dsan != null && dsan.size() > 0) |
| 541 |
|
{ |
| 542 |
0 |
for (AlignmentAnnotation dssan : dsan) |
| 543 |
|
{ |
| 544 |
0 |
dsseq.removeAlignmentAnnotation(dssan); |
| 545 |
|
} |
| 546 |
|
} |
| 547 |
0 |
AlignmentAnnotation dssan = new AlignmentAnnotation(newAnnot); |
| 548 |
0 |
dsseq.addAlignmentAnnotation(dssan); |
| 549 |
0 |
dssan.adjustForAlignment(); |
| 550 |
|
} |
| 551 |
|
} |
| 552 |
|
} |