ETH Price: $3,408.27 (-1.87%)
Gas: 7 Gwei

Token

Happy Koalas (HAPPY KOALAS)
 

Overview

Max Total Supply

369 HAPPY KOALAS

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dno.eth
Balance
1 HAPPY KOALAS
0xb9ea52adc53233b306c915cfaa1e628c8d186e98
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:
HappyKoalas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-11
*/

// SPDX-License-Identifier: MIT
// File: contracts/Address.sol


pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


// 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// 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: contracts/ERC721.sol



pragma solidity ^0.8.7;








abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address. An optimization that saves users gas
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: contracts/ERC721Enumerable.sol



pragma solidity ^0.8.7;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: contracts/HappyKoalas.sol



pragma solidity ^0.8.7;

/* 

  (: @Happy_Koalas : 6,666 evolving Koalas on the Ethereum blockchain :)

  developer: @BlockDaddyy (twitter)
  founder: @SpartNFTs (twitter)

  This contract has some unique tokenomics that **have never been done before.**
  Koalas start as 2D cuties and evolve to 3D versions. Then holders will have the
  option to revert their koalas back to 2D for limited times periods. I would also like
  to take it to the next level with another idea TBA. 


  This contract is gas optimized. 
  Shoutout @nftchance and @squeebo_nft
  https://medium.com/coinmonks/the-cannibalization-of-nfts-by-openzeppelin-by-insanely-high-gas-prices-cd2c9a7c1e7
  Future iterations should inherit from ERC721a (shoutout Azuki) 
  (original contract requirements did not allow for 721a to be implemented 
  because honoraries were initially spread randomly throughout the collection 
  but needed to be minted to a specific address.
  (721a is required to use amounts rather than indexes in important functions))
  Auditor: @moonfarm_eth

*/




