ETH Price: $3,518.35 (+5.16%)

Token

OPPCULTURE XP (xpCULT)
 

Overview

Max Total Supply

1,978.456391184119754709 xpCULT

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
21.745064910804476189 xpCULT

Value
$0.00
0x1f9c76e39d50d0595c82d008b5a9068f566d59fb
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:
OppcultureXPContract

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-20
*/

/*
    OPPCULTURE XP | XP

    Refer to the smart contract's 'Read Contract' tab for additional information.
 */

// SPDX-License-Identifier: none

pragma solidity 0.6.12;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * manner, since when dealing with GSN 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 payable) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

interface IERC20XP {
    function Mint(address recipient, uint256 amount) external returns (bool);
    function Burn(address recipient, uint256 amount) external returns (bool);
}

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

    mapping (address => bool) private approvedContracts;

    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public onlyOwner {
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _owner = newOwner;
    }

    modifier onlyApproved() {
        require(approvedContracts[_msgSender()] == true || _owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function IsApprovedContract(address account) public view returns(bool) {
        return approvedContracts[account];
    }
    function SetApprovedContract(address adr, bool value) public onlyOwner {
        approvedContracts[adr] = value;
    }
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }
 
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }
 
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }
 
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }
 
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }
 
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }
 
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }
 
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */

contract ERC20 is Context, IERC20, IERC20XP, Ownable {
    using SafeMath for uint256;
 
    mapping (address => uint256) private _balances;
 
    mapping (address => mapping (address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
    string private _description;
    string private _website;
    string private _legalDisclaimer;
    uint8 private _decimals;
 
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }
 
    function name() public view virtual returns (string memory) {
        return _name;
    }
 
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function Description() public view virtual returns (string memory) {
        return _description;
    }

    function Website() public view virtual returns (string memory) {
        return _website;
    }

    function LegalDisclaimer() public view virtual returns (string memory) {
        return _legalDisclaimer;
    }
 
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function EditName(string memory Name) public onlyOwner {
        _name = Name;
    }
    function EditSymbol(string memory Symbol) public onlyOwner {
        _symbol = Symbol;
    }
    function EditDescription(string memory description) public onlyOwner {
       _description = description;
    }
    function EditWebsite (string memory website) public onlyOwner {
        _website = website;
    }
    function EditLegalDisclaimer(string memory legalDisclaimer) public onlyOwner {
        _legalDisclaimer = legalDisclaimer;
    }
    function Mint(address recipient, uint256 amount) public virtual override onlyApproved returns (bool) {
        _mint(recipient, amount);
        return true;
    }
    function Burn(address recipient, uint256 amount) public virtual override onlyApproved returns (bool) {
        _burn(recipient, amount);
        return true;
    }
 
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }
 
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

contract OppcultureXPContract is ERC20 {
    string private NAME = "OPPCULTURE XP";
    string private SYMBOL = "xpCULT";
    uint8 constant DECIMALS = 18;
    uint256 constant INITAL_SUPPLY = 1 * 10**uint256(DECIMALS);

    constructor() public ERC20(NAME, SYMBOL) {
        _mint(_msgSender(), INITAL_SUPPLY);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
 
        super._transfer(sender, recipient, amount);
    }
}

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":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"description","type":"string"}],"name":"EditDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"legalDisclaimer","type":"string"}],"name":"EditLegalDisclaimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"Name","type":"string"}],"name":"EditName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"Symbol","type":"string"}],"name":"EditSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"website","type":"string"}],"name":"EditWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"IsApprovedContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LegalDisclaimer","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"SetApprovedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600d60808190526c04f505043554c5455524520585609c1b60a09081526200003091600c91906200039f565b50604080518082019091526006808252651e1c10d5531560d21b60209092019182526200006091600d916200039f565b503480156200006e57600080fd5b50600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620000f95780601f10620000cd57610100808354040283529160200191620000f9565b820191906000526020600020905b815481529060010190602001808311620000db57829003601f168201915b5050600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152955091935091508301828280156200018b5780601f106200015f576101008083540402835291602001916200018b565b820191906000526020600020905b8154815290600101906020018083116200016d57829003601f168201915b50505050506000620001a26200022160201b60201c565b600080546001600160a01b0319166001600160a01b0392909216919091179055508151620001d89060069060208501906200039f565b508051620001ee9060079060208401906200039f565b5050600b805460ff19166012179055506200021b6200020c62000221565b670de0b6b3a764000062000225565b6200043b565b3390565b6001600160a01b03821662000281576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200028f6000838362000338565b620002ab816005546200033d60201b620010ed1790919060201c565b6005556001600160a01b038216600090815260036020908152604090912054620002e0918390620010ed6200033d821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000398576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003e257805160ff191683800117855562000412565b8280016001018555821562000412579182015b8281111562000412578251825591602001919060010190620003f5565b506200042092915062000424565b5090565b5b8082111562000420576000815560010162000425565b6119d2806200044b6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063c10d674211610071578063c10d674214610744578063cc16f5db1461076a578063dd62ed3e14610796578063f2fde38b146107c45761018e565b8063a457c2d7146106e4578063a9059cbb14610710578063a9490cb11461073c5761018e565b8063715018a6146105fc578063744b3410146106045780638191745f1461060c5780638da5cb5b1461061457806395d89b4114610638578063a13779d6146106405761018e565b806323b872dd1161014b578063395093511161012557806339509351146104625780634ae286b21461048e5780636ef7ec151461053257806370a08231146105d65761018e565b806323b872dd1461036a578063292166bd146103a0578063313ce567146104445761018e565b8063048717af1461019357806306fdde03146101c3578063095ea7b3146102405780630f6798a51461028057806318160ddd146102ac5780632002b723146102c6575b600080fd5b6101c1600480360360408110156101a957600080fd5b506001600160a01b03813516906020013515156107ea565b005b6101cb61086d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102055781810151838201526020016101ed565b50505050905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61026c6004803603604081101561025657600080fd5b506001600160a01b038135169060200135610903565b604080519115158252519081900360200190f35b61026c6004803603604081101561029657600080fd5b506001600160a01b038135169060200135610920565b6102b46109b9565b60408051918252519081900360200190f35b6101c1600480360360208110156102dc57600080fd5b810190602081018135600160201b8111156102f657600080fd5b82018360208201111561030857600080fd5b803590602001918460018302840111600160201b8311171561032957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109bf945050505050565b61026c6004803603606081101561038057600080fd5b506001600160a01b03813581169160208101359091169060400135610a2e565b6101c1600480360360208110156103b657600080fd5b810190602081018135600160201b8111156103d057600080fd5b8201836020820111156103e257600080fd5b803590602001918460018302840111600160201b8311171561040357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ab5945050505050565b61044c610b20565b6040805160ff9092168252519081900360200190f35b61026c6004803603604081101561047857600080fd5b506001600160a01b038135169060200135610b29565b6101c1600480360360208110156104a457600080fd5b810190602081018135600160201b8111156104be57600080fd5b8201836020820111156104d057600080fd5b803590602001918460018302840111600160201b831117156104f157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b77945050505050565b6101c16004803603602081101561054857600080fd5b810190602081018135600160201b81111561056257600080fd5b82018360208201111561057457600080fd5b803590602001918460018302840111600160201b8311171561059557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610be2945050505050565b6102b4600480360360208110156105ec57600080fd5b50356001600160a01b0316610c4d565b6101c1610c68565b6101cb610cd2565b6101cb610d33565b61061c610d94565b604080516001600160a01b039092168252519081900360200190f35b6101cb610da3565b6101c16004803603602081101561065657600080fd5b810190602081018135600160201b81111561067057600080fd5b82018360208201111561068257600080fd5b803590602001918460018302840111600160201b831117156106a357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e04945050505050565b61026c600480360360408110156106fa57600080fd5b506001600160a01b038135169060200135610e6f565b61026c6004803603604081101561072657600080fd5b506001600160a01b038135169060200135610ed7565b6101cb610eeb565b61026c6004803603602081101561075a57600080fd5b50356001600160a01b0316610f4c565b61026c6004803603604081101561078057600080fd5b506001600160a01b038135169060200135610f6a565b6102b4600480360360408110156107ac57600080fd5b506001600160a01b0381358116916020013516611003565b6101c1600480360360208110156107da57600080fd5b50356001600160a01b031661102e565b6107f261114e565b6000546001600160a01b03908116911614610842576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061091761091061114e565b8484611152565b50600192915050565b60006002600061092e61114e565b6001600160a01b0316815260208101919091526040016000205460ff16151560011480610970575061095e61114e565b6000546001600160a01b039081169116145b6109af576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b610917838361123e565b60055490565b6109c761114e565b6000546001600160a01b03908116911614610a17576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906009906020840190611756565b5050565b6000610a3b848484611330565b610aab84610a4761114e565b610aa68560405180606001604052806028815260200161189d602891396001600160a01b038a16600090815260046020526040812090610a8561114e565b6001600160a01b031681526020810191909152604001600020549190611409565b611152565b5060019392505050565b610abd61114e565b6000546001600160a01b03908116911614610b0d576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a90600a906020840190611756565b600b5460ff1690565b6000610917610b3661114e565b84610aa68560046000610b4761114e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906110ed565b610b7f61114e565b6000546001600160a01b03908116911614610bcf576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906008906020840190611756565b610bea61114e565b6000546001600160a01b03908116911614610c3a576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906007906020840190611756565b6001600160a01b031660009081526003602052604090205490565b610c7061114e565b6000546001600160a01b03908116911614610cc0576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b600080546001600160a01b0319169055565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b610e0c61114e565b6000546001600160a01b03908116911614610e5c576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906006906020840190611756565b6000610917610e7c61114e565b84610aa6856040518060600160405280602581526020016119786025913960046000610ea661114e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611409565b6000610917610ee461114e565b8484611330565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b6001600160a01b031660009081526002602052604090205460ff1690565b600060026000610f7861114e565b6001600160a01b0316815260208101919091526040016000205460ff16151560011480610fba5750610fa861114e565b6000546001600160a01b039081169116145b610ff9576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b61091783836114a0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61103661114e565b6000546001600160a01b03908116911614611086576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b6001600160a01b0381166110cb5760405162461bcd60e51b815260040180806020018281038252602681526020018061182f6026913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015611147576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166111975760405162461bcd60e51b81526004018080602001828103825260248152602001806119546024913960400191505060405180910390fd5b6001600160a01b0382166111dc5760405162461bcd60e51b81526004018080602001828103825260228152602001806118556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216611299576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6112a560008383611404565b6005546112b290826110ed565b6005556001600160a01b0382166000908152600360205260409020546112d890826110ed565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0383166113755760405162461bcd60e51b815260040180806020018281038252602581526020018061192f6025913960400191505060405180910390fd5b6001600160a01b0382166113ba5760405162461bcd60e51b81526004018080602001828103825260238152602001806117ea6023913960400191505060405180910390fd5b600081116113f95760405162461bcd60e51b81526004018080602001828103825260298152602001806118e56029913960400191505060405180910390fd5b61140483838361159c565b505050565b600081848411156114985760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561145d578181015183820152602001611445565b50505050905090810190601f16801561148a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166114e55760405162461bcd60e51b815260040180806020018281038252602181526020018061190e6021913960400191505060405180910390fd5b6114f182600083611404565b61152e8160405180606001604052806022815260200161180d602291396001600160a01b0385166000908152600360205260409020549190611409565b6001600160a01b03831660009081526003602052604090205560055461155490826116f9565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166115e15760405162461bcd60e51b815260040180806020018281038252602581526020018061192f6025913960400191505060405180910390fd5b6001600160a01b0382166116265760405162461bcd60e51b81526004018080602001828103825260238152602001806117ea6023913960400191505060405180910390fd5b611631838383611404565b61166e81604051806060016040528060268152602001611877602691396001600160a01b0386166000908152600360205260409020549190611409565b6001600160a01b03808516600090815260036020526040808220939093559084168152205461169d90826110ed565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611750576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061179757805160ff19168380011785556117c4565b828001600101855582156117c4579182015b828111156117c45782518255916020019190600101906117a9565b506117d09291506117d4565b5090565b5b808211156117d057600081556001016117d556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f54352ebe97499015d485bf7528e7d54af97a69a27b9250792aea343e370491564736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063c10d674211610071578063c10d674214610744578063cc16f5db1461076a578063dd62ed3e14610796578063f2fde38b146107c45761018e565b8063a457c2d7146106e4578063a9059cbb14610710578063a9490cb11461073c5761018e565b8063715018a6146105fc578063744b3410146106045780638191745f1461060c5780638da5cb5b1461061457806395d89b4114610638578063a13779d6146106405761018e565b806323b872dd1161014b578063395093511161012557806339509351146104625780634ae286b21461048e5780636ef7ec151461053257806370a08231146105d65761018e565b806323b872dd1461036a578063292166bd146103a0578063313ce567146104445761018e565b8063048717af1461019357806306fdde03146101c3578063095ea7b3146102405780630f6798a51461028057806318160ddd146102ac5780632002b723146102c6575b600080fd5b6101c1600480360360408110156101a957600080fd5b506001600160a01b03813516906020013515156107ea565b005b6101cb61086d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102055781810151838201526020016101ed565b50505050905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61026c6004803603604081101561025657600080fd5b506001600160a01b038135169060200135610903565b604080519115158252519081900360200190f35b61026c6004803603604081101561029657600080fd5b506001600160a01b038135169060200135610920565b6102b46109b9565b60408051918252519081900360200190f35b6101c1600480360360208110156102dc57600080fd5b810190602081018135600160201b8111156102f657600080fd5b82018360208201111561030857600080fd5b803590602001918460018302840111600160201b8311171561032957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109bf945050505050565b61026c6004803603606081101561038057600080fd5b506001600160a01b03813581169160208101359091169060400135610a2e565b6101c1600480360360208110156103b657600080fd5b810190602081018135600160201b8111156103d057600080fd5b8201836020820111156103e257600080fd5b803590602001918460018302840111600160201b8311171561040357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ab5945050505050565b61044c610b20565b6040805160ff9092168252519081900360200190f35b61026c6004803603604081101561047857600080fd5b506001600160a01b038135169060200135610b29565b6101c1600480360360208110156104a457600080fd5b810190602081018135600160201b8111156104be57600080fd5b8201836020820111156104d057600080fd5b803590602001918460018302840111600160201b831117156104f157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b77945050505050565b6101c16004803603602081101561054857600080fd5b810190602081018135600160201b81111561056257600080fd5b82018360208201111561057457600080fd5b803590602001918460018302840111600160201b8311171561059557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610be2945050505050565b6102b4600480360360208110156105ec57600080fd5b50356001600160a01b0316610c4d565b6101c1610c68565b6101cb610cd2565b6101cb610d33565b61061c610d94565b604080516001600160a01b039092168252519081900360200190f35b6101cb610da3565b6101c16004803603602081101561065657600080fd5b810190602081018135600160201b81111561067057600080fd5b82018360208201111561068257600080fd5b803590602001918460018302840111600160201b831117156106a357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e04945050505050565b61026c600480360360408110156106fa57600080fd5b506001600160a01b038135169060200135610e6f565b61026c6004803603604081101561072657600080fd5b506001600160a01b038135169060200135610ed7565b6101cb610eeb565b61026c6004803603602081101561075a57600080fd5b50356001600160a01b0316610f4c565b61026c6004803603604081101561078057600080fd5b506001600160a01b038135169060200135610f6a565b6102b4600480360360408110156107ac57600080fd5b506001600160a01b0381358116916020013516611003565b6101c1600480360360208110156107da57600080fd5b50356001600160a01b031661102e565b6107f261114e565b6000546001600160a01b03908116911614610842576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061091761091061114e565b8484611152565b50600192915050565b60006002600061092e61114e565b6001600160a01b0316815260208101919091526040016000205460ff16151560011480610970575061095e61114e565b6000546001600160a01b039081169116145b6109af576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b610917838361123e565b60055490565b6109c761114e565b6000546001600160a01b03908116911614610a17576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906009906020840190611756565b5050565b6000610a3b848484611330565b610aab84610a4761114e565b610aa68560405180606001604052806028815260200161189d602891396001600160a01b038a16600090815260046020526040812090610a8561114e565b6001600160a01b031681526020810191909152604001600020549190611409565b611152565b5060019392505050565b610abd61114e565b6000546001600160a01b03908116911614610b0d576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a90600a906020840190611756565b600b5460ff1690565b6000610917610b3661114e565b84610aa68560046000610b4761114e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906110ed565b610b7f61114e565b6000546001600160a01b03908116911614610bcf576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906008906020840190611756565b610bea61114e565b6000546001600160a01b03908116911614610c3a576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906007906020840190611756565b6001600160a01b031660009081526003602052604090205490565b610c7061114e565b6000546001600160a01b03908116911614610cc0576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b600080546001600160a01b0319169055565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b610e0c61114e565b6000546001600160a01b03908116911614610e5c576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b8051610a2a906006906020840190611756565b6000610917610e7c61114e565b84610aa6856040518060600160405280602581526020016119786025913960046000610ea661114e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611409565b6000610917610ee461114e565b8484611330565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108f95780601f106108ce576101008083540402835291602001916108f9565b6001600160a01b031660009081526002602052604090205460ff1690565b600060026000610f7861114e565b6001600160a01b0316815260208101919091526040016000205460ff16151560011480610fba5750610fa861114e565b6000546001600160a01b039081169116145b610ff9576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b61091783836114a0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61103661114e565b6000546001600160a01b03908116911614611086576040805162461bcd60e51b815260206004820181905260248201526000805160206118c5833981519152604482015290519081900360640190fd5b6001600160a01b0381166110cb5760405162461bcd60e51b815260040180806020018281038252602681526020018061182f6026913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015611147576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166111975760405162461bcd60e51b81526004018080602001828103825260248152602001806119546024913960400191505060405180910390fd5b6001600160a01b0382166111dc5760405162461bcd60e51b81526004018080602001828103825260228152602001806118556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216611299576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6112a560008383611404565b6005546112b290826110ed565b6005556001600160a01b0382166000908152600360205260409020546112d890826110ed565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0383166113755760405162461bcd60e51b815260040180806020018281038252602581526020018061192f6025913960400191505060405180910390fd5b6001600160a01b0382166113ba5760405162461bcd60e51b81526004018080602001828103825260238152602001806117ea6023913960400191505060405180910390fd5b600081116113f95760405162461bcd60e51b81526004018080602001828103825260298152602001806118e56029913960400191505060405180910390fd5b61140483838361159c565b505050565b600081848411156114985760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561145d578181015183820152602001611445565b50505050905090810190601f16801561148a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166114e55760405162461bcd60e51b815260040180806020018281038252602181526020018061190e6021913960400191505060405180910390fd5b6114f182600083611404565b61152e8160405180606001604052806022815260200161180d602291396001600160a01b0385166000908152600360205260409020549190611409565b6001600160a01b03831660009081526003602052604090205560055461155490826116f9565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166115e15760405162461bcd60e51b815260040180806020018281038252602581526020018061192f6025913960400191505060405180910390fd5b6001600160a01b0382166116265760405162461bcd60e51b81526004018080602001828103825260238152602001806117ea6023913960400191505060405180910390fd5b611631838383611404565b61166e81604051806060016040528060268152602001611877602691396001600160a01b0386166000908152600360205260409020549190611409565b6001600160a01b03808516600090815260036020526040808220939093559084168152205461169d90826110ed565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611750576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061179757805160ff19168380011785556117c4565b828001600101855582156117c4579182015b828111156117c45782518255916020019190600101906117a9565b506117d09291506117d4565b5090565b5b808211156117d057600081556001016117d556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f54352ebe97499015d485bf7528e7d54af97a69a27b9250792aea343e370491564736f6c634300060c0033

