ETH Price: $3,252.13 (+2.43%)
Gas: 3 Gwei

Token

PAYC Elementals (PAYCE)
 

Overview

Max Total Supply

167 PAYCE

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
almsbox.eth
Balance
1 PAYCE
0x588d41ebcdb498c7cf56208257f8b3a8f43a5e96
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:
PAYCElementals

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



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

}

// 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: @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/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: ERC2000000.sol



pragma solidity ^0.8.7;










library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

    // Mapping from token ID to owner address
    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;
        uint length= _owners.length;
        for( uint i; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        delete length;
        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 onlyAllowedOperator(from) {
          require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
      
    }
     
       function pepetransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        //solhint-disable-next-line max-line-length
       // require(
      //      _isApprovedOrOwner(_msgSender(), tokenId),
      //      "ERC721: transfer caller is not owner nor approved"
      //  );
      _beforeTokenTransferpepe(from , to ,tokenId);
         require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );

      _approve(address(0), tokenId);
        _owners[tokenId] = to;

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override  onlyAllowedOperator(from){
      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");

      
        _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 {}
      function _beforeTokenTransferpepe(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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");
    }
}


    pragma solidity ^0.8.13;


interface IPAYCContract {
    function ownerOf(uint256 tokenId) external view returns (address);
}

