ETH Price: $2,963.95 (+1.12%)
Gas: 1 Gwei

Token

OgreTown (OgreTown)
 

Overview

Max Total Supply

6,969 OgreTown

Holders

1,679

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 OgreTown
0xf1572848554c1b7984220d34ea4d86186119cdc2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OgreTown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : OgreTown.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract OgreTown is ERC721A, Ownable, ReentrancyGuard {

    string public baseURI;  
    uint public maxPerTx = 3; 
    uint public maxPerWallet = 3;
    uint public freeMint = 3;
    uint public maxSupply = 6969;
    bool public mintEnabled;
    mapping (address => uint256) public addressMint;
    constructor() ERC721A("OgreTown", "OgreTown",10,6969){}

    function mint(uint256 amount) external payable
    {
        require(mintEnabled, "Minting Pause");
        require(addressMint[msg.sender] + amount <= freeMint,"Limit");
        require(totalSupply() + amount <= maxSupply,"Soldout");
        require(numberMinted(msg.sender) + amount <= maxPerWallet,"Max Per Wallet");
        require(amount <= maxPerTx, "Limit Per Transaction");
        _safeMint(msg.sender, amount);
    }

    function airdrop(address to ,uint256 amount) external onlyOwner
    {
        _safeMint(to, amount);
    }
    function ownerBatchMint(uint256 amount) external onlyOwner
    {
        require(totalSupply() + amount <= maxSupply,"too many!");
        _safeMint(msg.sender, amount);
    }

    function toggleMinting() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setFreeMint(uint256 freeMint_) external onlyOwner {
        freeMint = freeMint_;
    }

    function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

    function setmaxSupply(uint256 maxSupply_) external onlyOwner {
        maxSupply = maxSupply_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMint_","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556003600b556003600c556003600d55611b39600e553480156200002f57600080fd5b506040518060400160405280600881526020017f4f677265546f776e0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4f677265546f776e000000000000000000000000000000000000000000000000815250600a611b3960008111620000e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000de906200038f565b60405180910390fd5b600082116200012d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000124906200036d565b60405180910390fd5b8360019080519060200190620001459291906200026f565b5082600290805190602001906200015e9291906200026f565b508160a081815250508060808181525050505050506200019362000187620001a160201b60201c565b620001a960201b60201c565b6001600981905550620004c5565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d90620003c2565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b60006200032e602783620003b1565b91506200033b8262000427565b604082019050919050565b600062000355602e83620003b1565b9150620003628262000476565b604082019050919050565b6000602082019050818103600083015262000388816200031f565b9050919050565b60006020820190508181036000830152620003aa8162000346565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003db57607f821691505b60208210811415620003f257620003f1620003f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516151da62000500600039600081816129750152818161299e01526131480152600081816126fd015261273101526151da6000f3fe60806040526004361061023b5760003560e01c80637294e1ef1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e68114610860578063e268e4d31461089d578063e985e9c5146108c6578063f2fde38b14610903578063f968adbe1461092c5761023b565b8063c6f6f21614610779578063c87b56dd146107a2578063d1239730146107df578063d5abeb011461080a578063d7224ba0146108355761023b565b80639231ab2a116100f25780639231ab2a146106a357806395d89b41146106e0578063a0712d681461070b578063a22cb46514610727578063b88d4fde146107505761023b565b80637294e1ef146105d25780637d55094d1461060f5780638ba4cc3c146106265780638da5cb5b1461064f5780638db89f071461067a5761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146104ed5780636c0360eb1461052a57806370a082311461055557806370e0936914610592578063715018a6146105bb5761023b565b806342842e0e14610408578063453c2310146104315780634f6ccce71461045c57806355f804b3146104995780635b70ea9f146104c25761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b45780633ccfd60b146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613958565b610957565b6040516102749190614049565b60405180910390f35b34801561028957600080fd5b50610292610aa1565b60405161029f9190614064565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906139ff565b610b33565b6040516102dc9190613fe2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613918565b610bb8565b005b34801561031a57600080fd5b50610323610cd1565b6040516103309190614481565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906139ff565b610cda565b005b34801561036e57600080fd5b5061038960048036038101906103849190613802565b610d60565b005b34801561039757600080fd5b506103b260048036038101906103ad91906139ff565b610d70565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613918565b610e4e565b6040516103e89190614481565b60405180910390f35b3480156103fd57600080fd5b5061040661104c565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613802565b6111cd565b005b34801561043d57600080fd5b506104466111ed565b6040516104539190614481565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906139ff565b6111f3565b6040516104909190614481565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906139b2565b611246565b005b3480156104ce57600080fd5b506104d76112d8565b6040516104e49190614481565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906139ff565b6112de565b6040516105219190613fe2565b60405180910390f35b34801561053657600080fd5b5061053f6112f4565b60405161054c9190614064565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190613795565b611382565b6040516105899190614481565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b491906139ff565b61146b565b005b3480156105c757600080fd5b506105d06114f1565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613795565b611579565b6040516106069190614481565b60405180910390f35b34801561061b57600080fd5b50610624611591565b005b34801561063257600080fd5b5061064d60048036038101906106489190613918565b611639565b005b34801561065b57600080fd5b506106646116c3565b6040516106719190613fe2565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c91906139ff565b6116ed565b005b3480156106af57600080fd5b506106ca60048036038101906106c591906139ff565b6117cd565b6040516106d79190614466565b60405180910390f35b3480156106ec57600080fd5b506106f56117e5565b6040516107029190614064565b60405180910390f35b610725600480360381019061072091906139ff565b611877565b005b34801561073357600080fd5b5061074e600480360381019061074991906138d8565b611a56565b005b34801561075c57600080fd5b5061077760048036038101906107729190613855565b611bd7565b005b34801561078557600080fd5b506107a0600480360381019061079b91906139ff565b611c33565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906139ff565b611cb9565b6040516107d69190614064565b60405180910390f35b3480156107eb57600080fd5b506107f4611d60565b6040516108019190614049565b60405180910390f35b34801561081657600080fd5b5061081f611d73565b60405161082c9190614481565b60405180910390f35b34801561084157600080fd5b5061084a611d79565b6040516108579190614481565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613795565b611d7f565b6040516108949190614481565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf91906139ff565b611d91565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906137c2565b611e17565b6040516108fa9190614049565b60405180910390f35b34801561090f57600080fd5b5061092a60048036038101906109259190613795565b611eab565b005b34801561093857600080fd5b50610941611fa3565b60405161094e9190614481565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9a5750610a9982611fa9565b5b9050919050565b606060018054610ab090614785565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90614785565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b3e82612013565b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490614426565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc3826112de565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c53612020565b73ffffffffffffffffffffffffffffffffffffffff161480610c825750610c8181610c7c612020565b611e17565b5b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906141e6565b60405180910390fd5b610ccc838383612028565b505050565b60008054905090565b610ce2612020565b73ffffffffffffffffffffffffffffffffffffffff16610d006116c3565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90614266565b60405180910390fd5b80600e8190555050565b610d6b8383836120da565b505050565b610d78612020565b73ffffffffffffffffffffffffffffffffffffffff16610d966116c3565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390614266565b60405180910390fd5b60026009541415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906143e6565b60405180910390fd5b6002600981905550610e4381612693565b600160098190555050565b6000610e5983611382565b8210610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614086565b60405180910390fd5b6000610ea4610cd1565b905060008060005b8381101561100a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f9e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff65786841415610fe7578195505050505050611046565b8380610ff2906147e8565b9450505b508080611002906147e8565b915050610eac565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906143a6565b60405180910390fd5b92915050565b611054612020565b73ffffffffffffffffffffffffffffffffffffffff166110726116c3565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90614266565b60405180910390fd5b6002600954141561110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906143e6565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161113c90613fcd565b60006040518083038185875af1925050503d8060008114611179576040519150601f19603f3d011682016040523d82523d6000602084013e61117e565b606091505b50509050806111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614306565b60405180910390fd5b506001600981905550565b6111e883838360405180602001604052806000815250611bd7565b505050565b600c5481565b60006111fd610cd1565b821061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590614126565b60405180910390fd5b819050919050565b61124e612020565b73ffffffffffffffffffffffffffffffffffffffff1661126c6116c3565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614266565b60405180910390fd5b8181600a91906112d3929190613589565b505050565b600d5481565b60006112e982612921565b600001519050919050565b600a805461130190614785565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90614785565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614226565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611473612020565b73ffffffffffffffffffffffffffffffffffffffff166114916116c3565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614266565b60405180910390fd5b80600d8190555050565b6114f9612020565b73ffffffffffffffffffffffffffffffffffffffff166115176116c3565b73ffffffffffffffffffffffffffffffffffffffff161461156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490614266565b60405180910390fd5b6115776000612b24565b565b60106020528060005260406000206000915090505481565b611599612020565b73ffffffffffffffffffffffffffffffffffffffff166115b76116c3565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614266565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611641612020565b73ffffffffffffffffffffffffffffffffffffffff1661165f6116c3565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614266565b60405180910390fd5b6116bf8282612bea565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f5612020565b73ffffffffffffffffffffffffffffffffffffffff166117136116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614266565b60405180910390fd5b600e5481611775610cd1565b61177f9190614586565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906141a6565b60405180910390fd5b6117ca3382612bea565b50565b6117d561360f565b6117de82612921565b9050919050565b6060600280546117f490614785565b80601f016020809104026020016040519081016040528092919081815260200182805461182090614785565b801561186d5780601f106118425761010080835404028352916020019161186d565b820191906000526020600020905b81548152906001019060200180831161185057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff166118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614106565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119149190614586565b1115611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614386565b60405180910390fd5b600e5481611961610cd1565b61196b9190614586565b11156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a3906141c6565b60405180910390fd5b600c54816119b933611d7f565b6119c39190614586565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614186565b60405180910390fd5b600b54811115611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906140a6565b60405180910390fd5b611a533382612bea565b50565b611a5e612020565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906142a6565b60405180910390fd5b8060066000611ad9612020565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b86612020565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bcb9190614049565b60405180910390a35050565b611be28484846120da565b611bee84848484612c08565b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614326565b60405180910390fd5b50505050565b611c3b612020565b73ffffffffffffffffffffffffffffffffffffffff16611c596116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690614266565b60405180910390fd5b80600b8190555050565b6060611cc482612013565b611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614286565b60405180910390fd5b6000611d0d612d9f565b90506000815111611d2d5760405180602001604052806000815250611d58565b80611d3784612e31565b604051602001611d48929190613fa9565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b60075481565b6000611d8a82612f92565b9050919050565b611d99612020565b73ffffffffffffffffffffffffffffffffffffffff16611db76116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614266565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb3612020565b73ffffffffffffffffffffffffffffffffffffffff16611ed16116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906140c6565b60405180910390fd5b611fa081612b24565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e582612921565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210c612020565b73ffffffffffffffffffffffffffffffffffffffff1614806121685750612131612020565b73ffffffffffffffffffffffffffffffffffffffff1661215084610b33565b73ffffffffffffffffffffffffffffffffffffffff16145b806121845750612183826000015161217e612020565b611e17565b5b9050806121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd906142c6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f90614146565b60405180910390fd5b6122b5858585600161307b565b6122c56000848460000151612028565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612333919061460d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123d79190614540565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124dd9190614586565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126235761255381612013565b15612622576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461268b8686866001613081565b505050505050565b60006007549050600082116126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490614206565b60405180910390fd5b6000600183836126ed9190614586565b6126f79190614641565b905060017f00000000000000000000000000000000000000000000000000000000000000006127269190614641565b81111561275d5760017f000000000000000000000000000000000000000000000000000000000000000061275a9190614641565b90505b61276681612013565b6127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906143c6565b60405180910390fd5b60008290505b81811161290857600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f557600061282882612921565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612900906147e8565b9150506127ab565b506001816129169190614586565b600781905550505050565b61292961360f565b61293282612013565b612971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612968906140e6565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129d55760017f0000000000000000000000000000000000000000000000000000000000000000846129c89190614641565b6129d29190614586565b90505b60008390505b818110612ae3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612acf57809350505050612b1f565b508080612adb9061475b565b9150506129db565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614406565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c04828260405180602001604052806000815250613087565b5050565b6000612c298473ffffffffffffffffffffffffffffffffffffffff16613566565b15612d92578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c52612020565b8786866040518563ffffffff1660e01b8152600401612c749493929190613ffd565b602060405180830381600087803b158015612c8e57600080fd5b505af1925050508015612cbf57506040513d601f19601f82011682018060405250810190612cbc9190613985565b60015b612d42573d8060008114612cef576040519150601f19603f3d011682016040523d82523d6000602084013e612cf4565b606091505b50600081511415612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190614326565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d97565b600190505b949350505050565b6060600a8054612dae90614785565b80601f0160208091040260200160405190810160405280929190818152602001828054612dda90614785565b8015612e275780601f10612dfc57610100808354040283529160200191612e27565b820191906000526020600020905b815481529060010190602001808311612e0a57829003601f168201915b5050505050905090565b60606000821415612e79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f8d565b600082905060005b60008214612eab578080612e94906147e8565b915050600a82612ea491906145dc565b9150612e81565b60008167ffffffffffffffff811115612ec757612ec661491e565b5b6040519080825280601f01601f191660200182016040528015612ef95781602001600182028036833780820191505090505b5090505b60008514612f8657600182612f129190614641565b9150600a85612f219190614831565b6030612f2d9190614586565b60f81b818381518110612f4357612f426148ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f7f91906145dc565b9450612efd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90614166565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f490614366565b60405180910390fd5b61310681612013565b15613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313d90614346565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156131a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a090614446565b60405180910390fd5b6131b6600085838661307b565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132b39190614540565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132da9190614540565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561354957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134e96000888488612c08565b613528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351f90614326565b60405180910390fd5b8180613533906147e8565b9250508080613541906147e8565b915050613478565b508060008190555061355e6000878588613081565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461359590614785565b90600052602060002090601f0160209004810192826135b757600085556135fe565b82601f106135d057803560ff19168380011785556135fe565b828001600101855582156135fe579182015b828111156135fd5782358255916020019190600101906135e2565b5b50905061360b9190613649565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561366257600081600090555060010161364a565b5090565b6000613679613674846144c1565b61449c565b9050828152602081018484840111156136955761369461495c565b5b6136a0848285614719565b509392505050565b6000813590506136b781615148565b92915050565b6000813590506136cc8161515f565b92915050565b6000813590506136e181615176565b92915050565b6000815190506136f681615176565b92915050565b600082601f83011261371157613710614952565b5b8135613721848260208601613666565b91505092915050565b60008083601f8401126137405761373f614952565b5b8235905067ffffffffffffffff81111561375d5761375c61494d565b5b60208301915083600182028301111561377957613778614957565b5b9250929050565b60008135905061378f8161518d565b92915050565b6000602082840312156137ab576137aa614966565b5b60006137b9848285016136a8565b91505092915050565b600080604083850312156137d9576137d8614966565b5b60006137e7858286016136a8565b92505060206137f8858286016136a8565b9150509250929050565b60008060006060848603121561381b5761381a614966565b5b6000613829868287016136a8565b935050602061383a868287016136a8565b925050604061384b86828701613780565b9150509250925092565b6000806000806080858703121561386f5761386e614966565b5b600061387d878288016136a8565b945050602061388e878288016136a8565b935050604061389f87828801613780565b925050606085013567ffffffffffffffff8111156138c0576138bf614961565b5b6138cc878288016136fc565b91505092959194509250565b600080604083850312156138ef576138ee614966565b5b60006138fd858286016136a8565b925050602061390e858286016136bd565b9150509250929050565b6000806040838503121561392f5761392e614966565b5b600061393d858286016136a8565b925050602061394e85828601613780565b9150509250929050565b60006020828403121561396e5761396d614966565b5b600061397c848285016136d2565b91505092915050565b60006020828403121561399b5761399a614966565b5b60006139a9848285016136e7565b91505092915050565b600080602083850312156139c9576139c8614966565b5b600083013567ffffffffffffffff8111156139e7576139e6614961565b5b6139f38582860161372a565b92509250509250929050565b600060208284031215613a1557613a14614966565b5b6000613a2384828501613780565b91505092915050565b613a3581614675565b82525050565b613a4481614675565b82525050565b613a5381614687565b82525050565b6000613a64826144f2565b613a6e8185614508565b9350613a7e818560208601614728565b613a878161496b565b840191505092915050565b6000613a9d826144fd565b613aa78185614524565b9350613ab7818560208601614728565b613ac08161496b565b840191505092915050565b6000613ad6826144fd565b613ae08185614535565b9350613af0818560208601614728565b80840191505092915050565b6000613b09602283614524565b9150613b148261497c565b604082019050919050565b6000613b2c601583614524565b9150613b37826149cb565b602082019050919050565b6000613b4f602683614524565b9150613b5a826149f4565b604082019050919050565b6000613b72602a83614524565b9150613b7d82614a43565b604082019050919050565b6000613b95600d83614524565b9150613ba082614a92565b602082019050919050565b6000613bb8602383614524565b9150613bc382614abb565b604082019050919050565b6000613bdb602583614524565b9150613be682614b0a565b604082019050919050565b6000613bfe603183614524565b9150613c0982614b59565b604082019050919050565b6000613c21600e83614524565b9150613c2c82614ba8565b602082019050919050565b6000613c44600983614524565b9150613c4f82614bd1565b602082019050919050565b6000613c67600783614524565b9150613c7282614bfa565b602082019050919050565b6000613c8a603983614524565b9150613c9582614c23565b604082019050919050565b6000613cad601883614524565b9150613cb882614c72565b602082019050919050565b6000613cd0602b83614524565b9150613cdb82614c9b565b604082019050919050565b6000613cf3602683614524565b9150613cfe82614cea565b604082019050919050565b6000613d16602083614524565b9150613d2182614d39565b602082019050919050565b6000613d39602f83614524565b9150613d4482614d62565b604082019050919050565b6000613d5c601a83614524565b9150613d6782614db1565b602082019050919050565b6000613d7f603283614524565b9150613d8a82614dda565b604082019050919050565b6000613da2602283614524565b9150613dad82614e29565b604082019050919050565b6000613dc5600083614519565b9150613dd082614e78565b600082019050919050565b6000613de8601083614524565b9150613df382614e7b565b602082019050919050565b6000613e0b603383614524565b9150613e1682614ea4565b604082019050919050565b6000613e2e601d83614524565b9150613e3982614ef3565b602082019050919050565b6000613e51602183614524565b9150613e5c82614f1c565b604082019050919050565b6000613e74600583614524565b9150613e7f82614f6b565b602082019050919050565b6000613e97602e83614524565b9150613ea282614f94565b604082019050919050565b6000613eba602683614524565b9150613ec582614fe3565b604082019050919050565b6000613edd601f83614524565b9150613ee882615032565b602082019050919050565b6000613f00602f83614524565b9150613f0b8261505b565b604082019050919050565b6000613f23602d83614524565b9150613f2e826150aa565b604082019050919050565b6000613f46602283614524565b9150613f51826150f9565b604082019050919050565b604082016000820151613f726000850182613a2c565b506020820151613f856020850182613f9a565b50505050565b613f94816146fb565b82525050565b613fa381614705565b82525050565b6000613fb58285613acb565b9150613fc18284613acb565b91508190509392505050565b6000613fd882613db8565b9150819050919050565b6000602082019050613ff76000830184613a3b565b92915050565b60006080820190506140126000830187613a3b565b61401f6020830186613a3b565b61402c6040830185613f8b565b818103606083015261403e8184613a59565b905095945050505050565b600060208201905061405e6000830184613a4a565b92915050565b6000602082019050818103600083015261407e8184613a92565b905092915050565b6000602082019050818103600083015261409f81613afc565b9050919050565b600060208201905081810360008301526140bf81613b1f565b9050919050565b600060208201905081810360008301526140df81613b42565b9050919050565b600060208201905081810360008301526140ff81613b65565b9050919050565b6000602082019050818103600083015261411f81613b88565b9050919050565b6000602082019050818103600083015261413f81613bab565b9050919050565b6000602082019050818103600083015261415f81613bce565b9050919050565b6000602082019050818103600083015261417f81613bf1565b9050919050565b6000602082019050818103600083015261419f81613c14565b9050919050565b600060208201905081810360008301526141bf81613c37565b9050919050565b600060208201905081810360008301526141df81613c5a565b9050919050565b600060208201905081810360008301526141ff81613c7d565b9050919050565b6000602082019050818103600083015261421f81613ca0565b9050919050565b6000602082019050818103600083015261423f81613cc3565b9050919050565b6000602082019050818103600083015261425f81613ce6565b9050919050565b6000602082019050818103600083015261427f81613d09565b9050919050565b6000602082019050818103600083015261429f81613d2c565b9050919050565b600060208201905081810360008301526142bf81613d4f565b9050919050565b600060208201905081810360008301526142df81613d72565b9050919050565b600060208201905081810360008301526142ff81613d95565b9050919050565b6000602082019050818103600083015261431f81613ddb565b9050919050565b6000602082019050818103600083015261433f81613dfe565b9050919050565b6000602082019050818103600083015261435f81613e21565b9050919050565b6000602082019050818103600083015261437f81613e44565b9050919050565b6000602082019050818103600083015261439f81613e67565b9050919050565b600060208201905081810360008301526143bf81613e8a565b9050919050565b600060208201905081810360008301526143df81613ead565b9050919050565b600060208201905081810360008301526143ff81613ed0565b9050919050565b6000602082019050818103600083015261441f81613ef3565b9050919050565b6000602082019050818103600083015261443f81613f16565b9050919050565b6000602082019050818103600083015261445f81613f39565b9050919050565b600060408201905061447b6000830184613f5c565b92915050565b60006020820190506144966000830184613f8b565b92915050565b60006144a66144b7565b90506144b282826147b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dc576144db61491e565b5b6144e58261496b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061454b826146bf565b9150614556836146bf565b9250826fffffffffffffffffffffffffffffffff0382111561457b5761457a614862565b5b828201905092915050565b6000614591826146fb565b915061459c836146fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d1576145d0614862565b5b828201905092915050565b60006145e7826146fb565b91506145f2836146fb565b92508261460257614601614891565b5b828204905092915050565b6000614618826146bf565b9150614623836146bf565b92508282101561463657614635614862565b5b828203905092915050565b600061464c826146fb565b9150614657836146fb565b92508282101561466a57614669614862565b5b828203905092915050565b6000614680826146db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561474657808201518184015260208101905061472b565b83811115614755576000848401525b50505050565b6000614766826146fb565b9150600082141561477a57614779614862565b5b600182039050919050565b6000600282049050600182168061479d57607f821691505b602082108114156147b1576147b06148c0565b5b50919050565b6147c08261496b565b810181811067ffffffffffffffff821117156147df576147de61491e565b5b80604052505050565b60006147f3826146fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482657614825614862565b5b600182019050919050565b600061483c826146fb565b9150614847836146fb565b92508261485757614856614891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61515181614675565b811461515c57600080fd5b50565b61516881614687565b811461517357600080fd5b50565b61517f81614693565b811461518a57600080fd5b50565b615196816146fb565b81146151a157600080fd5b5056fea26469706673582212202d7746cae871b5123f06904faab93c29f7434b457906df972baeda75ad51ea4064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637294e1ef1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e68114610860578063e268e4d31461089d578063e985e9c5146108c6578063f2fde38b14610903578063f968adbe1461092c5761023b565b8063c6f6f21614610779578063c87b56dd146107a2578063d1239730146107df578063d5abeb011461080a578063d7224ba0146108355761023b565b80639231ab2a116100f25780639231ab2a146106a357806395d89b41146106e0578063a0712d681461070b578063a22cb46514610727578063b88d4fde146107505761023b565b80637294e1ef146105d25780637d55094d1461060f5780638ba4cc3c146106265780638da5cb5b1461064f5780638db89f071461067a5761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146104ed5780636c0360eb1461052a57806370a082311461055557806370e0936914610592578063715018a6146105bb5761023b565b806342842e0e14610408578063453c2310146104315780634f6ccce71461045c57806355f804b3146104995780635b70ea9f146104c25761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b45780633ccfd60b146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613958565b610957565b6040516102749190614049565b60405180910390f35b34801561028957600080fd5b50610292610aa1565b60405161029f9190614064565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906139ff565b610b33565b6040516102dc9190613fe2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613918565b610bb8565b005b34801561031a57600080fd5b50610323610cd1565b6040516103309190614481565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906139ff565b610cda565b005b34801561036e57600080fd5b5061038960048036038101906103849190613802565b610d60565b005b34801561039757600080fd5b506103b260048036038101906103ad91906139ff565b610d70565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613918565b610e4e565b6040516103e89190614481565b60405180910390f35b3480156103fd57600080fd5b5061040661104c565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613802565b6111cd565b005b34801561043d57600080fd5b506104466111ed565b6040516104539190614481565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906139ff565b6111f3565b6040516104909190614481565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906139b2565b611246565b005b3480156104ce57600080fd5b506104d76112d8565b6040516104e49190614481565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906139ff565b6112de565b6040516105219190613fe2565b60405180910390f35b34801561053657600080fd5b5061053f6112f4565b60405161054c9190614064565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190613795565b611382565b6040516105899190614481565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b491906139ff565b61146b565b005b3480156105c757600080fd5b506105d06114f1565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613795565b611579565b6040516106069190614481565b60405180910390f35b34801561061b57600080fd5b50610624611591565b005b34801561063257600080fd5b5061064d60048036038101906106489190613918565b611639565b005b34801561065b57600080fd5b506106646116c3565b6040516106719190613fe2565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c91906139ff565b6116ed565b005b3480156106af57600080fd5b506106ca60048036038101906106c591906139ff565b6117cd565b6040516106d79190614466565b60405180910390f35b3480156106ec57600080fd5b506106f56117e5565b6040516107029190614064565b60405180910390f35b610725600480360381019061072091906139ff565b611877565b005b34801561073357600080fd5b5061074e600480360381019061074991906138d8565b611a56565b005b34801561075c57600080fd5b5061077760048036038101906107729190613855565b611bd7565b005b34801561078557600080fd5b506107a0600480360381019061079b91906139ff565b611c33565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906139ff565b611cb9565b6040516107d69190614064565b60405180910390f35b3480156107eb57600080fd5b506107f4611d60565b6040516108019190614049565b60405180910390f35b34801561081657600080fd5b5061081f611d73565b60405161082c9190614481565b60405180910390f35b34801561084157600080fd5b5061084a611d79565b6040516108579190614481565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613795565b611d7f565b6040516108949190614481565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf91906139ff565b611d91565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906137c2565b611e17565b6040516108fa9190614049565b60405180910390f35b34801561090f57600080fd5b5061092a60048036038101906109259190613795565b611eab565b005b34801561093857600080fd5b50610941611fa3565b60405161094e9190614481565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9a5750610a9982611fa9565b5b9050919050565b606060018054610ab090614785565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90614785565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b3e82612013565b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490614426565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc3826112de565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c53612020565b73ffffffffffffffffffffffffffffffffffffffff161480610c825750610c8181610c7c612020565b611e17565b5b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906141e6565b60405180910390fd5b610ccc838383612028565b505050565b60008054905090565b610ce2612020565b73ffffffffffffffffffffffffffffffffffffffff16610d006116c3565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90614266565b60405180910390fd5b80600e8190555050565b610d6b8383836120da565b505050565b610d78612020565b73ffffffffffffffffffffffffffffffffffffffff16610d966116c3565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390614266565b60405180910390fd5b60026009541415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906143e6565b60405180910390fd5b6002600981905550610e4381612693565b600160098190555050565b6000610e5983611382565b8210610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614086565b60405180910390fd5b6000610ea4610cd1565b905060008060005b8381101561100a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f9e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff65786841415610fe7578195505050505050611046565b8380610ff2906147e8565b9450505b508080611002906147e8565b915050610eac565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906143a6565b60405180910390fd5b92915050565b611054612020565b73ffffffffffffffffffffffffffffffffffffffff166110726116c3565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90614266565b60405180910390fd5b6002600954141561110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906143e6565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161113c90613fcd565b60006040518083038185875af1925050503d8060008114611179576040519150601f19603f3d011682016040523d82523d6000602084013e61117e565b606091505b50509050806111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614306565b60405180910390fd5b506001600981905550565b6111e883838360405180602001604052806000815250611bd7565b505050565b600c5481565b60006111fd610cd1565b821061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590614126565b60405180910390fd5b819050919050565b61124e612020565b73ffffffffffffffffffffffffffffffffffffffff1661126c6116c3565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614266565b60405180910390fd5b8181600a91906112d3929190613589565b505050565b600d5481565b60006112e982612921565b600001519050919050565b600a805461130190614785565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90614785565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614226565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611473612020565b73ffffffffffffffffffffffffffffffffffffffff166114916116c3565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614266565b60405180910390fd5b80600d8190555050565b6114f9612020565b73ffffffffffffffffffffffffffffffffffffffff166115176116c3565b73ffffffffffffffffffffffffffffffffffffffff161461156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490614266565b60405180910390fd5b6115776000612b24565b565b60106020528060005260406000206000915090505481565b611599612020565b73ffffffffffffffffffffffffffffffffffffffff166115b76116c3565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614266565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611641612020565b73ffffffffffffffffffffffffffffffffffffffff1661165f6116c3565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614266565b60405180910390fd5b6116bf8282612bea565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f5612020565b73ffffffffffffffffffffffffffffffffffffffff166117136116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614266565b60405180910390fd5b600e5481611775610cd1565b61177f9190614586565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906141a6565b60405180910390fd5b6117ca3382612bea565b50565b6117d561360f565b6117de82612921565b9050919050565b6060600280546117f490614785565b80601f016020809104026020016040519081016040528092919081815260200182805461182090614785565b801561186d5780601f106118425761010080835404028352916020019161186d565b820191906000526020600020905b81548152906001019060200180831161185057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff166118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614106565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119149190614586565b1115611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614386565b60405180910390fd5b600e5481611961610cd1565b61196b9190614586565b11156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a3906141c6565b60405180910390fd5b600c54816119b933611d7f565b6119c39190614586565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614186565b60405180910390fd5b600b54811115611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906140a6565b60405180910390fd5b611a533382612bea565b50565b611a5e612020565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906142a6565b60405180910390fd5b8060066000611ad9612020565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b86612020565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bcb9190614049565b60405180910390a35050565b611be28484846120da565b611bee84848484612c08565b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614326565b60405180910390fd5b50505050565b611c3b612020565b73ffffffffffffffffffffffffffffffffffffffff16611c596116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690614266565b60405180910390fd5b80600b8190555050565b6060611cc482612013565b611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614286565b60405180910390fd5b6000611d0d612d9f565b90506000815111611d2d5760405180602001604052806000815250611d58565b80611d3784612e31565b604051602001611d48929190613fa9565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b60075481565b6000611d8a82612f92565b9050919050565b611d99612020565b73ffffffffffffffffffffffffffffffffffffffff16611db76116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614266565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb3612020565b73ffffffffffffffffffffffffffffffffffffffff16611ed16116c3565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906140c6565b60405180910390fd5b611fa081612b24565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e582612921565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210c612020565b73ffffffffffffffffffffffffffffffffffffffff1614806121685750612131612020565b73ffffffffffffffffffffffffffffffffffffffff1661215084610b33565b73ffffffffffffffffffffffffffffffffffffffff16145b806121845750612183826000015161217e612020565b611e17565b5b9050806121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd906142c6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f90614146565b60405180910390fd5b6122b5858585600161307b565b6122c56000848460000151612028565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612333919061460d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123d79190614540565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124dd9190614586565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126235761255381612013565b15612622576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461268b8686866001613081565b505050505050565b60006007549050600082116126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490614206565b60405180910390fd5b6000600183836126ed9190614586565b6126f79190614641565b905060017f0000000000000000000000000000000000000000000000000000000000001b396127269190614641565b81111561275d5760017f0000000000000000000000000000000000000000000000000000000000001b3961275a9190614641565b90505b61276681612013565b6127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906143c6565b60405180910390fd5b60008290505b81811161290857600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f557600061282882612921565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612900906147e8565b9150506127ab565b506001816129169190614586565b600781905550505050565b61292961360f565b61293282612013565b612971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612968906140e6565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106129d55760017f000000000000000000000000000000000000000000000000000000000000000a846129c89190614641565b6129d29190614586565b90505b60008390505b818110612ae3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612acf57809350505050612b1f565b508080612adb9061475b565b9150506129db565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614406565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c04828260405180602001604052806000815250613087565b5050565b6000612c298473ffffffffffffffffffffffffffffffffffffffff16613566565b15612d92578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c52612020565b8786866040518563ffffffff1660e01b8152600401612c749493929190613ffd565b602060405180830381600087803b158015612c8e57600080fd5b505af1925050508015612cbf57506040513d601f19601f82011682018060405250810190612cbc9190613985565b60015b612d42573d8060008114612cef576040519150601f19603f3d011682016040523d82523d6000602084013e612cf4565b606091505b50600081511415612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190614326565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d97565b600190505b949350505050565b6060600a8054612dae90614785565b80601f0160208091040260200160405190810160405280929190818152602001828054612dda90614785565b8015612e275780601f10612dfc57610100808354040283529160200191612e27565b820191906000526020600020905b815481529060010190602001808311612e0a57829003601f168201915b5050505050905090565b60606000821415612e79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f8d565b600082905060005b60008214612eab578080612e94906147e8565b915050600a82612ea491906145dc565b9150612e81565b60008167ffffffffffffffff811115612ec757612ec661491e565b5b6040519080825280601f01601f191660200182016040528015612ef95781602001600182028036833780820191505090505b5090505b60008514612f8657600182612f129190614641565b9150600a85612f219190614831565b6030612f2d9190614586565b60f81b818381518110612f4357612f426148ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f7f91906145dc565b9450612efd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90614166565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f490614366565b60405180910390fd5b61310681612013565b15613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313d90614346565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156131a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a090614446565b60405180910390fd5b6131b6600085838661307b565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132b39190614540565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132da9190614540565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561354957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134e96000888488612c08565b613528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351f90614326565b60405180910390fd5b8180613533906147e8565b9250508080613541906147e8565b915050613478565b508060008190555061355e6000878588613081565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461359590614785565b90600052602060002090601f0160209004810192826135b757600085556135fe565b82601f106135d057803560ff19168380011785556135fe565b828001600101855582156135fe579182015b828111156135fd5782358255916020019190600101906135e2565b5b50905061360b9190613649565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561366257600081600090555060010161364a565b5090565b6000613679613674846144c1565b61449c565b9050828152602081018484840111156136955761369461495c565b5b6136a0848285614719565b509392505050565b6000813590506136b781615148565b92915050565b6000813590506136cc8161515f565b92915050565b6000813590506136e181615176565b92915050565b6000815190506136f681615176565b92915050565b600082601f83011261371157613710614952565b5b8135613721848260208601613666565b91505092915050565b60008083601f8401126137405761373f614952565b5b8235905067ffffffffffffffff81111561375d5761375c61494d565b5b60208301915083600182028301111561377957613778614957565b5b9250929050565b60008135905061378f8161518d565b92915050565b6000602082840312156137ab576137aa614966565b5b60006137b9848285016136a8565b91505092915050565b600080604083850312156137d9576137d8614966565b5b60006137e7858286016136a8565b92505060206137f8858286016136a8565b9150509250929050565b60008060006060848603121561381b5761381a614966565b5b6000613829868287016136a8565b935050602061383a868287016136a8565b925050604061384b86828701613780565b9150509250925092565b6000806000806080858703121561386f5761386e614966565b5b600061387d878288016136a8565b945050602061388e878288016136a8565b935050604061389f87828801613780565b925050606085013567ffffffffffffffff8111156138c0576138bf614961565b5b6138cc878288016136fc565b91505092959194509250565b600080604083850312156138ef576138ee614966565b5b60006138fd858286016136a8565b925050602061390e858286016136bd565b9150509250929050565b6000806040838503121561392f5761392e614966565b5b600061393d858286016136a8565b925050602061394e85828601613780565b9150509250929050565b60006020828403121561396e5761396d614966565b5b600061397c848285016136d2565b91505092915050565b60006020828403121561399b5761399a614966565b5b60006139a9848285016136e7565b91505092915050565b600080602083850312156139c9576139c8614966565b5b600083013567ffffffffffffffff8111156139e7576139e6614961565b5b6139f38582860161372a565b92509250509250929050565b600060208284031215613a1557613a14614966565b5b6000613a2384828501613780565b91505092915050565b613a3581614675565b82525050565b613a4481614675565b82525050565b613a5381614687565b82525050565b6000613a64826144f2565b613a6e8185614508565b9350613a7e818560208601614728565b613a878161496b565b840191505092915050565b6000613a9d826144fd565b613aa78185614524565b9350613ab7818560208601614728565b613ac08161496b565b840191505092915050565b6000613ad6826144fd565b613ae08185614535565b9350613af0818560208601614728565b80840191505092915050565b6000613b09602283614524565b9150613b148261497c565b604082019050919050565b6000613b2c601583614524565b9150613b37826149cb565b602082019050919050565b6000613b4f602683614524565b9150613b5a826149f4565b604082019050919050565b6000613b72602a83614524565b9150613b7d82614a43565b604082019050919050565b6000613b95600d83614524565b9150613ba082614a92565b602082019050919050565b6000613bb8602383614524565b9150613bc382614abb565b604082019050919050565b6000613bdb602583614524565b9150613be682614b0a565b604082019050919050565b6000613bfe603183614524565b9150613c0982614b59565b604082019050919050565b6000613c21600e83614524565b9150613c2c82614ba8565b602082019050919050565b6000613c44600983614524565b9150613c4f82614bd1565b602082019050919050565b6000613c67600783614524565b9150613c7282614bfa565b602082019050919050565b6000613c8a603983614524565b9150613c9582614c23565b604082019050919050565b6000613cad601883614524565b9150613cb882614c72565b602082019050919050565b6000613cd0602b83614524565b9150613cdb82614c9b565b604082019050919050565b6000613cf3602683614524565b9150613cfe82614cea565b604082019050919050565b6000613d16602083614524565b9150613d2182614d39565b602082019050919050565b6000613d39602f83614524565b9150613d4482614d62565b604082019050919050565b6000613d5c601a83614524565b9150613d6782614db1565b602082019050919050565b6000613d7f603283614524565b9150613d8a82614dda565b604082019050919050565b6000613da2602283614524565b9150613dad82614e29565b604082019050919050565b6000613dc5600083614519565b9150613dd082614e78565b600082019050919050565b6000613de8601083614524565b9150613df382614e7b565b602082019050919050565b6000613e0b603383614524565b9150613e1682614ea4565b604082019050919050565b6000613e2e601d83614524565b9150613e3982614ef3565b602082019050919050565b6000613e51602183614524565b9150613e5c82614f1c565b604082019050919050565b6000613e74600583614524565b9150613e7f82614f6b565b602082019050919050565b6000613e97602e83614524565b9150613ea282614f94565b604082019050919050565b6000613eba602683614524565b9150613ec582614fe3565b604082019050919050565b6000613edd601f83614524565b9150613ee882615032565b602082019050919050565b6000613f00602f83614524565b9150613f0b8261505b565b604082019050919050565b6000613f23602d83614524565b9150613f2e826150aa565b604082019050919050565b6000613f46602283614524565b9150613f51826150f9565b604082019050919050565b604082016000820151613f726000850182613a2c565b506020820151613f856020850182613f9a565b50505050565b613f94816146fb565b82525050565b613fa381614705565b82525050565b6000613fb58285613acb565b9150613fc18284613acb565b91508190509392505050565b6000613fd882613db8565b9150819050919050565b6000602082019050613ff76000830184613a3b565b92915050565b60006080820190506140126000830187613a3b565b61401f6020830186613a3b565b61402c6040830185613f8b565b818103606083015261403e8184613a59565b905095945050505050565b600060208201905061405e6000830184613a4a565b92915050565b6000602082019050818103600083015261407e8184613a92565b905092915050565b6000602082019050818103600083015261409f81613afc565b9050919050565b600060208201905081810360008301526140bf81613b1f565b9050919050565b600060208201905081810360008301526140df81613b42565b9050919050565b600060208201905081810360008301526140ff81613b65565b9050919050565b6000602082019050818103600083015261411f81613b88565b9050919050565b6000602082019050818103600083015261413f81613bab565b9050919050565b6000602082019050818103600083015261415f81613bce565b9050919050565b6000602082019050818103600083015261417f81613bf1565b9050919050565b6000602082019050818103600083015261419f81613c14565b9050919050565b600060208201905081810360008301526141bf81613c37565b9050919050565b600060208201905081810360008301526141df81613c5a565b9050919050565b600060208201905081810360008301526141ff81613c7d565b9050919050565b6000602082019050818103600083015261421f81613ca0565b9050919050565b6000602082019050818103600083015261423f81613cc3565b9050919050565b6000602082019050818103600083015261425f81613ce6565b9050919050565b6000602082019050818103600083015261427f81613d09565b9050919050565b6000602082019050818103600083015261429f81613d2c565b9050919050565b600060208201905081810360008301526142bf81613d4f565b9050919050565b600060208201905081810360008301526142df81613d72565b9050919050565b600060208201905081810360008301526142ff81613d95565b9050919050565b6000602082019050818103600083015261431f81613ddb565b9050919050565b6000602082019050818103600083015261433f81613dfe565b9050919050565b6000602082019050818103600083015261435f81613e21565b9050919050565b6000602082019050818103600083015261437f81613e44565b9050919050565b6000602082019050818103600083015261439f81613e67565b9050919050565b600060208201905081810360008301526143bf81613e8a565b9050919050565b600060208201905081810360008301526143df81613ead565b9050919050565b600060208201905081810360008301526143ff81613ed0565b9050919050565b6000602082019050818103600083015261441f81613ef3565b9050919050565b6000602082019050818103600083015261443f81613f16565b9050919050565b6000602082019050818103600083015261445f81613f39565b9050919050565b600060408201905061447b6000830184613f5c565b92915050565b60006020820190506144966000830184613f8b565b92915050565b60006144a66144b7565b90506144b282826147b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dc576144db61491e565b5b6144e58261496b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061454b826146bf565b9150614556836146bf565b9250826fffffffffffffffffffffffffffffffff0382111561457b5761457a614862565b5b828201905092915050565b6000614591826146fb565b915061459c836146fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d1576145d0614862565b5b828201905092915050565b60006145e7826146fb565b91506145f2836146fb565b92508261460257614601614891565b5b828204905092915050565b6000614618826146bf565b9150614623836146bf565b92508282101561463657614635614862565b5b828203905092915050565b600061464c826146fb565b9150614657836146fb565b92508282101561466a57614669614862565b5b828203905092915050565b6000614680826146db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561474657808201518184015260208101905061472b565b83811115614755576000848401525b50505050565b6000614766826146fb565b9150600082141561477a57614779614862565b5b600182039050919050565b6000600282049050600182168061479d57607f821691505b602082108114156147b1576147b06148c0565b5b50919050565b6147c08261496b565b810181811067ffffffffffffffff821117156147df576147de61491e565b5b80604052505050565b60006147f3826146fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482657614825614862565b5b600182019050919050565b600061483c826146fb565b9150614847836146fb565b92508261485757614856614891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61515181614675565b811461515c57600080fd5b50565b61516881614687565b811461517357600080fd5b50565b61517f81614693565b811461518a57600080fd5b50565b615196816146fb565b81146151a157600080fd5b5056fea26469706673582212202d7746cae871b5123f06904faab93c29f7434b457906df972baeda75ad51ea4064736f6c63430008070033

Deployed Bytecode Sourcemap

205:2473:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1985:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2551:124:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2211:186:12;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;331:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1541:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;366:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;269:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1651:98:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;462:47:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1323:89;;;;;;;;;;;;;:::i;:::-;;1021:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1136:179:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2403:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;579:434:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1757:98:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;432:23:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;397:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1420:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1863:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;299:24:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;1985:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2069:10:12::1;2057:9;:22;;;;1985:102:::0;:::o;8352:142:11:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;2551:124:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2639:28:12::2;2658:8;2639:18;:28::i;:::-;1701:1:1::1;2628:7;:22;;;;2551:124:12::0;:::o;3443:744:11:-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;2211:186:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2275:12:12::2;2293:10;:15;;2316:21;2293:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2274:68;;;2361:7;2353:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2263:134;1701:1:1::1;2628:7;:22;;;;2211:186:12:o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;331:28:12:-;;;;:::o;2975:177:11:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;1541:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1627:8:12::1;;1617:7;:18;;;;;;;:::i;:::-;;1541:102:::0;;:::o;366:24::-;;;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;269:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;1651:98:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:9:12::1;1721:8;:20;;;;1651:98:::0;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;462:47:12:-;;;;;;;;;;;;;;;;;:::o;1323:89::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1393:11:12::1;;;;;;;;;;;1392:12;1378:11;;:26;;;;;;;;;;;;;;;;;;1323:89::o:0;1021:109::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1101:21:12::1;1111:2;1115:6;1101:9;:21::i;:::-;1021:109:::0;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;1136:179:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1245:9:12::1;;1235:6;1219:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1211:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1278:29;1288:10;1300:6;1278:9;:29::i;:::-;1136:179:::0;:::o;2403:140::-;2469:21;;:::i;:::-;2515:20;2527:7;2515:11;:20::i;:::-;2508:27;;2403:140;;;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;579:434:12:-;650:11;;;;;;;;;;;642:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;734:8;;724:6;698:11;:23;710:10;698:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:44;;690:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;796:9;;786:6;770:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;762:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;872:12;;862:6;835:24;848:10;835:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;827:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;931:8;;921:6;:18;;913:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;976:29;986:10;998:6;976:9;:29::i;:::-;579:434;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;8777:311::-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;1757:98:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1838:9:12::1;1827:8;:20;;;;1757:98:::0;:::o;6293:394:11:-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;432:23:12:-;;;;;;;;;;;;;:::o;397:28::-;;;;:::o;13192:43:11:-;;;;:::o;1420:113:12:-;1478:7;1505:20;1519:5;1505:13;:20::i;:::-;1498:27;;1420:113;;;:::o;1863:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1956:13:12::1;1941:12;:28;;;;1863:114:::0;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;299:24:12:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;13340:846::-;13402:25;13430:24;;13402:52;;13480:1;13469:8;:12;13461:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13517:16;13567:1;13556:8;13536:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13517:51;;13607:1;13590:14;:18;;;;:::i;:::-;13579:8;:29;13575:81;;;13647:1;13630:14;:18;;;;:::i;:::-;13619:29;;13575:81;13771:17;13779:8;13771:7;:17::i;:::-;13763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:9;13855:17;13843:29;;13838:297;13879:8;13874:1;:13;13838:297;;13938:1;13907:33;;:11;:14;13919:1;13907:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13903:225;;;13953:31;13987:14;13999:1;13987:11;:14::i;:::-;13953:48;;14029:89;;;;;;;;14056:9;:14;;;14029:89;;;;;;14083:9;:24;;;14029:89;;;;;14012:11;:14;14024:1;14012:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13942:186;13903:225;13889:3;;;;;:::i;:::-;;;;13838:297;;;;14179:1;14168:8;:12;;;;:::i;:::-;14141:24;:39;;;;13395:791;;13340:846;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;14729:690::-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;2095:108:12:-;2155:13;2188:7;2181:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095:108;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;4894:240:11:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:365::-;11935:3;11956:66;12020:1;12015:3;11956:66;:::i;:::-;11949:73;;12031:93;12120:3;12031:93;:::i;:::-;12149:2;12144:3;12140:12;12133:19;;11793:365;;;:::o;12164:::-;12306:3;12327:66;12391:1;12386:3;12327:66;:::i;:::-;12320:73;;12402:93;12491:3;12402:93;:::i;:::-;12520:2;12515:3;12511:12;12504:19;;12164:365;;;:::o;12535:366::-;12677:3;12698:67;12762:2;12757:3;12698:67;:::i;:::-;12691:74;;12774:93;12863:3;12774:93;:::i;:::-;12892:2;12887:3;12883:12;12876:19;;12535:366;;;:::o;12907:::-;13049:3;13070:67;13134:2;13129:3;13070:67;:::i;:::-;13063:74;;13146:93;13235:3;13146:93;:::i;:::-;13264:2;13259:3;13255:12;13248:19;;12907:366;;;:::o;13279:::-;13421:3;13442:67;13506:2;13501:3;13442:67;:::i;:::-;13435:74;;13518:93;13607:3;13518:93;:::i;:::-;13636:2;13631:3;13627:12;13620:19;;13279:366;;;:::o;13651:::-;13793:3;13814:67;13878:2;13873:3;13814:67;:::i;:::-;13807:74;;13890:93;13979:3;13890:93;:::i;:::-;14008:2;14003:3;13999:12;13992:19;;13651:366;;;:::o;14023:::-;14165:3;14186:67;14250:2;14245:3;14186:67;:::i;:::-;14179:74;;14262:93;14351:3;14262:93;:::i;:::-;14380:2;14375:3;14371:12;14364:19;;14023:366;;;:::o;14395:::-;14537:3;14558:67;14622:2;14617:3;14558:67;:::i;:::-;14551:74;;14634:93;14723:3;14634:93;:::i;:::-;14752:2;14747:3;14743:12;14736:19;;14395:366;;;:::o;14767:::-;14909:3;14930:67;14994:2;14989:3;14930:67;:::i;:::-;14923:74;;15006:93;15095:3;15006:93;:::i;:::-;15124:2;15119:3;15115:12;15108:19;;14767:366;;;:::o;15139:::-;15281:3;15302:67;15366:2;15361:3;15302:67;:::i;:::-;15295:74;;15378:93;15467:3;15378:93;:::i;:::-;15496:2;15491:3;15487:12;15480:19;;15139:366;;;:::o;15511:::-;15653:3;15674:67;15738:2;15733:3;15674:67;:::i;:::-;15667:74;;15750:93;15839:3;15750:93;:::i;:::-;15868:2;15863:3;15859:12;15852:19;;15511:366;;;:::o;15883:398::-;16042:3;16063:83;16144:1;16139:3;16063:83;:::i;:::-;16056:90;;16155:93;16244:3;16155:93;:::i;:::-;16273:1;16268:3;16264:11;16257:18;;15883:398;;;:::o;16287:366::-;16429:3;16450:67;16514:2;16509:3;16450:67;:::i;:::-;16443:74;;16526:93;16615:3;16526:93;:::i;:::-;16644:2;16639:3;16635:12;16628:19;;16287:366;;;:::o;16659:::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:::-;17173:3;17194:67;17258:2;17253:3;17194:67;:::i;:::-;17187:74;;17270:93;17359:3;17270:93;:::i;:::-;17388:2;17383:3;17379:12;17372:19;;17031:366;;;:::o;17403:::-;17545:3;17566:67;17630:2;17625:3;17566:67;:::i;:::-;17559:74;;17642:93;17731:3;17642:93;:::i;:::-;17760:2;17755:3;17751:12;17744:19;;17403:366;;;:::o;17775:365::-;17917:3;17938:66;18002:1;17997:3;17938:66;:::i;:::-;17931:73;;18013:93;18102:3;18013:93;:::i;:::-;18131:2;18126:3;18122:12;18115:19;;17775:365;;;:::o;18146:366::-;18288:3;18309:67;18373:2;18368:3;18309:67;:::i;:::-;18302:74;;18385:93;18474:3;18385:93;:::i;:::-;18503:2;18498:3;18494:12;18487:19;;18146:366;;;:::o;18518:::-;18660:3;18681:67;18745:2;18740:3;18681:67;:::i;:::-;18674:74;;18757:93;18846:3;18757:93;:::i;:::-;18875:2;18870:3;18866:12;18859:19;;18518:366;;;:::o;18890:::-;19032:3;19053:67;19117:2;19112:3;19053:67;:::i;:::-;19046:74;;19129:93;19218:3;19129:93;:::i;:::-;19247:2;19242:3;19238:12;19231:19;;18890:366;;;:::o;19262:::-;19404:3;19425:67;19489:2;19484:3;19425:67;:::i;:::-;19418:74;;19501:93;19590:3;19501:93;:::i;:::-;19619:2;19614:3;19610:12;19603:19;;19262:366;;;:::o;19634:::-;19776:3;19797:67;19861:2;19856:3;19797:67;:::i;:::-;19790:74;;19873:93;19962:3;19873:93;:::i;:::-;19991:2;19986:3;19982:12;19975:19;;19634:366;;;:::o;20006:::-;20148:3;20169:67;20233:2;20228:3;20169:67;:::i;:::-;20162:74;;20245:93;20334:3;20245:93;:::i;:::-;20363:2;20358:3;20354:12;20347:19;;20006:366;;;:::o;20448:527::-;20607:4;20602:3;20598:14;20694:4;20687:5;20683:16;20677:23;20713:63;20770:4;20765:3;20761:14;20747:12;20713:63;:::i;:::-;20622:164;20878:4;20871:5;20867:16;20861:23;20897:61;20952:4;20947:3;20943:14;20929:12;20897:61;:::i;:::-;20796:172;20576:399;20448:527;;:::o;20981:118::-;21068:24;21086:5;21068:24;:::i;:::-;21063:3;21056:37;20981:118;;:::o;21105:105::-;21180:23;21197:5;21180:23;:::i;:::-;21175:3;21168:36;21105:105;;:::o;21216:435::-;21396:3;21418:95;21509:3;21500:6;21418:95;:::i;:::-;21411:102;;21530:95;21621:3;21612:6;21530:95;:::i;:::-;21523:102;;21642:3;21635:10;;21216:435;;;;;:::o;21657:379::-;21841:3;21863:147;22006:3;21863:147;:::i;:::-;21856:154;;22027:3;22020:10;;21657:379;;;:::o;22042:222::-;22135:4;22173:2;22162:9;22158:18;22150:26;;22186:71;22254:1;22243:9;22239:17;22230:6;22186:71;:::i;:::-;22042:222;;;;:::o;22270:640::-;22465:4;22503:3;22492:9;22488:19;22480:27;;22517:71;22585:1;22574:9;22570:17;22561:6;22517:71;:::i;:::-;22598:72;22666:2;22655:9;22651:18;22642:6;22598:72;:::i;:::-;22680;22748:2;22737:9;22733:18;22724:6;22680:72;:::i;:::-;22799:9;22793:4;22789:20;22784:2;22773:9;22769:18;22762:48;22827:76;22898:4;22889:6;22827:76;:::i;:::-;22819:84;;22270:640;;;;;;;:::o;22916:210::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23054:65;23116:1;23105:9;23101:17;23092:6;23054:65;:::i;:::-;22916:210;;;;:::o;23132:313::-;23245:4;23283:2;23272:9;23268:18;23260:26;;23332:9;23326:4;23322:20;23318:1;23307:9;23303:17;23296:47;23360:78;23433:4;23424:6;23360:78;:::i;:::-;23352:86;;23132:313;;;;:::o;23451:419::-;23617:4;23655:2;23644:9;23640:18;23632:26;;23704:9;23698:4;23694:20;23690:1;23679:9;23675:17;23668:47;23732:131;23858:4;23732:131;:::i;:::-;23724:139;;23451:419;;;:::o;23876:::-;24042:4;24080:2;24069:9;24065:18;24057:26;;24129:9;24123:4;24119:20;24115:1;24104:9;24100:17;24093:47;24157:131;24283:4;24157:131;:::i;:::-;24149:139;;23876:419;;;:::o;24301:::-;24467:4;24505:2;24494:9;24490:18;24482:26;;24554:9;24548:4;24544:20;24540:1;24529:9;24525:17;24518:47;24582:131;24708:4;24582:131;:::i;:::-;24574:139;;24301:419;;;:::o;24726:::-;24892:4;24930:2;24919:9;24915:18;24907:26;;24979:9;24973:4;24969:20;24965:1;24954:9;24950:17;24943:47;25007:131;25133:4;25007:131;:::i;:::-;24999:139;;24726:419;;;:::o;25151:::-;25317:4;25355:2;25344:9;25340:18;25332:26;;25404:9;25398:4;25394:20;25390:1;25379:9;25375:17;25368:47;25432:131;25558:4;25432:131;:::i;:::-;25424:139;;25151:419;;;:::o;25576:::-;25742:4;25780:2;25769:9;25765:18;25757:26;;25829:9;25823:4;25819:20;25815:1;25804:9;25800:17;25793:47;25857:131;25983:4;25857:131;:::i;:::-;25849:139;;25576:419;;;:::o;26001:::-;26167:4;26205:2;26194:9;26190:18;26182:26;;26254:9;26248:4;26244:20;26240:1;26229:9;26225:17;26218:47;26282:131;26408:4;26282:131;:::i;:::-;26274:139;;26001:419;;;:::o;26426:::-;26592:4;26630:2;26619:9;26615:18;26607:26;;26679:9;26673:4;26669:20;26665:1;26654:9;26650:17;26643:47;26707:131;26833:4;26707:131;:::i;:::-;26699:139;;26426:419;;;:::o;26851:::-;27017:4;27055:2;27044:9;27040:18;27032:26;;27104:9;27098:4;27094:20;27090:1;27079:9;27075:17;27068:47;27132:131;27258:4;27132:131;:::i;:::-;27124:139;;26851:419;;;:::o;27276:::-;27442:4;27480:2;27469:9;27465:18;27457:26;;27529:9;27523:4;27519:20;27515:1;27504:9;27500:17;27493:47;27557:131;27683:4;27557:131;:::i;:::-;27549:139;;27276:419;;;:::o;27701:::-;27867:4;27905:2;27894:9;27890:18;27882:26;;27954:9;27948:4;27944:20;27940:1;27929:9;27925:17;27918:47;27982:131;28108:4;27982:131;:::i;:::-;27974:139;;27701:419;;;:::o;28126:::-;28292:4;28330:2;28319:9;28315:18;28307:26;;28379:9;28373:4;28369:20;28365:1;28354:9;28350:17;28343:47;28407:131;28533:4;28407:131;:::i;:::-;28399:139;;28126:419;;;:::o;28551:::-;28717:4;28755:2;28744:9;28740:18;28732:26;;28804:9;28798:4;28794:20;28790:1;28779:9;28775:17;28768:47;28832:131;28958:4;28832:131;:::i;:::-;28824:139;;28551:419;;;:::o;28976:::-;29142:4;29180:2;29169:9;29165:18;29157:26;;29229:9;29223:4;29219:20;29215:1;29204:9;29200:17;29193:47;29257:131;29383:4;29257:131;:::i;:::-;29249:139;;28976:419;;;:::o;29401:::-;29567:4;29605:2;29594:9;29590:18;29582:26;;29654:9;29648:4;29644:20;29640:1;29629:9;29625:17;29618:47;29682:131;29808:4;29682:131;:::i;:::-;29674:139;;29401:419;;;:::o;29826:::-;29992:4;30030:2;30019:9;30015:18;30007:26;;30079:9;30073:4;30069:20;30065:1;30054:9;30050:17;30043:47;30107:131;30233:4;30107:131;:::i;:::-;30099:139;;29826:419;;;:::o;30251:::-;30417:4;30455:2;30444:9;30440:18;30432:26;;30504:9;30498:4;30494:20;30490:1;30479:9;30475:17;30468:47;30532:131;30658:4;30532:131;:::i;:::-;30524:139;;30251:419;;;:::o;30676:::-;30842:4;30880:2;30869:9;30865:18;30857:26;;30929:9;30923:4;30919:20;30915:1;30904:9;30900:17;30893:47;30957:131;31083:4;30957:131;:::i;:::-;30949:139;;30676:419;;;:::o;31101:::-;31267:4;31305:2;31294:9;31290:18;31282:26;;31354:9;31348:4;31344:20;31340:1;31329:9;31325:17;31318:47;31382:131;31508:4;31382:131;:::i;:::-;31374:139;;31101:419;;;:::o;31526:::-;31692:4;31730:2;31719:9;31715:18;31707:26;;31779:9;31773:4;31769:20;31765:1;31754:9;31750:17;31743:47;31807:131;31933:4;31807:131;:::i;:::-;31799:139;;31526:419;;;:::o;31951:::-;32117:4;32155:2;32144:9;32140:18;32132:26;;32204:9;32198:4;32194:20;32190:1;32179:9;32175:17;32168:47;32232:131;32358:4;32232:131;:::i;:::-;32224:139;;31951:419;;;:::o;32376:::-;32542:4;32580:2;32569:9;32565:18;32557:26;;32629:9;32623:4;32619:20;32615:1;32604:9;32600:17;32593:47;32657:131;32783:4;32657:131;:::i;:::-;32649:139;;32376:419;;;:::o;32801:::-;32967:4;33005:2;32994:9;32990:18;32982:26;;33054:9;33048:4;33044:20;33040:1;33029:9;33025:17;33018:47;33082:131;33208:4;33082:131;:::i;:::-;33074:139;;32801:419;;;:::o;33226:::-;33392:4;33430:2;33419:9;33415:18;33407:26;;33479:9;33473:4;33469:20;33465:1;33454:9;33450:17;33443:47;33507:131;33633:4;33507:131;:::i;:::-;33499:139;;33226:419;;;:::o;33651:::-;33817:4;33855:2;33844:9;33840:18;33832:26;;33904:9;33898:4;33894:20;33890:1;33879:9;33875:17;33868:47;33932:131;34058:4;33932:131;:::i;:::-;33924:139;;33651:419;;;:::o;34076:::-;34242:4;34280:2;34269:9;34265:18;34257:26;;34329:9;34323:4;34319:20;34315:1;34304:9;34300:17;34293:47;34357:131;34483:4;34357:131;:::i;:::-;34349:139;;34076:419;;;:::o;34501:::-;34667:4;34705:2;34694:9;34690:18;34682:26;;34754:9;34748:4;34744:20;34740:1;34729:9;34725:17;34718:47;34782:131;34908:4;34782:131;:::i;:::-;34774:139;;34501:419;;;:::o;34926:::-;35092:4;35130:2;35119:9;35115:18;35107:26;;35179:9;35173:4;35169:20;35165:1;35154:9;35150:17;35143:47;35207:131;35333:4;35207:131;:::i;:::-;35199:139;;34926:419;;;:::o;35351:::-;35517:4;35555:2;35544:9;35540:18;35532:26;;35604:9;35598:4;35594:20;35590:1;35579:9;35575:17;35568:47;35632:131;35758:4;35632:131;:::i;:::-;35624:139;;35351:419;;;:::o;35776:::-;35942:4;35980:2;35969:9;35965:18;35957:26;;36029:9;36023:4;36019:20;36015:1;36004:9;36000:17;35993:47;36057:131;36183:4;36057:131;:::i;:::-;36049:139;;35776:419;;;:::o;36201:::-;36367:4;36405:2;36394:9;36390:18;36382:26;;36454:9;36448:4;36444:20;36440:1;36429:9;36425:17;36418:47;36482:131;36608:4;36482:131;:::i;:::-;36474:139;;36201:419;;;:::o;36626:346::-;36781:4;36819:2;36808:9;36804:18;36796:26;;36832:133;36962:1;36951:9;36947:17;36938:6;36832:133;:::i;:::-;36626:346;;;;:::o;36978:222::-;37071:4;37109:2;37098:9;37094:18;37086:26;;37122:71;37190:1;37179:9;37175:17;37166:6;37122:71;:::i;:::-;36978:222;;;;:::o;37206:129::-;37240:6;37267:20;;:::i;:::-;37257:30;;37296:33;37324:4;37316:6;37296:33;:::i;:::-;37206:129;;;:::o;37341:75::-;37374:6;37407:2;37401:9;37391:19;;37341:75;:::o;37422:307::-;37483:4;37573:18;37565:6;37562:30;37559:56;;;37595:18;;:::i;:::-;37559:56;37633:29;37655:6;37633:29;:::i;:::-;37625:37;;37717:4;37711;37707:15;37699:23;;37422:307;;;:::o;37735:98::-;37786:6;37820:5;37814:12;37804:22;;37735:98;;;:::o;37839:99::-;37891:6;37925:5;37919:12;37909:22;;37839:99;;;:::o;37944:168::-;38027:11;38061:6;38056:3;38049:19;38101:4;38096:3;38092:14;38077:29;;37944:168;;;;:::o;38118:147::-;38219:11;38256:3;38241:18;;38118:147;;;;:::o;38271:169::-;38355:11;38389:6;38384:3;38377:19;38429:4;38424:3;38420:14;38405:29;;38271:169;;;;:::o;38446:148::-;38548:11;38585:3;38570:18;;38446:148;;;;:::o;38600:273::-;38640:3;38659:20;38677:1;38659:20;:::i;:::-;38654:25;;38693:20;38711:1;38693:20;:::i;:::-;38688:25;;38815:1;38779:34;38775:42;38772:1;38769:49;38766:75;;;38821:18;;:::i;:::-;38766:75;38865:1;38862;38858:9;38851:16;;38600:273;;;;:::o;38879:305::-;38919:3;38938:20;38956:1;38938:20;:::i;:::-;38933:25;;38972:20;38990:1;38972:20;:::i;:::-;38967:25;;39126:1;39058:66;39054:74;39051:1;39048:81;39045:107;;;39132:18;;:::i;:::-;39045:107;39176:1;39173;39169:9;39162:16;;38879:305;;;;:::o;39190:185::-;39230:1;39247:20;39265:1;39247:20;:::i;:::-;39242:25;;39281:20;39299:1;39281:20;:::i;:::-;39276:25;;39320:1;39310:35;;39325:18;;:::i;:::-;39310:35;39367:1;39364;39360:9;39355:14;;39190:185;;;;:::o;39381:191::-;39421:4;39441:20;39459:1;39441:20;:::i;:::-;39436:25;;39475:20;39493:1;39475:20;:::i;:::-;39470:25;;39514:1;39511;39508:8;39505:34;;;39519:18;;:::i;:::-;39505:34;39564:1;39561;39557:9;39549:17;;39381:191;;;;:::o;39578:::-;39618:4;39638:20;39656:1;39638:20;:::i;:::-;39633:25;;39672:20;39690:1;39672:20;:::i;:::-;39667:25;;39711:1;39708;39705:8;39702:34;;;39716:18;;:::i;:::-;39702:34;39761:1;39758;39754:9;39746:17;;39578:191;;;;:::o;39775:96::-;39812:7;39841:24;39859:5;39841:24;:::i;:::-;39830:35;;39775:96;;;:::o;39877:90::-;39911:7;39954:5;39947:13;39940:21;39929:32;;39877:90;;;:::o;39973:149::-;40009:7;40049:66;40042:5;40038:78;40027:89;;39973:149;;;:::o;40128:118::-;40165:7;40205:34;40198:5;40194:46;40183:57;;40128:118;;;:::o;40252:126::-;40289:7;40329:42;40322:5;40318:54;40307:65;;40252:126;;;:::o;40384:77::-;40421:7;40450:5;40439:16;;40384:77;;;:::o;40467:101::-;40503:7;40543:18;40536:5;40532:30;40521:41;;40467:101;;;:::o;40574:154::-;40658:6;40653:3;40648;40635:30;40720:1;40711:6;40706:3;40702:16;40695:27;40574:154;;;:::o;40734:307::-;40802:1;40812:113;40826:6;40823:1;40820:13;40812:113;;;40911:1;40906:3;40902:11;40896:18;40892:1;40887:3;40883:11;40876:39;40848:2;40845:1;40841:10;40836:15;;40812:113;;;40943:6;40940:1;40937:13;40934:101;;;41023:1;41014:6;41009:3;41005:16;40998:27;40934:101;40783:258;40734:307;;;:::o;41047:171::-;41086:3;41109:24;41127:5;41109:24;:::i;:::-;41100:33;;41155:4;41148:5;41145:15;41142:41;;;41163:18;;:::i;:::-;41142:41;41210:1;41203:5;41199:13;41192:20;;41047:171;;;:::o;41224:320::-;41268:6;41305:1;41299:4;41295:12;41285:22;;41352:1;41346:4;41342:12;41373:18;41363:81;;41429:4;41421:6;41417:17;41407:27;;41363:81;41491:2;41483:6;41480:14;41460:18;41457:38;41454:84;;;41510:18;;:::i;:::-;41454:84;41275:269;41224:320;;;:::o;41550:281::-;41633:27;41655:4;41633:27;:::i;:::-;41625:6;41621:40;41763:6;41751:10;41748:22;41727:18;41715:10;41712:34;41709:62;41706:88;;;41774:18;;:::i;:::-;41706:88;41814:10;41810:2;41803:22;41593:238;41550:281;;:::o;41837:233::-;41876:3;41899:24;41917:5;41899:24;:::i;:::-;41890:33;;41945:66;41938:5;41935:77;41932:103;;;42015:18;;:::i;:::-;41932:103;42062:1;42055:5;42051:13;42044:20;;41837:233;;;:::o;42076:176::-;42108:1;42125:20;42143:1;42125:20;:::i;:::-;42120:25;;42159:20;42177:1;42159:20;:::i;:::-;42154:25;;42198:1;42188:35;;42203:18;;:::i;:::-;42188:35;42244:1;42241;42237:9;42232:14;;42076:176;;;;:::o;42258:180::-;42306:77;42303:1;42296:88;42403:4;42400:1;42393:15;42427:4;42424:1;42417:15;42444:180;42492:77;42489:1;42482:88;42589:4;42586:1;42579:15;42613:4;42610:1;42603:15;42630:180;42678:77;42675:1;42668:88;42775:4;42772:1;42765:15;42799:4;42796:1;42789:15;42816:180;42864:77;42861:1;42854:88;42961:4;42958:1;42951:15;42985:4;42982:1;42975:15;43002:180;43050:77;43047:1;43040:88;43147:4;43144:1;43137:15;43171:4;43168:1;43161:15;43188:117;43297:1;43294;43287:12;43311:117;43420:1;43417;43410:12;43434:117;43543:1;43540;43533:12;43557:117;43666:1;43663;43656:12;43680:117;43789:1;43786;43779:12;43803:117;43912:1;43909;43902:12;43926:102;43967:6;44018:2;44014:7;44009:2;44002:5;43998:14;43994:28;43984:38;;43926:102;;;:::o;44034:221::-;44174:34;44170:1;44162:6;44158:14;44151:58;44243:4;44238:2;44230:6;44226:15;44219:29;44034:221;:::o;44261:171::-;44401:23;44397:1;44389:6;44385:14;44378:47;44261:171;:::o;44438:225::-;44578:34;44574:1;44566:6;44562:14;44555:58;44647:8;44642:2;44634:6;44630:15;44623:33;44438:225;:::o;44669:229::-;44809:34;44805:1;44797:6;44793:14;44786:58;44878:12;44873:2;44865:6;44861:15;44854:37;44669:229;:::o;44904:163::-;45044:15;45040:1;45032:6;45028:14;45021:39;44904:163;:::o;45073:222::-;45213:34;45209:1;45201:6;45197:14;45190:58;45282:5;45277:2;45269:6;45265:15;45258:30;45073:222;:::o;45301:224::-;45441:34;45437:1;45429:6;45425:14;45418:58;45510:7;45505:2;45497:6;45493:15;45486:32;45301:224;:::o;45531:236::-;45671:34;45667:1;45659:6;45655:14;45648:58;45740:19;45735:2;45727:6;45723:15;45716:44;45531:236;:::o;45773:164::-;45913:16;45909:1;45901:6;45897:14;45890:40;45773:164;:::o;45943:159::-;46083:11;46079:1;46071:6;46067:14;46060:35;45943:159;:::o;46108:157::-;46248:9;46244:1;46236:6;46232:14;46225:33;46108:157;:::o;46271:244::-;46411:34;46407:1;46399:6;46395:14;46388:58;46480:27;46475:2;46467:6;46463:15;46456:52;46271:244;:::o;46521:174::-;46661:26;46657:1;46649:6;46645:14;46638:50;46521:174;:::o;46701:230::-;46841:34;46837:1;46829:6;46825:14;46818:58;46910:13;46905:2;46897:6;46893:15;46886:38;46701:230;:::o;46937:225::-;47077:34;47073:1;47065:6;47061:14;47054:58;47146:8;47141:2;47133:6;47129:15;47122:33;46937:225;:::o;47168:182::-;47308:34;47304:1;47296:6;47292:14;47285:58;47168:182;:::o;47356:234::-;47496:34;47492:1;47484:6;47480:14;47473:58;47565:17;47560:2;47552:6;47548:15;47541:42;47356:234;:::o;47596:176::-;47736:28;47732:1;47724:6;47720:14;47713:52;47596:176;:::o;47778:237::-;47918:34;47914:1;47906:6;47902:14;47895:58;47987:20;47982:2;47974:6;47970:15;47963:45;47778:237;:::o;48021:221::-;48161:34;48157:1;48149:6;48145:14;48138:58;48230:4;48225:2;48217:6;48213:15;48206:29;48021:221;:::o;48248:114::-;;:::o;48368:166::-;48508:18;48504:1;48496:6;48492:14;48485:42;48368:166;:::o;48540:238::-;48680:34;48676:1;48668:6;48664:14;48657:58;48749:21;48744:2;48736:6;48732:15;48725:46;48540:238;:::o;48784:179::-;48924:31;48920:1;48912:6;48908:14;48901:55;48784:179;:::o;48969:220::-;49109:34;49105:1;49097:6;49093:14;49086:58;49178:3;49173:2;49165:6;49161:15;49154:28;48969:220;:::o;49195:155::-;49335:7;49331:1;49323:6;49319:14;49312:31;49195:155;:::o;49356:233::-;49496:34;49492:1;49484:6;49480:14;49473:58;49565:16;49560:2;49552:6;49548:15;49541:41;49356:233;:::o;49595:225::-;49735:34;49731:1;49723:6;49719:14;49712:58;49804:8;49799:2;49791:6;49787:15;49780:33;49595:225;:::o;49826:181::-;49966:33;49962:1;49954:6;49950:14;49943:57;49826:181;:::o;50013:234::-;50153:34;50149:1;50141:6;50137:14;50130:58;50222:17;50217:2;50209:6;50205:15;50198:42;50013:234;:::o;50253:232::-;50393:34;50389:1;50381:6;50377:14;50370:58;50462:15;50457:2;50449:6;50445:15;50438:40;50253:232;:::o;50491:221::-;50631:34;50627:1;50619:6;50615:14;50608:58;50700:4;50695:2;50687:6;50683:15;50676:29;50491:221;:::o;50718:122::-;50791:24;50809:5;50791:24;:::i;:::-;50784:5;50781:35;50771:63;;50830:1;50827;50820:12;50771:63;50718:122;:::o;50846:116::-;50916:21;50931:5;50916:21;:::i;:::-;50909:5;50906:32;50896:60;;50952:1;50949;50942:12;50896:60;50846:116;:::o;50968:120::-;51040:23;51057:5;51040:23;:::i;:::-;51033:5;51030:34;51020:62;;51078:1;51075;51068:12;51020:62;50968:120;:::o;51094:122::-;51167:24;51185:5;51167:24;:::i;:::-;51160:5;51157:35;51147:63;;51206:1;51203;51196:12;51147:63;51094:122;:::o

Swarm Source

ipfs://2d7746cae871b5123f06904faab93c29f7434b457906df972baeda75ad51ea40
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.