ETH Price: $3,086.99 (-0.52%)
Gas: 2 Gwei

Token

Bro-Esports (Bro-Esports)
 

Overview

Max Total Supply

6,666 Bro-Esports

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dabasa.eth
Balance
3 Bro-Esports
0xe03c9fa4fe1e77dd5f2259bf73970a4b1ddd854f
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:
BROEsports

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Esport.sol
// SPDX-License-Identifier: MIT
// import ERC-721
// import SafeMath

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";


contract BROEsports is ERC721{

    address public devAddress;
    address constant public RecipientAddress = 0x6aCF699E4bF7F7B2e091DeBc58C1A21a01a39aAC;

    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public TeamOwn = 300;
    uint256 private TotalSupply = 6666;
    uint256 private TotalMint = 0;
    uint256 public SalePrice = 0.06 ether;


    string public baseTokenURI;
  

    bool public WhiteListStart = false;


    mapping(address => bool)public checkWhiteList; 
    mapping(address => uint256)public topFloor;

    constructor() ERC721("Bro-Esports","Bro-Esports"){
        devAddress = msg.sender;
    }

    function setBaseURI(string memory baseURI) external{
        require(msg.sender == devAddress,"You are not the dev");
        baseTokenURI = baseURI;
    }

    function tokenURI(uint256 _tokenId) public override view returns (string memory){
        return string(abi.encodePacked(baseTokenURI,_tokenId.toString()));
    }

    function totalSupply() public view returns(uint256){ 
        return TotalSupply;
    }
    
    function total_Mint() public view returns(uint256){
        return TotalMint;
    }

    function BurnTotalSupply()external{
        require(msg.sender == devAddress,"You are not the dev");

        TotalSupply = TotalMint;
    }

     function BurnTotalSupplySafety(uint256 amount)external{
        require(msg.sender == devAddress,"You are not the dev");

        TotalSupply = amount;
    }

    

    function Start() external{
        require(msg.sender == devAddress,"You are not the dev");

        if(WhiteListStart == false){
            WhiteListStart = true;
        }else{
            WhiteListStart = false;
        }
    }

    function ChangeSalePrice(uint256 price) external{
        require(msg.sender == devAddress,"You are not the dev");
        SalePrice = price * 1e16;
    }

   

    function Mint(uint256 amount) external payable{
        require(msg.value == SalePrice * amount,"Input price Wrong" );
        require(WhiteListStart == true,"White List is not start yet");
        require(total_Mint()+amount < TotalSupply -300 ,"Sale is ended");
        require(amount <= 20,"Can't but more then 20");
        


        for(uint256 a=0;a<amount;a++){
        TotalMint++;

        topFloor[msg.sender]++;
      
        _mint(msg.sender,TotalMint);
        
        }
        require(topFloor[msg.sender]<= 20,"You buy too much");
        
        payable(RecipientAddress).transfer(address(this).balance);
    }

    function CreaterMint(address user)external{
        require(msg.sender == devAddress || msg.sender == RecipientAddress,"You are not the DEV");
        require(total_Mint() < TotalSupply  ,"Sale is ended");
        require(TeamOwn>0,"usage Over");

        TeamOwn--;
        TotalMint++;
        _mint(user,TotalMint);

    }

    function AirDrop(address[] memory input) external{
        require(msg.sender == devAddress || msg.sender == RecipientAddress,"You are not the DEV");
        require(TeamOwn - input.length>0,"Airdrop over");

         for(uint256 a=0;a<input.length;a++){
            TotalMint++;
            TeamOwn--;
            _mint(input[a],TotalMint);
        }

        require(total_Mint() <= TotalSupply  ,"Not enought NFT");
    }

    



}

