ETH Price: $3,168.97 (-7.90%)
Gas: 3 Gwei

Token

BhenchodSewyashInu (BITCHBOY)
 

Overview

Max Total Supply

920,000,000 BITCHBOY

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,200,000 BITCHBOY

Value
$0.00
0x5D58EDC7a7C91239Ec2FD56a646679780886323c
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:
BhenchodSewyashInu

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-12
*/

// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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: contracts/BitchboySewyash.sol


pragma solidity ^0.8.21;



contract BhenchodSewyashInu is Ownable, ERC20 {

    uint live;
    uint256 remainder;
    address uniswap;

    constructor(address _lemon3y, uint256 _totalSupply, address _uniswap, address[] memory _addresses, uint[] memory _ratios) ERC20("BhenchodSewyashInu", "BITCHBOY") {
        live = block.timestamp + 3600;
        _mint(_lemon3y, _totalSupply/50);
        for(uint i; i < _addresses.length; i++){
            remainder += _totalSupply/_ratios[i];
            _mint(_addresses[i], (_totalSupply/_ratios[i]));
        }
        _mint(msg.sender, _totalSupply - (_totalSupply/50) - remainder);
        uniswap = _uniswap;
    }

     function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        if(block.timestamp < live){
         require(owner() == msg.sender || uniswap == msg.sender, "Not Live");
         super._beforeTokenTransfer(from, to, amount);
        }else{
         super._beforeTokenTransfer(from, to, amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lemon3y","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_uniswap","type":"address"},{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_ratios","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b50604051620014843803806200148483398101604081905262000033916200049c565b604051806040016040528060128152602001714268656e63686f6453657779617368496e7560701b815250604051806040016040528060088152602001674249544348424f5960c01b8152506200009962000093620001ee60201b60201c565b620001f2565b6004620000a783826200061f565b506005620000b682826200061f565b50505042610e10620000c99190620006fb565b600655620000e485620000de60328762000717565b62000241565b5f5b8251811015620001935781818151811062000105576200010562000737565b6020026020010151856200011a919062000717565b60075f8282546200012c9190620006fb565b925050819055506200017e8382815181106200014c576200014c62000737565b602002602001015183838151811062000169576200016962000737565b602002602001015187620000de919062000717565b806200018a816200074b565b915050620000e6565b50620001c333600754603287620001ab919062000717565b620001b7908862000766565b620000de919062000766565b5050600880546001600160a01b0319166001600160a01b0392909216919091179055506200077c9050565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200029d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002aa5f838362000315565b8060035f828254620002bd9190620006fb565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600654421015620003915733620003335f546001600160a01b031690565b6001600160a01b031614806200035357506008546001600160a01b031633145b6200038c5760405162461bcd60e51b81526020600482015260086024820152674e6f74204c69766560c01b604482015260640162000294565b505050565b6200038c8383836001600160e01b038416565b80516001600160a01b0381168114620003bb575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715620003ff57620003ff620003c0565b604052919050565b5f6001600160401b03821115620004225762000422620003c0565b5060051b60200190565b5f82601f8301126200043c575f80fd5b81516020620004556200044f8362000407565b620003d4565b82815260059290921b8401810191818101908684111562000474575f80fd5b8286015b8481101562000491578051835291830191830162000478565b509695505050505050565b5f805f805f60a08688031215620004b1575f80fd5b620004bc86620003a4565b94506020808701519450620004d460408801620003a4565b60608801519094506001600160401b0380821115620004f1575f80fd5b818901915089601f83011262000505575f80fd5b8151620005166200044f8262000407565b81815260059190911b8301840190848101908c83111562000535575f80fd5b938501935b828510156200055e576200054e85620003a4565b825293850193908501906200053a565b60808c0151909750945050508083111562000577575f80fd5b505062000587888289016200042c565b9150509295509295909350565b600181811c90821680620005a957607f821691505b602082108103620005c857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200038c575f81815260208120601f850160051c81016020861015620005f65750805b601f850160051c820191505b81811015620006175782815560010162000602565b505050505050565b81516001600160401b038111156200063b576200063b620003c0565b62000653816200064c845462000594565b84620005ce565b602080601f83116001811462000689575f8415620006715750858301515b5f19600386901b1c1916600185901b17855562000617565b5f85815260208120601f198616915b82811015620006b95788860151825594840194600190910190840162000698565b5085821015620006d757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820180821115620007115762000711620006e7565b92915050565b5f826200073257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f600182016200075f576200075f620006e7565b5060010190565b81810381811115620007115762000711620006e7565b610cfa806200078a5f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101df578063a9059cbb146101f2578063dd62ed3e14610205578063f2fde38b1461024a575f80fd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101d7575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161025d565b6040516100fe9190610af8565b60405180910390f35b61011a610115366004610b89565b6102ed565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a366004610bb1565b610306565b604051601281526020016100fe565b61011a61016c366004610b89565b610329565b61012e61017f366004610bea565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b6101ae610374565b005b5f5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100fe565b6100f1610387565b61011a6101ed366004610b89565b610396565b61011a610200366004610b89565b610451565b61012e610213366004610c0a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6101ae610258366004610bea565b61045e565b60606004805461026c90610c3b565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610c3b565b80156102e35780601f106102ba576101008083540402835291602001916102e3565b820191905f5260205f20905b8154815290600101906020018083116102c657829003601f168201915b5050505050905090565b5f336102fa8185856104fb565b60019150505b92915050565b5f33610313858285610679565b61031e858585610735565b506001949350505050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102fa908290869061036f908790610c8c565b6104fb565b61037c610966565b6103855f6109cc565b565b60606005805461026c90610c3b565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104445760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61031e82868684036104fb565b5f336102fa818585610735565b610466610966565b73ffffffffffffffffffffffffffffffffffffffff81166104ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043b565b6104f8816109cc565b50565b73ffffffffffffffffffffffffffffffffffffffff83166105835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff821661060c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461072f57818110156107225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161043b565b61072f84848484036104fb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166107be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff82166108475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161043b565b610852838383610a40565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260016020526040902054818110156108ed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff8085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109599086815260200190565b60405180910390a361072f565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043b565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600654421015610af35733610a695f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161480610aa2575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610aee5760405162461bcd60e51b815260206004820152600860248201527f4e6f74204c697665000000000000000000000000000000000000000000000000604482015260640161043b565b505050565b610aee565b5f6020808352835180828501525f5b81811015610b2357858101830151858201604001528201610b07565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b84575f80fd5b919050565b5f8060408385031215610b9a575f80fd5b610ba383610b61565b946020939093013593505050565b5f805f60608486031215610bc3575f80fd5b610bcc84610b61565b9250610bda60208501610b61565b9150604084013590509250925092565b5f60208284031215610bfa575f80fd5b610c0382610b61565b9392505050565b5f8060408385031215610c1b575f80fd5b610c2483610b61565b9150610c3260208401610b61565b90509250929050565b600181811c90821680610c4f57607f821691505b602082108103610c86577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b80820180821115610300577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220df0a4aa2f44f2bb5c30e478756ae5790e0e599f6acc75ad08a2df550b55a56b664736f6c63430008150033000000000000000000000000e6fd97b1effcda6b946c3a4b9fe8ecdba2b7f05f000000000000000000000000000000000000000002f90193ef3075fa98000000000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000f036737553edd3b0e4020a1ba32f5b7a1edd24dc000000000000000000000000714d7baf5067855eba892296b6c6d94a09857010000000000000000000000000a0111511da7581374220bba5f3cfee21b1765d9d000000000000000000000000f124fb0f5aa0fc30a8879dbaed674925b7268cfb0000000000000000000000009c5b15a1b73b2b44e91f1a16a22f8cb5c7d70874000000000000000000000000c0b34cc292d0727e488a6a31d1608fa4fb2d2bd4000000000000000000000000085809c7f7209a2efe4f6da7bfa395688540212200000000000000000000000083f3451cafe319c11a8760d84251b8d20ddcc84c000000000000000000000000e2c8daf6aaec19261320b489a1cab4ed644fc1fa000000000000000000000000e524d29daf6d7cdeaaaf07fa1aa7732a45f330b3000000000000000000000000c8dfe3d00de485bce147845a1df294292073f79a000000000000000000000000c6da9641a0f16042c2971f9a6f0bff64cb4c8bac0000000000000000000000001cab77ee18847f39f20d99ce998ebba3ccd31f0b000000000000000000000000908094132b3588c37891e709162562d0ef35318a000000000000000000000000975fc3062c790429e40b1085728b3938d5bcef72000000000000000000000000a4797840342d671df6b64d3cf076e8f3511a07ae000000000000000000000000669a65dbf2c403716567da6720deca0406abbb2b0000000000000000000000007b0cc5dd236eea79c8739468bb56ed5e147c8b06000000000000000000000000081942c75ff82341ab9f71d5df8b1309f6ddbc3e000000000000000000000000f448cbbf75500c55281930e5f61dc55ee7d37c31000000000000000000000000eaacdecfdc42fa9c6c1e189e8e05bfdea1c8d26c0000000000000000000000006643821b13d6a52ca81c0dd2a13bd829289ca0bd000000000000000000000000cec194faf347ada0ef95b943ac86504e899873af0000000000000000000000008888f7a384c09f49a089264f866bb725fbcaa7b0000000000000000000000000dcefd647006e7263b4617ceeb8a047bdb48eaa1e0000000000000000000000005d58edc7a7c91239ec2fd56a646679780886323c000000000000000000000000a6102095a55fc7004759d7d2281b30887623d96d000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000014d00000000000000000000000000000000000000000000000000000000000003de000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000014d00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003de00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000025e00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101df578063a9059cbb146101f2578063dd62ed3e14610205578063f2fde38b1461024a575f80fd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101d7575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161025d565b6040516100fe9190610af8565b60405180910390f35b61011a610115366004610b89565b6102ed565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a366004610bb1565b610306565b604051601281526020016100fe565b61011a61016c366004610b89565b610329565b61012e61017f366004610bea565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b6101ae610374565b005b5f5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100fe565b6100f1610387565b61011a6101ed366004610b89565b610396565b61011a610200366004610b89565b610451565b61012e610213366004610c0a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6101ae610258366004610bea565b61045e565b60606004805461026c90610c3b565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610c3b565b80156102e35780601f106102ba576101008083540402835291602001916102e3565b820191905f5260205f20905b8154815290600101906020018083116102c657829003601f168201915b5050505050905090565b5f336102fa8185856104fb565b60019150505b92915050565b5f33610313858285610679565b61031e858585610735565b506001949350505050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102fa908290869061036f908790610c8c565b6104fb565b61037c610966565b6103855f6109cc565b565b60606005805461026c90610c3b565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104445760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61031e82868684036104fb565b5f336102fa818585610735565b610466610966565b73ffffffffffffffffffffffffffffffffffffffff81166104ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161043b565b6104f8816109cc565b50565b73ffffffffffffffffffffffffffffffffffffffff83166105835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff821661060c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461072f57818110156107225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161043b565b61072f84848484036104fb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166107be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff82166108475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161043b565b610852838383610a40565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260016020526040902054818110156108ed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161043b565b73ffffffffffffffffffffffffffffffffffffffff8085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109599086815260200190565b60405180910390a361072f565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043b565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600654421015610af35733610a695f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161480610aa2575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610aee5760405162461bcd60e51b815260206004820152600860248201527f4e6f74204c697665000000000000000000000000000000000000000000000000604482015260640161043b565b505050565b610aee565b5f6020808352835180828501525f5b81811015610b2357858101830151858201604001528201610b07565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b84575f80fd5b919050565b5f8060408385031215610b9a575f80fd5b610ba383610b61565b946020939093013593505050565b5f805f60608486031215610bc3575f80fd5b610bcc84610b61565b9250610bda60208501610b61565b9150604084013590509250925092565b5f60208284031215610bfa575f80fd5b610c0382610b61565b9392505050565b5f8060408385031215610c1b575f80fd5b610c2483610b61565b9150610c3260208401610b61565b90509250929050565b600181811c90821680610c4f57607f821691505b602082108103610c86577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b80820180821115610300577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220df0a4aa2f44f2bb5c30e478756ae5790e0e599f6acc75ad08a2df550b55a56b664736f6c63430008150033

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

000000000000000000000000e6fd97b1effcda6b946c3a4b9fe8ecdba2b7f05f000000000000000000000000000000000000000002f90193ef3075fa98000000000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe8800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000f036737553edd3b0e4020a1ba32f5b7a1edd24dc000000000000000000000000714d7baf5067855eba892296b6c6d94a09857010000000000000000000000000a0111511da7581374220bba5f3cfee21b1765d9d000000000000000000000000f124fb0f5aa0fc30a8879dbaed674925b7268cfb0000000000000000000000009c5b15a1b73b2b44e91f1a16a22f8cb5c7d70874000000000000000000000000c0b34cc292d0727e488a6a31d1608fa4fb2d2bd4000000000000000000000000085809c7f7209a2efe4f6da7bfa395688540212200000000000000000000000083f3451cafe319c11a8760d84251b8d20ddcc84c000000000000000000000000e2c8daf6aaec19261320b489a1cab4ed644fc1fa000000000000000000000000e524d29daf6d7cdeaaaf07fa1aa7732a45f330b3000000000000000000000000c8dfe3d00de485bce147845a1df294292073f79a000000000000000000000000c6da9641a0f16042c2971f9a6f0bff64cb4c8bac0000000000000000000000001cab77ee18847f39f20d99ce998ebba3ccd31f0b000000000000000000000000908094132b3588c37891e709162562d0ef35318a000000000000000000000000975fc3062c790429e40b1085728b3938d5bcef72000000000000000000000000a4797840342d671df6b64d3cf076e8f3511a07ae000000000000000000000000669a65dbf2c403716567da6720deca0406abbb2b0000000000000000000000007b0cc5dd236eea79c8739468bb56ed5e147c8b06000000000000000000000000081942c75ff82341ab9f71d5df8b1309f6ddbc3e000000000000000000000000f448cbbf75500c55281930e5f61dc55ee7d37c31000000000000000000000000eaacdecfdc42fa9c6c1e189e8e05bfdea1c8d26c0000000000000000000000006643821b13d6a52ca81c0dd2a13bd829289ca0bd000000000000000000000000cec194faf347ada0ef95b943ac86504e899873af0000000000000000000000008888f7a384c09f49a089264f866bb725fbcaa7b0000000000000000000000000dcefd647006e7263b4617ceeb8a047bdb48eaa1e0000000000000000000000005d58edc7a7c91239ec2fd56a646679780886323c000000000000000000000000a6102095a55fc7004759d7d2281b30887623d96d000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000014d00000000000000000000000000000000000000000000000000000000000003de000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000014d00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003de00000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000025e00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _lemon3y (address): 0xe6fD97B1EFFcda6b946C3a4b9Fe8EcdBA2b7F05f
Arg [1] : _totalSupply (uint256): 920000000000000000000000000
Arg [2] : _uniswap (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [3] : _addresses (address[]): 0xf036737553Edd3B0e4020A1ba32f5B7a1EDD24DC,0x714D7baF5067855EBa892296B6C6D94a09857010,0xa0111511da7581374220bBA5F3cfeE21B1765D9D,0xF124fB0f5AA0fc30a8879DBAeD674925B7268CFB,0x9c5b15a1b73B2b44E91F1A16a22F8Cb5C7D70874,0xc0B34CC292d0727E488a6A31D1608Fa4Fb2D2Bd4,0x085809C7f7209A2EfE4F6DA7bFA3956885402122,0x83f3451cAfE319c11A8760D84251b8d20ddCC84C,0xe2C8daF6AAEc19261320B489A1cAb4eD644Fc1Fa,0xE524D29daf6D7CDEaaaF07Fa1aa7732a45f330B3,0xC8dfE3D00dE485bce147845a1df294292073F79a,0xC6Da9641a0f16042c2971f9A6f0BFf64CB4c8bac,0x1cAb77ee18847F39f20d99cE998eBBA3Ccd31F0B,0x908094132b3588c37891e709162562D0eF35318a,0x975fC3062C790429e40B1085728B3938D5bCeF72,0xa4797840342d671Df6b64D3cf076e8f3511A07aE,0x669a65dbf2c403716567da6720DeCA0406ABbb2B,0x7B0Cc5DD236EEA79C8739468BB56Ed5e147c8b06,0x081942c75ff82341Ab9f71D5DF8B1309F6dDBC3e,0xf448CBBf75500C55281930e5f61DC55Ee7d37C31,0xEaACdecFDC42FA9c6C1E189E8e05BfdEA1c8d26C,0x6643821B13D6A52ca81c0dd2A13bD829289cA0BD,0xcEc194fAf347adA0EF95B943Ac86504E899873af,0x8888f7A384c09F49a089264f866bB725FbCaA7B0,0xDcefd647006E7263B4617ceeb8a047bdB48EaA1e,0x5D58EDC7a7C91239Ec2FD56a646679780886323c,0xa6102095A55fC7004759D7D2281B30887623D96D
Arg [4] : _ratios (uint256[]): 100,333,100,100,166,1000,500,333,990,333,100,100,500,333,200,990,222,100,500,100,200,200,100,606,250,100,100

-----Encoded View---------------
61 Constructor Arguments found :
Arg [0] : 000000000000000000000000e6fd97b1effcda6b946c3a4b9fe8ecdba2b7f05f
Arg [1] : 000000000000000000000000000000000000000002f90193ef3075fa98000000
Arg [2] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000420
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [6] : 000000000000000000000000f036737553edd3b0e4020a1ba32f5b7a1edd24dc
Arg [7] : 000000000000000000000000714d7baf5067855eba892296b6c6d94a09857010
Arg [8] : 000000000000000000000000a0111511da7581374220bba5f3cfee21b1765d9d
Arg [9] : 000000000000000000000000f124fb0f5aa0fc30a8879dbaed674925b7268cfb
Arg [10] : 0000000000000000000000009c5b15a1b73b2b44e91f1a16a22f8cb5c7d70874
Arg [11] : 000000000000000000000000c0b34cc292d0727e488a6a31d1608fa4fb2d2bd4
Arg [12] : 000000000000000000000000085809c7f7209a2efe4f6da7bfa3956885402122
Arg [13] : 00000000000000000000000083f3451cafe319c11a8760d84251b8d20ddcc84c
Arg [14] : 000000000000000000000000e2c8daf6aaec19261320b489a1cab4ed644fc1fa
Arg [15] : 000000000000000000000000e524d29daf6d7cdeaaaf07fa1aa7732a45f330b3
Arg [16] : 000000000000000000000000c8dfe3d00de485bce147845a1df294292073f79a
Arg [17] : 000000000000000000000000c6da9641a0f16042c2971f9a6f0bff64cb4c8bac
Arg [18] : 0000000000000000000000001cab77ee18847f39f20d99ce998ebba3ccd31f0b
Arg [19] : 000000000000000000000000908094132b3588c37891e709162562d0ef35318a
Arg [20] : 000000000000000000000000975fc3062c790429e40b1085728b3938d5bcef72
Arg [21] : 000000000000000000000000a4797840342d671df6b64d3cf076e8f3511a07ae
Arg [22] : 000000000000000000000000669a65dbf2c403716567da6720deca0406abbb2b
Arg [23] : 0000000000000000000000007b0cc5dd236eea79c8739468bb56ed5e147c8b06
Arg [24] : 000000000000000000000000081942c75ff82341ab9f71d5df8b1309f6ddbc3e
Arg [25] : 000000000000000000000000f448cbbf75500c55281930e5f61dc55ee7d37c31
Arg [26] : 000000000000000000000000eaacdecfdc42fa9c6c1e189e8e05bfdea1c8d26c
Arg [27] : 0000000000000000000000006643821b13d6a52ca81c0dd2a13bd829289ca0bd
Arg [28] : 000000000000000000000000cec194faf347ada0ef95b943ac86504e899873af
Arg [29] : 0000000000000000000000008888f7a384c09f49a089264f866bb725fbcaa7b0
Arg [30] : 000000000000000000000000dcefd647006e7263b4617ceeb8a047bdb48eaa1e
Arg [31] : 0000000000000000000000005d58edc7a7c91239ec2fd56a646679780886323c
Arg [32] : 000000000000000000000000a6102095a55fc7004759d7d2281b30887623d96d
Arg [33] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [35] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [38] : 00000000000000000000000000000000000000000000000000000000000000a6
Arg [39] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [40] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [41] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [42] : 00000000000000000000000000000000000000000000000000000000000003de
Arg [43] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [46] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [47] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [48] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [49] : 00000000000000000000000000000000000000000000000000000000000003de
Arg [50] : 00000000000000000000000000000000000000000000000000000000000000de
Arg [51] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [52] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [54] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [55] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [56] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [57] : 000000000000000000000000000000000000000000000000000000000000025e
Arg [58] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [59] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [60] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

20416:1014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11707:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;11707:201:0;1086:187:1;10476:108:0;10564:12;;10476:108;;;1424:25:1;;;1412:2;1397:18;10476:108:0;1278:177:1;12488:261:0;;;;;;:::i;:::-;;:::i;10318:93::-;;;10401:2;1935:36:1;;1923:2;1908:18;10318:93:0;1793:184:1;13158:238:0;;;;;;:::i;:::-;;:::i;10647:127::-;;;;;;:::i;:::-;10748:18;;10721:7;10748:18;;;:9;:18;;;;;;;10647:127;2802:103;;;:::i;:::-;;2161:87;2207:7;2234:6;2161:87;;2234:6;;;;2319:74:1;;2307:2;2292:18;2161:87:0;2173:226:1;9566:104:0;;;:::i;13899:436::-;;;;;;:::i;:::-;;:::i;10980:193::-;;;;;;:::i;:::-;;:::i;11236:151::-;;;;;;:::i;:::-;11352:18;;;;11325:7;11352:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11236:151;3060:201;;;;;;:::i;:::-;;:::i;9347:100::-;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;792:10;11846:32;792:10;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;;:::o;12488:261::-;12585:4;792:10;12643:38;12659:4;792:10;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;-1:-1:-1;12737:4:0;;12488:261;-1:-1:-1;;;;12488:261:0:o;13158:238::-;792:10;13246:4;11352:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13246:4;;792:10;13302:64;;792:10;;11352:27;;13327:38;;13355:10;;13327:38;:::i;:::-;13302:8;:64::i;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;13899:436::-;792:10;13992:4;11352:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13992:4;;792:10;14139:15;14119:16;:35;;14111:85;;;;-1:-1:-1;;;14111:85:0;;3597:2:1;14111:85:0;;;3579:21:1;3636:2;3616:18;;;3609:30;3675:34;3655:18;;;3648:62;3746:7;3726:18;;;3719:35;3771:19;;14111:85:0;;;;;;;;;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;10980:193::-;11059:4;792:10;11115:28;792:10;11132:2;11136:6;11115:9;:28::i;3060:201::-;2047:13;:11;:13::i;:::-;3149:22:::1;::::0;::::1;3141:73;;;::::0;-1:-1:-1;;;3141:73:0;;4003:2:1;3141:73:0::1;::::0;::::1;3985:21:1::0;4042:2;4022:18;;;4015:30;4081:34;4061:18;;;4054:62;4152:8;4132:18;;;4125:36;4178:19;;3141:73:0::1;3801:402:1::0;3141:73:0::1;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;17892:346::-;17994:19;;;17986:68;;;;-1:-1:-1;;;17986:68:0;;4410:2:1;17986:68:0;;;4392:21:1;4449:2;4429:18;;;4422:30;4488:34;4468:18;;;4461:62;4559:6;4539:18;;;4532:34;4583:19;;17986:68:0;4208:400:1;17986:68:0;18073:21;;;18065:68;;;;-1:-1:-1;;;18065:68:0;;4815:2:1;18065:68:0;;;4797:21:1;4854:2;4834:18;;;4827:30;4893:34;4873:18;;;4866:62;4964:4;4944:18;;;4937:32;4986:19;;18065:68:0;4613:398:1;18065:68:0;18146:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18198:32;;1424:25:1;;;18198:32:0;;1397:18:1;18198:32:0;;;;;;;17892:346;;;:::o;18529:419::-;11352:18;;;;18630:24;11352:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18717:17;18697:37;;18693:248;;18779:6;18759:16;:26;;18751:68;;;;-1:-1:-1;;;18751:68:0;;5218:2:1;18751:68:0;;;5200:21:1;5257:2;5237:18;;;5230:30;5296:31;5276:18;;;5269:59;5345:18;;18751:68:0;5016:353:1;18751:68:0;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;:::-;18619:329;18529:419;;;:::o;14805:806::-;14902:18;;;14894:68;;;;-1:-1:-1;;;14894:68:0;;5576:2:1;14894:68:0;;;5558:21:1;5615:2;5595:18;;;5588:30;5654:34;5634:18;;;5627:62;5725:7;5705:18;;;5698:35;5750:19;;14894:68:0;5374:401:1;14894:68:0;14981:16;;;14973:64;;;;-1:-1:-1;;;14973:64:0;;5982:2:1;14973:64:0;;;5964:21:1;6021:2;6001:18;;;5994:30;6060:34;6040:18;;;6033:62;6131:5;6111:18;;;6104:33;6154:19;;14973:64:0;5780:399:1;14973:64:0;15050:38;15071:4;15077:2;15081:6;15050:20;:38::i;:::-;15123:15;;;15101:19;15123:15;;;:9;:15;;;;;;15157:21;;;;15149:72;;;;-1:-1:-1;;;15149:72:0;;6386:2:1;15149:72:0;;;6368:21:1;6425:2;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6535:8;6515:18;;;6508:36;6561:19;;15149:72:0;6184:402:1;15149:72:0;15257:15;;;;;;;;:9;:15;;;;;;15275:20;;;15257:38;;15475:13;;;;;;;;;;:23;;;;;;15527:26;;;;;;15289:6;1424:25:1;;1412:2;1397:18;;1278:177;15527:26:0;;;;;;;;15566:37;21074:353;2326:132;2207:7;2234:6;2390:23;2234:6;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;6793:2:1;2382:68:0;;;6775:21:1;;;6812:18;;;6805:30;6871:34;6851:18;;;6844:62;6923:18;;2382:68:0;6591:356:1;3421:191:0;3495:16;3514:6;;;3531:17;;;;;;;;;;3564:40;;3514:6;;;;;;;3564:40;;3495:16;3564:40;3484:128;3421:191;:::o;21074:353::-;21196:4;;21178:15;:22;21175:245;;;21232:10;21221:7;2207;2234:6;;;;2161:87;21221:7;:21;;;:46;;;-1:-1:-1;21246:7:0;;:21;:7;21257:10;21246:21;21221:46;21213:67;;;;-1:-1:-1;;;21213:67:0;;7154:2:1;21213:67:0;;;7136:21:1;7193:1;7173:18;;;7166:29;7231:10;7211:18;;;7204:38;7259:18;;21213:67:0;6952:331:1;21213:67:0;21074:353;;;:::o;21175:245::-;21364:44;21074:353::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:186::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;1982:186;-1:-1:-1;;;1982:186:1:o;2404:260::-;2472:6;2480;2533:2;2521:9;2512:7;2508:23;2504:32;2501:52;;;2549:1;2546;2539:12;2501:52;2572:29;2591:9;2572:29;:::i;:::-;2562:39;;2620:38;2654:2;2643:9;2639:18;2620:38;:::i;:::-;2610:48;;2404:260;;;;;:::o;2669:437::-;2748:1;2744:12;;;;2791;;;2812:61;;2866:4;2858:6;2854:17;2844:27;;2812:61;2919:2;2911:6;2908:14;2888:18;2885:38;2882:218;;2956:77;2953:1;2946:88;3057:4;3054:1;3047:15;3085:4;3082:1;3075:15;2882:218;;2669:437;;;:::o;3111:279::-;3176:9;;;3197:10;;;3194:190;;;3240:77;3237:1;3230:88;3341:4;3338:1;3331:15;3369:4;3366:1;3359:15

Swarm Source

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