ETH Price: $3,353.53 (-2.79%)
Gas: 2 Gwei

Token

Raid (RAID)
 

Overview

Max Total Supply

1,000,000 RAID

Holders

320

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40.981653759066660496 RAID

Value
$0.00
0x099ad9f555e51e894205384982ed964807e635e4
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:
Raid

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

interface IERC20 {

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address to, uint256 amount) external returns (bool);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

abstract contract ReentrancyGuard {

    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    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);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract Raid is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private swapping;

    address private operationsWallet;
    uint256 public swapTokensAtAmount;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapbackEnabled = false;

    uint256 public sellFees;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event operationsWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Raid", "RAID", 18) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000 * 10 ** decimals();

        swapTokensAtAmount = (totalSupply * 2) / 1000;

        sellFees = 0;

        operationsWallet = msg.sender;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Token launched");
        sellFees = 300;
        tradingActive = true;
        swapbackEnabled = true;
    }

    function removeFees() internal returns (bool) {
        limitsInEffect = false;
        sellFees = 0;
        return true;
    }
    
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= totalSupply(),
            "Swap amount cannot be higher than the total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function setFeeSwapbackEnabled(bool enabled) external onlyOwner {
        swapbackEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationsWallet(
        address newOperationsWallet
    ) external onlyOwner {
        emit operationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] 
        ) {
            swapping = true;
            swapBack(contractTokenBalance);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(1000);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);

    }

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

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack(uint256 amount) private {
        bool success;

        if (amount == 0) {
            return;
        }

        swapTokensForEth(amount);

        uint256 ethBalance = address(this).balance;
        (success, ) = address(operationsWallet).call{value: ethBalance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setFeeSwapbackEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapbackEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506000600960026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600481526020017f52616964000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52414944000000000000000000000000000000000000000000000000000000008152506012826003908162000137919062000b8b565b50816004908162000149919062000b8b565b5080600560006101000a81548160ff021916908360ff160217905550505050620001886200017c6200049360201b60201c565b6200049b60201b60201c565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000cdc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e3919062000cdc565b6040518363ffffffff1660e01b81526004016200030292919062000d1f565b6020604051808303816000875af115801562000322573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000348919062000cdc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039060a05160016200056160201b60201c565b6000620003a26200060260201b60201c565b600a620003b0919062000edc565b620f4240620003c0919062000f2d565b90506103e8600282620003d4919062000f2d565b620003e0919062000fa7565b6008819055506000600a8190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000451620004436200061960201b60201c565b60016200064360201b60201c565b620004643060016200064360201b60201c565b6200047961dead60016200064360201b60201c565b6200048b3382620006fe60201b60201c565b505062001177565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006536200087660201b60201c565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006f2919062000ffc565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000767906200107a565b60405180910390fd5b62000784600083836200090760201b60201c565b80600260008282546200079891906200109c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007ef91906200109c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008569190620010e8565b60405180910390a362000872600083836200090c60201b60201c565b5050565b620008866200049360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008ac6200061960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000905576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fc9062001155565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099357607f821691505b602082108103620009a957620009a86200094b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d4565b62000a1f8683620009d4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a6c62000a6662000a608462000a37565b62000a41565b62000a37565b9050919050565b6000819050919050565b62000a888362000a4b565b62000aa062000a978262000a73565b848454620009e1565b825550505050565b600090565b62000ab762000aa8565b62000ac481848462000a7d565b505050565b5b8181101562000aec5762000ae060008262000aad565b60018101905062000aca565b5050565b601f82111562000b3b5762000b0581620009af565b62000b1084620009c4565b8101602085101562000b20578190505b62000b3862000b2f85620009c4565b83018262000ac9565b50505b505050565b600082821c905092915050565b600062000b606000198460080262000b40565b1980831691505092915050565b600062000b7b838362000b4d565b9150826002028217905092915050565b62000b968262000911565b67ffffffffffffffff81111562000bb25762000bb16200091c565b5b62000bbe82546200097a565b62000bcb82828562000af0565b600060209050601f83116001811462000c03576000841562000bee578287015190505b62000bfa858262000b6d565b86555062000c6a565b601f19841662000c1386620009af565b60005b8281101562000c3d5784890151825560018201915060208501945060208101905062000c16565b8683101562000c5d578489015162000c59601f89168262000b4d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca48262000c77565b9050919050565b62000cb68162000c97565b811462000cc257600080fd5b50565b60008151905062000cd68162000cab565b92915050565b60006020828403121562000cf55762000cf462000c72565b5b600062000d058482850162000cc5565b91505092915050565b62000d198162000c97565b82525050565b600060408201905062000d36600083018562000d0e565b62000d45602083018462000d0e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000dda5780860481111562000db25762000db162000d4c565b5b600185161562000dc25780820291505b808102905062000dd28562000d7b565b945062000d92565b94509492505050565b60008262000df5576001905062000ec8565b8162000e05576000905062000ec8565b816001811462000e1e576002811462000e295762000e5f565b600191505062000ec8565b60ff84111562000e3e5762000e3d62000d4c565b5b8360020a91508482111562000e585762000e5762000d4c565b5b5062000ec8565b5060208310610133831016604e8410600b841016171562000e995782820a90508381111562000e935762000e9262000d4c565b5b62000ec8565b62000ea8848484600162000d88565b9250905081840481111562000ec25762000ec162000d4c565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ee98262000a37565b915062000ef68362000ecf565b925062000f257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000de3565b905092915050565b600062000f3a8262000a37565b915062000f478362000a37565b925082820262000f578162000a37565b9150828204841483151762000f715762000f7062000d4c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fb48262000a37565b915062000fc18362000a37565b92508262000fd45762000fd362000f78565b5b828204905092915050565b60008115159050919050565b62000ff68162000fdf565b82525050565b600060208201905062001013600083018462000feb565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001062601f8362001019565b91506200106f826200102a565b602082019050919050565b60006020820190508181036000830152620010958162001053565b9050919050565b6000620010a98262000a37565b9150620010b68362000a37565b9250828201905080821115620010d157620010d062000d4c565b5b92915050565b620010e28162000a37565b82525050565b6000602082019050620010ff6000830184620010d7565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200113d60208362001019565b91506200114a8262001105565b602082019050919050565b6000602082019050818103600083015262001170816200112e565b9050919050565b60805160a051612f28620011b26000396000610abd0152600081816107e701528181611e3e01528181611f1f0152611f460152612f286000f3fe6080604052600436106101c65760003560e01c806389add02c116100f7578063bbc0c74211610095578063e0f3ccf511610064578063e0f3ccf51461068b578063e2f45605146106b6578063f2fde38b146106e1578063f887ea401461070a576101cd565b8063bbc0c742146105bd578063c0246668146105e8578063d257b34f14610611578063dd62ed3e1461064e576101cd565b806395d89b41116100d157806395d89b41146104db578063a457c2d714610506578063a9059cbb14610543578063b62496f514610580576101cd565b806389add02c1461046e5780638a8c523c146104995780638da5cb5b146104b0576101cd565b80633801ca77116101645780634a62bb651161013e5780634a62bb65146103b25780634fbee193146103dd57806370a082311461041a578063715018a614610457576101cd565b80633801ca7714610321578063395093511461034a57806349bd5a5e14610387576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806330d5d18d146102cd578063313ce567146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610735565b6040516101f4919061206c565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612127565b6107c7565b6040516102319190612182565b60405180910390f35b34801561024657600080fd5b5061024f6107e5565b60405161025c91906121fc565b60405180910390f35b34801561027157600080fd5b5061027a610809565b6040516102879190612226565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612241565b610813565b6040516102c49190612182565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612294565b61090b565b005b34801561030257600080fd5b5061030b6109d3565b60405161031891906122dd565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612324565b6109ea565b005b34801561035657600080fd5b50610371600480360381019061036c9190612127565b610a0f565b60405161037e9190612182565b60405180910390f35b34801561039357600080fd5b5061039c610abb565b6040516103a99190612360565b60405180910390f35b3480156103be57600080fd5b506103c7610adf565b6040516103d49190612182565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612294565b610af2565b6040516104119190612182565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612294565b610b48565b60405161044e9190612226565b60405180910390f35b34801561046357600080fd5b5061046c610b90565b005b34801561047a57600080fd5b50610483610ba4565b6040516104909190612182565b60405180910390f35b3480156104a557600080fd5b506104ae610bb7565b005b3480156104bc57600080fd5b506104c5610c50565b6040516104d29190612360565b60405180910390f35b3480156104e757600080fd5b506104f0610c7a565b6040516104fd919061206c565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612127565b610d0c565b60405161053a9190612182565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612127565b610df7565b6040516105779190612182565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612294565b610e15565b6040516105b49190612182565b60405180910390f35b3480156105c957600080fd5b506105d2610e35565b6040516105df9190612182565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061237b565b610e48565b005b34801561061d57600080fd5b50610638600480360381019061063391906123bb565b610ef9565b6040516106459190612182565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906123e8565b610fc1565b6040516106829190612226565b60405180910390f35b34801561069757600080fd5b506106a0611048565b6040516106ad9190612226565b60405180910390f35b3480156106c257600080fd5b506106cb61104e565b6040516106d89190612226565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612294565b611054565b005b34801561071657600080fd5b5061071f6110d7565b60405161072c9190612360565b60405180910390f35b60606003805461074490612457565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612457565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107db6107d46110fd565b8484611105565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60006108208484846112ce565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061086b6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906124fa565b60405180910390fd5b6108ff856108f76110fd565b858403611105565b60019150509392505050565b6109136118f5565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6109f26118f5565b80600960026101000a81548160ff02191690831515021790555050565b6000610ab1610a1c6110fd565b848460016000610a2a6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610aac9190612549565b611105565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b986118f5565b610ba26000611973565b565b600960029054906101000a900460ff1681565b610bbf6118f5565b600960019054906101000a900460ff1615610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906125c9565b60405180910390fd5b61012c600a819055506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff021916908315150217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8990612457565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590612457565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b60008060016000610d1b6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061265b565b60405180910390fd5b610dec610de36110fd565b85858403611105565b600191505092915050565b6000610e0b610e046110fd565b84846112ce565b6001905092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b610e506118f5565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610eed9190612182565b60405180910390a25050565b6000610f036118f5565b620186a06001610f11610809565b610f1b919061267b565b610f2591906126ec565b821015610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061278f565b60405180910390fd5b610f6f610809565b821115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612821565b60405180910390fd5b8160088190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60085481565b61105c6118f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906128b3565b60405180910390fd5b6110d481611973565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906129d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112c19190612226565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490612a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612afb565b60405180910390fd5b600081036113c5576113c083836000611a39565b6118f0565b600960009054906101000a900460ff16156115d8576113e2610c50565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114505750611420610c50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114c3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114dc5750600660149054906101000a900460ff16155b156115d757600960019054906101000a900460ff166115d657600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115965750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90612b67565b60405180910390fd5b5b5b5b60006115e330610b48565b9050600060085482101590508080156116085750600960029054906101000a900460ff165b80156116215750600660149054906101000a900460ff16155b80156116775750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116cd5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117235750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611768576001600660146101000a81548160ff02191690831515021790555061174c82611cb8565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061181e5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561182857600090505b600081156118e057600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561188b57506000600a54115b156118bc576118b96103e86118ab600a5488611d6990919063ffffffff16565b611d7f90919063ffffffff16565b90505b60008111156118d1576118d0873083611a39565b5b80856118dd9190612b87565b94505b6118eb878787611a39565b505050505b505050565b6118fd6110fd565b73ffffffffffffffffffffffffffffffffffffffff1661191b610c50565b73ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890612c07565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90612a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90612afb565b60405180910390fd5b611b22838383611d95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90612c99565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3b9190612549565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f9190612226565b60405180910390a3611cb2848484611d9a565b50505050565b6000808203611cc75750611d66565b611cd082611d9f565b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051611d1b90612cea565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b50508092505050505b50565b60008183611d77919061267b565b905092915050565b60008183611d8d91906126ec565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115611dbc57611dbb612cff565b5b604051908082528060200260200182016040528015611dea5781602001602082028036833780820191505090505b5090503081600081518110611e0257611e01612d2e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecb9190612d72565b81600181518110611edf57611ede612d2e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f44307f000000000000000000000000000000000000000000000000000000000000000084611105565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fa6959493929190612e98565b600060405180830381600087803b158015611fc057600080fd5b505af1158015611fd4573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612016578082015181840152602081019050611ffb565b60008484015250505050565b6000601f19601f8301169050919050565b600061203e82611fdc565b6120488185611fe7565b9350612058818560208601611ff8565b61206181612022565b840191505092915050565b600060208201905081810360008301526120868184612033565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120be82612093565b9050919050565b6120ce816120b3565b81146120d957600080fd5b50565b6000813590506120eb816120c5565b92915050565b6000819050919050565b612104816120f1565b811461210f57600080fd5b50565b600081359050612121816120fb565b92915050565b6000806040838503121561213e5761213d61208e565b5b600061214c858286016120dc565b925050602061215d85828601612112565b9150509250929050565b60008115159050919050565b61217c81612167565b82525050565b60006020820190506121976000830184612173565b92915050565b6000819050919050565b60006121c26121bd6121b884612093565b61219d565b612093565b9050919050565b60006121d4826121a7565b9050919050565b60006121e6826121c9565b9050919050565b6121f6816121db565b82525050565b600060208201905061221160008301846121ed565b92915050565b612220816120f1565b82525050565b600060208201905061223b6000830184612217565b92915050565b60008060006060848603121561225a5761225961208e565b5b6000612268868287016120dc565b9350506020612279868287016120dc565b925050604061228a86828701612112565b9150509250925092565b6000602082840312156122aa576122a961208e565b5b60006122b8848285016120dc565b91505092915050565b600060ff82169050919050565b6122d7816122c1565b82525050565b60006020820190506122f260008301846122ce565b92915050565b61230181612167565b811461230c57600080fd5b50565b60008135905061231e816122f8565b92915050565b60006020828403121561233a5761233961208e565b5b60006123488482850161230f565b91505092915050565b61235a816120b3565b82525050565b60006020820190506123756000830184612351565b92915050565b600080604083850312156123925761239161208e565b5b60006123a0858286016120dc565b92505060206123b18582860161230f565b9150509250929050565b6000602082840312156123d1576123d061208e565b5b60006123df84828501612112565b91505092915050565b600080604083850312156123ff576123fe61208e565b5b600061240d858286016120dc565b925050602061241e858286016120dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061246f57607f821691505b60208210810361248257612481612428565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006124e4602883611fe7565b91506124ef82612488565b604082019050919050565b60006020820190508181036000830152612513816124d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612554826120f1565b915061255f836120f1565b92508282019050808211156125775761257661251a565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b60006125b3600e83611fe7565b91506125be8261257d565b602082019050919050565b600060208201905081810360008301526125e2816125a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612645602583611fe7565b9150612650826125e9565b604082019050919050565b6000602082019050818103600083015261267481612638565b9050919050565b6000612686826120f1565b9150612691836120f1565b925082820261269f816120f1565b915082820484148315176126b6576126b561251a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006126f7826120f1565b9150612702836120f1565b925082612712576127116126bd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000612779603583611fe7565b91506127848261271d565b604082019050919050565b600060208201905081810360008301526127a88161276c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e2074686520746f74616c20737570706c792e00000000000000000000000000602082015250565b600061280b603383611fe7565b9150612816826127af565b604082019050919050565b6000602082019050818103600083015261283a816127fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061289d602683611fe7565b91506128a882612841565b604082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061292f602483611fe7565b915061293a826128d3565b604082019050919050565b6000602082019050818103600083015261295e81612922565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006129c1602283611fe7565b91506129cc82612965565b604082019050919050565b600060208201905081810360008301526129f0816129b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a53602583611fe7565b9150612a5e826129f7565b604082019050919050565b60006020820190508181036000830152612a8281612a46565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ae5602383611fe7565b9150612af082612a89565b604082019050919050565b60006020820190508181036000830152612b1481612ad8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000612b51601683611fe7565b9150612b5c82612b1b565b602082019050919050565b60006020820190508181036000830152612b8081612b44565b9050919050565b6000612b92826120f1565b9150612b9d836120f1565b9250828203905081811115612bb557612bb461251a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf1602083611fe7565b9150612bfc82612bbb565b602082019050919050565b60006020820190508181036000830152612c2081612be4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c83602683611fe7565b9150612c8e82612c27565b604082019050919050565b60006020820190508181036000830152612cb281612c76565b9050919050565b600081905092915050565b50565b6000612cd4600083612cb9565b9150612cdf82612cc4565b600082019050919050565b6000612cf582612cc7565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d6c816120c5565b92915050565b600060208284031215612d8857612d8761208e565b5b6000612d9684828501612d5d565b91505092915050565b6000819050919050565b6000612dc4612dbf612dba84612d9f565b61219d565b6120f1565b9050919050565b612dd481612da9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e0f816120b3565b82525050565b6000612e218383612e06565b60208301905092915050565b6000602082019050919050565b6000612e4582612dda565b612e4f8185612de5565b9350612e5a83612df6565b8060005b83811015612e8b578151612e728882612e15565b9750612e7d83612e2d565b925050600181019050612e5e565b5085935050505092915050565b600060a082019050612ead6000830188612217565b612eba6020830187612dcb565b8181036040830152612ecc8186612e3a565b9050612edb6060830185612351565b612ee86080830184612217565b969550505050505056fea2646970667358221220465829a4b049c438d22d5fdd90138b10d6985a6c9fb7729bb675cc52b3c0eb1264736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806389add02c116100f7578063bbc0c74211610095578063e0f3ccf511610064578063e0f3ccf51461068b578063e2f45605146106b6578063f2fde38b146106e1578063f887ea401461070a576101cd565b8063bbc0c742146105bd578063c0246668146105e8578063d257b34f14610611578063dd62ed3e1461064e576101cd565b806395d89b41116100d157806395d89b41146104db578063a457c2d714610506578063a9059cbb14610543578063b62496f514610580576101cd565b806389add02c1461046e5780638a8c523c146104995780638da5cb5b146104b0576101cd565b80633801ca77116101645780634a62bb651161013e5780634a62bb65146103b25780634fbee193146103dd57806370a082311461041a578063715018a614610457576101cd565b80633801ca7714610321578063395093511461034a57806349bd5a5e14610387576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806330d5d18d146102cd578063313ce567146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610735565b6040516101f4919061206c565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612127565b6107c7565b6040516102319190612182565b60405180910390f35b34801561024657600080fd5b5061024f6107e5565b60405161025c91906121fc565b60405180910390f35b34801561027157600080fd5b5061027a610809565b6040516102879190612226565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612241565b610813565b6040516102c49190612182565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612294565b61090b565b005b34801561030257600080fd5b5061030b6109d3565b60405161031891906122dd565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612324565b6109ea565b005b34801561035657600080fd5b50610371600480360381019061036c9190612127565b610a0f565b60405161037e9190612182565b60405180910390f35b34801561039357600080fd5b5061039c610abb565b6040516103a99190612360565b60405180910390f35b3480156103be57600080fd5b506103c7610adf565b6040516103d49190612182565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612294565b610af2565b6040516104119190612182565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612294565b610b48565b60405161044e9190612226565b60405180910390f35b34801561046357600080fd5b5061046c610b90565b005b34801561047a57600080fd5b50610483610ba4565b6040516104909190612182565b60405180910390f35b3480156104a557600080fd5b506104ae610bb7565b005b3480156104bc57600080fd5b506104c5610c50565b6040516104d29190612360565b60405180910390f35b3480156104e757600080fd5b506104f0610c7a565b6040516104fd919061206c565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612127565b610d0c565b60405161053a9190612182565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612127565b610df7565b6040516105779190612182565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612294565b610e15565b6040516105b49190612182565b60405180910390f35b3480156105c957600080fd5b506105d2610e35565b6040516105df9190612182565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061237b565b610e48565b005b34801561061d57600080fd5b50610638600480360381019061063391906123bb565b610ef9565b6040516106459190612182565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906123e8565b610fc1565b6040516106829190612226565b60405180910390f35b34801561069757600080fd5b506106a0611048565b6040516106ad9190612226565b60405180910390f35b3480156106c257600080fd5b506106cb61104e565b6040516106d89190612226565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612294565b611054565b005b34801561071657600080fd5b5061071f6110d7565b60405161072c9190612360565b60405180910390f35b60606003805461074490612457565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612457565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107db6107d46110fd565b8484611105565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60006108208484846112ce565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061086b6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906124fa565b60405180910390fd5b6108ff856108f76110fd565b858403611105565b60019150509392505050565b6109136118f5565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6109f26118f5565b80600960026101000a81548160ff02191690831515021790555050565b6000610ab1610a1c6110fd565b848460016000610a2a6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610aac9190612549565b611105565b6001905092915050565b7f0000000000000000000000008a6cd68bd5f64b19ea4c3f44e8ba4c99d481852481565b600960009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b986118f5565b610ba26000611973565b565b600960029054906101000a900460ff1681565b610bbf6118f5565b600960019054906101000a900460ff1615610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906125c9565b60405180910390fd5b61012c600a819055506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff021916908315150217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8990612457565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590612457565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b60008060016000610d1b6110fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061265b565b60405180910390fd5b610dec610de36110fd565b85858403611105565b600191505092915050565b6000610e0b610e046110fd565b84846112ce565b6001905092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b610e506118f5565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610eed9190612182565b60405180910390a25050565b6000610f036118f5565b620186a06001610f11610809565b610f1b919061267b565b610f2591906126ec565b821015610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061278f565b60405180910390fd5b610f6f610809565b821115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612821565b60405180910390fd5b8160088190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60085481565b61105c6118f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906128b3565b60405180910390fd5b6110d481611973565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906129d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112c19190612226565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490612a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612afb565b60405180910390fd5b600081036113c5576113c083836000611a39565b6118f0565b600960009054906101000a900460ff16156115d8576113e2610c50565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114505750611420610c50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114c3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114dc5750600660149054906101000a900460ff16155b156115d757600960019054906101000a900460ff166115d657600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115965750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90612b67565b60405180910390fd5b5b5b5b60006115e330610b48565b9050600060085482101590508080156116085750600960029054906101000a900460ff165b80156116215750600660149054906101000a900460ff16155b80156116775750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116cd5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117235750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611768576001600660146101000a81548160ff02191690831515021790555061174c82611cb8565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061181e5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561182857600090505b600081156118e057600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561188b57506000600a54115b156118bc576118b96103e86118ab600a5488611d6990919063ffffffff16565b611d7f90919063ffffffff16565b90505b60008111156118d1576118d0873083611a39565b5b80856118dd9190612b87565b94505b6118eb878787611a39565b505050505b505050565b6118fd6110fd565b73ffffffffffffffffffffffffffffffffffffffff1661191b610c50565b73ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890612c07565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90612a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90612afb565b60405180910390fd5b611b22838383611d95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90612c99565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3b9190612549565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f9190612226565b60405180910390a3611cb2848484611d9a565b50505050565b6000808203611cc75750611d66565b611cd082611d9f565b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051611d1b90612cea565b60006040518083038185875af1925050503d8060008114611d58576040519150601f19603f3d011682016040523d82523d6000602084013e611d5d565b606091505b50508092505050505b50565b60008183611d77919061267b565b905092915050565b60008183611d8d91906126ec565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115611dbc57611dbb612cff565b5b604051908082528060200260200182016040528015611dea5781602001602082028036833780820191505090505b5090503081600081518110611e0257611e01612d2e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecb9190612d72565b81600181518110611edf57611ede612d2e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611105565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fa6959493929190612e98565b600060405180830381600087803b158015611fc057600080fd5b505af1158015611fd4573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612016578082015181840152602081019050611ffb565b60008484015250505050565b6000601f19601f8301169050919050565b600061203e82611fdc565b6120488185611fe7565b9350612058818560208601611ff8565b61206181612022565b840191505092915050565b600060208201905081810360008301526120868184612033565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120be82612093565b9050919050565b6120ce816120b3565b81146120d957600080fd5b50565b6000813590506120eb816120c5565b92915050565b6000819050919050565b612104816120f1565b811461210f57600080fd5b50565b600081359050612121816120fb565b92915050565b6000806040838503121561213e5761213d61208e565b5b600061214c858286016120dc565b925050602061215d85828601612112565b9150509250929050565b60008115159050919050565b61217c81612167565b82525050565b60006020820190506121976000830184612173565b92915050565b6000819050919050565b60006121c26121bd6121b884612093565b61219d565b612093565b9050919050565b60006121d4826121a7565b9050919050565b60006121e6826121c9565b9050919050565b6121f6816121db565b82525050565b600060208201905061221160008301846121ed565b92915050565b612220816120f1565b82525050565b600060208201905061223b6000830184612217565b92915050565b60008060006060848603121561225a5761225961208e565b5b6000612268868287016120dc565b9350506020612279868287016120dc565b925050604061228a86828701612112565b9150509250925092565b6000602082840312156122aa576122a961208e565b5b60006122b8848285016120dc565b91505092915050565b600060ff82169050919050565b6122d7816122c1565b82525050565b60006020820190506122f260008301846122ce565b92915050565b61230181612167565b811461230c57600080fd5b50565b60008135905061231e816122f8565b92915050565b60006020828403121561233a5761233961208e565b5b60006123488482850161230f565b91505092915050565b61235a816120b3565b82525050565b60006020820190506123756000830184612351565b92915050565b600080604083850312156123925761239161208e565b5b60006123a0858286016120dc565b92505060206123b18582860161230f565b9150509250929050565b6000602082840312156123d1576123d061208e565b5b60006123df84828501612112565b91505092915050565b600080604083850312156123ff576123fe61208e565b5b600061240d858286016120dc565b925050602061241e858286016120dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061246f57607f821691505b60208210810361248257612481612428565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006124e4602883611fe7565b91506124ef82612488565b604082019050919050565b60006020820190508181036000830152612513816124d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612554826120f1565b915061255f836120f1565b92508282019050808211156125775761257661251a565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b60006125b3600e83611fe7565b91506125be8261257d565b602082019050919050565b600060208201905081810360008301526125e2816125a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612645602583611fe7565b9150612650826125e9565b604082019050919050565b6000602082019050818103600083015261267481612638565b9050919050565b6000612686826120f1565b9150612691836120f1565b925082820261269f816120f1565b915082820484148315176126b6576126b561251a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006126f7826120f1565b9150612702836120f1565b925082612712576127116126bd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000612779603583611fe7565b91506127848261271d565b604082019050919050565b600060208201905081810360008301526127a88161276c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e2074686520746f74616c20737570706c792e00000000000000000000000000602082015250565b600061280b603383611fe7565b9150612816826127af565b604082019050919050565b6000602082019050818103600083015261283a816127fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061289d602683611fe7565b91506128a882612841565b604082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061292f602483611fe7565b915061293a826128d3565b604082019050919050565b6000602082019050818103600083015261295e81612922565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006129c1602283611fe7565b91506129cc82612965565b604082019050919050565b600060208201905081810360008301526129f0816129b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a53602583611fe7565b9150612a5e826129f7565b604082019050919050565b60006020820190508181036000830152612a8281612a46565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ae5602383611fe7565b9150612af082612a89565b604082019050919050565b60006020820190508181036000830152612b1481612ad8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000612b51601683611fe7565b9150612b5c82612b1b565b602082019050919050565b60006020820190508181036000830152612b8081612b44565b9050919050565b6000612b92826120f1565b9150612b9d836120f1565b9250828203905081811115612bb557612bb461251a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf1602083611fe7565b9150612bfc82612bbb565b602082019050919050565b60006020820190508181036000830152612c2081612be4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c83602683611fe7565b9150612c8e82612c27565b604082019050919050565b60006020820190508181036000830152612cb281612c76565b9050919050565b600081905092915050565b50565b6000612cd4600083612cb9565b9150612cdf82612cc4565b600082019050919050565b6000612cf582612cc7565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d6c816120c5565b92915050565b600060208284031215612d8857612d8761208e565b5b6000612d9684828501612d5d565b91505092915050565b6000819050919050565b6000612dc4612dbf612dba84612d9f565b61219d565b6120f1565b9050919050565b612dd481612da9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e0f816120b3565b82525050565b6000612e218383612e06565b60208301905092915050565b6000602082019050919050565b6000612e4582612dda565b612e4f8185612de5565b9350612e5a83612df6565b8060005b83811015612e8b578151612e728882612e15565b9750612e7d83612e2d565b925050600181019050612e5e565b5085935050505092915050565b600060a082019050612ead6000830188612217565b612eba6020830187612dcb565b8181036040830152612ecc8186612e3a565b9050612edb6060830185612351565b612ee86080830184612217565b969550505050505056fea2646970667358221220465829a4b049c438d22d5fdd90138b10d6985a6c9fb7729bb675cc52b3c0eb1264736f6c63430008130033

Deployed Bytecode Sourcemap

21702:6408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8029:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9016:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21776:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8357:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9218:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24988:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8249:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24486:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9755:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21834:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22065:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25227:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8473:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14208:103;;;;;;;;;;;;;:::i;:::-;;22145:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23665:193;;;;;;;;;;;;;:::i;:::-;;13567:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8137:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10053:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8624:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22280:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22105:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24602:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24010:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8832:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22189:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22023:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14466:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21879:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8029:100;8083:13;8116:5;8109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8029:100;:::o;9016:194::-;9124:4;9141:39;9150:12;:10;:12::i;:::-;9164:7;9173:6;9141:8;:39::i;:::-;9198:4;9191:11;;9016:194;;;;:::o;21776:51::-;;;:::o;8357:108::-;8418:7;8445:12;;8438:19;;8357:108;:::o;9218:529::-;9358:4;9375:36;9385:6;9393:9;9404:6;9375:9;:36::i;:::-;9424:24;9451:11;:19;9463:6;9451:19;;;;;;;;;;;;;;;:33;9471:12;:10;:12::i;:::-;9451:33;;;;;;;;;;;;;;;;9424:60;;9537:6;9517:16;:26;;9495:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;9647:57;9656:6;9664:12;:10;:12::i;:::-;9697:6;9678:16;:25;9647:8;:57::i;:::-;9735:4;9728:11;;;9218:529;;;;;:::o;24988:231::-;13453:13;:11;:13::i;:::-;25145:16:::1;;;;;;;;;;;25100:62;;25124:19;25100:62;;;;;;;;;;;;25192:19;25173:16;;:38;;;;;;;;;;;;;;;;;;24988:231:::0;:::o;8249:100::-;8307:5;8332:9;;;;;;;;;;;8325:16;;8249:100;:::o;24486:108::-;13453:13;:11;:13::i;:::-;24579:7:::1;24561:15;;:25;;;;;;;;;;;;;;;;;;24486:108:::0;:::o;9755:290::-;9868:4;9885:130;9908:12;:10;:12::i;:::-;9935:7;9994:10;9957:11;:25;9969:12;:10;:12::i;:::-;9957:25;;;;;;;;;;;;;;;:34;9983:7;9957:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9885:8;:130::i;:::-;10033:4;10026:11;;9755:290;;;;:::o;21834:38::-;;;:::o;22065:33::-;;;;;;;;;;;;;:::o;25227:126::-;25293:4;25317:19;:28;25337:7;25317:28;;;;;;;;;;;;;;;;;;;;;;;;;25310:35;;25227:126;;;:::o;8473:143::-;8563:7;8590:9;:18;8600:7;8590:18;;;;;;;;;;;;;;;;8583:25;;8473:143;;;:::o;14208:103::-;13453:13;:11;:13::i;:::-;14273:30:::1;14300:1;14273:18;:30::i;:::-;14208:103::o:0;22145:35::-;;;;;;;;;;;;;:::o;23665:193::-;13453:13;:11;:13::i;:::-;23729::::1;;;;;;;;;;;23728:14;23720:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23783:3;23772:8;:14;;;;23813:4;23797:13;;:20;;;;;;;;;;;;;;;;;;23846:4;23828:15;;:22;;;;;;;;;;;;;;;;;;23665:193::o:0;13567:87::-;13613:7;13640:6;;;;;;;;;;;13633:13;;13567:87;:::o;8137:104::-;8193:13;8226:7;8219:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8137:104;:::o;10053:475::-;10171:4;10188:24;10215:11;:25;10227:12;:10;:12::i;:::-;10215:25;;;;;;;;;;;;;;;:34;10241:7;10215:34;;;;;;;;;;;;;;;;10188:61;;10302:15;10282:16;:35;;10260:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10418:67;10427:12;:10;:12::i;:::-;10441:7;10469:15;10450:16;:34;10418:8;:67::i;:::-;10516:4;10509:11;;;10053:475;;;;:::o;8624:200::-;8735:4;8752:42;8762:12;:10;:12::i;:::-;8776:9;8787:6;8752:9;:42::i;:::-;8812:4;8805:11;;8624:200;;;;:::o;22280:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;22105:33::-;;;;;;;;;;;;;:::o;24602:182::-;13453:13;:11;:13::i;:::-;24718:8:::1;24687:19;:28;24707:7;24687:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;24758:7;24742:34;;;24767:8;24742:34;;;;;;:::i;:::-;;;;;;;;24602:182:::0;;:::o;24010:468::-;24107:4;13453:13;:11;:13::i;:::-;24181:7:::1;24176:1;24160:13;:11;:13::i;:::-;:17;;;;:::i;:::-;24159:29;;;;:::i;:::-;24146:9;:42;;24124:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;24315:13;:11;:13::i;:::-;24302:9;:26;;24280:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;24439:9;24418:18;:30;;;;24466:4;24459:11;;24010:468:::0;;;:::o;8832:176::-;8946:7;8973:11;:18;8985:5;8973:18;;;;;;;;;;;;;;;:27;8992:7;8973:27;;;;;;;;;;;;;;;;8966:34;;8832:176;;;;:::o;22189:23::-;;;;:::o;22023:33::-;;;;:::o;14466:238::-;13453:13;:11;:13::i;:::-;14589:1:::1;14569:22;;:8;:22;;::::0;14547:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14668:28;14687:8;14668:18;:28::i;:::-;14466:238:::0;:::o;21879:66::-;;;;;;;;;;;;;:::o;7330:98::-;7383:7;7410:10;7403:17;;7330:98;:::o;12320:380::-;12473:1;12456:19;;:5;:19;;;12448:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12554:1;12535:21;;:7;:21;;;12527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12638:6;12608:11;:18;12620:5;12608:18;;;;;;;;;;;;;;;:27;12627:7;12608:27;;;;;;;;;;;;;;;:36;;;;12676:7;12660:32;;12669:5;12660:32;;;12685:6;12660:32;;;;;;:::i;:::-;;;;;;;;12320:380;;;:::o;25361:1950::-;25509:1;25493:18;;:4;:18;;;25485:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25586:1;25572:16;;:2;:16;;;25564:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25655:1;25645:6;:11;25641:93;;25673:28;25689:4;25695:2;25699:1;25673:15;:28::i;:::-;25716:7;;25641:93;25750:14;;;;;;;;;;;25746:499;;;25811:7;:5;:7::i;:::-;25803:15;;:4;:15;;;;:49;;;;;25845:7;:5;:7::i;:::-;25839:13;;:2;:13;;;;25803:49;:86;;;;;25887:1;25873:16;;:2;:16;;;;25803:86;:128;;;;;25924:6;25910:21;;:2;:21;;;;25803:128;:158;;;;;25953:8;;;;;;;;;;;25952:9;25803:158;25781:453;;;26001:13;;;;;;;;;;;25996:223;;26073:19;:25;26093:4;26073:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;26102:19;:23;26122:2;26102:23;;;;;;;;;;;;;;;;;;;;;;;;;26073:52;26039:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25996:223;25781:453;25746:499;26257:28;26288:24;26306:4;26288:9;:24::i;:::-;26257:55;;26325:12;26364:18;;26340:20;:42;;26325:57;;26413:7;:39;;;;;26437:15;;;;;;;;;;;26413:39;:65;;;;;26470:8;;;;;;;;;;;26469:9;26413:65;:114;;;;;26496:25;:31;26522:4;26496:31;;;;;;;;;;;;;;;;;;;;;;;;;26495:32;26413:114;:157;;;;;26545:19;:25;26565:4;26545:25;;;;;;;;;;;;;;;;;;;;;;;;;26544:26;26413:157;:198;;;;;26588:19;:23;26608:2;26588:23;;;;;;;;;;;;;;;;;;;;;;;;;26587:24;26413:198;26395:347;;;26650:4;26639:8;;:15;;;;;;;;;;;;;;;;;;26669:30;26678:20;26669:8;:30::i;:::-;26725:5;26714:8;;:16;;;;;;;;;;;;;;;;;;26395:347;26754:12;26770:8;;;;;;;;;;;26769:9;26754:24;;26795:19;:25;26815:4;26795:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;26824:19;:23;26844:2;26824:23;;;;;;;;;;;;;;;;;;;;;;;;;26795:52;26791:100;;;26874:5;26864:15;;26791:100;26903:12;26936:7;26932:324;;;26988:25;:29;27014:2;26988:29;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;27032:1;27021:8;;:12;26988:45;26984:123;;;27061:30;27086:4;27061:20;27072:8;;27061:6;:10;;:20;;;;:::i;:::-;:24;;:30;;;;:::i;:::-;27054:37;;26984:123;27134:1;27127:4;:8;27123:91;;;27156:42;27172:4;27186;27193;27156:15;:42::i;:::-;27123:91;27240:4;27230:14;;;;;:::i;:::-;;;26932:324;27268:33;27284:4;27290:2;27294:6;27268:15;:33::i;:::-;25474:1837;;;;25361:1950;;;;:::o;13732:132::-;13807:12;:10;:12::i;:::-;13796:23;;:7;:5;:7::i;:::-;:23;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13732:132::o;14864:191::-;14938:16;14957:6;;;;;;;;;;;14938:25;;14983:8;14974:6;;:17;;;;;;;;;;;;;;;;;;15038:8;15007:40;;15028:8;15007:40;;;;;;;;;;;;14927:128;14864:191;:::o;10536:770::-;10694:1;10676:20;;:6;:20;;;10668:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10778:1;10757:23;;:9;:23;;;10749:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10833:47;10854:6;10862:9;10873:6;10833:20;:47::i;:::-;10893:21;10917:9;:17;10927:6;10917:17;;;;;;;;;;;;;;;;10893:41;;10984:6;10967:13;:23;;10945:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;11128:6;11112:13;:22;11092:9;:17;11102:6;11092:17;;;;;;;;;;;;;;;:42;;;;11180:6;11156:9;:20;11166:9;11156:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11221:9;11204:35;;11213:6;11204:35;;;11232:6;11204:35;;;;;;:::i;:::-;;;;;;;;11252:46;11272:6;11280:9;11291:6;11252:19;:46::i;:::-;10657:649;10536:770;;;:::o;27802:305::-;27855:12;27894:1;27884:6;:11;27880:50;;27912:7;;;27880:50;27942:24;27959:6;27942:16;:24::i;:::-;27979:18;28000:21;27979:42;;28054:16;;;;;;;;;;;28046:30;;28084:10;28046:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28032:67;;;;;27844:263;;27802:305;;:::o;18275:98::-;18333:7;18364:1;18360;:5;;;;:::i;:::-;18353:12;;18275:98;;;;:::o;18674:::-;18732:7;18763:1;18759;:5;;;;:::i;:::-;18752:12;;18674:98;;;;:::o;12708:125::-;;;;:::o;12841:124::-;;;;:::o;27319:475::-;27385:21;27423:1;27409:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27385:40;;27454:4;27436;27441:1;27436:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;27480:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27470:4;27475:1;27470:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;27515:62;27532:4;27547:15;27565:11;27515:8;:62::i;:::-;27590:15;:66;;;27671:11;27697:1;27713:4;27740;27760:15;27590:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27374:420;27319:475;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:329::-;5455:6;5504:2;5492:9;5483:7;5479:23;5475:32;5472:119;;;5510:79;;:::i;:::-;5472:119;5630:1;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5601:117;5396:329;;;;:::o;5731:86::-;5766:7;5806:4;5799:5;5795:16;5784:27;;5731:86;;;:::o;5823:112::-;5906:22;5922:5;5906:22;:::i;:::-;5901:3;5894:35;5823:112;;:::o;5941:214::-;6030:4;6068:2;6057:9;6053:18;6045:26;;6081:67;6145:1;6134:9;6130:17;6121:6;6081:67;:::i;:::-;5941:214;;;;:::o;6161:116::-;6231:21;6246:5;6231:21;:::i;:::-;6224:5;6221:32;6211:60;;6267:1;6264;6257:12;6211:60;6161:116;:::o;6283:133::-;6326:5;6364:6;6351:20;6342:29;;6380:30;6404:5;6380:30;:::i;:::-;6283:133;;;;:::o;6422:323::-;6478:6;6527:2;6515:9;6506:7;6502:23;6498:32;6495:119;;;6533:79;;:::i;:::-;6495:119;6653:1;6678:50;6720:7;6711:6;6700:9;6696:22;6678:50;:::i;:::-;6668:60;;6624:114;6422:323;;;;:::o;6751:118::-;6838:24;6856:5;6838:24;:::i;:::-;6833:3;6826:37;6751:118;;:::o;6875:222::-;6968:4;7006:2;6995:9;6991:18;6983:26;;7019:71;7087:1;7076:9;7072:17;7063:6;7019:71;:::i;:::-;6875:222;;;;:::o;7103:468::-;7168:6;7176;7225:2;7213:9;7204:7;7200:23;7196:32;7193:119;;;7231:79;;:::i;:::-;7193:119;7351:1;7376:53;7421:7;7412:6;7401:9;7397:22;7376:53;:::i;:::-;7366:63;;7322:117;7478:2;7504:50;7546:7;7537:6;7526:9;7522:22;7504:50;:::i;:::-;7494:60;;7449:115;7103:468;;;;;:::o;7577:329::-;7636:6;7685:2;7673:9;7664:7;7660:23;7656:32;7653:119;;;7691:79;;:::i;:::-;7653:119;7811:1;7836:53;7881:7;7872:6;7861:9;7857:22;7836:53;:::i;:::-;7826:63;;7782:117;7577:329;;;;:::o;7912:474::-;7980:6;7988;8037:2;8025:9;8016:7;8012:23;8008:32;8005:119;;;8043:79;;:::i;:::-;8005:119;8163:1;8188:53;8233:7;8224:6;8213:9;8209:22;8188:53;:::i;:::-;8178:63;;8134:117;8290:2;8316:53;8361:7;8352:6;8341:9;8337:22;8316:53;:::i;:::-;8306:63;;8261:118;7912:474;;;;;:::o;8392:180::-;8440:77;8437:1;8430:88;8537:4;8534:1;8527:15;8561:4;8558:1;8551:15;8578:320;8622:6;8659:1;8653:4;8649:12;8639:22;;8706:1;8700:4;8696:12;8727:18;8717:81;;8783:4;8775:6;8771:17;8761:27;;8717:81;8845:2;8837:6;8834:14;8814:18;8811:38;8808:84;;8864:18;;:::i;:::-;8808:84;8629:269;8578:320;;;:::o;8904:227::-;9044:34;9040:1;9032:6;9028:14;9021:58;9113:10;9108:2;9100:6;9096:15;9089:35;8904:227;:::o;9137:366::-;9279:3;9300:67;9364:2;9359:3;9300:67;:::i;:::-;9293:74;;9376:93;9465:3;9376:93;:::i;:::-;9494:2;9489:3;9485:12;9478:19;;9137:366;;;:::o;9509:419::-;9675:4;9713:2;9702:9;9698:18;9690:26;;9762:9;9756:4;9752:20;9748:1;9737:9;9733:17;9726:47;9790:131;9916:4;9790:131;:::i;:::-;9782:139;;9509:419;;;:::o;9934:180::-;9982:77;9979:1;9972:88;10079:4;10076:1;10069:15;10103:4;10100:1;10093:15;10120:191;10160:3;10179:20;10197:1;10179:20;:::i;:::-;10174:25;;10213:20;10231:1;10213:20;:::i;:::-;10208:25;;10256:1;10253;10249:9;10242:16;;10277:3;10274:1;10271:10;10268:36;;;10284:18;;:::i;:::-;10268:36;10120:191;;;;:::o;10317:164::-;10457:16;10453:1;10445:6;10441:14;10434:40;10317:164;:::o;10487:366::-;10629:3;10650:67;10714:2;10709:3;10650:67;:::i;:::-;10643:74;;10726:93;10815:3;10726:93;:::i;:::-;10844:2;10839:3;10835:12;10828:19;;10487:366;;;:::o;10859:419::-;11025:4;11063:2;11052:9;11048:18;11040:26;;11112:9;11106:4;11102:20;11098:1;11087:9;11083:17;11076:47;11140:131;11266:4;11140:131;:::i;:::-;11132:139;;10859:419;;;:::o;11284:224::-;11424:34;11420:1;11412:6;11408:14;11401:58;11493:7;11488:2;11480:6;11476:15;11469:32;11284:224;:::o;11514:366::-;11656:3;11677:67;11741:2;11736:3;11677:67;:::i;:::-;11670:74;;11753:93;11842:3;11753:93;:::i;:::-;11871:2;11866:3;11862:12;11855:19;;11514:366;;;:::o;11886:419::-;12052:4;12090:2;12079:9;12075:18;12067:26;;12139:9;12133:4;12129:20;12125:1;12114:9;12110:17;12103:47;12167:131;12293:4;12167:131;:::i;:::-;12159:139;;11886:419;;;:::o;12311:410::-;12351:7;12374:20;12392:1;12374:20;:::i;:::-;12369:25;;12408:20;12426:1;12408:20;:::i;:::-;12403:25;;12463:1;12460;12456:9;12485:30;12503:11;12485:30;:::i;:::-;12474:41;;12664:1;12655:7;12651:15;12648:1;12645:22;12625:1;12618:9;12598:83;12575:139;;12694:18;;:::i;:::-;12575:139;12359:362;12311:410;;;;:::o;12727:180::-;12775:77;12772:1;12765:88;12872:4;12869:1;12862:15;12896:4;12893:1;12886:15;12913:185;12953:1;12970:20;12988:1;12970:20;:::i;:::-;12965:25;;13004:20;13022:1;13004:20;:::i;:::-;12999:25;;13043:1;13033:35;;13048:18;;:::i;:::-;13033:35;13090:1;13087;13083:9;13078:14;;12913:185;;;;:::o;13104:240::-;13244:34;13240:1;13232:6;13228:14;13221:58;13313:23;13308:2;13300:6;13296:15;13289:48;13104:240;:::o;13350:366::-;13492:3;13513:67;13577:2;13572:3;13513:67;:::i;:::-;13506:74;;13589:93;13678:3;13589:93;:::i;:::-;13707:2;13702:3;13698:12;13691:19;;13350:366;;;:::o;13722:419::-;13888:4;13926:2;13915:9;13911:18;13903:26;;13975:9;13969:4;13965:20;13961:1;13950:9;13946:17;13939:47;14003:131;14129:4;14003:131;:::i;:::-;13995:139;;13722:419;;;:::o;14147:238::-;14287:34;14283:1;14275:6;14271:14;14264:58;14356:21;14351:2;14343:6;14339:15;14332:46;14147:238;:::o;14391:366::-;14533:3;14554:67;14618:2;14613:3;14554:67;:::i;:::-;14547:74;;14630:93;14719:3;14630:93;:::i;:::-;14748:2;14743:3;14739:12;14732:19;;14391:366;;;:::o;14763:419::-;14929:4;14967:2;14956:9;14952:18;14944:26;;15016:9;15010:4;15006:20;15002:1;14991:9;14987:17;14980:47;15044:131;15170:4;15044:131;:::i;:::-;15036:139;;14763:419;;;:::o;15188:225::-;15328:34;15324:1;15316:6;15312:14;15305:58;15397:8;15392:2;15384:6;15380:15;15373:33;15188:225;:::o;15419:366::-;15561:3;15582:67;15646:2;15641:3;15582:67;:::i;:::-;15575:74;;15658:93;15747:3;15658:93;:::i;:::-;15776:2;15771:3;15767:12;15760:19;;15419:366;;;:::o;15791:419::-;15957:4;15995:2;15984:9;15980:18;15972:26;;16044:9;16038:4;16034:20;16030:1;16019:9;16015:17;16008:47;16072:131;16198:4;16072:131;:::i;:::-;16064:139;;15791:419;;;:::o;16216:223::-;16356:34;16352:1;16344:6;16340:14;16333:58;16425:6;16420:2;16412:6;16408:15;16401:31;16216:223;:::o;16445:366::-;16587:3;16608:67;16672:2;16667:3;16608:67;:::i;:::-;16601:74;;16684:93;16773:3;16684:93;:::i;:::-;16802:2;16797:3;16793:12;16786:19;;16445:366;;;:::o;16817:419::-;16983:4;17021:2;17010:9;17006:18;16998:26;;17070:9;17064:4;17060:20;17056:1;17045:9;17041:17;17034:47;17098:131;17224:4;17098:131;:::i;:::-;17090:139;;16817:419;;;:::o;17242:221::-;17382:34;17378:1;17370:6;17366:14;17359:58;17451:4;17446:2;17438:6;17434:15;17427:29;17242:221;:::o;17469:366::-;17611:3;17632:67;17696:2;17691:3;17632:67;:::i;:::-;17625:74;;17708:93;17797:3;17708:93;:::i;:::-;17826:2;17821:3;17817:12;17810:19;;17469:366;;;:::o;17841:419::-;18007:4;18045:2;18034:9;18030:18;18022:26;;18094:9;18088:4;18084:20;18080:1;18069:9;18065:17;18058:47;18122:131;18248:4;18122:131;:::i;:::-;18114:139;;17841:419;;;:::o;18266:224::-;18406:34;18402:1;18394:6;18390:14;18383:58;18475:7;18470:2;18462:6;18458:15;18451:32;18266:224;:::o;18496:366::-;18638:3;18659:67;18723:2;18718:3;18659:67;:::i;:::-;18652:74;;18735:93;18824:3;18735:93;:::i;:::-;18853:2;18848:3;18844:12;18837:19;;18496:366;;;:::o;18868:419::-;19034:4;19072:2;19061:9;19057:18;19049:26;;19121:9;19115:4;19111:20;19107:1;19096:9;19092:17;19085:47;19149:131;19275:4;19149:131;:::i;:::-;19141:139;;18868:419;;;:::o;19293:222::-;19433:34;19429:1;19421:6;19417:14;19410:58;19502:5;19497:2;19489:6;19485:15;19478:30;19293:222;:::o;19521:366::-;19663:3;19684:67;19748:2;19743:3;19684:67;:::i;:::-;19677:74;;19760:93;19849:3;19760:93;:::i;:::-;19878:2;19873:3;19869:12;19862:19;;19521:366;;;:::o;19893:419::-;20059:4;20097:2;20086:9;20082:18;20074:26;;20146:9;20140:4;20136:20;20132:1;20121:9;20117:17;20110:47;20174:131;20300:4;20174:131;:::i;:::-;20166:139;;19893:419;;;:::o;20318:172::-;20458:24;20454:1;20446:6;20442:14;20435:48;20318:172;:::o;20496:366::-;20638:3;20659:67;20723:2;20718:3;20659:67;:::i;:::-;20652:74;;20735:93;20824:3;20735:93;:::i;:::-;20853:2;20848:3;20844:12;20837:19;;20496:366;;;:::o;20868:419::-;21034:4;21072:2;21061:9;21057:18;21049:26;;21121:9;21115:4;21111:20;21107:1;21096:9;21092:17;21085:47;21149:131;21275:4;21149:131;:::i;:::-;21141:139;;20868:419;;;:::o;21293:194::-;21333:4;21353:20;21371:1;21353:20;:::i;:::-;21348:25;;21387:20;21405:1;21387:20;:::i;:::-;21382:25;;21431:1;21428;21424:9;21416:17;;21455:1;21449:4;21446:11;21443:37;;;21460:18;;:::i;:::-;21443:37;21293:194;;;;:::o;21493:182::-;21633:34;21629:1;21621:6;21617:14;21610:58;21493:182;:::o;21681:366::-;21823:3;21844:67;21908:2;21903:3;21844:67;:::i;:::-;21837:74;;21920:93;22009:3;21920:93;:::i;:::-;22038:2;22033:3;22029:12;22022:19;;21681:366;;;:::o;22053:419::-;22219:4;22257:2;22246:9;22242:18;22234:26;;22306:9;22300:4;22296:20;22292:1;22281:9;22277:17;22270:47;22334:131;22460:4;22334:131;:::i;:::-;22326:139;;22053:419;;;:::o;22478:225::-;22618:34;22614:1;22606:6;22602:14;22595:58;22687:8;22682:2;22674:6;22670:15;22663:33;22478:225;:::o;22709:366::-;22851:3;22872:67;22936:2;22931:3;22872:67;:::i;:::-;22865:74;;22948:93;23037:3;22948:93;:::i;:::-;23066:2;23061:3;23057:12;23050:19;;22709:366;;;:::o;23081:419::-;23247:4;23285:2;23274:9;23270:18;23262:26;;23334:9;23328:4;23324:20;23320:1;23309:9;23305:17;23298:47;23362:131;23488:4;23362:131;:::i;:::-;23354:139;;23081:419;;;:::o;23506:147::-;23607:11;23644:3;23629:18;;23506:147;;;;:::o;23659:114::-;;:::o;23779:398::-;23938:3;23959:83;24040:1;24035:3;23959:83;:::i;:::-;23952:90;;24051:93;24140:3;24051:93;:::i;:::-;24169:1;24164:3;24160:11;24153:18;;23779:398;;;:::o;24183:379::-;24367:3;24389:147;24532:3;24389:147;:::i;:::-;24382:154;;24553:3;24546:10;;24183:379;;;:::o;24568:180::-;24616:77;24613:1;24606:88;24713:4;24710:1;24703:15;24737:4;24734:1;24727:15;24754:180;24802:77;24799:1;24792:88;24899:4;24896:1;24889:15;24923:4;24920:1;24913:15;24940:143;24997:5;25028:6;25022:13;25013:22;;25044:33;25071:5;25044:33;:::i;:::-;24940:143;;;;:::o;25089:351::-;25159:6;25208:2;25196:9;25187:7;25183:23;25179:32;25176:119;;;25214:79;;:::i;:::-;25176:119;25334:1;25359:64;25415:7;25406:6;25395:9;25391:22;25359:64;:::i;:::-;25349:74;;25305:128;25089:351;;;;:::o;25446:85::-;25491:7;25520:5;25509:16;;25446:85;;;:::o;25537:158::-;25595:9;25628:61;25646:42;25655:32;25681:5;25655:32;:::i;:::-;25646:42;:::i;:::-;25628:61;:::i;:::-;25615:74;;25537:158;;;:::o;25701:147::-;25796:45;25835:5;25796:45;:::i;:::-;25791:3;25784:58;25701:147;;:::o;25854:114::-;25921:6;25955:5;25949:12;25939:22;;25854:114;;;:::o;25974:184::-;26073:11;26107:6;26102:3;26095:19;26147:4;26142:3;26138:14;26123:29;;25974:184;;;;:::o;26164:132::-;26231:4;26254:3;26246:11;;26284:4;26279:3;26275:14;26267:22;;26164:132;;;:::o;26302:108::-;26379:24;26397:5;26379:24;:::i;:::-;26374:3;26367:37;26302:108;;:::o;26416:179::-;26485:10;26506:46;26548:3;26540:6;26506:46;:::i;:::-;26584:4;26579:3;26575:14;26561:28;;26416:179;;;;:::o;26601:113::-;26671:4;26703;26698:3;26694:14;26686:22;;26601:113;;;:::o;26750:732::-;26869:3;26898:54;26946:5;26898:54;:::i;:::-;26968:86;27047:6;27042:3;26968:86;:::i;:::-;26961:93;;27078:56;27128:5;27078:56;:::i;:::-;27157:7;27188:1;27173:284;27198:6;27195:1;27192:13;27173:284;;;27274:6;27268:13;27301:63;27360:3;27345:13;27301:63;:::i;:::-;27294:70;;27387:60;27440:6;27387:60;:::i;:::-;27377:70;;27233:224;27220:1;27217;27213:9;27208:14;;27173:284;;;27177:14;27473:3;27466:10;;26874:608;;;26750:732;;;;:::o;27488:831::-;27751:4;27789:3;27778:9;27774:19;27766:27;;27803:71;27871:1;27860:9;27856:17;27847:6;27803:71;:::i;:::-;27884:80;27960:2;27949:9;27945:18;27936:6;27884:80;:::i;:::-;28011:9;28005:4;28001:20;27996:2;27985:9;27981:18;27974:48;28039:108;28142:4;28133:6;28039:108;:::i;:::-;28031:116;;28157:72;28225:2;28214:9;28210:18;28201:6;28157:72;:::i;:::-;28239:73;28307:3;28296:9;28292:19;28283:6;28239:73;:::i;:::-;27488:831;;;;;;;;:::o

Swarm Source

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