ETH Price: $3,418.40 (-1.10%)
Gas: 8 Gwei

Token

Space Dinos (SDC)
 

Overview

Max Total Supply

9,527 SDC

Holders

3,821

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SDC
0x676EB9Bd6e206Ac01b9e6fd473d8659d7DB46290
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mysterious, beautiful creatures of Seagull7x, small companions to all of the [Space Punks](https://opensea.io/collection/space-punks-club) during their journey in space.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceDinosToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 20 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 3 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 20 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 20 : 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 7 of 20 : 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 8 of 20 : 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 9 of 20 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 10 of 20 : 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 11 of 20 : 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 12 of 20 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 14 of 20 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 15 of 20 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 16 of 20 : 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 17 of 20 : 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 18 of 20 : 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. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

File 19 of 20 : SpaceDinosToken.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import { ISpacePunksToken } from "./interfaces/ISpacePunksToken.sol";

contract SpaceDinosToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
  using SafeMath for uint256;
  using Counters for Counters.Counter;

  uint256 public constant TOKEN_LIMIT = 20000;
  string private __baseURI;

  bool public publicSale = false;
  bool public ownersGrant = true;
  uint256 private _maxTokensAtOnce;

  Counters.Counter private _tokenIds;

  uint256 private _tokenPrice;
  uint256[] private _teamShares = [50, 50];
  address[] private _team = [0x3515001548Cb3f93Dc5E3F3880D1f5ab2b0E07DB, 0xd240d8E59f1F49BCbBe4f0f1F711953F665aC551];
  address _spacePunksContractAddress = 0x45DB714f24f5A313569c41683047f1d49e78Ba07;

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("Space Dinos", "SDC")
  {
    setTokenPrice(0);
    setBaseURI("https://api.spacepunks.club/dinos/metadata/");
  }

  // Public sales
  function togglePublicSale() public onlyOwner {
    publicSale = !publicSale;
  }

  // _maxTokensAtOnce
  function maxTokensAtOnce() public view onlyOwner returns (uint256) {
    return _maxTokensAtOnce;
  }

  function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
    _maxTokensAtOnce = _count;
  }

  // Minting
  function mintOneAsOwner(uint256 _tokenId) public payable whenNotPaused {
    require(ownersGrant, "Space Punk Owners grant period has ended");
    require(_tokenId <= 10000, "Token ID not allocated for Space Punk owners");
    require(msg.sender == ownerOfSpacePunk(_tokenId), "You must own the corresponding Space Punk to mint this token");
    _safeMint(msg.sender, _tokenId);
  }

  function mintMultipleAsOwner(uint256[] memory _ids) public payable nonReentrant whenNotPaused {
    require(ownersGrant, "Space Punk Owners grant period has ended");
    require(_ids.length > 0, "Provide an array of token IDs");
    require(balanceOfSpacePunkOwner(msg.sender) >= _ids.length, "You do not own the required number of Space Punk tokens");

    for(uint256 i = 0; i < _ids.length; i++) {
      mintOneAsOwner(_ids[i]);
    }
  }

  function mintTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Purchase would exceed max supply of tokens");
    require(publicSale, "Public sale must be active");
    require(_amount <= _maxTokensAtOnce, "Too many tokens at once");
    require(getTokenPrice().mul(_amount) == msg.value, "Insufficient funds to purchase");

    for(uint256 i = 0; i < _amount; i++) {
      _mintToken(msg.sender);
    }
  }

  function _mintToken(address _to) private {
    _tokenIds.increment();
    uint256 tokenId = (TOKEN_LIMIT - 10000).add(_tokenIds.current());
    _safeMint(_to, tokenId);
  }

  // Developer minting after the Owners Grant
  function devMint(uint256[] memory _ids) public payable nonReentrant onlyOwner {
    require(!ownersGrant, "Owners Grant must be over before you can mint");
    require(_ids.length > 0, "Provide an array of token IDs");

    for(uint256 i = 0; i < _ids.length; i++) {
      _safeMint(msg.sender, _ids[i]);
    }
  }

  // Token existence check
  function exists(uint256 _tokenId) public view returns (bool) {
    return _exists(_tokenId);
  }

  // Space Punks contract address
  function setSpacePunksContractAddress(address _contractAddress) public onlyOwner {
    _spacePunksContractAddress = _contractAddress;
  }

  // Required overrides from parent contracts
  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
    return super.tokenURI(tokenId);
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  // _paused
  function togglePaused() public onlyOwner {
    if (paused()) {
      _unpause();
    } else {
      _pause();
    }
  }

  // _tokenPrice
  function getTokenPrice() public view returns(uint256) {
    return _tokenPrice;
  }

  function setTokenPrice(uint256 _price) public onlyOwner {
    _tokenPrice = _price;
  }

  // Owners grant
  function setOwnersGrant(bool _value) public onlyOwner {
    ownersGrant = _value;
  }

  // SPC
  function ownerOfSpacePunk(uint _tokenId) public view returns (address) {
    ISpacePunksToken spacePunks = ISpacePunksToken(_spacePunksContractAddress);
    return spacePunks.ownerOf(_tokenId);
  }

  function balanceOfSpacePunkOwner(address _owner) public view returns (uint256) {
    ISpacePunksToken spacePunks = ISpacePunksToken(_spacePunksContractAddress);
    return spacePunks.balanceOf(_owner);
  }

  // Token URIs
  function _baseURI() internal override view returns (string memory) {
    return __baseURI;
  }

  function setBaseURI(string memory _value) public onlyOwner {
    __baseURI = _value;
  }
}

File 20 of 20 : ISpacePunksToken.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

