MATIC Price: $1.01 (-0.17%)
Gas: 64 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
Approve301078972022-06-28 18:57:27639 days ago1656442647IN
StadiumGO: SGO Token
0 MATIC0.003541275
Transfer301055332022-06-28 17:29:46639 days ago1656437386IN
StadiumGO: SGO Token
0 MATIC0.0018528933.93580259
Approve298330302022-06-21 15:28:38646 days ago1655825318IN
StadiumGO: SGO Token
0 MATIC0.0008194830.00008692
Approve298330022022-06-21 15:27:38646 days ago1655825258IN
StadiumGO: SGO Token
0 MATIC0.0014164830.00007463
Approve283086582022-05-14 13:04:29684 days ago1652533469IN
StadiumGO: SGO Token
0 MATIC0.0014460430.62625542
Approve282051832022-05-11 21:56:48687 days ago1652306208IN
StadiumGO: SGO Token
0 MATIC0.01991631421.81277313
Approve281972692022-05-11 16:38:45687 days ago1652287125IN
StadiumGO: SGO Token
0 MATIC0.00448745164.27934551
Approve281972692022-05-11 16:38:45687 days ago1652287125IN
StadiumGO: SGO Token
0 MATIC0.00703848149.06989042
Transfer281966572022-05-11 16:15:33687 days ago1652285733IN
StadiumGO: SGO Token
0 MATIC0.01133562302.38015617
Transfer281966312022-05-11 16:14:41687 days ago1652285681IN
StadiumGO: SGO Token
0 MATIC0.01889898346.21128663
Transfer281921202022-05-11 13:28:54687 days ago1652275734IN
StadiumGO: SGO Token
0 MATIC0.071678391,312.79117182
Approve280439252022-05-07 19:30:43691 days ago1651951843IN
StadiumGO: SGO Token
0 MATIC0.0017676737.43807811
Approve280404322022-05-07 17:27:24691 days ago1651944444IN
StadiumGO: SGO Token
0 MATIC0.0008699831.84895667
Approve280403282022-05-07 17:23:52691 days ago1651944232IN
StadiumGO: SGO Token
0 MATIC0.0014575430.86975389
Approve280066102022-05-06 21:42:20692 days ago1651873340IN
StadiumGO: SGO Token
0 MATIC0.0016052533.99813505
Approve280005662022-05-06 18:05:24692 days ago1651860324IN
StadiumGO: SGO Token
0 MATIC0.002223447.08998707
Approve280001932022-05-06 17:52:38692 days ago1651859558IN
StadiumGO: SGO Token
0 MATIC0.0017510337.08571987
Transfer280001572022-05-06 17:51:22692 days ago1651859482IN
StadiumGO: SGO Token
0 MATIC0.0074976200
Approve279999872022-05-06 17:45:30692 days ago1651859130IN
StadiumGO: SGO Token
0 MATIC0.0018614639.4244821
Transfer279999532022-05-06 17:44:22692 days ago1651859062IN
StadiumGO: SGO Token
0 MATIC0.0109176200
Transfer279996902022-05-06 17:35:20692 days ago1651858520IN
StadiumGO: SGO Token
0 MATIC0.0031510257.7238314
Transfer279996162022-05-06 17:32:48692 days ago1651858368IN
StadiumGO: SGO Token
0 MATIC0.0109176200
Approve279990482022-05-06 17:11:08692 days ago1651857068IN
StadiumGO: SGO Token
0 MATIC0.0022664948.00260137
Transfer279967152022-05-06 15:44:14692 days ago1651851854IN
StadiumGO: SGO Token
0 MATIC0.0109176200
Approve279696682022-05-05 22:49:13693 days ago1651790953IN
StadiumGO: SGO Token
0 MATIC0.0014508330.72759251
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
StadiumGO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-01-20
*/

// File: contract-b731f0f9f6_flat.sol


// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
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");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contract-b731f0f9f6.sol


pragma solidity ^0.8.2;





