ETH Price: $3,345.87 (-0.53%)

Token

MONBLUE (MON)
 

Overview

Max Total Supply

420,888,888,888,888 MON

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,125,462,598,370.903973093205717044 MON

Value
$0.00
0x6b1e3181b455645a812aeceabd5b7d0710497a49
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:
MonBlue

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-06-06
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


// File: MonBlue.sol 
pragma solidity ^0.8.0;


contract MonBlue is ERC20{
    
    address public  owner; 

    /**
     * @dev Constructor.
     * @param name for this token, name.
     * @param symbol for this token, symbol.
    */

    constructor(string memory name, string memory symbol, uint totalSupply) ERC20(name, symbol){
        owner = msg.sender;
         //supply 420,888,888,888,888
        _mint(owner, totalSupply*10**decimals());
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "You are not the owner, bye!");
        _;
    }

    function burn(uint256 value) public  {
        _burn(msg.sender, value);
    }

    // renounced contract
    function renouncedOwner(address newOwner) public onlyOwner {
        //newOwner is = 0x0000000000000000000000000000000000000000;
        owner = newOwner;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"value","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":[],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"renouncedOwner","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002070380380620020708339818101604052810190620000379190620003da565b8282816003908051906020019062000051929190620002a1565b5080600490805190602001906200006a929190620002a1565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200010c600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620000e56200011560201b60201c565b600a620000f3919062000624565b8362000100919062000761565b6200011e60201b60201c565b505050620008f9565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018890620004b5565b60405180910390fd5b620001a5600083836200029760201b60201c565b8060026000828254620001b991906200056c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021091906200056c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002779190620004d7565b60405180910390a362000293600083836200029c60201b60201c565b5050565b505050565b505050565b828054620002af906200080f565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b600062000368620003628462000528565b620004f4565b9050828152602081018484840111156200038157600080fd5b6200038e848285620007d9565b509392505050565b600082601f830112620003a857600080fd5b8151620003ba84826020860162000351565b91505092915050565b600081519050620003d481620008df565b92915050565b600080600060608486031215620003f057600080fd5b600084015167ffffffffffffffff8111156200040b57600080fd5b620004198682870162000396565b935050602084015167ffffffffffffffff8111156200043757600080fd5b620004458682870162000396565b92505060406200045886828701620003c3565b9150509250925092565b600062000471601f836200055b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004af81620007c2565b82525050565b60006020820190508181036000830152620004d08162000462565b9050919050565b6000602082019050620004ee6000830184620004a4565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200051e576200051d620008a3565b5b8060405250919050565b600067ffffffffffffffff821115620005465762000545620008a3565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200057982620007c2565b91506200058683620007c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005be57620005bd62000845565b5b828201905092915050565b6000808291508390505b60018511156200061b57808604811115620005f357620005f262000845565b5b6001851615620006035780820291505b80810290506200061385620008d2565b9450620005d3565b94509492505050565b60006200063182620007c2565b91506200063e83620007cc565b92506200066d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000675565b905092915050565b6000826200068757600190506200075a565b816200069757600090506200075a565b8160018114620006b05760028114620006bb57620006f1565b60019150506200075a565b60ff841115620006d057620006cf62000845565b5b8360020a915084821115620006ea57620006e962000845565b5b506200075a565b5060208310610133831016604e8410600b84101617156200072b5782820a90508381111562000725576200072462000845565b5b6200075a565b6200073a8484846001620005c9565b9250905081840481111562000754576200075362000845565b5b81810290505b9392505050565b60006200076e82620007c2565b91506200077b83620007c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007b757620007b662000845565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b83811015620007f9578082015181840152602081019050620007dc565b8381111562000809576000848401525b50505050565b600060028204905060018216806200082857607f821691505b602082108114156200083f576200083e62000874565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620008ea81620007c2565b8114620008f657600080fd5b50565b61176780620009096000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636f2bf32c1161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b80636f2bf32c146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b604051610104919061139c565b60405180910390f35b61012760048036038101906101229190610edc565b61039f565b6040516101349190611381565b60405180910390f35b6101456103c2565b60405161015291906114fe565b60405180910390f35b61017560048036038101906101709190610e8d565b6103cc565b6040516101829190611381565b60405180910390f35b6101936103fb565b6040516101a09190611519565b60405180910390f35b6101c360048036038101906101be9190610edc565b610404565b6040516101d09190611381565b60405180910390f35b6101f360048036038101906101ee9190610f18565b61043b565b005b61020f600480360381019061020a9190610e28565b610448565b005b61022b60048036038101906102269190610e28565b61051c565b60405161023891906114fe565b60405180910390f35b610249610564565b6040516102569190611366565b60405180910390f35b61026761058a565b604051610274919061139c565b60405180910390f35b61029760048036038101906102929190610edc565b61061c565b6040516102a49190611381565b60405180910390f35b6102c760048036038101906102c29190610edc565b610693565b6040516102d49190611381565b60405180910390f35b6102f760048036038101906102f29190610e51565b6106b6565b60405161030491906114fe565b60405180910390f35b60606003805461031c90611662565b80601f016020809104026020016040519081016040528092919081815260200182805461034890611662565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61073d565b90506103b7818585610745565b600191505092915050565b6000600254905090565b6000806103d761073d565b90506103e4858285610910565b6103ef85858561099c565b60019150509392505050565b60006012905090565b60008061040f61073d565b905061043081858561042185896106b6565b61042b9190611550565b610745565b600191505092915050565b6104453382610c1d565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf906113be565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461059990611662565b80601f01602080910402602001604051908101604052809291908181526020018280546105c590611662565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b60008061062761073d565b9050600061063582866106b6565b90508381101561067a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610671906114de565b60405180910390fd5b6106878286868403610745565b60019250505092915050565b60008061069e61073d565b90506106ab81858561099c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906114be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061141e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161090391906114fe565b60405180910390a3505050565b600061091c84846106b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f9061143e565b60405180910390fd5b6109958484848403610745565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a039061149e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906113de565b60405180910390fd5b610a87838383610df4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061145e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba09190611550565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0491906114fe565b60405180910390a3610c17848484610df9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061147e565b60405180910390fd5b610c9982600083610df4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906113fe565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d7691906115a6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb91906114fe565b60405180910390a3610def83600084610df9565b505050565b505050565b505050565b600081359050610e0d81611703565b92915050565b600081359050610e228161171a565b92915050565b600060208284031215610e3a57600080fd5b6000610e4884828501610dfe565b91505092915050565b60008060408385031215610e6457600080fd5b6000610e7285828601610dfe565b9250506020610e8385828601610dfe565b9150509250929050565b600080600060608486031215610ea257600080fd5b6000610eb086828701610dfe565b9350506020610ec186828701610dfe565b9250506040610ed286828701610e13565b9150509250925092565b60008060408385031215610eef57600080fd5b6000610efd85828601610dfe565b9250506020610f0e85828601610e13565b9150509250929050565b600060208284031215610f2a57600080fd5b6000610f3884828501610e13565b91505092915050565b610f4a816115da565b82525050565b610f59816115ec565b82525050565b6000610f6a82611534565b610f74818561153f565b9350610f8481856020860161162f565b610f8d816116f2565b840191505092915050565b6000610fa5601b8361153f565b91507f596f7520617265206e6f7420746865206f776e65722c206279652100000000006000830152602082019050919050565b6000610fe560238361153f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061104b60228361153f565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110b160228361153f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611117601d8361153f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061115760268361153f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111bd60218361153f565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122360258361153f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128960248361153f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ef60258361153f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61135181611618565b82525050565b61136081611622565b82525050565b600060208201905061137b6000830184610f41565b92915050565b60006020820190506113966000830184610f50565b92915050565b600060208201905081810360008301526113b68184610f5f565b905092915050565b600060208201905081810360008301526113d781610f98565b9050919050565b600060208201905081810360008301526113f781610fd8565b9050919050565b600060208201905081810360008301526114178161103e565b9050919050565b60006020820190508181036000830152611437816110a4565b9050919050565b600060208201905081810360008301526114578161110a565b9050919050565b600060208201905081810360008301526114778161114a565b9050919050565b60006020820190508181036000830152611497816111b0565b9050919050565b600060208201905081810360008301526114b781611216565b9050919050565b600060208201905081810360008301526114d78161127c565b9050919050565b600060208201905081810360008301526114f7816112e2565b9050919050565b60006020820190506115136000830184611348565b92915050565b600060208201905061152e6000830184611357565b92915050565b600081519050919050565b600082825260208201905092915050565b600061155b82611618565b915061156683611618565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561159b5761159a611694565b5b828201905092915050565b60006115b182611618565b91506115bc83611618565b9250828210156115cf576115ce611694565b5b828203905092915050565b60006115e5826115f8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561164d578082015181840152602081019050611632565b8381111561165c576000848401525b50505050565b6000600282049050600182168061167a57607f821691505b6020821081141561168e5761168d6116c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61170c816115da565b811461171757600080fd5b50565b61172381611618565b811461172e57600080fd5b5056fea26469706673582212203049e4ffa99bedbbced01ca1e6211e86a574b772782b884fb554954d42fa436464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017ecbd4b64e3800000000000000000000000000000000000000000000000000000000000000074d4f4e424c55450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636f2bf32c1161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b80636f2bf32c146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b604051610104919061139c565b60405180910390f35b61012760048036038101906101229190610edc565b61039f565b6040516101349190611381565b60405180910390f35b6101456103c2565b60405161015291906114fe565b60405180910390f35b61017560048036038101906101709190610e8d565b6103cc565b6040516101829190611381565b60405180910390f35b6101936103fb565b6040516101a09190611519565b60405180910390f35b6101c360048036038101906101be9190610edc565b610404565b6040516101d09190611381565b60405180910390f35b6101f360048036038101906101ee9190610f18565b61043b565b005b61020f600480360381019061020a9190610e28565b610448565b005b61022b60048036038101906102269190610e28565b61051c565b60405161023891906114fe565b60405180910390f35b610249610564565b6040516102569190611366565b60405180910390f35b61026761058a565b604051610274919061139c565b60405180910390f35b61029760048036038101906102929190610edc565b61061c565b6040516102a49190611381565b60405180910390f35b6102c760048036038101906102c29190610edc565b610693565b6040516102d49190611381565b60405180910390f35b6102f760048036038101906102f29190610e51565b6106b6565b60405161030491906114fe565b60405180910390f35b60606003805461031c90611662565b80601f016020809104026020016040519081016040528092919081815260200182805461034890611662565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61073d565b90506103b7818585610745565b600191505092915050565b6000600254905090565b6000806103d761073d565b90506103e4858285610910565b6103ef85858561099c565b60019150509392505050565b60006012905090565b60008061040f61073d565b905061043081858561042185896106b6565b61042b9190611550565b610745565b600191505092915050565b6104453382610c1d565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf906113be565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461059990611662565b80601f01602080910402602001604051908101604052809291908181526020018280546105c590611662565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b60008061062761073d565b9050600061063582866106b6565b90508381101561067a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610671906114de565b60405180910390fd5b6106878286868403610745565b60019250505092915050565b60008061069e61073d565b90506106ab81858561099c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906114be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061141e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161090391906114fe565b60405180910390a3505050565b600061091c84846106b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f9061143e565b60405180910390fd5b6109958484848403610745565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a039061149e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906113de565b60405180910390fd5b610a87838383610df4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061145e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba09190611550565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0491906114fe565b60405180910390a3610c17848484610df9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061147e565b60405180910390fd5b610c9982600083610df4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906113fe565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d7691906115a6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb91906114fe565b60405180910390a3610def83600084610df9565b505050565b505050565b505050565b600081359050610e0d81611703565b92915050565b600081359050610e228161171a565b92915050565b600060208284031215610e3a57600080fd5b6000610e4884828501610dfe565b91505092915050565b60008060408385031215610e6457600080fd5b6000610e7285828601610dfe565b9250506020610e8385828601610dfe565b9150509250929050565b600080600060608486031215610ea257600080fd5b6000610eb086828701610dfe565b9350506020610ec186828701610dfe565b9250506040610ed286828701610e13565b9150509250925092565b60008060408385031215610eef57600080fd5b6000610efd85828601610dfe565b9250506020610f0e85828601610e13565b9150509250929050565b600060208284031215610f2a57600080fd5b6000610f3884828501610e13565b91505092915050565b610f4a816115da565b82525050565b610f59816115ec565b82525050565b6000610f6a82611534565b610f74818561153f565b9350610f8481856020860161162f565b610f8d816116f2565b840191505092915050565b6000610fa5601b8361153f565b91507f596f7520617265206e6f7420746865206f776e65722c206279652100000000006000830152602082019050919050565b6000610fe560238361153f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061104b60228361153f565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110b160228361153f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611117601d8361153f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061115760268361153f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111bd60218361153f565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122360258361153f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128960248361153f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ef60258361153f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61135181611618565b82525050565b61136081611622565b82525050565b600060208201905061137b6000830184610f41565b92915050565b60006020820190506113966000830184610f50565b92915050565b600060208201905081810360008301526113b68184610f5f565b905092915050565b600060208201905081810360008301526113d781610f98565b9050919050565b600060208201905081810360008301526113f781610fd8565b9050919050565b600060208201905081810360008301526114178161103e565b9050919050565b60006020820190508181036000830152611437816110a4565b9050919050565b600060208201905081810360008301526114578161110a565b9050919050565b600060208201905081810360008301526114778161114a565b9050919050565b60006020820190508181036000830152611497816111b0565b9050919050565b600060208201905081810360008301526114b781611216565b9050919050565b600060208201905081810360008301526114d78161127c565b9050919050565b600060208201905081810360008301526114f7816112e2565b9050919050565b60006020820190506115136000830184611348565b92915050565b600060208201905061152e6000830184611357565b92915050565b600081519050919050565b600082825260208201905092915050565b600061155b82611618565b915061156683611618565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561159b5761159a611694565b5b828201905092915050565b60006115b182611618565b91506115bc83611618565b9250828210156115cf576115ce611694565b5b828203905092915050565b60006115e5826115f8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561164d578082015181840152602081019050611632565b8381111561165c576000848401525b50505050565b6000600282049050600182168061167a57607f821691505b6020821081141561168e5761168d6116c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61170c816115da565b811461171757600080fd5b50565b61172381611618565b811461172e57600080fd5b5056fea26469706673582212203049e4ffa99bedbbced01ca1e6211e86a574b772782b884fb554954d42fa436464736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017ecbd4b64e3800000000000000000000000000000000000000000000000000000000000000074d4f4e424c55450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): MONBLUE
Arg [1] : symbol (string): MON
Arg [2] : totalSupply (uint256): 420888888888888

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000017ecbd4b64e38
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4d4f4e424c554500000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4f4e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17520:830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9031:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7800:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9812:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10516:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18067:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18182:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17558:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8560:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6680:100;6734:13;6767:5;6760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;:::o;9031:201::-;9114:4;9131:13;9147:12;:10;:12::i;:::-;9131:28;;9170:32;9179:5;9186:7;9195:6;9170:8;:32::i;:::-;9220:4;9213:11;;;9031:201;;;;:::o;7800:108::-;7861:7;7888:12;;7881:19;;7800:108;:::o;9812:295::-;9943:4;9960:15;9978:12;:10;:12::i;:::-;9960:30;;10001:38;10017:4;10023:7;10032:6;10001:15;:38::i;:::-;10050:27;10060:4;10066:2;10070:6;10050:9;:27::i;:::-;10095:4;10088:11;;;9812:295;;;;;:::o;7642:93::-;7700:5;7725:2;7718:9;;7642:93;:::o;10516:238::-;10604:4;10621:13;10637:12;:10;:12::i;:::-;10621:28;;10660:64;10669:5;10676:7;10713:10;10685:25;10695:5;10702:7;10685:9;:25::i;:::-;:38;;;;:::i;:::-;10660:8;:64::i;:::-;10742:4;10735:11;;;10516:238;;;;:::o;18067:80::-;18115:24;18121:10;18133:5;18115;:24::i;:::-;18067:80;:::o;18182:163::-;18002:5;;;;;;;;;;;17988:19;;:10;:19;;;17980:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;18329:8:::1;18321:5;;:16;;;;;;;;;;;;;;;;;;18182:163:::0;:::o;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17558:21::-;;;;;;;;;;;;;:::o;6899:104::-;6955:13;6988:7;6981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6899:104;:::o;11257:436::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;11367:28;;11406:24;11433:25;11443:5;11450:7;11433:9;:25::i;:::-;11406:52;;11497:15;11477:16;:35;;11469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:60;11599:5;11606:7;11634:15;11615:16;:34;11590:8;:60::i;:::-;11681:4;11674:11;;;;11257:436;;;;:::o;8304:193::-;8383:4;8400:13;8416:12;:10;:12::i;:::-;8400:28;;8439;8449:5;8456:2;8460:6;8439:9;:28::i;:::-;8485:4;8478:11;;;8304:193;;;;:::o;8560:151::-;8649:7;8676:11;:18;8688:5;8676:18;;;;;;;;;;;;;;;:27;8695:7;8676:27;;;;;;;;;;;;;;;;8669:34;;8560:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;14882:380::-;15035:1;15018:19;;:5;:19;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:1;15097:21;;:7;:21;;;;15089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15170:11;:18;15182:5;15170:18;;;;;;;;;;;;;;;:27;15189:7;15170:27;;;;;;;;;;;;;;;:36;;;;15238:7;15222:32;;15231:5;15222:32;;;15247:6;15222:32;;;;;;:::i;:::-;;;;;;;;14882:380;;;:::o;15553:453::-;15688:24;15715:25;15725:5;15732:7;15715:9;:25::i;:::-;15688:52;;15775:17;15755:16;:37;15751:248;;15837:6;15817:16;:26;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:51;15930:5;15937:7;15965:6;15946:16;:25;15921:8;:51::i;:::-;15751:248;15553:453;;;;:::o;12163:671::-;12310:1;12294:18;;:4;:18;;;;12286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12387:1;12373:16;;:2;:16;;;;12365:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:38;12463:4;12469:2;12473:6;12442:20;:38::i;:::-;12493:19;12515:9;:15;12525:4;12515:15;;;;;;;;;;;;;;;;12493:37;;12564:6;12549:11;:21;;12541:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:6;12667:11;:20;12649:9;:15;12659:4;12649:15;;;;;;;;;;;;;;;:38;;;;12726:6;12709:9;:13;12719:2;12709:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12765:2;12750:26;;12759:4;12750:26;;;12769:6;12750:26;;;;;;:::i;:::-;;;;;;;;12789:37;12809:4;12815:2;12819:6;12789:19;:37::i;:::-;12163:671;;;;:::o;13853:591::-;13956:1;13937:21;;:7;:21;;;;13929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:49;14030:7;14047:1;14051:6;14009:20;:49::i;:::-;14071:22;14096:9;:18;14106:7;14096:18;;;;;;;;;;;;;;;;14071:43;;14151:6;14133:14;:24;;14125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14270:6;14253:14;:23;14232:9;:18;14242:7;14232:18;;;;;;;;;;;;;;;:44;;;;14314:6;14298:12;;:22;;;;;;;:::i;:::-;;;;;;;;14364:1;14338:37;;14347:7;14338:37;;;14368:6;14338:37;;;;;;:::i;:::-;;;;;;;;14388:48;14408:7;14425:1;14429:6;14388:19;:48::i;:::-;13853:591;;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:325::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:29;3082:1;3077:3;3073:11;3066:50;3142:2;3137:3;3133:12;3126:19;;2972:179;;;:::o;3157:367::-;;3320:67;3384:2;3379:3;3320:67;:::i;:::-;3313:74;;3417:34;3413:1;3408:3;3404:11;3397:55;3483:5;3478:2;3473:3;3469:12;3462:27;3515:2;3510:3;3506:12;3499:19;;3303:221;;;:::o;3530:366::-;;3693:67;3757:2;3752:3;3693:67;:::i;:::-;3686:74;;3790:34;3786:1;3781:3;3777:11;3770:55;3856:4;3851:2;3846:3;3842:12;3835:26;3887:2;3882:3;3878:12;3871:19;;3676:220;;;:::o;3902:366::-;;4065:67;4129:2;4124:3;4065:67;:::i;:::-;4058:74;;4162:34;4158:1;4153:3;4149:11;4142:55;4228:4;4223:2;4218:3;4214:12;4207:26;4259:2;4254:3;4250:12;4243:19;;4048:220;;;:::o;4274:327::-;;4437:67;4501:2;4496:3;4437:67;:::i;:::-;4430:74;;4534:31;4530:1;4525:3;4521:11;4514:52;4592:2;4587:3;4583:12;4576:19;;4420:181;;;:::o;4607:370::-;;4770:67;4834:2;4829:3;4770:67;:::i;:::-;4763:74;;4867:34;4863:1;4858:3;4854:11;4847:55;4933:8;4928:2;4923:3;4919:12;4912:30;4968:2;4963:3;4959:12;4952:19;;4753:224;;;:::o;4983:365::-;;5146:67;5210:2;5205:3;5146:67;:::i;:::-;5139:74;;5243:34;5239:1;5234:3;5230:11;5223:55;5309:3;5304:2;5299:3;5295:12;5288:25;5339:2;5334:3;5330:12;5323:19;;5129:219;;;:::o;5354:369::-;;5517:67;5581:2;5576:3;5517:67;:::i;:::-;5510:74;;5614:34;5610:1;5605:3;5601:11;5594:55;5680:7;5675:2;5670:3;5666:12;5659:29;5714:2;5709:3;5705:12;5698:19;;5500:223;;;:::o;5729:368::-;;5892:67;5956:2;5951:3;5892:67;:::i;:::-;5885:74;;5989:34;5985:1;5980:3;5976:11;5969:55;6055:6;6050:2;6045:3;6041:12;6034:28;6088:2;6083:3;6079:12;6072:19;;5875:222;;;:::o;6103:369::-;;6266:67;6330:2;6325:3;6266:67;:::i;:::-;6259:74;;6363:34;6359:1;6354:3;6350:11;6343:55;6429:7;6424:2;6419:3;6415:12;6408:29;6463:2;6458:3;6454:12;6447:19;;6249:223;;;:::o;6478:118::-;6565:24;6583:5;6565:24;:::i;:::-;6560:3;6553:37;6543:53;;:::o;6602:112::-;6685:22;6701:5;6685:22;:::i;:::-;6680:3;6673:35;6663:51;;:::o;6720:222::-;;6851:2;6840:9;6836:18;6828:26;;6864:71;6932:1;6921:9;6917:17;6908:6;6864:71;:::i;:::-;6818:124;;;;:::o;6948:210::-;;7073:2;7062:9;7058:18;7050:26;;7086:65;7148:1;7137:9;7133:17;7124:6;7086:65;:::i;:::-;7040:118;;;;:::o;7164:313::-;;7315:2;7304:9;7300:18;7292:26;;7364:9;7358:4;7354:20;7350:1;7339:9;7335:17;7328:47;7392:78;7465:4;7456:6;7392:78;:::i;:::-;7384:86;;7282:195;;;;:::o;7483:419::-;;7687:2;7676:9;7672:18;7664:26;;7736:9;7730:4;7726:20;7722:1;7711:9;7707:17;7700:47;7764:131;7890:4;7764:131;:::i;:::-;7756:139;;7654:248;;;:::o;7908:419::-;;8112:2;8101:9;8097:18;8089:26;;8161:9;8155:4;8151:20;8147:1;8136:9;8132:17;8125:47;8189:131;8315:4;8189:131;:::i;:::-;8181:139;;8079:248;;;:::o;8333:419::-;;8537:2;8526:9;8522:18;8514:26;;8586:9;8580:4;8576:20;8572:1;8561:9;8557:17;8550:47;8614:131;8740:4;8614:131;:::i;:::-;8606:139;;8504:248;;;:::o;8758:419::-;;8962:2;8951:9;8947:18;8939:26;;9011:9;9005:4;9001:20;8997:1;8986:9;8982:17;8975:47;9039:131;9165:4;9039:131;:::i;:::-;9031:139;;8929:248;;;:::o;9183:419::-;;9387:2;9376:9;9372:18;9364:26;;9436:9;9430:4;9426:20;9422:1;9411:9;9407:17;9400:47;9464:131;9590:4;9464:131;:::i;:::-;9456:139;;9354:248;;;:::o;9608:419::-;;9812:2;9801:9;9797:18;9789:26;;9861:9;9855:4;9851:20;9847:1;9836:9;9832:17;9825:47;9889:131;10015:4;9889:131;:::i;:::-;9881:139;;9779:248;;;:::o;10033:419::-;;10237:2;10226:9;10222:18;10214:26;;10286:9;10280:4;10276:20;10272:1;10261:9;10257:17;10250:47;10314:131;10440:4;10314:131;:::i;:::-;10306:139;;10204:248;;;:::o;10458:419::-;;10662:2;10651:9;10647:18;10639:26;;10711:9;10705:4;10701:20;10697:1;10686:9;10682:17;10675:47;10739:131;10865:4;10739:131;:::i;:::-;10731:139;;10629:248;;;:::o;10883:419::-;;11087:2;11076:9;11072:18;11064:26;;11136:9;11130:4;11126:20;11122:1;11111:9;11107:17;11100:47;11164:131;11290:4;11164:131;:::i;:::-;11156:139;;11054:248;;;:::o;11308:419::-;;11512:2;11501:9;11497:18;11489:26;;11561:9;11555:4;11551:20;11547:1;11536:9;11532:17;11525:47;11589:131;11715:4;11589:131;:::i;:::-;11581:139;;11479:248;;;:::o;11733:222::-;;11864:2;11853:9;11849:18;11841:26;;11877:71;11945:1;11934:9;11930:17;11921:6;11877:71;:::i;:::-;11831:124;;;;:::o;11961:214::-;;12088:2;12077:9;12073:18;12065:26;;12101:67;12165:1;12154:9;12150:17;12141:6;12101:67;:::i;:::-;12055:120;;;;:::o;12181:99::-;;12267:5;12261:12;12251:22;;12240:40;;;:::o;12286:169::-;;12404:6;12399:3;12392:19;12444:4;12439:3;12435:14;12420:29;;12382:73;;;;:::o;12461:305::-;;12520:20;12538:1;12520:20;:::i;:::-;12515:25;;12554:20;12572:1;12554:20;:::i;:::-;12549:25;;12708:1;12640:66;12636:74;12633:1;12630:81;12627:2;;;12714:18;;:::i;:::-;12627:2;12758:1;12755;12751:9;12744:16;;12505:261;;;;:::o;12772:191::-;;12832:20;12850:1;12832:20;:::i;:::-;12827:25;;12866:20;12884:1;12866:20;:::i;:::-;12861:25;;12905:1;12902;12899:8;12896:2;;;12910:18;;:::i;:::-;12896:2;12955:1;12952;12948:9;12940:17;;12817:146;;;;:::o;12969:96::-;;13035:24;13053:5;13035:24;:::i;:::-;13024:35;;13014:51;;;:::o;13071:90::-;;13148:5;13141:13;13134:21;13123:32;;13113:48;;;:::o;13167:126::-;;13244:42;13237:5;13233:54;13222:65;;13212:81;;;:::o;13299:77::-;;13365:5;13354:16;;13344:32;;;:::o;13382:86::-;;13457:4;13450:5;13446:16;13435:27;;13425:43;;;:::o;13474:307::-;13542:1;13552:113;13566:6;13563:1;13560:13;13552:113;;;13651:1;13646:3;13642:11;13636:18;13632:1;13627:3;13623:11;13616:39;13588:2;13585:1;13581:10;13576:15;;13552:113;;;13683:6;13680:1;13677:13;13674:2;;;13763:1;13754:6;13749:3;13745:16;13738:27;13674:2;13523:258;;;;:::o;13787:320::-;;13868:1;13862:4;13858:12;13848:22;;13915:1;13909:4;13905:12;13936:18;13926:2;;13992:4;13984:6;13980:17;13970:27;;13926:2;14054;14046:6;14043:14;14023:18;14020:38;14017:2;;;14073:18;;:::i;:::-;14017:2;13838:269;;;;:::o;14113:180::-;14161:77;14158:1;14151:88;14258:4;14255:1;14248:15;14282:4;14279:1;14272:15;14299:180;14347:77;14344:1;14337:88;14444:4;14441:1;14434:15;14468:4;14465:1;14458:15;14485:102;;14577:2;14573:7;14568:2;14561:5;14557:14;14553:28;14543:38;;14533:54;;;:::o;14593:122::-;14666:24;14684:5;14666:24;:::i;:::-;14659:5;14656:35;14646:2;;14705:1;14702;14695:12;14646:2;14636:79;:::o;14721:122::-;14794:24;14812:5;14794:24;:::i;:::-;14787:5;14784:35;14774:2;;14833:1;14830;14823:12;14774:2;14764:79;:::o

Swarm Source

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