ETH Price: $3,419.50 (-0.61%)
Gas: 3 Gwei

Token

FINE (FINE)
 

Overview

Max Total Supply

100,000,000,000 FINE

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,340,000 FINE

Value
$0.00
0xcb31c8b2ce9d229b1968ceb2516b2eb650151227
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EVERYTHINGISJUSTFINE

Compiler Version
v0.8.4+commit.c7e474f2

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-07
*/

/**
 
*/

//SOCIALS 



// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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

pragma solidity ^0.8.4;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

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

// File contracts/FINE.sol

pragma solidity ^0.8.4;


contract EVERYTHINGISJUSTFINE is Ownable, ERC20 {
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 SUPPLY = 100000000000 * 10**18;
    uint256 fee = 10;
    bool private inSwap = false;

    constructor() ERC20("FINE", "FINE") payable {
        _mint(msg.sender, SUPPLY * 7 / 100);
        _mint(address(this), SUPPLY * 93 / 100);
        maxHoldingAmount = SUPPLY * 1 / 100;
    }

    receive() external payable {}

    function removeFee() external onlyOwner {
        fee = 0;
    }

    function removeMaxHoldingAmount() external onlyOwner {
        maxHoldingAmount = SUPPLY;
    }

    function openTrading() external onlyOwner {
        address pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        _approve(address(this), address(router), balanceOf(address(this)));
        router.addLiquidityETH{
            value: address(this).balance
        } (
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        uniswapV2Pair = pair;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        if(uniswapV2Pair == address(0)) {
            require(from == address(this) || from == address(0) || from == owner() || to == owner(), "Not started");
            super._transfer(from, to, amount);
            return;
        }

        if(from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router)) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "max wallet reached");
        }

        uint256 swapAmount = balanceOf(address(this));

        if(swapAmount > SUPPLY / 1000) {
            swapAmount = SUPPLY / 1000;
        }

        if (swapAmount >= SUPPLY / 2000 &&
            !inSwap &&
            from != uniswapV2Pair) {

            inSwap = true;

            swapTokensForEth(swapAmount);

            uint256 balance = address(this).balance;

            if(balance > 0) {
                withdraw(balance);
            }

            inSwap = false;
        }
            
        if(
            fee > 0 &&
            from != address(this) &&
            from != owner() &&
            from != address(router)
        ) {
            uint256 feeTokens = amount * fee / 100;
            amount -= feeTokens;

            super._transfer(from, address(this), feeTokens);
        }

        super._transfer(from, to, amount);
    }


    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function withdraw(uint256 amount) private {
        (bool success,) = owner().call{value: amount}("");
        success;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506c01431e0fae6d7217caa0000000600855600a6009556000600a60006101000a81548160ff0219169083151502179055506040518060400160405280600481526020017f46494e45000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494e45000000000000000000000000000000000000000000000000000000008152506200010b620000ff620001ca60201b60201c565b620001d260201b60201c565b8160049080519060200190620001239291906200041a565b5080600590805190602001906200013c9291906200041a565b5050506200016f3360646007600854620001579190620005e7565b620001639190620005af565b6200029660201b60201c565b6200019f306064605d600854620001879190620005e7565b620001939190620005af565b6200029660201b60201c565b60646001600854620001b29190620005e7565b620001be9190620005af565b6006819055506200073e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003009062000502565b60405180910390fd5b6200031d600083836200041060201b60201c565b806003600082825462000331919062000552565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000389919062000552565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f0919062000524565b60405180910390a36200040c600083836200041560201b60201c565b5050565b505050565b505050565b828054620004289062000652565b90600052602060002090601f0160209004810192826200044c576000855562000498565b82601f106200046757805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004975782518255916020019190600101906200047a565b5b509050620004a79190620004ab565b5090565b5b80821115620004c6576000816000905550600101620004ac565b5090565b6000620004d9601f8362000541565b9150620004e68262000715565b602082019050919050565b620004fc8162000648565b82525050565b600060208201905081810360008301526200051d81620004ca565b9050919050565b60006020820190506200053b6000830184620004f1565b92915050565b600082825260208201905092915050565b60006200055f8262000648565b91506200056c8362000648565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a457620005a362000688565b5b828201905092915050565b6000620005bc8262000648565b9150620005c98362000648565b925082620005dc57620005db620006b7565b5b828204905092915050565b6000620005f48262000648565b9150620006018362000648565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200063d576200063c62000688565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200066b57607f821691505b60208210811415620006825762000681620006e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160601c612ae36200079560003960008181610ab001528181610b6a01528181610c7d01528181610cac015281816113e60152818161163401528181611b0601528181611c1c0152611c430152612ae36000f3fe6080604052600436106101185760003560e01c806389f9a1d3116100a0578063a9059cbb11610064578063a9059cbb146103b0578063c9567bf9146103ed578063dd62ed3e14610404578063efa4af4c14610441578063f2fde38b146104585761011f565b806389f9a1d3146102db5780638da5cb5b14610306578063909278811461033157806395d89b4114610348578063a457c2d7146103735761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f57806349bd5a5e1461025c57806370a0823114610287578063715018a6146102c45761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b50610139610481565b6040516101469190612298565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611e8b565b610513565b604051610183919061227d565b60405180910390f35b34801561019857600080fd5b506101a1610531565b6040516101ae919061241a565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611e3c565b61053b565b6040516101eb919061227d565b60405180910390f35b34801561020057600080fd5b50610209610633565b604051610216919061248f565b60405180910390f35b34801561022b57600080fd5b5061024660048036038101906102419190611e8b565b61063c565b604051610253919061227d565b60405180910390f35b34801561026857600080fd5b506102716106e8565b60405161027e91906121d8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190611dae565b61070e565b6040516102bb919061241a565b60405180910390f35b3480156102d057600080fd5b506102d9610757565b005b3480156102e757600080fd5b506102f06107df565b6040516102fd919061241a565b60405180910390f35b34801561031257600080fd5b5061031b6107e5565b60405161032891906121d8565b60405180910390f35b34801561033d57600080fd5b5061034661080e565b005b34801561035457600080fd5b5061035d610895565b60405161036a9190612298565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190611e8b565b610927565b6040516103a7919061227d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190611e8b565b610a12565b6040516103e4919061227d565b60405180910390f35b3480156103f957600080fd5b50610402610a30565b005b34801561041057600080fd5b5061042b60048036038101906104269190611e00565b610db7565b604051610438919061241a565b60405180910390f35b34801561044d57600080fd5b50610456610e3e565b005b34801561046457600080fd5b5061047f600480360381019061047a9190611dae565b610ec4565b005b606060048054610490906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc906126b9565b80156105095780601f106104de57610100808354040283529160200191610509565b820191906000526020600020905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b6000610527610520610fbc565b8484610fc4565b6001905092915050565b6000600354905090565b600061054884848461118f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610593610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a9061237a565b60405180910390fd5b6106278561061f610fbc565b858403610fc4565b60019150509392505050565b60006012905090565b60006106de610649610fbc565b848460026000610657610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d9919061250a565b610fc4565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610fbc565b73ffffffffffffffffffffffffffffffffffffffff1661077d6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061239a565b60405180910390fd5b6107dd60006116d3565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610816610fbc565b73ffffffffffffffffffffffffffffffffffffffff166108346107e5565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061239a565b60405180910390fd5b600854600681905550565b6060600580546108a4906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906126b9565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b60008060026000610936610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906123fa565b60405180910390fd5b610a076109fe610fbc565b85858403610fc4565b600191505092915050565b6000610a26610a1f610fbc565b848461118f565b6001905092915050565b610a38610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610a566107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061239a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1457600080fd5b505afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611dd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611dd7565b6040518363ffffffff1660e01b8152600401610c239291906121f3565b602060405180830381600087803b158015610c3d57600080fd5b505af1158015610c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c759190611dd7565b9050610caa307f0000000000000000000000000000000000000000000000000000000000000000610ca53061070e565b610fc4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610cf13061070e565b600080610cfc6107e5565b426040518863ffffffff1660e01b8152600401610d1e9695949392919061221c565b6060604051808303818588803b158015610d3757600080fd5b505af1158015610d4b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d709190611ec7565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e46610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610e646107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061239a565b60405180910390fd5b6000600981905550565b610ecc610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610eea6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f379061239a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906122fa565b60405180910390fd5b610fb9816116d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b906123da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061231a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611182919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611315573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611289575061125a6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112c657506112976107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906122da565b60405180910390fd5b611310838383611797565b6116ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113dd57506113ad6107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561149357600654816114478461070e565b611451919061250a565b1115611492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114899061235a565b60405180910390fd5b5b600061149e3061070e565b90506103e86008546114b09190612560565b8111156114ca576103e86008546114c79190612560565b90505b6107d06008546114da9190612560565b81101580156114f65750600a60009054906101000a900460ff16155b80156115505750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156115ae576001600a60006101000a81548160ff02191690831515021790555061157981611a1b565b600047905060008111156115915761159081611cd9565b5b6000600a60006101000a81548160ff021916908315150217905550505b60006009541180156115ec57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561162b57506115fb6107e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561168357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156116c157600060646009548461169a9190612591565b6116a49190612560565b905080836116b291906125eb565b92506116bf853083611797565b505b6116cc848484611797565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906123ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906122ba565b60405180910390fd5b611882838383611d50565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061233a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199e919061250a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a02919061241a565b60405180910390a3611a15848484611d55565b50505050565b6000600267ffffffffffffffff811115611a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a8c5781602001602082028036833780820191505090505b5090503081600081518110611aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6a57600080fd5b505afa158015611b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba29190611dd7565b81600181518110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c41307f000000000000000000000000000000000000000000000000000000000000000084610fc4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ca3959493929190612435565b600060405180830381600087803b158015611cbd57600080fd5b505af1158015611cd1573d6000803e3d6000fd5b505050505050565b6000611ce36107e5565b73ffffffffffffffffffffffffffffffffffffffff1682604051611d06906121c3565b60006040518083038185875af1925050503d8060008114611d43576040519150601f19603f3d011682016040523d82523d6000602084013e611d48565b606091505b505090505050565b505050565b505050565b600081359050611d6981612a7f565b92915050565b600081519050611d7e81612a7f565b92915050565b600081359050611d9381612a96565b92915050565b600081519050611da881612a96565b92915050565b600060208284031215611dc057600080fd5b6000611dce84828501611d5a565b91505092915050565b600060208284031215611de957600080fd5b6000611df784828501611d6f565b91505092915050565b60008060408385031215611e1357600080fd5b6000611e2185828601611d5a565b9250506020611e3285828601611d5a565b9150509250929050565b600080600060608486031215611e5157600080fd5b6000611e5f86828701611d5a565b9350506020611e7086828701611d5a565b9250506040611e8186828701611d84565b9150509250925092565b60008060408385031215611e9e57600080fd5b6000611eac85828601611d5a565b9250506020611ebd85828601611d84565b9150509250929050565b600080600060608486031215611edc57600080fd5b6000611eea86828701611d99565b9350506020611efb86828701611d99565b9250506040611f0c86828701611d99565b9150509250925092565b6000611f228383611f2e565b60208301905092915050565b611f378161261f565b82525050565b611f468161261f565b82525050565b6000611f57826124ba565b611f6181856124dd565b9350611f6c836124aa565b8060005b83811015611f9d578151611f848882611f16565b9750611f8f836124d0565b925050600181019050611f70565b5085935050505092915050565b611fb381612631565b82525050565b611fc281612674565b82525050565b6000611fd3826124c5565b611fdd81856124f9565b9350611fed818560208601612686565b611ff681612778565b840191505092915050565b600061200e6023836124f9565b915061201982612789565b604082019050919050565b6000612031600b836124f9565b915061203c826127d8565b602082019050919050565b60006120546026836124f9565b915061205f82612801565b604082019050919050565b60006120776022836124f9565b915061208282612850565b604082019050919050565b600061209a6026836124f9565b91506120a58261289f565b604082019050919050565b60006120bd6012836124f9565b91506120c8826128ee565b602082019050919050565b60006120e06028836124f9565b91506120eb82612917565b604082019050919050565b60006121036020836124f9565b915061210e82612966565b602082019050919050565b60006121266025836124f9565b91506121318261298f565b604082019050919050565b60006121496000836124ee565b9150612154826129de565b600082019050919050565b600061216c6024836124f9565b9150612177826129e1565b604082019050919050565b600061218f6025836124f9565b915061219a82612a30565b604082019050919050565b6121ae8161265d565b82525050565b6121bd81612667565b82525050565b60006121ce8261213c565b9150819050919050565b60006020820190506121ed6000830184611f3d565b92915050565b60006040820190506122086000830185611f3d565b6122156020830184611f3d565b9392505050565b600060c0820190506122316000830189611f3d565b61223e60208301886121a5565b61224b6040830187611fb9565b6122586060830186611fb9565b6122656080830185611f3d565b61227260a08301846121a5565b979650505050505050565b60006020820190506122926000830184611faa565b92915050565b600060208201905081810360008301526122b28184611fc8565b905092915050565b600060208201905081810360008301526122d381612001565b9050919050565b600060208201905081810360008301526122f381612024565b9050919050565b6000602082019050818103600083015261231381612047565b9050919050565b600060208201905081810360008301526123338161206a565b9050919050565b600060208201905081810360008301526123538161208d565b9050919050565b60006020820190508181036000830152612373816120b0565b9050919050565b60006020820190508181036000830152612393816120d3565b9050919050565b600060208201905081810360008301526123b3816120f6565b9050919050565b600060208201905081810360008301526123d381612119565b9050919050565b600060208201905081810360008301526123f38161215f565b9050919050565b6000602082019050818103600083015261241381612182565b9050919050565b600060208201905061242f60008301846121a5565b92915050565b600060a08201905061244a60008301886121a5565b6124576020830187611fb9565b81810360408301526124698186611f4c565b90506124786060830185611f3d565b61248560808301846121a5565b9695505050505050565b60006020820190506124a460008301846121b4565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006125158261265d565b91506125208361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612555576125546126eb565b5b828201905092915050565b600061256b8261265d565b91506125768361265d565b9250826125865761258561271a565b5b828204905092915050565b600061259c8261265d565b91506125a78361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df6126eb565b5b828202905092915050565b60006125f68261265d565b91506126018361265d565b925082821015612614576126136126eb565b5b828203905092915050565b600061262a8261263d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061267f8261265d565b9050919050565b60005b838110156126a4578082015181840152602081019050612689565b838111156126b3576000848401525b50505050565b600060028204905060018216806126d157607f821691505b602082108114156126e5576126e4612749565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657420726561636865640000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612a888161261f565b8114612a9357600080fd5b50565b612a9f8161265d565b8114612aaa57600080fd5b5056fea264697066735822122021a7b044c311507bc93591416344e6d132916f591648c8b79b5c99e3322c5e4864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101185760003560e01c806389f9a1d3116100a0578063a9059cbb11610064578063a9059cbb146103b0578063c9567bf9146103ed578063dd62ed3e14610404578063efa4af4c14610441578063f2fde38b146104585761011f565b806389f9a1d3146102db5780638da5cb5b14610306578063909278811461033157806395d89b4114610348578063a457c2d7146103735761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f57806349bd5a5e1461025c57806370a0823114610287578063715018a6146102c45761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b50610139610481565b6040516101469190612298565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611e8b565b610513565b604051610183919061227d565b60405180910390f35b34801561019857600080fd5b506101a1610531565b6040516101ae919061241a565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611e3c565b61053b565b6040516101eb919061227d565b60405180910390f35b34801561020057600080fd5b50610209610633565b604051610216919061248f565b60405180910390f35b34801561022b57600080fd5b5061024660048036038101906102419190611e8b565b61063c565b604051610253919061227d565b60405180910390f35b34801561026857600080fd5b506102716106e8565b60405161027e91906121d8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190611dae565b61070e565b6040516102bb919061241a565b60405180910390f35b3480156102d057600080fd5b506102d9610757565b005b3480156102e757600080fd5b506102f06107df565b6040516102fd919061241a565b60405180910390f35b34801561031257600080fd5b5061031b6107e5565b60405161032891906121d8565b60405180910390f35b34801561033d57600080fd5b5061034661080e565b005b34801561035457600080fd5b5061035d610895565b60405161036a9190612298565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190611e8b565b610927565b6040516103a7919061227d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190611e8b565b610a12565b6040516103e4919061227d565b60405180910390f35b3480156103f957600080fd5b50610402610a30565b005b34801561041057600080fd5b5061042b60048036038101906104269190611e00565b610db7565b604051610438919061241a565b60405180910390f35b34801561044d57600080fd5b50610456610e3e565b005b34801561046457600080fd5b5061047f600480360381019061047a9190611dae565b610ec4565b005b606060048054610490906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc906126b9565b80156105095780601f106104de57610100808354040283529160200191610509565b820191906000526020600020905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b6000610527610520610fbc565b8484610fc4565b6001905092915050565b6000600354905090565b600061054884848461118f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610593610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a9061237a565b60405180910390fd5b6106278561061f610fbc565b858403610fc4565b60019150509392505050565b60006012905090565b60006106de610649610fbc565b848460026000610657610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d9919061250a565b610fc4565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610fbc565b73ffffffffffffffffffffffffffffffffffffffff1661077d6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061239a565b60405180910390fd5b6107dd60006116d3565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610816610fbc565b73ffffffffffffffffffffffffffffffffffffffff166108346107e5565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061239a565b60405180910390fd5b600854600681905550565b6060600580546108a4906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906126b9565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b60008060026000610936610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906123fa565b60405180910390fd5b610a076109fe610fbc565b85858403610fc4565b600191505092915050565b6000610a26610a1f610fbc565b848461118f565b6001905092915050565b610a38610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610a566107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061239a565b60405180910390fd5b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1457600080fd5b505afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611dd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611dd7565b6040518363ffffffff1660e01b8152600401610c239291906121f3565b602060405180830381600087803b158015610c3d57600080fd5b505af1158015610c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c759190611dd7565b9050610caa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610ca53061070e565b610fc4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610cf13061070e565b600080610cfc6107e5565b426040518863ffffffff1660e01b8152600401610d1e9695949392919061221c565b6060604051808303818588803b158015610d3757600080fd5b505af1158015610d4b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d709190611ec7565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e46610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610e646107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061239a565b60405180910390fd5b6000600981905550565b610ecc610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610eea6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f379061239a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906122fa565b60405180910390fd5b610fb9816116d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b906123da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061231a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611182919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611315573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611289575061125a6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112c657506112976107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906122da565b60405180910390fd5b611310838383611797565b6116ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113dd57506113ad6107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561149357600654816114478461070e565b611451919061250a565b1115611492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114899061235a565b60405180910390fd5b5b600061149e3061070e565b90506103e86008546114b09190612560565b8111156114ca576103e86008546114c79190612560565b90505b6107d06008546114da9190612560565b81101580156114f65750600a60009054906101000a900460ff16155b80156115505750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156115ae576001600a60006101000a81548160ff02191690831515021790555061157981611a1b565b600047905060008111156115915761159081611cd9565b5b6000600a60006101000a81548160ff021916908315150217905550505b60006009541180156115ec57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561162b57506115fb6107e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561168357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156116c157600060646009548461169a9190612591565b6116a49190612560565b905080836116b291906125eb565b92506116bf853083611797565b505b6116cc848484611797565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906123ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906122ba565b60405180910390fd5b611882838383611d50565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061233a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199e919061250a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a02919061241a565b60405180910390a3611a15848484611d55565b50505050565b6000600267ffffffffffffffff811115611a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a8c5781602001602082028036833780820191505090505b5090503081600081518110611aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6a57600080fd5b505afa158015611b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba29190611dd7565b81600181518110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c41307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fc4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ca3959493929190612435565b600060405180830381600087803b158015611cbd57600080fd5b505af1158015611cd1573d6000803e3d6000fd5b505050505050565b6000611ce36107e5565b73ffffffffffffffffffffffffffffffffffffffff1682604051611d06906121c3565b60006040518083038185875af1925050503d8060008114611d43576040519150601f19603f3d011682016040523d82523d6000602084013e611d48565b606091505b505090505050565b505050565b505050565b600081359050611d6981612a7f565b92915050565b600081519050611d7e81612a7f565b92915050565b600081359050611d9381612a96565b92915050565b600081519050611da881612a96565b92915050565b600060208284031215611dc057600080fd5b6000611dce84828501611d5a565b91505092915050565b600060208284031215611de957600080fd5b6000611df784828501611d6f565b91505092915050565b60008060408385031215611e1357600080fd5b6000611e2185828601611d5a565b9250506020611e3285828601611d5a565b9150509250929050565b600080600060608486031215611e5157600080fd5b6000611e5f86828701611d5a565b9350506020611e7086828701611d5a565b9250506040611e8186828701611d84565b9150509250925092565b60008060408385031215611e9e57600080fd5b6000611eac85828601611d5a565b9250506020611ebd85828601611d84565b9150509250929050565b600080600060608486031215611edc57600080fd5b6000611eea86828701611d99565b9350506020611efb86828701611d99565b9250506040611f0c86828701611d99565b9150509250925092565b6000611f228383611f2e565b60208301905092915050565b611f378161261f565b82525050565b611f468161261f565b82525050565b6000611f57826124ba565b611f6181856124dd565b9350611f6c836124aa565b8060005b83811015611f9d578151611f848882611f16565b9750611f8f836124d0565b925050600181019050611f70565b5085935050505092915050565b611fb381612631565b82525050565b611fc281612674565b82525050565b6000611fd3826124c5565b611fdd81856124f9565b9350611fed818560208601612686565b611ff681612778565b840191505092915050565b600061200e6023836124f9565b915061201982612789565b604082019050919050565b6000612031600b836124f9565b915061203c826127d8565b602082019050919050565b60006120546026836124f9565b915061205f82612801565b604082019050919050565b60006120776022836124f9565b915061208282612850565b604082019050919050565b600061209a6026836124f9565b91506120a58261289f565b604082019050919050565b60006120bd6012836124f9565b91506120c8826128ee565b602082019050919050565b60006120e06028836124f9565b91506120eb82612917565b604082019050919050565b60006121036020836124f9565b915061210e82612966565b602082019050919050565b60006121266025836124f9565b91506121318261298f565b604082019050919050565b60006121496000836124ee565b9150612154826129de565b600082019050919050565b600061216c6024836124f9565b9150612177826129e1565b604082019050919050565b600061218f6025836124f9565b915061219a82612a30565b604082019050919050565b6121ae8161265d565b82525050565b6121bd81612667565b82525050565b60006121ce8261213c565b9150819050919050565b60006020820190506121ed6000830184611f3d565b92915050565b60006040820190506122086000830185611f3d565b6122156020830184611f3d565b9392505050565b600060c0820190506122316000830189611f3d565b61223e60208301886121a5565b61224b6040830187611fb9565b6122586060830186611fb9565b6122656080830185611f3d565b61227260a08301846121a5565b979650505050505050565b60006020820190506122926000830184611faa565b92915050565b600060208201905081810360008301526122b28184611fc8565b905092915050565b600060208201905081810360008301526122d381612001565b9050919050565b600060208201905081810360008301526122f381612024565b9050919050565b6000602082019050818103600083015261231381612047565b9050919050565b600060208201905081810360008301526123338161206a565b9050919050565b600060208201905081810360008301526123538161208d565b9050919050565b60006020820190508181036000830152612373816120b0565b9050919050565b60006020820190508181036000830152612393816120d3565b9050919050565b600060208201905081810360008301526123b3816120f6565b9050919050565b600060208201905081810360008301526123d381612119565b9050919050565b600060208201905081810360008301526123f38161215f565b9050919050565b6000602082019050818103600083015261241381612182565b9050919050565b600060208201905061242f60008301846121a5565b92915050565b600060a08201905061244a60008301886121a5565b6124576020830187611fb9565b81810360408301526124698186611f4c565b90506124786060830185611f3d565b61248560808301846121a5565b9695505050505050565b60006020820190506124a460008301846121b4565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006125158261265d565b91506125208361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612555576125546126eb565b5b828201905092915050565b600061256b8261265d565b91506125768361265d565b9250826125865761258561271a565b5b828204905092915050565b600061259c8261265d565b91506125a78361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df6126eb565b5b828202905092915050565b60006125f68261265d565b91506126018361265d565b925082821015612614576126136126eb565b5b828203905092915050565b600061262a8261263d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061267f8261265d565b9050919050565b60005b838110156126a4578082015181840152602081019050612689565b838111156126b3576000848401525b50505050565b600060028204905060018216806126d157607f821691505b602082108114156126e5576126e4612749565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657420726561636865640000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612a888161261f565b8114612a9357600080fd5b50565b612a9f8161265d565b8114612aaa57600080fd5b5056fea264697066735822122021a7b044c311507bc93591416344e6d132916f591648c8b79b5c99e3322c5e4864736f6c63430008040033

Deployed Bytecode Sourcemap

20066:3309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9280:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11447:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10400:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12098:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10242:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12999:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20159:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10571:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2681:103;;;;;;;;;;;;;:::i;:::-;;20121:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2030:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20720:97;;;;;;;;;;;;;:::i;:::-;;9499:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13717:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10911:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20825:512;;;;;;;;;;;;;:::i;:::-;;11149:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20646:66;;;;;;;;;;;;;:::i;:::-;;2939:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9280:100;9334:13;9367:5;9360:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9280:100;:::o;11447:169::-;11530:4;11547:39;11556:12;:10;:12::i;:::-;11570:7;11579:6;11547:8;:39::i;:::-;11604:4;11597:11;;11447:169;;;;:::o;10400:108::-;10461:7;10488:12;;10481:19;;10400:108;:::o;12098:492::-;12238:4;12255:36;12265:6;12273:9;12284:6;12255:9;:36::i;:::-;12304:24;12331:11;:19;12343:6;12331:19;;;;;;;;;;;;;;;:33;12351:12;:10;:12::i;:::-;12331:33;;;;;;;;;;;;;;;;12304:60;;12403:6;12383:16;:26;;12375:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12490:57;12499:6;12507:12;:10;:12::i;:::-;12540:6;12521:16;:25;12490:8;:57::i;:::-;12578:4;12571:11;;;12098:492;;;;;:::o;10242:93::-;10300:5;10325:2;10318:9;;10242:93;:::o;12999:215::-;13087:4;13104:80;13113:12;:10;:12::i;:::-;13127:7;13173:10;13136:11;:25;13148:12;:10;:12::i;:::-;13136:25;;;;;;;;;;;;;;;:34;13162:7;13136:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13104:8;:80::i;:::-;13202:4;13195:11;;12999:215;;;;:::o;20159:28::-;;;;;;;;;;;;;:::o;10571:127::-;10645:7;10672:9;:18;10682:7;10672:18;;;;;;;;;;;;;;;;10665:25;;10571:127;;;:::o;2681:103::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2746:30:::1;2773:1;2746:18;:30::i;:::-;2681:103::o:0;20121:31::-;;;;:::o;2030:87::-;2076:7;2103:6;;;;;;;;;;;2096:13;;2030:87;:::o;20720:97::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20803:6:::1;;20784:16;:25;;;;20720:97::o:0;9499:104::-;9555:13;9588:7;9581:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9499:104;:::o;13717:413::-;13810:4;13827:24;13854:11;:25;13866:12;:10;:12::i;:::-;13854:25;;;;;;;;;;;;;;;:34;13880:7;13854:34;;;;;;;;;;;;;;;;13827:61;;13927:15;13907:16;:35;;13899:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14020:67;14029:12;:10;:12::i;:::-;14043:7;14071:15;14052:16;:34;14020:8;:67::i;:::-;14118:4;14111:11;;;13717:413;;;;:::o;10911:175::-;10997:4;11014:42;11024:12;:10;:12::i;:::-;11038:9;11049:6;11014:9;:42::i;:::-;11074:4;11067:11;;10911:175;;;;:::o;20825:512::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20878:12:::1;20911:6;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20893:46;;;20948:4;20955:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20893:76;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20878:91;;20980:66;20997:4;21012:6;21021:24;21039:4;21021:9;:24::i;:::-;20980:8;:66::i;:::-;21057:6;:22;;;21101:21;21157:4;21177:24;21195:4;21177:9;:24::i;:::-;21216:1;21232::::0;21248:7:::1;:5;:7::i;:::-;21270:15;21057:239;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;21325:4;21309:13;;:20;;;;;;;;;;;;;;;;;;2321:1;20825:512::o:0;11149:151::-;11238:7;11265:11;:18;11277:5;11265:18;;;;;;;;;;;;;;;:27;11284:7;11265:27;;;;;;;;;;;;;;;;11258:34;;11149:151;;;;:::o;20646:66::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20703:1:::1;20697:3;:7;;;;20646:66::o:0;2939:201::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3048:1:::1;3028:22;;:8;:22;;;;3020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3104:28;3123:8;3104:18;:28::i;:::-;2939:201:::0;:::o;748:98::-;801:7;828:10;821:17;;748:98;:::o;17401:380::-;17554:1;17537:19;;:5;:19;;;;17529:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17635:1;17616:21;;:7;:21;;;;17608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17719:6;17689:11;:18;17701:5;17689:18;;;;;;;;;;;;;;;:27;17708:7;17689:27;;;;;;;;;;;;;;;:36;;;;17757:7;17741:32;;17750:5;17741:32;;;17766:6;17741:32;;;;;;:::i;:::-;;;;;;;;17401:380;;;:::o;21345:1435::-;21463:1;21438:27;;:13;;;;;;;;;;;:27;;;21435:231;;;21506:4;21490:21;;:4;:21;;;:43;;;;21531:1;21515:18;;:4;:18;;;21490:43;:62;;;;21545:7;:5;:7::i;:::-;21537:15;;:4;:15;;;21490:62;:79;;;;21562:7;:5;:7::i;:::-;21556:13;;:2;:13;;;21490:79;21482:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;21600:33;21616:4;21622:2;21626:6;21600:15;:33::i;:::-;21648:7;;21435:231;21689:13;;;;;;;;;;;21681:21;;:4;:21;;;:44;;;;;21720:4;21706:19;;:2;:19;;;;21681:44;:61;;;;;21735:7;:5;:7::i;:::-;21729:13;;:2;:13;;;;21681:61;:86;;;;;21760:6;21746:21;;:2;:21;;;;21681:86;21678:197;;;21824:16;;21814:6;21792:19;21808:2;21792:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21784:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;21678:197;21887:18;21908:24;21926:4;21908:9;:24::i;:::-;21887:45;;21970:4;21961:6;;:13;;;;:::i;:::-;21948:10;:26;21945:84;;;22013:4;22004:6;;:13;;;;:::i;:::-;21991:26;;21945:84;22068:4;22059:6;;:13;;;;:::i;:::-;22045:10;:27;;:51;;;;;22090:6;;;;;;;;;;;22089:7;22045:51;:89;;;;;22121:13;;;;;;;;;;;22113:21;;:4;:21;;;;22045:89;22041:353;;;22162:4;22153:6;;:13;;;;;;;;;;;;;;;;;;22183:28;22200:10;22183:16;:28::i;:::-;22228:15;22246:21;22228:39;;22297:1;22287:7;:11;22284:68;;;22319:17;22328:7;22319:8;:17::i;:::-;22284:68;22377:5;22368:6;;:14;;;;;;;;;;;;;;;;;;22041:353;;22441:1;22435:3;;:7;:45;;;;;22475:4;22459:21;;:4;:21;;;;22435:45;:77;;;;;22505:7;:5;:7::i;:::-;22497:15;;:4;:15;;;;22435:77;:117;;;;;22545:6;22529:23;;:4;:23;;;;22435:117;22418:309;;;22579:17;22614:3;22608;;22599:6;:12;;;;:::i;:::-;:18;;;;:::i;:::-;22579:38;;22642:9;22632:19;;;;;:::i;:::-;;;22668:47;22684:4;22698;22705:9;22668:15;:47::i;:::-;22418:309;;22739:33;22755:4;22761:2;22765:6;22739:15;:33::i;:::-;21345:1435;;;;;:::o;3300:191::-;3374:16;3393:6;;;;;;;;;;;3374:25;;3419:8;3410:6;;:17;;;;;;;;;;;;;;;;;;3474:8;3443:40;;3464:8;3443:40;;;;;;;;;;;;3300:191;;:::o;14620:733::-;14778:1;14760:20;;:6;:20;;;;14752:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14862:1;14841:23;;:9;:23;;;;14833:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14917:47;14938:6;14946:9;14957:6;14917:20;:47::i;:::-;14977:21;15001:9;:17;15011:6;15001:17;;;;;;;;;;;;;;;;14977:41;;15054:6;15037:13;:23;;15029:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15175:6;15159:13;:22;15139:9;:17;15149:6;15139:17;;;;;;;;;;;;;;;:42;;;;15227:6;15203:9;:20;15213:9;15203:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15268:9;15251:35;;15260:6;15251:35;;;15279:6;15251:35;;;;;;:::i;:::-;;;;;;;;15299:46;15319:6;15327:9;15338:6;15299:19;:46::i;:::-;14620:733;;;;:::o;22790:446::-;22856:21;22894:1;22880:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22856:40;;22925:4;22907;22912:1;22907:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22951:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22941:4;22946:1;22941:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22975:53;22992:4;23007:6;23016:11;22975:8;:53::i;:::-;23041:6;:57;;;23113:11;23139:1;23155:4;23182;23202:15;23041:187;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22790:446;;:::o;23244:128::-;23298:12;23315:7;:5;:7::i;:::-;:12;;23335:6;23315:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23297:49;;;23244:128;;:::o;18381:125::-;;;;:::o;19110:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:139::-;347:5;385:6;372:20;363:29;;401:33;428:5;401:33;:::i;:::-;353:87;;;;:::o;446:143::-;503:5;534:6;528:13;519:22;;550:33;577:5;550:33;:::i;:::-;509:80;;;;:::o;595:262::-;654:6;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;762:1;787:53;832:7;823:6;812:9;808:22;787:53;:::i;:::-;777:63;;733:117;661:196;;;;:::o;863:284::-;933:6;982:2;970:9;961:7;957:23;953:32;950:2;;;998:1;995;988:12;950:2;1041:1;1066:64;1122:7;1113:6;1102:9;1098:22;1066:64;:::i;:::-;1056:74;;1012:128;940:207;;;;:::o;1153:407::-;1221:6;1229;1278:2;1266:9;1257:7;1253:23;1249:32;1246:2;;;1294:1;1291;1284:12;1246:2;1337:1;1362:53;1407:7;1398:6;1387:9;1383:22;1362:53;:::i;:::-;1352:63;;1308:117;1464:2;1490:53;1535:7;1526:6;1515:9;1511:22;1490:53;:::i;:::-;1480:63;;1435:118;1236:324;;;;;:::o;1566:552::-;1643:6;1651;1659;1708:2;1696:9;1687:7;1683:23;1679:32;1676:2;;;1724:1;1721;1714:12;1676:2;1767:1;1792:53;1837:7;1828:6;1817:9;1813:22;1792:53;:::i;:::-;1782:63;;1738:117;1894:2;1920:53;1965:7;1956:6;1945:9;1941:22;1920:53;:::i;:::-;1910:63;;1865:118;2022:2;2048:53;2093:7;2084:6;2073:9;2069:22;2048:53;:::i;:::-;2038:63;;1993:118;1666:452;;;;;:::o;2124:407::-;2192:6;2200;2249:2;2237:9;2228:7;2224:23;2220:32;2217:2;;;2265:1;2262;2255:12;2217:2;2308:1;2333:53;2378:7;2369:6;2358:9;2354:22;2333:53;:::i;:::-;2323:63;;2279:117;2435:2;2461:53;2506:7;2497:6;2486:9;2482:22;2461:53;:::i;:::-;2451:63;;2406:118;2207:324;;;;;:::o;2537:596::-;2625:6;2633;2641;2690:2;2678:9;2669:7;2665:23;2661:32;2658:2;;;2706:1;2703;2696:12;2658:2;2749:1;2774:64;2830:7;2821:6;2810:9;2806:22;2774:64;:::i;:::-;2764:74;;2720:128;2887:2;2913:64;2969:7;2960:6;2949:9;2945:22;2913:64;:::i;:::-;2903:74;;2858:129;3026:2;3052:64;3108:7;3099:6;3088:9;3084:22;3052:64;:::i;:::-;3042:74;;2997:129;2648:485;;;;;:::o;3139:179::-;3208:10;3229:46;3271:3;3263:6;3229:46;:::i;:::-;3307:4;3302:3;3298:14;3284:28;;3219:99;;;;:::o;3324:108::-;3401:24;3419:5;3401:24;:::i;:::-;3396:3;3389:37;3379:53;;:::o;3438:118::-;3525:24;3543:5;3525:24;:::i;:::-;3520:3;3513:37;3503:53;;:::o;3592:732::-;3711:3;3740:54;3788:5;3740:54;:::i;:::-;3810:86;3889:6;3884:3;3810:86;:::i;:::-;3803:93;;3920:56;3970:5;3920:56;:::i;:::-;3999:7;4030:1;4015:284;4040:6;4037:1;4034:13;4015:284;;;4116:6;4110:13;4143:63;4202:3;4187:13;4143:63;:::i;:::-;4136:70;;4229:60;4282:6;4229:60;:::i;:::-;4219:70;;4075:224;4062:1;4059;4055:9;4050:14;;4015:284;;;4019:14;4315:3;4308:10;;3716:608;;;;;;;:::o;4330:109::-;4411:21;4426:5;4411:21;:::i;:::-;4406:3;4399:34;4389:50;;:::o;4445:147::-;4540:45;4579:5;4540:45;:::i;:::-;4535:3;4528:58;4518:74;;:::o;4598:364::-;4686:3;4714:39;4747:5;4714:39;:::i;:::-;4769:71;4833:6;4828:3;4769:71;:::i;:::-;4762:78;;4849:52;4894:6;4889:3;4882:4;4875:5;4871:16;4849:52;:::i;:::-;4926:29;4948:6;4926:29;:::i;:::-;4921:3;4917:39;4910:46;;4690:272;;;;;:::o;4968:366::-;5110:3;5131:67;5195:2;5190:3;5131:67;:::i;:::-;5124:74;;5207:93;5296:3;5207:93;:::i;:::-;5325:2;5320:3;5316:12;5309:19;;5114:220;;;:::o;5340:366::-;5482:3;5503:67;5567:2;5562:3;5503:67;:::i;:::-;5496:74;;5579:93;5668:3;5579:93;:::i;:::-;5697:2;5692:3;5688:12;5681:19;;5486:220;;;:::o;5712:366::-;5854:3;5875:67;5939:2;5934:3;5875:67;:::i;:::-;5868:74;;5951:93;6040:3;5951:93;:::i;:::-;6069:2;6064:3;6060:12;6053:19;;5858:220;;;:::o;6084:366::-;6226:3;6247:67;6311:2;6306:3;6247:67;:::i;:::-;6240:74;;6323:93;6412:3;6323:93;:::i;:::-;6441:2;6436:3;6432:12;6425:19;;6230:220;;;:::o;6456:366::-;6598:3;6619:67;6683:2;6678:3;6619:67;:::i;:::-;6612:74;;6695:93;6784:3;6695:93;:::i;:::-;6813:2;6808:3;6804:12;6797:19;;6602:220;;;:::o;6828:366::-;6970:3;6991:67;7055:2;7050:3;6991:67;:::i;:::-;6984:74;;7067:93;7156:3;7067:93;:::i;:::-;7185:2;7180:3;7176:12;7169:19;;6974:220;;;:::o;7200:366::-;7342:3;7363:67;7427:2;7422:3;7363:67;:::i;:::-;7356:74;;7439:93;7528:3;7439:93;:::i;:::-;7557:2;7552:3;7548:12;7541:19;;7346:220;;;:::o;7572:366::-;7714:3;7735:67;7799:2;7794:3;7735:67;:::i;:::-;7728:74;;7811:93;7900:3;7811:93;:::i;:::-;7929:2;7924:3;7920:12;7913:19;;7718:220;;;:::o;7944:366::-;8086:3;8107:67;8171:2;8166:3;8107:67;:::i;:::-;8100:74;;8183:93;8272:3;8183:93;:::i;:::-;8301:2;8296:3;8292:12;8285:19;;8090:220;;;:::o;8316:398::-;8475:3;8496:83;8577:1;8572:3;8496:83;:::i;:::-;8489:90;;8588:93;8677:3;8588:93;:::i;:::-;8706:1;8701:3;8697:11;8690:18;;8479:235;;;:::o;8720:366::-;8862:3;8883:67;8947:2;8942:3;8883:67;:::i;:::-;8876:74;;8959:93;9048:3;8959:93;:::i;:::-;9077:2;9072:3;9068:12;9061:19;;8866:220;;;:::o;9092:366::-;9234:3;9255:67;9319:2;9314:3;9255:67;:::i;:::-;9248:74;;9331:93;9420:3;9331:93;:::i;:::-;9449:2;9444:3;9440:12;9433:19;;9238:220;;;:::o;9464:118::-;9551:24;9569:5;9551:24;:::i;:::-;9546:3;9539:37;9529:53;;:::o;9588:112::-;9671:22;9687:5;9671:22;:::i;:::-;9666:3;9659:35;9649:51;;:::o;9706:379::-;9890:3;9912:147;10055:3;9912:147;:::i;:::-;9905:154;;10076:3;10069:10;;9894:191;;;:::o;10091:222::-;10184:4;10222:2;10211:9;10207:18;10199:26;;10235:71;10303:1;10292:9;10288:17;10279:6;10235:71;:::i;:::-;10189:124;;;;:::o;10319:332::-;10440:4;10478:2;10467:9;10463:18;10455:26;;10491:71;10559:1;10548:9;10544:17;10535:6;10491:71;:::i;:::-;10572:72;10640:2;10629:9;10625:18;10616:6;10572:72;:::i;:::-;10445:206;;;;;:::o;10657:807::-;10906:4;10944:3;10933:9;10929:19;10921:27;;10958:71;11026:1;11015:9;11011:17;11002:6;10958:71;:::i;:::-;11039:72;11107:2;11096:9;11092:18;11083:6;11039:72;:::i;:::-;11121:80;11197:2;11186:9;11182:18;11173:6;11121:80;:::i;:::-;11211;11287:2;11276:9;11272:18;11263:6;11211:80;:::i;:::-;11301:73;11369:3;11358:9;11354:19;11345:6;11301:73;:::i;:::-;11384;11452:3;11441:9;11437:19;11428:6;11384:73;:::i;:::-;10911:553;;;;;;;;;:::o;11470:210::-;11557:4;11595:2;11584:9;11580:18;11572:26;;11608:65;11670:1;11659:9;11655:17;11646:6;11608:65;:::i;:::-;11562:118;;;;:::o;11686:313::-;11799:4;11837:2;11826:9;11822:18;11814:26;;11886:9;11880:4;11876:20;11872:1;11861:9;11857:17;11850:47;11914:78;11987:4;11978:6;11914:78;:::i;:::-;11906:86;;11804:195;;;;:::o;12005:419::-;12171:4;12209:2;12198:9;12194:18;12186:26;;12258:9;12252:4;12248:20;12244:1;12233:9;12229:17;12222:47;12286:131;12412:4;12286:131;:::i;:::-;12278:139;;12176:248;;;:::o;12430:419::-;12596:4;12634:2;12623:9;12619:18;12611:26;;12683:9;12677:4;12673:20;12669:1;12658:9;12654:17;12647:47;12711:131;12837:4;12711:131;:::i;:::-;12703:139;;12601:248;;;:::o;12855:419::-;13021:4;13059:2;13048:9;13044:18;13036:26;;13108:9;13102:4;13098:20;13094:1;13083:9;13079:17;13072:47;13136:131;13262:4;13136:131;:::i;:::-;13128:139;;13026:248;;;:::o;13280:419::-;13446:4;13484:2;13473:9;13469:18;13461:26;;13533:9;13527:4;13523:20;13519:1;13508:9;13504:17;13497:47;13561:131;13687:4;13561:131;:::i;:::-;13553:139;;13451:248;;;:::o;13705:419::-;13871:4;13909:2;13898:9;13894:18;13886:26;;13958:9;13952:4;13948:20;13944:1;13933:9;13929:17;13922:47;13986:131;14112:4;13986:131;:::i;:::-;13978:139;;13876:248;;;:::o;14130:419::-;14296:4;14334:2;14323:9;14319:18;14311:26;;14383:9;14377:4;14373:20;14369:1;14358:9;14354:17;14347:47;14411:131;14537:4;14411:131;:::i;:::-;14403:139;;14301:248;;;:::o;14555:419::-;14721:4;14759:2;14748:9;14744:18;14736:26;;14808:9;14802:4;14798:20;14794:1;14783:9;14779:17;14772:47;14836:131;14962:4;14836:131;:::i;:::-;14828:139;;14726:248;;;:::o;14980:419::-;15146:4;15184:2;15173:9;15169:18;15161:26;;15233:9;15227:4;15223:20;15219:1;15208:9;15204:17;15197:47;15261:131;15387:4;15261:131;:::i;:::-;15253:139;;15151:248;;;:::o;15405:419::-;15571:4;15609:2;15598:9;15594:18;15586:26;;15658:9;15652:4;15648:20;15644:1;15633:9;15629:17;15622:47;15686:131;15812:4;15686:131;:::i;:::-;15678:139;;15576:248;;;:::o;15830:419::-;15996:4;16034:2;16023:9;16019:18;16011:26;;16083:9;16077:4;16073:20;16069:1;16058:9;16054:17;16047:47;16111:131;16237:4;16111:131;:::i;:::-;16103:139;;16001:248;;;:::o;16255:419::-;16421:4;16459:2;16448:9;16444:18;16436:26;;16508:9;16502:4;16498:20;16494:1;16483:9;16479:17;16472:47;16536:131;16662:4;16536:131;:::i;:::-;16528:139;;16426:248;;;:::o;16680:222::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16824:71;16892:1;16881:9;16877:17;16868:6;16824:71;:::i;:::-;16778:124;;;;:::o;16908:831::-;17171:4;17209:3;17198:9;17194:19;17186:27;;17223:71;17291:1;17280:9;17276:17;17267:6;17223:71;:::i;:::-;17304:80;17380:2;17369:9;17365:18;17356:6;17304:80;:::i;:::-;17431:9;17425:4;17421:20;17416:2;17405:9;17401:18;17394:48;17459:108;17562:4;17553:6;17459:108;:::i;:::-;17451:116;;17577:72;17645:2;17634:9;17630:18;17621:6;17577:72;:::i;:::-;17659:73;17727:3;17716:9;17712:19;17703:6;17659:73;:::i;:::-;17176:563;;;;;;;;:::o;17745:214::-;17834:4;17872:2;17861:9;17857:18;17849:26;;17885:67;17949:1;17938:9;17934:17;17925:6;17885:67;:::i;:::-;17839:120;;;;:::o;17965:132::-;18032:4;18055:3;18047:11;;18085:4;18080:3;18076:14;18068:22;;18037:60;;;:::o;18103:114::-;18170:6;18204:5;18198:12;18188:22;;18177:40;;;:::o;18223:99::-;18275:6;18309:5;18303:12;18293:22;;18282:40;;;:::o;18328:113::-;18398:4;18430;18425:3;18421:14;18413:22;;18403:38;;;:::o;18447:184::-;18546:11;18580:6;18575:3;18568:19;18620:4;18615:3;18611:14;18596:29;;18558:73;;;;:::o;18637:147::-;18738:11;18775:3;18760:18;;18750:34;;;;:::o;18790:169::-;18874:11;18908:6;18903:3;18896:19;18948:4;18943:3;18939:14;18924:29;;18886:73;;;;:::o;18965:305::-;19005:3;19024:20;19042:1;19024:20;:::i;:::-;19019:25;;19058:20;19076:1;19058:20;:::i;:::-;19053:25;;19212:1;19144:66;19140:74;19137:1;19134:81;19131:2;;;19218:18;;:::i;:::-;19131:2;19262:1;19259;19255:9;19248:16;;19009:261;;;;:::o;19276:185::-;19316:1;19333:20;19351:1;19333:20;:::i;:::-;19328:25;;19367:20;19385:1;19367:20;:::i;:::-;19362:25;;19406:1;19396:2;;19411:18;;:::i;:::-;19396:2;19453:1;19450;19446:9;19441:14;;19318:143;;;;:::o;19467:348::-;19507:7;19530:20;19548:1;19530:20;:::i;:::-;19525:25;;19564:20;19582:1;19564:20;:::i;:::-;19559:25;;19752:1;19684:66;19680:74;19677:1;19674:81;19669:1;19662:9;19655:17;19651:105;19648:2;;;19759:18;;:::i;:::-;19648:2;19807:1;19804;19800:9;19789:20;;19515:300;;;;:::o;19821:191::-;19861:4;19881:20;19899:1;19881:20;:::i;:::-;19876:25;;19915:20;19933:1;19915:20;:::i;:::-;19910:25;;19954:1;19951;19948:8;19945:2;;;19959:18;;:::i;:::-;19945:2;20004:1;20001;19997:9;19989:17;;19866:146;;;;:::o;20018:96::-;20055:7;20084:24;20102:5;20084:24;:::i;:::-;20073:35;;20063:51;;;:::o;20120:90::-;20154:7;20197:5;20190:13;20183:21;20172:32;;20162:48;;;:::o;20216:126::-;20253:7;20293:42;20286:5;20282:54;20271:65;;20261:81;;;:::o;20348:77::-;20385:7;20414:5;20403:16;;20393:32;;;:::o;20431:86::-;20466:7;20506:4;20499:5;20495:16;20484:27;;20474:43;;;:::o;20523:121::-;20581:9;20614:24;20632:5;20614:24;:::i;:::-;20601:37;;20591:53;;;:::o;20650:307::-;20718:1;20728:113;20742:6;20739:1;20736:13;20728:113;;;20827:1;20822:3;20818:11;20812:18;20808:1;20803:3;20799:11;20792:39;20764:2;20761:1;20757:10;20752:15;;20728:113;;;20859:6;20856:1;20853:13;20850:2;;;20939:1;20930:6;20925:3;20921:16;20914:27;20850:2;20699:258;;;;:::o;20963:320::-;21007:6;21044:1;21038:4;21034:12;21024:22;;21091:1;21085:4;21081:12;21112:18;21102:2;;21168:4;21160:6;21156:17;21146:27;;21102:2;21230;21222:6;21219:14;21199:18;21196:38;21193:2;;;21249:18;;:::i;:::-;21193:2;21014:269;;;;:::o;21289:180::-;21337:77;21334:1;21327:88;21434:4;21431:1;21424:15;21458:4;21455:1;21448:15;21475:180;21523:77;21520:1;21513:88;21620:4;21617:1;21610:15;21644:4;21641:1;21634:15;21661:180;21709:77;21706:1;21699:88;21806:4;21803:1;21796:15;21830:4;21827:1;21820:15;21847:102;21888:6;21939:2;21935:7;21930:2;21923:5;21919:14;21915:28;21905:38;;21895:54;;;:::o;21955:222::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:5;22159:2;22151:6;22147:15;22140:30;22061:116;:::o;22183:161::-;22323:13;22319:1;22311:6;22307:14;22300:37;22289:55;:::o;22350:225::-;22490:34;22486:1;22478:6;22474:14;22467:58;22559:8;22554:2;22546:6;22542:15;22535:33;22456:119;:::o;22581:221::-;22721:34;22717:1;22709:6;22705:14;22698:58;22790:4;22785:2;22777:6;22773:15;22766:29;22687:115;:::o;22808:225::-;22948:34;22944:1;22936:6;22932:14;22925:58;23017:8;23012:2;23004:6;23000:15;22993:33;22914:119;:::o;23039:168::-;23179:20;23175:1;23167:6;23163:14;23156:44;23145:62;:::o;23213:227::-;23353:34;23349:1;23341:6;23337:14;23330:58;23422:10;23417:2;23409:6;23405:15;23398:35;23319:121;:::o;23446:182::-;23586:34;23582:1;23574:6;23570:14;23563:58;23552:76;:::o;23634:224::-;23774:34;23770:1;23762:6;23758:14;23751:58;23843:7;23838:2;23830:6;23826:15;23819:32;23740:118;:::o;23864:114::-;23970:8;:::o;23984:223::-;24124:34;24120:1;24112:6;24108:14;24101:58;24193:6;24188:2;24180:6;24176:15;24169:31;24090:117;:::o;24213:224::-;24353:34;24349:1;24341:6;24337:14;24330:58;24422:7;24417:2;24409:6;24405:15;24398:32;24319:118;:::o;24443:122::-;24516:24;24534:5;24516:24;:::i;:::-;24509:5;24506:35;24496:2;;24555:1;24552;24545:12;24496:2;24486:79;:::o;24571:122::-;24644:24;24662:5;24644:24;:::i;:::-;24637:5;24634:35;24624:2;;24683:1;24680;24673:12;24624:2;24614:79;:::o

Swarm Source

ipfs://21a7b044c311507bc93591416344e6d132916f591648c8b79b5c99e3322c5e48
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.