ETH Price: $3,282.64 (+0.53%)
Gas: 44 Gwei

Token

Koochie Inu (KOO)
 

Overview

Max Total Supply

1,000,000,000 KOO

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
31.125800787 KOO

Value
$0.00
0x3f328e127a96d9df109654e103e561d416bcefe7
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:
Koochie

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-07
*/

/**
 *Koochie Inu
*/

pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

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

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



// pragma solidity >=0.6.2;

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract Koochie is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000 * 10**3 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable public _marketingAddress = 0xA0B747536407Dad9e06c5a96Abe591b939E2dF90;
    address private _donationAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "Koochie Inu";
    string private _symbol = "KOO";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _marketingFee = 7;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _donationFee = 0;
    uint256 private _previousDonationFee = _donationFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5000 * 10**6 * 10**9;
    uint256 public _maxWalletSize = 1000000 * 10**6 * 10**9;
    
    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D );
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function donationAddress() public view returns (address) {
        return _donationAddress;
    }

    function marketingAddress() public view returns (address) {
        return _marketingAddress;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");

        (,uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount,,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        
        (,uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }
    
    function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap router');
           require (!_isBlackListedBot[account], 'Account is already blacklisted');
           _isBlackListedBot[account] = true;
           _blackListedBots.push(account);
        }

    function removeBotFromBlacklist(address account) external onlyOwner() {
           require (_isBlackListedBot[account], 'Account is not blacklisted');
           for (uint256 i = 0; i < _blackListedBots.length; i++) {
                 if (_blackListedBots[i] == account) {
                     _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                     _isBlackListedBot[account] = false;
                     _blackListedBots.pop();
                     break;
                 }
           }
        }       

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
        
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
    
     function _setMaxWalletSizePercent (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = _tTotal.mul(maxWalletSize).div(
            10**2
        );
            
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
        uint256 tDonation = calculateDonationFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
                tTransferAmount = tTransferAmount.sub(tMarketing);
                tTransferAmount = tTransferAmount.sub(tDonation);

        return (tTransferAmount, tFee, tLiquidity, tMarketing, tDonation);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rDonation = tDonation.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing).sub(rDonation);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function _takeMarketingFee(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

    function _takeDonationFee(uint256 tDonation) private {
        uint256 currentRate =  _getRate();
        uint256 rDonation = tDonation.mul(currentRate);
        _rOwned[_donationAddress] = _rOwned[_donationAddress].add(rDonation);
        if(_isExcluded[_donationAddress])
            _tOwned[_donationAddress] = _tOwned[_donationAddress].add(tDonation);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }

    function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).div(
            10**2
        );
    }

    function calculateDonationFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_donationFee).div(
            10**2
        );
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        _previousDonationFee = _donationFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _donationFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
        _donationFee = _previousDonationFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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 _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[from], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "blacklisted");
        require(!_isBlackListedBot[tx.origin], "blacklisted");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            require(amount <= _maxWalletSize, "Recipient exceeds max wallet size.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator= (_liquidityFee + _marketingFee) * 2;
        uint256 tokensToAddLiquidityWith = tokens * _liquidityFee / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance= deltaBalance / (denominator - _liquidityFee);
        uint256 bnbToAddLiquidityWith = unitBalance * _liquidityFee;

        if(bnbToAddLiquidityWith > 0){
            // Add liquidity to pancake
            addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * _marketingFee;
        if(marketingAmt > 0){
            payable(_marketingAddress).transfer(marketingAmt);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        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, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_donationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingAddress","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

670de0b6b3a7640000600b90815567081ad01a501bffff19600c55600e80546001600160a01b031990811673a0b747536407dad9e06c5a96abe591b939e2df9017909155600f805490911661dead17905561010060405260c08190526a4b6f6f6368696520496e7560a81b60e09081526200007e91601091906200041e565b50604080518082019091526003808252624b4f4f60e81b6020909201918252620000ab916011916200041e565b506012805460ff1916600917905560016013819055601481905560158190556016556007601781905560185560006019819055601a55601b805461ff001916610100179055678ac7230489e80000601c55674563918244f40000601d55683635c9adc5dea00000601e553480156200012257600080fd5b5060006200012f6200040b565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200018a6200040b565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020157600080fd5b505afa15801562000216573d6000803e3d6000fd5b505050506040513d60208110156200022d57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200027e57600080fd5b505afa15801562000293573d6000803e3d6000fd5b505050506040513d6020811015620002aa57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002fd57600080fd5b505af115801562000312573d6000803e3d6000fd5b505050506040513d60208110156200032957600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620003566200040f565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600e54909116835291208054909216179055620003b76200040b565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350620004ba565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046157805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049157825182559160200191906001019062000474565b506200049f929150620004a3565b5090565b5b808211156200049f5760008155600101620004a4565b60805160601c60a05160601c61337362000502600039806112855280612104525080610b47528061296b5280612a235280612a4a5280612b305280612b9752506133736000f3fe60806040526004361061028c5760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610939578063dd62ed3e14610963578063ea2f0b371461099e578063ec034bed146109d1578063f2fde38b146109e6578063faf38f6214610a1957610293565b8063af2ce6141461085c578063b030b34a14610886578063b6c52324146108b9578063c49b9a80146108ce578063caac7934146108fa578063d543dbeb1461090f57610293565b80638f9a55c0116101135780638f9a55c01461079657806395d89b41146107ab578063a457c2d7146107c0578063a5ece941146107f9578063a69df4b51461080e578063a9059cbb1461082357610293565b806370a08231146106c7578063715018a6146106fa5780637d1db4a51461070f57806388f82020146107245780638da5cb5b146107575780638ee88c531461076c57610293565b80633685d419116101fe578063457c194c116101b7578063457c194c146105f857806349bd5a5e146106225780634a74bb021461063757806352390c021461064c5780635342acb41461067f5780636bc87c3a146106b257610293565b80633685d419146104e8578063395093511461051b5780633b124fe7146105545780633bd5d17314610569578063437823ec146105935780634549b039146105c657610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103b0610ffe565b34801561057557600080fd5b506102c26004803603602081101561058c57600080fd5b5035611004565b34801561059f57600080fd5b506102c2600480360360208110156105b657600080fd5b50356001600160a01b0316611102565b3480156105d257600080fd5b506103b0600480360360408110156105e957600080fd5b5080359060200135151561117e565b34801561060457600080fd5b506102c26004803603602081101561061b57600080fd5b5035611226565b34801561062e57600080fd5b506103d7611283565b34801561064357600080fd5b506103876112a7565b34801561065857600080fd5b506102c26004803603602081101561066f57600080fd5b50356001600160a01b03166112b5565b34801561068b57600080fd5b50610387600480360360208110156106a257600080fd5b50356001600160a01b031661143b565b3480156106be57600080fd5b506103b0611459565b3480156106d357600080fd5b506103b0600480360360208110156106ea57600080fd5b50356001600160a01b031661145f565b34801561070657600080fd5b506102c26114c1565b34801561071b57600080fd5b506103b0611551565b34801561073057600080fd5b506103876004803603602081101561074757600080fd5b50356001600160a01b0316611557565b34801561076357600080fd5b506103d7611575565b34801561077857600080fd5b506102c26004803603602081101561078f57600080fd5b5035611584565b3480156107a257600080fd5b506103b06115e1565b3480156107b757600080fd5b506102d96115e7565b3480156107cc57600080fd5b50610387600480360360408110156107e357600080fd5b506001600160a01b038135169060200135611648565b34801561080557600080fd5b506103d76116b0565b34801561081a57600080fd5b506102c26116bf565b34801561082f57600080fd5b506103876004803603604081101561084657600080fd5b506001600160a01b0381351690602001356117ad565b34801561086857600080fd5b506102c26004803603602081101561087f57600080fd5b50356117c1565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356001600160a01b031661183f565b3480156108c557600080fd5b506103b06119cc565b3480156108da57600080fd5b506102c2600480360360208110156108f157600080fd5b503515156119d2565b34801561090657600080fd5b506103d7611a79565b34801561091b57600080fd5b506102c26004803603602081101561093257600080fd5b5035611a88565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611b00565b34801561096f57600080fd5b506103b06004803603604081101561098657600080fd5b506001600160a01b0381358116916020013516611b9e565b3480156109aa57600080fd5b506102c2600480360360208110156109c157600080fd5b50356001600160a01b0316611bc9565b3480156109dd57600080fd5b506103d7611c42565b3480156109f257600080fd5b506102c260048036036020811015610a0957600080fd5b50356001600160a01b0316611c51565b348015610a2557600080fd5b506103b0611d37565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b60135481565b600061100e611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110695760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110788661231b565b94509450945094505060006110988786868686611093612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110c0908261240b565b6001600160a01b038716600090815260036020526040902055600c546110e6908261240b565b600c55600d546110f690886122c1565b600d5550505050505050565b61110a611d3d565b6000546001600160a01b0390811691161461115a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111d7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111e68761231b565b9450945094509450506000806112028987878787611093612255565b50915091508761121957509450610b399350505050565b9550610b39945050505050565b61122e611d3d565b6000546001600160a01b0390811691161461127e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b54610100900460ff1681565b6112bd611d3d565b6000546001600160a01b0390811691161461130d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561137b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d5576001600160a01b0381166000908152600360205260409020546113bb90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff161561149f57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114c9611d3d565b6000546001600160a01b03908116911614611519576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61158c611d3d565b6000546001600160a01b039081169116146115dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611655611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061167f611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117085760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161175e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117ba611d3d565b8484611e2d565b6117c9611d3d565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611839606461183383600b5461244d90919063ffffffff16565b90612278565b601e5550565b611847611d3d565b6000546001600160a01b03908116911614611897576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611904576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061192857fe5b6000918252602090912001546001600160a01b031614156119c457600a8054600019810190811061195557fe5b600091825260209091200154600a80546001600160a01b03909216918390811061197b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b600101611907565b60025490565b6119da611d3d565b6000546001600160a01b03908116911614611a2a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611a90611d3d565b6000546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611afa606461183383600b5461244d90919063ffffffff16565b601c5550565b611b08611d3d565b6000546001600160a01b03908116911614611b58576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bd1611d3d565b6000546001600160a01b03908116911614611c21576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600f546001600160a01b031690565b611c59611d3d565b6000546001600160a01b03908116911614611ca9576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cee5760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611575565b6001600160a01b0316836001600160a01b031614158015612042575061202c611575565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061145f565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118336013548561244d90919063ffffffff16565b6000610b3960646118336015548561244d90919063ffffffff16565b6000610b3960646118336017548561244d90919063ffffffff16565b6000610b3960646118336019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f000000000000000000000000000000000000000000000000000000000000000084611d41565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f000000000000000000000000000000000000000000000000000000000000000084611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c838988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd28988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e928988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed8988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122090a93fd67d1a378e87a545a151491574579caf7abf41df6fa3eeee70e968d54a64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610939578063dd62ed3e14610963578063ea2f0b371461099e578063ec034bed146109d1578063f2fde38b146109e6578063faf38f6214610a1957610293565b8063af2ce6141461085c578063b030b34a14610886578063b6c52324146108b9578063c49b9a80146108ce578063caac7934146108fa578063d543dbeb1461090f57610293565b80638f9a55c0116101135780638f9a55c01461079657806395d89b41146107ab578063a457c2d7146107c0578063a5ece941146107f9578063a69df4b51461080e578063a9059cbb1461082357610293565b806370a08231146106c7578063715018a6146106fa5780637d1db4a51461070f57806388f82020146107245780638da5cb5b146107575780638ee88c531461076c57610293565b80633685d419116101fe578063457c194c116101b7578063457c194c146105f857806349bd5a5e146106225780634a74bb021461063757806352390c021461064c5780635342acb41461067f5780636bc87c3a146106b257610293565b80633685d419146104e8578063395093511461051b5780633b124fe7146105545780633bd5d17314610569578063437823ec146105935780634549b039146105c657610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103b0610ffe565b34801561057557600080fd5b506102c26004803603602081101561058c57600080fd5b5035611004565b34801561059f57600080fd5b506102c2600480360360208110156105b657600080fd5b50356001600160a01b0316611102565b3480156105d257600080fd5b506103b0600480360360408110156105e957600080fd5b5080359060200135151561117e565b34801561060457600080fd5b506102c26004803603602081101561061b57600080fd5b5035611226565b34801561062e57600080fd5b506103d7611283565b34801561064357600080fd5b506103876112a7565b34801561065857600080fd5b506102c26004803603602081101561066f57600080fd5b50356001600160a01b03166112b5565b34801561068b57600080fd5b50610387600480360360208110156106a257600080fd5b50356001600160a01b031661143b565b3480156106be57600080fd5b506103b0611459565b3480156106d357600080fd5b506103b0600480360360208110156106ea57600080fd5b50356001600160a01b031661145f565b34801561070657600080fd5b506102c26114c1565b34801561071b57600080fd5b506103b0611551565b34801561073057600080fd5b506103876004803603602081101561074757600080fd5b50356001600160a01b0316611557565b34801561076357600080fd5b506103d7611575565b34801561077857600080fd5b506102c26004803603602081101561078f57600080fd5b5035611584565b3480156107a257600080fd5b506103b06115e1565b3480156107b757600080fd5b506102d96115e7565b3480156107cc57600080fd5b50610387600480360360408110156107e357600080fd5b506001600160a01b038135169060200135611648565b34801561080557600080fd5b506103d76116b0565b34801561081a57600080fd5b506102c26116bf565b34801561082f57600080fd5b506103876004803603604081101561084657600080fd5b506001600160a01b0381351690602001356117ad565b34801561086857600080fd5b506102c26004803603602081101561087f57600080fd5b50356117c1565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356001600160a01b031661183f565b3480156108c557600080fd5b506103b06119cc565b3480156108da57600080fd5b506102c2600480360360208110156108f157600080fd5b503515156119d2565b34801561090657600080fd5b506103d7611a79565b34801561091b57600080fd5b506102c26004803603602081101561093257600080fd5b5035611a88565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611b00565b34801561096f57600080fd5b506103b06004803603604081101561098657600080fd5b506001600160a01b0381358116916020013516611b9e565b3480156109aa57600080fd5b506102c2600480360360208110156109c157600080fd5b50356001600160a01b0316611bc9565b3480156109dd57600080fd5b506103d7611c42565b3480156109f257600080fd5b506102c260048036036020811015610a0957600080fd5b50356001600160a01b0316611c51565b348015610a2557600080fd5b506103b0611d37565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b60135481565b600061100e611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110695760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110788661231b565b94509450945094505060006110988786868686611093612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110c0908261240b565b6001600160a01b038716600090815260036020526040902055600c546110e6908261240b565b600c55600d546110f690886122c1565b600d5550505050505050565b61110a611d3d565b6000546001600160a01b0390811691161461115a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111d7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111e68761231b565b9450945094509450506000806112028987878787611093612255565b50915091508761121957509450610b399350505050565b9550610b39945050505050565b61122e611d3d565b6000546001600160a01b0390811691161461127e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000d97ed7379e7d210ca301e497bebf7eaa669e37e881565b601b54610100900460ff1681565b6112bd611d3d565b6000546001600160a01b0390811691161461130d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561137b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d5576001600160a01b0381166000908152600360205260409020546113bb90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff161561149f57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114c9611d3d565b6000546001600160a01b03908116911614611519576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61158c611d3d565b6000546001600160a01b039081169116146115dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611655611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061167f611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117085760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161175e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117ba611d3d565b8484611e2d565b6117c9611d3d565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611839606461183383600b5461244d90919063ffffffff16565b90612278565b601e5550565b611847611d3d565b6000546001600160a01b03908116911614611897576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611904576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061192857fe5b6000918252602090912001546001600160a01b031614156119c457600a8054600019810190811061195557fe5b600091825260209091200154600a80546001600160a01b03909216918390811061197b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b600101611907565b60025490565b6119da611d3d565b6000546001600160a01b03908116911614611a2a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611a90611d3d565b6000546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611afa606461183383600b5461244d90919063ffffffff16565b601c5550565b611b08611d3d565b6000546001600160a01b03908116911614611b58576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bd1611d3d565b6000546001600160a01b03908116911614611c21576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600f546001600160a01b031690565b611c59611d3d565b6000546001600160a01b03908116911614611ca9576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cee5760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611575565b6001600160a01b0316836001600160a01b031614158015612042575061202c611575565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061145f565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f000000000000000000000000d97ed7379e7d210ca301e497bebf7eaa669e37e86001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118336013548561244d90919063ffffffff16565b6000610b3960646118336015548561244d90919063ffffffff16565b6000610b3960646118336017548561244d90919063ffffffff16565b6000610b3960646118336019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c838988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd28988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e928988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed8988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122090a93fd67d1a378e87a545a151491574579caf7abf41df6fa3eeee70e968d54a64736f6c634300060c0033

Deployed Bytecode Sourcemap

25639:23243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35326:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35326:98:0;;:::i;:::-;;28724:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29636:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29636:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30757:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27070:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27070:51:0;;;;;;;;;;;;;;29001:95;;;;;;;;;;;;;:::i;32457:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32457:368:0;-1:-1:-1;;;;;32457:368:0;;:::i;26871:32::-;;;;;;;;;;;;;:::i;29805:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29805:313:0;;;;;;;;;;;;;;;;;:::i;32192:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32192:253:0;;:::i;28910:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33733:475;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33733:475:0;-1:-1:-1;;;;;33733:475:0;;:::i;30126:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30126:218:0;;;;;;;;:::i;26683:26::-;;;;;;;;;;;;;:::i;31068:548::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31068:548:0;;:::i;35081:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35081:111:0;-1:-1:-1;;;;;35081:111:0;;:::i;31624:560::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31624:560:0;;;;;;;;;:::i;35570:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35570:122:0;;:::i;27128:38::-;;;;;;;;;;;;;:::i;27207:40::-;;;;;;;;;;;;;:::i;33392:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33392:333:0;-1:-1:-1;;;;;33392:333:0;;:::i;40932:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40932:123:0;-1:-1:-1;;;;;40932:123:0;;:::i;26770:32::-;;;;;;;;;;;;;:::i;29104:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29104:198:0;-1:-1:-1;;;;;29104:198:0;;:::i;16234:148::-;;;;;;;;;;;;;:::i;27260:51::-;;;;;;;;;;;;;:::i;30629:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30629:120:0;-1:-1:-1;;;;;30629:120:0;;:::i;15591:79::-;;;;;;;;;;;;;:::i;35436:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35436:122:0;;:::i;27393:55::-;;;;;;;;;;;;;:::i;28815:87::-;;;;;;;;;;;;;:::i;30352:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30352:269:0;;;;;;;;:::i;30959:101::-;;;;;;;;;;;;;:::i;17244:293::-;;;;;;;;;;;;;:::i;29310:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29310:167:0;;;;;;;;:::i;35878:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35878:192:0;;:::i;32833:544::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32833:544:0;-1:-1:-1;;;;;32833:544:0;;:::i;16789:89::-;;;;;;;;;;;;;:::i;36078:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36078:171:0;;;;:::i;26385:85::-;;;;;;;;;;;;;:::i;35703:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35703:162:0;;:::i;16954:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16954:214:0;;:::i;29485:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29485:143:0;;;;;;;;;;:::i;35204:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35204:110:0;-1:-1:-1;;;;;35204:110:0;;:::i;30852:99::-;;;;;;;;;;;;;:::i;16537:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16537:244:0;-1:-1:-1;;;;;16537:244:0;;:::i;26972:31::-;;;;;;;;;;;;;:::i;35326:98::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;35400:7:::1;:16:::0;35326:98::o;28724:83::-;28794:5;28787:12;;;;;;;;-1:-1:-1;;28787:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28761:13;;28787:12;;28794:5;;28787:12;;28794:5;28787:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28724:83;:::o;29636:161::-;29711:4;29728:39;29737:12;:10;:12::i;:::-;29751:7;29760:6;29728:8;:39::i;:::-;-1:-1:-1;29785:4:0;29636:161;;;;;:::o;30757:87::-;30826:10;;30757:87;:::o;27070:51::-;;;:::o;29001:95::-;29081:7;;29001:95;:::o;32457:368::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;32556:42:::1;-1:-1:-1::0;;;;;32545:53:0;::::1;;;32537:100;;;;-1:-1:-1::0;;;32537:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32661:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32660:27;32651:71;;;::::0;;-1:-1:-1;;;32651:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32736:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32736:33:0::1;32765:4;32736:33:::0;;::::1;::::0;;;32783:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32783:30:0::1;::::0;;::::1;::::0;;32457:368::o;26871:32::-;;;;:::o;29805:313::-;29903:4;29920:36;29930:6;29938:9;29949:6;29920:9;:36::i;:::-;29967:121;29976:6;29984:12;:10;:12::i;:::-;29998:89;30036:6;29998:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29998:19:0;;;;;;:11;:19;;;;;;30018:12;:10;:12::i;:::-;-1:-1:-1;;;;;29998:33:0;;;;;;;;;;;;-1:-1:-1;29998:33:0;;;:89;:37;:89::i;:::-;29967:8;:121::i;:::-;-1:-1:-1;30106:4:0;29805:313;;;;;:::o;32192:253::-;32258:7;32297;;32286;:18;;32278:73;;;;-1:-1:-1;;;32278:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32362:19;32385:10;:8;:10::i;:::-;32362:33;-1:-1:-1;32413:24:0;:7;32362:33;32413:11;:24::i;:::-;32406:31;;;32192:253;;;;:::o;28910:83::-;28976:9;;;;28910:83;:::o;33733:475::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33815:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33807:56;;;::::0;;-1:-1:-1;;;33807:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33879:9;33874:327;33898:9;:16:::0;33894:20;::::1;33874:327;;;33956:7;-1:-1:-1::0;;;;;33940:23:0::1;:9;33950:1;33940:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33940:12:0::1;:23;33936:254;;;33999:9;34009:16:::0;;-1:-1:-1;;34009:20:0;;;33999:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33984:9:::1;:12:::0;;-1:-1:-1;;;;;33999:31:0;;::::1;::::0;33994:1;;33984:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33984:46:0::1;-1:-1:-1::0;;;;;33984:46:0;;::::1;;::::0;;34049:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34088:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34088:28:0::1;::::0;;34135:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34135:15:0;;;;;-1:-1:-1;;;;;;34135:15:0::1;::::0;;;;;34169:5:::1;;33936:254;33916:3;;33874:327;;;;33733:475:::0;:::o;30126:218::-;30214:4;30231:83;30240:12;:10;:12::i;:::-;30254:7;30263:50;30302:10;30263:11;:25;30275:12;:10;:12::i;:::-;-1:-1:-1;;;;;30263:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30263:25:0;;;:34;;;;;;;;;;;:38;:50::i;26683:26::-;;;;:::o;31068:548::-;31120:14;31137:12;:10;:12::i;:::-;-1:-1:-1;;;;;31169:19:0;;;;;;:11;:19;;;;;;31120:29;;-1:-1:-1;31169:19:0;;31168:20;31160:77;;;;-1:-1:-1;;;31160:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31252:12;31266:18;31286;31306:17;31327:20;31339:7;31327:11;:20::i;:::-;31250:97;;;;;;;;;31359:15;31380:73;31392:7;31401:4;31407:10;31419;31431:9;31442:10;:8;:10::i;:::-;31380:11;:73::i;:::-;-1:-1:-1;;;;;;;31492:15:0;;;;;;:7;:15;;;;;;31358:95;;-1:-1:-1;31492:28:0;;31358:95;31492:19;:28::i;:::-;-1:-1:-1;;;;;31474:15:0;;;;;;:7;:15;;;;;:46;31541:7;;:20;;31553:7;31541:11;:20::i;:::-;31531:7;:30;31585:10;;:23;;31600:7;31585:14;:23::i;:::-;31572:10;:36;-1:-1:-1;;;;;;;31068:548:0:o;35081:111::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35150:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;35150:34:0::1;35180:4;35150:34;::::0;;35081:111::o;31624:560::-;31714:7;31753;;31742;:18;;31734:62;;;;;-1:-1:-1;;;31734:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31819:12;31833:18;31853;31873:17;31894:20;31906:7;31894:11;:20::i;:::-;31817:97;;;;;;;;;31926:15;31943:23;31971:73;31983:7;31992:4;31998:10;32010;32022:9;32033:10;:8;:10::i;31971:73::-;31925:119;;;;;32062:17;32057:120;;-1:-1:-1;32103:7:0;-1:-1:-1;32096:14:0;;-1:-1:-1;;;;32096:14:0;32057:120;32150:15;-1:-1:-1;32143:22:0;;-1:-1:-1;;;;;32143:22:0;35570:122;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;35656:13:::1;:28:::0;35570:122::o;27128:38::-;;;:::o;27207:40::-;;;;;;;;;:::o;33392:333::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33475:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33474:21;33466:61;;;::::0;;-1:-1:-1;;;33466:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33541:16:0;::::1;33560:1;33541:16:::0;;;:7:::1;:16;::::0;;;;;:20;33538:108:::1;;-1:-1:-1::0;;;;;33617:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33597:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33578:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33538:108:::1;-1:-1:-1::0;;;;;33656:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33656:27:0::1;33679:4;33656:27:::0;;::::1;::::0;;;33694:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33694:23:0::1;::::0;;::::1;::::0;;33392:333::o;40932:123::-;-1:-1:-1;;;;;41020:27:0;40996:4;41020:27;;;:18;:27;;;;;;;;;40932:123::o;26770:32::-;;;;:::o;29104:198::-;-1:-1:-1;;;;;29194:20:0;;29170:7;29194:20;;;:11;:20;;;;;;;;29190:49;;;-1:-1:-1;;;;;;29223:16:0;;;;;;:7;:16;;;;;;29216:23;;29190:49;-1:-1:-1;;;;;29277:16:0;;;;;;:7;:16;;;;;;29257:37;;:19;:37::i;16234:148::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;16341:1:::1;16325:6:::0;;16304:40:::1;::::0;-1:-1:-1;;;;;16325:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16304:40:0;16341:1;;16304:40:::1;16372:1;16355:19:::0;;-1:-1:-1;;;;;;16355:19:0::1;::::0;;16234:148::o;27260:51::-;;;;:::o;30629:120::-;-1:-1:-1;;;;;30721:20:0;30697:4;30721:20;;;:11;:20;;;;;;;;;30629:120::o;15591:79::-;15629:7;15656:6;-1:-1:-1;;;;;15656:6:0;15591:79;:::o;35436:122::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;35522:13:::1;:28:::0;35436:122::o;27393:55::-;;;;:::o;28815:87::-;28887:7;28880:14;;;;;;;;-1:-1:-1;;28880:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28854:13;;28880:14;;28887:7;;28880:14;;28887:7;28880:14;;;;;;;;;;;;;;;;;;;;;;;;30352:269;30445:4;30462:129;30471:12;:10;:12::i;:::-;30485:7;30494:96;30533:15;30494:96;;;;;;;;;;;;;;;;;:11;:25;30506:12;:10;:12::i;:::-;-1:-1:-1;;;;;30494:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30494:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30959:101::-;31035:17;;-1:-1:-1;;;;;31035:17:0;30959:101;:::o;17244:293::-;17296:14;;-1:-1:-1;;;;;17296:14:0;17314:10;17296:28;17288:76;;;;-1:-1:-1;;;17288:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17389:9;;17383:3;:15;17375:60;;;;;-1:-1:-1;;;17375:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17480:14;;;17472:6;;17451:44;;-1:-1:-1;;;;;17480:14:0;;;;17472:6;;;;-1:-1:-1;;;;;;;;;;;17451:44:0;;17515:14;;;17506:23;;-1:-1:-1;;;;;;17506:23:0;-1:-1:-1;;;;;17515:14:0;;;17506:23;;;;;;17244:293::o;29310:167::-;29388:4;29405:42;29415:12;:10;:12::i;:::-;29429:9;29440:6;29405:9;:42::i;35878:192::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;35987:61:::1;36032:5;35987:26;35999:13;35987:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:61::i;:::-;35970:14;:78:::0;-1:-1:-1;35878:192:0:o;32833:544::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32926:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32917:66;;;::::0;;-1:-1:-1;;;32917:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33002:9;32997:369;33021:16;:23:::0;33017:27;::::1;32997:369;;;33098:7;-1:-1:-1::0;;;;;33075:30:0::1;:16;33092:1;33075:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33075:19:0::1;:30;33071:281;;;33153:16;33170:23:::0;;-1:-1:-1;;33170:27:0;;;33153:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33131:16:::1;:19:::0;;-1:-1:-1;;;;;33153:45:0;;::::1;::::0;33148:1;;33131:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;33131:67:0::1;-1:-1:-1::0;;;;;33131:67:0;;::::1;;::::0;;33222:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;33222:34:0::1;::::0;;33280:16:::1;:22:::0;;;::::1;;;33071:281;33046:3;;32997:369;;16789:89:::0;16861:9;;16789:89;:::o;36078:171::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;36155:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;36155:32:0;;::::1;::::0;;;::::1;::::0;;;36203:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;36078:171:::0;:::o;26385:85::-;;;-1:-1:-1;;;;;26385:85:0;;:::o;35703:162::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;35797:60:::1;35841:5;35797:25;35809:12;35797:7;;:11;;:25;;;;:::i;:60::-;35782:12;:75:::0;-1:-1:-1;35703:162:0:o;16954:214::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;17035:6:::1;::::0;;;17018:23;;-1:-1:-1;;;;;;17018:23:0;;::::1;-1:-1:-1::0;;;;;17035:6:0;::::1;17018:23;::::0;;;17052:19:::1;::::0;;17094:3:::1;:10:::0;::::1;17082:9;:22:::0;17120:40:::1;::::0;17035:6;;-1:-1:-1;;;;;;;;;;;17120:40:0;17035:6;;17120:40:::1;16954:214:::0;:::o;29485:143::-;-1:-1:-1;;;;;29593:18:0;;;29566:7;29593:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29485:143::o;35204:110::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35271:27:0::1;35301:5;35271:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35271:35:0::1;::::0;;35204:110::o;30852:99::-;30927:16;;-1:-1:-1;;;;;30927:16:0;30852:99;:::o;16537:244::-;15813:12;:10;:12::i;:::-;15803:6;;-1:-1:-1;;;;;15803:6:0;;;:22;;;15795:67;;;;;-1:-1:-1;;;15795:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15795:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16626:22:0;::::1;16618:73;;;;-1:-1:-1::0;;;16618:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16728:6;::::0;;16707:38:::1;::::0;-1:-1:-1;;;;;16707:38:0;;::::1;::::0;16728:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16707:38:0;::::1;16756:6;:17:::0;;-1:-1:-1;;;;;;16756:17:0::1;-1:-1:-1::0;;;;;16756:17:0;;;::::1;::::0;;;::::1;::::0;;16537:244::o;26972:31::-;;;;:::o;7999:106::-;8087:10;7999:106;:::o;41063:337::-;-1:-1:-1;;;;;41156:19:0;;41148:68;;;;-1:-1:-1;;;41148:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41235:21:0;;41227:68;;;;-1:-1:-1;;;41227:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41308:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41360:32;;;;;;;;;;;;;;;;;41063:337;;;:::o;41408:2095::-;-1:-1:-1;;;;;41530:18:0;;41522:68;;;;-1:-1:-1;;;41522:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41609:16:0;;41601:64;;;;-1:-1:-1;;;41601:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41693:1;41684:6;:10;41676:64;;;;-1:-1:-1;;;41676:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41760:23:0;;;;;;:17;:23;;;;;;;;41759:24;41751:56;;;;;-1:-1:-1;;;41751:56:0;;;;;;;;;;;;-1:-1:-1;;;41751:56:0;;;;;;;;;;;;;;;41845:10;41827:29;;;;:17;:29;;;;;;;;41826:30;41818:54;;;;;-1:-1:-1;;;41818:54:0;;;;;;;;;;;;-1:-1:-1;;;41818:54:0;;;;;;;;;;;;;;;41910:9;41892:28;;;;:17;:28;;;;;;;;41891:29;41883:53;;;;;-1:-1:-1;;;41883:53:0;;;;;;;;;;;;-1:-1:-1;;;41883:53:0;;;;;;;;;;;;;;;41958:7;:5;:7::i;:::-;-1:-1:-1;;;;;41950:15:0;:4;-1:-1:-1;;;;;41950:15:0;;;:32;;;;;41975:7;:5;:7::i;:::-;-1:-1:-1;;;;;41969:13:0;:2;-1:-1:-1;;;;;41969:13:0;;;41950:32;41947:125;;;42015:12;;42005:6;:22;;41997:75;;;;-1:-1:-1;;;41997:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42105:14;;42095:6;:24;;42087:71;;;;-1:-1:-1;;;42087:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42453:28;42484:24;42502:4;42484:9;:24::i;:::-;42453:55;;42556:12;;42532:20;:36;42529:112;;-1:-1:-1;42617:12:0;;42529:112;42712:29;;42688:53;;;;;;;42770;;-1:-1:-1;42807:16:0;;;;42806:17;42770:53;:91;;;;;42848:13;-1:-1:-1;;;;;42840:21:0;:4;-1:-1:-1;;;;;42840:21:0;;;42770:91;:129;;;;-1:-1:-1;42878:21:0;;;;;;;42770:129;42752:318;;;42949:29;;42926:52;;43022:36;43037:20;43022:14;:36::i;:::-;-1:-1:-1;;;;;43278:24:0;;43151:12;43278:24;;;:18;:24;;;;;;43166:4;;43278:24;;;:50;;-1:-1:-1;;;;;;43306:22:0;;;;;;:18;:22;;;;;;;;43278:50;43275:96;;;-1:-1:-1;43354:5:0;43275:96;43457:38;43472:4;43477:2;43480:6;43487:7;43457:14;:38::i;:::-;41408:2095;;;;;;:::o;4409:192::-;4495:7;4531:12;4523:6;;;;4515:29;;;;-1:-1:-1;;;4515:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4567:5:0;;;4409:192::o;37772:163::-;37813:7;37834:15;37851;37870:19;:17;:19::i;:::-;37833:56;;-1:-1:-1;37833:56:0;-1:-1:-1;37907:20:0;37833:56;;37907:11;:20::i;:::-;37900:27;;;;37772:163;:::o;5807:132::-;5865:7;5892:39;5896:1;5899;5892:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5885:46;5807:132;-1:-1:-1;;;5807:132:0:o;3506:181::-;3564:7;3596:5;;;3620:6;;;;3612:46;;;;;-1:-1:-1;;;3612:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36511:630;36571:7;36580;36589;36598;36607;36627:12;36642:24;36658:7;36642:15;:24::i;:::-;36627:39;;36677:18;36698:30;36720:7;36698:21;:30::i;:::-;36677:51;;36739:18;36760:30;36782:7;36760:21;:30::i;:::-;36739:51;;36801:17;36821:29;36842:7;36821:20;:29::i;:::-;36801:49;-1:-1:-1;36861:23:0;36887:33;36909:10;36887:17;:7;36899:4;36887:11;:17::i;:::-;:21;;:33::i;:::-;36861:59;-1:-1:-1;36957:31:0;36861:59;36977:10;36957:19;:31::i;:::-;36939:49;-1:-1:-1;37025:30:0;36939:49;37045:9;37025:19;:30::i;:::-;37007:48;37093:4;;-1:-1:-1;37099:10:0;;-1:-1:-1;37111:10:0;;-1:-1:-1;37099:10:0;-1:-1:-1;36511:630:0;;-1:-1:-1;;;36511:630:0:o;37149:615::-;37303:7;;;;37359:24;:7;37371:11;37359;:24::i;:::-;37341:42;-1:-1:-1;37394:12:0;37409:21;:4;37418:11;37409:8;:21::i;:::-;37394:36;-1:-1:-1;37441:18:0;37462:27;:10;37477:11;37462:14;:27::i;:::-;37441:48;-1:-1:-1;37500:18:0;37521:27;:10;37536:11;37521:14;:27::i;:::-;37500:48;-1:-1:-1;37559:17:0;37579:26;:9;37593:11;37579:13;:26::i;:::-;37559:46;-1:-1:-1;37616:23:0;37642:64;37559:46;37642:49;37680:10;37642:49;37664:10;37642:49;:7;37654:4;37642:11;:17::i;:64::-;37725:7;;;;-1:-1:-1;37751:4:0;;-1:-1:-1;37149:615:0;;-1:-1:-1;;;;;;;;;;;37149:615:0:o;3970:136::-;4028:7;4055:43;4059:1;4062;4055:43;;;;;;;;;;;;;;;;;:3;:43::i;4860:471::-;4918:7;5163:6;5159:47;;-1:-1:-1;5193:1:0;5186:8;;5159:47;5230:5;;;5234:1;5230;:5;:1;5254:5;;;;;:10;5246:56;;;;-1:-1:-1;;;5246:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43511:1022;27863:16;:23;;27882:4;-1:-1:-1;;27863:23:0;;;;;;43671:13:::1;::::0;43655::::1;::::0;:29;;::::1;43688:1;43654:35;::::0;-1:-1:-1;;43654:35:0;;43735:22;::::1;43654:35:::0;43735:36:::1;;;;;::::0;-1:-1:-1;43799:33:0;;::::1;43870:21;43904:24;43799:33:::0;43904:16:::1;:24::i;:::-;43941:20;43988:14;43964:21;:38;43941:61;;44013:19;44064:13;;44050:11;:27;44034:12;:44;;;;;44135:13;::::0;44034:44;;::::1;::::0;-1:-1:-1;44121:27:0;::::1;44164:25:::0;;44161:158:::1;;44246:61;44259:24;44285:21;44246:12;:61::i;:::-;44406:13;::::0;44388:31;;44402:1:::1;44388:31:::0;44433:16;;44430:96:::1;;44473:17;::::0;44465:49:::1;::::0;-1:-1:-1;;;;;44473:17:0;;::::1;::::0;44465:49;::::1;;;::::0;44501:12;;44473:17:::1;44465:49:::0;44473:17;44465:49;44501:12;44473:17;44465:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44430:96;-1:-1:-1::0;;27909:16:0;:24;;-1:-1:-1;;27909:24:0;;;-1:-1:-1;;;;;;;43511:1022:0:o;45738:834::-;45849:7;45845:40;;45871:14;:12;:14::i;:::-;-1:-1:-1;;;;;45910:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45934:22:0;;;;;;:11;:22;;;;;;;;45933:23;45910:46;45906:597;;;45973:48;45995:6;46003:9;46014:6;45973:21;:48::i;:::-;45906:597;;;-1:-1:-1;;;;;46044:19:0;;;;;;:11;:19;;;;;;;;46043:20;:46;;;;-1:-1:-1;;;;;;46067:22:0;;;;;;:11;:22;;;;;;;;46043:46;46039:464;;;46106:46;46126:6;46134:9;46145:6;46106:19;:46::i;46039:464::-;-1:-1:-1;;;;;46175:19:0;;;;;;:11;:19;;;;;;;;46174:20;:47;;;;-1:-1:-1;;;;;;46199:22:0;;;;;;:11;:22;;;;;;;;46198:23;46174:47;46170:333;;;46238:44;46256:6;46264:9;46275:6;46238:17;:44::i;46170:333::-;-1:-1:-1;;;;;46304:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46327:22:0;;;;;;:11;:22;;;;;;;;46304:45;46300:203;;;46366:48;46388:6;46396:9;46407:6;46366:21;:48::i;46300:203::-;46447:44;46465:6;46473:9;46484:6;46447:17;:44::i;:::-;46527:7;46523:41;;46549:15;:13;:15::i;:::-;45738:834;;;;:::o;37943:561::-;38040:7;;38076;;37993;;;;;38100:289;38124:9;:16;38120:20;;38100:289;;;38190:7;38166;:21;38174:9;38184:1;38174:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38174:12:0;38166:21;;;;;;;;;;;;;:31;;:66;;;38225:7;38201;:21;38209:9;38219:1;38209:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38209:12:0;38201:21;;;;;;;;;;;;;:31;38166:66;38162:97;;;38242:7;;38251;;38234:25;;;;;;;;;38162:97;38284:34;38296:7;:21;38304:9;38314:1;38304:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38304:12:0;38296:21;;;;;;;;;;;;;38284:7;;:11;:34::i;:::-;38274:44;;38343:34;38355:7;:21;38363:9;38373:1;38363:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38363:12:0;38355:21;;;;;;;;;;;;;38343:7;;:11;:34::i;:::-;38333:44;-1:-1:-1;38142:3:0;;38100:289;;;-1:-1:-1;38425:7:0;;38413;;:20;;:11;:20::i;:::-;38403:7;:30;38399:61;;;38443:7;;38452;;38435:25;;;;;;;;38399:61;38479:7;;-1:-1:-1;38488:7:0;-1:-1:-1;37943:561:0;;;:::o;6435:278::-;6521:7;6556:12;6549:5;6541:28;;;;-1:-1:-1;;;6541:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6580:9;6596:1;6592;:5;;;;;;;6435:278;-1:-1:-1;;;;;6435:278:0:o;39616:154::-;39680:7;39707:55;39746:5;39707:20;39719:7;;39707;:11;;:20;;;;:::i;39778:166::-;39848:7;39875:61;39920:5;39875:26;39887:13;;39875:7;:11;;:26;;;;:::i;39952:166::-;40022:7;40049:61;40094:5;40049:26;40061:13;;40049:7;:11;;:26;;;;:::i;40126:164::-;40195:7;40222:60;40266:5;40222:25;40234:12;;40222:7;:11;;:25;;;;:::i;44541:589::-;44691:16;;;44705:1;44691:16;;;44667:21;44691:16;;;;;44667:21;44691:16;;;;;;;;;;-1:-1:-1;44691:16:0;44667:40;;44736:4;44718;44723:1;44718:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;44718:23:0;;;-1:-1:-1;;;;;44718:23:0;;;;;44762:15;-1:-1:-1;;;;;44762:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44762:22:0;44752:7;;:4;;44757:1;;44752:7;;;;;;;;;;;:32;-1:-1:-1;;;;;44752:32:0;;;-1:-1:-1;;;;;44752:32:0;;;;;44797:62;44814:4;44829:15;44847:11;44797:8;:62::i;:::-;44898:15;-1:-1:-1;;;;;44898:66:0;;44979:11;45005:1;45049:4;45076;45096:15;44898:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44898:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45138:519;45286:62;45303:4;45318:15;45336:11;45286:8;:62::i;:::-;45391:258;;;-1:-1:-1;;;45391:258:0;;45463:4;45391:258;;;;;;;;;;;;45509:1;45391:258;;;;;;;;;;;;;;45623:15;45391:258;;;;;;-1:-1:-1;;;;;45391:15:0;:31;;;;45430:9;;45391:258;;;;;;;;;;;;;;;45430:9;45391:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40298:399;40344:7;;:12;:34;;;;-1:-1:-1;40360:13:0;;:18;40344:34;40341:46;;;40380:7;;40341:46;40425:7;;;40407:15;:25;40467:13;;;40443:21;:37;40515:13;;;40491:21;:37;40562:12;;;40539:20;:35;-1:-1:-1;40595:11:0;;;;40617:17;;;;40645;;;40673:16;40298:399;:::o;48106:773::-;48209:23;48234:12;48248:18;48268;48288:17;48309:20;48321:7;48309:11;:20::i;:::-;48208:121;;;;;;;;;;48341:15;48358:23;48383:12;48399:73;48411:7;48420:4;48426:10;48438;48450:9;48461:10;:8;:10::i;48399:73::-;-1:-1:-1;;;;;48503:15:0;;;;;;:7;:15;;;;;;48340:132;;-1:-1:-1;48340:132:0;;-1:-1:-1;48340:132:0;-1:-1:-1;48503:28:0;;48523:7;48503:19;:28::i;:::-;-1:-1:-1;;;;;48485:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48560:7;:15;;;;:28;;48580:7;48560:19;:28::i;:::-;-1:-1:-1;;;;;48542:15:0;;;;;;;:7;:15;;;;;;:46;;;;48620:18;;;;;;;:39;;48643:15;48620:22;:39::i;:::-;-1:-1:-1;;;;;48599:18:0;;;;;;:7;:18;;;;;:60;48673:26;48688:10;48673:14;:26::i;:::-;48710:29;48728:10;48710:17;:29::i;:::-;48750:27;48767:9;48750:16;:27::i;:::-;48788:23;48800:4;48806;48788:11;:23::i;:::-;48844:9;-1:-1:-1;;;;;48827:44:0;48836:6;-1:-1:-1;;;;;48827:44:0;;48855:15;48827:44;;;;;;;;;;;;;;;;;;48106:773;;;;;;;;;;;:::o;47305:793::-;47406:23;47431:12;47445:18;47465;47485:17;47506:20;47518:7;47506:11;:20::i;:::-;47405:121;;;;;;;;;;47538:15;47555:23;47580:12;47596:73;47608:7;47617:4;47623:10;47635;47647:9;47658:10;:8;:10::i;47596:73::-;-1:-1:-1;;;;;47700:15:0;;;;;;:7;:15;;;;;;47537:132;;-1:-1:-1;47537:132:0;;-1:-1:-1;47537:132:0;-1:-1:-1;47700:28:0;;47537:132;47700:19;:28::i;:::-;-1:-1:-1;;;;;47682:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47760:18;;;;;:7;:18;;;;;:39;;47783:15;47760:22;:39::i;:::-;-1:-1:-1;;;;;47739:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47831:7;:18;;;;:39;;47854:15;47831:22;:39::i;46580:717::-;46679:23;46704:12;46718:18;46738;46758:17;46779:20;46791:7;46779:11;:20::i;:::-;46678:121;;;;;;;;;;46811:15;46828:23;46853:12;46869:73;46881:7;46890:4;46896:10;46908;46920:9;46931:10;:8;:10::i;46869:73::-;-1:-1:-1;;;;;46981:15:0;;;;;;:7;:15;;;;;;46810:132;;-1:-1:-1;46810:132:0;;-1:-1:-1;46810:132:0;-1:-1:-1;46981:28:0;;46810:132;46981:19;:28::i;34224:841::-;34327:23;34352:12;34366:18;34386;34406:17;34427:20;34439:7;34427:11;:20::i;:::-;34326:121;;;;;;;;;;34459:15;34476:23;34501:12;34517:73;34529:7;34538:4;34544:10;34556;34568:9;34579:10;:8;:10::i;34517:73::-;-1:-1:-1;;;;;34621:15:0;;;;;;:7;:15;;;;;;34458:132;;-1:-1:-1;34458:132:0;;-1:-1:-1;34458:132:0;-1:-1:-1;34621:28:0;;34641:7;34621:19;:28::i;:::-;-1:-1:-1;;;;;34603:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34678:7;:15;;;;:28;;34698:7;34678:19;:28::i;40705:219::-;40759:15;;40749:7;:25;40801:21;;40785:13;:37;40849:21;;40833:13;:37;40896:20;;40881:12;:35;40705:219::o;38512:355::-;38575:19;38598:10;:8;:10::i;:::-;38575:33;-1:-1:-1;38619:18:0;38640:27;:10;38575:33;38640:14;:27::i;:::-;38719:4;38703:22;;;;:7;:22;;;;;;38619:48;;-1:-1:-1;38703:38:0;;38619:48;38703:26;:38::i;:::-;38694:4;38678:22;;;;:7;:22;;;;;;;;:63;;;;38755:11;:26;;;;;;38752:107;;;38837:4;38821:22;;;;:7;:22;;;;;;:38;;38848:10;38821:26;:38::i;:::-;38812:4;38796:22;;;;:7;:22;;;;;:63;38752:107;38512:355;;;:::o;39241:367::-;39305:19;39328:10;:8;:10::i;:::-;39305:33;-1:-1:-1;39349:17:0;39369:26;:9;39305:33;39369:13;:26::i;:::-;39442:16;;-1:-1:-1;;;;;39442:16:0;39434:25;;;;:7;:25;;;;;;39349:46;;-1:-1:-1;39434:40:0;;39349:46;39434:29;:40::i;:::-;39414:16;;;-1:-1:-1;;;;;39414:16:0;;;39406:25;;;;:7;:25;;;;;;;;:68;;;;39500:16;;;;;39488:29;;:11;:29;;;;;;;39485:115;;;39568:16;;-1:-1:-1;;;;;39568:16:0;39560:25;;;;:7;:25;;;;;;:40;;39590:9;39560:29;:40::i;:::-;39540:16;;-1:-1:-1;;;;;39540:16:0;39532:25;;;;:7;:25;;;;;:68;39241:367;;;:::o;36356:147::-;36434:7;;:17;;36446:4;36434:11;:17::i;:::-;36424:7;:27;36475:10;;:20;;36490:4;36475:14;:20::i;:::-;36462:10;:33;-1:-1:-1;;36356:147:0:o

Swarm Source

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