ETH Price: $3,301.21 (-3.24%)
Gas: 20 Gwei

Token

Found Nouns (FN)
 

Overview

Max Total Supply

3,266 FN

Holders

607

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
symbiotech.eth
Balance
9 FN
0x5bfeb4ca066c9458842ac89b6e5cd983bd1a1034
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FoundNounToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FoundNounToken.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.6;

import { Ownable } from '@openzeppelin/contracts/access/Ownable.sol';
import { Strings } from '@openzeppelin/contracts/utils/Strings.sol';
import { INounsDescriptor } from './INounsDescriptor.sol';
import { INounsSeeder } from './INounsSeeder.sol';
import { ERC721 } from '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import { IERC721 } from '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import { ERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

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

    uint256 public constant max_tokens = 10000;
    uint8 public constant mint_limit = 10;

    // The noun seeds
    mapping(uint256 => INounsSeeder.Seed) public seeds;

    // Number of mints per wallet
    mapping(address => uint256) public mints;

    // The internal Found Noun ID tracker
    uint256 private _currentNounId;

    // Whether the descriptor can be updated
    bool public isDescriptorLocked;

    // Whether the seeder can be updated
    bool public isSeederLocked;

    // The Nouns token URI descriptor
    INounsDescriptor public descriptor;

    // The Nouns token seeder
    INounsSeeder public seeder;

    // Mint status
    bool public mintActive = false;

    /**
     * @notice Require that the descriptor has not been locked.
     */
    modifier whenDescriptorNotLocked() {
        require(!isDescriptorLocked, 'Descriptor is locked');
        _;
    }

    /**
     * @notice Require that the seeder has not been locked.
     */
    modifier whenSeederNotLocked() {
        require(!isSeederLocked, 'Seeder is locked');
        _;
    }

    constructor() ERC721('Found Nouns', 'FN') {
        descriptor = INounsDescriptor(0x7006337351B6127EfAcf63643Ea97915e80268A9);
        seeder = INounsSeeder(0xA44A4caa7690ed8791237b6c0551e48f404Cf233);
    }

    function mint(uint256 mintAmount) public {
        require(mintActive, 'mint not active');
        require(mintAmount + totalSupply() <= max_tokens, 'exceeds maximum tokens');
        require(mintAmount + mints[msg.sender] <= mint_limit, 'minted too many');

        for (uint i = 0; i < mintAmount; i++) {
            _mintTo(msg.sender, _currentNounId++);
        }
    }

    function _mintTo(address to, uint256 nounId) internal {
        seeds[nounId] = seeder.generateSeed(nounId, descriptor);
        _safeMint(to, nounId);
        mints[to]++;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), 'URI query for nonexistent token');

        string memory nounId = tokenId.toString();
        string memory name = string(abi.encodePacked('Found Noun ', nounId));
        string memory description = string(abi.encodePacked('Found Noun ', nounId, ' is not a member of the Nouns DAO'));

        return descriptor.genericDataURI(name, description, seeds[tokenId]);
    }

    /**
     * @notice Set the token URI descriptor.
     * @dev Only callable by the owner when not locked.
     */
    function setDescriptor(INounsDescriptor _descriptor) external onlyOwner whenDescriptorNotLocked {
        descriptor = _descriptor;
    }

    /**
     * @notice Lock the descriptor.
     * @dev This cannot be reversed and is only callable by the owner when not locked.
     */
    function lockDescriptor() external onlyOwner whenDescriptorNotLocked {
        isDescriptorLocked = true;
    }

    /**
     * @notice Set the token seeder.
     * @dev Only callable by the owner when not locked.
     */
    function setSeeder(INounsSeeder _seeder) external onlyOwner whenSeederNotLocked {
        seeder = _seeder;
    }

    /**
     * @notice Lock the seeder.
     * @dev This cannot be reversed and is only callable by the owner when not locked.
     */
    function lockSeeder() external onlyOwner whenSeederNotLocked {
        isSeederLocked = true;
    }

    function toggleMintStatus() external onlyOwner {
        mintActive = !mintActive;
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 15 : INounsDescriptor.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.6;

import { INounsSeeder } from './INounsSeeder.sol';

interface INounsDescriptor {
    event PartsLocked();

    event DataURIToggled(bool enabled);

    event BaseURIUpdated(string baseURI);

    function arePartsLocked() external returns (bool);

    function isDataURIEnabled() external returns (bool);

    function baseURI() external returns (string memory);

    function palettes(uint8 paletteIndex, uint256 colorIndex) external view returns (string memory);

    function backgrounds(uint256 index) external view returns (string memory);

    function bodies(uint256 index) external view returns (bytes memory);

    function accessories(uint256 index) external view returns (bytes memory);

    function heads(uint256 index) external view returns (bytes memory);

    function glasses(uint256 index) external view returns (bytes memory);

    function customCount() external view returns (uint256);

    function backgroundCount() external view returns (uint256);

    function bodyCount() external view returns (uint256);

    function accessoryCount() external view returns (uint256);

    function headCount() external view returns (uint256);

    function glassesCount() external view returns (uint256);

    function addManyColorsToPalette(uint8 paletteIndex, string[] calldata newColors) external;

    function addManyBackgrounds(string[] calldata backgrounds) external;

    function addManyBodies(bytes[] calldata bodies) external;

    function addManyAccessories(bytes[] calldata accessories) external;

    function addManyHeads(bytes[] calldata heads) external;

    function addManyGlasses(bytes[] calldata glasses) external;

    function addColorToPalette(uint8 paletteIndex, string calldata color) external;

    function addBackground(string calldata background) external;

    function addBody(bytes calldata body) external;

    function addAccessory(bytes calldata accessory) external;

    function addHead(bytes calldata head) external;

    function addCustomSeed(uint256 nounId, INounsSeeder.Seed memory seed) external;

    function addGlasses(bytes calldata glasses) external;

    function lockParts() external;

    function toggleDataURIEnabled() external;

    function setBaseURI(string calldata baseURI) external;

    function tokenURI(uint256 tokenId, INounsSeeder.Seed memory seed) external view returns (string memory);

    function dataURI(uint256 tokenId, INounsSeeder.Seed memory seed) external view returns (string memory);

    function genericDataURI(
        string calldata name,
        string calldata description,
        INounsSeeder.Seed memory seed
    ) external view returns (string memory);

    function generateSVGImage(INounsSeeder.Seed memory seed) external view returns (string memory);

    function lookupCustomSeed(uint256 nounId) external view returns (INounsSeeder.Seed memory);
}

File 5 of 15 : INounsSeeder.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.6;

import { INounsDescriptor } from './INounsDescriptor.sol';

interface INounsSeeder {
    struct Seed {
        uint48 background;
        uint48 body;
        uint48 accessory;
        uint48 head;
        uint48 glasses;
    }

    function generateSeed(uint256 nounId, INounsDescriptor descriptor) external view returns (Seed memory);
}

File 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 8 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

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 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 15 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract INounsDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDescriptorLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSeederLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockSeeder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint_limit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"seeder","outputs":[{"internalType":"contract INounsSeeder","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract INounsDescriptor","name":"_descriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract INounsSeeder","name":"_seeder","type":"address"}],"name":"setSeeder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintStatus","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":"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"}]

