ETH Price: $3,444.73 (+4.00%)

Social Ape Society (SAS)
 

Overview

TokenID

86

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
SocialApeSociety

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-13
*/

// File: @openzeppelin/contracts/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/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



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



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/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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



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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev 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 (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @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 {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = 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);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}







// File: @openzeppelin/contracts/access/IAccessControl.sol
pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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



// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/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: verified-sources/0x0d6bee697db757218f0c0a72147243027fc5af1c/sources/contracts/SAS.sol


pragma solidity ^0.8.0;









contract SocialApeSociety is AccessControl, ERC721Enumerable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint public constant MAX_SAS = 10000;
    uint private constant RESERVED_SAS = 99;
    uint256 public constant SAS_LIMIT = 20;
    uint256 public constant PRICE = 100000000000000000; // 0.1
    
    string private baseTokenURI;
    string private defaultTokenURI;
    
	
    address private ownerAddress;
    address private artistAddress;
    uint private mintedSAS;
    
    bool public paused;
    string private _contractURI = '';
    string private _tokenBaseURI = '';
    
    Counters.Counter private _publicSAS;
    Counters.Counter private _reservedSAS;
    
    


    constructor( address art_,  address owner_, string memory uri_) ERC721("Social Ape Society", "SAS")  {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        setOwner(owner_);
        _setupRole(DEFAULT_ADMIN_ROLE, ownerAddress);
        defaultTokenURI = uri_;
         artistAddress = art_;
         
         paused = true;
         
        
    }
    
    

function setContractURI(string memory URI) public onlyRole(DEFAULT_ADMIN_ROLE) {
    _contractURI = URI;
  }

    function purchase(uint256 numberOfTokens)  public payable {
       if(msg.sender != owner()){
            require(!paused, "Pause");
        }
        require(numberOfTokens <= SAS_LIMIT, 'Can only mint up to 20 SAS Tokens');
        require(_publicSAS.current() + 1 <= MAX_SAS, "Sale ended");
        require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');
        
            
    for (uint256 i = 0; i < numberOfTokens; i++) {
      uint256 tokenId = RESERVED_SAS + _publicSAS.current();
      
      if (_publicSAS.current() < MAX_SAS) {
        _publicSAS.increment();
        _safeMint(msg.sender, tokenId);
      }
    }
    }
    function mintSAS(address _to, uint256 _count) public onlyRole(DEFAULT_ADMIN_ROLE) {
        require(mintedSAS <= RESERVED_SAS, 'Reserved SAS are minted');


    for(uint256 i = 0; i <_count; i++){
            
        
        if (_reservedSAS.current() < RESERVED_SAS) {
        _reservedSAS.increment();
        _safeMint(_to, totalSupply());
        
        
        }
    }
         mintedSAS += _count;
    }
        
        


    
       
    
    
    function owner() public view virtual returns (address) {
        return ownerAddress;
    }

    function setOwner(address owner_) public onlyRole(DEFAULT_ADMIN_ROLE) {
        ownerAddress = owner_;
    }


    

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

    function setBaseURI(string memory baseURI) public onlyRole(DEFAULT_ADMIN_ROLE) {
        baseTokenURI = baseURI;
    }
    
    function contractURI() public view  returns (string memory) {
    return _contractURI;
  }

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

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

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory result = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            result[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return result;
    }
    
