ETH Price: $3,377.25 (-1.94%)
Gas: 2 Gwei

Token

CryptoAI (CAI)
 

Overview

Max Total Supply

100,000,000 CAI

Holders

3,004

Market

Price

$0.00 @ 0.000001 ETH (-10.28%)

Onchain Market Cap

$331,492.51

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.255527644802900708 CAI

Value
$0.00 ( ~0 Eth) [0.0000%]
0x2cea8e08b9b5f86bef483ff8294ff3c9716e98f2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CryptoAI aims to revolutionize the crypto landscape by providing users with powerful and innovative tools in the form of powered telegram bots whose solutions to gain time, automate things and make it easier to trade cryptos.

Market

Volume (24H):$369.43
Market Capitalization:$0.00
Circulating Supply:0.00 CAI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
MEXC
CAI-USDT$0.0033
0.0000010 Eth
$369.39
111,440.530 CAI
88.6894%
2
Uniswap V2 (Ethereum)
0XF36C5F04127F7470834ED6F98BDDC1BE62ABA48D-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0036
0.0000010 Eth
$51.20
14,212.045 0XF36C5F04127F7470834ED6F98BDDC1BE62ABA48D
11.3106%

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoAI

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-27
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
 


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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns(string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns(string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns(uint8);
}

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

}

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

        mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

    
}
 
