ETH Price: $2,525.11 (+0.30%)

Contract

0xE97F433a3F41b578eD9183A106661a6A2F487263
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve185580252023-11-12 19:49:59292 days ago1699818599IN
0xE97F433a...A2F487263
0 ETH0.0007925131.82536472
Approve185311152023-11-09 1:28:11296 days ago1699493291IN
0xE97F433a...A2F487263
0 ETH0.0015121432.1773133
Approve185250282023-11-08 5:02:47297 days ago1699419767IN
0xE97F433a...A2F487263
0 ETH0.0014173830
Approve185250142023-11-08 4:59:59297 days ago1699419599IN
0xE97F433a...A2F487263
0 ETH0.0009410920.02585447
Approve185250032023-11-08 4:57:47297 days ago1699419467IN
0xE97F433a...A2F487263
0 ETH0.0009513820.13680332
Approve185250022023-11-08 4:57:35297 days ago1699419455IN
0xE97F433a...A2F487263
0 ETH0.0008612918.22992404
Approve185249932023-11-08 4:55:47297 days ago1699419347IN
0xE97F433a...A2F487263
0 ETH0.0009957421.07580181
Approve185249922023-11-08 4:55:35297 days ago1699419335IN
0xE97F433a...A2F487263
0 ETH0.0010089221.36024227
Approve184238972023-10-25 1:09:47311 days ago1698196187IN
0xE97F433a...A2F487263
0 ETH0.0007847116.62179812
Approve183673822023-10-17 3:21:59319 days ago1697512919IN
0xE97F433a...A2F487263
0 ETH0.000264955.61504668
Approve183406132023-10-13 9:35:23323 days ago1697189723IN
0xE97F433a...A2F487263
0 ETH0.000255165.40760134
Approve183134912023-10-09 14:23:59326 days ago1696861439IN
0xE97F433a...A2F487263
0 ETH0.000212388.50824731
Approve182909472023-10-06 10:45:35330 days ago1696589135IN
0xE97F433a...A2F487263
0 ETH0.0009449220
Approve182899892023-10-06 7:31:47330 days ago1696577507IN
0xE97F433a...A2F487263
0 ETH0.0004799610.15879259
Approve182899692023-10-06 7:27:47330 days ago1696577267IN
0xE97F433a...A2F487263
0 ETH0.000352917.4697781
Approve182899602023-10-06 7:25:59330 days ago1696577159IN
0xE97F433a...A2F487263
0 ETH0.0005479111.67125862
Approve180375612023-08-31 22:34:11365 days ago1693521251IN
0xE97F433a...A2F487263
0 ETH0.0008699818.41391495
Approve178907512023-08-11 9:27:59386 days ago1691746079IN
0xE97F433a...A2F487263
0 ETH0.0008904718.87158409
Approve178456102023-08-05 1:51:59392 days ago1691200319IN
0xE97F433a...A2F487263
0 ETH0.0006646114.08502135
Approve178179232023-08-01 5:00:23396 days ago1690866023IN
0xE97F433a...A2F487263
0 ETH0.0008339817.65203335
Approve177155472023-07-17 21:06:23410 days ago1689627983IN
0xE97F433a...A2F487263
0 ETH0.0009015436.20380868
Approve176610822023-07-10 5:06:59418 days ago1688965619IN
0xE97F433a...A2F487263
0 ETH0.0003299513.21837665
Approve176548562023-07-09 8:06:11419 days ago1688889971IN
0xE97F433a...A2F487263
0 ETH0.0006847914.57194246
Approve176478802023-07-08 8:32:35420 days ago1688805155IN
0xE97F433a...A2F487263
0 ETH0.0012879827.44252108
Approve176382192023-07-06 23:58:59421 days ago1688687939IN
0xE97F433a...A2F487263
0 ETH0.0017178336.35935077
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LOL

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-26
*/

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

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

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


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}


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


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



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



interface IRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}



