ETH Price: $3,279.48 (-3.39%)
 

Overview

Max Total Supply

157 Datingverse Genesis

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
young13.eth
Balance
2 Datingverse Genesis
0x1a0a3e16a471888c9b16f303ea880ba71eec768e
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:
DatingVerse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : Datingverse.sol
// SPDX-License-Identifier: MIT
// _|_|_|                _|      _|
// _|    _|    _|_|_|  _|_|_|_|      _|_|_|      _|_|_|  _|      _|    _|_|    _|  _|_|    _|_|_|    _|_|
// _|    _|  _|    _|    _|      _|  _|    _|  _|    _|  _|      _|  _|_|_|_|  _|_|      _|_|      _|_|_|_|
// _|    _|  _|    _|    _|      _|  _|    _|  _|    _|    _|  _|    _|        _|            _|_|  _|
// _|_|_|      _|_|_|      _|_|  _|  _|    _|    _|_|_|      _|        _|_|_|  _|        _|_|_|      _|_|_|
//                                                   _|
pragma solidity ^ 0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract DatingVerse is Ownable, ERC721A, ReentrancyGuard
{
    using SafeMath for uint256;
    enum Status {
        Pending, DiamondPreMint, DiamondMint, WhiteMint, PublicMint, Refund, Finished
    }
    Status public status;
    bool private placeholder = true;
    bool private reservedTags = false;
    bool private refundTags = false;
    uint public refundStartTime;
    bytes32 public merkleRoot;
    bytes32 public diamondPreMerkleRoot;
    bytes32 public diamondMerkleRoot;
    uint256 public immutable maxTotalDiamondSupply;
    uint256 public immutable maxTotalSupply;
    uint256 public immutable maxMint;
    uint256 public immutable price;
    constructor() ERC721A("Datingverse Genesis", "Datingverse Genesis") {
        maxTotalDiamondSupply = 500;
        maxTotalSupply = 5000;
        maxMint = 2;
        price = 0.1 ether;
        status = Status.Pending;
    }
    // Reserve some Datingverses for kol
    function reserveDatingverses() external onlyOwner {
        if (!reservedTags) {
            _safeMint(msg.sender, 20);
            reservedTags = true;
        }
    }
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract!");
        _;
    }
    modifier mintQuantityVerify(uint256 quantity) {
        require(quantity > 0, "quantity > 0");
        require(_numberMinted(msg.sender) + quantity <= maxMint, "Max supply exceeded!");
        _;
    }
    modifier mintPriceVerify(uint256 quantity) {
        require(msg.value >= price * quantity, "Insufficient funds!");
        _;
    }
    function setStatus(Status _status) external onlyOwner {
        if(status == Status.Refund){
            require(refundStartTime + 10 days <= block.timestamp, "The refund time is not over yet!");
        }else if(_status == Status.Refund){
            require(!refundTags,"Refund completed");
            refundTags = true;
            refundStartTime = block.timestamp;
        }
        status = _status;
    }
    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }
    function setDiamondPreMerkleRoot(bytes32 root) external onlyOwner {
        diamondPreMerkleRoot = root;
    }
    function setDiamondMerkleRoot(bytes32 root) external onlyOwner {
        diamondMerkleRoot = root;
    }
    function getPrice() public view returns(uint256) {
        return price;
    }
    function _startTokenId() override internal view virtual returns(uint256) {
        return 1;
    }
    function diamondPreMint(uint256 index, bytes32[] calldata merkleProof, uint256 quantity) external payable callerIsUser mintQuantityVerify(quantity) mintPriceVerify(quantity) {
        require(status == Status.DiamondPreMint, "diamondPreMint has not started yet!");
        bytes32 leaf = keccak256(abi.encodePacked(index, msg.sender));
        require(MerkleProof.verify(merkleProof, diamondPreMerkleRoot, leaf), "Invalid merkle proof!");
        require(totalSupply() + quantity <= maxTotalDiamondSupply, "diamondSale would exceed max supply!");
        _safeMint(msg.sender, quantity);
    }
    function diamondMint(uint256 index, bytes32[] calldata merkleProof, uint256 quantity) external payable callerIsUser mintQuantityVerify(quantity) mintPriceVerify(quantity) {
        require(status == Status.DiamondMint, "diamondMint has not started yet!");
        bytes32 leaf = keccak256(abi.encodePacked(index, msg.sender));
        require(MerkleProof.verify(merkleProof, diamondMerkleRoot, leaf), "Invalid merkle proof!");
        require(totalSupply() + quantity <= maxTotalDiamondSupply, "diamondSale would exceed max supply!");
        _safeMint(msg.sender, quantity);
    }
    function whiteMint(uint256 index, bytes32[] calldata merkleProof, uint256 quantity) external payable callerIsUser mintQuantityVerify(quantity) mintPriceVerify(quantity) {
        require(status == Status.WhiteMint, "whiteMint has not started yet!");
        bytes32 leaf = keccak256(abi.encodePacked(index, msg.sender));
        require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid merkle proof!");
        require(totalSupply() + quantity <= maxTotalSupply, "whiteSale would exceed max supply!");
        _safeMint(msg.sender, quantity);
    }
    function publicMint(uint256 quantity) external payable callerIsUser mintQuantityVerify(quantity) mintPriceVerify(quantity)
    {
        require(status == Status.PublicMint, "publicMint has not started yet!");
        _safeMint(msg.sender, quantity);
    }
    // // metadata URI
    string private _baseTokenURI;
    function _baseURI() internal view virtual override returns(string memory) {
        return _baseTokenURI;
    }
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    function tokenURI(uint256 tokenId) public view override(ERC721A) returns(string memory) {
        if (placeholder) {
            return string(abi.encodePacked(_baseTokenURI));
        }
        else {
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
        }
    }
    function togglePlaceholder() external onlyOwner {
        placeholder = !placeholder;
    }
    // Withdraw contract balance to creator (mnemonic seed address 0)
    function withdraw() external onlyOwner
    {
        require(status == Status.Finished && refundTags, "Invalid status!");
        uint256 balance = address(this) .balance;
        Address.sendValue(payable(msg.sender),balance);
    }

    function refund(uint256[] memory tokenIds) external callerIsUser {
        require(status == Status.Refund, "refund has not started yet!");
        require(tokenIds.length > 0, "no tokenId support!");
        require(tokenIds.length <= maxTotalSupply, "Invalid token!");
        for (uint i = 0; i < tokenIds.length; i++) {
            require(ownerOf(tokenIds[i]) == msg.sender, "Invalid owner!");
            _burn(tokenIds[i]);
        }
        uint256 totalCost = price * tokenIds.length;
        Address.sendValue(payable(msg.sender), totalCost);
    }
}

File 2 of 17 : 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 3 of 17 : 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 17 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 17 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 6 of 17 : 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 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 17 : 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 10 of 17 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 11 of 17 : 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 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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 16 of 17 : 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);
}