library SafeMath {
   
    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) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

        return c;
    }

    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 div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

  
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns(int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns(uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns(uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns(uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns(uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns(uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract CryptoAI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;


    // addresses
    address private contestAIWallet;
    address private marketingWallet;

    // limits 
    uint256 private maxBuyAmount;
    uint256 private maxSellAmount;   
    uint256 private maxWalletAmount;
 
    uint256 private thresholdSwapAmount;

    // status flags
    bool private isTrading = false;
    bool public swapEnabled = false;
    bool public isSwapping;


    struct Fees {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyContestAIFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellContestAIFee;
        uint256 sellLiquidityFee;
    }  

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyContestAIFee:0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellContestAIFee:0,
        sellLiquidityFee: 0
    });
    
    

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForContestAI;
    uint256 private taxTill;
    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public marketPair;
 
  
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );


    constructor() ERC20("CryptoAI", "CAI") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);


        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;


        marketPair[address(uniswapV2Pair)] = true;

        approve(address(router), type(uint256).max);
        uint256 totalSupply = 1e8 * 1e18;

        maxBuyAmount = totalSupply / 200; // 0.50% maxTransactionAmountTxn
        maxSellAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxWalletAmount = totalSupply * 1 / 100; // 1% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 10000; // 0.01% swap wallet

        _fees.buyMarketingFee = 3;
        _fees.buyLiquidityFee = 1;
        _fees.buyContestAIFee = 1;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyContestAIFee;

        _fees.sellMarketingFee = 3;
        _fees.sellLiquidityFee = 1;
        _fees.sellContestAIFee = 1;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellContestAIFee;


        marketingWallet = address(0x78c57e6be0886Bd40d40f8AD37f73b6E1c86ED78);
        contestAIWallet = address(0x0cBc4567E63b8E195a3a0dD683079b2066DDA321);

        // exclude from paying fees or having max transaction amount

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    // once enabled, can never be turned off
    function swapTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
        taxTill = block.number + 2;
    }



    // change the minimum amount of tokens to sell from fees
    function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){
        thresholdSwapAmount = newAmount;
        return true;
    }


    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
        require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }


    function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%");
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateFees(uint256 _marketingFeeBuy, uint256 _liquidityFeeBuy,uint256 _contestAIFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell,uint256 _contestAIFeeSell) external onlyOwner{
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyContestAIFee = _contestAIFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyContestAIFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellContestAIFee = _contestAIFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellContestAIFee;
        require(_fees.buyTotalFees <= 99, "Must keep fees at 99% or less");   
        require(_fees.sellTotalFees <= 99, "Must keep fees at 99% or less");
     
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }
    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedMaxWalletAmount[account] = excluded;
    }
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }


    function setMarketPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from marketPair");
        marketPair[pair] = value;
    }


    function setWallets(address _marketingWallet,address _contestAIWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
        contestAIWallet = _contestAIWallet;
    }

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (
            sender != owner() &&
            recipient != owner() &&
            !isSwapping
        ) {

            if (!isTrading) {
                require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
            }
            if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
                require(amount <= maxBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
            } 
            else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
                require(amount <= maxSellAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }

            if (!_isExcludedMaxWalletAmount[recipient]) {
                require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
            }

        }
 
        
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= thresholdSwapAmount;

        if (
            canSwap &&
            swapEnabled &&
            !isSwapping &&
            marketPair[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }
 
        bool takeFee = !isSwapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }
 
        
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fees = 0;
            if(block.number < taxTill) {
                fees = amount.mul(99).div(100);
                tokensForMarketing += (fees * 94) / 99;
                tokensForContestAI += (fees * 5) / 99;
            } else if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
                tokensForContestAI += fees * _fees.sellContestAIFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees;
                tokensForContestAI += fees * _fees.buyContestAIFee / _fees.buyTotalFees;
            }

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

            amount -= fees;

        }

        super._transfer(sender, recipient, amount);
    }

    function swapTokensForEth(uint256 tAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tAmount);

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

    function addLiquidity(uint256 tAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tAmount);

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }

    function swapBack() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForContestAI;
        bool success;

        if (contractTokenBalance == 0 || toSwap == 0) { return; }

        if (contractTokenBalance > thresholdSwapAmount * 20) {
            contractTokenBalance = thresholdSwapAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractTokenBalance * tokensForLiquidity / toSwap / 2;
        uint256 amountToSwapForETH = contractTokenBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
 
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForContestAI = newBalance.mul(tokensForContestAI).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForContestAI);


        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForContestAI = 0;


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","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"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyContestAIFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellContestAIFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_contestAIWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForContestAI","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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_contestAIFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"},{"internalType":"uint256","name":"_contestAIFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550604051806101000160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815250600d600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701555050348015620000dd57600080fd5b506040518060400160405280600881526020017f43727970746f41490000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434149000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200016292919062000d54565b5080600490805190602001906200017b92919062000d54565b50505060006200019062000a0960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c057600080fd5b505afa158015620002d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fb919062000e6e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036057600080fd5b505afa15801562000375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039b919062000e6e565b6040518363ffffffff1660e01b8152600401620003ba92919062000eb1565b602060405180830381600087803b158015620003d557600080fd5b505af1158015620003ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000410919062000e6e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001601a600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a60006200050d62000a1160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160196000620005cc62000a1160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006200068b62000a1160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601c600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200081c6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a3b60201b60201c565b5060006a52b7d2dcc80cd2e4000000905060c8816200083c919062000f46565b60088190555060648162000851919062000f46565b600981905550606460018262000868919062000f7e565b62000874919062000f46565b600a819055506127106001826200088c919062000f7e565b62000898919062000f46565b600b819055506003600d600101819055506001600d600301819055506001600d60020181905550600d60020154600d60030154600d60010154620008dd919062000fdf565b620008e9919062000fdf565b600d600001819055506003600d600501819055506001600d600701819055506001600d60060181905550600d60060154600d60070154600d6005015462000931919062000fdf565b6200093d919062000fdf565b600d600401819055507378c57e6be0886bd40d40f8ad37f73b6e1c86ed78600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730cbc4567e63b8e195a3a0dd683079b2066dda321600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000a02338262000a6960201b60201c565b50620011c4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600062000a5f62000a5162000a0960201b60201c565b848462000c0460201b60201c565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000adc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad3906200109d565b60405180910390fd5b62000af88160025462000cf160201b62001ed81790919060201c565b60028190555062000b56816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cf160201b62001ed81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bf89190620010d0565b60405180910390a35050565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ce49190620010d0565b60405180910390a3505050565b600080828462000d02919062000fdf565b90508381101562000d4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d41906200113d565b60405180910390fd5b8091505092915050565b82805462000d62906200118e565b90600052602060002090601f01602090048101928262000d86576000855562000dd2565b82601f1062000da157805160ff191683800117855562000dd2565b8280016001018555821562000dd2579182015b8281111562000dd157825182559160200191906001019062000db4565b5b50905062000de1919062000de5565b5090565b5b8082111562000e0057600081600090555060010162000de6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e368262000e09565b9050919050565b62000e488162000e29565b811462000e5457600080fd5b50565b60008151905062000e688162000e3d565b92915050565b60006020828403121562000e875762000e8662000e04565b5b600062000e978482850162000e57565b91505092915050565b62000eab8162000e29565b82525050565b600060408201905062000ec8600083018562000ea0565b62000ed7602083018462000ea0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f538262000ede565b915062000f608362000ede565b92508262000f735762000f7262000ee8565b5b828204905092915050565b600062000f8b8262000ede565b915062000f988362000ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fd45762000fd362000f17565b5b828202905092915050565b600062000fec8262000ede565b915062000ff98362000ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001031576200103062000f17565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001085601f836200103c565b915062001092826200104d565b602082019050919050565b60006020820190508181036000830152620010b88162001076565b9050919050565b620010ca8162000ede565b82525050565b6000602082019050620010e76000830184620010bf565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001125601b836200103c565b91506200113282620010ed565b602082019050919050565b60006020820190508181036000830152620011588162001116565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011a757607f821691505b60208210811415620011be57620011bd6200115f565b5b50919050565b60805160a0516145046200121460003960008181610e0601526117e4015260008181611eb6015281816130a901528181613199015281816131c00152818161325c015261328301526145046000f3fe60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e1461080d578063e16830a81461084a578063f2fde38b14610873578063f5b3c3bf1461089c578063f887ea40146108d957610225565b8063c024666814610737578063c16dd4a414610760578063c18bc19514610789578063d212a69a146107b2578063d3f6a157146107e457610225565b8063992c58e4116100f2578063992c58e414610652578063a457c2d71461067b578063a9059cbb146106b8578063b8863115146106f5578063b9e418e71461072057610225565b80638da5cb5b1461059457806395d89b41146105bf578063962c654b146105ea57806396880b171461061557610225565b8063313ce567116101a6578063555467a111610175578063555467a1146104af5780636ddd1713146104ec57806370a0823114610517578063715018a6146105545780637571336a1461056b57610225565b8063313ce567146103df578063395093511461040a57806349bd5a5e146104475780634fbee1931461047257610225565b806318160ddd116101ed57806318160ddd146102f85780631a8145bb146103235780631c6e8a751461034e5780631f3fed8f1461037757806323b872dd146103a257610225565b806306fdde031461022a578063095ea7b31461025557806310d5de531461029257806311a582c3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610904565b60405161024c919061343b565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906134f6565b610996565b6040516102899190613551565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061356c565b6109b4565b6040516102c69190613551565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613599565b6109d4565b005b34801561030457600080fd5b5061030d610ba5565b60405161031a91906135e8565b60405180910390f35b34801561032f57600080fd5b50610338610baf565b60405161034591906135e8565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061362f565b610bb5565b005b34801561038357600080fd5b5061038c610c69565b60405161039991906135e8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061365c565b610c6f565b6040516103d69190613551565b60405180910390f35b3480156103eb57600080fd5b506103f4610d48565b60405161040191906136cb565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906134f6565b610d51565b60405161043e9190613551565b60405180910390f35b34801561045357600080fd5b5061045c610e04565b60405161046991906136f5565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061356c565b610e28565b6040516104a69190613551565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613710565b610e7e565b6040516104e39190613551565b60405180910390f35b3480156104f857600080fd5b50610501610f27565b60405161050e9190613551565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061356c565b610f3a565b60405161054b91906135e8565b60405180910390f35b34801561056057600080fd5b50610569610f82565b005b34801561057757600080fd5b50610592600480360381019061058d919061373d565b6110da565b005b3480156105a057600080fd5b506105a96111cc565b6040516105b691906136f5565b60405180910390f35b3480156105cb57600080fd5b506105d46111f6565b6040516105e1919061343b565b60405180910390f35b3480156105f657600080fd5b506105ff611288565b60405161060c91906135e8565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061356c565b61128e565b6040516106499190613551565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061377d565b6112ae565b005b34801561068757600080fd5b506106a2600480360381019061069d91906134f6565b611479565b6040516106af9190613551565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da91906134f6565b611546565b6040516106ec9190613551565b60405180910390f35b34801561070157600080fd5b5061070a611564565b6040516107179190613551565b60405180910390f35b34801561072c57600080fd5b50610735611577565b005b34801561074357600080fd5b5061075e6004803603810190610759919061373d565b611659565b005b34801561076c57600080fd5b506107876004803603810190610782919061373d565b61174b565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613710565b6118cc565b005b3480156107be57600080fd5b506107c7611a01565b6040516107db98979695949392919061380a565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190613888565b611a37565b005b34801561081957600080fd5b50610834600480360381019061082f9190613888565b611b54565b60405161084191906135e8565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c919061373d565b611bdb565b005b34801561087f57600080fd5b5061089a6004803603810190610895919061356c565b611ccd565b005b3480156108a857600080fd5b506108c360048036038101906108be919061356c565b611e94565b6040516108d09190613551565b60405180910390f35b3480156108e557600080fd5b506108ee611eb4565b6040516108fb9190613927565b60405180910390f35b60606003805461091390613971565b80601f016020809104026020016040519081016040528092919081815260200182805461093f90613971565b801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b5050505050905090565b60006109aa6109a3611f36565b8484611f3e565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b6109dc611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906139ef565b60405180910390fd5b6064610a75610ba5565b610a7f9190613a6d565b6103e883610a8b610ba5565b610a959190613a9e565b610a9f9190613a6d565b1015610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790613b6a565b60405180910390fd5b6064610aea610ba5565b610af49190613a6d565b6103e882610b00610ba5565b610b0a9190613a9e565b610b149190613a6d565b1015610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90613b6a565b60405180910390fd5b6103e882610b61610ba5565b610b6b9190613a9e565b610b759190613a6d565b6008819055506103e881610b87610ba5565b610b919190613a9e565b610b9b9190613a6d565b6009819055505050565b6000600254905090565b60165481565b610bbd611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906139ef565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60155481565b6000610c7c848484612029565b610d3d84610c88611f36565b610d38856040518060600160405280602881526020016144a760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cee611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b611f3e565b600190509392505050565b60006012905090565b6000610dfa610d5e611f36565b84610df58560016000610d6f611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed890919063ffffffff16565b611f3e565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610e88611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e906139ef565b60405180910390fd5b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f8a611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110e2611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906139ef565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461120590613971565b80601f016020809104026020016040519081016040528092919081815260200182805461123190613971565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b60175481565b601b6020528060005260406000206000915054906101000a900460ff1681565b6112b6611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906139ef565b60405180910390fd5b85600d6001018190555084600d6003018190555083600d60020181905550600d60020154600d60030154600d6001015461137f9190613b8a565b6113899190613b8a565b600d6000018190555082600d6005018190555081600d6007018190555080600d60060181905550600d60060154600d60070154600d600501546113cc9190613b8a565b6113d69190613b8a565b600d600401819055506063600d600001541115611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613c2c565b60405180910390fd5b6063600d600401541115611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613c2c565b60405180910390fd5b505050505050565b600061153c611486611f36565b846115378560405180606001604052806025815260200161445c60259139600160006114b0611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b611f3e565b6001905092915050565b600061155a611553611f36565b8484612029565b6001905092915050565b600c60029054906101000a900460ff1681565b61157f611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611605906139ef565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506002436116519190613b8a565b601881905550565b611661611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906139ef565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611753611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906139ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613cbe565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118d4611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906139ef565b60405180910390fd5b606461196d610ba5565b6119779190613a6d565b6103e882611983610ba5565b61198d9190613a9e565b6119979190613a6d565b10156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613d50565b60405180910390fd5b6103e8816119e4610ba5565b6119ee9190613a9e565b6119f89190613a6d565b600a8190555050565b600d8060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b611a3f611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906139ef565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611be3611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906139ef565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611cd5611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613de2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000808284611ee79190613b8a565b905083811015611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613e4e565b60405180910390fd5b8091505092915050565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161201c91906135e8565b60405180910390a3505050565b60008114156120435761203e83836000612a63565b6129fa565b61204b6111cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120b957506120896111cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120d25750600c60029054906101000a900460ff16155b1561245857600c60009054906101000a900460ff166121cc57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061218c5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613eba565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561226f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122be576008548111156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613f4c565b60405180910390fd5b6123ad565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123615750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123ac576009548111156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613fde565b60405180910390fd5b5b5b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661245757600a5461240a83610f3a565b826124159190613b8a565b1115612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d9061404a565b60405180910390fd5b5b5b600061246330610f3a565b90506000600b5482101590508080156124885750600c60019054906101000a900460ff165b80156124a15750600c60029054906101000a900460ff16155b80156124f65750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561254c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125a25750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125e6576001600c60026101000a81548160ff0219169083151502179055506125ca612c0d565b6000600c60026101000a81548160ff0219169083151502179055505b6000600c60029054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061269c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126a657600090505b80156129eb576000601854431015612748576126df60646126d1606388612efb90919063ffffffff16565b612f7690919063ffffffff16565b90506063605e826126f09190613a9e565b6126fa9190613a6d565b6015600082825461270b9190613b8a565b9250508190555060636005826127219190613a9e565b61272b9190613a6d565b6017600082825461273c9190613b8a565b925050819055506129c6565b601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127a657506000600d60040154115b15612888576127d660646127c8600d6004015488612efb90919063ffffffff16565b612f7690919063ffffffff16565b9050600d60040154600d60070154826127ef9190613a9e565b6127f99190613a6d565b6016600082825461280a9190613b8a565b92505081905550600d60040154600d60050154826128289190613a9e565b6128329190613a6d565b601560008282546128439190613b8a565b92505081905550600d60040154600d60060154826128619190613a9e565b61286b9190613a6d565b6017600082825461287c9190613b8a565b925050819055506129c5565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e657506000600d60000154115b156129c4576129166064612908600d6000015488612efb90919063ffffffff16565b612f7690919063ffffffff16565b9050600d60000154600d600301548261292f9190613a9e565b6129399190613a6d565b6016600082825461294a9190613b8a565b92505081905550600d60000154600d60010154826129689190613a9e565b6129729190613a6d565b601560008282546129839190613b8a565b92505081905550600d60000154600d60020154826129a19190613a9e565b6129ab9190613a6d565b601760008282546129bc9190613b8a565b925050819055505b5b5b60008111156129db576129da873083612a63565b5b80856129e7919061406a565b9450505b6129f6868686612a63565b5050505b505050565b6000838311158290612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e919061343b565b60405180910390fd5b5060008385612a56919061406a565b9050809150509392505050565b612ace81604051806060016040528060268152602001614481602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b61816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c0091906135e8565b60405180910390a3505050565b6000612c1830610f3a565b90506000601754601554601654612c2f9190613b8a565b612c399190613b8a565b9050600080831480612c4b5750600082145b15612c5857505050612ef9565b6014600b54612c679190613a9e565b831115612c80576014600b54612c7d9190613a9e565b92505b600060028360165486612c939190613a9e565b612c9d9190613a6d565b612ca79190613a6d565b90506000612cbe8286612fc090919063ffffffff16565b90506000479050612cce8261300a565b6000612ce38247612fc090919063ffffffff16565b90506000612d0e87612d0060155485612efb90919063ffffffff16565b612f7690919063ffffffff16565b90506000612d3988612d2b60175486612efb90919063ffffffff16565b612f7690919063ffffffff16565b905060008183612d499190613b8a565b84612d54919061406a565b9050600060168190555060006015819055506000601781905550600087118015612d7e5750600081115b15612dc757612d8d8782613256565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612dbe92919061409e565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612e0c919061406a565b604051612e18906140f8565b60006040518083038185875af1925050503d8060008114612e55576040519150601f19603f3d011682016040523d82523d6000602084013e612e5a565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea6906140f8565b60006040518083038185875af1925050503d8060008114612ee3576040519150601f19603f3d011682016040523d82523d6000602084013e612ee8565b606091505b505080985050505050505050505050505b565b600080831415612f0e5760009050612f70565b60008284612f1c9190613a9e565b9050828482612f2b9190613a6d565b14612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f629061417f565b60405180910390fd5b809150505b92915050565b6000612fb883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061333f565b905092915050565b600061300283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129ff565b905092915050565b6000600267ffffffffffffffff8111156130275761302661419f565b5b6040519080825280602002602001820160405280156130555781602001602082028036833780820191505090505b509050308160008151811061306d5761306c6141ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561310d57600080fd5b505afa158015613121573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131459190614212565b81600181518110613159576131586141ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131be307f000000000000000000000000000000000000000000000000000000000000000084611f3e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613220959493929190614338565b600060405180830381600087803b15801561323a57600080fd5b505af115801561324e573d6000803e3d6000fd5b505050505050565b613281307f000000000000000000000000000000000000000000000000000000000000000084611f3e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016132e696959493929190614392565b6060604051808303818588803b1580156132ff57600080fd5b505af1158015613313573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133389190614408565b5050505050565b60008083118290613386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337d919061343b565b60405180910390fd5b50600083856133959190613a6d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133dc5780820151818401526020810190506133c1565b838111156133eb576000848401525b50505050565b6000601f19601f8301169050919050565b600061340d826133a2565b61341781856133ad565b93506134278185602086016133be565b613430816133f1565b840191505092915050565b600060208201905081810360008301526134558184613402565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061348d82613462565b9050919050565b61349d81613482565b81146134a857600080fd5b50565b6000813590506134ba81613494565b92915050565b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b6000806040838503121561350d5761350c61345d565b5b600061351b858286016134ab565b925050602061352c858286016134e1565b9150509250929050565b60008115159050919050565b61354b81613536565b82525050565b60006020820190506135666000830184613542565b92915050565b6000602082840312156135825761358161345d565b5b6000613590848285016134ab565b91505092915050565b600080604083850312156135b0576135af61345d565b5b60006135be858286016134e1565b92505060206135cf858286016134e1565b9150509250929050565b6135e2816134c0565b82525050565b60006020820190506135fd60008301846135d9565b92915050565b61360c81613536565b811461361757600080fd5b50565b60008135905061362981613603565b92915050565b6000602082840312156136455761364461345d565b5b60006136538482850161361a565b91505092915050565b6000806000606084860312156136755761367461345d565b5b6000613683868287016134ab565b9350506020613694868287016134ab565b92505060406136a5868287016134e1565b9150509250925092565b600060ff82169050919050565b6136c5816136af565b82525050565b60006020820190506136e060008301846136bc565b92915050565b6136ef81613482565b82525050565b600060208201905061370a60008301846136e6565b92915050565b6000602082840312156137265761372561345d565b5b6000613734848285016134e1565b91505092915050565b600080604083850312156137545761375361345d565b5b6000613762858286016134ab565b92505060206137738582860161361a565b9150509250929050565b60008060008060008060c0878903121561379a5761379961345d565b5b60006137a889828a016134e1565b96505060206137b989828a016134e1565b95505060406137ca89828a016134e1565b94505060606137db89828a016134e1565b93505060806137ec89828a016134e1565b92505060a06137fd89828a016134e1565b9150509295509295509295565b600061010082019050613820600083018b6135d9565b61382d602083018a6135d9565b61383a60408301896135d9565b61384760608301886135d9565b61385460808301876135d9565b61386160a08301866135d9565b61386e60c08301856135d9565b61387b60e08301846135d9565b9998505050505050505050565b6000806040838503121561389f5761389e61345d565b5b60006138ad858286016134ab565b92505060206138be858286016134ab565b9150509250929050565b6000819050919050565b60006138ed6138e86138e384613462565b6138c8565b613462565b9050919050565b60006138ff826138d2565b9050919050565b6000613911826138f4565b9050919050565b61392181613906565b82525050565b600060208201905061393c6000830184613918565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398957607f821691505b6020821081141561399d5761399c613942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139d96020836133ad565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a78826134c0565b9150613a83836134c0565b925082613a9357613a92613a0f565b5b828204905092915050565b6000613aa9826134c0565b9150613ab4836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aed57613aec613a3e565b5b828202905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360008201527f206c6f776572207468616e203125000000000000000000000000000000000000602082015250565b6000613b54602e836133ad565b9150613b5f82613af8565b604082019050919050565b60006020820190508181036000830152613b8381613b47565b9050919050565b6000613b95826134c0565b9150613ba0836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd557613bd4613a3e565b5b828201905092915050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000613c16601d836133ad565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6d61726b65745061697200000000000000000000000000000000000000000000602082015250565b6000613ca8602a836133ad565b9150613cb382613c4c565b604082019050919050565b60006020820190508181036000830152613cd781613c9b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d3a6022836133ad565b9150613d4582613cde565b604082019050919050565b60006020820190508181036000830152613d6981613d2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dcc6026836133ad565b9150613dd782613d70565b604082019050919050565b60006020820190508181036000830152613dfb81613dbf565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613e38601b836133ad565b9150613e4382613e02565b602082019050919050565b60006020820190508181036000830152613e6781613e2b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ea46016836133ad565b9150613eaf82613e6e565b602082019050919050565b60006020820190508181036000830152613ed381613e97565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f366035836133ad565b9150613f4182613eda565b604082019050919050565b60006020820190508181036000830152613f6581613f29565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fc86036836133ad565b9150613fd382613f6c565b604082019050919050565b60006020820190508181036000830152613ff781613fbb565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006140346013836133ad565b915061403f82613ffe565b602082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b6000614075826134c0565b9150614080836134c0565b92508282101561409357614092613a3e565b5b828203905092915050565b60006040820190506140b360008301856135d9565b6140c060208301846135d9565b9392505050565b600081905092915050565b50565b60006140e26000836140c7565b91506140ed826140d2565b600082019050919050565b6000614103826140d5565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006141696021836133ad565b91506141748261410d565b604082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061420c81613494565b92915050565b6000602082840312156142285761422761345d565b5b6000614236848285016141fd565b91505092915050565b6000819050919050565b600061426461425f61425a8461423f565b6138c8565b6134c0565b9050919050565b61427481614249565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142af81613482565b82525050565b60006142c183836142a6565b60208301905092915050565b6000602082019050919050565b60006142e58261427a565b6142ef8185614285565b93506142fa83614296565b8060005b8381101561432b57815161431288826142b5565b975061431d836142cd565b9250506001810190506142fe565b5085935050505092915050565b600060a08201905061434d60008301886135d9565b61435a602083018761426b565b818103604083015261436c81866142da565b905061437b60608301856136e6565b61438860808301846135d9565b9695505050505050565b600060c0820190506143a760008301896136e6565b6143b460208301886135d9565b6143c1604083018761426b565b6143ce606083018661426b565b6143db60808301856136e6565b6143e860a08301846135d9565b979650505050505050565b600081519050614402816134ca565b92915050565b6000806000606084860312156144215761442061345d565b5b600061442f868287016143f3565b9350506020614440868287016143f3565b9250506040614451868287016143f3565b915050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d51c3651a48aead606fe4aab35f1e350f81640f20ccdd59cfd2b1a5d9d68571f64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e1461080d578063e16830a81461084a578063f2fde38b14610873578063f5b3c3bf1461089c578063f887ea40146108d957610225565b8063c024666814610737578063c16dd4a414610760578063c18bc19514610789578063d212a69a146107b2578063d3f6a157146107e457610225565b8063992c58e4116100f2578063992c58e414610652578063a457c2d71461067b578063a9059cbb146106b8578063b8863115146106f5578063b9e418e71461072057610225565b80638da5cb5b1461059457806395d89b41146105bf578063962c654b146105ea57806396880b171461061557610225565b8063313ce567116101a6578063555467a111610175578063555467a1146104af5780636ddd1713146104ec57806370a0823114610517578063715018a6146105545780637571336a1461056b57610225565b8063313ce567146103df578063395093511461040a57806349bd5a5e146104475780634fbee1931461047257610225565b806318160ddd116101ed57806318160ddd146102f85780631a8145bb146103235780631c6e8a751461034e5780631f3fed8f1461037757806323b872dd146103a257610225565b806306fdde031461022a578063095ea7b31461025557806310d5de531461029257806311a582c3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610904565b60405161024c919061343b565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906134f6565b610996565b6040516102899190613551565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061356c565b6109b4565b6040516102c69190613551565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613599565b6109d4565b005b34801561030457600080fd5b5061030d610ba5565b60405161031a91906135e8565b60405180910390f35b34801561032f57600080fd5b50610338610baf565b60405161034591906135e8565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061362f565b610bb5565b005b34801561038357600080fd5b5061038c610c69565b60405161039991906135e8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061365c565b610c6f565b6040516103d69190613551565b60405180910390f35b3480156103eb57600080fd5b506103f4610d48565b60405161040191906136cb565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906134f6565b610d51565b60405161043e9190613551565b60405180910390f35b34801561045357600080fd5b5061045c610e04565b60405161046991906136f5565b60405180910390f35b34801561047e57600080fd5b506104996004803603810190610494919061356c565b610e28565b6040516104a69190613551565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613710565b610e7e565b6040516104e39190613551565b60405180910390f35b3480156104f857600080fd5b50610501610f27565b60405161050e9190613551565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061356c565b610f3a565b60405161054b91906135e8565b60405180910390f35b34801561056057600080fd5b50610569610f82565b005b34801561057757600080fd5b50610592600480360381019061058d919061373d565b6110da565b005b3480156105a057600080fd5b506105a96111cc565b6040516105b691906136f5565b60405180910390f35b3480156105cb57600080fd5b506105d46111f6565b6040516105e1919061343b565b60405180910390f35b3480156105f657600080fd5b506105ff611288565b60405161060c91906135e8565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061356c565b61128e565b6040516106499190613551565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061377d565b6112ae565b005b34801561068757600080fd5b506106a2600480360381019061069d91906134f6565b611479565b6040516106af9190613551565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da91906134f6565b611546565b6040516106ec9190613551565b60405180910390f35b34801561070157600080fd5b5061070a611564565b6040516107179190613551565b60405180910390f35b34801561072c57600080fd5b50610735611577565b005b34801561074357600080fd5b5061075e6004803603810190610759919061373d565b611659565b005b34801561076c57600080fd5b506107876004803603810190610782919061373d565b61174b565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613710565b6118cc565b005b3480156107be57600080fd5b506107c7611a01565b6040516107db98979695949392919061380a565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190613888565b611a37565b005b34801561081957600080fd5b50610834600480360381019061082f9190613888565b611b54565b60405161084191906135e8565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c919061373d565b611bdb565b005b34801561087f57600080fd5b5061089a6004803603810190610895919061356c565b611ccd565b005b3480156108a857600080fd5b506108c360048036038101906108be919061356c565b611e94565b6040516108d09190613551565b60405180910390f35b3480156108e557600080fd5b506108ee611eb4565b6040516108fb9190613927565b60405180910390f35b60606003805461091390613971565b80601f016020809104026020016040519081016040528092919081815260200182805461093f90613971565b801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b5050505050905090565b60006109aa6109a3611f36565b8484611f3e565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b6109dc611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906139ef565b60405180910390fd5b6064610a75610ba5565b610a7f9190613a6d565b6103e883610a8b610ba5565b610a959190613a9e565b610a9f9190613a6d565b1015610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790613b6a565b60405180910390fd5b6064610aea610ba5565b610af49190613a6d565b6103e882610b00610ba5565b610b0a9190613a9e565b610b149190613a6d565b1015610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90613b6a565b60405180910390fd5b6103e882610b61610ba5565b610b6b9190613a9e565b610b759190613a6d565b6008819055506103e881610b87610ba5565b610b919190613a9e565b610b9b9190613a6d565b6009819055505050565b6000600254905090565b60165481565b610bbd611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906139ef565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60155481565b6000610c7c848484612029565b610d3d84610c88611f36565b610d38856040518060600160405280602881526020016144a760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cee611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b611f3e565b600190509392505050565b60006012905090565b6000610dfa610d5e611f36565b84610df58560016000610d6f611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed890919063ffffffff16565b611f3e565b6001905092915050565b7f0000000000000000000000003d5f3b3bb9b23c5bf1154091009d8465ae4d85ab81565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610e88611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e906139ef565b60405180910390fd5b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f8a611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110e2611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906139ef565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461120590613971565b80601f016020809104026020016040519081016040528092919081815260200182805461123190613971565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b60175481565b601b6020528060005260406000206000915054906101000a900460ff1681565b6112b6611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906139ef565b60405180910390fd5b85600d6001018190555084600d6003018190555083600d60020181905550600d60020154600d60030154600d6001015461137f9190613b8a565b6113899190613b8a565b600d6000018190555082600d6005018190555081600d6007018190555080600d60060181905550600d60060154600d60070154600d600501546113cc9190613b8a565b6113d69190613b8a565b600d600401819055506063600d600001541115611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613c2c565b60405180910390fd5b6063600d600401541115611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613c2c565b60405180910390fd5b505050505050565b600061153c611486611f36565b846115378560405180606001604052806025815260200161445c60259139600160006114b0611f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b611f3e565b6001905092915050565b600061155a611553611f36565b8484612029565b6001905092915050565b600c60029054906101000a900460ff1681565b61157f611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611605906139ef565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506002436116519190613b8a565b601881905550565b611661611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906139ef565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611753611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906139ef565b60405180910390fd5b7f0000000000000000000000003d5f3b3bb9b23c5bf1154091009d8465ae4d85ab73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613cbe565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118d4611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906139ef565b60405180910390fd5b606461196d610ba5565b6119779190613a6d565b6103e882611983610ba5565b61198d9190613a9e565b6119979190613a6d565b10156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613d50565b60405180910390fd5b6103e8816119e4610ba5565b6119ee9190613a9e565b6119f89190613a6d565b600a8190555050565b600d8060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b611a3f611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906139ef565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611be3611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906139ef565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611cd5611f36565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613de2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000808284611ee79190613b8a565b905083811015611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613e4e565b60405180910390fd5b8091505092915050565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161201c91906135e8565b60405180910390a3505050565b60008114156120435761203e83836000612a63565b6129fa565b61204b6111cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120b957506120896111cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120d25750600c60029054906101000a900460ff16155b1561245857600c60009054906101000a900460ff166121cc57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061218c5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613eba565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561226f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122be576008548111156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090613f4c565b60405180910390fd5b6123ad565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123615750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123ac576009548111156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613fde565b60405180910390fd5b5b5b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661245757600a5461240a83610f3a565b826124159190613b8a565b1115612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d9061404a565b60405180910390fd5b5b5b600061246330610f3a565b90506000600b5482101590508080156124885750600c60019054906101000a900460ff165b80156124a15750600c60029054906101000a900460ff16155b80156124f65750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561254c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125a25750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125e6576001600c60026101000a81548160ff0219169083151502179055506125ca612c0d565b6000600c60026101000a81548160ff0219169083151502179055505b6000600c60029054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061269c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126a657600090505b80156129eb576000601854431015612748576126df60646126d1606388612efb90919063ffffffff16565b612f7690919063ffffffff16565b90506063605e826126f09190613a9e565b6126fa9190613a6d565b6015600082825461270b9190613b8a565b9250508190555060636005826127219190613a9e565b61272b9190613a6d565b6017600082825461273c9190613b8a565b925050819055506129c6565b601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127a657506000600d60040154115b15612888576127d660646127c8600d6004015488612efb90919063ffffffff16565b612f7690919063ffffffff16565b9050600d60040154600d60070154826127ef9190613a9e565b6127f99190613a6d565b6016600082825461280a9190613b8a565b92505081905550600d60040154600d60050154826128289190613a9e565b6128329190613a6d565b601560008282546128439190613b8a565b92505081905550600d60040154600d60060154826128619190613a9e565b61286b9190613a6d565b6017600082825461287c9190613b8a565b925050819055506129c5565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e657506000600d60000154115b156129c4576129166064612908600d6000015488612efb90919063ffffffff16565b612f7690919063ffffffff16565b9050600d60000154600d600301548261292f9190613a9e565b6129399190613a6d565b6016600082825461294a9190613b8a565b92505081905550600d60000154600d60010154826129689190613a9e565b6129729190613a6d565b601560008282546129839190613b8a565b92505081905550600d60000154600d60020154826129a19190613a9e565b6129ab9190613a6d565b601760008282546129bc9190613b8a565b925050819055505b5b5b60008111156129db576129da873083612a63565b5b80856129e7919061406a565b9450505b6129f6868686612a63565b5050505b505050565b6000838311158290612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e919061343b565b60405180910390fd5b5060008385612a56919061406a565b9050809150509392505050565b612ace81604051806060016040528060268152602001614481602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129ff9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b61816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c0091906135e8565b60405180910390a3505050565b6000612c1830610f3a565b90506000601754601554601654612c2f9190613b8a565b612c399190613b8a565b9050600080831480612c4b5750600082145b15612c5857505050612ef9565b6014600b54612c679190613a9e565b831115612c80576014600b54612c7d9190613a9e565b92505b600060028360165486612c939190613a9e565b612c9d9190613a6d565b612ca79190613a6d565b90506000612cbe8286612fc090919063ffffffff16565b90506000479050612cce8261300a565b6000612ce38247612fc090919063ffffffff16565b90506000612d0e87612d0060155485612efb90919063ffffffff16565b612f7690919063ffffffff16565b90506000612d3988612d2b60175486612efb90919063ffffffff16565b612f7690919063ffffffff16565b905060008183612d499190613b8a565b84612d54919061406a565b9050600060168190555060006015819055506000601781905550600087118015612d7e5750600081115b15612dc757612d8d8782613256565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612dbe92919061409e565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612e0c919061406a565b604051612e18906140f8565b60006040518083038185875af1925050503d8060008114612e55576040519150601f19603f3d011682016040523d82523d6000602084013e612e5a565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea6906140f8565b60006040518083038185875af1925050503d8060008114612ee3576040519150601f19603f3d011682016040523d82523d6000602084013e612ee8565b606091505b505080985050505050505050505050505b565b600080831415612f0e5760009050612f70565b60008284612f1c9190613a9e565b9050828482612f2b9190613a6d565b14612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f629061417f565b60405180910390fd5b809150505b92915050565b6000612fb883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061333f565b905092915050565b600061300283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129ff565b905092915050565b6000600267ffffffffffffffff8111156130275761302661419f565b5b6040519080825280602002602001820160405280156130555781602001602082028036833780820191505090505b509050308160008151811061306d5761306c6141ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561310d57600080fd5b505afa158015613121573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131459190614212565b81600181518110613159576131586141ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131be307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f3e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613220959493929190614338565b600060405180830381600087803b15801561323a57600080fd5b505af115801561324e573d6000803e3d6000fd5b505050505050565b613281307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f3e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016132e696959493929190614392565b6060604051808303818588803b1580156132ff57600080fd5b505af1158015613313573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133389190614408565b5050505050565b60008083118290613386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337d919061343b565b60405180910390fd5b50600083856133959190613a6d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133dc5780820151818401526020810190506133c1565b838111156133eb576000848401525b50505050565b6000601f19601f8301169050919050565b600061340d826133a2565b61341781856133ad565b93506134278185602086016133be565b613430816133f1565b840191505092915050565b600060208201905081810360008301526134558184613402565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061348d82613462565b9050919050565b61349d81613482565b81146134a857600080fd5b50565b6000813590506134ba81613494565b92915050565b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b6000806040838503121561350d5761350c61345d565b5b600061351b858286016134ab565b925050602061352c858286016134e1565b9150509250929050565b60008115159050919050565b61354b81613536565b82525050565b60006020820190506135666000830184613542565b92915050565b6000602082840312156135825761358161345d565b5b6000613590848285016134ab565b91505092915050565b600080604083850312156135b0576135af61345d565b5b60006135be858286016134e1565b92505060206135cf858286016134e1565b9150509250929050565b6135e2816134c0565b82525050565b60006020820190506135fd60008301846135d9565b92915050565b61360c81613536565b811461361757600080fd5b50565b60008135905061362981613603565b92915050565b6000602082840312156136455761364461345d565b5b60006136538482850161361a565b91505092915050565b6000806000606084860312156136755761367461345d565b5b6000613683868287016134ab565b9350506020613694868287016134ab565b92505060406136a5868287016134e1565b9150509250925092565b600060ff82169050919050565b6136c5816136af565b82525050565b60006020820190506136e060008301846136bc565b92915050565b6136ef81613482565b82525050565b600060208201905061370a60008301846136e6565b92915050565b6000602082840312156137265761372561345d565b5b6000613734848285016134e1565b91505092915050565b600080604083850312156137545761375361345d565b5b6000613762858286016134ab565b92505060206137738582860161361a565b9150509250929050565b60008060008060008060c0878903121561379a5761379961345d565b5b60006137a889828a016134e1565b96505060206137b989828a016134e1565b95505060406137ca89828a016134e1565b94505060606137db89828a016134e1565b93505060806137ec89828a016134e1565b92505060a06137fd89828a016134e1565b9150509295509295509295565b600061010082019050613820600083018b6135d9565b61382d602083018a6135d9565b61383a60408301896135d9565b61384760608301886135d9565b61385460808301876135d9565b61386160a08301866135d9565b61386e60c08301856135d9565b61387b60e08301846135d9565b9998505050505050505050565b6000806040838503121561389f5761389e61345d565b5b60006138ad858286016134ab565b92505060206138be858286016134ab565b9150509250929050565b6000819050919050565b60006138ed6138e86138e384613462565b6138c8565b613462565b9050919050565b60006138ff826138d2565b9050919050565b6000613911826138f4565b9050919050565b61392181613906565b82525050565b600060208201905061393c6000830184613918565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398957607f821691505b6020821081141561399d5761399c613942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139d96020836133ad565b91506139e4826139a3565b602082019050919050565b60006020820190508181036000830152613a08816139cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a78826134c0565b9150613a83836134c0565b925082613a9357613a92613a0f565b5b828204905092915050565b6000613aa9826134c0565b9150613ab4836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aed57613aec613a3e565b5b828202905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360008201527f206c6f776572207468616e203125000000000000000000000000000000000000602082015250565b6000613b54602e836133ad565b9150613b5f82613af8565b604082019050919050565b60006020820190508181036000830152613b8381613b47565b9050919050565b6000613b95826134c0565b9150613ba0836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd557613bd4613a3e565b5b828201905092915050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000613c16601d836133ad565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6d61726b65745061697200000000000000000000000000000000000000000000602082015250565b6000613ca8602a836133ad565b9150613cb382613c4c565b604082019050919050565b60006020820190508181036000830152613cd781613c9b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d3a6022836133ad565b9150613d4582613cde565b604082019050919050565b60006020820190508181036000830152613d6981613d2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dcc6026836133ad565b9150613dd782613d70565b604082019050919050565b60006020820190508181036000830152613dfb81613dbf565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613e38601b836133ad565b9150613e4382613e02565b602082019050919050565b60006020820190508181036000830152613e6781613e2b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ea46016836133ad565b9150613eaf82613e6e565b602082019050919050565b60006020820190508181036000830152613ed381613e97565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f366035836133ad565b9150613f4182613eda565b604082019050919050565b60006020820190508181036000830152613f6581613f29565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fc86036836133ad565b9150613fd382613f6c565b604082019050919050565b60006020820190508181036000830152613ff781613fbb565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006140346013836133ad565b915061403f82613ffe565b602082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b6000614075826134c0565b9150614080836134c0565b92508282101561409357614092613a3e565b5b828203905092915050565b60006040820190506140b360008301856135d9565b6140c060208301846135d9565b9392505050565b600081905092915050565b50565b60006140e26000836140c7565b91506140ed826140d2565b600082019050919050565b6000614103826140d5565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006141696021836133ad565b91506141748261410d565b604082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061420c81613494565b92915050565b6000602082840312156142285761422761345d565b5b6000614236848285016141fd565b91505092915050565b6000819050919050565b600061426461425f61425a8461423f565b6138c8565b6134c0565b9050919050565b61427481614249565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142af81613482565b82525050565b60006142c183836142a6565b60208301905092915050565b6000602082019050919050565b60006142e58261427a565b6142ef8185614285565b93506142fa83614296565b8060005b8381101561432b57815161431288826142b5565b975061431d836142cd565b9250506001810190506142fe565b5085935050505092915050565b600060a08201905061434d60008301886135d9565b61435a602083018761426b565b818103604083015261436c81866142da565b905061437b60608301856136e6565b61438860808301846135d9565b9695505050505050565b600060c0820190506143a760008301896136e6565b6143b460208301886135d9565b6143c1604083018761426b565b6143ce606083018661426b565b6143db60808301856136e6565b6143e860a08301846135d9565b979650505050505050565b600081519050614402816134ca565b92915050565b6000806000606084860312156144215761442061345d565b5b600061442f868287016143f3565b9350506020614440868287016143f3565b9250506040614451868287016143f3565b915050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d51c3651a48aead606fe4aab35f1e350f81640f20ccdd59cfd2b1a5d9d68571f64736f6c63430008090033

Deployed Bytecode Sourcemap

20670:13147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6405:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22094:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:479;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5362:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21872:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25977:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21832:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7055:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5205:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7818:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20797:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27830:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24953:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21175:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5532:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13342:148;;;;;;;;;;;;;:::i;:::-;;27275:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12701:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4463:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21912:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22164:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:887;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8538:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21213:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24736:143;;;;;;;;;;;;;:::i;:::-;;26985:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27429:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25610:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21548:263;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;27635:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6108:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27123:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13645:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22380:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20748;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4245:99;4298:13;4331:5;4324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;:::o;6405:168::-;6487:4;6504:39;6513:12;:10;:12::i;:::-;6527:7;6536:6;6504:8;:39::i;:::-;6561:4;6554:11;;6405:168;;;;:::o;22094:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;25121:479::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25283:3:::1;25267:13;:11;:13::i;:::-;:19;;;;:::i;:::-;25257:4;25244:9;25228:13;:11;:13::i;:::-;:25;;;;:::i;:::-;25227:34;;;;:::i;:::-;25226:61;;25218:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;25415:3;25399:13;:11;:13::i;:::-;:19;;;;:::i;:::-;25389:4;25375:10;25359:13;:11;:13::i;:::-;:26;;;;:::i;:::-;25358:35;;;;:::i;:::-;25357:62;;25349:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;25526:4;25513:9;25497:13;:11;:13::i;:::-;:25;;;;:::i;:::-;25496:34;;;;:::i;:::-;25481:12;:49;;;;25588:4;25574:10;25558:13;:11;:13::i;:::-;:26;;;;:::i;:::-;25557:35;;;;:::i;:::-;25541:13;:51;;;;25121:479:::0;;:::o;5362:107::-;5422:7;5449:12;;5442:19;;5362:107;:::o;21872:33::-;;;;:::o;25977:101::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26063:7:::1;26049:11;;:21;;;;;;;;;;;;;;;;;;25977:101:::0;:::o;21832:33::-;;;;:::o;7055:354::-;7194:4;7211:36;7221:6;7229:9;7240:6;7211:9;:36::i;:::-;7258:121;7267:6;7275:12;:10;:12::i;:::-;7289:89;7327:6;7289:89;;;;;;;;;;;;;;;;;:11;:19;7301:6;7289:19;;;;;;;;;;;;;;;:33;7309:12;:10;:12::i;:::-;7289:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;7258:8;:121::i;:::-;7397:4;7390:11;;7055:354;;;;;:::o;5205:92::-;5262:5;5287:2;5280:9;;5205:92;:::o;7818:217::-;7905:4;7922:83;7931:12;:10;:12::i;:::-;7945:7;7954:50;7993:10;7954:11;:25;7966:12;:10;:12::i;:::-;7954:25;;;;;;;;;;;;;;;:34;7980:7;7954:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;7922:8;:83::i;:::-;8023:4;8016:11;;7818:217;;;;:::o;20797:38::-;;;:::o;27830:125::-;27895:4;27919:19;:28;27939:7;27919:28;;;;;;;;;;;;;;;;;;;;;;;;;27912:35;;27830:125;;;:::o;24953:158::-;25034:4;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25072:9:::1;25050:19;:31;;;;25099:4;25092:11;;24953:158:::0;;;:::o;21175:31::-;;;;;;;;;;;;;:::o;5532:126::-;5605:7;5632:9;:18;5642:7;5632:18;;;;;;;;;;;;;;;;5625:25;;5532:126;;;:::o;13342:148::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13449:1:::1;13412:40;;13433:6;;;;;;;;;;;13412:40;;;;;;;;;;;;13480:1;13463:6;;:19;;;;;;;;;;;;;;;;;;13342:148::o:0;27275:144::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27407:4:::1;27365:31;:39;27397:6;27365:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27275:144:::0;;:::o;12701:78::-;12738:7;12765:6;;;;;;;;;;;12758:13;;12701:78;:::o;4463:103::-;4518:13;4551:7;4544:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4463:103;:::o;21912:33::-;;;;:::o;22164:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;26086:887::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26315:16:::1;26291:5;:21;;:40;;;;26366:16;26342:5;:21;;:40;;;;26417:16;26393:5;:21;;:40;;;;26513:5;:21;;;26489:5;:21;;;26465:5;:21;;;:45;;;;:::i;:::-;:69;;;;:::i;:::-;26444:5;:18;;:90;;;;26572:17;26547:5;:22;;:42;;;;26625:17;26600:5;:22;;:42;;;;26678:17;26653:5;:22;;:42;;;;26778:5;:22;;;26753:5;:22;;;26728:5;:22;;;:47;;;;:::i;:::-;:72;;;;:::i;:::-;26706:5;:19;;:94;;;;26841:2;26819:5;:18;;;:24;;26811:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26922:2;26899:5;:19;;;:25;;26891:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26086:887:::0;;;;;;:::o;8538:268::-;8630:4;8647:129;8656:12;:10;:12::i;:::-;8670:7;8679:96;8718:15;8679:96;;;;;;;;;;;;;;;;;:11;:25;8691:12;:10;:12::i;:::-;8679:25;;;;;;;;;;;;;;;:34;8705:7;8679:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;8647:8;:129::i;:::-;8794:4;8787:11;;8538:268;;;;:::o;5871:174::-;5956:4;5973:42;5983:12;:10;:12::i;:::-;5997:9;6008:6;5973:9;:42::i;:::-;6033:4;6026:11;;5871:174;;;;:::o;21213:22::-;;;;;;;;;;;;;:::o;24736:143::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24801:4:::1;24789:9;;:16;;;;;;;;;;;;;;;;;;24830:4;24816:11;;:18;;;;;;;;;;;;;;;;;;24870:1;24855:12;:16;;;;:::i;:::-;24845:7;:26;;;;24736:143::o:0;26985:132::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27101:8:::1;27070:19;:28;27090:7;27070:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;26985:132:::0;;:::o;27429:196::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27522:13:::1;27514:21;;:4;:21;;;;27506:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27612:5;27593:10;:16;27604:4;27593:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;27429:196:::0;;:::o;25610:271::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25763:3:::1;25747:13;:11;:13::i;:::-;:19;;;;:::i;:::-;25737:4;25720:13;25704;:11;:13::i;:::-;:29;;;;:::i;:::-;25703:38;;;;:::i;:::-;25702:65;;25694:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;25869:4;25852:13;25836;:11;:13::i;:::-;:29;;;;:::i;:::-;25835:38;;;;:::i;:::-;25817:15;:56;;;;25610:271:::0;:::o;21548:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27635:187::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27753:16:::1;27735:15;;:34;;;;;;;;;;;;;;;;;;27798:16;27780:15;;:34;;;;;;;;;;;;;;;;;;27635:187:::0;;:::o;6108:150::-;6196:7;6223:11;:18;6235:5;6223:18;;;;;;;;;;;;;;;:27;6242:7;6223:27;;;;;;;;;;;;;;;;6216:34;;6108:150;;;;:::o;27123:146::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27253:8:::1;27215:26;:35;27242:7;27215:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27123:146:::0;;:::o;13645:244::-;12922:12;:10;:12::i;:::-;12912:22;;:6;;;;;;;;;;;:22;;;12904:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13754:1:::1;13734:22;;:8;:22;;;;13726:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13844:8;13815:38;;13836:6;;;;;;;;;;;13815:38;;;;;;;;;;;;13873:8;13864:6;;:17;;;;;;;;;;;;;;;;;;13645:244:::0;:::o;22380:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;20748:::-;;;:::o;10966:180::-;11023:7;11043:9;11059:1;11055;:5;;;;:::i;:::-;11043:17;;11084:1;11079;:6;;11071:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;11137:1;11130:8;;;10966:180;;;;:::o;3315:97::-;3367:7;3394:10;3387:17;;3315:97;:::o;10701:220::-;10859:6;10829:11;:18;10841:5;10829:18;;;;;;;;;;;;;;;:27;10848:7;10829:27;;;;;;;;;;;;;;;:36;;;;10897:7;10881:32;;10890:5;10881:32;;;10906:6;10881:32;;;;;;:::i;:::-;;;;;;;;10701:220;;;:::o;27963:3320::-;28120:1;28110:6;:11;28106:102;;;28138:37;28154:6;28162:9;28173:1;28138:15;:37::i;:::-;28190:7;;28106:102;28248:7;:5;:7::i;:::-;28238:17;;:6;:17;;;;:54;;;;;28285:7;:5;:7::i;:::-;28272:20;;:9;:20;;;;28238:54;:82;;;;;28310:10;;;;;;;;;;;28309:11;28238:82;28220:888;;;28354:9;;;;;;;;;;;28349:147;;28392:19;:27;28412:6;28392:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;28423:19;:30;28443:9;28423:30;;;;;;;;;;;;;;;;;;;;;;;;;28392:61;28384:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;28349:147;28514:10;:18;28525:6;28514:18;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;28537:31;:42;28569:9;28537:42;;;;;;;;;;;;;;;;;;;;;;;;;28536:43;28514:65;28510:410;;;28618:12;;28608:6;:22;;28600:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;28510:410;;;28728:10;:21;28739:9;28728:21;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;28754:31;:39;28786:6;28754:39;;;;;;;;;;;;;;;;;;;;;;;;;28753:40;28728:65;28724:196;;;28832:13;;28822:6;:23;;28814:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;28724:196;28510:410;28941:26;:37;28968:9;28941:37;;;;;;;;;;;;;;;;;;;;;;;;;28936:159;;29040:15;;29016:20;29026:9;29016;:20::i;:::-;29007:6;:29;;;;:::i;:::-;:48;;28999:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;28936:159;28220:888;29134:28;29165:24;29183:4;29165:9;:24::i;:::-;29134:55;;29203:12;29242:19;;29218:20;:43;;29203:58;;29292:7;:35;;;;;29316:11;;;;;;;;;;;29292:35;:63;;;;;29345:10;;;;;;;;;;;29344:11;29292:63;:101;;;;;29372:10;:21;29383:9;29372:21;;;;;;;;;;;;;;;;;;;;;;;;;29292:101;:146;;;;;29411:19;:27;29431:6;29411:27;;;;;;;;;;;;;;;;;;;;;;;;;29410:28;29292:146;:194;;;;;29456:19;:30;29476:9;29456:30;;;;;;;;;;;;;;;;;;;;;;;;;29455:31;29292:194;29274:326;;;29526:4;29513:10;;:17;;;;;;;;;;;;;;;;;;29545:10;:8;:10::i;:::-;29583:5;29570:10;;:18;;;;;;;;;;;;;;;;;;29274:326;29613:12;29629:10;;;;;;;;;;;29628:11;29613:26;;29741:19;:27;29761:6;29741:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;29772:19;:30;29792:9;29772:30;;;;;;;;;;;;;;;;;;;;;;;;;29741:61;29737:109;;;29829:5;29819:15;;29737:109;29947:7;29943:1278;;;29971:12;30020:7;;30005:12;:22;30002:1066;;;30055:23;30074:3;30055:14;30066:2;30055:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;30048:30;;30133:2;30127;30120:4;:9;;;;:::i;:::-;30119:16;;;;:::i;:::-;30097:18;;:38;;;;;;;:::i;:::-;;;;;;;;30189:2;30184:1;30177:4;:8;;;;:::i;:::-;30176:15;;;;:::i;:::-;30154:18;;:37;;;;;;;:::i;:::-;;;;;;;;30002:1066;;;30217:10;:21;30228:9;30217:21;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;;30264:1;30242:5;:19;;;:23;30217:48;30213:855;;;30293:40;30329:3;30293:31;30304:5;:19;;;30293:6;:10;;:31;;;;:::i;:::-;:35;;:40;;;;:::i;:::-;30286:47;;30406:5;:19;;;30381:5;:22;;;30374:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;30352:18;;:73;;;;;;;:::i;:::-;;;;;;;;30498:5;:19;;;30473:5;:22;;;30466:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;30444:18;;:73;;;;;;;:::i;:::-;;;;;;;;30590:5;:19;;;30565:5;:22;;;30558:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;30536:18;;:73;;;;;;;:::i;:::-;;;;;;;;30213:855;;;30671:10;:18;30682:6;30671:18;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;;30714:1;30693:5;:18;;;:22;30671:44;30667:401;;;30743:39;30778:3;30743:30;30754:5;:18;;;30743:6;:10;;:30;;;;:::i;:::-;:34;;:39;;;;:::i;:::-;30736:46;;30854:5;:18;;;30830:5;:21;;;30823:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;30801:18;;:71;;;;;;;:::i;:::-;;;;;;;;30944:5;:18;;;30920:5;:21;;;30913:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;30891:18;;:71;;;;;;;:::i;:::-;;;;;;;;31034:5;:18;;;31010:5;:21;;;31003:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;30981:18;;:71;;;;;;;:::i;:::-;;;;;;;;30667:401;30213:855;30002:1066;31095:1;31088:4;:8;31084:93;;;31117:44;31133:6;31149:4;31156;31117:15;:44::i;:::-;31084:93;31203:4;31193:14;;;;;:::i;:::-;;;29956:1265;29943:1278;31233:42;31249:6;31257:9;31268:6;31233:15;:42::i;:::-;28085:3198;;;27963:3320;;;;:::o;11307:191::-;11392:7;11425:1;11420;:6;;11428:12;11412:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11452:9;11468:1;11464;:5;;;;:::i;:::-;11452:17;;11489:1;11482:8;;;11307:191;;;;;:::o;9296:358::-;9458:71;9480:6;9458:71;;;;;;;;;;;;;;;;;:9;:17;9468:6;9458:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;9438:9;:17;9448:6;9438:17;;;;;;;;;;;;;;;:91;;;;9563:32;9588:6;9563:9;:20;9573:9;9563:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;9540:9;:20;9550:9;9540:20;;;;;;;;;;;;;;;:55;;;;9628:9;9611:35;;9620:6;9611:35;;;9639:6;9611:35;;;;;;:::i;:::-;;;;;;;;9296:358;;;:::o;32211:1601::-;32250:28;32281:24;32299:4;32281:9;:24::i;:::-;32250:55;;32316:14;32375:18;;32354;;32333;;:39;;;;:::i;:::-;:60;;;;:::i;:::-;32316:77;;32404:12;32457:1;32433:20;:25;:40;;;;32472:1;32462:6;:11;32433:40;32429:57;;;32477:7;;;;;32429:57;32547:2;32525:19;;:24;;;;:::i;:::-;32502:20;:47;32498:127;;;32611:2;32589:19;;:24;;;;:::i;:::-;32566:47;;32498:127;32686:23;32765:1;32756:6;32735:18;;32712:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32686:80;;32777:26;32806:41;32831:15;32806:20;:24;;:41;;;;:::i;:::-;32777:70;;32861:25;32889:21;32861:49;;32923:36;32940:18;32923:16;:36::i;:::-;32974:18;32995:44;33021:17;32995:21;:25;;:44;;;;:::i;:::-;32974:65;;33053:23;33079:46;33118:6;33079:34;33094:18;;33079:10;:14;;:34;;;;:::i;:::-;:38;;:46;;;;:::i;:::-;33053:72;;33136:23;33162:46;33201:6;33162:34;33177:18;;33162:10;:14;;:34;;;;:::i;:::-;:38;;:46;;;;:::i;:::-;33136:72;;33219:23;33277:15;33259;:33;;;;:::i;:::-;33245:10;:48;;;;:::i;:::-;33219:74;;33329:1;33308:18;:22;;;;33362:1;33341:18;:22;;;;33395:1;33374:18;:22;;;;33433:1;33415:15;:19;:42;;;;;33456:1;33438:15;:19;33415:42;33411:192;;;33474:46;33487:15;33504;33474:12;:46::i;:::-;33540:51;33555:18;33575:15;33540:51;;;;;;;:::i;:::-;;;;;;;;33411:192;33636:15;;;;;;;;;;;33628:29;;33691:15;33667:21;:39;;;;:::i;:::-;33628:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33615:99;;;;;33746:15;;;;;;;;;;;33738:29;;33776:21;33738:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33725:79;;;;;32239:1573;;;;;;;;;;32211:1601;:::o;11506:256::-;11563:7;11598:1;11593;:6;11589:47;;;11623:1;11616:8;;;;11589:47;11649:9;11665:1;11661;:5;;;;:::i;:::-;11649:17;;11694:1;11689;11685;:5;;;;:::i;:::-;:10;11677:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;11753:1;11746:8;;;11506:256;;;;;:::o;11773:131::-;11830:7;11857:39;11861:1;11864;11857:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;11850:46;;11773:131;;;;:::o;11159:135::-;11216:7;11243:43;11247:1;11250;11243:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;11236:50;;11159:135;;;;:::o;31291:554::-;31415:21;31453:1;31439:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31415:40;;31484:4;31466;31471:1;31466:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;31510:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31500:4;31505:1;31500:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;31536:49;31553:4;31568:6;31577:7;31536:8;:49::i;:::-;31624:6;:57;;;31696:7;31718:1;31762:4;31789;31809:15;31624:211;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31342:503;31291:554;:::o;31853:350::-;31997:49;32014:4;32029:6;32038:7;31997:8;:49::i;:::-;32089:6;:22;;;32120:9;32141:4;32148:7;32157:1;32160;32172:4;32179:15;32089:106;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31853:350;;:::o;11916:277::-;12001:7;12033:1;12029;:5;12036:12;12021:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;12060:9;12076:1;12072;:5;;;;:::i;:::-;12060:17;;12184:1;12177:8;;;11916:277;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:474::-;3897:6;3905;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;4207:2;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4178:118;3829:474;;;;;:::o;4309:118::-;4396:24;4414:5;4396:24;:::i;:::-;4391:3;4384:37;4309:118;;:::o;4433:222::-;4526:4;4564:2;4553:9;4549:18;4541:26;;4577:71;4645:1;4634:9;4630:17;4621:6;4577:71;:::i;:::-;4433:222;;;;:::o;4661:116::-;4731:21;4746:5;4731:21;:::i;:::-;4724:5;4721:32;4711:60;;4767:1;4764;4757:12;4711:60;4661:116;:::o;4783:133::-;4826:5;4864:6;4851:20;4842:29;;4880:30;4904:5;4880:30;:::i;:::-;4783:133;;;;:::o;4922:323::-;4978:6;5027:2;5015:9;5006:7;5002:23;4998:32;4995:119;;;5033:79;;:::i;:::-;4995:119;5153:1;5178:50;5220:7;5211:6;5200:9;5196:22;5178:50;:::i;:::-;5168:60;;5124:114;4922:323;;;;:::o;5251:619::-;5328:6;5336;5344;5393:2;5381:9;5372:7;5368:23;5364:32;5361:119;;;5399:79;;:::i;:::-;5361:119;5519:1;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5490:117;5646:2;5672:53;5717:7;5708:6;5697:9;5693:22;5672:53;:::i;:::-;5662:63;;5617:118;5774:2;5800:53;5845:7;5836:6;5825:9;5821:22;5800:53;:::i;:::-;5790:63;;5745:118;5251:619;;;;;:::o;5876:86::-;5911:7;5951:4;5944:5;5940:16;5929:27;;5876:86;;;:::o;5968:112::-;6051:22;6067:5;6051:22;:::i;:::-;6046:3;6039:35;5968:112;;:::o;6086:214::-;6175:4;6213:2;6202:9;6198:18;6190:26;;6226:67;6290:1;6279:9;6275:17;6266:6;6226:67;:::i;:::-;6086:214;;;;:::o;6306:118::-;6393:24;6411:5;6393:24;:::i;:::-;6388:3;6381:37;6306:118;;:::o;6430:222::-;6523:4;6561:2;6550:9;6546:18;6538:26;;6574:71;6642:1;6631:9;6627:17;6618:6;6574:71;:::i;:::-;6430:222;;;;:::o;6658:329::-;6717:6;6766:2;6754:9;6745:7;6741:23;6737:32;6734:119;;;6772:79;;:::i;:::-;6734:119;6892:1;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6863:117;6658:329;;;;:::o;6993:468::-;7058:6;7066;7115:2;7103:9;7094:7;7090:23;7086:32;7083:119;;;7121:79;;:::i;:::-;7083:119;7241:1;7266:53;7311:7;7302:6;7291:9;7287:22;7266:53;:::i;:::-;7256:63;;7212:117;7368:2;7394:50;7436:7;7427:6;7416:9;7412:22;7394:50;:::i;:::-;7384:60;;7339:115;6993:468;;;;;:::o;7467:1057::-;7571:6;7579;7587;7595;7603;7611;7660:3;7648:9;7639:7;7635:23;7631:33;7628:120;;;7667:79;;:::i;:::-;7628:120;7787:1;7812:53;7857:7;7848:6;7837:9;7833:22;7812:53;:::i;:::-;7802:63;;7758:117;7914:2;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7885:118;8042:2;8068:53;8113:7;8104:6;8093:9;8089:22;8068:53;:::i;:::-;8058:63;;8013:118;8170:2;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8141:118;8298:3;8325:53;8370:7;8361:6;8350:9;8346:22;8325:53;:::i;:::-;8315:63;;8269:119;8427:3;8454:53;8499:7;8490:6;8479:9;8475:22;8454:53;:::i;:::-;8444:63;;8398:119;7467:1057;;;;;;;;:::o;8530:997::-;8819:4;8857:3;8846:9;8842:19;8834:27;;8871:71;8939:1;8928:9;8924:17;8915:6;8871:71;:::i;:::-;8952:72;9020:2;9009:9;9005:18;8996:6;8952:72;:::i;:::-;9034;9102:2;9091:9;9087:18;9078:6;9034:72;:::i;:::-;9116;9184:2;9173:9;9169:18;9160:6;9116:72;:::i;:::-;9198:73;9266:3;9255:9;9251:19;9242:6;9198:73;:::i;:::-;9281;9349:3;9338:9;9334:19;9325:6;9281:73;:::i;:::-;9364;9432:3;9421:9;9417:19;9408:6;9364:73;:::i;:::-;9447;9515:3;9504:9;9500:19;9491:6;9447:73;:::i;:::-;8530:997;;;;;;;;;;;:::o;9533:474::-;9601:6;9609;9658:2;9646:9;9637:7;9633:23;9629:32;9626:119;;;9664:79;;:::i;:::-;9626:119;9784:1;9809:53;9854:7;9845:6;9834:9;9830:22;9809:53;:::i;:::-;9799:63;;9755:117;9911:2;9937:53;9982:7;9973:6;9962:9;9958:22;9937:53;:::i;:::-;9927:63;;9882:118;9533:474;;;;;:::o;10013:60::-;10041:3;10062:5;10055:12;;10013:60;;;:::o;10079:142::-;10129:9;10162:53;10180:34;10189:24;10207:5;10189:24;:::i;:::-;10180:34;:::i;:::-;10162:53;:::i;:::-;10149:66;;10079:142;;;:::o;10227:126::-;10277:9;10310:37;10341:5;10310:37;:::i;:::-;10297:50;;10227:126;;;:::o;10359:153::-;10436:9;10469:37;10500:5;10469:37;:::i;:::-;10456:50;;10359:153;;;:::o;10518:185::-;10632:64;10690:5;10632:64;:::i;:::-;10627:3;10620:77;10518:185;;:::o;10709:276::-;10829:4;10867:2;10856:9;10852:18;10844:26;;10880:98;10975:1;10964:9;10960:17;10951:6;10880:98;:::i;:::-;10709:276;;;;:::o;10991:180::-;11039:77;11036:1;11029:88;11136:4;11133:1;11126:15;11160:4;11157:1;11150:15;11177:320;11221:6;11258:1;11252:4;11248:12;11238:22;;11305:1;11299:4;11295:12;11326:18;11316:81;;11382:4;11374:6;11370:17;11360:27;;11316:81;11444:2;11436:6;11433:14;11413:18;11410:38;11407:84;;;11463:18;;:::i;:::-;11407:84;11228:269;11177:320;;;:::o;11503:182::-;11643:34;11639:1;11631:6;11627:14;11620:58;11503:182;:::o;11691:366::-;11833:3;11854:67;11918:2;11913:3;11854:67;:::i;:::-;11847:74;;11930:93;12019:3;11930:93;:::i;:::-;12048:2;12043:3;12039:12;12032:19;;11691:366;;;:::o;12063:419::-;12229:4;12267:2;12256:9;12252:18;12244:26;;12316:9;12310:4;12306:20;12302:1;12291:9;12287:17;12280:47;12344:131;12470:4;12344:131;:::i;:::-;12336:139;;12063:419;;;:::o;12488:180::-;12536:77;12533:1;12526:88;12633:4;12630:1;12623:15;12657:4;12654:1;12647:15;12674:180;12722:77;12719:1;12712:88;12819:4;12816:1;12809:15;12843:4;12840:1;12833:15;12860:185;12900:1;12917:20;12935:1;12917:20;:::i;:::-;12912:25;;12951:20;12969:1;12951:20;:::i;:::-;12946:25;;12990:1;12980:35;;12995:18;;:::i;:::-;12980:35;13037:1;13034;13030:9;13025:14;;12860:185;;;;:::o;13051:348::-;13091:7;13114:20;13132:1;13114:20;:::i;:::-;13109:25;;13148:20;13166:1;13148:20;:::i;:::-;13143:25;;13336:1;13268:66;13264:74;13261:1;13258:81;13253:1;13246:9;13239:17;13235:105;13232:131;;;13343:18;;:::i;:::-;13232:131;13391:1;13388;13384:9;13373:20;;13051:348;;;;:::o;13405:233::-;13545:34;13541:1;13533:6;13529:14;13522:58;13614:16;13609:2;13601:6;13597:15;13590:41;13405:233;:::o;13644:366::-;13786:3;13807:67;13871:2;13866:3;13807:67;:::i;:::-;13800:74;;13883:93;13972:3;13883:93;:::i;:::-;14001:2;13996:3;13992:12;13985:19;;13644:366;;;:::o;14016:419::-;14182:4;14220:2;14209:9;14205:18;14197:26;;14269:9;14263:4;14259:20;14255:1;14244:9;14240:17;14233:47;14297:131;14423:4;14297:131;:::i;:::-;14289:139;;14016:419;;;:::o;14441:305::-;14481:3;14500:20;14518:1;14500:20;:::i;:::-;14495:25;;14534:20;14552:1;14534:20;:::i;:::-;14529:25;;14688:1;14620:66;14616:74;14613:1;14610:81;14607:107;;;14694:18;;:::i;:::-;14607:107;14738:1;14735;14731:9;14724:16;;14441:305;;;;:::o;14752:179::-;14892:31;14888:1;14880:6;14876:14;14869:55;14752:179;:::o;14937:366::-;15079:3;15100:67;15164:2;15159:3;15100:67;:::i;:::-;15093:74;;15176:93;15265:3;15176:93;:::i;:::-;15294:2;15289:3;15285:12;15278:19;;14937:366;;;:::o;15309:419::-;15475:4;15513:2;15502:9;15498:18;15490:26;;15562:9;15556:4;15552:20;15548:1;15537:9;15533:17;15526:47;15590:131;15716:4;15590:131;:::i;:::-;15582:139;;15309:419;;;:::o;15734:229::-;15874:34;15870:1;15862:6;15858:14;15851:58;15943:12;15938:2;15930:6;15926:15;15919:37;15734:229;:::o;15969:366::-;16111:3;16132:67;16196:2;16191:3;16132:67;:::i;:::-;16125:74;;16208:93;16297:3;16208:93;:::i;:::-;16326:2;16321:3;16317:12;16310:19;;15969:366;;;:::o;16341:419::-;16507:4;16545:2;16534:9;16530:18;16522:26;;16594:9;16588:4;16584:20;16580:1;16569:9;16565:17;16558:47;16622:131;16748:4;16622:131;:::i;:::-;16614:139;;16341:419;;;:::o;16766:221::-;16906:34;16902:1;16894:6;16890:14;16883:58;16975:4;16970:2;16962:6;16958:15;16951:29;16766:221;:::o;16993:366::-;17135:3;17156:67;17220:2;17215:3;17156:67;:::i;:::-;17149:74;;17232:93;17321:3;17232:93;:::i;:::-;17350:2;17345:3;17341:12;17334:19;;16993:366;;;:::o;17365:419::-;17531:4;17569:2;17558:9;17554:18;17546:26;;17618:9;17612:4;17608:20;17604:1;17593:9;17589:17;17582:47;17646:131;17772:4;17646:131;:::i;:::-;17638:139;;17365:419;;;:::o;17790:225::-;17930:34;17926:1;17918:6;17914:14;17907:58;17999:8;17994:2;17986:6;17982:15;17975:33;17790:225;:::o;18021:366::-;18163:3;18184:67;18248:2;18243:3;18184:67;:::i;:::-;18177:74;;18260:93;18349:3;18260:93;:::i;:::-;18378:2;18373:3;18369:12;18362:19;;18021:366;;;:::o;18393:419::-;18559:4;18597:2;18586:9;18582:18;18574:26;;18646:9;18640:4;18636:20;18632:1;18621:9;18617:17;18610:47;18674:131;18800:4;18674:131;:::i;:::-;18666:139;;18393:419;;;:::o;18818:177::-;18958:29;18954:1;18946:6;18942:14;18935:53;18818:177;:::o;19001:366::-;19143:3;19164:67;19228:2;19223:3;19164:67;:::i;:::-;19157:74;;19240:93;19329:3;19240:93;:::i;:::-;19358:2;19353:3;19349:12;19342:19;;19001:366;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19373:419;;;:::o;19798:172::-;19938:24;19934:1;19926:6;19922:14;19915:48;19798:172;:::o;19976:366::-;20118:3;20139:67;20203:2;20198:3;20139:67;:::i;:::-;20132:74;;20215:93;20304:3;20215:93;:::i;:::-;20333:2;20328:3;20324:12;20317:19;;19976:366;;;:::o;20348:419::-;20514:4;20552:2;20541:9;20537:18;20529:26;;20601:9;20595:4;20591:20;20587:1;20576:9;20572:17;20565:47;20629:131;20755:4;20629:131;:::i;:::-;20621:139;;20348:419;;;:::o;20773:240::-;20913:34;20909:1;20901:6;20897:14;20890:58;20982:23;20977:2;20969:6;20965:15;20958:48;20773:240;:::o;21019:366::-;21161:3;21182:67;21246:2;21241:3;21182:67;:::i;:::-;21175:74;;21258:93;21347:3;21258:93;:::i;:::-;21376:2;21371:3;21367:12;21360:19;;21019:366;;;:::o;21391:419::-;21557:4;21595:2;21584:9;21580:18;21572:26;;21644:9;21638:4;21634:20;21630:1;21619:9;21615:17;21608:47;21672:131;21798:4;21672:131;:::i;:::-;21664:139;;21391:419;;;:::o;21816:241::-;21956:34;21952:1;21944:6;21940:14;21933:58;22025:24;22020:2;22012:6;22008:15;22001:49;21816:241;:::o;22063:366::-;22205:3;22226:67;22290:2;22285:3;22226:67;:::i;:::-;22219:74;;22302:93;22391:3;22302:93;:::i;:::-;22420:2;22415:3;22411:12;22404:19;;22063:366;;;:::o;22435:419::-;22601:4;22639:2;22628:9;22624:18;22616:26;;22688:9;22682:4;22678:20;22674:1;22663:9;22659:17;22652:47;22716:131;22842:4;22716:131;:::i;:::-;22708:139;;22435:419;;;:::o;22860:169::-;23000:21;22996:1;22988:6;22984:14;22977:45;22860:169;:::o;23035:366::-;23177:3;23198:67;23262:2;23257:3;23198:67;:::i;:::-;23191:74;;23274:93;23363:3;23274:93;:::i;:::-;23392:2;23387:3;23383:12;23376:19;;23035:366;;;:::o;23407:419::-;23573:4;23611:2;23600:9;23596:18;23588:26;;23660:9;23654:4;23650:20;23646:1;23635:9;23631:17;23624:47;23688:131;23814:4;23688:131;:::i;:::-;23680:139;;23407:419;;;:::o;23832:191::-;23872:4;23892:20;23910:1;23892:20;:::i;:::-;23887:25;;23926:20;23944:1;23926:20;:::i;:::-;23921:25;;23965:1;23962;23959:8;23956:34;;;23970:18;;:::i;:::-;23956:34;24015:1;24012;24008:9;24000:17;;23832:191;;;;:::o;24029:332::-;24150:4;24188:2;24177:9;24173:18;24165:26;;24201:71;24269:1;24258:9;24254:17;24245:6;24201:71;:::i;:::-;24282:72;24350:2;24339:9;24335:18;24326:6;24282:72;:::i;:::-;24029:332;;;;;:::o;24367:147::-;24468:11;24505:3;24490:18;;24367:147;;;;:::o;24520:114::-;;:::o;24640:398::-;24799:3;24820:83;24901:1;24896:3;24820:83;:::i;:::-;24813:90;;24912:93;25001:3;24912:93;:::i;:::-;25030:1;25025:3;25021:11;25014:18;;24640:398;;;:::o;25044:379::-;25228:3;25250:147;25393:3;25250:147;:::i;:::-;25243:154;;25414:3;25407:10;;25044:379;;;:::o;25429:220::-;25569:34;25565:1;25557:6;25553:14;25546:58;25638:3;25633:2;25625:6;25621:15;25614:28;25429:220;:::o;25655:366::-;25797:3;25818:67;25882:2;25877:3;25818:67;:::i;:::-;25811:74;;25894:93;25983:3;25894:93;:::i;:::-;26012:2;26007:3;26003:12;25996:19;;25655:366;;;:::o;26027:419::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26027:419;;;:::o;26452:180::-;26500:77;26497:1;26490:88;26597:4;26594:1;26587:15;26621:4;26618:1;26611:15;26638:180;26686:77;26683:1;26676:88;26783:4;26780:1;26773:15;26807:4;26804:1;26797:15;26824:143;26881:5;26912:6;26906:13;26897:22;;26928:33;26955:5;26928:33;:::i;:::-;26824:143;;;;:::o;26973:351::-;27043:6;27092:2;27080:9;27071:7;27067:23;27063:32;27060:119;;;27098:79;;:::i;:::-;27060:119;27218:1;27243:64;27299:7;27290:6;27279:9;27275:22;27243:64;:::i;:::-;27233:74;;27189:128;26973:351;;;;:::o;27330:85::-;27375:7;27404:5;27393:16;;27330:85;;;:::o;27421:158::-;27479:9;27512:61;27530:42;27539:32;27565:5;27539:32;:::i;:::-;27530:42;:::i;:::-;27512:61;:::i;:::-;27499:74;;27421:158;;;:::o;27585:147::-;27680:45;27719:5;27680:45;:::i;:::-;27675:3;27668:58;27585:147;;:::o;27738:114::-;27805:6;27839:5;27833:12;27823:22;;27738:114;;;:::o;27858:184::-;27957:11;27991:6;27986:3;27979:19;28031:4;28026:3;28022:14;28007:29;;27858:184;;;;:::o;28048:132::-;28115:4;28138:3;28130:11;;28168:4;28163:3;28159:14;28151:22;;28048:132;;;:::o;28186:108::-;28263:24;28281:5;28263:24;:::i;:::-;28258:3;28251:37;28186:108;;:::o;28300:179::-;28369:10;28390:46;28432:3;28424:6;28390:46;:::i;:::-;28468:4;28463:3;28459:14;28445:28;;28300:179;;;;:::o;28485:113::-;28555:4;28587;28582:3;28578:14;28570:22;;28485:113;;;:::o;28634:732::-;28753:3;28782:54;28830:5;28782:54;:::i;:::-;28852:86;28931:6;28926:3;28852:86;:::i;:::-;28845:93;;28962:56;29012:5;28962:56;:::i;:::-;29041:7;29072:1;29057:284;29082:6;29079:1;29076:13;29057:284;;;29158:6;29152:13;29185:63;29244:3;29229:13;29185:63;:::i;:::-;29178:70;;29271:60;29324:6;29271:60;:::i;:::-;29261:70;;29117:224;29104:1;29101;29097:9;29092:14;;29057:284;;;29061:14;29357:3;29350:10;;28758:608;;;28634:732;;;;:::o;29372:831::-;29635:4;29673:3;29662:9;29658:19;29650:27;;29687:71;29755:1;29744:9;29740:17;29731:6;29687:71;:::i;:::-;29768:80;29844:2;29833:9;29829:18;29820:6;29768:80;:::i;:::-;29895:9;29889:4;29885:20;29880:2;29869:9;29865:18;29858:48;29923:108;30026:4;30017:6;29923:108;:::i;:::-;29915:116;;30041:72;30109:2;30098:9;30094:18;30085:6;30041:72;:::i;:::-;30123:73;30191:3;30180:9;30176:19;30167:6;30123:73;:::i;:::-;29372:831;;;;;;;;:::o;30209:807::-;30458:4;30496:3;30485:9;30481:19;30473:27;;30510:71;30578:1;30567:9;30563:17;30554:6;30510:71;:::i;:::-;30591:72;30659:2;30648:9;30644:18;30635:6;30591:72;:::i;:::-;30673:80;30749:2;30738:9;30734:18;30725:6;30673:80;:::i;:::-;30763;30839:2;30828:9;30824:18;30815:6;30763:80;:::i;:::-;30853:73;30921:3;30910:9;30906:19;30897:6;30853:73;:::i;:::-;30936;31004:3;30993:9;30989:19;30980:6;30936:73;:::i;:::-;30209:807;;;;;;;;;:::o;31022:143::-;31079:5;31110:6;31104:13;31095:22;;31126:33;31153:5;31126:33;:::i;:::-;31022:143;;;;:::o;31171:663::-;31259:6;31267;31275;31324:2;31312:9;31303:7;31299:23;31295:32;31292:119;;;31330:79;;:::i;:::-;31292:119;31450:1;31475:64;31531:7;31522:6;31511:9;31507:22;31475:64;:::i;:::-;31465:74;;31421:128;31588:2;31614:64;31670:7;31661:6;31650:9;31646:22;31614:64;:::i;:::-;31604:74;;31559:129;31727:2;31753:64;31809:7;31800:6;31789:9;31785:22;31753:64;:::i;:::-;31743:74;;31698:129;31171:663;;;;;:::o

Swarm Source

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