contract LOL is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 10000000000 * 10**18;

    IRouter public router;
    address public uniswapV2Pair;
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    mapping(address => bool) public excludeLimitedList;


    constructor() ERC20("LOL", "LOL") {
        _mint(msg.sender, INITIAL_SUPPLY);
        
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());
        router = _router;
        uniswapV2Pair = _pair;
        limited = true;
        maxHoldingAmount = 200000000 * 10**18;
        minHoldingAmount = 0;
        excludeLimitedList[owner()] = true;
        excludeLimitedList[uniswapV2Pair] = true;
    }

    function setRule(bool _limited, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function setExcludeLimited(address account) public onlyOwner {
        require(account != owner() && account != address(this), "account wrong");
        require(account != address(0), "account wrong");
        excludeLimitedList[account] = true;
    }

    function setExcludeLimitedList(address[] calldata account) public onlyOwner {
        require(account.length < 801, "GAS Error: max airdrop limit is 801 addresses");
        for (uint256 i = 0; i < account.length; i++) {
            excludeLimitedList[account[i]] = true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair && !excludeLimitedList[to]) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }


    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }

    function multiTransfer(address[] calldata addresses, uint256[] calldata amounts) public {
        require(addresses.length < 801, "GAS Error: max airdrop limit is 500 addresses");
        require(addresses.length == amounts.length, "Mismatch between Address and token count");

        uint256 sum = 0;
        for (uint256 i = 0; i < addresses.length; i++) {
            sum = sum + amounts[i];
        }

        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");
        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amounts[i]);
        }
    }

    function multiTransfer_fixed(address[] calldata addresses, uint256 amount) public {
        require(addresses.length < 2001, "GAS Error: max airdrop limit is 2000 addresses");

        uint256 sum = amount * addresses.length;
        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");

        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeLimitedList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer_fixed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setExcludeLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"setExcludeLimitedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f4c4f4c00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c4f4c000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000bbc565b508060049081620000a1919062000bbc565b505050620000c4620000b86200040460201b60201c565b6200040c60201b60201c565b620000e2336b204fce5e3e25026110000000620004d260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000149573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016f919062000d0d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fd919062000d0d565b6040518363ffffffff1660e01b81526004016200021c92919062000d50565b6020604051808303816000875af11580156200023c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000262919062000d0d565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760146101000a81548160ff0219169083151502179055506aa56fa5b99019a5c800000060088190555060006009819055506001600a6000620003316200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000f7c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000544576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053b9062000dde565b60405180910390fd5b62000558600083836200066960201b60201c565b80600260008282546200056c919062000e2f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200061f919062000e7b565b60405180910390a36200063b60008383620008f560201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200078c57620006d06200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620007445750620007156200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d9062000ee8565b60405180910390fd5b620008f0565b600760149054906101000a900460ff168015620007f65750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156200084d5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15620008ef57600854816200086d84620008fa60201b620009a01760201c565b62000879919062000e2f565b11158015620008ac5750600954816200089d84620008fa60201b620009a01760201c565b620008a9919062000e2f565b10155b620008ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e59062000f5a565b60405180910390fd5b5b5b505050565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009c457607f821691505b602082108103620009da57620009d96200097c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a05565b62000a50868362000a05565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9d62000a9762000a918462000a68565b62000a72565b62000a68565b9050919050565b6000819050919050565b62000ab98362000a7c565b62000ad162000ac88262000aa4565b84845462000a12565b825550505050565b600090565b62000ae862000ad9565b62000af581848462000aae565b505050565b5b8181101562000b1d5762000b1160008262000ade565b60018101905062000afb565b5050565b601f82111562000b6c5762000b3681620009e0565b62000b4184620009f5565b8101602085101562000b51578190505b62000b6962000b6085620009f5565b83018262000afa565b50505b505050565b600082821c905092915050565b600062000b916000198460080262000b71565b1980831691505092915050565b600062000bac838362000b7e565b9150826002028217905092915050565b62000bc78262000942565b67ffffffffffffffff81111562000be35762000be26200094d565b5b62000bef8254620009ab565b62000bfc82828562000b21565b600060209050601f83116001811462000c34576000841562000c1f578287015190505b62000c2b858262000b9e565b86555062000c9b565b601f19841662000c4486620009e0565b60005b8281101562000c6e5784890151825560018201915060208501945060208101905062000c47565b8683101562000c8e578489015162000c8a601f89168262000b7e565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cd58262000ca8565b9050919050565b62000ce78162000cc8565b811462000cf357600080fd5b50565b60008151905062000d078162000cdc565b92915050565b60006020828403121562000d265762000d2562000ca3565b5b600062000d368482850162000cf6565b91505092915050565b62000d4a8162000cc8565b82525050565b600060408201905062000d67600083018562000d3f565b62000d76602083018462000d3f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dc6601f8362000d7d565b915062000dd38262000d8e565b602082019050919050565b6000602082019050818103600083015262000df98162000db7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e3c8262000a68565b915062000e498362000a68565b925082820190508082111562000e645762000e6362000e00565b5b92915050565b62000e758162000a68565b82525050565b600060208201905062000e92600083018462000e6a565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000ed060168362000d7d565b915062000edd8262000e98565b602082019050919050565b6000602082019050818103600083015262000f038162000ec1565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000f4260068362000d7d565b915062000f4f8262000f0a565b602082019050919050565b6000602082019050818103600083015262000f758162000f33565b9050919050565b612c408062000f8c6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806379cc6790116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146104f5578063f2fde38b14610525578063f60dc1a714610541578063f887ea401461055d576101c4565b8063a9059cbb1461048d578063b1d17c98146104bd578063d07ea4e2146104d9576101c4565b80638da5cb5b116100d35780638da5cb5b1461040557806395d89b41146104235780639fb0930414610441578063a457c2d71461045d576101c4565b806379cc6790146103ad578063860a32ec146103c957806389f9a1d3146103e7576101c4565b8063313ce5671161016657806349bd5a5e1161014057806349bd5a5e14610339578063632e54421461035757806370a0823114610373578063715018a6146103a3576101c4565b8063313ce567146102cf57806339509351146102ed57806342966c681461031d576101c4565b80631ab99e12116101a25780631ab99e12146102355780631e89d5451461025357806323b872dd1461026f578063272e04681461029f576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d161057b565b6040516101de9190611aa0565b60405180910390f35b61020160048036038101906101fc9190611b60565b61060d565b60405161020e9190611bbb565b60405180910390f35b61021f610630565b60405161022c9190611be5565b60405180910390f35b61023d61063a565b60405161024a9190611be5565b60405180910390f35b61026d60048036038101906102689190611cbb565b610640565b005b61028960048036038101906102849190611d3c565b6107d8565b6040516102969190611bbb565b60405180910390f35b6102b960048036038101906102b49190611d8f565b610807565b6040516102c69190611bbb565b60405180910390f35b6102d7610827565b6040516102e49190611dd8565b60405180910390f35b61030760048036038101906103029190611b60565b610830565b6040516103149190611bbb565b60405180910390f35b61033760048036038101906103329190611df3565b610867565b005b61034161087b565b60405161034e9190611e2f565b60405180910390f35b610371600480360381019061036c9190611e4a565b6108a1565b005b61038d60048036038101906103889190611d8f565b6109a0565b60405161039a9190611be5565b60405180910390f35b6103ab6109e8565b005b6103c760048036038101906103c29190611b60565b6109fc565b005b6103d1610a1c565b6040516103de9190611bbb565b60405180910390f35b6103ef610a2f565b6040516103fc9190611be5565b60405180910390f35b61040d610a35565b60405161041a9190611e2f565b60405180910390f35b61042b610a5f565b6040516104389190611aa0565b60405180910390f35b61045b60048036038101906104569190611d8f565b610af1565b005b61047760048036038101906104729190611b60565b610c71565b6040516104849190611bbb565b60405180910390f35b6104a760048036038101906104a29190611b60565b610ce8565b6040516104b49190611bbb565b60405180910390f35b6104d760048036038101906104d29190611d8f565b610d0b565b005b6104f360048036038101906104ee9190611ed6565b610d7d565b005b61050f600480360381019061050a9190611f29565b610db2565b60405161051c9190611be5565b60405180910390f35b61053f600480360381019061053a9190611d8f565b610e39565b005b61055b60048036038101906105569190611f69565b610ebc565b005b610565610fb0565b6040516105729190612015565b60405180910390f35b60606003805461058a9061205f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b69061205f565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b600080610618610fd6565b9050610625818585610fde565b600191505092915050565b6000600254905090565b60095481565b6103218484905010610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90612102565b60405180910390fd5b8181905084849050146106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690612194565b60405180910390fd5b6000805b85859050811015610718578383828181106106f1576106f06121b4565b5b90506020020135826107039190612212565b9150808061071090612246565b9150506106d3565b5080610723336109a0565b1015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906122da565b60405180910390fd5b60005b858590508110156107d0576107bd33878784818110610789576107886121b4565b5b905060200201602081019061079e9190611d8f565b8686858181106107b1576107b06121b4565b5b905060200201356111a7565b80806107c890612246565b915050610767565b505050505050565b6000806107e3610fd6565b90506107f085828561141d565b6107fb8585856111a7565b60019150509392505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60008061083b610fd6565b905061085c81858561084d8589610db2565b6108579190612212565b610fde565b600191505092915050565b610878610872610fd6565b826114a9565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107d183839050106108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df9061236c565b60405180910390fd5b600083839050826108f9919061238c565b905080610905336109a0565b1015610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d906122da565b60405180910390fd5b60005b84849050811015610999576109863386868481811061096b5761096a6121b4565b5b90506020020160208101906109809190611d8f565b856111a7565b808061099190612246565b915050610949565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f0611676565b6109fa60006116f4565b565b610a0e82610a08610fd6565b8361141d565b610a1882826114a9565b5050565b600760149054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6e9061205f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a9061205f565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b610af9611676565b610b01610a35565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610b6857503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e9061241a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d9061241a565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c7c610fd6565b90506000610c8a8286610db2565b905083811015610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906124ac565b60405180910390fd5b610cdc8286868403610fde565b60019250505092915050565b600080610cf3610fd6565b9050610d008185856111a7565b600191505092915050565b610d13611676565b6000610d1e336109a0565b90506b204fce5e3e250261100000008114610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612518565b60405180910390fd5b610d793383836111a7565b5050565b610d85611676565b82600760146101000a81548160ff0219169083151502179055508160088190555080600981905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e41611676565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906125aa565b60405180910390fd5b610eb9816116f4565b50565b610ec4611676565b6103218282905010610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061263c565b60405180910390fd5b60005b82829050811015610fab576001600a6000858585818110610f3257610f316121b4565b5b9050602002016020810190610f479190611d8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fa390612246565b915050610f0e565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906126ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612760565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161119a9190611be5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906127f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612884565b60405180910390fd5b6112908383836117ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612916565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114049190611be5565b60405180910390a3611417848484611a0b565b50505050565b60006114298484610db2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a35781811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90612982565b60405180910390fd5b6114a28484848403610fde565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90612a14565b60405180910390fd5b611524826000836117ba565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612aa6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165d9190611be5565b60405180910390a361167183600084611a0b565b505050565b61167e610fd6565b73ffffffffffffffffffffffffffffffffffffffff1661169c610a35565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612b12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118c757611818610a35565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118835750611854610a35565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990612b7e565b60405180910390fd5b611a06565b600760149054906101000a900460ff1680156119305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156119865750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a055760085481611998846109a0565b6119a29190612212565b111580156119c55750600954816119b8846109a0565b6119c29190612212565b10155b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90612bea565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a4a578082015181840152602081019050611a2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a7282611a10565b611a7c8185611a1b565b9350611a8c818560208601611a2c565b611a9581611a56565b840191505092915050565b60006020820190508181036000830152611aba8184611a67565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611af782611acc565b9050919050565b611b0781611aec565b8114611b1257600080fd5b50565b600081359050611b2481611afe565b92915050565b6000819050919050565b611b3d81611b2a565b8114611b4857600080fd5b50565b600081359050611b5a81611b34565b92915050565b60008060408385031215611b7757611b76611ac2565b5b6000611b8585828601611b15565b9250506020611b9685828601611b4b565b9150509250929050565b60008115159050919050565b611bb581611ba0565b82525050565b6000602082019050611bd06000830184611bac565b92915050565b611bdf81611b2a565b82525050565b6000602082019050611bfa6000830184611bd6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611c2557611c24611c00565b5b8235905067ffffffffffffffff811115611c4257611c41611c05565b5b602083019150836020820283011115611c5e57611c5d611c0a565b5b9250929050565b60008083601f840112611c7b57611c7a611c00565b5b8235905067ffffffffffffffff811115611c9857611c97611c05565b5b602083019150836020820283011115611cb457611cb3611c0a565b5b9250929050565b60008060008060408587031215611cd557611cd4611ac2565b5b600085013567ffffffffffffffff811115611cf357611cf2611ac7565b5b611cff87828801611c0f565b9450945050602085013567ffffffffffffffff811115611d2257611d21611ac7565b5b611d2e87828801611c65565b925092505092959194509250565b600080600060608486031215611d5557611d54611ac2565b5b6000611d6386828701611b15565b9350506020611d7486828701611b15565b9250506040611d8586828701611b4b565b9150509250925092565b600060208284031215611da557611da4611ac2565b5b6000611db384828501611b15565b91505092915050565b600060ff82169050919050565b611dd281611dbc565b82525050565b6000602082019050611ded6000830184611dc9565b92915050565b600060208284031215611e0957611e08611ac2565b5b6000611e1784828501611b4b565b91505092915050565b611e2981611aec565b82525050565b6000602082019050611e446000830184611e20565b92915050565b600080600060408486031215611e6357611e62611ac2565b5b600084013567ffffffffffffffff811115611e8157611e80611ac7565b5b611e8d86828701611c0f565b93509350506020611ea086828701611b4b565b9150509250925092565b611eb381611ba0565b8114611ebe57600080fd5b50565b600081359050611ed081611eaa565b92915050565b600080600060608486031215611eef57611eee611ac2565b5b6000611efd86828701611ec1565b9350506020611f0e86828701611b4b565b9250506040611f1f86828701611b4b565b9150509250925092565b60008060408385031215611f4057611f3f611ac2565b5b6000611f4e85828601611b15565b9250506020611f5f85828601611b15565b9150509250929050565b60008060208385031215611f8057611f7f611ac2565b5b600083013567ffffffffffffffff811115611f9e57611f9d611ac7565b5b611faa85828601611c0f565b92509250509250929050565b6000819050919050565b6000611fdb611fd6611fd184611acc565b611fb6565b611acc565b9050919050565b6000611fed82611fc0565b9050919050565b6000611fff82611fe2565b9050919050565b61200f81611ff4565b82525050565b600060208201905061202a6000830184612006565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061207757607f821691505b60208210810361208a57612089612030565b5b50919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3530302061646472657373657300000000000000000000000000000000000000602082015250565b60006120ec602d83611a1b565b91506120f782612090565b604082019050919050565b6000602082019050818103600083015261211b816120df565b9050919050565b7f4d69736d61746368206265747765656e204164647265737320616e6420746f6b60008201527f656e20636f756e74000000000000000000000000000000000000000000000000602082015250565b600061217e602883611a1b565b915061218982612122565b604082019050919050565b600060208201905081810360008301526121ad81612171565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061221d82611b2a565b915061222883611b2a565b92508282019050808211156122405761223f6121e3565b5b92915050565b600061225182611b2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612283576122826121e3565b5b600182019050919050565b7f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c65740000000000600082015250565b60006122c4601b83611a1b565b91506122cf8261228e565b602082019050919050565b600060208201905081810360008301526122f3816122b7565b9050919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3230303020616464726573736573000000000000000000000000000000000000602082015250565b6000612356602e83611a1b565b9150612361826122fa565b604082019050919050565b6000602082019050818103600083015261238581612349565b9050919050565b600061239782611b2a565b91506123a283611b2a565b92508282026123b081611b2a565b915082820484148315176123c7576123c66121e3565b5b5092915050565b7f6163636f756e742077726f6e6700000000000000000000000000000000000000600082015250565b6000612404600d83611a1b565b915061240f826123ce565b602082019050919050565b60006020820190508181036000830152612433816123f7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612496602583611a1b565b91506124a18261243a565b604082019050919050565b600060208201905081810360008301526124c581612489565b9050919050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b6000612502601a83611a1b565b915061250d826124cc565b602082019050919050565b60006020820190508181036000830152612531816124f5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612594602683611a1b565b915061259f82612538565b604082019050919050565b600060208201905081810360008301526125c381612587565b9050919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3830312061646472657373657300000000000000000000000000000000000000602082015250565b6000612626602d83611a1b565b9150612631826125ca565b604082019050919050565b6000602082019050818103600083015261265581612619565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b8602483611a1b565b91506126c38261265c565b604082019050919050565b600060208201905081810360008301526126e7816126ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274a602283611a1b565b9150612755826126ee565b604082019050919050565b600060208201905081810360008301526127798161273d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127dc602583611a1b565b91506127e782612780565b604082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061286e602383611a1b565b915061287982612812565b604082019050919050565b6000602082019050818103600083015261289d81612861565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612900602683611a1b565b915061290b826128a4565b604082019050919050565b6000602082019050818103600083015261292f816128f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061296c601d83611a1b565b915061297782612936565b602082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129fe602183611a1b565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a90602283611a1b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612afc602083611a1b565b9150612b0782612ac6565b602082019050919050565b60006020820190508181036000830152612b2b81612aef565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000612b68601683611a1b565b9150612b7382612b32565b602082019050919050565b60006020820190508181036000830152612b9781612b5b565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612bd4600683611a1b565b9150612bdf82612b9e565b602082019050919050565b60006020820190508181036000830152612c0381612bc7565b905091905056fea26469706673582212207a31bc88a2f03791e419f9b1059a19723ccf247a1da5e784e7f2a831657ffd3d64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806379cc6790116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146104f5578063f2fde38b14610525578063f60dc1a714610541578063f887ea401461055d576101c4565b8063a9059cbb1461048d578063b1d17c98146104bd578063d07ea4e2146104d9576101c4565b80638da5cb5b116100d35780638da5cb5b1461040557806395d89b41146104235780639fb0930414610441578063a457c2d71461045d576101c4565b806379cc6790146103ad578063860a32ec146103c957806389f9a1d3146103e7576101c4565b8063313ce5671161016657806349bd5a5e1161014057806349bd5a5e14610339578063632e54421461035757806370a0823114610373578063715018a6146103a3576101c4565b8063313ce567146102cf57806339509351146102ed57806342966c681461031d576101c4565b80631ab99e12116101a25780631ab99e12146102355780631e89d5451461025357806323b872dd1461026f578063272e04681461029f576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d161057b565b6040516101de9190611aa0565b60405180910390f35b61020160048036038101906101fc9190611b60565b61060d565b60405161020e9190611bbb565b60405180910390f35b61021f610630565b60405161022c9190611be5565b60405180910390f35b61023d61063a565b60405161024a9190611be5565b60405180910390f35b61026d60048036038101906102689190611cbb565b610640565b005b61028960048036038101906102849190611d3c565b6107d8565b6040516102969190611bbb565b60405180910390f35b6102b960048036038101906102b49190611d8f565b610807565b6040516102c69190611bbb565b60405180910390f35b6102d7610827565b6040516102e49190611dd8565b60405180910390f35b61030760048036038101906103029190611b60565b610830565b6040516103149190611bbb565b60405180910390f35b61033760048036038101906103329190611df3565b610867565b005b61034161087b565b60405161034e9190611e2f565b60405180910390f35b610371600480360381019061036c9190611e4a565b6108a1565b005b61038d60048036038101906103889190611d8f565b6109a0565b60405161039a9190611be5565b60405180910390f35b6103ab6109e8565b005b6103c760048036038101906103c29190611b60565b6109fc565b005b6103d1610a1c565b6040516103de9190611bbb565b60405180910390f35b6103ef610a2f565b6040516103fc9190611be5565b60405180910390f35b61040d610a35565b60405161041a9190611e2f565b60405180910390f35b61042b610a5f565b6040516104389190611aa0565b60405180910390f35b61045b60048036038101906104569190611d8f565b610af1565b005b61047760048036038101906104729190611b60565b610c71565b6040516104849190611bbb565b60405180910390f35b6104a760048036038101906104a29190611b60565b610ce8565b6040516104b49190611bbb565b60405180910390f35b6104d760048036038101906104d29190611d8f565b610d0b565b005b6104f360048036038101906104ee9190611ed6565b610d7d565b005b61050f600480360381019061050a9190611f29565b610db2565b60405161051c9190611be5565b60405180910390f35b61053f600480360381019061053a9190611d8f565b610e39565b005b61055b60048036038101906105569190611f69565b610ebc565b005b610565610fb0565b6040516105729190612015565b60405180910390f35b60606003805461058a9061205f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b69061205f565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b600080610618610fd6565b9050610625818585610fde565b600191505092915050565b6000600254905090565b60095481565b6103218484905010610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90612102565b60405180910390fd5b8181905084849050146106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690612194565b60405180910390fd5b6000805b85859050811015610718578383828181106106f1576106f06121b4565b5b90506020020135826107039190612212565b9150808061071090612246565b9150506106d3565b5080610723336109a0565b1015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b906122da565b60405180910390fd5b60005b858590508110156107d0576107bd33878784818110610789576107886121b4565b5b905060200201602081019061079e9190611d8f565b8686858181106107b1576107b06121b4565b5b905060200201356111a7565b80806107c890612246565b915050610767565b505050505050565b6000806107e3610fd6565b90506107f085828561141d565b6107fb8585856111a7565b60019150509392505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60008061083b610fd6565b905061085c81858561084d8589610db2565b6108579190612212565b610fde565b600191505092915050565b610878610872610fd6565b826114a9565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107d183839050106108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df9061236c565b60405180910390fd5b600083839050826108f9919061238c565b905080610905336109a0565b1015610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d906122da565b60405180910390fd5b60005b84849050811015610999576109863386868481811061096b5761096a6121b4565b5b90506020020160208101906109809190611d8f565b856111a7565b808061099190612246565b915050610949565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f0611676565b6109fa60006116f4565b565b610a0e82610a08610fd6565b8361141d565b610a1882826114a9565b5050565b600760149054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6e9061205f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a9061205f565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b610af9611676565b610b01610a35565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610b6857503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e9061241a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d9061241a565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c7c610fd6565b90506000610c8a8286610db2565b905083811015610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906124ac565b60405180910390fd5b610cdc8286868403610fde565b60019250505092915050565b600080610cf3610fd6565b9050610d008185856111a7565b600191505092915050565b610d13611676565b6000610d1e336109a0565b90506b204fce5e3e250261100000008114610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612518565b60405180910390fd5b610d793383836111a7565b5050565b610d85611676565b82600760146101000a81548160ff0219169083151502179055508160088190555080600981905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e41611676565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906125aa565b60405180910390fd5b610eb9816116f4565b50565b610ec4611676565b6103218282905010610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061263c565b60405180910390fd5b60005b82829050811015610fab576001600a6000858585818110610f3257610f316121b4565b5b9050602002016020810190610f479190611d8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fa390612246565b915050610f0e565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906126ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612760565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161119a9190611be5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906127f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612884565b60405180910390fd5b6112908383836117ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612916565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114049190611be5565b60405180910390a3611417848484611a0b565b50505050565b60006114298484610db2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a35781811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90612982565b60405180910390fd5b6114a28484848403610fde565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90612a14565b60405180910390fd5b611524826000836117ba565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612aa6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165d9190611be5565b60405180910390a361167183600084611a0b565b505050565b61167e610fd6565b73ffffffffffffffffffffffffffffffffffffffff1661169c610a35565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612b12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118c757611818610a35565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118835750611854610a35565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990612b7e565b60405180910390fd5b611a06565b600760149054906101000a900460ff1680156119305750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156119865750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a055760085481611998846109a0565b6119a29190612212565b111580156119c55750600954816119b8846109a0565b6119c29190612212565b10155b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90612bea565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a4a578082015181840152602081019050611a2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a7282611a10565b611a7c8185611a1b565b9350611a8c818560208601611a2c565b611a9581611a56565b840191505092915050565b60006020820190508181036000830152611aba8184611a67565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611af782611acc565b9050919050565b611b0781611aec565b8114611b1257600080fd5b50565b600081359050611b2481611afe565b92915050565b6000819050919050565b611b3d81611b2a565b8114611b4857600080fd5b50565b600081359050611b5a81611b34565b92915050565b60008060408385031215611b7757611b76611ac2565b5b6000611b8585828601611b15565b9250506020611b9685828601611b4b565b9150509250929050565b60008115159050919050565b611bb581611ba0565b82525050565b6000602082019050611bd06000830184611bac565b92915050565b611bdf81611b2a565b82525050565b6000602082019050611bfa6000830184611bd6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611c2557611c24611c00565b5b8235905067ffffffffffffffff811115611c4257611c41611c05565b5b602083019150836020820283011115611c5e57611c5d611c0a565b5b9250929050565b60008083601f840112611c7b57611c7a611c00565b5b8235905067ffffffffffffffff811115611c9857611c97611c05565b5b602083019150836020820283011115611cb457611cb3611c0a565b5b9250929050565b60008060008060408587031215611cd557611cd4611ac2565b5b600085013567ffffffffffffffff811115611cf357611cf2611ac7565b5b611cff87828801611c0f565b9450945050602085013567ffffffffffffffff811115611d2257611d21611ac7565b5b611d2e87828801611c65565b925092505092959194509250565b600080600060608486031215611d5557611d54611ac2565b5b6000611d6386828701611b15565b9350506020611d7486828701611b15565b9250506040611d8586828701611b4b565b9150509250925092565b600060208284031215611da557611da4611ac2565b5b6000611db384828501611b15565b91505092915050565b600060ff82169050919050565b611dd281611dbc565b82525050565b6000602082019050611ded6000830184611dc9565b92915050565b600060208284031215611e0957611e08611ac2565b5b6000611e1784828501611b4b565b91505092915050565b611e2981611aec565b82525050565b6000602082019050611e446000830184611e20565b92915050565b600080600060408486031215611e6357611e62611ac2565b5b600084013567ffffffffffffffff811115611e8157611e80611ac7565b5b611e8d86828701611c0f565b93509350506020611ea086828701611b4b565b9150509250925092565b611eb381611ba0565b8114611ebe57600080fd5b50565b600081359050611ed081611eaa565b92915050565b600080600060608486031215611eef57611eee611ac2565b5b6000611efd86828701611ec1565b9350506020611f0e86828701611b4b565b9250506040611f1f86828701611b4b565b9150509250925092565b60008060408385031215611f4057611f3f611ac2565b5b6000611f4e85828601611b15565b9250506020611f5f85828601611b15565b9150509250929050565b60008060208385031215611f8057611f7f611ac2565b5b600083013567ffffffffffffffff811115611f9e57611f9d611ac7565b5b611faa85828601611c0f565b92509250509250929050565b6000819050919050565b6000611fdb611fd6611fd184611acc565b611fb6565b611acc565b9050919050565b6000611fed82611fc0565b9050919050565b6000611fff82611fe2565b9050919050565b61200f81611ff4565b82525050565b600060208201905061202a6000830184612006565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061207757607f821691505b60208210810361208a57612089612030565b5b50919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3530302061646472657373657300000000000000000000000000000000000000602082015250565b60006120ec602d83611a1b565b91506120f782612090565b604082019050919050565b6000602082019050818103600083015261211b816120df565b9050919050565b7f4d69736d61746368206265747765656e204164647265737320616e6420746f6b60008201527f656e20636f756e74000000000000000000000000000000000000000000000000602082015250565b600061217e602883611a1b565b915061218982612122565b604082019050919050565b600060208201905081810360008301526121ad81612171565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061221d82611b2a565b915061222883611b2a565b92508282019050808211156122405761223f6121e3565b5b92915050565b600061225182611b2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612283576122826121e3565b5b600182019050919050565b7f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c65740000000000600082015250565b60006122c4601b83611a1b565b91506122cf8261228e565b602082019050919050565b600060208201905081810360008301526122f3816122b7565b9050919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3230303020616464726573736573000000000000000000000000000000000000602082015250565b6000612356602e83611a1b565b9150612361826122fa565b604082019050919050565b6000602082019050818103600083015261238581612349565b9050919050565b600061239782611b2a565b91506123a283611b2a565b92508282026123b081611b2a565b915082820484148315176123c7576123c66121e3565b5b5092915050565b7f6163636f756e742077726f6e6700000000000000000000000000000000000000600082015250565b6000612404600d83611a1b565b915061240f826123ce565b602082019050919050565b60006020820190508181036000830152612433816123f7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612496602583611a1b565b91506124a18261243a565b604082019050919050565b600060208201905081810360008301526124c581612489565b9050919050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b6000612502601a83611a1b565b915061250d826124cc565b602082019050919050565b60006020820190508181036000830152612531816124f5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612594602683611a1b565b915061259f82612538565b604082019050919050565b600060208201905081810360008301526125c381612587565b9050919050565b7f474153204572726f723a206d61782061697264726f70206c696d69742069732060008201527f3830312061646472657373657300000000000000000000000000000000000000602082015250565b6000612626602d83611a1b565b9150612631826125ca565b604082019050919050565b6000602082019050818103600083015261265581612619565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b8602483611a1b565b91506126c38261265c565b604082019050919050565b600060208201905081810360008301526126e7816126ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274a602283611a1b565b9150612755826126ee565b604082019050919050565b600060208201905081810360008301526127798161273d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127dc602583611a1b565b91506127e782612780565b604082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061286e602383611a1b565b915061287982612812565b604082019050919050565b6000602082019050818103600083015261289d81612861565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612900602683611a1b565b915061290b826128a4565b604082019050919050565b6000602082019050818103600083015261292f816128f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061296c601d83611a1b565b915061297782612936565b602082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129fe602183611a1b565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a90602283611a1b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612afc602083611a1b565b9150612b0782612ac6565b602082019050919050565b60006020820190508181036000830152612b2b81612aef565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000612b68601683611a1b565b9150612b7382612b32565b602082019050919050565b60006020820190508181036000830152612b9781612b5b565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612bd4600683611a1b565b9150612bdf82612b9e565b602082019050919050565b60006020820190508181036000830152612c0381612bc7565b905091905056fea26469706673582212207a31bc88a2f03791e419f9b1059a19723ccf247a1da5e784e7f2a831657ffd3d64736f6c63430008120033

Deployed Bytecode Sourcemap

21782:3586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8767:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22033:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:631;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11899:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22071:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9729:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12603:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20338:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21934:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24922:443;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10058:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2541:103;;;:::i;:::-;;20748:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21969:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21995:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1893:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8986:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22915:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13344:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10391:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24009:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22671:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10647:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2799:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23178:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21906:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8767:100;8821:13;8854:5;8847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8767:100;:::o;11118:201::-;11201:4;11218:13;11234:12;:10;:12::i;:::-;11218:28;;11257:32;11266:5;11273:7;11282:6;11257:8;:32::i;:::-;11307:4;11300:11;;;11118:201;;;;:::o;9887:108::-;9948:7;9975:12;;9968:19;;9887:108;:::o;22033:31::-;;;;:::o;24283:631::-;24409:3;24390:9;;:16;;:22;24382:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;24501:7;;:14;;24481:9;;:16;;:34;24473:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;24573:11;24604:9;24599:96;24623:9;;:16;;24619:1;:20;24599:96;;;24673:7;;24681:1;24673:10;;;;;;;:::i;:::-;;;;;;;;24667:3;:16;;;;:::i;:::-;24661:22;;24641:3;;;;;:::i;:::-;;;;24599:96;;;;24740:3;24715:21;24725:10;24715:9;:21::i;:::-;:28;;24707:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24791:9;24786:121;24810:9;;:16;;24806:1;:20;24786:121;;;24848:47;24858:10;24870:9;;24880:1;24870:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;24884:7;;24892:1;24884:10;;;;;;;:::i;:::-;;;;;;;;24848:9;:47::i;:::-;24828:3;;;;;:::i;:::-;;;;24786:121;;;;24371:543;24283:631;;;;:::o;11899:295::-;12030:4;12047:15;12065:12;:10;:12::i;:::-;12047:30;;12088:38;12104:4;12110:7;12119:6;12088:15;:38::i;:::-;12137:27;12147:4;12153:2;12157:6;12137:9;:27::i;:::-;12182:4;12175:11;;;11899:295;;;;;:::o;22071:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;9729:93::-;9787:5;9812:2;9805:9;;9729:93;:::o;12603:238::-;12691:4;12708:13;12724:12;:10;:12::i;:::-;12708:28;;12747:64;12756:5;12763:7;12800:10;12772:25;12782:5;12789:7;12772:9;:25::i;:::-;:38;;;;:::i;:::-;12747:8;:64::i;:::-;12829:4;12822:11;;;12603:238;;;;:::o;20338:91::-;20394:27;20400:12;:10;:12::i;:::-;20414:6;20394:5;:27::i;:::-;20338:91;:::o;21934:28::-;;;;;;;;;;;;;:::o;24922:443::-;25042:4;25023:9;;:16;;:23;25015:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;25110:11;25133:9;;:16;;25124:6;:25;;;;:::i;:::-;25110:39;;25193:3;25168:21;25178:10;25168:9;:21::i;:::-;:28;;25160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25246:9;25241:117;25265:9;;:16;;25261:1;:20;25241:117;;;25303:43;25313:10;25325:9;;25335:1;25325:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;25339:6;25303:9;:43::i;:::-;25283:3;;;;;:::i;:::-;;;;25241:117;;;;25004:361;24922:443;;;:::o;10058:127::-;10132:7;10159:9;:18;10169:7;10159:18;;;;;;;;;;;;;;;;10152:25;;10058:127;;;:::o;2541:103::-;1779:13;:11;:13::i;:::-;2606:30:::1;2633:1;2606:18;:30::i;:::-;2541:103::o:0;20748:164::-;20825:46;20841:7;20850:12;:10;:12::i;:::-;20864:6;20825:15;:46::i;:::-;20882:22;20888:7;20897:6;20882:5;:22::i;:::-;20748:164;;:::o;21969:19::-;;;;;;;;;;;;;:::o;21995:31::-;;;;:::o;1893:87::-;1939:7;1966:6;;;;;;;;;;;1959:13;;1893:87;:::o;8986:104::-;9042:13;9075:7;9068:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8986:104;:::o;22915:255::-;1779:13;:11;:13::i;:::-;23006:7:::1;:5;:7::i;:::-;22995:18;;:7;:18;;;;:46;;;;;23036:4;23017:24;;:7;:24;;;;22995:46;22987:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23097:1;23078:21;;:7;:21;;::::0;23070:47:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23158:4;23128:18;:27;23147:7;23128:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;22915:255:::0;:::o;13344:436::-;13437:4;13454:13;13470:12;:10;:12::i;:::-;13454:28;;13493:24;13520:25;13530:5;13537:7;13520:9;:25::i;:::-;13493:52;;13584:15;13564:16;:35;;13556:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13677:60;13686:5;13693:7;13721:15;13702:16;:34;13677:8;:60::i;:::-;13768:4;13761:11;;;;13344:436;;;;:::o;10391:193::-;10470:4;10487:13;10503:12;:10;:12::i;:::-;10487:28;;10526;10536:5;10543:2;10547:6;10526:9;:28::i;:::-;10572:4;10565:11;;;10391:193;;;;:::o;24009:266::-;1779:13;:11;:13::i;:::-;24093:14:::1;24110:21;24120:10;24110:9;:21::i;:::-;24093:38;;21877:20;24150:6;:24;24142:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;24218:49;24228:10;24240:18;24260:6;24218:9;:49::i;:::-;24082:193;24009:266:::0;:::o;22671:236::-;1779:13;:11;:13::i;:::-;22797:8:::1;22787:7;;:18;;;;;;;;;;;;;;;;;;22835:17;22816:16;:36;;;;22882:17;22863:16;:36;;;;22671:236:::0;;;:::o;10647:151::-;10736:7;10763:11;:18;10775:5;10763:18;;;;;;;;;;;;;;;:27;10782:7;10763:27;;;;;;;;;;;;;;;;10756:34;;10647:151;;;;:::o;2799:201::-;1779:13;:11;:13::i;:::-;2908:1:::1;2888:22;;:8;:22;;::::0;2880:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2964:28;2983:8;2964:18;:28::i;:::-;2799:201:::0;:::o;23178:292::-;1779:13;:11;:13::i;:::-;23290:3:::1;23273:7;;:14;;:20;23265:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23359:9;23354:109;23378:7;;:14;;23374:1;:18;23354:109;;;23447:4;23414:18;:30;23433:7;;23441:1;23433:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;23414:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;23394:3;;;;;:::i;:::-;;;;23354:109;;;;23178:292:::0;;:::o;21906:21::-;;;;;;;;;;;;;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;17371:380::-;17524:1;17507:19;;:5;:19;;;17499:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17605:1;17586:21;;:7;:21;;;17578:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17689:6;17659:11;:18;17671:5;17659:18;;;;;;;;;;;;;;;:27;17678:7;17659:27;;;;;;;;;;;;;;;:36;;;;17727:7;17711:32;;17720:5;17711:32;;;17736:6;17711:32;;;;;;:::i;:::-;;;;;;;;17371:380;;;:::o;14250:840::-;14397:1;14381:18;;:4;:18;;;14373:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14474:1;14460:16;;:2;:16;;;14452:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14529:38;14550:4;14556:2;14560:6;14529:20;:38::i;:::-;14580:19;14602:9;:15;14612:4;14602:15;;;;;;;;;;;;;;;;14580:37;;14651:6;14636:11;:21;;14628:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14768:6;14754:11;:20;14736:9;:15;14746:4;14736:15;;;;;;;;;;;;;;;:38;;;;14971:6;14954:9;:13;14964:2;14954:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15021:2;15006:26;;15015:4;15006:26;;;15025:6;15006:26;;;;;;:::i;:::-;;;;;;;;15045:37;15065:4;15071:2;15075:6;15045:19;:37::i;:::-;14362:728;14250:840;;;:::o;18042:453::-;18177:24;18204:25;18214:5;18221:7;18204:9;:25::i;:::-;18177:52;;18264:17;18244:16;:37;18240:248;;18326:6;18306:16;:26;;18298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18410:51;18419:5;18426:7;18454:6;18435:16;:25;18410:8;:51::i;:::-;18240:248;18166:329;18042:453;;;:::o;16258:675::-;16361:1;16342:21;;:7;:21;;;16334:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16414:49;16435:7;16452:1;16456:6;16414:20;:49::i;:::-;16476:22;16501:9;:18;16511:7;16501:18;;;;;;;;;;;;;;;;16476:43;;16556:6;16538:14;:24;;16530:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16675:6;16658:14;:23;16637:9;:18;16647:7;16637:18;;;;;;;;;;;;;;;:44;;;;16792:6;16776:12;;:22;;;;;;;;;;;16853:1;16827:37;;16836:7;16827:37;;;16857:6;16827:37;;;;;;:::i;:::-;;;;;;;;16877:48;16897:7;16914:1;16918:6;16877:19;:48::i;:::-;16323:610;16258:675;;:::o;2058:132::-;2133:12;:10;:12::i;:::-;2122:23;;:7;:5;:7::i;:::-;:23;;;2114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2058:132::o;3160:191::-;3234:16;3253:6;;;;;;;;;;;3234:25;;3279:8;3270:6;;:17;;;;;;;;;;;;;;;;;;3334:8;3303:40;;3324:8;3303:40;;;;;;;;;;;;3223:128;3160:191;:::o;23478:521::-;23650:1;23625:27;;:13;;;;;;;;;;;:27;;;23621:148;;23685:7;:5;:7::i;:::-;23677:15;;:4;:15;;;:32;;;;23702:7;:5;:7::i;:::-;23696:13;;:2;:13;;;23677:32;23669:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23751:7;;23621:148;23785:7;;;;;;;;;;;:32;;;;;23804:13;;;;;;;;;;;23796:21;;:4;:21;;;23785:32;:59;;;;;23822:18;:22;23841:2;23822:22;;;;;;;;;;;;;;;;;;;;;;;;;23821:23;23785:59;23781:211;;;23901:16;;23891:6;23869:19;23885:2;23869:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;23953:16;;23943:6;23921:19;23937:2;23921:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;23869:100;23861:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;23781:211;23478:521;;;;:::o;19824:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:117;4153:1;4150;4143:12;4184:568;4257:8;4267:6;4317:3;4310:4;4302:6;4298:17;4294:27;4284:122;;4325:79;;:::i;:::-;4284:122;4438:6;4425:20;4415:30;;4468:18;4460:6;4457:30;4454:117;;;4490:79;;:::i;:::-;4454:117;4604:4;4596:6;4592:17;4580:29;;4658:3;4650:4;4642:6;4638:17;4628:8;4624:32;4621:41;4618:128;;;4665:79;;:::i;:::-;4618:128;4184:568;;;;;:::o;4775:::-;4848:8;4858:6;4908:3;4901:4;4893:6;4889:17;4885:27;4875:122;;4916:79;;:::i;:::-;4875:122;5029:6;5016:20;5006:30;;5059:18;5051:6;5048:30;5045:117;;;5081:79;;:::i;:::-;5045:117;5195:4;5187:6;5183:17;5171:29;;5249:3;5241:4;5233:6;5229:17;5219:8;5215:32;5212:41;5209:128;;;5256:79;;:::i;:::-;5209:128;4775:568;;;;;:::o;5349:934::-;5471:6;5479;5487;5495;5544:2;5532:9;5523:7;5519:23;5515:32;5512:119;;;5550:79;;:::i;:::-;5512:119;5698:1;5687:9;5683:17;5670:31;5728:18;5720:6;5717:30;5714:117;;;5750:79;;:::i;:::-;5714:117;5863:80;5935:7;5926:6;5915:9;5911:22;5863:80;:::i;:::-;5845:98;;;;5641:312;6020:2;6009:9;6005:18;5992:32;6051:18;6043:6;6040:30;6037:117;;;6073:79;;:::i;:::-;6037:117;6186:80;6258:7;6249:6;6238:9;6234:22;6186:80;:::i;:::-;6168:98;;;;5963:313;5349:934;;;;;;;:::o;6289:619::-;6366:6;6374;6382;6431:2;6419:9;6410:7;6406:23;6402:32;6399:119;;;6437:79;;:::i;:::-;6399:119;6557:1;6582:53;6627:7;6618:6;6607:9;6603:22;6582:53;:::i;:::-;6572:63;;6528:117;6684:2;6710:53;6755:7;6746:6;6735:9;6731:22;6710:53;:::i;:::-;6700:63;;6655:118;6812:2;6838:53;6883:7;6874:6;6863:9;6859:22;6838:53;:::i;:::-;6828:63;;6783:118;6289:619;;;;;:::o;6914:329::-;6973:6;7022:2;7010:9;7001:7;6997:23;6993:32;6990:119;;;7028:79;;:::i;:::-;6990:119;7148:1;7173:53;7218:7;7209:6;7198:9;7194:22;7173:53;:::i;:::-;7163:63;;7119:117;6914:329;;;;:::o;7249:86::-;7284:7;7324:4;7317:5;7313:16;7302:27;;7249:86;;;:::o;7341:112::-;7424:22;7440:5;7424:22;:::i;:::-;7419:3;7412:35;7341:112;;:::o;7459:214::-;7548:4;7586:2;7575:9;7571:18;7563:26;;7599:67;7663:1;7652:9;7648:17;7639:6;7599:67;:::i;:::-;7459:214;;;;:::o;7679:329::-;7738:6;7787:2;7775:9;7766:7;7762:23;7758:32;7755:119;;;7793:79;;:::i;:::-;7755:119;7913:1;7938:53;7983:7;7974:6;7963:9;7959:22;7938:53;:::i;:::-;7928:63;;7884:117;7679:329;;;;:::o;8014:118::-;8101:24;8119:5;8101:24;:::i;:::-;8096:3;8089:37;8014:118;;:::o;8138:222::-;8231:4;8269:2;8258:9;8254:18;8246:26;;8282:71;8350:1;8339:9;8335:17;8326:6;8282:71;:::i;:::-;8138:222;;;;:::o;8366:704::-;8461:6;8469;8477;8526:2;8514:9;8505:7;8501:23;8497:32;8494:119;;;8532:79;;:::i;:::-;8494:119;8680:1;8669:9;8665:17;8652:31;8710:18;8702:6;8699:30;8696:117;;;8732:79;;:::i;:::-;8696:117;8845:80;8917:7;8908:6;8897:9;8893:22;8845:80;:::i;:::-;8827:98;;;;8623:312;8974:2;9000:53;9045:7;9036:6;9025:9;9021:22;9000:53;:::i;:::-;8990:63;;8945:118;8366:704;;;;;:::o;9076:116::-;9146:21;9161:5;9146:21;:::i;:::-;9139:5;9136:32;9126:60;;9182:1;9179;9172:12;9126:60;9076:116;:::o;9198:133::-;9241:5;9279:6;9266:20;9257:29;;9295:30;9319:5;9295:30;:::i;:::-;9198:133;;;;:::o;9337:613::-;9411:6;9419;9427;9476:2;9464:9;9455:7;9451:23;9447:32;9444:119;;;9482:79;;:::i;:::-;9444:119;9602:1;9627:50;9669:7;9660:6;9649:9;9645:22;9627:50;:::i;:::-;9617:60;;9573:114;9726:2;9752:53;9797:7;9788:6;9777:9;9773:22;9752:53;:::i;:::-;9742:63;;9697:118;9854:2;9880:53;9925:7;9916:6;9905:9;9901:22;9880:53;:::i;:::-;9870:63;;9825:118;9337:613;;;;;:::o;9956:474::-;10024:6;10032;10081:2;10069:9;10060:7;10056:23;10052:32;10049:119;;;10087:79;;:::i;:::-;10049:119;10207:1;10232:53;10277:7;10268:6;10257:9;10253:22;10232:53;:::i;:::-;10222:63;;10178:117;10334:2;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10305:118;9956:474;;;;;:::o;10436:559::-;10522:6;10530;10579:2;10567:9;10558:7;10554:23;10550:32;10547:119;;;10585:79;;:::i;:::-;10547:119;10733:1;10722:9;10718:17;10705:31;10763:18;10755:6;10752:30;10749:117;;;10785:79;;:::i;:::-;10749:117;10898:80;10970:7;10961:6;10950:9;10946:22;10898:80;:::i;:::-;10880:98;;;;10676:312;10436:559;;;;;:::o;11001:60::-;11029:3;11050:5;11043:12;;11001:60;;;:::o;11067:142::-;11117:9;11150:53;11168:34;11177:24;11195:5;11177:24;:::i;:::-;11168:34;:::i;:::-;11150:53;:::i;:::-;11137:66;;11067:142;;;:::o;11215:126::-;11265:9;11298:37;11329:5;11298:37;:::i;:::-;11285:50;;11215:126;;;:::o;11347:141::-;11412:9;11445:37;11476:5;11445:37;:::i;:::-;11432:50;;11347:141;;;:::o;11494:161::-;11596:52;11642:5;11596:52;:::i;:::-;11591:3;11584:65;11494:161;;:::o;11661:252::-;11769:4;11807:2;11796:9;11792:18;11784:26;;11820:86;11903:1;11892:9;11888:17;11879:6;11820:86;:::i;:::-;11661:252;;;;:::o;11919:180::-;11967:77;11964:1;11957:88;12064:4;12061:1;12054:15;12088:4;12085:1;12078:15;12105:320;12149:6;12186:1;12180:4;12176:12;12166:22;;12233:1;12227:4;12223:12;12254:18;12244:81;;12310:4;12302:6;12298:17;12288:27;;12244:81;12372:2;12364:6;12361:14;12341:18;12338:38;12335:84;;12391:18;;:::i;:::-;12335:84;12156:269;12105:320;;;:::o;12431:232::-;12571:34;12567:1;12559:6;12555:14;12548:58;12640:15;12635:2;12627:6;12623:15;12616:40;12431:232;:::o;12669:366::-;12811:3;12832:67;12896:2;12891:3;12832:67;:::i;:::-;12825:74;;12908:93;12997:3;12908:93;:::i;:::-;13026:2;13021:3;13017:12;13010:19;;12669:366;;;:::o;13041:419::-;13207:4;13245:2;13234:9;13230:18;13222:26;;13294:9;13288:4;13284:20;13280:1;13269:9;13265:17;13258:47;13322:131;13448:4;13322:131;:::i;:::-;13314:139;;13041:419;;;:::o;13466:227::-;13606:34;13602:1;13594:6;13590:14;13583:58;13675:10;13670:2;13662:6;13658:15;13651:35;13466:227;:::o;13699:366::-;13841:3;13862:67;13926:2;13921:3;13862:67;:::i;:::-;13855:74;;13938:93;14027:3;13938:93;:::i;:::-;14056:2;14051:3;14047:12;14040:19;;13699:366;;;:::o;14071:419::-;14237:4;14275:2;14264:9;14260:18;14252:26;;14324:9;14318:4;14314:20;14310:1;14299:9;14295:17;14288:47;14352:131;14478:4;14352:131;:::i;:::-;14344:139;;14071:419;;;:::o;14496:180::-;14544:77;14541:1;14534:88;14641:4;14638:1;14631:15;14665:4;14662:1;14655:15;14682:180;14730:77;14727:1;14720:88;14827:4;14824:1;14817:15;14851:4;14848:1;14841:15;14868:191;14908:3;14927:20;14945:1;14927:20;:::i;:::-;14922:25;;14961:20;14979:1;14961:20;:::i;:::-;14956:25;;15004:1;15001;14997:9;14990:16;;15025:3;15022:1;15019:10;15016:36;;;15032:18;;:::i;:::-;15016:36;14868:191;;;;:::o;15065:233::-;15104:3;15127:24;15145:5;15127:24;:::i;:::-;15118:33;;15173:66;15166:5;15163:77;15160:103;;15243:18;;:::i;:::-;15160:103;15290:1;15283:5;15279:13;15272:20;;15065:233;;;:::o;15304:177::-;15444:29;15440:1;15432:6;15428:14;15421:53;15304:177;:::o;15487:366::-;15629:3;15650:67;15714:2;15709:3;15650:67;:::i;:::-;15643:74;;15726:93;15815:3;15726:93;:::i;:::-;15844:2;15839:3;15835:12;15828:19;;15487:366;;;:::o;15859:419::-;16025:4;16063:2;16052:9;16048:18;16040:26;;16112:9;16106:4;16102:20;16098:1;16087:9;16083:17;16076:47;16140:131;16266:4;16140:131;:::i;:::-;16132:139;;15859:419;;;:::o;16284:233::-;16424:34;16420:1;16412:6;16408:14;16401:58;16493:16;16488:2;16480:6;16476:15;16469:41;16284:233;:::o;16523:366::-;16665:3;16686:67;16750:2;16745:3;16686:67;:::i;:::-;16679:74;;16762:93;16851:3;16762:93;:::i;:::-;16880:2;16875:3;16871:12;16864:19;;16523:366;;;:::o;16895:419::-;17061:4;17099:2;17088:9;17084:18;17076:26;;17148:9;17142:4;17138:20;17134:1;17123:9;17119:17;17112:47;17176:131;17302:4;17176:131;:::i;:::-;17168:139;;16895:419;;;:::o;17320:410::-;17360:7;17383:20;17401:1;17383:20;:::i;:::-;17378:25;;17417:20;17435:1;17417:20;:::i;:::-;17412:25;;17472:1;17469;17465:9;17494:30;17512:11;17494:30;:::i;:::-;17483:41;;17673:1;17664:7;17660:15;17657:1;17654:22;17634:1;17627:9;17607:83;17584:139;;17703:18;;:::i;:::-;17584:139;17368:362;17320:410;;;;:::o;17736:163::-;17876:15;17872:1;17864:6;17860:14;17853:39;17736:163;:::o;17905:366::-;18047:3;18068:67;18132:2;18127:3;18068:67;:::i;:::-;18061:74;;18144:93;18233:3;18144:93;:::i;:::-;18262:2;18257:3;18253:12;18246:19;;17905:366;;;:::o;18277:419::-;18443:4;18481:2;18470:9;18466:18;18458:26;;18530:9;18524:4;18520:20;18516:1;18505:9;18501:17;18494:47;18558:131;18684:4;18558:131;:::i;:::-;18550:139;;18277:419;;;:::o;18702:224::-;18842:34;18838:1;18830:6;18826:14;18819:58;18911:7;18906:2;18898:6;18894:15;18887:32;18702:224;:::o;18932:366::-;19074:3;19095:67;19159:2;19154:3;19095:67;:::i;:::-;19088:74;;19171:93;19260:3;19171:93;:::i;:::-;19289:2;19284:3;19280:12;19273:19;;18932:366;;;:::o;19304:419::-;19470:4;19508:2;19497:9;19493:18;19485:26;;19557:9;19551:4;19547:20;19543:1;19532:9;19528:17;19521:47;19585:131;19711:4;19585:131;:::i;:::-;19577:139;;19304:419;;;:::o;19729:176::-;19869:28;19865:1;19857:6;19853:14;19846:52;19729:176;:::o;19911:366::-;20053:3;20074:67;20138:2;20133:3;20074:67;:::i;:::-;20067:74;;20150:93;20239:3;20150:93;:::i;:::-;20268:2;20263:3;20259:12;20252:19;;19911:366;;;:::o;20283:419::-;20449:4;20487:2;20476:9;20472:18;20464:26;;20536:9;20530:4;20526:20;20522:1;20511:9;20507:17;20500:47;20564:131;20690:4;20564:131;:::i;:::-;20556:139;;20283:419;;;:::o;20708:225::-;20848:34;20844:1;20836:6;20832:14;20825:58;20917:8;20912:2;20904:6;20900:15;20893:33;20708:225;:::o;20939:366::-;21081:3;21102:67;21166:2;21161:3;21102:67;:::i;:::-;21095:74;;21178:93;21267:3;21178:93;:::i;:::-;21296:2;21291:3;21287:12;21280:19;;20939:366;;;:::o;21311:419::-;21477:4;21515:2;21504:9;21500:18;21492:26;;21564:9;21558:4;21554:20;21550:1;21539:9;21535:17;21528:47;21592:131;21718:4;21592:131;:::i;:::-;21584:139;;21311:419;;;:::o;21736:232::-;21876:34;21872:1;21864:6;21860:14;21853:58;21945:15;21940:2;21932:6;21928:15;21921:40;21736:232;:::o;21974:366::-;22116:3;22137:67;22201:2;22196:3;22137:67;:::i;:::-;22130:74;;22213:93;22302:3;22213:93;:::i;:::-;22331:2;22326:3;22322:12;22315:19;;21974:366;;;:::o;22346:419::-;22512:4;22550:2;22539:9;22535:18;22527:26;;22599:9;22593:4;22589:20;22585:1;22574:9;22570:17;22563:47;22627:131;22753:4;22627:131;:::i;:::-;22619:139;;22346:419;;;:::o;22771:223::-;22911:34;22907:1;22899:6;22895:14;22888:58;22980:6;22975:2;22967:6;22963:15;22956:31;22771:223;:::o;23000:366::-;23142:3;23163:67;23227:2;23222:3;23163:67;:::i;:::-;23156:74;;23239:93;23328:3;23239:93;:::i;:::-;23357:2;23352:3;23348:12;23341:19;;23000:366;;;:::o;23372:419::-;23538:4;23576:2;23565:9;23561:18;23553:26;;23625:9;23619:4;23615:20;23611:1;23600:9;23596:17;23589:47;23653:131;23779:4;23653:131;:::i;:::-;23645:139;;23372:419;;;:::o;23797:221::-;23937:34;23933:1;23925:6;23921:14;23914:58;24006:4;24001:2;23993:6;23989:15;23982:29;23797:221;:::o;24024:366::-;24166:3;24187:67;24251:2;24246:3;24187:67;:::i;:::-;24180:74;;24263:93;24352:3;24263:93;:::i;:::-;24381:2;24376:3;24372:12;24365:19;;24024:366;;;:::o;24396:419::-;24562:4;24600:2;24589:9;24585:18;24577:26;;24649:9;24643:4;24639:20;24635:1;24624:9;24620:17;24613:47;24677:131;24803:4;24677:131;:::i;:::-;24669:139;;24396:419;;;:::o;24821:224::-;24961:34;24957:1;24949:6;24945:14;24938:58;25030:7;25025:2;25017:6;25013:15;25006:32;24821:224;:::o;25051:366::-;25193:3;25214:67;25278:2;25273:3;25214:67;:::i;:::-;25207:74;;25290:93;25379:3;25290:93;:::i;:::-;25408:2;25403:3;25399:12;25392:19;;25051:366;;;:::o;25423:419::-;25589:4;25627:2;25616:9;25612:18;25604:26;;25676:9;25670:4;25666:20;25662:1;25651:9;25647:17;25640:47;25704:131;25830:4;25704:131;:::i;:::-;25696:139;;25423:419;;;:::o;25848:222::-;25988:34;25984:1;25976:6;25972:14;25965:58;26057:5;26052:2;26044:6;26040:15;26033:30;25848:222;:::o;26076:366::-;26218:3;26239:67;26303:2;26298:3;26239:67;:::i;:::-;26232:74;;26315:93;26404:3;26315:93;:::i;:::-;26433:2;26428:3;26424:12;26417:19;;26076:366;;;:::o;26448:419::-;26614:4;26652:2;26641:9;26637:18;26629:26;;26701:9;26695:4;26691:20;26687:1;26676:9;26672:17;26665:47;26729:131;26855:4;26729:131;:::i;:::-;26721:139;;26448:419;;;:::o;26873:225::-;27013:34;27009:1;27001:6;26997:14;26990:58;27082:8;27077:2;27069:6;27065:15;27058:33;26873:225;:::o;27104:366::-;27246:3;27267:67;27331:2;27326:3;27267:67;:::i;:::-;27260:74;;27343:93;27432:3;27343:93;:::i;:::-;27461:2;27456:3;27452:12;27445:19;;27104:366;;;:::o;27476:419::-;27642:4;27680:2;27669:9;27665:18;27657:26;;27729:9;27723:4;27719:20;27715:1;27704:9;27700:17;27693:47;27757:131;27883:4;27757:131;:::i;:::-;27749:139;;27476:419;;;:::o;27901:179::-;28041:31;28037:1;28029:6;28025:14;28018:55;27901:179;:::o;28086:366::-;28228:3;28249:67;28313:2;28308:3;28249:67;:::i;:::-;28242:74;;28325:93;28414:3;28325:93;:::i;:::-;28443:2;28438:3;28434:12;28427:19;;28086:366;;;:::o;28458:419::-;28624:4;28662:2;28651:9;28647:18;28639:26;;28711:9;28705:4;28701:20;28697:1;28686:9;28682:17;28675:47;28739:131;28865:4;28739:131;:::i;:::-;28731:139;;28458:419;;;:::o;28883:220::-;29023:34;29019:1;29011:6;29007:14;29000:58;29092:3;29087:2;29079:6;29075:15;29068:28;28883:220;:::o;29109:366::-;29251:3;29272:67;29336:2;29331:3;29272:67;:::i;:::-;29265:74;;29348:93;29437:3;29348:93;:::i;:::-;29466:2;29461:3;29457:12;29450:19;;29109:366;;;:::o;29481:419::-;29647:4;29685:2;29674:9;29670:18;29662:26;;29734:9;29728:4;29724:20;29720:1;29709:9;29705:17;29698:47;29762:131;29888:4;29762:131;:::i;:::-;29754:139;;29481:419;;;:::o;29906:221::-;30046:34;30042:1;30034:6;30030:14;30023:58;30115:4;30110:2;30102:6;30098:15;30091:29;29906:221;:::o;30133:366::-;30275:3;30296:67;30360:2;30355:3;30296:67;:::i;:::-;30289:74;;30372:93;30461:3;30372:93;:::i;:::-;30490:2;30485:3;30481:12;30474:19;;30133:366;;;:::o;30505:419::-;30671:4;30709:2;30698:9;30694:18;30686:26;;30758:9;30752:4;30748:20;30744:1;30733:9;30729:17;30722:47;30786:131;30912:4;30786:131;:::i;:::-;30778:139;;30505:419;;;:::o;30930:182::-;31070:34;31066:1;31058:6;31054:14;31047:58;30930:182;:::o;31118:366::-;31260:3;31281:67;31345:2;31340:3;31281:67;:::i;:::-;31274:74;;31357:93;31446:3;31357:93;:::i;:::-;31475:2;31470:3;31466:12;31459:19;;31118:366;;;:::o;31490:419::-;31656:4;31694:2;31683:9;31679:18;31671:26;;31743:9;31737:4;31733:20;31729:1;31718:9;31714:17;31707:47;31771:131;31897:4;31771:131;:::i;:::-;31763:139;;31490:419;;;:::o;31915:172::-;32055:24;32051:1;32043:6;32039:14;32032:48;31915:172;:::o;32093:366::-;32235:3;32256:67;32320:2;32315:3;32256:67;:::i;:::-;32249:74;;32332:93;32421:3;32332:93;:::i;:::-;32450:2;32445:3;32441:12;32434:19;;32093:366;;;:::o;32465:419::-;32631:4;32669:2;32658:9;32654:18;32646:26;;32718:9;32712:4;32708:20;32704:1;32693:9;32689:17;32682:47;32746:131;32872:4;32746:131;:::i;:::-;32738:139;;32465:419;;;:::o;32890:156::-;33030:8;33026:1;33018:6;33014:14;33007:32;32890:156;:::o;33052:365::-;33194:3;33215:66;33279:1;33274:3;33215:66;:::i;:::-;33208:73;;33290:93;33379:3;33290:93;:::i;:::-;33408:2;33403:3;33399:12;33392:19;;33052:365;;;:::o;33423:419::-;33589:4;33627:2;33616:9;33612:18;33604:26;;33676:9;33670:4;33666:20;33662:1;33651:9;33647:17;33640:47;33704:131;33830:4;33704:131;:::i;:::-;33696:139;;33423:419;;;:::o

Swarm Source

ipfs://7a31bc88a2f03791e419f9b1059a19723ccf247a1da5e784e7f2a831657ffd3d

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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