Deployed Bytecode Sourcemap

21224:726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:120;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5592:120:0;;;;;;;;;;:::i;:::-;;16143:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18281:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18281:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;17934:166;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17934:166:0;;;;;;;;:::i;16786:108::-;;;:::i;:::-;;;;;;;;;;;;;;;;17693:99;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17693:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17693:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17693:99:0;;-1:-1:-1;17693:99:0;;-1:-1:-1;;;;;17693:99:0:i;18459:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18459:321:0;;;;;;;;;;;;;;;;;:::i;17798:130::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17798:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17798:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17798:130:0;;-1:-1:-1;17798:130:0;;-1:-1:-1;;;;;17798:130:0:i;16686:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18789:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18789:218:0;;;;;;;;:::i;17574:113::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17574:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17574:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17574:113:0;;-1:-1:-1;17574:113:0;;-1:-1:-1;;;;;17574:113:0:i;17474:94::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17474:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17474:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17474:94:0;;-1:-1:-1;17474:94:0;;-1:-1:-1;;;;;17474:94:0:i;16903:127::-;;;;;;;;;;;;;;;;-1:-1:-1;16903:127:0;-1:-1:-1;;;;;16903:127:0;;:::i;5008:84::-;;;:::i;16564:113::-;;;:::i;16346:105::-;;;:::i;4794:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4794:79:0;;;;;;;;;;;;;;16243:95;;;:::i;17382:86::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17382:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17382:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17382:86:0;;-1:-1:-1;17382:86:0;;-1:-1:-1;;;;;17382:86:0:i;19016:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19016:269:0;;;;;;;;:::i;17039:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17039:175:0;;;;;;;;:::i;16459:97::-;;;:::i;5463:123::-;;;;;;;;;;;;;;;;-1:-1:-1;5463:123:0;-1:-1:-1;;;;;5463:123:0;;:::i;18106:166::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18106:166:0;;;;;;;;:::i;17223:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17223:151:0;;;;;;;;;;:::i;5100:182::-;;;;;;;;;;;;;;;;-1:-1:-1;5100:182:0;-1:-1:-1;;;;;5100:182:0;;:::i;5592:120::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5674:22:0;;;::::1;;::::0;;;:17:::1;:22;::::0;;;;:30;;-1:-1:-1;;5674:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5592:120::o;16143:91::-;16221:5;16214:12;;;;;;;;-1:-1:-1;;16214:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16188:13;;16214:12;;16221:5;;16214:12;;16221:5;16214:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16143:91;:::o;18281:169::-;18364:4;18381:39;18390:12;:10;:12::i;:::-;18404:7;18413:6;18381:8;:39::i;:::-;-1:-1:-1;18438:4:0;18281:169;;;;:::o;17934:166::-;18029:4;5333:17;:31;5351:12;:10;:12::i;:::-;-1:-1:-1;;;;;5333:31:0;;;;;;;;;;;;-1:-1:-1;5333:31:0;;;;:39;;:31;:39;;:65;;;5386:12;:10;:12::i;:::-;5376:6;;-1:-1:-1;;;;;5376:6:0;;;:22;;;5333:65;5325:110;;;;;-1:-1:-1;;;5325:110:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5325:110:0;;;;;;;;;;;;;;;18046:24:::1;18052:9;18063:6;18046:5;:24::i;16786:108::-:0;16874:12;;16786:108;:::o;17693:99::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;17766:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;17693:99:::0;:::o;18459:321::-;18565:4;18582:36;18592:6;18600:9;18611:6;18582:9;:36::i;:::-;18629:121;18638:6;18646:12;:10;:12::i;:::-;18660:89;18698:6;18660:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18660:19:0;;;;;;:11;:19;;;;;;18680:12;:10;:12::i;:::-;-1:-1:-1;;;;;18660:33:0;;;;;;;;;;;;-1:-1:-1;18660:33:0;;;:89;:37;:89::i;:::-;18629:8;:121::i;:::-;-1:-1:-1;18768:4:0;18459:321;;;;;:::o;17798:130::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;17886:34;;::::1;::::0;:16:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;16686:91::-:0;16760:9;;;;16686:91;:::o;18789:218::-;18877:4;18894:83;18903:12;:10;:12::i;:::-;18917:7;18926:50;18965:10;18926:11;:25;18938:12;:10;:12::i;:::-;-1:-1:-1;;;;;18926:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18926:25:0;;;:34;;;;;;;;;;;:38;:50::i;17574:113::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;17653:26;;::::1;::::0;:12:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;17474:94::-:0;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;17544:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;16903:127::-:0;-1:-1:-1;;;;;17004:18:0;16977:7;17004:18;;;:9;:18;;;;;;;16903:127::o;5008:84::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;5082:1:::1;5065:19:::0;;-1:-1:-1;;;;;;5065:19:0::1;::::0;;5008:84::o;16564:113::-;16653:16;16646:23;;;;;;;;-1:-1:-1;;16646:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16620:13;;16646:23;;16653:16;;16646:23;;16653:16;16646:23;;;;;;;;;;;;;;;;;;;;;;;;16346:105;16431:12;16424:19;;;;;;;;-1:-1:-1;;16424:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16398:13;;16424:19;;16431:12;;16424:19;;16431:12;16424:19;;;;;;;;;;;;;;;;;;;;;;;;4794:79;4832:7;4859:6;-1:-1:-1;;;;;4859:6:0;4794:79;:::o;16243:95::-;16323:7;16316:14;;;;;;;;-1:-1:-1;;16316:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16290:13;;16316:14;;16323:7;;16316:14;;16323:7;16316:14;;;;;;;;;;;;;;;;;;;;;;;;17382:86;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;17448:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;19016:269::-:0;19109:4;19126:129;19135:12;:10;:12::i;:::-;19149:7;19158:96;19197:15;19158:96;;;;;;;;;;;;;;;;;:11;:25;19170:12;:10;:12::i;:::-;-1:-1:-1;;;;;19158:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19158:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17039:175::-;17125:4;17142:42;17152:12;:10;:12::i;:::-;17166:9;17177:6;17142:9;:42::i;16459:97::-;16540:8;16533:15;;;;;;;;-1:-1:-1;;16533:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16507:13;;16533:15;;16540:8;;16533:15;;16540:8;16533:15;;;;;;;;;;;;;;;;;;;;;;;;5463:123;-1:-1:-1;;;;;5552:26:0;5528:4;5552:26;;;:17;:26;;;;;;;;;5463:123::o;18106:166::-;18201:4;5333:17;:31;5351:12;:10;:12::i;:::-;-1:-1:-1;;;;;5333:31:0;;;;;;;;;;;;-1:-1:-1;5333:31:0;;;;:39;;:31;:39;;:65;;;5386:12;:10;:12::i;:::-;5376:6;;-1:-1:-1;;;;;5376:6:0;;;:22;;;5333:65;5325:110;;;;;-1:-1:-1;;;5325:110:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5325:110:0;;;;;;;;;;;;;;;18218:24:::1;18224:9;18235:6;18218:5;:24::i;17223:151::-:0;-1:-1:-1;;;;;17339:18:0;;;17312:7;17339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17223:151::o;5100:182::-;4931:12;:10;:12::i;:::-;4921:6;;-1:-1:-1;;;;;4921:6:0;;;:22;;;4913:67;;;;;-1:-1:-1;;;4913:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4913:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5181:22:0;::::1;5173:73;;;;-1:-1:-1::0;;;5173:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5257:6;:17:::0;;-1:-1:-1;;;;;;5257:17:0::1;-1:-1:-1::0;;;;;5257:17:0;;;::::1;::::0;;;::::1;::::0;;5100:182::o;6322:179::-;6380:7;6412:5;;;6436:6;;;;6428:46;;;;;-1:-1:-1;;;6428:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6492:1;6322:179;-1:-1:-1;;;6322:179:0:o;648:106::-;736:10;648:106;:::o;20662:347::-;-1:-1:-1;;;;;20764:19:0;;20756:68;;;;-1:-1:-1;;;20756:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20843:21:0;;20835:68;;;;-1:-1:-1;;;20835:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20917:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20969:32;;;;;;;;;;;;;;;;;20662:347;;;:::o;19844:380::-;-1:-1:-1;;;;;19928:21:0;;19920:65;;;;;-1:-1:-1;;;19920:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19999:49;20028:1;20032:7;20041:6;19999:20;:49::i;:::-;20077:12;;:24;;20094:6;20077:16;:24::i;:::-;20062:12;:39;-1:-1:-1;;;;;20133:18:0;;;;;;:9;:18;;;;;;:30;;20156:6;20133:22;:30::i;:::-;-1:-1:-1;;;;;20112:18:0;;;;;;:9;:18;;;;;;;;:51;;;;20179:37;;;;;;;20112:18;;;;20179:37;;;;;;;;;;19844:380;;:::o;21557:390::-;-1:-1:-1;;;;;21664:20:0;;21656:70;;;;-1:-1:-1;;;21656:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21745:23:0;;21737:71;;;;-1:-1:-1;;;21737:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21836:1;21827:6;:10;21819:64;;;;-1:-1:-1;;;21819:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21897:42;21913:6;21921:9;21932:6;21897:15;:42::i;:::-;21557:390;;;:::o;7228:166::-;7314:7;7350:12;7342:6;;;;7334:29;;;;-1:-1:-1;;;7334:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7381:5:0;;;7228:166::o;20233:420::-;-1:-1:-1;;;;;20317:21:0;;20309:67;;;;-1:-1:-1;;;20309:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20390:49;20411:7;20428:1;20432:6;20390:20;:49::i;:::-;20474:68;20497:6;20474:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20474:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20453:18:0;;;;;;:9;:18;;;;;:89;20568:12;;:24;;20585:6;20568:16;:24::i;:::-;20553:12;:39;20608:37;;;;;;;;20634:1;;-1:-1:-1;;;;;20608:37:0;;;;;;;;;;;;20233:420;;:::o;19294:541::-;-1:-1:-1;;;;;19400:20:0;;19392:70;;;;-1:-1:-1;;;19392:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19481:23:0;;19473:71;;;;-1:-1:-1;;;19473:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19558:47;19579:6;19587:9;19598:6;19558:20;:47::i;:::-;19639:71;19661:6;19639:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19639:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19619:17:0;;;;;;;:9;:17;;;;;;:91;;;;19744:20;;;;;;;:32;;19769:6;19744:24;:32::i;:::-;-1:-1:-1;;;;;19721:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19792:35;;;;;;;19721:20;;19792:35;;;;;;;;;;;;;19294:541;;;:::o;6510:158::-;6568:7;6601:1;6596;:6;;6588:49;;;;;-1:-1:-1;;;6588:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6655:5:0;;;6510:158::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://f54352ebe97499015d485bf7528e7d54af97a69a27b9250792aea343e3704915
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.