File 17 of 17 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"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":"diamondMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"diamondMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"diamondPreMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"diamondPreMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalDiamondSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refundStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveDatingverses","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":"bytes32","name":"root","type":"bytes32"}],"name":"setDiamondMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setDiamondPreMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DatingVerse.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum DatingVerse.Status","name":"","type":"uint8"}],"stateMutability":"view","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":"togglePlaceholder","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040819052600a805463ffffff00191690911790553480156200002457600080fd5b5060405180604001604052806013815260200172446174696e6776657273652047656e6573697360681b81525060405180604001604052806013815260200172446174696e6776657273652047656e6573697360681b8152506200009762000091620000fa60201b60201c565b620000fe565b8151620000ac9060039060208501906200014e565b508051620000c29060049060208401906200014e565b50600180815560095550506101f460805261138860a052600260c05267016345785d8a000060e052600a805460ff1916905562000231565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015c90620001f4565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600181811c908216806200020957607f821691505b602082108114156200022b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612d85620002c6600039600081816105c30152818161060f015281816109d301528181610efc0152818161123c01528181611547015261166401526000818161052c0152818161097b01528181610ea4015281816111e4015261160c0152600081816103710152818161142d01526117c701526000818161046d015261105f0152612d856000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063a22cb465116100ab578063c3ad3c661161006f578063c3ad3c66146106ba578063c87b56dd146106cd578063e47a6f39146106ed578063e985e9c51461070d578063f2fde38b1461075657600080fd5b8063a22cb46514610631578063a557f65514610651578063aa613df514610664578063b88d4fde14610684578063c1950fcd146106a457600080fd5b80638da5cb5b116100f25780638da5cb5b1461058157806395d89b411461059f57806398d5fdca146105b45780639bed4a71146105e7578063a035b1fe146105fd57600080fd5b8063715018a6146104e5578063742184dc146104fa5780637501f7411461051a5780637cb647591461054e578063854b7f991461056e57600080fd5b80632eb4a7ab116101bc57806355f804b31161018057806355f804b31461043b578063581b19a31461045b5780636352211e1461048f5780636aba899b146104af57806370a08231146104c557600080fd5b80632eb4a7ab146103c657806337607b76146103dc5780633ccfd60b146103f157806342842e0e14610406578063524061aa1461042657600080fd5b8063200d2ed211610203578063200d2ed21461031857806323b872dd1461033f5780632ab4d0521461035f5780632db11544146103935780632e49d78b146103a657600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046127b7565b610776565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107c8565b60405161026c9190612a83565b3480156102a357600080fd5b506102b76102b236600461279e565b61085a565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046126c8565b61089e565b005b3480156102fd57600080fd5b5060025460015403600019015b60405190815260200161026c565b34801561032457600080fd5b50600a546103329060ff1681565b60405161026c9190612a5b565b34801561034b57600080fd5b506102ef61035a366004612591565b610925565b34801561036b57600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b6102ef6103a136600461279e565b610930565b3480156103b257600080fd5b506102ef6103c13660046127f1565b610a86565b3480156103d257600080fd5b5061030a600c5481565b3480156103e857600080fd5b506102ef610bda565b3480156103fd57600080fd5b506102ef610c21565b34801561041257600080fd5b506102ef610421366004612591565b610cc6565b34801561043257600080fd5b506102ef610ce1565b34801561044757600080fd5b506102ef610456366004612812565b610d3a565b34801561046757600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049b57600080fd5b506102b76104aa36600461279e565b610d70565b3480156104bb57600080fd5b5061030a600b5481565b3480156104d157600080fd5b5061030a6104e036600461253c565b610d82565b3480156104f157600080fd5b506102ef610dd0565b34801561050657600080fd5b506102ef61051536600461279e565b610e04565b34801561052657600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055a57600080fd5b506102ef61056936600461279e565b610e33565b6102ef61057c366004612883565b610e62565b34801561058d57600080fd5b506000546001600160a01b03166102b7565b3480156105ab57600080fd5b5061028a6110fd565b3480156105c057600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061030a565b3480156105f357600080fd5b5061030a600e5481565b34801561060957600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063d57600080fd5b506102ef61064c36600461268c565b61110c565b6102ef61065f366004612883565b6111a2565b34801561067057600080fd5b506102ef61067f3660046126f2565b61135f565b34801561069057600080fd5b506102ef61069f3660046125cd565b611580565b3480156106b057600080fd5b5061030a600d5481565b6102ef6106c8366004612883565b6115ca565b3480156106d957600080fd5b5061028a6106e836600461279e565b611851565b3480156106f957600080fd5b506102ef61070836600461279e565b6118ad565b34801561071957600080fd5b5061026061072836600461255e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076257600080fd5b506102ef61077136600461253c565b6118dc565b60006001600160e01b031982166380ac58cd60e01b14806107a757506001600160e01b03198216635b5e139f60e01b145b806107c257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107d790612c41565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c41565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611974565b610882576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108a982610d70565b9050806001600160a01b0316836001600160a01b031614156108de5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610915576108f88133610728565b610915576040516367d9dca160e11b815260040160405180910390fd5b6109208383836119ad565b505050565b610920838383611a09565b3233146109585760405162461bcd60e51b815260040161094f90612acb565b60405180910390fd5b80600081116109795760405162461bcd60e51b815260040161094f90612b30565b7f0000000000000000000000000000000000000000000000000000000000000000816109a433611be4565b6109ae9190612bb3565b11156109cc5760405162461bcd60e51b815260040161094f90612b02565b816109f7817f0000000000000000000000000000000000000000000000000000000000000000612bdf565b341015610a165760405162461bcd60e51b815260040161094f90612b56565b6004600a5460ff166006811115610a2f57610a2f612cd7565b14610a7c5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69634d696e7420686173206e6f742073746172746564207965742100604482015260640161094f565b6109203384611c0f565b6000546001600160a01b03163314610ab05760405162461bcd60e51b815260040161094f90612a96565b6005600a5460ff166006811115610ac957610ac9612cd7565b1415610b345742600b54620d2f00610ae19190612bb3565b1115610b2f5760405162461bcd60e51b815260206004820181905260248201527f54686520726566756e642074696d65206973206e6f74206f7665722079657421604482015260640161094f565b610bb3565b6005816006811115610b4857610b48612cd7565b1415610bb357600a546301000000900460ff1615610b9b5760405162461bcd60e51b815260206004820152601060248201526f1499599d5b990818dbdb5c1b195d195960821b604482015260640161094f565b600a805463ff0000001916630100000017905542600b555b600a805482919060ff19166001836006811115610bd257610bd2612cd7565b021790555050565b6000546001600160a01b03163314610c045760405162461bcd60e51b815260040161094f90612a96565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161094f90612a96565b6006600a5460ff166006811115610c6457610c64612cd7565b148015610c7a5750600a546301000000900460ff165b610cb85760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964207374617475732160881b604482015260640161094f565b47610cc33382611c29565b50565b61092083838360405180602001604052806000815250611580565b6000546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161094f90612a96565b600a5462010000900460ff16610d3857610d26336014611c0f565b600a805462ff00001916620100001790555b565b6000546001600160a01b03163314610d645760405162461bcd60e51b815260040161094f90612a96565b610920600f838361248c565b6000610d7b82611d42565b5192915050565b60006001600160a01b038216610dab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161094f90612a96565b610d386000611e64565b6000546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161094f90612a96565b600e55565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161094f90612a96565b600c55565b323314610e815760405162461bcd60e51b815260040161094f90612acb565b8060008111610ea25760405162461bcd60e51b815260040161094f90612b30565b7f000000000000000000000000000000000000000000000000000000000000000081610ecd33611be4565b610ed79190612bb3565b1115610ef55760405162461bcd60e51b815260040161094f90612b02565b81610f20817f0000000000000000000000000000000000000000000000000000000000000000612bdf565b341015610f3f5760405162461bcd60e51b815260040161094f90612b56565b6002600a5460ff166006811115610f5857610f58612cd7565b14610fa55760405162461bcd60e51b815260206004820181905260248201527f6469616d6f6e644d696e7420686173206e6f7420737461727465642079657421604482015260640161094f565b60008633604051602001610fba9291906129fe565b60405160208183030381529060405280519060200120905061101386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611eb4565b6110575760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964206d65726b6c652070726f6f662160581b604482015260640161094f565b6002546001547f000000000000000000000000000000000000000000000000000000000000000091869103600019016110909190612bb3565b11156110ea5760405162461bcd60e51b8152602060048201526024808201527f6469616d6f6e6453616c6520776f756c6420657863656564206d617820737570604482015263706c792160e01b606482015260840161094f565b6110f43385611c0f565b50505050505050565b6060600480546107d790612c41565b6001600160a01b0382163314156111365760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146111c15760405162461bcd60e51b815260040161094f90612acb565b80600081116111e25760405162461bcd60e51b815260040161094f90612b30565b7f00000000000000000000000000000000000000000000000000000000000000008161120d33611be4565b6112179190612bb3565b11156112355760405162461bcd60e51b815260040161094f90612b02565b81611260817f0000000000000000000000000000000000000000000000000000000000000000612bdf565b34101561127f5760405162461bcd60e51b815260040161094f90612b56565b6001600a5460ff16600681111561129857611298612cd7565b146112f15760405162461bcd60e51b815260206004820152602360248201527f6469616d6f6e645072654d696e7420686173206e6f742073746172746564207960448201526265742160e81b606482015260840161094f565b600086336040516020016113069291906129fe565b60405160208183030381529060405280519060200120905061101386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611eb4565b32331461137e5760405162461bcd60e51b815260040161094f90612acb565b6005600a5460ff16600681111561139757611397612cd7565b146113e45760405162461bcd60e51b815260206004820152601b60248201527f726566756e6420686173206e6f74207374617274656420796574210000000000604482015260640161094f565b600081511161142b5760405162461bcd60e51b81526020600482015260136024820152726e6f20746f6b656e496420737570706f72742160681b604482015260640161094f565b7f00000000000000000000000000000000000000000000000000000000000000008151111561148d5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420746f6b656e2160901b604482015260640161094f565b60005b815181101561154057336001600160a01b03166114c58383815181106114b8576114b8612ced565b6020026020010151610d70565b6001600160a01b03161461150c5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964206f776e65722160901b604482015260640161094f565b61152e82828151811061152157611521612ced565b6020026020010151611eca565b8061153881612c7c565b915050611490565b50600081517f00000000000000000000000000000000000000000000000000000000000000006115709190612bdf565b905061157c3382611c29565b5050565b61158b848484611a09565b6001600160a01b0383163b156115c4576115a784848484611ed5565b6115c4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146115e95760405162461bcd60e51b815260040161094f90612acb565b806000811161160a5760405162461bcd60e51b815260040161094f90612b30565b7f00000000000000000000000000000000000000000000000000000000000000008161163533611be4565b61163f9190612bb3565b111561165d5760405162461bcd60e51b815260040161094f90612b02565b81611688817f0000000000000000000000000000000000000000000000000000000000000000612bdf565b3410156116a75760405162461bcd60e51b815260040161094f90612b56565b6003600a5460ff1660068111156116c0576116c0612cd7565b1461170d5760405162461bcd60e51b815260206004820152601e60248201527f77686974654d696e7420686173206e6f74207374617274656420796574210000604482015260640161094f565b600086336040516020016117229291906129fe565b60405160208183030381529060405280519060200120905061177b86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611eb4565b6117bf5760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964206d65726b6c652070726f6f662160581b604482015260640161094f565b6002546001547f000000000000000000000000000000000000000000000000000000000000000091869103600019016117f89190612bb3565b11156110ea5760405162461bcd60e51b815260206004820152602260248201527f776869746553616c6520776f756c6420657863656564206d617820737570706c604482015261792160f01b606482015260840161094f565b600a54606090610100900460ff161561188c57600f60405160200161187691906129cd565b6040516020818303038152906040529050919050565b600f61189783611fcd565b6040516020016118769291906129d9565b919050565b6000546001600160a01b031633146118d75760405162461bcd60e51b815260040161094f90612a96565b600d55565b6000546001600160a01b031633146119065760405162461bcd60e51b815260040161094f90612a96565b6001600160a01b03811661196b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b610cc381611e64565b600081600111158015611988575060015482105b80156107c2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a1482611d42565b9050836001600160a01b031681600001516001600160a01b031614611a4b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a695750611a698533610728565b80611a84575033611a798461085a565b6001600160a01b0316145b905080611aa457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611acb57604051633a954ecd60e21b815260040160405180910390fd5b611ad7600084876119ad565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bab576001548214611bab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612d3083398151915260405160405180910390a45050505050565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b61157c8282604051806020016040528060008152506120ca565b80471015611c795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161094f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611cc6576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b606091505b50509050806109205760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161094f565b60408051606081018252600080825260208201819052918101919091528180600111611e4b57600154811015611e4b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e495780516001600160a01b031615611de0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e44579392505050565b611de0565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082611ec18584612264565b14949350505050565b610cc38160006122d8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f0a903390899088908890600401612a1e565b602060405180830381600087803b158015611f2457600080fd5b505af1925050508015611f54575060408051601f3d908101601f19168201909252611f51918101906127d4565b60015b611faf573d808015611f82576040519150601f19603f3d011682016040523d82523d6000602084013e611f87565b606091505b508051611fa7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611ff15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201b578061200581612c7c565b91506120149050600a83612bcb565b9150611ff5565b6000816001600160401b0381111561203557612035612d03565b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611fc557612074600183612bfe565b9150612081600a86612c97565b61208c906030612bb3565b60f81b8183815181106120a1576120a1612ced565b60200101906001600160f81b031916908160001a9053506120c3600a86612bcb565b9450612063565b6001546001600160a01b0384166120f357604051622e076360e81b815260040160405180910390fd5b826121115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612222575b60405182906001600160a01b03881690600090600080516020612d30833981519152908290a46121eb6000878480600101955087611ed5565b612208576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121b257826001541461221d57600080fd5b612255565b5b6040516001830192906001600160a01b03881690600090600080516020612d30833981519152908290a4808210612223575b506001556115c4600085838684565b600081815b84518110156122d057600085828151811061228657612286612ced565b602002602001015190508083116122ac57600083815260208290526040902092506122bd565b600081815260208490526040902092505b50806122c881612c7c565b915050612269565b509392505050565b60006122e383611d42565b80519091508215612349576000336001600160a01b038316148061230c575061230c8233610728565b8061232757503361231c8661085a565b6001600160a01b0316145b90508061234757604051632ce44b5f60e11b815260040160405180910390fd5b505b612355600085836119ad565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661245357600154821461245357805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612d30833981519152908390a450506002805460010190555050565b82805461249890612c41565b90600052602060002090601f0160209004810192826124ba5760008555612500565b82601f106124d35782800160ff19823516178555612500565b82800160010185558215612500579182015b828111156125005782358255916020019190600101906124e5565b5061250c929150612510565b5090565b5b8082111561250c5760008155600101612511565b80356001600160a01b03811681146118a857600080fd5b60006020828403121561254e57600080fd5b61255782612525565b9392505050565b6000806040838503121561257157600080fd5b61257a83612525565b915061258860208401612525565b90509250929050565b6000806000606084860312156125a657600080fd5b6125af84612525565b92506125bd60208501612525565b9150604084013590509250925092565b600080600080608085870312156125e357600080fd5b6125ec85612525565b935060206125fb818701612525565b93506040860135925060608601356001600160401b038082111561261e57600080fd5b818801915088601f83011261263257600080fd5b81358181111561264457612644612d03565b612656601f8201601f19168501612b83565b9150808252898482850101111561266c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561269f57600080fd5b6126a883612525565b9150602083013580151581146126bd57600080fd5b809150509250929050565b600080604083850312156126db57600080fd5b6126e483612525565b946020939093013593505050565b6000602080838503121561270557600080fd5b82356001600160401b038082111561271c57600080fd5b818501915085601f83011261273057600080fd5b81358181111561274257612742612d03565b8060051b9150612753848301612b83565b8181528481019084860184860187018a101561276e57600080fd5b600095505b83861015612791578035835260019590950194918601918601612773565b5098975050505050505050565b6000602082840312156127b057600080fd5b5035919050565b6000602082840312156127c957600080fd5b813561255781612d19565b6000602082840312156127e657600080fd5b815161255781612d19565b60006020828403121561280357600080fd5b81356007811061255757600080fd5b6000806020838503121561282557600080fd5b82356001600160401b038082111561283c57600080fd5b818501915085601f83011261285057600080fd5b81358181111561285f57600080fd5b86602082850101111561287157600080fd5b60209290920196919550909350505050565b6000806000806060858703121561289957600080fd5b8435935060208501356001600160401b03808211156128b757600080fd5b818701915087601f8301126128cb57600080fd5b8135818111156128da57600080fd5b8860208260051b85010111156128ef57600080fd5b95986020929092019750949560400135945092505050565b6000815180845261291f816020860160208601612c15565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061294d57607f831692505b602080841082141561296f57634e487b7160e01b600052602260045260246000fd5b8180156129835760018114612994576129c1565b60ff198616895284890196506129c1565b60008881526020902060005b868110156129b95781548b8201529085019083016129a0565b505084890196505b50505050505092915050565b60006125578284612933565b60006129e58285612933565b83516129f5818360208801612c15565b01949350505050565b91825260601b6bffffffffffffffffffffffff1916602082015260340190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5190830184612907565b9695505050505050565b6020810160078310612a7d57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006125576020830184612907565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252600c908201526b07175616e74697479203e20360a41b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d03565b604052919050565b60008219821115612bc657612bc6612cab565b500190565b600082612bda57612bda612cc1565b500490565b6000816000190483118215151615612bf957612bf9612cab565b500290565b600082821015612c1057612c10612cab565b500390565b60005b83811015612c30578181015183820152602001612c18565b838111156115c45750506000910152565b600181811c90821680612c5557607f821691505b60208210811415612c7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9057612c90612cab565b5060010190565b600082612ca657612ca6612cc1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204816cd81a4d7704327657525e6a6776ac71aec75c08be16c2281465298eb4fbb64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063a22cb465116100ab578063c3ad3c661161006f578063c3ad3c66146106ba578063c87b56dd146106cd578063e47a6f39146106ed578063e985e9c51461070d578063f2fde38b1461075657600080fd5b8063a22cb46514610631578063a557f65514610651578063aa613df514610664578063b88d4fde14610684578063c1950fcd146106a457600080fd5b80638da5cb5b116100f25780638da5cb5b1461058157806395d89b411461059f57806398d5fdca146105b45780639bed4a71146105e7578063a035b1fe146105fd57600080fd5b8063715018a6146104e5578063742184dc146104fa5780637501f7411461051a5780637cb647591461054e578063854b7f991461056e57600080fd5b80632eb4a7ab116101bc57806355f804b31161018057806355f804b31461043b578063581b19a31461045b5780636352211e1461048f5780636aba899b146104af57806370a08231146104c557600080fd5b80632eb4a7ab146103c657806337607b76146103dc5780633ccfd60b146103f157806342842e0e14610406578063524061aa1461042657600080fd5b8063200d2ed211610203578063200d2ed21461031857806323b872dd1461033f5780632ab4d0521461035f5780632db11544146103935780632e49d78b146103a657600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046127b7565b610776565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107c8565b60405161026c9190612a83565b3480156102a357600080fd5b506102b76102b236600461279e565b61085a565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046126c8565b61089e565b005b3480156102fd57600080fd5b5060025460015403600019015b60405190815260200161026c565b34801561032457600080fd5b50600a546103329060ff1681565b60405161026c9190612a5b565b34801561034b57600080fd5b506102ef61035a366004612591565b610925565b34801561036b57600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000138881565b6102ef6103a136600461279e565b610930565b3480156103b257600080fd5b506102ef6103c13660046127f1565b610a86565b3480156103d257600080fd5b5061030a600c5481565b3480156103e857600080fd5b506102ef610bda565b3480156103fd57600080fd5b506102ef610c21565b34801561041257600080fd5b506102ef610421366004612591565b610cc6565b34801561043257600080fd5b506102ef610ce1565b34801561044757600080fd5b506102ef610456366004612812565b610d3a565b34801561046757600080fd5b5061030a7f00000000000000000000000000000000000000000000000000000000000001f481565b34801561049b57600080fd5b506102b76104aa36600461279e565b610d70565b3480156104bb57600080fd5b5061030a600b5481565b3480156104d157600080fd5b5061030a6104e036600461253c565b610d82565b3480156104f157600080fd5b506102ef610dd0565b34801561050657600080fd5b506102ef61051536600461279e565b610e04565b34801561052657600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000281565b34801561055a57600080fd5b506102ef61056936600461279e565b610e33565b6102ef61057c366004612883565b610e62565b34801561058d57600080fd5b506000546001600160a01b03166102b7565b3480156105ab57600080fd5b5061028a6110fd565b3480156105c057600080fd5b507f000000000000000000000000000000000000000000000000016345785d8a000061030a565b3480156105f357600080fd5b5061030a600e5481565b34801561060957600080fd5b5061030a7f000000000000000000000000000000000000000000000000016345785d8a000081565b34801561063d57600080fd5b506102ef61064c36600461268c565b61110c565b6102ef61065f366004612883565b6111a2565b34801561067057600080fd5b506102ef61067f3660046126f2565b61135f565b34801561069057600080fd5b506102ef61069f3660046125cd565b611580565b3480156106b057600080fd5b5061030a600d5481565b6102ef6106c8366004612883565b6115ca565b3480156106d957600080fd5b5061028a6106e836600461279e565b611851565b3480156106f957600080fd5b506102ef61070836600461279e565b6118ad565b34801561071957600080fd5b5061026061072836600461255e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076257600080fd5b506102ef61077136600461253c565b6118dc565b60006001600160e01b031982166380ac58cd60e01b14806107a757506001600160e01b03198216635b5e139f60e01b145b806107c257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107d790612c41565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c41565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611974565b610882576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108a982610d70565b9050806001600160a01b0316836001600160a01b031614156108de5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610915576108f88133610728565b610915576040516367d9dca160e11b815260040160405180910390fd5b6109208383836119ad565b505050565b610920838383611a09565b3233146109585760405162461bcd60e51b815260040161094f90612acb565b60405180910390fd5b80600081116109795760405162461bcd60e51b815260040161094f90612b30565b7f0000000000000000000000000000000000000000000000000000000000000002816109a433611be4565b6109ae9190612bb3565b11156109cc5760405162461bcd60e51b815260040161094f90612b02565b816109f7817f000000000000000000000000000000000000000000000000016345785d8a0000612bdf565b341015610a165760405162461bcd60e51b815260040161094f90612b56565b6004600a5460ff166006811115610a2f57610a2f612cd7565b14610a7c5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69634d696e7420686173206e6f742073746172746564207965742100604482015260640161094f565b6109203384611c0f565b6000546001600160a01b03163314610ab05760405162461bcd60e51b815260040161094f90612a96565b6005600a5460ff166006811115610ac957610ac9612cd7565b1415610b345742600b54620d2f00610ae19190612bb3565b1115610b2f5760405162461bcd60e51b815260206004820181905260248201527f54686520726566756e642074696d65206973206e6f74206f7665722079657421604482015260640161094f565b610bb3565b6005816006811115610b4857610b48612cd7565b1415610bb357600a546301000000900460ff1615610b9b5760405162461bcd60e51b815260206004820152601060248201526f1499599d5b990818dbdb5c1b195d195960821b604482015260640161094f565b600a805463ff0000001916630100000017905542600b555b600a805482919060ff19166001836006811115610bd257610bd2612cd7565b021790555050565b6000546001600160a01b03163314610c045760405162461bcd60e51b815260040161094f90612a96565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161094f90612a96565b6006600a5460ff166006811115610c6457610c64612cd7565b148015610c7a5750600a546301000000900460ff165b610cb85760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964207374617475732160881b604482015260640161094f565b47610cc33382611c29565b50565b61092083838360405180602001604052806000815250611580565b6000546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161094f90612a96565b600a5462010000900460ff16610d3857610d26336014611c0f565b600a805462ff00001916620100001790555b565b6000546001600160a01b03163314610d645760405162461bcd60e51b815260040161094f90612a96565b610920600f838361248c565b6000610d7b82611d42565b5192915050565b60006001600160a01b038216610dab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161094f90612a96565b610d386000611e64565b6000546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161094f90612a96565b600e55565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161094f90612a96565b600c55565b323314610e815760405162461bcd60e51b815260040161094f90612acb565b8060008111610ea25760405162461bcd60e51b815260040161094f90612b30565b7f000000000000000000000000000000000000000000000000000000000000000281610ecd33611be4565b610ed79190612bb3565b1115610ef55760405162461bcd60e51b815260040161094f90612b02565b81610f20817f000000000000000000000000000000000000000000000000016345785d8a0000612bdf565b341015610f3f5760405162461bcd60e51b815260040161094f90612b56565b6002600a5460ff166006811115610f5857610f58612cd7565b14610fa55760405162461bcd60e51b815260206004820181905260248201527f6469616d6f6e644d696e7420686173206e6f7420737461727465642079657421604482015260640161094f565b60008633604051602001610fba9291906129fe565b60405160208183030381529060405280519060200120905061101386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611eb4565b6110575760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964206d65726b6c652070726f6f662160581b604482015260640161094f565b6002546001547f00000000000000000000000000000000000000000000000000000000000001f491869103600019016110909190612bb3565b11156110ea5760405162461bcd60e51b8152602060048201526024808201527f6469616d6f6e6453616c6520776f756c6420657863656564206d617820737570604482015263706c792160e01b606482015260840161094f565b6110f43385611c0f565b50505050505050565b6060600480546107d790612c41565b6001600160a01b0382163314156111365760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146111c15760405162461bcd60e51b815260040161094f90612acb565b80600081116111e25760405162461bcd60e51b815260040161094f90612b30565b7f00000000000000000000000000000000000000000000000000000000000000028161120d33611be4565b6112179190612bb3565b11156112355760405162461bcd60e51b815260040161094f90612b02565b81611260817f000000000000000000000000000000000000000000000000016345785d8a0000612bdf565b34101561127f5760405162461bcd60e51b815260040161094f90612b56565b6001600a5460ff16600681111561129857611298612cd7565b146112f15760405162461bcd60e51b815260206004820152602360248201527f6469616d6f6e645072654d696e7420686173206e6f742073746172746564207960448201526265742160e81b606482015260840161094f565b600086336040516020016113069291906129fe565b60405160208183030381529060405280519060200120905061101386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611eb4565b32331461137e5760405162461bcd60e51b815260040161094f90612acb565b6005600a5460ff16600681111561139757611397612cd7565b146113e45760405162461bcd60e51b815260206004820152601b60248201527f726566756e6420686173206e6f74207374617274656420796574210000000000604482015260640161094f565b600081511161142b5760405162461bcd60e51b81526020600482015260136024820152726e6f20746f6b656e496420737570706f72742160681b604482015260640161094f565b7f00000000000000000000000000000000000000000000000000000000000013888151111561148d5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420746f6b656e2160901b604482015260640161094f565b60005b815181101561154057336001600160a01b03166114c58383815181106114b8576114b8612ced565b6020026020010151610d70565b6001600160a01b03161461150c5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964206f776e65722160901b604482015260640161094f565b61152e82828151811061152157611521612ced565b6020026020010151611eca565b8061153881612c7c565b915050611490565b50600081517f000000000000000000000000000000000000000000000000016345785d8a00006115709190612bdf565b905061157c3382611c29565b5050565b61158b848484611a09565b6001600160a01b0383163b156115c4576115a784848484611ed5565b6115c4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146115e95760405162461bcd60e51b815260040161094f90612acb565b806000811161160a5760405162461bcd60e51b815260040161094f90612b30565b7f00000000000000000000000000000000000000000000000000000000000000028161163533611be4565b61163f9190612bb3565b111561165d5760405162461bcd60e51b815260040161094f90612b02565b81611688817f000000000000000000000000000000000000000000000000016345785d8a0000612bdf565b3410156116a75760405162461bcd60e51b815260040161094f90612b56565b6003600a5460ff1660068111156116c0576116c0612cd7565b1461170d5760405162461bcd60e51b815260206004820152601e60248201527f77686974654d696e7420686173206e6f74207374617274656420796574210000604482015260640161094f565b600086336040516020016117229291906129fe565b60405160208183030381529060405280519060200120905061177b86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611eb4565b6117bf5760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964206d65726b6c652070726f6f662160581b604482015260640161094f565b6002546001547f000000000000000000000000000000000000000000000000000000000000138891869103600019016117f89190612bb3565b11156110ea5760405162461bcd60e51b815260206004820152602260248201527f776869746553616c6520776f756c6420657863656564206d617820737570706c604482015261792160f01b606482015260840161094f565b600a54606090610100900460ff161561188c57600f60405160200161187691906129cd565b6040516020818303038152906040529050919050565b600f61189783611fcd565b6040516020016118769291906129d9565b919050565b6000546001600160a01b031633146118d75760405162461bcd60e51b815260040161094f90612a96565b600d55565b6000546001600160a01b031633146119065760405162461bcd60e51b815260040161094f90612a96565b6001600160a01b03811661196b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b610cc381611e64565b600081600111158015611988575060015482105b80156107c2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a1482611d42565b9050836001600160a01b031681600001516001600160a01b031614611a4b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a695750611a698533610728565b80611a84575033611a798461085a565b6001600160a01b0316145b905080611aa457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611acb57604051633a954ecd60e21b815260040160405180910390fd5b611ad7600084876119ad565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bab576001548214611bab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612d3083398151915260405160405180910390a45050505050565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b61157c8282604051806020016040528060008152506120ca565b80471015611c795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161094f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611cc6576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b606091505b50509050806109205760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161094f565b60408051606081018252600080825260208201819052918101919091528180600111611e4b57600154811015611e4b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e495780516001600160a01b031615611de0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e44579392505050565b611de0565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082611ec18584612264565b14949350505050565b610cc38160006122d8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f0a903390899088908890600401612a1e565b602060405180830381600087803b158015611f2457600080fd5b505af1925050508015611f54575060408051601f3d908101601f19168201909252611f51918101906127d4565b60015b611faf573d808015611f82576040519150601f19603f3d011682016040523d82523d6000602084013e611f87565b606091505b508051611fa7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611ff15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201b578061200581612c7c565b91506120149050600a83612bcb565b9150611ff5565b6000816001600160401b0381111561203557612035612d03565b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611fc557612074600183612bfe565b9150612081600a86612c97565b61208c906030612bb3565b60f81b8183815181106120a1576120a1612ced565b60200101906001600160f81b031916908160001a9053506120c3600a86612bcb565b9450612063565b6001546001600160a01b0384166120f357604051622e076360e81b815260040160405180910390fd5b826121115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612222575b60405182906001600160a01b03881690600090600080516020612d30833981519152908290a46121eb6000878480600101955087611ed5565b612208576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121b257826001541461221d57600080fd5b612255565b5b6040516001830192906001600160a01b03881690600090600080516020612d30833981519152908290a4808210612223575b506001556115c4600085838684565b600081815b84518110156122d057600085828151811061228657612286612ced565b602002602001015190508083116122ac57600083815260208290526040902092506122bd565b600081815260208490526040902092505b50806122c881612c7c565b915050612269565b509392505050565b60006122e383611d42565b80519091508215612349576000336001600160a01b038316148061230c575061230c8233610728565b8061232757503361231c8661085a565b6001600160a01b0316145b90508061234757604051632ce44b5f60e11b815260040160405180910390fd5b505b612355600085836119ad565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661245357600154821461245357805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612d30833981519152908390a450506002805460010190555050565b82805461249890612c41565b90600052602060002090601f0160209004810192826124ba5760008555612500565b82601f106124d35782800160ff19823516178555612500565b82800160010185558215612500579182015b828111156125005782358255916020019190600101906124e5565b5061250c929150612510565b5090565b5b8082111561250c5760008155600101612511565b80356001600160a01b03811681146118a857600080fd5b60006020828403121561254e57600080fd5b61255782612525565b9392505050565b6000806040838503121561257157600080fd5b61257a83612525565b915061258860208401612525565b90509250929050565b6000806000606084860312156125a657600080fd5b6125af84612525565b92506125bd60208501612525565b9150604084013590509250925092565b600080600080608085870312156125e357600080fd5b6125ec85612525565b935060206125fb818701612525565b93506040860135925060608601356001600160401b038082111561261e57600080fd5b818801915088601f83011261263257600080fd5b81358181111561264457612644612d03565b612656601f8201601f19168501612b83565b9150808252898482850101111561266c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561269f57600080fd5b6126a883612525565b9150602083013580151581146126bd57600080fd5b809150509250929050565b600080604083850312156126db57600080fd5b6126e483612525565b946020939093013593505050565b6000602080838503121561270557600080fd5b82356001600160401b038082111561271c57600080fd5b818501915085601f83011261273057600080fd5b81358181111561274257612742612d03565b8060051b9150612753848301612b83565b8181528481019084860184860187018a101561276e57600080fd5b600095505b83861015612791578035835260019590950194918601918601612773565b5098975050505050505050565b6000602082840312156127b057600080fd5b5035919050565b6000602082840312156127c957600080fd5b813561255781612d19565b6000602082840312156127e657600080fd5b815161255781612d19565b60006020828403121561280357600080fd5b81356007811061255757600080fd5b6000806020838503121561282557600080fd5b82356001600160401b038082111561283c57600080fd5b818501915085601f83011261285057600080fd5b81358181111561285f57600080fd5b86602082850101111561287157600080fd5b60209290920196919550909350505050565b6000806000806060858703121561289957600080fd5b8435935060208501356001600160401b03808211156128b757600080fd5b818701915087601f8301126128cb57600080fd5b8135818111156128da57600080fd5b8860208260051b85010111156128ef57600080fd5b95986020929092019750949560400135945092505050565b6000815180845261291f816020860160208601612c15565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061294d57607f831692505b602080841082141561296f57634e487b7160e01b600052602260045260246000fd5b8180156129835760018114612994576129c1565b60ff198616895284890196506129c1565b60008881526020902060005b868110156129b95781548b8201529085019083016129a0565b505084890196505b50505050505092915050565b60006125578284612933565b60006129e58285612933565b83516129f5818360208801612c15565b01949350505050565b91825260601b6bffffffffffffffffffffffff1916602082015260340190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5190830184612907565b9695505050505050565b6020810160078310612a7d57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006125576020830184612907565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252600c908201526b07175616e74697479203e20360a41b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d03565b604052919050565b60008219821115612bc657612bc6612cab565b500190565b600082612bda57612bda612cc1565b500490565b6000816000190483118215151615612bf957612bf9612cab565b500290565b600082821015612c1057612c10612cab565b500390565b60005b83811015612c30578181015183820152602001612c18565b838111156115c45750506000910152565b600181811c90821680612c5557607f821691505b60208210811415612c7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9057612c90612cab565b5060010190565b600082612ca657612ca6612cc1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204816cd81a4d7704327657525e6a6776ac71aec75c08be16c2281465298eb4fbb64736f6c63430008070033

