ETH Price: $2,444.44 (+1.79%)
Gas: 7.92 Gwei

Asshole Soul Bound Token (ASBT)
 

Overview

TokenID

5

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
AssholeSBT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : AssholeSBT.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract AssholeSBT {
    using Address for address;
    using Strings for uint256;

    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    event AdminUpdate(
        address indexed edited,
        address indexed editor,
        bool indexed newStatus
    );

    event PriceChange(string indexed mintOrBurn, uint256 indexed amount);

    event WithdrawalTargetChange(
        address indexed newTarget,
        address indexed changer
    );

    struct ContractData {
        address launcher;
        address withdrawalTarget;
        string _name;
        string _symbol;
        uint256 amountStored;
        uint256 burnPrice;
        uint256 mintPrice;
        bool isActive;
        string _inactiveMessage;
        uint256 totalSupply;
    }

    ContractData public contractData;

    mapping(address => bool) private _admins;
    mapping(address => bool) private _freeMinters;
    mapping(uint256 => address) private _owners;
    mapping(address => uint256[]) private _ownedTokens;
    mapping(uint256 => address) public _minters;
    mapping(address => uint256) private _balances;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(uint256 => string) private _uris;

    constructor() {
        contractData._name = "Asshole Soul Bound Token";
        contractData._symbol = "ASBT";
        _admins[msg.sender] = true;
        contractData.totalSupply = 0;
        contractData.burnPrice = 1 ether;
        contractData.mintPrice = 0.01 ether;
        contractData.withdrawalTarget = msg.sender;
        contractData.isActive = true;
        contractData
            ._inactiveMessage = "The Asshole SBT has been turned off, thanks for playing.";
    }

    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "wtf");
        return _balances[owner];
    }

    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "wtf");
        return owner;
    }

    function setActivity(bool _newStatus) external {
        require(_admins[msg.sender], "no perms");
        contractData.isActive = _newStatus;
    }

    function editFreeMinter(address _freeMinter, bool _allow) external {
        require(_admins[msg.sender], "no perms");
        _freeMinters[_freeMinter] = _allow;
    }

    function addAdmin(address _newAdmin) external {
        require(_admins[msg.sender], "no perms");
        _admins[_newAdmin] = true;
        emit AdminUpdate(_newAdmin, msg.sender, true);
    }

    function removeAdmin(address _oldAdmin) external {
        require(_admins[msg.sender], "no perms");
        require(_oldAdmin != contractData.launcher, "wtf");
        _admins[msg.sender] = false;
        emit AdminUpdate(_oldAdmin, msg.sender, false);
    }

    function renounceAdmin() external {
        require(_admins[msg.sender], "no perms");
        _admins[msg.sender] = false;
    }

    function name() public view returns (string memory) {
        return contractData._name;
    }

    function symbol() public view returns (string memory) {
        return contractData._symbol;
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return _owners[tokenId] != address(0);
    }

    function getOwnedTokens(address _user) external view returns(uint256[] memory) {
        return _ownedTokens[_user];
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "wtf");
        if (!contractData.isActive) {
            return string(contractData._inactiveMessage);
        } else {
            return string(_uris[tokenId]);
        }
    }

    function changePrice(bool mintOrBurn, uint256 _newPrice) external {
        require(_admins[msg.sender], "no perms");
        if (mintOrBurn == true) {
            contractData.mintPrice = _newPrice;
            emit PriceChange("mint", _newPrice);
        }
        if (mintOrBurn == false) {
            contractData.burnPrice = _newPrice;
            emit PriceChange("burn", _newPrice);
        }
    }

    function changeWithdrawalAddress(address _newTarget) external {
        require(_admins[msg.sender], "no perms");
        contractData.withdrawalTarget = _newTarget;
        emit WithdrawalTargetChange(_newTarget, msg.sender);
    }

    function findOwnedTokenIndex(address holder, uint256 value)
        internal
        view
        returns (uint256)
    {
        uint256 foundId = 0;
        for (uint256 i = 0; i <= _ownedTokens[holder].length; i++) {
            if (_ownedTokens[holder][i] == value) {
                foundId = i;
            }
        }
        return foundId;
    }

    function mint(address to, string memory _reason) public payable {
        require(to != address(0), "dumbass");
        require(to != msg.sender, "no self owns");
        if (!_admins[msg.sender] && !_freeMinters[msg.sender]) {
            require(msg.value >= contractData.mintPrice, "ain't a charity...");
        }
        contractData.amountStored += msg.value;
        ++contractData.totalSupply;
        _balances[to] += 1;
        _owners[contractData.totalSupply] = to;
        _ownedTokens[to].push(contractData.totalSupply);
        _uris[contractData.totalSupply] = _reason;
        _minters[contractData.totalSupply] = msg.sender;
        emit Transfer(address(0), to, contractData.totalSupply);
    }

    function burn(uint256 id) public payable {
        if (!_admins[msg.sender]) {
            require(msg.value >= contractData.burnPrice, "stake me");
        }
        contractData.amountStored += msg.value;
        address owner = ownerOf(id);
        _balances[owner] -= 1;
        delete _owners[id];

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

    function withdraw() public payable {
        require(_admins[msg.sender], "f off");
        uint256 amount_to_send = contractData.amountStored;
        contractData.amountStored = 0;
        payable(msg.sender).transfer(amount_to_send);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 3 of 6 : 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 4 of 6 : 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 5 of 6 : 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 6 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"edited","type":"address"},{"indexed":true,"internalType":"address","name":"editor","type":"address"},{"indexed":true,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"AdminUpdate","type":"event"},{"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":"string","name":"mintOrBurn","type":"string"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PriceChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newTarget","type":"address"},{"indexed":true,"internalType":"address","name":"changer","type":"address"}],"name":"WithdrawalTargetChange","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintOrBurn","type":"bool"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTarget","type":"address"}],"name":"changeWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"address","name":"launcher","type":"address"},{"internalType":"address","name":"withdrawalTarget","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"amountStored","type":"uint256"},{"internalType":"uint256","name":"burnPrice","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"},{"internalType":"string","name":"_inactiveMessage","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_freeMinter","type":"address"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"editFreeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getOwnedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_reason","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"_oldAdmin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setActivity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601881526020017f417373686f6c6520536f756c20426f756e6420546f6b656e00000000000000008152506000600201908051906020019062000062929190620001d6565b506040518060400160405280600481526020017f415342540000000000000000000000000000000000000000000000000000000081525060006003019080519060200190620000b3929190620001d6565b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060008060090181905550670de0b6b3a7640000600060050181905550662386f26fc1000060006006018190555033600060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600060070160006101000a81548160ff0219169083151502179055506040518060600160405280603881526020016200292d6038913960006008019080519060200190620001cf929190620001d6565b50620002eb565b828054620001e49062000286565b90600052602060002090601f01602090048101928262000208576000855562000254565b82601f106200022357805160ff191683800117855562000254565b8280016001018555821562000254579182015b828111156200025357825182559160200191906001019062000236565b5b50905062000263919062000267565b5090565b5b808211156200028257600081600090555060010162000268565b5090565b600060028204905060018216806200029f57607f821691505b60208210811415620002b657620002b5620002bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61263280620002fb6000396000f3fe6080604052600436106101095760003560e01c806367158cf91161009557806395d89b411161006457806395d89b411461032e5780639dd0725414610359578063c87b56dd14610382578063d0def521146103bf578063d9d61655146103db57610109565b806367158cf91461028857806370480275146102b157806370a08231146102da5780638bad0c0a1461031757610109565b80632a29ad14116100dc5780632a29ad14146101b45780633cca2420146101f15780633ccfd60b1461022557806342966c681461022f5780636352211e1461024b57610109565b8063060a50a71461010e57806306fdde03146101375780631785f53c146101625780631f4e2a531461018b575b600080fd5b34801561011a57600080fd5b5061013560048036038101906101309190611bb9565b610418565b005b34801561014357600080fd5b5061014c6104ff565b6040516101599190612015565b60405180910390f35b34801561016e57600080fd5b5061018960048036038101906101849190611b90565b610594565b005b34801561019757600080fd5b506101b260048036038101906101ad9190611b90565b61076c565b005b3480156101c057600080fd5b506101db60048036038101906101d69190611cae565b610899565b6040516101e89190611f27565b60405180910390f35b3480156101fd57600080fd5b506102066108cc565b60405161021c9a99989796959493929190611f42565b60405180910390f35b61022d610af3565b005b61024960048036038101906102449190611cae565b610bdc565b005b34801561025757600080fd5b50610272600480360381019061026d9190611cae565b610d8c565b60405161027f9190611f27565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190611c72565b610e3e565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190611b90565b610f80565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190611b90565b6110c5565b60405161030e9190612117565b60405180910390f35b34801561032357600080fd5b5061032c61117d565b005b34801561033a57600080fd5b50610343611263565b6040516103509190612015565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190611c49565b6112f8565b005b34801561038e57600080fd5b506103a960048036038101906103a49190611cae565b6113a4565b6040516103b69190612015565b60405180910390f35b6103d960048036038101906103d49190611bf5565b61153e565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190611b90565b611943565b60405161040f9190611ff3565b60405180910390f35b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906120d7565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060006002018054610511906122fc565b80601f016020809104026020016040519081016040528092919081815260200182805461053d906122fc565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610617906120d7565b60405180910390fd5b6000800160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90612057565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600015153373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f368c4b72f4861e88406925d48c592d16e8841fc2cdd00bac14ae24ac1b4cb95f60405160405180910390a450565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef906120d7565b60405180910390fd5b80600060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ffe24e7f161379bfcc919cdd12effa948291e9baf511c180610fbf66c9f96c3c360405160405180910390a350565b600e6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806002018054610929906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610955906122fc565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050908060030180546109b7906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109e3906122fc565b8015610a305780601f10610a0557610100808354040283529160200191610a30565b820191906000526020600020905b815481529060010190602001808311610a1357829003601f168201915b5050505050908060040154908060050154908060060154908060070160009054906101000a900460ff1690806008018054610a6a906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a96906122fc565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b505050505090806009015490508a565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612077565b60405180910390fd5b600080600401549050600080600401819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bd8573d6000803e3d6000fd5b5050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c7657600060050154341015610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612097565b60405180910390fd5b5b3460006004016000828254610c8b91906121e8565b925050819055506000610c9d82610d8c565b90506001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cef919061223e565b92505081905550600c600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90612057565b60405180910390fd5b80915050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906120d7565b60405180910390fd5b600115158215151415610f23578060006006018190555080604051610eee90611efd565b60405180910390207faf0b3c558c126d46d4e7d77be350be2aa80a5fcaa4513f906b2878d5058be6f360405160405180910390a35b600015158215151415610f7c578060006005018190555080604051610f4790611f12565b60405180910390207faf0b3c558c126d46d4e7d77be350be2aa80a5fcaa4513f906b2878d5058be6f360405160405180910390a35b5050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906120d7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600115153373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f368c4b72f4861e88406925d48c592d16e8841fc2cdd00bac14ae24ac1b4cb95f60405160405180910390a450565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90612057565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906120d7565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b606060006003018054611275906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112a1906122fc565b80156112ee5780601f106112c3576101008083540402835291602001916112ee565b820191906000526020600020905b8154815290600101906020018083116112d157829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906120d7565b60405180910390fd5b80600060070160006101000a81548160ff02191690831515021790555050565b60606113af826119da565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612057565b60405180910390fd5b600060070160009054906101000a900460ff1661149a5760006008018054611415906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611441906122fc565b801561148e5780601f106114635761010080835404028352916020019161148e565b820191906000526020600020905b81548152906001019060200180831161147157829003601f168201915b50505050509050611539565b6011600083815260200190815260200160002080546114b8906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114e4906122fc565b80156115315780601f1061150657610100808354040283529160200191611531565b820191906000526020600020905b81548152906001019060200180831161151457829003601f168201915b505050505090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612037565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611614906120f7565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116c15750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561170f5760006006015434101561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906120b7565b60405180910390fd5b5b346000600401600082825461172491906121e8565b9250508190555060006009016000815461173d9061235f565b919050819055506001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179491906121e8565b9250508190555081600c60008060090154815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006009015490806001815401808255809150506001900390600052602060002001600090919091909150558060116000806009015481526020019081526020016000209080519060200190611887929190611a46565b5033600e60008060090154815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600901548273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119ce57602002820191906000526020600020905b8154815260200190600101908083116119ba575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b828054611a52906122fc565b90600052602060002090601f016020900481019282611a745760008555611abb565b82601f10611a8d57805160ff1916838001178555611abb565b82800160010185558215611abb579182015b82811115611aba578251825591602001919060010190611a9f565b5b509050611ac89190611acc565b5090565b5b80821115611ae5576000816000905550600101611acd565b5090565b6000611afc611af784612157565b612132565b905082815260208101848484011115611b1457600080fd5b611b1f8482856122ba565b509392505050565b600081359050611b36816125b7565b92915050565b600081359050611b4b816125ce565b92915050565b600082601f830112611b6257600080fd5b8135611b72848260208601611ae9565b91505092915050565b600081359050611b8a816125e5565b92915050565b600060208284031215611ba257600080fd5b6000611bb084828501611b27565b91505092915050565b60008060408385031215611bcc57600080fd5b6000611bda85828601611b27565b9250506020611beb85828601611b3c565b9150509250929050565b60008060408385031215611c0857600080fd5b6000611c1685828601611b27565b925050602083013567ffffffffffffffff811115611c3357600080fd5b611c3f85828601611b51565b9150509250929050565b600060208284031215611c5b57600080fd5b6000611c6984828501611b3c565b91505092915050565b60008060408385031215611c8557600080fd5b6000611c9385828601611b3c565b9250506020611ca485828601611b7b565b9150509250929050565b600060208284031215611cc057600080fd5b6000611cce84828501611b7b565b91505092915050565b6000611ce38383611edf565b60208301905092915050565b611cf881612272565b82525050565b6000611d0982612198565b611d1381856121bb565b9350611d1e83612188565b8060005b83811015611d4f578151611d368882611cd7565b9750611d41836121ae565b925050600181019050611d22565b5085935050505092915050565b611d6581612284565b82525050565b6000611d76826121a3565b611d8081856121cc565b9350611d908185602086016122c9565b611d9981612435565b840191505092915050565b6000611db16007836121cc565b9150611dbc82612446565b602082019050919050565b6000611dd46003836121cc565b9150611ddf8261246f565b602082019050919050565b6000611df76005836121cc565b9150611e0282612498565b602082019050919050565b6000611e1a6008836121cc565b9150611e25826124c1565b602082019050919050565b6000611e3d6012836121cc565b9150611e48826124ea565b602082019050919050565b6000611e606008836121cc565b9150611e6b82612513565b602082019050919050565b6000611e83600c836121cc565b9150611e8e8261253c565b602082019050919050565b6000611ea66004836121dd565b9150611eb182612565565b600482019050919050565b6000611ec96004836121dd565b9150611ed48261258e565b600482019050919050565b611ee8816122b0565b82525050565b611ef7816122b0565b82525050565b6000611f0882611e99565b9150819050919050565b6000611f1d82611ebc565b9150819050919050565b6000602082019050611f3c6000830184611cef565b92915050565b600061014082019050611f58600083018d611cef565b611f65602083018c611cef565b8181036040830152611f77818b611d6b565b90508181036060830152611f8b818a611d6b565b9050611f9a6080830189611eee565b611fa760a0830188611eee565b611fb460c0830187611eee565b611fc160e0830186611d5c565b818103610100830152611fd48185611d6b565b9050611fe4610120830184611eee565b9b9a5050505050505050505050565b6000602082019050818103600083015261200d8184611cfe565b905092915050565b6000602082019050818103600083015261202f8184611d6b565b905092915050565b6000602082019050818103600083015261205081611da4565b9050919050565b6000602082019050818103600083015261207081611dc7565b9050919050565b6000602082019050818103600083015261209081611dea565b9050919050565b600060208201905081810360008301526120b081611e0d565b9050919050565b600060208201905081810360008301526120d081611e30565b9050919050565b600060208201905081810360008301526120f081611e53565b9050919050565b6000602082019050818103600083015261211081611e76565b9050919050565b600060208201905061212c6000830184611eee565b92915050565b600061213c61214d565b9050612148828261232e565b919050565b6000604051905090565b600067ffffffffffffffff82111561217257612171612406565b5b61217b82612435565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006121f3826122b0565b91506121fe836122b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612233576122326123a8565b5b828201905092915050565b6000612249826122b0565b9150612254836122b0565b925082821015612267576122666123a8565b5b828203905092915050565b600061227d82612290565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122e75780820151818401526020810190506122cc565b838111156122f6576000848401525b50505050565b6000600282049050600182168061231457607f821691505b60208210811415612328576123276123d7565b5b50919050565b61233782612435565b810181811067ffffffffffffffff8211171561235657612355612406565b5b80604052505050565b600061236a826122b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561239d5761239c6123a8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f64756d6261737300000000000000000000000000000000000000000000000000600082015250565b7f7774660000000000000000000000000000000000000000000000000000000000600082015250565b7f66206f6666000000000000000000000000000000000000000000000000000000600082015250565b7f7374616b65206d65000000000000000000000000000000000000000000000000600082015250565b7f61696e2774206120636861726974792e2e2e0000000000000000000000000000600082015250565b7f6e6f207065726d73000000000000000000000000000000000000000000000000600082015250565b7f6e6f2073656c66206f776e730000000000000000000000000000000000000000600082015250565b7f6d696e7400000000000000000000000000000000000000000000000000000000600082015250565b7f6275726e00000000000000000000000000000000000000000000000000000000600082015250565b6125c081612272565b81146125cb57600080fd5b50565b6125d781612284565b81146125e257600080fd5b50565b6125ee816122b0565b81146125f957600080fd5b5056fea2646970667358221220319a757a2368509f239648354e51f406b3477f74e44ca48da36463102a5a90ae64736f6c6343000804003354686520417373686f6c652053425420686173206265656e207475726e6564206f66662c207468616e6b7320666f7220706c6179696e672e

Deployed Bytecode

0x6080604052600436106101095760003560e01c806367158cf91161009557806395d89b411161006457806395d89b411461032e5780639dd0725414610359578063c87b56dd14610382578063d0def521146103bf578063d9d61655146103db57610109565b806367158cf91461028857806370480275146102b157806370a08231146102da5780638bad0c0a1461031757610109565b80632a29ad14116100dc5780632a29ad14146101b45780633cca2420146101f15780633ccfd60b1461022557806342966c681461022f5780636352211e1461024b57610109565b8063060a50a71461010e57806306fdde03146101375780631785f53c146101625780631f4e2a531461018b575b600080fd5b34801561011a57600080fd5b5061013560048036038101906101309190611bb9565b610418565b005b34801561014357600080fd5b5061014c6104ff565b6040516101599190612015565b60405180910390f35b34801561016e57600080fd5b5061018960048036038101906101849190611b90565b610594565b005b34801561019757600080fd5b506101b260048036038101906101ad9190611b90565b61076c565b005b3480156101c057600080fd5b506101db60048036038101906101d69190611cae565b610899565b6040516101e89190611f27565b60405180910390f35b3480156101fd57600080fd5b506102066108cc565b60405161021c9a99989796959493929190611f42565b60405180910390f35b61022d610af3565b005b61024960048036038101906102449190611cae565b610bdc565b005b34801561025757600080fd5b50610272600480360381019061026d9190611cae565b610d8c565b60405161027f9190611f27565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190611c72565b610e3e565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190611b90565b610f80565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190611b90565b6110c5565b60405161030e9190612117565b60405180910390f35b34801561032357600080fd5b5061032c61117d565b005b34801561033a57600080fd5b50610343611263565b6040516103509190612015565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190611c49565b6112f8565b005b34801561038e57600080fd5b506103a960048036038101906103a49190611cae565b6113a4565b6040516103b69190612015565b60405180910390f35b6103d960048036038101906103d49190611bf5565b61153e565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190611b90565b611943565b60405161040f9190611ff3565b60405180910390f35b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906120d7565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060006002018054610511906122fc565b80601f016020809104026020016040519081016040528092919081815260200182805461053d906122fc565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610617906120d7565b60405180910390fd5b6000800160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90612057565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600015153373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f368c4b72f4861e88406925d48c592d16e8841fc2cdd00bac14ae24ac1b4cb95f60405160405180910390a450565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef906120d7565b60405180910390fd5b80600060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ffe24e7f161379bfcc919cdd12effa948291e9baf511c180610fbf66c9f96c3c360405160405180910390a350565b600e6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806002018054610929906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610955906122fc565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050908060030180546109b7906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109e3906122fc565b8015610a305780601f10610a0557610100808354040283529160200191610a30565b820191906000526020600020905b815481529060010190602001808311610a1357829003601f168201915b5050505050908060040154908060050154908060060154908060070160009054906101000a900460ff1690806008018054610a6a906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a96906122fc565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b505050505090806009015490508a565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612077565b60405180910390fd5b600080600401549050600080600401819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bd8573d6000803e3d6000fd5b5050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c7657600060050154341015610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612097565b60405180910390fd5b5b3460006004016000828254610c8b91906121e8565b925050819055506000610c9d82610d8c565b90506001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cef919061223e565b92505081905550600c600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90612057565b60405180910390fd5b80915050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906120d7565b60405180910390fd5b600115158215151415610f23578060006006018190555080604051610eee90611efd565b60405180910390207faf0b3c558c126d46d4e7d77be350be2aa80a5fcaa4513f906b2878d5058be6f360405160405180910390a35b600015158215151415610f7c578060006005018190555080604051610f4790611f12565b60405180910390207faf0b3c558c126d46d4e7d77be350be2aa80a5fcaa4513f906b2878d5058be6f360405160405180910390a35b5050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906120d7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600115153373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f368c4b72f4861e88406925d48c592d16e8841fc2cdd00bac14ae24ac1b4cb95f60405160405180910390a450565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90612057565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906120d7565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b606060006003018054611275906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112a1906122fc565b80156112ee5780601f106112c3576101008083540402835291602001916112ee565b820191906000526020600020905b8154815290600101906020018083116112d157829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906120d7565b60405180910390fd5b80600060070160006101000a81548160ff02191690831515021790555050565b60606113af826119da565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612057565b60405180910390fd5b600060070160009054906101000a900460ff1661149a5760006008018054611415906122fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611441906122fc565b801561148e5780601f106114635761010080835404028352916020019161148e565b820191906000526020600020905b81548152906001019060200180831161147157829003601f168201915b50505050509050611539565b6011600083815260200190815260200160002080546114b8906122fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114e4906122fc565b80156115315780601f1061150657610100808354040283529160200191611531565b820191906000526020600020905b81548152906001019060200180831161151457829003601f168201915b505050505090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590612037565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611614906120f7565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116c15750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561170f5760006006015434101561170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906120b7565b60405180910390fd5b5b346000600401600082825461172491906121e8565b9250508190555060006009016000815461173d9061235f565b919050819055506001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179491906121e8565b9250508190555081600c60008060090154815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006009015490806001815401808255809150506001900390600052602060002001600090919091909150558060116000806009015481526020019081526020016000209080519060200190611887929190611a46565b5033600e60008060090154815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600901548273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119ce57602002820191906000526020600020905b8154815260200190600101908083116119ba575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b828054611a52906122fc565b90600052602060002090601f016020900481019282611a745760008555611abb565b82601f10611a8d57805160ff1916838001178555611abb565b82800160010185558215611abb579182015b82811115611aba578251825591602001919060010190611a9f565b5b509050611ac89190611acc565b5090565b5b80821115611ae5576000816000905550600101611acd565b5090565b6000611afc611af784612157565b612132565b905082815260208101848484011115611b1457600080fd5b611b1f8482856122ba565b509392505050565b600081359050611b36816125b7565b92915050565b600081359050611b4b816125ce565b92915050565b600082601f830112611b6257600080fd5b8135611b72848260208601611ae9565b91505092915050565b600081359050611b8a816125e5565b92915050565b600060208284031215611ba257600080fd5b6000611bb084828501611b27565b91505092915050565b60008060408385031215611bcc57600080fd5b6000611bda85828601611b27565b9250506020611beb85828601611b3c565b9150509250929050565b60008060408385031215611c0857600080fd5b6000611c1685828601611b27565b925050602083013567ffffffffffffffff811115611c3357600080fd5b611c3f85828601611b51565b9150509250929050565b600060208284031215611c5b57600080fd5b6000611c6984828501611b3c565b91505092915050565b60008060408385031215611c8557600080fd5b6000611c9385828601611b3c565b9250506020611ca485828601611b7b565b9150509250929050565b600060208284031215611cc057600080fd5b6000611cce84828501611b7b565b91505092915050565b6000611ce38383611edf565b60208301905092915050565b611cf881612272565b82525050565b6000611d0982612198565b611d1381856121bb565b9350611d1e83612188565b8060005b83811015611d4f578151611d368882611cd7565b9750611d41836121ae565b925050600181019050611d22565b5085935050505092915050565b611d6581612284565b82525050565b6000611d76826121a3565b611d8081856121cc565b9350611d908185602086016122c9565b611d9981612435565b840191505092915050565b6000611db16007836121cc565b9150611dbc82612446565b602082019050919050565b6000611dd46003836121cc565b9150611ddf8261246f565b602082019050919050565b6000611df76005836121cc565b9150611e0282612498565b602082019050919050565b6000611e1a6008836121cc565b9150611e25826124c1565b602082019050919050565b6000611e3d6012836121cc565b9150611e48826124ea565b602082019050919050565b6000611e606008836121cc565b9150611e6b82612513565b602082019050919050565b6000611e83600c836121cc565b9150611e8e8261253c565b602082019050919050565b6000611ea66004836121dd565b9150611eb182612565565b600482019050919050565b6000611ec96004836121dd565b9150611ed48261258e565b600482019050919050565b611ee8816122b0565b82525050565b611ef7816122b0565b82525050565b6000611f0882611e99565b9150819050919050565b6000611f1d82611ebc565b9150819050919050565b6000602082019050611f3c6000830184611cef565b92915050565b600061014082019050611f58600083018d611cef565b611f65602083018c611cef565b8181036040830152611f77818b611d6b565b90508181036060830152611f8b818a611d6b565b9050611f9a6080830189611eee565b611fa760a0830188611eee565b611fb460c0830187611eee565b611fc160e0830186611d5c565b818103610100830152611fd48185611d6b565b9050611fe4610120830184611eee565b9b9a5050505050505050505050565b6000602082019050818103600083015261200d8184611cfe565b905092915050565b6000602082019050818103600083015261202f8184611d6b565b905092915050565b6000602082019050818103600083015261205081611da4565b9050919050565b6000602082019050818103600083015261207081611dc7565b9050919050565b6000602082019050818103600083015261209081611dea565b9050919050565b600060208201905081810360008301526120b081611e0d565b9050919050565b600060208201905081810360008301526120d081611e30565b9050919050565b600060208201905081810360008301526120f081611e53565b9050919050565b6000602082019050818103600083015261211081611e76565b9050919050565b600060208201905061212c6000830184611eee565b92915050565b600061213c61214d565b9050612148828261232e565b919050565b6000604051905090565b600067ffffffffffffffff82111561217257612171612406565b5b61217b82612435565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006121f3826122b0565b91506121fe836122b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612233576122326123a8565b5b828201905092915050565b6000612249826122b0565b9150612254836122b0565b925082821015612267576122666123a8565b5b828203905092915050565b600061227d82612290565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122e75780820151818401526020810190506122cc565b838111156122f6576000848401525b50505050565b6000600282049050600182168061231457607f821691505b60208210811415612328576123276123d7565b5b50919050565b61233782612435565b810181811067ffffffffffffffff8211171561235657612355612406565b5b80604052505050565b600061236a826122b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561239d5761239c6123a8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f64756d6261737300000000000000000000000000000000000000000000000000600082015250565b7f7774660000000000000000000000000000000000000000000000000000000000600082015250565b7f66206f6666000000000000000000000000000000000000000000000000000000600082015250565b7f7374616b65206d65000000000000000000000000000000000000000000000000600082015250565b7f61696e2774206120636861726974792e2e2e0000000000000000000000000000600082015250565b7f6e6f207065726d73000000000000000000000000000000000000000000000000600082015250565b7f6e6f2073656c66206f776e730000000000000000000000000000000000000000600082015250565b7f6d696e7400000000000000000000000000000000000000000000000000000000600082015250565b7f6275726e00000000000000000000000000000000000000000000000000000000600082015250565b6125c081612272565b81146125cb57600080fd5b50565b6125d781612284565b81146125e257600080fd5b50565b6125ee816122b0565b81146125f957600080fd5b5056fea2646970667358221220319a757a2368509f239648354e51f406b3477f74e44ca48da36463102a5a90ae64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ 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.