ETH Price: $2,493.35 (-2.25%)

Token

Vectorscapes (VCS)
 

Overview

Max Total Supply

562 VCS

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 VCS
0x4afda543a1f3d084b8d832055fcadbb9a4bcd416
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:
VectorscapeFactory

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : VectorscapeFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.1 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/*
 * Welcome to the source code! There isn't much truly going on in this contract. The main thing to look
 * out for is that the name of each Vectorscape object is the name used to generate the image which is 
 * shown once we set the base url. The token URI will actually be the code that generates the SVG itself uploaded to IPFS.
 * So no risk of losing your prized Vectorscape if something happens to our site or api unless IPFS goes down. 
 * At that point, I think this little project is the least of our worries...
 * 
 * This is my first project but there will (hopefully) be many more to come as the years go on. Share your projects and thoughts with me
 * about NFTs on Twitter! @CommanderSnake1
*/

contract VectorscapeFactory is ERC721, Ownable {
    struct Vectorscape {
        string name;
    }

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint maxSupply = 2000;
    uint maxPerMint = 10;
    uint256 public PRICE = .01 ether;
    
    string _baseURL = "";
    string _contractURL = "https://gateway.pinata.cloud/ipfs/QmNiw67Mn7uYZgoFDzC2ooKFQFmKckpmdYvBxUGpMsK1E6";
    bool paused;

    mapping(string => uint) private nameToTokenId;
    Vectorscape[] public vectorscapes;

    constructor() ERC721("Vectorscapes", "VCS") { 
        paused = true;
    }

    function mint(string[] calldata names)
        public
        payable
        returns (bool)
    {
        require(!paused, "Contract is paused!");
        require(vectorscapes.length + names.length < maxSupply, "Max supply has been minted");

        uint256 price = this.getPrice();
        if (price > 0) {
            require(address(msg.sender).balance > price * names.length, "Insufficient Balance");
            require(msg.value == PRICE * names.length, "ETH value incorrect");
            address payable p = payable(owner());
            p.transfer(PRICE * names.length);
        }

        for (uint i = 0; i < names.length; i++ ) {
            string memory upperName = upper(names[i]);
            require(nameToTokenId[upperName] == 0, "name already exists!");
            _tokenIds.increment();
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            vectorscapes.push(Vectorscape(upperName));
            nameToTokenId[upperName] = newItemId;
        }

        return true;
    }

    function getMaxSupply() external view returns(uint) {
        return maxSupply;
    }

    function totalSupply() external view returns (uint) {
        return vectorscapes.length;
    }

    function pause() external onlyOwner {
        paused = true;
    }

    function unpause() external onlyOwner {
        paused = false;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        _baseURL = _uri;
    }

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

    function getPaused() external view returns (bool) {
        return paused;
    }

    function getVectorscape(uint256 id) public view returns(Vectorscape memory vectorscape) {
        require(id > 0);
        vectorscape = vectorscapes[id - 1];
        return vectorscape;
    }

    function getOwnerIds(address account) external view returns(uint[] memory) {
        uint[] memory vectorscapeIds = new uint[](balanceOf(account));
        uint count = 0;
        for(uint i = 0; i < vectorscapes.length; i++){
            if(ownerOf(i+1) == account) {
                vectorscapeIds[count] = i;
                count++;
            }
        }
        return vectorscapeIds;
    }

    function getOwnerVectorscapes(address account) external view returns(Vectorscape[] memory) {
        Vectorscape[] memory ownerVectorscapes = new Vectorscape[](balanceOf(account));
        uint count = 0;
        for(uint i = 0; i < vectorscapes.length; i++){
            if(ownerOf(i+1) == account) {
                ownerVectorscapes[count] = vectorscapes[i];
                count++;
            }
        }
        return ownerVectorscapes;
    }

    function _upper(bytes1 _b1)
        private
        pure
        returns (bytes1) {

        if (_b1 >= 0x61 && _b1 <= 0x7A) {
            return bytes1(uint8(_b1) - 32);
        }

        return _b1;
    }

    function upper(string memory _base)
        internal
        pure
        returns (string memory) {
            bytes memory _baseBytes = bytes(_base);
            for (uint i = 0; i < _baseBytes.length; i++) {
                _baseBytes[i] = _upper(_baseBytes[i]);
            }
            return string(_baseBytes);
    }

    function contractURI() external view returns (string memory) {
        return _contractURL;
    }

    function setContractURL(string memory _url) external onlyOwner() {
        _contractURL = _url;
    }

    function getTokenId(string memory _name) external view returns (uint) {
        return nameToTokenId[_name] + 1;
    }

    function getPrice() external view returns (uint256) {
        if (this.totalSupply() >= 200) {
            return PRICE;
        } else {
            return 0;
        }
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 5 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

File 8 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

}

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getOwnerIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getOwnerVectorscapes","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"}],"internalType":"struct VectorscapeFactory.Vectorscape[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getVectorscape","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"}],"internalType":"struct VectorscapeFactory.Vectorscape","name":"vectorscape","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"names","type":"string[]"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"}],"name":"setContractURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vectorscapes","outputs":[{"internalType":"string","name":"name","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526107d0600855600a600955662386f26fc10000600a5560405180602001604052806000815250600b908051906020019062000041929190620001fc565b506040518060800160405280605081526020016200496c60509139600c908051906020019062000073929190620001fc565b503480156200008157600080fd5b506040518060400160405280600c81526020017f566563746f7273636170657300000000000000000000000000000000000000008152506040518060400160405280600381526020017f5643530000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000106929190620001fc565b5080600190805190602001906200011f929190620001fc565b505050600062000134620001f460201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001600d60006101000a81548160ff02191690831515021790555062000311565b600033905090565b8280546200020a90620002ac565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b60006002820490506001821680620002c557607f821691505b60208210811415620002dc57620002db620002e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61464b80620003216000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e427ba5111610064578063e427ba511461070d578063e8a3d48514610736578063e985e9c514610761578063f2fde38b1461079e576101e3565b8063b88d4fde1461062d578063be2b1a5b14610656578063c87b56dd14610693578063cc852c43146106d0576101e3565b806395d89b41116100d157806395d89b411461058557806398d5fdca146105b0578063a0bcfc7f146105db578063a22cb46514610604576101e3565b8063715018a6146105015780638456cb59146105185780638d859f3e1461052f5780638da5cb5b1461055a576101e3565b806342842e0e1161017a5780636805b84b116101495780636805b84b1461041f578063690dfa401461044a5780636e05e23c1461048757806370a08231146104c4576101e3565b806342842e0e1461035e5780634c0f38c2146103875780635768f271146103b25780636352211e146103e2576101e3565b806318160ddd116101b657806318160ddd146102b65780631e7663bc146102e157806323b872dd1461031e5780633f4ba83a14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061308b565b6107c7565b60405161021c91906137b8565b60405180910390f35b34801561023157600080fd5b5061023a6108a9565b60405161024791906137d3565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061312e565b61093b565b604051610284919061370d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ffe565b6109c0565b005b3480156102c257600080fd5b506102cb610ad8565b6040516102d89190613ab7565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130e5565b610ae5565b6040516103159190613ab7565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612ee8565b610b19565b005b34801561035357600080fd5b5061035c610b79565b005b34801561036a57600080fd5b5061038560048036038101906103809190612ee8565b610c12565b005b34801561039357600080fd5b5061039c610c32565b6040516103a99190613ab7565b60405180910390f35b6103cc60048036038101906103c7919061303e565b610c3c565b6040516103d991906137b8565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061312e565b61102c565b604051610416919061370d565b60405180910390f35b34801561042b57600080fd5b506104346110de565b60405161044191906137b8565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061312e565b6110f5565b60405161047e91906137d3565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061312e565b6111a7565b6040516104bb9190613a95565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612e7b565b61128a565b6040516104f89190613ab7565b60405180910390f35b34801561050d57600080fd5b50610516611342565b005b34801561052457600080fd5b5061052d61147f565b005b34801561053b57600080fd5b50610544611518565b6040516105519190613ab7565b60405180910390f35b34801561056657600080fd5b5061056f61151e565b60405161057c919061370d565b60405180910390f35b34801561059157600080fd5b5061059a611548565b6040516105a791906137d3565b60405180910390f35b3480156105bc57600080fd5b506105c56115da565b6040516105d29190613ab7565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd91906130e5565b611673565b005b34801561061057600080fd5b5061062b60048036038101906106269190612fbe565b611709565b005b34801561063957600080fd5b50610654600480360381019061064f9190612f3b565b61188a565b005b34801561066257600080fd5b5061067d60048036038101906106789190612e7b565b6118ec565b60405161068a9190613774565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061312e565b611aad565b6040516106c791906137d3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190612e7b565b611b54565b6040516107049190613796565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906130e5565b611c51565b005b34801561074257600080fd5b5061074b611ce7565b60405161075891906137d3565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612ea8565b611d79565b60405161079591906137b8565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612e7b565b611e0d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a182611fb9565b5b9050919050565b6060600080546108b890613e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490613e8e565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b600061094682612023565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90613995565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cb8261102c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613a15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5b61208f565b73ffffffffffffffffffffffffffffffffffffffff161480610a8a5750610a8981610a8461208f565b611d79565b5b610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090613915565b60405180910390fd5b610ad38383612097565b505050565b6000600f80549050905090565b60006001600e83604051610af991906136d2565b908152602001604051809103902054610b129190613c82565b9050919050565b610b2a610b2461208f565b82612150565b610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613a55565b60405180910390fd5b610b7483838361222e565b505050565b610b8161208f565b73ffffffffffffffffffffffffffffffffffffffff16610b9f61151e565b73ffffffffffffffffffffffffffffffffffffffff1614610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906139b5565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b610c2d8383836040518060200160405280600081525061188a565b505050565b6000600854905090565b6000600d60009054906101000a900460ff1615610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613875565b60405180910390fd5b60085483839050600f80549050610ca59190613c82565b10610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613855565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166398d5fdca6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d2d57600080fd5b505afa158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d65919061315b565b90506000811115610e8e578383905081610d7f9190613d09565b3373ffffffffffffffffffffffffffffffffffffffff163111610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613a35565b60405180910390fd5b83839050600a54610de89190613d09565b3414610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613a75565b60405180910390fd5b6000610e3361151e565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc86869050600a54610e609190613d09565b9081150290604051600060405180830381858888f19350505050158015610e8b573d6000803e3d6000fd5b50505b60005b84849050811015611020576000610f0e868684818110610eb457610eb3613ff8565b5b9050602002810190610ec69190613ad2565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061248a565b90506000600e82604051610f2291906136d2565b90815260200160405180910390205414610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906138f5565b60405180910390fd5b610f7b6007612522565b6000610f876007612538565b9050610f933382612546565b600f604051806020016040528084815250908060018154018082558091505060019003906000526020600020016000909190919091506000820151816000019080519060200190610fe5929190612c11565b50505080600e83604051610ff991906136d2565b9081526020016040518091039020819055505050808061101890613ef1565b915050610e91565b50600191505092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613955565b60405180910390fd5b80915050919050565b6000600d60009054906101000a900460ff16905090565b600f818154811061110557600080fd5b9060005260206000200160009150905080600001805461112490613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613e8e565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b5050505050905081565b6111af612c97565b600082116111bc57600080fd5b600f6001836111cb9190613d63565b815481106111dc576111db613ff8565b5b9060005260206000200160405180602001604052908160008201805461120190613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613e8e565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613935565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134a61208f565b73ffffffffffffffffffffffffffffffffffffffff1661136861151e565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906139b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61148761208f565b73ffffffffffffffffffffffffffffffffffffffff166114a561151e565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f2906139b5565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b600a5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155790613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461158390613e8e565b80156115d05780601f106115a5576101008083540402835291602001916115d0565b820191906000526020600020905b8154815290600101906020018083116115b357829003601f168201915b5050505050905090565b600060c83073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561162457600080fd5b505afa158015611638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165c919061315b565b1061166b57600a549050611670565b600090505b90565b61167b61208f565b73ffffffffffffffffffffffffffffffffffffffff1661169961151e565b73ffffffffffffffffffffffffffffffffffffffff16146116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906139b5565b60405180910390fd5b80600b9080519060200190611705929190612c11565b5050565b61171161208f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611776906138b5565b60405180910390fd5b806005600061178c61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183961208f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187e91906137b8565b60405180910390a35050565b61189b61189561208f565b83612150565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613a55565b60405180910390fd5b6118e684848484612564565b50505050565b606060006118f98361128a565b67ffffffffffffffff81111561191257611911614027565b5b60405190808252806020026020018201604052801561194b57816020015b611938612c97565b8152602001906001900390816119305790505b5090506000805b600f80549050811015611aa2578473ffffffffffffffffffffffffffffffffffffffff1661198b6001836119869190613c82565b61102c565b73ffffffffffffffffffffffffffffffffffffffff161415611a8f57600f81815481106119bb576119ba613ff8565b5b906000526020600020016040518060200160405290816000820180546119e090613e8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0c90613e8e565b8015611a595780601f10611a2e57610100808354040283529160200191611a59565b820191906000526020600020905b815481529060010190602001808311611a3c57829003601f168201915b505050505081525050838381518110611a7557611a74613ff8565b5b60200260200101819052508180611a8b90613ef1565b9250505b8080611a9a90613ef1565b915050611952565b508192505050919050565b6060611ab882612023565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906139f5565b60405180910390fd5b6000611b016125c0565b90506000815111611b215760405180602001604052806000815250611b4c565b80611b2b84612652565b604051602001611b3c9291906136e9565b6040516020818303038152906040525b915050919050565b60606000611b618361128a565b67ffffffffffffffff811115611b7a57611b79614027565b5b604051908082528060200260200182016040528015611ba85781602001602082028036833780820191505090505b5090506000805b600f80549050811015611c46578473ffffffffffffffffffffffffffffffffffffffff16611be8600183611be39190613c82565b61102c565b73ffffffffffffffffffffffffffffffffffffffff161415611c335780838381518110611c1857611c17613ff8565b5b6020026020010181815250508180611c2f90613ef1565b9250505b8080611c3e90613ef1565b915050611baf565b508192505050919050565b611c5961208f565b73ffffffffffffffffffffffffffffffffffffffff16611c7761151e565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906139b5565b60405180910390fd5b80600c9080519060200190611ce3929190612c11565b5050565b6060600c8054611cf690613e8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2290613e8e565b8015611d6f5780601f10611d4457610100808354040283529160200191611d6f565b820191906000526020600020905b815481529060010190602001808311611d5257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e1561208f565b73ffffffffffffffffffffffffffffffffffffffff16611e3361151e565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906139b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613815565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661210a8361102c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061215b82612023565b61219a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612191906138d5565b60405180910390fd5b60006121a58361102c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221457508373ffffffffffffffffffffffffffffffffffffffff166121fc8461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222557506122248185611d79565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224e8261102c565b73ffffffffffffffffffffffffffffffffffffffff16146122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b906139d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613895565b60405180910390fd5b61231f8383836127b3565b61232a600082612097565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237a9190613d63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d19190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082905060005b8151811015612518576124c38282815181106124b3576124b2613ff8565b5b602001015160f81c60f81b6127b8565b8282815181106124d6576124d5613ff8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061251090613ef1565b915050612494565b5080915050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61256082826040518060200160405280600081525061283e565b5050565b61256f84848461222e565b61257b84848484612899565b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b1906137f5565b60405180910390fd5b50505050565b6060600b80546125cf90613e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546125fb90613e8e565b80156126485780601f1061261d57610100808354040283529160200191612648565b820191906000526020600020905b81548152906001019060200180831161262b57829003601f168201915b5050505050905090565b6060600082141561269a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ae565b600082905060005b600082146126cc5780806126b590613ef1565b915050600a826126c59190613cd8565b91506126a2565b60008167ffffffffffffffff8111156126e8576126e7614027565b5b6040519080825280601f01601f19166020018201604052801561271a5781602001600182028036833780820191505090505b5090505b600085146127a7576001826127339190613d63565b9150600a856127429190613f3a565b603061274e9190613c82565b60f81b81838151811061276457612763613ff8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a09190613cd8565b945061271e565b8093505050505b919050565b505050565b6000606160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156128165750607a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b156128355760208260f81c61282b9190613d97565b60f81b9050612839565b8190505b919050565b6128488383612a30565b6128556000848484612899565b612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b906137f5565b60405180910390fd5b505050565b60006128ba8473ffffffffffffffffffffffffffffffffffffffff16612bfe565b15612a23578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e361208f565b8786866040518563ffffffff1660e01b81526004016129059493929190613728565b602060405180830381600087803b15801561291f57600080fd5b505af192505050801561295057506040513d601f19601f8201168201806040525081019061294d91906130b8565b60015b6129d3573d8060008114612980576040519150601f19603f3d011682016040523d82523d6000602084013e612985565b606091505b506000815114156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c2906137f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a28565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790613975565b60405180910390fd5b612aa981612023565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090613835565b60405180910390fd5b612af5600083836127b3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b459190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1d90613e8e565b90600052602060002090601f016020900481019282612c3f5760008555612c86565b82601f10612c5857805160ff1916838001178555612c86565b82800160010185558215612c86579182015b82811115612c85578251825591602001919060010190612c6a565b5b509050612c939190612caa565b5090565b6040518060200160405280606081525090565b5b80821115612cc3576000816000905550600101612cab565b5090565b6000612cda612cd584613b5a565b613b35565b905082815260208101848484011115612cf657612cf5614074565b5b612d01848285613e4c565b509392505050565b6000612d1c612d1784613b8b565b613b35565b905082815260208101848484011115612d3857612d37614074565b5b612d43848285613e4c565b509392505050565b600081359050612d5a816145b9565b92915050565b60008083601f840112612d7657612d7561405b565b5b8235905067ffffffffffffffff811115612d9357612d92614056565b5b602083019150836020820283011115612daf57612dae61406a565b5b9250929050565b600081359050612dc5816145d0565b92915050565b600081359050612dda816145e7565b92915050565b600081519050612def816145e7565b92915050565b600082601f830112612e0a57612e0961405b565b5b8135612e1a848260208601612cc7565b91505092915050565b600082601f830112612e3857612e3761405b565b5b8135612e48848260208601612d09565b91505092915050565b600081359050612e60816145fe565b92915050565b600081519050612e75816145fe565b92915050565b600060208284031215612e9157612e9061407e565b5b6000612e9f84828501612d4b565b91505092915050565b60008060408385031215612ebf57612ebe61407e565b5b6000612ecd85828601612d4b565b9250506020612ede85828601612d4b565b9150509250929050565b600080600060608486031215612f0157612f0061407e565b5b6000612f0f86828701612d4b565b9350506020612f2086828701612d4b565b9250506040612f3186828701612e51565b9150509250925092565b60008060008060808587031215612f5557612f5461407e565b5b6000612f6387828801612d4b565b9450506020612f7487828801612d4b565b9350506040612f8587828801612e51565b925050606085013567ffffffffffffffff811115612fa657612fa5614079565b5b612fb287828801612df5565b91505092959194509250565b60008060408385031215612fd557612fd461407e565b5b6000612fe385828601612d4b565b9250506020612ff485828601612db6565b9150509250929050565b600080604083850312156130155761301461407e565b5b600061302385828601612d4b565b925050602061303485828601612e51565b9150509250929050565b600080602083850312156130555761305461407e565b5b600083013567ffffffffffffffff81111561307357613072614079565b5b61307f85828601612d60565b92509250509250929050565b6000602082840312156130a1576130a061407e565b5b60006130af84828501612dcb565b91505092915050565b6000602082840312156130ce576130cd61407e565b5b60006130dc84828501612de0565b91505092915050565b6000602082840312156130fb576130fa61407e565b5b600082013567ffffffffffffffff81111561311957613118614079565b5b61312584828501612e23565b91505092915050565b6000602082840312156131445761314361407e565b5b600061315284828501612e51565b91505092915050565b6000602082840312156131715761317061407e565b5b600061317f84828501612e66565b91505092915050565b60006131948383613660565b905092915050565b60006131a883836136b4565b60208301905092915050565b6131bd81613dcb565b82525050565b60006131ce82613bdc565b6131d88185613c22565b9350836020820285016131ea85613bbc565b8060005b8581101561322657848403895281516132078582613188565b945061321283613c08565b925060208a019950506001810190506131ee565b50829750879550505050505092915050565b600061324382613be7565b61324d8185613c33565b935061325883613bcc565b8060005b83811015613289578151613270888261319c565b975061327b83613c15565b92505060018101905061325c565b5085935050505092915050565b61329f81613ddd565b82525050565b60006132b082613bf2565b6132ba8185613c44565b93506132ca818560208601613e5b565b6132d381614083565b840191505092915050565b60006132e982613bfd565b6132f38185613c55565b9350613303818560208601613e5b565b61330c81614083565b840191505092915050565b600061332282613bfd565b61332c8185613c66565b935061333c818560208601613e5b565b61334581614083565b840191505092915050565b600061335b82613bfd565b6133658185613c77565b9350613375818560208601613e5b565b80840191505092915050565b600061338e603283613c66565b915061339982614094565b604082019050919050565b60006133b1602683613c66565b91506133bc826140e3565b604082019050919050565b60006133d4601c83613c66565b91506133df82614132565b602082019050919050565b60006133f7601a83613c66565b91506134028261415b565b602082019050919050565b600061341a601383613c66565b915061342582614184565b602082019050919050565b600061343d602483613c66565b9150613448826141ad565b604082019050919050565b6000613460601983613c66565b915061346b826141fc565b602082019050919050565b6000613483602c83613c66565b915061348e82614225565b604082019050919050565b60006134a6601483613c66565b91506134b182614274565b602082019050919050565b60006134c9603883613c66565b91506134d48261429d565b604082019050919050565b60006134ec602a83613c66565b91506134f7826142ec565b604082019050919050565b600061350f602983613c66565b915061351a8261433b565b604082019050919050565b6000613532602083613c66565b915061353d8261438a565b602082019050919050565b6000613555602c83613c66565b9150613560826143b3565b604082019050919050565b6000613578602083613c66565b915061358382614402565b602082019050919050565b600061359b602983613c66565b91506135a68261442b565b604082019050919050565b60006135be602f83613c66565b91506135c98261447a565b604082019050919050565b60006135e1602183613c66565b91506135ec826144c9565b604082019050919050565b6000613604601483613c66565b915061360f82614518565b602082019050919050565b6000613627603183613c66565b915061363282614541565b604082019050919050565b600061364a601383613c66565b915061365582614590565b602082019050919050565b6000602083016000830151848203600086015261367d82826132de565b9150508091505092915050565b600060208301600083015184820360008601526136a782826132de565b9150508091505092915050565b6136bd81613e35565b82525050565b6136cc81613e35565b82525050565b60006136de8284613350565b915081905092915050565b60006136f58285613350565b91506137018284613350565b91508190509392505050565b600060208201905061372260008301846131b4565b92915050565b600060808201905061373d60008301876131b4565b61374a60208301866131b4565b61375760408301856136c3565b818103606083015261376981846132a5565b905095945050505050565b6000602082019050818103600083015261378e81846131c3565b905092915050565b600060208201905081810360008301526137b08184613238565b905092915050565b60006020820190506137cd6000830184613296565b92915050565b600060208201905081810360008301526137ed8184613317565b905092915050565b6000602082019050818103600083015261380e81613381565b9050919050565b6000602082019050818103600083015261382e816133a4565b9050919050565b6000602082019050818103600083015261384e816133c7565b9050919050565b6000602082019050818103600083015261386e816133ea565b9050919050565b6000602082019050818103600083015261388e8161340d565b9050919050565b600060208201905081810360008301526138ae81613430565b9050919050565b600060208201905081810360008301526138ce81613453565b9050919050565b600060208201905081810360008301526138ee81613476565b9050919050565b6000602082019050818103600083015261390e81613499565b9050919050565b6000602082019050818103600083015261392e816134bc565b9050919050565b6000602082019050818103600083015261394e816134df565b9050919050565b6000602082019050818103600083015261396e81613502565b9050919050565b6000602082019050818103600083015261398e81613525565b9050919050565b600060208201905081810360008301526139ae81613548565b9050919050565b600060208201905081810360008301526139ce8161356b565b9050919050565b600060208201905081810360008301526139ee8161358e565b9050919050565b60006020820190508181036000830152613a0e816135b1565b9050919050565b60006020820190508181036000830152613a2e816135d4565b9050919050565b60006020820190508181036000830152613a4e816135f7565b9050919050565b60006020820190508181036000830152613a6e8161361a565b9050919050565b60006020820190508181036000830152613a8e8161363d565b9050919050565b60006020820190508181036000830152613aaf818461368a565b905092915050565b6000602082019050613acc60008301846136c3565b92915050565b60008083356001602003843603038112613aef57613aee614065565b5b80840192508235915067ffffffffffffffff821115613b1157613b10614060565b5b602083019250600182023603831315613b2d57613b2c61406f565b5b509250929050565b6000613b3f613b50565b9050613b4b8282613ec0565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7557613b74614027565b5b613b7e82614083565b9050602081019050919050565b600067ffffffffffffffff821115613ba657613ba5614027565b5b613baf82614083565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8d82613e35565b9150613c9883613e35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ccd57613ccc613f6b565b5b828201905092915050565b6000613ce382613e35565b9150613cee83613e35565b925082613cfe57613cfd613f9a565b5b828204905092915050565b6000613d1482613e35565b9150613d1f83613e35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5857613d57613f6b565b5b828202905092915050565b6000613d6e82613e35565b9150613d7983613e35565b925082821015613d8c57613d8b613f6b565b5b828203905092915050565b6000613da282613e3f565b9150613dad83613e3f565b925082821015613dc057613dbf613f6b565b5b828203905092915050565b6000613dd682613e15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e79578082015181840152602081019050613e5e565b83811115613e88576000848401525b50505050565b60006002820490506001821680613ea657607f821691505b60208210811415613eba57613eb9613fc9565b5b50919050565b613ec982614083565b810181811067ffffffffffffffff82111715613ee857613ee7614027565b5b80604052505050565b6000613efc82613e35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2f57613f2e613f6b565b5b600182019050919050565b6000613f4582613e35565b9150613f5083613e35565b925082613f6057613f5f613f9a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c7920686173206265656e206d696e746564000000000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e616d6520616c72656164792065786973747321000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4554482076616c756520696e636f727265637400000000000000000000000000600082015250565b6145c281613dcb565b81146145cd57600080fd5b50565b6145d981613ddd565b81146145e457600080fd5b50565b6145f081613de9565b81146145fb57600080fd5b50565b61460781613e35565b811461461257600080fd5b5056fea2646970667358221220fbc872c6fc9068ec2322a70eb58c425c043509e5c8f50372b8227becd5e72ef364736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e697736374d6e3775595a676f46447a43326f6f4b4651466d4b636b706d64597642785547704d734b314536

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e427ba5111610064578063e427ba511461070d578063e8a3d48514610736578063e985e9c514610761578063f2fde38b1461079e576101e3565b8063b88d4fde1461062d578063be2b1a5b14610656578063c87b56dd14610693578063cc852c43146106d0576101e3565b806395d89b41116100d157806395d89b411461058557806398d5fdca146105b0578063a0bcfc7f146105db578063a22cb46514610604576101e3565b8063715018a6146105015780638456cb59146105185780638d859f3e1461052f5780638da5cb5b1461055a576101e3565b806342842e0e1161017a5780636805b84b116101495780636805b84b1461041f578063690dfa401461044a5780636e05e23c1461048757806370a08231146104c4576101e3565b806342842e0e1461035e5780634c0f38c2146103875780635768f271146103b25780636352211e146103e2576101e3565b806318160ddd116101b657806318160ddd146102b65780631e7663bc146102e157806323b872dd1461031e5780633f4ba83a14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061308b565b6107c7565b60405161021c91906137b8565b60405180910390f35b34801561023157600080fd5b5061023a6108a9565b60405161024791906137d3565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061312e565b61093b565b604051610284919061370d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ffe565b6109c0565b005b3480156102c257600080fd5b506102cb610ad8565b6040516102d89190613ab7565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130e5565b610ae5565b6040516103159190613ab7565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612ee8565b610b19565b005b34801561035357600080fd5b5061035c610b79565b005b34801561036a57600080fd5b5061038560048036038101906103809190612ee8565b610c12565b005b34801561039357600080fd5b5061039c610c32565b6040516103a99190613ab7565b60405180910390f35b6103cc60048036038101906103c7919061303e565b610c3c565b6040516103d991906137b8565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061312e565b61102c565b604051610416919061370d565b60405180910390f35b34801561042b57600080fd5b506104346110de565b60405161044191906137b8565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061312e565b6110f5565b60405161047e91906137d3565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061312e565b6111a7565b6040516104bb9190613a95565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612e7b565b61128a565b6040516104f89190613ab7565b60405180910390f35b34801561050d57600080fd5b50610516611342565b005b34801561052457600080fd5b5061052d61147f565b005b34801561053b57600080fd5b50610544611518565b6040516105519190613ab7565b60405180910390f35b34801561056657600080fd5b5061056f61151e565b60405161057c919061370d565b60405180910390f35b34801561059157600080fd5b5061059a611548565b6040516105a791906137d3565b60405180910390f35b3480156105bc57600080fd5b506105c56115da565b6040516105d29190613ab7565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd91906130e5565b611673565b005b34801561061057600080fd5b5061062b60048036038101906106269190612fbe565b611709565b005b34801561063957600080fd5b50610654600480360381019061064f9190612f3b565b61188a565b005b34801561066257600080fd5b5061067d60048036038101906106789190612e7b565b6118ec565b60405161068a9190613774565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061312e565b611aad565b6040516106c791906137d3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190612e7b565b611b54565b6040516107049190613796565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906130e5565b611c51565b005b34801561074257600080fd5b5061074b611ce7565b60405161075891906137d3565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612ea8565b611d79565b60405161079591906137b8565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612e7b565b611e0d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a182611fb9565b5b9050919050565b6060600080546108b890613e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490613e8e565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b600061094682612023565b610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90613995565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cb8261102c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613a15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5b61208f565b73ffffffffffffffffffffffffffffffffffffffff161480610a8a5750610a8981610a8461208f565b611d79565b5b610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090613915565b60405180910390fd5b610ad38383612097565b505050565b6000600f80549050905090565b60006001600e83604051610af991906136d2565b908152602001604051809103902054610b129190613c82565b9050919050565b610b2a610b2461208f565b82612150565b610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613a55565b60405180910390fd5b610b7483838361222e565b505050565b610b8161208f565b73ffffffffffffffffffffffffffffffffffffffff16610b9f61151e565b73ffffffffffffffffffffffffffffffffffffffff1614610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906139b5565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b610c2d8383836040518060200160405280600081525061188a565b505050565b6000600854905090565b6000600d60009054906101000a900460ff1615610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613875565b60405180910390fd5b60085483839050600f80549050610ca59190613c82565b10610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613855565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166398d5fdca6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d2d57600080fd5b505afa158015610d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d65919061315b565b90506000811115610e8e578383905081610d7f9190613d09565b3373ffffffffffffffffffffffffffffffffffffffff163111610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613a35565b60405180910390fd5b83839050600a54610de89190613d09565b3414610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613a75565b60405180910390fd5b6000610e3361151e565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc86869050600a54610e609190613d09565b9081150290604051600060405180830381858888f19350505050158015610e8b573d6000803e3d6000fd5b50505b60005b84849050811015611020576000610f0e868684818110610eb457610eb3613ff8565b5b9050602002810190610ec69190613ad2565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061248a565b90506000600e82604051610f2291906136d2565b90815260200160405180910390205414610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906138f5565b60405180910390fd5b610f7b6007612522565b6000610f876007612538565b9050610f933382612546565b600f604051806020016040528084815250908060018154018082558091505060019003906000526020600020016000909190919091506000820151816000019080519060200190610fe5929190612c11565b50505080600e83604051610ff991906136d2565b9081526020016040518091039020819055505050808061101890613ef1565b915050610e91565b50600191505092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613955565b60405180910390fd5b80915050919050565b6000600d60009054906101000a900460ff16905090565b600f818154811061110557600080fd5b9060005260206000200160009150905080600001805461112490613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613e8e565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b5050505050905081565b6111af612c97565b600082116111bc57600080fd5b600f6001836111cb9190613d63565b815481106111dc576111db613ff8565b5b9060005260206000200160405180602001604052908160008201805461120190613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613e8e565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613935565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134a61208f565b73ffffffffffffffffffffffffffffffffffffffff1661136861151e565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906139b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61148761208f565b73ffffffffffffffffffffffffffffffffffffffff166114a561151e565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f2906139b5565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b600a5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155790613e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461158390613e8e565b80156115d05780601f106115a5576101008083540402835291602001916115d0565b820191906000526020600020905b8154815290600101906020018083116115b357829003601f168201915b5050505050905090565b600060c83073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561162457600080fd5b505afa158015611638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165c919061315b565b1061166b57600a549050611670565b600090505b90565b61167b61208f565b73ffffffffffffffffffffffffffffffffffffffff1661169961151e565b73ffffffffffffffffffffffffffffffffffffffff16146116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906139b5565b60405180910390fd5b80600b9080519060200190611705929190612c11565b5050565b61171161208f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611776906138b5565b60405180910390fd5b806005600061178c61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183961208f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187e91906137b8565b60405180910390a35050565b61189b61189561208f565b83612150565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613a55565b60405180910390fd5b6118e684848484612564565b50505050565b606060006118f98361128a565b67ffffffffffffffff81111561191257611911614027565b5b60405190808252806020026020018201604052801561194b57816020015b611938612c97565b8152602001906001900390816119305790505b5090506000805b600f80549050811015611aa2578473ffffffffffffffffffffffffffffffffffffffff1661198b6001836119869190613c82565b61102c565b73ffffffffffffffffffffffffffffffffffffffff161415611a8f57600f81815481106119bb576119ba613ff8565b5b906000526020600020016040518060200160405290816000820180546119e090613e8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0c90613e8e565b8015611a595780601f10611a2e57610100808354040283529160200191611a59565b820191906000526020600020905b815481529060010190602001808311611a3c57829003601f168201915b505050505081525050838381518110611a7557611a74613ff8565b5b60200260200101819052508180611a8b90613ef1565b9250505b8080611a9a90613ef1565b915050611952565b508192505050919050565b6060611ab882612023565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906139f5565b60405180910390fd5b6000611b016125c0565b90506000815111611b215760405180602001604052806000815250611b4c565b80611b2b84612652565b604051602001611b3c9291906136e9565b6040516020818303038152906040525b915050919050565b60606000611b618361128a565b67ffffffffffffffff811115611b7a57611b79614027565b5b604051908082528060200260200182016040528015611ba85781602001602082028036833780820191505090505b5090506000805b600f80549050811015611c46578473ffffffffffffffffffffffffffffffffffffffff16611be8600183611be39190613c82565b61102c565b73ffffffffffffffffffffffffffffffffffffffff161415611c335780838381518110611c1857611c17613ff8565b5b6020026020010181815250508180611c2f90613ef1565b9250505b8080611c3e90613ef1565b915050611baf565b508192505050919050565b611c5961208f565b73ffffffffffffffffffffffffffffffffffffffff16611c7761151e565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906139b5565b60405180910390fd5b80600c9080519060200190611ce3929190612c11565b5050565b6060600c8054611cf690613e8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2290613e8e565b8015611d6f5780601f10611d4457610100808354040283529160200191611d6f565b820191906000526020600020905b815481529060010190602001808311611d5257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e1561208f565b73ffffffffffffffffffffffffffffffffffffffff16611e3361151e565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906139b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613815565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661210a8361102c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061215b82612023565b61219a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612191906138d5565b60405180910390fd5b60006121a58361102c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221457508373ffffffffffffffffffffffffffffffffffffffff166121fc8461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222557506122248185611d79565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224e8261102c565b73ffffffffffffffffffffffffffffffffffffffff16146122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b906139d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613895565b60405180910390fd5b61231f8383836127b3565b61232a600082612097565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237a9190613d63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d19190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082905060005b8151811015612518576124c38282815181106124b3576124b2613ff8565b5b602001015160f81c60f81b6127b8565b8282815181106124d6576124d5613ff8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061251090613ef1565b915050612494565b5080915050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61256082826040518060200160405280600081525061283e565b5050565b61256f84848461222e565b61257b84848484612899565b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b1906137f5565b60405180910390fd5b50505050565b6060600b80546125cf90613e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546125fb90613e8e565b80156126485780601f1061261d57610100808354040283529160200191612648565b820191906000526020600020905b81548152906001019060200180831161262b57829003601f168201915b5050505050905090565b6060600082141561269a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ae565b600082905060005b600082146126cc5780806126b590613ef1565b915050600a826126c59190613cd8565b91506126a2565b60008167ffffffffffffffff8111156126e8576126e7614027565b5b6040519080825280601f01601f19166020018201604052801561271a5781602001600182028036833780820191505090505b5090505b600085146127a7576001826127339190613d63565b9150600a856127429190613f3a565b603061274e9190613c82565b60f81b81838151811061276457612763613ff8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a09190613cd8565b945061271e565b8093505050505b919050565b505050565b6000606160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156128165750607a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b156128355760208260f81c61282b9190613d97565b60f81b9050612839565b8190505b919050565b6128488383612a30565b6128556000848484612899565b612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b906137f5565b60405180910390fd5b505050565b60006128ba8473ffffffffffffffffffffffffffffffffffffffff16612bfe565b15612a23578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128e361208f565b8786866040518563ffffffff1660e01b81526004016129059493929190613728565b602060405180830381600087803b15801561291f57600080fd5b505af192505050801561295057506040513d601f19601f8201168201806040525081019061294d91906130b8565b60015b6129d3573d8060008114612980576040519150601f19603f3d011682016040523d82523d6000602084013e612985565b606091505b506000815114156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c2906137f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a28565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790613975565b60405180910390fd5b612aa981612023565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090613835565b60405180910390fd5b612af5600083836127b3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b459190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1d90613e8e565b90600052602060002090601f016020900481019282612c3f5760008555612c86565b82601f10612c5857805160ff1916838001178555612c86565b82800160010185558215612c86579182015b82811115612c85578251825591602001919060010190612c6a565b5b509050612c939190612caa565b5090565b6040518060200160405280606081525090565b5b80821115612cc3576000816000905550600101612cab565b5090565b6000612cda612cd584613b5a565b613b35565b905082815260208101848484011115612cf657612cf5614074565b5b612d01848285613e4c565b509392505050565b6000612d1c612d1784613b8b565b613b35565b905082815260208101848484011115612d3857612d37614074565b5b612d43848285613e4c565b509392505050565b600081359050612d5a816145b9565b92915050565b60008083601f840112612d7657612d7561405b565b5b8235905067ffffffffffffffff811115612d9357612d92614056565b5b602083019150836020820283011115612daf57612dae61406a565b5b9250929050565b600081359050612dc5816145d0565b92915050565b600081359050612dda816145e7565b92915050565b600081519050612def816145e7565b92915050565b600082601f830112612e0a57612e0961405b565b5b8135612e1a848260208601612cc7565b91505092915050565b600082601f830112612e3857612e3761405b565b5b8135612e48848260208601612d09565b91505092915050565b600081359050612e60816145fe565b92915050565b600081519050612e75816145fe565b92915050565b600060208284031215612e9157612e9061407e565b5b6000612e9f84828501612d4b565b91505092915050565b60008060408385031215612ebf57612ebe61407e565b5b6000612ecd85828601612d4b565b9250506020612ede85828601612d4b565b9150509250929050565b600080600060608486031215612f0157612f0061407e565b5b6000612f0f86828701612d4b565b9350506020612f2086828701612d4b565b9250506040612f3186828701612e51565b9150509250925092565b60008060008060808587031215612f5557612f5461407e565b5b6000612f6387828801612d4b565b9450506020612f7487828801612d4b565b9350506040612f8587828801612e51565b925050606085013567ffffffffffffffff811115612fa657612fa5614079565b5b612fb287828801612df5565b91505092959194509250565b60008060408385031215612fd557612fd461407e565b5b6000612fe385828601612d4b565b9250506020612ff485828601612db6565b9150509250929050565b600080604083850312156130155761301461407e565b5b600061302385828601612d4b565b925050602061303485828601612e51565b9150509250929050565b600080602083850312156130555761305461407e565b5b600083013567ffffffffffffffff81111561307357613072614079565b5b61307f85828601612d60565b92509250509250929050565b6000602082840312156130a1576130a061407e565b5b60006130af84828501612dcb565b91505092915050565b6000602082840312156130ce576130cd61407e565b5b60006130dc84828501612de0565b91505092915050565b6000602082840312156130fb576130fa61407e565b5b600082013567ffffffffffffffff81111561311957613118614079565b5b61312584828501612e23565b91505092915050565b6000602082840312156131445761314361407e565b5b600061315284828501612e51565b91505092915050565b6000602082840312156131715761317061407e565b5b600061317f84828501612e66565b91505092915050565b60006131948383613660565b905092915050565b60006131a883836136b4565b60208301905092915050565b6131bd81613dcb565b82525050565b60006131ce82613bdc565b6131d88185613c22565b9350836020820285016131ea85613bbc565b8060005b8581101561322657848403895281516132078582613188565b945061321283613c08565b925060208a019950506001810190506131ee565b50829750879550505050505092915050565b600061324382613be7565b61324d8185613c33565b935061325883613bcc565b8060005b83811015613289578151613270888261319c565b975061327b83613c15565b92505060018101905061325c565b5085935050505092915050565b61329f81613ddd565b82525050565b60006132b082613bf2565b6132ba8185613c44565b93506132ca818560208601613e5b565b6132d381614083565b840191505092915050565b60006132e982613bfd565b6132f38185613c55565b9350613303818560208601613e5b565b61330c81614083565b840191505092915050565b600061332282613bfd565b61332c8185613c66565b935061333c818560208601613e5b565b61334581614083565b840191505092915050565b600061335b82613bfd565b6133658185613c77565b9350613375818560208601613e5b565b80840191505092915050565b600061338e603283613c66565b915061339982614094565b604082019050919050565b60006133b1602683613c66565b91506133bc826140e3565b604082019050919050565b60006133d4601c83613c66565b91506133df82614132565b602082019050919050565b60006133f7601a83613c66565b91506134028261415b565b602082019050919050565b600061341a601383613c66565b915061342582614184565b602082019050919050565b600061343d602483613c66565b9150613448826141ad565b604082019050919050565b6000613460601983613c66565b915061346b826141fc565b602082019050919050565b6000613483602c83613c66565b915061348e82614225565b604082019050919050565b60006134a6601483613c66565b91506134b182614274565b602082019050919050565b60006134c9603883613c66565b91506134d48261429d565b604082019050919050565b60006134ec602a83613c66565b91506134f7826142ec565b604082019050919050565b600061350f602983613c66565b915061351a8261433b565b604082019050919050565b6000613532602083613c66565b915061353d8261438a565b602082019050919050565b6000613555602c83613c66565b9150613560826143b3565b604082019050919050565b6000613578602083613c66565b915061358382614402565b602082019050919050565b600061359b602983613c66565b91506135a68261442b565b604082019050919050565b60006135be602f83613c66565b91506135c98261447a565b604082019050919050565b60006135e1602183613c66565b91506135ec826144c9565b604082019050919050565b6000613604601483613c66565b915061360f82614518565b602082019050919050565b6000613627603183613c66565b915061363282614541565b604082019050919050565b600061364a601383613c66565b915061365582614590565b602082019050919050565b6000602083016000830151848203600086015261367d82826132de565b9150508091505092915050565b600060208301600083015184820360008601526136a782826132de565b9150508091505092915050565b6136bd81613e35565b82525050565b6136cc81613e35565b82525050565b60006136de8284613350565b915081905092915050565b60006136f58285613350565b91506137018284613350565b91508190509392505050565b600060208201905061372260008301846131b4565b92915050565b600060808201905061373d60008301876131b4565b61374a60208301866131b4565b61375760408301856136c3565b818103606083015261376981846132a5565b905095945050505050565b6000602082019050818103600083015261378e81846131c3565b905092915050565b600060208201905081810360008301526137b08184613238565b905092915050565b60006020820190506137cd6000830184613296565b92915050565b600060208201905081810360008301526137ed8184613317565b905092915050565b6000602082019050818103600083015261380e81613381565b9050919050565b6000602082019050818103600083015261382e816133a4565b9050919050565b6000602082019050818103600083015261384e816133c7565b9050919050565b6000602082019050818103600083015261386e816133ea565b9050919050565b6000602082019050818103600083015261388e8161340d565b9050919050565b600060208201905081810360008301526138ae81613430565b9050919050565b600060208201905081810360008301526138ce81613453565b9050919050565b600060208201905081810360008301526138ee81613476565b9050919050565b6000602082019050818103600083015261390e81613499565b9050919050565b6000602082019050818103600083015261392e816134bc565b9050919050565b6000602082019050818103600083015261394e816134df565b9050919050565b6000602082019050818103600083015261396e81613502565b9050919050565b6000602082019050818103600083015261398e81613525565b9050919050565b600060208201905081810360008301526139ae81613548565b9050919050565b600060208201905081810360008301526139ce8161356b565b9050919050565b600060208201905081810360008301526139ee8161358e565b9050919050565b60006020820190508181036000830152613a0e816135b1565b9050919050565b60006020820190508181036000830152613a2e816135d4565b9050919050565b60006020820190508181036000830152613a4e816135f7565b9050919050565b60006020820190508181036000830152613a6e8161361a565b9050919050565b60006020820190508181036000830152613a8e8161363d565b9050919050565b60006020820190508181036000830152613aaf818461368a565b905092915050565b6000602082019050613acc60008301846136c3565b92915050565b60008083356001602003843603038112613aef57613aee614065565b5b80840192508235915067ffffffffffffffff821115613b1157613b10614060565b5b602083019250600182023603831315613b2d57613b2c61406f565b5b509250929050565b6000613b3f613b50565b9050613b4b8282613ec0565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7557613b74614027565b5b613b7e82614083565b9050602081019050919050565b600067ffffffffffffffff821115613ba657613ba5614027565b5b613baf82614083565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8d82613e35565b9150613c9883613e35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ccd57613ccc613f6b565b5b828201905092915050565b6000613ce382613e35565b9150613cee83613e35565b925082613cfe57613cfd613f9a565b5b828204905092915050565b6000613d1482613e35565b9150613d1f83613e35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5857613d57613f6b565b5b828202905092915050565b6000613d6e82613e35565b9150613d7983613e35565b925082821015613d8c57613d8b613f6b565b5b828203905092915050565b6000613da282613e3f565b9150613dad83613e3f565b925082821015613dc057613dbf613f6b565b5b828203905092915050565b6000613dd682613e15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e79578082015181840152602081019050613e5e565b83811115613e88576000848401525b50505050565b60006002820490506001821680613ea657607f821691505b60208210811415613eba57613eb9613fc9565b5b50919050565b613ec982614083565b810181811067ffffffffffffffff82111715613ee857613ee7614027565b5b80604052505050565b6000613efc82613e35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2f57613f2e613f6b565b5b600182019050919050565b6000613f4582613e35565b9150613f5083613e35565b925082613f6057613f5f613f9a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c7920686173206265656e206d696e746564000000000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e616d6520616c72656164792065786973747321000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4554482076616c756520696e636f727265637400000000000000000000000000600082015250565b6145c281613dcb565b81146145cd57600080fd5b50565b6145d981613ddd565b81146145e457600080fd5b50565b6145f081613de9565b81146145fb57600080fd5b50565b61460781613e35565b811461461257600080fd5b5056fea2646970667358221220fbc872c6fc9068ec2322a70eb58c425c043509e5c8f50372b8227becd5e72ef364736f6c63430008060033

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.