interface IPAYCSerums {
    function burn(address account, uint256 id, uint256 value) external;
}


    contract PAYCElementals  is ERC721Enumerable, Ownable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://QmfTPkvTnHbWPSeFzE35yFAVGo8DpvEiLonQ72dXLYxVAm/";
  string private uriSuffix = ".json";

  uint16 public  maxSupply = 7777;


   mapping (uint => bool) public minted;
  
 
  mapping (uint => uint) public mappingNewtoOldTokens;

  
    IPAYCContract public paycContract = IPAYCContract(0x2D0D57D004F82e9f4471CaA8b9f8B1965a814154);
    IPAYCSerums public paycSerums = IPAYCSerums(0x299C2D180342d0EC735aa3B0cb6B6f1900DA3b73);



    constructor() 
        ERC721("PAYC Elementals", "PAYCE") 
         {
       
    }
  
	function setPAYCContract(address contractAddr) external onlyOwner {
         paycContract= IPAYCContract(contractAddr);
	}  
    function setPAYCSerums(address contractAddr) external onlyOwner {
		  paycSerums= IPAYCSerums(contractAddr);
	}  
    
 

  function mint( uint tokenNumber) external {
     
         
   require(minted[tokenNumber] == false , "Claimed Already");
   uint16 totalSupply = uint16(_owners.length);
  require(paycContract.ownerOf(tokenNumber) == msg.sender, "Caller is not the owner of the PAYC token");
    paycSerums.burn(msg.sender, 1, 1);
     minted[tokenNumber] = true;
    _mint(msg.sender, totalSupply);
    mappingNewtoOldTokens[totalSupply] = tokenNumber;
  }


  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
  

    _tokenId = mappingNewtoOldTokens[_tokenId];

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


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }

 




 
 

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



  function _baseURI() internal view  returns (string memory) {
    return uriPrefix;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"","type":"uint256"}],"name":"mappingNewtoOldTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","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":[],"name":"paycContract","outputs":[{"internalType":"contract IPAYCContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paycSerums","outputs":[{"internalType":"contract IPAYCSerums","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setPAYCContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setPAYCSerums","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"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"}]

60e06040526036608081815290620024b060a0396006906200002290826200037d565b50604080518082019091526005815264173539b7b760d91b60208201526007906200004e90826200037d565b506008805461ffff1916611e61179055600b80546001600160a01b0319908116732d0d57d004f82e9f4471caa8b9f8b1965a81415417909155600c805490911673299c2d180342d0ec735aa3b0cb6b6f1900da3b73179055348015620000b2575f80fd5b50604080518082018252600f81526e5041594320456c656d656e74616c7360881b60208083019190915282518084019093526005835264504159434560d81b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620002485780156200019b57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b1580156200017e575f80fd5b505af115801562000191573d5f803e3d5ffd5b5050505062000248565b6001600160a01b03821615620001ec5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000166565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b15801562000230575f80fd5b505af115801562000243573d5f803e3d5ffd5b505050505b505f90506200025883826200037d565b5060016200026782826200037d565b505050620002846200027e6200028a60201b60201c565b6200028e565b62000449565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200030857607f821691505b6020821081036200032757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200037857805f5260205f20601f840160051c81016020851015620003545750805b601f840160051c820191505b8181101562000375575f815560010162000360565b50505b505050565b81516001600160401b03811115620003995762000399620002df565b620003b181620003aa8454620002f3565b846200032d565b602080601f831160018114620003e7575f8415620003cf5750858301515b5f19600386901b1c1916600185901b17855562000441565b5f85815260208120601f198616915b828110156200041757888601518255948401946001909101908401620003f6565b50858210156200043557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b61205980620004575f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c80637dc0bf3f116100f3578063c87b56dd11610093578063dea8be941161006e578063dea8be94146103c8578063df6309e3146103db578063e985e9c5146103ee578063f2fde38b14610429575f80fd5b8063c87b56dd14610375578063cf9bed2f14610388578063d5abeb01146103a7575f80fd5b806395d89b41116100ce57806395d89b4114610334578063a0712d681461033c578063a22cb4651461034f578063b88d4fde14610362575f80fd5b80637dc0bf3f146102ee5780637ec4a659146103105780638da5cb5b14610323575f80fd5b806342842e0e1161015e5780636637da93116101395780636637da93146102ad57806370a08231146102c0578063715018a6146102d3578063781a85e6146102db575f80fd5b806342842e0e146102745780634f6ccce7146102875780636352211e1461029a575f80fd5b8063095ea7b311610199578063095ea7b31461022757806318160ddd1461023c57806323b872dd1461024e5780632f745c5914610261575f80fd5b806301ffc9a7146101bf57806306fdde03146101e7578063081812fc146101fc575b5f80fd5b6101d26101cd36600461191a565b61043c565b60405190151581526020015b60405180910390f35b6101ef610466565b6040516101de9190611982565b61020f61020a366004611994565b6104f5565b6040516001600160a01b0390911681526020016101de565b61023a6102353660046119bf565b610580565b005b6002545b6040519081526020016101de565b61023a61025c3660046119e9565b610694565b61024061026f3660046119bf565b610838565b61023a6102823660046119e9565b6108dd565b610240610295366004611994565b610a48565b61020f6102a8366004611994565b610ab4565b61023a6102bb366004611a27565b610b3e565b6102406102ce366004611a27565b610b8a565b61023a610c51565b61023a6102e9366004611a27565b610c86565b6101d26102fc366004611994565b60096020525f908152604090205460ff1681565b61023a61031e366004611ac9565b610cd2565b6005546001600160a01b031661020f565b6101ef610d0c565b61023a61034a366004611994565b610d1b565b61023a61035d366004611b1b565b610ee1565b61023a610370366004611b52565b610fa4565b6101ef610383366004611994565b61114b565b610240610396366004611994565b600a6020525f908152604090205481565b6008546103b59061ffff1681565b60405161ffff90911681526020016101de565b600c5461020f906001600160a01b031681565b600b5461020f906001600160a01b031681565b6101d26103fc366004611bcd565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205460ff1690565b61023a610437366004611a27565b611224565b5f6001600160e01b0319821663780e9d6360e01b14806104605750610460826112bf565b92915050565b60605f805461047490611bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611bf9565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b5f6104ff8261130e565b6105655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600360205260409020546001600160a01b031690565b5f61058a82610ab4565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161055c565b336001600160a01b0382161480610613575061061381336103fc565b6106855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161055c565b61068f8383611355565b505050565b826daaeb6d7670e522a718067333cd4e3b1561080257336001600160a01b038216036106f1576106c5335b836113c2565b6106e15760405162461bcd60e51b815260040161055c90611c31565b6106ec8484846114a9565b610832565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561073e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107629190611c82565b80156107e35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e39190611c82565b61080257604051633b79c77360e21b815233600482015260240161055c565b61080b336106bf565b6108275760405162461bcd60e51b815260040161055c90611c31565b6108328484846114a9565b50505050565b5f61084283610b8a565b82106108605760405162461bcd60e51b815260040161055c90611c9d565b5f805b6002548110156108c4576002818154811061088057610880611ce8565b5f918252602090912001546001600160a01b03908116908616036108bc578382036108ae5791506104609050565b816108b881611d10565b9250505b600101610863565b5060405162461bcd60e51b815260040161055c90611c9d565b826daaeb6d7670e522a718067333cd4e3b15610a2e57336001600160a01b0382160361091d576106ec84848460405180602001604052805f815250610fa4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098e9190611c82565b8015610a0f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109eb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611c82565b610a2e57604051633b79c77360e21b815233600482015260240161055c565b61083284848460405180602001604052805f815250610fa4565b6002545f908210610ab05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161055c565b5090565b5f8060028381548110610ac957610ac9611ce8565b5f918252602090912001546001600160a01b03169050806104605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161055c565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161055c90611d28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216610bf45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161055c565b6002545f90815b81811015610c485760028181548110610c1657610c16611ce8565b5f918252602090912001546001600160a01b0390811690861603610c4057610c3d83611d10565b92505b600101610bfb565b50909392505050565b6005546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161055c90611d28565b610c845f6115fd565b565b6005546001600160a01b03163314610cb05760405162461bcd60e51b815260040161055c90611d28565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfc5760405162461bcd60e51b815260040161055c90611d28565b6006610d088282611da1565b5050565b60606001805461047490611bf9565b5f8181526009602052604090205460ff1615610d6b5760405162461bcd60e51b815260206004820152600f60248201526e436c61696d656420416c726561647960881b604482015260640161055c565b600254600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610db5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd99190611e61565b6001600160a01b031614610e415760405162461bcd60e51b815260206004820152602960248201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620746865205060448201526820aca1903a37b5b2b760b91b606482015260840161055c565b600c54604051637a94c56560e11b815233600482015260016024820181905260448201526001600160a01b039091169063f5298aca906064015f604051808303815f87803b158015610e91575f80fd5b505af1158015610ea3573d5f803e3d5ffd5b5050505f838152600960205260409020805460ff1916600117905550610ecd3361ffff831661164e565b61ffff165f908152600a6020526040902055565b336001600160a01b03831603610f395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161055c565b335f8181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561111357336001600160a01b0382160361100257610fd5335b846113c2565b610ff15760405162461bcd60e51b815260040161055c90611c31565b610ffd858585856116c9565b611144565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561104f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110739190611c82565b80156110f45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f49190611c82565b61111357604051633b79c77360e21b815233600482015260240161055c565b61111c33610fcf565b6111385760405162461bcd60e51b815260040161055c90611c31565b611144858585856116c9565b5050505050565b60606111568261130e565b6111ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161055c565b5f918252600a6020526040822054916111d16116fc565b90505f8151116111ef5760405180602001604052805f81525061121d565b806111f98461170b565b600760405160200161120d93929190611e7c565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461124e5760405162461bcd60e51b815260040161055c90611d28565b6001600160a01b0381166112b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055c565b6112bc816115fd565b50565b5f6001600160e01b031982166380ac58cd60e01b14806112ef57506001600160e01b03198216635b5e139f60e01b145b8061046057506301ffc9a760e01b6001600160e01b0319831614610460565b6002545f908210801561046057505f6001600160a01b03166002838154811061133957611339611ce8565b5f918252602090912001546001600160a01b0316141592915050565b5f81815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138982610ab4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f6113cc8261130e565b61142d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161055c565b5f61143783610ab4565b9050806001600160a01b0316846001600160a01b031614806114725750836001600160a01b0316611467846104f5565b6001600160a01b0316145b806114a157506001600160a01b038082165f9081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114bc82610ab4565b6001600160a01b0316146115245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161055c565b6001600160a01b0382166115865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161055c565b6115905f82611355565b81600282815481106115a4576115a4611ce8565b5f918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600280546001810182555f9182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116d48484846114a9565b6116e084848484611808565b6108325760405162461bcd60e51b815260040161055c90611f1a565b60606006805461047490611bf9565b6060815f036117315750506040805180820190915260018152600360fc1b602082015290565b815f5b811561175a578061174481611d10565b91506117539050600a83611f80565b9150611734565b5f8167ffffffffffffffff81111561177457611774611a42565b6040519080825280601f01601f19166020018201604052801561179e576020820181803683370190505b5090505b84156114a1576117b3600183611f93565b91506117c0600a86611fa6565b6117cb906030611fb9565b60f81b8183815181106117e0576117e0611ce8565b60200101906001600160f81b03191690815f1a905350611801600a86611f80565b94506117a2565b5f6001600160a01b0384163b156118fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184b903390899088908890600401611fcc565b6020604051808303815f875af1925050508015611885575060408051601f3d908101601f1916820190925261188291810190612008565b60015b6118e0573d8080156118b2576040519150601f19603f3d011682016040523d82523d5f602084013e6118b7565b606091505b5080515f036118d85760405162461bcd60e51b815260040161055c90611f1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114a1565b506001949350505050565b6001600160e01b0319811681146112bc575f80fd5b5f6020828403121561192a575f80fd5b813561121d81611905565b5f5b8381101561194f578181015183820152602001611937565b50505f910152565b5f815180845261196e816020860160208601611935565b601f01601f19169290920160200192915050565b602081525f61121d6020830184611957565b5f602082840312156119a4575f80fd5b5035919050565b6001600160a01b03811681146112bc575f80fd5b5f80604083850312156119d0575f80fd5b82356119db816119ab565b946020939093013593505050565b5f805f606084860312156119fb575f80fd5b8335611a06816119ab565b92506020840135611a16816119ab565b929592945050506040919091013590565b5f60208284031215611a37575f80fd5b813561121d816119ab565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611a7057611a70611a42565b604051601f8501601f19908116603f01168101908282118183101715611a9857611a98611a42565b81604052809350858152868686011115611ab0575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611ad9575f80fd5b813567ffffffffffffffff811115611aef575f80fd5b8201601f81018413611aff575f80fd5b6114a184823560208401611a56565b80151581146112bc575f80fd5b5f8060408385031215611b2c575f80fd5b8235611b37816119ab565b91506020830135611b4781611b0e565b809150509250929050565b5f805f8060808587031215611b65575f80fd5b8435611b70816119ab565b93506020850135611b80816119ab565b925060408501359150606085013567ffffffffffffffff811115611ba2575f80fd5b8501601f81018713611bb2575f80fd5b611bc187823560208401611a56565b91505092959194509250565b5f8060408385031215611bde575f80fd5b8235611be9816119ab565b91506020830135611b47816119ab565b600181811c90821680611c0d57607f821691505b602082108103611c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b5f60208284031215611c92575f80fd5b815161121d81611b0e565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611d2157611d21611cfc565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561068f57805f5260205f20601f840160051c81016020851015611d825750805b601f840160051c820191505b81811015611144575f8155600101611d8e565b815167ffffffffffffffff811115611dbb57611dbb611a42565b611dcf81611dc98454611bf9565b84611d5d565b602080601f831160018114611e02575f8415611deb5750858301515b5f19600386901b1c1916600185901b178555611e59565b5f85815260208120601f198616915b82811015611e3057888601518255948401946001909101908401611e11565b5085821015611e4d57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215611e71575f80fd5b815161121d816119ab565b5f84516020611e8f828560208a01611935565b855191840191611ea3818460208a01611935565b85549201915f90611eb381611bf9565b60018281168015611ecb5760018114611ee057611f0a565b60ff1984168752821515830287019450611f0a565b895f5260205f205f5b84811015611f0257815489820152908301908701611ee9565b505082870194505b50929a9950505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f82611f8e57611f8e611f6c565b500490565b8181038181111561046057610460611cfc565b5f82611fb457611fb4611f6c565b500690565b8082018082111561046057610460611cfc565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611ffe90830184611957565b9695505050505050565b5f60208284031215612018575f80fd5b815161121d8161190556fea26469706673582212207aa88c838aa63f4cc79a5c48a2101772ae577d4b683c4b426051f16d73e05eed64736f6c63430008180033697066733a2f2f516d6654506b76546e486257505365467a45333579464156476f3844707645694c6f6e51373264584c597856416d2f

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c80637dc0bf3f116100f3578063c87b56dd11610093578063dea8be941161006e578063dea8be94146103c8578063df6309e3146103db578063e985e9c5146103ee578063f2fde38b14610429575f80fd5b8063c87b56dd14610375578063cf9bed2f14610388578063d5abeb01146103a7575f80fd5b806395d89b41116100ce57806395d89b4114610334578063a0712d681461033c578063a22cb4651461034f578063b88d4fde14610362575f80fd5b80637dc0bf3f146102ee5780637ec4a659146103105780638da5cb5b14610323575f80fd5b806342842e0e1161015e5780636637da93116101395780636637da93146102ad57806370a08231146102c0578063715018a6146102d3578063781a85e6146102db575f80fd5b806342842e0e146102745780634f6ccce7146102875780636352211e1461029a575f80fd5b8063095ea7b311610199578063095ea7b31461022757806318160ddd1461023c57806323b872dd1461024e5780632f745c5914610261575f80fd5b806301ffc9a7146101bf57806306fdde03146101e7578063081812fc146101fc575b5f80fd5b6101d26101cd36600461191a565b61043c565b60405190151581526020015b60405180910390f35b6101ef610466565b6040516101de9190611982565b61020f61020a366004611994565b6104f5565b6040516001600160a01b0390911681526020016101de565b61023a6102353660046119bf565b610580565b005b6002545b6040519081526020016101de565b61023a61025c3660046119e9565b610694565b61024061026f3660046119bf565b610838565b61023a6102823660046119e9565b6108dd565b610240610295366004611994565b610a48565b61020f6102a8366004611994565b610ab4565b61023a6102bb366004611a27565b610b3e565b6102406102ce366004611a27565b610b8a565b61023a610c51565b61023a6102e9366004611a27565b610c86565b6101d26102fc366004611994565b60096020525f908152604090205460ff1681565b61023a61031e366004611ac9565b610cd2565b6005546001600160a01b031661020f565b6101ef610d0c565b61023a61034a366004611994565b610d1b565b61023a61035d366004611b1b565b610ee1565b61023a610370366004611b52565b610fa4565b6101ef610383366004611994565b61114b565b610240610396366004611994565b600a6020525f908152604090205481565b6008546103b59061ffff1681565b60405161ffff90911681526020016101de565b600c5461020f906001600160a01b031681565b600b5461020f906001600160a01b031681565b6101d26103fc366004611bcd565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205460ff1690565b61023a610437366004611a27565b611224565b5f6001600160e01b0319821663780e9d6360e01b14806104605750610460826112bf565b92915050565b60605f805461047490611bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611bf9565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b5f6104ff8261130e565b6105655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600360205260409020546001600160a01b031690565b5f61058a82610ab4565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161055c565b336001600160a01b0382161480610613575061061381336103fc565b6106855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161055c565b61068f8383611355565b505050565b826daaeb6d7670e522a718067333cd4e3b1561080257336001600160a01b038216036106f1576106c5335b836113c2565b6106e15760405162461bcd60e51b815260040161055c90611c31565b6106ec8484846114a9565b610832565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561073e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107629190611c82565b80156107e35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e39190611c82565b61080257604051633b79c77360e21b815233600482015260240161055c565b61080b336106bf565b6108275760405162461bcd60e51b815260040161055c90611c31565b6108328484846114a9565b50505050565b5f61084283610b8a565b82106108605760405162461bcd60e51b815260040161055c90611c9d565b5f805b6002548110156108c4576002818154811061088057610880611ce8565b5f918252602090912001546001600160a01b03908116908616036108bc578382036108ae5791506104609050565b816108b881611d10565b9250505b600101610863565b5060405162461bcd60e51b815260040161055c90611c9d565b826daaeb6d7670e522a718067333cd4e3b15610a2e57336001600160a01b0382160361091d576106ec84848460405180602001604052805f815250610fa4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098e9190611c82565b8015610a0f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109eb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611c82565b610a2e57604051633b79c77360e21b815233600482015260240161055c565b61083284848460405180602001604052805f815250610fa4565b6002545f908210610ab05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161055c565b5090565b5f8060028381548110610ac957610ac9611ce8565b5f918252602090912001546001600160a01b03169050806104605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161055c565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161055c90611d28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6001600160a01b038216610bf45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161055c565b6002545f90815b81811015610c485760028181548110610c1657610c16611ce8565b5f918252602090912001546001600160a01b0390811690861603610c4057610c3d83611d10565b92505b600101610bfb565b50909392505050565b6005546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161055c90611d28565b610c845f6115fd565b565b6005546001600160a01b03163314610cb05760405162461bcd60e51b815260040161055c90611d28565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfc5760405162461bcd60e51b815260040161055c90611d28565b6006610d088282611da1565b5050565b60606001805461047490611bf9565b5f8181526009602052604090205460ff1615610d6b5760405162461bcd60e51b815260206004820152600f60248201526e436c61696d656420416c726561647960881b604482015260640161055c565b600254600b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610db5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd99190611e61565b6001600160a01b031614610e415760405162461bcd60e51b815260206004820152602960248201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620746865205060448201526820aca1903a37b5b2b760b91b606482015260840161055c565b600c54604051637a94c56560e11b815233600482015260016024820181905260448201526001600160a01b039091169063f5298aca906064015f604051808303815f87803b158015610e91575f80fd5b505af1158015610ea3573d5f803e3d5ffd5b5050505f838152600960205260409020805460ff1916600117905550610ecd3361ffff831661164e565b61ffff165f908152600a6020526040902055565b336001600160a01b03831603610f395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161055c565b335f8181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561111357336001600160a01b0382160361100257610fd5335b846113c2565b610ff15760405162461bcd60e51b815260040161055c90611c31565b610ffd858585856116c9565b611144565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561104f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110739190611c82565b80156110f45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f49190611c82565b61111357604051633b79c77360e21b815233600482015260240161055c565b61111c33610fcf565b6111385760405162461bcd60e51b815260040161055c90611c31565b611144858585856116c9565b5050505050565b60606111568261130e565b6111ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161055c565b5f918252600a6020526040822054916111d16116fc565b90505f8151116111ef5760405180602001604052805f81525061121d565b806111f98461170b565b600760405160200161120d93929190611e7c565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461124e5760405162461bcd60e51b815260040161055c90611d28565b6001600160a01b0381166112b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055c565b6112bc816115fd565b50565b5f6001600160e01b031982166380ac58cd60e01b14806112ef57506001600160e01b03198216635b5e139f60e01b145b8061046057506301ffc9a760e01b6001600160e01b0319831614610460565b6002545f908210801561046057505f6001600160a01b03166002838154811061133957611339611ce8565b5f918252602090912001546001600160a01b0316141592915050565b5f81815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138982610ab4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f6113cc8261130e565b61142d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161055c565b5f61143783610ab4565b9050806001600160a01b0316846001600160a01b031614806114725750836001600160a01b0316611467846104f5565b6001600160a01b0316145b806114a157506001600160a01b038082165f9081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114bc82610ab4565b6001600160a01b0316146115245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161055c565b6001600160a01b0382166115865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161055c565b6115905f82611355565b81600282815481106115a4576115a4611ce8565b5f918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600280546001810182555f9182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116d48484846114a9565b6116e084848484611808565b6108325760405162461bcd60e51b815260040161055c90611f1a565b60606006805461047490611bf9565b6060815f036117315750506040805180820190915260018152600360fc1b602082015290565b815f5b811561175a578061174481611d10565b91506117539050600a83611f80565b9150611734565b5f8167ffffffffffffffff81111561177457611774611a42565b6040519080825280601f01601f19166020018201604052801561179e576020820181803683370190505b5090505b84156114a1576117b3600183611f93565b91506117c0600a86611fa6565b6117cb906030611fb9565b60f81b8183815181106117e0576117e0611ce8565b60200101906001600160f81b03191690815f1a905350611801600a86611f80565b94506117a2565b5f6001600160a01b0384163b156118fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184b903390899088908890600401611fcc565b6020604051808303815f875af1925050508015611885575060408051601f3d908101601f1916820190925261188291810190612008565b60015b6118e0573d8080156118b2576040519150601f19603f3d011682016040523d82523d5f602084013e6118b7565b606091505b5080515f036118d85760405162461bcd60e51b815260040161055c90611f1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114a1565b506001949350505050565b6001600160e01b0319811681146112bc575f80fd5b5f6020828403121561192a575f80fd5b813561121d81611905565b5f5b8381101561194f578181015183820152602001611937565b50505f910152565b5f815180845261196e816020860160208601611935565b601f01601f19169290920160200192915050565b602081525f61121d6020830184611957565b5f602082840312156119a4575f80fd5b5035919050565b6001600160a01b03811681146112bc575f80fd5b5f80604083850312156119d0575f80fd5b82356119db816119ab565b946020939093013593505050565b5f805f606084860312156119fb575f80fd5b8335611a06816119ab565b92506020840135611a16816119ab565b929592945050506040919091013590565b5f60208284031215611a37575f80fd5b813561121d816119ab565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611a7057611a70611a42565b604051601f8501601f19908116603f01168101908282118183101715611a9857611a98611a42565b81604052809350858152868686011115611ab0575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611ad9575f80fd5b813567ffffffffffffffff811115611aef575f80fd5b8201601f81018413611aff575f80fd5b6114a184823560208401611a56565b80151581146112bc575f80fd5b5f8060408385031215611b2c575f80fd5b8235611b37816119ab565b91506020830135611b4781611b0e565b809150509250929050565b5f805f8060808587031215611b65575f80fd5b8435611b70816119ab565b93506020850135611b80816119ab565b925060408501359150606085013567ffffffffffffffff811115611ba2575f80fd5b8501601f81018713611bb2575f80fd5b611bc187823560208401611a56565b91505092959194509250565b5f8060408385031215611bde575f80fd5b8235611be9816119ab565b91506020830135611b47816119ab565b600181811c90821680611c0d57607f821691505b602082108103611c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b5f60208284031215611c92575f80fd5b815161121d81611b0e565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611d2157611d21611cfc565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561068f57805f5260205f20601f840160051c81016020851015611d825750805b601f840160051c820191505b81811015611144575f8155600101611d8e565b815167ffffffffffffffff811115611dbb57611dbb611a42565b611dcf81611dc98454611bf9565b84611d5d565b602080601f831160018114611e02575f8415611deb5750858301515b5f19600386901b1c1916600185901b178555611e59565b5f85815260208120601f198616915b82811015611e3057888601518255948401946001909101908401611e11565b5085821015611e4d57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215611e71575f80fd5b815161121d816119ab565b5f84516020611e8f828560208a01611935565b855191840191611ea3818460208a01611935565b85549201915f90611eb381611bf9565b60018281168015611ecb5760018114611ee057611f0a565b60ff1984168752821515830287019450611f0a565b895f5260205f205f5b84811015611f0257815489820152908301908701611ee9565b505082870194505b50929a9950505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f82611f8e57611f8e611f6c565b500490565b8181038181111561046057610460611cfc565b5f82611fb457611fb4611f6c565b500690565b8082018082111561046057610460611cfc565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611ffe90830184611957565b9695505050505050565b5f60208284031215612018575f80fd5b815161121d8161190556fea26469706673582212207aa88c838aa63f4cc79a5c48a2101772ae577d4b683c4b426051f16d73e05eed64736f6c63430008180033

Deployed Bytecode Sourcemap

34724:2271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33202:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33202:224:0;;;;;;;;21006:100;;;:::i;:::-;;;;;;;:::i;21818:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;21818:308:0;1533:203:1;21341:411:0;;;;;;:::i;:::-;;:::i;:::-;;33502:110;33590:7;:14;33502:110;;;2343:25:1;;;2331:2;2316:18;33502:110:0;2197:177:1;22877:359:0;;;;;;:::i;:::-;;:::i;33978:490::-;;;;;;:::i;:::-;;:::i;23964:211::-;;;;;;:::i;:::-;;:::i;33689:205::-;;;;;;:::i;:::-;;:::i;20613:326::-;;;;;;:::i;:::-;;:::i;35527:113::-;;;;;;:::i;:::-;;:::i;20105:446::-;;;;;;:::i;:::-;;:::i;3655:103::-;;;:::i;35395:124::-;;;;;;:::i;:::-;;:::i;34989:36::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36600:102;;;;;;:::i;:::-;;:::i;3004:87::-;3077:6;;-1:-1:-1;;;;;3077:6:0;3004:87;;21175:104;;;:::i;35657:450::-;;;;;;:::i;:::-;;:::i;22198:327::-;;;;;;:::i;:::-;;:::i;24246:407::-;;;;;;:::i;:::-;;:::i;36115:477::-;;;;;;:::i;:::-;;:::i;35037:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;34948:31;;;;;;;;;;;;5801:6:1;5789:19;;;5771:38;;5759:2;5744:18;34948:31:0;5627:188:1;35201:87:0;;;;;-1:-1:-1;;;;;35201:87:0;;;35101:93;;;;;-1:-1:-1;;;;;35101:93:0;;;22596:214;;;;;;:::i;:::-;-1:-1:-1;;;;;22767:25:0;;;22738:4;22767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22596:214;3913:201;;;;;;:::i;:::-;;:::i;33202:224::-;33304:4;-1:-1:-1;;;;;;33328:50:0;;-1:-1:-1;;;33328:50:0;;:90;;;33382:36;33406:11;33382:23;:36::i;:::-;33321:97;33202:224;-1:-1:-1;;33202:224:0:o;21006:100::-;21060:13;21093:5;21086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21006:100;:::o;21818:308::-;21939:7;21986:16;21994:7;21986;:16::i;:::-;21964:110;;;;-1:-1:-1;;;21964:110:0;;7258:2:1;21964:110:0;;;7240:21:1;7297:2;7277:18;;;7270:30;7336:34;7316:18;;;7309:62;-1:-1:-1;;;7387:18:1;;;7380:42;7439:19;;21964:110:0;;;;;;;;;-1:-1:-1;22094:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22094:24:0;;21818:308::o;21341:411::-;21422:13;21438:23;21453:7;21438:14;:23::i;:::-;21422:39;;21486:5;-1:-1:-1;;;;;21480:11:0;:2;-1:-1:-1;;;;;21480:11:0;;21472:57;;;;-1:-1:-1;;;21472:57:0;;7671:2:1;21472:57:0;;;7653:21:1;7710:2;7690:18;;;7683:30;7749:34;7729:18;;;7722:62;-1:-1:-1;;;7800:18:1;;;7793:31;7841:19;;21472:57:0;7469:397:1;21472:57:0;1808:10;-1:-1:-1;;;;;21564:21:0;;;;:62;;-1:-1:-1;21589:37:0;21606:5;1808:10;22596:214;:::i;21589:37::-;21542:168;;;;-1:-1:-1;;;21542:168:0;;8073:2:1;21542:168:0;;;8055:21:1;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;8222:26;8202:18;;;8195:54;8266:19;;21542:168:0;7871:420:1;21542:168:0;21723:21;21732:2;21736:7;21723:8;:21::i;:::-;21411:341;21341:411;;:::o;22877:359::-;23020:4;16803:42;17943:43;:47;17939:699;;18230:10;-1:-1:-1;;;;;18222:18:0;;;18218:85;;23061:41:::1;1808:10:::0;23080:12:::1;23094:7;23061:18;:41::i;:::-;23039:140;;;;-1:-1:-1::0;;;23039:140:0::1;;;;;;;:::i;:::-;23192:28;23202:4;23208:2;23212:7;23192:9;:28::i;:::-;18281:7:::0;;18218:85;18363:67;;-1:-1:-1;;;18363:67:0;;18412:4;18363:67;;;8926:34:1;18419:10:0;8976:18:1;;;8969:43;16803:42:0;;18363:40;;8861:18:1;;18363:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;18459:61:0;;-1:-1:-1;;;18459:61:0;;18508:4;18459:61;;;8926:34:1;-1:-1:-1;;;;;8996:15:1;;8976:18;;;8969:43;16803:42:0;;18459:40;;8861:18:1;;18459:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18317:310;;18581:30;;-1:-1:-1;;;18581:30:0;;18600:10;18581:30;;;1679:51:1;1652:18;;18581:30:0;1533:203:1;18317:310:0;23061:41:::1;1808:10:::0;23080:12:::1;1728:98:::0;23061:41:::1;23039:140;;;;-1:-1:-1::0;;;23039:140:0::1;;;;;;;:::i;:::-;23192:28;23202:4;23208:2;23212:7;23192:9;:28::i;:::-;22877:359:::0;;;;:::o;33978:490::-;34075:15;34119:16;34129:5;34119:9;:16::i;:::-;34111:5;:24;34103:80;;;;-1:-1:-1;;;34103:80:0;;;;;;;:::i;:::-;34196:10;34221:6;34217:178;34233:7;:14;34229:18;;34217:178;;;34280:7;34288:1;34280:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;34280:10:0;;;34271:19;;;;34268:116;;34322:5;34313;:14;34310:58;;34336:1;-1:-1:-1;34329:8:0;;-1:-1:-1;34329:8:0;34310:58;34361:7;;;;:::i;:::-;;;;34310:58;34249:3;;34217:178;;;;34407:53;;-1:-1:-1;;;34407:53:0;;;;;;;:::i;23964:211::-;24111:4;16803:42;17943:43;:47;17939:699;;18230:10;-1:-1:-1;;;;;18222:18:0;;;18218:85;;24128:39:::1;24145:4;24151:2;24155:7;24128:39;;;;;;;;;;;::::0;:16:::1;:39::i;18218:85::-:0;18363:67;;-1:-1:-1;;;18363:67:0;;18412:4;18363:67;;;8926:34:1;18419:10:0;8976:18:1;;;8969:43;16803:42:0;;18363:40;;8861:18:1;;18363:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;18459:61:0;;-1:-1:-1;;;18459:61:0;;18508:4;18459:61;;;8926:34:1;-1:-1:-1;;;;;8996:15:1;;8976:18;;;8969:43;16803:42:0;;18459:40;;8861:18:1;;18459:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18317:310;;18581:30;;-1:-1:-1;;;18581:30:0;;18600:10;18581:30;;;1679:51:1;1652:18;;18581:30:0;1533:203:1;18317:310:0;24128:39:::1;24145:4;24151:2;24155:7;24128:39;;;;;;;;;;;::::0;:16:::1;:39::i;33689:205::-:0;33800:7;:14;33764:7;;33792:22;;33784:79;;;;-1:-1:-1;;;33784:79:0;;10291:2:1;33784:79:0;;;10273:21:1;10330:2;10310:18;;;10303:30;10369:34;10349:18;;;10342:62;-1:-1:-1;;;10420:18:1;;;10413:42;10472:19;;33784:79:0;10089:408:1;33784:79:0;-1:-1:-1;33881:5:0;33689:205::o;20613:326::-;20730:7;20755:13;20771:7;20779;20771:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;20771:16:0;;-1:-1:-1;20771:16:0;20798:110;;;;-1:-1:-1;;;20798:110:0;;10704:2:1;20798:110:0;;;10686:21:1;10743:2;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;-1:-1:-1;;;10833:18:1;;;10826:39;10882:19;;20798:110:0;10502:405:1;35527:113:0;3077:6;;-1:-1:-1;;;;;3077:6:0;1808:10;3224:23;3216:68;;;;-1:-1:-1;;;3216:68:0;;;;;;;:::i;:::-;35598:10:::1;:37:::0;;-1:-1:-1;;;;;;35598:37:0::1;-1:-1:-1::0;;;;;35598:37:0;;;::::1;::::0;;;::::1;::::0;;35527:113::o;20105:446::-;20227:4;-1:-1:-1;;;;;20258:19:0;;20250:74;;;;-1:-1:-1;;;20250:74:0;;11475:2:1;20250:74:0;;;11457:21:1;11514:2;11494:18;;;11487:30;11553:34;11533:18;;;11526:62;-1:-1:-1;;;11604:18:1;;;11597:40;11654:19;;20250:74:0;11273:406:1;20250:74:0;20371:7;:14;20337:10;;;20396:101;20413:6;20409:1;:10;20396:101;;;20452:7;20460:1;20452:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;20452:10:0;;;20443:19;;;;20439:46;;20478:7;;;:::i;:::-;;;20439:46;20421:3;;20396:101;;;-1:-1:-1;20538:5:0;;20105:446;-1:-1:-1;;;20105:446:0:o;3655:103::-;3077:6;;-1:-1:-1;;;;;3077:6:0;1808:10;3224:23;3216:68;;;;-1:-1:-1;;;3216:68:0;;;;;;;:::i;:::-;3720:30:::1;3747:1;3720:18;:30::i;:::-;3655:103::o:0;35395:124::-;3077:6;;-1:-1:-1;;;;;3077:6:0;1808:10;3224:23;3216:68;;;;-1:-1:-1;;;3216:68:0;;;;;;;:::i;:::-;35473:12:::1;:41:::0;;-1:-1:-1;;;;;;35473:41:0::1;-1:-1:-1::0;;;;;35473:41:0;;;::::1;::::0;;;::::1;::::0;;35395:124::o;36600:102::-;3077:6;;-1:-1:-1;;;;;3077:6:0;1808:10;3224:23;3216:68;;;;-1:-1:-1;;;3216:68:0;;;;;;;:::i;:::-;36674:9:::1;:22;36686:10:::0;36674:9;:22:::1;:::i;:::-;;36600:102:::0;:::o;21175:104::-;21231:13;21264:7;21257:14;;;;;:::i;35657:450::-;35731:19;;;;:6;:19;;;;;;;;:28;35723:57;;;;-1:-1:-1;;;35723:57:0;;14056:2:1;35723:57:0;;;14038:21:1;14095:2;14075:18;;;14068:30;-1:-1:-1;;;14114:18:1;;;14107:45;14169:18;;35723:57:0;13854:339:1;35723:57:0;35814:7;:14;35842:12;;:33;;-1:-1:-1;;;35842:33:0;;;;;2343:25:1;;;35879:10:0;;-1:-1:-1;;;;;35842:12:0;;:20;;2316:18:1;;35842:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35842:47:0;;35834:101;;;;-1:-1:-1;;;35834:101:0;;14656:2:1;35834:101:0;;;14638:21:1;14695:2;14675:18;;;14668:30;14734:34;14714:18;;;14707:62;-1:-1:-1;;;14785:18:1;;;14778:39;14834:19;;35834:101:0;14454:405:1;35834:101:0;35942:10;;:33;;-1:-1:-1;;;35942:33:0;;35958:10;35942:33;;;15082:51:1;35942:10:0;15149:18:1;;;15142:34;;;15192:18;;;15185:34;-1:-1:-1;;;;;35942:10:0;;;;:15;;15055:18:1;;35942:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35983:19:0;;;;:6;:19;;;;;:26;;-1:-1:-1;;35983:26:0;36005:4;35983:26;;;-1:-1:-1;36016:30:0;36022:10;36016:30;;;:5;:30::i;:::-;36053:34;;;;;;:21;:34;;;;;:48;35657:450::o;22198:327::-;1808:10;-1:-1:-1;;;;;22333:24:0;;;22325:62;;;;-1:-1:-1;;;22325:62:0;;15432:2:1;22325:62:0;;;15414:21:1;15471:2;15451:18;;;15444:30;15510:27;15490:18;;;15483:55;15555:18;;22325:62:0;15230:349:1;22325:62:0;1808:10;22400:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22400:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22400:53:0;;;;;;;;;;22469:48;;540:41:1;;;22400:42:0;;1808:10;22469:48;;513:18:1;22469:48:0;;;;;;;22198:327;;:::o;24246:407::-;24423:4;16803:42;17943:43;:47;17939:699;;18230:10;-1:-1:-1;;;;;18222:18:0;;;18218:85;;24459:41:::1;1808:10:::0;24478:12:::1;24492:7;24459:18;:41::i;:::-;24437:140;;;;-1:-1:-1::0;;;24437:140:0::1;;;;;;;:::i;:::-;24588:39;24602:4;24608:2;24612:7;24621:5;24588:13;:39::i;:::-;18281:7:::0;;18218:85;18363:67;;-1:-1:-1;;;18363:67:0;;18412:4;18363:67;;;8926:34:1;18419:10:0;8976:18:1;;;8969:43;16803:42:0;;18363:40;;8861:18:1;;18363:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;18459:61:0;;-1:-1:-1;;;18459:61:0;;18508:4;18459:61;;;8926:34:1;-1:-1:-1;;;;;8996:15:1;;8976:18;;;8969:43;16803:42:0;;18459:40;;8861:18:1;;18459:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18317:310;;18581:30;;-1:-1:-1;;;18581:30:0;;18600:10;18581:30;;;1679:51:1;1652:18;;18581:30:0;1533:203:1;18317:310:0;24459:41:::1;1808:10:::0;24478:12:::1;1728:98:::0;24459:41:::1;24437:140;;;;-1:-1:-1::0;;;24437:140:0::1;;;;;;;:::i;:::-;24588:39;24602:4;24608:2;24612:7;24621:5;24588:13;:39::i;:::-;24246:407:::0;;;;;:::o;36115:477::-;36214:13;36255:17;36263:8;36255:7;:17::i;:::-;36239:98;;;;-1:-1:-1;;;36239:98:0;;15786:2:1;36239:98:0;;;15768:21:1;15825:2;15805:18;;;15798:30;15864:34;15844:18;;;15837:62;-1:-1:-1;;;15915:18:1;;;15908:45;15970:19;;36239:98:0;15584:411:1;36239:98:0;36361:31;;;;:21;:31;;;;;;;36432:10;:8;:10::i;:::-;36401:41;;36487:1;36462:14;36456:28;:32;:130;;;;;;;;;;;;;;;;;36524:14;36540:19;:8;:17;:19::i;:::-;36561:9;36507:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36456:130;36449:137;36115:477;-1:-1:-1;;;36115:477:0:o;3913:201::-;3077:6;;-1:-1:-1;;;;;3077:6:0;1808:10;3224:23;3216:68;;;;-1:-1:-1;;;3216:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4002:22:0;::::1;3994:73;;;::::0;-1:-1:-1;;;3994:73:0;;17468:2:1;3994:73:0::1;::::0;::::1;17450:21:1::0;17507:2;17487:18;;;17480:30;17546:34;17526:18;;;17519:62;-1:-1:-1;;;17597:18:1;;;17590:36;17643:19;;3994:73:0::1;17266:402:1::0;3994:73:0::1;4078:28;4097:8;4078:18;:28::i;:::-;3913:201:::0;:::o;19686:355::-;19833:4;-1:-1:-1;;;;;;19875:40:0;;-1:-1:-1;;;19875:40:0;;:105;;-1:-1:-1;;;;;;;19932:48:0;;-1:-1:-1;;;19932:48:0;19875:105;:158;;;-1:-1:-1;;;;;;;;;;7394:40:0;;;19997:36;7285:157;26211:155;26310:7;:14;26276:4;;26300:24;;:58;;;;;26356:1;-1:-1:-1;;;;;26328:30:0;:7;26336;26328:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26328:16:0;:30;;26293:65;26211:155;-1:-1:-1;;26211:155:0:o;30188:174::-;30263:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30263:29:0;-1:-1:-1;;;;;30263:29:0;;;;;;;;:24;;30317:23;30263:24;30317:14;:23::i;:::-;-1:-1:-1;;;;;30308:46:0;;;;;;;;;;;30188:174;;:::o;26533:452::-;26662:4;26706:16;26714:7;26706;:16::i;:::-;26684:110;;;;-1:-1:-1;;;26684:110:0;;17875:2:1;26684:110:0;;;17857:21:1;17914:2;17894:18;;;17887:30;17953:34;17933:18;;;17926:62;-1:-1:-1;;;18004:18:1;;;17997:42;18056:19;;26684:110:0;17673:408:1;26684:110:0;26805:13;26821:23;26836:7;26821:14;:23::i;:::-;26805:39;;26874:5;-1:-1:-1;;;;;26863:16:0;:7;-1:-1:-1;;;;;26863:16:0;;:64;;;;26920:7;-1:-1:-1;;;;;26896:31:0;:20;26908:7;26896:11;:20::i;:::-;-1:-1:-1;;;;;26896:31:0;;26863:64;:113;;;-1:-1:-1;;;;;;22767:25:0;;;22738:4;22767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26944:32;26855:122;26533:452;-1:-1:-1;;;;26533:452:0:o;29517:553::-;29690:4;-1:-1:-1;;;;;29663:31:0;:23;29678:7;29663:14;:23::i;:::-;-1:-1:-1;;;;;29663:31:0;;29641:122;;;;-1:-1:-1;;;29641:122:0;;18288:2:1;29641:122:0;;;18270:21:1;18327:2;18307:18;;;18300:30;18366:34;18346:18;;;18339:62;-1:-1:-1;;;18417:18:1;;;18410:39;18466:19;;29641:122:0;18086:405:1;29641:122:0;-1:-1:-1;;;;;29782:16:0;;29774:65;;;;-1:-1:-1;;;29774:65:0;;18698:2:1;29774:65:0;;;18680:21:1;18737:2;18717:18;;;18710:30;18776:34;18756:18;;;18749:62;-1:-1:-1;;;18827:18:1;;;18820:34;18871:19;;29774:65:0;18496:400:1;29774:65:0;29956:29;29973:1;29977:7;29956:8;:29::i;:::-;30015:2;29996:7;30004;29996:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;29996:21:0;-1:-1:-1;;;;;29996:21:0;;;;;;30035:27;;30054:7;;30035:27;;;;;;;;;;29996:16;30035:27;29517:553;;;:::o;4274:191::-;4367:6;;;-1:-1:-1;;;;;4384:17:0;;;-1:-1:-1;;;;;;4384:17:0;;;;;;;4417:40;;4367:6;;;4384:17;4367:6;;4417:40;;4348:16;;4417:40;4337:128;4274:191;:::o;36732:154::-;36813:7;:16;;;;;;;-1:-1:-1;36813:16:0;;;;;;;-1:-1:-1;;;;;;36813:16:0;-1:-1:-1;;;;;36813:16:0;;;;;;;;36845:33;;36870:7;;-1:-1:-1;36845:33:0;;-1:-1:-1;;36845:33:0;36732:154;;:::o;25535:363::-;25692:28;25702:4;25708:2;25712:7;25692:9;:28::i;:::-;25762:48;25785:4;25791:2;25795:7;25804:5;25762:22;:48::i;:::-;25740:148;;;;-1:-1:-1;;;25740:148:0;;;;;;;:::i;36902:88::-;36946:13;36975:9;36968:16;;;;;:::i;317:723::-;373:13;594:5;603:1;594:10;590:53;;-1:-1:-1;;621:10:0;;;;;;;;;;;;-1:-1:-1;;;621:10:0;;;;;317:723::o;590:53::-;668:5;653:12;709:78;716:9;;709:78;;742:8;;;;:::i;:::-;;-1:-1:-1;765:10:0;;-1:-1:-1;773:2:0;765:10;;:::i;:::-;;;709:78;;;797:19;829:6;819:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;819:17:0;;797:39;;847:154;854:10;;847:154;;881:11;891:1;881:11;;:::i;:::-;;-1:-1:-1;950:10:0;958:2;950:5;:10;:::i;:::-;937:24;;:2;:24;:::i;:::-;924:39;;907:6;914;907:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;907:56:0;;;;;;;;-1:-1:-1;978:11:0;987:2;978:11;;:::i;:::-;;;847:154;;30927:980;31082:4;-1:-1:-1;;;;;31103:13:0;;14425:20;14473:8;31099:801;;31156:175;;-1:-1:-1;;;31156:175:0;;-1:-1:-1;;;;;31156:36:0;;;;;:175;;1808:10;;31250:4;;31277:7;;31307:5;;31156:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31156:175:0;;;;;;;;-1:-1:-1;;31156:175:0;;;;;;;;;;;;:::i;:::-;;;31135:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31514:6;:13;31531:1;31514:18;31510:320;;31557:108;;-1:-1:-1;;;31557:108:0;;;;;;;:::i;31510:320::-;31780:6;31774:13;31765:6;31761:2;31757:15;31750:38;31135:710;-1:-1:-1;;;;;;31395:51:0;-1:-1:-1;;;31395:51:0;;-1:-1:-1;31388:58:0;;31099:801;-1:-1:-1;31884:4:0;30927:980;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2379:456::-;2456:6;2464;2472;2525:2;2513:9;2504:7;2500:23;2496:32;2493:52;;;2541:1;2538;2531:12;2493:52;2580:9;2567:23;2599:31;2624:5;2599:31;:::i;:::-;2649:5;-1:-1:-1;2706:2:1;2691:18;;2678:32;2719:33;2678:32;2719:33;:::i;:::-;2379:456;;2771:7;;-1:-1:-1;;;2825:2:1;2810:18;;;;2797:32;;2379:456::o;2840:247::-;2899:6;2952:2;2940:9;2931:7;2927:23;2923:32;2920:52;;;2968:1;2965;2958:12;2920:52;3007:9;2994:23;3026:31;3051:5;3026:31;:::i;3092:127::-;3153:10;3148:3;3144:20;3141:1;3134:31;3184:4;3181:1;3174:15;3208:4;3205:1;3198:15;3224:632;3289:5;3319:18;3360:2;3352:6;3349:14;3346:40;;;3366:18;;:::i;:::-;3441:2;3435:9;3409:2;3495:15;;-1:-1:-1;;3491:24:1;;;3517:2;3487:33;3483:42;3471:55;;;3541:18;;;3561:22;;;3538:46;3535:72;;;3587:18;;:::i;:::-;3627:10;3623:2;3616:22;3656:6;3647:15;;3686:6;3678;3671:22;3726:3;3717:6;3712:3;3708:16;3705:25;3702:45;;;3743:1;3740;3733:12;3702:45;3793:6;3788:3;3781:4;3773:6;3769:17;3756:44;3848:1;3841:4;3832:6;3824;3820:19;3816:30;3809:41;;;;3224:632;;;;;:::o;3861:451::-;3930:6;3983:2;3971:9;3962:7;3958:23;3954:32;3951:52;;;3999:1;3996;3989:12;3951:52;4039:9;4026:23;4072:18;4064:6;4061:30;4058:50;;;4104:1;4101;4094:12;4058:50;4127:22;;4180:4;4172:13;;4168:27;-1:-1:-1;4158:55:1;;4209:1;4206;4199:12;4158:55;4232:74;4298:7;4293:2;4280:16;4275:2;4271;4267:11;4232:74;:::i;4317:118::-;4403:5;4396:13;4389:21;4382:5;4379:32;4369:60;;4425:1;4422;4415:12;4440:382;4505:6;4513;4566:2;4554:9;4545:7;4541:23;4537:32;4534:52;;;4582:1;4579;4572:12;4534:52;4621:9;4608:23;4640:31;4665:5;4640:31;:::i;:::-;4690:5;-1:-1:-1;4747:2:1;4732:18;;4719:32;4760:30;4719:32;4760:30;:::i;:::-;4809:7;4799:17;;;4440:382;;;;;:::o;4827:795::-;4922:6;4930;4938;4946;4999:3;4987:9;4978:7;4974:23;4970:33;4967:53;;;5016:1;5013;5006:12;4967:53;5055:9;5042:23;5074:31;5099:5;5074:31;:::i;:::-;5124:5;-1:-1:-1;5181:2:1;5166:18;;5153:32;5194:33;5153:32;5194:33;:::i;:::-;5246:7;-1:-1:-1;5300:2:1;5285:18;;5272:32;;-1:-1:-1;5355:2:1;5340:18;;5327:32;5382:18;5371:30;;5368:50;;;5414:1;5411;5404:12;5368:50;5437:22;;5490:4;5482:13;;5478:27;-1:-1:-1;5468:55:1;;5519:1;5516;5509:12;5468:55;5542:74;5608:7;5603:2;5590:16;5585:2;5581;5577:11;5542:74;:::i;:::-;5532:84;;;4827:795;;;;;;;:::o;6278:388::-;6346:6;6354;6407:2;6395:9;6386:7;6382:23;6378:32;6375:52;;;6423:1;6420;6413:12;6375:52;6462:9;6449:23;6481:31;6506:5;6481:31;:::i;:::-;6531:5;-1:-1:-1;6588:2:1;6573:18;;6560:32;6601:33;6560:32;6601:33;:::i;6671:380::-;6750:1;6746:12;;;;6793;;;6814:61;;6868:4;6860:6;6856:17;6846:27;;6814:61;6921:2;6913:6;6910:14;6890:18;6887:38;6884:161;;6967:10;6962:3;6958:20;6955:1;6948:31;7002:4;6999:1;6992:15;7030:4;7027:1;7020:15;6884:161;;6671:380;;;:::o;8296:413::-;8498:2;8480:21;;;8537:2;8517:18;;;8510:30;8576:34;8571:2;8556:18;;8549:62;-1:-1:-1;;;8642:2:1;8627:18;;8620:47;8699:3;8684:19;;8296:413::o;9023:245::-;9090:6;9143:2;9131:9;9122:7;9118:23;9114:32;9111:52;;;9159:1;9156;9149:12;9111:52;9191:9;9185:16;9210:28;9232:5;9210:28;:::i;9273:407::-;9475:2;9457:21;;;9514:2;9494:18;;;9487:30;9553:34;9548:2;9533:18;;9526:62;-1:-1:-1;;;9619:2:1;9604:18;;9597:41;9670:3;9655:19;;9273:407::o;9685:127::-;9746:10;9741:3;9737:20;9734:1;9727:31;9777:4;9774:1;9767:15;9801:4;9798:1;9791:15;9817:127;9878:10;9873:3;9869:20;9866:1;9859:31;9909:4;9906:1;9899:15;9933:4;9930:1;9923:15;9949:135;9988:3;10009:17;;;10006:43;;10029:18;;:::i;:::-;-1:-1:-1;10076:1:1;10065:13;;9949:135::o;10912:356::-;11114:2;11096:21;;;11133:18;;;11126:30;11192:34;11187:2;11172:18;;11165:62;11259:2;11244:18;;10912:356::o;11810:518::-;11912:2;11907:3;11904:11;11901:421;;;11948:5;11945:1;11938:16;11992:4;11989:1;11979:18;12062:2;12050:10;12046:19;12043:1;12039:27;12033:4;12029:38;12098:4;12086:10;12083:20;12080:47;;;-1:-1:-1;12121:4:1;12080:47;12176:2;12171:3;12167:12;12164:1;12160:20;12154:4;12150:31;12140:41;;12231:81;12249:2;12242:5;12239:13;12231:81;;;12308:1;12294:16;;12275:1;12264:13;12231:81;;12504:1345;12630:3;12624:10;12657:18;12649:6;12646:30;12643:56;;;12679:18;;:::i;:::-;12708:97;12798:6;12758:38;12790:4;12784:11;12758:38;:::i;:::-;12752:4;12708:97;:::i;:::-;12860:4;;12917:2;12906:14;;12934:1;12929:663;;;;13636:1;13653:6;13650:89;;;-1:-1:-1;13705:19:1;;;13699:26;13650:89;-1:-1:-1;;12461:1:1;12457:11;;;12453:24;12449:29;12439:40;12485:1;12481:11;;;12436:57;13752:81;;12899:944;;12929:663;11757:1;11750:14;;;11794:4;11781:18;;-1:-1:-1;;12965:20:1;;;13083:236;13097:7;13094:1;13091:14;13083:236;;;13186:19;;;13180:26;13165:42;;13278:27;;;;13246:1;13234:14;;;;13113:19;;13083:236;;;13087:3;13347:6;13338:7;13335:19;13332:201;;;13408:19;;;13402:26;-1:-1:-1;;13491:1:1;13487:14;;;13503:3;13483:24;13479:37;13475:42;13460:58;13445:74;;13332:201;;;13579:1;13570:6;13567:1;13563:14;13559:22;13553:4;13546:36;12899:944;;;;;12504:1345;;:::o;14198:251::-;14268:6;14321:2;14309:9;14300:7;14296:23;14292:32;14289:52;;;14337:1;14334;14327:12;14289:52;14369:9;14363:16;14388:31;14413:5;14388:31;:::i;16000:1261::-;16224:3;16262:6;16256:13;16288:4;16301:66;16360:6;16355:3;16348:4;16340:6;16336:17;16301:66;:::i;:::-;16430:13;;16389:16;;;;16452:70;16430:13;16389:16;16499:4;16487:17;;16452:70;:::i;:::-;16611:13;;16544:20;;;16584:1;;16649:36;16611:13;16649:36;:::i;:::-;16704:1;16721:17;;;16747:141;;;;16902:1;16897:339;;;;16714:522;;16747:141;-1:-1:-1;;16782:24:1;;16768:39;;16859:16;;16852:24;16838:39;;16827:51;;;-1:-1:-1;16747:141:1;;16897:339;16928:6;16925:1;16918:17;16976:4;16973:1;16963:18;17003:1;17017:169;17031:8;17028:1;17025:15;17017:169;;;17113:14;;17098:13;;;17091:37;17156:16;;;;17048:10;;17017:169;;;17021:3;;17217:8;17210:5;17206:20;17199:27;;16714:522;-1:-1:-1;17252:3:1;;16000:1261;-1:-1:-1;;;;;;;;;;16000:1261:1:o;18901:414::-;19103:2;19085:21;;;19142:2;19122:18;;;19115:30;19181:34;19176:2;19161:18;;19154:62;-1:-1:-1;;;19247:2:1;19232:18;;19225:48;19305:3;19290:19;;18901:414::o;19320:127::-;19381:10;19376:3;19372:20;19369:1;19362:31;19412:4;19409:1;19402:15;19436:4;19433:1;19426:15;19452:120;19492:1;19518;19508:35;;19523:18;;:::i;:::-;-1:-1:-1;19557:9:1;;19452:120::o;19577:128::-;19644:9;;;19665:11;;;19662:37;;;19679:18;;:::i;19710:112::-;19742:1;19768;19758:35;;19773:18;;:::i;:::-;-1:-1:-1;19807:9:1;;19710:112::o;19827:125::-;19892:9;;;19913:10;;;19910:36;;;19926:18;;:::i;19957:489::-;-1:-1:-1;;;;;20226:15:1;;;20208:34;;20278:15;;20273:2;20258:18;;20251:43;20325:2;20310:18;;20303:34;;;20373:3;20368:2;20353:18;;20346:31;;;20151:4;;20394:46;;20420:19;;20412:6;20394:46;:::i;:::-;20386:54;19957:489;-1:-1:-1;;;;;;19957:489:1:o;20451:249::-;20520:6;20573:2;20561:9;20552:7;20548:23;20544:32;20541:52;;;20589:1;20586;20579:12;20541:52;20621:9;20615:16;20640:30;20664:5;20640:30;:::i

Swarm Source

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