ETH Price: $3,477.49 (+1.58%)
Gas: 9 Gwei

Token

Winky Deebies (WINKY_DEEBIES)
 

Overview

Max Total Supply

1,149 WINKY_DEEBIES

Holders

587

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WINKY_DEEBIES
0xc761a7a1fe7bd916baa9e38e3a5a219bef93cb17
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:
WinkyDeebies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _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]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = 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 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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(to).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 3 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 4 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 5 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 6 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : WinkyDeebies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

contract WinkyDeebies is AccessControl, ERC721Enumerable {
    using Strings for uint256;

	string private baseTokenURI;
	bool public paused;
    address private ownerAddress;
    address private deebiesContract;
    

    constructor(address owner_, address deebiesContract_, string memory uri_) ERC721("Winky Deebies", "WINKY_DEEBIES")  {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        setOwner(owner_);
        _setupRole(DEFAULT_ADMIN_ROLE, ownerAddress);
        setBaseURI(uri_);
        setDeebiesContract(deebiesContract_);
        paused = false;
    }

    function claimed(uint256 tokenId) public view virtual returns (bool) {
        return _exists(tokenId);
    }

    function baseClaim(uint256 tokenId) private {
        require(IERC721(deebiesContract).ownerOf(tokenId) == _msgSender(), string(abi.encodePacked('You are not the owner of DB ', tokenId.toString())));
        require(!claimed(tokenId), 'Already claimed!');

        _safeMint(_msgSender(), tokenId);
    }


    function claimWinkyDeebies(uint256[] memory tokenIds) public {
        if(_msgSender() != owner()){
            require(!paused, "Pause");
        }
        
        for (uint256 i = 0; i < tokenIds.length; i++) {
            baseClaim(tokenIds[i]);
        }
    }

    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 setDeebiesContract(address deebiesContract_) public onlyRole(DEFAULT_ADMIN_ROLE) {
        deebiesContract = deebiesContract_;
    }

    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 string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    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 supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"deebiesContract_","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimWinkyDeebies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"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":"address","name":"deebiesContract_","type":"address"}],"name":"setDeebiesContract","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"}]

60806040523480156200001157600080fd5b50604051620053ad380380620053ad83398181016040528101906200003791906200087c565b6040518060400160405280600d81526020017f57696e6b792044656562696573000000000000000000000000000000000000008152506040518060400160405280600d81526020017f57494e4b595f44454542494553000000000000000000000000000000000000008152508160019080519060200190620000bb92919062000737565b508060029080519060200190620000d492919062000737565b505050620000fb6000801b620000ef6200018960201b60201c565b6200019160201b60201c565b6200010c83620001a760201b60201c565b620001436000801b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200019160201b60201c565b62000154816200021160201b60201c565b62000165826200025360201b60201c565b6000600c60006101000a81548160ff02191690831515021790555050505062000e35565b600033905090565b620001a38282620002bd60201b60201c565b5050565b6000801b620001cc81620001c06200018960201b60201c565b620003ae60201b60201c565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000801b62000236816200022a6200018960201b60201c565b620003ae60201b60201c565b81600b90805190602001906200024e92919062000737565b505050565b6000801b62000278816200026c6200018960201b60201c565b620003ae60201b60201c565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b620002cf82826200047260201b60201c565b620003aa57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200034f6200018960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003c082826200047260201b60201c565b6200046e57620003f38173ffffffffffffffffffffffffffffffffffffffff166014620004dc60201b6200138a1760201c565b6200040e8360001c6020620004dc60201b6200138a1760201c565b60405160200162000421929190620009e4565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000465919062000a26565b60405180910390fd5b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060006002836002620004f1919062000b4f565b620004fd919062000af2565b67ffffffffffffffff81111562000519576200051862000d4c565b5b6040519080825280601f01601f1916602001820160405280156200054c5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062000587576200058662000d1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620005ee57620005ed62000d1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262000630919062000b4f565b6200063c919062000af2565b90505b6001811115620006e6577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062000682576200068162000d1d565b5b1a60f81b8282815181106200069c576200069b62000d1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620006de9062000c24565b90506200063f565b50600084146200072d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007249062000a4a565b60405180910390fd5b8091505092915050565b828054620007459062000c53565b90600052602060002090601f016020900481019282620007695760008555620007b5565b82601f106200078457805160ff1916838001178555620007b5565b82800160010185558215620007b5579182015b82811115620007b457825182559160200191906001019062000797565b5b509050620007c49190620007c8565b5090565b5b80821115620007e3576000816000905550600101620007c9565b5090565b6000620007fe620007f88462000a95565b62000a6c565b9050828152602081018484840111156200081d576200081c62000d80565b5b6200082a84828562000bee565b509392505050565b600081519050620008438162000e1b565b92915050565b600082601f83011262000861576200086062000d7b565b5b815162000873848260208601620007e7565b91505092915050565b60008060006060848603121562000898576200089762000d8a565b5b6000620008a88682870162000832565b9350506020620008bb8682870162000832565b925050604084015167ffffffffffffffff811115620008df57620008de62000d85565b5b620008ed8682870162000849565b9150509250925092565b6000620009048262000acb565b62000910818562000ad6565b93506200092281856020860162000bee565b6200092d8162000d8f565b840191505092915050565b6000620009458262000acb565b62000951818562000ae7565b93506200096381856020860162000bee565b80840191505092915050565b60006200097e60208362000ad6565b91506200098b8262000da0565b602082019050919050565b6000620009a560178362000ae7565b9150620009b28262000dc9565b601782019050919050565b6000620009cc60118362000ae7565b9150620009d98262000df2565b601182019050919050565b6000620009f18262000996565b9150620009ff828562000938565b915062000a0c82620009bd565b915062000a1a828462000938565b91508190509392505050565b6000602082019050818103600083015262000a428184620008f7565b905092915050565b6000602082019050818103600083015262000a65816200096f565b9050919050565b600062000a7862000a8b565b905062000a86828262000c89565b919050565b6000604051905090565b600067ffffffffffffffff82111562000ab35762000ab262000d4c565b5b62000abe8262000d8f565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000aff8262000be4565b915062000b0c8362000be4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b445762000b4362000cbf565b5b828201905092915050565b600062000b5c8262000be4565b915062000b698362000be4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ba55762000ba462000cbf565b5b828202905092915050565b600062000bbd8262000bc4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c0e57808201518184015260208101905062000bf1565b8381111562000c1e576000848401525b50505050565b600062000c318262000be4565b9150600082141562000c485762000c4762000cbf565b5b600182039050919050565b6000600282049050600182168062000c6c57607f821691505b6020821081141562000c835762000c8262000cee565b5b50919050565b62000c948262000d8f565b810181811067ffffffffffffffff8211171562000cb65762000cb562000d4c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b62000e268162000bb0565b811462000e3257600080fd5b50565b6145688062000e456000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063590524531161010f578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd1461059e578063d547741f146105ce578063dbe7e3bd146105ea578063e985e9c51461061a576101e5565b8063a217fddf1461052c578063a22cb4651461054a578063a8801a3614610566578063b88d4fde14610582576101e5565b80638462151c116100de5780638462151c146104905780638da5cb5b146104c057806391d14854146104de57806395d89b411461050e576101e5565b806359052453146103f65780635c975abb146104125780636352211e1461043057806370a0823114610460576101e5565b806323b872dd1161018757806336568abe1161015657806336568abe1461037257806342842e0e1461038e5780634f6ccce7146103aa57806355f804b3146103da576101e5565b806323b872dd146102da578063248a9ca3146102f65780632f2ff15d146103265780632f745c5914610342576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b31461028457806313af4035146102a057806318160ddd146102bc576101e5565b806301ffc9a7146101ea57806302329a291461021a57806306fdde0314610236575b600080fd5b61020460048036038101906101ff9190613058565b61064a565b60405161021191906136ba565b60405180910390f35b610234600480360381019061022f9190612fbe565b61066c565b005b61023e61069f565b60405161024b91906136f0565b60405180910390f35b61026e600480360381019061026991906130fb565b610731565b60405161027b9190613631565b60405180910390f35b61029e60048036038101906102999190612f35565b6107b6565b005b6102ba60048036038101906102b59190612d85565b6108ce565b005b6102c4610928565b6040516102d19190613992565b60405180910390f35b6102f460048036038101906102ef9190612e1f565b610935565b005b610310600480360381019061030b9190612feb565b610995565b60405161031d91906136d5565b60405180910390f35b610340600480360381019061033b9190613018565b6109b4565b005b61035c60048036038101906103579190612f35565b6109dd565b6040516103699190613992565b60405180910390f35b61038c60048036038101906103879190613018565b610a82565b005b6103a860048036038101906103a39190612e1f565b610b05565b005b6103c460048036038101906103bf91906130fb565b610b25565b6040516103d19190613992565b60405180910390f35b6103f460048036038101906103ef91906130b2565b610b96565b005b610410600480360381019061040b9190612f75565b610bc6565b005b61041a610c9e565b60405161042791906136ba565b60405180910390f35b61044a600480360381019061044591906130fb565b610cb1565b6040516104579190613631565b60405180910390f35b61047a60048036038101906104759190612d85565b610d63565b6040516104879190613992565b60405180910390f35b6104aa60048036038101906104a59190612d85565b610e1b565b6040516104b79190613698565b60405180910390f35b6104c8610ec9565b6040516104d59190613631565b60405180910390f35b6104f860048036038101906104f39190613018565b610ef3565b60405161050591906136ba565b60405180910390f35b610516610f5d565b60405161052391906136f0565b60405180910390f35b610534610fef565b60405161054191906136d5565b60405180910390f35b610564600480360381019061055f9190612ef5565b610ff6565b005b610580600480360381019061057b9190612d85565b611177565b005b61059c60048036038101906105979190612e72565b6111d1565b005b6105b860048036038101906105b391906130fb565b611233565b6040516105c591906136f0565b60405180910390f35b6105e860048036038101906105e39190613018565b6112bb565b005b61060460048036038101906105ff91906130fb565b6112e4565b60405161061191906136ba565b60405180910390f35b610634600480360381019061062f9190612ddf565b6112f6565b60405161064191906136ba565b60405180910390f35b6000610655826115c6565b80610665575061066482611640565b5b9050919050565b6000801b6106818161067c6116ba565b6116c2565b81600c60006101000a81548160ff0219169083151502179055505050565b6060600180546106ae90613cdb565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90613cdb565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073c8261175f565b61077b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610772906138b2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c182610cb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990613912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108516116ba565b73ffffffffffffffffffffffffffffffffffffffff161480610880575061087f8161087a6116ba565b6112f6565b5b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690613832565b60405180910390fd5b6108c983836117cb565b505050565b6000801b6108e3816108de6116ba565b6116c2565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b6109466109406116ba565b82611884565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90613932565b60405180910390fd5b610990838383611962565b505050565b6000806000838152602001908152602001600020600101549050919050565b6109bd82610995565b6109ce816109c96116ba565b6116c2565b6109d88383611bbe565b505050565b60006109e883610d63565b8210610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613752565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a8a6116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613972565b60405180910390fd5b610b018282611c9e565b5050565b610b20838383604051806020016040528060008152506111d1565b505050565b6000610b2f610928565b8210610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613952565b60405180910390fd5b60098281548110610b8457610b83613e74565b5b90600052602060002001549050919050565b6000801b610bab81610ba66116ba565b6116c2565b81600b9080519060200190610bc1929190612ad1565b505050565b610bce610ec9565b73ffffffffffffffffffffffffffffffffffffffff16610bec6116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c5857600c60009054906101000a900460ff1615610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906137f2565b60405180910390fd5b5b60005b8151811015610c9a57610c87828281518110610c7a57610c79613e74565b5b6020026020010151611d7f565b8080610c9290613d3e565b915050610c5b565b5050565b600c60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613872565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613852565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610e2883610d63565b905060008167ffffffffffffffff811115610e4657610e45613ea3565b5b604051908082528060200260200182016040528015610e745781602001602082028036833780820191505090505b50905060005b82811015610ebe57610e8c85826109dd565b828281518110610e9f57610e9e613e74565b5b6020026020010181815250508080610eb690613d3e565b915050610e7a565b508092505050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060028054610f6c90613cdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890613cdb565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b5050505050905090565b6000801b81565b610ffe6116ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906137d2565b60405180910390fd5b80600660006110796116ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111266116ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116b91906136ba565b60405180910390a35050565b6000801b61118c816111876116ba565b6116c2565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6111e26111dc6116ba565b83611884565b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613932565b60405180910390fd5b61122d84848484611f26565b50505050565b606061123e8261175f565b61127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906138f2565b60405180910390fd5b6000611287611f82565b90508061129384612014565b6040516020016112a49291906135b1565b604051602081830303815290604052915050919050565b6112c482610995565b6112d5816112d06116ba565b6116c2565b6112df8383611c9e565b505050565b60006112ef8261175f565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000600283600261139d9190613b63565b6113a79190613adc565b67ffffffffffffffff8111156113c0576113bf613ea3565b5b6040519080825280601f01601f1916602001820160405280156113f25781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061142a57611429613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061148e5761148d613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114ce9190613b63565b6114d89190613adc565b90505b6001811115611578577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061151a57611519613e74565b5b1a60f81b82828151811061153157611530613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061157190613cb1565b90506114db565b50600084146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613712565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611639575061163882612175565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116b357506116b282612257565b5b9050919050565b600033905090565b6116cc8282610ef3565b61175b576116f18173ffffffffffffffffffffffffffffffffffffffff16601461138a565b6116ff8360001c602061138a565b6040516020016117109291906135f7565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175291906136f0565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183e83610cb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061188f8261175f565b6118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613812565b60405180910390fd5b60006118d983610cb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061194857508373ffffffffffffffffffffffffffffffffffffffff1661193084610731565b73ffffffffffffffffffffffffffffffffffffffff16145b80611959575061195881856112f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198282610cb1565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf906138d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f906137b2565b60405180910390fd5b611a538383836122c1565b611a5e6000826117cb565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae9190613bbd565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b059190613adc565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611bc88282610ef3565b611c9a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c3f6116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611ca88282610ef3565b15611d7b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d206116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d876116ba565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611df89190613992565b60206040518083038186803b158015611e1057600080fd5b505afa158015611e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e489190612db2565b73ffffffffffffffffffffffffffffffffffffffff1614611e6882612014565b604051602001611e7891906135d5565b60405160208183030381529060405290611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf91906136f0565b60405180910390fd5b50611ed2816112e4565b15611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990613732565b60405180910390fd5b611f23611f1d6116ba565b826123d5565b50565b611f31848484611962565b611f3d848484846123f3565b611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390613772565b60405180910390fd5b50505050565b6060600b8054611f9190613cdb565b80601f0160208091040260200160405190810160405280929190818152602001828054611fbd90613cdb565b801561200a5780601f10611fdf5761010080835404028352916020019161200a565b820191906000526020600020905b815481529060010190602001808311611fed57829003601f168201915b5050505050905090565b6060600082141561205c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612170565b600082905060005b6000821461208e57808061207790613d3e565b915050600a826120879190613b32565b9150612064565b60008167ffffffffffffffff8111156120aa576120a9613ea3565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090505b60008514612169576001826120f59190613bbd565b9150600a856121049190613d87565b60306121109190613adc565b60f81b81838151811061212657612125613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121629190613b32565b94506120e0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061224057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612250575061224f82611640565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122cc83838361258a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561230f5761230a8161258f565b61234e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461234d5761234c83826125d8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123915761238c81612745565b6123d0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123cf576123ce8282612816565b5b5b505050565b6123ef828260405180602001604052806000815250612895565b5050565b60006124148473ffffffffffffffffffffffffffffffffffffffff166128f0565b1561257d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243d6116ba565b8786866040518563ffffffff1660e01b815260040161245f949392919061364c565b602060405180830381600087803b15801561247957600080fd5b505af19250505080156124aa57506040513d601f19601f820116820180604052508101906124a79190613085565b60015b61252d573d80600081146124da576040519150601f19603f3d011682016040523d82523d6000602084013e6124df565b606091505b50600081511415612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613772565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612582565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125e584610d63565b6125ef9190613bbd565b90506000600860008481526020019081526020016000205490508181146126d4576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506127599190613bbd565b90506000600a600084815260200190815260200160002054905060006009838154811061278957612788613e74565b5b9060005260206000200154905080600983815481106127ab576127aa613e74565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806127fa576127f9613e45565b5b6001900381819060005260206000200160009055905550505050565b600061282183610d63565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b61289f8383612903565b6128ac60008484846123f3565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613772565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613892565b60405180910390fd5b61297c8161175f565b156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390613792565b60405180910390fd5b6129c8600083836122c1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a189190613adc565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612add90613cdb565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b57565b5090565b5b80821115612b70576000816000905550600101612b58565b5090565b6000612b87612b82846139d2565b6139ad565b90508083825260208201905082856020860282011115612baa57612ba9613ed7565b5b60005b85811015612bda5781612bc08882612d70565b845260208401935060208301925050600181019050612bad565b5050509392505050565b6000612bf7612bf2846139fe565b6139ad565b905082815260208101848484011115612c1357612c12613edc565b5b612c1e848285613c6f565b509392505050565b6000612c39612c3484613a2f565b6139ad565b905082815260208101848484011115612c5557612c54613edc565b5b612c60848285613c6f565b509392505050565b600081359050612c77816144bf565b92915050565b600081519050612c8c816144bf565b92915050565b600082601f830112612ca757612ca6613ed2565b5b8135612cb7848260208601612b74565b91505092915050565b600081359050612ccf816144d6565b92915050565b600081359050612ce4816144ed565b92915050565b600081359050612cf981614504565b92915050565b600081519050612d0e81614504565b92915050565b600082601f830112612d2957612d28613ed2565b5b8135612d39848260208601612be4565b91505092915050565b600082601f830112612d5757612d56613ed2565b5b8135612d67848260208601612c26565b91505092915050565b600081359050612d7f8161451b565b92915050565b600060208284031215612d9b57612d9a613ee6565b5b6000612da984828501612c68565b91505092915050565b600060208284031215612dc857612dc7613ee6565b5b6000612dd684828501612c7d565b91505092915050565b60008060408385031215612df657612df5613ee6565b5b6000612e0485828601612c68565b9250506020612e1585828601612c68565b9150509250929050565b600080600060608486031215612e3857612e37613ee6565b5b6000612e4686828701612c68565b9350506020612e5786828701612c68565b9250506040612e6886828701612d70565b9150509250925092565b60008060008060808587031215612e8c57612e8b613ee6565b5b6000612e9a87828801612c68565b9450506020612eab87828801612c68565b9350506040612ebc87828801612d70565b925050606085013567ffffffffffffffff811115612edd57612edc613ee1565b5b612ee987828801612d14565b91505092959194509250565b60008060408385031215612f0c57612f0b613ee6565b5b6000612f1a85828601612c68565b9250506020612f2b85828601612cc0565b9150509250929050565b60008060408385031215612f4c57612f4b613ee6565b5b6000612f5a85828601612c68565b9250506020612f6b85828601612d70565b9150509250929050565b600060208284031215612f8b57612f8a613ee6565b5b600082013567ffffffffffffffff811115612fa957612fa8613ee1565b5b612fb584828501612c92565b91505092915050565b600060208284031215612fd457612fd3613ee6565b5b6000612fe284828501612cc0565b91505092915050565b60006020828403121561300157613000613ee6565b5b600061300f84828501612cd5565b91505092915050565b6000806040838503121561302f5761302e613ee6565b5b600061303d85828601612cd5565b925050602061304e85828601612c68565b9150509250929050565b60006020828403121561306e5761306d613ee6565b5b600061307c84828501612cea565b91505092915050565b60006020828403121561309b5761309a613ee6565b5b60006130a984828501612cff565b91505092915050565b6000602082840312156130c8576130c7613ee6565b5b600082013567ffffffffffffffff8111156130e6576130e5613ee1565b5b6130f284828501612d42565b91505092915050565b60006020828403121561311157613110613ee6565b5b600061311f84828501612d70565b91505092915050565b60006131348383613593565b60208301905092915050565b61314981613bf1565b82525050565b600061315a82613a70565b6131648185613a9e565b935061316f83613a60565b8060005b838110156131a05781516131878882613128565b975061319283613a91565b925050600181019050613173565b5085935050505092915050565b6131b681613c03565b82525050565b6131c581613c0f565b82525050565b60006131d682613a7b565b6131e08185613aaf565b93506131f0818560208601613c7e565b6131f981613eeb565b840191505092915050565b600061320f82613a86565b6132198185613ac0565b9350613229818560208601613c7e565b61323281613eeb565b840191505092915050565b600061324882613a86565b6132528185613ad1565b9350613262818560208601613c7e565b80840191505092915050565b600061327b602083613ac0565b915061328682613efc565b602082019050919050565b600061329e601083613ac0565b91506132a982613f25565b602082019050919050565b60006132c1602b83613ac0565b91506132cc82613f4e565b604082019050919050565b60006132e4603283613ac0565b91506132ef82613f9d565b604082019050919050565b6000613307601c83613ac0565b915061331282613fec565b602082019050919050565b600061332a602483613ac0565b915061333582614015565b604082019050919050565b600061334d601983613ac0565b915061335882614064565b602082019050919050565b6000613370600583613ac0565b915061337b8261408d565b602082019050919050565b6000613393602c83613ac0565b915061339e826140b6565b604082019050919050565b60006133b6603883613ac0565b91506133c182614105565b604082019050919050565b60006133d9602a83613ac0565b91506133e482614154565b604082019050919050565b60006133fc602983613ac0565b9150613407826141a3565b604082019050919050565b600061341f601c83613ad1565b915061342a826141f2565b601c82019050919050565b6000613442602083613ac0565b915061344d8261421b565b602082019050919050565b6000613465602c83613ac0565b915061347082614244565b604082019050919050565b6000613488602983613ac0565b915061349382614293565b604082019050919050565b60006134ab602f83613ac0565b91506134b6826142e2565b604082019050919050565b60006134ce602183613ac0565b91506134d982614331565b604082019050919050565b60006134f1603183613ac0565b91506134fc82614380565b604082019050919050565b6000613514602c83613ac0565b915061351f826143cf565b604082019050919050565b6000613537601783613ad1565b91506135428261441e565b601782019050919050565b600061355a601183613ad1565b915061356582614447565b601182019050919050565b600061357d602f83613ac0565b915061358882614470565b604082019050919050565b61359c81613c65565b82525050565b6135ab81613c65565b82525050565b60006135bd828561323d565b91506135c9828461323d565b91508190509392505050565b60006135e082613412565b91506135ec828461323d565b915081905092915050565b60006136028261352a565b915061360e828561323d565b91506136198261354d565b9150613625828461323d565b91508190509392505050565b60006020820190506136466000830184613140565b92915050565b60006080820190506136616000830187613140565b61366e6020830186613140565b61367b60408301856135a2565b818103606083015261368d81846131cb565b905095945050505050565b600060208201905081810360008301526136b2818461314f565b905092915050565b60006020820190506136cf60008301846131ad565b92915050565b60006020820190506136ea60008301846131bc565b92915050565b6000602082019050818103600083015261370a8184613204565b905092915050565b6000602082019050818103600083015261372b8161326e565b9050919050565b6000602082019050818103600083015261374b81613291565b9050919050565b6000602082019050818103600083015261376b816132b4565b9050919050565b6000602082019050818103600083015261378b816132d7565b9050919050565b600060208201905081810360008301526137ab816132fa565b9050919050565b600060208201905081810360008301526137cb8161331d565b9050919050565b600060208201905081810360008301526137eb81613340565b9050919050565b6000602082019050818103600083015261380b81613363565b9050919050565b6000602082019050818103600083015261382b81613386565b9050919050565b6000602082019050818103600083015261384b816133a9565b9050919050565b6000602082019050818103600083015261386b816133cc565b9050919050565b6000602082019050818103600083015261388b816133ef565b9050919050565b600060208201905081810360008301526138ab81613435565b9050919050565b600060208201905081810360008301526138cb81613458565b9050919050565b600060208201905081810360008301526138eb8161347b565b9050919050565b6000602082019050818103600083015261390b8161349e565b9050919050565b6000602082019050818103600083015261392b816134c1565b9050919050565b6000602082019050818103600083015261394b816134e4565b9050919050565b6000602082019050818103600083015261396b81613507565b9050919050565b6000602082019050818103600083015261398b81613570565b9050919050565b60006020820190506139a760008301846135a2565b92915050565b60006139b76139c8565b90506139c38282613d0d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ed576139ec613ea3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a1957613a18613ea3565b5b613a2282613eeb565b9050602081019050919050565b600067ffffffffffffffff821115613a4a57613a49613ea3565b5b613a5382613eeb565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ae782613c65565b9150613af283613c65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b2757613b26613db8565b5b828201905092915050565b6000613b3d82613c65565b9150613b4883613c65565b925082613b5857613b57613de7565b5b828204905092915050565b6000613b6e82613c65565b9150613b7983613c65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bb257613bb1613db8565b5b828202905092915050565b6000613bc882613c65565b9150613bd383613c65565b925082821015613be657613be5613db8565b5b828203905092915050565b6000613bfc82613c45565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c9c578082015181840152602081019050613c81565b83811115613cab576000848401525b50505050565b6000613cbc82613c65565b91506000821415613cd057613ccf613db8565b5b600182039050919050565b60006002820490506001821680613cf357607f821691505b60208210811415613d0757613d06613e16565b5b50919050565b613d1682613eeb565b810181811067ffffffffffffffff82111715613d3557613d34613ea3565b5b80604052505050565b6000613d4982613c65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7c57613d7b613db8565b5b600182019050919050565b6000613d9282613c65565b9150613d9d83613c65565b925082613dad57613dac613de7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416c726561647920636c61696d65642100000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f662044422000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6144c881613bf1565b81146144d357600080fd5b50565b6144df81613c03565b81146144ea57600080fd5b50565b6144f681613c0f565b811461450157600080fd5b50565b61450d81613c19565b811461451857600080fd5b50565b61452481613c65565b811461452f57600080fd5b5056fea26469706673582212207b7a9dc26e55bc7d3f9c8e13c27190cca9e996839a314ffde105dd4624fe003064736f6c634300080700330000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22000000000000000000000000400e2073b4ac13d6f11c15697df7fc609db938090000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f646565626965732f77696e6b5f6d657461646174612f0000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063590524531161010f578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd1461059e578063d547741f146105ce578063dbe7e3bd146105ea578063e985e9c51461061a576101e5565b8063a217fddf1461052c578063a22cb4651461054a578063a8801a3614610566578063b88d4fde14610582576101e5565b80638462151c116100de5780638462151c146104905780638da5cb5b146104c057806391d14854146104de57806395d89b411461050e576101e5565b806359052453146103f65780635c975abb146104125780636352211e1461043057806370a0823114610460576101e5565b806323b872dd1161018757806336568abe1161015657806336568abe1461037257806342842e0e1461038e5780634f6ccce7146103aa57806355f804b3146103da576101e5565b806323b872dd146102da578063248a9ca3146102f65780632f2ff15d146103265780632f745c5914610342576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b31461028457806313af4035146102a057806318160ddd146102bc576101e5565b806301ffc9a7146101ea57806302329a291461021a57806306fdde0314610236575b600080fd5b61020460048036038101906101ff9190613058565b61064a565b60405161021191906136ba565b60405180910390f35b610234600480360381019061022f9190612fbe565b61066c565b005b61023e61069f565b60405161024b91906136f0565b60405180910390f35b61026e600480360381019061026991906130fb565b610731565b60405161027b9190613631565b60405180910390f35b61029e60048036038101906102999190612f35565b6107b6565b005b6102ba60048036038101906102b59190612d85565b6108ce565b005b6102c4610928565b6040516102d19190613992565b60405180910390f35b6102f460048036038101906102ef9190612e1f565b610935565b005b610310600480360381019061030b9190612feb565b610995565b60405161031d91906136d5565b60405180910390f35b610340600480360381019061033b9190613018565b6109b4565b005b61035c60048036038101906103579190612f35565b6109dd565b6040516103699190613992565b60405180910390f35b61038c60048036038101906103879190613018565b610a82565b005b6103a860048036038101906103a39190612e1f565b610b05565b005b6103c460048036038101906103bf91906130fb565b610b25565b6040516103d19190613992565b60405180910390f35b6103f460048036038101906103ef91906130b2565b610b96565b005b610410600480360381019061040b9190612f75565b610bc6565b005b61041a610c9e565b60405161042791906136ba565b60405180910390f35b61044a600480360381019061044591906130fb565b610cb1565b6040516104579190613631565b60405180910390f35b61047a60048036038101906104759190612d85565b610d63565b6040516104879190613992565b60405180910390f35b6104aa60048036038101906104a59190612d85565b610e1b565b6040516104b79190613698565b60405180910390f35b6104c8610ec9565b6040516104d59190613631565b60405180910390f35b6104f860048036038101906104f39190613018565b610ef3565b60405161050591906136ba565b60405180910390f35b610516610f5d565b60405161052391906136f0565b60405180910390f35b610534610fef565b60405161054191906136d5565b60405180910390f35b610564600480360381019061055f9190612ef5565b610ff6565b005b610580600480360381019061057b9190612d85565b611177565b005b61059c60048036038101906105979190612e72565b6111d1565b005b6105b860048036038101906105b391906130fb565b611233565b6040516105c591906136f0565b60405180910390f35b6105e860048036038101906105e39190613018565b6112bb565b005b61060460048036038101906105ff91906130fb565b6112e4565b60405161061191906136ba565b60405180910390f35b610634600480360381019061062f9190612ddf565b6112f6565b60405161064191906136ba565b60405180910390f35b6000610655826115c6565b80610665575061066482611640565b5b9050919050565b6000801b6106818161067c6116ba565b6116c2565b81600c60006101000a81548160ff0219169083151502179055505050565b6060600180546106ae90613cdb565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90613cdb565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073c8261175f565b61077b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610772906138b2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c182610cb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990613912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108516116ba565b73ffffffffffffffffffffffffffffffffffffffff161480610880575061087f8161087a6116ba565b6112f6565b5b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690613832565b60405180910390fd5b6108c983836117cb565b505050565b6000801b6108e3816108de6116ba565b6116c2565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b6109466109406116ba565b82611884565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90613932565b60405180910390fd5b610990838383611962565b505050565b6000806000838152602001908152602001600020600101549050919050565b6109bd82610995565b6109ce816109c96116ba565b6116c2565b6109d88383611bbe565b505050565b60006109e883610d63565b8210610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613752565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a8a6116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613972565b60405180910390fd5b610b018282611c9e565b5050565b610b20838383604051806020016040528060008152506111d1565b505050565b6000610b2f610928565b8210610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613952565b60405180910390fd5b60098281548110610b8457610b83613e74565b5b90600052602060002001549050919050565b6000801b610bab81610ba66116ba565b6116c2565b81600b9080519060200190610bc1929190612ad1565b505050565b610bce610ec9565b73ffffffffffffffffffffffffffffffffffffffff16610bec6116ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c5857600c60009054906101000a900460ff1615610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906137f2565b60405180910390fd5b5b60005b8151811015610c9a57610c87828281518110610c7a57610c79613e74565b5b6020026020010151611d7f565b8080610c9290613d3e565b915050610c5b565b5050565b600c60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613872565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613852565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610e2883610d63565b905060008167ffffffffffffffff811115610e4657610e45613ea3565b5b604051908082528060200260200182016040528015610e745781602001602082028036833780820191505090505b50905060005b82811015610ebe57610e8c85826109dd565b828281518110610e9f57610e9e613e74565b5b6020026020010181815250508080610eb690613d3e565b915050610e7a565b508092505050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060028054610f6c90613cdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890613cdb565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b5050505050905090565b6000801b81565b610ffe6116ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906137d2565b60405180910390fd5b80600660006110796116ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111266116ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116b91906136ba565b60405180910390a35050565b6000801b61118c816111876116ba565b6116c2565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6111e26111dc6116ba565b83611884565b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613932565b60405180910390fd5b61122d84848484611f26565b50505050565b606061123e8261175f565b61127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906138f2565b60405180910390fd5b6000611287611f82565b90508061129384612014565b6040516020016112a49291906135b1565b604051602081830303815290604052915050919050565b6112c482610995565b6112d5816112d06116ba565b6116c2565b6112df8383611c9e565b505050565b60006112ef8261175f565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000600283600261139d9190613b63565b6113a79190613adc565b67ffffffffffffffff8111156113c0576113bf613ea3565b5b6040519080825280601f01601f1916602001820160405280156113f25781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061142a57611429613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061148e5761148d613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114ce9190613b63565b6114d89190613adc565b90505b6001811115611578577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061151a57611519613e74565b5b1a60f81b82828151811061153157611530613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061157190613cb1565b90506114db565b50600084146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613712565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611639575061163882612175565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116b357506116b282612257565b5b9050919050565b600033905090565b6116cc8282610ef3565b61175b576116f18173ffffffffffffffffffffffffffffffffffffffff16601461138a565b6116ff8360001c602061138a565b6040516020016117109291906135f7565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175291906136f0565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183e83610cb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061188f8261175f565b6118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613812565b60405180910390fd5b60006118d983610cb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061194857508373ffffffffffffffffffffffffffffffffffffffff1661193084610731565b73ffffffffffffffffffffffffffffffffffffffff16145b80611959575061195881856112f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198282610cb1565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf906138d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f906137b2565b60405180910390fd5b611a538383836122c1565b611a5e6000826117cb565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae9190613bbd565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b059190613adc565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611bc88282610ef3565b611c9a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c3f6116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611ca88282610ef3565b15611d7b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d206116ba565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d876116ba565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611df89190613992565b60206040518083038186803b158015611e1057600080fd5b505afa158015611e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e489190612db2565b73ffffffffffffffffffffffffffffffffffffffff1614611e6882612014565b604051602001611e7891906135d5565b60405160208183030381529060405290611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf91906136f0565b60405180910390fd5b50611ed2816112e4565b15611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990613732565b60405180910390fd5b611f23611f1d6116ba565b826123d5565b50565b611f31848484611962565b611f3d848484846123f3565b611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390613772565b60405180910390fd5b50505050565b6060600b8054611f9190613cdb565b80601f0160208091040260200160405190810160405280929190818152602001828054611fbd90613cdb565b801561200a5780601f10611fdf5761010080835404028352916020019161200a565b820191906000526020600020905b815481529060010190602001808311611fed57829003601f168201915b5050505050905090565b6060600082141561205c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612170565b600082905060005b6000821461208e57808061207790613d3e565b915050600a826120879190613b32565b9150612064565b60008167ffffffffffffffff8111156120aa576120a9613ea3565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090505b60008514612169576001826120f59190613bbd565b9150600a856121049190613d87565b60306121109190613adc565b60f81b81838151811061212657612125613e74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121629190613b32565b94506120e0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061224057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612250575061224f82611640565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122cc83838361258a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561230f5761230a8161258f565b61234e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461234d5761234c83826125d8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123915761238c81612745565b6123d0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123cf576123ce8282612816565b5b5b505050565b6123ef828260405180602001604052806000815250612895565b5050565b60006124148473ffffffffffffffffffffffffffffffffffffffff166128f0565b1561257d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243d6116ba565b8786866040518563ffffffff1660e01b815260040161245f949392919061364c565b602060405180830381600087803b15801561247957600080fd5b505af19250505080156124aa57506040513d601f19601f820116820180604052508101906124a79190613085565b60015b61252d573d80600081146124da576040519150601f19603f3d011682016040523d82523d6000602084013e6124df565b606091505b50600081511415612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613772565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612582565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125e584610d63565b6125ef9190613bbd565b90506000600860008481526020019081526020016000205490508181146126d4576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506127599190613bbd565b90506000600a600084815260200190815260200160002054905060006009838154811061278957612788613e74565b5b9060005260206000200154905080600983815481106127ab576127aa613e74565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806127fa576127f9613e45565b5b6001900381819060005260206000200160009055905550505050565b600061282183610d63565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b61289f8383612903565b6128ac60008484846123f3565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613772565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613892565b60405180910390fd5b61297c8161175f565b156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390613792565b60405180910390fd5b6129c8600083836122c1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a189190613adc565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612add90613cdb565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b57565b5090565b5b80821115612b70576000816000905550600101612b58565b5090565b6000612b87612b82846139d2565b6139ad565b90508083825260208201905082856020860282011115612baa57612ba9613ed7565b5b60005b85811015612bda5781612bc08882612d70565b845260208401935060208301925050600181019050612bad565b5050509392505050565b6000612bf7612bf2846139fe565b6139ad565b905082815260208101848484011115612c1357612c12613edc565b5b612c1e848285613c6f565b509392505050565b6000612c39612c3484613a2f565b6139ad565b905082815260208101848484011115612c5557612c54613edc565b5b612c60848285613c6f565b509392505050565b600081359050612c77816144bf565b92915050565b600081519050612c8c816144bf565b92915050565b600082601f830112612ca757612ca6613ed2565b5b8135612cb7848260208601612b74565b91505092915050565b600081359050612ccf816144d6565b92915050565b600081359050612ce4816144ed565b92915050565b600081359050612cf981614504565b92915050565b600081519050612d0e81614504565b92915050565b600082601f830112612d2957612d28613ed2565b5b8135612d39848260208601612be4565b91505092915050565b600082601f830112612d5757612d56613ed2565b5b8135612d67848260208601612c26565b91505092915050565b600081359050612d7f8161451b565b92915050565b600060208284031215612d9b57612d9a613ee6565b5b6000612da984828501612c68565b91505092915050565b600060208284031215612dc857612dc7613ee6565b5b6000612dd684828501612c7d565b91505092915050565b60008060408385031215612df657612df5613ee6565b5b6000612e0485828601612c68565b9250506020612e1585828601612c68565b9150509250929050565b600080600060608486031215612e3857612e37613ee6565b5b6000612e4686828701612c68565b9350506020612e5786828701612c68565b9250506040612e6886828701612d70565b9150509250925092565b60008060008060808587031215612e8c57612e8b613ee6565b5b6000612e9a87828801612c68565b9450506020612eab87828801612c68565b9350506040612ebc87828801612d70565b925050606085013567ffffffffffffffff811115612edd57612edc613ee1565b5b612ee987828801612d14565b91505092959194509250565b60008060408385031215612f0c57612f0b613ee6565b5b6000612f1a85828601612c68565b9250506020612f2b85828601612cc0565b9150509250929050565b60008060408385031215612f4c57612f4b613ee6565b5b6000612f5a85828601612c68565b9250506020612f6b85828601612d70565b9150509250929050565b600060208284031215612f8b57612f8a613ee6565b5b600082013567ffffffffffffffff811115612fa957612fa8613ee1565b5b612fb584828501612c92565b91505092915050565b600060208284031215612fd457612fd3613ee6565b5b6000612fe284828501612cc0565b91505092915050565b60006020828403121561300157613000613ee6565b5b600061300f84828501612cd5565b91505092915050565b6000806040838503121561302f5761302e613ee6565b5b600061303d85828601612cd5565b925050602061304e85828601612c68565b9150509250929050565b60006020828403121561306e5761306d613ee6565b5b600061307c84828501612cea565b91505092915050565b60006020828403121561309b5761309a613ee6565b5b60006130a984828501612cff565b91505092915050565b6000602082840312156130c8576130c7613ee6565b5b600082013567ffffffffffffffff8111156130e6576130e5613ee1565b5b6130f284828501612d42565b91505092915050565b60006020828403121561311157613110613ee6565b5b600061311f84828501612d70565b91505092915050565b60006131348383613593565b60208301905092915050565b61314981613bf1565b82525050565b600061315a82613a70565b6131648185613a9e565b935061316f83613a60565b8060005b838110156131a05781516131878882613128565b975061319283613a91565b925050600181019050613173565b5085935050505092915050565b6131b681613c03565b82525050565b6131c581613c0f565b82525050565b60006131d682613a7b565b6131e08185613aaf565b93506131f0818560208601613c7e565b6131f981613eeb565b840191505092915050565b600061320f82613a86565b6132198185613ac0565b9350613229818560208601613c7e565b61323281613eeb565b840191505092915050565b600061324882613a86565b6132528185613ad1565b9350613262818560208601613c7e565b80840191505092915050565b600061327b602083613ac0565b915061328682613efc565b602082019050919050565b600061329e601083613ac0565b91506132a982613f25565b602082019050919050565b60006132c1602b83613ac0565b91506132cc82613f4e565b604082019050919050565b60006132e4603283613ac0565b91506132ef82613f9d565b604082019050919050565b6000613307601c83613ac0565b915061331282613fec565b602082019050919050565b600061332a602483613ac0565b915061333582614015565b604082019050919050565b600061334d601983613ac0565b915061335882614064565b602082019050919050565b6000613370600583613ac0565b915061337b8261408d565b602082019050919050565b6000613393602c83613ac0565b915061339e826140b6565b604082019050919050565b60006133b6603883613ac0565b91506133c182614105565b604082019050919050565b60006133d9602a83613ac0565b91506133e482614154565b604082019050919050565b60006133fc602983613ac0565b9150613407826141a3565b604082019050919050565b600061341f601c83613ad1565b915061342a826141f2565b601c82019050919050565b6000613442602083613ac0565b915061344d8261421b565b602082019050919050565b6000613465602c83613ac0565b915061347082614244565b604082019050919050565b6000613488602983613ac0565b915061349382614293565b604082019050919050565b60006134ab602f83613ac0565b91506134b6826142e2565b604082019050919050565b60006134ce602183613ac0565b91506134d982614331565b604082019050919050565b60006134f1603183613ac0565b91506134fc82614380565b604082019050919050565b6000613514602c83613ac0565b915061351f826143cf565b604082019050919050565b6000613537601783613ad1565b91506135428261441e565b601782019050919050565b600061355a601183613ad1565b915061356582614447565b601182019050919050565b600061357d602f83613ac0565b915061358882614470565b604082019050919050565b61359c81613c65565b82525050565b6135ab81613c65565b82525050565b60006135bd828561323d565b91506135c9828461323d565b91508190509392505050565b60006135e082613412565b91506135ec828461323d565b915081905092915050565b60006136028261352a565b915061360e828561323d565b91506136198261354d565b9150613625828461323d565b91508190509392505050565b60006020820190506136466000830184613140565b92915050565b60006080820190506136616000830187613140565b61366e6020830186613140565b61367b60408301856135a2565b818103606083015261368d81846131cb565b905095945050505050565b600060208201905081810360008301526136b2818461314f565b905092915050565b60006020820190506136cf60008301846131ad565b92915050565b60006020820190506136ea60008301846131bc565b92915050565b6000602082019050818103600083015261370a8184613204565b905092915050565b6000602082019050818103600083015261372b8161326e565b9050919050565b6000602082019050818103600083015261374b81613291565b9050919050565b6000602082019050818103600083015261376b816132b4565b9050919050565b6000602082019050818103600083015261378b816132d7565b9050919050565b600060208201905081810360008301526137ab816132fa565b9050919050565b600060208201905081810360008301526137cb8161331d565b9050919050565b600060208201905081810360008301526137eb81613340565b9050919050565b6000602082019050818103600083015261380b81613363565b9050919050565b6000602082019050818103600083015261382b81613386565b9050919050565b6000602082019050818103600083015261384b816133a9565b9050919050565b6000602082019050818103600083015261386b816133cc565b9050919050565b6000602082019050818103600083015261388b816133ef565b9050919050565b600060208201905081810360008301526138ab81613435565b9050919050565b600060208201905081810360008301526138cb81613458565b9050919050565b600060208201905081810360008301526138eb8161347b565b9050919050565b6000602082019050818103600083015261390b8161349e565b9050919050565b6000602082019050818103600083015261392b816134c1565b9050919050565b6000602082019050818103600083015261394b816134e4565b9050919050565b6000602082019050818103600083015261396b81613507565b9050919050565b6000602082019050818103600083015261398b81613570565b9050919050565b60006020820190506139a760008301846135a2565b92915050565b60006139b76139c8565b90506139c38282613d0d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ed576139ec613ea3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a1957613a18613ea3565b5b613a2282613eeb565b9050602081019050919050565b600067ffffffffffffffff821115613a4a57613a49613ea3565b5b613a5382613eeb565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ae782613c65565b9150613af283613c65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b2757613b26613db8565b5b828201905092915050565b6000613b3d82613c65565b9150613b4883613c65565b925082613b5857613b57613de7565b5b828204905092915050565b6000613b6e82613c65565b9150613b7983613c65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bb257613bb1613db8565b5b828202905092915050565b6000613bc882613c65565b9150613bd383613c65565b925082821015613be657613be5613db8565b5b828203905092915050565b6000613bfc82613c45565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c9c578082015181840152602081019050613c81565b83811115613cab576000848401525b50505050565b6000613cbc82613c65565b91506000821415613cd057613ccf613db8565b5b600182039050919050565b60006002820490506001821680613cf357607f821691505b60208210811415613d0757613d06613e16565b5b50919050565b613d1682613eeb565b810181811067ffffffffffffffff82111715613d3557613d34613ea3565b5b80604052505050565b6000613d4982613c65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7c57613d7b613db8565b5b600182019050919050565b6000613d9282613c65565b9150613d9d83613c65565b925082613dad57613dac613de7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416c726561647920636c61696d65642100000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f662044422000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6144c881613bf1565b81146144d357600080fd5b50565b6144df81613c03565b81146144ea57600080fd5b50565b6144f681613c0f565b811461450157600080fd5b50565b61450d81613c19565b811461451857600080fd5b50565b61452481613c65565b811461452f57600080fd5b5056fea26469706673582212207b7a9dc26e55bc7d3f9c8e13c27190cca9e996839a314ffde105dd4624fe003064736f6c63430008070033

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

0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22000000000000000000000000400e2073b4ac13d6f11c15697df7fc609db938090000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f646565626965732f77696e6b5f6d657461646174612f0000000000000000000000

-----Decoded View---------------
Arg [0] : owner_ (address): 0x4A84079639ECDb4d9653D2a8d70D1f11B4244A22
Arg [1] : deebiesContract_ (address): 0x400E2073B4Ac13D6f11c15697DF7Fc609dB93809
Arg [2] : uri_ (string): https://storage.googleapis.com/deebies/wink_metadata/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22
Arg [1] : 000000000000000000000000400e2073b4ac13d6f11c15697df7fc609db93809
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f64
Arg [5] : 6565626965732f77696e6b5f6d657461646174612f0000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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