contract HappyKoalas is ERC721Enumerable, Ownable {

    string public               baseURI_2D;
    string public               baseURI_3D;

    string public               baseExtension = ".json";

    event ProjectStateChanged(uint indexed newState);

    address public              proxyRegistryAddress; // opensea proxy for no-cost approval
    // Opensea (wyvern): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
    // Opensea Rinkeby: 0xf57b2c51ded3a29e6891aba85459d600256cf317

    bytes32 public              whitelistMerkleRoot = 0xec28c287910698953b8023cd36742c38840e4b3225917bf1f49b7fd07408f3af;
    
    uint256 public constant     MAX_SUPPLY = 6666;
    uint256 public constant     MAX_WL_MINT = 2;
    uint256 public constant     MAX_PER_PUBLIC_TX = 10;
    uint256 public constant     WLPriceInWei  = 0.036 ether;
    uint256 public constant     publicPriceInWei  = 0.046 ether;

    // a lot of profits will be poured back into the community
    address public              founderPayoutAddress   =   0xDbc80CDCD242Eb27c3832465528A8dAE34B612b3;
    address public              developerPayoutAddress =   0x4E9f7618F72F3d497f4e252eBB6a731d715e7af5; //B5
    address public              adminPayoutAddress     =   0x07c47A72c65ce8A37622Ea8B15765dAD60163120;

    /**
     * this comment is duplicated later in the contract for clarity
     * projectState :
     * 0 = Koalas have evolved / devolve paused / sale inactive :
     * 1 = Koalas have evolved / devolve active / sale inactive :
     * 2 = sale paused or inactive
     * 3 = whitelist Sale
     * 4 = public sale
     * @dev IMPORTANT: Project State should never be kept above 1 once koalas have evolved to 3D !
     * @dev IMPORTANT: make sure baseURI_3D is set before dropping state below 2 (which will reveal 3D)
     * Likely Flow: 2 -> 3 -> 4 -> 2 -> 0 (3D released, devolve inactive) -> 1 -> (optional switching between 1 and 0)
     */
    uint8 public projectState = 2; // start paused

    mapping(address => bool) public projectProxy; // Lets avoid opensea approval fee! see overwritten isApprovedForAll at bottom
    
    mapping(address => uint8) public addressMintAmount; // track the amount whitelisters have minted

    mapping (uint256 => bool) public tokenHasDevolved; // returns whether token has devolved

    constructor(
        address _proxyRegistryAddress // opensea: wyvern proxy 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    )
        ERC721("Happy Koalas", "HAPPY KOALAS")
    {
        proxyRegistryAddress = _proxyRegistryAddress; // opensea wyvern
    }

    /**
     * @dev include trailing /
     */
    function setBaseURI_2D(string memory _baseURI_2D) public onlyOwner {
        baseURI_2D = _baseURI_2D;
    }

    /**
     @dev include trailing /
     */
    function setBaseURI_3D(string memory _baseURI_3D) public onlyOwner {
        baseURI_3D = _baseURI_3D;
    }    

    /**
     * @dev default: .json
     */
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    /** 
     * projectState :
     * 0 = Koalas have evolved / devolve paused / sale inactive :
     * 1 = Koalas have evolved / devolve active / sale inactive :
     * 2 = sale paused or inactive
     * 3 = whitelist Sale
     * 4 = public sale
     * @dev Project State should never be kept above 1 once koalas have evolved to 3D , unless a new set of metadata is used!
     * @dev Make sure baseURI_3D is set before dropping state below 2
     * Likely Flow: 2 -> 3 -> 4 -> 2 -> 0 (3D released, devolve inactive) -> 1 -> (optional switching between 1 and 0)
     */
    function setProjectState(uint8 _projectState) external onlyOwner {
        projectState = _projectState;
        emit ProjectStateChanged(_projectState);
    }


    // reminder : team should refresh entire project's metadata for our members when we reveal and evolve to 3D

    /**
     * Koala owner can call this function with the ID of their Koala if they want to revert it back to 2D Forever
     * (warning: this can't be undone)
     */
    function devolveTo2D(uint256 _tokenId) external {
        require(projectState == 1, "You can't devolve to 2D right now");
        require(_owners[_tokenId] == _msgSender(), "You can't change someone else's Koala"); // This also makes sure the token exists
        require(tokenHasDevolved[_tokenId] == false, "This token has already devolved");
        
        tokenHasDevolved[_tokenId] = true;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        if (projectState <= 1 && !tokenHasDevolved[_tokenId]){ // 3D stage of the project
            return string(abi.encodePacked(baseURI_3D, Strings.toString(_tokenId), baseExtension));
        }
        // 2D stage of the project (with option to do even cooler things after 3D)
        return string(abi.encodePacked(baseURI_2D, Strings.toString(_tokenId), baseExtension));
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress; // whitelist opensea and maybe looksrare
    }

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    } // proxy state must be flipped on opensea wyvern to allow for no approval fee


    /**
     * This function reserves 24 Honorary's (which will be given as gifts + a couple special raffles)
     * and 30 normal koalas for more raffles, rewards, etc.
     */
    function allocateHonoraryAndReserves() external onlyOwner {
        require(_owners.length == 0, "Honoraries and reserves already minted.");
        for(uint256 i; i < 54; i++) {
            _mint(0x525fc77C38020EcF09087FC69B3b07888316624C, i);
        } 
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function _verifyWL(bytes32[] memory proof, bytes32 leaf) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

    function whitelistMint(uint8 count, bytes32[] calldata _merkleProof) external payable {
        require(projectState > 2, "Whitelist Sale is not active"); //this function can be called during public sale as well. this reduces chance of failed tx's
        require(addressMintAmount[_msgSender()] + count <= MAX_WL_MINT, "You are trying to mint more than your limit.");
        require(_verifyWL(_merkleProof, keccak256(abi.encodePacked(_msgSender()))), "Invalid Merkle proof or address supplied.");
        require(count * WLPriceInWei == msg.value, "Invalid funds provided.");
        uint256 totalSupply = _owners.length;
        require(totalSupply + count <= MAX_SUPPLY, "Excedes max supply.");
        addressMintAmount[_msgSender()] = addressMintAmount[_msgSender()] + count; // count the total they have minted. avoids transfer exploit
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i); // _mint overwritten below to save gas
        }
    }

    function publicMint(uint256 count) external payable {
        uint256 totalSupply = _owners.length;
        require(totalSupply + count <= MAX_SUPPLY, "Sorry, sold out!");
        require(projectState == 4, "Public Sale is not active");
        require(count <= MAX_PER_PUBLIC_TX, "Exceeds max per transaction.");
        require(count * publicPriceInWei == msg.value, "Invalid funds provided.");
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i); //_mint overwritten below to save gas
        }
    }

    function sendEth(address to, uint256 amount) internal {
        (bool success, ) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    // TODO : triple check
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        sendEth(founderPayoutAddress, balance * 87 / 100);
        sendEth(developerPayoutAddress, balance * 12 / 100);
        sendEth(adminPayoutAddress, balance * 1 / 100);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }

        return true;
    }

    // save gas with _owners
    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

    // approve Ooensea proxy for easy trading
    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]){
            return true;
        } 
        return super.isApprovedForAll(_owner, operator);
    }

}

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newState","type":"uint256"}],"name":"ProjectStateChanged","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":[],"name":"MAX_PER_PUBLIC_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLPriceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocateHonoraryAndReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_2D","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_3D","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developerPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"devolveTo2D","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founderPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectState","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPriceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI_2D","type":"string"}],"name":"setBaseURI_2D","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI_3D","type":"string"}],"name":"setBaseURI_3D","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_projectState","type":"uint8"}],"name":"setProjectState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenHasDevolved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"count","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620001ff565b507fec28c287910698953b8023cd36742c38840e4b3225917bf1f49b7fd07408f3af600a55600b80546001600160a01b031990811673dbc80cdcd242eb27c3832465528a8dae34b612b317909155600c8054909116734e9f7618f72f3d497f4e252ebb6a731d715e7af5179055600d8054740207c47a72c65ce8a37622ea8b15765dad601631206001600160a81b0319909116179055348015620000cb57600080fd5b506040516200371238038062003712833981016040819052620000ee91620002a5565b6040518060400160405280600c81526020016b4861707079204b6f616c617360a01b8152506040518060400160405280600c81526020016b4841505059204b4f414c415360a01b815250816000908051906020019062000150929190620001ff565b50805162000166906001906020840190620001ff565b505050620001836200017d620001a960201b60201c565b620001ad565b600980546001600160a01b0319166001600160a01b039290921691909117905562000314565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020d90620002d7565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b600060208284031215620002b857600080fd5b81516001600160a01b0381168114620002d057600080fd5b9392505050565b600181811c90821680620002ec57607f821691505b602082108114156200030e57634e487b7160e01b600052602260045260246000fd5b50919050565b6133ee80620003246000396000f3fe60806040526004361061033f5760003560e01c8063715018a6116101b0578063c6682862116100ec578063da3ef23f11610095578063e985e9c51161006f578063e985e9c51461092b578063f2fde38b1461094b578063f3993d111461096b578063f73c814b1461098b57600080fd5b8063da3ef23f146108e1578063dbdfb48614610901578063e569c8bc1461091657600080fd5b8063d26ea6c0116100c6578063d26ea6c014610886578063d58bcaf0146108a6578063d7fc0340146108c157600080fd5b8063c668286214610831578063c87b56dd14610846578063cd7c03261461086657600080fd5b80639d9804bf11610159578063a22cb46511610133578063a22cb465146107bb578063aa98e0c6146107db578063b88d4fde146107f1578063bd32fb661461081157600080fd5b80639d9804bf14610756578063a03507ac1461076b578063a12fbf411461078b57600080fd5b80637d6f01cd1161018a5780637d6f01cd146107035780638da5cb5b1461072357806395d89b411461074157600080fd5b8063715018a61461068b578063748807ab146106a0578063775df1da146106d357600080fd5b806342842e0e1161027f5780635a4fee30116102285780635f137254116102025780635f137254146106105780636352211e1461063057806364375aa31461065057806370a082311461066b57600080fd5b80635a4fee30146105a05780635b54fc04146105c05780635bab26e2146105e057600080fd5b80634d44660c116102595780634d44660c1461054d5780634f6ccce71461056d578063583816691461058d57600080fd5b806342842e0e146104e0578063438b6300146105005780634596ab7b1461052d57600080fd5b806318160ddd116102ec5780632f745c59116102c65780632f745c591461048057806332cb6b0c146104a05780633c78677f146104b65780633ccfd60b146104cb57600080fd5b806318160ddd1461043857806323b872dd1461044d5780632db115441461046d57600080fd5b806306fdde031161031d57806306fdde03146103d4578063081812fc146103f6578063095ea7b31461041657600080fd5b80630109c52e1461034457806301ffc9a71461036c578063034763071461039c575b600080fd5b34801561035057600080fd5b50610359600281565b6040519081526020015b60405180910390f35b34801561037857600080fd5b5061038c610387366004612f62565b6109ab565b6040519015158152602001610363565b3480156103a857600080fd5b50600d546103bc906001600160a01b031681565b6040516001600160a01b039091168152602001610363565b3480156103e057600080fd5b506103e96109ef565b60405161036391906131b4565b34801561040257600080fd5b506103bc610411366004612f49565b610a81565b34801561042257600080fd5b50610436610431366004612f1d565b610b0e565b005b34801561044457600080fd5b50600254610359565b34801561045957600080fd5b50610436610468366004612df4565b610c40565b61043661047b366004612f49565b610cc7565b34801561048c57600080fd5b5061035961049b366004612f1d565b610e62565b3480156104ac57600080fd5b50610359611a0a81565b3480156104c257600080fd5b50610436610f9d565b3480156104d757600080fd5b5061043661109a565b3480156104ec57600080fd5b506104366104fb366004612df4565b61114f565b34801561050c57600080fd5b5061052061051b366004612cb3565b61116a565b6040516103639190613170565b34801561053957600080fd5b50610436610548366004613002565b611223565b34801561055957600080fd5b5061038c610568366004612e95565b6112d0565b34801561057957600080fd5b50610359610588366004612f49565b611352565b61043661059b36600461301d565b6113d0565b3480156105ac57600080fd5b506104366105bb366004612d6b565b6116eb565b3480156105cc57600080fd5b506104366105db366004612f49565b61172e565b3480156105ec57600080fd5b5061038c6105fb366004612cb3565b600e6020526000908152604090205460ff1681565b34801561061c57600080fd5b5061043661062b366004612fb9565b6118cf565b34801561063c57600080fd5b506103bc61064b366004612f49565b61192e565b34801561065c57600080fd5b50610359667fe5cf2bea000081565b34801561067757600080fd5b50610359610686366004612cb3565b6119ce565b34801561069757600080fd5b50610436611aaf565b3480156106ac57600080fd5b50600d546106c190600160a01b900460ff1681565b60405160ff9091168152602001610363565b3480156106df57600080fd5b5061038c6106ee366004612f49565b60106020526000908152604090205460ff1681565b34801561070f57600080fd5b50600b546103bc906001600160a01b031681565b34801561072f57600080fd5b506005546001600160a01b03166103bc565b34801561074d57600080fd5b506103e9611b03565b34801561076257600080fd5b50610359600a81565b34801561077757600080fd5b50610436610786366004612fb9565b611b12565b34801561079757600080fd5b506106c16107a6366004612cb3565b600f6020526000908152604090205460ff1681565b3480156107c757600080fd5b506104366107d6366004612eea565b611b6d565b3480156107e757600080fd5b50610359600a5481565b3480156107fd57600080fd5b5061043661080c366004612e35565b611c32565b34801561081d57600080fd5b5061043661082c366004612f49565b611cc0565b34801561083d57600080fd5b506103e9611d0d565b34801561085257600080fd5b506103e9610861366004612f49565b611d9b565b34801561087257600080fd5b506009546103bc906001600160a01b031681565b34801561089257600080fd5b506104366108a1366004612cb3565b611e64565b3480156108b257600080fd5b5061035966a36cc19bab000081565b3480156108cd57600080fd5b50600c546103bc906001600160a01b031681565b3480156108ed57600080fd5b506104366108fc366004612fb9565b611ece565b34801561090d57600080fd5b506103e9611f29565b34801561092257600080fd5b506103e9611f36565b34801561093757600080fd5b5061038c610946366004612cd0565b611f43565b34801561095757600080fd5b50610436610966366004612cb3565b61204f565b34801561097757600080fd5b50610436610986366004612d09565b61211c565b34801561099757600080fd5b506104366109a6366004612cb3565b61215e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109e957506109e9826121cf565b92915050565b6060600080546109fe906132ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a906132ab565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c8261226a565b610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b198261192e565b9050806001600160a01b0316836001600160a01b03161415610ba35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0382161480610bbf5750610bbf8133611f43565b610c315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610c3b83836122b8565b505050565b610c4a3382612326565b610cbc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b610c3b8383836123e8565b600254611a0a610cd783836131f8565b1115610d255760405162461bcd60e51b815260206004820152601060248201527f536f7272792c20736f6c64206f757421000000000000000000000000000000006044820152606401610ae9565b600d54600160a01b900460ff16600414610d815760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f7420616374697665000000000000006044820152606401610ae9565b600a821115610dd25760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610ae9565b34610de466a36cc19bab000084613249565b14610e315760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610ae9565b60005b82811015610c3b57610e50335b610e4b83856131f8565b61256b565b80610e5a816132e6565b915050610e34565b6000610e6d836119ce565b8210610ecf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b6000805b600254811015610f405760028181548110610ef057610ef0613341565b6000918252602090912001546001600160a01b0386811691161415610f2e5783821415610f205791506109e99050565b81610f2a816132e6565b9250505b80610f38816132e6565b915050610ed3565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b6005546001600160a01b03163314610fe55760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6002541561105b5760405162461bcd60e51b815260206004820152602760248201527f486f6e6f72617269657320616e6420726573657276657320616c72656164792060448201527f6d696e7465642e000000000000000000000000000000000000000000000000006064820152608401610ae9565b60005b60368110156110975761108573525fc77c38020ecf09087fc69b3b07888316624c8261256b565b8061108f816132e6565b91505061105e565b50565b6005546001600160a01b031633146110e25760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600b544790611110906001600160a01b03166064611101846057613249565b61110b9190613235565b6125e7565b600c8054611132916001600160a01b0390911690606490611101908590613249565b600d54611097906001600160a01b03166064611101846001613249565b610c3b83838360405180602001604052806000815250611c32565b60606000611177836119ce565b9050806111985760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111b3576111b3613357565b6040519080825280602002602001820160405280156111dc578160200160208202803683370190505b50905060005b82811015611190576111f48582610e62565b82828151811061120657611206613341565b60209081029190910101528061121b816132e6565b9150506111e2565b6005546001600160a01b0316331461126b5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b60ff8416908102919091179091556040517fc506b9a9a7e241e6c8676102e0eca3a0634b964741f6a4d0b80f78828684f6c790600090a250565b6000805b8281101561134557846001600160a01b031660028585848181106112fa576112fa613341565b905060200201358154811061131157611311613341565b6000918252602090912001546001600160a01b03161461133557600091505061134b565b61133e816132e6565b90506112d4565b50600190505b9392505050565b60025460009082106113cc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ae9565b5090565b600d546002600160a01b90910460ff161161142d5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742053616c65206973206e6f7420616374697665000000006044820152606401610ae9565b336000908152600f602052604090205460029061144e90859060ff16613210565b60ff1611156114c55760405162461bcd60e51b815260206004820152602c60248201527f596f752061726520747279696e6720746f206d696e74206d6f7265207468616e60448201527f20796f7572206c696d69742e00000000000000000000000000000000000000006064820152608401610ae9565b61154882828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061150592506122b4915050565b60405160200161152d919060609190911b6bffffffffffffffffffffffff1916815260140190565b6040516020818303038152906040528051906020012061268a565b6115ba5760405162461bcd60e51b815260206004820152602960248201527f496e76616c6964204d65726b6c652070726f6f66206f7220616464726573732060448201527f737570706c6965642e00000000000000000000000000000000000000000000006064820152608401610ae9565b346115cf667fe5cf2bea000060ff8616613249565b1461161c5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610ae9565b600254611a0a61162f60ff8616836131f8565b111561167d5760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e000000000000000000000000006044820152606401610ae9565b336000908152600f602052604090205461169b90859060ff16613210565b336000908152600f60205260408120805460ff191660ff93909316929092179091555b8460ff168110156116e4576116d233610e41565b806116dc816132e6565b9150506116be565b5050505050565b60005b82518110156116e45761171c858585848151811061170e5761170e613341565b602002602001015185611c32565b80611726816132e6565b9150506116ee565b600d54600160a01b900460ff166001146117b05760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206465766f6c766520746f203244207269676874206e6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0316600282815481106117cd576117cd613341565b6000918252602090912001546001600160a01b0316146118555760405162461bcd60e51b815260206004820152602560248201527f596f752063616e2774206368616e676520736f6d656f6e6520656c736527732060448201527f4b6f616c610000000000000000000000000000000000000000000000000000006064820152608401610ae9565b60008181526010602052604090205460ff16156118b45760405162461bcd60e51b815260206004820152601f60248201527f5468697320746f6b656e2068617320616c7265616479206465766f6c766564006044820152606401610ae9565b6000908152601060205260409020805460ff19166001179055565b6005546001600160a01b031633146119175760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906006906020840190612ac3565b5050565b6000806002838154811061194457611944613341565b6000918252602090912001546001600160a01b03169050806109e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ae9565b60006001600160a01b038216611a4c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b6000805b600254811015611aa85760028181548110611a6d57611a6d613341565b6000918252602090912001546001600160a01b0385811691161415611a9857611a95826132e6565b91505b611aa1816132e6565b9050611a50565b5092915050565b6005546001600160a01b03163314611af75760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b611b016000612699565b565b6060600180546109fe906132ab565b6005546001600160a01b03163314611b5a5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906007906020840190612ac3565b6001600160a01b038216331415611bc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c3c3383612326565b611cae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b611cba848484846126eb565b50505050565b6005546001600160a01b03163314611d085760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600a55565b60088054611d1a906132ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d46906132ab565b8015611d935780601f10611d6857610100808354040283529160200191611d93565b820191906000526020600020905b815481529060010190602001808311611d7657829003601f168201915b505050505081565b6060611da68261226a565b611df25760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006044820152606401610ae9565b600d546001600160a01b90910460ff1611801590611e1f575060008281526010602052604090205460ff16155b15611e59576007611e2f83612774565b6008604051602001611e4393929190613101565b6040516020818303038152906040529050919050565b6006611e2f83612774565b6005546001600160a01b03163314611eac5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611f165760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906008906020840190612ac3565b60068054611d1a906132ab565b60078054611d1a906132ab565b6009546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611fa957600080fd5b505afa158015611fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe19190612f9c565b6001600160a01b0316148061200e57506001600160a01b0383166000908152600e602052604090205460ff165b1561201d5760019150506109e9565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146120975760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6001600160a01b0381166121135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae9565b61109781612699565b60005b8151811015611cba5761214c848484848151811061213f5761213f613341565b6020026020010151610c40565b80612156816132e6565b91505061211f565b6005546001600160a01b031633146121a65760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6001600160a01b03166000908152600e60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061223257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109e957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109e9565b600254600090821080156109e9575060006001600160a01b03166002838154811061229757612297613341565b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ed8261192e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123318261226a565b6123925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b600061239d8361192e565b9050806001600160a01b0316846001600160a01b031614806123d85750836001600160a01b03166123cd84610a81565b6001600160a01b0316145b8061204757506120478185611f43565b826001600160a01b03166123fb8261192e565b6001600160a01b0316146124775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ae9565b6001600160a01b0382166124f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b6124fd6000826122b8565b816002828154811061251157612511613341565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612634576040519150601f19603f3d011682016040523d82523d6000602084013e612639565b606091505b5050905080610c3b5760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642065746865720000000000000000000000006044820152606401610ae9565b600061134b83600a54846128a6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126f68484846123e8565b612702848484846128bc565b611cba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ae9565b6060816127b457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127de57806127c8816132e6565b91506127d79050600a83613235565b91506127b8565b60008167ffffffffffffffff8111156127f9576127f9613357565b6040519080825280601f01601f191660200182016040528015612823576020820181803683370190505b5090505b841561204757612838600183613268565b9150612845600a86613301565b6128509060306131f8565b60f81b81838151811061286557612865613341565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061289f600a86613235565b9450612827565b6000826128b38584612a1f565b14949350505050565b60006001600160a01b0384163b15612a1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612900903390899088908890600401613134565b602060405180830381600087803b15801561291a57600080fd5b505af192505050801561294a575060408051601f3d908101601f1916820190925261294791810190612f7f565b60015b6129fa573d808015612978576040519150601f19603f3d011682016040523d82523d6000602084013e61297d565b606091505b5080516129f25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ae9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612047565b506001949350505050565b600081815b8451811015611190576000858281518110612a4157612a41613341565b60200260200101519050808311612a83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ab0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612abb816132e6565b915050612a24565b828054612acf906132ab565b90600052602060002090601f016020900481019282612af15760008555612b37565b82601f10612b0a57805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b37578251825591602001919060010190612b1c565b506113cc9291505b808211156113cc5760008155600101612b3f565b600067ffffffffffffffff831115612b6d57612b6d613357565b612b80601f8401601f19166020016131c7565b9050828152838383011115612b9457600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612bbd57600080fd5b50813567ffffffffffffffff811115612bd557600080fd5b6020830191508360208260051b8501011115612bf057600080fd5b9250929050565b600082601f830112612c0857600080fd5b8135602067ffffffffffffffff821115612c2457612c24613357565b8160051b612c338282016131c7565b838152828101908684018388018501891015612c4e57600080fd5b600093505b85841015612c71578035835260019390930192918401918401612c53565b50979650505050505050565b600082601f830112612c8e57600080fd5b61134b83833560208501612b53565b803560ff81168114612cae57600080fd5b919050565b600060208284031215612cc557600080fd5b813561134b8161336d565b60008060408385031215612ce357600080fd5b8235612cee8161336d565b91506020830135612cfe8161336d565b809150509250929050565b600080600060608486031215612d1e57600080fd5b8335612d298161336d565b92506020840135612d398161336d565b9150604084013567ffffffffffffffff811115612d5557600080fd5b612d6186828701612bf7565b9150509250925092565b60008060008060808587031215612d8157600080fd5b8435612d8c8161336d565b93506020850135612d9c8161336d565b9250604085013567ffffffffffffffff80821115612db957600080fd5b612dc588838901612bf7565b93506060870135915080821115612ddb57600080fd5b50612de887828801612c7d565b91505092959194509250565b600080600060608486031215612e0957600080fd5b8335612e148161336d565b92506020840135612e248161336d565b929592945050506040919091013590565b60008060008060808587031215612e4b57600080fd5b8435612e568161336d565b93506020850135612e668161336d565b925060408501359150606085013567ffffffffffffffff811115612e8957600080fd5b612de887828801612c7d565b600080600060408486031215612eaa57600080fd5b8335612eb58161336d565b9250602084013567ffffffffffffffff811115612ed157600080fd5b612edd86828701612bab565b9497909650939450505050565b60008060408385031215612efd57600080fd5b8235612f088161336d565b915060208301358015158114612cfe57600080fd5b60008060408385031215612f3057600080fd5b8235612f3b8161336d565b946020939093013593505050565b600060208284031215612f5b57600080fd5b5035919050565b600060208284031215612f7457600080fd5b813561134b81613382565b600060208284031215612f9157600080fd5b815161134b81613382565b600060208284031215612fae57600080fd5b815161134b8161336d565b600060208284031215612fcb57600080fd5b813567ffffffffffffffff811115612fe257600080fd5b8201601f81018413612ff357600080fd5b61204784823560208401612b53565b60006020828403121561301457600080fd5b61134b82612c9d565b60008060006040848603121561303257600080fd5b612eb584612c9d565b6000815180845261305381602086016020860161327f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061308157607f831692505b60208084108214156130a357634e487b7160e01b600052602260045260246000fd5b8180156130b757600181146130c8576130f5565b60ff198616895284890196506130f5565b60008881526020902060005b868110156130ed5781548b8201529085019083016130d4565b505084890196505b50505050505092915050565b600061310d8286613067565b845161311d81836020890161327f565b61312981830186613067565b979650505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613166608083018461303b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131a85783518352928401929184019160010161318c565b50909695505050505050565b60208152600061134b602083018461303b565b604051601f8201601f1916810167ffffffffffffffff811182821017156131f0576131f0613357565b604052919050565b6000821982111561320b5761320b613315565b500190565b600060ff821660ff84168060ff0382111561322d5761322d613315565b019392505050565b6000826132445761324461332b565b500490565b600081600019048311821515161561326357613263613315565b500290565b60008282101561327a5761327a613315565b500390565b60005b8381101561329a578181015183820152602001613282565b83811115611cba5750506000910152565b600181811c908216806132bf57607f821691505b602082108114156132e057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132fa576132fa613315565b5060010190565b6000826133105761331061332b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109757600080fd5b6001600160e01b03198116811461109757600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212202f018368baeda01ea61a6b60647994a7e5ea5a5178e425c263551d6501aea0d564736f6c63430008070033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x60806040526004361061033f5760003560e01c8063715018a6116101b0578063c6682862116100ec578063da3ef23f11610095578063e985e9c51161006f578063e985e9c51461092b578063f2fde38b1461094b578063f3993d111461096b578063f73c814b1461098b57600080fd5b8063da3ef23f146108e1578063dbdfb48614610901578063e569c8bc1461091657600080fd5b8063d26ea6c0116100c6578063d26ea6c014610886578063d58bcaf0146108a6578063d7fc0340146108c157600080fd5b8063c668286214610831578063c87b56dd14610846578063cd7c03261461086657600080fd5b80639d9804bf11610159578063a22cb46511610133578063a22cb465146107bb578063aa98e0c6146107db578063b88d4fde146107f1578063bd32fb661461081157600080fd5b80639d9804bf14610756578063a03507ac1461076b578063a12fbf411461078b57600080fd5b80637d6f01cd1161018a5780637d6f01cd146107035780638da5cb5b1461072357806395d89b411461074157600080fd5b8063715018a61461068b578063748807ab146106a0578063775df1da146106d357600080fd5b806342842e0e1161027f5780635a4fee30116102285780635f137254116102025780635f137254146106105780636352211e1461063057806364375aa31461065057806370a082311461066b57600080fd5b80635a4fee30146105a05780635b54fc04146105c05780635bab26e2146105e057600080fd5b80634d44660c116102595780634d44660c1461054d5780634f6ccce71461056d578063583816691461058d57600080fd5b806342842e0e146104e0578063438b6300146105005780634596ab7b1461052d57600080fd5b806318160ddd116102ec5780632f745c59116102c65780632f745c591461048057806332cb6b0c146104a05780633c78677f146104b65780633ccfd60b146104cb57600080fd5b806318160ddd1461043857806323b872dd1461044d5780632db115441461046d57600080fd5b806306fdde031161031d57806306fdde03146103d4578063081812fc146103f6578063095ea7b31461041657600080fd5b80630109c52e1461034457806301ffc9a71461036c578063034763071461039c575b600080fd5b34801561035057600080fd5b50610359600281565b6040519081526020015b60405180910390f35b34801561037857600080fd5b5061038c610387366004612f62565b6109ab565b6040519015158152602001610363565b3480156103a857600080fd5b50600d546103bc906001600160a01b031681565b6040516001600160a01b039091168152602001610363565b3480156103e057600080fd5b506103e96109ef565b60405161036391906131b4565b34801561040257600080fd5b506103bc610411366004612f49565b610a81565b34801561042257600080fd5b50610436610431366004612f1d565b610b0e565b005b34801561044457600080fd5b50600254610359565b34801561045957600080fd5b50610436610468366004612df4565b610c40565b61043661047b366004612f49565b610cc7565b34801561048c57600080fd5b5061035961049b366004612f1d565b610e62565b3480156104ac57600080fd5b50610359611a0a81565b3480156104c257600080fd5b50610436610f9d565b3480156104d757600080fd5b5061043661109a565b3480156104ec57600080fd5b506104366104fb366004612df4565b61114f565b34801561050c57600080fd5b5061052061051b366004612cb3565b61116a565b6040516103639190613170565b34801561053957600080fd5b50610436610548366004613002565b611223565b34801561055957600080fd5b5061038c610568366004612e95565b6112d0565b34801561057957600080fd5b50610359610588366004612f49565b611352565b61043661059b36600461301d565b6113d0565b3480156105ac57600080fd5b506104366105bb366004612d6b565b6116eb565b3480156105cc57600080fd5b506104366105db366004612f49565b61172e565b3480156105ec57600080fd5b5061038c6105fb366004612cb3565b600e6020526000908152604090205460ff1681565b34801561061c57600080fd5b5061043661062b366004612fb9565b6118cf565b34801561063c57600080fd5b506103bc61064b366004612f49565b61192e565b34801561065c57600080fd5b50610359667fe5cf2bea000081565b34801561067757600080fd5b50610359610686366004612cb3565b6119ce565b34801561069757600080fd5b50610436611aaf565b3480156106ac57600080fd5b50600d546106c190600160a01b900460ff1681565b60405160ff9091168152602001610363565b3480156106df57600080fd5b5061038c6106ee366004612f49565b60106020526000908152604090205460ff1681565b34801561070f57600080fd5b50600b546103bc906001600160a01b031681565b34801561072f57600080fd5b506005546001600160a01b03166103bc565b34801561074d57600080fd5b506103e9611b03565b34801561076257600080fd5b50610359600a81565b34801561077757600080fd5b50610436610786366004612fb9565b611b12565b34801561079757600080fd5b506106c16107a6366004612cb3565b600f6020526000908152604090205460ff1681565b3480156107c757600080fd5b506104366107d6366004612eea565b611b6d565b3480156107e757600080fd5b50610359600a5481565b3480156107fd57600080fd5b5061043661080c366004612e35565b611c32565b34801561081d57600080fd5b5061043661082c366004612f49565b611cc0565b34801561083d57600080fd5b506103e9611d0d565b34801561085257600080fd5b506103e9610861366004612f49565b611d9b565b34801561087257600080fd5b506009546103bc906001600160a01b031681565b34801561089257600080fd5b506104366108a1366004612cb3565b611e64565b3480156108b257600080fd5b5061035966a36cc19bab000081565b3480156108cd57600080fd5b50600c546103bc906001600160a01b031681565b3480156108ed57600080fd5b506104366108fc366004612fb9565b611ece565b34801561090d57600080fd5b506103e9611f29565b34801561092257600080fd5b506103e9611f36565b34801561093757600080fd5b5061038c610946366004612cd0565b611f43565b34801561095757600080fd5b50610436610966366004612cb3565b61204f565b34801561097757600080fd5b50610436610986366004612d09565b61211c565b34801561099757600080fd5b506104366109a6366004612cb3565b61215e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109e957506109e9826121cf565b92915050565b6060600080546109fe906132ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a906132ab565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c8261226a565b610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b198261192e565b9050806001600160a01b0316836001600160a01b03161415610ba35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0382161480610bbf5750610bbf8133611f43565b610c315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610c3b83836122b8565b505050565b610c4a3382612326565b610cbc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b610c3b8383836123e8565b600254611a0a610cd783836131f8565b1115610d255760405162461bcd60e51b815260206004820152601060248201527f536f7272792c20736f6c64206f757421000000000000000000000000000000006044820152606401610ae9565b600d54600160a01b900460ff16600414610d815760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f7420616374697665000000000000006044820152606401610ae9565b600a821115610dd25760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610ae9565b34610de466a36cc19bab000084613249565b14610e315760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610ae9565b60005b82811015610c3b57610e50335b610e4b83856131f8565b61256b565b80610e5a816132e6565b915050610e34565b6000610e6d836119ce565b8210610ecf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b6000805b600254811015610f405760028181548110610ef057610ef0613341565b6000918252602090912001546001600160a01b0386811691161415610f2e5783821415610f205791506109e99050565b81610f2a816132e6565b9250505b80610f38816132e6565b915050610ed3565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae9565b6005546001600160a01b03163314610fe55760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6002541561105b5760405162461bcd60e51b815260206004820152602760248201527f486f6e6f72617269657320616e6420726573657276657320616c72656164792060448201527f6d696e7465642e000000000000000000000000000000000000000000000000006064820152608401610ae9565b60005b60368110156110975761108573525fc77c38020ecf09087fc69b3b07888316624c8261256b565b8061108f816132e6565b91505061105e565b50565b6005546001600160a01b031633146110e25760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600b544790611110906001600160a01b03166064611101846057613249565b61110b9190613235565b6125e7565b600c8054611132916001600160a01b0390911690606490611101908590613249565b600d54611097906001600160a01b03166064611101846001613249565b610c3b83838360405180602001604052806000815250611c32565b60606000611177836119ce565b9050806111985760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111b3576111b3613357565b6040519080825280602002602001820160405280156111dc578160200160208202803683370190505b50905060005b82811015611190576111f48582610e62565b82828151811061120657611206613341565b60209081029190910101528061121b816132e6565b9150506111e2565b6005546001600160a01b0316331461126b5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b60ff8416908102919091179091556040517fc506b9a9a7e241e6c8676102e0eca3a0634b964741f6a4d0b80f78828684f6c790600090a250565b6000805b8281101561134557846001600160a01b031660028585848181106112fa576112fa613341565b905060200201358154811061131157611311613341565b6000918252602090912001546001600160a01b03161461133557600091505061134b565b61133e816132e6565b90506112d4565b50600190505b9392505050565b60025460009082106113cc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ae9565b5090565b600d546002600160a01b90910460ff161161142d5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742053616c65206973206e6f7420616374697665000000006044820152606401610ae9565b336000908152600f602052604090205460029061144e90859060ff16613210565b60ff1611156114c55760405162461bcd60e51b815260206004820152602c60248201527f596f752061726520747279696e6720746f206d696e74206d6f7265207468616e60448201527f20796f7572206c696d69742e00000000000000000000000000000000000000006064820152608401610ae9565b61154882828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061150592506122b4915050565b60405160200161152d919060609190911b6bffffffffffffffffffffffff1916815260140190565b6040516020818303038152906040528051906020012061268a565b6115ba5760405162461bcd60e51b815260206004820152602960248201527f496e76616c6964204d65726b6c652070726f6f66206f7220616464726573732060448201527f737570706c6965642e00000000000000000000000000000000000000000000006064820152608401610ae9565b346115cf667fe5cf2bea000060ff8616613249565b1461161c5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610ae9565b600254611a0a61162f60ff8616836131f8565b111561167d5760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e000000000000000000000000006044820152606401610ae9565b336000908152600f602052604090205461169b90859060ff16613210565b336000908152600f60205260408120805460ff191660ff93909316929092179091555b8460ff168110156116e4576116d233610e41565b806116dc816132e6565b9150506116be565b5050505050565b60005b82518110156116e45761171c858585848151811061170e5761170e613341565b602002602001015185611c32565b80611726816132e6565b9150506116ee565b600d54600160a01b900460ff166001146117b05760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206465766f6c766520746f203244207269676874206e6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0316600282815481106117cd576117cd613341565b6000918252602090912001546001600160a01b0316146118555760405162461bcd60e51b815260206004820152602560248201527f596f752063616e2774206368616e676520736f6d656f6e6520656c736527732060448201527f4b6f616c610000000000000000000000000000000000000000000000000000006064820152608401610ae9565b60008181526010602052604090205460ff16156118b45760405162461bcd60e51b815260206004820152601f60248201527f5468697320746f6b656e2068617320616c7265616479206465766f6c766564006044820152606401610ae9565b6000908152601060205260409020805460ff19166001179055565b6005546001600160a01b031633146119175760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906006906020840190612ac3565b5050565b6000806002838154811061194457611944613341565b6000918252602090912001546001600160a01b03169050806109e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ae9565b60006001600160a01b038216611a4c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b6000805b600254811015611aa85760028181548110611a6d57611a6d613341565b6000918252602090912001546001600160a01b0385811691161415611a9857611a95826132e6565b91505b611aa1816132e6565b9050611a50565b5092915050565b6005546001600160a01b03163314611af75760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b611b016000612699565b565b6060600180546109fe906132ab565b6005546001600160a01b03163314611b5a5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906007906020840190612ac3565b6001600160a01b038216331415611bc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c3c3383612326565b611cae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b611cba848484846126eb565b50505050565b6005546001600160a01b03163314611d085760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600a55565b60088054611d1a906132ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611d46906132ab565b8015611d935780601f10611d6857610100808354040283529160200191611d93565b820191906000526020600020905b815481529060010190602001808311611d7657829003601f168201915b505050505081565b6060611da68261226a565b611df25760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e00000000000000000000006044820152606401610ae9565b600d546001600160a01b90910460ff1611801590611e1f575060008281526010602052604090205460ff16155b15611e59576007611e2f83612774565b6008604051602001611e4393929190613101565b6040516020818303038152906040529050919050565b6006611e2f83612774565b6005546001600160a01b03163314611eac5760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611f165760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b805161192a906008906020840190612ac3565b60068054611d1a906132ab565b60078054611d1a906132ab565b6009546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611fa957600080fd5b505afa158015611fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe19190612f9c565b6001600160a01b0316148061200e57506001600160a01b0383166000908152600e602052604090205460ff165b1561201d5760019150506109e9565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146120975760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6001600160a01b0381166121135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae9565b61109781612699565b60005b8151811015611cba5761214c848484848151811061213f5761213f613341565b6020026020010151610c40565b80612156816132e6565b91505061211f565b6005546001600160a01b031633146121a65760405162461bcd60e51b815260206004820181905260248201526000805160206133998339815191526044820152606401610ae9565b6001600160a01b03166000908152600e60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061223257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109e957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109e9565b600254600090821080156109e9575060006001600160a01b03166002838154811061229757612297613341565b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ed8261192e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123318261226a565b6123925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b600061239d8361192e565b9050806001600160a01b0316846001600160a01b031614806123d85750836001600160a01b03166123cd84610a81565b6001600160a01b0316145b8061204757506120478185611f43565b826001600160a01b03166123fb8261192e565b6001600160a01b0316146124775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ae9565b6001600160a01b0382166124f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b6124fd6000826122b8565b816002828154811061251157612511613341565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612634576040519150601f19603f3d011682016040523d82523d6000602084013e612639565b606091505b5050905080610c3b5760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642065746865720000000000000000000000006044820152606401610ae9565b600061134b83600a54846128a6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126f68484846123e8565b612702848484846128bc565b611cba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ae9565b6060816127b457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127de57806127c8816132e6565b91506127d79050600a83613235565b91506127b8565b60008167ffffffffffffffff8111156127f9576127f9613357565b6040519080825280601f01601f191660200182016040528015612823576020820181803683370190505b5090505b841561204757612838600183613268565b9150612845600a86613301565b6128509060306131f8565b60f81b81838151811061286557612865613341565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061289f600a86613235565b9450612827565b6000826128b38584612a1f565b14949350505050565b60006001600160a01b0384163b15612a1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612900903390899088908890600401613134565b602060405180830381600087803b15801561291a57600080fd5b505af192505050801561294a575060408051601f3d908101601f1916820190925261294791810190612f7f565b60015b6129fa573d808015612978576040519150601f19603f3d011682016040523d82523d6000602084013e61297d565b606091505b5080516129f25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ae9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612047565b506001949350505050565b600081815b8451811015611190576000858281518110612a4157612a41613341565b60200260200101519050808311612a83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ab0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612abb816132e6565b915050612a24565b828054612acf906132ab565b90600052602060002090601f016020900481019282612af15760008555612b37565b82601f10612b0a57805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b37578251825591602001919060010190612b1c565b506113cc9291505b808211156113cc5760008155600101612b3f565b600067ffffffffffffffff831115612b6d57612b6d613357565b612b80601f8401601f19166020016131c7565b9050828152838383011115612b9457600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612bbd57600080fd5b50813567ffffffffffffffff811115612bd557600080fd5b6020830191508360208260051b8501011115612bf057600080fd5b9250929050565b600082601f830112612c0857600080fd5b8135602067ffffffffffffffff821115612c2457612c24613357565b8160051b612c338282016131c7565b838152828101908684018388018501891015612c4e57600080fd5b600093505b85841015612c71578035835260019390930192918401918401612c53565b50979650505050505050565b600082601f830112612c8e57600080fd5b61134b83833560208501612b53565b803560ff81168114612cae57600080fd5b919050565b600060208284031215612cc557600080fd5b813561134b8161336d565b60008060408385031215612ce357600080fd5b8235612cee8161336d565b91506020830135612cfe8161336d565b809150509250929050565b600080600060608486031215612d1e57600080fd5b8335612d298161336d565b92506020840135612d398161336d565b9150604084013567ffffffffffffffff811115612d5557600080fd5b612d6186828701612bf7565b9150509250925092565b60008060008060808587031215612d8157600080fd5b8435612d8c8161336d565b93506020850135612d9c8161336d565b9250604085013567ffffffffffffffff80821115612db957600080fd5b612dc588838901612bf7565b93506060870135915080821115612ddb57600080fd5b50612de887828801612c7d565b91505092959194509250565b600080600060608486031215612e0957600080fd5b8335612e148161336d565b92506020840135612e248161336d565b929592945050506040919091013590565b60008060008060808587031215612e4b57600080fd5b8435612e568161336d565b93506020850135612e668161336d565b925060408501359150606085013567ffffffffffffffff811115612e8957600080fd5b612de887828801612c7d565b600080600060408486031215612eaa57600080fd5b8335612eb58161336d565b9250602084013567ffffffffffffffff811115612ed157600080fd5b612edd86828701612bab565b9497909650939450505050565b60008060408385031215612efd57600080fd5b8235612f088161336d565b915060208301358015158114612cfe57600080fd5b60008060408385031215612f3057600080fd5b8235612f3b8161336d565b946020939093013593505050565b600060208284031215612f5b57600080fd5b5035919050565b600060208284031215612f7457600080fd5b813561134b81613382565b600060208284031215612f9157600080fd5b815161134b81613382565b600060208284031215612fae57600080fd5b815161134b8161336d565b600060208284031215612fcb57600080fd5b813567ffffffffffffffff811115612fe257600080fd5b8201601f81018413612ff357600080fd5b61204784823560208401612b53565b60006020828403121561301457600080fd5b61134b82612c9d565b60008060006040848603121561303257600080fd5b612eb584612c9d565b6000815180845261305381602086016020860161327f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061308157607f831692505b60208084108214156130a357634e487b7160e01b600052602260045260246000fd5b8180156130b757600181146130c8576130f5565b60ff198616895284890196506130f5565b60008881526020902060005b868110156130ed5781548b8201529085019083016130d4565b505084890196505b50505050505092915050565b600061310d8286613067565b845161311d81836020890161327f565b61312981830186613067565b979650505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613166608083018461303b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131a85783518352928401929184019160010161318c565b50909695505050505050565b60208152600061134b602083018461303b565b604051601f8201601f1916810167ffffffffffffffff811182821017156131f0576131f0613357565b604052919050565b6000821982111561320b5761320b613315565b500190565b600060ff821660ff84168060ff0382111561322d5761322d613315565b019392505050565b6000826132445761324461332b565b500490565b600081600019048311821515161561326357613263613315565b500290565b60008282101561327a5761327a613315565b500390565b60005b8381101561329a578181015183820152602001613282565b83811115611cba5750506000910152565b600181811c908216806132bf57607f821691505b602082108114156132e057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132fa576132fa613315565b5060010190565b6000826133105761331061332b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109757600080fd5b6001600160e01b03198116811461109757600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212202f018368baeda01ea61a6b60647994a7e5ea5a5178e425c263551d6501aea0d564736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

