ETH Price: $1,587.83 (-1.37%)
Gas: 0.37 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve222969822025-04-18 16:09:351 hr ago1744992575IN
Jerry The Turtle: JYAI Token
0 ETH0.000029320.62457103
Transfer222952722025-04-18 10:24:596 hrs ago1744971899IN
Jerry The Turtle: JYAI Token
0 ETH0.000023350.34066824
Transfer222946382025-04-18 8:17:118 hrs ago1744964231IN
Jerry The Turtle: JYAI Token
0 ETH0.000024040.51497345
Approve222943922025-04-18 7:27:599 hrs ago1744961279IN
Jerry The Turtle: JYAI Token
0 ETH0.000018740.39745346
Transfer222938352025-04-18 5:36:1111 hrs ago1744954571IN
Jerry The Turtle: JYAI Token
0 ETH0.000062980.91841517
Transfer222934572025-04-18 4:20:3512 hrs ago1744950035IN
Jerry The Turtle: JYAI Token
0 ETH0.000030720.48156086
Approve222933562025-04-18 4:00:2313 hrs ago1744948823IN
Jerry The Turtle: JYAI Token
0 ETH0.000021110.44967782
Transfer222910962025-04-17 20:26:4720 hrs ago1744921607IN
Jerry The Turtle: JYAI Token
0 ETH0.000045930.72010046
Approve222906072025-04-17 18:48:2322 hrs ago1744915703IN
Jerry The Turtle: JYAI Token
0 ETH0.000020420.43312859
Approve222900052025-04-17 16:47:5924 hrs ago1744908479IN
Jerry The Turtle: JYAI Token
0 ETH0.000066081.40673034
Approve222881262025-04-17 10:29:3530 hrs ago1744885775IN
Jerry The Turtle: JYAI Token
0 ETH0.000022220.47330122
Approve222876872025-04-17 9:01:4732 hrs ago1744880507IN
Jerry The Turtle: JYAI Token
0 ETH0.000025180.53658388
Approve222876162025-04-17 8:47:3532 hrs ago1744879655IN
Jerry The Turtle: JYAI Token
0 ETH0.00002270.48375492
Approve222874432025-04-17 8:12:4733 hrs ago1744877567IN
Jerry The Turtle: JYAI Token
0 ETH0.000023130.49290873
Approve222871742025-04-17 7:18:4733 hrs ago1744874327IN
Jerry The Turtle: JYAI Token
0 ETH0.000109652.32463711
Approve222855542025-04-17 1:51:4739 hrs ago1744854707IN
Jerry The Turtle: JYAI Token
0 ETH0.000021530.45835408
Approve222854082025-04-17 1:22:3539 hrs ago1744852955IN
Jerry The Turtle: JYAI Token
0 ETH0.000021250.45251789
Approve222853122025-04-17 1:03:2340 hrs ago1744851803IN
Jerry The Turtle: JYAI Token
0 ETH0.000018380.38929124
Transfer222852292025-04-17 0:46:3540 hrs ago1744850795IN
Jerry The Turtle: JYAI Token
0 ETH0.000021630.46347654
Approve222844002025-04-16 21:59:5943 hrs ago1744840799IN
Jerry The Turtle: JYAI Token
0 ETH0.000112122.37706006
Transfer222843702025-04-16 21:53:5943 hrs ago1744840439IN
Jerry The Turtle: JYAI Token
0 ETH0.00004530.88042306
Transfer222842432025-04-16 21:28:3543 hrs ago1744838915IN
Jerry The Turtle: JYAI Token
0 ETH0.00005371.04361747
Transfer222839272025-04-16 20:24:5944 hrs ago1744835099IN
Jerry The Turtle: JYAI Token
0 ETH0.00011012.35726554
Transfer222839232025-04-16 20:24:1144 hrs ago1744835051IN
Jerry The Turtle: JYAI Token
0 ETH0.000160862.34513632
Transfer222838782025-04-16 20:15:1144 hrs ago1744834511IN
Jerry The Turtle: JYAI Token
0 ETH0.000110682.36979475
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer218006702025-02-08 8:42:1169 days ago1739004131
Jerry The Turtle: JYAI Token
0.04130398 ETH
Transfer215726722025-01-07 12:44:11101 days ago1736253851
Jerry The Turtle: JYAI Token
2.92558747 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
JerryTheTurtleToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2024-11-26
*/

// SPDX-License-Identifier: MIT

// Telegram - https://t.me/jerrytheturtle

// X/Twitter - https://x.com/jerryturtleai

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @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.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is 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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/JerryTheTurtleToken.sol


pragma solidity ^0.8.0;




contract JerryTheTurtleToken is ERC20, ERC20Burnable, Ownable {
    // Token supply and decimals configuration
    uint256 private constant INITIAL_SUPPLY = 69000000000 * 10**18;
    
    // Core security feature state variables
    uint256 public maxTransactionLimit;
    uint256 public tradeCooldown;
    bool public tradingEnabled;
    
    // Trading delay mechanism state variables
    uint256 public tradingEnabledTimestamp;
    uint256 public constant TRADING_DELAY = 5 minutes;
    
    // Mapping to track last transaction timestamp for each address
    mapping(address => uint256) public lastTransactionTimestamp;
    
    // Events for tracking security parameter changes
    event MaxTransactionLimitUpdated(uint256 newLimit);
    event TradeCooldownUpdated(uint256 newCooldown);
    event TradingStatusUpdated(bool enabled);
    event TradingScheduled(uint256 enableTime);
    
    constructor() ERC20("Jerry The Turtle By Matt Furie", "JYAI") {
        // Initial token minting to contract deployer
        _mint(msg.sender, INITIAL_SUPPLY);
        
        // Initialize security parameters
        maxTransactionLimit = INITIAL_SUPPLY / 200; // 1% of total supply
        tradeCooldown = 60 seconds;
        tradingEnabled = false;
        tradingEnabledTimestamp = 0;  // Initialize trading timestamp to 0
    }
    
    // Owner function to update maximum transaction limit
    function setMaxTransactionLimit(uint256 newLimit) external onlyOwner {
        require(newLimit > 0, "Limit must be greater than 0");
        require(newLimit <= INITIAL_SUPPLY, "Limit cannot exceed total supply");
        maxTransactionLimit = newLimit;
        emit MaxTransactionLimitUpdated(newLimit);
    }
    
    // Owner function to update trade cooldown period
    function setTradeCooldown(uint256 newCooldown) external onlyOwner {
        tradeCooldown = newCooldown;
        emit TradeCooldownUpdated(newCooldown);
    }
    
    // Owner function to enable/disable trading with delay mechanism
    function setTradingStatus(bool _enabled) external onlyOwner {
        if (_enabled) {
            tradingEnabled = true;  // Set trading enabled flag
            tradingEnabledTimestamp = block.timestamp + TRADING_DELAY;
            emit TradingScheduled(tradingEnabledTimestamp);
        } else {
            tradingEnabled = false;
            tradingEnabledTimestamp = 0;
        }
        emit TradingStatusUpdated(_enabled);
    }
    
    // Internal function to enforce security measures on transfers
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        
        // Skip checks for minting and burning operations
        if (from == address(0) || to == address(0)) return;
        
        // Skip checks if sender is contract owner
        if (from == owner()) return;
        
        // First check if trading is enabled
        require(tradingEnabled, "Trading is not enabled");
        
        // Then check if trading delay has passed
        require(
            tradingEnabledTimestamp > 0 && 
            block.timestamp >= tradingEnabledTimestamp,
            "Trading is not yet active"
        );
        
        // Enforce maximum transaction limit
        require(amount <= maxTransactionLimit, "Amount exceeds transaction limit");
        
        // Enforce cooldown period between transactions
        require(
            block.timestamp >= lastTransactionTimestamp[from] + tradeCooldown,
            "Please wait for cooldown period"
        );
        
        // Update last transaction timestamp for sender
        lastTransactionTimestamp[from] = block.timestamp;
    }


    // Function for initial token distribution
    function distributeTokens(address distributionWallet) external onlyOwner {
        require(distributionWallet != address(0), "Invalid distribution address");
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");
        _transfer(msg.sender, distributionWallet, supply);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"MaxTransactionLimitUpdated","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":"uint256","name":"newCooldown","type":"uint256"}],"name":"TradeCooldownUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"enableTime","type":"uint256"}],"name":"TradingScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TRADING_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"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":"","type":"address"}],"name":"lastTransactionTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCooldown","type":"uint256"}],"name":"setTradeCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingStatus","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":[],"name":"tradeCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabledTimestamp","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"}]