/// @custom:security-contact [email protected]
contract StadiumGO is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("StadiumGO", "SGO") {
        _mint(msg.sender, 10000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f5374616469756d474f00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53474f000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000415565b508060049080519060200190620000af92919062000415565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200013460201b60201c565b6200013c60201b60201c565b6200012e33620001026200020260201b60201c565b600a6200011091906200064e565b6402540be4006200012291906200078b565b6200020b60201b60201c565b620008f6565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002759062000546565b60405180910390fd5b62000292600083836200038460201b60201c565b8060026000828254620002a6919062000596565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fd919062000596565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000364919062000568565b60405180910390a36200038060008383620003f460201b60201c565b5050565b62000394620003f960201b60201c565b15620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce9062000524565b60405180910390fd5b620003ef8383836200041060201b62000c7a1760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620004239062000803565b90600052602060002090601f01602090048101928262000447576000855562000493565b82601f106200046257805160ff191683800117855562000493565b8280016001018555821562000493579182015b828111156200049257825182559160200191906001019062000475565b5b509050620004a29190620004a6565b5090565b5b80821115620004c1576000816000905550600101620004a7565b5090565b6000620004d460108362000585565b9150620004e182620008a4565b602082019050919050565b6000620004fb601f8362000585565b91506200050882620008cd565b602082019050919050565b6200051e81620007ec565b82525050565b600060208201905081810360008301526200053f81620004c5565b9050919050565b600060208201905081810360008301526200056181620004ec565b9050919050565b60006020820190506200057f600083018462000513565b92915050565b600082825260208201905092915050565b6000620005a382620007ec565b9150620005b083620007ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005e857620005e762000839565b5b828201905092915050565b6000808291508390505b600185111562000645578086048111156200061d576200061c62000839565b5b60018516156200062d5780820291505b80810290506200063d8562000897565b9450620005fd565b94509492505050565b60006200065b82620007ec565b91506200066883620007f6565b9250620006977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200069f565b905092915050565b600082620006b1576001905062000784565b81620006c1576000905062000784565b8160018114620006da5760028114620006e5576200071b565b600191505062000784565b60ff841115620006fa57620006f962000839565b5b8360020a91508482111562000714576200071362000839565b5b5062000784565b5060208310610133831016604e8410600b8410161715620007555782820a9050838111156200074f576200074e62000839565b5b62000784565b620007648484846001620005f3565b925090508184048111156200077e576200077d62000839565b5b81810290505b9392505050565b60006200079882620007ec565b9150620007a583620007ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007e157620007e062000839565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200081c57607f821691505b6020821081141562000833576200083262000868565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6122fa80620009066000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611a81565b60405180910390f35b6101696004803603810190610164919061175c565b610455565b6040516101769190611a66565b60405180910390f35b610187610473565b6040516101949190611c83565b60405180910390f35b6101b760048036038101906101b29190611709565b61047d565b6040516101c49190611a66565b60405180910390f35b6101d5610575565b6040516101e29190611c9e565b60405180910390f35b6102056004803603810190610200919061175c565b61057e565b6040516102129190611a66565b60405180910390f35b61022361062a565b005b61023f600480360381019061023a919061175c565b6106b0565b005b61025b6004803603810190610256919061179c565b61073a565b005b61026561074e565b6040516102729190611a66565b60405180910390f35b6102956004803603810190610290919061169c565b610765565b6040516102a29190611c83565b60405180910390f35b6102b36107ad565b005b6102cf60048036038101906102ca919061175c565b610835565b005b6102d96108b0565b005b6102e3610936565b6040516102f09190611a4b565b60405180910390f35b610301610960565b60405161030e9190611a81565b60405180910390f35b610331600480360381019061032c919061175c565b6109f2565b60405161033e9190611a66565b60405180910390f35b610361600480360381019061035c919061175c565b610add565b60405161036e9190611a66565b60405180910390f35b610391600480360381019061038c91906116c9565b610afb565b60405161039e9190611c83565b60405180910390f35b6103c160048036038101906103bc919061169c565b610b82565b005b6060600380546103d290611de7565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611de7565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b6000610469610462610c7f565b8484610c87565b6001905092915050565b6000600254905090565b600061048a848484610e52565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611b83565b60405180910390fd5b61056985610561610c7f565b858403610c87565b60019150509392505050565b60006012905090565b600061062061058b610c7f565b848460016000610599610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b9190611cd5565b610c87565b6001905092915050565b610632610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610650610936565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611ba3565b60405180910390fd5b6106ae6110d3565b565b6106b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166106d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611ba3565b60405180910390fd5b6107368282611175565b5050565b61074b610745610c7f565b826112d5565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b5610c7f565b73ffffffffffffffffffffffffffffffffffffffff166107d3610936565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611ba3565b60405180910390fd5b61083360006114ac565b565b600061084883610843610c7f565b610afb565b90508181101561088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490611bc3565b60405180910390fd5b6108a183610899610c7f565b848403610c87565b6108ab83836112d5565b505050565b6108b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166108d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390611ba3565b60405180910390fd5b610934611572565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096f90611de7565b80601f016020809104026020016040519081016040528092919081815260200182805461099b90611de7565b80156109e85780601f106109bd576101008083540402835291602001916109e8565b820191906000526020600020905b8154815290600101906020018083116109cb57829003601f168201915b5050505050905090565b60008060016000610a01610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611c43565b60405180910390fd5b610ad2610ac9610c7f565b85858403610c87565b600191505092915050565b6000610af1610aea610c7f565b8484610e52565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b8a610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610ba8610936565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590611ba3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611b03565b60405180910390fd5b610c77816114ac565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90611c23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90611b23565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e459190611c83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990611c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611aa3565b60405180910390fd5b610f3d838383611615565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611b43565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110569190611cd5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ba9190611c83565b60405180910390a36110cd84848461166d565b50505050565b6110db61074e565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611ac3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61115e610c7f565b60405161116b9190611a4b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90611c63565b60405180910390fd5b6111f160008383611615565b80600260008282546112039190611cd5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112589190611cd5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112bd9190611c83565b60405180910390a36112d16000838361166d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90611be3565b60405180910390fd5b61135182600083611615565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90611ae3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461142e9190611d2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114939190611c83565b60405180910390a36114a78360008461166d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61157a61074e565b156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190611b63565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fe610c7f565b60405161160b9190611a4b565b60405180910390a1565b61161d61074e565b1561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490611b63565b60405180910390fd5b611668838383610c7a565b505050565b505050565b60008135905061168181612296565b92915050565b600081359050611696816122ad565b92915050565b6000602082840312156116b2576116b1611e77565b5b60006116c084828501611672565b91505092915050565b600080604083850312156116e0576116df611e77565b5b60006116ee85828601611672565b92505060206116ff85828601611672565b9150509250929050565b60008060006060848603121561172257611721611e77565b5b600061173086828701611672565b935050602061174186828701611672565b925050604061175286828701611687565b9150509250925092565b6000806040838503121561177357611772611e77565b5b600061178185828601611672565b925050602061179285828601611687565b9150509250929050565b6000602082840312156117b2576117b1611e77565b5b60006117c084828501611687565b91505092915050565b6117d281611d5f565b82525050565b6117e181611d71565b82525050565b60006117f282611cb9565b6117fc8185611cc4565b935061180c818560208601611db4565b61181581611e7c565b840191505092915050565b600061182d602383611cc4565b915061183882611e8d565b604082019050919050565b6000611850601483611cc4565b915061185b82611edc565b602082019050919050565b6000611873602283611cc4565b915061187e82611f05565b604082019050919050565b6000611896602683611cc4565b91506118a182611f54565b604082019050919050565b60006118b9602283611cc4565b91506118c482611fa3565b604082019050919050565b60006118dc602683611cc4565b91506118e782611ff2565b604082019050919050565b60006118ff601083611cc4565b915061190a82612041565b602082019050919050565b6000611922602883611cc4565b915061192d8261206a565b604082019050919050565b6000611945602083611cc4565b9150611950826120b9565b602082019050919050565b6000611968602483611cc4565b9150611973826120e2565b604082019050919050565b600061198b602183611cc4565b915061199682612131565b604082019050919050565b60006119ae602583611cc4565b91506119b982612180565b604082019050919050565b60006119d1602483611cc4565b91506119dc826121cf565b604082019050919050565b60006119f4602583611cc4565b91506119ff8261221e565b604082019050919050565b6000611a17601f83611cc4565b9150611a228261226d565b602082019050919050565b611a3681611d9d565b82525050565b611a4581611da7565b82525050565b6000602082019050611a6060008301846117c9565b92915050565b6000602082019050611a7b60008301846117d8565b92915050565b60006020820190508181036000830152611a9b81846117e7565b905092915050565b60006020820190508181036000830152611abc81611820565b9050919050565b60006020820190508181036000830152611adc81611843565b9050919050565b60006020820190508181036000830152611afc81611866565b9050919050565b60006020820190508181036000830152611b1c81611889565b9050919050565b60006020820190508181036000830152611b3c816118ac565b9050919050565b60006020820190508181036000830152611b5c816118cf565b9050919050565b60006020820190508181036000830152611b7c816118f2565b9050919050565b60006020820190508181036000830152611b9c81611915565b9050919050565b60006020820190508181036000830152611bbc81611938565b9050919050565b60006020820190508181036000830152611bdc8161195b565b9050919050565b60006020820190508181036000830152611bfc8161197e565b9050919050565b60006020820190508181036000830152611c1c816119a1565b9050919050565b60006020820190508181036000830152611c3c816119c4565b9050919050565b60006020820190508181036000830152611c5c816119e7565b9050919050565b60006020820190508181036000830152611c7c81611a0a565b9050919050565b6000602082019050611c986000830184611a2d565b92915050565b6000602082019050611cb36000830184611a3c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ce082611d9d565b9150611ceb83611d9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d2057611d1f611e19565b5b828201905092915050565b6000611d3682611d9d565b9150611d4183611d9d565b925082821015611d5457611d53611e19565b5b828203905092915050565b6000611d6a82611d7d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dd2578082015181840152602081019050611db7565b83811115611de1576000848401525b50505050565b60006002820490506001821680611dff57607f821691505b60208210811415611e1357611e12611e48565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61229f81611d5f565b81146122aa57600080fd5b50565b6122b681611d9d565b81146122c157600080fd5b5056fea264697066735822122099d65d983f57692f06b3f4869ab5f147a7fec02d08466450a8a18b0865e771f964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611a81565b60405180910390f35b6101696004803603810190610164919061175c565b610455565b6040516101769190611a66565b60405180910390f35b610187610473565b6040516101949190611c83565b60405180910390f35b6101b760048036038101906101b29190611709565b61047d565b6040516101c49190611a66565b60405180910390f35b6101d5610575565b6040516101e29190611c9e565b60405180910390f35b6102056004803603810190610200919061175c565b61057e565b6040516102129190611a66565b60405180910390f35b61022361062a565b005b61023f600480360381019061023a919061175c565b6106b0565b005b61025b6004803603810190610256919061179c565b61073a565b005b61026561074e565b6040516102729190611a66565b60405180910390f35b6102956004803603810190610290919061169c565b610765565b6040516102a29190611c83565b60405180910390f35b6102b36107ad565b005b6102cf60048036038101906102ca919061175c565b610835565b005b6102d96108b0565b005b6102e3610936565b6040516102f09190611a4b565b60405180910390f35b610301610960565b60405161030e9190611a81565b60405180910390f35b610331600480360381019061032c919061175c565b6109f2565b60405161033e9190611a66565b60405180910390f35b610361600480360381019061035c919061175c565b610add565b60405161036e9190611a66565b60405180910390f35b610391600480360381019061038c91906116c9565b610afb565b60405161039e9190611c83565b60405180910390f35b6103c160048036038101906103bc919061169c565b610b82565b005b6060600380546103d290611de7565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611de7565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b6000610469610462610c7f565b8484610c87565b6001905092915050565b6000600254905090565b600061048a848484610e52565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611b83565b60405180910390fd5b61056985610561610c7f565b858403610c87565b60019150509392505050565b60006012905090565b600061062061058b610c7f565b848460016000610599610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b9190611cd5565b610c87565b6001905092915050565b610632610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610650610936565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611ba3565b60405180910390fd5b6106ae6110d3565b565b6106b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166106d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611ba3565b60405180910390fd5b6107368282611175565b5050565b61074b610745610c7f565b826112d5565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b5610c7f565b73ffffffffffffffffffffffffffffffffffffffff166107d3610936565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611ba3565b60405180910390fd5b61083360006114ac565b565b600061084883610843610c7f565b610afb565b90508181101561088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490611bc3565b60405180910390fd5b6108a183610899610c7f565b848403610c87565b6108ab83836112d5565b505050565b6108b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166108d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390611ba3565b60405180910390fd5b610934611572565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096f90611de7565b80601f016020809104026020016040519081016040528092919081815260200182805461099b90611de7565b80156109e85780601f106109bd576101008083540402835291602001916109e8565b820191906000526020600020905b8154815290600101906020018083116109cb57829003601f168201915b5050505050905090565b60008060016000610a01610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611c43565b60405180910390fd5b610ad2610ac9610c7f565b85858403610c87565b600191505092915050565b6000610af1610aea610c7f565b8484610e52565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b8a610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610ba8610936565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590611ba3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611b03565b60405180910390fd5b610c77816114ac565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90611c23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90611b23565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e459190611c83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990611c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611aa3565b60405180910390fd5b610f3d838383611615565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611b43565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110569190611cd5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ba9190611c83565b60405180910390a36110cd84848461166d565b50505050565b6110db61074e565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611ac3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61115e610c7f565b60405161116b9190611a4b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90611c63565b60405180910390fd5b6111f160008383611615565b80600260008282546112039190611cd5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112589190611cd5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112bd9190611c83565b60405180910390a36112d16000838361166d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90611be3565b60405180910390fd5b61135182600083611615565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90611ae3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461142e9190611d2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114939190611c83565b60405180910390a36114a78360008461166d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61157a61074e565b156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190611b63565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fe610c7f565b60405161160b9190611a4b565b60405180910390a1565b61161d61074e565b1561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490611b63565b60405180910390fd5b611668838383610c7a565b505050565b505050565b60008135905061168181612296565b92915050565b600081359050611696816122ad565b92915050565b6000602082840312156116b2576116b1611e77565b5b60006116c084828501611672565b91505092915050565b600080604083850312156116e0576116df611e77565b5b60006116ee85828601611672565b92505060206116ff85828601611672565b9150509250929050565b60008060006060848603121561172257611721611e77565b5b600061173086828701611672565b935050602061174186828701611672565b925050604061175286828701611687565b9150509250925092565b6000806040838503121561177357611772611e77565b5b600061178185828601611672565b925050602061179285828601611687565b9150509250929050565b6000602082840312156117b2576117b1611e77565b5b60006117c084828501611687565b91505092915050565b6117d281611d5f565b82525050565b6117e181611d71565b82525050565b60006117f282611cb9565b6117fc8185611cc4565b935061180c818560208601611db4565b61181581611e7c565b840191505092915050565b600061182d602383611cc4565b915061183882611e8d565b604082019050919050565b6000611850601483611cc4565b915061185b82611edc565b602082019050919050565b6000611873602283611cc4565b915061187e82611f05565b604082019050919050565b6000611896602683611cc4565b91506118a182611f54565b604082019050919050565b60006118b9602283611cc4565b91506118c482611fa3565b604082019050919050565b60006118dc602683611cc4565b91506118e782611ff2565b604082019050919050565b60006118ff601083611cc4565b915061190a82612041565b602082019050919050565b6000611922602883611cc4565b915061192d8261206a565b604082019050919050565b6000611945602083611cc4565b9150611950826120b9565b602082019050919050565b6000611968602483611cc4565b9150611973826120e2565b604082019050919050565b600061198b602183611cc4565b915061199682612131565b604082019050919050565b60006119ae602583611cc4565b91506119b982612180565b604082019050919050565b60006119d1602483611cc4565b91506119dc826121cf565b604082019050919050565b60006119f4602583611cc4565b91506119ff8261221e565b604082019050919050565b6000611a17601f83611cc4565b9150611a228261226d565b602082019050919050565b611a3681611d9d565b82525050565b611a4581611da7565b82525050565b6000602082019050611a6060008301846117c9565b92915050565b6000602082019050611a7b60008301846117d8565b92915050565b60006020820190508181036000830152611a9b81846117e7565b905092915050565b60006020820190508181036000830152611abc81611820565b9050919050565b60006020820190508181036000830152611adc81611843565b9050919050565b60006020820190508181036000830152611afc81611866565b9050919050565b60006020820190508181036000830152611b1c81611889565b9050919050565b60006020820190508181036000830152611b3c816118ac565b9050919050565b60006020820190508181036000830152611b5c816118cf565b9050919050565b60006020820190508181036000830152611b7c816118f2565b9050919050565b60006020820190508181036000830152611b9c81611915565b9050919050565b60006020820190508181036000830152611bbc81611938565b9050919050565b60006020820190508181036000830152611bdc8161195b565b9050919050565b60006020820190508181036000830152611bfc8161197e565b9050919050565b60006020820190508181036000830152611c1c816119a1565b9050919050565b60006020820190508181036000830152611c3c816119c4565b9050919050565b60006020820190508181036000830152611c5c816119e7565b9050919050565b60006020820190508181036000830152611c7c81611a0a565b9050919050565b6000602082019050611c986000830184611a2d565b92915050565b6000602082019050611cb36000830184611a3c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ce082611d9d565b9150611ceb83611d9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d2057611d1f611e19565b5b828201905092915050565b6000611d3682611d9d565b9150611d4183611d9d565b925082821015611d5457611d53611e19565b5b828203905092915050565b6000611d6a82611d7d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dd2578082015181840152602081019050611db7565b83811115611de1576000848401525b50505050565b60006002820490506001821680611dff57607f821691505b60208210811415611e1357611e12611e48565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61229f81611d5f565b81146122aa57600080fd5b50565b6122b681611d9d565b81146122c157600080fd5b5056fea264697066735822122099d65d983f57692f06b3f4869ab5f147a7fec02d08466450a8a18b0865e771f964736f6c63430008070033

Deployed Bytecode Sourcemap

23028:632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11582:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13749:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12702:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14400:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12544:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15301:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23282:65;;;:::i;:::-;;23355:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22117:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4616:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12873:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2661:103;;;:::i;:::-;;22527:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23213:61;;;:::i;:::-;;2010:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11801:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16019:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13213:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13451:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2919:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11582:100;11636:13;11669:5;11662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11582:100;:::o;13749:169::-;13832:4;13849:39;13858:12;:10;:12::i;:::-;13872:7;13881:6;13849:8;:39::i;:::-;13906:4;13899:11;;13749:169;;;;:::o;12702:108::-;12763:7;12790:12;;12783:19;;12702:108;:::o;14400:492::-;14540:4;14557:36;14567:6;14575:9;14586:6;14557:9;:36::i;:::-;14606:24;14633:11;:19;14645:6;14633:19;;;;;;;;;;;;;;;:33;14653:12;:10;:12::i;:::-;14633:33;;;;;;;;;;;;;;;;14606:60;;14705:6;14685:16;:26;;14677:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14792:57;14801:6;14809:12;:10;:12::i;:::-;14842:6;14823:16;:25;14792:8;:57::i;:::-;14880:4;14873:11;;;14400:492;;;;;:::o;12544:93::-;12602:5;12627:2;12620:9;;12544:93;:::o;15301:215::-;15389:4;15406:80;15415:12;:10;:12::i;:::-;15429:7;15475:10;15438:11;:25;15450:12;:10;:12::i;:::-;15438:25;;;;;;;;;;;;;;;:34;15464:7;15438:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15406:8;:80::i;:::-;15504:4;15497:11;;15301:215;;;;:::o;23282:65::-;2241:12;:10;:12::i;:::-;2230:23;;:7;:5;:7::i;:::-;:23;;;2222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23329:10:::1;:8;:10::i;:::-;23282:65::o:0;23355:95::-;2241:12;:10;:12::i;:::-;2230:23;;:7;:5;:7::i;:::-;:23;;;2222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23425:17:::1;23431:2;23435:6;23425:5;:17::i;:::-;23355:95:::0;;:::o;22117:91::-;22173:27;22179:12;:10;:12::i;:::-;22193:6;22173:5;:27::i;:::-;22117:91;:::o;4616:86::-;4663:4;4687:7;;;;;;;;;;;4680:14;;4616:86;:::o;12873:127::-;12947:7;12974:9;:18;12984:7;12974:18;;;;;;;;;;;;;;;;12967:25;;12873:127;;;:::o;2661:103::-;2241:12;:10;:12::i;:::-;2230:23;;:7;:5;:7::i;:::-;:23;;;2222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2726:30:::1;2753:1;2726:18;:30::i;:::-;2661:103::o:0;22527:368::-;22604:24;22631:32;22641:7;22650:12;:10;:12::i;:::-;22631:9;:32::i;:::-;22604:59;;22702:6;22682:16;:26;;22674:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22785:58;22794:7;22803:12;:10;:12::i;:::-;22836:6;22817:16;:25;22785:8;:58::i;:::-;22865:22;22871:7;22880:6;22865:5;:22::i;:::-;22593:302;22527:368;;:::o;23213:61::-;2241:12;:10;:12::i;:::-;2230:23;;:7;:5;:7::i;:::-;:23;;;2222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23258:8:::1;:6;:8::i;:::-;23213:61::o:0;2010:87::-;2056:7;2083:6;;;;;;;;;;;2076:13;;2010:87;:::o;11801:104::-;11857:13;11890:7;11883:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11801:104;:::o;16019:413::-;16112:4;16129:24;16156:11;:25;16168:12;:10;:12::i;:::-;16156:25;;;;;;;;;;;;;;;:34;16182:7;16156:34;;;;;;;;;;;;;;;;16129:61;;16229:15;16209:16;:35;;16201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16322:67;16331:12;:10;:12::i;:::-;16345:7;16373:15;16354:16;:34;16322:8;:67::i;:::-;16420:4;16413:11;;;16019:413;;;;:::o;13213:175::-;13299:4;13316:42;13326:12;:10;:12::i;:::-;13340:9;13351:6;13316:9;:42::i;:::-;13376:4;13369:11;;13213:175;;;;:::o;13451:151::-;13540:7;13567:11;:18;13579:5;13567:18;;;;;;;;;;;;;;;:27;13586:7;13567:27;;;;;;;;;;;;;;;;13560:34;;13451:151;;;;:::o;2919:201::-;2241:12;:10;:12::i;:::-;2230:23;;:7;:5;:7::i;:::-;:23;;;2222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3028:1:::1;3008:22;;:8;:22;;;;3000:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3084:28;3103:8;3084:18;:28::i;:::-;2919:201:::0;:::o;20683:125::-;;;;:::o;728:98::-;781:7;808:10;801:17;;728:98;:::o;19703:380::-;19856:1;19839:19;;:5;:19;;;;19831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19937:1;19918:21;;:7;:21;;;;19910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20021:6;19991:11;:18;20003:5;19991:18;;;;;;;;;;;;;;;:27;20010:7;19991:27;;;;;;;;;;;;;;;:36;;;;20059:7;20043:32;;20052:5;20043:32;;;20068:6;20043:32;;;;;;:::i;:::-;;;;;;;;19703:380;;;:::o;16922:733::-;17080:1;17062:20;;:6;:20;;;;17054:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17164:1;17143:23;;:9;:23;;;;17135:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17219:47;17240:6;17248:9;17259:6;17219:20;:47::i;:::-;17279:21;17303:9;:17;17313:6;17303:17;;;;;;;;;;;;;;;;17279:41;;17356:6;17339:13;:23;;17331:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17477:6;17461:13;:22;17441:9;:17;17451:6;17441:17;;;;;;;;;;;;;;;:42;;;;17529:6;17505:9;:20;17515:9;17505:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17570:9;17553:35;;17562:6;17553:35;;;17581:6;17553:35;;;;;;:::i;:::-;;;;;;;;17601:46;17621:6;17629:9;17640:6;17601:19;:46::i;:::-;17043:612;16922:733;;;:::o;5675:120::-;5219:8;:6;:8::i;:::-;5211:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5744:5:::1;5734:7;;:15;;;;;;;;;;;;;;;;;;5765:22;5774:12;:10;:12::i;:::-;5765:22;;;;;;:::i;:::-;;;;;;;;5675:120::o:0;17942:399::-;18045:1;18026:21;;:7;:21;;;;18018:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18096:49;18125:1;18129:7;18138:6;18096:20;:49::i;:::-;18174:6;18158:12;;:22;;;;;;;:::i;:::-;;;;;;;;18213:6;18191:9;:18;18201:7;18191:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18256:7;18235:37;;18252:1;18235:37;;;18265:6;18235:37;;;;;;:::i;:::-;;;;;;;;18285:48;18313:1;18317:7;18326:6;18285:19;:48::i;:::-;17942:399;;:::o;18674:591::-;18777:1;18758:21;;:7;:21;;;;18750:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18830:49;18851:7;18868:1;18872:6;18830:20;:49::i;:::-;18892:22;18917:9;:18;18927:7;18917:18;;;;;;;;;;;;;;;;18892:43;;18972:6;18954:14;:24;;18946:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19091:6;19074:14;:23;19053:9;:18;19063:7;19053:18;;;;;;;;;;;;;;;:44;;;;19135:6;19119:12;;:22;;;;;;;:::i;:::-;;;;;;;;19185:1;19159:37;;19168:7;19159:37;;;19189:6;19159:37;;;;;;:::i;:::-;;;;;;;;19209:48;19229:7;19246:1;19250:6;19209:19;:48::i;:::-;18739:526;18674:591;;:::o;3280:191::-;3354:16;3373:6;;;;;;;;;;;3354:25;;3399:8;3390:6;;:17;;;;;;;;;;;;;;;;;;3454:8;3423:40;;3444:8;3423:40;;;;;;;;;;;;3343:128;3280:191;:::o;5416:118::-;4942:8;:6;:8::i;:::-;4941:9;4933:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5486:4:::1;5476:7;;:14;;;;;;;;;;;;;;;;;;5506:20;5513:12;:10;:12::i;:::-;5506:20;;;;;;:::i;:::-;;;;;;;;5416:118::o:0;23458:199::-;4942:8;:6;:8::i;:::-;4941:9;4933:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23605:44:::1;23632:4;23638:2;23642:6;23605:26;:44::i;:::-;23458:199:::0;;;:::o;21412:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:::-;8511:3;8532:67;8596:2;8591:3;8532:67;:::i;:::-;8525:74;;8608:93;8697:3;8608:93;:::i;:::-;8726:2;8721:3;8717:12;8710:19;;8369:366;;;:::o;8741:118::-;8828:24;8846:5;8828:24;:::i;:::-;8823:3;8816:37;8741:118;;:::o;8865:112::-;8948:22;8964:5;8948:22;:::i;:::-;8943:3;8936:35;8865:112;;:::o;8983:222::-;9076:4;9114:2;9103:9;9099:18;9091:26;;9127:71;9195:1;9184:9;9180:17;9171:6;9127:71;:::i;:::-;8983:222;;;;:::o;9211:210::-;9298:4;9336:2;9325:9;9321:18;9313:26;;9349:65;9411:1;9400:9;9396:17;9387:6;9349:65;:::i;:::-;9211:210;;;;:::o;9427:313::-;9540:4;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:78;9728:4;9719:6;9655:78;:::i;:::-;9647:86;;9427:313;;;;:::o;9746:419::-;9912:4;9950:2;9939:9;9935:18;9927:26;;9999:9;9993:4;9989:20;9985:1;9974:9;9970:17;9963:47;10027:131;10153:4;10027:131;:::i;:::-;10019:139;;9746:419;;;:::o;10171:::-;10337:4;10375:2;10364:9;10360:18;10352:26;;10424:9;10418:4;10414:20;10410:1;10399:9;10395:17;10388:47;10452:131;10578:4;10452:131;:::i;:::-;10444:139;;10171:419;;;:::o;10596:::-;10762:4;10800:2;10789:9;10785:18;10777:26;;10849:9;10843:4;10839:20;10835:1;10824:9;10820:17;10813:47;10877:131;11003:4;10877:131;:::i;:::-;10869:139;;10596:419;;;:::o;11021:::-;11187:4;11225:2;11214:9;11210:18;11202:26;;11274:9;11268:4;11264:20;11260:1;11249:9;11245:17;11238:47;11302:131;11428:4;11302:131;:::i;:::-;11294:139;;11021:419;;;:::o;11446:::-;11612:4;11650:2;11639:9;11635:18;11627:26;;11699:9;11693:4;11689:20;11685:1;11674:9;11670:17;11663:47;11727:131;11853:4;11727:131;:::i;:::-;11719:139;;11446:419;;;:::o;11871:::-;12037:4;12075:2;12064:9;12060:18;12052:26;;12124:9;12118:4;12114:20;12110:1;12099:9;12095:17;12088:47;12152:131;12278:4;12152:131;:::i;:::-;12144:139;;11871:419;;;:::o;12296:::-;12462:4;12500:2;12489:9;12485:18;12477:26;;12549:9;12543:4;12539:20;12535:1;12524:9;12520:17;12513:47;12577:131;12703:4;12577:131;:::i;:::-;12569:139;;12296:419;;;:::o;12721:::-;12887:4;12925:2;12914:9;12910:18;12902:26;;12974:9;12968:4;12964:20;12960:1;12949:9;12945:17;12938:47;13002:131;13128:4;13002:131;:::i;:::-;12994:139;;12721:419;;;:::o;13146:::-;13312:4;13350:2;13339:9;13335:18;13327:26;;13399:9;13393:4;13389:20;13385:1;13374:9;13370:17;13363:47;13427:131;13553:4;13427:131;:::i;:::-;13419:139;;13146:419;;;:::o;13571:::-;13737:4;13775:2;13764:9;13760:18;13752:26;;13824:9;13818:4;13814:20;13810:1;13799:9;13795:17;13788:47;13852:131;13978:4;13852:131;:::i;:::-;13844:139;;13571:419;;;:::o;13996:::-;14162:4;14200:2;14189:9;14185:18;14177:26;;14249:9;14243:4;14239:20;14235:1;14224:9;14220:17;14213:47;14277:131;14403:4;14277:131;:::i;:::-;14269:139;;13996:419;;;:::o;14421:::-;14587:4;14625:2;14614:9;14610:18;14602:26;;14674:9;14668:4;14664:20;14660:1;14649:9;14645:17;14638:47;14702:131;14828:4;14702:131;:::i;:::-;14694:139;;14421:419;;;:::o;14846:::-;15012:4;15050:2;15039:9;15035:18;15027:26;;15099:9;15093:4;15089:20;15085:1;15074:9;15070:17;15063:47;15127:131;15253:4;15127:131;:::i;:::-;15119:139;;14846:419;;;:::o;15271:::-;15437:4;15475:2;15464:9;15460:18;15452:26;;15524:9;15518:4;15514:20;15510:1;15499:9;15495:17;15488:47;15552:131;15678:4;15552:131;:::i;:::-;15544:139;;15271:419;;;:::o;15696:::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15696:419;;;:::o;16121:222::-;16214:4;16252:2;16241:9;16237:18;16229:26;;16265:71;16333:1;16322:9;16318:17;16309:6;16265:71;:::i;:::-;16121:222;;;;:::o;16349:214::-;16438:4;16476:2;16465:9;16461:18;16453:26;;16489:67;16553:1;16542:9;16538:17;16529:6;16489:67;:::i;:::-;16349:214;;;;:::o;16650:99::-;16702:6;16736:5;16730:12;16720:22;;16650:99;;;:::o;16755:169::-;16839:11;16873:6;16868:3;16861:19;16913:4;16908:3;16904:14;16889:29;;16755:169;;;;:::o;16930:305::-;16970:3;16989:20;17007:1;16989:20;:::i;:::-;16984:25;;17023:20;17041:1;17023:20;:::i;:::-;17018:25;;17177:1;17109:66;17105:74;17102:1;17099:81;17096:107;;;17183:18;;:::i;:::-;17096:107;17227:1;17224;17220:9;17213:16;;16930:305;;;;:::o;17241:191::-;17281:4;17301:20;17319:1;17301:20;:::i;:::-;17296:25;;17335:20;17353:1;17335:20;:::i;:::-;17330:25;;17374:1;17371;17368:8;17365:34;;;17379:18;;:::i;:::-;17365:34;17424:1;17421;17417:9;17409:17;;17241:191;;;;:::o;17438:96::-;17475:7;17504:24;17522:5;17504:24;:::i;:::-;17493:35;;17438:96;;;:::o;17540:90::-;17574:7;17617:5;17610:13;17603:21;17592:32;;17540:90;;;:::o;17636:126::-;17673:7;17713:42;17706:5;17702:54;17691:65;;17636:126;;;:::o;17768:77::-;17805:7;17834:5;17823:16;;17768:77;;;:::o;17851:86::-;17886:7;17926:4;17919:5;17915:16;17904:27;;17851:86;;;:::o;17943:307::-;18011:1;18021:113;18035:6;18032:1;18029:13;18021:113;;;18120:1;18115:3;18111:11;18105:18;18101:1;18096:3;18092:11;18085:39;18057:2;18054:1;18050:10;18045:15;;18021:113;;;18152:6;18149:1;18146:13;18143:101;;;18232:1;18223:6;18218:3;18214:16;18207:27;18143:101;17992:258;17943:307;;;:::o;18256:320::-;18300:6;18337:1;18331:4;18327:12;18317:22;;18384:1;18378:4;18374:12;18405:18;18395:81;;18461:4;18453:6;18449:17;18439:27;;18395:81;18523:2;18515:6;18512:14;18492:18;18489:38;18486:84;;;18542:18;;:::i;:::-;18486:84;18307:269;18256:320;;;:::o;18582:180::-;18630:77;18627:1;18620:88;18727:4;18724:1;18717:15;18751:4;18748:1;18741:15;18768:180;18816:77;18813:1;18806:88;18913:4;18910:1;18903:15;18937:4;18934:1;18927:15;19077:117;19186:1;19183;19176:12;19200:102;19241:6;19292:2;19288:7;19283:2;19276:5;19272:14;19268:28;19258:38;;19200:102;;;:::o;19308:222::-;19448:34;19444:1;19436:6;19432:14;19425:58;19517:5;19512:2;19504:6;19500:15;19493:30;19308:222;:::o;19536:170::-;19676:22;19672:1;19664:6;19660:14;19653:46;19536:170;:::o;19712:221::-;19852:34;19848:1;19840:6;19836:14;19829:58;19921:4;19916:2;19908:6;19904:15;19897:29;19712:221;:::o;19939:225::-;20079:34;20075:1;20067:6;20063:14;20056:58;20148:8;20143:2;20135:6;20131:15;20124:33;19939:225;:::o;20170:221::-;20310:34;20306:1;20298:6;20294:14;20287:58;20379:4;20374:2;20366:6;20362:15;20355:29;20170:221;:::o;20397:225::-;20537:34;20533:1;20525:6;20521:14;20514:58;20606:8;20601:2;20593:6;20589:15;20582:33;20397:225;:::o;20628:166::-;20768:18;20764:1;20756:6;20752:14;20745:42;20628:166;:::o;20800:227::-;20940:34;20936:1;20928:6;20924:14;20917:58;21009:10;21004:2;20996:6;20992:15;20985:35;20800:227;:::o;21033:182::-;21173:34;21169:1;21161:6;21157:14;21150:58;21033:182;:::o;21221:223::-;21361:34;21357:1;21349:6;21345:14;21338:58;21430:6;21425:2;21417:6;21413:15;21406:31;21221:223;:::o;21450:220::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:3;21654:2;21646:6;21642:15;21635:28;21450:220;:::o;21676:224::-;21816:34;21812:1;21804:6;21800:14;21793:58;21885:7;21880:2;21872:6;21868:15;21861:32;21676:224;:::o;21906:223::-;22046:34;22042:1;22034:6;22030:14;22023:58;22115:6;22110:2;22102:6;22098:15;22091:31;21906:223;:::o;22135:224::-;22275:34;22271:1;22263:6;22259:14;22252:58;22344:7;22339:2;22331:6;22327:15;22320:32;22135:224;:::o;22365:181::-;22505:33;22501:1;22493:6;22489:14;22482:57;22365:181;:::o;22552:122::-;22625:24;22643:5;22625:24;:::i;:::-;22618:5;22615:35;22605:63;;22664:1;22661;22654:12;22605:63;22552:122;:::o;22680:::-;22753:24;22771:5;22753:24;:::i;:::-;22746:5;22743:35;22733:63;;22792:1;22789;22782:12;22733:63;22680:122;:::o

Swarm Source

ipfs://99d65d983f57692f06b3f4869ab5f147a7fec02d08466450a8a18b0865e771f9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

StadiumGO! provides financial crypto-assets for raising funds with the public to generate funding for clubs, at low cost, generating profit sharing with the investing public.

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.