MATIC Price: $1.00 (-0.16%)
Gas: 78 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
Approve442014042023-06-22 9:39:26280 days ago1687426766IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00444125178.34209057
Transfer424432272023-05-08 6:29:04325 days ago1683527344IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00564078184.33325519
Transfer424431302023-05-08 6:25:38325 days ago1683527138IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00570007186.27100608
Approve422571372023-05-03 13:31:02330 days ago1683120662IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.0141647300.18231101
Transfer418877242023-04-24 3:13:07339 days ago1682305987IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.02430247462.78966431
Transfer418875362023-04-24 3:05:57339 days ago1682305557IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.02054673391.35883223
Approve418194902023-04-22 8:52:40341 days ago1682153560IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00671211269.53028677
Approve410984482023-04-03 14:33:53360 days ago1680532433IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01034585219.25223186
Transfer408903742023-03-29 6:24:43365 days ago1680071083IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01487222283.27506048
Approve408469612023-03-28 2:49:31366 days ago1679971771IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00733389294.4986239
Transfer403623362023-03-15 5:23:38379 days ago1678857818IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00758662159.00545507
Approve401393812023-03-09 8:44:38385 days ago1678351478IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.0121637257.77667724
Transfer401389772023-03-09 8:29:36385 days ago1678350576IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01156204220.22520292
Transfer401389612023-03-09 8:29:02385 days ago1678350542IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00781587220.78108258
Approve401387502023-03-09 8:21:32385 days ago1678350092IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01083567229.63260023
Transfer401386692023-03-09 8:18:30385 days ago1678349910IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01446475275.5768947
Transfer401386562023-03-09 8:18:04385 days ago1678349884IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01508717287.43502243
Transfer400975072023-03-08 6:04:10386 days ago1678255450IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01175745223.99853153
Transfer400952232023-03-08 4:38:13386 days ago1678250293IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00969168184.64215616
Transfer400585632023-03-07 5:25:05387 days ago1678166705IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.0119678228.00586868
Transfer399094482023-03-03 7:54:27391 days ago1677830067IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.01314267250.33192239
Transfer398330202023-03-01 6:42:41393 days ago1677652961IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00890514169.65733339
Approve397861462023-02-28 0:07:52395 days ago1677542872IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00907623192.34616834
Approve397722302023-02-27 15:25:22395 days ago1677511522IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.02123956450.1148124
Transfer397660112023-02-27 11:24:45395 days ago1677497085IN
0x7F72b0Ab...ecaC32Ef9
0 MATIC0.00538088102.4910406
View all transactions

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-12-15
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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;
    }
}


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

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

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 { }
}

abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}


