Complex classes like User often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use User, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 38 | class User implements AdvancedUserInterface |
||
| 39 | { |
||
| 40 | use TimestampableEntity; |
||
| 41 | use UserBlameableTrait; |
||
| 42 | |||
| 43 | const GENDER_NEUTRAL = 0; |
||
| 44 | const GENDER_MALE = 1; |
||
| 45 | const GENDER_FEMALE = 2; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @ORM\Id |
||
| 49 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 50 | * @ORM\Column(type="integer") |
||
| 51 | * @var int |
||
| 52 | */ |
||
| 53 | private $id; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @ORM\Column(type="string", unique=true, nullable=true) |
||
| 57 | * @Assert\Regex(pattern="/[@ ]{1,}/", match=false, message="login_username.invalid_chars", htmlPattern=false) |
||
| 58 | * @var string |
||
| 59 | */ |
||
| 60 | private $loginUsername; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @ORM\Column(type="string", unique=true, nullable=true) |
||
| 64 | * @var string |
||
| 65 | */ |
||
| 66 | private $password; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @var \DateTime |
||
| 70 | * @Gedmo\Timestampable(on="change", field="password") |
||
| 71 | * @ORM\Column(type="datetime", nullable=true) |
||
| 72 | */ |
||
| 73 | protected $passwordChangedAt; |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @ORM\Column(type="string") |
||
| 77 | * @Assert\NotBlank |
||
| 78 | * @var string |
||
| 79 | */ |
||
| 80 | private $firstName; |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @ORM\Column(type="string") |
||
| 84 | * @Assert\NotBlank |
||
| 85 | * @var string |
||
| 86 | */ |
||
| 87 | private $lastName; |
||
| 88 | |||
| 89 | /** |
||
| 90 | * @ORM\Column(type="boolean") |
||
| 91 | * @var bool |
||
| 92 | */ |
||
| 93 | private $enabled; |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @ORM\Column(type="boolean") |
||
| 97 | * @var bool |
||
| 98 | */ |
||
| 99 | private $globalAdministrator; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * @ORM\Column(type="string", unique=true, nullable=true) |
||
| 103 | * @Assert\Email |
||
| 104 | * @var string |
||
| 105 | */ |
||
| 106 | private $emailAddress; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @ORM\Column(type="string", nullable=true) |
||
| 110 | * @var string |
||
| 111 | */ |
||
| 112 | private $internalCode; |
||
| 113 | |||
| 114 | /** |
||
| 115 | * @ORM\Column(type="integer") |
||
| 116 | * @var int |
||
| 117 | */ |
||
| 118 | private $gender; |
||
| 119 | |||
| 120 | /** |
||
| 121 | * @ORM\Column(type="string", nullable=true) |
||
| 122 | * @var string |
||
| 123 | */ |
||
| 124 | private $token; |
||
| 125 | |||
| 126 | /** |
||
| 127 | * @ORM\Column(type="string", nullable=true) |
||
| 128 | * @var string |
||
| 129 | */ |
||
| 130 | private $tokenType; |
||
| 131 | |||
| 132 | /** |
||
| 133 | * @ORM\Column(type="datetime", nullable=true) |
||
| 134 | * @var \DateTime |
||
| 135 | */ |
||
| 136 | private $tokenExpiration; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * @ORM\Column(type="datetime", nullable=true) |
||
| 140 | * @var \DateTime |
||
| 141 | */ |
||
| 142 | private $lastAccess; |
||
| 143 | |||
| 144 | /** |
||
| 145 | * @ORM\Column(type="datetime", nullable=true) |
||
| 146 | * @var \DateTime |
||
| 147 | */ |
||
| 148 | private $blockedUntil; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * @ORM\OneToMany(targetEntity="Membership", mappedBy="user") |
||
| 152 | * @var Collection |
||
| 153 | */ |
||
| 154 | private $memberships; |
||
| 155 | |||
| 156 | /** |
||
| 157 | * @ORM\ManyToMany(targetEntity="Organization", mappedBy="administrators") |
||
| 158 | * @var Collection |
||
| 159 | */ |
||
| 160 | private $managedOrganizations; |
||
| 161 | |||
| 162 | /** |
||
| 163 | * @ORM\ManyToOne(targetEntity="Organization") |
||
| 164 | * @ORM\JoinColumn(nullable=true) |
||
| 165 | * @var Organization|null |
||
| 166 | */ |
||
| 167 | protected $defaultOrganization; |
||
| 168 | |||
| 169 | /** |
||
| 170 | * @ORM\OneToMany(targetEntity="Role", mappedBy="user") |
||
| 171 | * @var Collection |
||
| 172 | */ |
||
| 173 | private $assignedRoles; |
||
| 174 | |||
| 175 | /** |
||
| 176 | * @ORM\Column(type="boolean") |
||
| 177 | * @var bool |
||
| 178 | */ |
||
| 179 | private $externalCheck; |
||
| 180 | |||
| 181 | /** |
||
| 182 | * @ORM\Column(type="boolean") |
||
| 183 | * @var bool |
||
| 184 | */ |
||
| 185 | protected $allowExternalCheck; |
||
| 186 | |||
| 187 | /** |
||
| 188 | * Convertir usuario en cadena |
||
| 189 | * |
||
| 190 | * @return string |
||
| 191 | */ |
||
| 192 | public function __toString() |
||
| 196 | |||
| 197 | /** |
||
| 198 | * Convertir usuario en cadena |
||
| 199 | * |
||
| 200 | * @return string |
||
| 201 | */ |
||
| 202 | public function getFullName() |
||
| 203 | { |
||
| 204 | return (string) $this.' ('.$this->getUsernameAndEmailAddress().')'; |
||
| 205 | } |
||
| 206 | |||
| 207 | /** |
||
| 208 | * Constructor |
||
| 209 | */ |
||
| 210 | public function __construct() |
||
| 211 | { |
||
| 212 | $this->memberships = new \Doctrine\Common\Collections\ArrayCollection(); |
||
| 213 | $this->managedOrganizations = new \Doctrine\Common\Collections\ArrayCollection(); |
||
| 214 | $this->assignedRoles = new \Doctrine\Common\Collections\ArrayCollection(); |
||
| 215 | $this->externalCheck = false; |
||
| 216 | $this->allowExternalCheck = false; |
||
| 217 | } |
||
| 218 | |||
| 219 | /** |
||
| 220 | * @return string |
||
| 221 | */ |
||
| 222 | public function getUsernameAndEmailAddress() |
||
| 226 | /** |
||
| 227 | * Get id |
||
| 228 | * |
||
| 229 | * @return integer |
||
| 230 | */ |
||
| 231 | public function getId() |
||
| 232 | { |
||
| 233 | return $this->id; |
||
| 234 | } |
||
| 235 | |||
| 236 | /** |
||
| 237 | * Set userName |
||
| 238 | * |
||
| 239 | * @param string $loginUsername |
||
| 240 | * |
||
| 241 | * @return User |
||
| 242 | */ |
||
| 243 | public function setLoginUsername($loginUsername) |
||
| 249 | |||
| 250 | /** |
||
| 251 | * Get userName |
||
| 252 | * |
||
| 253 | * @return string |
||
| 254 | */ |
||
| 255 | public function getLoginUsername() |
||
| 259 | |||
| 260 | /** |
||
| 261 | * Set password |
||
| 262 | * |
||
| 263 | * @param string $password |
||
| 264 | * |
||
| 265 | * @return User |
||
| 266 | */ |
||
| 267 | public function setPassword($password) |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Get password |
||
| 276 | * |
||
| 277 | * @return string |
||
| 278 | */ |
||
| 279 | public function getPassword() |
||
| 283 | |||
| 284 | /** |
||
| 285 | * Set firstName |
||
| 286 | * |
||
| 287 | * @param string $firstName |
||
| 288 | * |
||
| 289 | * @return User |
||
| 290 | */ |
||
| 291 | public function setFirstName($firstName) |
||
| 292 | { |
||
| 293 | $this->firstName = $firstName; |
||
| 294 | |||
| 295 | return $this; |
||
| 296 | } |
||
| 297 | |||
| 298 | /** |
||
| 299 | * Get firstName |
||
| 300 | * |
||
| 301 | * @return string |
||
| 302 | */ |
||
| 303 | public function getFirstName() |
||
| 304 | { |
||
| 305 | return $this->firstName; |
||
| 306 | } |
||
| 307 | |||
| 308 | /** |
||
| 309 | * Set lastName |
||
| 310 | * |
||
| 311 | * @param string $lastName |
||
| 312 | * |
||
| 313 | * @return User |
||
| 314 | */ |
||
| 315 | public function setLastName($lastName) |
||
| 316 | { |
||
| 317 | $this->lastName = $lastName; |
||
| 318 | |||
| 319 | return $this; |
||
| 320 | } |
||
| 321 | |||
| 322 | /** |
||
| 323 | * Get lastName |
||
| 324 | * |
||
| 325 | * @return string |
||
| 326 | */ |
||
| 327 | public function getLastName() |
||
| 328 | { |
||
| 329 | return $this->lastName; |
||
| 330 | } |
||
| 331 | |||
| 332 | /** |
||
| 333 | * Set enabled |
||
| 334 | * |
||
| 335 | * @param boolean $enabled |
||
| 336 | * |
||
| 337 | * @return User |
||
| 338 | */ |
||
| 339 | public function setEnabled($enabled) |
||
| 340 | { |
||
| 341 | $this->enabled = $enabled; |
||
| 342 | |||
| 343 | return $this; |
||
| 344 | } |
||
| 345 | |||
| 346 | |||
| 347 | /** |
||
| 348 | * Set globalAdmin |
||
| 349 | * |
||
| 350 | * @param boolean $globalAdministrator |
||
| 351 | * |
||
| 352 | * @return User |
||
| 353 | */ |
||
| 354 | public function setGlobalAdministrator($globalAdministrator) |
||
| 360 | |||
| 361 | /** |
||
| 362 | * Get globalAdmin |
||
| 363 | * |
||
| 364 | * @return boolean |
||
| 365 | */ |
||
| 366 | public function isGlobalAdministrator() |
||
| 370 | |||
| 371 | /** |
||
| 372 | * Get internal code |
||
| 373 | * |
||
| 374 | * @return string |
||
| 375 | */ |
||
| 376 | public function getInternalCode() |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Set internal code |
||
| 383 | * |
||
| 384 | * @param string $internalCode |
||
| 385 | * @return User |
||
| 386 | */ |
||
| 387 | public function setInternalCode($internalCode) |
||
| 392 | |||
| 393 | /** |
||
| 394 | * Set emailAddress |
||
| 395 | * |
||
| 396 | * @param string $emailAddress |
||
| 397 | * |
||
| 398 | * @return User |
||
| 399 | */ |
||
| 400 | public function setEmailAddress($emailAddress) |
||
| 401 | { |
||
| 402 | $this->emailAddress = $emailAddress; |
||
| 403 | |||
| 404 | return $this; |
||
| 405 | } |
||
| 406 | |||
| 407 | /** |
||
| 408 | * Get emailAddress |
||
| 409 | * |
||
| 410 | * @return string |
||
| 411 | */ |
||
| 412 | public function getEmailAddress() |
||
| 413 | { |
||
| 414 | return $this->emailAddress; |
||
| 415 | } |
||
| 416 | |||
| 417 | /** |
||
| 418 | * Set gender |
||
| 419 | * |
||
| 420 | * @param integer $gender |
||
| 421 | * |
||
| 422 | * @return User |
||
| 423 | */ |
||
| 424 | public function setGender($gender) |
||
| 425 | { |
||
| 426 | $this->gender = $gender; |
||
| 427 | |||
| 428 | return $this; |
||
| 429 | } |
||
| 430 | |||
| 431 | /** |
||
| 432 | * Get gender |
||
| 433 | * |
||
| 434 | * @return integer |
||
| 435 | */ |
||
| 436 | public function getGender() |
||
| 437 | { |
||
| 438 | return $this->gender; |
||
| 439 | } |
||
| 440 | |||
| 441 | /** |
||
| 442 | * Set token |
||
| 443 | * |
||
| 444 | * @param string $token |
||
| 445 | * |
||
| 446 | * @return User |
||
| 447 | */ |
||
| 448 | public function setToken($token) |
||
| 454 | |||
| 455 | /** |
||
| 456 | * Get token |
||
| 457 | * |
||
| 458 | * @return string |
||
| 459 | */ |
||
| 460 | public function getToken() |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Set tokenType |
||
| 467 | * |
||
| 468 | * @param string $tokenType |
||
| 469 | * |
||
| 470 | * @return User |
||
| 471 | */ |
||
| 472 | public function setTokenType($tokenType) |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Get tokenType |
||
| 481 | * |
||
| 482 | * @return string |
||
| 483 | */ |
||
| 484 | public function getTokenType() |
||
| 488 | |||
| 489 | /** |
||
| 490 | * Set tokenExpiration |
||
| 491 | * |
||
| 492 | * @param \DateTime $tokenExpiration |
||
| 493 | * |
||
| 494 | * @return User |
||
| 495 | */ |
||
| 496 | public function setTokenExpiration($tokenExpiration) |
||
| 502 | |||
| 503 | /** |
||
| 504 | * Get tokenExpiration |
||
| 505 | * |
||
| 506 | * @return \DateTime |
||
| 507 | */ |
||
| 508 | public function getTokenExpiration() |
||
| 512 | |||
| 513 | /** |
||
| 514 | * Set lastAccess |
||
| 515 | * |
||
| 516 | * @param \DateTime $lastAccess |
||
| 517 | * |
||
| 518 | * @return User |
||
| 519 | */ |
||
| 520 | public function setLastAccess($lastAccess) |
||
| 526 | |||
| 527 | /** |
||
| 528 | * Get lastAccess |
||
| 529 | * |
||
| 530 | * @return \DateTime |
||
| 531 | */ |
||
| 532 | public function getLastAccess() |
||
| 536 | |||
| 537 | /** |
||
| 538 | * Set blockedUntil |
||
| 539 | * |
||
| 540 | * @param \DateTime $blockedUntil |
||
| 541 | * |
||
| 542 | * @return User |
||
| 543 | */ |
||
| 544 | public function setBlockedUntil($blockedUntil) |
||
| 550 | |||
| 551 | /** |
||
| 552 | * Get blockedUntil |
||
| 553 | * |
||
| 554 | * @return \DateTime |
||
| 555 | */ |
||
| 556 | public function getBlockedUntil() |
||
| 560 | |||
| 561 | /** |
||
| 562 | * Add membership |
||
| 563 | * |
||
| 564 | * @param Membership $membership |
||
| 565 | * |
||
| 566 | * @return User |
||
| 567 | */ |
||
| 568 | public function addMembership(Membership $membership) |
||
| 569 | { |
||
| 570 | $this->memberships[] = $membership; |
||
| 571 | |||
| 572 | return $this; |
||
| 573 | } |
||
| 574 | |||
| 575 | /** |
||
| 576 | * Remove membership |
||
| 577 | * |
||
| 578 | * @param Membership $membership |
||
| 579 | */ |
||
| 580 | public function removeMembership(Membership $membership) |
||
| 584 | |||
| 585 | /** |
||
| 586 | * Get memberships |
||
| 587 | * |
||
| 588 | * @return Collection |
||
| 589 | */ |
||
| 590 | public function getMemberships() |
||
| 594 | |||
| 595 | /** |
||
| 596 | * Set defaultOrganization |
||
| 597 | * |
||
| 598 | * @param Organization $defaultOrganization |
||
| 599 | * |
||
| 600 | * @return User |
||
| 601 | */ |
||
| 602 | public function setDefaultOrganization(Organization $defaultOrganization = null) |
||
| 608 | |||
| 609 | /** |
||
| 610 | * Get defaultOrganization |
||
| 611 | * |
||
| 612 | * @return Organization|null |
||
| 613 | */ |
||
| 614 | public function getDefaultOrganization() |
||
| 618 | |||
| 619 | /** |
||
| 620 | * @Assert\Callback |
||
| 621 | */ |
||
| 622 | public function validate(ExecutionContextInterface $context) |
||
| 634 | |||
| 635 | /** |
||
| 636 | * Returns the username used to authenticate the user. |
||
| 637 | * |
||
| 638 | * @return string The username |
||
| 639 | */ |
||
| 640 | public function getUsername() |
||
| 644 | |||
| 645 | /** |
||
| 646 | * Checks whether the user's account has expired. |
||
| 647 | * |
||
| 648 | * Internally, if this method returns false, the authentication system |
||
| 649 | * will throw an AccountExpiredException and prevent login. |
||
| 650 | * |
||
| 651 | * @return bool true if the user's account is non expired, false otherwise |
||
| 652 | * |
||
| 653 | * @see AccountExpiredException |
||
| 654 | */ |
||
| 655 | public function isAccountNonExpired() |
||
| 659 | |||
| 660 | /** |
||
| 661 | * Checks whether the user is locked. |
||
| 662 | * |
||
| 663 | * Internally, if this method returns false, the authentication system |
||
| 664 | * will throw a LockedException and prevent login. |
||
| 665 | * |
||
| 666 | * @return bool true if the user is not locked, false otherwise |
||
| 667 | * |
||
| 668 | * @see LockedException |
||
| 669 | */ |
||
| 670 | public function isAccountNonLocked() |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Checks whether the user's credentials (password) has expired. |
||
| 677 | * |
||
| 678 | * Internally, if this method returns false, the authentication system |
||
| 679 | * will throw a CredentialsExpiredException and prevent login. |
||
| 680 | * |
||
| 681 | * @return bool true if the user's credentials are non expired, false otherwise |
||
| 682 | * |
||
| 683 | * @see CredentialsExpiredException |
||
| 684 | */ |
||
| 685 | public function isCredentialsNonExpired() |
||
| 689 | |||
| 690 | /** |
||
| 691 | * Checks whether the user is enabled. |
||
| 692 | * |
||
| 693 | * Internally, if this method returns false, the authentication system |
||
| 694 | * will throw a DisabledException and prevent login. |
||
| 695 | * |
||
| 696 | * @return bool true if the user is enabled, false otherwise |
||
| 697 | * |
||
| 698 | * @see DisabledException |
||
| 699 | */ |
||
| 700 | public function isEnabled() |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Returns the roles granted to the user. |
||
| 707 | * |
||
| 708 | * <code> |
||
| 709 | * public function getRoles() |
||
| 710 | * { |
||
| 711 | * return array('ROLE_USER'); |
||
| 712 | * } |
||
| 713 | * </code> |
||
| 714 | * |
||
| 715 | * Alternatively, the roles might be stored on a ``roles`` property, |
||
| 716 | * and populated in any number of different ways when the user object |
||
| 717 | * is created. |
||
| 718 | * |
||
| 719 | * @return string[] The user roles |
||
| 720 | */ |
||
| 721 | public function getRoles() |
||
| 729 | |||
| 730 | /** |
||
| 731 | * Returns the salt that was originally used to encode the password. |
||
| 732 | * |
||
| 733 | * This can return null if the password was not encoded using a salt. |
||
| 734 | * |
||
| 735 | * @return string|null The salt |
||
| 736 | */ |
||
| 737 | public function getSalt() |
||
| 741 | |||
| 742 | /** |
||
| 743 | * Removes sensitive data from the user. |
||
| 744 | * |
||
| 745 | * This is important if, at any given point, sensitive information like |
||
| 746 | * the plain-text password is stored on this object. |
||
| 747 | */ |
||
| 748 | public function eraseCredentials() |
||
| 751 | |||
| 752 | /** @see \Serializable::serialize() */ |
||
| 753 | public function serialize() |
||
| 754 | { |
||
| 755 | return serialize(array( |
||
| 756 | $this->id, |
||
| 757 | $this->loginUsername, |
||
| 758 | $this->emailAddress, |
||
| 759 | $this->password, |
||
| 760 | $this->enabled |
||
| 761 | )); |
||
| 762 | } |
||
| 763 | |||
| 764 | /** @see \Serializable::unserialize() */ |
||
| 765 | public function unserialize($serialized) |
||
| 766 | { |
||
| 767 | list ( |
||
| 768 | $this->id, |
||
| 769 | $this->loginUsername, |
||
| 770 | $this->emailAddress, |
||
| 771 | $this->password, |
||
| 772 | $this->enabled |
||
| 773 | ) = unserialize($serialized); |
||
| 774 | } |
||
| 775 | |||
| 776 | /** |
||
| 777 | * Add managedOrganization |
||
| 778 | * |
||
| 779 | * @param Organization $managedOrganization |
||
| 780 | * |
||
| 781 | * @return User |
||
| 782 | */ |
||
| 783 | public function addManagedOrganization(Organization $managedOrganization) |
||
| 789 | |||
| 790 | /** |
||
| 791 | * Remove managedOrganization |
||
| 792 | * |
||
| 793 | * @param Organization $managedOrganization |
||
| 794 | */ |
||
| 795 | public function removeManagedOrganization(Organization $managedOrganization) |
||
| 799 | |||
| 800 | /** |
||
| 801 | * Get managedOrganizations |
||
| 802 | * |
||
| 803 | * @return Collection |
||
| 804 | */ |
||
| 805 | public function getManagedOrganizations() |
||
| 809 | |||
| 810 | /** |
||
| 811 | * Add assigned role |
||
| 812 | * |
||
| 813 | * @param Role $assignedRole |
||
| 814 | * |
||
| 815 | * @return User |
||
| 816 | */ |
||
| 817 | public function addAssignedRole(Role $assignedRole) |
||
| 825 | |||
| 826 | /** |
||
| 827 | * Remove assigned role |
||
| 828 | * |
||
| 829 | * @param Element $assignedRole |
||
| 830 | */ |
||
| 831 | public function removeRole(Role $assignedRole) |
||
| 832 | { |
||
| 833 | if ($this->assignedRoles->contains($assignedRole)) { |
||
| 834 | $this->assignedRoles->removeElement($assignedRole); |
||
| 835 | } |
||
| 836 | } |
||
| 837 | |||
| 838 | /** |
||
| 839 | * Get assigned roles |
||
| 840 | * |
||
| 841 | * @return Collection |
||
| 842 | */ |
||
| 843 | public function getAssignedRoles() |
||
| 847 | |||
| 848 | /** |
||
| 849 | * Set externalCheck |
||
| 850 | * |
||
| 851 | * @param boolean $externalCheck |
||
| 852 | * |
||
| 853 | * @return User |
||
| 854 | */ |
||
| 855 | public function setExternalCheck($externalCheck) |
||
| 861 | |||
| 862 | /** |
||
| 863 | * Get externalCheck |
||
| 864 | * |
||
| 865 | * @return boolean |
||
| 866 | */ |
||
| 867 | public function getExternalCheck() |
||
| 871 | |||
| 872 | /** |
||
| 873 | * Set allowExternalCheck |
||
| 874 | * |
||
| 875 | * @param boolean $allowExternalCheck |
||
| 876 | * |
||
| 877 | * @return User |
||
| 878 | */ |
||
| 879 | public function setAllowExternalCheck($allowExternalCheck) |
||
| 889 | |||
| 890 | /** |
||
| 891 | * Get allowExternalCheck |
||
| 892 | * |
||
| 893 | * @return boolean |
||
| 894 | */ |
||
| 895 | public function getAllowExternalCheck() |
||
| 899 | } |
||
| 900 |