33696:10189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34377:43;;;;;;;;;;;;34419:1;34377:43;;;;;12972:25:1;;;12960:2;12945:18;34377:43:0;;;;;;;;26602:224;;;;;;;;;;-1:-1:-1;26602:224:0;;;;;:::i;:::-;;:::i;:::-;;;12799:14:1;;12792:22;12774:41;;12762:2;12747:18;26602:224:0;12634:187:1;34891:97:0;;;;;;;;;;-1:-1:-1;34891:97:0;;;;-1:-1:-1;;;;;34891:97:0;;;;;;-1:-1:-1;;;;;11414:55:1;;;11396:74;;11384:2;11369:18;34891:97:0;11250:226:1;15170:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15982:308::-;;;;;;;;;;-1:-1:-1;15982:308:0;;;;;:::i;:::-;;:::i;15505:411::-;;;;;;;;;;-1:-1:-1;15505:411:0;;;;;:::i;:::-;;:::i;:::-;;26902:110;;;;;;;;;;-1:-1:-1;26990:7:0;:14;26902:110;;17041:376;;;;;;;;;;-1:-1:-1;17041:376:0;;;;;:::i;:::-;;:::i;41038:548::-;;;;;;:::i;:::-;;:::i;27378:490::-;;;;;;;;;;-1:-1:-1;27378:490:0;;;;;:::i;:::-;;:::i;34325:45::-;;;;;;;;;;;;34366:4;34325:45;;39437:266;;;;;;;;;;;;;:::i;41799:274::-;;;;;;;;;;;;;:::i;17488:185::-;;;;;;;;;;-1:-1:-1;17488:185:0;;;;;:::i;:::-;;:::i;42081:400::-;;;;;;;;;;-1:-1:-1;42081:400:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37414:162::-;;;;;;;;;;-1:-1:-1;37414:162:0;;;;;:::i;:::-;;:::i;42980:271::-;;;;;;;;;;-1:-1:-1;42980:271:0;;;;;:::i;:::-;;:::i;27089:205::-;;;;;;;;;;-1:-1:-1;27089:205:0;;;;;:::i;:::-;;:::i;40033:997::-;;;;;;:::i;:::-;;:::i;42717:255::-;;;;;;;;;;-1:-1:-1;42717:255:0;;;;;:::i;:::-;;:::i;37874:409::-;;;;;;;;;;-1:-1:-1;37874:409:0;;;;;:::i;:::-;;:::i;35707:44::-;;;;;;;;;;-1:-1:-1;35707:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36363:110;;;;;;;;;;-1:-1:-1;36363:110:0;;;;;:::i;:::-;;:::i;14777:326::-;;;;;;;;;;-1:-1:-1;14777:326:0;;;;;:::i;:::-;;:::i;34484:55::-;;;;;;;;;;;;34528:11;34484:55;;14323:392;;;;;;;;;;-1:-1:-1;14323:392:0;;;;;:::i;:::-;;:::i;29586:103::-;;;;;;;;;;;;;:::i;35653:29::-;;;;;;;;;;-1:-1:-1;35653:29:0;;;;-1:-1:-1;;;35653:29:0;;;;;;;;;24870:4:1;24858:17;;;24840:36;;24828:2;24813:18;35653:29:0;24698:184:1;35947:49:0;;;;;;;;;;-1:-1:-1;35947:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34678:97;;;;;;;;;;-1:-1:-1;34678:97:0;;;;-1:-1:-1;;;;;34678:97:0;;;28935:87;;;;;;;;;;-1:-1:-1;29008:6:0;;-1:-1:-1;;;;;29008:6:0;28935:87;;15339:104;;;;;;;;;;;;;:::i;34427:50::-;;;;;;;;;;;;34475:2;34427:50;;36529:110;;;;;;;;;;-1:-1:-1;36529:110:0;;;;;:::i;:::-;;:::i;35843:50::-;;;;;;;;;;-1:-1:-1;35843:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16362:327;;;;;;;;;;-1:-1:-1;16362:327:0;;;;;:::i;:::-;;:::i;34196:116::-;;;;;;;;;;;;;;;;17744:365;;;;;;;;;;-1:-1:-1;17744:365:0;;;;;:::i;:::-;;:::i;39711:142::-;;;;;;;;;;-1:-1:-1;39711:142:0;;;;;:::i;:::-;;:::i;33847:51::-;;;;;;;;;;;;;:::i;38291:535::-;;;;;;;;;;-1:-1:-1;38291:535:0;;;;;:::i;:::-;;:::i;33964:48::-;;;;;;;;;;-1:-1:-1;33964:48:0;;;;-1:-1:-1;;;;;33964:48:0;;;38834:187;;;;;;;;;;-1:-1:-1;38834:187:0;;;;;:::i;:::-;;:::i;34546:59::-;;;;;;;;;;;;34594:11;34546:59;;34782:97;;;;;;;;;;-1:-1:-1;34782:97:0;;;;-1:-1:-1;;;;;34782:97:0;;;36697:128;;;;;;;;;;-1:-1:-1;36697:128:0;;;;;:::i;:::-;;:::i;33755:38::-;;;;;;;;;;;;;:::i;33800:::-;;;;;;;;;;;;;:::i;43498:382::-;;;;;;;;;;-1:-1:-1;43498:382:0;;;;;:::i;:::-;;:::i;29844:201::-;;;;;;;;;;-1:-1:-1;29844:201:0;;;;;:::i;:::-;;:::i;42489:220::-;;;;;;;;;;-1:-1:-1;42489:220:0;;;;;:::i;:::-;;:::i;39029:138::-;;;;;;;;;;-1:-1:-1;39029:138:0;;;;;:::i;:::-;;:::i;26602:224::-;26704:4;-1:-1:-1;;;;;;26728:50:0;;26743:35;26728:50;;:90;;;26782:36;26806:11;26782:23;:36::i;:::-;26721:97;26602:224;-1:-1:-1;;26602:224:0:o;15170:100::-;15224:13;15257:5;15250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:100;:::o;15982:308::-;16103:7;16150:16;16158:7;16150;:16::i;:::-;16128:110;;;;-1:-1:-1;;;16128:110:0;;20781:2:1;16128:110:0;;;20763:21:1;20820:2;20800:18;;;20793:30;20859:34;20839:18;;;20832:62;-1:-1:-1;;;20910:18:1;;;20903:42;20962:19;;16128:110:0;;;;;;;;;-1:-1:-1;16258:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16258:24:0;;15982:308::o;15505:411::-;15586:13;15602:23;15617:7;15602:14;:23::i;:::-;15586:39;;15650:5;-1:-1:-1;;;;;15644:11:0;:2;-1:-1:-1;;;;;15644:11:0;;;15636:57;;;;-1:-1:-1;;;15636:57:0;;22720:2:1;15636:57:0;;;22702:21:1;22759:2;22739:18;;;22732:30;22798:34;22778:18;;;22771:62;22869:3;22849:18;;;22842:31;22890:19;;15636:57:0;22518:397:1;15636:57:0;12925:10;-1:-1:-1;;;;;15728:21:0;;;;:62;;-1:-1:-1;15753:37:0;15770:5;12925:10;43498:382;:::i;15753:37::-;15706:168;;;;-1:-1:-1;;;15706:168:0;;18423:2:1;15706:168:0;;;18405:21:1;18462:2;18442:18;;;18435:30;18501:34;18481:18;;;18474:62;18572:26;18552:18;;;18545:54;18616:19;;15706:168:0;18221:420:1;15706:168:0;15887:21;15896:2;15900:7;15887:8;:21::i;:::-;15575:341;15505:411;;:::o;17041:376::-;17250:41;12925:10;17283:7;17250:18;:41::i;:::-;17228:140;;;;-1:-1:-1;;;17228:140:0;;23122:2:1;17228:140:0;;;23104:21:1;23161:2;23141:18;;;23134:30;23200:34;23180:18;;;23173:62;23271:19;23251:18;;;23244:47;23308:19;;17228:140:0;22920:413:1;17228:140:0;17381:28;17391:4;17397:2;17401:7;17381:9;:28::i;41038:548::-;41123:7;:14;34366:4;41156:19;41170:5;41123:14;41156:19;:::i;:::-;:33;;41148:62;;;;-1:-1:-1;;;41148:62:0;;16136:2:1;41148:62:0;;;16118:21:1;16175:2;16155:18;;;16148:30;16214:18;16194;;;16187:46;16250:18;;41148:62:0;15934:340:1;41148:62:0;41229:12;;-1:-1:-1;;;41229:12:0;;;;41245:1;41229:17;41221:55;;;;-1:-1:-1;;;41221:55:0;;15782:2:1;41221:55:0;;;15764:21:1;15821:2;15801:18;;;15794:30;15860:27;15840:18;;;15833:55;15905:18;;41221:55:0;15580:349:1;41221:55:0;34475:2;41295:5;:26;;41287:67;;;;-1:-1:-1;;;41287:67:0;;23540:2:1;41287:67:0;;;23522:21:1;23579:2;23559:18;;;23552:30;23618;23598:18;;;23591:58;23666:18;;41287:67:0;23338:352:1;41287:67:0;41401:9;41373:24;34594:11;41373:5;:24;:::i;:::-;:37;41365:73;;;;-1:-1:-1;;;41365:73:0;;20079:2:1;41365:73:0;;;20061:21:1;20118:2;20098:18;;;20091:30;20157:25;20137:18;;;20130:53;20200:18;;41365:73:0;19877:347:1;41365:73:0;41453:6;41449:130;41465:5;41461:1;:9;41449:130;;;41493:36;12925:10;41499:12;41513:15;41527:1;41513:11;:15;:::i;:::-;41493:5;:36::i;:::-;41472:3;;;;:::i;:::-;;;;41449:130;;27378:490;27475:15;27519:16;27529:5;27519:9;:16::i;:::-;27511:5;:24;27503:80;;;;-1:-1:-1;;;27503:80:0;;14142:2:1;27503:80:0;;;14124:21:1;14181:2;14161:18;;;14154:30;14220:34;14200:18;;;14193:62;-1:-1:-1;;;14271:18:1;;;14264:41;14322:19;;27503:80:0;13940:407:1;27503:80:0;27596:10;27621:6;27617:178;27633:7;:14;27629:18;;27617:178;;;27680:7;27688:1;27680:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27671:19:0;;;27680:10;;27671:19;27668:116;;;27722:5;27713;:14;27710:58;;;27736:1;-1:-1:-1;27729:8:0;;-1:-1:-1;27729:8:0;27710:58;27761:7;;;;:::i;:::-;;;;27710:58;27649:3;;;;:::i;:::-;;;;27617:178;;;-1:-1:-1;27807:53:0;;-1:-1:-1;;;27807:53:0;;14142:2:1;27807:53:0;;;14124:21:1;14181:2;14161:18;;;14154:30;14220:34;14200:18;;;14193:62;-1:-1:-1;;;14271:18:1;;;14264:41;14322:19;;27807:53:0;13940:407:1;39437:266:0;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;39514:7:::1;:14:::0;:19;39506:71:::1;;;::::0;-1:-1:-1;;;39506:71:0;;24310:2:1;39506:71:0::1;::::0;::::1;24292:21:1::0;24349:2;24329:18;;;24322:30;24388:34;24368:18;;;24361:62;24459:9;24439:18;;;24432:37;24486:19;;39506:71:0::1;24108:403:1::0;39506:71:0::1;39592:9;39588:107;39607:2;39603:1;:6;39588:107;;;39631:52;39637:42;39681:1;39631:5;:52::i;:::-;39611:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39588:107;;;;39437:266::o:0;41799:274::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;41905:20:::1;::::0;41865:21:::1;::::0;41897:49:::1;::::0;-1:-1:-1;;;;;41905:20:0::1;41942:3;41927:12;41865:21:::0;41937:2:::1;41927:12;:::i;:::-;:18;;;;:::i;:::-;41897:7;:49::i;:::-;41965:22;::::0;;41957:51:::1;::::0;-1:-1:-1;;;;;41965:22:0;;::::1;::::0;42004:3:::1;::::0;41989:12:::1;::::0;:7;;:12:::1;:::i;41957:51::-;42027:18;::::0;42019:46:::1;::::0;-1:-1:-1;;;;;42027:18:0::1;42061:3;42047:11;:7:::0;42027:18;42047:11:::1;:::i;17488:185::-:0;17626:39;17643:4;17649:2;17653:7;17626:39;;;;;;;;;;;;:16;:39::i;42081:400::-;42141:16;42170:18;42191:17;42201:6;42191:9;:17::i;:::-;42170:38;-1:-1:-1;42223:15:0;42219:44;;42247:16;;;42261:1;42247:16;;;;;;;;;;;-1:-1:-1;42240:23:0;42081:400;-1:-1:-1;;;42081:400:0:o;42219:44::-;42276:25;42318:10;42304:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42304:25:0;;42276:53;;42345:9;42340:108;42360:10;42356:1;:14;42340:108;;;42406:30;42426:6;42434:1;42406:19;:30::i;:::-;42392:8;42401:1;42392:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;42372:3;;;;:::i;:::-;;;;42340:108;;37414:162;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;37490:12:::1;:28:::0;;;::::1;-1:-1:-1::0;;;37490:28:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;37534:34:::1;::::0;::::1;::::0;-1:-1:-1;;37534:34:0::1;37414:162:::0;:::o;42980:271::-;43069:4;43089:9;43085:135;43100:20;;;43085:135;;;43170:7;-1:-1:-1;;;;;43145:32:0;:7;43153:9;;43163:1;43153:12;;;;;;;:::i;:::-;;;;;;;43145:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;43145:21:0;:32;43142:66;;43203:5;43196:12;;;;;43142:66;43122:3;;;:::i;:::-;;;43085:135;;;;43239:4;43232:11;;42980:271;;;;;;:::o;27089:205::-;27200:7;:14;27164:7;;27192:22;;27184:79;;;;-1:-1:-1;;;27184:79:0;;23897:2:1;27184:79:0;;;23879:21:1;23936:2;23916:18;;;23909:30;23975:34;23955:18;;;23948:62;24046:14;24026:18;;;24019:42;24078:19;;27184:79:0;23695:408:1;27184:79:0;-1:-1:-1;27281:5:0;27089:205::o;40033:997::-;40138:12;;40153:1;-1:-1:-1;;;40138:12:0;;;;;:16;40130:57;;;;-1:-1:-1;;;40130:57:0;;17240:2:1;40130:57:0;;;17222:21:1;17279:2;17259:18;;;17252:30;17318;17298:18;;;17291:58;17366:18;;40130:57:0;17038:352:1;40130:57:0;12925:10;40299:31;;;;:17;:31;;;;;;34419:1;;40299:39;;40333:5;;40299:31;;:39;:::i;:::-;:54;;;;40291:111;;;;-1:-1:-1;;;40291:111:0;;18010:2:1;40291:111:0;;;17992:21:1;18049:2;18029:18;;;18022:30;18088:34;18068:18;;;18061:62;18159:14;18139:18;;;18132:42;18191:19;;40291:111:0;17808:408:1;40291:111:0;40421:66;40431:12;;40421:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40472:12:0;;-1:-1:-1;40472:10:0;;-1:-1:-1;;40472:12:0:i;:::-;40455:30;;;;;;;10242:2:1;10238:15;;;;-1:-1:-1;;10234:53:1;10222:66;;10313:2;10304:12;;10093:229;40455:30:0;;;;;;;;;;;;;40445:41;;;;;;40421:9;:66::i;:::-;40413:120;;;;-1:-1:-1;;;40413:120:0;;19669:2:1;40413:120:0;;;19651:21:1;19708:2;19688:18;;;19681:30;19747:34;19727:18;;;19720:62;19818:11;19798:18;;;19791:39;19847:19;;40413:120:0;19467:405:1;40413:120:0;40576:9;40552:20;34528:11;40552:20;;;;:::i;:::-;:33;40544:69;;;;-1:-1:-1;;;40544:69:0;;20079:2:1;40544:69:0;;;20061:21:1;20118:2;20098:18;;;20091:30;20157:25;20137:18;;;20130:53;20200:18;;40544:69:0;19877:347:1;40544:69:0;40646:7;:14;34366:4;40679:19;;;;40646:14;40679:19;:::i;:::-;:33;;40671:65;;;;-1:-1:-1;;;40671:65:0;;13434:2:1;40671:65:0;;;13416:21:1;13473:2;13453:18;;;13446:30;13512:21;13492:18;;;13485:49;13551:18;;40671:65:0;13232:343:1;40671:65:0;12925:10;40781:31;;;;:17;:31;;;;;;:39;;40815:5;;40781:31;;:39;:::i;:::-;12925:10;40747:31;;;;:17;:31;;;;;:73;;-1:-1:-1;;40747:73:0;;;;;;;;;;;;;40892:131;40908:5;40904:9;;:1;:9;40892:131;;;40936:36;12925:10;40942:12;12845:98;40936:36;40915:3;;;;:::i;:::-;;;;40892:131;;;;40119:911;40033:997;;;:::o;42717:255::-;42847:9;42842:123;42866:9;:16;42862:1;:20;42842:123;;;42904:49;42921:5;42928:3;42933:9;42943:1;42933:12;;;;;;;;:::i;:::-;;;;;;;42947:5;42904:16;:49::i;:::-;42884:3;;;;:::i;:::-;;;;42842:123;;37874:409;37941:12;;-1:-1:-1;;;37941:12:0;;;;37957:1;37941:17;37933:63;;;;-1:-1:-1;;;37933:63:0;;14973:2:1;37933:63:0;;;14955:21:1;15012:2;14992:18;;;14985:30;15051:34;15031:18;;;15024:62;15122:3;15102:18;;;15095:31;15143:19;;37933:63:0;14771:397:1;37933:63:0;12925:10;-1:-1:-1;;;;;38015:33:0;:7;38023:8;38015:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;38015:17:0;:33;38007:83;;;;-1:-1:-1;;;38007:83:0;;21555:2:1;38007:83:0;;;21537:21:1;21594:2;21574:18;;;21567:30;21633:34;21613:18;;;21606:62;21704:7;21684:18;;;21677:35;21729:19;;38007:83:0;21353:401:1;38007:83:0;38150:26;;;;:16;:26;;;;;;;;:35;38142:79;;;;-1:-1:-1;;;38142:79:0;;13782:2:1;38142:79:0;;;13764:21:1;13821:2;13801:18;;;13794:30;13860:33;13840:18;;;13833:61;13911:18;;38142:79:0;13580:355:1;38142:79:0;38242:26;;;;:16;:26;;;;;:33;;-1:-1:-1;;38242:33:0;38271:4;38242:33;;;37874:409::o;36363:110::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;36441:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36363:110:::0;:::o;14777:326::-;14894:7;14919:13;14935:7;14943;14935:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14935:16:0;;-1:-1:-1;14984:19:0;14962:110;;;;-1:-1:-1;;;14962:110:0;;19259:2:1;14962:110:0;;;19241:21:1;19298:2;19278:18;;;19271:30;19337:34;19317:18;;;19310:62;19408:11;19388:18;;;19381:39;19437:19;;14962:110:0;19057:405:1;14323:392:0;14445:4;-1:-1:-1;;;;;14476:19:0;;14468:74;;;;-1:-1:-1;;;14468:74:0;;18848:2:1;14468:74:0;;;18830:21:1;18887:2;18867:18;;;18860:30;18926:34;18906:18;;;18899:62;18997:12;18977:18;;;18970:40;19027:19;;14468:74:0;18646:406:1;14468:74:0;14555:10;14581:6;14576:109;14593:7;:14;14589:18;;14576:109;;;14640:7;14648:1;14640:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14631:19:0;;;14640:10;;14631:19;14627:46;;;14666:7;;;:::i;:::-;;;14627:46;14609:3;;;:::i;:::-;;;14576:109;;;-1:-1:-1;14702:5:0;14323:392;-1:-1:-1;;14323:392:0:o;29586:103::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;29651:30:::1;29678:1;29651:18;:30::i;:::-;29586:103::o:0;15339:104::-;15395:13;15428:7;15421:14;;;;;:::i;36529:110::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;36607:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;16362:327::-:0;-1:-1:-1;;;;;16497:24:0;;12925:10;16497:24;;16489:62;;;;-1:-1:-1;;;16489:62:0;;16886:2:1;16489:62:0;;;16868:21:1;16925:2;16905:18;;;16898:30;16964:27;16944:18;;;16937:55;17009:18;;16489:62:0;16684:349:1;16489:62:0;12925:10;16564:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;16564:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;16564:53:0;;;;;;;;;;16633:48;;12774:41:1;;;16564:42:0;;12925:10;16633:48;;12747:18:1;16633:48:0;;;;;;;16362:327;;:::o;17744:365::-;17933:41;12925:10;17966:7;17933:18;:41::i;:::-;17911:140;;;;-1:-1:-1;;;17911:140:0;;23122:2:1;17911:140:0;;;23104:21:1;23161:2;23141:18;;;23134:30;23200:34;23180:18;;;23173:62;23271:19;23251:18;;;23244:47;23308:19;;17911:140:0;22920:413:1;17911:140:0;18062:39;18076:4;18082:2;18086:7;18095:5;18062:13;:39::i;:::-;17744:365;;;;:::o;39711:142::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;39803:19:::1;:42:::0;39711:142::o;33847:51::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38291:535::-;38357:13;38391:17;38399:8;38391:7;:17::i;:::-;38383:51;;;;-1:-1:-1;;;38383:51:0;;20431:2:1;38383:51:0;;;20413:21:1;20470:2;20450:18;;;20443:30;20509:23;20489:18;;;20482:51;20550:18;;38383:51:0;20229:345:1;38383:51:0;38449:12;;38465:1;-1:-1:-1;;;38449:12:0;;;;;:17;;;;:48;;-1:-1:-1;38471:26:0;;;;:16;:26;;;;;;;;38470:27;38449:48;38445:193;;;38571:10;38583:26;38600:8;38583:16;:26::i;:::-;38611:13;38554:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38540:86;;38291:535;;;:::o;38445:193::-;38763:10;38775:26;38792:8;38775:16;:26::i;38834:187::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;38928:20:::1;:44:::0;;-1:-1:-1;;;;;;38928:44:0::1;-1:-1:-1::0;;;;;38928:44:0;;;::::1;::::0;;;::::1;::::0;;38834:187::o;36697:128::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;36784:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;33755:38::-:0;;;;;;;:::i;33800:::-;;;;;;;:::i;43498:382::-;43663:20;;43707:29;;;;;-1:-1:-1;;;;;11414:55:1;;;43707:29:0;;;11396:74:1;43588:4:0;;43663:20;;;43699:50;;;;43663:20;;43707:21;;11369:18:1;;43707:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43699:50:0;;:76;;;-1:-1:-1;;;;;;43753:22:0;;;;;;:12;:22;;;;;;;;43699:76;43695:119;;;43798:4;43791:11;;;;;43695:119;-1:-1:-1;;;;;16931:25:0;;;16902:4;16931:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43832:40;43825:47;43498:382;-1:-1:-1;;;;43498:382:0:o;29844:201::-;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;-1:-1:-1;;;;;29933:22:0;::::1;29925:73;;;::::0;-1:-1:-1;;;29925:73:0;;15375:2:1;29925:73:0::1;::::0;::::1;15357:21:1::0;15414:2;15394:18;;;15387:30;15453:34;15433:18;;;15426:62;15524:8;15504:18;;;15497:36;15550:19;;29925:73:0::1;15173:402:1::0;29925:73:0::1;30009:28;30028:8;30009:18;:28::i;42489:220::-:0;42595:9;42590:112;42614:9;:16;42610:1;:20;42590:112;;;42652:38;42665:5;42672:3;42677:9;42687:1;42677:12;;;;;;;;:::i;:::-;;;;;;;42652;:38::i;:::-;42632:3;;;;:::i;:::-;;;;42590:112;;39029:138;29008:6;;-1:-1:-1;;;;;29008:6:0;12925:10;29155:23;29147:68;;;;-1:-1:-1;;;29147:68:0;;21194:2:1;29147:68:0;;;21176:21:1;;;21213:18;;;21206:30;-1:-1:-1;;;;;;;;;;;21252:18:1;;;21245:62;21324:18;;29147:68:0;20992:356:1;29147:68:0;-1:-1:-1;;;;;39133:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;39103:56:0;::::1;39133:26;::::0;;::::1;39132:27;39103:56;::::0;;39029:138::o;13904:355::-;14051:4;-1:-1:-1;;;;;;14093:40:0;;14108:25;14093:40;;:105;;-1:-1:-1;;;;;;;14150:48:0;;14165:33;14150:48;14093:105;:158;;;-1:-1:-1;5378:25:0;-1:-1:-1;;;;;;5363:40:0;;;14215:36;5254:157;19656:155;19755:7;:14;19721:4;;19745:24;;:58;;;;;19801:1;-1:-1:-1;;;;;19773:30:0;:7;19781;19773:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19773:16:0;:30;;19738:65;19656:155;-1:-1:-1;;19656:155:0:o;12845:98::-;12925:10;;12845:98::o;23681:174::-;23756:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;23756:29:0;-1:-1:-1;;;;;23756:29:0;;;;;;;;:24;;23810:23;23756:24;23810:14;:23::i;:::-;-1:-1:-1;;;;;23801:46:0;;;;;;;;;;;23681:174;;:::o;19978:452::-;20107:4;20151:16;20159:7;20151;:16::i;:::-;20129:110;;;;-1:-1:-1;;;20129:110:0;;17597:2:1;20129:110:0;;;17579:21:1;17636:2;17616:18;;;17609:30;17675:34;17655:18;;;17648:62;-1:-1:-1;;;17726:18:1;;;17719:42;17778:19;;20129:110:0;17395:408:1;20129:110:0;20250:13;20266:23;20281:7;20266:14;:23::i;:::-;20250:39;;20319:5;-1:-1:-1;;;;;20308:16:0;:7;-1:-1:-1;;;;;20308:16:0;;:64;;;;20365:7;-1:-1:-1;;;;;20341:31:0;:20;20353:7;20341:11;:20::i;:::-;-1:-1:-1;;;;;20341:31:0;;20308:64;:113;;;;20389:32;20406:5;20413:7;20389:16;:32::i;23010:553::-;23183:4;-1:-1:-1;;;;;23156:31:0;:23;23171:7;23156:14;:23::i;:::-;-1:-1:-1;;;;;23156:31:0;;23134:122;;;;-1:-1:-1;;;23134:122:0;;22310:2:1;23134:122:0;;;22292:21:1;22349:2;22329:18;;;22322:30;22388:34;22368:18;;;22361:62;22459:11;22439:18;;;22432:39;22488:19;;23134:122:0;22108:405:1;23134:122:0;-1:-1:-1;;;;;23275:16:0;;23267:65;;;;-1:-1:-1;;;23267:65:0;;16481:2:1;23267:65:0;;;16463:21:1;16520:2;16500:18;;;16493:30;16559:34;16539:18;;;16532:62;16630:6;16610:18;;;16603:34;16654:19;;23267:65:0;16279:400:1;23267:65:0;23449:29;23466:1;23470:7;23449:8;:29::i;:::-;23508:2;23489:7;23497;23489:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;23489:21:0;-1:-1:-1;;;;;23489:21:0;;;;;;23528:27;;23547:7;;23528:27;;;;;;;;;;23489:16;23528:27;23010:553;;;:::o;43289:154::-;43370:7;:16;;;;;;;-1:-1:-1;43370:16:0;;;;;;;-1:-1:-1;;;;;;43370:16:0;-1:-1:-1;;;;;43370:16:0;;;;;;;;43402:33;;43427:7;;-1:-1:-1;43402:33:0;;-1:-1:-1;;43402:33:0;43289:154;;:::o;41594:169::-;41660:12;41678:2;-1:-1:-1;;;;;41678:7:0;41693:6;41678:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41659:45;;;41723:7;41715:40;;;;-1:-1:-1;;;41715:40:0;;21961:2:1;41715:40:0;;;21943:21:1;22000:2;21980:18;;;21973:30;22039:22;22019:18;;;22012:50;22079:18;;41715:40:0;21759:344:1;39861:164:0;39941:4;39965:52;39984:5;39991:19;;40012:4;39965:18;:52::i;30205:191::-;30298:6;;;-1:-1:-1;;;;;30315:17:0;;;-1:-1:-1;;;;;;30315:17:0;;;;;;;30348:40;;30298:6;;;30315:17;30298:6;;30348:40;;30279:16;;30348:40;30268:128;30205:191;:::o;18991:352::-;19148:28;19158:4;19164:2;19168:7;19148:9;:28::i;:::-;19209:48;19232:4;19238:2;19242:7;19251:5;19209:22;:48::i;:::-;19187:148;;;;-1:-1:-1;;;19187:148:0;;14554:2:1;19187:148:0;;;14536:21:1;14593:2;14573:18;;;14566:30;14632:34;14612:18;;;14605:62;14703:20;14683:18;;;14676:48;14741:19;;19187:148:0;14352:414:1;682:723:0;738:13;959:10;955:53;;-1:-1:-1;;986:10:0;;;;;;;;;;;;;;;;;;682:723::o;955:53::-;1033:5;1018:12;1074:78;1081:9;;1074:78;;1107:8;;;;:::i;:::-;;-1:-1:-1;1130:10:0;;-1:-1:-1;1138:2:0;1130:10;;:::i;:::-;;;1074:78;;;1162:19;1194:6;1184:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1184:17:0;;1162:39;;1212:154;1219:10;;1212:154;;1246:11;1256:1;1246:11;;:::i;:::-;;-1:-1:-1;1315:10:0;1323:2;1315:5;:10;:::i;:::-;1302:24;;:2;:24;:::i;:::-;1289:39;;1272:6;1279;1272:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1343:11:0;1352:2;1343:11;;:::i;:::-;;;1212:154;;31311:190;31436:4;31489;31460:25;31473:5;31480:4;31460:12;:25::i;:::-;:33;;31311:190;-1:-1:-1;;;;31311:190:0:o;24420:980::-;24575:4;-1:-1:-1;;;;;24596:13:0;;248:20;296:8;24592:801;;24649:175;;-1:-1:-1;;;24649:175:0;;-1:-1:-1;;;;;24649:36:0;;;;;:175;;12925:10;;24743:4;;24770:7;;24800:5;;24649:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24649:175:0;;;;;;;;-1:-1:-1;;24649:175:0;;;;;;;;;;;;:::i;:::-;;;24628:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25007:13:0;;25003:320;;25050:108;;-1:-1:-1;;;25050:108:0;;14554:2:1;25050:108:0;;;14536:21:1;14593:2;14573:18;;;14566:30;14632:34;14612:18;;;14605:62;14703:20;14683:18;;;14676:48;14741:19;;25050:108:0;14352:414:1;25003:320:0;25273:6;25267:13;25258:6;25254:2;25250:15;25243:38;24628:710;-1:-1:-1;;;;;;24888:51:0;-1:-1:-1;;;24888:51:0;;-1:-1:-1;24881:58:0;;24592:801;-1:-1:-1;25377:4:0;24420:980;;;;;;:::o;31863:701::-;31946:7;31989:4;31946:7;32004:523;32028:5;:12;32024:1;:16;32004:523;;;32062:20;32085:5;32091:1;32085:8;;;;;;;;:::i;:::-;;;;;;;32062:31;;32128:12;32112;:28;32108:408;;32265:44;;;;;;10484:19:1;;;10519:12;;;10512:28;;;10556:12;;32265:44:0;;;;;;;;;;;;32255:55;;;;;;32240:70;;32108:408;;;32455:44;;;;;;10484:19:1;;;10519:12;;;10512:28;;;10556:12;;32455:44:0;;;;;;;;;;;;32445:55;;;;;;32430:70;;32108:408;-1:-1:-1;32042:3:0;;;;:::i;:::-;;;;32004:523;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:367::-;488:8;498:6;552:3;545:4;537:6;533:17;529:27;519:55;;570:1;567;560:12;519:55;-1:-1:-1;593:20:1;;636:18;625:30;;622:50;;;668:1;665;658:12;622:50;705:4;697:6;693:17;681:29;;765:3;758:4;748:6;745:1;741:14;733:6;729:27;725:38;722:47;719:67;;;782:1;779;772:12;719:67;425:367;;;;;:::o;797:723::-;851:5;904:3;897:4;889:6;885:17;881:27;871:55;;922:1;919;912:12;871:55;958:6;945:20;984:4;1007:18;1003:2;1000:26;997:52;;;1029:18;;:::i;:::-;1075:2;1072:1;1068:10;1098:28;1122:2;1118;1114:11;1098:28;:::i;:::-;1160:15;;;1191:12;;;;1223:15;;;1257;;;1253:24;;1250:33;-1:-1:-1;1247:53:1;;;1296:1;1293;1286:12;1247:53;1318:1;1309:10;;1328:163;1342:2;1339:1;1336:9;1328:163;;;1399:17;;1387:30;;1360:1;1353:9;;;;;1437:12;;;;1469;;1328:163;;;-1:-1:-1;1509:5:1;797:723;-1:-1:-1;;;;;;;797:723:1:o;1525:220::-;1567:5;1620:3;1613:4;1605:6;1601:17;1597:27;1587:55;;1638:1;1635;1628:12;1587:55;1660:79;1735:3;1726:6;1713:20;1706:4;1698:6;1694:17;1660:79;:::i;1750:156::-;1816:20;;1876:4;1865:16;;1855:27;;1845:55;;1896:1;1893;1886:12;1845:55;1750:156;;;:::o;1911:247::-;1970:6;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;2163:388::-;2231:6;2239;2292:2;2280:9;2271:7;2267:23;2263:32;2260:52;;;2308:1;2305;2298:12;2260:52;2347:9;2334:23;2366:31;2391:5;2366:31;:::i;:::-;2416:5;-1:-1:-1;2473:2:1;2458:18;;2445:32;2486:33;2445:32;2486:33;:::i;:::-;2538:7;2528:17;;;2163:388;;;;;:::o;2556:624::-;2658:6;2666;2674;2727:2;2715:9;2706:7;2702:23;2698:32;2695:52;;;2743:1;2740;2733:12;2695:52;2782:9;2769:23;2801:31;2826:5;2801:31;:::i;:::-;2851:5;-1:-1:-1;2908:2:1;2893:18;;2880:32;2921:33;2880:32;2921:33;:::i;:::-;2973:7;-1:-1:-1;3031:2:1;3016:18;;3003:32;3058:18;3047:30;;3044:50;;;3090:1;3087;3080:12;3044:50;3113:61;3166:7;3157:6;3146:9;3142:22;3113:61;:::i;:::-;3103:71;;;2556:624;;;;;:::o;3185:844::-;3305:6;3313;3321;3329;3382:3;3370:9;3361:7;3357:23;3353:33;3350:53;;;3399:1;3396;3389:12;3350:53;3438:9;3425:23;3457:31;3482:5;3457:31;:::i;:::-;3507:5;-1:-1:-1;3564:2:1;3549:18;;3536:32;3577:33;3536:32;3577:33;:::i;:::-;3629:7;-1:-1:-1;3687:2:1;3672:18;;3659:32;3710:18;3740:14;;;3737:34;;;3767:1;3764;3757:12;3737:34;3790:61;3843:7;3834:6;3823:9;3819:22;3790:61;:::i;:::-;3780:71;;3904:2;3893:9;3889:18;3876:32;3860:48;;3933:2;3923:8;3920:16;3917:36;;;3949:1;3946;3939:12;3917:36;;3972:51;4015:7;4004:8;3993:9;3989:24;3972:51;:::i;:::-;3962:61;;;3185:844;;;;;;;:::o;4034:456::-;4111:6;4119;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;4235:9;4222:23;4254:31;4279:5;4254:31;:::i;:::-;4304:5;-1:-1:-1;4361:2:1;4346:18;;4333:32;4374:33;4333:32;4374:33;:::i;:::-;4034:456;;4426:7;;-1:-1:-1;;;4480:2:1;4465:18;;;;4452:32;;4034:456::o;4495:665::-;4590:6;4598;4606;4614;4667:3;4655:9;4646:7;4642:23;4638:33;4635:53;;;4684:1;4681;4674:12;4635:53;4723:9;4710:23;4742:31;4767:5;4742:31;:::i;:::-;4792:5;-1:-1:-1;4849:2:1;4834:18;;4821:32;4862:33;4821:32;4862:33;:::i;:::-;4914:7;-1:-1:-1;4968:2:1;4953:18;;4940:32;;-1:-1:-1;5023:2:1;5008:18;;4995:32;5050:18;5039:30;;5036:50;;;5082:1;5079;5072:12;5036:50;5105:49;5146:7;5137:6;5126:9;5122:22;5105:49;:::i;5165:572::-;5260:6;5268;5276;5329:2;5317:9;5308:7;5304:23;5300:32;5297:52;;;5345:1;5342;5335:12;5297:52;5384:9;5371:23;5403:31;5428:5;5403:31;:::i;:::-;5453:5;-1:-1:-1;5509:2:1;5494:18;;5481:32;5536:18;5525:30;;5522:50;;;5568:1;5565;5558:12;5522:50;5607:70;5669:7;5660:6;5649:9;5645:22;5607:70;:::i;:::-;5165:572;;5696:8;;-1:-1:-1;5581:96:1;;-1:-1:-1;;;;5165:572:1:o;5742:416::-;5807:6;5815;5868:2;5856:9;5847:7;5843:23;5839:32;5836:52;;;5884:1;5881;5874:12;5836:52;5923:9;5910:23;5942:31;5967:5;5942:31;:::i;:::-;5992:5;-1:-1:-1;6049:2:1;6034:18;;6021:32;6091:15;;6084:23;6072:36;;6062:64;;6122:1;6119;6112:12;6163:315;6231:6;6239;6292:2;6280:9;6271:7;6267:23;6263:32;6260:52;;;6308:1;6305;6298:12;6260:52;6347:9;6334:23;6366:31;6391:5;6366:31;:::i;:::-;6416:5;6468:2;6453:18;;;;6440:32;;-1:-1:-1;;;6163:315:1:o;6483:180::-;6542:6;6595:2;6583:9;6574:7;6570:23;6566:32;6563:52;;;6611:1;6608;6601:12;6563:52;-1:-1:-1;6634:23:1;;6483:180;-1:-1:-1;6483:180:1:o;6668:245::-;6726:6;6779:2;6767:9;6758:7;6754:23;6750:32;6747:52;;;6795:1;6792;6785:12;6747:52;6834:9;6821:23;6853:30;6877:5;6853:30;:::i;6918:249::-;6987:6;7040:2;7028:9;7019:7;7015:23;7011:32;7008:52;;;7056:1;7053;7046:12;7008:52;7088:9;7082:16;7107:30;7131:5;7107:30;:::i;7172:280::-;7271:6;7324:2;7312:9;7303:7;7299:23;7295:32;7292:52;;;7340:1;7337;7330:12;7292:52;7372:9;7366:16;7391:31;7416:5;7391:31;:::i;7457:450::-;7526:6;7579:2;7567:9;7558:7;7554:23;7550:32;7547:52;;;7595:1;7592;7585:12;7547:52;7635:9;7622:23;7668:18;7660:6;7657:30;7654:50;;;7700:1;7697;7690:12;7654:50;7723:22;;7776:4;7768:13;;7764:27;-1:-1:-1;7754:55:1;;7805:1;7802;7795:12;7754:55;7828:73;7893:7;7888:2;7875:16;7870:2;7866;7862:11;7828:73;:::i;8097:182::-;8154:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:52;;;8223:1;8220;8213:12;8175:52;8246:27;8263:9;8246:27;:::i;8284:507::-;8377:6;8385;8393;8446:2;8434:9;8425:7;8421:23;8417:32;8414:52;;;8462:1;8459;8452:12;8414:52;8485:27;8502:9;8485:27;:::i;8796:257::-;8837:3;8875:5;8869:12;8902:6;8897:3;8890:19;8918:63;8974:6;8967:4;8962:3;8958:14;8951:4;8944:5;8940:16;8918:63;:::i;:::-;9035:2;9014:15;-1:-1:-1;;9010:29:1;9001:39;;;;9042:4;8997:50;;8796:257;-1:-1:-1;;8796:257:1:o;9058:1030::-;9143:12;;9108:3;;9198:1;9218:18;;;;9271;;;;9298:61;;9352:4;9344:6;9340:17;9330:27;;9298:61;9378:2;9426;9418:6;9415:14;9395:18;9392:38;9389:218;;;-1:-1:-1;;;9460:1:1;9453:88;9564:4;9561:1;9554:15;9592:4;9589:1;9582:15;9389:218;9623:18;9650:104;;;;9768:1;9763:319;;;;9616:466;;9650:104;-1:-1:-1;;9683:24:1;;9671:37;;9728:16;;;;-1:-1:-1;9650:104:1;;9763:319;25240:1;25233:14;;;25277:4;25264:18;;9857:1;9871:165;9885:6;9882:1;9879:13;9871:165;;;9963:14;;9950:11;;;9943:35;10006:16;;;;9900:10;;9871:165;;;9875:3;;10065:6;10060:3;10056:16;10049:23;;9616:466;;;;;;;9058:1030;;;;:::o;10579:456::-;10800:3;10828:38;10862:3;10854:6;10828:38;:::i;:::-;10895:6;10889:13;10911:52;10956:6;10952:2;10945:4;10937:6;10933:17;10911:52;:::i;:::-;10979:50;11021:6;11017:2;11013:15;11005:6;10979:50;:::i;:::-;10972:57;10579:456;-1:-1:-1;;;;;;;10579:456:1:o;11481:511::-;11675:4;-1:-1:-1;;;;;11785:2:1;11777:6;11773:15;11762:9;11755:34;11837:2;11829:6;11825:15;11820:2;11809:9;11805:18;11798:43;;11877:6;11872:2;11861:9;11857:18;11850:34;11920:3;11915:2;11904:9;11900:18;11893:31;11941:45;11981:3;11970:9;11966:19;11958:6;11941:45;:::i;:::-;11933:53;11481:511;-1:-1:-1;;;;;;11481:511:1:o;11997:632::-;12168:2;12220:21;;;12290:13;;12193:18;;;12312:22;;;12139:4;;12168:2;12391:15;;;;12365:2;12350:18;;;12139:4;12434:169;12448:6;12445:1;12442:13;12434:169;;;12509:13;;12497:26;;12578:15;;;;12543:12;;;;12470:1;12463:9;12434:169;;;-1:-1:-1;12620:3:1;;11997:632;-1:-1:-1;;;;;;11997:632:1:o;13008:219::-;13157:2;13146:9;13139:21;13120:4;13177:44;13217:2;13206:9;13202:18;13194:6;13177:44;:::i;24887:275::-;24958:2;24952:9;25023:2;25004:13;;-1:-1:-1;;25000:27:1;24988:40;;25058:18;25043:34;;25079:22;;;25040:62;25037:88;;;25105:18;;:::i;:::-;25141:2;25134:22;24887:275;;-1:-1:-1;24887:275:1:o;25293:128::-;25333:3;25364:1;25360:6;25357:1;25354:13;25351:39;;;25370:18;;:::i;:::-;-1:-1:-1;25406:9:1;;25293:128::o;25426:204::-;25464:3;25500:4;25497:1;25493:12;25532:4;25529:1;25525:12;25567:3;25561:4;25557:14;25552:3;25549:23;25546:49;;;25575:18;;:::i;:::-;25611:13;;25426:204;-1:-1:-1;;;25426:204:1:o;25635:120::-;25675:1;25701;25691:35;;25706:18;;:::i;:::-;-1:-1:-1;25740:9:1;;25635:120::o;25760:168::-;25800:7;25866:1;25862;25858:6;25854:14;25851:1;25848:21;25843:1;25836:9;25829:17;25825:45;25822:71;;;25873:18;;:::i;:::-;-1:-1:-1;25913:9:1;;25760:168::o;25933:125::-;25973:4;26001:1;25998;25995:8;25992:34;;;26006:18;;:::i;:::-;-1:-1:-1;26043:9:1;;25933:125::o;26063:258::-;26135:1;26145:113;26159:6;26156:1;26153:13;26145:113;;;26235:11;;;26229:18;26216:11;;;26209:39;26181:2;26174:10;26145:113;;;26276:6;26273:1;26270:13;26267:48;;;-1:-1:-1;;26311:1:1;26293:16;;26286:27;26063:258::o;26326:437::-;26405:1;26401:12;;;;26448;;;26469:61;;26523:4;26515:6;26511:17;26501:27;;26469:61;26576:2;26568:6;26565:14;26545:18;26542:38;26539:218;;;-1:-1:-1;;;26610:1:1;26603:88;26714:4;26711:1;26704:15;26742:4;26739:1;26732:15;26539:218;;26326:437;;;:::o;26768:135::-;26807:3;-1:-1:-1;;26828:17:1;;26825:43;;;26848:18;;:::i;:::-;-1:-1:-1;26895:1:1;26884:13;;26768:135::o;26908:112::-;26940:1;26966;26956:35;;26971:18;;:::i;:::-;-1:-1:-1;27005:9:1;;26908:112::o;27025:184::-;-1:-1:-1;;;27074:1:1;27067:88;27174:4;27171:1;27164:15;27198:4;27195:1;27188:15;27214:184;-1:-1:-1;;;27263:1:1;27256:88;27363:4;27360:1;27353:15;27387:4;27384:1;27377:15;27403:184;-1:-1:-1;;;27452:1:1;27445:88;27552:4;27549:1;27542:15;27576:4;27573:1;27566:15;27592:184;-1:-1:-1;;;27641:1:1;27634:88;27741:4;27738:1;27731:15;27765:4;27762:1;27755:15;27781:154;-1:-1:-1;;;;;27860:5:1;27856:54;27849:5;27846:65;27836:93;;27925:1;27922;27915:12;27940:177;-1:-1:-1;;;;;;28018:5:1;28014:78;28007:5;28004:89;27994:117;;28107:1;28104;28097:12

Swarm Source

ipfs://2f018368baeda01ea61a6b60647994a7e5ea5a5178e425c263551d6501aea0d5
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.