Deployed Bytecode Sourcemap

967:6056:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:13;;;;;;;;;;-1:-1:-1;3057:300:13;;;;;:::i;:::-;;:::i;:::-;;;9236:14:17;;9229:22;9211:41;;9199:2;9184:18;3057:300:13;;;;;;;;6087:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7544:200::-;;;;;;;;;;-1:-1:-1;7544:200:13;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8534:32:17;;;8516:51;;8504:2;8489:18;7544:200:13;8370:203:17;7120:363:13;;;;;;;;;;-1:-1:-1;7120:363:13;;;;;:::i;:::-;;:::i;:::-;;2319:306;;;;;;;;;;-1:-1:-1;2578:12:13;;3445:1:12;2562:13:13;:28;-1:-1:-1;;2562:46:13;2319:306;;;9409:25:17;;;9397:2;9382:18;2319:306:13;9263:177:17;1173:20:12;;;;;;;;;;-1:-1:-1;1173:20:12;;;;;;;;;;;;;;;:::i;8383:164:13:-;;;;;;;;;;-1:-1:-1;8383:164:13;;;;;:::i;:::-;;:::i;1507:39:12:-;;;;;;;;;;;;;;;5206:256;;;;;;:::i;:::-;;:::i;2536:412::-;;;;;;;;;;-1:-1:-1;2536:412:12;;;;;:::i;:::-;;:::i;1345:25::-;;;;;;;;;;;;;;;;6058:91;;;;;;;;;;;;;:::i;6224:233::-;;;;;;;;;;;;;:::i;8613:179:13:-;;;;;;;;;;-1:-1:-1;8613:179:13;;;;;:::i;:::-;;:::i;1896:168:12:-;;;;;;;;;;;;;:::i;5640:104::-;;;;;;;;;;-1:-1:-1;5640:104:12;;;;;:::i;:::-;;:::i;1455:46::-;;;;;;;;;;;;;;;5902:123:13;;;;;;;;;;-1:-1:-1;5902:123:13;;;;;:::i;:::-;;:::i;1312:27:12:-;;;;;;;;;;;;;;;;3416:203:13;;;;;;;;;;-1:-1:-1;3416:203:13;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;3163:104:12:-;;;;;;;;;;-1:-1:-1;3163:104:12;;;;;:::i;:::-;;:::i;1552:32::-;;;;;;;;;;;;;;;2953:90;;;;;;;;;;-1:-1:-1;2953:90:12;;;;;:::i;:::-;;:::i;4056:581::-;;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;6249:102:13;;;;;;;;;;;;;:::i;3272:78:12:-;;;;;;;;;;-1:-1:-1;3338:5:12;3272:78;;1417:32;;;;;;;;;;;;;;;;1590:30;;;;;;;;;;;;;;;7811:282:13;;;;;;;;;;-1:-1:-1;7811:282:13;;;;;:::i;:::-;;:::i;3458:593:12:-;;;;;;:::i;:::-;;:::i;6463:558::-;;;;;;;;;;-1:-1:-1;6463:558:12;;;;;:::i;:::-;;:::i;8858:360:13:-;;;;;;;;;;-1:-1:-1;8858:360:13;;;;;:::i;:::-;;:::i;1376:35:12:-;;;;;;;;;;;;;;;;4642:559;;;;;;:::i;:::-;;:::i;5749:304::-;;;;;;;;;;-1:-1:-1;5749:304:12;;;;;:::i;:::-;;:::i;3048:110::-;;;;;;;;;;-1:-1:-1;3048:110:12;;;;;:::i;:::-;;:::i;8159:162:13:-;;;;;;;;;;-1:-1:-1;8159:162:13;;;;;:::i;:::-;-1:-1:-1;;;;;8279:25:13;;;8256:4;8279:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8159:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;3057:300:13:-;3159:4;-1:-1:-1;;;;;;3194:40:13;;-1:-1:-1;;;3194:40:13;;:104;;-1:-1:-1;;;;;;;3250:48:13;;-1:-1:-1;;;3250:48:13;3194:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:9;;;3314:36:13;3175:175;3057:300;-1:-1:-1;;3057:300:13:o;6087:98::-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;-1:-1:-1;;;7661:34:13;;;;;;;;;;;7631:64;-1:-1:-1;7713:24:13;;;;:15;:24;;;;;;-1:-1:-1;;;;;7713:24:13;;7544:200::o;7120:363::-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;-1:-1:-1;;;;;7246:11:13;:2;-1:-1:-1;;;;;7246:11:13;;7242:48;;;7266:24;;-1:-1:-1;;;7266:24:13;;;;;;;;;;;7242:48;719:10:6;-1:-1:-1;;;;;7305:21:13;;;7301:137;;7332:37;7349:5;719:10:6;8159:162:13;:::i;7332:37::-;7328:110;;7392:35;;-1:-1:-1;;;7392:35:13;;;;;;;;;;;7328:110;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;8383:164::-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;5206:256:12:-;2111:9;2124:10;2111:23;2103:67;;;;-1:-1:-1;;;2103:67:12;;;;;;;:::i;:::-;;;;;;;;;5293:8:::1;2268:1;2257:8;:12;2249:37;;;;-1:-1:-1::0;;;2249:37:12::1;;;;;;;:::i;:::-;2344:7;2332:8;2304:25;2318:10;2304:13;:25::i;:::-;:36;;;;:::i;:::-;:47;;2296:80;;;;-1:-1:-1::0;;;2296:80:12::1;;;;;;;:::i;:::-;5319:8:::0;2473:16:::2;5319:8:::0;2473:5:::2;:16;:::i;:::-;2460:9;:29;;2452:61;;;;-1:-1:-1::0;;;2452:61:12::2;;;;;;;:::i;:::-;5361:17:::3;5351:6;::::0;::::3;;:27;::::0;::::3;;;;;;:::i;:::-;;5343:71;;;::::0;-1:-1:-1;;;5343:71:12;;15023:2:17;5343:71:12::3;::::0;::::3;15005:21:17::0;15062:2;15042:18;;;15035:30;15101:33;15081:18;;;15074:61;15152:18;;5343:71:12::3;14821:355:17::0;5343:71:12::3;5424:31;5434:10;5446:8;5424:9;:31::i;2536:412::-:0;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2613:13:12::1;2603:6;::::0;::::1;;:23;::::0;::::1;;;;;;:::i;:::-;;2600:316;;;2678:15;2649;;2667:7;2649:25;;;;:::i;:::-;:44;;2641:89;;;::::0;-1:-1:-1;;;2641:89:12;;17887:2:17;2641:89:12::1;::::0;::::1;17869:21:17::0;;;17906:18;;;17899:30;17965:34;17945:18;;;17938:62;18017:18;;2641:89:12::1;17685:356:17::0;2641:89:12::1;2600:316;;;2760:13;2749:7;:24;;;;;;;;:::i;:::-;;2746:170;;;2797:10;::::0;;;::::1;;;2796:11;2788:39;;;::::0;-1:-1:-1;;;2788:39:12;;11725:2:17;2788:39:12::1;::::0;::::1;11707:21:17::0;11764:2;11744:18;;;11737:30;-1:-1:-1;;;11783:18:17;;;11776:46;11839:18;;2788:39:12::1;11523:340:17::0;2788:39:12::1;2841:10;:17:::0;;-1:-1:-1;;2841:17:12::1;::::0;::::1;::::0;;2890:15:::1;2872;:33:::0;2746:170:::1;2925:6;:16:::0;;2934:7;;2925:6;-1:-1:-1;;2925:16:12::1;::::0;2934:7;2925:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;2536:412:::0;:::o;6058:91::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;6131:11:12::1;::::0;;-1:-1:-1;;6116:26:12;::::1;6131:11;::::0;;;::::1;;;6130:12;6116:26:::0;;::::1;;::::0;;6058:91::o;6224:233::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;6295:15:12::1;6285:6;::::0;::::1;;:25;::::0;::::1;;;;;;:::i;:::-;;:39;;;;-1:-1:-1::0;6314:10:12::1;::::0;;;::::1;;;6285:39;6277:67;;;::::0;-1:-1:-1;;;6277:67:12;;14679:2:17;6277:67:12::1;::::0;::::1;14661:21:17::0;14718:2;14698:18;;;14691:30;-1:-1:-1;;;14737:18:17;;;14730:45;14792:18;;6277:67:12::1;14477:339:17::0;6277:67:12::1;6372:22;6404:46;6430:10;6372:22:::0;6404:17:::1;:46::i;:::-;6267:190;6224:233::o:0;8613:179:13:-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;1896:168:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1961:12:12::1;::::0;;;::::1;;;1956:102;;1989:25;1999:10;2011:2;1989:9;:25::i;:::-;2028:12;:19:::0;;-1:-1:-1;;2028:19:12::1;::::0;::::1;::::0;;1956:102:::1;1896:168::o:0;5640:104::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5714:23:12::1;:13;5730:7:::0;;5714:23:::1;:::i;5902:123:13:-:0;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;5902:123;-1:-1:-1;;5902:123:13:o;3416:203::-;3480:7;-1:-1:-1;;;;;3503:19:13;;3499:60;;3531:28;;-1:-1:-1;;;3531:28:13;;;;;;;;;;;3499:60;-1:-1:-1;;;;;;3584:19:13;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3584:27:13;;3416:203::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;3163:104:12:-:0;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3236:17:12::1;:24:::0;3163:104::o;2953:90::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3019:10:12::1;:17:::0;2953:90::o;4056:581::-;2111:9;2124:10;2111:23;2103:67;;;;-1:-1:-1;;;2103:67:12;;;;;;;:::i;:::-;4191:8:::1;2268:1;2257:8;:12;2249:37;;;;-1:-1:-1::0;;;2249:37:12::1;;;;;;;:::i;:::-;2344:7;2332:8;2304:25;2318:10;2304:13;:25::i;:::-;:36;;;;:::i;:::-;:47;;2296:80;;;;-1:-1:-1::0;;;2296:80:12::1;;;;;;;:::i;:::-;4217:8:::0;2473:16:::2;4217:8:::0;2473:5:::2;:16;:::i;:::-;2460:9;:29;;2452:61;;;;-1:-1:-1::0;;;2452:61:12::2;;;;;;;:::i;:::-;4255:18:::3;4245:6;::::0;::::3;;:28;::::0;::::3;;;;;;:::i;:::-;;4237:73;;;::::0;-1:-1:-1;;;4237:73:12;;15383:2:17;4237:73:12::3;::::0;::::3;15365:21:17::0;;;15402:18;;;15395:30;15461:34;15441:18;;;15434:62;15513:18;;4237:73:12::3;15181:356:17::0;4237:73:12::3;4320:12;4362:5;4369:10;4345:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4335:46;;;;;;4320:61;;4399:56;4418:11;;4399:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;4431:17:12::3;::::0;;-1:-1:-1;4450:4:12;;-1:-1:-1;4399:18:12::3;:56::i;:::-;4391:90;;;::::0;-1:-1:-1;;;4391:90:12;;11027:2:17;4391:90:12::3;::::0;::::3;11009:21:17::0;11066:2;11046:18;;;11039:30;-1:-1:-1;;;11085:18:17;;;11078:51;11146:18;;4391:90:12::3;10825:345:17::0;4391:90:12::3;2578:12:13::0;;3445:1:12;2562:13:13;4527:21:12::3;::::0;4515:8;;2562:28:13;-1:-1:-1;;2562:46:13;4499:24:12::3;;;;:::i;:::-;:49;;4491:98;;;::::0;-1:-1:-1;;;4491:98:12;;10215:2:17;4491:98:12::3;::::0;::::3;10197:21:17::0;10254:2;10234:18;;;10227:30;10293:34;10273:18;;;10266:62;-1:-1:-1;;;10344:18:17;;;10337:34;10388:19;;4491:98:12::3;10013:400:17::0;4491:98:12::3;4599:31;4609:10;4621:8;4599:9;:31::i;:::-;4227:410;2386:1:::2;2180::::1;4056:581:::0;;;;:::o;6249:102:13:-;6305:13;6337:7;6330:14;;;;;:::i;7811:282::-;-1:-1:-1;;;;;7909:24:13;;719:10:6;7909:24:13;7905:54;;;7942:17;;-1:-1:-1;;;7942:17:13;;;;;;;;;;;7905:54;719:10:6;7970:32:13;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7970:42:13;;;;;;;;;;;;:53;;-1:-1:-1;;7970:53:13;;;;;;;;;;8038:48;;9211:41:17;;;7970:42:13;;719:10:6;8038:48:13;;9184:18:17;8038:48:13;;;;;;;7811:282;;:::o;3458:593:12:-;2111:9;2124:10;2111:23;2103:67;;;;-1:-1:-1;;;2103:67:12;;;;;;;:::i;:::-;3596:8:::1;2268:1;2257:8;:12;2249:37;;;;-1:-1:-1::0;;;2249:37:12::1;;;;;;;:::i;:::-;2344:7;2332:8;2304:25;2318:10;2304:13;:25::i;:::-;:36;;;;:::i;:::-;:47;;2296:80;;;;-1:-1:-1::0;;;2296:80:12::1;;;;;;;:::i;:::-;3622:8:::0;2473:16:::2;3622:8:::0;2473:5:::2;:16;:::i;:::-;2460:9;:29;;2452:61;;;;-1:-1:-1::0;;;2452:61:12::2;;;;;;;:::i;:::-;3660:21:::3;3650:6;::::0;::::3;;:31;::::0;::::3;;;;;;:::i;:::-;;3642:79;;;::::0;-1:-1:-1;;;3642:79:12;;13554:2:17;3642:79:12::3;::::0;::::3;13536:21:17::0;13593:2;13573:18;;;13566:30;13632:34;13612:18;;;13605:62;-1:-1:-1;;;13683:18:17;;;13676:33;13726:19;;3642:79:12::3;13352:399:17::0;3642:79:12::3;3731:12;3773:5;3780:10;3756:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3746:46;;;;;;3731:61;;3810:59;3829:11;;3810:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;3842:20:12::3;::::0;;-1:-1:-1;3864:4:12;;-1:-1:-1;3810:18:12::3;:59::i;6463:558::-:0;2111:9;2124:10;2111:23;2103:67;;;;-1:-1:-1;;;2103:67:12;;;;;;;:::i;:::-;6556:13:::1;6546:6;::::0;::::1;;:23;::::0;::::1;;;;;;:::i;:::-;;6538:63;;;::::0;-1:-1:-1;;;6538:63:12;;13198:2:17;6538:63:12::1;::::0;::::1;13180:21:17::0;13237:2;13217:18;;;13210:30;13276:29;13256:18;;;13249:57;13323:18;;6538:63:12::1;12996:351:17::0;6538:63:12::1;6637:1;6619:8;:15;:19;6611:51;;;::::0;-1:-1:-1;;;6611:51:12;;11377:2:17;6611:51:12::1;::::0;::::1;11359:21:17::0;11416:2;11396:18;;;11389:30;-1:-1:-1;;;11435:18:17;;;11428:49;11494:18;;6611:51:12::1;11175:343:17::0;6611:51:12::1;6699:14;6680:8;:15;:33;;6672:60;;;::::0;-1:-1:-1;;;6672:60:12;;12855:2:17;6672:60:12::1;::::0;::::1;12837:21:17::0;12894:2;12874:18;;;12867:30;-1:-1:-1;;;12913:18:17;;;12906:44;12967:18;;6672:60:12::1;12653:338:17::0;6672:60:12::1;6747:6;6742:161;6763:8;:15;6759:1;:19;6742:161;;;6831:10;-1:-1:-1::0;;;;;6807:34:12::1;:20;6815:8;6824:1;6815:11;;;;;;;;:::i;:::-;;;;;;;6807:7;:20::i;:::-;-1:-1:-1::0;;;;;6807:34:12::1;;6799:61;;;::::0;-1:-1:-1;;;6799:61:12;;16855:2:17;6799:61:12::1;::::0;::::1;16837:21:17::0;16894:2;16874:18;;;16867:30;-1:-1:-1;;;16913:18:17;;;16906:44;16967:18;;6799:61:12::1;16653:338:17::0;6799:61:12::1;6874:18;6880:8;6889:1;6880:11;;;;;;;;:::i;:::-;;;;;;;6874:5;:18::i;:::-;6780:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6742:161;;;;6912:17;6940:8;:15;6932:5;:23;;;;:::i;:::-;6912:43;;6965:49;6991:10;7004:9;6965:17;:49::i;:::-;6528:493;6463:558:::0;:::o;8858:360:13:-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;-1:-1:-1;;;;;9061:13:13;;1465:19:5;:23;9057:155:13;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;-1:-1:-1;;;9161:40:13;;;;;;;;;;;9078:134;8858:360;;;;:::o;4642:559:12:-;2111:9;2124:10;2111:23;2103:67;;;;-1:-1:-1;;;2103:67:12;;;;;;;:::i;:::-;4775:8:::1;2268:1;2257:8;:12;2249:37;;;;-1:-1:-1::0;;;2249:37:12::1;;;;;;;:::i;:::-;2344:7;2332:8;2304:25;2318:10;2304:13;:25::i;:::-;:36;;;;:::i;:::-;:47;;2296:80;;;;-1:-1:-1::0;;;2296:80:12::1;;;;;;;:::i;:::-;4801:8:::0;2473:16:::2;4801:8:::0;2473:5:::2;:16;:::i;:::-;2460:9;:29;;2452:61;;;;-1:-1:-1::0;;;2452:61:12::2;;;;;;;:::i;:::-;4839:16:::3;4829:6;::::0;::::3;;:26;::::0;::::3;;;;;;:::i;:::-;;4821:69;;;::::0;-1:-1:-1;;;4821:69:12;;16093:2:17;4821:69:12::3;::::0;::::3;16075:21:17::0;16132:2;16112:18;;;16105:30;16171:32;16151:18;;;16144:60;16221:18;;4821:69:12::3;15891:354:17::0;4821:69:12::3;4900:12;4942:5;4949:10;4925:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4915:46;;;;;;4900:61;;4979:49;4998:11;;4979:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;5011:10:12::3;::::0;;-1:-1:-1;5023:4:12;;-1:-1:-1;4979:18:12::3;:49::i;:::-;4971:83;;;::::0;-1:-1:-1;;;4971:83:12;;11027:2:17;4971:83:12::3;::::0;::::3;11009:21:17::0;11066:2;11046:18;;;11039:30;-1:-1:-1;;;11085:18:17;;;11078:51;11146:18;;4971:83:12::3;10825:345:17::0;4971:83:12::3;2578:12:13::0;;3445:1:12;2562:13:13;5100:14:12::3;::::0;5088:8;;2562:28:13;-1:-1:-1;;2562:46:13;5072:24:12::3;;;;:::i;:::-;:42;;5064:89;;;::::0;-1:-1:-1;;;5064:89:12;;16452:2:17;5064:89:12::3;::::0;::::3;16434:21:17::0;16491:2;16471:18;;;16464:30;16530:34;16510:18;;;16503:62;-1:-1:-1;;;16581:18:17;;;16574:32;16623:19;;5064:89:12::3;16250:398:17::0;5749:304:12;5851:11;;5822:13;;5851:11;;;;;5847:200;;;5909:13;5892:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;5878:46;;5749:304;;;:::o;5847:200::-;5994:13;6009:25;6026:7;6009:16;:25::i;:::-;5977:58;;;;;;;;;:::i;5847:200::-;5749:304;;;:::o;3048:110::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3124:20:12::1;:27:::0;3048:110::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;10620:2:17;1998:73:0::1;::::0;::::1;10602:21:17::0;10659:2;10639:18;;;10632:30;10698:34;10678:18;;;10671:62;-1:-1:-1;;;10749:18:17;;;10742:36;10795:19;;1998:73:0::1;10418:402:17::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;9464:172:13:-:0;9521:4;9563:7;3445:1:12;9544:26:13;;:53;;;;;9584:13;;9574:7;:23;9544:53;:85;;;;-1:-1:-1;;9602:20:13;;;;:11;:20;;;;;:27;-1:-1:-1;;;9602:27:13;;;;9601:28;;9464:172::o;18445:189::-;18555:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18555:29:13;-1:-1:-1;;;;;18555:29:13;;;;;;;;;18599:28;;18555:24;;18599:28;;;;;;;18445:189;;;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;-1:-1:-1;;;;;13704:26:13;:13;:18;;;-1:-1:-1;;;;;13704:26:13;;13700:67;;13739:28;;-1:-1:-1;;;13739:28:13;;;;;;;;;;;13700:67;13778:22;719:10:6;-1:-1:-1;;;;;13804:20:13;;;;:72;;-1:-1:-1;13840:36:13;13857:4;719:10:6;8159:162:13;:::i;13840:36::-;13804:124;;;-1:-1:-1;719:10:6;13892:20:13;13904:7;13892:11;:20::i;:::-;-1:-1:-1;;;;;13892:36:13;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;-1:-1:-1;;;13971:35:13;;;;;;;;;;;13940:66;-1:-1:-1;;;;;14020:16:13;;14016:52;;14045:23;;-1:-1:-1;;;14045:23:13;;;;;;;;;;;14016:52;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;-1:-1:-1;;;;;14509:18:13;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14509:31:13;;;-1:-1:-1;;;;;14509:31:13;;;-1:-1:-1;;14509:31:13;;;;;;;14554:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14554:29:13;;;;;;;;;;;14632:20;;;:11;:20;;;;;;14666:18;;-1:-1:-1;;;;;;14698:49:13;;;;-1:-1:-1;;;14731:15:13;14698:49;;;;;;;;;;15017:11;;15076:24;;;;;15118:13;;14632:20;;15076:24;;15118:13;15114:377;;15325:13;;15310:11;:28;15306:171;;15362:20;;15430:28;;;;-1:-1:-1;;;;;15404:54:13;-1:-1:-1;;;15404:54:13;-1:-1:-1;;;;;;15404:54:13;;;-1:-1:-1;;;;;15362:20:13;;15404:54;;;;15306:171;14485:1016;;;15535:7;15531:2;-1:-1:-1;;;;;15516:27:13;15525:4;-1:-1:-1;;;;;15516:27:13;-1:-1:-1;;;;;;;;;;;15516:27:13;;;;;;;;;13620:1982;;13520:2082;;;:::o;3696:135::-;-1:-1:-1;;;;;3791:19:13;3757:7;3791:19;;;:12;:19;;;;;:32;-1:-1:-1;;;3791:32:13;;-1:-1:-1;;;;;3791:32:13;;3696:135::o;9715:102::-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;2412:312:5:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:5;;12497:2:17;2493:73:5;;;12479:21:17;12536:2;12516:18;;;12509:30;12575:31;12555:18;;;12548:59;12624:18;;2493:73:5;12295:353:17;2493:73:5;2578:12;2596:9;-1:-1:-1;;;;;2596:14:5;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:5;;12070:2:17;2639:78:5;;;12052:21:17;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;12219:28;12199:18;;;12192:56;12265:19;;2639:78:5;11868:422:17;4759:1086:13;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4869:7:13;;3445:1:12;4915:23:13;4911:870;;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:17;;;:11;:17;;;;;;;;;4984:51;;;;;;;;;-1:-1:-1;;;;;4984:51:13;;;;-1:-1:-1;;;4984:51:13;;-1:-1:-1;;;;;4984:51:13;;;;;;;;-1:-1:-1;;;4984:51:13;;;;;;;;;;;;;;5053:714;;5102:14;;-1:-1:-1;;;;;5102:28:13;;5098:99;;5165:9;4759:1086;-1:-1:-1;;;4759:1086:13:o;5098:99::-;-1:-1:-1;;;5533:6:13;5577:17;;;;:11;:17;;;;;;;;;5565:29;;;;;;;;;-1:-1:-1;;;;;5565:29:13;;;;;-1:-1:-1;;;5565:29:13;;-1:-1:-1;;;;;5565:29:13;;;;;;;;-1:-1:-1;;;5565:29:13;;;;;;;;;;;;;5624:28;5620:107;;5691:9;4759:1086;-1:-1:-1;;;4759:1086:13:o;5620:107::-;5494:255;;;4966:815;4940:841;5807:31;;-1:-1:-1;;;5807:31:13;;;;;;;;;;;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;1154:184:8:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:8:o;15675:87:13:-;15734:21;15740:7;15749:5;15734;:21::i;19115:650::-;19293:72;;-1:-1:-1;;;19293:72:13;;19273:4;;-1:-1:-1;;;;;19293:36:13;;;;;:72;;719:10:6;;19344:4:13;;19350:7;;19359:5;;19293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19293:72:13;;;;;;;;-1:-1:-1;;19293:72:13;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19524:13:13;;19520:229;;19569:40;;-1:-1:-1;;;19569:40:13;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;-1:-1:-1;;;;;;19411:55:13;-1:-1:-1;;;19411:55:13;;-1:-1:-1;19289:470:13;19115:650;;;;;;:::o;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;10177:1708:13;10318:13;;-1:-1:-1;;;;;10345:16:13;;10341:48;;10370:19;;-1:-1:-1;;;10370:19:13;;;;;;;;;;;10341:48;10403:13;10399:44;;10425:18;;-1:-1:-1;;;10425:18:13;;;;;;;;;;;10399:44;-1:-1:-1;;;;;10786:16:13;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;10844:49:13;;-1:-1:-1;;;;;10786:44:13;;;;;;;10844:49;;;-1:-1:-1;;;;;10786:44:13;;;;;;10844:49;;;;;;;;;;;;;;;;10908:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;10957:66:13;;;-1:-1:-1;;;11007:15:13;10957:66;;;;;;;;;;;;;10908:25;;11101:23;;;;1465:19:5;:23;11139:618:13;;11178:308;11208:38;;11233:12;;-1:-1:-1;;;;;11208:38:13;;;11225:1;;-1:-1:-1;;;;;;;;;;;11208:38:13;11225:1;;11208:38;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;-1:-1:-1;;;11377:40:13;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11656:40;;11681:14;;;;;-1:-1:-1;;;;;11656:40:13;;;11673:1;;-1:-1:-1;;;;;;;;;;;11656:40:13;11673:1;;11656:40;11738:3;11723:12;:18;11626:117;;11139:618;-1:-1:-1;11770:13:13;:28;11818:60;11847:1;11851:2;11855:12;11869:8;11818:60;:::i;1689:662:8:-;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2060:57;;1930:376;;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2234:57;;1930:376;-1:-1:-1;1866:3:8;;;;:::i;:::-;;;;1828:488;;;-1:-1:-1;2332:12:8;1689:662;-1:-1:-1;;;1689:662:8:o;15979:2355:13:-;16058:35;16096:21;16109:7;16096:12;:21::i;:::-;16143:18;;16058:59;;-1:-1:-1;16172:284:13;;;;16205:22;719:10:6;-1:-1:-1;;;;;16231:20:13;;;;:76;;-1:-1:-1;16271:36:13;16288:4;719:10:6;8159:162:13;:::i;16271:36::-;16231:132;;;-1:-1:-1;719:10:6;16327:20:13;16339:7;16327:11;:20::i;:::-;-1:-1:-1;;;;;16327:36:13;;16231:132;16205:159;;16384:17;16379:66;;16410:35;;-1:-1:-1;;;16410:35:13;;;;;;;;;;;16379:66;16191:265;16172:284;16579:35;16596:1;16600:7;16609:4;16579:8;:35::i;:::-;-1:-1:-1;;;;;16938:18:13;;;16904:31;16938:18;;;:12;:18;;;;;;;;16970:24;;-1:-1:-1;;;;;;;;;;16970:24:13;;;;;;;;;-1:-1:-1;;16970:24:13;;;;17008:29;;;;;16993:1;17008:29;;;;;;;;-1:-1:-1;;17008:29:13;;;;;;;;;;17167:20;;;:11;:20;;;;;;17201;;-1:-1:-1;;;;17268:15:13;17235:49;;;-1:-1:-1;;;17235:49:13;-1:-1:-1;;;;;;17235:49:13;;;;;;;;;;17298:22;-1:-1:-1;;;17298:22:13;;;17586:11;;;17645:24;;;;;17687:13;;16938:18;;17645:24;;17687:13;17683:377;;17894:13;;17879:11;:28;17875:171;;17931:20;;17999:28;;;;-1:-1:-1;;;;;17973:54:13;-1:-1:-1;;;17973:54:13;-1:-1:-1;;;;;;17973:54:13;;;-1:-1:-1;;;;;17931:20:13;;17973:54;;;;17875:171;-1:-1:-1;;18085:35:13;;18112:7;;-1:-1:-1;18108:1:13;;-1:-1:-1;;;;;;18085:35:13;;;-1:-1:-1;;;;;;;;;;;18085:35:13;18108:1;;18085:35;-1:-1:-1;;18303:12:13;:14;;;;;;-1:-1:-1;;15979:2355:13:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:17;82:20;;-1:-1:-1;;;;;131:31:17;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:17:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:980::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:2;1262:38;1296:2;1285:9;1281:18;1262:38;:::i;:::-;1252:48;;1347:2;1336:9;1332:18;1319:32;1309:42;;1402:2;1391:9;1387:18;1374:32;-1:-1:-1;;;;;1466:2:17;1458:6;1455:14;1452:34;;;1482:1;1479;1472:12;1452:34;1520:6;1509:9;1505:22;1495:32;;1565:7;1558:4;1554:2;1550:13;1546:27;1536:55;;1587:1;1584;1577:12;1536:55;1623:2;1610:16;1645:2;1641;1638:10;1635:36;;;1651:18;;:::i;:::-;1693:53;1736:2;1717:13;;-1:-1:-1;;1713:27:17;1709:36;;1693:53;:::i;:::-;1680:66;;1769:2;1762:5;1755:17;1809:7;1804:2;1799;1795;1791:11;1787:20;1784:33;1781:53;;;1830:1;1827;1820:12;1781:53;1885:2;1880;1876;1872:11;1867:2;1860:5;1856:14;1843:45;1929:1;1924:2;1919;1912:5;1908:14;1904:23;1897:34;;1950:5;1940:15;;;;;981:980;;;;;;;:::o;1966:347::-;2031:6;2039;2092:2;2080:9;2071:7;2067:23;2063:32;2060:52;;;2108:1;2105;2098:12;2060:52;2131:29;2150:9;2131:29;:::i;:::-;2121:39;;2210:2;2199:9;2195:18;2182:32;2257:5;2250:13;2243:21;2236:5;2233:32;2223:60;;2279:1;2276;2269:12;2223:60;2302:5;2292:15;;;1966:347;;;;;:::o;2318:254::-;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:17:o;2577:957::-;2661:6;2692:2;2735;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;2791:9;2778:23;-1:-1:-1;;;;;2861:2:17;2853:6;2850:14;2847:34;;;2877:1;2874;2867:12;2847:34;2915:6;2904:9;2900:22;2890:32;;2960:7;2953:4;2949:2;2945:13;2941:27;2931:55;;2982:1;2979;2972:12;2931:55;3018:2;3005:16;3040:2;3036;3033:10;3030:36;;;3046:18;;:::i;:::-;3092:2;3089:1;3085:10;3075:20;;3115:28;3139:2;3135;3131:11;3115:28;:::i;:::-;3177:15;;;3208:12;;;;3240:11;;;3270;;;3266:20;;3263:33;-1:-1:-1;3260:53:17;;;3309:1;3306;3299:12;3260:53;3331:1;3322:10;;3341:163;3355:2;3352:1;3349:9;3341:163;;;3412:17;;3400:30;;3373:1;3366:9;;;;;3450:12;;;;3482;;3341:163;;;-1:-1:-1;3523:5:17;2577:957;-1:-1:-1;;;;;;;;2577:957:17:o;3539:180::-;3598:6;3651:2;3639:9;3630:7;3626:23;3622:32;3619:52;;;3667:1;3664;3657:12;3619:52;-1:-1:-1;3690:23:17;;3539:180;-1:-1:-1;3539:180:17:o;3724:245::-;3782:6;3835:2;3823:9;3814:7;3810:23;3806:32;3803:52;;;3851:1;3848;3841:12;3803:52;3890:9;3877:23;3909:30;3933:5;3909:30;:::i;3974:249::-;4043:6;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;4144:9;4138:16;4163:30;4187:5;4163:30;:::i;4228:267::-;4298:6;4351:2;4339:9;4330:7;4326:23;4322:32;4319:52;;;4367:1;4364;4357:12;4319:52;4406:9;4393:23;4445:1;4438:5;4435:12;4425:40;;4461:1;4458;4451:12;4500:592;4571:6;4579;4632:2;4620:9;4611:7;4607:23;4603:32;4600:52;;;4648:1;4645;4638:12;4600:52;4688:9;4675:23;-1:-1:-1;;;;;4758:2:17;4750:6;4747:14;4744:34;;;4774:1;4771;4764:12;4744:34;4812:6;4801:9;4797:22;4787:32;;4857:7;4850:4;4846:2;4842:13;4838:27;4828:55;;4879:1;4876;4869:12;4828:55;4919:2;4906:16;4945:2;4937:6;4934:14;4931:34;;;4961:1;4958;4951:12;4931:34;5006:7;5001:2;4992:6;4988:2;4984:15;4980:24;4977:37;4974:57;;;5027:1;5024;5017:12;4974:57;5058:2;5050:11;;;;;5080:6;;-1:-1:-1;4500:592:17;;-1:-1:-1;;;;4500:592:17:o;5282:751::-;5386:6;5394;5402;5410;5463:2;5451:9;5442:7;5438:23;5434:32;5431:52;;;5479:1;5476;5469:12;5431:52;5515:9;5502:23;5492:33;;5576:2;5565:9;5561:18;5548:32;-1:-1:-1;;;;;5640:2:17;5632:6;5629:14;5626:34;;;5656:1;5653;5646:12;5626:34;5694:6;5683:9;5679:22;5669:32;;5739:7;5732:4;5728:2;5724:13;5720:27;5710:55;;5761:1;5758;5751:12;5710:55;5801:2;5788:16;5827:2;5819:6;5816:14;5813:34;;;5843:1;5840;5833:12;5813:34;5896:7;5891:2;5881:6;5878:1;5874:14;5870:2;5866:23;5862:32;5859:45;5856:65;;;5917:1;5914;5907:12;5856:65;5282:751;;5948:2;5940:11;;;;;-1:-1:-1;5970:6:17;;6023:2;6008:18;5995:32;;-1:-1:-1;5282:751:17;-1:-1:-1;;;5282:751:17:o;6038:257::-;6079:3;6117:5;6111:12;6144:6;6139:3;6132:19;6160:63;6216:6;6209:4;6204:3;6200:14;6193:4;6186:5;6182:16;6160:63;:::i;:::-;6277:2;6256:15;-1:-1:-1;;6252:29:17;6243:39;;;;6284:4;6239:50;;6038:257;-1:-1:-1;;6038:257:17:o;6300:973::-;6385:12;;6350:3;;6440:1;6460:18;;;;6513;;;;6540:61;;6594:4;6586:6;6582:17;6572:27;;6540:61;6620:2;6668;6660:6;6657:14;6637:18;6634:38;6631:161;;;6714:10;6709:3;6705:20;6702:1;6695:31;6749:4;6746:1;6739:15;6777:4;6774:1;6767:15;6631:161;6808:18;6835:104;;;;6953:1;6948:319;;;;6801:466;;6835:104;-1:-1:-1;;6868:24:17;;6856:37;;6913:16;;;;-1:-1:-1;6835:104:17;;6948:319;18581:1;18574:14;;;18618:4;18605:18;;7042:1;7056:165;7070:6;7067:1;7064:13;7056:165;;;7148:14;;7135:11;;;7128:35;7191:16;;;;7085:10;;7056:165;;;7060:3;;7250:6;7245:3;7241:16;7234:23;;6801:466;;;;;;;6300:973;;;;:::o;7278:197::-;7406:3;7431:38;7465:3;7457:6;7431:38;:::i;7480:376::-;7656:3;7684:38;7718:3;7710:6;7684:38;:::i;:::-;7751:6;7745:13;7767:52;7812:6;7808:2;7801:4;7793:6;7789:17;7767:52;:::i;:::-;7835:15;;7480:376;-1:-1:-1;;;;7480:376:17:o;8071:294::-;8228:19;;;8285:2;8281:15;-1:-1:-1;;8277:53:17;8272:2;8263:12;;8256:75;8356:2;8347:12;;8071:294::o;8578:488::-;-1:-1:-1;;;;;8847:15:17;;;8829:34;;8899:15;;8894:2;8879:18;;8872:43;8946:2;8931:18;;8924:34;;;8994:3;8989:2;8974:18;;8967:31;;;8772:4;;9015:45;;9040:19;;9032:6;9015:45;:::i;:::-;9007:53;8578:488;-1:-1:-1;;;;;;8578:488:17:o;9445:339::-;9588:2;9573:18;;9621:1;9610:13;;9600:144;;9666:10;9661:3;9657:20;9654:1;9647:31;9701:4;9698:1;9691:15;9729:4;9726:1;9719:15;9600:144;9753:25;;;9445:339;:::o;9789:219::-;9938:2;9927:9;9920:21;9901:4;9958:44;9998:2;9987:9;9983:18;9975:6;9958:44;:::i;13756:356::-;13958:2;13940:21;;;13977:18;;;13970:30;14036:34;14031:2;14016:18;;14009:62;14103:2;14088:18;;13756:356::o;14117:355::-;14319:2;14301:21;;;14358:2;14338:18;;;14331:30;14397:33;14392:2;14377:18;;14370:61;14463:2;14448:18;;14117:355::o;15542:344::-;15744:2;15726:21;;;15783:2;15763:18;;;15756:30;-1:-1:-1;;;15817:2:17;15802:18;;15795:50;15877:2;15862:18;;15542:344::o;16996:336::-;17198:2;17180:21;;;17237:2;17217:18;;;17210:30;-1:-1:-1;;;17271:2:17;17256:18;;17249:42;17323:2;17308:18;;16996:336::o;17337:343::-;17539:2;17521:21;;;17578:2;17558:18;;;17551:30;-1:-1:-1;;;17612:2:17;17597:18;;17590:49;17671:2;17656:18;;17337:343::o;18228:275::-;18299:2;18293:9;18364:2;18345:13;;-1:-1:-1;;18341:27:17;18329:40;;-1:-1:-1;;;;;18384:34:17;;18420:22;;;18381:62;18378:88;;;18446:18;;:::i;:::-;18482:2;18475:22;18228:275;;-1:-1:-1;18228:275:17:o;18634:128::-;18674:3;18705:1;18701:6;18698:1;18695:13;18692:39;;;18711:18;;:::i;:::-;-1:-1:-1;18747:9:17;;18634:128::o;18767:120::-;18807:1;18833;18823:35;;18838:18;;:::i;:::-;-1:-1:-1;18872:9:17;;18767:120::o;18892:168::-;18932:7;18998:1;18994;18990:6;18986:14;18983:1;18980:21;18975:1;18968:9;18961:17;18957:45;18954:71;;;19005:18;;:::i;:::-;-1:-1:-1;19045:9:17;;18892:168::o;19065:125::-;19105:4;19133:1;19130;19127:8;19124:34;;;19138:18;;:::i;:::-;-1:-1:-1;19175:9:17;;19065:125::o;19195:258::-;19267:1;19277:113;19291:6;19288:1;19285:13;19277:113;;;19367:11;;;19361:18;19348:11;;;19341:39;19313:2;19306:10;19277:113;;;19408:6;19405:1;19402:13;19399:48;;;-1:-1:-1;;19443:1:17;19425:16;;19418:27;19195:258::o;19458:380::-;19537:1;19533:12;;;;19580;;;19601:61;;19655:4;19647:6;19643:17;19633:27;;19601:61;19708:2;19700:6;19697:14;19677:18;19674:38;19671:161;;;19754:10;19749:3;19745:20;19742:1;19735:31;19789:4;19786:1;19779:15;19817:4;19814:1;19807:15;19671:161;;19458:380;;;:::o;19843:135::-;19882:3;-1:-1:-1;;19903:17:17;;19900:43;;;19923:18;;:::i;:::-;-1:-1:-1;19970:1:17;19959:13;;19843:135::o;19983:112::-;20015:1;20041;20031:35;;20046:18;;:::i;:::-;-1:-1:-1;20080:9:17;;19983:112::o;20100:127::-;20161:10;20156:3;20152:20;20149:1;20142:31;20192:4;20189:1;20182:15;20216:4;20213:1;20206:15;20232:127;20293:10;20288:3;20284:20;20281:1;20274:31;20324:4;20321:1;20314:15;20348:4;20345:1;20338:15;20364:127;20425:10;20420:3;20416:20;20413:1;20406:31;20456:4;20453:1;20446:15;20480:4;20477:1;20470:15;20496:127;20557:10;20552:3;20548:20;20545:1;20538:31;20588:4;20585:1;20578:15;20612:4;20609:1;20602:15;20628:127;20689:10;20684:3;20680:20;20677:1;20670:31;20720:4;20717:1;20710:15;20744:4;20741:1;20734:15;20760:131;-1:-1:-1;;;;;;20834:32:17;;20824:43;;20814:71;;20881:1;20878;20871:12

Swarm Source

ipfs://4816cd81a4d7704327657525e6a6776ac71aec75c08be16c2281465298eb4fbb
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.