ETH Price: $3,362.18 (-1.60%)
Gas: 7 Gwei

Token

Deebies (DEEBIES)
 

Overview

Max Total Supply

3,053 DEEBIES

Holders

1,310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scojo.eth
Balance
1 DEEBIES
0xC29398148b9ACEC3e23F43d26Fa6F57cc0355a6E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Born in the fires of Heck on the planet Interrobang, the mischievous Deebies escaped to the surface from a hole in the ground that cracked open. Some spread to the mysterious Ancient Temple, others to the brightly colored Oopy Doop Forest, and the rest climbed up the dark, poi...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Deebies

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Deebies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;

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

contract Deebies is AccessControl, ERC721Enumerable {
    using Strings for uint256;
    using SafeMath for uint256;

    uint public constant MAX_DEEBIES = 3053;
    uint private constant RESERVED_DEEBIES = 75;

	string private baseTokenURI;
    string private defaultTokenURI;
	bool public paused;
    address private ownerAddress;
    address private devAddress;
    uint private mintedTeamDeebies;
    

    constructor(address owner_, address dev_, string memory uri_) ERC721("Deebies", "DEEBIES")  {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        setOwner(owner_);
        _setupRole(DEFAULT_ADMIN_ROLE, ownerAddress);
        defaultTokenURI = uri_;
        devAddress = dev_;
        paused = true;
    }

    function mintDeebie() public payable {
        if(msg.sender != owner()){
            require(!paused, "Pause");
        }
        require(totalSupply() + 1 <= MAX_DEEBIES, "Sale ended");
        require(msg.value >= price(), "Value below price");

        _safeMint(_msgSender(), totalSupply());
    }

    function mintTeamDeebies(address _to, uint _count) public onlyRole(DEFAULT_ADMIN_ROLE) {
        require(mintedTeamDeebies <= RESERVED_DEEBIES, 'Reserved deebies are minted');

        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }

        mintedTeamDeebies += _count;
    }

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

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


    function price() public pure returns (uint256) {        
        return 100000000000000000; // 0.1 ETH
    }


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

    function setBaseURI(string memory baseURI) public onlyRole(DEFAULT_ADMIN_ROLE) {
        baseTokenURI = baseURI;
    }

    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())) : defaultTokenURI;
    }

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

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

        return result;
    }


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

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

        payable(ownerAddress).transfer(balance - dev_balance);
        payable(devAddress).transfer(dev_balance);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId);
    }
}

File 2 of 14 : 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 3 of 14 : 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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