contract MC is ERC20Burnable {
    using SafeMath for uint256;
    address mintAdderss;

    constructor(string memory name_, string memory symbol_, address teamAddress_,address foundationAddress_,address ecoAddress_,address mineAddress_)
        ERC20(name_, symbol_)
    {
        _mint(teamAddress_,  15 * 10**24);
        _mint(foundationAddress_,  30 * 10**24);
        _mint(ecoAddress_,  45 * 10**24);
        _mint(mineAddress_,  21 * 10**25);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"teamAddress_","type":"address"},{"internalType":"address","name":"foundationAddress_","type":"address"},{"internalType":"address","name":"ecoAddress_","type":"address"},{"internalType":"address","name":"mineAddress_","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b50604051620021dc380380620021dc833981810160405281019062000037919062000440565b858581600390816200004a919062000765565b5080600490816200005c919062000765565b5050506200007c846a0c685fa11e01ec6f000000620000df60201b60201c565b62000099836a18d0bf423c03d8de000000620000df60201b60201c565b620000b6826a25391ee35a05c54d000000620000df60201b60201c565b620000d3816aadb53acfa41aee12000000620000df60201b60201c565b50505050505062000967565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014890620008ad565b60405180910390fd5b62000165600083836200024360201b60201c565b8060026000828254620001799190620008fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001d09190620008fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200023791906200094a565b60405180910390a35050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002b18262000266565b810181811067ffffffffffffffff82111715620002d357620002d262000277565b5b80604052505050565b6000620002e862000248565b9050620002f68282620002a6565b919050565b600067ffffffffffffffff82111562000319576200031862000277565b5b620003248262000266565b9050602081019050919050565b60005b838110156200035157808201518184015260208101905062000334565b60008484015250505050565b6000620003746200036e84620002fb565b620002dc565b90508281526020810184848401111562000393576200039262000261565b5b620003a084828562000331565b509392505050565b600082601f830112620003c057620003bf6200025c565b5b8151620003d28482602086016200035d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040882620003db565b9050919050565b6200041a81620003fb565b81146200042657600080fd5b50565b6000815190506200043a816200040f565b92915050565b60008060008060008060c0878903121562000460576200045f62000252565b5b600087015167ffffffffffffffff81111562000481576200048062000257565b5b6200048f89828a01620003a8565b965050602087015167ffffffffffffffff811115620004b357620004b262000257565b5b620004c189828a01620003a8565b9550506040620004d489828a0162000429565b9450506060620004e789828a0162000429565b9350506080620004fa89828a0162000429565b92505060a06200050d89828a0162000429565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056d57607f821691505b60208210810362000583576200058262000525565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ae565b620005f98683620005ae565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000646620006406200063a8462000611565b6200061b565b62000611565b9050919050565b6000819050919050565b620006628362000625565b6200067a62000671826200064d565b848454620005bb565b825550505050565b600090565b6200069162000682565b6200069e81848462000657565b505050565b5b81811015620006c657620006ba60008262000687565b600181019050620006a4565b5050565b601f8211156200071557620006df8162000589565b620006ea846200059e565b81016020851015620006fa578190505b6200071262000709856200059e565b830182620006a3565b50505b505050565b600082821c905092915050565b60006200073a600019846008026200071a565b1980831691505092915050565b600062000755838362000727565b9150826002028217905092915050565b62000770826200051a565b67ffffffffffffffff8111156200078c576200078b62000277565b5b62000798825462000554565b620007a5828285620006ca565b600060209050601f831160018114620007dd5760008415620007c8578287015190505b620007d4858262000747565b86555062000844565b601f198416620007ed8662000589565b60005b828110156200081757848901518255600182019150602085019450602081019050620007f0565b8683101562000837578489015162000833601f89168262000727565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000895601f836200084c565b9150620008a2826200085d565b602082019050919050565b60006020820190508181036000830152620008c88162000886565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200090b8262000611565b9150620009188362000611565b9250828201905080821115620009335762000932620008cf565b5b92915050565b620009448162000611565b82525050565b600060208201905062000961600083018462000939565b92915050565b61186580620009776000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e99190610f05565b60405180910390f35b61010c60048036038101906101079190610fc0565b610366565b604051610119919061101b565b60405180910390f35b61012a610384565b6040516101379190611045565b60405180910390f35b61015a60048036038101906101559190611060565b61038e565b604051610167919061101b565b60405180910390f35b61017861048f565b60405161018591906110cf565b60405180910390f35b6101a860048036038101906101a39190610fc0565b610498565b6040516101b5919061101b565b60405180910390f35b6101d860048036038101906101d391906110ea565b610544565b005b6101f460048036038101906101ef9190611117565b610558565b6040516102019190611045565b60405180910390f35b610224600480360381019061021f9190610fc0565b6105a0565b005b61022e610624565b60405161023b9190610f05565b60405180910390f35b61025e60048036038101906102599190610fc0565b6106b6565b60405161026b919061101b565b60405180910390f35b61028e60048036038101906102899190610fc0565b6107aa565b60405161029b919061101b565b60405180910390f35b6102be60048036038101906102b99190611144565b6107c8565b6040516102cb9190611045565b60405180910390f35b6060600380546102e3906111b3565b80601f016020809104026020016040519081016040528092919081815260200182805461030f906111b3565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037a61037361084f565b8484610857565b6001905092915050565b6000600254905090565b600061039b848484610a20565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e661084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611256565b60405180910390fd5b6104838561047261084f565b858461047e91906112a5565b610857565b60019150509392505050565b60006012905090565b600061053a6104a561084f565b8484600160006104b361084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053591906112d9565b610857565b6001905092915050565b61055561054f61084f565b82610c9d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105b3836105ae61084f565b6107c8565b9050818110156105f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ef9061137f565b60405180910390fd5b6106158361060461084f565b848461061091906112a5565b610857565b61061f8383610c9d565b505050565b606060048054610633906111b3565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906111b3565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b600080600160006106c561084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077990611411565b60405180910390fd5b61079f61078d61084f565b85858461079a91906112a5565b610857565b600191505092915050565b60006107be6107b761084f565b8484610a20565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd906114a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611535565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a139190611045565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906115c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590611659565b60405180910390fd5b610b09838383610e70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906116eb565b60405180910390fd5b8181610b9b91906112a5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2b91906112d9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8f9190611045565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d039061177d565b60405180910390fd5b610d1882600083610e70565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061180f565b60405180910390fd5b8181610daa91906112a5565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610dfe91906112a5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e639190611045565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610eaf578082015181840152602081019050610e94565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ed782610e75565b610ee18185610e80565b9350610ef1818560208601610e91565b610efa81610ebb565b840191505092915050565b60006020820190508181036000830152610f1f8184610ecc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f5782610f2c565b9050919050565b610f6781610f4c565b8114610f7257600080fd5b50565b600081359050610f8481610f5e565b92915050565b6000819050919050565b610f9d81610f8a565b8114610fa857600080fd5b50565b600081359050610fba81610f94565b92915050565b60008060408385031215610fd757610fd6610f27565b5b6000610fe585828601610f75565b9250506020610ff685828601610fab565b9150509250929050565b60008115159050919050565b61101581611000565b82525050565b6000602082019050611030600083018461100c565b92915050565b61103f81610f8a565b82525050565b600060208201905061105a6000830184611036565b92915050565b60008060006060848603121561107957611078610f27565b5b600061108786828701610f75565b935050602061109886828701610f75565b92505060406110a986828701610fab565b9150509250925092565b600060ff82169050919050565b6110c9816110b3565b82525050565b60006020820190506110e460008301846110c0565b92915050565b600060208284031215611100576110ff610f27565b5b600061110e84828501610fab565b91505092915050565b60006020828403121561112d5761112c610f27565b5b600061113b84828501610f75565b91505092915050565b6000806040838503121561115b5761115a610f27565b5b600061116985828601610f75565b925050602061117a85828601610f75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111cb57607f821691505b6020821081036111de576111dd611184565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611240602883610e80565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112b082610f8a565b91506112bb83610f8a565b92508282039050818111156112d3576112d2611276565b5b92915050565b60006112e482610f8a565b91506112ef83610f8a565b925082820190508082111561130757611306611276565b5b92915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611369602483610e80565b91506113748261130d565b604082019050919050565b600060208201905081810360008301526113988161135c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113fb602583610e80565b91506114068261139f565b604082019050919050565b6000602082019050818103600083015261142a816113ee565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061148d602483610e80565b915061149882611431565b604082019050919050565b600060208201905081810360008301526114bc81611480565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061151f602283610e80565b915061152a826114c3565b604082019050919050565b6000602082019050818103600083015261154e81611512565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115b1602583610e80565b91506115bc82611555565b604082019050919050565b600060208201905081810360008301526115e0816115a4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611643602383610e80565b915061164e826115e7565b604082019050919050565b6000602082019050818103600083015261167281611636565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116d5602683610e80565b91506116e082611679565b604082019050919050565b60006020820190508181036000830152611704816116c8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611767602183610e80565b91506117728261170b565b604082019050919050565b600060208201905081810360008301526117968161175a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f9602283610e80565b91506118048261179d565b604082019050919050565b60006020820190508181036000830152611828816117ec565b905091905056fea2646970667358221220b3e120c2c8e9eacbe868d3804c576f392f4dcd4f29c05f1f6fcbee673f7f61cb64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000067a98cc897396e6f51cac5e875f144151598af4700000000000000000000000030895f7bacb90e4c421bc8b269e50b37fc00f8c0000000000000000000000000e928340806524e5055d0b73ff52d470acdee2392000000000000000000000000bbdd0e06578259316f1e4fd00aa4f5db7294c63200000000000000000000000000000000000000000000000000000000000000104d65746143726564697420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d43000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e99190610f05565b60405180910390f35b61010c60048036038101906101079190610fc0565b610366565b604051610119919061101b565b60405180910390f35b61012a610384565b6040516101379190611045565b60405180910390f35b61015a60048036038101906101559190611060565b61038e565b604051610167919061101b565b60405180910390f35b61017861048f565b60405161018591906110cf565b60405180910390f35b6101a860048036038101906101a39190610fc0565b610498565b6040516101b5919061101b565b60405180910390f35b6101d860048036038101906101d391906110ea565b610544565b005b6101f460048036038101906101ef9190611117565b610558565b6040516102019190611045565b60405180910390f35b610224600480360381019061021f9190610fc0565b6105a0565b005b61022e610624565b60405161023b9190610f05565b60405180910390f35b61025e60048036038101906102599190610fc0565b6106b6565b60405161026b919061101b565b60405180910390f35b61028e60048036038101906102899190610fc0565b6107aa565b60405161029b919061101b565b60405180910390f35b6102be60048036038101906102b99190611144565b6107c8565b6040516102cb9190611045565b60405180910390f35b6060600380546102e3906111b3565b80601f016020809104026020016040519081016040528092919081815260200182805461030f906111b3565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037a61037361084f565b8484610857565b6001905092915050565b6000600254905090565b600061039b848484610a20565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e661084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611256565b60405180910390fd5b6104838561047261084f565b858461047e91906112a5565b610857565b60019150509392505050565b60006012905090565b600061053a6104a561084f565b8484600160006104b361084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053591906112d9565b610857565b6001905092915050565b61055561054f61084f565b82610c9d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105b3836105ae61084f565b6107c8565b9050818110156105f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ef9061137f565b60405180910390fd5b6106158361060461084f565b848461061091906112a5565b610857565b61061f8383610c9d565b505050565b606060048054610633906111b3565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906111b3565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b600080600160006106c561084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077990611411565b60405180910390fd5b61079f61078d61084f565b85858461079a91906112a5565b610857565b600191505092915050565b60006107be6107b761084f565b8484610a20565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd906114a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611535565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a139190611045565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906115c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590611659565b60405180910390fd5b610b09838383610e70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906116eb565b60405180910390fd5b8181610b9b91906112a5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2b91906112d9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8f9190611045565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d039061177d565b60405180910390fd5b610d1882600083610e70565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061180f565b60405180910390fd5b8181610daa91906112a5565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610dfe91906112a5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e639190611045565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610eaf578082015181840152602081019050610e94565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ed782610e75565b610ee18185610e80565b9350610ef1818560208601610e91565b610efa81610ebb565b840191505092915050565b60006020820190508181036000830152610f1f8184610ecc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f5782610f2c565b9050919050565b610f6781610f4c565b8114610f7257600080fd5b50565b600081359050610f8481610f5e565b92915050565b6000819050919050565b610f9d81610f8a565b8114610fa857600080fd5b50565b600081359050610fba81610f94565b92915050565b60008060408385031215610fd757610fd6610f27565b5b6000610fe585828601610f75565b9250506020610ff685828601610fab565b9150509250929050565b60008115159050919050565b61101581611000565b82525050565b6000602082019050611030600083018461100c565b92915050565b61103f81610f8a565b82525050565b600060208201905061105a6000830184611036565b92915050565b60008060006060848603121561107957611078610f27565b5b600061108786828701610f75565b935050602061109886828701610f75565b92505060406110a986828701610fab565b9150509250925092565b600060ff82169050919050565b6110c9816110b3565b82525050565b60006020820190506110e460008301846110c0565b92915050565b600060208284031215611100576110ff610f27565b5b600061110e84828501610fab565b91505092915050565b60006020828403121561112d5761112c610f27565b5b600061113b84828501610f75565b91505092915050565b6000806040838503121561115b5761115a610f27565b5b600061116985828601610f75565b925050602061117a85828601610f75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111cb57607f821691505b6020821081036111de576111dd611184565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611240602883610e80565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112b082610f8a565b91506112bb83610f8a565b92508282039050818111156112d3576112d2611276565b5b92915050565b60006112e482610f8a565b91506112ef83610f8a565b925082820190508082111561130757611306611276565b5b92915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611369602483610e80565b91506113748261130d565b604082019050919050565b600060208201905081810360008301526113988161135c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113fb602583610e80565b91506114068261139f565b604082019050919050565b6000602082019050818103600083015261142a816113ee565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061148d602483610e80565b915061149882611431565b604082019050919050565b600060208201905081810360008301526114bc81611480565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061151f602283610e80565b915061152a826114c3565b604082019050919050565b6000602082019050818103600083015261154e81611512565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115b1602583610e80565b91506115bc82611555565b604082019050919050565b600060208201905081810360008301526115e0816115a4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611643602383610e80565b915061164e826115e7565b604082019050919050565b6000602082019050818103600083015261167281611636565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116d5602683610e80565b91506116e082611679565b604082019050919050565b60006020820190508181036000830152611704816116c8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611767602183610e80565b91506117728261170b565b604082019050919050565b600060208201905081810360008301526117968161175a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f9602283610e80565b91506118048261179d565b604082019050919050565b60006020820190508181036000830152611828816117ec565b905091905056fea2646970667358221220b3e120c2c8e9eacbe868d3804c576f392f4dcd4f29c05f1f6fcbee673f7f61cb64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000067a98cc897396e6f51cac5e875f144151598af4700000000000000000000000030895f7bacb90e4c421bc8b269e50b37fc00f8c0000000000000000000000000e928340806524e5055d0b73ff52d470acdee2392000000000000000000000000bbdd0e06578259316f1e4fd00aa4f5db7294c63200000000000000000000000000000000000000000000000000000000000000104d65746143726564697420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d43000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MetaCredit Token
Arg [1] : symbol_ (string): MC
Arg [2] : teamAddress_ (address): 0x67a98CC897396E6f51CAc5e875F144151598AF47
Arg [3] : foundationAddress_ (address): 0x30895F7BaCb90E4C421bC8b269e50b37Fc00f8c0
Arg [4] : ecoAddress_ (address): 0xE928340806524e5055d0B73ff52d470AcDEe2392
Arg [5] : mineAddress_ (address): 0xbBDd0e06578259316f1E4fD00AA4f5db7294C632

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000067a98cc897396e6f51cac5e875f144151598af47
Arg [3] : 00000000000000000000000030895f7bacb90e4c421bc8b269e50b37fc00f8c0
Arg [4] : 000000000000000000000000e928340806524e5055d0b73ff52d470acdee2392
Arg [5] : 000000000000000000000000bbdd0e06578259316f1e4fd00aa4f5db7294c632
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 4d65746143726564697420546f6b656e00000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4d43000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20151:471:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10491:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12631:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11584:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13282:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11435:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14113:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19400:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11755:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19810:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10701:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14831:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12095:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12333:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10491:91;10536:13;10569:5;10562:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10491:91;:::o;12631:169::-;12714:4;12731:39;12740:12;:10;:12::i;:::-;12754:7;12763:6;12731:8;:39::i;:::-;12788:4;12781:11;;12631:169;;;;:::o;11584:108::-;11645:7;11672:12;;11665:19;;11584:108;:::o;13282:422::-;13388:4;13405:36;13415:6;13423:9;13434:6;13405:9;:36::i;:::-;13454:24;13481:11;:19;13493:6;13481:19;;;;;;;;;;;;;;;:33;13501:12;:10;:12::i;:::-;13481:33;;;;;;;;;;;;;;;;13454:60;;13553:6;13533:16;:26;;13525:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13615:57;13624:6;13632:12;:10;:12::i;:::-;13665:6;13646:16;:25;;;;:::i;:::-;13615:8;:57::i;:::-;13692:4;13685:11;;;13282:422;;;;;:::o;11435:84::-;11484:5;11509:2;11502:9;;11435:84;:::o;14113:215::-;14201:4;14218:80;14227:12;:10;:12::i;:::-;14241:7;14287:10;14250:11;:25;14262:12;:10;:12::i;:::-;14250:25;;;;;;;;;;;;;;;:34;14276:7;14250:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14218:8;:80::i;:::-;14316:4;14309:11;;14113:215;;;;:::o;19400:91::-;19456:27;19462:12;:10;:12::i;:::-;19476:6;19456:5;:27::i;:::-;19400:91;:::o;11755:127::-;11829:7;11856:9;:18;11866:7;11856:18;;;;;;;;;;;;;;;;11849:25;;11755:127;;;:::o;19810:332::-;19887:24;19914:32;19924:7;19933:12;:10;:12::i;:::-;19914:9;:32::i;:::-;19887:59;;19985:6;19965:16;:26;;19957:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;20043:58;20052:7;20061:12;:10;:12::i;:::-;20094:6;20075:16;:25;;;;:::i;:::-;20043:8;:58::i;:::-;20112:22;20118:7;20127:6;20112:5;:22::i;:::-;19876:266;19810:332;;:::o;10701:95::-;10748:13;10781:7;10774:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10701:95;:::o;14831:377::-;14924:4;14941:24;14968:11;:25;14980:12;:10;:12::i;:::-;14968:25;;;;;;;;;;;;;;;:34;14994:7;14968:34;;;;;;;;;;;;;;;;14941:61;;15041:15;15021:16;:35;;15013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15109:67;15118:12;:10;:12::i;:::-;15132:7;15160:15;15141:16;:34;;;;:::i;:::-;15109:8;:67::i;:::-;15196:4;15189:11;;;14831:377;;;;:::o;12095:175::-;12181:4;12198:42;12208:12;:10;:12::i;:::-;12222:9;12233:6;12198:9;:42::i;:::-;12258:4;12251:11;;12095:175;;;;:::o;12333:151::-;12422:7;12449:11;:18;12461:5;12449:18;;;;;;;;;;;;;;;:27;12468:7;12449:27;;;;;;;;;;;;;;;;12442:34;;12333:151;;;;:::o;9372:98::-;9425:7;9452:10;9445:17;;9372:98;:::o;18187:346::-;18306:1;18289:19;;:5;:19;;;18281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18387:1;18368:21;;:7;:21;;;18360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18471:6;18441:11;:18;18453:5;18441:18;;;;;;;;;;;;;;;:27;18460:7;18441:27;;;;;;;;;;;;;;;:36;;;;18509:7;18493:32;;18502:5;18493:32;;;18518:6;18493:32;;;;;;:::i;:::-;;;;;;;;18187:346;;;:::o;15698:604::-;15822:1;15804:20;;:6;:20;;;15796:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15906:1;15885:23;;:9;:23;;;15877:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15961:47;15982:6;15990:9;16001:6;15961:20;:47::i;:::-;16021:21;16045:9;:17;16055:6;16045:17;;;;;;;;;;;;;;;;16021:41;;16098:6;16081:13;:23;;16073:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16194:6;16178:13;:22;;;;:::i;:::-;16158:9;:17;16168:6;16158:17;;;;;;;;;;;;;;;:42;;;;16235:6;16211:9;:20;16221:9;16211:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16276:9;16259:35;;16268:6;16259:35;;;16287:6;16259:35;;;;;;:::i;:::-;;;;;;;;15785:517;15698:604;;;:::o;17255:494::-;17358:1;17339:21;;:7;:21;;;17331:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17411:49;17432:7;17449:1;17453:6;17411:20;:49::i;:::-;17473:22;17498:9;:18;17508:7;17498:18;;;;;;;;;;;;;;;;17473:43;;17553:6;17535:14;:24;;17527:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17647:6;17630:14;:23;;;;:::i;:::-;17609:9;:18;17619:7;17609:18;;;;;;;;;;;;;;;:44;;;;17680:6;17664:12;;:22;;;;;;;:::i;:::-;;;;;;;;17730:1;17704:37;;17713:7;17704:37;;;17734:6;17704:37;;;;;;:::i;:::-;;;;;;;;17320:429;17255:494;;:::o;19136:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:227::-;6655:34;6651:1;6643:6;6639:14;6632:58;6724:10;6719:2;6711:6;6707:15;6700:35;6515:227;:::o;6748:366::-;6890:3;6911:67;6975:2;6970:3;6911:67;:::i;:::-;6904:74;;6987:93;7076:3;6987:93;:::i;:::-;7105:2;7100:3;7096:12;7089:19;;6748:366;;;:::o;7120:419::-;7286:4;7324:2;7313:9;7309:18;7301:26;;7373:9;7367:4;7363:20;7359:1;7348:9;7344:17;7337:47;7401:131;7527:4;7401:131;:::i;:::-;7393:139;;7120:419;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:194;7771:4;7791:20;7809:1;7791:20;:::i;:::-;7786:25;;7825:20;7843:1;7825:20;:::i;:::-;7820:25;;7869:1;7866;7862:9;7854:17;;7893:1;7887:4;7884:11;7881:37;;;7898:18;;:::i;:::-;7881:37;7731:194;;;;:::o;7931:191::-;7971:3;7990:20;8008:1;7990:20;:::i;:::-;7985:25;;8024:20;8042:1;8024:20;:::i;:::-;8019:25;;8067:1;8064;8060:9;8053:16;;8088:3;8085:1;8082:10;8079:36;;;8095:18;;:::i;:::-;8079:36;7931:191;;;;:::o;8128:223::-;8268:34;8264:1;8256:6;8252:14;8245:58;8337:6;8332:2;8324:6;8320:15;8313:31;8128:223;:::o;8357:366::-;8499:3;8520:67;8584:2;8579:3;8520:67;:::i;:::-;8513:74;;8596:93;8685:3;8596:93;:::i;:::-;8714:2;8709:3;8705:12;8698:19;;8357:366;;;:::o;8729:419::-;8895:4;8933:2;8922:9;8918:18;8910:26;;8982:9;8976:4;8972:20;8968:1;8957:9;8953:17;8946:47;9010:131;9136:4;9010:131;:::i;:::-;9002:139;;8729:419;;;:::o;9154:224::-;9294:34;9290:1;9282:6;9278:14;9271:58;9363:7;9358:2;9350:6;9346:15;9339:32;9154:224;:::o;9384:366::-;9526:3;9547:67;9611:2;9606:3;9547:67;:::i;:::-;9540:74;;9623:93;9712:3;9623:93;:::i;:::-;9741:2;9736:3;9732:12;9725:19;;9384:366;;;:::o;9756:419::-;9922:4;9960:2;9949:9;9945:18;9937:26;;10009:9;10003:4;9999:20;9995:1;9984:9;9980:17;9973:47;10037:131;10163:4;10037:131;:::i;:::-;10029:139;;9756:419;;;:::o;10181:223::-;10321:34;10317:1;10309:6;10305:14;10298:58;10390:6;10385:2;10377:6;10373:15;10366:31;10181:223;:::o;10410:366::-;10552:3;10573:67;10637:2;10632:3;10573:67;:::i;:::-;10566:74;;10649:93;10738:3;10649:93;:::i;:::-;10767:2;10762:3;10758:12;10751:19;;10410:366;;;:::o;10782:419::-;10948:4;10986:2;10975:9;10971:18;10963:26;;11035:9;11029:4;11025:20;11021:1;11010:9;11006:17;10999:47;11063:131;11189:4;11063:131;:::i;:::-;11055:139;;10782:419;;;:::o;11207:221::-;11347:34;11343:1;11335:6;11331:14;11324:58;11416:4;11411:2;11403:6;11399:15;11392:29;11207:221;:::o;11434:366::-;11576:3;11597:67;11661:2;11656:3;11597:67;:::i;:::-;11590:74;;11673:93;11762:3;11673:93;:::i;:::-;11791:2;11786:3;11782:12;11775:19;;11434:366;;;:::o;11806:419::-;11972:4;12010:2;11999:9;11995:18;11987:26;;12059:9;12053:4;12049:20;12045:1;12034:9;12030:17;12023:47;12087:131;12213:4;12087:131;:::i;:::-;12079:139;;11806:419;;;:::o;12231:224::-;12371:34;12367:1;12359:6;12355:14;12348:58;12440:7;12435:2;12427:6;12423:15;12416:32;12231:224;:::o;12461:366::-;12603:3;12624:67;12688:2;12683:3;12624:67;:::i;:::-;12617:74;;12700:93;12789:3;12700:93;:::i;:::-;12818:2;12813:3;12809:12;12802:19;;12461:366;;;:::o;12833:419::-;12999:4;13037:2;13026:9;13022:18;13014:26;;13086:9;13080:4;13076:20;13072:1;13061:9;13057:17;13050:47;13114:131;13240:4;13114:131;:::i;:::-;13106:139;;12833:419;;;:::o;13258:222::-;13398:34;13394:1;13386:6;13382:14;13375:58;13467:5;13462:2;13454:6;13450:15;13443:30;13258:222;:::o;13486:366::-;13628:3;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13486:366;;;:::o;13858:419::-;14024:4;14062:2;14051:9;14047:18;14039:26;;14111:9;14105:4;14101:20;14097:1;14086:9;14082:17;14075:47;14139:131;14265:4;14139:131;:::i;:::-;14131:139;;13858:419;;;:::o;14283:225::-;14423:34;14419:1;14411:6;14407:14;14400:58;14492:8;14487:2;14479:6;14475:15;14468:33;14283:225;:::o;14514:366::-;14656:3;14677:67;14741:2;14736:3;14677:67;:::i;:::-;14670:74;;14753:93;14842:3;14753:93;:::i;:::-;14871:2;14866:3;14862:12;14855:19;;14514:366;;;:::o;14886:419::-;15052:4;15090:2;15079:9;15075:18;15067:26;;15139:9;15133:4;15129:20;15125:1;15114:9;15110:17;15103:47;15167:131;15293:4;15167:131;:::i;:::-;15159:139;;14886:419;;;:::o;15311:220::-;15451:34;15447:1;15439:6;15435:14;15428:58;15520:3;15515:2;15507:6;15503:15;15496:28;15311:220;:::o;15537:366::-;15679:3;15700:67;15764:2;15759:3;15700:67;:::i;:::-;15693:74;;15776:93;15865:3;15776:93;:::i;:::-;15894:2;15889:3;15885:12;15878:19;;15537:366;;;:::o;15909:419::-;16075:4;16113:2;16102:9;16098:18;16090:26;;16162:9;16156:4;16152:20;16148:1;16137:9;16133:17;16126:47;16190:131;16316:4;16190:131;:::i;:::-;16182:139;;15909:419;;;:::o;16334:221::-;16474:34;16470:1;16462:6;16458:14;16451:58;16543:4;16538:2;16530:6;16526:15;16519:29;16334:221;:::o;16561:366::-;16703:3;16724:67;16788:2;16783:3;16724:67;:::i;:::-;16717:74;;16800:93;16889:3;16800:93;:::i;:::-;16918:2;16913:3;16909:12;16902:19;;16561:366;;;:::o;16933:419::-;17099:4;17137:2;17126:9;17122:18;17114:26;;17186:9;17180:4;17176:20;17172:1;17161:9;17157:17;17150:47;17214:131;17340:4;17214:131;:::i;:::-;17206:139;;16933:419;;;:::o

Swarm Source

ipfs://b3e120c2c8e9eacbe868d3804c576f392f4dcd4f29c05f1f6fcbee673f7f61cb

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.