ETH Price: $2,288.32 (+1.06%)

Token

PinMasterCharacters (PMC)
 

Overview

Max Total Supply

0 PMC

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PMC
0xb54ec89e7823f7d784dff9f5cfcf0d00a2610aea
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:
PinMasterCharacters

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PinMasterCharacters.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

contract PinMasterCharacters is ERC721, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    
    //Chainlink price feed
    AggregatorV3Interface internal _priceFeed;

    //Number of Characters that has been minted
    Counters.Counter public _characterIds;

    //Price required for buying a ticket
    int256 public _usdPrice;

    //Number of tickets that each account has
    mapping(address => uint256) public _tickets;

    //Number of tickets left to sell
    uint256 public _ticketsLeft;

    /**
    * @dev Event emitted when token a Ticket is bought by `buyer`.
    */
    event TicketBought(address indexed buyer, uint256 indexed tickets);

    /**
    * @dev Event emitted when a character with `characterId` is created by `creator`
    */
    event CharacterCreated(address indexed creator, uint256 indexed characterId);
    
    /**
    * @dev Set the `initialPrice` for selling the ticket and the Chainlink oracle address. Initializes ERC721
    *
    * Rinkeby: 0x8A753747A1Fa494EC906cE90E9f37563A8AF630e
    * Mainnet: 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
    */
    constructor(int256 initialPrice, uint256 max_supply, address _priceFeedAddress) ERC721("PinMasterCharacters", "PMC") {
        _usdPrice = initialPrice;
        _ticketsLeft = max_supply;
        _priceFeed = AggregatorV3Interface(_priceFeedAddress);
    }

    /**
    * @dev Override burn function
    */
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    /**
    * @dev Override tokenURI function
    */
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    /**
    * @dev Buy a ticket. An event will be emitted once the ticket is bought. 
    *      The sender needs to sent enough ether to cover the ticket costs, that is initially
    *      set in USD and converted to ether through the ChainLink Oracle
    */
    function buyTicket(int amount) external payable {
        require(_ticketsLeft - uint(amount) >= 0, "Not enough tickets left");
        require(amount > 0, "Minimum purchase is 1 ticket");
        int price = this.getLatestPrice();
        int etherCost = ((amount * _usdPrice * (10 ** 16)) / price);
        int etherSent = (int)(msg.value / (10 ** 10));
        require(etherSent >= etherCost, "Not enough Ether sent");
        _tickets[msg.sender] += uint(amount);
        _ticketsLeft -= uint(amount);
        emit TicketBought(msg.sender, _tickets[msg.sender]);
    }

    /**
    * @dev Get the latest ETH/USD price using ChainLink oracle
    */
    function getLatestPrice() public view returns (int) {
        (
            /*uint80 roundID*/,
            int price,
            /*uint startedAt*/,
            /*uint timeStamp*/,
            /*uint80 answeredInRound*/
        ) = _priceFeed.latestRoundData();
        return price;
    }

    /**
    * @dev If the `msg.sender` has a ticket, it mints a new ERC721 with `characterURI`.
    *      An event is emitted when the ERC721 token is minted.
    */    
    function mintCharacter(string memory characterURI) external {
        require(_tickets[msg.sender] >= 1, "Don't have enough tickets");
        _characterIds.increment();
        _mint(msg.sender, _characterIds.current());
        _setTokenURI(_characterIds.current(), characterURI);
        _tickets[msg.sender] -= 1;
        emit CharacterCreated(msg.sender, _characterIds.current());
    }

    /**
    * @dev Allows the owner to withdraw the ETH contained in the Smart Contract
    */
    function withdraw() public onlyOwner{
        require(address(this).balance > 0, "Balance is 0");
        payable(owner()).transfer(address(this).balance);
    }

}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 14 : AggregatorV3Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface AggregatorV3Interface {
  function decimals() external view returns (uint8);

  function description() external view returns (string memory);

  function version() external view returns (uint256);

  // getRoundData and latestRoundData should both raise "No data present"
  // if they do not have data to report, instead of returning unset values
  // which could be misinterpreted as actual reported values.
  function getRoundData(uint80 _roundId)
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );

  function latestRoundData()
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"int256","name":"initialPrice","type":"int256"},{"internalType":"uint256","name":"max_supply","type":"uint256"},{"internalType":"address","name":"_priceFeedAddress","type":"address"}],"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":"creator","type":"address"},{"indexed":true,"internalType":"uint256","name":"characterId","type":"uint256"}],"name":"CharacterCreated","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":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tickets","type":"uint256"}],"name":"TicketBought","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":"_characterIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_tickets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ticketsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_usdPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int256","name":"amount","type":"int256"}],"name":"buyTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"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":"characterURI","type":"string"}],"name":"mintCharacter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":[{"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620040fd380380620040fd8339818101604052810190620000379190620003ad565b6040518060400160405280601381526020017f50696e4d617374657243686172616374657273000000000000000000000000008152506040518060400160405280600381526020017f504d4300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200021d565b508060019080519060200190620000d49291906200021d565b505050620000f7620000eb6200014f60201b60201c565b6200015760201b60201c565b82600a8190555081600c8190555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200046e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b9062000438565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b600080fd5b6000819050919050565b620002e781620002d2565b8114620002f357600080fd5b50565b6000815190506200030781620002dc565b92915050565b6000819050919050565b62000322816200030d565b81146200032e57600080fd5b50565b600081519050620003428162000317565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003758262000348565b9050919050565b620003878162000368565b81146200039357600080fd5b50565b600081519050620003a7816200037c565b92915050565b600080600060608486031215620003c957620003c8620002cd565b5b6000620003d986828701620002f6565b9350506020620003ec8682870162000331565b9250506040620003ff8682870162000396565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045157607f821691505b6020821081141562000468576200046762000409565b5b50919050565b613c7f806200047e6000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063cd6c4e1b146104ee578063e985e9c51461052b578063f2fde38b146105685761014b565b806370a082311461036e578063715018a6146103ab5780638579f9e2146103c25780638da5cb5b146103de5780638e15f4731461040957806395d89b41146104345761014b565b806323b872dd1161010857806323b872dd146102745780632b1d50391461029d5780633ccfd60b146102c657806342842e0e146102dd57806353090a6b146103065780636352211e146103315761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631a16aacd1461021e5780631d1677b614610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906123b8565b610591565b6040516101849190612400565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af91906124b4565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061250c565b610705565b6040516101ec919061257a565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906125c1565b61078a565b005b34801561022a57600080fd5b506102336108a2565b604051610240919061261a565b60405180910390f35b34801561025557600080fd5b5061025e6108a8565b60405161026b9190612644565b60405180910390f35b34801561028057600080fd5b5061029b6004803603810190610296919061265f565b6108ae565b005b3480156102a957600080fd5b506102c460048036038101906102bf91906127e7565b61090e565b005b3480156102d257600080fd5b506102db610a68565b005b3480156102e957600080fd5b5061030460048036038101906102ff919061265f565b610b77565b005b34801561031257600080fd5b5061031b610b97565b6040516103289190612644565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061250c565b610ba3565b604051610365919061257a565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612830565b610c55565b6040516103a29190612644565b60405180910390f35b3480156103b757600080fd5b506103c0610d0d565b005b6103dc60048036038101906103d79190612889565b610d95565b005b3480156103ea57600080fd5b506103f361101b565b604051610400919061257a565b60405180910390f35b34801561041557600080fd5b5061041e611045565b60405161042b919061261a565b60405180910390f35b34801561044057600080fd5b506104496110e6565b60405161045691906124b4565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906128e2565b611178565b005b34801561049457600080fd5b506104af60048036038101906104aa91906129c3565b61118e565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061250c565b6111f0565b6040516104e591906124b4565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612830565b611202565b6040516105229190612644565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612a46565b61121a565b60405161055f9190612400565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612830565b6112ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826113a6565b5b9050919050565b60606000805461068290612ab5565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90612ab5565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611410565b61074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690612b59565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079582610ba3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612beb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082561147c565b73ffffffffffffffffffffffffffffffffffffffff16148061085457506108538161084e61147c565b61121a565b5b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612c7d565b60405180910390fd5b61089d8383611484565b505050565b600a5481565b600c5481565b6108bf6108b961147c565b8261153d565b6108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612d0f565b60405180910390fd5b61090983838361161b565b505050565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890612d7b565b60405180910390fd5b61099b6009611882565b6109ae336109a96009611898565b6118a6565b6109c16109bb6009611898565b82611a80565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a119190612dca565b92505081905550610a226009611898565b3373ffffffffffffffffffffffffffffffffffffffff167f01269de8ca9889348c81498ea6aa98b1f133bd5b3e20a212c24d9858ddd9b63660405160405180910390a350565b610a7061147c565b73ffffffffffffffffffffffffffffffffffffffff16610a8e61101b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90612e4a565b60405180910390fd5b60004711610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90612eb6565b60405180910390fd5b610b2f61101b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b74573d6000803e3d6000fd5b50565b610b928383836040518060200160405280600081525061118e565b505050565b60098060000154905081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612f48565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612fda565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d1561147c565b73ffffffffffffffffffffffffffffffffffffffff16610d3361101b565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612e4a565b60405180910390fd5b610d936000611af4565b565b600081600c54610da59190612dca565b1015610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613046565b60405180910390fd5b60008113610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906130b2565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9a91906130e7565b9050600081662386f26fc10000600a5485610eb59190613114565b610ebf9190613114565b610ec9919061325a565b905060006402540be40034610ede91906132c4565b905081811215610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613341565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f729190613361565b9250508190555083600c6000828254610f8b9190612dca565b92505081905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020543373ffffffffffffffffffffffffffffffffffffffff167f985d112c54c7518a49841fc37640d9ded60112ea7370ca9129c8ed33c3607bc760405160405180910390a350505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156110b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d9919061340e565b5050509150508091505090565b6060600180546110f590612ab5565b80601f016020809104026020016040519081016040528092919081815260200182805461112190612ab5565b801561116e5780601f106111435761010080835404028352916020019161116e565b820191906000526020600020905b81548152906001019060200180831161115157829003601f168201915b5050505050905090565b61118a61118361147c565b8383611bba565b5050565b61119f61119961147c565b8361153d565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612d0f565b60405180910390fd5b6111ea84848484611d27565b50505050565b60606111fb82611d83565b9050919050565b600b6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b661147c565b73ffffffffffffffffffffffffffffffffffffffff166112d461101b565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906134fb565b60405180910390fd5b6113a381611af4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114f783610ba3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061154882611410565b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061358d565b60405180910390fd5b600061159283610ba3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160157508373ffffffffffffffffffffffffffffffffffffffff166115e984610705565b73ffffffffffffffffffffffffffffffffffffffff16145b806116125750611611818561121a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163b82610ba3565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906136b1565b60405180910390fd5b61170c838383611ed5565b611717600082611484565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117679190612dca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117be9190613361565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187d838383611eda565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061371d565b60405180910390fd5b61191f81611410565b1561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613789565b60405180910390fd5b61196b60008383611ed5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119bb9190613361565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7c60008383611eda565b5050565b611a8982611410565b611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061381b565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611aef9291906122a9565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613887565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612400565b60405180910390a3505050565b611d3284848461161b565b611d3e84848484611edf565b611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490613919565b60405180910390fd5b50505050565b6060611d8e82611410565b611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc4906139ab565b60405180910390fd5b6000600660008481526020019081526020016000208054611ded90612ab5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1990612ab5565b8015611e665780601f10611e3b57610100808354040283529160200191611e66565b820191906000526020600020905b815481529060010190602001808311611e4957829003601f168201915b505050505090506000611e77612067565b9050600081511415611e8d578192505050611ed0565b600082511115611ec2578082604051602001611eaa929190613a07565b60405160208183030381529060405292505050611ed0565b611ecb8461207e565b925050505b919050565b505050565b505050565b6000611f008473ffffffffffffffffffffffffffffffffffffffff16612125565b1561205a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f2961147c565b8786866040518563ffffffff1660e01b8152600401611f4b9493929190613a80565b6020604051808303816000875af1925050508015611f8757506040513d601f19601f82011682018060405250810190611f849190613ae1565b60015b61200a573d8060008114611fb7576040519150601f19603f3d011682016040523d82523d6000602084013e611fbc565b606091505b50600081511415612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990613919565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061205f565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061208982611410565b6120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90613b80565b60405180910390fd5b60006120d2612067565b905060008151116120f2576040518060200160405280600081525061211d565b806120fc84612148565b60405160200161210d929190613a07565b6040516020818303038152906040525b915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612190576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122a4565b600082905060005b600082146121c25780806121ab90613ba0565b915050600a826121bb91906132c4565b9150612198565b60008167ffffffffffffffff8111156121de576121dd6126bc565b5b6040519080825280601f01601f1916602001820160405280156122105781602001600182028036833780820191505090505b5090505b6000851461229d576001826122299190612dca565b9150600a856122389190613be9565b60306122449190613361565b60f81b81838151811061225a57612259613c1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561229691906132c4565b9450612214565b8093505050505b919050565b8280546122b590612ab5565b90600052602060002090601f0160209004810192826122d7576000855561231e565b82601f106122f057805160ff191683800117855561231e565b8280016001018555821561231e579182015b8281111561231d578251825591602001919060010190612302565b5b50905061232b919061232f565b5090565b5b80821115612348576000816000905550600101612330565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239581612360565b81146123a057600080fd5b50565b6000813590506123b28161238c565b92915050565b6000602082840312156123ce576123cd612356565b5b60006123dc848285016123a3565b91505092915050565b60008115159050919050565b6123fa816123e5565b82525050565b600060208201905061241560008301846123f1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245557808201518184015260208101905061243a565b83811115612464576000848401525b50505050565b6000601f19601f8301169050919050565b60006124868261241b565b6124908185612426565b93506124a0818560208601612437565b6124a98161246a565b840191505092915050565b600060208201905081810360008301526124ce818461247b565b905092915050565b6000819050919050565b6124e9816124d6565b81146124f457600080fd5b50565b600081359050612506816124e0565b92915050565b60006020828403121561252257612521612356565b5b6000612530848285016124f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256482612539565b9050919050565b61257481612559565b82525050565b600060208201905061258f600083018461256b565b92915050565b61259e81612559565b81146125a957600080fd5b50565b6000813590506125bb81612595565b92915050565b600080604083850312156125d8576125d7612356565b5b60006125e6858286016125ac565b92505060206125f7858286016124f7565b9150509250929050565b6000819050919050565b61261481612601565b82525050565b600060208201905061262f600083018461260b565b92915050565b61263e816124d6565b82525050565b60006020820190506126596000830184612635565b92915050565b60008060006060848603121561267857612677612356565b5b6000612686868287016125ac565b9350506020612697868287016125ac565b92505060406126a8868287016124f7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126f48261246a565b810181811067ffffffffffffffff82111715612713576127126126bc565b5b80604052505050565b600061272661234c565b905061273282826126eb565b919050565b600067ffffffffffffffff821115612752576127516126bc565b5b61275b8261246a565b9050602081019050919050565b82818337600083830152505050565b600061278a61278584612737565b61271c565b9050828152602081018484840111156127a6576127a56126b7565b5b6127b1848285612768565b509392505050565b600082601f8301126127ce576127cd6126b2565b5b81356127de848260208601612777565b91505092915050565b6000602082840312156127fd576127fc612356565b5b600082013567ffffffffffffffff81111561281b5761281a61235b565b5b612827848285016127b9565b91505092915050565b60006020828403121561284657612845612356565b5b6000612854848285016125ac565b91505092915050565b61286681612601565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e612356565b5b60006128ad84828501612874565b91505092915050565b6128bf816123e5565b81146128ca57600080fd5b50565b6000813590506128dc816128b6565b92915050565b600080604083850312156128f9576128f8612356565b5b6000612907858286016125ac565b9250506020612918858286016128cd565b9150509250929050565b600067ffffffffffffffff82111561293d5761293c6126bc565b5b6129468261246a565b9050602081019050919050565b600061296661296184612922565b61271c565b905082815260208101848484011115612982576129816126b7565b5b61298d848285612768565b509392505050565b600082601f8301126129aa576129a96126b2565b5b81356129ba848260208601612953565b91505092915050565b600080600080608085870312156129dd576129dc612356565b5b60006129eb878288016125ac565b94505060206129fc878288016125ac565b9350506040612a0d878288016124f7565b925050606085013567ffffffffffffffff811115612a2e57612a2d61235b565b5b612a3a87828801612995565b91505092959194509250565b60008060408385031215612a5d57612a5c612356565b5b6000612a6b858286016125ac565b9250506020612a7c858286016125ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612acd57607f821691505b60208210811415612ae157612ae0612a86565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b43602c83612426565b9150612b4e82612ae7565b604082019050919050565b60006020820190508181036000830152612b7281612b36565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd5602183612426565b9150612be082612b79565b604082019050919050565b60006020820190508181036000830152612c0481612bc8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c67603883612426565b9150612c7282612c0b565b604082019050919050565b60006020820190508181036000830152612c9681612c5a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cf9603183612426565b9150612d0482612c9d565b604082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f446f6e2774206861766520656e6f756768207469636b65747300000000000000600082015250565b6000612d65601983612426565b9150612d7082612d2f565b602082019050919050565b60006020820190508181036000830152612d9481612d58565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd5826124d6565b9150612de0836124d6565b925082821015612df357612df2612d9b565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e34602083612426565b9150612e3f82612dfe565b602082019050919050565b60006020820190508181036000830152612e6381612e27565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000612ea0600c83612426565b9150612eab82612e6a565b602082019050919050565b60006020820190508181036000830152612ecf81612e93565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f32602983612426565b9150612f3d82612ed6565b604082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612fc4602a83612426565b9150612fcf82612f68565b604082019050919050565b60006020820190508181036000830152612ff381612fb7565b9050919050565b7f4e6f7420656e6f756768207469636b657473206c656674000000000000000000600082015250565b6000613030601783612426565b915061303b82612ffa565b602082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4d696e696d756d2070757263686173652069732031207469636b657400000000600082015250565b600061309c601c83612426565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b6000815190506130e18161285d565b92915050565b6000602082840312156130fd576130fc612356565b5b600061310b848285016130d2565b91505092915050565b600061311f82612601565b915061312a83612601565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211600084136000841316161561316957613168612d9b565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156131a6576131a5612d9b565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156131e3576131e2612d9b565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156132205761321f612d9b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061326582612601565b915061327083612601565b9250826132805761327f61322b565b5b600160000383147f8000000000000000000000000000000000000000000000000000000000000000831416156132b9576132b8612d9b565b5b828205905092915050565b60006132cf826124d6565b91506132da836124d6565b9250826132ea576132e961322b565b5b828204905092915050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b600061332b601583612426565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b600061336c826124d6565b9150613377836124d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ac576133ab612d9b565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b6133d6816133b7565b81146133e157600080fd5b50565b6000815190506133f3816133cd565b92915050565b600081519050613408816124e0565b92915050565b600080600080600060a0868803121561342a57613429612356565b5b6000613438888289016133e4565b9550506020613449888289016130d2565b945050604061345a888289016133f9565b935050606061346b888289016133f9565b925050608061347c888289016133e4565b9150509295509295909350565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e5602683612426565b91506134f082613489565b604082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613577602c83612426565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613609602583612426565b9150613614826135ad565b604082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061369b602483612426565b91506136a68261363f565b604082019050919050565b600060208201905081810360008301526136ca8161368e565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613707602083612426565b9150613712826136d1565b602082019050919050565b60006020820190508181036000830152613736816136fa565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613773601c83612426565b915061377e8261373d565b602082019050919050565b600060208201905081810360008301526137a281613766565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613805602e83612426565b9150613810826137a9565b604082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613871601983612426565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613903603283612426565b915061390e826138a7565b604082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000613995603183612426565b91506139a082613939565b604082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b600081905092915050565b60006139e18261241b565b6139eb81856139cb565b93506139fb818560208601612437565b80840191505092915050565b6000613a1382856139d6565b9150613a1f82846139d6565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613a5282613a2b565b613a5c8185613a36565b9350613a6c818560208601612437565b613a758161246a565b840191505092915050565b6000608082019050613a95600083018761256b565b613aa2602083018661256b565b613aaf6040830185612635565b8181036060830152613ac18184613a47565b905095945050505050565b600081519050613adb8161238c565b92915050565b600060208284031215613af757613af6612356565b5b6000613b0584828501613acc565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b6a602f83612426565b9150613b7582613b0e565b604082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b6000613bab826124d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bde57613bdd612d9b565b5b600182019050919050565b6000613bf4826124d6565b9150613bff836124d6565b925082613c0f57613c0e61322b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207c7bd7c66be9cabd2e7ca44d3f76b96351603fc41561d88a95ea9b7e18620a6f64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063cd6c4e1b146104ee578063e985e9c51461052b578063f2fde38b146105685761014b565b806370a082311461036e578063715018a6146103ab5780638579f9e2146103c25780638da5cb5b146103de5780638e15f4731461040957806395d89b41146104345761014b565b806323b872dd1161010857806323b872dd146102745780632b1d50391461029d5780633ccfd60b146102c657806342842e0e146102dd57806353090a6b146103065780636352211e146103315761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631a16aacd1461021e5780631d1677b614610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906123b8565b610591565b6040516101849190612400565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af91906124b4565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061250c565b610705565b6040516101ec919061257a565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906125c1565b61078a565b005b34801561022a57600080fd5b506102336108a2565b604051610240919061261a565b60405180910390f35b34801561025557600080fd5b5061025e6108a8565b60405161026b9190612644565b60405180910390f35b34801561028057600080fd5b5061029b6004803603810190610296919061265f565b6108ae565b005b3480156102a957600080fd5b506102c460048036038101906102bf91906127e7565b61090e565b005b3480156102d257600080fd5b506102db610a68565b005b3480156102e957600080fd5b5061030460048036038101906102ff919061265f565b610b77565b005b34801561031257600080fd5b5061031b610b97565b6040516103289190612644565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061250c565b610ba3565b604051610365919061257a565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612830565b610c55565b6040516103a29190612644565b60405180910390f35b3480156103b757600080fd5b506103c0610d0d565b005b6103dc60048036038101906103d79190612889565b610d95565b005b3480156103ea57600080fd5b506103f361101b565b604051610400919061257a565b60405180910390f35b34801561041557600080fd5b5061041e611045565b60405161042b919061261a565b60405180910390f35b34801561044057600080fd5b506104496110e6565b60405161045691906124b4565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906128e2565b611178565b005b34801561049457600080fd5b506104af60048036038101906104aa91906129c3565b61118e565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061250c565b6111f0565b6040516104e591906124b4565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612830565b611202565b6040516105229190612644565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612a46565b61121a565b60405161055f9190612400565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612830565b6112ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826113a6565b5b9050919050565b60606000805461068290612ab5565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90612ab5565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611410565b61074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690612b59565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079582610ba3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90612beb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082561147c565b73ffffffffffffffffffffffffffffffffffffffff16148061085457506108538161084e61147c565b61121a565b5b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612c7d565b60405180910390fd5b61089d8383611484565b505050565b600a5481565b600c5481565b6108bf6108b961147c565b8261153d565b6108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612d0f565b60405180910390fd5b61090983838361161b565b505050565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890612d7b565b60405180910390fd5b61099b6009611882565b6109ae336109a96009611898565b6118a6565b6109c16109bb6009611898565b82611a80565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a119190612dca565b92505081905550610a226009611898565b3373ffffffffffffffffffffffffffffffffffffffff167f01269de8ca9889348c81498ea6aa98b1f133bd5b3e20a212c24d9858ddd9b63660405160405180910390a350565b610a7061147c565b73ffffffffffffffffffffffffffffffffffffffff16610a8e61101b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90612e4a565b60405180910390fd5b60004711610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90612eb6565b60405180910390fd5b610b2f61101b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b74573d6000803e3d6000fd5b50565b610b928383836040518060200160405280600081525061118e565b505050565b60098060000154905081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612f48565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612fda565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d1561147c565b73ffffffffffffffffffffffffffffffffffffffff16610d3361101b565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612e4a565b60405180910390fd5b610d936000611af4565b565b600081600c54610da59190612dca565b1015610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613046565b60405180910390fd5b60008113610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906130b2565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9a91906130e7565b9050600081662386f26fc10000600a5485610eb59190613114565b610ebf9190613114565b610ec9919061325a565b905060006402540be40034610ede91906132c4565b905081811215610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613341565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f729190613361565b9250508190555083600c6000828254610f8b9190612dca565b92505081905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020543373ffffffffffffffffffffffffffffffffffffffff167f985d112c54c7518a49841fc37640d9ded60112ea7370ca9129c8ed33c3607bc760405160405180910390a350505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156110b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d9919061340e565b5050509150508091505090565b6060600180546110f590612ab5565b80601f016020809104026020016040519081016040528092919081815260200182805461112190612ab5565b801561116e5780601f106111435761010080835404028352916020019161116e565b820191906000526020600020905b81548152906001019060200180831161115157829003601f168201915b5050505050905090565b61118a61118361147c565b8383611bba565b5050565b61119f61119961147c565b8361153d565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612d0f565b60405180910390fd5b6111ea84848484611d27565b50505050565b60606111fb82611d83565b9050919050565b600b6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b661147c565b73ffffffffffffffffffffffffffffffffffffffff166112d461101b565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906134fb565b60405180910390fd5b6113a381611af4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114f783610ba3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061154882611410565b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061358d565b60405180910390fd5b600061159283610ba3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160157508373ffffffffffffffffffffffffffffffffffffffff166115e984610705565b73ffffffffffffffffffffffffffffffffffffffff16145b806116125750611611818561121a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163b82610ba3565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906136b1565b60405180910390fd5b61170c838383611ed5565b611717600082611484565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117679190612dca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117be9190613361565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187d838383611eda565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061371d565b60405180910390fd5b61191f81611410565b1561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613789565b60405180910390fd5b61196b60008383611ed5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119bb9190613361565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7c60008383611eda565b5050565b611a8982611410565b611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061381b565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611aef9291906122a9565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613887565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612400565b60405180910390a3505050565b611d3284848461161b565b611d3e84848484611edf565b611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490613919565b60405180910390fd5b50505050565b6060611d8e82611410565b611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc4906139ab565b60405180910390fd5b6000600660008481526020019081526020016000208054611ded90612ab5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1990612ab5565b8015611e665780601f10611e3b57610100808354040283529160200191611e66565b820191906000526020600020905b815481529060010190602001808311611e4957829003601f168201915b505050505090506000611e77612067565b9050600081511415611e8d578192505050611ed0565b600082511115611ec2578082604051602001611eaa929190613a07565b60405160208183030381529060405292505050611ed0565b611ecb8461207e565b925050505b919050565b505050565b505050565b6000611f008473ffffffffffffffffffffffffffffffffffffffff16612125565b1561205a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f2961147c565b8786866040518563ffffffff1660e01b8152600401611f4b9493929190613a80565b6020604051808303816000875af1925050508015611f8757506040513d601f19601f82011682018060405250810190611f849190613ae1565b60015b61200a573d8060008114611fb7576040519150601f19603f3d011682016040523d82523d6000602084013e611fbc565b606091505b50600081511415612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990613919565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061205f565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061208982611410565b6120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90613b80565b60405180910390fd5b60006120d2612067565b905060008151116120f2576040518060200160405280600081525061211d565b806120fc84612148565b60405160200161210d929190613a07565b6040516020818303038152906040525b915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612190576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122a4565b600082905060005b600082146121c25780806121ab90613ba0565b915050600a826121bb91906132c4565b9150612198565b60008167ffffffffffffffff8111156121de576121dd6126bc565b5b6040519080825280601f01601f1916602001820160405280156122105781602001600182028036833780820191505090505b5090505b6000851461229d576001826122299190612dca565b9150600a856122389190613be9565b60306122449190613361565b60f81b81838151811061225a57612259613c1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561229691906132c4565b9450612214565b8093505050505b919050565b8280546122b590612ab5565b90600052602060002090601f0160209004810192826122d7576000855561231e565b82601f106122f057805160ff191683800117855561231e565b8280016001018555821561231e579182015b8281111561231d578251825591602001919060010190612302565b5b50905061232b919061232f565b5090565b5b80821115612348576000816000905550600101612330565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239581612360565b81146123a057600080fd5b50565b6000813590506123b28161238c565b92915050565b6000602082840312156123ce576123cd612356565b5b60006123dc848285016123a3565b91505092915050565b60008115159050919050565b6123fa816123e5565b82525050565b600060208201905061241560008301846123f1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245557808201518184015260208101905061243a565b83811115612464576000848401525b50505050565b6000601f19601f8301169050919050565b60006124868261241b565b6124908185612426565b93506124a0818560208601612437565b6124a98161246a565b840191505092915050565b600060208201905081810360008301526124ce818461247b565b905092915050565b6000819050919050565b6124e9816124d6565b81146124f457600080fd5b50565b600081359050612506816124e0565b92915050565b60006020828403121561252257612521612356565b5b6000612530848285016124f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256482612539565b9050919050565b61257481612559565b82525050565b600060208201905061258f600083018461256b565b92915050565b61259e81612559565b81146125a957600080fd5b50565b6000813590506125bb81612595565b92915050565b600080604083850312156125d8576125d7612356565b5b60006125e6858286016125ac565b92505060206125f7858286016124f7565b9150509250929050565b6000819050919050565b61261481612601565b82525050565b600060208201905061262f600083018461260b565b92915050565b61263e816124d6565b82525050565b60006020820190506126596000830184612635565b92915050565b60008060006060848603121561267857612677612356565b5b6000612686868287016125ac565b9350506020612697868287016125ac565b92505060406126a8868287016124f7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126f48261246a565b810181811067ffffffffffffffff82111715612713576127126126bc565b5b80604052505050565b600061272661234c565b905061273282826126eb565b919050565b600067ffffffffffffffff821115612752576127516126bc565b5b61275b8261246a565b9050602081019050919050565b82818337600083830152505050565b600061278a61278584612737565b61271c565b9050828152602081018484840111156127a6576127a56126b7565b5b6127b1848285612768565b509392505050565b600082601f8301126127ce576127cd6126b2565b5b81356127de848260208601612777565b91505092915050565b6000602082840312156127fd576127fc612356565b5b600082013567ffffffffffffffff81111561281b5761281a61235b565b5b612827848285016127b9565b91505092915050565b60006020828403121561284657612845612356565b5b6000612854848285016125ac565b91505092915050565b61286681612601565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e612356565b5b60006128ad84828501612874565b91505092915050565b6128bf816123e5565b81146128ca57600080fd5b50565b6000813590506128dc816128b6565b92915050565b600080604083850312156128f9576128f8612356565b5b6000612907858286016125ac565b9250506020612918858286016128cd565b9150509250929050565b600067ffffffffffffffff82111561293d5761293c6126bc565b5b6129468261246a565b9050602081019050919050565b600061296661296184612922565b61271c565b905082815260208101848484011115612982576129816126b7565b5b61298d848285612768565b509392505050565b600082601f8301126129aa576129a96126b2565b5b81356129ba848260208601612953565b91505092915050565b600080600080608085870312156129dd576129dc612356565b5b60006129eb878288016125ac565b94505060206129fc878288016125ac565b9350506040612a0d878288016124f7565b925050606085013567ffffffffffffffff811115612a2e57612a2d61235b565b5b612a3a87828801612995565b91505092959194509250565b60008060408385031215612a5d57612a5c612356565b5b6000612a6b858286016125ac565b9250506020612a7c858286016125ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612acd57607f821691505b60208210811415612ae157612ae0612a86565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b43602c83612426565b9150612b4e82612ae7565b604082019050919050565b60006020820190508181036000830152612b7281612b36565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd5602183612426565b9150612be082612b79565b604082019050919050565b60006020820190508181036000830152612c0481612bc8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c67603883612426565b9150612c7282612c0b565b604082019050919050565b60006020820190508181036000830152612c9681612c5a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cf9603183612426565b9150612d0482612c9d565b604082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f446f6e2774206861766520656e6f756768207469636b65747300000000000000600082015250565b6000612d65601983612426565b9150612d7082612d2f565b602082019050919050565b60006020820190508181036000830152612d9481612d58565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd5826124d6565b9150612de0836124d6565b925082821015612df357612df2612d9b565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e34602083612426565b9150612e3f82612dfe565b602082019050919050565b60006020820190508181036000830152612e6381612e27565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000612ea0600c83612426565b9150612eab82612e6a565b602082019050919050565b60006020820190508181036000830152612ecf81612e93565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f32602983612426565b9150612f3d82612ed6565b604082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612fc4602a83612426565b9150612fcf82612f68565b604082019050919050565b60006020820190508181036000830152612ff381612fb7565b9050919050565b7f4e6f7420656e6f756768207469636b657473206c656674000000000000000000600082015250565b6000613030601783612426565b915061303b82612ffa565b602082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4d696e696d756d2070757263686173652069732031207469636b657400000000600082015250565b600061309c601c83612426565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b6000815190506130e18161285d565b92915050565b6000602082840312156130fd576130fc612356565b5b600061310b848285016130d2565b91505092915050565b600061311f82612601565b915061312a83612601565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211600084136000841316161561316957613168612d9b565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156131a6576131a5612d9b565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156131e3576131e2612d9b565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156132205761321f612d9b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061326582612601565b915061327083612601565b9250826132805761327f61322b565b5b600160000383147f8000000000000000000000000000000000000000000000000000000000000000831416156132b9576132b8612d9b565b5b828205905092915050565b60006132cf826124d6565b91506132da836124d6565b9250826132ea576132e961322b565b5b828204905092915050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b600061332b601583612426565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b600061336c826124d6565b9150613377836124d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ac576133ab612d9b565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b6133d6816133b7565b81146133e157600080fd5b50565b6000815190506133f3816133cd565b92915050565b600081519050613408816124e0565b92915050565b600080600080600060a0868803121561342a57613429612356565b5b6000613438888289016133e4565b9550506020613449888289016130d2565b945050604061345a888289016133f9565b935050606061346b888289016133f9565b925050608061347c888289016133e4565b9150509295509295909350565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e5602683612426565b91506134f082613489565b604082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613577602c83612426565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613609602583612426565b9150613614826135ad565b604082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061369b602483612426565b91506136a68261363f565b604082019050919050565b600060208201905081810360008301526136ca8161368e565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613707602083612426565b9150613712826136d1565b602082019050919050565b60006020820190508181036000830152613736816136fa565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613773601c83612426565b915061377e8261373d565b602082019050919050565b600060208201905081810360008301526137a281613766565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613805602e83612426565b9150613810826137a9565b604082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613871601983612426565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613903603283612426565b915061390e826138a7565b604082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000613995603183612426565b91506139a082613939565b604082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b600081905092915050565b60006139e18261241b565b6139eb81856139cb565b93506139fb818560208601612437565b80840191505092915050565b6000613a1382856139d6565b9150613a1f82846139d6565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613a5282613a2b565b613a5c8185613a36565b9350613a6c818560208601612437565b613a758161246a565b840191505092915050565b6000608082019050613a95600083018761256b565b613aa2602083018661256b565b613aaf6040830185612635565b8181036060830152613ac18184613a47565b905095945050505050565b600081519050613adb8161238c565b92915050565b600060208284031215613af757613af6612356565b5b6000613b0584828501613acc565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b6a602f83612426565b9150613b7582613b0e565b604082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b6000613bab826124d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bde57613bdd612d9b565b5b600182019050919050565b6000613bf4826124d6565b9150613bff836124d6565b925082613c0f57613c0e61322b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207c7bd7c66be9cabd2e7ca44d3f76b96351603fc41561d88a95ea9b7e18620a6f64736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419

-----Decoded View---------------
Arg [0] : initialPrice (int256): 200
Arg [1] : max_supply (uint256): 4000
Arg [2] : _priceFeedAddress (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [2] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419


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.