MATIC Price: $0.98 (-8.73%)
Gas: 64 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Value
Transfer548265982024-03-19 3:27:0410 mins ago1710818824IN
Sunflower Land: SFL Token
0 MATIC0.0013709441.89280231
Approve548263352024-03-19 3:17:1220 mins ago1710818232IN
Sunflower Land: SFL Token
0 MATIC0.00213645.22657951
Approve548260712024-03-19 3:07:5229 mins ago1710817672IN
Sunflower Land: SFL Token
0 MATIC0.002808959.85431595
Transfer548255432024-03-19 2:48:0649 mins ago1710816486IN
Sunflower Land: SFL Token
0 MATIC0.00672868179.31209006
Approve548244132024-03-19 2:06:561 hr ago1710814016IN
Sunflower Land: SFL Token
0 MATIC0.00486829103.07841676
Approve548238772024-03-19 1:46:541 hr ago1710812814IN
Sunflower Land: SFL Token
0 MATIC0.00318255106.60762954
Approve548237862024-03-19 1:43:401 hr ago1710812620IN
Sunflower Land: SFL Token
0 MATIC0.00609954129.14825294
Approve548237282024-03-19 1:41:381 hr ago1710812498IN
Sunflower Land: SFL Token
0 MATIC0.00455106168.8267656
Approve548237202024-03-19 1:41:201 hr ago1710812480IN
Sunflower Land: SFL Token
0 MATIC0.00749458159.94580739
Approve548234722024-03-19 1:31:342 hrs ago1710811894IN
Sunflower Land: SFL Token
0 MATIC0.00722641153.90732054
Transfer548230252024-03-19 1:15:122 hrs ago1710810912IN
Sunflower Land: SFL Token
0 MATIC0.00308182.13174013
Approve548229732024-03-19 1:13:202 hrs ago1710810800IN
Sunflower Land: SFL Token
0 MATIC0.004430793.81319715
Approve548227862024-03-19 1:05:402 hrs ago1710810340IN
Sunflower Land: SFL Token
0 MATIC0.0014807731.54536991
Approve548227272024-03-19 1:03:322 hrs ago1710810212IN
Sunflower Land: SFL Token
0 MATIC0.0014316230.50616157
Transfer548226272024-03-19 1:00:002 hrs ago1710810000IN
Sunflower Land: SFL Token
0 MATIC0.0017272731.63447535
Transfer548223472024-03-19 0:49:272 hrs ago1710809367IN
Sunflower Land: SFL Token
0 MATIC0.0009817530.00025565
Approve548219802024-03-19 0:35:553 hrs ago1710808555IN
Sunflower Land: SFL Token
0 MATIC0.0014150730.00000086
Approve548219582024-03-19 0:35:093 hrs ago1710808509IN
Sunflower Land: SFL Token
0 MATIC0.0014085930.00000087
Approve548218662024-03-19 0:31:533 hrs ago1710808313IN
Sunflower Land: SFL Token
0 MATIC0.0014168730.00000089
Approve548215552024-03-19 0:20:213 hrs ago1710807621IN
Sunflower Land: SFL Token
0 MATIC0.0016199534.30000001
Transfer548214122024-03-19 0:15:173 hrs ago1710807317IN
Sunflower Land: SFL Token
0 MATIC0.0016380330.00000007
Approve548210882024-03-19 0:03:393 hrs ago1710806619IN
Sunflower Land: SFL Token
0 MATIC0.0014150730.00000006
Transfer548209932024-03-19 0:00:173 hrs ago1710806417IN
Sunflower Land: SFL Token
0 MATIC0.0015694831.50000005
Approve548205952024-03-18 23:45:293 hrs ago1710805529IN
Sunflower Land: SFL Token
0 MATIC0.0008955930.00000002
Approve548205282024-03-18 23:43:073 hrs ago1710805387IN
Sunflower Land: SFL Token
0 MATIC0.0014168730.00000002
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
SunflowerLandToken

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-03-14
*/

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts 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: contracts/GameOwner.sol


pragma solidity ^0.8.0;



contract GameOwner is Ownable {
  mapping (address => bool) gameRoles;

  function addGameRole(address _game) public onlyOwner {
      gameRoles[_game] = true;
  }

  function removeGameRole(address _game) public onlyOwner {
      gameRoles[_game] = false;
  }

  modifier onlyGame {
    require(gameRoles[_msgSender()] == true, "SunflowerLandGame: You are not the game");
    _;
  }

}
// File: @openzeppelin/contracts/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/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 `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);

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _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;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: contracts/Token.sol


pragma solidity ^0.8.0;