function pause(bool isPaused) public onlyRole(DEFAULT_ADMIN_ROLE) {
        paused = isPaused;
    }

    
     function withdrawAll() public payable onlyRole(DEFAULT_ADMIN_ROLE) {
        uint256 balance = address(this).balance;
        uint256 art_balance = balance.sub(balance.div(100).mul(42));
        

        payable(ownerAddress).transfer(balance - art_balance);
        
       
        payable(artistAddress).transfer(art_balance);
        
     
    }
     
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"art_","type":"address"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SAS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"setOwner","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":"","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91601291620004dc565b506040805160208101918290526000908190526200003c91601391620004dc565b503480156200004a57600080fd5b5060405162003010380380620030108339810160408190526200006d916200059f565b6040805180820182526012815271536f6369616c2041706520536f636965747960701b60208083019182528351808501909452600384526253415360e81b908401528151919291620000c291600191620004dc565b508051620000d8906002906020840190620004dc565b50620000ea915060009050336200015b565b620000f5826200016b565b600e546200010f906000906001600160a01b03166200015b565b80516200012490600d906020840190620004dc565b5050600f80546001600160a01b0319166001600160a01b039390931692909217909155506011805460ff191660011790556200081c565b6200016782826200019c565b5050565b60006200017981336200023c565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000167576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001f83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001675762000286816001600160a01b03166014620002e060201b6200136c1760201c565b6200029c8360206200136c620002e0821b17811c565b604051602001620002af9291906200067b565b60408051601f198184030181529082905262461bcd60e51b8252620002d791600401620006f4565b60405180910390fd5b60606000620002f183600262000744565b620002fe90600262000729565b6001600160401b038111156200032457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156200034f576020820181803683370190505b509050600360fc1b816000815181106200037957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620003b757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000620003dd84600262000744565b620003ea90600162000729565b90505b600181111562000484576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200042e57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106200045357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936200047c8162000799565b9050620003ed565b508315620004d55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620002d7565b9392505050565b828054620004ea90620007b3565b90600052602060002090601f0160209004810192826200050e576000855562000559565b82601f106200052957805160ff191683800117855562000559565b8280016001018555821562000559579182015b82811115620005595782518255916020019190600101906200053c565b50620005679291506200056b565b5090565b5b808211156200056757600081556001016200056c565b80516001600160a01b03811681146200059a57600080fd5b919050565b600080600060608486031215620005b4578283fd5b620005bf8462000582565b9250620005cf6020850162000582565b60408501519092506001600160401b0380821115620005ec578283fd5b818601915086601f83011262000600578283fd5b81518181111562000615576200061562000806565b604051601f8201601f19908116603f0116810190838211818310171562000640576200064062000806565b8160405282815289602084870101111562000659578586fd5b6200066c83602083016020880162000766565b80955050505050509250925092565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620006b581601785016020880162000766565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620006e881602884016020880162000766565b01602801949350505050565b60208152600082518060208401526200071581604085016020870162000766565b601f01601f19169190910160400192915050565b600082198211156200073f576200073f620007f0565b500190565b6000816000190483118215151615620007615762000761620007f0565b500290565b60005b838110156200078357818101518382015260200162000769565b8381111562000793576000848401525b50505050565b600081620007ab57620007ab620007f0565b506000190190565b600181811c90821680620007c857607f821691505b60208210811415620007ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6127e4806200082c6000396000f3fe60806040526004361061020f5760003560e01c8063640ec6b911610118578063a217fddf116100a0578063c87b56dd1161006f578063c87b56dd146105f6578063d547741f14610616578063e8a3d48514610636578063e985e9c51461064b578063efef39a11461069457600080fd5b8063a217fddf14610581578063a22cb46514610596578063b513de43146105b6578063b88d4fde146105d657600080fd5b80638d859f3e116100e75780638d859f3e146104f25780638da5cb5b1461050e57806391d148541461052c578063938e3d7b1461054c57806395d89b411461056c57600080fd5b8063640ec6b91461048757806370a082311461049d5780638462151c146104bd578063853828b6146104ea57600080fd5b8063248a9ca31161019b57806342842e0e1161016a57806342842e0e146103ed5780634f6ccce71461040d57806355f804b31461042d5780635c975abb1461044d5780636352211e1461046757600080fd5b8063248a9ca31461035d5780632f2ff15d1461038d5780632f745c59146103ad57806336568abe146103cd57600080fd5b8063081812fc116101e2578063081812fc146102b0578063095ea7b3146102e857806313af40351461030857806318160ddd1461032857806323b872dd1461033d57600080fd5b806301ffc9a71461021457806302329a291461024957806303595f721461026b57806306fdde031461028e575b600080fd5b34801561022057600080fd5b5061023461022f3660046123bf565b6106a7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461236b565b6106c7565b005b34801561027757600080fd5b50610280601481565b604051908152602001610240565b34801561029a57600080fd5b506102a36106e7565b604051610240919061258e565b3480156102bc57600080fd5b506102d06102cb366004612385565b610779565b6040516001600160a01b039091168152602001610240565b3480156102f457600080fd5b50610269610303366004612342565b610813565b34801561031457600080fd5b50610269610323366004612219565b610929565b34801561033457600080fd5b50600954610280565b34801561034957600080fd5b50610269610358366004612265565b610958565b34801561036957600080fd5b50610280610378366004612385565b60009081526020819052604090206001015490565b34801561039957600080fd5b506102696103a836600461239d565b610989565b3480156103b957600080fd5b506102806103c8366004612342565b6109af565b3480156103d957600080fd5b506102696103e836600461239d565b610a45565b3480156103f957600080fd5b50610269610408366004612265565b610ac3565b34801561041957600080fd5b50610280610428366004612385565b610ade565b34801561043957600080fd5b506102696104483660046123f7565b610b7f565b34801561045957600080fd5b506011546102349060ff1681565b34801561047357600080fd5b506102d0610482366004612385565b610b9e565b34801561049357600080fd5b5061028061271081565b3480156104a957600080fd5b506102806104b8366004612219565b610c15565b3480156104c957600080fd5b506104dd6104d8366004612219565b610c9c565b604051610240919061254a565b610269610d5a565b3480156104fe57600080fd5b5061028067016345785d8a000081565b34801561051a57600080fd5b50600e546001600160a01b03166102d0565b34801561053857600080fd5b5061023461054736600461239d565b610e0e565b34801561055857600080fd5b506102696105673660046123f7565b610e37565b34801561057857600080fd5b506102a3610e56565b34801561058d57600080fd5b50610280600081565b3480156105a257600080fd5b506102696105b1366004612319565b610e65565b3480156105c257600080fd5b506102696105d1366004612342565b610f2a565b3480156105e257600080fd5b506102696105f13660046122a0565b610ff4565b34801561060257600080fd5b506102a3610611366004612385565b611026565b34801561062257600080fd5b5061026961063136600461239d565b61117c565b34801561064257600080fd5b506102a36111a2565b34801561065757600080fd5b50610234610666366004612233565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102696106a2366004612385565b6111b1565b60006106b28261154e565b806106c157506106c182611573565b92915050565b60006106d381336115a8565b506011805460ff1916911515919091179055565b6060600180546106f6906126e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610722906126e9565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061081e82610b9e565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ee565b336001600160a01b03821614806108a857506108a88133610666565b61091a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ee565b610924838361160c565b505050565b600061093581336115a8565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610962338261167a565b61097e5760405162461bcd60e51b81526004016107ee906125f3565b610924838383611771565b6000828152602081905260409020600101546109a581336115a8565b610924838361191c565b60006109ba83610c15565b8210610a1c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ee565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b0381163314610ab55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107ee565b610abf82826119a0565b5050565b61092483838360405180602001604052806000815250610ff4565b6000610ae960095490565b8210610b4c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ee565b60098281548110610b6d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000610b8b81336115a8565b815161092490600c9060208501906120de565b6000818152600360205260408120546001600160a01b0316806106c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ee565b60006001600160a01b038216610c805760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ee565b506001600160a01b031660009081526004602052604090205490565b60606000610ca983610c15565b905060008167ffffffffffffffff811115610cd457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cfd578160200160208202803683370190505b50905060005b82811015610d5257610d1585826109af565b828281518110610d3557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d4a81612724565b915050610d03565b509392505050565b6000610d6681336115a8565b476000610d89610d82602a610d7c856064611a05565b90611a11565b8390611a1d565b600e549091506001600160a01b03166108fc610da5838561268f565b6040518115909202916000818181858888f19350505050158015610dcd573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e08573d6000803e3d6000fd5b50505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610e4381336115a8565b81516109249060129060208501906120de565b6060600280546106f6906126e9565b6001600160a01b038216331415610ebe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ee565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610f3681336115a8565b60636010541115610f895760405162461bcd60e51b815260206004820152601760248201527f52657365727665642053415320617265206d696e74656400000000000000000060448201526064016107ee565b60005b82811015610fd7576063610f9f60155490565b1015610fc557610fb3601580546001019055565b610fc584610fc060095490565b611a29565b80610fcf81612724565b915050610f8c565b508160106000828254610fea9190612644565b9091555050505050565b610ffe338361167a565b61101a5760405162461bcd60e51b81526004016107ee906125f3565b610e0884848484611a43565b6000818152600360205260409020546060906001600160a01b03166110a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ee565b60006110af611a76565b9050600181511161114a57600d80546110c7906126e9565b80601f01602080910402602001604051908101604052809291908181526020018280546110f3906126e9565b80156111405780601f1061111557610100808354040283529160200191611140565b820191906000526020600020905b81548152906001019060200180831161112357829003601f168201915b5050505050611175565b8061115484611a85565b604051602001611165929190612469565b6040516020818303038152906040525b9392505050565b60008281526020819052604090206001015461119881336115a8565b61092483836119a0565b6060601280546106f6906126e9565b600e546001600160a01b031633146111fe5760115460ff16156111fe5760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016107ee565b60148111156112595760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420757020746f2032302053415320546f6b656e6044820152607360f81b60648201526084016107ee565b61271061126560145490565b611270906001612644565b11156112ab5760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b60448201526064016107ee565b346112be8267016345785d8a0000612670565b111561130c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016107ee565b60005b81811015610abf57600061132260145490565b61132d906063612644565b905061271061133b60145490565b10156113595761134f601480546001019055565b6113593382611a29565b508061136481612724565b91505061130f565b6060600061137b836002612670565b611386906002612644565b67ffffffffffffffff8111156113ac57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113d6576020820181803683370190505b509050600360fc1b816000815181106113ff57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061143c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611460846002612670565b61146b906001612644565b90505b60018111156114ff576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106114ad57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106114d157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936114f8816126d2565b905061146e565b5083156111755760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107ee565b60006001600160e01b0319821663780e9d6360e01b14806106c157506106c182611b9f565b60006001600160e01b03198216637965db0b60e01b14806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b6115b28282610e0e565b610abf576115ca816001600160a01b0316601461136c565b6115d583602061136c565b6040516020016115e6929190612498565b60408051601f198184030181529082905262461bcd60e51b82526107ee9160040161258e565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164182610b9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ee565b60006116fe83610b9e565b9050806001600160a01b0316846001600160a01b031614806117395750836001600160a01b031661172e84610779565b6001600160a01b0316145b8061176957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661178482610b9e565b6001600160a01b0316146117ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ee565b6001600160a01b03821661184e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b611859838383611bde565b61186460008261160c565b6001600160a01b038316600090815260046020526040812080546001929061188d90849061268f565b90915550506001600160a01b03821660009081526004602052604081208054600192906118bb908490612644565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6119268282610e0e565b610abf576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561195c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119aa8282610e0e565b15610abf576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611175828461265c565b60006111758284612670565b6000611175828461268f565b610abf828260405180602001604052806000815250611c96565b611a4e848484611771565b611a5a84848484611cc9565b610e085760405162461bcd60e51b81526004016107ee906125a1565b6060600c80546106f6906126e9565b606081611aa95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ad35780611abd81612724565b9150611acc9050600a8361265c565b9150611aad565b60008167ffffffffffffffff811115611afc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b26576020820181803683370190505b5090505b841561176957611b3b60018361268f565b9150611b48600a8661273f565b611b53906030612644565b60f81b818381518110611b7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b98600a8661265c565b9450611b2a565b60006001600160e01b031982166380ac58cd60e01b14806106b257506001600160e01b03198216635b5e139f60e01b14806106c157506106c182611573565b6001600160a01b038316611c3957611c3481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c5c565b816001600160a01b0316836001600160a01b031614611c5c57611c5c8382611dd6565b6001600160a01b038216611c735761092481611e73565b826001600160a01b0316826001600160a01b031614610924576109248282611f4c565b611ca08383611f90565b611cad6000848484611cc9565b6109245760405162461bcd60e51b81526004016107ee906125a1565b60006001600160a01b0384163b15611dcb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0d90339089908890889060040161250d565b602060405180830381600087803b158015611d2757600080fd5b505af1925050508015611d57575060408051601f3d908101601f19168201909252611d54918101906123db565b60015b611db1573d808015611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b508051611da95760405162461bcd60e51b81526004016107ee906125a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611769565b506001949350505050565b60006001611de384610c15565b611ded919061268f565b600083815260086020526040902054909150808214611e40576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611e859060019061268f565b6000838152600a602052604081205460098054939450909284908110611ebb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611eea57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611f3057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f5783610c15565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611fe65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ee565b6000818152600360205260409020546001600160a01b03161561204b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ee565b61205760008383611bde565b6001600160a01b0382166000908152600460205260408120805460019290612080908490612644565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ea906126e9565b90600052602060002090601f01602090048101928261210c5760008555612152565b82601f1061212557805160ff1916838001178555612152565b82800160010185558215612152579182015b82811115612152578251825591602001919060010190612137565b5061215e929150612162565b5090565b5b8082111561215e5760008155600101612163565b600067ffffffffffffffff808411156121925761219261277f565b604051601f8501601f19908116603f011681019082821181831017156121ba576121ba61277f565b816040528093508581528686860111156121d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220457600080fd5b919050565b8035801515811461220457600080fd5b60006020828403121561222a578081fd5b611175826121ed565b60008060408385031215612245578081fd5b61224e836121ed565b915061225c602084016121ed565b90509250929050565b600080600060608486031215612279578081fd5b612282846121ed565b9250612290602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122b5578081fd5b6122be856121ed565b93506122cc602086016121ed565b925060408501359150606085013567ffffffffffffffff8111156122ee578182fd5b8501601f810187136122fe578182fd5b61230d87823560208401612177565b91505092959194509250565b6000806040838503121561232b578182fd5b612334836121ed565b915061225c60208401612209565b60008060408385031215612354578182fd5b61235d836121ed565b946020939093013593505050565b60006020828403121561237c578081fd5b61117582612209565b600060208284031215612396578081fd5b5035919050565b600080604083850312156123af578182fd5b8235915061225c602084016121ed565b6000602082840312156123d0578081fd5b813561117581612795565b6000602082840312156123ec578081fd5b815161117581612795565b600060208284031215612408578081fd5b813567ffffffffffffffff81111561241e578182fd5b8201601f8101841361242e578182fd5b61176984823560208401612177565b600081518084526124558160208601602086016126a6565b601f01601f19169290920160200192915050565b6000835161247b8184602088016126a6565b83519083019061248f8183602088016126a6565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516124d08160178501602088016126a6565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125018160288401602088016126a6565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125409083018461243d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258257835183529284019291840191600101612566565b50909695505050505050565b602081526000611175602083018461243d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561265757612657612753565b500190565b60008261266b5761266b612769565b500490565b600081600019048311821515161561268a5761268a612753565b500290565b6000828210156126a1576126a1612753565b500390565b60005b838110156126c15781810151838201526020016126a9565b83811115610e085750506000910152565b6000816126e1576126e1612753565b506000190190565b600181811c908216806126fd57607f821691505b6020821081141561271e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273857612738612753565b5060010190565b60008261274e5761274e612769565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146127ab57600080fd5b5056fea264697066735822122087679c6feaeffbd691a1f086073da8acef24b9660f5ed0c315c4fed6c4635f6b64736f6c63430008040033000000000000000000000000ddaf54c9c16c9dc39abef820a5d2f2a54060fb2f00000000000000000000000054133b2199ae8150b876a23af153198a40ec9a1b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063640ec6b911610118578063a217fddf116100a0578063c87b56dd1161006f578063c87b56dd146105f6578063d547741f14610616578063e8a3d48514610636578063e985e9c51461064b578063efef39a11461069457600080fd5b8063a217fddf14610581578063a22cb46514610596578063b513de43146105b6578063b88d4fde146105d657600080fd5b80638d859f3e116100e75780638d859f3e146104f25780638da5cb5b1461050e57806391d148541461052c578063938e3d7b1461054c57806395d89b411461056c57600080fd5b8063640ec6b91461048757806370a082311461049d5780638462151c146104bd578063853828b6146104ea57600080fd5b8063248a9ca31161019b57806342842e0e1161016a57806342842e0e146103ed5780634f6ccce71461040d57806355f804b31461042d5780635c975abb1461044d5780636352211e1461046757600080fd5b8063248a9ca31461035d5780632f2ff15d1461038d5780632f745c59146103ad57806336568abe146103cd57600080fd5b8063081812fc116101e2578063081812fc146102b0578063095ea7b3146102e857806313af40351461030857806318160ddd1461032857806323b872dd1461033d57600080fd5b806301ffc9a71461021457806302329a291461024957806303595f721461026b57806306fdde031461028e575b600080fd5b34801561022057600080fd5b5061023461022f3660046123bf565b6106a7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461236b565b6106c7565b005b34801561027757600080fd5b50610280601481565b604051908152602001610240565b34801561029a57600080fd5b506102a36106e7565b604051610240919061258e565b3480156102bc57600080fd5b506102d06102cb366004612385565b610779565b6040516001600160a01b039091168152602001610240565b3480156102f457600080fd5b50610269610303366004612342565b610813565b34801561031457600080fd5b50610269610323366004612219565b610929565b34801561033457600080fd5b50600954610280565b34801561034957600080fd5b50610269610358366004612265565b610958565b34801561036957600080fd5b50610280610378366004612385565b60009081526020819052604090206001015490565b34801561039957600080fd5b506102696103a836600461239d565b610989565b3480156103b957600080fd5b506102806103c8366004612342565b6109af565b3480156103d957600080fd5b506102696103e836600461239d565b610a45565b3480156103f957600080fd5b50610269610408366004612265565b610ac3565b34801561041957600080fd5b50610280610428366004612385565b610ade565b34801561043957600080fd5b506102696104483660046123f7565b610b7f565b34801561045957600080fd5b506011546102349060ff1681565b34801561047357600080fd5b506102d0610482366004612385565b610b9e565b34801561049357600080fd5b5061028061271081565b3480156104a957600080fd5b506102806104b8366004612219565b610c15565b3480156104c957600080fd5b506104dd6104d8366004612219565b610c9c565b604051610240919061254a565b610269610d5a565b3480156104fe57600080fd5b5061028067016345785d8a000081565b34801561051a57600080fd5b50600e546001600160a01b03166102d0565b34801561053857600080fd5b5061023461054736600461239d565b610e0e565b34801561055857600080fd5b506102696105673660046123f7565b610e37565b34801561057857600080fd5b506102a3610e56565b34801561058d57600080fd5b50610280600081565b3480156105a257600080fd5b506102696105b1366004612319565b610e65565b3480156105c257600080fd5b506102696105d1366004612342565b610f2a565b3480156105e257600080fd5b506102696105f13660046122a0565b610ff4565b34801561060257600080fd5b506102a3610611366004612385565b611026565b34801561062257600080fd5b5061026961063136600461239d565b61117c565b34801561064257600080fd5b506102a36111a2565b34801561065757600080fd5b50610234610666366004612233565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102696106a2366004612385565b6111b1565b60006106b28261154e565b806106c157506106c182611573565b92915050565b60006106d381336115a8565b506011805460ff1916911515919091179055565b6060600180546106f6906126e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610722906126e9565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061081e82610b9e565b9050806001600160a01b0316836001600160a01b0316141561088c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ee565b336001600160a01b03821614806108a857506108a88133610666565b61091a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ee565b610924838361160c565b505050565b600061093581336115a8565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610962338261167a565b61097e5760405162461bcd60e51b81526004016107ee906125f3565b610924838383611771565b6000828152602081905260409020600101546109a581336115a8565b610924838361191c565b60006109ba83610c15565b8210610a1c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ee565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b0381163314610ab55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107ee565b610abf82826119a0565b5050565b61092483838360405180602001604052806000815250610ff4565b6000610ae960095490565b8210610b4c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ee565b60098281548110610b6d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000610b8b81336115a8565b815161092490600c9060208501906120de565b6000818152600360205260408120546001600160a01b0316806106c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ee565b60006001600160a01b038216610c805760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ee565b506001600160a01b031660009081526004602052604090205490565b60606000610ca983610c15565b905060008167ffffffffffffffff811115610cd457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cfd578160200160208202803683370190505b50905060005b82811015610d5257610d1585826109af565b828281518110610d3557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d4a81612724565b915050610d03565b509392505050565b6000610d6681336115a8565b476000610d89610d82602a610d7c856064611a05565b90611a11565b8390611a1d565b600e549091506001600160a01b03166108fc610da5838561268f565b6040518115909202916000818181858888f19350505050158015610dcd573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e08573d6000803e3d6000fd5b50505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610e4381336115a8565b81516109249060129060208501906120de565b6060600280546106f6906126e9565b6001600160a01b038216331415610ebe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ee565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610f3681336115a8565b60636010541115610f895760405162461bcd60e51b815260206004820152601760248201527f52657365727665642053415320617265206d696e74656400000000000000000060448201526064016107ee565b60005b82811015610fd7576063610f9f60155490565b1015610fc557610fb3601580546001019055565b610fc584610fc060095490565b611a29565b80610fcf81612724565b915050610f8c565b508160106000828254610fea9190612644565b9091555050505050565b610ffe338361167a565b61101a5760405162461bcd60e51b81526004016107ee906125f3565b610e0884848484611a43565b6000818152600360205260409020546060906001600160a01b03166110a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ee565b60006110af611a76565b9050600181511161114a57600d80546110c7906126e9565b80601f01602080910402602001604051908101604052809291908181526020018280546110f3906126e9565b80156111405780601f1061111557610100808354040283529160200191611140565b820191906000526020600020905b81548152906001019060200180831161112357829003601f168201915b5050505050611175565b8061115484611a85565b604051602001611165929190612469565b6040516020818303038152906040525b9392505050565b60008281526020819052604090206001015461119881336115a8565b61092483836119a0565b6060601280546106f6906126e9565b600e546001600160a01b031633146111fe5760115460ff16156111fe5760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016107ee565b60148111156112595760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420757020746f2032302053415320546f6b656e6044820152607360f81b60648201526084016107ee565b61271061126560145490565b611270906001612644565b11156112ab5760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b60448201526064016107ee565b346112be8267016345785d8a0000612670565b111561130c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e740000000060448201526064016107ee565b60005b81811015610abf57600061132260145490565b61132d906063612644565b905061271061133b60145490565b10156113595761134f601480546001019055565b6113593382611a29565b508061136481612724565b91505061130f565b6060600061137b836002612670565b611386906002612644565b67ffffffffffffffff8111156113ac57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113d6576020820181803683370190505b509050600360fc1b816000815181106113ff57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061143c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611460846002612670565b61146b906001612644565b90505b60018111156114ff576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106114ad57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106114d157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936114f8816126d2565b905061146e565b5083156111755760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107ee565b60006001600160e01b0319821663780e9d6360e01b14806106c157506106c182611b9f565b60006001600160e01b03198216637965db0b60e01b14806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b6115b28282610e0e565b610abf576115ca816001600160a01b0316601461136c565b6115d583602061136c565b6040516020016115e6929190612498565b60408051601f198184030181529082905262461bcd60e51b82526107ee9160040161258e565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164182610b9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ee565b60006116fe83610b9e565b9050806001600160a01b0316846001600160a01b031614806117395750836001600160a01b031661172e84610779565b6001600160a01b0316145b8061176957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661178482610b9e565b6001600160a01b0316146117ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ee565b6001600160a01b03821661184e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b611859838383611bde565b61186460008261160c565b6001600160a01b038316600090815260046020526040812080546001929061188d90849061268f565b90915550506001600160a01b03821660009081526004602052604081208054600192906118bb908490612644565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6119268282610e0e565b610abf576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561195c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119aa8282610e0e565b15610abf576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611175828461265c565b60006111758284612670565b6000611175828461268f565b610abf828260405180602001604052806000815250611c96565b611a4e848484611771565b611a5a84848484611cc9565b610e085760405162461bcd60e51b81526004016107ee906125a1565b6060600c80546106f6906126e9565b606081611aa95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ad35780611abd81612724565b9150611acc9050600a8361265c565b9150611aad565b60008167ffffffffffffffff811115611afc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b26576020820181803683370190505b5090505b841561176957611b3b60018361268f565b9150611b48600a8661273f565b611b53906030612644565b60f81b818381518110611b7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b98600a8661265c565b9450611b2a565b60006001600160e01b031982166380ac58cd60e01b14806106b257506001600160e01b03198216635b5e139f60e01b14806106c157506106c182611573565b6001600160a01b038316611c3957611c3481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c5c565b816001600160a01b0316836001600160a01b031614611c5c57611c5c8382611dd6565b6001600160a01b038216611c735761092481611e73565b826001600160a01b0316826001600160a01b031614610924576109248282611f4c565b611ca08383611f90565b611cad6000848484611cc9565b6109245760405162461bcd60e51b81526004016107ee906125a1565b60006001600160a01b0384163b15611dcb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0d90339089908890889060040161250d565b602060405180830381600087803b158015611d2757600080fd5b505af1925050508015611d57575060408051601f3d908101601f19168201909252611d54918101906123db565b60015b611db1573d808015611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b508051611da95760405162461bcd60e51b81526004016107ee906125a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611769565b506001949350505050565b60006001611de384610c15565b611ded919061268f565b600083815260086020526040902054909150808214611e40576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611e859060019061268f565b6000838152600a602052604081205460098054939450909284908110611ebb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611eea57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611f3057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f5783610c15565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611fe65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ee565b6000818152600360205260409020546001600160a01b03161561204b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ee565b61205760008383611bde565b6001600160a01b0382166000908152600460205260408120805460019290612080908490612644565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ea906126e9565b90600052602060002090601f01602090048101928261210c5760008555612152565b82601f1061212557805160ff1916838001178555612152565b82800160010185558215612152579182015b82811115612152578251825591602001919060010190612137565b5061215e929150612162565b5090565b5b8082111561215e5760008155600101612163565b600067ffffffffffffffff808411156121925761219261277f565b604051601f8501601f19908116603f011681019082821181831017156121ba576121ba61277f565b816040528093508581528686860111156121d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220457600080fd5b919050565b8035801515811461220457600080fd5b60006020828403121561222a578081fd5b611175826121ed565b60008060408385031215612245578081fd5b61224e836121ed565b915061225c602084016121ed565b90509250929050565b600080600060608486031215612279578081fd5b612282846121ed565b9250612290602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122b5578081fd5b6122be856121ed565b93506122cc602086016121ed565b925060408501359150606085013567ffffffffffffffff8111156122ee578182fd5b8501601f810187136122fe578182fd5b61230d87823560208401612177565b91505092959194509250565b6000806040838503121561232b578182fd5b612334836121ed565b915061225c60208401612209565b60008060408385031215612354578182fd5b61235d836121ed565b946020939093013593505050565b60006020828403121561237c578081fd5b61117582612209565b600060208284031215612396578081fd5b5035919050565b600080604083850312156123af578182fd5b8235915061225c602084016121ed565b6000602082840312156123d0578081fd5b813561117581612795565b6000602082840312156123ec578081fd5b815161117581612795565b600060208284031215612408578081fd5b813567ffffffffffffffff81111561241e578182fd5b8201601f8101841361242e578182fd5b61176984823560208401612177565b600081518084526124558160208601602086016126a6565b601f01601f19169290920160200192915050565b6000835161247b8184602088016126a6565b83519083019061248f8183602088016126a6565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516124d08160178501602088016126a6565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516125018160288401602088016126a6565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125409083018461243d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258257835183529284019291840191600101612566565b50909695505050505050565b602081526000611175602083018461243d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561265757612657612753565b500190565b60008261266b5761266b612769565b500490565b600081600019048311821515161561268a5761268a612753565b500290565b6000828210156126a1576126a1612753565b500390565b60005b838110156126c15781810151838201526020016126a9565b83811115610e085750506000910152565b6000816126e1576126e1612753565b506000190190565b600181811c908216806126fd57607f821691505b6020821081141561271e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273857612738612753565b5060010190565b60008261274e5761274e612769565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146127ab57600080fd5b5056fea264697066735822122087679c6feaeffbd691a1f086073da8acef24b9660f5ed0c315c4fed6c4635f6b64736f6c63430008040033

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