60806040523480156200001157600080fd5b506040518060400160405280601e81526020017f4a657272792054686520547572746c65204279204d61747420467572696500008152506040518060400160405280600481526020017f4a5941490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000657565b508060049080519060200190620000af92919062000657565b505050620000d2620000c66200014260201b60201c565b6200014a60201b60201c565b620000f0336bdef376571332906a880000006200021060201b60201c565b60c86bdef376571332906a880000006200010b919062000997565b600681905550603c6007819055506000600860006101000a81548160ff021916908315150217905550600060098190555062000a9c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000283576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027a90620008ea565b60405180910390fd5b62000297600083836200037e60201b60201c565b8060026000828254620002ab91906200093a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035e91906200090c565b60405180910390a36200037a600083836200062360201b60201c565b5050565b620003968383836200062860201b62000c4e1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156200040a576200061e565b6200041a6200062d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000454576200061e565b600860009054906101000a900460ff16620004a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049d9062000884565b60405180910390fd5b6000600954118015620004bb57506009544210155b620004fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f490620008a6565b60405180910390fd5b60065481111562000545576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053c90620008c8565b60405180910390fd5b600754600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200059491906200093a565b421015620005d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d09062000862565b60405180910390fd5b42600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200066590620009d9565b90600052602060002090601f016020900481019282620006895760008555620006d5565b82601f10620006a457805160ff1916838001178555620006d5565b82800160010185558215620006d5579182015b82811115620006d4578251825591602001919060010190620006b7565b5b509050620006e49190620006e8565b5090565b5b8082111562000703576000816000905550600101620006e9565b5090565b600062000716601f8362000929565b91507f506c65617365207761697420666f7220636f6f6c646f776e20706572696f64006000830152602082019050919050565b60006200075860168362000929565b91507f54726164696e67206973206e6f7420656e61626c6564000000000000000000006000830152602082019050919050565b60006200079a60198362000929565b91507f54726164696e67206973206e6f742079657420616374697665000000000000006000830152602082019050919050565b6000620007dc60208362000929565b91507f416d6f756e742065786365656473207472616e73616374696f6e206c696d69746000830152602082019050919050565b60006200081e601f8362000929565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200085c81620009cf565b82525050565b600060208201905081810360008301526200087d8162000707565b9050919050565b600060208201905081810360008301526200089f8162000749565b9050919050565b60006020820190508181036000830152620008c1816200078b565b9050919050565b60006020820190508181036000830152620008e381620007cd565b9050919050565b6000602082019050818103600083015262000905816200080f565b9050919050565b600060208201905062000923600083018462000851565b92915050565b600082825260208201905092915050565b60006200094782620009cf565b91506200095483620009cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200098c576200098b62000a0f565b5b828201905092915050565b6000620009a482620009cf565b9150620009b183620009cf565b925082620009c457620009c362000a3e565b5b828204905092915050565b6000819050919050565b60006002820490506001821680620009f257607f821691505b6020821081141562000a095762000a0862000a6d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6123cd8062000aac6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806393ee15ca11610097578063a9059cbb11610071578063a9059cbb14610475578063b1d17c98146104a5578063dd62ed3e146104c1578063f2fde38b146104f15761018e565b806393ee15ca1461040957806395d89b4114610427578063a457c2d7146104455761018e565b806370a082311461035b578063715018a61461038b57806376ee241d1461039557806379cc6790146103b35780637a9d7c14146103cf5780638da5cb5b146103eb5761018e565b8063313ce5671161014b57806342966c681161012557806342966c68146102d35780634ada218b146102ef57806356cf37b71461030d578063676c84581461033d5761018e565b8063313ce56714610269578063379ba1d91461028757806339509351146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff57806325b617031461022f5780633049b5801461024d575b600080fd5b61019b61050d565b6040516101a89190611eff565b60405180910390f35b6101cb60048036038101906101c691906117b0565b61059f565b6040516101d89190611ee4565b60405180910390f35b6101e96105c2565b6040516101f69190612181565b60405180910390f35b61021960048036038101906102149190611761565b6105cc565b6040516102269190611ee4565b60405180910390f35b6102376105fb565b6040516102449190612181565b60405180910390f35b61026760048036038101906102629190611815565b610601565b005b61027161064a565b60405161027e919061219c565b60405180910390f35b6102a1600480360381019061029c91906117ec565b610653565b005b6102bd60048036038101906102b891906117b0565b61072c565b6040516102ca9190611ee4565b60405180910390f35b6102ed60048036038101906102e89190611815565b610763565b005b6102f7610777565b6040516103049190611ee4565b60405180910390f35b610327600480360381019061032291906116fc565b61078a565b6040516103349190612181565b60405180910390f35b6103456107a2565b6040516103529190612181565b60405180910390f35b610375600480360381019061037091906116fc565b6107a8565b6040516103829190612181565b60405180910390f35b6103936107f0565b005b61039d610804565b6040516103aa9190612181565b60405180910390f35b6103cd60048036038101906103c891906117b0565b61080a565b005b6103e960048036038101906103e49190611815565b61082a565b005b6103f3610905565b6040516104009190611ec9565b60405180910390f35b61041161092f565b60405161041e9190612181565b60405180910390f35b61042f610935565b60405161043c9190611eff565b60405180910390f35b61045f600480360381019061045a91906117b0565b6109c7565b60405161046c9190611ee4565b60405180910390f35b61048f600480360381019061048a91906117b0565b610a3e565b60405161049c9190611ee4565b60405180910390f35b6104bf60048036038101906104ba91906116fc565b610a61565b005b6104db60048036038101906104d69190611725565b610b43565b6040516104e89190612181565b60405180910390f35b61050b600480360381019061050691906116fc565b610bca565b005b60606003805461051c906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906122b1565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b6000806105aa610c53565b90506105b7818585610c5b565b600191505092915050565b6000600254905090565b6000806105d7610c53565b90506105e4858285610e26565b6105ef858585610eb2565b60019150509392505050565b60095481565b61060961112a565b806007819055507ff221348c99c95366e69a11aaaa1801f74c5008d8a5bed062cd05b03718e9bca38160405161063f9190612181565b60405180910390a150565b60006012905090565b61065b61112a565b80156106ce576001600860006101000a81548160ff02191690831515021790555061012c4261068a91906121d3565b6009819055507f9312395a4f7df2e78261a7b9f2b566aa0615fd564215350ee0865d73f989059d6009546040516106c19190612181565b60405180910390a16106f2565b6000600860006101000a81548160ff02191690831515021790555060006009819055505b7f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab816040516107219190611ee4565b60405180910390a150565b600080610737610c53565b90506107588185856107498589610b43565b61075391906121d3565b610c5b565b600191505092915050565b61077461076e610c53565b826111a8565b50565b600860009054906101000a900460ff1681565b600a6020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f861112a565b6108026000611376565b565b61012c81565b61081c82610816610c53565b83610e26565b61082682826111a8565b5050565b61083261112a565b60008111610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90612021565b60405180910390fd5b6bdef376571332906a880000008111156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612081565b60405180910390fd5b806006819055507f61a9d76f1023cf14660a9917af7526f9a626983e3f0cdd80e1b319af249adaf9816040516108fa9190612181565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b606060048054610944906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610970906122b1565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b5050505050905090565b6000806109d2610c53565b905060006109e08286610b43565b905083811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612161565b60405180910390fd5b610a328286868403610c5b565b60019250505092915050565b600080610a49610c53565b9050610a56818585610eb2565b600191505092915050565b610a6961112a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611f41565b60405180910390fd5b6000610ae4336107a8565b90506bdef376571332906a880000008114610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612041565b60405180910390fd5b610b3f338383610eb2565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bd261112a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611f81565b60405180910390fd5b610c4b81611376565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612121565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611fa1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e199190612181565b60405180910390a3505050565b6000610e328484610b43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eac5781811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612001565b60405180910390fd5b610eab8484848403610c5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990612101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611f21565b60405180910390fd5b610f9d83838361143c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90612061565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111119190612181565b60405180910390a36111248484846116b8565b50505050565b611132610c53565b73ffffffffffffffffffffffffffffffffffffffff16611150610905565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906120c1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906120e1565b60405180910390fd5b6112248260008361143c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611f61565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161135d9190612181565b60405180910390a3611371836000846116b8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611447838383610c4e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114ae5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156114b8576116b3565b6114c0610905565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f8576116b3565b600860009054906101000a900460ff16611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90611fe1565b60405180910390fd5b600060095411801561155b57506009544210155b61159a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611591906120a1565b60405180910390fd5b6006548111156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690612141565b60405180910390fd5b600754600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461162c91906121d3565b42101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590611fc1565b60405180910390fd5b42600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b6000813590506116cc81612352565b92915050565b6000813590506116e181612369565b92915050565b6000813590506116f681612380565b92915050565b60006020828403121561170e57600080fd5b600061171c848285016116bd565b91505092915050565b6000806040838503121561173857600080fd5b6000611746858286016116bd565b9250506020611757858286016116bd565b9150509250929050565b60008060006060848603121561177657600080fd5b6000611784868287016116bd565b9350506020611795868287016116bd565b92505060406117a6868287016116e7565b9150509250925092565b600080604083850312156117c357600080fd5b60006117d1858286016116bd565b92505060206117e2858286016116e7565b9150509250929050565b6000602082840312156117fe57600080fd5b600061180c848285016116d2565b91505092915050565b60006020828403121561182757600080fd5b6000611835848285016116e7565b91505092915050565b61184781612229565b82525050565b6118568161223b565b82525050565b6000611867826121b7565b61187181856121c2565b935061188181856020860161227e565b61188a81612341565b840191505092915050565b60006118a26023836121c2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611908601c836121c2565b91507f496e76616c696420646973747269627574696f6e2061646472657373000000006000830152602082019050919050565b60006119486022836121c2565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ae6026836121c2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a146022836121c2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a7a601f836121c2565b91507f506c65617365207761697420666f7220636f6f6c646f776e20706572696f64006000830152602082019050919050565b6000611aba6016836121c2565b91507f54726164696e67206973206e6f7420656e61626c6564000000000000000000006000830152602082019050919050565b6000611afa601d836121c2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611b3a601c836121c2565b91507f4c696d6974206d7573742062652067726561746572207468616e2030000000006000830152602082019050919050565b6000611b7a601a836121c2565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b6000611bba6026836121c2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c206020836121c2565b91507f4c696d69742063616e6e6f742065786365656420746f74616c20737570706c796000830152602082019050919050565b6000611c606019836121c2565b91507f54726164696e67206973206e6f742079657420616374697665000000000000006000830152602082019050919050565b6000611ca06020836121c2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611ce06021836121c2565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d466025836121c2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611dac6024836121c2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e126020836121c2565b91507f416d6f756e742065786365656473207472616e73616374696f6e206c696d69746000830152602082019050919050565b6000611e526025836121c2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611eb481612267565b82525050565b611ec381612271565b82525050565b6000602082019050611ede600083018461183e565b92915050565b6000602082019050611ef9600083018461184d565b92915050565b60006020820190508181036000830152611f19818461185c565b905092915050565b60006020820190508181036000830152611f3a81611895565b9050919050565b60006020820190508181036000830152611f5a816118fb565b9050919050565b60006020820190508181036000830152611f7a8161193b565b9050919050565b60006020820190508181036000830152611f9a816119a1565b9050919050565b60006020820190508181036000830152611fba81611a07565b9050919050565b60006020820190508181036000830152611fda81611a6d565b9050919050565b60006020820190508181036000830152611ffa81611aad565b9050919050565b6000602082019050818103600083015261201a81611aed565b9050919050565b6000602082019050818103600083015261203a81611b2d565b9050919050565b6000602082019050818103600083015261205a81611b6d565b9050919050565b6000602082019050818103600083015261207a81611bad565b9050919050565b6000602082019050818103600083015261209a81611c13565b9050919050565b600060208201905081810360008301526120ba81611c53565b9050919050565b600060208201905081810360008301526120da81611c93565b9050919050565b600060208201905081810360008301526120fa81611cd3565b9050919050565b6000602082019050818103600083015261211a81611d39565b9050919050565b6000602082019050818103600083015261213a81611d9f565b9050919050565b6000602082019050818103600083015261215a81611e05565b9050919050565b6000602082019050818103600083015261217a81611e45565b9050919050565b60006020820190506121966000830184611eab565b92915050565b60006020820190506121b16000830184611eba565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121de82612267565b91506121e983612267565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561221e5761221d6122e3565b5b828201905092915050565b600061223482612247565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561229c578082015181840152602081019050612281565b838111156122ab576000848401525b50505050565b600060028204905060018216806122c957607f821691505b602082108114156122dd576122dc612312565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61235b81612229565b811461236657600080fd5b50565b6123728161223b565b811461237d57600080fd5b50565b61238981612267565b811461239457600080fd5b5056fea26469706673582212207bcfe6930ee65ec85dd9a48f096c6db788b0f25e6c553ad32dc561bf975ce52f64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806393ee15ca11610097578063a9059cbb11610071578063a9059cbb14610475578063b1d17c98146104a5578063dd62ed3e146104c1578063f2fde38b146104f15761018e565b806393ee15ca1461040957806395d89b4114610427578063a457c2d7146104455761018e565b806370a082311461035b578063715018a61461038b57806376ee241d1461039557806379cc6790146103b35780637a9d7c14146103cf5780638da5cb5b146103eb5761018e565b8063313ce5671161014b57806342966c681161012557806342966c68146102d35780634ada218b146102ef57806356cf37b71461030d578063676c84581461033d5761018e565b8063313ce56714610269578063379ba1d91461028757806339509351146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff57806325b617031461022f5780633049b5801461024d575b600080fd5b61019b61050d565b6040516101a89190611eff565b60405180910390f35b6101cb60048036038101906101c691906117b0565b61059f565b6040516101d89190611ee4565b60405180910390f35b6101e96105c2565b6040516101f69190612181565b60405180910390f35b61021960048036038101906102149190611761565b6105cc565b6040516102269190611ee4565b60405180910390f35b6102376105fb565b6040516102449190612181565b60405180910390f35b61026760048036038101906102629190611815565b610601565b005b61027161064a565b60405161027e919061219c565b60405180910390f35b6102a1600480360381019061029c91906117ec565b610653565b005b6102bd60048036038101906102b891906117b0565b61072c565b6040516102ca9190611ee4565b60405180910390f35b6102ed60048036038101906102e89190611815565b610763565b005b6102f7610777565b6040516103049190611ee4565b60405180910390f35b610327600480360381019061032291906116fc565b61078a565b6040516103349190612181565b60405180910390f35b6103456107a2565b6040516103529190612181565b60405180910390f35b610375600480360381019061037091906116fc565b6107a8565b6040516103829190612181565b60405180910390f35b6103936107f0565b005b61039d610804565b6040516103aa9190612181565b60405180910390f35b6103cd60048036038101906103c891906117b0565b61080a565b005b6103e960048036038101906103e49190611815565b61082a565b005b6103f3610905565b6040516104009190611ec9565b60405180910390f35b61041161092f565b60405161041e9190612181565b60405180910390f35b61042f610935565b60405161043c9190611eff565b60405180910390f35b61045f600480360381019061045a91906117b0565b6109c7565b60405161046c9190611ee4565b60405180910390f35b61048f600480360381019061048a91906117b0565b610a3e565b60405161049c9190611ee4565b60405180910390f35b6104bf60048036038101906104ba91906116fc565b610a61565b005b6104db60048036038101906104d69190611725565b610b43565b6040516104e89190612181565b60405180910390f35b61050b600480360381019061050691906116fc565b610bca565b005b60606003805461051c906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906122b1565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b6000806105aa610c53565b90506105b7818585610c5b565b600191505092915050565b6000600254905090565b6000806105d7610c53565b90506105e4858285610e26565b6105ef858585610eb2565b60019150509392505050565b60095481565b61060961112a565b806007819055507ff221348c99c95366e69a11aaaa1801f74c5008d8a5bed062cd05b03718e9bca38160405161063f9190612181565b60405180910390a150565b60006012905090565b61065b61112a565b80156106ce576001600860006101000a81548160ff02191690831515021790555061012c4261068a91906121d3565b6009819055507f9312395a4f7df2e78261a7b9f2b566aa0615fd564215350ee0865d73f989059d6009546040516106c19190612181565b60405180910390a16106f2565b6000600860006101000a81548160ff02191690831515021790555060006009819055505b7f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab816040516107219190611ee4565b60405180910390a150565b600080610737610c53565b90506107588185856107498589610b43565b61075391906121d3565b610c5b565b600191505092915050565b61077461076e610c53565b826111a8565b50565b600860009054906101000a900460ff1681565b600a6020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f861112a565b6108026000611376565b565b61012c81565b61081c82610816610c53565b83610e26565b61082682826111a8565b5050565b61083261112a565b60008111610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90612021565b60405180910390fd5b6bdef376571332906a880000008111156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612081565b60405180910390fd5b806006819055507f61a9d76f1023cf14660a9917af7526f9a626983e3f0cdd80e1b319af249adaf9816040516108fa9190612181565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b606060048054610944906122b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610970906122b1565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b5050505050905090565b6000806109d2610c53565b905060006109e08286610b43565b905083811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612161565b60405180910390fd5b610a328286868403610c5b565b60019250505092915050565b600080610a49610c53565b9050610a56818585610eb2565b600191505092915050565b610a6961112a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611f41565b60405180910390fd5b6000610ae4336107a8565b90506bdef376571332906a880000008114610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612041565b60405180910390fd5b610b3f338383610eb2565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bd261112a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611f81565b60405180910390fd5b610c4b81611376565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612121565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611fa1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e199190612181565b60405180910390a3505050565b6000610e328484610b43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eac5781811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590612001565b60405180910390fd5b610eab8484848403610c5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990612101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611f21565b60405180910390fd5b610f9d83838361143c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90612061565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111119190612181565b60405180910390a36111248484846116b8565b50505050565b611132610c53565b73ffffffffffffffffffffffffffffffffffffffff16611150610905565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906120c1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906120e1565b60405180910390fd5b6112248260008361143c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611f61565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161135d9190612181565b60405180910390a3611371836000846116b8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611447838383610c4e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114ae5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156114b8576116b3565b6114c0610905565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f8576116b3565b600860009054906101000a900460ff16611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90611fe1565b60405180910390fd5b600060095411801561155b57506009544210155b61159a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611591906120a1565b60405180910390fd5b6006548111156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690612141565b60405180910390fd5b600754600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461162c91906121d3565b42101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590611fc1565b60405180910390fd5b42600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b6000813590506116cc81612352565b92915050565b6000813590506116e181612369565b92915050565b6000813590506116f681612380565b92915050565b60006020828403121561170e57600080fd5b600061171c848285016116bd565b91505092915050565b6000806040838503121561173857600080fd5b6000611746858286016116bd565b9250506020611757858286016116bd565b9150509250929050565b60008060006060848603121561177657600080fd5b6000611784868287016116bd565b9350506020611795868287016116bd565b92505060406117a6868287016116e7565b9150509250925092565b600080604083850312156117c357600080fd5b60006117d1858286016116bd565b92505060206117e2858286016116e7565b9150509250929050565b6000602082840312156117fe57600080fd5b600061180c848285016116d2565b91505092915050565b60006020828403121561182757600080fd5b6000611835848285016116e7565b91505092915050565b61184781612229565b82525050565b6118568161223b565b82525050565b6000611867826121b7565b61187181856121c2565b935061188181856020860161227e565b61188a81612341565b840191505092915050565b60006118a26023836121c2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611908601c836121c2565b91507f496e76616c696420646973747269627574696f6e2061646472657373000000006000830152602082019050919050565b60006119486022836121c2565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ae6026836121c2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a146022836121c2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a7a601f836121c2565b91507f506c65617365207761697420666f7220636f6f6c646f776e20706572696f64006000830152602082019050919050565b6000611aba6016836121c2565b91507f54726164696e67206973206e6f7420656e61626c6564000000000000000000006000830152602082019050919050565b6000611afa601d836121c2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611b3a601c836121c2565b91507f4c696d6974206d7573742062652067726561746572207468616e2030000000006000830152602082019050919050565b6000611b7a601a836121c2565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b6000611bba6026836121c2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c206020836121c2565b91507f4c696d69742063616e6e6f742065786365656420746f74616c20737570706c796000830152602082019050919050565b6000611c606019836121c2565b91507f54726164696e67206973206e6f742079657420616374697665000000000000006000830152602082019050919050565b6000611ca06020836121c2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611ce06021836121c2565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d466025836121c2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611dac6024836121c2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e126020836121c2565b91507f416d6f756e742065786365656473207472616e73616374696f6e206c696d69746000830152602082019050919050565b6000611e526025836121c2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611eb481612267565b82525050565b611ec381612271565b82525050565b6000602082019050611ede600083018461183e565b92915050565b6000602082019050611ef9600083018461184d565b92915050565b60006020820190508181036000830152611f19818461185c565b905092915050565b60006020820190508181036000830152611f3a81611895565b9050919050565b60006020820190508181036000830152611f5a816118fb565b9050919050565b60006020820190508181036000830152611f7a8161193b565b9050919050565b60006020820190508181036000830152611f9a816119a1565b9050919050565b60006020820190508181036000830152611fba81611a07565b9050919050565b60006020820190508181036000830152611fda81611a6d565b9050919050565b60006020820190508181036000830152611ffa81611aad565b9050919050565b6000602082019050818103600083015261201a81611aed565b9050919050565b6000602082019050818103600083015261203a81611b2d565b9050919050565b6000602082019050818103600083015261205a81611b6d565b9050919050565b6000602082019050818103600083015261207a81611bad565b9050919050565b6000602082019050818103600083015261209a81611c13565b9050919050565b600060208201905081810360008301526120ba81611c53565b9050919050565b600060208201905081810360008301526120da81611c93565b9050919050565b600060208201905081810360008301526120fa81611cd3565b9050919050565b6000602082019050818103600083015261211a81611d39565b9050919050565b6000602082019050818103600083015261213a81611d9f565b9050919050565b6000602082019050818103600083015261215a81611e05565b9050919050565b6000602082019050818103600083015261217a81611e45565b9050919050565b60006020820190506121966000830184611eab565b92915050565b60006020820190506121b16000830184611eba565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121de82612267565b91506121e983612267565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561221e5761221d6122e3565b5b828201905092915050565b600061223482612247565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561229c578082015181840152602081019050612281565b838111156122ab576000848401525b50505050565b600060028204905060018216806122c957607f821691505b602082108114156122dd576122dc612312565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61235b81612229565b811461236657600080fd5b50565b6123728161223b565b811461237d57600080fd5b50565b61238981612267565b811461239457600080fd5b5056fea26469706673582212207bcfe6930ee65ec85dd9a48f096c6db788b0f25e6c553ad32dc561bf975ce52f64736f6c63430008000033