contract SunflowerLandToken is ERC20Pausable, GameOwner {
  address private team;

  constructor() payable ERC20("Sunflower Land", "SFL") {
      team = msg.sender;
      gameRoles[msg.sender] = true;
  }

  function passTeamRole(address _team) public onlyOwner returns (bool) {
    team = _team;

    return true;
  }
  
  function gameMint(address account, uint256 amount) public onlyGame returns (bool){
	_mint(account, amount);
    return true;
 }

  function gameBurn(address account, uint256 amount) public onlyGame returns (bool){
	_burn(account, amount);
    return true;
  }

  function gameTransfer(address from, address to, uint256 amount) public onlyGame returns (bool){
	_transfer(from, to, amount);
    return true;
  }

  function gameApprove(address spender, uint256 amount) public onlyGame returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"_game","type":"address"}],"name":"addGameRole","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":"amount","type":"uint256"}],"name":"gameApprove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gameBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gameMint","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":"gameTransfer","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":"_team","type":"address"}],"name":"passTeamRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_game","type":"address"}],"name":"removeGameRole","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526040518060400160405280600e81526020017f53756e666c6f776572204c616e640000000000000000000000000000000000008152506040518060400160405280600381526020017f53464c00000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000889291906200024c565b508060049080519060200190620000a19291906200024c565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d36200017e60201b60201c565b6200018660201b60201c565b33600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000361565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025a90620002fc565b90600052602060002090601f0160209004810192826200027e5760008555620002ca565b82601f106200029957805160ff1916838001178555620002ca565b82800160010185558215620002ca579182015b82811115620002c9578251825591602001919060010190620002ac565b5b509050620002d99190620002dd565b5090565b5b80821115620002f8576000816000905550600101620002de565b5090565b600060028204905060018216806200031557607f821691505b602082108114156200032c576200032b62000332565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6124d780620003716000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461038d578063a8a99ce8146103bd578063a9059cbb146103ed578063dd62ed3e1461041d578063e3257eab1461044d578063f2fde38b1461047d57610142565b806370a08231146102fb578063715018a61461032b5780637323b8fa146103355780638da5cb5b1461035157806395d89b411461036f57610142565b8063271292f51161010a578063271292f5146101ff578063313ce5671461022f578063395093511461024d5780634eb902991461027d5780635c975abb146102ad57806362252bc3146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806319892b51146101b357806323b872dd146101cf575b600080fd5b61014f610499565b60405161015c9190611ca7565b60405180910390f35b61017f600480360381019061017a91906119d2565b61052b565b60405161018c9190611c8c565b60405180910390f35b61019d61054e565b6040516101aa9190611e89565b60405180910390f35b6101cd60048036038101906101c89190611912565b610558565b005b6101e960048036038101906101e4919061197f565b61062f565b6040516101f69190611c8c565b60405180910390f35b610219600480360381019061021491906119d2565b61065e565b6040516102269190611c8c565b60405180910390f35b61023761070e565b6040516102449190611ea4565b60405180910390f35b610267600480360381019061026291906119d2565b610717565b6040516102749190611c8c565b60405180910390f35b610297600480360381019061029291906119d2565b6107c1565b6040516102a49190611c8c565b60405180910390f35b6102b5610871565b6040516102c29190611c8c565b60405180910390f35b6102e560048036038101906102e0919061197f565b610888565b6040516102f29190611c8c565b60405180910390f35b61031560048036038101906103109190611912565b61093a565b6040516103229190611e89565b60405180910390f35b610333610982565b005b61034f600480360381019061034a9190611912565b610a0a565b005b610359610ae1565b6040516103669190611c71565b60405180910390f35b610377610b0b565b6040516103849190611ca7565b60405180910390f35b6103a760048036038101906103a291906119d2565b610b9d565b6040516103b49190611c8c565b60405180910390f35b6103d760048036038101906103d291906119d2565b610c87565b6040516103e49190611c8c565b60405180910390f35b610407600480360381019061040291906119d2565b610d3f565b6040516104149190611c8c565b60405180910390f35b6104376004803603810190610432919061193f565b610d62565b6040516104449190611e89565b60405180910390f35b61046760048036038101906104629190611912565b610de9565b6040516104749190611c8c565b60405180910390f35b61049760048036038101906104929190611912565b610eb1565b005b6060600380546104a890611fed565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611fed565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b600080610536610fa9565b9050610543818585610fb1565b600191505092915050565b6000600254905090565b610560610fa9565b73ffffffffffffffffffffffffffffffffffffffff1661057e610ae1565b73ffffffffffffffffffffffffffffffffffffffff16146105d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cb90611da9565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008061063a610fa9565b905061064785828561117c565b610652858585611208565b60019150509392505050565b60006001151560066000610670610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190611d49565b60405180910390fd5b6107048383611489565b6001905092915050565b60006012905090565b600080610722610fa9565b90506107b6818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b19190611edb565b610fb1565b600191505092915050565b600060011515600660006107d3610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490611d49565b60405180910390fd5b6108678383611660565b6001905092915050565b6000600560009054906101000a900460ff16905090565b6000600115156006600061089a610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90611d49565b60405180910390fd5b61092f848484611208565b600190509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098a610fa9565b73ffffffffffffffffffffffffffffffffffffffff166109a8610ae1565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611da9565b60405180910390fd5b610a0860006117c0565b565b610a12610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610a30610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90611da9565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b1a90611fed565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611fed565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b600080610ba8610fa9565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611e29565b60405180910390fd5b610c7b8286868403610fb1565b60019250505092915050565b60006001151560066000610c99610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90611d49565b60405180910390fd5b610d35610d2e610fa9565b8484610fb1565b6001905092915050565b600080610d4a610fa9565b9050610d57818585611208565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610df3610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610e11610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90611da9565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610eb9610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610ed7610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611d09565b60405180910390fd5b610fa6816117c0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611e09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890611d29565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161116f9190611e89565b60405180910390a3505050565b60006111888484610d62565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120257818110156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90611d69565b60405180910390fd5b6112018484848403610fb1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90611cc9565b60405180910390fd5b6112f3838383611886565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090611d89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140c9190611edb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114709190611e89565b60405180910390a36114838484846118de565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090611dc9565b60405180910390fd5b61150582600083611886565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290611ce9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115e29190611f31565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116479190611e89565b60405180910390a361165b836000846118de565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790611e49565b60405180910390fd5b6116dc60008383611886565b80600260008282546116ee9190611edb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117439190611edb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117a89190611e89565b60405180910390a36117bc600083836118de565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118918383836118e3565b611899610871565b156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090611e69565b60405180910390fd5b505050565b505050565b505050565b6000813590506118f781612473565b92915050565b60008135905061190c8161248a565b92915050565b6000602082840312156119285761192761207d565b5b6000611936848285016118e8565b91505092915050565b600080604083850312156119565761195561207d565b5b6000611964858286016118e8565b9250506020611975858286016118e8565b9150509250929050565b6000806000606084860312156119985761199761207d565b5b60006119a6868287016118e8565b93505060206119b7868287016118e8565b92505060406119c8868287016118fd565b9150509250925092565b600080604083850312156119e9576119e861207d565b5b60006119f7858286016118e8565b9250506020611a08858286016118fd565b9150509250929050565b611a1b81611f65565b82525050565b611a2a81611f77565b82525050565b6000611a3b82611ebf565b611a458185611eca565b9350611a55818560208601611fba565b611a5e81612082565b840191505092915050565b6000611a76602383611eca565b9150611a8182612093565b604082019050919050565b6000611a99602283611eca565b9150611aa4826120e2565b604082019050919050565b6000611abc602683611eca565b9150611ac782612131565b604082019050919050565b6000611adf602283611eca565b9150611aea82612180565b604082019050919050565b6000611b02602783611eca565b9150611b0d826121cf565b604082019050919050565b6000611b25601d83611eca565b9150611b308261221e565b602082019050919050565b6000611b48602683611eca565b9150611b5382612247565b604082019050919050565b6000611b6b602083611eca565b9150611b7682612296565b602082019050919050565b6000611b8e602183611eca565b9150611b99826122bf565b604082019050919050565b6000611bb1602583611eca565b9150611bbc8261230e565b604082019050919050565b6000611bd4602483611eca565b9150611bdf8261235d565b604082019050919050565b6000611bf7602583611eca565b9150611c02826123ac565b604082019050919050565b6000611c1a601f83611eca565b9150611c25826123fb565b602082019050919050565b6000611c3d602a83611eca565b9150611c4882612424565b604082019050919050565b611c5c81611fa3565b82525050565b611c6b81611fad565b82525050565b6000602082019050611c866000830184611a12565b92915050565b6000602082019050611ca16000830184611a21565b92915050565b60006020820190508181036000830152611cc18184611a30565b905092915050565b60006020820190508181036000830152611ce281611a69565b9050919050565b60006020820190508181036000830152611d0281611a8c565b9050919050565b60006020820190508181036000830152611d2281611aaf565b9050919050565b60006020820190508181036000830152611d4281611ad2565b9050919050565b60006020820190508181036000830152611d6281611af5565b9050919050565b60006020820190508181036000830152611d8281611b18565b9050919050565b60006020820190508181036000830152611da281611b3b565b9050919050565b60006020820190508181036000830152611dc281611b5e565b9050919050565b60006020820190508181036000830152611de281611b81565b9050919050565b60006020820190508181036000830152611e0281611ba4565b9050919050565b60006020820190508181036000830152611e2281611bc7565b9050919050565b60006020820190508181036000830152611e4281611bea565b9050919050565b60006020820190508181036000830152611e6281611c0d565b9050919050565b60006020820190508181036000830152611e8281611c30565b9050919050565b6000602082019050611e9e6000830184611c53565b92915050565b6000602082019050611eb96000830184611c62565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ee682611fa3565b9150611ef183611fa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f2657611f2561201f565b5b828201905092915050565b6000611f3c82611fa3565b9150611f4783611fa3565b925082821015611f5a57611f5961201f565b5b828203905092915050565b6000611f7082611f83565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611fd8578082015181840152602081019050611fbd565b83811115611fe7576000848401525b50505050565b6000600282049050600182168061200557607f821691505b602082108114156120195761201861204e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f53756e666c6f7765724c616e6447616d653a20596f7520617265206e6f74207460008201527f68652067616d6500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61247c81611f65565b811461248757600080fd5b50565b61249381611fa3565b811461249e57600080fd5b5056fea26469706673582212200542544526d72bcac8d0012a06c98ad8f2450e3ece01f1b390827bd58ff662cd64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461038d578063a8a99ce8146103bd578063a9059cbb146103ed578063dd62ed3e1461041d578063e3257eab1461044d578063f2fde38b1461047d57610142565b806370a08231146102fb578063715018a61461032b5780637323b8fa146103355780638da5cb5b1461035157806395d89b411461036f57610142565b8063271292f51161010a578063271292f5146101ff578063313ce5671461022f578063395093511461024d5780634eb902991461027d5780635c975abb146102ad57806362252bc3146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806319892b51146101b357806323b872dd146101cf575b600080fd5b61014f610499565b60405161015c9190611ca7565b60405180910390f35b61017f600480360381019061017a91906119d2565b61052b565b60405161018c9190611c8c565b60405180910390f35b61019d61054e565b6040516101aa9190611e89565b60405180910390f35b6101cd60048036038101906101c89190611912565b610558565b005b6101e960048036038101906101e4919061197f565b61062f565b6040516101f69190611c8c565b60405180910390f35b610219600480360381019061021491906119d2565b61065e565b6040516102269190611c8c565b60405180910390f35b61023761070e565b6040516102449190611ea4565b60405180910390f35b610267600480360381019061026291906119d2565b610717565b6040516102749190611c8c565b60405180910390f35b610297600480360381019061029291906119d2565b6107c1565b6040516102a49190611c8c565b60405180910390f35b6102b5610871565b6040516102c29190611c8c565b60405180910390f35b6102e560048036038101906102e0919061197f565b610888565b6040516102f29190611c8c565b60405180910390f35b61031560048036038101906103109190611912565b61093a565b6040516103229190611e89565b60405180910390f35b610333610982565b005b61034f600480360381019061034a9190611912565b610a0a565b005b610359610ae1565b6040516103669190611c71565b60405180910390f35b610377610b0b565b6040516103849190611ca7565b60405180910390f35b6103a760048036038101906103a291906119d2565b610b9d565b6040516103b49190611c8c565b60405180910390f35b6103d760048036038101906103d291906119d2565b610c87565b6040516103e49190611c8c565b60405180910390f35b610407600480360381019061040291906119d2565b610d3f565b6040516104149190611c8c565b60405180910390f35b6104376004803603810190610432919061193f565b610d62565b6040516104449190611e89565b60405180910390f35b61046760048036038101906104629190611912565b610de9565b6040516104749190611c8c565b60405180910390f35b61049760048036038101906104929190611912565b610eb1565b005b6060600380546104a890611fed565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611fed565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b600080610536610fa9565b9050610543818585610fb1565b600191505092915050565b6000600254905090565b610560610fa9565b73ffffffffffffffffffffffffffffffffffffffff1661057e610ae1565b73ffffffffffffffffffffffffffffffffffffffff16146105d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cb90611da9565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008061063a610fa9565b905061064785828561117c565b610652858585611208565b60019150509392505050565b60006001151560066000610670610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190611d49565b60405180910390fd5b6107048383611489565b6001905092915050565b60006012905090565b600080610722610fa9565b90506107b6818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b19190611edb565b610fb1565b600191505092915050565b600060011515600660006107d3610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490611d49565b60405180910390fd5b6108678383611660565b6001905092915050565b6000600560009054906101000a900460ff16905090565b6000600115156006600061089a610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90611d49565b60405180910390fd5b61092f848484611208565b600190509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098a610fa9565b73ffffffffffffffffffffffffffffffffffffffff166109a8610ae1565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611da9565b60405180910390fd5b610a0860006117c0565b565b610a12610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610a30610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90611da9565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b1a90611fed565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611fed565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b600080610ba8610fa9565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611e29565b60405180910390fd5b610c7b8286868403610fb1565b60019250505092915050565b60006001151560066000610c99610fa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90611d49565b60405180910390fd5b610d35610d2e610fa9565b8484610fb1565b6001905092915050565b600080610d4a610fa9565b9050610d57818585611208565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610df3610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610e11610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90611da9565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610eb9610fa9565b73ffffffffffffffffffffffffffffffffffffffff16610ed7610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611d09565b60405180910390fd5b610fa6816117c0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611e09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890611d29565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161116f9190611e89565b60405180910390a3505050565b60006111888484610d62565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120257818110156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90611d69565b60405180910390fd5b6112018484848403610fb1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90611cc9565b60405180910390fd5b6112f3838383611886565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090611d89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461140c9190611edb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114709190611e89565b60405180910390a36114838484846118de565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090611dc9565b60405180910390fd5b61150582600083611886565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290611ce9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115e29190611f31565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116479190611e89565b60405180910390a361165b836000846118de565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790611e49565b60405180910390fd5b6116dc60008383611886565b80600260008282546116ee9190611edb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117439190611edb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117a89190611e89565b60405180910390a36117bc600083836118de565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118918383836118e3565b611899610871565b156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090611e69565b60405180910390fd5b505050565b505050565b505050565b6000813590506118f781612473565b92915050565b60008135905061190c8161248a565b92915050565b6000602082840312156119285761192761207d565b5b6000611936848285016118e8565b91505092915050565b600080604083850312156119565761195561207d565b5b6000611964858286016118e8565b9250506020611975858286016118e8565b9150509250929050565b6000806000606084860312156119985761199761207d565b5b60006119a6868287016118e8565b93505060206119b7868287016118e8565b92505060406119c8868287016118fd565b9150509250925092565b600080604083850312156119e9576119e861207d565b5b60006119f7858286016118e8565b9250506020611a08858286016118fd565b9150509250929050565b611a1b81611f65565b82525050565b611a2a81611f77565b82525050565b6000611a3b82611ebf565b611a458185611eca565b9350611a55818560208601611fba565b611a5e81612082565b840191505092915050565b6000611a76602383611eca565b9150611a8182612093565b604082019050919050565b6000611a99602283611eca565b9150611aa4826120e2565b604082019050919050565b6000611abc602683611eca565b9150611ac782612131565b604082019050919050565b6000611adf602283611eca565b9150611aea82612180565b604082019050919050565b6000611b02602783611eca565b9150611b0d826121cf565b604082019050919050565b6000611b25601d83611eca565b9150611b308261221e565b602082019050919050565b6000611b48602683611eca565b9150611b5382612247565b604082019050919050565b6000611b6b602083611eca565b9150611b7682612296565b602082019050919050565b6000611b8e602183611eca565b9150611b99826122bf565b604082019050919050565b6000611bb1602583611eca565b9150611bbc8261230e565b604082019050919050565b6000611bd4602483611eca565b9150611bdf8261235d565b604082019050919050565b6000611bf7602583611eca565b9150611c02826123ac565b604082019050919050565b6000611c1a601f83611eca565b9150611c25826123fb565b602082019050919050565b6000611c3d602a83611eca565b9150611c4882612424565b604082019050919050565b611c5c81611fa3565b82525050565b611c6b81611fad565b82525050565b6000602082019050611c866000830184611a12565b92915050565b6000602082019050611ca16000830184611a21565b92915050565b60006020820190508181036000830152611cc18184611a30565b905092915050565b60006020820190508181036000830152611ce281611a69565b9050919050565b60006020820190508181036000830152611d0281611a8c565b9050919050565b60006020820190508181036000830152611d2281611aaf565b9050919050565b60006020820190508181036000830152611d4281611ad2565b9050919050565b60006020820190508181036000830152611d6281611af5565b9050919050565b60006020820190508181036000830152611d8281611b18565b9050919050565b60006020820190508181036000830152611da281611b3b565b9050919050565b60006020820190508181036000830152611dc281611b5e565b9050919050565b60006020820190508181036000830152611de281611b81565b9050919050565b60006020820190508181036000830152611e0281611ba4565b9050919050565b60006020820190508181036000830152611e2281611bc7565b9050919050565b60006020820190508181036000830152611e4281611bea565b9050919050565b60006020820190508181036000830152611e6281611c0d565b9050919050565b60006020820190508181036000830152611e8281611c30565b9050919050565b6000602082019050611e9e6000830184611c53565b92915050565b6000602082019050611eb96000830184611c62565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ee682611fa3565b9150611ef183611fa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f2657611f2561201f565b5b828201905092915050565b6000611f3c82611fa3565b9150611f4783611fa3565b925082821015611f5a57611f5961201f565b5b828203905092915050565b6000611f7082611f83565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611fd8578082015181840152602081019050611fbd565b83811115611fe7576000848401525b50505050565b6000600282049050600182168061200557607f821691505b602082108114156120195761201861204e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f53756e666c6f7765724c616e6447616d653a20596f7520617265206e6f74207460008201527f68652067616d6500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61247c81611f65565b811461248757600080fd5b50565b61249381611fa3565b811461249e57600080fd5b5056fea26469706673582212200542544526d72bcac8d0012a06c98ad8f2450e3ece01f1b390827bd58ff662cd64736f6c63430008070033