File 4 of 14 : 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 5 of 14 : 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 6 of 14 : 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 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 14 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 12 of 14 : 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 13 of 14 : 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 14 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"dev_","type":"address"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DEEBIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mintDeebie","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintTeamDeebies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"owner_","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b50604051620056a2380380620056a28339818101604052810190620000379190620008b0565b6040518060400160405280600781526020017f44656562696573000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f44454542494553000000000000000000000000000000000000000000000000008152508160019080519060200190620000bb92919062000777565b508060029080519060200190620000d492919062000777565b505050620000fb6000801b620000ef620001c160201b60201c565b620001c960201b60201c565b6200010c83620001df60201b60201c565b620001436000801b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001c960201b60201c565b80600c90805190602001906200015b92919062000777565b5081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff02191690831515021790555050505062000e1a565b600033905090565b620001db82826200024960201b60201c565b5050565b6000801b6200020481620001f8620001c160201b60201c565b6200033a60201b60201c565b81600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6200025b8282620003fe60201b60201c565b6200033657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002db620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6200034c8282620003fe60201b60201c565b620003fa576200037f8173ffffffffffffffffffffffffffffffffffffffff1660146200046860201b620018311760201c565b6200039a8360001c60206200046860201b620018311760201c565b604051602001620003ad92919062000a0c565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f1919062000a4e565b60405180910390fd5b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026200047d919062000b77565b62000489919062000b1a565b67ffffffffffffffff811115620004c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620004fc5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106200055b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620005e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262000628919062000b77565b62000634919062000b1a565b90505b600181111562000726577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106200069e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110620006dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806200071e9062000c4c565b905062000637565b50600084146200076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007649062000a72565b60405180910390fd5b8091505092915050565b828054620007859062000c7b565b90600052602060002090601f016020900481019282620007a95760008555620007f5565b82601f10620007c457805160ff1916838001178555620007f5565b82800160010185558215620007f5579182015b82811115620007f4578251825591602001919060010190620007d7565b5b50905062000804919062000808565b5090565b5b808211156200082357600081600090555060010162000809565b5090565b60006200083e620008388462000abd565b62000a94565b9050828152602081018484840111156200085757600080fd5b6200086484828562000c16565b509392505050565b6000815190506200087d8162000e00565b92915050565b600082601f8301126200089557600080fd5b8151620008a784826020860162000827565b91505092915050565b600080600060608486031215620008c657600080fd5b6000620008d6868287016200086c565b9350506020620008e9868287016200086c565b925050604084015167ffffffffffffffff8111156200090757600080fd5b620009158682870162000883565b9150509250925092565b60006200092c8262000af3565b62000938818562000afe565b93506200094a81856020860162000c16565b620009558162000d74565b840191505092915050565b60006200096d8262000af3565b62000979818562000b0f565b93506200098b81856020860162000c16565b80840191505092915050565b6000620009a660208362000afe565b9150620009b38262000d85565b602082019050919050565b6000620009cd60178362000b0f565b9150620009da8262000dae565b601782019050919050565b6000620009f460118362000b0f565b915062000a018262000dd7565b601182019050919050565b600062000a1982620009be565b915062000a27828562000960565b915062000a3482620009e5565b915062000a42828462000960565b91508190509392505050565b6000602082019050818103600083015262000a6a81846200091f565b905092915050565b6000602082019050818103600083015262000a8d8162000997565b9050919050565b600062000aa062000ab3565b905062000aae828262000cb1565b919050565b6000604051905090565b600067ffffffffffffffff82111562000adb5762000ada62000d45565b5b62000ae68262000d74565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000b278262000c0c565b915062000b348362000c0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b6c5762000b6b62000ce7565b5b828201905092915050565b600062000b848262000c0c565b915062000b918362000c0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bcd5762000bcc62000ce7565b5b828202905092915050565b600062000be58262000bec565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c3657808201518184015260208101905062000c19565b8381111562000c46576000848401525b50505050565b600062000c598262000c0c565b9150600082141562000c705762000c6f62000ce7565b5b600182039050919050565b6000600282049050600182168062000c9457607f821691505b6020821081141562000cab5762000caa62000d16565b5b50919050565b62000cbc8262000d74565b810181811067ffffffffffffffff8211171562000cde5762000cdd62000d45565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b62000e0b8162000bd8565b811462000e1757600080fd5b50565b6148788062000e2a6000396000f3fe6080604052600436106101ee5760003560e01c80635e1cbfdf1161010d5780639f55e318116100a0578063b88d4fde1161006f578063b88d4fde14610714578063bea003e41461073d578063c87b56dd14610747578063d547741f14610784578063e985e9c5146107ad576101ee565b80639f55e3181461066c578063a035b1fe14610695578063a217fddf146106c0578063a22cb465146106eb576101ee565b8063853828b6116100dc578063853828b6146105cf5780638da5cb5b146105d957806391d148541461060457806395d89b4114610641576101ee565b80635e1cbfdf146104ed5780636352211e1461051857806370a08231146105555780638462151c14610592576101ee565b8063248a9ca31161018557806342842e0e1161015457806342842e0e146104335780634f6ccce71461045c57806355f804b3146104995780635c975abb146104c2576101ee565b8063248a9ca3146103675780632f2ff15d146103a45780632f745c59146103cd57806336568abe1461040a576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313af4035146102ea57806318160ddd1461031357806323b872dd1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133b5565b6107ea565b6040516102279190613a04565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190613327565b61080c565b005b34801561026557600080fd5b5061026e61083f565b60405161027b9190613a3a565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613448565b6108d1565b6040516102b8919061397b565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906132eb565b610956565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613180565b610a6e565b005b34801561031f57600080fd5b50610328610ac8565b6040516103359190613d1c565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906131e5565b610ad5565b005b34801561037357600080fd5b5061038e60048036038101906103899190613350565b610b35565b60405161039b9190613a1f565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190613379565b610b54565b005b3480156103d957600080fd5b506103f460048036038101906103ef91906132eb565b610b7d565b6040516104019190613d1c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613379565b610c22565b005b34801561043f57600080fd5b5061045a600480360381019061045591906131e5565b610ca5565b005b34801561046857600080fd5b50610483600480360381019061047e9190613448565b610cc5565b6040516104909190613d1c565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613407565b610d5c565b005b3480156104ce57600080fd5b506104d7610d8c565b6040516104e49190613a04565b60405180910390f35b3480156104f957600080fd5b50610502610d9f565b60405161050f9190613d1c565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613448565b610da5565b60405161054c919061397b565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190613180565b610e57565b6040516105899190613d1c565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613180565b610f0f565b6040516105c691906139e2565b60405180910390f35b6105d7611009565b005b3480156105e557600080fd5b506105ee611142565b6040516105fb919061397b565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613379565b61116c565b6040516106389190613a04565b60405180910390f35b34801561064d57600080fd5b506106566111d6565b6040516106639190613a3a565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906132eb565b611268565b005b3480156106a157600080fd5b506106aa611311565b6040516106b79190613d1c565b60405180910390f35b3480156106cc57600080fd5b506106d5611321565b6040516106e29190613a1f565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906132af565b611328565b005b34801561072057600080fd5b5061073b60048036038101906107369190613234565b6114a9565b005b61074561150b565b005b34801561075357600080fd5b5061076e60048036038101906107699190613448565b611652565b60405161077b9190613a3a565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613379565b611774565b005b3480156107b957600080fd5b506107d460048036038101906107cf91906131a9565b61179d565b6040516107e19190613a04565b60405180910390f35b60006107f582611b2b565b80610805575061080482611ba5565b5b9050919050565b6000801b6108218161081c611c1f565b611c27565b81600d60006101000a81548160ff0219169083151502179055505050565b60606001805461084e90614039565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90614039565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611cc4565b61091b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091290613bdc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096182610da5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990613c9c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f1611c1f565b73ffffffffffffffffffffffffffffffffffffffff161480610a205750610a1f81610a1a611c1f565b61179d565b5b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5690613b5c565b60405180910390fd5b610a698383611d30565b505050565b6000801b610a8381610a7e611c1f565b611c27565b81600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b610ae6610ae0611c1f565b82611de9565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613cbc565b60405180910390fd5b610b30838383611ec7565b505050565b6000806000838152602001908152602001600020600101549050919050565b610b5d82610b35565b610b6e81610b69611c1f565b611c27565b610b788383612123565b505050565b6000610b8883610e57565b8210610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613a7c565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2a611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90613cfc565b60405180910390fd5b610ca18282612203565b5050565b610cc0838383604051806020016040528060008152506114a9565b505050565b6000610ccf610ac8565b8210610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613cdc565b60405180910390fd5b60098281548110610d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000801b610d7181610d6c611c1f565b611c27565b81600b9080519060200190610d87929190612f8f565b505050565b600d60009054906101000a900460ff1681565b610bed81565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613b9c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b7c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610f1c83610e57565b905060008167ffffffffffffffff811115610f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f8e5781602001602082028036833780820191505090505b50905060005b82811015610ffe57610fa68582610b7d565b828281518110610fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ff69061409c565b915050610f94565b508092505050919050565b6000801b61101e81611019611c1f565b611c27565b6000479050600061105e61104f60606110416064866122e490919063ffffffff16565b6122fa90919063ffffffff16565b8361231090919063ffffffff16565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc82846110a89190613f1b565b9081150290604051600060405180830381858888f193505050501580156110d3573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561113c573d6000803e3d6000fd5b50505050565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600280546111e590614039565b80601f016020809104026020016040519081016040528092919081815260200182805461121190614039565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b5050505050905090565b6000801b61127d81611278611c1f565b611c27565b604b600f5411156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613c3c565b60405180910390fd5b60005b828110156112f2576112df846112da610ac8565b612326565b80806112ea9061409c565b9150506112c6565b5081600f60008282546113059190613e3a565b92505081905550505050565b600067016345785d8a0000905090565b6000801b81565b611330611c1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613afc565b60405180910390fd5b80600660006113ab611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611458611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149d9190613a04565b60405180910390a35050565b6114ba6114b4611c1f565b83611de9565b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613cbc565b60405180910390fd5b61150584848484612344565b50505050565b611513611142565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159657600d60009054906101000a900460ff1615611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613b1c565b60405180910390fd5b5b610bed60016115a3610ac8565b6115ad9190613e3a565b11156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613c7c565b60405180910390fd5b6115f6611311565b341015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613c5c565b60405180910390fd5b611650611643611c1f565b61164b610ac8565b612326565b565b606061165d82611cc4565b61169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613c1c565b60405180910390fd5b60006116a66123a0565b9050600081511161174157600c80546116be90614039565b80601f01602080910402602001604051908101604052809291908181526020018280546116ea90614039565b80156117375780601f1061170c57610100808354040283529160200191611737565b820191906000526020600020905b81548152906001019060200180831161171a57829003601f168201915b505050505061176c565b8061174b84612432565b60405160200161175c92919061391d565b6040516020818303038152906040525b915050919050565b61177d82610b35565b61178e81611789611c1f565b611c27565b6117988383612203565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026118449190613ec1565b61184e9190613e3a565b67ffffffffffffffff81111561188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118bf5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061191d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026119e79190613ec1565b6119f19190613e3a565b90505b6001811115611add577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611a96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611ad69061400f565b90506119f4565b5060008414611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890613a5c565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9e5750611b9d826125df565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c185750611c17826126c1565b5b9050919050565b600033905090565b611c31828261116c565b611cc057611c568173ffffffffffffffffffffffffffffffffffffffff166014611831565b611c648360001c6020611831565b604051602001611c75929190613941565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb79190613a3a565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da383610da5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df482611cc4565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613b3c565b60405180910390fd5b6000611e3e83610da5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e95846108d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebe5750611ebd818561179d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee782610da5565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613bfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613adc565b60405180910390fd5b611fb883838361272b565b611fc3600082611d30565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120139190613f1b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206a9190613e3a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61212d828261116c565b6121ff57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121a4611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61220d828261116c565b156122e057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612285611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081836122f29190613e90565b905092915050565b600081836123089190613ec1565b905092915050565b6000818361231e9190613f1b565b905092915050565b61234082826040518060200160405280600081525061283f565b5050565b61234f848484611ec7565b61235b8484848461289a565b61239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190613a9c565b60405180910390fd5b50505050565b6060600b80546123af90614039565b80601f01602080910402602001604051908101604052809291908181526020018280546123db90614039565b80156124285780601f106123fd57610100808354040283529160200191612428565b820191906000526020600020905b81548152906001019060200180831161240b57829003601f168201915b5050505050905090565b6060600082141561247a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125da565b600082905060005b600082146124ac5780806124959061409c565b915050600a826124a59190613e90565b9150612482565b60008167ffffffffffffffff8111156124ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125205781602001600182028036833780820191505090505b5090505b600085146125d3576001826125399190613f1b565b9150600a8561254891906140e5565b60306125549190613e3a565b60f81b818381518110612590577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cc9190613e90565b9450612524565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126ba57506126b982611ba5565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612736838383612a31565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127795761277481612a36565b6127b8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127b7576127b68382612a7f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576127f681612bec565b61283a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612839576128388282612d2f565b5b5b505050565b6128498383612dae565b612856600084848461289a565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613a9c565b60405180910390fd5b505050565b60006128bb8473ffffffffffffffffffffffffffffffffffffffff16612f7c565b15612a24578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e4611c1f565b8786866040518563ffffffff1660e01b81526004016129069493929190613996565b602060405180830381600087803b15801561292057600080fd5b505af192505050801561295157506040513d601f19601f8201168201806040525081019061294e91906133de565b60015b6129d4573d8060008114612981576040519150601f19603f3d011682016040523d82523d6000602084013e612986565b606091505b506000815114156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390613a9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a29565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a8c84610e57565b612a969190613f1b565b9050600060086000848152602001908152602001600020549050818114612b7b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c009190613f1b565b90506000600a6000848152602001908152602001600020549050600060098381548110612c56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612c9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d3a83610e57565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590613bbc565b60405180910390fd5b612e2781611cc4565b15612e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5e90613abc565b60405180910390fd5b612e736000838361272b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec39190613e3a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f9b90614039565b90600052602060002090601f016020900481019282612fbd5760008555613004565b82601f10612fd657805160ff1916838001178555613004565b82800160010185558215613004579182015b82811115613003578251825591602001919060010190612fe8565b5b5090506130119190613015565b5090565b5b8082111561302e576000816000905550600101613016565b5090565b600061304561304084613d5c565b613d37565b90508281526020810184848401111561305d57600080fd5b613068848285613fcd565b509392505050565b600061308361307e84613d8d565b613d37565b90508281526020810184848401111561309b57600080fd5b6130a6848285613fcd565b509392505050565b6000813590506130bd816147cf565b92915050565b6000813590506130d2816147e6565b92915050565b6000813590506130e7816147fd565b92915050565b6000813590506130fc81614814565b92915050565b60008151905061311181614814565b92915050565b600082601f83011261312857600080fd5b8135613138848260208601613032565b91505092915050565b600082601f83011261315257600080fd5b8135613162848260208601613070565b91505092915050565b60008135905061317a8161482b565b92915050565b60006020828403121561319257600080fd5b60006131a0848285016130ae565b91505092915050565b600080604083850312156131bc57600080fd5b60006131ca858286016130ae565b92505060206131db858286016130ae565b9150509250929050565b6000806000606084860312156131fa57600080fd5b6000613208868287016130ae565b9350506020613219868287016130ae565b925050604061322a8682870161316b565b9150509250925092565b6000806000806080858703121561324a57600080fd5b6000613258878288016130ae565b9450506020613269878288016130ae565b935050604061327a8782880161316b565b925050606085013567ffffffffffffffff81111561329757600080fd5b6132a387828801613117565b91505092959194509250565b600080604083850312156132c257600080fd5b60006132d0858286016130ae565b92505060206132e1858286016130c3565b9150509250929050565b600080604083850312156132fe57600080fd5b600061330c858286016130ae565b925050602061331d8582860161316b565b9150509250929050565b60006020828403121561333957600080fd5b6000613347848285016130c3565b91505092915050565b60006020828403121561336257600080fd5b6000613370848285016130d8565b91505092915050565b6000806040838503121561338c57600080fd5b600061339a858286016130d8565b92505060206133ab858286016130ae565b9150509250929050565b6000602082840312156133c757600080fd5b60006133d5848285016130ed565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613102565b91505092915050565b60006020828403121561341957600080fd5b600082013567ffffffffffffffff81111561343357600080fd5b61343f84828501613141565b91505092915050565b60006020828403121561345a57600080fd5b60006134688482850161316b565b91505092915050565b600061347d83836138ff565b60208301905092915050565b61349281613f4f565b82525050565b60006134a382613dce565b6134ad8185613dfc565b93506134b883613dbe565b8060005b838110156134e95781516134d08882613471565b97506134db83613def565b9250506001810190506134bc565b5085935050505092915050565b6134ff81613f61565b82525050565b61350e81613f6d565b82525050565b600061351f82613dd9565b6135298185613e0d565b9350613539818560208601613fdc565b613542816141d2565b840191505092915050565b600061355882613de4565b6135628185613e1e565b9350613572818560208601613fdc565b61357b816141d2565b840191505092915050565b600061359182613de4565b61359b8185613e2f565b93506135ab818560208601613fdc565b80840191505092915050565b60006135c4602083613e1e565b91506135cf826141e3565b602082019050919050565b60006135e7602b83613e1e565b91506135f28261420c565b604082019050919050565b600061360a603283613e1e565b91506136158261425b565b604082019050919050565b600061362d601c83613e1e565b9150613638826142aa565b602082019050919050565b6000613650602483613e1e565b915061365b826142d3565b604082019050919050565b6000613673601983613e1e565b915061367e82614322565b602082019050919050565b6000613696600583613e1e565b91506136a18261434b565b602082019050919050565b60006136b9602c83613e1e565b91506136c482614374565b604082019050919050565b60006136dc603883613e1e565b91506136e7826143c3565b604082019050919050565b60006136ff602a83613e1e565b915061370a82614412565b604082019050919050565b6000613722602983613e1e565b915061372d82614461565b604082019050919050565b6000613745602083613e1e565b9150613750826144b0565b602082019050919050565b6000613768602c83613e1e565b9150613773826144d9565b604082019050919050565b600061378b602983613e1e565b915061379682614528565b604082019050919050565b60006137ae602f83613e1e565b91506137b982614577565b604082019050919050565b60006137d1601b83613e1e565b91506137dc826145c6565b602082019050919050565b60006137f4601183613e1e565b91506137ff826145ef565b602082019050919050565b6000613817600a83613e1e565b915061382282614618565b602082019050919050565b600061383a602183613e1e565b915061384582614641565b604082019050919050565b600061385d603183613e1e565b915061386882614690565b604082019050919050565b6000613880602c83613e1e565b915061388b826146df565b604082019050919050565b60006138a3601783613e2f565b91506138ae8261472e565b601782019050919050565b60006138c6601183613e2f565b91506138d182614757565b601182019050919050565b60006138e9602f83613e1e565b91506138f482614780565b604082019050919050565b61390881613fc3565b82525050565b61391781613fc3565b82525050565b60006139298285613586565b91506139358284613586565b91508190509392505050565b600061394c82613896565b91506139588285613586565b9150613963826138b9565b915061396f8284613586565b91508190509392505050565b60006020820190506139906000830184613489565b92915050565b60006080820190506139ab6000830187613489565b6139b86020830186613489565b6139c5604083018561390e565b81810360608301526139d78184613514565b905095945050505050565b600060208201905081810360008301526139fc8184613498565b905092915050565b6000602082019050613a1960008301846134f6565b92915050565b6000602082019050613a346000830184613505565b92915050565b60006020820190508181036000830152613a54818461354d565b905092915050565b60006020820190508181036000830152613a75816135b7565b9050919050565b60006020820190508181036000830152613a95816135da565b9050919050565b60006020820190508181036000830152613ab5816135fd565b9050919050565b60006020820190508181036000830152613ad581613620565b9050919050565b60006020820190508181036000830152613af581613643565b9050919050565b60006020820190508181036000830152613b1581613666565b9050919050565b60006020820190508181036000830152613b3581613689565b9050919050565b60006020820190508181036000830152613b55816136ac565b9050919050565b60006020820190508181036000830152613b75816136cf565b9050919050565b60006020820190508181036000830152613b95816136f2565b9050919050565b60006020820190508181036000830152613bb581613715565b9050919050565b60006020820190508181036000830152613bd581613738565b9050919050565b60006020820190508181036000830152613bf58161375b565b9050919050565b60006020820190508181036000830152613c158161377e565b9050919050565b60006020820190508181036000830152613c35816137a1565b9050919050565b60006020820190508181036000830152613c55816137c4565b9050919050565b60006020820190508181036000830152613c75816137e7565b9050919050565b60006020820190508181036000830152613c958161380a565b9050919050565b60006020820190508181036000830152613cb58161382d565b9050919050565b60006020820190508181036000830152613cd581613850565b9050919050565b60006020820190508181036000830152613cf581613873565b9050919050565b60006020820190508181036000830152613d15816138dc565b9050919050565b6000602082019050613d31600083018461390e565b92915050565b6000613d41613d52565b9050613d4d828261406b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7757613d766141a3565b5b613d80826141d2565b9050602081019050919050565b600067ffffffffffffffff821115613da857613da76141a3565b5b613db1826141d2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4582613fc3565b9150613e5083613fc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8557613e84614116565b5b828201905092915050565b6000613e9b82613fc3565b9150613ea683613fc3565b925082613eb657613eb5614145565b5b828204905092915050565b6000613ecc82613fc3565b9150613ed783613fc3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1057613f0f614116565b5b828202905092915050565b6000613f2682613fc3565b9150613f3183613fc3565b925082821015613f4457613f43614116565b5b828203905092915050565b6000613f5a82613fa3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffa578082015181840152602081019050613fdf565b83811115614009576000848401525b50505050565b600061401a82613fc3565b9150600082141561402e5761402d614116565b5b600182039050919050565b6000600282049050600182168061405157607f821691505b6020821081141561406557614064614174565b5b50919050565b614074826141d2565b810181811067ffffffffffffffff82111715614093576140926141a3565b5b80604052505050565b60006140a782613fc3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140da576140d9614116565b5b600182019050919050565b60006140f082613fc3565b91506140fb83613fc3565b92508261410b5761410a614145565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5265736572766564206465656269657320617265206d696e7465640000000000600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6147d881613f4f565b81146147e357600080fd5b50565b6147ef81613f61565b81146147fa57600080fd5b50565b61480681613f6d565b811461481157600080fd5b50565b61481d81613f77565b811461482857600080fd5b50565b61483481613fc3565b811461483f57600080fd5b5056fea26469706673582212209ff34cdfbcb2cc610a16b1e67da1d90181646a35fba7f896b032467ca45ab3d464736f6c634300080300330000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a220000000000000000000000002e40627f39fac9277be724a909ce45a0833a07db0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58617735515739646565326a63463759564a793770417a59655a6d6a4d75767034463951465a397a7850597200000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635e1cbfdf1161010d5780639f55e318116100a0578063b88d4fde1161006f578063b88d4fde14610714578063bea003e41461073d578063c87b56dd14610747578063d547741f14610784578063e985e9c5146107ad576101ee565b80639f55e3181461066c578063a035b1fe14610695578063a217fddf146106c0578063a22cb465146106eb576101ee565b8063853828b6116100dc578063853828b6146105cf5780638da5cb5b146105d957806391d148541461060457806395d89b4114610641576101ee565b80635e1cbfdf146104ed5780636352211e1461051857806370a08231146105555780638462151c14610592576101ee565b8063248a9ca31161018557806342842e0e1161015457806342842e0e146104335780634f6ccce71461045c57806355f804b3146104995780635c975abb146104c2576101ee565b8063248a9ca3146103675780632f2ff15d146103a45780632f745c59146103cd57806336568abe1461040a576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313af4035146102ea57806318160ddd1461031357806323b872dd1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133b5565b6107ea565b6040516102279190613a04565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190613327565b61080c565b005b34801561026557600080fd5b5061026e61083f565b60405161027b9190613a3a565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613448565b6108d1565b6040516102b8919061397b565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906132eb565b610956565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613180565b610a6e565b005b34801561031f57600080fd5b50610328610ac8565b6040516103359190613d1c565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906131e5565b610ad5565b005b34801561037357600080fd5b5061038e60048036038101906103899190613350565b610b35565b60405161039b9190613a1f565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190613379565b610b54565b005b3480156103d957600080fd5b506103f460048036038101906103ef91906132eb565b610b7d565b6040516104019190613d1c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613379565b610c22565b005b34801561043f57600080fd5b5061045a600480360381019061045591906131e5565b610ca5565b005b34801561046857600080fd5b50610483600480360381019061047e9190613448565b610cc5565b6040516104909190613d1c565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613407565b610d5c565b005b3480156104ce57600080fd5b506104d7610d8c565b6040516104e49190613a04565b60405180910390f35b3480156104f957600080fd5b50610502610d9f565b60405161050f9190613d1c565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613448565b610da5565b60405161054c919061397b565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190613180565b610e57565b6040516105899190613d1c565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613180565b610f0f565b6040516105c691906139e2565b60405180910390f35b6105d7611009565b005b3480156105e557600080fd5b506105ee611142565b6040516105fb919061397b565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613379565b61116c565b6040516106389190613a04565b60405180910390f35b34801561064d57600080fd5b506106566111d6565b6040516106639190613a3a565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906132eb565b611268565b005b3480156106a157600080fd5b506106aa611311565b6040516106b79190613d1c565b60405180910390f35b3480156106cc57600080fd5b506106d5611321565b6040516106e29190613a1f565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906132af565b611328565b005b34801561072057600080fd5b5061073b60048036038101906107369190613234565b6114a9565b005b61074561150b565b005b34801561075357600080fd5b5061076e60048036038101906107699190613448565b611652565b60405161077b9190613a3a565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613379565b611774565b005b3480156107b957600080fd5b506107d460048036038101906107cf91906131a9565b61179d565b6040516107e19190613a04565b60405180910390f35b60006107f582611b2b565b80610805575061080482611ba5565b5b9050919050565b6000801b6108218161081c611c1f565b611c27565b81600d60006101000a81548160ff0219169083151502179055505050565b60606001805461084e90614039565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90614039565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611cc4565b61091b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091290613bdc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096182610da5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990613c9c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f1611c1f565b73ffffffffffffffffffffffffffffffffffffffff161480610a205750610a1f81610a1a611c1f565b61179d565b5b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5690613b5c565b60405180910390fd5b610a698383611d30565b505050565b6000801b610a8381610a7e611c1f565b611c27565b81600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b610ae6610ae0611c1f565b82611de9565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613cbc565b60405180910390fd5b610b30838383611ec7565b505050565b6000806000838152602001908152602001600020600101549050919050565b610b5d82610b35565b610b6e81610b69611c1f565b611c27565b610b788383612123565b505050565b6000610b8883610e57565b8210610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613a7c565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2a611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90613cfc565b60405180910390fd5b610ca18282612203565b5050565b610cc0838383604051806020016040528060008152506114a9565b505050565b6000610ccf610ac8565b8210610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613cdc565b60405180910390fd5b60098281548110610d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000801b610d7181610d6c611c1f565b611c27565b81600b9080519060200190610d87929190612f8f565b505050565b600d60009054906101000a900460ff1681565b610bed81565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613b9c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b7c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610f1c83610e57565b905060008167ffffffffffffffff811115610f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f8e5781602001602082028036833780820191505090505b50905060005b82811015610ffe57610fa68582610b7d565b828281518110610fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ff69061409c565b915050610f94565b508092505050919050565b6000801b61101e81611019611c1f565b611c27565b6000479050600061105e61104f60606110416064866122e490919063ffffffff16565b6122fa90919063ffffffff16565b8361231090919063ffffffff16565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc82846110a89190613f1b565b9081150290604051600060405180830381858888f193505050501580156110d3573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561113c573d6000803e3d6000fd5b50505050565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600280546111e590614039565b80601f016020809104026020016040519081016040528092919081815260200182805461121190614039565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b5050505050905090565b6000801b61127d81611278611c1f565b611c27565b604b600f5411156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613c3c565b60405180910390fd5b60005b828110156112f2576112df846112da610ac8565b612326565b80806112ea9061409c565b9150506112c6565b5081600f60008282546113059190613e3a565b92505081905550505050565b600067016345785d8a0000905090565b6000801b81565b611330611c1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613afc565b60405180910390fd5b80600660006113ab611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611458611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149d9190613a04565b60405180910390a35050565b6114ba6114b4611c1f565b83611de9565b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613cbc565b60405180910390fd5b61150584848484612344565b50505050565b611513611142565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159657600d60009054906101000a900460ff1615611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613b1c565b60405180910390fd5b5b610bed60016115a3610ac8565b6115ad9190613e3a565b11156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613c7c565b60405180910390fd5b6115f6611311565b341015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613c5c565b60405180910390fd5b611650611643611c1f565b61164b610ac8565b612326565b565b606061165d82611cc4565b61169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613c1c565b60405180910390fd5b60006116a66123a0565b9050600081511161174157600c80546116be90614039565b80601f01602080910402602001604051908101604052809291908181526020018280546116ea90614039565b80156117375780601f1061170c57610100808354040283529160200191611737565b820191906000526020600020905b81548152906001019060200180831161171a57829003601f168201915b505050505061176c565b8061174b84612432565b60405160200161175c92919061391d565b6040516020818303038152906040525b915050919050565b61177d82610b35565b61178e81611789611c1f565b611c27565b6117988383612203565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026118449190613ec1565b61184e9190613e3a565b67ffffffffffffffff81111561188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118bf5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061191d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026119e79190613ec1565b6119f19190613e3a565b90505b6001811115611add577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611a96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611ad69061400f565b90506119f4565b5060008414611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890613a5c565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9e5750611b9d826125df565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c185750611c17826126c1565b5b9050919050565b600033905090565b611c31828261116c565b611cc057611c568173ffffffffffffffffffffffffffffffffffffffff166014611831565b611c648360001c6020611831565b604051602001611c75929190613941565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb79190613a3a565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da383610da5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df482611cc4565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613b3c565b60405180910390fd5b6000611e3e83610da5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e95846108d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebe5750611ebd818561179d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee782610da5565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613bfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613adc565b60405180910390fd5b611fb883838361272b565b611fc3600082611d30565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120139190613f1b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206a9190613e3a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61212d828261116c565b6121ff57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121a4611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61220d828261116c565b156122e057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612285611c1f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081836122f29190613e90565b905092915050565b600081836123089190613ec1565b905092915050565b6000818361231e9190613f1b565b905092915050565b61234082826040518060200160405280600081525061283f565b5050565b61234f848484611ec7565b61235b8484848461289a565b61239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190613a9c565b60405180910390fd5b50505050565b6060600b80546123af90614039565b80601f01602080910402602001604051908101604052809291908181526020018280546123db90614039565b80156124285780601f106123fd57610100808354040283529160200191612428565b820191906000526020600020905b81548152906001019060200180831161240b57829003601f168201915b5050505050905090565b6060600082141561247a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125da565b600082905060005b600082146124ac5780806124959061409c565b915050600a826124a59190613e90565b9150612482565b60008167ffffffffffffffff8111156124ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125205781602001600182028036833780820191505090505b5090505b600085146125d3576001826125399190613f1b565b9150600a8561254891906140e5565b60306125549190613e3a565b60f81b818381518110612590577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cc9190613e90565b9450612524565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126ba57506126b982611ba5565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612736838383612a31565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127795761277481612a36565b6127b8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127b7576127b68382612a7f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576127f681612bec565b61283a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612839576128388282612d2f565b5b5b505050565b6128498383612dae565b612856600084848461289a565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613a9c565b60405180910390fd5b505050565b60006128bb8473ffffffffffffffffffffffffffffffffffffffff16612f7c565b15612a24578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e4611c1f565b8786866040518563ffffffff1660e01b81526004016129069493929190613996565b602060405180830381600087803b15801561292057600080fd5b505af192505050801561295157506040513d601f19601f8201168201806040525081019061294e91906133de565b60015b6129d4573d8060008114612981576040519150601f19603f3d011682016040523d82523d6000602084013e612986565b606091505b506000815114156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390613a9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a29565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a8c84610e57565b612a969190613f1b565b9050600060086000848152602001908152602001600020549050818114612b7b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c009190613f1b565b90506000600a6000848152602001908152602001600020549050600060098381548110612c56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612c9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d3a83610e57565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590613bbc565b60405180910390fd5b612e2781611cc4565b15612e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5e90613abc565b60405180910390fd5b612e736000838361272b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec39190613e3a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f9b90614039565b90600052602060002090601f016020900481019282612fbd5760008555613004565b82601f10612fd657805160ff1916838001178555613004565b82800160010185558215613004579182015b82811115613003578251825591602001919060010190612fe8565b5b5090506130119190613015565b5090565b5b8082111561302e576000816000905550600101613016565b5090565b600061304561304084613d5c565b613d37565b90508281526020810184848401111561305d57600080fd5b613068848285613fcd565b509392505050565b600061308361307e84613d8d565b613d37565b90508281526020810184848401111561309b57600080fd5b6130a6848285613fcd565b509392505050565b6000813590506130bd816147cf565b92915050565b6000813590506130d2816147e6565b92915050565b6000813590506130e7816147fd565b92915050565b6000813590506130fc81614814565b92915050565b60008151905061311181614814565b92915050565b600082601f83011261312857600080fd5b8135613138848260208601613032565b91505092915050565b600082601f83011261315257600080fd5b8135613162848260208601613070565b91505092915050565b60008135905061317a8161482b565b92915050565b60006020828403121561319257600080fd5b60006131a0848285016130ae565b91505092915050565b600080604083850312156131bc57600080fd5b60006131ca858286016130ae565b92505060206131db858286016130ae565b9150509250929050565b6000806000606084860312156131fa57600080fd5b6000613208868287016130ae565b9350506020613219868287016130ae565b925050604061322a8682870161316b565b9150509250925092565b6000806000806080858703121561324a57600080fd5b6000613258878288016130ae565b9450506020613269878288016130ae565b935050604061327a8782880161316b565b925050606085013567ffffffffffffffff81111561329757600080fd5b6132a387828801613117565b91505092959194509250565b600080604083850312156132c257600080fd5b60006132d0858286016130ae565b92505060206132e1858286016130c3565b9150509250929050565b600080604083850312156132fe57600080fd5b600061330c858286016130ae565b925050602061331d8582860161316b565b9150509250929050565b60006020828403121561333957600080fd5b6000613347848285016130c3565b91505092915050565b60006020828403121561336257600080fd5b6000613370848285016130d8565b91505092915050565b6000806040838503121561338c57600080fd5b600061339a858286016130d8565b92505060206133ab858286016130ae565b9150509250929050565b6000602082840312156133c757600080fd5b60006133d5848285016130ed565b91505092915050565b6000602082840312156133f057600080fd5b60006133fe84828501613102565b91505092915050565b60006020828403121561341957600080fd5b600082013567ffffffffffffffff81111561343357600080fd5b61343f84828501613141565b91505092915050565b60006020828403121561345a57600080fd5b60006134688482850161316b565b91505092915050565b600061347d83836138ff565b60208301905092915050565b61349281613f4f565b82525050565b60006134a382613dce565b6134ad8185613dfc565b93506134b883613dbe565b8060005b838110156134e95781516134d08882613471565b97506134db83613def565b9250506001810190506134bc565b5085935050505092915050565b6134ff81613f61565b82525050565b61350e81613f6d565b82525050565b600061351f82613dd9565b6135298185613e0d565b9350613539818560208601613fdc565b613542816141d2565b840191505092915050565b600061355882613de4565b6135628185613e1e565b9350613572818560208601613fdc565b61357b816141d2565b840191505092915050565b600061359182613de4565b61359b8185613e2f565b93506135ab818560208601613fdc565b80840191505092915050565b60006135c4602083613e1e565b91506135cf826141e3565b602082019050919050565b60006135e7602b83613e1e565b91506135f28261420c565b604082019050919050565b600061360a603283613e1e565b91506136158261425b565b604082019050919050565b600061362d601c83613e1e565b9150613638826142aa565b602082019050919050565b6000613650602483613e1e565b915061365b826142d3565b604082019050919050565b6000613673601983613e1e565b915061367e82614322565b602082019050919050565b6000613696600583613e1e565b91506136a18261434b565b602082019050919050565b60006136b9602c83613e1e565b91506136c482614374565b604082019050919050565b60006136dc603883613e1e565b91506136e7826143c3565b604082019050919050565b60006136ff602a83613e1e565b915061370a82614412565b604082019050919050565b6000613722602983613e1e565b915061372d82614461565b604082019050919050565b6000613745602083613e1e565b9150613750826144b0565b602082019050919050565b6000613768602c83613e1e565b9150613773826144d9565b604082019050919050565b600061378b602983613e1e565b915061379682614528565b604082019050919050565b60006137ae602f83613e1e565b91506137b982614577565b604082019050919050565b60006137d1601b83613e1e565b91506137dc826145c6565b602082019050919050565b60006137f4601183613e1e565b91506137ff826145ef565b602082019050919050565b6000613817600a83613e1e565b915061382282614618565b602082019050919050565b600061383a602183613e1e565b915061384582614641565b604082019050919050565b600061385d603183613e1e565b915061386882614690565b604082019050919050565b6000613880602c83613e1e565b915061388b826146df565b604082019050919050565b60006138a3601783613e2f565b91506138ae8261472e565b601782019050919050565b60006138c6601183613e2f565b91506138d182614757565b601182019050919050565b60006138e9602f83613e1e565b91506138f482614780565b604082019050919050565b61390881613fc3565b82525050565b61391781613fc3565b82525050565b60006139298285613586565b91506139358284613586565b91508190509392505050565b600061394c82613896565b91506139588285613586565b9150613963826138b9565b915061396f8284613586565b91508190509392505050565b60006020820190506139906000830184613489565b92915050565b60006080820190506139ab6000830187613489565b6139b86020830186613489565b6139c5604083018561390e565b81810360608301526139d78184613514565b905095945050505050565b600060208201905081810360008301526139fc8184613498565b905092915050565b6000602082019050613a1960008301846134f6565b92915050565b6000602082019050613a346000830184613505565b92915050565b60006020820190508181036000830152613a54818461354d565b905092915050565b60006020820190508181036000830152613a75816135b7565b9050919050565b60006020820190508181036000830152613a95816135da565b9050919050565b60006020820190508181036000830152613ab5816135fd565b9050919050565b60006020820190508181036000830152613ad581613620565b9050919050565b60006020820190508181036000830152613af581613643565b9050919050565b60006020820190508181036000830152613b1581613666565b9050919050565b60006020820190508181036000830152613b3581613689565b9050919050565b60006020820190508181036000830152613b55816136ac565b9050919050565b60006020820190508181036000830152613b75816136cf565b9050919050565b60006020820190508181036000830152613b95816136f2565b9050919050565b60006020820190508181036000830152613bb581613715565b9050919050565b60006020820190508181036000830152613bd581613738565b9050919050565b60006020820190508181036000830152613bf58161375b565b9050919050565b60006020820190508181036000830152613c158161377e565b9050919050565b60006020820190508181036000830152613c35816137a1565b9050919050565b60006020820190508181036000830152613c55816137c4565b9050919050565b60006020820190508181036000830152613c75816137e7565b9050919050565b60006020820190508181036000830152613c958161380a565b9050919050565b60006020820190508181036000830152613cb58161382d565b9050919050565b60006020820190508181036000830152613cd581613850565b9050919050565b60006020820190508181036000830152613cf581613873565b9050919050565b60006020820190508181036000830152613d15816138dc565b9050919050565b6000602082019050613d31600083018461390e565b92915050565b6000613d41613d52565b9050613d4d828261406b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7757613d766141a3565b5b613d80826141d2565b9050602081019050919050565b600067ffffffffffffffff821115613da857613da76141a3565b5b613db1826141d2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4582613fc3565b9150613e5083613fc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8557613e84614116565b5b828201905092915050565b6000613e9b82613fc3565b9150613ea683613fc3565b925082613eb657613eb5614145565b5b828204905092915050565b6000613ecc82613fc3565b9150613ed783613fc3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1057613f0f614116565b5b828202905092915050565b6000613f2682613fc3565b9150613f3183613fc3565b925082821015613f4457613f43614116565b5b828203905092915050565b6000613f5a82613fa3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffa578082015181840152602081019050613fdf565b83811115614009576000848401525b50505050565b600061401a82613fc3565b9150600082141561402e5761402d614116565b5b600182039050919050565b6000600282049050600182168061405157607f821691505b6020821081141561406557614064614174565b5b50919050565b614074826141d2565b810181811067ffffffffffffffff82111715614093576140926141a3565b5b80604052505050565b60006140a782613fc3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140da576140d9614116565b5b600182019050919050565b60006140f082613fc3565b91506140fb83613fc3565b92508261410b5761410a614145565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5265736572766564206465656269657320617265206d696e7465640000000000600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6147d881613f4f565b81146147e357600080fd5b50565b6147ef81613f61565b81146147fa57600080fd5b50565b61480681613f6d565b811461481157600080fd5b50565b61481d81613f77565b811461482857600080fd5b50565b61483481613fc3565b811461483f57600080fd5b5056fea26469706673582212209ff34cdfbcb2cc610a16b1e67da1d90181646a35fba7f896b032467ca45ab3d464736f6c63430008030033

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

0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a220000000000000000000000002e40627f39fac9277be724a909ce45a0833a07db0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58617735515739646565326a63463759564a793770417a59655a6d6a4d75767034463951465a397a7850597200000000000000000000000000000000

-----Decoded View---------------
Arg [0] : owner_ (address): 0x4A84079639ECDb4d9653D2a8d70D1f11B4244A22
Arg [1] : dev_ (address): 0x2e40627F39Fac9277BE724a909ce45A0833A07db
Arg [2] : uri_ (string): https://gateway.pinata.cloud/ipfs/QmXaw5QW9dee2jcF7YVJy7pAzYeZmjMuvp4F9QFZ9zxPYr

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22
Arg [1] : 0000000000000000000000002e40627f39fac9277be724a909ce45a0833a07db
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d58617735515739646565326a63463759564a793770417a59655a6d6a
Arg [6] : 4d75767034463951465a397a7850597200000000000000000000000000000000


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.