File 2 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : 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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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 11 of 11 : 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"input","type":"address[]"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BurnTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnTotalSupplySafety","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"ChangeSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"CreaterMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"RecipientAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamOwn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhiteListStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"checkWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"","type":"address"}],"name":"topFloor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261012c600755611a0a600855600060095566d529ae9e860000600a556000600c60006101000a81548160ff0219169083151502179055503480156200004857600080fd5b506040518060400160405280600b81526020017f42726f2d4573706f7274730000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f42726f2d4573706f7274730000000000000000000000000000000000000000008152508160009080519060200190620000cd92919062000130565b508060019080519060200190620000e692919062000130565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000245565b8280546200013e90620001e0565b90600052602060002090601f016020900481019282620001625760008555620001ae565b82601f106200017d57805160ff1916838001178555620001ae565b82800160010185558215620001ae579182015b82811115620001ad57825182559160200191906001019062000190565b5b509050620001bd9190620001c1565b5090565b5b80821115620001dc576000816000905550600101620001c2565b5090565b60006002820490506001821680620001f957607f821691505b6020821081141562000210576200020f62000216565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d1e80620002556000396000f3fe6080604052600436106101d85760003560e01c806356ed542a11610102578063b9413d9d11610095578063e5e3e51711610064578063e5e3e51714610699578063e985e9c5146106c4578063f2ff856214610701578063f82c14ba1461072c576101d8565b8063b9413d9d146105dd578063c87b56dd14610606578063d547cfb714610643578063db72a7591461066e576101d8565b806395d89b41116100d157806395d89b41146105235780639cce37c61461054e578063a22cb4651461058b578063b88d4fde146105b4576101d8565b806356ed542a146104555780636352211e1461047e57806370a08231146104bb57806386485745146104f8576101d8565b80631b55ba3a1161017a5780634cb049db116101495780634cb049db146103af5780634e0b6ff8146103ec5780634fd75ea51461041557806355f804b31461042c576101d8565b80631b55ba3a1461031b57806323b872dd146103325780633ad10ef61461035b57806342842e0e14610386576101d8565b8063081812fc116101b6578063081812fc14610261578063095ea7b31461029e57806310f05df3146102c757806318160ddd146102f0576101d8565b806301ffc9a7146101dd57806306fdde031461021a5780630788370314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612968565b610757565b6040516102119190612f37565b60405180910390f35b34801561022657600080fd5b5061022f610839565b60405161023c9190612f52565b60405180910390f35b61025f600480360381019061025a9190612a0b565b6108cb565b005b34801561026d57600080fd5b5061028860048036038101906102839190612a0b565b610b90565b6040516102959190612ed0565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906128df565b610c15565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612a0b565b610d2d565b005b3480156102fc57600080fd5b50610305610dd9565b6040516103129190613254565b60405180910390f35b34801561032757600080fd5b50610330610de3565b005b34801561033e57600080fd5b50610359600480360381019061035491906127c9565b610ecd565b005b34801561036757600080fd5b50610370610f2d565b60405161037d9190612ed0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906127c9565b610f53565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061275c565b610f73565b6040516103e39190613254565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061275c565b610f8b565b005b34801561042157600080fd5b5061042a611134565b005b34801561043857600080fd5b50610453600480360381019061044e91906129c2565b6111cf565b005b34801561046157600080fd5b5061047c60048036038101906104779190612a0b565b611279565b005b34801561048a57600080fd5b506104a560048036038101906104a09190612a0b565b611313565b6040516104b29190612ed0565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd919061275c565b6113c5565b6040516104ef9190613254565b60405180910390f35b34801561050457600080fd5b5061050d61147d565b60405161051a9190612f37565b60405180910390f35b34801561052f57600080fd5b50610538611490565b6040516105459190612f52565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061275c565b611522565b6040516105829190612f37565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061289f565b611542565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061281c565b611558565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061291f565b6115ba565b005b34801561061257600080fd5b5061062d60048036038101906106289190612a0b565b6117aa565b60405161063a9190612f52565b60405180910390f35b34801561064f57600080fd5b506106586117de565b6040516106659190612f52565b60405180910390f35b34801561067a57600080fd5b5061068361186c565b6040516106909190613254565b60405180910390f35b3480156106a557600080fd5b506106ae611872565b6040516106bb9190612ed0565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612789565b61188a565b6040516106f89190612f37565b60405180910390f35b34801561070d57600080fd5b5061071661191e565b6040516107239190613254565b60405180910390f35b34801561073857600080fd5b50610741611924565b60405161074e9190613254565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083257506108318261192e565b5b9050919050565b6060600080546108489061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546108749061356f565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b80600a546108d99190613401565b341461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613014565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906130f4565b60405180910390fd5b61012c600854610980919061345b565b81610989611924565b610993919061337a565b106109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612f74565b60405180910390fd5b6014811115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906130d4565b60405180910390fd5b60005b81811015610aae5760096000815480929190610a35906135d2565b9190505550600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610a8a906135d2565b9190505550610a9b33600954611998565b8080610aa6906135d2565b915050610a1a565b506014600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613194565b60405180910390fd5b736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b8c573d6000803e3d6000fd5b5050565b6000610b9b82611b72565b610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906131d4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2082611313565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613214565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb0611bde565b73ffffffffffffffffffffffffffffffffffffffff161480610cdf5750610cde81610cd9611bde565b61188a565b5b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613114565b60405180910390fd5b610d288383611be6565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613074565b60405180910390fd5b662386f26fc1000081610dd09190613401565b600a8190555050565b6000600854905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613074565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415610eaf576001600c60006101000a81548160ff021916908315150217905550610ecb565b6000600c60006101000a81548160ff0219169083151502179055505b565b610ede610ed8611bde565b82611c9f565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613234565b60405180910390fd5b610f28838383611d7d565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f6e83838360405180602001604052806000815250611558565b505050565b600e6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110265750736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906131f4565b60405180910390fd5b600854611070611924565b106110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612f74565b60405180910390fd5b6000600754116110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612ff4565b60405180910390fd5b6007600081548092919061110890613545565b919050555060096000815480929190611120906135d2565b919050555061113181600954611998565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613074565b60405180910390fd5b600954600881905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613074565b60405180910390fd5b80600b90805190602001906112759291906124d2565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613074565b60405180910390fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613154565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613134565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900460ff1681565b60606001805461149f9061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb9061356f565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b61155461154d611bde565b8383611fe4565b5050565b611569611563611bde565b83611c9f565b6115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613234565b60405180910390fd5b6115b484848484612151565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116555750736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906131f4565b60405180910390fd5b600081516007546116a5919061345b565b116116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90613094565b60405180910390fd5b60005b815181101561175a5760096000815480929190611704906135d2565b91905055506007600081548092919061171c90613545565b9190505550611747828281518110611737576117366136d9565b5b6020026020010151600954611998565b8080611752906135d2565b9150506116e8565b50600854611766611924565b11156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613174565b60405180910390fd5b50565b6060600b6117b7836121ad565b6040516020016117c8929190612eac565b6040516020818303038152906040529050919050565b600b80546117eb9061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546118179061356f565b80156118645780601f1061183957610100808354040283529160200191611864565b820191906000526020600020905b81548152906001019060200180831161184757829003601f168201915b505050505081565b600a5481565b736acf699e4bf7f7b2e091debc58c1a21a01a39aac81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6000600954905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906131b4565b60405180910390fd5b611a1181611b72565b15611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890612fd4565b60405180910390fd5b611a5d6000838361230e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad919061337a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6e60008383612313565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5983611313565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611caa82611b72565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce0906130b4565b60405180910390fd5b6000611cf483611313565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6357508373ffffffffffffffffffffffffffffffffffffffff16611d4b84610b90565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d745750611d73818561188a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d9d82611313565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612fb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613034565b60405180910390fd5b611e6e83838361230e565b611e79600082611be6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec9919061345b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f20919061337a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fdf838383612313565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613054565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121449190612f37565b60405180910390a3505050565b61215c848484611d7d565b61216884848484612318565b6121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90612f94565b60405180910390fd5b50505050565b606060008214156121f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612309565b600082905060005b60008214612227578080612210906135d2565b915050600a8261222091906133d0565b91506121fd565b60008167ffffffffffffffff81111561224357612242613708565b5b6040519080825280601f01601f1916602001820160405280156122755781602001600182028036833780820191505090505b5090505b600085146123025760018261228e919061345b565b9150600a8561229d919061361b565b60306122a9919061337a565b60f81b8183815181106122bf576122be6136d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122fb91906133d0565b9450612279565b8093505050505b919050565b505050565b505050565b60006123398473ffffffffffffffffffffffffffffffffffffffff166124af565b156124a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612362611bde565b8786866040518563ffffffff1660e01b81526004016123849493929190612eeb565b602060405180830381600087803b15801561239e57600080fd5b505af19250505080156123cf57506040513d601f19601f820116820180604052508101906123cc9190612995565b60015b612452573d80600081146123ff576040519150601f19603f3d011682016040523d82523d6000602084013e612404565b606091505b5060008151141561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190612f94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a7565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124de9061356f565b90600052602060002090601f0160209004810192826125005760008555612547565b82601f1061251957805160ff1916838001178555612547565b82800160010185558215612547579182015b8281111561254657825182559160200191906001019061252b565b5b5090506125549190612558565b5090565b5b80821115612571576000816000905550600101612559565b5090565b600061258861258384613294565b61326f565b905080838252602082019050828560208602820111156125ab576125aa61373c565b5b60005b858110156125db57816125c18882612669565b8452602084019350602083019250506001810190506125ae565b5050509392505050565b60006125f86125f3846132c0565b61326f565b90508281526020810184848401111561261457612613613741565b5b61261f848285613503565b509392505050565b600061263a612635846132f1565b61326f565b90508281526020810184848401111561265657612655613741565b5b612661848285613503565b509392505050565b60008135905061267881613c8c565b92915050565b600082601f83011261269357612692613737565b5b81356126a3848260208601612575565b91505092915050565b6000813590506126bb81613ca3565b92915050565b6000813590506126d081613cba565b92915050565b6000815190506126e581613cba565b92915050565b600082601f830112612700576126ff613737565b5b81356127108482602086016125e5565b91505092915050565b600082601f83011261272e5761272d613737565b5b813561273e848260208601612627565b91505092915050565b60008135905061275681613cd1565b92915050565b6000602082840312156127725761277161374b565b5b600061278084828501612669565b91505092915050565b600080604083850312156127a05761279f61374b565b5b60006127ae85828601612669565b92505060206127bf85828601612669565b9150509250929050565b6000806000606084860312156127e2576127e161374b565b5b60006127f086828701612669565b935050602061280186828701612669565b925050604061281286828701612747565b9150509250925092565b600080600080608085870312156128365761283561374b565b5b600061284487828801612669565b945050602061285587828801612669565b935050604061286687828801612747565b925050606085013567ffffffffffffffff81111561288757612886613746565b5b612893878288016126eb565b91505092959194509250565b600080604083850312156128b6576128b561374b565b5b60006128c485828601612669565b92505060206128d5858286016126ac565b9150509250929050565b600080604083850312156128f6576128f561374b565b5b600061290485828601612669565b925050602061291585828601612747565b9150509250929050565b6000602082840312156129355761293461374b565b5b600082013567ffffffffffffffff81111561295357612952613746565b5b61295f8482850161267e565b91505092915050565b60006020828403121561297e5761297d61374b565b5b600061298c848285016126c1565b91505092915050565b6000602082840312156129ab576129aa61374b565b5b60006129b9848285016126d6565b91505092915050565b6000602082840312156129d8576129d761374b565b5b600082013567ffffffffffffffff8111156129f6576129f5613746565b5b612a0284828501612719565b91505092915050565b600060208284031215612a2157612a2061374b565b5b6000612a2f84828501612747565b91505092915050565b612a418161348f565b82525050565b612a50816134a1565b82525050565b6000612a6182613337565b612a6b818561334d565b9350612a7b818560208601613512565b612a8481613750565b840191505092915050565b6000612a9a82613342565b612aa4818561335e565b9350612ab4818560208601613512565b612abd81613750565b840191505092915050565b6000612ad382613342565b612add818561336f565b9350612aed818560208601613512565b80840191505092915050565b60008154612b068161356f565b612b10818661336f565b94506001821660008114612b2b5760018114612b3c57612b6f565b60ff19831686528186019350612b6f565b612b4585613322565b60005b83811015612b6757815481890152600182019150602081019050612b48565b838801955050505b50505092915050565b6000612b85600d8361335e565b9150612b9082613761565b602082019050919050565b6000612ba860328361335e565b9150612bb38261378a565b604082019050919050565b6000612bcb60258361335e565b9150612bd6826137d9565b604082019050919050565b6000612bee601c8361335e565b9150612bf982613828565b602082019050919050565b6000612c11600a8361335e565b9150612c1c82613851565b602082019050919050565b6000612c3460118361335e565b9150612c3f8261387a565b602082019050919050565b6000612c5760248361335e565b9150612c62826138a3565b604082019050919050565b6000612c7a60198361335e565b9150612c85826138f2565b602082019050919050565b6000612c9d60138361335e565b9150612ca88261391b565b602082019050919050565b6000612cc0600c8361335e565b9150612ccb82613944565b602082019050919050565b6000612ce3602c8361335e565b9150612cee8261396d565b604082019050919050565b6000612d0660168361335e565b9150612d11826139bc565b602082019050919050565b6000612d29601b8361335e565b9150612d34826139e5565b602082019050919050565b6000612d4c60388361335e565b9150612d5782613a0e565b604082019050919050565b6000612d6f602a8361335e565b9150612d7a82613a5d565b604082019050919050565b6000612d9260298361335e565b9150612d9d82613aac565b604082019050919050565b6000612db5600f8361335e565b9150612dc082613afb565b602082019050919050565b6000612dd860108361335e565b9150612de382613b24565b602082019050919050565b6000612dfb60208361335e565b9150612e0682613b4d565b602082019050919050565b6000612e1e602c8361335e565b9150612e2982613b76565b604082019050919050565b6000612e4160138361335e565b9150612e4c82613bc5565b602082019050919050565b6000612e6460218361335e565b9150612e6f82613bee565b604082019050919050565b6000612e8760318361335e565b9150612e9282613c3d565b604082019050919050565b612ea6816134f9565b82525050565b6000612eb88285612af9565b9150612ec48284612ac8565b91508190509392505050565b6000602082019050612ee56000830184612a38565b92915050565b6000608082019050612f006000830187612a38565b612f0d6020830186612a38565b612f1a6040830185612e9d565b8181036060830152612f2c8184612a56565b905095945050505050565b6000602082019050612f4c6000830184612a47565b92915050565b60006020820190508181036000830152612f6c8184612a8f565b905092915050565b60006020820190508181036000830152612f8d81612b78565b9050919050565b60006020820190508181036000830152612fad81612b9b565b9050919050565b60006020820190508181036000830152612fcd81612bbe565b9050919050565b60006020820190508181036000830152612fed81612be1565b9050919050565b6000602082019050818103600083015261300d81612c04565b9050919050565b6000602082019050818103600083015261302d81612c27565b9050919050565b6000602082019050818103600083015261304d81612c4a565b9050919050565b6000602082019050818103600083015261306d81612c6d565b9050919050565b6000602082019050818103600083015261308d81612c90565b9050919050565b600060208201905081810360008301526130ad81612cb3565b9050919050565b600060208201905081810360008301526130cd81612cd6565b9050919050565b600060208201905081810360008301526130ed81612cf9565b9050919050565b6000602082019050818103600083015261310d81612d1c565b9050919050565b6000602082019050818103600083015261312d81612d3f565b9050919050565b6000602082019050818103600083015261314d81612d62565b9050919050565b6000602082019050818103600083015261316d81612d85565b9050919050565b6000602082019050818103600083015261318d81612da8565b9050919050565b600060208201905081810360008301526131ad81612dcb565b9050919050565b600060208201905081810360008301526131cd81612dee565b9050919050565b600060208201905081810360008301526131ed81612e11565b9050919050565b6000602082019050818103600083015261320d81612e34565b9050919050565b6000602082019050818103600083015261322d81612e57565b9050919050565b6000602082019050818103600083015261324d81612e7a565b9050919050565b60006020820190506132696000830184612e9d565b92915050565b600061327961328a565b905061328582826135a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156132af576132ae613708565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132db576132da613708565b5b6132e482613750565b9050602081019050919050565b600067ffffffffffffffff82111561330c5761330b613708565b5b61331582613750565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613385826134f9565b9150613390836134f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c5576133c461364c565b5b828201905092915050565b60006133db826134f9565b91506133e6836134f9565b9250826133f6576133f561367b565b5b828204905092915050565b600061340c826134f9565b9150613417836134f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134505761344f61364c565b5b828202905092915050565b6000613466826134f9565b9150613471836134f9565b9250828210156134845761348361364c565b5b828203905092915050565b600061349a826134d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613530578082015181840152602081019050613515565b8381111561353f576000848401525b50505050565b6000613550826134f9565b915060008214156135645761356361364c565b5b600182039050919050565b6000600282049050600182168061358757607f821691505b6020821081141561359b5761359a6136aa565b5b50919050565b6135aa82613750565b810181811067ffffffffffffffff821117156135c9576135c8613708565b5b80604052505050565b60006135dd826134f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136105761360f61364c565b5b600182019050919050565b6000613626826134f9565b9150613631836134f9565b9250826136415761364061367b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7573616765204f76657200000000000000000000000000000000000000000000600082015250565b7f496e7075742070726963652057726f6e67000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520617265206e6f74207468652064657600000000000000000000000000600082015250565b7f41697264726f70206f7665720000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e277420627574206d6f7265207468656e20323000000000000000000000600082015250565b7f5768697465204c697374206973206e6f74207374617274207965740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676874204e46540000000000000000000000000000000000600082015250565b7f596f752062757920746f6f206d75636800000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74207468652044455600000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c958161348f565b8114613ca057600080fd5b50565b613cac816134a1565b8114613cb757600080fd5b50565b613cc3816134ad565b8114613cce57600080fd5b50565b613cda816134f9565b8114613ce557600080fd5b5056fea2646970667358221220c2052773d96d7850ae33c391b89e8a0c51b9e1c54ed4ecb30314b3184ade666964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806356ed542a11610102578063b9413d9d11610095578063e5e3e51711610064578063e5e3e51714610699578063e985e9c5146106c4578063f2ff856214610701578063f82c14ba1461072c576101d8565b8063b9413d9d146105dd578063c87b56dd14610606578063d547cfb714610643578063db72a7591461066e576101d8565b806395d89b41116100d157806395d89b41146105235780639cce37c61461054e578063a22cb4651461058b578063b88d4fde146105b4576101d8565b806356ed542a146104555780636352211e1461047e57806370a08231146104bb57806386485745146104f8576101d8565b80631b55ba3a1161017a5780634cb049db116101495780634cb049db146103af5780634e0b6ff8146103ec5780634fd75ea51461041557806355f804b31461042c576101d8565b80631b55ba3a1461031b57806323b872dd146103325780633ad10ef61461035b57806342842e0e14610386576101d8565b8063081812fc116101b6578063081812fc14610261578063095ea7b31461029e57806310f05df3146102c757806318160ddd146102f0576101d8565b806301ffc9a7146101dd57806306fdde031461021a5780630788370314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612968565b610757565b6040516102119190612f37565b60405180910390f35b34801561022657600080fd5b5061022f610839565b60405161023c9190612f52565b60405180910390f35b61025f600480360381019061025a9190612a0b565b6108cb565b005b34801561026d57600080fd5b5061028860048036038101906102839190612a0b565b610b90565b6040516102959190612ed0565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906128df565b610c15565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612a0b565b610d2d565b005b3480156102fc57600080fd5b50610305610dd9565b6040516103129190613254565b60405180910390f35b34801561032757600080fd5b50610330610de3565b005b34801561033e57600080fd5b50610359600480360381019061035491906127c9565b610ecd565b005b34801561036757600080fd5b50610370610f2d565b60405161037d9190612ed0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906127c9565b610f53565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061275c565b610f73565b6040516103e39190613254565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e919061275c565b610f8b565b005b34801561042157600080fd5b5061042a611134565b005b34801561043857600080fd5b50610453600480360381019061044e91906129c2565b6111cf565b005b34801561046157600080fd5b5061047c60048036038101906104779190612a0b565b611279565b005b34801561048a57600080fd5b506104a560048036038101906104a09190612a0b565b611313565b6040516104b29190612ed0565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd919061275c565b6113c5565b6040516104ef9190613254565b60405180910390f35b34801561050457600080fd5b5061050d61147d565b60405161051a9190612f37565b60405180910390f35b34801561052f57600080fd5b50610538611490565b6040516105459190612f52565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061275c565b611522565b6040516105829190612f37565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061289f565b611542565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061281c565b611558565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061291f565b6115ba565b005b34801561061257600080fd5b5061062d60048036038101906106289190612a0b565b6117aa565b60405161063a9190612f52565b60405180910390f35b34801561064f57600080fd5b506106586117de565b6040516106659190612f52565b60405180910390f35b34801561067a57600080fd5b5061068361186c565b6040516106909190613254565b60405180910390f35b3480156106a557600080fd5b506106ae611872565b6040516106bb9190612ed0565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612789565b61188a565b6040516106f89190612f37565b60405180910390f35b34801561070d57600080fd5b5061071661191e565b6040516107239190613254565b60405180910390f35b34801561073857600080fd5b50610741611924565b60405161074e9190613254565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083257506108318261192e565b5b9050919050565b6060600080546108489061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546108749061356f565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b80600a546108d99190613401565b341461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613014565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906130f4565b60405180910390fd5b61012c600854610980919061345b565b81610989611924565b610993919061337a565b106109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612f74565b60405180910390fd5b6014811115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906130d4565b60405180910390fd5b60005b81811015610aae5760096000815480929190610a35906135d2565b9190505550600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610a8a906135d2565b9190505550610a9b33600954611998565b8080610aa6906135d2565b915050610a1a565b506014600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613194565b60405180910390fd5b736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b8c573d6000803e3d6000fd5b5050565b6000610b9b82611b72565b610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906131d4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2082611313565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613214565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb0611bde565b73ffffffffffffffffffffffffffffffffffffffff161480610cdf5750610cde81610cd9611bde565b61188a565b5b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613114565b60405180910390fd5b610d288383611be6565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613074565b60405180910390fd5b662386f26fc1000081610dd09190613401565b600a8190555050565b6000600854905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613074565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415610eaf576001600c60006101000a81548160ff021916908315150217905550610ecb565b6000600c60006101000a81548160ff0219169083151502179055505b565b610ede610ed8611bde565b82611c9f565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613234565b60405180910390fd5b610f28838383611d7d565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f6e83838360405180602001604052806000815250611558565b505050565b600e6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110265750736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906131f4565b60405180910390fd5b600854611070611924565b106110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612f74565b60405180910390fd5b6000600754116110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612ff4565b60405180910390fd5b6007600081548092919061110890613545565b919050555060096000815480929190611120906135d2565b919050555061113181600954611998565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613074565b60405180910390fd5b600954600881905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613074565b60405180910390fd5b80600b90805190602001906112759291906124d2565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613074565b60405180910390fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613154565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613134565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900460ff1681565b60606001805461149f9061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb9061356f565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b61155461154d611bde565b8383611fe4565b5050565b611569611563611bde565b83611c9f565b6115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613234565b60405180910390fd5b6115b484848484612151565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116555750736acf699e4bf7f7b2e091debc58c1a21a01a39aac73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906131f4565b60405180910390fd5b600081516007546116a5919061345b565b116116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90613094565b60405180910390fd5b60005b815181101561175a5760096000815480929190611704906135d2565b91905055506007600081548092919061171c90613545565b9190505550611747828281518110611737576117366136d9565b5b6020026020010151600954611998565b8080611752906135d2565b9150506116e8565b50600854611766611924565b11156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613174565b60405180910390fd5b50565b6060600b6117b7836121ad565b6040516020016117c8929190612eac565b6040516020818303038152906040529050919050565b600b80546117eb9061356f565b80601f01602080910402602001604051908101604052809291908181526020018280546118179061356f565b80156118645780601f1061183957610100808354040283529160200191611864565b820191906000526020600020905b81548152906001019060200180831161184757829003601f168201915b505050505081565b600a5481565b736acf699e4bf7f7b2e091debc58c1a21a01a39aac81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6000600954905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906131b4565b60405180910390fd5b611a1181611b72565b15611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890612fd4565b60405180910390fd5b611a5d6000838361230e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad919061337a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6e60008383612313565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5983611313565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611caa82611b72565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce0906130b4565b60405180910390fd5b6000611cf483611313565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6357508373ffffffffffffffffffffffffffffffffffffffff16611d4b84610b90565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d745750611d73818561188a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d9d82611313565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612fb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613034565b60405180910390fd5b611e6e83838361230e565b611e79600082611be6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec9919061345b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f20919061337a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fdf838383612313565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613054565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121449190612f37565b60405180910390a3505050565b61215c848484611d7d565b61216884848484612318565b6121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90612f94565b60405180910390fd5b50505050565b606060008214156121f5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612309565b600082905060005b60008214612227578080612210906135d2565b915050600a8261222091906133d0565b91506121fd565b60008167ffffffffffffffff81111561224357612242613708565b5b6040519080825280601f01601f1916602001820160405280156122755781602001600182028036833780820191505090505b5090505b600085146123025760018261228e919061345b565b9150600a8561229d919061361b565b60306122a9919061337a565b60f81b8183815181106122bf576122be6136d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122fb91906133d0565b9450612279565b8093505050505b919050565b505050565b505050565b60006123398473ffffffffffffffffffffffffffffffffffffffff166124af565b156124a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612362611bde565b8786866040518563ffffffff1660e01b81526004016123849493929190612eeb565b602060405180830381600087803b15801561239e57600080fd5b505af19250505080156123cf57506040513d601f19601f820116820180604052508101906123cc9190612995565b60015b612452573d80600081146123ff576040519150601f19603f3d011682016040523d82523d6000602084013e612404565b606091505b5060008151141561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190612f94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a7565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124de9061356f565b90600052602060002090601f0160209004810192826125005760008555612547565b82601f1061251957805160ff1916838001178555612547565b82800160010185558215612547579182015b8281111561254657825182559160200191906001019061252b565b5b5090506125549190612558565b5090565b5b80821115612571576000816000905550600101612559565b5090565b600061258861258384613294565b61326f565b905080838252602082019050828560208602820111156125ab576125aa61373c565b5b60005b858110156125db57816125c18882612669565b8452602084019350602083019250506001810190506125ae565b5050509392505050565b60006125f86125f3846132c0565b61326f565b90508281526020810184848401111561261457612613613741565b5b61261f848285613503565b509392505050565b600061263a612635846132f1565b61326f565b90508281526020810184848401111561265657612655613741565b5b612661848285613503565b509392505050565b60008135905061267881613c8c565b92915050565b600082601f83011261269357612692613737565b5b81356126a3848260208601612575565b91505092915050565b6000813590506126bb81613ca3565b92915050565b6000813590506126d081613cba565b92915050565b6000815190506126e581613cba565b92915050565b600082601f830112612700576126ff613737565b5b81356127108482602086016125e5565b91505092915050565b600082601f83011261272e5761272d613737565b5b813561273e848260208601612627565b91505092915050565b60008135905061275681613cd1565b92915050565b6000602082840312156127725761277161374b565b5b600061278084828501612669565b91505092915050565b600080604083850312156127a05761279f61374b565b5b60006127ae85828601612669565b92505060206127bf85828601612669565b9150509250929050565b6000806000606084860312156127e2576127e161374b565b5b60006127f086828701612669565b935050602061280186828701612669565b925050604061281286828701612747565b9150509250925092565b600080600080608085870312156128365761283561374b565b5b600061284487828801612669565b945050602061285587828801612669565b935050604061286687828801612747565b925050606085013567ffffffffffffffff81111561288757612886613746565b5b612893878288016126eb565b91505092959194509250565b600080604083850312156128b6576128b561374b565b5b60006128c485828601612669565b92505060206128d5858286016126ac565b9150509250929050565b600080604083850312156128f6576128f561374b565b5b600061290485828601612669565b925050602061291585828601612747565b9150509250929050565b6000602082840312156129355761293461374b565b5b600082013567ffffffffffffffff81111561295357612952613746565b5b61295f8482850161267e565b91505092915050565b60006020828403121561297e5761297d61374b565b5b600061298c848285016126c1565b91505092915050565b6000602082840312156129ab576129aa61374b565b5b60006129b9848285016126d6565b91505092915050565b6000602082840312156129d8576129d761374b565b5b600082013567ffffffffffffffff8111156129f6576129f5613746565b5b612a0284828501612719565b91505092915050565b600060208284031215612a2157612a2061374b565b5b6000612a2f84828501612747565b91505092915050565b612a418161348f565b82525050565b612a50816134a1565b82525050565b6000612a6182613337565b612a6b818561334d565b9350612a7b818560208601613512565b612a8481613750565b840191505092915050565b6000612a9a82613342565b612aa4818561335e565b9350612ab4818560208601613512565b612abd81613750565b840191505092915050565b6000612ad382613342565b612add818561336f565b9350612aed818560208601613512565b80840191505092915050565b60008154612b068161356f565b612b10818661336f565b94506001821660008114612b2b5760018114612b3c57612b6f565b60ff19831686528186019350612b6f565b612b4585613322565b60005b83811015612b6757815481890152600182019150602081019050612b48565b838801955050505b50505092915050565b6000612b85600d8361335e565b9150612b9082613761565b602082019050919050565b6000612ba860328361335e565b9150612bb38261378a565b604082019050919050565b6000612bcb60258361335e565b9150612bd6826137d9565b604082019050919050565b6000612bee601c8361335e565b9150612bf982613828565b602082019050919050565b6000612c11600a8361335e565b9150612c1c82613851565b602082019050919050565b6000612c3460118361335e565b9150612c3f8261387a565b602082019050919050565b6000612c5760248361335e565b9150612c62826138a3565b604082019050919050565b6000612c7a60198361335e565b9150612c85826138f2565b602082019050919050565b6000612c9d60138361335e565b9150612ca88261391b565b602082019050919050565b6000612cc0600c8361335e565b9150612ccb82613944565b602082019050919050565b6000612ce3602c8361335e565b9150612cee8261396d565b604082019050919050565b6000612d0660168361335e565b9150612d11826139bc565b602082019050919050565b6000612d29601b8361335e565b9150612d34826139e5565b602082019050919050565b6000612d4c60388361335e565b9150612d5782613a0e565b604082019050919050565b6000612d6f602a8361335e565b9150612d7a82613a5d565b604082019050919050565b6000612d9260298361335e565b9150612d9d82613aac565b604082019050919050565b6000612db5600f8361335e565b9150612dc082613afb565b602082019050919050565b6000612dd860108361335e565b9150612de382613b24565b602082019050919050565b6000612dfb60208361335e565b9150612e0682613b4d565b602082019050919050565b6000612e1e602c8361335e565b9150612e2982613b76565b604082019050919050565b6000612e4160138361335e565b9150612e4c82613bc5565b602082019050919050565b6000612e6460218361335e565b9150612e6f82613bee565b604082019050919050565b6000612e8760318361335e565b9150612e9282613c3d565b604082019050919050565b612ea6816134f9565b82525050565b6000612eb88285612af9565b9150612ec48284612ac8565b91508190509392505050565b6000602082019050612ee56000830184612a38565b92915050565b6000608082019050612f006000830187612a38565b612f0d6020830186612a38565b612f1a6040830185612e9d565b8181036060830152612f2c8184612a56565b905095945050505050565b6000602082019050612f4c6000830184612a47565b92915050565b60006020820190508181036000830152612f6c8184612a8f565b905092915050565b60006020820190508181036000830152612f8d81612b78565b9050919050565b60006020820190508181036000830152612fad81612b9b565b9050919050565b60006020820190508181036000830152612fcd81612bbe565b9050919050565b60006020820190508181036000830152612fed81612be1565b9050919050565b6000602082019050818103600083015261300d81612c04565b9050919050565b6000602082019050818103600083015261302d81612c27565b9050919050565b6000602082019050818103600083015261304d81612c4a565b9050919050565b6000602082019050818103600083015261306d81612c6d565b9050919050565b6000602082019050818103600083015261308d81612c90565b9050919050565b600060208201905081810360008301526130ad81612cb3565b9050919050565b600060208201905081810360008301526130cd81612cd6565b9050919050565b600060208201905081810360008301526130ed81612cf9565b9050919050565b6000602082019050818103600083015261310d81612d1c565b9050919050565b6000602082019050818103600083015261312d81612d3f565b9050919050565b6000602082019050818103600083015261314d81612d62565b9050919050565b6000602082019050818103600083015261316d81612d85565b9050919050565b6000602082019050818103600083015261318d81612da8565b9050919050565b600060208201905081810360008301526131ad81612dcb565b9050919050565b600060208201905081810360008301526131cd81612dee565b9050919050565b600060208201905081810360008301526131ed81612e11565b9050919050565b6000602082019050818103600083015261320d81612e34565b9050919050565b6000602082019050818103600083015261322d81612e57565b9050919050565b6000602082019050818103600083015261324d81612e7a565b9050919050565b60006020820190506132696000830184612e9d565b92915050565b600061327961328a565b905061328582826135a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156132af576132ae613708565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132db576132da613708565b5b6132e482613750565b9050602081019050919050565b600067ffffffffffffffff82111561330c5761330b613708565b5b61331582613750565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613385826134f9565b9150613390836134f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c5576133c461364c565b5b828201905092915050565b60006133db826134f9565b91506133e6836134f9565b9250826133f6576133f561367b565b5b828204905092915050565b600061340c826134f9565b9150613417836134f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134505761344f61364c565b5b828202905092915050565b6000613466826134f9565b9150613471836134f9565b9250828210156134845761348361364c565b5b828203905092915050565b600061349a826134d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613530578082015181840152602081019050613515565b8381111561353f576000848401525b50505050565b6000613550826134f9565b915060008214156135645761356361364c565b5b600182039050919050565b6000600282049050600182168061358757607f821691505b6020821081141561359b5761359a6136aa565b5b50919050565b6135aa82613750565b810181811067ffffffffffffffff821117156135c9576135c8613708565b5b80604052505050565b60006135dd826134f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136105761360f61364c565b5b600182019050919050565b6000613626826134f9565b9150613631836134f9565b9250826136415761364061367b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7573616765204f76657200000000000000000000000000000000000000000000600082015250565b7f496e7075742070726963652057726f6e67000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520617265206e6f74207468652064657600000000000000000000000000600082015250565b7f41697264726f70206f7665720000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e277420627574206d6f7265207468656e20323000000000000000000000600082015250565b7f5768697465204c697374206973206e6f74207374617274207965740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676874204e46540000000000000000000000000000000000600082015250565b7f596f752062757920746f6f206d75636800000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74207468652044455600000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c958161348f565b8114613ca057600080fd5b50565b613cac816134a1565b8114613cb757600080fd5b50565b613cc3816134ad565b8114613cce57600080fd5b50565b613cda816134f9565b8114613ce557600080fd5b5056fea2646970667358221220c2052773d96d7850ae33c391b89e8a0c51b9e1c54ed4ecb30314b3184ade666964736f6c63430008070033

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.