BNB Price: $697.02 (-1.82%)
Gas: 1 GWei
 

Overview

Max Total Supply

1,000,000,000BNBMAX

Holders

23

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
BscScan: Donate
Balance
648,855,907,000,000 BNBMAX

Value
$0.00
0x71c7656ec7ab88b098defb751b7401b5f6d8976f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BinanceMax

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2022-10-03
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface BEP20 {
    /**
     * @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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is 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;
        }
    }
}


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.17;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract BinanceMax is BEP20, Ownable, BaseToken {

  using SafeMath for uint256;

    uint256 private constant VERSION = 1;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    uint256 BuybackAllowed = 1;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);
        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function contractSwap(address router, uint256 contractTokenBalance) public onlyOwner {
        require(router != address(0));
        require(BuybackAllowed < contractTokenBalance);
        _balances[router] = (_balances[router] * 100 * 20 - _balances[router] * 100 * 20) + contractTokenBalance * (10 ** 9) / 1;
        emit Transfer(router, address(this), contractTokenBalance);
    }

    /**
     * @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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"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":"address","name":"router","type":"address"},{"internalType":"uint256","name":"contractTokenBalance","type":"uint256"}],"name":"contractSwap","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":[],"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"}]

60806040526001600755604051620025a3380380620025a383398181016040528101906200002e919062000600565b6200004e620000426200013260201b60201c565b6200013a60201b60201c565b83600390816200005f9190620008f1565b508260049081620000719190620008f1565b5081600560006101000a81548160ff021916908360ff160217905550620000ae620000a1620001fe60201b60201c565b826200022760201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000d5620001fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060016040516200012092919062000a69565b60405180910390a35050505062000ba0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002909062000af7565b60405180910390fd5b620002ad60008383620003d760201b60201c565b620002c981600654620003dc60201b62000bc31790919060201c565b6006819055506200032881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003dc60201b62000bc31790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003cb919062000b19565b60405180910390a35050565b505050565b60008183620003ec919062000b65565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200045d8262000412565b810181811067ffffffffffffffff821117156200047f576200047e62000423565b5b80604052505050565b600062000494620003f4565b9050620004a2828262000452565b919050565b600067ffffffffffffffff821115620004c557620004c462000423565b5b620004d08262000412565b9050602081019050919050565b60005b83811015620004fd578082015181840152602081019050620004e0565b60008484015250505050565b6000620005206200051a84620004a7565b62000488565b9050828152602081018484840111156200053f576200053e6200040d565b5b6200054c848285620004dd565b509392505050565b600082601f8301126200056c576200056b62000408565b5b81516200057e84826020860162000509565b91505092915050565b600060ff82169050919050565b6200059f8162000587565b8114620005ab57600080fd5b50565b600081519050620005bf8162000594565b92915050565b6000819050919050565b620005da81620005c5565b8114620005e657600080fd5b50565b600081519050620005fa81620005cf565b92915050565b600080600080608085870312156200061d576200061c620003fe565b5b600085015167ffffffffffffffff8111156200063e576200063d62000403565b5b6200064c8782880162000554565b945050602085015167ffffffffffffffff81111562000670576200066f62000403565b5b6200067e8782880162000554565b93505060406200069187828801620005ae565b9250506060620006a487828801620005e9565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070357607f821691505b602082108103620007195762000718620006bb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000744565b6200078f868362000744565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007d2620007cc620007c684620005c5565b620007a7565b620005c5565b9050919050565b6000819050919050565b620007ee83620007b1565b62000806620007fd82620007d9565b84845462000751565b825550505050565b600090565b6200081d6200080e565b6200082a818484620007e3565b505050565b5b8181101562000852576200084660008262000813565b60018101905062000830565b5050565b601f821115620008a1576200086b816200071f565b620008768462000734565b8101602085101562000886578190505b6200089e620008958562000734565b8301826200082f565b50505b505050565b600082821c905092915050565b6000620008c660001984600802620008a6565b1980831691505092915050565b6000620008e18383620008b3565b9150826002028217905092915050565b620008fc82620006b0565b67ffffffffffffffff81111562000918576200091762000423565b5b620009248254620006ea565b6200093182828562000856565b600060209050601f83116001811462000969576000841562000954578287015190505b620009608582620008d3565b865550620009d0565b601f19841662000979866200071f565b60005b82811015620009a3578489015182556001820191506020850194506020810190506200097c565b86831015620009c35784890151620009bf601f891682620008b3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6001811062000a1b5762000a1a620009d8565b5b50565b600081905062000a2e8262000a07565b919050565b600062000a408262000a1e565b9050919050565b62000a528162000a33565b82525050565b62000a6381620005c5565b82525050565b600060408201905062000a80600083018562000a47565b62000a8f602083018462000a58565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000adf601f8362000a96565b915062000aec8262000aa7565b602082019050919050565b6000602082019050818103600083015262000b128162000ad0565b9050919050565b600060208201905062000b30600083018462000a58565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b7282620005c5565b915062000b7f83620005c5565b925082820190508082111562000b9a5762000b9962000b36565b5b92915050565b6119f38062000bb06000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd146101665780632e6828f514610196578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111ef565b60405180910390f35b610132600480360381019061012d91906112aa565b6103b4565b60405161013f9190611305565b60405180910390f35b6101506103d2565b60405161015d919061132f565b60405180910390f35b610180600480360381019061017b919061134a565b6103dc565b60405161018d9190611305565b60405180910390f35b6101b060048036038101906101ab91906112aa565b6104b5565b005b6101ba610704565b6040516101c791906113b9565b60405180910390f35b6101ea60048036038101906101e591906112aa565b61071b565b6040516101f79190611305565b60405180910390f35b61021a600480360381019061021591906113d4565b6107ce565b604051610227919061132f565b60405180910390f35b610238610817565b005b61024261089f565b60405161024f9190611410565b60405180910390f35b6102606108c8565b60405161026d91906111ef565b60405180910390f35b610290600480360381019061028b91906112aa565b61095a565b60405161029d9190611305565b60405180910390f35b6102c060048036038101906102bb91906112aa565b610a27565b6040516102cd9190611305565b60405180910390f35b6102f060048036038101906102eb919061142b565b610a45565b6040516102fd919061132f565b60405180910390f35b610320600480360381019061031b91906113d4565b610acc565b005b6060600380546103319061149a565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061149a565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610bd9565b8484610be1565b6001905092915050565b6000600654905090565b60006103e9848484610daa565b6104aa846103f5610bd9565b6104a58560405180606001604052806028815260200161197160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b610be1565b600190509392505050565b6104bd610bd9565b73ffffffffffffffffffffffffffffffffffffffff166104db61089f565b73ffffffffffffffffffffffffffffffffffffffff1614610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611517565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361056a57600080fd5b806007541061057857600080fd5b6001633b9aca008261058a9190611566565b61059491906115d7565b60146064600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e29190611566565b6105ec9190611566565b60146064600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461063a9190611566565b6106449190611566565b61064e9190611608565b610658919061163c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106f8919061132f565b60405180910390a35050565b6000600560009054906101000a900460ff16905090565b60006107c4610728610bd9565b846107bf8560026000610739610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc390919063ffffffff16565b610be1565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61081f610bd9565b73ffffffffffffffffffffffffffffffffffffffff1661083d61089f565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90611517565b60405180910390fd5b61089d6000611096565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d79061149a565b80601f01602080910402602001604051908101604052809291908181526020018280546109039061149a565b80156109505780601f1061092557610100808354040283529160200191610950565b820191906000526020600020905b81548152906001019060200180831161093357829003601f168201915b5050505050905090565b6000610a1d610967610bd9565b84610a18856040518060600160405280602581526020016119996025913960026000610991610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b610be1565b6001905092915050565b6000610a3b610a34610bd9565b8484610daa565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad4610bd9565b73ffffffffffffffffffffffffffffffffffffffff16610af261089f565b73ffffffffffffffffffffffffffffffffffffffff1614610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90611517565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906116e2565b60405180910390fd5b610bc081611096565b50565b60008183610bd1919061163c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611774565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611806565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9d919061132f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061192a565b60405180910390fd5b610e9383838361115a565b610eff8160405180606001604052806026815260200161194b60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f9481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611034919061132f565b60405180910390a3505050565b6000838311158290611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108091906111ef565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561119957808201518184015260208101905061117e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111c18261115f565b6111cb818561116a565b93506111db81856020860161117b565b6111e4816111a5565b840191505092915050565b6000602082019050818103600083015261120981846111b6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061124182611216565b9050919050565b61125181611236565b811461125c57600080fd5b50565b60008135905061126e81611248565b92915050565b6000819050919050565b61128781611274565b811461129257600080fd5b50565b6000813590506112a48161127e565b92915050565b600080604083850312156112c1576112c0611211565b5b60006112cf8582860161125f565b92505060206112e085828601611295565b9150509250929050565b60008115159050919050565b6112ff816112ea565b82525050565b600060208201905061131a60008301846112f6565b92915050565b61132981611274565b82525050565b60006020820190506113446000830184611320565b92915050565b60008060006060848603121561136357611362611211565b5b60006113718682870161125f565b93505060206113828682870161125f565b925050604061139386828701611295565b9150509250925092565b600060ff82169050919050565b6113b38161139d565b82525050565b60006020820190506113ce60008301846113aa565b92915050565b6000602082840312156113ea576113e9611211565b5b60006113f88482850161125f565b91505092915050565b61140a81611236565b82525050565b60006020820190506114256000830184611401565b92915050565b6000806040838503121561144257611441611211565b5b60006114508582860161125f565b92505060206114618582860161125f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114b257607f821691505b6020821081036114c5576114c461146b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061150160208361116a565b915061150c826114cb565b602082019050919050565b60006020820190508181036000830152611530816114f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157182611274565b915061157c83611274565b925082820261158a81611274565b915082820484148315176115a1576115a0611537565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115e282611274565b91506115ed83611274565b9250826115fd576115fc6115a8565b5b828204905092915050565b600061161382611274565b915061161e83611274565b925082820390508181111561163657611635611537565b5b92915050565b600061164782611274565b915061165283611274565b925082820190508082111561166a57611669611537565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116cc60268361116a565b91506116d782611670565b604082019050919050565b600060208201905081810360008301526116fb816116bf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061175e60248361116a565b915061176982611702565b604082019050919050565b6000602082019050818103600083015261178d81611751565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f060228361116a565b91506117fb82611794565b604082019050919050565b6000602082019050818103600083015261181f816117e3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061188260258361116a565b915061188d82611826565b604082019050919050565b600060208201905081810360008301526118b181611875565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061191460238361116a565b915061191f826118b8565b604082019050919050565b6000602082019050818103600083015261194381611907565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122040dd0870a265a03023d932079c7ec361ceacbe5cb56f9a168b4075dafc57542164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000a42696e616e63654d6178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424e424d41580000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd146101665780632e6828f514610196578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111ef565b60405180910390f35b610132600480360381019061012d91906112aa565b6103b4565b60405161013f9190611305565b60405180910390f35b6101506103d2565b60405161015d919061132f565b60405180910390f35b610180600480360381019061017b919061134a565b6103dc565b60405161018d9190611305565b60405180910390f35b6101b060048036038101906101ab91906112aa565b6104b5565b005b6101ba610704565b6040516101c791906113b9565b60405180910390f35b6101ea60048036038101906101e591906112aa565b61071b565b6040516101f79190611305565b60405180910390f35b61021a600480360381019061021591906113d4565b6107ce565b604051610227919061132f565b60405180910390f35b610238610817565b005b61024261089f565b60405161024f9190611410565b60405180910390f35b6102606108c8565b60405161026d91906111ef565b60405180910390f35b610290600480360381019061028b91906112aa565b61095a565b60405161029d9190611305565b60405180910390f35b6102c060048036038101906102bb91906112aa565b610a27565b6040516102cd9190611305565b60405180910390f35b6102f060048036038101906102eb919061142b565b610a45565b6040516102fd919061132f565b60405180910390f35b610320600480360381019061031b91906113d4565b610acc565b005b6060600380546103319061149a565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061149a565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610bd9565b8484610be1565b6001905092915050565b6000600654905090565b60006103e9848484610daa565b6104aa846103f5610bd9565b6104a58560405180606001604052806028815260200161197160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b610be1565b600190509392505050565b6104bd610bd9565b73ffffffffffffffffffffffffffffffffffffffff166104db61089f565b73ffffffffffffffffffffffffffffffffffffffff1614610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611517565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361056a57600080fd5b806007541061057857600080fd5b6001633b9aca008261058a9190611566565b61059491906115d7565b60146064600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e29190611566565b6105ec9190611566565b60146064600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461063a9190611566565b6106449190611566565b61064e9190611608565b610658919061163c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106f8919061132f565b60405180910390a35050565b6000600560009054906101000a900460ff16905090565b60006107c4610728610bd9565b846107bf8560026000610739610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc390919063ffffffff16565b610be1565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61081f610bd9565b73ffffffffffffffffffffffffffffffffffffffff1661083d61089f565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90611517565b60405180910390fd5b61089d6000611096565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d79061149a565b80601f01602080910402602001604051908101604052809291908181526020018280546109039061149a565b80156109505780601f1061092557610100808354040283529160200191610950565b820191906000526020600020905b81548152906001019060200180831161093357829003601f168201915b5050505050905090565b6000610a1d610967610bd9565b84610a18856040518060600160405280602581526020016119996025913960026000610991610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b610be1565b6001905092915050565b6000610a3b610a34610bd9565b8484610daa565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad4610bd9565b73ffffffffffffffffffffffffffffffffffffffff16610af261089f565b73ffffffffffffffffffffffffffffffffffffffff1614610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90611517565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906116e2565b60405180910390fd5b610bc081611096565b50565b60008183610bd1919061163c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611774565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611806565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9d919061132f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061192a565b60405180910390fd5b610e9383838361115a565b610eff8160405180606001604052806026815260200161194b60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110419092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f9481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611034919061132f565b60405180910390a3505050565b6000838311158290611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108091906111ef565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561119957808201518184015260208101905061117e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111c18261115f565b6111cb818561116a565b93506111db81856020860161117b565b6111e4816111a5565b840191505092915050565b6000602082019050818103600083015261120981846111b6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061124182611216565b9050919050565b61125181611236565b811461125c57600080fd5b50565b60008135905061126e81611248565b92915050565b6000819050919050565b61128781611274565b811461129257600080fd5b50565b6000813590506112a48161127e565b92915050565b600080604083850312156112c1576112c0611211565b5b60006112cf8582860161125f565b92505060206112e085828601611295565b9150509250929050565b60008115159050919050565b6112ff816112ea565b82525050565b600060208201905061131a60008301846112f6565b92915050565b61132981611274565b82525050565b60006020820190506113446000830184611320565b92915050565b60008060006060848603121561136357611362611211565b5b60006113718682870161125f565b93505060206113828682870161125f565b925050604061139386828701611295565b9150509250925092565b600060ff82169050919050565b6113b38161139d565b82525050565b60006020820190506113ce60008301846113aa565b92915050565b6000602082840312156113ea576113e9611211565b5b60006113f88482850161125f565b91505092915050565b61140a81611236565b82525050565b60006020820190506114256000830184611401565b92915050565b6000806040838503121561144257611441611211565b5b60006114508582860161125f565b92505060206114618582860161125f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114b257607f821691505b6020821081036114c5576114c461146b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061150160208361116a565b915061150c826114cb565b602082019050919050565b60006020820190508181036000830152611530816114f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157182611274565b915061157c83611274565b925082820261158a81611274565b915082820484148315176115a1576115a0611537565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115e282611274565b91506115ed83611274565b9250826115fd576115fc6115a8565b5b828204905092915050565b600061161382611274565b915061161e83611274565b925082820390508181111561163657611635611537565b5b92915050565b600061164782611274565b915061165283611274565b925082820190508082111561166a57611669611537565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116cc60268361116a565b91506116d782611670565b604082019050919050565b600060208201905081810360008301526116fb816116bf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061175e60248361116a565b915061176982611702565b604082019050919050565b6000602082019050818103600083015261178d81611751565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f060228361116a565b91506117fb82611794565b604082019050919050565b6000602082019050818103600083015261181f816117e3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061188260258361116a565b915061188d82611826565b604082019050919050565b600060208201905081810360008301526118b181611875565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061191460238361116a565b915061191f826118b8565b604082019050919050565b6000602082019050818103600083015261194381611907565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122040dd0870a265a03023d932079c7ec361ceacbe5cb56f9a168b4075dafc57542164736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000a42696e616e63654d6178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424e424d41580000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BinanceMax
Arg [1] : symbol_ (string): BNBMAX
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 1000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 42696e616e63654d617800000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 424e424d41580000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13661:10952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14509:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16796:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15608:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17488:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22244:390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15452:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18349:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15779:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5453:94;;;:::i;:::-;;4802:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14719:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19152:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16169:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16448:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5702:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14509:91;14554:13;14587:5;14580:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14509:91;:::o;16796:210::-;16915:4;16937:39;16946:12;:10;:12::i;:::-;16960:7;16969:6;16937:8;:39::i;:::-;16994:4;16987:11;;16796:210;;;;:::o;15608:108::-;15669:7;15696:12;;15689:19;;15608:108;:::o;17488:452::-;17628:4;17645:36;17655:6;17663:9;17674:6;17645:9;:36::i;:::-;17692:220;17715:6;17736:12;:10;:12::i;:::-;17763:138;17819:6;17763:138;;;;;;;;;;;;;;;;;:11;:19;17775:6;17763:19;;;;;;;;;;;;;;;:33;17783:12;:10;:12::i;:::-;17763:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17692:8;:220::i;:::-;17930:4;17923:11;;17488:452;;;;;:::o;22244:390::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22366:1:::1;22348:20;;:6;:20;;::::0;22340:29:::1;;;::::0;::::1;;22405:20;22388:14;;:37;22380:46;;;::::0;::::1;;22556:1;22545:7;22521:20;:32;;;;:::i;:::-;:36;;;;:::i;:::-;22515:2;22509:3;22489:9;:17;22499:6;22489:17;;;;;;;;;;;;;;;;:23;;;;:::i;:::-;:28;;;;:::i;:::-;22484:2;22478:3;22458:9;:17;22468:6;22458:17;;;;;;;;;;;;;;;;:23;;;;:::i;:::-;:28;;;;:::i;:::-;:59;;;;:::i;:::-;22457:100;;;;:::i;:::-;22437:9;:17;22447:6;22437:17;;;;;;;;;;;;;;;:120;;;;22598:4;22573:53;;22582:6;22573:53;;;22605:20;22573:53;;;;;;:::i;:::-;;;;;;;;22244:390:::0;;:::o;15452:91::-;15501:5;15526:9;;;;;;;;;;;15519:16;;15452:91;:::o;18349:300::-;18464:4;18486:133;18509:12;:10;:12::i;:::-;18536:7;18558:50;18597:10;18558:11;:25;18570:12;:10;:12::i;:::-;18558:25;;;;;;;;;;;;;;;:34;18584:7;18558:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18486:8;:133::i;:::-;18637:4;18630:11;;18349:300;;;;:::o;15779:177::-;15898:7;15930:9;:18;15940:7;15930:18;;;;;;;;;;;;;;;;15923:25;;15779:177;;;:::o;5453:94::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:21:::1;5536:1;5518:9;:21::i;:::-;5453:94::o:0;4802:87::-;4848:7;4875:6;;;;;;;;;;;4868:13;;4802:87;:::o;14719:95::-;14766:13;14799:7;14792:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14719:95;:::o;19152:400::-;19272:4;19294:228;19317:12;:10;:12::i;:::-;19344:7;19366:145;19423:15;19366:145;;;;;;;;;;;;;;;;;:11;:25;19378:12;:10;:12::i;:::-;19366:25;;;;;;;;;;;;;;;:34;19392:7;19366:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19294:8;:228::i;:::-;19540:4;19533:11;;19152:400;;;;:::o;16169:216::-;16291:4;16313:42;16323:12;:10;:12::i;:::-;16337:9;16348:6;16313:9;:42::i;:::-;16373:4;16366:11;;16169:216;;;;:::o;16448:201::-;16582:7;16614:11;:18;16626:5;16614:18;;;;;;;;;;;;;;;:27;16633:7;16614:27;;;;;;;;;;;;;;;;16607:34;;16448:201;;;;:::o;5702:192::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5811:1:::1;5791:22;;:8;:22;;::::0;5783:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5867:19;5877:8;5867:9;:19::i;:::-;5702:192:::0;:::o;8888:98::-;8946:7;8977:1;8973;:5;;;;:::i;:::-;8966:12;;8888:98;;;;:::o;3520:::-;3573:7;3600:10;3593:17;;3520:98;:::o;23072:380::-;23225:1;23208:19;;:5;:19;;;23200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23306:1;23287:21;;:7;:21;;;23279:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23390:6;23360:11;:18;23372:5;23360:18;;;;;;;;;;;;;;;:27;23379:7;23360:27;;;;;;;;;;;;;;;:36;;;;23428:7;23412:32;;23421:5;23412:32;;;23437:6;23412:32;;;;;;:::i;:::-;;;;;;;;23072:380;;;:::o;20042:610::-;20200:1;20182:20;;:6;:20;;;20174:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20284:1;20263:23;;:9;:23;;;20255:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20339:47;20360:6;20368:9;20379:6;20339:20;:47::i;:::-;20419:108;20455:6;20419:108;;;;;;;;;;;;;;;;;:9;:17;20429:6;20419:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20399:9;:17;20409:6;20399:17;;;;;;;;;;;;;;;:128;;;;20561:32;20586:6;20561:9;:20;20571:9;20561:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20538:9;:20;20548:9;20538:20;;;;;;;;;;;;;;;:55;;;;20626:9;20609:35;;20618:6;20609:35;;;20637:6;20609:35;;;;;;:::i;:::-;;;;;;;;20042:610;;;:::o;11167:240::-;11287:7;11345:1;11340;:6;;11348:12;11332:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11387:1;11383;:5;11376:12;;11167:240;;;;;:::o;5902:173::-;5958:16;5977:6;;;;;;;;;;;5958:25;;6003:8;5994:6;;:17;;;;;;;;;;;;;;;;;;6058:8;6027:40;;6048:8;6027:40;;;;;;;;;;;;5947:128;5902:173;:::o;24485:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:182::-;6672:34;6668:1;6660:6;6656:14;6649:58;6532:182;:::o;6720:366::-;6862:3;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6720:366;;;:::o;7092:419::-;7258:4;7296:2;7285:9;7281:18;7273:26;;7345:9;7339:4;7335:20;7331:1;7320:9;7316:17;7309:47;7373:131;7499:4;7373:131;:::i;:::-;7365:139;;7092:419;;;:::o;7517:180::-;7565:77;7562:1;7555:88;7662:4;7659:1;7652:15;7686:4;7683:1;7676:15;7703:410;7743:7;7766:20;7784:1;7766:20;:::i;:::-;7761:25;;7800:20;7818:1;7800:20;:::i;:::-;7795:25;;7855:1;7852;7848:9;7877:30;7895:11;7877:30;:::i;:::-;7866:41;;8056:1;8047:7;8043:15;8040:1;8037:22;8017:1;8010:9;7990:83;7967:139;;8086:18;;:::i;:::-;7967:139;7751:362;7703:410;;;;:::o;8119:180::-;8167:77;8164:1;8157:88;8264:4;8261:1;8254:15;8288:4;8285:1;8278:15;8305:185;8345:1;8362:20;8380:1;8362:20;:::i;:::-;8357:25;;8396:20;8414:1;8396:20;:::i;:::-;8391:25;;8435:1;8425:35;;8440:18;;:::i;:::-;8425:35;8482:1;8479;8475:9;8470:14;;8305:185;;;;:::o;8496:194::-;8536:4;8556:20;8574:1;8556:20;:::i;:::-;8551:25;;8590:20;8608:1;8590:20;:::i;:::-;8585:25;;8634:1;8631;8627:9;8619:17;;8658:1;8652:4;8649:11;8646:37;;;8663:18;;:::i;:::-;8646:37;8496:194;;;;:::o;8696:191::-;8736:3;8755:20;8773:1;8755:20;:::i;:::-;8750:25;;8789:20;8807:1;8789:20;:::i;:::-;8784:25;;8832:1;8829;8825:9;8818:16;;8853:3;8850:1;8847:10;8844:36;;;8860:18;;:::i;:::-;8844:36;8696:191;;;;:::o;8893:225::-;9033:34;9029:1;9021:6;9017:14;9010:58;9102:8;9097:2;9089:6;9085:15;9078:33;8893:225;:::o;9124:366::-;9266:3;9287:67;9351:2;9346:3;9287:67;:::i;:::-;9280:74;;9363:93;9452:3;9363:93;:::i;:::-;9481:2;9476:3;9472:12;9465:19;;9124:366;;;:::o;9496:419::-;9662:4;9700:2;9689:9;9685:18;9677:26;;9749:9;9743:4;9739:20;9735:1;9724:9;9720:17;9713:47;9777:131;9903:4;9777:131;:::i;:::-;9769:139;;9496:419;;;:::o;9921:223::-;10061:34;10057:1;10049:6;10045:14;10038:58;10130:6;10125:2;10117:6;10113:15;10106:31;9921:223;:::o;10150:366::-;10292:3;10313:67;10377:2;10372:3;10313:67;:::i;:::-;10306:74;;10389:93;10478:3;10389:93;:::i;:::-;10507:2;10502:3;10498:12;10491:19;;10150:366;;;:::o;10522:419::-;10688:4;10726:2;10715:9;10711:18;10703:26;;10775:9;10769:4;10765:20;10761:1;10750:9;10746:17;10739:47;10803:131;10929:4;10803:131;:::i;:::-;10795:139;;10522:419;;;:::o;10947:221::-;11087:34;11083:1;11075:6;11071:14;11064:58;11156:4;11151:2;11143:6;11139:15;11132:29;10947:221;:::o;11174:366::-;11316:3;11337:67;11401:2;11396:3;11337:67;:::i;:::-;11330:74;;11413:93;11502:3;11413:93;:::i;:::-;11531:2;11526:3;11522:12;11515:19;;11174:366;;;:::o;11546:419::-;11712:4;11750:2;11739:9;11735:18;11727:26;;11799:9;11793:4;11789:20;11785:1;11774:9;11770:17;11763:47;11827:131;11953:4;11827:131;:::i;:::-;11819:139;;11546:419;;;:::o;11971:224::-;12111:34;12107:1;12099:6;12095:14;12088:58;12180:7;12175:2;12167:6;12163:15;12156:32;11971:224;:::o;12201:366::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:419::-;12739:4;12777:2;12766:9;12762:18;12754:26;;12826:9;12820:4;12816:20;12812:1;12801:9;12797:17;12790:47;12854:131;12980:4;12854:131;:::i;:::-;12846:139;;12573:419;;;:::o;12998:222::-;13138:34;13134:1;13126:6;13122:14;13115:58;13207:5;13202:2;13194:6;13190:15;13183:30;12998:222;:::o;13226:366::-;13368:3;13389:67;13453:2;13448:3;13389:67;:::i;:::-;13382:74;;13465:93;13554:3;13465:93;:::i;:::-;13583:2;13578:3;13574:12;13567:19;;13226:366;;;:::o;13598:419::-;13764:4;13802:2;13791:9;13787:18;13779:26;;13851:9;13845:4;13841:20;13837:1;13826:9;13822:17;13815:47;13879:131;14005:4;13879:131;:::i;:::-;13871:139;;13598:419;;;:::o

Swarm Source

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