interface ISpacePunksToken {
  function balanceOf(address owner) external view returns (uint256 balance);
  function ownerOf(uint256 tokenId) external view returns (address owner);
  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
  function totalSupply() external view returns (uint256);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOfSpacePunkOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTokensAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"mintMultipleAsOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintOneAsOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOfSpacePunk","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownersGrant","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setOwnersGrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setSpacePunksContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055506040518060400160405280603260ff168152602001603260ff16815250601790600262000069929190620008ec565b506040518060400160405280733515001548cb3f93dc5e3f3880d1f5ab2b0e07db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d240d8e59f1f49bcbbe4f0f1f711953f665ac55173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060189060026200011192919062000943565b507345db714f24f5a313569c41683047f1d49e78ba07601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017457600080fd5b506018805480602002602001604051908101604052809291908181526020018280548015620001f957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620001ae575b505050505060178054806020026020016040519081016040528092919081815260200182805480156200024c57602002820191906000526020600020905b81548152602001906001019080831162000237575b50505050506040518060400160405280600b81526020017f53706163652044696e6f730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53444300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002d5929190620009d2565b508060019080519060200190620002ee929190620009d2565b50505062000311620003056200047660201b60201c565b6200047e60201b60201c565b6000600b60146101000a81548160ff021916908315150217905550805182511462000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000bff565b60405180910390fd5b6000825111620003ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b19062000c43565b60405180910390fd5b60005b8251811015620004295762000413838281518110620003e157620003e062000e15565b5b6020026020010151838381518110620003ff57620003fe62000e15565b5b60200260200101516200054460201b60201c565b8080620004209062000d69565b915050620003bd565b50505060016011819055506200044660006200077e60201b60201c565b620004706040518060600160405280602b815260200162006cd3602b91396200081760201b60201c565b62000fac565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ae9062000bbb565b60405180910390fd5b60008111620005fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f49062000c65565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006799062000c21565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c5462000739919062000c98565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200077292919062000b8e565b60405180910390a15050565b6200078e6200047660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b4620008c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008049062000bdd565b60405180910390fd5b8060168190555050565b620008276200047660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200084d620008c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089d9062000bdd565b60405180910390fd5b8060129080519060200190620008be929190620009d2565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805482825590600052602060002090810192821562000930579160200282015b828111156200092f578251829060ff169055916020019190600101906200090d565b5b5090506200093f919062000a63565b5090565b828054828255906000526020600020908101928215620009bf579160200282015b82811115620009be5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000964565b5b509050620009ce919062000a63565b5090565b828054620009e09062000d33565b90600052602060002090601f01602090048101928262000a04576000855562000a50565b82601f1062000a1f57805160ff191683800117855562000a50565b8280016001018555821562000a50579182015b8281111562000a4f57825182559160200191906001019062000a32565b5b50905062000a5f919062000a63565b5090565b5b8082111562000a7e57600081600090555060010162000a64565b5090565b62000a8d8162000cf5565b82525050565b600062000aa2602c8362000c87565b915062000aaf8262000e44565b604082019050919050565b600062000ac960208362000c87565b915062000ad68262000e93565b602082019050919050565b600062000af060328362000c87565b915062000afd8262000ebc565b604082019050919050565b600062000b17602b8362000c87565b915062000b248262000f0b565b604082019050919050565b600062000b3e601a8362000c87565b915062000b4b8262000f5a565b602082019050919050565b600062000b65601d8362000c87565b915062000b728262000f83565b602082019050919050565b62000b888162000d29565b82525050565b600060408201905062000ba5600083018562000a82565b62000bb4602083018462000b7d565b9392505050565b6000602082019050818103600083015262000bd68162000a93565b9050919050565b6000602082019050818103600083015262000bf88162000aba565b9050919050565b6000602082019050818103600083015262000c1a8162000ae1565b9050919050565b6000602082019050818103600083015262000c3c8162000b08565b9050919050565b6000602082019050818103600083015262000c5e8162000b2f565b9050919050565b6000602082019050818103600083015262000c808162000b56565b9050919050565b600082825260208201905092915050565b600062000ca58262000d29565b915062000cb28362000d29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cea5762000ce962000db7565b5b828201905092915050565b600062000d028262000d09565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000d4c57607f821691505b6020821081141562000d635762000d6262000de6565b5b50919050565b600062000d768262000d29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000dac5762000dab62000db7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b615d178062000fbc6000396000f3fe6080604052600436106102765760003560e01c80635c975abb1161014f578063b3fd919d116100c1578063db661c421161007a578063db661c42146109ad578063e222c7f9146109ea578063e33b7de314610a01578063e3e672bd14610a2c578063e985e9c514610a57578063f2fde38b14610a94576102bd565b8063b3fd919d146108b6578063b88d4fde146108d2578063c87b56dd146108fb578063ca29934914610938578063ca3ba08314610954578063ce7c2ac214610970576102bd565b80638b83209b116101135780638b83209b146107a15780638da5cb5b146107de57806395d89b411461080957806397304ced146108345780639852595c14610850578063a22cb4651461088d576102bd565b80635c975abb146106bc5780636352211e146106e75780636a61e5fc1461072457806370a082311461074d578063715018a61461078a576102bd565b80632f745c59116101e85780633ca768b0116101ac5780633ca768b01461058857806342842e0e146105c55780634b94f50e146105ee5780634f558e79146106195780634f6ccce71461065657806355f804b314610693576102bd565b80632f745c59146104b557806330571c58146104f257806333bc1c5c1461051b57806336566f06146105465780633a98ef391461055d576102bd565b8063081812fc1161023a578063081812fc146103a7578063095ea7b3146103e457806318160ddd1461040d578063191655871461043857806322a7cf5f1461046157806323b872dd1461048c576102bd565b80630165097d146102c257806301ffc9a7146102eb578063031bd4c41461032857806306e893641461035357806306fdde031461037c576102bd565b366102bd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102a4610abd565b346040516102b39291906148e1565b60405180910390a1005b600080fd5b3480156102ce57600080fd5b506102e960048036038101906102e49190613e9a565b610ac5565b005b3480156102f757600080fd5b50610312600480360381019061030d919061412d565b610b85565b60405161031f919061490a565b60405180910390f35b34801561033457600080fd5b5061033d610b97565b60405161034a9190614dc7565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190614100565b610b9d565b005b34801561038857600080fd5b50610391610c36565b60405161039e9190614925565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906141d0565b610cc8565b6040516103db9190614851565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190614077565b610d4d565b005b34801561041957600080fd5b50610422610e65565b60405161042f9190614dc7565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ef4565b610e72565b005b34801561046d57600080fd5b506104766110da565b6040516104839190614dc7565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190613f61565b611160565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190614077565b6111c0565b6040516104e99190614dc7565b60405180910390f35b3480156104fe57600080fd5b50610519600480360381019061051491906141d0565b611265565b005b34801561052757600080fd5b506105306112eb565b60405161053d919061490a565b60405180910390f35b34801561055257600080fd5b5061055b6112fe565b005b34801561056957600080fd5b5061057261139f565b60405161057f9190614dc7565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906141d0565b6113a9565b6040516105bc9190614851565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613f61565b611462565b005b3480156105fa57600080fd5b50610603611482565b6040516106109190614dc7565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906141d0565b61148c565b60405161064d919061490a565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906141d0565b61149e565b60405161068a9190614dc7565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190614187565b61150f565b005b3480156106c857600080fd5b506106d16115a5565b6040516106de919061490a565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141d0565b6115bc565b60405161071b9190614851565b60405180910390f35b34801561073057600080fd5b5061074b600480360381019061074691906141d0565b61166e565b005b34801561075957600080fd5b50610774600480360381019061076f9190613e9a565b6116f4565b6040516107819190614dc7565b60405180910390f35b34801561079657600080fd5b5061079f6117ac565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906141d0565b611834565b6040516107d59190614851565b60405180910390f35b3480156107ea57600080fd5b506107f361187c565b6040516108009190614851565b60405180910390f35b34801561081557600080fd5b5061081e6118a6565b60405161082b9190614925565b60405180910390f35b61084e600480360381019061084991906141d0565b611938565b005b34801561085c57600080fd5b5061087760048036038101906108729190613e9a565b611b4e565b6040516108849190614dc7565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190614037565b611b97565b005b6108d060048036038101906108cb91906140b7565b611d18565b005b3480156108de57600080fd5b506108f960048036038101906108f49190613fb4565b611ec5565b005b34801561090757600080fd5b50610922600480360381019061091d91906141d0565b611f27565b60405161092f9190614925565b60405180910390f35b610952600480360381019061094d91906140b7565b611f39565b005b61096e600480360381019061096991906141d0565b6120fc565b005b34801561097c57600080fd5b5061099760048036038101906109929190613e9a565b61225b565b6040516109a49190614dc7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613e9a565b6122a4565b6040516109e19190614dc7565b60405180910390f35b3480156109f657600080fd5b506109ff61235d565b005b348015610a0d57600080fd5b50610a16612405565b604051610a239190614dc7565b60405180910390f35b348015610a3857600080fd5b50610a4161240f565b604051610a4e919061490a565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613f21565b612422565b604051610a8b919061490a565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190613e9a565b6124b6565b005b600033905090565b610acd610abd565b73ffffffffffffffffffffffffffffffffffffffff16610aeb61187c565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890614cc7565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b90826125ae565b9050919050565b614e2081565b610ba5610abd565b73ffffffffffffffffffffffffffffffffffffffff16610bc361187c565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090614cc7565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060008054610c45906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c71906150f6565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b5050505050905090565b6000610cd382612628565b610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990614ca7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d58826115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614d27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de8610abd565b73ffffffffffffffffffffffffffffffffffffffff161480610e175750610e1681610e11610abd565b612422565b5b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614bc7565b60405180910390fd5b610e608383612694565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90614a67565b60405180910390fd5b6000600d5447610f049190614ee3565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610f969190614f6a565b610fa09190614f39565b610faa9190614fc4565b90506000811415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614b27565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461103b9190614ee3565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d5461108c9190614ee3565b600d8190555061109c838261274d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110cd92919061486c565b60405180910390a1505050565b60006110e4610abd565b73ffffffffffffffffffffffffffffffffffffffff1661110261187c565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614cc7565b60405180910390fd5b601454905090565b61117161116b610abd565b82612841565b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790614d47565b60405180910390fd5b6111bb83838361291f565b505050565b60006111cb836116f4565b821061120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614987565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61126d610abd565b73ffffffffffffffffffffffffffffffffffffffff1661128b61187c565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614cc7565b60405180910390fd5b8060148190555050565b601360009054906101000a900460ff1681565b611306610abd565b73ffffffffffffffffffffffffffffffffffffffff1661132461187c565b73ffffffffffffffffffffffffffffffffffffffff161461137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190614cc7565b60405180910390fd5b6113826115a5565b156113945761138f612b7b565b61139d565b61139c612c1d565b5b565b6000600c54905090565b600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161140a9190614dc7565b60206040518083038186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190613ec7565b915050919050565b61147d83838360405180602001604052806000815250611ec5565b505050565b6000601654905090565b600061149782612628565b9050919050565b60006114a8610e65565b82106114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090614d67565b60405180910390fd5b600982815481106114fd576114fc61528f565b5b90600052602060002001549050919050565b611517610abd565b73ffffffffffffffffffffffffffffffffffffffff1661153561187c565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614cc7565b60405180910390fd5b80601290805190602001906115a1929190613bd1565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614c07565b60405180910390fd5b80915050919050565b611676610abd565b73ffffffffffffffffffffffffffffffffffffffff1661169461187c565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614cc7565b60405180910390fd5b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90614be7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b4610abd565b73ffffffffffffffffffffffffffffffffffffffff166117d261187c565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614cc7565b60405180910390fd5b6118326000612cc0565b565b60006010828154811061184a5761184961528f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118b5906150f6565b80601f01602080910402602001604051908101604052809291908181526020018280546118e1906150f6565b801561192e5780601f106119035761010080835404028352916020019161192e565b820191906000526020600020905b81548152906001019060200180831161191157829003601f168201915b5050505050905090565b6002601154141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614da7565b60405180910390fd5b600260118190555061198e6115a5565b156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614ba7565b60405180910390fd5b614e206119eb826119dd610e65565b612d8690919063ffffffff16565b1115611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614c27565b60405180910390fd5b601360009054906101000a900460ff16611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614b47565b60405180910390fd5b601454811115611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614947565b60405180910390fd5b34611adb82611acd611482565b612d9c90919063ffffffff16565b14611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614d87565b60405180910390fd5b60005b81811015611b4257611b2f33612db2565b8080611b3a90615159565b915050611b1e565b50600160118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b9f610abd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614aa7565b60405180910390fd5b8060056000611c1a610abd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cc7610abd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d0c919061490a565b60405180910390a35050565b60026011541415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614da7565b60405180910390fd5b6002601181905550611d6e610abd565b73ffffffffffffffffffffffffffffffffffffffff16611d8c61187c565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614cc7565b60405180910390fd5b601360019054906101000a900460ff1615611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990614c47565b60405180910390fd5b6000815111611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614a27565b60405180910390fd5b60005b8151811015611eb957611ea633838381518110611e9957611e9861528f565b5b6020026020010151612df9565b8080611eb190615159565b915050611e79565b50600160118190555050565b611ed6611ed0610abd565b83612841565b611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614d47565b60405180910390fd5b611f2184848484612e17565b50505050565b6060611f3282612e73565b9050919050565b60026011541415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614da7565b60405180910390fd5b6002601181905550611f8f6115a5565b15611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690614ba7565b60405180910390fd5b601360019054906101000a900460ff1661201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614a07565b60405180910390fd5b6000815111612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614a27565b60405180910390fd5b805161206d336122a4565b10156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614b67565b60405180910390fd5b60005b81518110156120f0576120dd8282815181106120d0576120cf61528f565b5b60200260200101516120fc565b80806120e890615159565b9150506120b1565b50600160118190555050565b6121046115a5565b15612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90614ba7565b60405180910390fd5b601360019054906101000a900460ff16612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614a07565b60405180910390fd5b6127108111156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614a47565b60405180910390fd5b6121e1816113a9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614b87565b60405180910390fd5b6122583382612df9565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016123059190614851565b60206040518083038186803b15801561231d57600080fd5b505afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235591906141fd565b915050919050565b612365610abd565b73ffffffffffffffffffffffffffffffffffffffff1661238361187c565b73ffffffffffffffffffffffffffffffffffffffff16146123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090614cc7565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000600d54905090565b601360019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124be610abd565b73ffffffffffffffffffffffffffffffffffffffff166124dc61187c565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906149c7565b60405180910390fd5b6125ab81612cc0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612621575061262082612fc5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612707836115bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278790614ae7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127b69061483c565b60006040518083038185875af1925050503d80600081146127f3576040519150601f19603f3d011682016040523d82523d6000602084013e6127f8565b606091505b505090508061283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614ac7565b60405180910390fd5b505050565b600061284c82612628565b61288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614b07565b60405180910390fd5b6000612896836115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061290557508373ffffffffffffffffffffffffffffffffffffffff166128ed84610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061291657506129158185612422565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661293f826115bc565b73ffffffffffffffffffffffffffffffffffffffff1614612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c90614ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614a87565b60405180910390fd5b612a108383836130a7565b612a1b600082612694565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6b9190614fc4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac29190614ee3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b836115a5565b612bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb990614967565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c06610abd565b604051612c139190614851565b60405180910390a1565b612c256115a5565b15612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614ba7565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ca9610abd565b604051612cb69190614851565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612d949190614ee3565b905092915050565b60008183612daa9190614f6a565b905092915050565b612dbc60156130b7565b6000612de9612dcb60156130cd565b612710614e20612ddb9190614fc4565b612d8690919063ffffffff16565b9050612df58282612df9565b5050565b612e138282604051806020016040528060008152506130db565b5050565b612e2284848461291f565b612e2e84848484613136565b612e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e64906149a7565b60405180910390fd5b50505050565b6060612e7e82612628565b612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb490614c87565b60405180910390fd5b6000600660008481526020019081526020016000208054612edd906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612f09906150f6565b8015612f565780601f10612f2b57610100808354040283529160200191612f56565b820191906000526020600020905b815481529060010190602001808311612f3957829003601f168201915b505050505090506000612f676132cd565b9050600081511415612f7d578192505050612fc0565b600082511115612fb2578082604051602001612f9a929190614818565b60405160208183030381529060405292505050612fc0565b612fbb8461335f565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061309057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806130a0575061309f82613406565b5b9050919050565b6130b2838383613470565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6130e58383613584565b6130f26000848484613136565b613131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613128906149a7565b60405180910390fd5b505050565b60006131578473ffffffffffffffffffffffffffffffffffffffff16613752565b156132c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613180610abd565b8786866040518563ffffffff1660e01b81526004016131a29493929190614895565b602060405180830381600087803b1580156131bc57600080fd5b505af19250505080156131ed57506040513d601f19601f820116820180604052508101906131ea919061415a565b60015b613270573d806000811461321d576040519150601f19603f3d011682016040523d82523d6000602084013e613222565b606091505b50600081511415613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906149a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132c5565b600190505b949350505050565b6060601280546132dc906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054613308906150f6565b80156133555780601f1061332a57610100808354040283529160200191613355565b820191906000526020600020905b81548152906001019060200180831161333857829003601f168201915b5050505050905090565b606061336a82612628565b6133a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a090614d07565b60405180910390fd5b60006133b36132cd565b905060008151116133d357604051806020016040528060008152506133fe565b806133dd84613765565b6040516020016133ee929190614818565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61347b8383836138c6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134be576134b9816138cb565b6134fd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134fc576134fb8382613914565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135405761353b81613a81565b61357f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461357e5761357d8282613b52565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90614c67565b60405180910390fd5b6135fd81612628565b1561363d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613634906149e7565b60405180910390fd5b613649600083836130a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136999190614ee3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156137ad576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138c1565b600082905060005b600082146137df5780806137c890615159565b915050600a826137d89190614f39565b91506137b5565b60008167ffffffffffffffff8111156137fb576137fa6152be565b5b6040519080825280601f01601f19166020018201604052801561382d5781602001600182028036833780820191505090505b5090505b600085146138ba576001826138469190614fc4565b9150600a8561385591906151a2565b60306138619190614ee3565b60f81b8183815181106138775761387661528f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138b39190614f39565b9450613831565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613921846116f4565b61392b9190614fc4565b9050600060086000848152602001908152602001600020549050818114613a10576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613a959190614fc4565b90506000600a6000848152602001908152602001600020549050600060098381548110613ac557613ac461528f565b5b906000526020600020015490508060098381548110613ae757613ae661528f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613b3657613b35615260565b5b6001900381819060005260206000200160009055905550505050565b6000613b5d836116f4565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054613bdd906150f6565b90600052602060002090601f016020900481019282613bff5760008555613c46565b82601f10613c1857805160ff1916838001178555613c46565b82800160010185558215613c46579182015b82811115613c45578251825591602001919060010190613c2a565b5b509050613c539190613c57565b5090565b5b80821115613c70576000816000905550600101613c58565b5090565b6000613c87613c8284614e07565b614de2565b90508083825260208201905082856020860282011115613caa57613ca96152f2565b5b60005b85811015613cda5781613cc08882613e70565b845260208401935060208301925050600181019050613cad565b5050509392505050565b6000613cf7613cf284614e33565b614de2565b905082815260208101848484011115613d1357613d126152f7565b5b613d1e8482856150b4565b509392505050565b6000613d39613d3484614e64565b614de2565b905082815260208101848484011115613d5557613d546152f7565b5b613d608482856150b4565b509392505050565b600081359050613d7781615c6e565b92915050565b600081519050613d8c81615c6e565b92915050565b600081359050613da181615c85565b92915050565b600082601f830112613dbc57613dbb6152ed565b5b8135613dcc848260208601613c74565b91505092915050565b600081359050613de481615c9c565b92915050565b600081359050613df981615cb3565b92915050565b600081519050613e0e81615cb3565b92915050565b600082601f830112613e2957613e286152ed565b5b8135613e39848260208601613ce4565b91505092915050565b600082601f830112613e5757613e566152ed565b5b8135613e67848260208601613d26565b91505092915050565b600081359050613e7f81615cca565b92915050565b600081519050613e9481615cca565b92915050565b600060208284031215613eb057613eaf615301565b5b6000613ebe84828501613d68565b91505092915050565b600060208284031215613edd57613edc615301565b5b6000613eeb84828501613d7d565b91505092915050565b600060208284031215613f0a57613f09615301565b5b6000613f1884828501613d92565b91505092915050565b60008060408385031215613f3857613f37615301565b5b6000613f4685828601613d68565b9250506020613f5785828601613d68565b9150509250929050565b600080600060608486031215613f7a57613f79615301565b5b6000613f8886828701613d68565b9350506020613f9986828701613d68565b9250506040613faa86828701613e70565b9150509250925092565b60008060008060808587031215613fce57613fcd615301565b5b6000613fdc87828801613d68565b9450506020613fed87828801613d68565b9350506040613ffe87828801613e70565b925050606085013567ffffffffffffffff81111561401f5761401e6152fc565b5b61402b87828801613e14565b91505092959194509250565b6000806040838503121561404e5761404d615301565b5b600061405c85828601613d68565b925050602061406d85828601613dd5565b9150509250929050565b6000806040838503121561408e5761408d615301565b5b600061409c85828601613d68565b92505060206140ad85828601613e70565b9150509250929050565b6000602082840312156140cd576140cc615301565b5b600082013567ffffffffffffffff8111156140eb576140ea6152fc565b5b6140f784828501613da7565b91505092915050565b60006020828403121561411657614115615301565b5b600061412484828501613dd5565b91505092915050565b60006020828403121561414357614142615301565b5b600061415184828501613dea565b91505092915050565b6000602082840312156141705761416f615301565b5b600061417e84828501613dff565b91505092915050565b60006020828403121561419d5761419c615301565b5b600082013567ffffffffffffffff8111156141bb576141ba6152fc565b5b6141c784828501613e42565b91505092915050565b6000602082840312156141e6576141e5615301565b5b60006141f484828501613e70565b91505092915050565b60006020828403121561421357614212615301565b5b600061422184828501613e85565b91505092915050565b6142338161507e565b82525050565b61424281614ff8565b82525050565b6142518161501c565b82525050565b600061426282614e95565b61426c8185614eab565b935061427c8185602086016150c3565b61428581615306565b840191505092915050565b600061429b82614ea0565b6142a58185614ec7565b93506142b58185602086016150c3565b6142be81615306565b840191505092915050565b60006142d482614ea0565b6142de8185614ed8565b93506142ee8185602086016150c3565b80840191505092915050565b6000614307601783614ec7565b915061431282615317565b602082019050919050565b600061432a601483614ec7565b915061433582615340565b602082019050919050565b600061434d602b83614ec7565b915061435882615369565b604082019050919050565b6000614370603283614ec7565b915061437b826153b8565b604082019050919050565b6000614393602683614ec7565b915061439e82615407565b604082019050919050565b60006143b6601c83614ec7565b91506143c182615456565b602082019050919050565b60006143d9602883614ec7565b91506143e48261547f565b604082019050919050565b60006143fc601d83614ec7565b9150614407826154ce565b602082019050919050565b600061441f602c83614ec7565b915061442a826154f7565b604082019050919050565b6000614442602683614ec7565b915061444d82615546565b604082019050919050565b6000614465602483614ec7565b915061447082615595565b604082019050919050565b6000614488601983614ec7565b9150614493826155e4565b602082019050919050565b60006144ab603a83614ec7565b91506144b68261560d565b604082019050919050565b60006144ce601d83614ec7565b91506144d98261565c565b602082019050919050565b60006144f1602c83614ec7565b91506144fc82615685565b604082019050919050565b6000614514602b83614ec7565b915061451f826156d4565b604082019050919050565b6000614537601a83614ec7565b915061454282615723565b602082019050919050565b600061455a603783614ec7565b91506145658261574c565b604082019050919050565b600061457d603c83614ec7565b91506145888261579b565b604082019050919050565b60006145a0601083614ec7565b91506145ab826157ea565b602082019050919050565b60006145c3603883614ec7565b91506145ce82615813565b604082019050919050565b60006145e6602a83614ec7565b91506145f182615862565b604082019050919050565b6000614609602983614ec7565b9150614614826158b1565b604082019050919050565b600061462c602a83614ec7565b915061463782615900565b604082019050919050565b600061464f602d83614ec7565b915061465a8261594f565b604082019050919050565b6000614672602083614ec7565b915061467d8261599e565b602082019050919050565b6000614695603183614ec7565b91506146a0826159c7565b604082019050919050565b60006146b8602c83614ec7565b91506146c382615a16565b604082019050919050565b60006146db602083614ec7565b91506146e682615a65565b602082019050919050565b60006146fe602983614ec7565b915061470982615a8e565b604082019050919050565b6000614721602f83614ec7565b915061472c82615add565b604082019050919050565b6000614744602183614ec7565b915061474f82615b2c565b604082019050919050565b6000614767600083614ebc565b915061477282615b7b565b600082019050919050565b600061478a603183614ec7565b915061479582615b7e565b604082019050919050565b60006147ad602c83614ec7565b91506147b882615bcd565b604082019050919050565b60006147d0601e83614ec7565b91506147db82615c1c565b602082019050919050565b60006147f3601f83614ec7565b91506147fe82615c45565b602082019050919050565b61481281615074565b82525050565b600061482482856142c9565b915061483082846142c9565b91508190509392505050565b60006148478261475a565b9150819050919050565b60006020820190506148666000830184614239565b92915050565b6000604082019050614881600083018561422a565b61488e6020830184614809565b9392505050565b60006080820190506148aa6000830187614239565b6148b76020830186614239565b6148c46040830185614809565b81810360608301526148d68184614257565b905095945050505050565b60006040820190506148f66000830185614239565b6149036020830184614809565b9392505050565b600060208201905061491f6000830184614248565b92915050565b6000602082019050818103600083015261493f8184614290565b905092915050565b60006020820190508181036000830152614960816142fa565b9050919050565b600060208201905081810360008301526149808161431d565b9050919050565b600060208201905081810360008301526149a081614340565b9050919050565b600060208201905081810360008301526149c081614363565b9050919050565b600060208201905081810360008301526149e081614386565b9050919050565b60006020820190508181036000830152614a00816143a9565b9050919050565b60006020820190508181036000830152614a20816143cc565b9050919050565b60006020820190508181036000830152614a40816143ef565b9050919050565b60006020820190508181036000830152614a6081614412565b9050919050565b60006020820190508181036000830152614a8081614435565b9050919050565b60006020820190508181036000830152614aa081614458565b9050919050565b60006020820190508181036000830152614ac08161447b565b9050919050565b60006020820190508181036000830152614ae08161449e565b9050919050565b60006020820190508181036000830152614b00816144c1565b9050919050565b60006020820190508181036000830152614b20816144e4565b9050919050565b60006020820190508181036000830152614b4081614507565b9050919050565b60006020820190508181036000830152614b608161452a565b9050919050565b60006020820190508181036000830152614b808161454d565b9050919050565b60006020820190508181036000830152614ba081614570565b9050919050565b60006020820190508181036000830152614bc081614593565b9050919050565b60006020820190508181036000830152614be0816145b6565b9050919050565b60006020820190508181036000830152614c00816145d9565b9050919050565b60006020820190508181036000830152614c20816145fc565b9050919050565b60006020820190508181036000830152614c408161461f565b9050919050565b60006020820190508181036000830152614c6081614642565b9050919050565b60006020820190508181036000830152614c8081614665565b9050919050565b60006020820190508181036000830152614ca081614688565b9050919050565b60006020820190508181036000830152614cc0816146ab565b9050919050565b60006020820190508181036000830152614ce0816146ce565b9050919050565b60006020820190508181036000830152614d00816146f1565b9050919050565b60006020820190508181036000830152614d2081614714565b9050919050565b60006020820190508181036000830152614d4081614737565b9050919050565b60006020820190508181036000830152614d608161477d565b9050919050565b60006020820190508181036000830152614d80816147a0565b9050919050565b60006020820190508181036000830152614da0816147c3565b9050919050565b60006020820190508181036000830152614dc0816147e6565b9050919050565b6000602082019050614ddc6000830184614809565b92915050565b6000614dec614dfd565b9050614df88282615128565b919050565b6000604051905090565b600067ffffffffffffffff821115614e2257614e216152be565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e4e57614e4d6152be565b5b614e5782615306565b9050602081019050919050565b600067ffffffffffffffff821115614e7f57614e7e6152be565b5b614e8882615306565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614eee82615074565b9150614ef983615074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f2e57614f2d6151d3565b5b828201905092915050565b6000614f4482615074565b9150614f4f83615074565b925082614f5f57614f5e615202565b5b828204905092915050565b6000614f7582615074565b9150614f8083615074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fb957614fb86151d3565b5b828202905092915050565b6000614fcf82615074565b9150614fda83615074565b925082821015614fed57614fec6151d3565b5b828203905092915050565b600061500382615054565b9050919050565b600061501582615054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061508982615090565b9050919050565b600061509b826150a2565b9050919050565b60006150ad82615054565b9050919050565b82818337600083830152505050565b60005b838110156150e15780820151818401526020810190506150c6565b838111156150f0576000848401525b50505050565b6000600282049050600182168061510e57607f821691505b6020821081141561512257615121615231565b5b50919050565b61513182615306565b810181811067ffffffffffffffff821117156151505761514f6152be565b5b80604052505050565b600061516482615074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615197576151966151d3565b5b600182019050919050565b60006151ad82615074565b91506151b883615074565b9250826151c8576151c7615202565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53706163652050756e6b204f776e657273206772616e7420706572696f64206860008201527f617320656e646564000000000000000000000000000000000000000000000000602082015250565b7f50726f7669646520616e206172726179206f6620746f6b656e20494473000000600082015250565b7f546f6b656e204944206e6f7420616c6c6f636174656420666f7220537061636560008201527f2050756e6b206f776e6572730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206d75737420626520616374697665000000000000600082015250565b7f596f7520646f206e6f74206f776e20746865207265717569726564206e756d6260008201527f6572206f662053706163652050756e6b20746f6b656e73000000000000000000602082015250565b7f596f75206d757374206f776e2074686520636f72726573706f6e64696e67205360008201527f706163652050756e6b20746f206d696e74207468697320746f6b656e00000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4f776e657273204772616e74206d757374206265206f766572206265666f726560008201527f20796f752063616e206d696e7400000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2070757263686173650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615c7781614ff8565b8114615c8257600080fd5b50565b615c8e8161500a565b8114615c9957600080fd5b50565b615ca58161501c565b8114615cb057600080fd5b50565b615cbc81615028565b8114615cc757600080fd5b50565b615cd381615074565b8114615cde57600080fd5b5056fea2646970667358221220777b5525956c68ec39f6ac8e1c5a70355463db8926fb52e0fbd2b76104d4650464736f6c6343000807003368747470733a2f2f6170692e737061636570756e6b732e636c75622f64696e6f732f6d657461646174612f

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635c975abb1161014f578063b3fd919d116100c1578063db661c421161007a578063db661c42146109ad578063e222c7f9146109ea578063e33b7de314610a01578063e3e672bd14610a2c578063e985e9c514610a57578063f2fde38b14610a94576102bd565b8063b3fd919d146108b6578063b88d4fde146108d2578063c87b56dd146108fb578063ca29934914610938578063ca3ba08314610954578063ce7c2ac214610970576102bd565b80638b83209b116101135780638b83209b146107a15780638da5cb5b146107de57806395d89b411461080957806397304ced146108345780639852595c14610850578063a22cb4651461088d576102bd565b80635c975abb146106bc5780636352211e146106e75780636a61e5fc1461072457806370a082311461074d578063715018a61461078a576102bd565b80632f745c59116101e85780633ca768b0116101ac5780633ca768b01461058857806342842e0e146105c55780634b94f50e146105ee5780634f558e79146106195780634f6ccce71461065657806355f804b314610693576102bd565b80632f745c59146104b557806330571c58146104f257806333bc1c5c1461051b57806336566f06146105465780633a98ef391461055d576102bd565b8063081812fc1161023a578063081812fc146103a7578063095ea7b3146103e457806318160ddd1461040d578063191655871461043857806322a7cf5f1461046157806323b872dd1461048c576102bd565b80630165097d146102c257806301ffc9a7146102eb578063031bd4c41461032857806306e893641461035357806306fdde031461037c576102bd565b366102bd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102a4610abd565b346040516102b39291906148e1565b60405180910390a1005b600080fd5b3480156102ce57600080fd5b506102e960048036038101906102e49190613e9a565b610ac5565b005b3480156102f757600080fd5b50610312600480360381019061030d919061412d565b610b85565b60405161031f919061490a565b60405180910390f35b34801561033457600080fd5b5061033d610b97565b60405161034a9190614dc7565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190614100565b610b9d565b005b34801561038857600080fd5b50610391610c36565b60405161039e9190614925565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906141d0565b610cc8565b6040516103db9190614851565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190614077565b610d4d565b005b34801561041957600080fd5b50610422610e65565b60405161042f9190614dc7565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ef4565b610e72565b005b34801561046d57600080fd5b506104766110da565b6040516104839190614dc7565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190613f61565b611160565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190614077565b6111c0565b6040516104e99190614dc7565b60405180910390f35b3480156104fe57600080fd5b50610519600480360381019061051491906141d0565b611265565b005b34801561052757600080fd5b506105306112eb565b60405161053d919061490a565b60405180910390f35b34801561055257600080fd5b5061055b6112fe565b005b34801561056957600080fd5b5061057261139f565b60405161057f9190614dc7565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906141d0565b6113a9565b6040516105bc9190614851565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613f61565b611462565b005b3480156105fa57600080fd5b50610603611482565b6040516106109190614dc7565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906141d0565b61148c565b60405161064d919061490a565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906141d0565b61149e565b60405161068a9190614dc7565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190614187565b61150f565b005b3480156106c857600080fd5b506106d16115a5565b6040516106de919061490a565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141d0565b6115bc565b60405161071b9190614851565b60405180910390f35b34801561073057600080fd5b5061074b600480360381019061074691906141d0565b61166e565b005b34801561075957600080fd5b50610774600480360381019061076f9190613e9a565b6116f4565b6040516107819190614dc7565b60405180910390f35b34801561079657600080fd5b5061079f6117ac565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906141d0565b611834565b6040516107d59190614851565b60405180910390f35b3480156107ea57600080fd5b506107f361187c565b6040516108009190614851565b60405180910390f35b34801561081557600080fd5b5061081e6118a6565b60405161082b9190614925565b60405180910390f35b61084e600480360381019061084991906141d0565b611938565b005b34801561085c57600080fd5b5061087760048036038101906108729190613e9a565b611b4e565b6040516108849190614dc7565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190614037565b611b97565b005b6108d060048036038101906108cb91906140b7565b611d18565b005b3480156108de57600080fd5b506108f960048036038101906108f49190613fb4565b611ec5565b005b34801561090757600080fd5b50610922600480360381019061091d91906141d0565b611f27565b60405161092f9190614925565b60405180910390f35b610952600480360381019061094d91906140b7565b611f39565b005b61096e600480360381019061096991906141d0565b6120fc565b005b34801561097c57600080fd5b5061099760048036038101906109929190613e9a565b61225b565b6040516109a49190614dc7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613e9a565b6122a4565b6040516109e19190614dc7565b60405180910390f35b3480156109f657600080fd5b506109ff61235d565b005b348015610a0d57600080fd5b50610a16612405565b604051610a239190614dc7565b60405180910390f35b348015610a3857600080fd5b50610a4161240f565b604051610a4e919061490a565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613f21565b612422565b604051610a8b919061490a565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190613e9a565b6124b6565b005b600033905090565b610acd610abd565b73ffffffffffffffffffffffffffffffffffffffff16610aeb61187c565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890614cc7565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b90826125ae565b9050919050565b614e2081565b610ba5610abd565b73ffffffffffffffffffffffffffffffffffffffff16610bc361187c565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090614cc7565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060008054610c45906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c71906150f6565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b5050505050905090565b6000610cd382612628565b610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990614ca7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d58826115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614d27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de8610abd565b73ffffffffffffffffffffffffffffffffffffffff161480610e175750610e1681610e11610abd565b612422565b5b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614bc7565b60405180910390fd5b610e608383612694565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90614a67565b60405180910390fd5b6000600d5447610f049190614ee3565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610f969190614f6a565b610fa09190614f39565b610faa9190614fc4565b90506000811415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614b27565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461103b9190614ee3565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d5461108c9190614ee3565b600d8190555061109c838261274d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110cd92919061486c565b60405180910390a1505050565b60006110e4610abd565b73ffffffffffffffffffffffffffffffffffffffff1661110261187c565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614cc7565b60405180910390fd5b601454905090565b61117161116b610abd565b82612841565b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790614d47565b60405180910390fd5b6111bb83838361291f565b505050565b60006111cb836116f4565b821061120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614987565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61126d610abd565b73ffffffffffffffffffffffffffffffffffffffff1661128b61187c565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614cc7565b60405180910390fd5b8060148190555050565b601360009054906101000a900460ff1681565b611306610abd565b73ffffffffffffffffffffffffffffffffffffffff1661132461187c565b73ffffffffffffffffffffffffffffffffffffffff161461137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190614cc7565b60405180910390fd5b6113826115a5565b156113945761138f612b7b565b61139d565b61139c612c1d565b5b565b6000600c54905090565b600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161140a9190614dc7565b60206040518083038186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190613ec7565b915050919050565b61147d83838360405180602001604052806000815250611ec5565b505050565b6000601654905090565b600061149782612628565b9050919050565b60006114a8610e65565b82106114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090614d67565b60405180910390fd5b600982815481106114fd576114fc61528f565b5b90600052602060002001549050919050565b611517610abd565b73ffffffffffffffffffffffffffffffffffffffff1661153561187c565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614cc7565b60405180910390fd5b80601290805190602001906115a1929190613bd1565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614c07565b60405180910390fd5b80915050919050565b611676610abd565b73ffffffffffffffffffffffffffffffffffffffff1661169461187c565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614cc7565b60405180910390fd5b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90614be7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b4610abd565b73ffffffffffffffffffffffffffffffffffffffff166117d261187c565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614cc7565b60405180910390fd5b6118326000612cc0565b565b60006010828154811061184a5761184961528f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118b5906150f6565b80601f01602080910402602001604051908101604052809291908181526020018280546118e1906150f6565b801561192e5780601f106119035761010080835404028352916020019161192e565b820191906000526020600020905b81548152906001019060200180831161191157829003601f168201915b5050505050905090565b6002601154141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614da7565b60405180910390fd5b600260118190555061198e6115a5565b156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614ba7565b60405180910390fd5b614e206119eb826119dd610e65565b612d8690919063ffffffff16565b1115611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614c27565b60405180910390fd5b601360009054906101000a900460ff16611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614b47565b60405180910390fd5b601454811115611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614947565b60405180910390fd5b34611adb82611acd611482565b612d9c90919063ffffffff16565b14611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614d87565b60405180910390fd5b60005b81811015611b4257611b2f33612db2565b8080611b3a90615159565b915050611b1e565b50600160118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b9f610abd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614aa7565b60405180910390fd5b8060056000611c1a610abd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cc7610abd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d0c919061490a565b60405180910390a35050565b60026011541415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614da7565b60405180910390fd5b6002601181905550611d6e610abd565b73ffffffffffffffffffffffffffffffffffffffff16611d8c61187c565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614cc7565b60405180910390fd5b601360019054906101000a900460ff1615611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990614c47565b60405180910390fd5b6000815111611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614a27565b60405180910390fd5b60005b8151811015611eb957611ea633838381518110611e9957611e9861528f565b5b6020026020010151612df9565b8080611eb190615159565b915050611e79565b50600160118190555050565b611ed6611ed0610abd565b83612841565b611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614d47565b60405180910390fd5b611f2184848484612e17565b50505050565b6060611f3282612e73565b9050919050565b60026011541415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614da7565b60405180910390fd5b6002601181905550611f8f6115a5565b15611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690614ba7565b60405180910390fd5b601360019054906101000a900460ff1661201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614a07565b60405180910390fd5b6000815111612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614a27565b60405180910390fd5b805161206d336122a4565b10156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614b67565b60405180910390fd5b60005b81518110156120f0576120dd8282815181106120d0576120cf61528f565b5b60200260200101516120fc565b80806120e890615159565b9150506120b1565b50600160118190555050565b6121046115a5565b15612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90614ba7565b60405180910390fd5b601360019054906101000a900460ff16612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614a07565b60405180910390fd5b6127108111156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614a47565b60405180910390fd5b6121e1816113a9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614b87565b60405180910390fd5b6122583382612df9565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016123059190614851565b60206040518083038186803b15801561231d57600080fd5b505afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235591906141fd565b915050919050565b612365610abd565b73ffffffffffffffffffffffffffffffffffffffff1661238361187c565b73ffffffffffffffffffffffffffffffffffffffff16146123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090614cc7565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000600d54905090565b601360019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124be610abd565b73ffffffffffffffffffffffffffffffffffffffff166124dc61187c565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906149c7565b60405180910390fd5b6125ab81612cc0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612621575061262082612fc5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612707836115bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278790614ae7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127b69061483c565b60006040518083038185875af1925050503d80600081146127f3576040519150601f19603f3d011682016040523d82523d6000602084013e6127f8565b606091505b505090508061283c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283390614ac7565b60405180910390fd5b505050565b600061284c82612628565b61288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614b07565b60405180910390fd5b6000612896836115bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061290557508373ffffffffffffffffffffffffffffffffffffffff166128ed84610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061291657506129158185612422565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661293f826115bc565b73ffffffffffffffffffffffffffffffffffffffff1614612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c90614ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614a87565b60405180910390fd5b612a108383836130a7565b612a1b600082612694565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6b9190614fc4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac29190614ee3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b836115a5565b612bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb990614967565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c06610abd565b604051612c139190614851565b60405180910390a1565b612c256115a5565b15612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614ba7565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ca9610abd565b604051612cb69190614851565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612d949190614ee3565b905092915050565b60008183612daa9190614f6a565b905092915050565b612dbc60156130b7565b6000612de9612dcb60156130cd565b612710614e20612ddb9190614fc4565b612d8690919063ffffffff16565b9050612df58282612df9565b5050565b612e138282604051806020016040528060008152506130db565b5050565b612e2284848461291f565b612e2e84848484613136565b612e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e64906149a7565b60405180910390fd5b50505050565b6060612e7e82612628565b612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb490614c87565b60405180910390fd5b6000600660008481526020019081526020016000208054612edd906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612f09906150f6565b8015612f565780601f10612f2b57610100808354040283529160200191612f56565b820191906000526020600020905b815481529060010190602001808311612f3957829003601f168201915b505050505090506000612f676132cd565b9050600081511415612f7d578192505050612fc0565b600082511115612fb2578082604051602001612f9a929190614818565b60405160208183030381529060405292505050612fc0565b612fbb8461335f565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061309057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806130a0575061309f82613406565b5b9050919050565b6130b2838383613470565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6130e58383613584565b6130f26000848484613136565b613131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613128906149a7565b60405180910390fd5b505050565b60006131578473ffffffffffffffffffffffffffffffffffffffff16613752565b156132c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613180610abd565b8786866040518563ffffffff1660e01b81526004016131a29493929190614895565b602060405180830381600087803b1580156131bc57600080fd5b505af19250505080156131ed57506040513d601f19601f820116820180604052508101906131ea919061415a565b60015b613270573d806000811461321d576040519150601f19603f3d011682016040523d82523d6000602084013e613222565b606091505b50600081511415613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906149a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132c5565b600190505b949350505050565b6060601280546132dc906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054613308906150f6565b80156133555780601f1061332a57610100808354040283529160200191613355565b820191906000526020600020905b81548152906001019060200180831161333857829003601f168201915b5050505050905090565b606061336a82612628565b6133a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a090614d07565b60405180910390fd5b60006133b36132cd565b905060008151116133d357604051806020016040528060008152506133fe565b806133dd84613765565b6040516020016133ee929190614818565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61347b8383836138c6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134be576134b9816138cb565b6134fd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134fc576134fb8382613914565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135405761353b81613a81565b61357f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461357e5761357d8282613b52565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90614c67565b60405180910390fd5b6135fd81612628565b1561363d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613634906149e7565b60405180910390fd5b613649600083836130a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136999190614ee3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156137ad576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138c1565b600082905060005b600082146137df5780806137c890615159565b915050600a826137d89190614f39565b91506137b5565b60008167ffffffffffffffff8111156137fb576137fa6152be565b5b6040519080825280601f01601f19166020018201604052801561382d5781602001600182028036833780820191505090505b5090505b600085146138ba576001826138469190614fc4565b9150600a8561385591906151a2565b60306138619190614ee3565b60f81b8183815181106138775761387661528f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138b39190614f39565b9450613831565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613921846116f4565b61392b9190614fc4565b9050600060086000848152602001908152602001600020549050818114613a10576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613a959190614fc4565b90506000600a6000848152602001908152602001600020549050600060098381548110613ac557613ac461528f565b5b906000526020600020015490508060098381548110613ae757613ae661528f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613b3657613b35615260565b5b6001900381819060005260206000200160009055905550505050565b6000613b5d836116f4565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054613bdd906150f6565b90600052602060002090601f016020900481019282613bff5760008555613c46565b82601f10613c1857805160ff1916838001178555613c46565b82800160010185558215613c46579182015b82811115613c45578251825591602001919060010190613c2a565b5b509050613c539190613c57565b5090565b5b80821115613c70576000816000905550600101613c58565b5090565b6000613c87613c8284614e07565b614de2565b90508083825260208201905082856020860282011115613caa57613ca96152f2565b5b60005b85811015613cda5781613cc08882613e70565b845260208401935060208301925050600181019050613cad565b5050509392505050565b6000613cf7613cf284614e33565b614de2565b905082815260208101848484011115613d1357613d126152f7565b5b613d1e8482856150b4565b509392505050565b6000613d39613d3484614e64565b614de2565b905082815260208101848484011115613d5557613d546152f7565b5b613d608482856150b4565b509392505050565b600081359050613d7781615c6e565b92915050565b600081519050613d8c81615c6e565b92915050565b600081359050613da181615c85565b92915050565b600082601f830112613dbc57613dbb6152ed565b5b8135613dcc848260208601613c74565b91505092915050565b600081359050613de481615c9c565b92915050565b600081359050613df981615cb3565b92915050565b600081519050613e0e81615cb3565b92915050565b600082601f830112613e2957613e286152ed565b5b8135613e39848260208601613ce4565b91505092915050565b600082601f830112613e5757613e566152ed565b5b8135613e67848260208601613d26565b91505092915050565b600081359050613e7f81615cca565b92915050565b600081519050613e9481615cca565b92915050565b600060208284031215613eb057613eaf615301565b5b6000613ebe84828501613d68565b91505092915050565b600060208284031215613edd57613edc615301565b5b6000613eeb84828501613d7d565b91505092915050565b600060208284031215613f0a57613f09615301565b5b6000613f1884828501613d92565b91505092915050565b60008060408385031215613f3857613f37615301565b5b6000613f4685828601613d68565b9250506020613f5785828601613d68565b9150509250929050565b600080600060608486031215613f7a57613f79615301565b5b6000613f8886828701613d68565b9350506020613f9986828701613d68565b9250506040613faa86828701613e70565b9150509250925092565b60008060008060808587031215613fce57613fcd615301565b5b6000613fdc87828801613d68565b9450506020613fed87828801613d68565b9350506040613ffe87828801613e70565b925050606085013567ffffffffffffffff81111561401f5761401e6152fc565b5b61402b87828801613e14565b91505092959194509250565b6000806040838503121561404e5761404d615301565b5b600061405c85828601613d68565b925050602061406d85828601613dd5565b9150509250929050565b6000806040838503121561408e5761408d615301565b5b600061409c85828601613d68565b92505060206140ad85828601613e70565b9150509250929050565b6000602082840312156140cd576140cc615301565b5b600082013567ffffffffffffffff8111156140eb576140ea6152fc565b5b6140f784828501613da7565b91505092915050565b60006020828403121561411657614115615301565b5b600061412484828501613dd5565b91505092915050565b60006020828403121561414357614142615301565b5b600061415184828501613dea565b91505092915050565b6000602082840312156141705761416f615301565b5b600061417e84828501613dff565b91505092915050565b60006020828403121561419d5761419c615301565b5b600082013567ffffffffffffffff8111156141bb576141ba6152fc565b5b6141c784828501613e42565b91505092915050565b6000602082840312156141e6576141e5615301565b5b60006141f484828501613e70565b91505092915050565b60006020828403121561421357614212615301565b5b600061422184828501613e85565b91505092915050565b6142338161507e565b82525050565b61424281614ff8565b82525050565b6142518161501c565b82525050565b600061426282614e95565b61426c8185614eab565b935061427c8185602086016150c3565b61428581615306565b840191505092915050565b600061429b82614ea0565b6142a58185614ec7565b93506142b58185602086016150c3565b6142be81615306565b840191505092915050565b60006142d482614ea0565b6142de8185614ed8565b93506142ee8185602086016150c3565b80840191505092915050565b6000614307601783614ec7565b915061431282615317565b602082019050919050565b600061432a601483614ec7565b915061433582615340565b602082019050919050565b600061434d602b83614ec7565b915061435882615369565b604082019050919050565b6000614370603283614ec7565b915061437b826153b8565b604082019050919050565b6000614393602683614ec7565b915061439e82615407565b604082019050919050565b60006143b6601c83614ec7565b91506143c182615456565b602082019050919050565b60006143d9602883614ec7565b91506143e48261547f565b604082019050919050565b60006143fc601d83614ec7565b9150614407826154ce565b602082019050919050565b600061441f602c83614ec7565b915061442a826154f7565b604082019050919050565b6000614442602683614ec7565b915061444d82615546565b604082019050919050565b6000614465602483614ec7565b915061447082615595565b604082019050919050565b6000614488601983614ec7565b9150614493826155e4565b602082019050919050565b60006144ab603a83614ec7565b91506144b68261560d565b604082019050919050565b60006144ce601d83614ec7565b91506144d98261565c565b602082019050919050565b60006144f1602c83614ec7565b91506144fc82615685565b604082019050919050565b6000614514602b83614ec7565b915061451f826156d4565b604082019050919050565b6000614537601a83614ec7565b915061454282615723565b602082019050919050565b600061455a603783614ec7565b91506145658261574c565b604082019050919050565b600061457d603c83614ec7565b91506145888261579b565b604082019050919050565b60006145a0601083614ec7565b91506145ab826157ea565b602082019050919050565b60006145c3603883614ec7565b91506145ce82615813565b604082019050919050565b60006145e6602a83614ec7565b91506145f182615862565b604082019050919050565b6000614609602983614ec7565b9150614614826158b1565b604082019050919050565b600061462c602a83614ec7565b915061463782615900565b604082019050919050565b600061464f602d83614ec7565b915061465a8261594f565b604082019050919050565b6000614672602083614ec7565b915061467d8261599e565b602082019050919050565b6000614695603183614ec7565b91506146a0826159c7565b604082019050919050565b60006146b8602c83614ec7565b91506146c382615a16565b604082019050919050565b60006146db602083614ec7565b91506146e682615a65565b602082019050919050565b60006146fe602983614ec7565b915061470982615a8e565b604082019050919050565b6000614721602f83614ec7565b915061472c82615add565b604082019050919050565b6000614744602183614ec7565b915061474f82615b2c565b604082019050919050565b6000614767600083614ebc565b915061477282615b7b565b600082019050919050565b600061478a603183614ec7565b915061479582615b7e565b604082019050919050565b60006147ad602c83614ec7565b91506147b882615bcd565b604082019050919050565b60006147d0601e83614ec7565b91506147db82615c1c565b602082019050919050565b60006147f3601f83614ec7565b91506147fe82615c45565b602082019050919050565b61481281615074565b82525050565b600061482482856142c9565b915061483082846142c9565b91508190509392505050565b60006148478261475a565b9150819050919050565b60006020820190506148666000830184614239565b92915050565b6000604082019050614881600083018561422a565b61488e6020830184614809565b9392505050565b60006080820190506148aa6000830187614239565b6148b76020830186614239565b6148c46040830185614809565b81810360608301526148d68184614257565b905095945050505050565b60006040820190506148f66000830185614239565b6149036020830184614809565b9392505050565b600060208201905061491f6000830184614248565b92915050565b6000602082019050818103600083015261493f8184614290565b905092915050565b60006020820190508181036000830152614960816142fa565b9050919050565b600060208201905081810360008301526149808161431d565b9050919050565b600060208201905081810360008301526149a081614340565b9050919050565b600060208201905081810360008301526149c081614363565b9050919050565b600060208201905081810360008301526149e081614386565b9050919050565b60006020820190508181036000830152614a00816143a9565b9050919050565b60006020820190508181036000830152614a20816143cc565b9050919050565b60006020820190508181036000830152614a40816143ef565b9050919050565b60006020820190508181036000830152614a6081614412565b9050919050565b60006020820190508181036000830152614a8081614435565b9050919050565b60006020820190508181036000830152614aa081614458565b9050919050565b60006020820190508181036000830152614ac08161447b565b9050919050565b60006020820190508181036000830152614ae08161449e565b9050919050565b60006020820190508181036000830152614b00816144c1565b9050919050565b60006020820190508181036000830152614b20816144e4565b9050919050565b60006020820190508181036000830152614b4081614507565b9050919050565b60006020820190508181036000830152614b608161452a565b9050919050565b60006020820190508181036000830152614b808161454d565b9050919050565b60006020820190508181036000830152614ba081614570565b9050919050565b60006020820190508181036000830152614bc081614593565b9050919050565b60006020820190508181036000830152614be0816145b6565b9050919050565b60006020820190508181036000830152614c00816145d9565b9050919050565b60006020820190508181036000830152614c20816145fc565b9050919050565b60006020820190508181036000830152614c408161461f565b9050919050565b60006020820190508181036000830152614c6081614642565b9050919050565b60006020820190508181036000830152614c8081614665565b9050919050565b60006020820190508181036000830152614ca081614688565b9050919050565b60006020820190508181036000830152614cc0816146ab565b9050919050565b60006020820190508181036000830152614ce0816146ce565b9050919050565b60006020820190508181036000830152614d00816146f1565b9050919050565b60006020820190508181036000830152614d2081614714565b9050919050565b60006020820190508181036000830152614d4081614737565b9050919050565b60006020820190508181036000830152614d608161477d565b9050919050565b60006020820190508181036000830152614d80816147a0565b9050919050565b60006020820190508181036000830152614da0816147c3565b9050919050565b60006020820190508181036000830152614dc0816147e6565b9050919050565b6000602082019050614ddc6000830184614809565b92915050565b6000614dec614dfd565b9050614df88282615128565b919050565b6000604051905090565b600067ffffffffffffffff821115614e2257614e216152be565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e4e57614e4d6152be565b5b614e5782615306565b9050602081019050919050565b600067ffffffffffffffff821115614e7f57614e7e6152be565b5b614e8882615306565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614eee82615074565b9150614ef983615074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f2e57614f2d6151d3565b5b828201905092915050565b6000614f4482615074565b9150614f4f83615074565b925082614f5f57614f5e615202565b5b828204905092915050565b6000614f7582615074565b9150614f8083615074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fb957614fb86151d3565b5b828202905092915050565b6000614fcf82615074565b9150614fda83615074565b925082821015614fed57614fec6151d3565b5b828203905092915050565b600061500382615054565b9050919050565b600061501582615054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061508982615090565b9050919050565b600061509b826150a2565b9050919050565b60006150ad82615054565b9050919050565b82818337600083830152505050565b60005b838110156150e15780820151818401526020810190506150c6565b838111156150f0576000848401525b50505050565b6000600282049050600182168061510e57607f821691505b6020821081141561512257615121615231565b5b50919050565b61513182615306565b810181811067ffffffffffffffff821117156151505761514f6152be565b5b80604052505050565b600061516482615074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615197576151966151d3565b5b600182019050919050565b60006151ad82615074565b91506151b883615074565b9250826151c8576151c7615202565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53706163652050756e6b204f776e657273206772616e7420706572696f64206860008201527f617320656e646564000000000000000000000000000000000000000000000000602082015250565b7f50726f7669646520616e206172726179206f6620746f6b656e20494473000000600082015250565b7f546f6b656e204944206e6f7420616c6c6f636174656420666f7220537061636560008201527f2050756e6b206f776e6572730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206d75737420626520616374697665000000000000600082015250565b7f596f7520646f206e6f74206f776e20746865207265717569726564206e756d6260008201527f6572206f662053706163652050756e6b20746f6b656e73000000000000000000602082015250565b7f596f75206d757374206f776e2074686520636f72726573706f6e64696e67205360008201527f706163652050756e6b20746f206d696e74207468697320746f6b656e00000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4f776e657273204772616e74206d757374206265206f766572206265666f726560008201527f20796f752063616e206d696e7400000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2070757263686173650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615c7781614ff8565b8114615c8257600080fd5b50565b615c8e8161500a565b8114615c9957600080fd5b50565b615ca58161501c565b8114615cb057600080fd5b50565b615cbc81615028565b8114615cc757600080fd5b50565b615cd381615074565b8114615cde57600080fd5b5056fea2646970667358221220777b5525956c68ec39f6ac8e1c5a70355463db8926fb52e0fbd2b76104d4650464736f6c63430008070033

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.