ETH Price: $2,408.15 (+1.26%)

Token

Square Bears Honey (HNY)
 

Overview

Max Total Supply

94,019 HNY

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
860 HNY

Value
$0.00
0x922724c4641445907633223df4fAACbb167F230F
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:
SquareBearsHoney

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

pragma solidity ^0.8.12;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


/**
 * @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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

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

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


contract SquareBearsHoney is ERC20, Ownable {
    using SafeMath for uint256;

    address public staking;
    uint8 public _decimals = 18;
    string public _name = 'Square Bears Honey';
    string public _symbol = 'HNY';
    uint256 TOTAL_CAP = 2 * 10 ** 8 * 1e18;
    uint256 STAKING_CAP = 10 ** 7 * 1e18;
    uint256 stakingSupply = 0;

    constructor() ERC20(_name, _symbol) {}

    modifier onlyStaking() {
        require(msg.sender == staking, "Not staking");
        _;
    }
    
    function mint(address _to, uint256 _amount) external onlyStaking {
        require(_amount != 0, "Invalid amount");
        require(stakingSupply + _amount <= STAKING_CAP, "Max limit");
	    stakingSupply += _amount;
        _mint(_to, _amount);
    }

    function mintOnlyOwner(address _to, uint256 _amount) external onlyOwner {
        require(_amount != 0, "Invalid amount");
        require(totalSupply() + _amount <= TOTAL_CAP, "Max limit");
        _mint(_to, _amount);
    }

    function modifyTotalCap(uint256 _cap) external onlyOwner {
		require(_cap > totalSupply(), "total supply already exceeds");
		TOTAL_CAP = _cap;
    }

    function modifyStakingCap(uint256 _cap) external onlyOwner {
		require(_cap > stakeSupply(), "staking supply already exceeds");
		STAKING_CAP = _cap;
    }

    function modifyStakingOwner(address _staking) external onlyOwner {
        staking = _staking;
    }

    function stakeSupply() public view returns (uint256) {
		return stakingSupply;
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"modifyStakingCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"}],"name":"modifyStakingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"modifyTotalCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

6006805460ff60a01b1916600960a11b17905560c0604052601260808190527153717561726520426561727320486f6e657960701b60a090815262000048916007919062000271565b5060408051808201909152600380825262484e5960e81b6020909201918252620000759160089162000271565b506aa56fa5b99019a5c80000006009556a084595161401484a000000600a556000600b55348015620000a657600080fd5b5060078054620000b69062000317565b80601f0160208091040260200160405190810160405280929190818152602001828054620000e49062000317565b8015620001355780601f10620001095761010080835404028352916020019162000135565b820191906000526020600020905b8154815290600101906020018083116200011757829003601f168201915b505050505060088054620001499062000317565b80601f0160208091040260200160405190810160405280929190818152602001828054620001779062000317565b8015620001c85780601f106200019c57610100808354040283529160200191620001c8565b820191906000526020600020905b815481529060010190602001808311620001aa57829003601f168201915b50508451620001e293506003925060208601915062000271565b508051620001f890600490602084019062000271565b505050620002156200020f6200021b60201b60201c565b6200021f565b62000354565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200027f9062000317565b90600052602060002090601f016020900481019282620002a35760008555620002ee565b82601f10620002be57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ee578251825591602001919060010190620002d1565b50620002fc92915062000300565b5090565b5b80821115620002fc576000815560010162000301565b600181811c908216806200032c57607f821691505b602082108114156200034e57634e487b7160e01b600052602260045260246000fd5b50919050565b6111ec80620003646000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b0595c5c11610097578063d28d885211610071578063d28d885214610326578063d9944a6f1461032e578063dd62ed3e14610341578063f2fde38b1461037a57600080fd5b8063b0595c5c14610303578063b09f126614610316578063c2778b281461031e57600080fd5b8063715018a6146102a95780638da5cb5b146102b157806395d89b41146102c2578063978bf9cb146102ca578063a457c2d7146102dd578063a9059cbb146102f057600080fd5b806332424aa31161013057806332424aa314610208578063395093511461021c57806340c10f191461022f57806342966c68146102425780634cf088d91461025557806370a082311461028057600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b957806323b872dd146101cb5780632498d85c146101de578063313ce567146101f3575b600080fd5b61018061038d565b60405161018d9190610fbc565b60405180910390f35b6101a96101a436600461102d565b61041f565b604051901515815260200161018d565b6002545b60405190815260200161018d565b6101a96101d9366004611057565b610435565b6101f16101ec366004611093565b6104e4565b005b60125b60405160ff909116815260200161018d565b6006546101f690600160a01b900460ff1681565b6101a961022a36600461102d565b610564565b6101f161023d36600461102d565b6105a0565b6101f1610250366004611093565b610697565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101bd61028e3660046110ac565b6001600160a01b031660009081526020819052604090205490565b6101f16106a4565b6005546001600160a01b0316610268565b6101806106da565b6101f16102d8366004611093565b6106e9565b6101a96102eb36600461102d565b610769565b6101a96102fe36600461102d565b610802565b6101f161031136600461102d565b61080f565b6101806108d2565b600b546101bd565b610180610960565b6101f161033c3660046110ac565b61096d565b6101bd61034f3660046110ce565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f16103883660046110ac565b6109b9565b60606003805461039c90611101565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611101565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b600061042c338484610a51565b50600192915050565b6000610442848484610b76565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610a51565b506001949350505050565b6005546001600160a01b0316331461050e5760405162461bcd60e51b81526004016104c39061113c565b600b54811161055f5760405162461bcd60e51b815260206004820152601e60248201527f7374616b696e6720737570706c7920616c72656164792065786365656473000060448201526064016104c3565b600a55565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042c91859061059b908690611187565b610a51565b6006546001600160a01b031633146105e85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74207374616b696e6760a81b60448201526064016104c3565b806106265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b600a5481600b546106379190611187565b11156106715760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b80600b60008282546106839190611187565b9091555061069390508282610d45565b5050565b6106a13382610e24565b50565b6005546001600160a01b031633146106ce5760405162461bcd60e51b81526004016104c39061113c565b6106d86000610f6a565b565b60606004805461039c90611101565b6005546001600160a01b031633146107135760405162461bcd60e51b81526004016104c39061113c565b60025481116107645760405162461bcd60e51b815260206004820152601c60248201527f746f74616c20737570706c7920616c726561647920657863656564730000000060448201526064016104c3565b600955565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b6107f83385858403610a51565b5060019392505050565b600061042c338484610b76565b6005546001600160a01b031633146108395760405162461bcd60e51b81526004016104c39061113c565b806108775760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b6009548161088460025490565b61088e9190611187565b11156108c85760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b6106938282610d45565b600880546108df90611101565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611101565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b505050505081565b600780546108df90611101565b6005546001600160a01b031633146109975760405162461bcd60e51b81526004016104c39061113c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016104c39061113c565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b6106a181610f6a565b6001600160a01b038316610ab35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b038216610b145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6001600160a01b03831660009081526020819052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ceb908490611187565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3791815260200190565b60405180910390a350505050565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c3565b8060026000828254610dad9190611187565b90915550506001600160a01b03821660009081526020819052604081208054839290610dda908490611187565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c3565b6001600160a01b03821660009081526020819052604090205481811015610ef85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f2790849061119f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b69565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610fe957858101830151858201604001528201610fcd565b81811115610ffb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461102857600080fd5b919050565b6000806040838503121561104057600080fd5b61104983611011565b946020939093013593505050565b60008060006060848603121561106c57600080fd5b61107584611011565b925061108360208501611011565b9150604084013590509250925092565b6000602082840312156110a557600080fd5b5035919050565b6000602082840312156110be57600080fd5b6110c782611011565b9392505050565b600080604083850312156110e157600080fd5b6110ea83611011565b91506110f860208401611011565b90509250929050565b600181811c9082168061111557607f821691505b6020821081141561113657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561119a5761119a611171565b500190565b6000828210156111b1576111b1611171565b50039056fea2646970667358221220a3a96185afe90a00c4ca34e1848e3fc539348e7e6d37aadd639eb752bfdfe50064736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b0595c5c11610097578063d28d885211610071578063d28d885214610326578063d9944a6f1461032e578063dd62ed3e14610341578063f2fde38b1461037a57600080fd5b8063b0595c5c14610303578063b09f126614610316578063c2778b281461031e57600080fd5b8063715018a6146102a95780638da5cb5b146102b157806395d89b41146102c2578063978bf9cb146102ca578063a457c2d7146102dd578063a9059cbb146102f057600080fd5b806332424aa31161013057806332424aa314610208578063395093511461021c57806340c10f191461022f57806342966c68146102425780634cf088d91461025557806370a082311461028057600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b957806323b872dd146101cb5780632498d85c146101de578063313ce567146101f3575b600080fd5b61018061038d565b60405161018d9190610fbc565b60405180910390f35b6101a96101a436600461102d565b61041f565b604051901515815260200161018d565b6002545b60405190815260200161018d565b6101a96101d9366004611057565b610435565b6101f16101ec366004611093565b6104e4565b005b60125b60405160ff909116815260200161018d565b6006546101f690600160a01b900460ff1681565b6101a961022a36600461102d565b610564565b6101f161023d36600461102d565b6105a0565b6101f1610250366004611093565b610697565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101bd61028e3660046110ac565b6001600160a01b031660009081526020819052604090205490565b6101f16106a4565b6005546001600160a01b0316610268565b6101806106da565b6101f16102d8366004611093565b6106e9565b6101a96102eb36600461102d565b610769565b6101a96102fe36600461102d565b610802565b6101f161031136600461102d565b61080f565b6101806108d2565b600b546101bd565b610180610960565b6101f161033c3660046110ac565b61096d565b6101bd61034f3660046110ce565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f16103883660046110ac565b6109b9565b60606003805461039c90611101565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611101565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b600061042c338484610a51565b50600192915050565b6000610442848484610b76565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610a51565b506001949350505050565b6005546001600160a01b0316331461050e5760405162461bcd60e51b81526004016104c39061113c565b600b54811161055f5760405162461bcd60e51b815260206004820152601e60248201527f7374616b696e6720737570706c7920616c72656164792065786365656473000060448201526064016104c3565b600a55565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042c91859061059b908690611187565b610a51565b6006546001600160a01b031633146105e85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74207374616b696e6760a81b60448201526064016104c3565b806106265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b600a5481600b546106379190611187565b11156106715760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b80600b60008282546106839190611187565b9091555061069390508282610d45565b5050565b6106a13382610e24565b50565b6005546001600160a01b031633146106ce5760405162461bcd60e51b81526004016104c39061113c565b6106d86000610f6a565b565b60606004805461039c90611101565b6005546001600160a01b031633146107135760405162461bcd60e51b81526004016104c39061113c565b60025481116107645760405162461bcd60e51b815260206004820152601c60248201527f746f74616c20737570706c7920616c726561647920657863656564730000000060448201526064016104c3565b600955565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b6107f83385858403610a51565b5060019392505050565b600061042c338484610b76565b6005546001600160a01b031633146108395760405162461bcd60e51b81526004016104c39061113c565b806108775760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b6009548161088460025490565b61088e9190611187565b11156108c85760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b6106938282610d45565b600880546108df90611101565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611101565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b505050505081565b600780546108df90611101565b6005546001600160a01b031633146109975760405162461bcd60e51b81526004016104c39061113c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016104c39061113c565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b6106a181610f6a565b6001600160a01b038316610ab35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b038216610b145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6001600160a01b03831660009081526020819052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ceb908490611187565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3791815260200190565b60405180910390a350505050565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c3565b8060026000828254610dad9190611187565b90915550506001600160a01b03821660009081526020819052604081208054839290610dda908490611187565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c3565b6001600160a01b03821660009081526020819052604090205481811015610ef85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f2790849061119f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b69565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610fe957858101830151858201604001528201610fcd565b81811115610ffb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461102857600080fd5b919050565b6000806040838503121561104057600080fd5b61104983611011565b946020939093013593505050565b60008060006060848603121561106c57600080fd5b61107584611011565b925061108360208501611011565b9150604084013590509250925092565b6000602082840312156110a557600080fd5b5035919050565b6000602082840312156110be57600080fd5b6110c782611011565b9392505050565b600080604083850312156110e157600080fd5b6110ea83611011565b91506110f860208401611011565b90509250929050565b600181811c9082168061111557607f821691505b6020821081141561113657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561119a5761119a611171565b500190565b6000828210156111b1576111b1611171565b50039056fea2646970667358221220a3a96185afe90a00c4ca34e1848e3fc539348e7e6d37aadd639eb752bfdfe50064736f6c634300080c0033

Deployed Bytecode Sourcemap

24925:1638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14962:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17129:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;17129:169:0;1053:187:1;16082:108:0;16170:12;;16082:108;;;1391:25:1;;;1379:2;1364:18;16082:108:0;1245:177:1;17780:492:0;;;;;;:::i;:::-;;:::i;26099:158::-;;;;;;:::i;:::-;;:::i;:::-;;15924:93;16007:2;15924:93;;;2117:4:1;2105:17;;;2087:36;;2075:2;2060:18;15924:93:0;1945:184:1;25040:27:0;;;;;-1:-1:-1;;;25040:27:0;;;;;;18681:215;;;;;;:::i;:::-;;:::i;25438:256::-;;;;;;:::i;:::-;;:::i;26469:91::-;;;;;;:::i;:::-;;:::i;25011:22::-;;;;;-1:-1:-1;;;;;25011:22:0;;;;;;-1:-1:-1;;;;;2298:32:1;;;2280:51;;2268:2;2253:18;25011:22:0;2134:203:1;16253:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;16354:18:0;16327:7;16354:18;;;;;;;;;;;;16253:127;9056:94;;;:::i;8405:87::-;8478:6;;-1:-1:-1;;;;;8478:6:0;8405:87;;15181:104;;;:::i;25939:152::-;;;;;;:::i;:::-;;:::i;19399:413::-;;;;;;:::i;:::-;;:::i;16593:175::-;;;;;;:::i;:::-;;:::i;25702:229::-;;;;;;:::i;:::-;;:::i;25123:29::-;;;:::i;26375:86::-;26440:13;;26375:86;;25074:42;;;:::i;26265:102::-;;;;;;:::i;:::-;;:::i;16831:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16947:18:0;;;16920:7;16947:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16831:151;9305:192;;;;;;:::i;:::-;;:::i;14962:100::-;15016:13;15049:5;15042:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14962:100;:::o;17129:169::-;17212:4;17229:39;7359:10;17252:7;17261:6;17229:8;:39::i;:::-;-1:-1:-1;17286:4:0;17129:169;;;;:::o;17780:492::-;17920:4;17937:36;17947:6;17955:9;17966:6;17937:9;:36::i;:::-;-1:-1:-1;;;;;18013:19:0;;17986:24;18013:19;;;:11;:19;;;;;;;;7359:10;18013:33;;;;;;;;18065:26;;;;18057:79;;;;-1:-1:-1;;;18057:79:0;;3385:2:1;18057:79:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;18057:79:0;;;;;;;;;18172:57;18181:6;7359:10;18222:6;18203:16;:25;18172:8;:57::i;:::-;-1:-1:-1;18260:4:0;;17780:492;-1:-1:-1;;;;17780:492:0:o;26099:158::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;26440:13;;26171:4:::1;:20;26163:63;;;::::0;-1:-1:-1;;;26163:63:0;;4155:2:1;26163:63:0::1;::::0;::::1;4137:21:1::0;4194:2;4174:18;;;4167:30;4233:32;4213:18;;;4206:60;4283:18;;26163:63:0::1;3953:354:1::0;26163:63:0::1;26231:11;:18:::0;26099:158::o;18681:215::-;7359:10;18769:4;18818:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18818:34:0;;;;;;;;;;18769:4;;18786:80;;18809:7;;18818:47;;18855:10;;18818:47;:::i;:::-;18786:8;:80::i;25438:256::-;25383:7;;-1:-1:-1;;;;;25383:7:0;25369:10;:21;25361:45;;;;-1:-1:-1;;;25361:45:0;;4779:2:1;25361:45:0;;;4761:21:1;4818:2;4798:18;;;4791:30;-1:-1:-1;;;4837:18:1;;;4830:41;4888:18;;25361:45:0;4577:335:1;25361:45:0;25522:12;25514:39:::1;;;::::0;-1:-1:-1;;;25514:39:0;;5119:2:1;25514:39:0::1;::::0;::::1;5101:21:1::0;5158:2;5138:18;;;5131:30;-1:-1:-1;;;5177:18:1;;;5170:44;5231:18;;25514:39:0::1;4917:338:1::0;25514:39:0::1;25599:11;;25588:7;25572:13;;:23;;;;:::i;:::-;:38;;25564:60;;;::::0;-1:-1:-1;;;25564:60:0;;5462:2:1;25564:60:0::1;::::0;::::1;5444:21:1::0;5501:1;5481:18;;;5474:29;-1:-1:-1;;;5519:18:1;;;5512:39;5568:18;;25564:60:0::1;5260:332:1::0;25564:60:0::1;25649:7;25632:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;25667:19:0::1;::::0;-1:-1:-1;25673:3:0;25678:7;25667:5:::1;:19::i;:::-;25438:256:::0;;:::o;26469:91::-;26525:27;7359:10;26545:6;26525:5;:27::i;:::-;26469:91;:::o;9056:94::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;9121:21:::1;9139:1;9121:9;:21::i;:::-;9056:94::o:0;15181:104::-;15237:13;15270:7;15263:14;;;;;:::i;25939:152::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;16170:12;;26009:4:::1;:20;26001:61;;;::::0;-1:-1:-1;;;26001:61:0;;5799:2:1;26001:61:0::1;::::0;::::1;5781:21:1::0;5838:2;5818:18;;;5811:30;5877;5857:18;;;5850:58;5925:18;;26001:61:0::1;5597:352:1::0;26001:61:0::1;26067:9;:16:::0;25939:152::o;19399:413::-;7359:10;19492:4;19536:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19536:34:0;;;;;;;;;;19589:35;;;;19581:85;;;;-1:-1:-1;;;19581:85:0;;6156:2:1;19581:85:0;;;6138:21:1;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:35;6330:19;;19581:85:0;5954:401:1;19581:85:0;19702:67;7359:10;19725:7;19753:15;19734:16;:34;19702:8;:67::i;:::-;-1:-1:-1;19800:4:0;;19399:413;-1:-1:-1;;;19399:413:0:o;16593:175::-;16679:4;16696:42;7359:10;16720:9;16731:6;16696:9;:42::i;25702:229::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;25793:12;25785:39:::1;;;::::0;-1:-1:-1;;;25785:39:0;;5119:2:1;25785:39:0::1;::::0;::::1;5101:21:1::0;5158:2;5138:18;;;5131:30;-1:-1:-1;;;5177:18:1;;;5170:44;5231:18;;25785:39:0::1;4917:338:1::0;25785:39:0::1;25870:9;;25859:7;25843:13;16170:12:::0;;;16082:108;25843:13:::1;:23;;;;:::i;:::-;:36;;25835:58;;;::::0;-1:-1:-1;;;25835:58:0;;5462:2:1;25835:58:0::1;::::0;::::1;5444:21:1::0;5501:1;5481:18;;;5474:29;-1:-1:-1;;;5519:18:1;;;5512:39;5568:18;;25835:58:0::1;5260:332:1::0;25835:58:0::1;25904:19;25910:3;25915:7;25904:5;:19::i;25123:29::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25074:42::-;;;;;;;:::i;26265:102::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;26341:7:::1;:18:::0;;-1:-1:-1;;;;;;26341:18:0::1;-1:-1:-1::0;;;;;26341:18:0;;;::::1;::::0;;;::::1;::::0;;26265:102::o;9305:192::-;8478:6;;-1:-1:-1;;;;;8478:6:0;7359:10;8625:23;8617:68;;;;-1:-1:-1;;;8617:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9394:22:0;::::1;9386:73;;;::::0;-1:-1:-1;;;9386:73:0;;6562:2:1;9386:73:0::1;::::0;::::1;6544:21:1::0;6601:2;6581:18;;;6574:30;6640:34;6620:18;;;6613:62;-1:-1:-1;;;6691:18:1;;;6684:36;6737:19;;9386:73:0::1;6360:402:1::0;9386:73:0::1;9470:19;9480:8;9470:9;:19::i;23083:380::-:0;-1:-1:-1;;;;;23219:19:0;;23211:68;;;;-1:-1:-1;;;23211:68:0;;6969:2:1;23211:68:0;;;6951:21:1;7008:2;6988:18;;;6981:30;7047:34;7027:18;;;7020:62;-1:-1:-1;;;7098:18:1;;;7091:34;7142:19;;23211:68:0;6767:400:1;23211:68:0;-1:-1:-1;;;;;23298:21:0;;23290:68;;;;-1:-1:-1;;;23290:68:0;;7374:2:1;23290:68:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:32;7545:19;;23290:68:0;7172:398:1;23290:68:0;-1:-1:-1;;;;;23371:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23423:32;;1391:25:1;;;23423:32:0;;1364:18:1;23423:32:0;;;;;;;;23083:380;;;:::o;20302:733::-;-1:-1:-1;;;;;20442:20:0;;20434:70;;;;-1:-1:-1;;;20434:70:0;;7777:2:1;20434:70:0;;;7759:21:1;7816:2;7796:18;;;7789:30;7855:34;7835:18;;;7828:62;-1:-1:-1;;;7906:18:1;;;7899:35;7951:19;;20434:70:0;7575:401:1;20434:70:0;-1:-1:-1;;;;;20523:23:0;;20515:71;;;;-1:-1:-1;;;20515:71:0;;8183:2:1;20515:71:0;;;8165:21:1;8222:2;8202:18;;;8195:30;8261:34;8241:18;;;8234:62;-1:-1:-1;;;8312:18:1;;;8305:33;8355:19;;20515:71:0;7981:399:1;20515:71:0;-1:-1:-1;;;;;20683:17:0;;20659:21;20683:17;;;;;;;;;;;20719:23;;;;20711:74;;;;-1:-1:-1;;;20711:74:0;;8587:2:1;20711:74:0;;;8569:21:1;8626:2;8606:18;;;8599:30;8665:34;8645:18;;;8638:62;-1:-1:-1;;;8716:18:1;;;8709:36;8762:19;;20711:74:0;8385:402:1;20711:74:0;-1:-1:-1;;;;;20821:17:0;;;:9;:17;;;;;;;;;;;20841:22;;;20821:42;;20885:20;;;;;;;;:30;;20857:6;;20821:9;20885:30;;20857:6;;20885:30;:::i;:::-;;;;;;;;20950:9;-1:-1:-1;;;;;20933:35:0;20942:6;-1:-1:-1;;;;;20933:35:0;;20961:6;20933:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;20933:35:0;;;;;;;;20423:612;20302:733;;;:::o;21322:399::-;-1:-1:-1;;;;;21406:21:0;;21398:65;;;;-1:-1:-1;;;21398:65:0;;8994:2:1;21398:65:0;;;8976:21:1;9033:2;9013:18;;;9006:30;9072:33;9052:18;;;9045:61;9123:18;;21398:65:0;8792:355:1;21398:65:0;21554:6;21538:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21571:18:0;;:9;:18;;;;;;;;;;:28;;21593:6;;21571:9;:28;;21593:6;;21571:28;:::i;:::-;;;;-1:-1:-1;;21615:37:0;;1391:25:1;;;-1:-1:-1;;;;;21615:37:0;;;21632:1;;21615:37;;1379:2:1;1364:18;21615:37:0;;;;;;;25438:256;;:::o;22054:591::-;-1:-1:-1;;;;;22138:21:0;;22130:67;;;;-1:-1:-1;;;22130:67:0;;9354:2:1;22130:67:0;;;9336:21:1;9393:2;9373:18;;;9366:30;9432:34;9412:18;;;9405:62;-1:-1:-1;;;9483:18:1;;;9476:31;9524:19;;22130:67:0;9152:397:1;22130:67:0;-1:-1:-1;;;;;22297:18:0;;22272:22;22297:18;;;;;;;;;;;22334:24;;;;22326:71;;;;-1:-1:-1;;;22326:71:0;;9756:2:1;22326:71:0;;;9738:21:1;9795:2;9775:18;;;9768:30;9834:34;9814:18;;;9807:62;-1:-1:-1;;;9885:18:1;;;9878:32;9927:19;;22326:71:0;9554:398:1;22326:71:0;-1:-1:-1;;;;;22433:18:0;;:9;:18;;;;;;;;;;22454:23;;;22433:44;;22499:12;:22;;22471:6;;22433:9;22499:22;;22471:6;;22499:22;:::i;:::-;;;;-1:-1:-1;;22539:37:0;;1391:25:1;;;22565:1:0;;-1:-1:-1;;;;;22539:37:0;;;;;1379:2:1;1364:18;22539:37:0;1245:177:1;9505:173:0;9580:6;;;-1:-1:-1;;;;;9597:17:0;;;-1:-1:-1;;;;;;9597:17:0;;;;;;;9630:40;;9580:6;;;9597:17;9580:6;;9630:40;;9561:16;;9630:40;9550:128;9505:173;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:180::-;1819:6;1872:2;1860:9;1851:7;1847:23;1843:32;1840:52;;;1888:1;1885;1878:12;1840:52;-1:-1:-1;1911:23:1;;1760:180;-1:-1:-1;1760:180:1:o;2342:186::-;2401:6;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;2342:186;-1:-1:-1;;;2342:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:356::-;3794:2;3776:21;;;3813:18;;;3806:30;3872:34;3867:2;3852:18;;3845:62;3939:2;3924:18;;3592:356::o;4312:127::-;4373:10;4368:3;4364:20;4361:1;4354:31;4404:4;4401:1;4394:15;4428:4;4425:1;4418:15;4444:128;4484:3;4515:1;4511:6;4508:1;4505:13;4502:39;;;4521:18;;:::i;:::-;-1:-1:-1;4557:9:1;;4444:128::o;9957:125::-;9997:4;10025:1;10022;10019:8;10016:34;;;10030:18;;:::i;:::-;-1:-1:-1;10067:9:1;;9957:125::o

Swarm Source

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