000000000000000000000000ddaf54c9c16c9dc39abef820a5d2f2a54060fb2f00000000000000000000000054133b2199ae8150b876a23af153198a40ec9a1b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : art_ (address): 0xddaf54C9c16c9dc39abEF820a5d2f2a54060FB2f
Arg [1] : owner_ (address): 0x54133b2199Ae8150b876A23aF153198a40ec9a1b
Arg [2] : uri_ (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ddaf54c9c16c9dc39abef820a5d2f2a54060fb2f
Arg [1] : 00000000000000000000000054133b2199ae8150b876a23af153198a40ec9a1b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59495:4524:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63771:245;;;;;;;;;;-1:-1:-1;63771:245:0;;;;;:::i;:::-;;:::i;:::-;;;7948:14:1;;7941:22;7923:41;;7911:2;7896:18;63771:245:0;;;;;;;;63273:102;;;;;;;;;;-1:-1:-1;63273:102:0;;;;;:::i;:::-;;:::i;:::-;;59810:38;;;;;;;;;;;;59846:2;59810:38;;;;;8121:25:1;;;8109:2;8094:18;59810:38:0;8076:76:1;10475:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12034:221::-;;;;;;;;;;-1:-1:-1;12034:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6606:32:1;;;6588:51;;6576:2;6561:18;12034:221:0;6543:102:1;11557:411:0;;;;;;;;;;-1:-1:-1;11557:411:0;;;;;:::i;:::-;;:::i;62091:110::-;;;;;;;;;;-1:-1:-1;62091:110:0;;;;;:::i;:::-;;:::i;42703:113::-;;;;;;;;;;-1:-1:-1;42791:10:0;:17;42703:113;;12924:339;;;;;;;;;;-1:-1:-1;12924:339:0;;;;;:::i;:::-;;:::i;28564:123::-;;;;;;;;;;-1:-1:-1;28564:123:0;;;;;:::i;:::-;28630:7;28657:12;;;;;;;;;;:22;;;;28564:123;28949:147;;;;;;;;;;-1:-1:-1;28949:147:0;;;;;:::i;:::-;;:::i;42371:256::-;;;;;;;;;;-1:-1:-1;42371:256:0;;;;;:::i;:::-;;:::i;29997:218::-;;;;;;;;;;-1:-1:-1;29997:218:0;;;;;:::i;:::-;;:::i;13334:185::-;;;;;;;;;;-1:-1:-1;13334:185:0;;;;;:::i;:::-;;:::i;42893:233::-;;;;;;;;;;-1:-1:-1;42893:233:0;;;;;:::i;:::-;;:::i;62340:120::-;;;;;;;;;;-1:-1:-1;62340:120:0;;;;;:::i;:::-;;:::i;60111:18::-;;;;;;;;;;-1:-1:-1;60111:18:0;;;;;;;;10169:239;;;;;;;;;;-1:-1:-1;10169:239:0;;;;;:::i;:::-;;:::i;59721:36::-;;;;;;;;;;;;59752:5;59721:36;;9899:208;;;;;;;;;;-1:-1:-1;9899:208:0;;;;;:::i;:::-;;:::i;62927:338::-;;;;;;;;;;-1:-1:-1;62927:338:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63390:362::-;;;:::i;59855:50::-;;;;;;;;;;;;59887:18;59855:50;;61990:93;;;;;;;;;;-1:-1:-1;62063:12:0;;-1:-1:-1;;;;;62063:12:0;61990:93;;27449:139;;;;;;;;;;-1:-1:-1;27449:139:0;;;;;:::i;:::-;;:::i;60707:110::-;;;;;;;;;;-1:-1:-1;60707:110:0;;;;;:::i;:::-;;:::i;10644:104::-;;;;;;;;;;;;;:::i;26540:49::-;;;;;;;;;;-1:-1:-1;26540:49:0;26585:4;26540:49;;12327:295;;;;;;;;;;-1:-1:-1;12327:295:0;;;;;:::i;:::-;;:::i;61504:429::-;;;;;;;;;;-1:-1:-1;61504:429:0;;;;;:::i;:::-;;:::i;13590:328::-;;;;;;;;;;-1:-1:-1;13590:328:0;;;;;:::i;:::-;;:::i;62572:347::-;;;;;;;;;;-1:-1:-1;62572:347:0;;;;;:::i;:::-;;:::i;29341:149::-;;;;;;;;;;-1:-1:-1;29341:149:0;;;;;:::i;:::-;;:::i;62472:92::-;;;;;;;;;;;;;:::i;12693:164::-;;;;;;;;;;-1:-1:-1;12693:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12814:25:0;;;12790:4;12814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12693:164;60825:673;;;;;;:::i;:::-;;:::i;63771:245::-;63889:4;63913:47;63948:11;63913:34;:47::i;:::-;:95;;;;63964:44;63996:11;63964:31;:44::i;:::-;63906:102;63771:245;-1:-1:-1;;63771:245:0:o;63273:102::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;-1:-1:-1;63350:6:0::1;:17:::0;;-1:-1:-1;;63350:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63273:102::o;10475:100::-;10529:13;10562:5;10555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10475:100;:::o;12034:221::-;12110:7;15517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;15517:16:0;12130:73;;;;-1:-1:-1;;;12130:73:0;;14355:2:1;12130:73:0;;;14337:21:1;14394:2;14374:18;;;14367:30;14433:34;14413:18;;;14406:62;-1:-1:-1;;;14484:18:1;;;14477:42;14536:19;;12130:73:0;;;;;;;;;-1:-1:-1;12223:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12223:24:0;;12034:221::o;11557:411::-;11638:13;11654:23;11669:7;11654:14;:23::i;:::-;11638:39;;11702:5;-1:-1:-1;;;;;11696:11:0;:2;-1:-1:-1;;;;;11696:11:0;;;11688:57;;;;-1:-1:-1;;;11688:57:0;;15933:2:1;11688:57:0;;;15915:21:1;15972:2;15952:18;;;15945:30;16011:34;15991:18;;;15984:62;-1:-1:-1;;;16062:18:1;;;16055:31;16103:19;;11688:57:0;15905:223:1;11688:57:0;705:10;-1:-1:-1;;;;;11780:21:0;;;;:62;;-1:-1:-1;11805:37:0;11822:5;705:10;12693:164;:::i;11805:37::-;11758:168;;;;-1:-1:-1;;;11758:168:0;;12396:2:1;11758:168:0;;;12378:21:1;12435:2;12415:18;;;12408:30;12474:34;12454:18;;;12447:62;12545:26;12525:18;;;12518:54;12589:19;;11758:168:0;12368:246:1;11758:168:0;11939:21;11948:2;11952:7;11939:8;:21::i;:::-;11557:411;;;:::o;62091:110::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;-1:-1:-1;62172:12:0::1;:21:::0;;-1:-1:-1;;;;;;62172:21:0::1;-1:-1:-1::0;;;;;62172:21:0;;;::::1;::::0;;;::::1;::::0;;62091:110::o;12924:339::-;13119:41;705:10;13152:7;13119:18;:41::i;:::-;13111:103;;;;-1:-1:-1;;;13111:103:0;;;;;;;:::i;:::-;13227:28;13237:4;13243:2;13247:7;13227:9;:28::i;28949:147::-;28630:7;28657:12;;;;;;;;;;:22;;;27031:30;27042:4;705:10;27031;:30::i;:::-;29063:25:::1;29074:4;29080:7;29063:10;:25::i;42371:256::-:0;42468:7;42504:23;42521:5;42504:16;:23::i;:::-;42496:5;:31;42488:87;;;;-1:-1:-1;;;42488:87:0;;8944:2:1;42488:87:0;;;8926:21:1;8983:2;8963:18;;;8956:30;9022:34;9002:18;;;8995:62;-1:-1:-1;;;9073:18:1;;;9066:41;9124:19;;42488:87:0;8916:233:1;42488:87:0;-1:-1:-1;;;;;;42593:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42371:256::o;29997:218::-;-1:-1:-1;;;;;30093:23:0;;705:10;30093:23;30085:83;;;;-1:-1:-1;;;30085:83:0;;17166:2:1;30085:83:0;;;17148:21:1;17205:2;17185:18;;;17178:30;17244:34;17224:18;;;17217:62;-1:-1:-1;;;17295:18:1;;;17288:45;17350:19;;30085:83:0;17138:237:1;30085:83:0;30181:26;30193:4;30199:7;30181:11;:26::i;:::-;29997:218;;:::o;13334:185::-;13472:39;13489:4;13495:2;13499:7;13472:39;;;;;;;;;;;;:16;:39::i;42893:233::-;42968:7;43004:30;42791:10;:17;;42703:113;43004:30;42996:5;:38;42988:95;;;;-1:-1:-1;;;42988:95:0;;16753:2:1;42988:95:0;;;16735:21:1;16792:2;16772:18;;;16765:30;16831:34;16811:18;;;16804:62;-1:-1:-1;;;16882:18:1;;;16875:42;16934:19;;42988:95:0;16725:234:1;42988:95:0;43101:10;43112:5;43101:17;;;;;;-1:-1:-1;;;43101:17:0;;;;;;;;;;;;;;;;;43094:24;;42893:233;;;:::o;62340:120::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;62430:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;10169:239::-:0;10241:7;10277:16;;;:7;:16;;;;;;-1:-1:-1;;;;;10277:16:0;10312:19;10304:73;;;;-1:-1:-1;;;10304:73:0;;13584:2:1;10304:73:0;;;13566:21:1;13623:2;13603:18;;;13596:30;13662:34;13642:18;;;13635:62;-1:-1:-1;;;13713:18:1;;;13706:39;13762:19;;10304:73:0;13556:231:1;9899:208:0;9971:7;-1:-1:-1;;;;;9999:19:0;;9991:74;;;;-1:-1:-1;;;9991:74:0;;13173:2:1;9991:74:0;;;13155:21:1;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:1;;;13295:40;13352:19;;9991:74:0;13145:232:1;9991:74:0;-1:-1:-1;;;;;;10083:16:0;;;;;:9;:16;;;;;;;9899:208::o;62927:338::-;62988:16;63017:15;63035:17;63045:6;63035:9;:17::i;:::-;63017:35;;63065:23;63105:10;63091:25;;;;;;-1:-1:-1;;;63091:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63091:25:0;;63065:51;;63131:6;63127:105;63147:10;63143:1;:14;63127:105;;;63190:30;63210:6;63218:1;63190:19;:30::i;:::-;63178:6;63185:1;63178:9;;;;;;-1:-1:-1;;;63178:9:0;;;;;;;;;;;;;;;;;;:42;63159:3;;;;:::i;:::-;;;;63127:105;;;-1:-1:-1;63251:6:0;62927:338;-1:-1:-1;;;62927:338:0:o;63390:362::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;63486:21:::1;63468:15;63540:37;63552:24;63573:2;63552:16;63486:21:::0;63564:3:::1;63552:11;:16::i;:::-;:20:::0;::::1;:24::i;:::-;63540:7:::0;;:11:::1;:37::i;:::-;63608:12;::::0;63518:59;;-1:-1:-1;;;;;;63608:12:0::1;63600:53;63631:21;63518:59:::0;63631:7;:21:::1;:::i;:::-;63600:53;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;63691:13:0::1;::::0;63683:44:::1;::::0;-1:-1:-1;;;;;63691:13:0;;::::1;::::0;63683:44;::::1;;;::::0;63715:11;;63691:13:::1;63683:44:::0;63691:13;63683:44;63715:11;63691:13;63683:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27072:1;;63390:362:::0;:::o;27449:139::-;27527:4;27551:12;;;;;;;;;;;-1:-1:-1;;;;;27551:29:0;;;;;;;;;;;;;;;27449:139::o;60707:110::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;60793:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;10644:104::-:0;10700:13;10733:7;10726:14;;;;;:::i;12327:295::-;-1:-1:-1;;;;;12430:24:0;;705:10;12430:24;;12422:62;;;;-1:-1:-1;;;12422:62:0;;10537:2:1;12422:62:0;;;10519:21:1;10576:2;10556:18;;;10549:30;10615:27;10595:18;;;10588:55;10660:18;;12422:62:0;10509:175:1;12422:62:0;705:10;12497:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12497:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12497:53:0;;;;;;;;;;12566:48;;7923:41:1;;;12497:42:0;;705:10;12566:48;;7896:18:1;12566:48:0;;;;;;;12327:295;;:::o;61504:429::-;26585:4;27031:30;26585:4;705:10;27031;:30::i;:::-;59801:2:::1;61605:9;;:25;;61597:61;;;::::0;-1:-1:-1;;;61597:61:0;;12821:2:1;61597:61:0::1;::::0;::::1;12803:21:1::0;12860:2;12840:18;;;12833:30;12899:25;12879:18;;;12872:53;12942:18;;61597:61:0::1;12793:173:1::0;61597:61:0::1;61673:9;61669:226;61691:6;61688:1;:9;61669:226;;;59801:2;61742:22;:12;32684:14:::0;;32592:114;61742:22:::1;:37;61738:150;;;61792:24;:12;32803:19:::0;;32821:1;32803:19;;;32714:127;61792:24:::1;61827:29;61837:3;61842:13;42791:10:::0;:17;;42703:113;61842:13:::1;61827:9;:29::i;:::-;61699:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61669:226;;;;61919:6;61906:9;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;61504:429:0:o;13590:328::-;13765:41;705:10;13798:7;13765:18;:41::i;:::-;13757:103;;;;-1:-1:-1;;;13757:103:0;;;;;;;:::i;:::-;13871:39;13885:4;13891:2;13895:7;13904:5;13871:13;:39::i;62572:347::-;15493:4;15517:16;;;:7;:16;;;;;;62645:13;;-1:-1:-1;;;;;15517:16:0;62671:76;;;;-1:-1:-1;;;62671:76:0;;15178:2:1;62671:76:0;;;15160:21:1;15217:2;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;-1:-1:-1;;;15307:18:1;;;15300:45;15362:19;;62671:76:0;15150:237:1;62671:76:0;62760:21;62784:10;:8;:10::i;:::-;62760:34;;62836:1;62818:7;62812:21;:25;:99;;62896:15;62812:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62864:7;62873:18;:7;:16;:18::i;:::-;62847:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62812:99;62805:106;62572:347;-1:-1:-1;;;62572:347:0:o;29341:149::-;28630:7;28657:12;;;;;;;;;;:22;;;27031:30;27042:4;705:10;27031;:30::i;:::-;29456:26:::1;29468:4;29474:7;29456:11;:26::i;62472:92::-:0;62517:13;62546:12;62539:19;;;;;:::i;60825:673::-;62063:12;;-1:-1:-1;;;;;62063:12:0;60896:10;:21;60893:77;;60942:6;;;;60941:7;60933:25;;;;-1:-1:-1;;;60933:25:0;;10891:2:1;60933:25:0;;;10873:21:1;10930:1;10910:18;;;10903:29;-1:-1:-1;;;10948:18:1;;;10941:35;10993:18;;60933:25:0;10863:154:1;60933:25:0;59846:2;60988:14;:27;;60980:73;;;;-1:-1:-1;;;60980:73:0;;11224:2:1;60980:73:0;;;11206:21:1;11263:2;11243:18;;;11236:30;11302:34;11282:18;;;11275:62;-1:-1:-1;;;11353:18:1;;;11346:31;11394:19;;60980:73:0;11196:223:1;60980:73:0;59752:5;61072:20;:10;32684:14;;32592:114;61072:20;:24;;61095:1;61072:24;:::i;:::-;:35;;61064:58;;;;-1:-1:-1;;;61064:58:0;;15594:2:1;61064:58:0;;;15576:21:1;15633:2;15613:18;;;15606:30;-1:-1:-1;;;15652:18:1;;;15645:40;15702:18;;61064:58:0;15566:160:1;61064:58:0;61167:9;61141:22;61149:14;59887:18;61141:22;:::i;:::-;:35;;61133:76;;;;-1:-1:-1;;;61133:76:0;;11626:2:1;61133:76:0;;;11608:21:1;11665:2;11645:18;;;11638:30;11704;11684:18;;;11677:58;11752:18;;61133:76:0;11598:178:1;61133:76:0;61245:9;61240:251;61264:14;61260:1;:18;61240:251;;;61294:15;61327:20;:10;32684:14;;32592:114;61327:20;61312:35;;59801:2;61312:35;:::i;:::-;61294:53;;59752:5;61368:20;:10;32684:14;;32592:114;61368:20;:30;61364:120;;;61411:22;:10;32803:19;;32821:1;32803:19;;;32714:127;61411:22;61444:30;61454:10;61466:7;61444:9;:30::i;:::-;-1:-1:-1;61280:3:0;;;;:::i;:::-;;;;61240:251;;49825:451;49900:13;49926:19;49958:10;49962:6;49958:1;:10;:::i;:::-;:14;;49971:1;49958:14;:::i;:::-;49948:25;;;;;;-1:-1:-1;;;49948:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49948:25:0;;49926:47;;-1:-1:-1;;;49984:6:0;49991:1;49984:9;;;;;;-1:-1:-1;;;49984:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;49984:15:0;;;;;;;;;-1:-1:-1;;;50010:6:0;50017:1;50010:9;;;;;;-1:-1:-1;;;50010:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;50010:15:0;;;;;;;;-1:-1:-1;50041:9:0;50053:10;50057:6;50053:1;:10;:::i;:::-;:14;;50066:1;50053:14;:::i;:::-;50041:26;;50036:135;50073:1;50069;:5;50036:135;;;-1:-1:-1;;;50121:5:0;50129:3;50121:11;50108:25;;;;;-1:-1:-1;;;50108:25:0;;;;;;;;;;;;50096:6;50103:1;50096:9;;;;;;-1:-1:-1;;;50096:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;50096:37:0;;;;;;;;-1:-1:-1;50158:1:0;50148:11;;;;;50076:3;;;:::i;:::-;;;50036:135;;;-1:-1:-1;50189:10:0;;50181:55;;;;-1:-1:-1;;;50181:55:0;;8583:2:1;50181:55:0;;;8565:21:1;;;8602:18;;;8595:30;8661:34;8641:18;;;8634:62;8713:18;;50181:55:0;8555:182:1;42063:224:0;42165:4;-1:-1:-1;;;;;;42189:50:0;;-1:-1:-1;;;42189:50:0;;:90;;;42243:36;42267:11;42243:23;:36::i;27153:204::-;27238:4;-1:-1:-1;;;;;;27262:47:0;;-1:-1:-1;;;27262:47:0;;:87;;-1:-1:-1;;;;;;;;;;2601:40:0;;;27313:36;2492:157;27878:497;27959:22;27967:4;27973:7;27959;:22::i;:::-;27954:414;;28147:41;28175:7;-1:-1:-1;;;;;28147:41:0;28185:2;28147:19;:41::i;:::-;28261:38;28289:4;28296:2;28261:19;:38::i;:::-;28052:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28052:270:0;;;;;;;;;;-1:-1:-1;;;27998:358:0;;;;;;;:::i;19410:174::-;19485:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19485:29:0;-1:-1:-1;;;;;19485:29:0;;;;;;;;:24;;19539:23;19485:24;19539:14;:23::i;:::-;-1:-1:-1;;;;;19530:46:0;;;;;;;;;;;19410:174;;:::o;15722:348::-;15815:4;15517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;15517:16:0;15832:73;;;;-1:-1:-1;;;15832:73:0;;11983:2:1;15832:73:0;;;11965:21:1;12022:2;12002:18;;;11995:30;12061:34;12041:18;;;12034:62;-1:-1:-1;;;12112:18:1;;;12105:42;12164:19;;15832:73:0;11955:234:1;15832:73:0;15916:13;15932:23;15947:7;15932:14;:23::i;:::-;15916:39;;15985:5;-1:-1:-1;;;;;15974:16:0;:7;-1:-1:-1;;;;;15974:16:0;;:51;;;;16018:7;-1:-1:-1;;;;;15994:31:0;:20;16006:7;15994:11;:20::i;:::-;-1:-1:-1;;;;;15994:31:0;;15974:51;:87;;;-1:-1:-1;;;;;;12814:25:0;;;12790:4;12814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;16029:32;15966:96;15722:348;-1:-1:-1;;;;15722:348:0:o;18714:578::-;18873:4;-1:-1:-1;;;;;18846:31:0;:23;18861:7;18846:14;:23::i;:::-;-1:-1:-1;;;;;18846:31:0;;18838:85;;;;-1:-1:-1;;;18838:85:0;;14768:2:1;18838:85:0;;;14750:21:1;14807:2;14787:18;;;14780:30;14846:34;14826:18;;;14819:62;-1:-1:-1;;;14897:18:1;;;14890:39;14946:19;;18838:85:0;14740:231:1;18838:85:0;-1:-1:-1;;;;;18942:16:0;;18934:65;;;;-1:-1:-1;;;18934:65:0;;10132:2:1;18934:65:0;;;10114:21:1;10171:2;10151:18;;;10144:30;10210:34;10190:18;;;10183:62;-1:-1:-1;;;10261:18:1;;;10254:34;10305:19;;18934:65:0;10104:226:1;18934:65:0;19012:39;19033:4;19039:2;19043:7;19012:20;:39::i;:::-;19116:29;19133:1;19137:7;19116:8;:29::i;:::-;-1:-1:-1;;;;;19158:15:0;;;;;;:9;:15;;;;;:20;;19177:1;;19158:15;:20;;19177:1;;19158:20;:::i;:::-;;;;-1:-1:-1;;;;;;;19189:13:0;;;;;;:9;:13;;;;;:18;;19206:1;;19189:13;:18;;19206:1;;19189:18;:::i;:::-;;;;-1:-1:-1;;19218:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;19218:21:0;-1:-1:-1;;;;;19218:21:0;;;;;;;;;19257:27;;19218:16;;19257:27;;;;;;;18714:578;;;:::o;31301:229::-;31376:22;31384:4;31390:7;31376;:22::i;:::-;31371:152;;31415:6;:12;;;;;;;;;;;-1:-1:-1;;;;;31415:29:0;;;;;;;;;:36;;-1:-1:-1;;31415:36:0;31447:4;31415:36;;;31498:12;705:10;;625:98;31498:12;-1:-1:-1;;;;;31471:40:0;31489:7;-1:-1:-1;;;;;31471:40:0;31483:4;31471:40;;;;;;;;;;31301:229;;:::o;31538:230::-;31613:22;31621:4;31627:7;31613;:22::i;:::-;31609:152;;;31684:5;31652:12;;;;;;;;;;;-1:-1:-1;;;;;31652:29:0;;;;;;;;;;:37;;-1:-1:-1;;31652:37:0;;;31709:40;705:10;;31652:12;;31709:40;;31684:5;31709:40;31538:230;;:::o;37114:98::-;37172:7;37199:5;37203:1;37199;:5;:::i;36715:98::-;36773:7;36800:5;36804:1;36800;:5;:::i;36358:98::-;36416:7;36443:5;36447:1;36443;:5;:::i;16412:110::-;16488:26;16498:2;16502:7;16488:26;;;;;;;;;;;;:9;:26::i;14800:315::-;14957:28;14967:4;14973:2;14977:7;14957:9;:28::i;:::-;15004:48;15027:4;15033:2;15037:7;15046:5;15004:22;:48::i;:::-;14996:111;;;;-1:-1:-1;;;14996:111:0;;;;;;;:::i;62219:113::-;62279:13;62312:12;62305:19;;;;;:::i;48524:723::-;48580:13;48801:10;48797:53;;-1:-1:-1;;48828:10:0;;;;;;;;;;;;-1:-1:-1;;;48828:10:0;;;;;48524:723::o;48797:53::-;48875:5;48860:12;48916:78;48923:9;;48916:78;;48949:8;;;;:::i;:::-;;-1:-1:-1;48972:10:0;;-1:-1:-1;48980:2:0;48972:10;;:::i;:::-;;;48916:78;;;49004:19;49036:6;49026:17;;;;;;-1:-1:-1;;;49026:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49026:17:0;;49004:39;;49054:154;49061:10;;49054:154;;49088:11;49098:1;49088:11;;:::i;:::-;;-1:-1:-1;49157:10:0;49165:2;49157:5;:10;:::i;:::-;49144:24;;:2;:24;:::i;:::-;49131:39;;49114:6;49121;49114:14;;;;;;-1:-1:-1;;;49114:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;49114:56:0;;;;;;;;-1:-1:-1;49185:11:0;49194:2;49185:11;;:::i;:::-;;;49054:154;;9530:305;9632:4;-1:-1:-1;;;;;;9669:40:0;;-1:-1:-1;;;9669:40:0;;:105;;-1:-1:-1;;;;;;;9726:48:0;;-1:-1:-1;;;9726:48:0;9669:158;;;;9791:36;9815:11;9791:23;:36::i;43739:589::-;-1:-1:-1;;;;;43945:18:0;;43941:187;;43980:40;44012:7;45155:10;:17;;45128:24;;;;:15;:24;;;;;:44;;;45183:24;;;;;;;;;;;;45051:164;43980:40;43941:187;;;44050:2;-1:-1:-1;;;;;44042:10:0;:4;-1:-1:-1;;;;;44042:10:0;;44038:90;;44069:47;44102:4;44108:7;44069:32;:47::i;:::-;-1:-1:-1;;;;;44142:16:0;;44138:183;;44175:45;44212:7;44175:36;:45::i;44138:183::-;44248:4;-1:-1:-1;;;;;44242:10:0;:2;-1:-1:-1;;;;;44242:10:0;;44238:83;;44269:40;44297:2;44301:7;44269:27;:40::i;16749:321::-;16879:18;16885:2;16889:7;16879:5;:18::i;:::-;16930:54;16961:1;16965:2;16969:7;16978:5;16930:22;:54::i;:::-;16908:154;;;;-1:-1:-1;;;16908:154:0;;;;;;;:::i;20149:799::-;20304:4;-1:-1:-1;;;;;20325:13:0;;51376:20;51424:8;20321:620;;20361:72;;-1:-1:-1;;;20361:72:0;;-1:-1:-1;;;;;20361:36:0;;;;;:72;;705:10;;20412:4;;20418:7;;20427:5;;20361:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20361:72:0;;;;;;;;-1:-1:-1;;20361:72:0;;;;;;;;;;;;:::i;:::-;;;20357:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20603:13:0;;20599:272;;20646:60;;-1:-1:-1;;;20646:60:0;;;;;;;:::i;20599:272::-;20821:6;20815:13;20806:6;20802:2;20798:15;20791:38;20357:529;-1:-1:-1;;;;;;20484:51:0;-1:-1:-1;;;20484:51:0;;-1:-1:-1;20477:58:0;;20321:620;-1:-1:-1;20925:4:0;20149:799;;;;;;:::o;45842:988::-;46108:22;46158:1;46133:22;46150:4;46133:16;:22::i;:::-;:26;;;;:::i;:::-;46170:18;46191:26;;;:17;:26;;;;;;46108:51;;-1:-1:-1;46324:28:0;;;46320:328;;-1:-1:-1;;;;;46391:18:0;;46369:19;46391:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46442:30;;;;;;:44;;;46559:30;;:17;:30;;;;;:43;;;46320:328;-1:-1:-1;46744:26:0;;;;:17;:26;;;;;;;;46737:33;;;-1:-1:-1;;;;;46788:18:0;;;;;:12;:18;;;;;:34;;;;;;;46781:41;45842:988::o;47125:1079::-;47403:10;:17;47378:22;;47403:21;;47423:1;;47403:21;:::i;:::-;47435:18;47456:24;;;:15;:24;;;;;;47829:10;:26;;47378:46;;-1:-1:-1;47456:24:0;;47378:46;;47829:26;;;;-1:-1:-1;;;47829:26:0;;;;;;;;;;;;;;;;;47807:48;;47893:11;47868:10;47879;47868:22;;;;;;-1:-1:-1;;;47868:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;47973:28;;;:15;:28;;;;;;;:41;;;48145:24;;;;;48138:31;48180:10;:16;;;;;-1:-1:-1;;;48180:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47125:1079;;;;:::o;44629:221::-;44714:14;44731:20;44748:2;44731:16;:20::i;:::-;-1:-1:-1;;;;;44762:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44807:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44629:221:0:o;17406:382::-;-1:-1:-1;;;;;17486:16:0;;17478:61;;;;-1:-1:-1;;;17478:61:0;;13994:2:1;17478:61:0;;;13976:21:1;;;14013:18;;;14006:30;14072:34;14052:18;;;14045:62;14124:18;;17478:61:0;13966:182:1;17478:61:0;15493:4;15517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;15517:16:0;:30;17550:58;;;;-1:-1:-1;;;17550:58:0;;9775:2:1;17550:58:0;;;9757:21:1;9814:2;9794:18;;;9787:30;9853;9833:18;;;9826:58;9901:18;;17550:58:0;9747:178:1;17550:58:0;17621:45;17650:1;17654:2;17658:7;17621:20;:45::i;:::-;-1:-1:-1;;;;;17679:13:0;;;;;;:9;:13;;;;;:18;;17696:1;;17679:13;:18;;17696:1;;17679:18;:::i;:::-;;;;-1:-1:-1;;17708:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;17708:21:0;-1:-1:-1;;;;;17708:21:0;;;;;;;;17747:33;;17708:16;;;17747:33;;17708:16;;17747:33;17406:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:190::-;3305:6;3358:2;3346:9;3337:7;3333:23;3329:32;3326:2;;;3379:6;3371;3364:22;3326:2;-1:-1:-1;3407:23:1;;3316:120;-1:-1:-1;3316:120:1:o;3441:264::-;3509:6;3517;3570:2;3558:9;3549:7;3545:23;3541:32;3538:2;;;3591:6;3583;3576:22;3538:2;3632:9;3619:23;3609:33;;3661:38;3695:2;3684:9;3680:18;3661:38;:::i;3710:255::-;3768:6;3821:2;3809:9;3800:7;3796:23;3792:32;3789:2;;;3842:6;3834;3827:22;3789:2;3886:9;3873:23;3905:30;3929:5;3905:30;:::i;3970:259::-;4039:6;4092:2;4080:9;4071:7;4067:23;4063:32;4060:2;;;4113:6;4105;4098:22;4060:2;4150:9;4144:16;4169:30;4193:5;4169:30;:::i;4234:480::-;4303:6;4356:2;4344:9;4335:7;4331:23;4327:32;4324:2;;;4377:6;4369;4362:22;4324:2;4422:9;4409:23;4455:18;4447:6;4444:30;4441:2;;;4492:6;4484;4477:22;4441:2;4520:22;;4573:4;4565:13;;4561:27;-1:-1:-1;4551:2:1;;4607:6;4599;4592:22;4551:2;4635:73;4700:7;4695:2;4682:16;4677:2;4673;4669:11;4635:73;:::i;4914:257::-;4955:3;4993:5;4987:12;5020:6;5015:3;5008:19;5036:63;5092:6;5085:4;5080:3;5076:14;5069:4;5062:5;5058:16;5036:63;:::i;:::-;5153:2;5132:15;-1:-1:-1;;5128:29:1;5119:39;;;;5160:4;5115:50;;4963:208;-1:-1:-1;;4963:208:1:o;5176:470::-;5355:3;5393:6;5387:13;5409:53;5455:6;5450:3;5443:4;5435:6;5431:17;5409:53;:::i;:::-;5525:13;;5484:16;;;;5547:57;5525:13;5484:16;5581:4;5569:17;;5547:57;:::i;:::-;5620:20;;5363:283;-1:-1:-1;;;;5363:283:1:o;5651:786::-;6062:25;6057:3;6050:38;6032:3;6117:6;6111:13;6133:62;6188:6;6183:2;6178:3;6174:12;6167:4;6159:6;6155:17;6133:62;:::i;:::-;-1:-1:-1;;;6254:2:1;6214:16;;;6246:11;;;6239:40;6304:13;;6326:63;6304:13;6375:2;6367:11;;6360:4;6348:17;;6326:63;:::i;:::-;6409:17;6428:2;6405:26;;6040:397;-1:-1:-1;;;;6040:397:1:o;6650:488::-;-1:-1:-1;;;;;6919:15:1;;;6901:34;;6971:15;;6966:2;6951:18;;6944:43;7018:2;7003:18;;6996:34;;;7066:3;7061:2;7046:18;;7039:31;;;6844:4;;7087:45;;7112:19;;7104:6;7087:45;:::i;:::-;7079:53;6853:285;-1:-1:-1;;;;;;6853:285:1:o;7143:635::-;7314:2;7366:21;;;7436:13;;7339:18;;;7458:22;;;7285:4;;7314:2;7537:15;;;;7511:2;7496:18;;;7285:4;7583:169;7597:6;7594:1;7591:13;7583:169;;;7658:13;;7646:26;;7727:15;;;;7692:12;;;;7619:1;7612:9;7583:169;;;-1:-1:-1;7769:3:1;;7294:484;-1:-1:-1;;;;;;7294:484:1:o;8157:219::-;8306:2;8295:9;8288:21;8269:4;8326:44;8366:2;8355:9;8351:18;8343:6;8326:44;:::i;9154:414::-;9356:2;9338:21;;;9395:2;9375:18;;;9368:30;9434:34;9429:2;9414:18;;9407:62;-1:-1:-1;;;9500:2:1;9485:18;;9478:48;9558:3;9543:19;;9328:240::o;16133:413::-;16335:2;16317:21;;;16374:2;16354:18;;;16347:30;16413:34;16408:2;16393:18;;16386:62;-1:-1:-1;;;16479:2:1;16464:18;;16457:47;16536:3;16521:19;;16307:239::o;17562:128::-;17602:3;17633:1;17629:6;17626:1;17623:13;17620:2;;;17639:18;;:::i;:::-;-1:-1:-1;17675:9:1;;17610:80::o;17695:120::-;17735:1;17761;17751:2;;17766:18;;:::i;:::-;-1:-1:-1;17800:9:1;;17741:74::o;17820:168::-;17860:7;17926:1;17922;17918:6;17914:14;17911:1;17908:21;17903:1;17896:9;17889:17;17885:45;17882:2;;;17933:18;;:::i;:::-;-1:-1:-1;17973:9:1;;17872:116::o;17993:125::-;18033:4;18061:1;18058;18055:8;18052:2;;;18066:18;;:::i;:::-;-1:-1:-1;18103:9:1;;18042:76::o;18123:258::-;18195:1;18205:113;18219:6;18216:1;18213:13;18205:113;;;18295:11;;;18289:18;18276:11;;;18269:39;18241:2;18234:10;18205:113;;;18336:6;18333:1;18330:13;18327:2;;;-1:-1:-1;;18371:1:1;18353:16;;18346:27;18176:205::o;18386:136::-;18425:3;18453:5;18443:2;;18462:18;;:::i;:::-;-1:-1:-1;;;18498:18:1;;18433:89::o;18527:380::-;18606:1;18602:12;;;;18649;;;18670:2;;18724:4;18716:6;18712:17;18702:27;;18670:2;18777;18769:6;18766:14;18746:18;18743:38;18740:2;;;18823:10;18818:3;18814:20;18811:1;18804:31;18858:4;18855:1;18848:15;18886:4;18883:1;18876:15;18740:2;;18582:325;;;:::o;18912:135::-;18951:3;-1:-1:-1;;18972:17:1;;18969:2;;;18992:18;;:::i;:::-;-1:-1:-1;19039:1:1;19028:13;;18959:88::o;19052:112::-;19084:1;19110;19100:2;;19115:18;;:::i;:::-;-1:-1:-1;19149:9:1;;19090:74::o;19169:127::-;19230:10;19225:3;19221:20;19218:1;19211:31;19261:4;19258:1;19251:15;19285:4;19282:1;19275:15;19301:127;19362:10;19357:3;19353:20;19350:1;19343:31;19393:4;19390:1;19383:15;19417:4;19414:1;19407:15;19433:127;19494:10;19489:3;19485:20;19482:1;19475:31;19525:4;19522:1;19515:15;19549:4;19546:1;19539:15;19565:131;-1:-1:-1;;;;;;19639:32:1;;19629:43;;19619:2;;19686:1;19683;19676:12;19619:2;19609:87;:::o

Swarm Source

ipfs://87679c6feaeffbd691a1f086073da8acef24b9660f5ed0c315c4fed6c4635f6b
Loading...
Loading
Loading...
Loading
[ 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.