Deployed Bytecode Sourcemap

21910:4257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9477:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11828:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10597:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12609:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22311:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23724:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10439:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23967:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13313:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21248:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22224:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22487:59;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22148:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2902:103;;;:::i;:::-;;22356:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21658:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23341:316;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2254:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22189:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9696:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14054:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11101:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25816:348;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11357:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3160:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9477:100;9531:13;9564:5;9557:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9477:100;:::o;11828:201::-;11911:4;11928:13;11944:12;:10;:12::i;:::-;11928:28;;11967:32;11976:5;11983:7;11992:6;11967:8;:32::i;:::-;12017:4;12010:11;;;11828:201;;;;:::o;10597:108::-;10658:7;10685:12;;10678:19;;10597:108;:::o;12609:295::-;12740:4;12757:15;12775:12;:10;:12::i;:::-;12757:30;;12798:38;12814:4;12820:7;12829:6;12798:15;:38::i;:::-;12847:27;12857:4;12863:2;12867:6;12847:9;:27::i;:::-;12892:4;12885:11;;;12609:295;;;;;:::o;22311:38::-;;;;:::o;23724:161::-;2140:13;:11;:13::i;:::-;23817:11:::1;23801:13;:27;;;;23844:33;23865:11;23844:33;;;;;;:::i;:::-;;;;;;;;23724:161:::0;:::o;10439:93::-;10497:5;10522:2;10515:9;;10439:93;:::o;23967:445::-;2140:13;:11;:13::i;:::-;24042:8:::1;24038:321;;;24084:4;24067:14;;:21;;;;;;;;;;;;;;;;;;22396:9;24158:15;:31;;;;:::i;:::-;24132:23;:57;;;;24209:41;24226:23;;24209:41;;;;;;:::i;:::-;;;;;;;;24038:321;;;24300:5;24283:14;;:22;;;;;;;;;;;;;;;;;;24346:1;24320:23;:27;;;;24038:321;24374:30;24395:8;24374:30;;;;;;:::i;:::-;;;;;;;;23967:445:::0;:::o;13313:238::-;13401:4;13418:13;13434:12;:10;:12::i;:::-;13418:28;;13457:64;13466:5;13473:7;13510:10;13482:25;13492:5;13499:7;13482:9;:25::i;:::-;:38;;;;:::i;:::-;13457:8;:64::i;:::-;13539:4;13532:11;;;13313:238;;;;:::o;21248:91::-;21304:27;21310:12;:10;:12::i;:::-;21324:6;21304:5;:27::i;:::-;21248:91;:::o;22224:26::-;;;;;;;;;;;;;:::o;22487:59::-;;;;;;;;;;;;;;;;;:::o;22148:34::-;;;;:::o;10768:127::-;10842:7;10869:9;:18;10879:7;10869:18;;;;;;;;;;;;;;;;10862:25;;10768:127;;;:::o;2902:103::-;2140:13;:11;:13::i;:::-;2967:30:::1;2994:1;2967:18;:30::i;:::-;2902:103::o:0;22356:49::-;22396:9;22356:49;:::o;21658:164::-;21735:46;21751:7;21760:12;:10;:12::i;:::-;21774:6;21735:15;:46::i;:::-;21792:22;21798:7;21807:6;21792:5;:22::i;:::-;21658:164;;:::o;23341:316::-;2140:13;:11;:13::i;:::-;23440:1:::1;23429:8;:12;23421:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;22069:20;23493:8;:26;;23485:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23589:8;23567:19;:30;;;;23613:36;23640:8;23613:36;;;;;;:::i;:::-;;;;;;;;23341:316:::0;:::o;2254:87::-;2300:7;2327:6;;;;;;;;;;;2320:13;;2254:87;:::o;22189:28::-;;;;:::o;9696:104::-;9752:13;9785:7;9778:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9696:104;:::o;14054:436::-;14147:4;14164:13;14180:12;:10;:12::i;:::-;14164:28;;14203:24;14230:25;14240:5;14247:7;14230:9;:25::i;:::-;14203:52;;14294:15;14274:16;:35;;14266:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14387:60;14396:5;14403:7;14431:15;14412:16;:34;14387:8;:60::i;:::-;14478:4;14471:11;;;;14054:436;;;;:::o;11101:193::-;11180:4;11197:13;11213:12;:10;:12::i;:::-;11197:28;;11236;11246:5;11253:2;11257:6;11236:9;:28::i;:::-;11282:4;11275:11;;;11101:193;;;;:::o;25816:348::-;2140:13;:11;:13::i;:::-;25938:1:::1;25908:32;;:18;:32;;;;25900:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25984:14;26001:21;26011:10;26001:9;:21::i;:::-;25984:38;;22069:20;26041:6;:24;26033:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26107:49;26117:10;26129:18;26149:6;26107:9;:49::i;:::-;2164:1;25816:348:::0;:::o;11357:151::-;11446:7;11473:11;:18;11485:5;11473:18;;;;;;;;;;;;;;;:27;11492:7;11473:27;;;;;;;;;;;;;;;;11466:34;;11357:151;;;;:::o;3160:201::-;2140:13;:11;:13::i;:::-;3269:1:::1;3249:22;;:8;:22;;;;3241:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3325:28;3344:8;3325:18;:28::i;:::-;3160:201:::0;:::o;19805:125::-;;;;:::o;805:98::-;858:7;885:10;878:17;;805:98;:::o;18081:380::-;18234:1;18217:19;;:5;:19;;;;18209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18315:1;18296:21;;:7;:21;;;;18288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18399:6;18369:11;:18;18381:5;18369:18;;;;;;;;;;;;;;;:27;18388:7;18369:27;;;;;;;;;;;;;;;:36;;;;18437:7;18421:32;;18430:5;18421:32;;;18446:6;18421:32;;;;;;:::i;:::-;;;;;;;;18081:380;;;:::o;18752:453::-;18887:24;18914:25;18924:5;18931:7;18914:9;:25::i;:::-;18887:52;;18974:17;18954:16;:37;18950:248;;19036:6;19016:16;:26;;19008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19120:51;19129:5;19136:7;19164:6;19145:16;:25;19120:8;:51::i;:::-;18950:248;18752:453;;;;:::o;14960:840::-;15107:1;15091:18;;:4;:18;;;;15083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15184:1;15170:16;;:2;:16;;;;15162:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15239:38;15260:4;15266:2;15270:6;15239:20;:38::i;:::-;15290:19;15312:9;:15;15322:4;15312:15;;;;;;;;;;;;;;;;15290:37;;15361:6;15346:11;:21;;15338:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15478:6;15464:11;:20;15446:9;:15;15456:4;15446:15;;;;;;;;;;;;;;;:38;;;;15681:6;15664:9;:13;15674:2;15664:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15731:2;15716:26;;15725:4;15716:26;;;15735:6;15716:26;;;;;;:::i;:::-;;;;;;;;15755:37;15775:4;15781:2;15785:6;15755:19;:37::i;:::-;14960:840;;;;:::o;2419:132::-;2494:12;:10;:12::i;:::-;2483:23;;:7;:5;:7::i;:::-;:23;;;2475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2419:132::o;16968:675::-;17071:1;17052:21;;:7;:21;;;;17044:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17124:49;17145:7;17162:1;17166:6;17124:20;:49::i;:::-;17186:22;17211:9;:18;17221:7;17211:18;;;;;;;;;;;;;;;;17186:43;;17266:6;17248:14;:24;;17240:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17385:6;17368:14;:23;17347:9;:18;17357:7;17347:18;;;;;;;;;;;;;;;:44;;;;17502:6;17486:12;;:22;;;;;;;;;;;17563:1;17537:37;;17546:7;17537:37;;;17567:6;17537:37;;;;;;:::i;:::-;;;;;;;;17587:48;17607:7;17624:1;17628:6;17587:19;:48::i;:::-;16968:675;;;:::o;3521:191::-;3595:16;3614:6;;;;;;;;;;;3595:25;;3640:8;3631:6;;:17;;;;;;;;;;;;;;;;;;3695:8;3664:40;;3685:8;3664:40;;;;;;;;;;;;3521:191;;:::o;24492:1266::-;24635:44;24662:4;24668:2;24672:6;24635:26;:44::i;:::-;24779:1;24763:18;;:4;:18;;;:38;;;;24799:1;24785:16;;:2;:16;;;24763:38;24759:51;;;24803:7;;24759:51;24894:7;:5;:7::i;:::-;24886:15;;:4;:15;;;24882:28;;;24903:7;;24882:28;24984:14;;;;;;;;;;;24976:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;25145:1;25119:23;;:27;:87;;;;;25183:23;;25164:15;:42;;25119:87;25097:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;25344:19;;25334:6;:29;;25326:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25552:13;;25519:24;:30;25544:4;25519:30;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;25500:15;:65;;25478:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;25735:15;25702:24;:30;25727:4;25702:30;;;;;;;;;;;;;;;:48;;;;24492:1266;;;;:::o;20534:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:407::-;;;1800:2;1788:9;1779:7;1775:23;1771:32;1768:2;;;1816:1;1813;1806:12;1768:2;1859:1;1884:53;1929:7;1920:6;1909:9;1905:22;1884:53;:::i;:::-;1874:63;;1830:117;1986:2;2012:53;2057:7;2048:6;2037:9;2033:22;2012:53;:::i;:::-;2002:63;;1957:118;1758:324;;;;;:::o;2088:256::-;;2193:2;2181:9;2172:7;2168:23;2164:32;2161:2;;;2209:1;2206;2199:12;2161:2;2252:1;2277:50;2319:7;2310:6;2299:9;2295:22;2277:50;:::i;:::-;2267:60;;2223:114;2151:193;;;;:::o;2350:262::-;;2458:2;2446:9;2437:7;2433:23;2429:32;2426:2;;;2474:1;2471;2464:12;2426:2;2517:1;2542:53;2587:7;2578:6;2567:9;2563:22;2542:53;:::i;:::-;2532:63;;2488:117;2416:196;;;;:::o;2618:118::-;2705:24;2723:5;2705:24;:::i;:::-;2700:3;2693:37;2683:53;;:::o;2742:109::-;2823:21;2838:5;2823:21;:::i;:::-;2818:3;2811:34;2801:50;;:::o;2857:364::-;;2973:39;3006:5;2973:39;:::i;:::-;3028:71;3092:6;3087:3;3028:71;:::i;:::-;3021:78;;3108:52;3153:6;3148:3;3141:4;3134:5;3130:16;3108:52;:::i;:::-;3185:29;3207:6;3185:29;:::i;:::-;3180:3;3176:39;3169:46;;2949:272;;;;;:::o;3227:367::-;;3390:67;3454:2;3449:3;3390:67;:::i;:::-;3383:74;;3487:34;3483:1;3478:3;3474:11;3467:55;3553:5;3548:2;3543:3;3539:12;3532:27;3585:2;3580:3;3576:12;3569:19;;3373:221;;;:::o;3600:326::-;;3763:67;3827:2;3822:3;3763:67;:::i;:::-;3756:74;;3860:30;3856:1;3851:3;3847:11;3840:51;3917:2;3912:3;3908:12;3901:19;;3746:180;;;:::o;3932:366::-;;4095:67;4159:2;4154:3;4095:67;:::i;:::-;4088:74;;4192:34;4188:1;4183:3;4179:11;4172:55;4258:4;4253:2;4248:3;4244:12;4237:26;4289:2;4284:3;4280:12;4273:19;;4078:220;;;:::o;4304:370::-;;4467:67;4531:2;4526:3;4467:67;:::i;:::-;4460:74;;4564:34;4560:1;4555:3;4551:11;4544:55;4630:8;4625:2;4620:3;4616:12;4609:30;4665:2;4660:3;4656:12;4649:19;;4450:224;;;:::o;4680:366::-;;4843:67;4907:2;4902:3;4843:67;:::i;:::-;4836:74;;4940:34;4936:1;4931:3;4927:11;4920:55;5006:4;5001:2;4996:3;4992:12;4985:26;5037:2;5032:3;5028:12;5021:19;;4826:220;;;:::o;5052:329::-;;5215:67;5279:2;5274:3;5215:67;:::i;:::-;5208:74;;5312:33;5308:1;5303:3;5299:11;5292:54;5372:2;5367:3;5363:12;5356:19;;5198:183;;;:::o;5387:320::-;;5550:67;5614:2;5609:3;5550:67;:::i;:::-;5543:74;;5647:24;5643:1;5638:3;5634:11;5627:45;5698:2;5693:3;5689:12;5682:19;;5533:174;;;:::o;5713:327::-;;5876:67;5940:2;5935:3;5876:67;:::i;:::-;5869:74;;5973:31;5969:1;5964:3;5960:11;5953:52;6031:2;6026:3;6022:12;6015:19;;5859:181;;;:::o;6046:326::-;;6209:67;6273:2;6268:3;6209:67;:::i;:::-;6202:74;;6306:30;6302:1;6297:3;6293:11;6286:51;6363:2;6358:3;6354:12;6347:19;;6192:180;;;:::o;6378:324::-;;6541:67;6605:2;6600:3;6541:67;:::i;:::-;6534:74;;6638:28;6634:1;6629:3;6625:11;6618:49;6693:2;6688:3;6684:12;6677:19;;6524:178;;;:::o;6708:370::-;;6871:67;6935:2;6930:3;6871:67;:::i;:::-;6864:74;;6968:34;6964:1;6959:3;6955:11;6948:55;7034:8;7029:2;7024:3;7020:12;7013:30;7069:2;7064:3;7060:12;7053:19;;6854:224;;;:::o;7084:330::-;;7247:67;7311:2;7306:3;7247:67;:::i;:::-;7240:74;;7344:34;7340:1;7335:3;7331:11;7324:55;7405:2;7400:3;7396:12;7389:19;;7230:184;;;:::o;7420:323::-;;7583:67;7647:2;7642:3;7583:67;:::i;:::-;7576:74;;7680:27;7676:1;7671:3;7667:11;7660:48;7734:2;7729:3;7725:12;7718:19;;7566:177;;;:::o;7749:330::-;;7912:67;7976:2;7971:3;7912:67;:::i;:::-;7905:74;;8009:34;8005:1;8000:3;7996:11;7989:55;8070:2;8065:3;8061:12;8054:19;;7895:184;;;:::o;8085:365::-;;8248:67;8312:2;8307:3;8248:67;:::i;:::-;8241:74;;8345:34;8341:1;8336:3;8332:11;8325:55;8411:3;8406:2;8401:3;8397:12;8390:25;8441:2;8436:3;8432:12;8425:19;;8231:219;;;:::o;8456:369::-;;8619:67;8683:2;8678:3;8619:67;:::i;:::-;8612:74;;8716:34;8712:1;8707:3;8703:11;8696:55;8782:7;8777:2;8772:3;8768:12;8761:29;8816:2;8811:3;8807:12;8800:19;;8602:223;;;:::o;8831:368::-;;8994:67;9058:2;9053:3;8994:67;:::i;:::-;8987:74;;9091:34;9087:1;9082:3;9078:11;9071:55;9157:6;9152:2;9147:3;9143:12;9136:28;9190:2;9185:3;9181:12;9174:19;;8977:222;;;:::o;9205:330::-;;9368:67;9432:2;9427:3;9368:67;:::i;:::-;9361:74;;9465:34;9461:1;9456:3;9452:11;9445:55;9526:2;9521:3;9517:12;9510:19;;9351:184;;;:::o;9541:369::-;;9704:67;9768:2;9763:3;9704:67;:::i;:::-;9697:74;;9801:34;9797:1;9792:3;9788:11;9781:55;9867:7;9862:2;9857:3;9853:12;9846:29;9901:2;9896:3;9892:12;9885:19;;9687:223;;;:::o;9916:118::-;10003:24;10021:5;10003:24;:::i;:::-;9998:3;9991:37;9981:53;;:::o;10040:112::-;10123:22;10139:5;10123:22;:::i;:::-;10118:3;10111:35;10101:51;;:::o;10158:222::-;;10289:2;10278:9;10274:18;10266:26;;10302:71;10370:1;10359:9;10355:17;10346:6;10302:71;:::i;:::-;10256:124;;;;:::o;10386:210::-;;10511:2;10500:9;10496:18;10488:26;;10524:65;10586:1;10575:9;10571:17;10562:6;10524:65;:::i;:::-;10478:118;;;;:::o;10602:313::-;;10753:2;10742:9;10738:18;10730:26;;10802:9;10796:4;10792:20;10788:1;10777:9;10773:17;10766:47;10830:78;10903:4;10894:6;10830:78;:::i;:::-;10822:86;;10720:195;;;;:::o;10921:419::-;;11125:2;11114:9;11110:18;11102:26;;11174:9;11168:4;11164:20;11160:1;11149:9;11145:17;11138:47;11202:131;11328:4;11202:131;:::i;:::-;11194:139;;11092:248;;;:::o;11346:419::-;;11550:2;11539:9;11535:18;11527:26;;11599:9;11593:4;11589:20;11585:1;11574:9;11570:17;11563:47;11627:131;11753:4;11627:131;:::i;:::-;11619:139;;11517:248;;;:::o;11771:419::-;;11975:2;11964:9;11960:18;11952:26;;12024:9;12018:4;12014:20;12010:1;11999:9;11995:17;11988:47;12052:131;12178:4;12052:131;:::i;:::-;12044:139;;11942:248;;;:::o;12196:419::-;;12400:2;12389:9;12385:18;12377:26;;12449:9;12443:4;12439:20;12435:1;12424:9;12420:17;12413:47;12477:131;12603:4;12477:131;:::i;:::-;12469:139;;12367:248;;;:::o;12621:419::-;;12825:2;12814:9;12810:18;12802:26;;12874:9;12868:4;12864:20;12860:1;12849:9;12845:17;12838:47;12902:131;13028:4;12902:131;:::i;:::-;12894:139;;12792:248;;;:::o;13046:419::-;;13250:2;13239:9;13235:18;13227:26;;13299:9;13293:4;13289:20;13285:1;13274:9;13270:17;13263:47;13327:131;13453:4;13327:131;:::i;:::-;13319:139;;13217:248;;;:::o;13471:419::-;;13675:2;13664:9;13660:18;13652:26;;13724:9;13718:4;13714:20;13710:1;13699:9;13695:17;13688:47;13752:131;13878:4;13752:131;:::i;:::-;13744:139;;13642:248;;;:::o;13896:419::-;;14100:2;14089:9;14085:18;14077:26;;14149:9;14143:4;14139:20;14135:1;14124:9;14120:17;14113:47;14177:131;14303:4;14177:131;:::i;:::-;14169:139;;14067:248;;;:::o;14321:419::-;;14525:2;14514:9;14510:18;14502:26;;14574:9;14568:4;14564:20;14560:1;14549:9;14545:17;14538:47;14602:131;14728:4;14602:131;:::i;:::-;14594:139;;14492:248;;;:::o;14746:419::-;;14950:2;14939:9;14935:18;14927:26;;14999:9;14993:4;14989:20;14985:1;14974:9;14970:17;14963:47;15027:131;15153:4;15027:131;:::i;:::-;15019:139;;14917:248;;;:::o;15171:419::-;;15375:2;15364:9;15360:18;15352:26;;15424:9;15418:4;15414:20;15410:1;15399:9;15395:17;15388:47;15452:131;15578:4;15452:131;:::i;:::-;15444:139;;15342:248;;;:::o;15596:419::-;;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15767:248;;;:::o;16021:419::-;;16225:2;16214:9;16210:18;16202:26;;16274:9;16268:4;16264:20;16260:1;16249:9;16245:17;16238:47;16302:131;16428:4;16302:131;:::i;:::-;16294:139;;16192:248;;;:::o;16446:419::-;;16650:2;16639:9;16635:18;16627:26;;16699:9;16693:4;16689:20;16685:1;16674:9;16670:17;16663:47;16727:131;16853:4;16727:131;:::i;:::-;16719:139;;16617:248;;;:::o;16871:419::-;;17075:2;17064:9;17060:18;17052:26;;17124:9;17118:4;17114:20;17110:1;17099:9;17095:17;17088:47;17152:131;17278:4;17152:131;:::i;:::-;17144:139;;17042:248;;;:::o;17296:419::-;;17500:2;17489:9;17485:18;17477:26;;17549:9;17543:4;17539:20;17535:1;17524:9;17520:17;17513:47;17577:131;17703:4;17577:131;:::i;:::-;17569:139;;17467:248;;;:::o;17721:419::-;;17925:2;17914:9;17910:18;17902:26;;17974:9;17968:4;17964:20;17960:1;17949:9;17945:17;17938:47;18002:131;18128:4;18002:131;:::i;:::-;17994:139;;17892:248;;;:::o;18146:419::-;;18350:2;18339:9;18335:18;18327:26;;18399:9;18393:4;18389:20;18385:1;18374:9;18370:17;18363:47;18427:131;18553:4;18427:131;:::i;:::-;18419:139;;18317:248;;;:::o;18571:419::-;;18775:2;18764:9;18760:18;18752:26;;18824:9;18818:4;18814:20;18810:1;18799:9;18795:17;18788:47;18852:131;18978:4;18852:131;:::i;:::-;18844:139;;18742:248;;;:::o;18996:222::-;;19127:2;19116:9;19112:18;19104:26;;19140:71;19208:1;19197:9;19193:17;19184:6;19140:71;:::i;:::-;19094:124;;;;:::o;19224:214::-;;19351:2;19340:9;19336:18;19328:26;;19364:67;19428:1;19417:9;19413:17;19404:6;19364:67;:::i;:::-;19318:120;;;;:::o;19444:99::-;;19530:5;19524:12;19514:22;;19503:40;;;:::o;19549:169::-;;19667:6;19662:3;19655:19;19707:4;19702:3;19698:14;19683:29;;19645:73;;;;:::o;19724:305::-;;19783:20;19801:1;19783:20;:::i;:::-;19778:25;;19817:20;19835:1;19817:20;:::i;:::-;19812:25;;19971:1;19903:66;19899:74;19896:1;19893:81;19890:2;;;19977:18;;:::i;:::-;19890:2;20021:1;20018;20014:9;20007:16;;19768:261;;;;:::o;20035:96::-;;20101:24;20119:5;20101:24;:::i;:::-;20090:35;;20080:51;;;:::o;20137:90::-;;20214:5;20207:13;20200:21;20189:32;;20179:48;;;:::o;20233:126::-;;20310:42;20303:5;20299:54;20288:65;;20278:81;;;:::o;20365:77::-;;20431:5;20420:16;;20410:32;;;:::o;20448:86::-;;20523:4;20516:5;20512:16;20501:27;;20491:43;;;:::o;20540:307::-;20608:1;20618:113;20632:6;20629:1;20626:13;20618:113;;;20717:1;20712:3;20708:11;20702:18;20698:1;20693:3;20689:11;20682:39;20654:2;20651:1;20647:10;20642:15;;20618:113;;;20749:6;20746:1;20743:13;20740:2;;;20829:1;20820:6;20815:3;20811:16;20804:27;20740:2;20589:258;;;;:::o;20853:320::-;;20934:1;20928:4;20924:12;20914:22;;20981:1;20975:4;20971:12;21002:18;20992:2;;21058:4;21050:6;21046:17;21036:27;;20992:2;21120;21112:6;21109:14;21089:18;21086:38;21083:2;;;21139:18;;:::i;:::-;21083:2;20904:269;;;;:::o;21179:180::-;21227:77;21224:1;21217:88;21324:4;21321:1;21314:15;21348:4;21345:1;21338:15;21365:180;21413:77;21410:1;21403:88;21510:4;21507:1;21500:15;21534:4;21531:1;21524:15;21551:102;;21643:2;21639:7;21634:2;21627:5;21623:14;21619:28;21609:38;;21599:54;;;:::o;21659:122::-;21732:24;21750:5;21732:24;:::i;:::-;21725:5;21722:35;21712:2;;21771:1;21768;21761:12;21712:2;21702:79;:::o;21787:116::-;21857:21;21872:5;21857:21;:::i;:::-;21850:5;21847:32;21837:2;;21893:1;21890;21883:12;21837:2;21827:76;:::o;21909:122::-;21982:24;22000:5;21982:24;:::i;:::-;21975:5;21972:35;21962:2;;22021:1;22018;22011:12;21962:2;21952:79;:::o

Swarm Source

ipfs://7bcfe6930ee65ec85dd9a48f096c6db788b0f25e6c553ad32dc561bf975ce52f

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

Jerry The Turtle (JYAI) combines the viral charm of meme coins with AI-driven creativity and innovation. Inspired by the Matt Furie universe, it offers daily AI-generated content, animations, and interactive tools, creating a unique ecosystem. With trading set to launch soon.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.