Deployed Bytecode Sourcemap

23783:924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11974:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14325:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13094:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3666:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15106:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24257:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12936:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15810:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24121:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5028:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24394:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13265:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;3569:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12193:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16553:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24549:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13598:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13854:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23999:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11974:100;12028:13;12061:5;12054:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11974:100;:::o;14325:201::-;14408:4;14425:13;14441:12;:10;:12::i;:::-;14425:28;;14464:32;14473:5;14480:7;14489:6;14464:8;:32::i;:::-;14514:4;14507:11;;;14325:201;;;;:::o;13094:108::-;13155:7;13182:12;;13175:19;;13094:108;:::o;3666:95::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3750:5:::1;3731:9;:16;3741:5;3731:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;3666:95:::0;:::o;15106:295::-;15237:4;15254:15;15272:12;:10;:12::i;:::-;15254:30;;15295:38;15311:4;15317:7;15326:6;15295:15;:38::i;:::-;15344:27;15354:4;15360:2;15364:6;15344:9;:27::i;:::-;15389:4;15382:11;;;15106:295;;;;;:::o;24257:131::-;24333:4;3827;3800:31;;:9;:23;3810:12;:10;:12::i;:::-;3800:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;3792:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24342:22:::1;24348:7;24357:6;24342:5;:22::i;:::-;24378:4;24371:11;;24257:131:::0;;;;:::o;12936:93::-;12994:5;13019:2;13012:9;;12936:93;:::o;15810:240::-;15898:4;15915:13;15931:12;:10;:12::i;:::-;15915:28;;15954:66;15963:5;15970:7;16009:10;15979:11;:18;15991:5;15979:18;;;;;;;;;;;;;;;:27;15998:7;15979:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;15954:8;:66::i;:::-;16038:4;16031:11;;;15810:240;;;;:::o;24121:130::-;24197:4;3827;3800:31;;:9;:23;3810:12;:10;:12::i;:::-;3800:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;3792:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24206:22:::1;24212:7;24221:6;24206:5;:22::i;:::-;24242:4;24235:11;;24121:130:::0;;;;:::o;5028:86::-;5075:4;5099:7;;;;;;;;;;;5092:14;;5028:86;:::o;24394:149::-;24483:4;3827;3800:31;;:9;:23;3810:12;:10;:12::i;:::-;3800:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;3792:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24492:27:::1;24502:4;24508:2;24512:6;24492:9;:27::i;:::-;24533:4;24526:11;;24394:149:::0;;;;;:::o;13265:127::-;13339:7;13366:9;:18;13376:7;13366:18;;;;;;;;;;;;;;;;13359:25;;13265:127;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;3569:91::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3650:4:::1;3631:9;:16;3641:5;3631:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;3569:91:::0;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;12193:104::-;12249:13;12282:7;12275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:104;:::o;16553:438::-;16646:4;16663:13;16679:12;:10;:12::i;:::-;16663:28;;16702:24;16729:11;:18;16741:5;16729:18;;;;;;;;;;;;;;;:27;16748:7;16729:27;;;;;;;;;;;;;;;;16702:54;;16795:15;16775:16;:35;;16767:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16888:60;16897:5;16904:7;16932:15;16913:16;:34;16888:8;:60::i;:::-;16979:4;16972:11;;;;16553:438;;;;:::o;24549:155::-;24628:4;3827;3800:31;;:9;:23;3810:12;:10;:12::i;:::-;3800:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;3792:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24641:39:::1;24650:12;:10;:12::i;:::-;24664:7;24673:6;24641:8;:39::i;:::-;24694:4;24687:11;;24549:155:::0;;;;:::o;13598:193::-;13677:4;13694:13;13710:12;:10;:12::i;:::-;13694:28;;13733;13743:5;13750:2;13754:6;13733:9;:28::i;:::-;13779:4;13772:11;;;13598:193;;;;:::o;13854:151::-;13943:7;13970:11;:18;13982:5;13970:18;;;;;;;;;;;;;;;:27;13989:7;13970:27;;;;;;;;;;;;;;;;13963:34;;13854:151;;;;:::o;23999:114::-;24062:4;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24082:5:::1;24075:4;;:12;;;;;;;;;;;;;;;;;;24103:4;24096:11;;23999:114:::0;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;20189:380::-;20342:1;20325:19;;:5;:19;;;;20317:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20423:1;20404:21;;:7;:21;;;;20396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20507:6;20477:11;:18;20489:5;20477:18;;;;;;;;;;;;;;;:27;20496:7;20477:27;;;;;;;;;;;;;;;:36;;;;20545:7;20529:32;;20538:5;20529:32;;;20554:6;20529:32;;;;;;:::i;:::-;;;;;;;;20189:380;;;:::o;20856:453::-;20991:24;21018:25;21028:5;21035:7;21018:9;:25::i;:::-;20991:52;;21078:17;21058:16;:37;21054:248;;21140:6;21120:16;:26;;21112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21224:51;21233:5;21240:7;21268:6;21249:16;:25;21224:8;:51::i;:::-;21054:248;20980:329;20856:453;;;:::o;17470:671::-;17617:1;17601:18;;:4;:18;;;;17593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17694:1;17680:16;;:2;:16;;;;17672:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17749:38;17770:4;17776:2;17780:6;17749:20;:38::i;:::-;17800:19;17822:9;:15;17832:4;17822:15;;;;;;;;;;;;;;;;17800:37;;17871:6;17856:11;:21;;17848:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17988:6;17974:11;:20;17956:9;:15;17966:4;17956:15;;;;;;;;;;;;;;;:38;;;;18033:6;18016:9;:13;18026:2;18016:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;18072:2;18057:26;;18066:4;18057:26;;;18076:6;18057:26;;;;;;:::i;:::-;;;;;;;;18096:37;18116:4;18122:2;18126:6;18096:19;:37::i;:::-;17582:559;17470:671;;;:::o;19160:591::-;19263:1;19244:21;;:7;:21;;;;19236:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19316:49;19337:7;19354:1;19358:6;19316:20;:49::i;:::-;19378:22;19403:9;:18;19413:7;19403:18;;;;;;;;;;;;;;;;19378:43;;19458:6;19440:14;:24;;19432:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19577:6;19560:14;:23;19539:9;:18;19549:7;19539:18;;;;;;;;;;;;;;;:44;;;;19621:6;19605:12;;:22;;;;;;;:::i;:::-;;;;;;;;19671:1;19645:37;;19654:7;19645:37;;;19675:6;19645:37;;;;;;:::i;:::-;;;;;;;;19695:48;19715:7;19732:1;19736:6;19695:19;:48::i;:::-;19225:526;19160:591;;:::o;18428:399::-;18531:1;18512:21;;:7;:21;;;;18504:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18582:49;18611:1;18615:7;18624:6;18582:20;:49::i;:::-;18660:6;18644:12;;:22;;;;;;;:::i;:::-;;;;;;;;18699:6;18677:9;:18;18687:7;18677:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18742:7;18721:37;;18738:1;18721:37;;;18751:6;18721:37;;;;;;:::i;:::-;;;;;;;;18771:48;18799:1;18803:7;18812:6;18771:19;:48::i;:::-;18428:399;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;23439:272::-;23582:44;23609:4;23615:2;23619:6;23582:26;:44::i;:::-;23648:8;:6;:8::i;:::-;23647:9;23639:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23439:272;;;:::o;22638:124::-;;;;:::o;21909:125::-;;;;:::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:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7290:366;;;:::o;7662:::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7662:366;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8034:118;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8158:112;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8276:222;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8504:210;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8720:313;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9039:419;;;:::o;9464:::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;9889:419;;;:::o;10314:::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10314:419;;;:::o;10739:::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10739:419;;;:::o;11164:::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11164:419;;;:::o;11589:::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11589:419;;;:::o;12014:::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12014:419;;;:::o;12439:::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12439:419;;;:::o;12864:::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;12864:419;;;:::o;13289:::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13289:419;;;:::o;13714:::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13714:419;;;:::o;14139:::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14139:419;;;:::o;14564:::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14564:419;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;14989:222;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15217:214;;;;:::o;15518:99::-;15570:6;15604:5;15598:12;15588:22;;15518:99;;;:::o;15623:169::-;15707:11;15741:6;15736:3;15729:19;15781:4;15776:3;15772:14;15757:29;;15623:169;;;;:::o;15798:305::-;15838:3;15857:20;15875:1;15857:20;:::i;:::-;15852:25;;15891:20;15909:1;15891:20;:::i;:::-;15886:25;;16045:1;15977:66;15973:74;15970:1;15967:81;15964:107;;;16051:18;;:::i;:::-;15964:107;16095:1;16092;16088:9;16081:16;;15798:305;;;;:::o;16109:191::-;16149:4;16169:20;16187:1;16169:20;:::i;:::-;16164:25;;16203:20;16221:1;16203:20;:::i;:::-;16198:25;;16242:1;16239;16236:8;16233:34;;;16247:18;;:::i;:::-;16233:34;16292:1;16289;16285:9;16277:17;;16109:191;;;;:::o;16306:96::-;16343:7;16372:24;16390:5;16372:24;:::i;:::-;16361:35;;16306:96;;;:::o;16408:90::-;16442:7;16485:5;16478:13;16471:21;16460:32;;16408:90;;;:::o;16504:126::-;16541:7;16581:42;16574:5;16570:54;16559:65;;16504:126;;;:::o;16636:77::-;16673:7;16702:5;16691:16;;16636:77;;;:::o;16719:86::-;16754:7;16794:4;16787:5;16783:16;16772:27;;16719:86;;;:::o;16811:307::-;16879:1;16889:113;16903:6;16900:1;16897:13;16889:113;;;16988:1;16983:3;16979:11;16973:18;16969:1;16964:3;16960:11;16953:39;16925:2;16922:1;16918:10;16913:15;;16889:113;;;17020:6;17017:1;17014:13;17011:101;;;17100:1;17091:6;17086:3;17082:16;17075:27;17011:101;16860:258;16811:307;;;:::o;17124:320::-;17168:6;17205:1;17199:4;17195:12;17185:22;;17252:1;17246:4;17242:12;17273:18;17263:81;;17329:4;17321:6;17317:17;17307:27;;17263:81;17391:2;17383:6;17380:14;17360:18;17357:38;17354:84;;;17410:18;;:::i;:::-;17354:84;17175:269;17124:320;;;:::o;17450:180::-;17498:77;17495:1;17488:88;17595:4;17592:1;17585:15;17619:4;17616:1;17609:15;17636:180;17684:77;17681:1;17674:88;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17945:117;18054:1;18051;18044:12;18068:102;18109:6;18160:2;18156:7;18151:2;18144:5;18140:14;18136:28;18126:38;;18068:102;;;:::o;18176:222::-;18316:34;18312:1;18304:6;18300:14;18293:58;18385:5;18380:2;18372:6;18368:15;18361:30;18176:222;:::o;18404:221::-;18544:34;18540:1;18532:6;18528:14;18521:58;18613:4;18608:2;18600:6;18596:15;18589:29;18404:221;:::o;18631:225::-;18771:34;18767:1;18759:6;18755:14;18748:58;18840:8;18835:2;18827:6;18823:15;18816:33;18631:225;:::o;18862:221::-;19002:34;18998:1;18990:6;18986:14;18979:58;19071:4;19066:2;19058:6;19054:15;19047:29;18862:221;:::o;19089:226::-;19229:34;19225:1;19217:6;19213:14;19206:58;19298:9;19293:2;19285:6;19281:15;19274:34;19089:226;:::o;19321:179::-;19461:31;19457:1;19449:6;19445:14;19438:55;19321:179;:::o;19506:225::-;19646:34;19642:1;19634:6;19630:14;19623:58;19715:8;19710:2;19702:6;19698:15;19691:33;19506:225;:::o;19737:182::-;19877:34;19873:1;19865:6;19861:14;19854:58;19737:182;:::o;19925:220::-;20065:34;20061:1;20053:6;20049:14;20042:58;20134:3;20129:2;20121:6;20117:15;20110:28;19925:220;:::o;20151:224::-;20291:34;20287:1;20279:6;20275:14;20268:58;20360:7;20355:2;20347:6;20343:15;20336:32;20151:224;:::o;20381:223::-;20521:34;20517:1;20509:6;20505:14;20498:58;20590:6;20585:2;20577:6;20573:15;20566:31;20381:223;:::o;20610:224::-;20750:34;20746:1;20738:6;20734:14;20727:58;20819:7;20814:2;20806:6;20802:15;20795:32;20610:224;:::o;20840:181::-;20980:33;20976:1;20968:6;20964:14;20957:57;20840:181;:::o;21027:229::-;21167:34;21163:1;21155:6;21151:14;21144:58;21236:12;21231:2;21223:6;21219:15;21212:37;21027:229;:::o;21262:122::-;21335:24;21353:5;21335:24;:::i;:::-;21328:5;21325:35;21315:63;;21374:1;21371;21364:12;21315:63;21262:122;:::o;21390:::-;21463:24;21481:5;21463:24;:::i;:::-;21456:5;21453:35;21443:63;;21502:1;21499;21492:12;21443:63;21390:122;:::o

Swarm Source

ipfs://0542544526d72bcac8d0012a06c98ad8f2450e3ece01f1b390827bd58ff662cd

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

Sunflower Land is a resource collection & NFT crafting game on Polygon.

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.