60806040526000600f60146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f466f756e64204e6f756e730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464e000000000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200019d60201b60201c565b620001a560201b60201c565b8160019080519060200190620000d192919062000269565b508060029080519060200190620000ea92919062000269565b505050737006337351b6127efacf63643ea97915e80268a9600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a44a4caa7690ed8791237b6c0551e48f404cf233600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200037e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002779062000319565b90600052602060002090601f0160209004810192826200029b5760008555620002e7565b82601f10620002b657805160ff1916838001178555620002e7565b82800160010185558215620002e7579182015b82811115620002e6578251825591602001919060010190620002c9565b5b509050620002f69190620002fa565b5090565b5b8082111562000315576000816000905550600101620002fb565b5090565b600060028204905060018216806200033257607f821691505b602082108114156200034957620003486200034f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147c5806200038e6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80636352211e1161011a578063b88d4fde116100ad578063d50b31eb1161007c578063d50b31eb146105b7578063d8cfb999146105d3578063e985e9c5146105dd578063f0503e801461060d578063f2fde38b1461064157610206565b8063b88d4fde1461052f578063c1b8e4e11461054b578063c87b56dd14610569578063c8fc0c231461059957610206565b80638da5cb5b116100e95780638da5cb5b146104bb57806395d89b41146104d9578063a0712d68146104f7578063a22cb4651461051357610206565b80636352211e14610433578063684931ed1461046357806370a0823114610481578063715018a6146104b157610206565b806325fd90f31161019d57806342842e0e1161016c57806342842e0e1461038f5780634f6ccce7146103ab57806354572e09146103db5780635660f851146103f95780635f295a671461042957610206565b806325fd90f3146103195780632f745c5914610337578063303e74df1461036757806341b5d0de1461038557610206565b8063095ea7b3116101d9578063095ea7b3146102a5578063114e3101146102c157806318160ddd146102df57806323b872dd146102fd57610206565b806301b9a3971461020b57806301ffc9a71461022757806306fdde0314610257578063081812fc14610275575b600080fd5b61022560048036038101906102209190613015565b61065d565b005b610241600480360381019061023c9190612fbb565b61076d565b60405161024e91906136d3565b60405180910390f35b61025f6107e7565b60405161026c9190613724565b60405180910390f35b61028f600480360381019061028a91906130e5565b610879565b60405161029c919061366c565b60405180910390f35b6102bf60048036038101906102ba9190612f7b565b6108fe565b005b6102c9610a16565b6040516102d69190613b02565b60405180910390f35b6102e7610a1b565b6040516102f49190613a6b565b60405180910390f35b61031760048036038101906103129190612e65565b610a28565b005b610321610a88565b60405161032e91906136d3565b60405180910390f35b610351600480360381019061034c9190612f7b565b610a9b565b60405161035e9190613a6b565b60405180910390f35b61036f610b40565b60405161037c91906136ee565b60405180910390f35b61038d610b66565b005b6103a960048036038101906103a49190612e65565b610c4f565b005b6103c560048036038101906103c091906130e5565b610c6f565b6040516103d29190613a6b565b60405180910390f35b6103e3610ce0565b6040516103f09190613a6b565b60405180910390f35b610413600480360381019061040e9190612df8565b610ce6565b6040516104209190613a6b565b60405180910390f35b610431610cfe565b005b61044d600480360381019061044891906130e5565b610de7565b60405161045a919061366c565b60405180910390f35b61046b610e99565b6040516104789190613709565b60405180910390f35b61049b60048036038101906104969190612df8565b610ebf565b6040516104a89190613a6b565b60405180910390f35b6104b9610f77565b005b6104c3610fff565b6040516104d0919061366c565b60405180910390f35b6104e1611028565b6040516104ee9190613724565b60405180910390f35b610511600480360381019061050c91906130e5565b6110ba565b005b61052d60048036038101906105289190612f3b565b611233565b005b61054960048036038101906105449190612eb8565b611249565b005b6105536112ab565b60405161056091906136d3565b60405180910390f35b610583600480360381019061057e91906130e5565b6112be565b6040516105909190613724565b60405180910390f35b6105a161142d565b6040516105ae91906136d3565b60405180910390f35b6105d160048036038101906105cc9190613042565b611440565b005b6105db611550565b005b6105f760048036038101906105f29190612e25565b6115f8565b60405161060491906136d3565b60405180910390f35b610627600480360381019061062291906130e5565b61168c565b604051610638959493929190613aaf565b60405180910390f35b61065b60048036038101906106569190612df8565b61171c565b005b610665611814565b73ffffffffffffffffffffffffffffffffffffffff16610683610fff565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d09061396b565b60405180910390fd5b600e60009054906101000a900460ff1615610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061378b565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e057506107df8261181c565b5b9050919050565b6060600180546107f690613df5565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613df5565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000610884826118fe565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba9061394b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610de7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610971906139cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611814565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611814565b6115f8565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906138ab565b60405180910390fd5b610a11838361196a565b505050565b600a81565b6000600980549050905090565b610a39610a33611814565b82611a23565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613a0b565b60405180910390fd5b610a83838383611b01565b505050565b600f60149054906101000a900460ff1681565b6000610aa683610ebf565b8210610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906137cb565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b6e611814565b73ffffffffffffffffffffffffffffffffffffffff16610b8c610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd99061396b565b60405180910390fd5b600e60009054906101000a900460ff1615610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c299061378b565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b610c6a83838360405180602001604052806000815250611249565b505050565b6000610c79610a1b565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613a4b565b60405180910390fd5b60098281548110610cce57610ccd614010565b5b90600052602060002001549050919050565b61271081565b600c6020528060005260406000206000915090505481565b610d06611814565b73ffffffffffffffffffffffffffffffffffffffff16610d24610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061396b565b60405180910390fd5b600e60019054906101000a900460ff1615610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061392b565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e87906138eb565b60405180910390fd5b80915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f27906138cb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7f611814565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061396b565b60405180910390fd5b610ffd6000611d5d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461103790613df5565b80601f016020809104026020016040519081016040528092919081815260200182805461106390613df5565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b600f60149054906101000a900460ff16611109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611100906139eb565b60405180910390fd5b612710611114610a1b565b8261111f9190613be7565b1115611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906139ab565b60405180910390fd5b600a60ff16600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111b09190613be7565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a2b565b60405180910390fd5b60005b8181101561122f5761121c33600d600081548092919061121390613eda565b91905055611e21565b808061122790613eda565b9150506111f4565b5050565b61124561123e611814565b8383612040565b5050565b61125a611254611814565b83611a23565b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613a0b565b60405180910390fd5b6112a5848484846121ad565b50505050565b600e60009054906101000a900460ff1681565b60606112c9826118fe565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906137ab565b60405180910390fd5b600061131383612209565b9050600081604051602001611328919061361d565b604051602081830303815290604052905060008260405160200161134c919061363f565b6040516020818303038152906040529050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8383600b60008a81526020019081526020016000206040518463ffffffff1660e01b81526004016113ce93929190613746565b60006040518083038186803b1580156113e657600080fd5b505afa1580156113fa573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611423919061306f565b9350505050919050565b600e60019054906101000a900460ff1681565b611448611814565b73ffffffffffffffffffffffffffffffffffffffff16611466610fff565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061396b565b60405180910390fd5b600e60019054906101000a900460ff161561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061392b565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611558611814565b73ffffffffffffffffffffffffffffffffffffffff16611576610fff565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061396b565b60405180910390fd5b600f60149054906101000a900460ff1615600f60146101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b611724611814565b73ffffffffffffffffffffffffffffffffffffffff16611742610fff565b73ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061396b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff9061380b565b60405180910390fd5b61181181611d5d565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118f757506118f68261236a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119dd83610de7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a2e826118fe565b611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061388b565b60405180910390fd5b6000611a7883610de7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae757508373ffffffffffffffffffffffffffffffffffffffff16611acf84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b80611af85750611af781856115f8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b2182610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061398b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9061384b565b60405180910390fd5b611bf28383836123d4565b611bfd60008261196a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4d9190613c6e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca49190613be7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e9982600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611ea0929190613a86565b60a06040518083038186803b158015611eb857600080fd5b505afa158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef091906130b8565b600b600083815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff160217905550905050611fe782826124e8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061203790613eda565b91905055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a69061386b565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121a091906136d3565b60405180910390a3505050565b6121b8848484611b01565b6121c484848484612506565b612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906137eb565b60405180910390fd5b50505050565b60606000821415612251576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612365565b600082905060005b6000821461228357808061226c90613eda565b915050600a8261227c9190613c3d565b9150612259565b60008167ffffffffffffffff81111561229f5761229e61403f565b5b6040519080825280601f01601f1916602001820160405280156122d15781602001600182028036833780820191505090505b5090505b6000851461235e576001826122ea9190613c6e565b9150600a856122f99190613f23565b60306123059190613be7565b60f81b81838151811061231b5761231a614010565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123579190613c3d565b94506122d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123df83838361269d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124225761241d816126a2565b612461565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124605761245f83826126eb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a45761249f81612858565b6124e3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e2576124e18282612929565b5b5b505050565b6125028282604051806020016040528060008152506129a8565b5050565b60006125278473ffffffffffffffffffffffffffffffffffffffff16612a03565b15612690578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612550611814565b8786866040518563ffffffff1660e01b81526004016125729493929190613687565b602060405180830381600087803b15801561258c57600080fd5b505af19250505080156125bd57506040513d601f19601f820116820180604052508101906125ba9190612fe8565b60015b612640573d80600081146125ed576040519150601f19603f3d011682016040523d82523d6000602084013e6125f2565b606091505b50600081511415612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f906137eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612695565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126f884610ebf565b6127029190613c6e565b90506000600860008481526020019081526020016000205490508181146127e7576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061286c9190613c6e565b90506000600a600084815260200190815260200160002054905060006009838154811061289c5761289b614010565b5b9060005260206000200154905080600983815481106128be576128bd614010565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061290d5761290c613fe1565b5b6001900381819060005260206000200160009055905550505050565b600061293483610ebf565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6129b28383612a16565b6129bf6000848484612506565b6129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f5906137eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d9061390b565b60405180910390fd5b612a8f816118fe565b15612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac69061382b565b60405180910390fd5b612adb600083836123d4565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2b9190613be7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612bf7612bf284613b42565b613b1d565b905082815260208101848484011115612c1357612c12614078565b5b612c1e848285613db3565b509392505050565b6000612c39612c3484613b73565b613b1d565b905082815260208101848484011115612c5557612c54614078565b5b612c60848285613dc2565b509392505050565b600081359050612c77816146ee565b92915050565b600081359050612c8c81614705565b92915050565b600081359050612ca18161471c565b92915050565b600081519050612cb68161471c565b92915050565b600082601f830112612cd157612cd061406e565b5b8135612ce1848260208601612be4565b91505092915050565b600081359050612cf981614733565b92915050565b600081359050612d0e8161474a565b92915050565b600082601f830112612d2957612d2861406e565b5b8151612d39848260208601612c26565b91505092915050565b600060a08284031215612d5857612d57614073565b5b612d6260a0613b1d565b90506000612d7284828501612de3565b6000830152506020612d8684828501612de3565b6020830152506040612d9a84828501612de3565b6040830152506060612dae84828501612de3565b6060830152506080612dc284828501612de3565b60808301525092915050565b600081359050612ddd81614761565b92915050565b600081519050612df281614778565b92915050565b600060208284031215612e0e57612e0d614082565b5b6000612e1c84828501612c68565b91505092915050565b60008060408385031215612e3c57612e3b614082565b5b6000612e4a85828601612c68565b9250506020612e5b85828601612c68565b9150509250929050565b600080600060608486031215612e7e57612e7d614082565b5b6000612e8c86828701612c68565b9350506020612e9d86828701612c68565b9250506040612eae86828701612dce565b9150509250925092565b60008060008060808587031215612ed257612ed1614082565b5b6000612ee087828801612c68565b9450506020612ef187828801612c68565b9350506040612f0287828801612dce565b925050606085013567ffffffffffffffff811115612f2357612f2261407d565b5b612f2f87828801612cbc565b91505092959194509250565b60008060408385031215612f5257612f51614082565b5b6000612f6085828601612c68565b9250506020612f7185828601612c7d565b9150509250929050565b60008060408385031215612f9257612f91614082565b5b6000612fa085828601612c68565b9250506020612fb185828601612dce565b9150509250929050565b600060208284031215612fd157612fd0614082565b5b6000612fdf84828501612c92565b91505092915050565b600060208284031215612ffe57612ffd614082565b5b600061300c84828501612ca7565b91505092915050565b60006020828403121561302b5761302a614082565b5b600061303984828501612cea565b91505092915050565b60006020828403121561305857613057614082565b5b600061306684828501612cff565b91505092915050565b60006020828403121561308557613084614082565b5b600082015167ffffffffffffffff8111156130a3576130a261407d565b5b6130af84828501612d14565b91505092915050565b600060a082840312156130ce576130cd614082565b5b60006130dc84828501612d42565b91505092915050565b6000602082840312156130fb576130fa614082565b5b600061310984828501612dce565b91505092915050565b61311b81613cb4565b82525050565b61312a81613cc6565b82525050565b600061313b82613ba4565b6131458185613bba565b9350613155818560208601613dc2565b61315e81614087565b840191505092915050565b61317281613d6b565b82525050565b61318181613d8f565b82525050565b600061319282613baf565b61319c8185613bcb565b93506131ac818560208601613dc2565b6131b581614087565b840191505092915050565b60006131cb82613baf565b6131d58185613bdc565b93506131e5818560208601613dc2565b80840191505092915050565b60006131fe601483613bcb565b9150613209826140d9565b602082019050919050565b6000613221601f83613bcb565b915061322c82614102565b602082019050919050565b6000613244602b83613bcb565b915061324f8261412b565b604082019050919050565b6000613267603283613bcb565b91506132728261417a565b604082019050919050565b600061328a602683613bcb565b9150613295826141c9565b604082019050919050565b60006132ad601c83613bcb565b91506132b882614218565b602082019050919050565b60006132d0602183613bdc565b91506132db82614241565b602182019050919050565b60006132f3602483613bcb565b91506132fe82614290565b604082019050919050565b6000613316601983613bcb565b9150613321826142df565b602082019050919050565b6000613339602c83613bcb565b915061334482614308565b604082019050919050565b600061335c603883613bcb565b915061336782614357565b604082019050919050565b600061337f602a83613bcb565b915061338a826143a6565b604082019050919050565b60006133a2602983613bcb565b91506133ad826143f5565b604082019050919050565b60006133c5602083613bcb565b91506133d082614444565b602082019050919050565b60006133e8601083613bcb565b91506133f38261446d565b602082019050919050565b600061340b602c83613bcb565b915061341682614496565b604082019050919050565b600061342e600b83613bdc565b9150613439826144e5565b600b82019050919050565b6000613451602083613bcb565b915061345c8261450e565b602082019050919050565b6000613474602983613bcb565b915061347f82614537565b604082019050919050565b6000613497601683613bcb565b91506134a282614586565b602082019050919050565b60006134ba602183613bcb565b91506134c5826145af565b604082019050919050565b60006134dd600f83613bcb565b91506134e8826145fe565b602082019050919050565b6000613500603183613bcb565b915061350b82614627565b604082019050919050565b6000613523600f83613bcb565b915061352e82614676565b602082019050919050565b6000613546602c83613bcb565b91506135518261469f565b604082019050919050565b60a08201600080830154905061357181613e27565b61357e60008601826135f0565b5061358881613e8f565b61359560208601826135f0565b5061359f81613e41565b6135ac60408601826135f0565b506135b681613e5b565b6135c360608601826135f0565b506135cd81613e75565b6135da60808601826135f0565b5050505050565b6135ea81613d42565b82525050565b6135f981613d4c565b82525050565b61360881613d4c565b82525050565b61361781613d5e565b82525050565b600061362882613421565b915061363482846131c0565b915081905092915050565b600061364a82613421565b915061365682846131c0565b9150613661826132c3565b915081905092915050565b60006020820190506136816000830184613112565b92915050565b600060808201905061369c6000830187613112565b6136a96020830186613112565b6136b660408301856135e1565b81810360608301526136c88184613130565b905095945050505050565b60006020820190506136e86000830184613121565b92915050565b60006020820190506137036000830184613169565b92915050565b600060208201905061371e6000830184613178565b92915050565b6000602082019050818103600083015261373e8184613187565b905092915050565b600060e08201905081810360008301526137608186613187565b905081810360208301526137748185613187565b9050613783604083018461355c565b949350505050565b600060208201905081810360008301526137a4816131f1565b9050919050565b600060208201905081810360008301526137c481613214565b9050919050565b600060208201905081810360008301526137e481613237565b9050919050565b600060208201905081810360008301526138048161325a565b9050919050565b600060208201905081810360008301526138248161327d565b9050919050565b60006020820190508181036000830152613844816132a0565b9050919050565b60006020820190508181036000830152613864816132e6565b9050919050565b6000602082019050818103600083015261388481613309565b9050919050565b600060208201905081810360008301526138a48161332c565b9050919050565b600060208201905081810360008301526138c48161334f565b9050919050565b600060208201905081810360008301526138e481613372565b9050919050565b6000602082019050818103600083015261390481613395565b9050919050565b60006020820190508181036000830152613924816133b8565b9050919050565b60006020820190508181036000830152613944816133db565b9050919050565b60006020820190508181036000830152613964816133fe565b9050919050565b6000602082019050818103600083015261398481613444565b9050919050565b600060208201905081810360008301526139a481613467565b9050919050565b600060208201905081810360008301526139c48161348a565b9050919050565b600060208201905081810360008301526139e4816134ad565b9050919050565b60006020820190508181036000830152613a04816134d0565b9050919050565b60006020820190508181036000830152613a24816134f3565b9050919050565b60006020820190508181036000830152613a4481613516565b9050919050565b60006020820190508181036000830152613a6481613539565b9050919050565b6000602082019050613a8060008301846135e1565b92915050565b6000604082019050613a9b60008301856135e1565b613aa86020830184613169565b9392505050565b600060a082019050613ac460008301886135ff565b613ad160208301876135ff565b613ade60408301866135ff565b613aeb60608301856135ff565b613af860808301846135ff565b9695505050505050565b6000602082019050613b17600083018461360e565b92915050565b6000613b27613b38565b9050613b338282613ea9565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5d57613b5c61403f565b5b613b6682614087565b9050602081019050919050565b600067ffffffffffffffff821115613b8e57613b8d61403f565b5b613b9782614087565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf282613d42565b9150613bfd83613d42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3257613c31613f54565b5b828201905092915050565b6000613c4882613d42565b9150613c5383613d42565b925082613c6357613c62613f83565b5b828204905092915050565b6000613c7982613d42565b9150613c8483613d42565b925082821015613c9757613c96613f54565b5b828203905092915050565b600065ffffffffffff82169050919050565b6000613cbf82613d22565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d0982613cb4565b9050919050565b6000613d1b82613cb4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b600060ff82169050919050565b6000613d7682613d7d565b9050919050565b6000613d8882613d22565b9050919050565b6000613d9a82613da1565b9050919050565b6000613dac82613d22565b9050919050565b82818337600083830152505050565b60005b83811015613de0578082015181840152602081019050613dc5565b83811115613def576000848401525b50505050565b60006002820490506001821680613e0d57607f821691505b60208210811415613e2157613e20613fb2565b5b50919050565b6000613e3a613e3583614098565b613ca2565b9050919050565b6000613e54613e4f836140cc565b613ca2565b9050919050565b6000613e6e613e69836140a5565b613ca2565b9050919050565b6000613e88613e83836140b2565b613ca2565b9050919050565b6000613ea2613e9d836140bf565b613ca2565b9050919050565b613eb282614087565b810181811067ffffffffffffffff82111715613ed157613ed061403f565b5b80604052505050565b6000613ee582613d42565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1857613f17613f54565b5b600182019050919050565b6000613f2e82613d42565b9150613f3983613d42565b925082613f4957613f48613f83565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f44657363726970746f72206973206c6f636b6564000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f206973206e6f742061206d656d626572206f6620746865204e6f756e7320444160008201527f4f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536565646572206973206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f466f756e64204e6f756e20000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178696d756d20746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74656420746f6f206d616e790000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6146f781613cb4565b811461470257600080fd5b50565b61470e81613cc6565b811461471957600080fd5b50565b61472581613cd2565b811461473057600080fd5b50565b61473c81613cfe565b811461474757600080fd5b50565b61475381613d10565b811461475e57600080fd5b50565b61476a81613d42565b811461477557600080fd5b50565b61478181613d4c565b811461478c57600080fd5b5056fea2646970667358221220fdfe5ffb654d51fd8cd94aa65ab999247aadeb731061f426d84541213550691d64736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80636352211e1161011a578063b88d4fde116100ad578063d50b31eb1161007c578063d50b31eb146105b7578063d8cfb999146105d3578063e985e9c5146105dd578063f0503e801461060d578063f2fde38b1461064157610206565b8063b88d4fde1461052f578063c1b8e4e11461054b578063c87b56dd14610569578063c8fc0c231461059957610206565b80638da5cb5b116100e95780638da5cb5b146104bb57806395d89b41146104d9578063a0712d68146104f7578063a22cb4651461051357610206565b80636352211e14610433578063684931ed1461046357806370a0823114610481578063715018a6146104b157610206565b806325fd90f31161019d57806342842e0e1161016c57806342842e0e1461038f5780634f6ccce7146103ab57806354572e09146103db5780635660f851146103f95780635f295a671461042957610206565b806325fd90f3146103195780632f745c5914610337578063303e74df1461036757806341b5d0de1461038557610206565b8063095ea7b3116101d9578063095ea7b3146102a5578063114e3101146102c157806318160ddd146102df57806323b872dd146102fd57610206565b806301b9a3971461020b57806301ffc9a71461022757806306fdde0314610257578063081812fc14610275575b600080fd5b61022560048036038101906102209190613015565b61065d565b005b610241600480360381019061023c9190612fbb565b61076d565b60405161024e91906136d3565b60405180910390f35b61025f6107e7565b60405161026c9190613724565b60405180910390f35b61028f600480360381019061028a91906130e5565b610879565b60405161029c919061366c565b60405180910390f35b6102bf60048036038101906102ba9190612f7b565b6108fe565b005b6102c9610a16565b6040516102d69190613b02565b60405180910390f35b6102e7610a1b565b6040516102f49190613a6b565b60405180910390f35b61031760048036038101906103129190612e65565b610a28565b005b610321610a88565b60405161032e91906136d3565b60405180910390f35b610351600480360381019061034c9190612f7b565b610a9b565b60405161035e9190613a6b565b60405180910390f35b61036f610b40565b60405161037c91906136ee565b60405180910390f35b61038d610b66565b005b6103a960048036038101906103a49190612e65565b610c4f565b005b6103c560048036038101906103c091906130e5565b610c6f565b6040516103d29190613a6b565b60405180910390f35b6103e3610ce0565b6040516103f09190613a6b565b60405180910390f35b610413600480360381019061040e9190612df8565b610ce6565b6040516104209190613a6b565b60405180910390f35b610431610cfe565b005b61044d600480360381019061044891906130e5565b610de7565b60405161045a919061366c565b60405180910390f35b61046b610e99565b6040516104789190613709565b60405180910390f35b61049b60048036038101906104969190612df8565b610ebf565b6040516104a89190613a6b565b60405180910390f35b6104b9610f77565b005b6104c3610fff565b6040516104d0919061366c565b60405180910390f35b6104e1611028565b6040516104ee9190613724565b60405180910390f35b610511600480360381019061050c91906130e5565b6110ba565b005b61052d60048036038101906105289190612f3b565b611233565b005b61054960048036038101906105449190612eb8565b611249565b005b6105536112ab565b60405161056091906136d3565b60405180910390f35b610583600480360381019061057e91906130e5565b6112be565b6040516105909190613724565b60405180910390f35b6105a161142d565b6040516105ae91906136d3565b60405180910390f35b6105d160048036038101906105cc9190613042565b611440565b005b6105db611550565b005b6105f760048036038101906105f29190612e25565b6115f8565b60405161060491906136d3565b60405180910390f35b610627600480360381019061062291906130e5565b61168c565b604051610638959493929190613aaf565b60405180910390f35b61065b60048036038101906106569190612df8565b61171c565b005b610665611814565b73ffffffffffffffffffffffffffffffffffffffff16610683610fff565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d09061396b565b60405180910390fd5b600e60009054906101000a900460ff1615610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061378b565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e057506107df8261181c565b5b9050919050565b6060600180546107f690613df5565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613df5565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000610884826118fe565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba9061394b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610de7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610971906139cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611814565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611814565b6115f8565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906138ab565b60405180910390fd5b610a11838361196a565b505050565b600a81565b6000600980549050905090565b610a39610a33611814565b82611a23565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613a0b565b60405180910390fd5b610a83838383611b01565b505050565b600f60149054906101000a900460ff1681565b6000610aa683610ebf565b8210610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906137cb565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b6e611814565b73ffffffffffffffffffffffffffffffffffffffff16610b8c610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd99061396b565b60405180910390fd5b600e60009054906101000a900460ff1615610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c299061378b565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b610c6a83838360405180602001604052806000815250611249565b505050565b6000610c79610a1b565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613a4b565b60405180910390fd5b60098281548110610cce57610ccd614010565b5b90600052602060002001549050919050565b61271081565b600c6020528060005260406000206000915090505481565b610d06611814565b73ffffffffffffffffffffffffffffffffffffffff16610d24610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061396b565b60405180910390fd5b600e60019054906101000a900460ff1615610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19061392b565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e87906138eb565b60405180910390fd5b80915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f27906138cb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7f611814565b73ffffffffffffffffffffffffffffffffffffffff16610f9d610fff565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061396b565b60405180910390fd5b610ffd6000611d5d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461103790613df5565b80601f016020809104026020016040519081016040528092919081815260200182805461106390613df5565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b600f60149054906101000a900460ff16611109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611100906139eb565b60405180910390fd5b612710611114610a1b565b8261111f9190613be7565b1115611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906139ab565b60405180910390fd5b600a60ff16600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111b09190613be7565b11156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a2b565b60405180910390fd5b60005b8181101561122f5761121c33600d600081548092919061121390613eda565b91905055611e21565b808061122790613eda565b9150506111f4565b5050565b61124561123e611814565b8383612040565b5050565b61125a611254611814565b83611a23565b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613a0b565b60405180910390fd5b6112a5848484846121ad565b50505050565b600e60009054906101000a900460ff1681565b60606112c9826118fe565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906137ab565b60405180910390fd5b600061131383612209565b9050600081604051602001611328919061361d565b604051602081830303815290604052905060008260405160200161134c919061363f565b6040516020818303038152906040529050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8383600b60008a81526020019081526020016000206040518463ffffffff1660e01b81526004016113ce93929190613746565b60006040518083038186803b1580156113e657600080fd5b505afa1580156113fa573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611423919061306f565b9350505050919050565b600e60019054906101000a900460ff1681565b611448611814565b73ffffffffffffffffffffffffffffffffffffffff16611466610fff565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061396b565b60405180910390fd5b600e60019054906101000a900460ff161561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061392b565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611558611814565b73ffffffffffffffffffffffffffffffffffffffff16611576610fff565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061396b565b60405180910390fd5b600f60149054906101000a900460ff1615600f60146101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b611724611814565b73ffffffffffffffffffffffffffffffffffffffff16611742610fff565b73ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061396b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff9061380b565b60405180910390fd5b61181181611d5d565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118f757506118f68261236a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119dd83610de7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a2e826118fe565b611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061388b565b60405180910390fd5b6000611a7883610de7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae757508373ffffffffffffffffffffffffffffffffffffffff16611acf84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b80611af85750611af781856115f8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b2182610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061398b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9061384b565b60405180910390fd5b611bf28383836123d4565b611bfd60008261196a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4d9190613c6e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca49190613be7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e9982600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611ea0929190613a86565b60a06040518083038186803b158015611eb857600080fd5b505afa158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef091906130b8565b600b600083815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff160217905550905050611fe782826124e8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061203790613eda565b91905055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a69061386b565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121a091906136d3565b60405180910390a3505050565b6121b8848484611b01565b6121c484848484612506565b612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906137eb565b60405180910390fd5b50505050565b60606000821415612251576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612365565b600082905060005b6000821461228357808061226c90613eda565b915050600a8261227c9190613c3d565b9150612259565b60008167ffffffffffffffff81111561229f5761229e61403f565b5b6040519080825280601f01601f1916602001820160405280156122d15781602001600182028036833780820191505090505b5090505b6000851461235e576001826122ea9190613c6e565b9150600a856122f99190613f23565b60306123059190613be7565b60f81b81838151811061231b5761231a614010565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123579190613c3d565b94506122d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123df83838361269d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124225761241d816126a2565b612461565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124605761245f83826126eb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a45761249f81612858565b6124e3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e2576124e18282612929565b5b5b505050565b6125028282604051806020016040528060008152506129a8565b5050565b60006125278473ffffffffffffffffffffffffffffffffffffffff16612a03565b15612690578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612550611814565b8786866040518563ffffffff1660e01b81526004016125729493929190613687565b602060405180830381600087803b15801561258c57600080fd5b505af19250505080156125bd57506040513d601f19601f820116820180604052508101906125ba9190612fe8565b60015b612640573d80600081146125ed576040519150601f19603f3d011682016040523d82523d6000602084013e6125f2565b606091505b50600081511415612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f906137eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612695565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126f884610ebf565b6127029190613c6e565b90506000600860008481526020019081526020016000205490508181146127e7576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061286c9190613c6e565b90506000600a600084815260200190815260200160002054905060006009838154811061289c5761289b614010565b5b9060005260206000200154905080600983815481106128be576128bd614010565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061290d5761290c613fe1565b5b6001900381819060005260206000200160009055905550505050565b600061293483610ebf565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6129b28383612a16565b6129bf6000848484612506565b6129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f5906137eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d9061390b565b60405180910390fd5b612a8f816118fe565b15612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac69061382b565b60405180910390fd5b612adb600083836123d4565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2b9190613be7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612bf7612bf284613b42565b613b1d565b905082815260208101848484011115612c1357612c12614078565b5b612c1e848285613db3565b509392505050565b6000612c39612c3484613b73565b613b1d565b905082815260208101848484011115612c5557612c54614078565b5b612c60848285613dc2565b509392505050565b600081359050612c77816146ee565b92915050565b600081359050612c8c81614705565b92915050565b600081359050612ca18161471c565b92915050565b600081519050612cb68161471c565b92915050565b600082601f830112612cd157612cd061406e565b5b8135612ce1848260208601612be4565b91505092915050565b600081359050612cf981614733565b92915050565b600081359050612d0e8161474a565b92915050565b600082601f830112612d2957612d2861406e565b5b8151612d39848260208601612c26565b91505092915050565b600060a08284031215612d5857612d57614073565b5b612d6260a0613b1d565b90506000612d7284828501612de3565b6000830152506020612d8684828501612de3565b6020830152506040612d9a84828501612de3565b6040830152506060612dae84828501612de3565b6060830152506080612dc284828501612de3565b60808301525092915050565b600081359050612ddd81614761565b92915050565b600081519050612df281614778565b92915050565b600060208284031215612e0e57612e0d614082565b5b6000612e1c84828501612c68565b91505092915050565b60008060408385031215612e3c57612e3b614082565b5b6000612e4a85828601612c68565b9250506020612e5b85828601612c68565b9150509250929050565b600080600060608486031215612e7e57612e7d614082565b5b6000612e8c86828701612c68565b9350506020612e9d86828701612c68565b9250506040612eae86828701612dce565b9150509250925092565b60008060008060808587031215612ed257612ed1614082565b5b6000612ee087828801612c68565b9450506020612ef187828801612c68565b9350506040612f0287828801612dce565b925050606085013567ffffffffffffffff811115612f2357612f2261407d565b5b612f2f87828801612cbc565b91505092959194509250565b60008060408385031215612f5257612f51614082565b5b6000612f6085828601612c68565b9250506020612f7185828601612c7d565b9150509250929050565b60008060408385031215612f9257612f91614082565b5b6000612fa085828601612c68565b9250506020612fb185828601612dce565b9150509250929050565b600060208284031215612fd157612fd0614082565b5b6000612fdf84828501612c92565b91505092915050565b600060208284031215612ffe57612ffd614082565b5b600061300c84828501612ca7565b91505092915050565b60006020828403121561302b5761302a614082565b5b600061303984828501612cea565b91505092915050565b60006020828403121561305857613057614082565b5b600061306684828501612cff565b91505092915050565b60006020828403121561308557613084614082565b5b600082015167ffffffffffffffff8111156130a3576130a261407d565b5b6130af84828501612d14565b91505092915050565b600060a082840312156130ce576130cd614082565b5b60006130dc84828501612d42565b91505092915050565b6000602082840312156130fb576130fa614082565b5b600061310984828501612dce565b91505092915050565b61311b81613cb4565b82525050565b61312a81613cc6565b82525050565b600061313b82613ba4565b6131458185613bba565b9350613155818560208601613dc2565b61315e81614087565b840191505092915050565b61317281613d6b565b82525050565b61318181613d8f565b82525050565b600061319282613baf565b61319c8185613bcb565b93506131ac818560208601613dc2565b6131b581614087565b840191505092915050565b60006131cb82613baf565b6131d58185613bdc565b93506131e5818560208601613dc2565b80840191505092915050565b60006131fe601483613bcb565b9150613209826140d9565b602082019050919050565b6000613221601f83613bcb565b915061322c82614102565b602082019050919050565b6000613244602b83613bcb565b915061324f8261412b565b604082019050919050565b6000613267603283613bcb565b91506132728261417a565b604082019050919050565b600061328a602683613bcb565b9150613295826141c9565b604082019050919050565b60006132ad601c83613bcb565b91506132b882614218565b602082019050919050565b60006132d0602183613bdc565b91506132db82614241565b602182019050919050565b60006132f3602483613bcb565b91506132fe82614290565b604082019050919050565b6000613316601983613bcb565b9150613321826142df565b602082019050919050565b6000613339602c83613bcb565b915061334482614308565b604082019050919050565b600061335c603883613bcb565b915061336782614357565b604082019050919050565b600061337f602a83613bcb565b915061338a826143a6565b604082019050919050565b60006133a2602983613bcb565b91506133ad826143f5565b604082019050919050565b60006133c5602083613bcb565b91506133d082614444565b602082019050919050565b60006133e8601083613bcb565b91506133f38261446d565b602082019050919050565b600061340b602c83613bcb565b915061341682614496565b604082019050919050565b600061342e600b83613bdc565b9150613439826144e5565b600b82019050919050565b6000613451602083613bcb565b915061345c8261450e565b602082019050919050565b6000613474602983613bcb565b915061347f82614537565b604082019050919050565b6000613497601683613bcb565b91506134a282614586565b602082019050919050565b60006134ba602183613bcb565b91506134c5826145af565b604082019050919050565b60006134dd600f83613bcb565b91506134e8826145fe565b602082019050919050565b6000613500603183613bcb565b915061350b82614627565b604082019050919050565b6000613523600f83613bcb565b915061352e82614676565b602082019050919050565b6000613546602c83613bcb565b91506135518261469f565b604082019050919050565b60a08201600080830154905061357181613e27565b61357e60008601826135f0565b5061358881613e8f565b61359560208601826135f0565b5061359f81613e41565b6135ac60408601826135f0565b506135b681613e5b565b6135c360608601826135f0565b506135cd81613e75565b6135da60808601826135f0565b5050505050565b6135ea81613d42565b82525050565b6135f981613d4c565b82525050565b61360881613d4c565b82525050565b61361781613d5e565b82525050565b600061362882613421565b915061363482846131c0565b915081905092915050565b600061364a82613421565b915061365682846131c0565b9150613661826132c3565b915081905092915050565b60006020820190506136816000830184613112565b92915050565b600060808201905061369c6000830187613112565b6136a96020830186613112565b6136b660408301856135e1565b81810360608301526136c88184613130565b905095945050505050565b60006020820190506136e86000830184613121565b92915050565b60006020820190506137036000830184613169565b92915050565b600060208201905061371e6000830184613178565b92915050565b6000602082019050818103600083015261373e8184613187565b905092915050565b600060e08201905081810360008301526137608186613187565b905081810360208301526137748185613187565b9050613783604083018461355c565b949350505050565b600060208201905081810360008301526137a4816131f1565b9050919050565b600060208201905081810360008301526137c481613214565b9050919050565b600060208201905081810360008301526137e481613237565b9050919050565b600060208201905081810360008301526138048161325a565b9050919050565b600060208201905081810360008301526138248161327d565b9050919050565b60006020820190508181036000830152613844816132a0565b9050919050565b60006020820190508181036000830152613864816132e6565b9050919050565b6000602082019050818103600083015261388481613309565b9050919050565b600060208201905081810360008301526138a48161332c565b9050919050565b600060208201905081810360008301526138c48161334f565b9050919050565b600060208201905081810360008301526138e481613372565b9050919050565b6000602082019050818103600083015261390481613395565b9050919050565b60006020820190508181036000830152613924816133b8565b9050919050565b60006020820190508181036000830152613944816133db565b9050919050565b60006020820190508181036000830152613964816133fe565b9050919050565b6000602082019050818103600083015261398481613444565b9050919050565b600060208201905081810360008301526139a481613467565b9050919050565b600060208201905081810360008301526139c48161348a565b9050919050565b600060208201905081810360008301526139e4816134ad565b9050919050565b60006020820190508181036000830152613a04816134d0565b9050919050565b60006020820190508181036000830152613a24816134f3565b9050919050565b60006020820190508181036000830152613a4481613516565b9050919050565b60006020820190508181036000830152613a6481613539565b9050919050565b6000602082019050613a8060008301846135e1565b92915050565b6000604082019050613a9b60008301856135e1565b613aa86020830184613169565b9392505050565b600060a082019050613ac460008301886135ff565b613ad160208301876135ff565b613ade60408301866135ff565b613aeb60608301856135ff565b613af860808301846135ff565b9695505050505050565b6000602082019050613b17600083018461360e565b92915050565b6000613b27613b38565b9050613b338282613ea9565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5d57613b5c61403f565b5b613b6682614087565b9050602081019050919050565b600067ffffffffffffffff821115613b8e57613b8d61403f565b5b613b9782614087565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf282613d42565b9150613bfd83613d42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3257613c31613f54565b5b828201905092915050565b6000613c4882613d42565b9150613c5383613d42565b925082613c6357613c62613f83565b5b828204905092915050565b6000613c7982613d42565b9150613c8483613d42565b925082821015613c9757613c96613f54565b5b828203905092915050565b600065ffffffffffff82169050919050565b6000613cbf82613d22565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d0982613cb4565b9050919050565b6000613d1b82613cb4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b600060ff82169050919050565b6000613d7682613d7d565b9050919050565b6000613d8882613d22565b9050919050565b6000613d9a82613da1565b9050919050565b6000613dac82613d22565b9050919050565b82818337600083830152505050565b60005b83811015613de0578082015181840152602081019050613dc5565b83811115613def576000848401525b50505050565b60006002820490506001821680613e0d57607f821691505b60208210811415613e2157613e20613fb2565b5b50919050565b6000613e3a613e3583614098565b613ca2565b9050919050565b6000613e54613e4f836140cc565b613ca2565b9050919050565b6000613e6e613e69836140a5565b613ca2565b9050919050565b6000613e88613e83836140b2565b613ca2565b9050919050565b6000613ea2613e9d836140bf565b613ca2565b9050919050565b613eb282614087565b810181811067ffffffffffffffff82111715613ed157613ed061403f565b5b80604052505050565b6000613ee582613d42565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1857613f17613f54565b5b600182019050919050565b6000613f2e82613d42565b9150613f3983613d42565b925082613f4957613f48613f83565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f44657363726970746f72206973206c6f636b6564000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f206973206e6f742061206d656d626572206f6620746865204e6f756e7320444160008201527f4f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536565646572206973206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f466f756e64204e6f756e20000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178696d756d20746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74656420746f6f206d616e790000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6146f781613cb4565b811461470257600080fd5b50565b61470e81613cc6565b811461471957600080fd5b50565b61472581613cd2565b811461473057600080fd5b50565b61473c81613cfe565b811461474757600080fd5b50565b61475381613d10565b811461475e57600080fd5b50565b61476a81613d42565b811461477557600080fd5b50565b61478181613d4c565b811461478c57600080fd5b5056fea2646970667358221220fdfe5ffb654d51fd8cd94aa65ab999247aadeb731061f426d84541213550691d64736f6c63430008060033

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.