ETH Price: $3,281.76 (-0.46%)

Token

RAFFY (RAFFY)
 

Overview

Max Total Supply

100,000,000,000 RAFFY

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
thetearsofchildren.eth
Balance
375,883,284.036169125 RAFFY

Value
$0.00
0x6ba3014f372bedfb7861ce4076504f606f0d3d4f
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:
RAFFY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.1;
// telegram @RAFFYTOKEN
// 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) {
        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 () {
        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 = block.timestamp + 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(block.timestamp > _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 RAFFY is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "RAFFY";
    string private _symbol = "RAFFY";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 100_000_000_000;
    uint256 private _tTotal = initialsupply * 10 ** _decimals;
    address payable private _marketingWallet;
    
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping(address => uint256) private buycooldown;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBlacklisted;
    address[] private _excluded;
    bool private cooldownEnabled = true;
    uint256 public cooldown = 30 seconds;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 2;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 _sellLiquidityFee;
    uint256 _sellMarketingFee;
    uint256 _sellTaxFee;
    uint256 _buyLiquidtyFee;
    uint256 _buyMarketingFee;
    uint256 _buytaxFee;
    uint256 _transferTaxFee;
    uint256 _transferMarketingFee;
    uint256 _transferLiquidityFee;


    uint256 private maxBuyPercent = 1;
    uint256 private maxBuyDivisor = 100;
    uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor;
   
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = _tTotal / 100; // 1%
    
    event ToMarketing(uint256 bnbSent);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address marketingWallet) {
        _rOwned[_msgSender()] = _rTotal;
         _marketingWallet = payable(marketingWallet);
        // Pancake Swap V2 address
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        // uniswap address
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = 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 allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];}
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() {
        uint256 swapAmount = _tTotal.mul(percent).div(divisor);
        numTokensSellToAddToLiquidity = swapAmount;
    }
        
    function setLiquidityFeePercent(uint256 buyLiquidtyFee, uint256 sellLiquidityFee, uint256 transferLiquidityFee) external onlyOwner() {
        _buyLiquidtyFee = buyLiquidtyFee;
        _sellLiquidityFee = sellLiquidityFee;
        _transferLiquidityFee = transferLiquidityFee;
    }    
    
    function setMarketingFeePercent(uint256 buyMarketingFee, uint256 sellMarketingFee, uint256 transferMarketingfee) external onlyOwner() {
        _buyMarketingFee = buyMarketingFee;
        _sellMarketingFee = sellMarketingFee;
        _transferMarketingFee = transferMarketingfee;
    }    
    
    function setTaxFeePercent(uint256 buyTaxFee, uint256 sellTaxFee, uint256 transferTaxFee) external onlyOwner() {
        _buytaxFee = buyTaxFee;
        _sellTaxFee = sellTaxFee;
        _transferTaxFee = transferTaxFee;
    }

    function setCooldown(uint256 _cooldown) external onlyOwner() {
        cooldown = _cooldown;
    }
    
    function setMaxBuyPercent(uint256 percent, uint divisor) external onlyOwner {
        require(percent >= 1 && divisor <= 1000); // cannot set lower than .1%
        uint256 new_tx = _tTotal.mul(percent).div(divisor);
        require(new_tx >= (_tTotal / 1000), "Max tx must be above 0.1% of total supply.");
        _maxBuyAmount = new_tx;
    }

    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 setBlacklistStatus(address account, bool Blacklisted) external onlyOwner {
            if (Blacklisted = true) {
                _isBlacklisted[account] = true; 
            } else if(Blacklisted = false) {
                _isBlacklisted[account] = false;
                }
    }
    
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _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");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Uniswap router.');
        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 already 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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to receive ETH from uniswapV2Router when swapping
    receive() external payable {}

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing);
    }

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing);
        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 _takeMarketing(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 calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

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

    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

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

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

    // swapAndLiquify takes the balance to be liquified and make sure it is equally distributed
    // in BNB and Harold
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // 1/2 balance is sent to the marketing wallet, 1/2 is added to the liquidity pool
        uint256 marketingTokenBalance = contractTokenBalance.div(2);
        uint256 liquidityTokenBalance = contractTokenBalance.sub(marketingTokenBalance);
        uint256 tokenBalanceToLiquifyAsBNB = liquidityTokenBalance.div(2);
        uint256 tokenBalanceToLiquify = liquidityTokenBalance.sub(tokenBalanceToLiquifyAsBNB);
        uint256 initialBalance = address(this).balance;

        // 75% of the balance will be converted into BNB
        uint256 tokensToSwapToBNB = tokenBalanceToLiquifyAsBNB.add(marketingTokenBalance);

        swapTokensForEth(tokensToSwapToBNB);

        uint256 bnbSwapped = address(this).balance.sub(initialBalance);

        uint256 bnbToLiquify = bnbSwapped.div(3);

        addLiquidity(tokenBalanceToLiquify, bnbToLiquify);

        emit SwapAndLiquify(tokenBalanceToLiquifyAsBNB, bnbToLiquify, tokenBalanceToLiquify);

        uint256 marketingBNB = bnbSwapped.sub(bnbToLiquify);

        // Transfer the BNB to the marketing wallet
        _marketingWallet.transfer(marketingBNB);
        emit ToMarketing(marketingBNB);
    }

    function clearStuckBalance(uint256 amountPercentage) external onlyOwner {
        require(amountPercentage <= 100);
        uint256 amountBNB = address(this).balance;
        payable(_marketingWallet).transfer(amountBNB.mul(amountPercentage).div(100));
    }

    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
            owner(),
            block.timestamp
        );
    }
    
    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 _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(_isBlacklisted[from] == false, "Hehe");
        require(_isBlacklisted[to] == false, "Hehe");
        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(amount <= _maxBuyAmount);
                require(buycooldown[to] < block.timestamp);
                buycooldown[to] = block.timestamp.add(cooldown);        
        }
            
        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= numTokensSellToAddToLiquidity)
        {
            contractTokenBalance = numTokensSellToAddToLiquidity;
        }

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled            
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            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;
        }
        if(from == uniswapV2Pair) {
            _liquidityFee = _buyLiquidtyFee;
            _marketingFee = _buyMarketingFee;
            _taxFee = _buytaxFee;
        } else if(to == uniswapV2Pair){
            _liquidityFee = _sellLiquidityFee;
            _marketingFee = _sellMarketingFee;
            _taxFee = _sellTaxFee;
        } else {
            _liquidityFee = _transferLiquidityFee;
            _marketingFee = _transferMarketingFee;
            _taxFee = _transferTaxFee;
        }

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

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

    //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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);       
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _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);        
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function cooldownStatus() public view returns (bool) {
        return cooldownEnabled;
    }
    
    function setCooldownEnabled(bool onoff) external onlyOwner() {
        cooldownEnabled = onoff;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"ToMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"Blacklisted","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyLiquidtyFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"transferLiquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"transferMarketingfee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxBuyPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTaxFee","type":"uint256"},{"internalType":"uint256","name":"sellTaxFee","type":"uint256"},{"internalType":"uint256","name":"transferTaxFee","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"}]

600380546001600160a01b03191661dead179055610100604052600560c081905264524146465960d81b60e09081526200003d916004919062000464565b5060408051808201909152600580825264524146465960d81b60209092019182526200006a918162000464565b506006805460ff1916600990811790915564174876e8006007556200009190600a6200059c565b600754620000a091906200065d565b60088190556012805460ff19166001179055601e601355620000c590600019620006d6565b620000d3906000196200067f565b601455600060165560165460175560016018556018546019556002601a55601a54601b55600160255560646026556026546025546008546200011691906200065d565b6200012291906200053c565b6027556028805461ff00191661010017905560085462000145906064906200053c565b6029553480156200015557600080fd5b506040516200374a3803806200374a83398101604081905262000178916200050a565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601454336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200023657600080fd5b505afa1580156200024b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027191906200050a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ba57600080fd5b505afa158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f591906200050a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200033e57600080fd5b505af115801562000353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037991906200050a565b6001600160601b0319606091821b811660a0529082901b166080526001600e6000620003ad6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600e9093528183208054851660019081179091556009549091168352912080549092161790556200040c3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200045491815260200190565b60405180910390a3505062000719565b828054620004729062000699565b90600052602060002090601f016020900481019282620004965760008555620004e1565b82601f10620004b157805160ff1916838001178555620004e1565b82800160010185558215620004e1579182015b82811115620004e1578251825591602001919060010190620004c4565b50620004ef929150620004f3565b5090565b5b80821115620004ef5760008155600101620004f4565b6000602082840312156200051d57600080fd5b81516001600160a01b03811681146200053557600080fd5b9392505050565b6000826200054e576200054e62000703565b500490565b600181815b8085111562000594578160001904821115620005785762000578620006ed565b808516156200058657918102915b93841c939080029062000558565b509250929050565b60006200053560ff841683600082620005b85750600162000657565b81620005c75750600062000657565b8160018114620005e05760028114620005eb576200060b565b600191505062000657565b60ff841115620005ff57620005ff620006ed565b50506001821b62000657565b5060208310610133831016604e8410600b841016171562000630575081810a62000657565b6200063c838362000553565b8060001904821115620006535762000653620006ed565b0290505b92915050565b60008160001904831182151516156200067a576200067a620006ed565b500290565b600082821015620006945762000694620006ed565b500390565b600181811c90821680620006ae57607f821691505b60208210811415620006d057634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006e857620006e862000703565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612fbf6200078b600039600081816104df01528181611ab201528181611bf101528181611c990152611cea01526000818161033001528181611aee015281816124520152818161251a01528181612556015281816125c801526125ef0152612fbf6000f3fe6080604052600436106102765760003560e01c80635342acb41161014f578063a2b81a46116100c1578063d59f385b1161007a578063d59f385b14610788578063dd467064146107a8578063dd62ed3e146107c8578063ea2f0b371461080e578063f2fde38b1461082e578063fc7522771461084e57600080fd5b8063a2b81a46146106de578063a457c2d7146106fe578063a69df4b51461071e578063a9059cbb14610733578063b6c5232414610753578063c49b9a801461076857600080fd5b8063787a08a611610113578063787a08a614610624578063809157c51461063a57806388f82020146106525780638da5cb5b1461068b5780638fcc250d146106a957806395d89b41146106c957600080fd5b80635342acb4146105805780635932ead1146105b95780636bc87c3a146105d957806370a08231146105ef578063715018a61461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146105015780634f662566146105205780634fc3f41a1461054057806352390c021461056057600080fd5b80633685d4191461041757806339509351146104375780633b124fe7146104575780633bd5d1731461046d578063437823ec1461048d57600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631da1db5e1461037f57806322976e0d1461039f57806323b872dd146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806303d29d281461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612bcd565b61086e565b005b3480156102b057600080fd5b506102b96108cc565b6040516102c69190612d01565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004612c02565b61095e565b60405190151581526020016102c6565b34801561030b57600080fd5b506015545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600854610310565b34801561038b57600080fd5b506102a261039a366004612c49565b610975565b3480156103ab57600080fd5b50610310601a5481565b3480156103c157600080fd5b506102ef6103d0366004612b8c565b610a00565b3480156103e157600080fd5b506103106103f0366004612c49565b610a69565b34801561040157600080fd5b5060065460405160ff90911681526020016102c6565b34801561042357600080fd5b506102a2610432366004612b19565b610aed565b34801561044357600080fd5b506102ef610452366004612c02565b610ca0565b34801561046357600080fd5b5061031060165481565b34801561047957600080fd5b506102a2610488366004612c49565b610cd6565b34801561049957600080fd5b506102a26104a8366004612b19565b610dc2565b3480156104b957600080fd5b506103106104c8366004612c62565b610e10565b3480156104d957600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b34801561050d57600080fd5b506028546102ef90610100900460ff1681565b34801561052c57600080fd5b506102a261053b366004612c85565b610e9f565b34801561054c57600080fd5b506102a261055b366004612c49565b610f7b565b34801561056c57600080fd5b506102a261057b366004612b19565b610faa565b34801561058c57600080fd5b506102ef61059b366004612b19565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156105c557600080fd5b506102a26105d4366004612c2e565b611175565b3480156105e557600080fd5b5061031060185481565b3480156105fb57600080fd5b5061031061060a366004612b19565b6111b2565b34801561061b57600080fd5b506102a2611211565b34801561063057600080fd5b5061031060135481565b34801561064657600080fd5b5060125460ff166102ef565b34801561065e57600080fd5b506102ef61066d366004612b19565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561069757600080fd5b506000546001600160a01b0316610352565b3480156106b557600080fd5b506102a26106c4366004612c85565b611273565b3480156106d557600080fd5b506102b96112c0565b3480156106ea57600080fd5b506102a26106f9366004612ca7565b6112cf565b34801561070a57600080fd5b506102ef610719366004612c02565b611307565b34801561072a57600080fd5b506102a2611356565b34801561073f57600080fd5b506102ef61074e366004612c02565b61145c565b34801561075f57600080fd5b50600254610310565b34801561077457600080fd5b506102a2610783366004612c2e565b611469565b34801561079457600080fd5b506102a26107a3366004612ca7565b6114e7565b3480156107b457600080fd5b506102a26107c3366004612c49565b61151f565b3480156107d457600080fd5b506103106107e3366004612b53565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561081a57600080fd5b506102a2610829366004612b19565b6115a4565b34801561083a57600080fd5b506102a2610849366004612b19565b6115ef565b34801561085a57600080fd5b506102a2610869366004612ca7565b6116c7565b6000546001600160a01b031633146108a15760405162461bcd60e51b815260040161089890612d56565b60405180910390fd5b5060016001600160a01b0382166000908152601060205260409020805460ff191660011790555b5050565b6060600480546108db90612e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612e6c565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096b3384846116ff565b5060015b92915050565b6000546001600160a01b0316331461099f5760405162461bcd60e51b815260040161089890612d56565b60648111156109ad57600080fd5b60095447906001600160a01b03166108fc6109d360646109cd8587611823565b906118a2565b6040518115909202916000818181858888f193505050501580156109fb573d6000803e3d6000fd5b505050565b6000610a0d8484846118e4565b610a5f8433610a5a85604051806060016040528060288152602001612f1d602891396001600160a01b038a166000908152600d602090815260408083203384529091529020549190611d60565b6116ff565b5060019392505050565b6000601454821115610ad05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610898565b6000610ada611d9a565b9050610ae683826118a2565b9392505050565b6000546001600160a01b03163314610b175760405162461bcd60e51b815260040161089890612d56565b6001600160a01b0381166000908152600f602052604090205460ff16610b7f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b60005b6011548110156108c857816001600160a01b031660118281548110610ba957610ba9612eee565b6000918252602090912001546001600160a01b03161415610c8e5760118054610bd490600190612e55565b81548110610be457610be4612eee565b600091825260209091200154601180546001600160a01b039092169183908110610c1057610c10612eee565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055600f90925220805460ff191690556011805480610c6857610c68612ed8565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c9881612ea7565b915050610b82565b336000818152600d602090815260408083206001600160a01b0387168452909152812054909161096b918590610a5a9086611dbd565b336000818152600f602052604090205460ff1615610d4b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610898565b6000610d5683611e1c565b5050506001600160a01b0386166000908152600a6020526040902054939450610d8493925084915050611e77565b6001600160a01b0383166000908152600a6020526040902055601454610daa9082611e77565b601455601554610dba9084611dbd565b601555505050565b6000546001600160a01b03163314610dec5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6000600854831115610e645760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610898565b81610e84576000610e7484611e1c565b5094965061096f95505050505050565b6000610e8f84611e1c565b5093965061096f95505050505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b815260040161089890612d56565b60018210158015610edc57506103e88111155b610ee557600080fd5b6000610f00826109cd8560085461182390919063ffffffff16565b90506103e8600854610f129190612e14565b811015610f745760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b6064820152608401610898565b6027555050565b6000546001600160a01b03163314610fa55760405162461bcd60e51b815260040161089890612d56565b601355565b6000546001600160a01b03163314610fd45760405162461bcd60e51b815260040161089890612d56565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561104c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b6064820152608401610898565b6001600160a01b0381166000908152600f602052604090205460ff16156110b55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b6001600160a01b0381166000908152600a60205260409020541561110f576001600160a01b0381166000908152600a60205260409020546110f590610a69565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152600f60205260408120805460ff191660019081179091556011805491820181559091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0319169091179055565b6000546001600160a01b0316331461119f5760405162461bcd60e51b815260040161089890612d56565b6012805460ff1916911515919091179055565b6001600160a01b0381166000908152600f602052604081205460ff16156111ef57506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461096f90610a69565b6000546001600160a01b0316331461123b5760405162461bcd60e51b815260040161089890612d56565b600080546040516001600160a01b0390911690600080516020612f45833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161089890612d56565b60006112b8826109cd8560085461182390919063ffffffff16565b602955505050565b6060600580546108db90612e6c565b6000546001600160a01b031633146112f95760405162461bcd60e51b815260040161089890612d56565b601f92909255601c55602455565b600061096b3384610a5a85604051806060016040528060258152602001612f6560259139336000908152600d602090815260408083206001600160a01b038d1684529091529020549190611d60565b6001546001600160a01b031633146113bc5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610898565b600254421161140d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610898565b600154600080546040516001600160a01b039384169390911691600080516020612f4583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061096b3384846118e4565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161089890612d56565b602880548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114dc90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115115760405162461bcd60e51b815260040161089890612d56565b602192909255601e55602255565b6000546001600160a01b031633146115495760405162461bcd60e51b815260040161089890612d56565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115788142612dfc565b600255600080546040516001600160a01b0390911690600080516020612f45833981519152908390a350565b6000546001600160a01b031633146115ce5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6000546001600160a01b031633146116195760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03811661167e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b600080546040516001600160a01b0380851693921691600080516020612f4583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116f15760405162461bcd60e51b815260040161089890612d56565b602092909255601d55602355565b6001600160a01b0383166117615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166117c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826118325750600061096f565b600061183e8385612e36565b90508261184b8583612e14565b14610ae65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610898565b6000610ae683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eb9565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b60008111611a0c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610898565b6001600160a01b03831660009081526010602052604090205460ff1615611a5e5760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526010602052604090205460ff1615611ab05760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b2357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611b4857506001600160a01b0382166000908152600e602052604090205460ff16155b8015611b56575060125460ff165b15611bb657602754811115611b6a57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b8e57600080fd5b601354611b9c904290611dbd565b6001600160a01b0383166000908152600c60205260409020555b6000611bc1306111b2565b90506029548110611bd157506029545b60295481108015908190611be8575060285460ff16155b8015611c2657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c395750602854610100900460ff165b15611c4c576029549150611c4c82611ee7565b6001600160a01b0385166000908152600e602052604090205460019060ff1680611c8e57506001600160a01b0385166000908152600e602052604090205460ff165b15611c97575060005b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161415611ce857601f54601855602054601a55602154601655611d4c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161415611d3957601c54601855601d54601a55601e54601655611d4c565b602454601855602354601a556022546016555b611d588686868461203f565b505050505050565b60008184841115611d845760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e55565b95945050505050565b6000806000611da76121c2565b9092509050611db682826118a2565b9250505090565b600080611dca8385612dfc565b905083811015610ae65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610898565b6000806000806000806000806000806000611e368c612344565b93509350935093506000806000611e578f878787611e52611d9a565b612399565b919f509d509b509599509397509195509350505050919395979092949650565b6000610ae683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d60565b60008183611eda5760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e14565b6028805460ff191660011790556000611f018260026118a2565b90506000611f0f8383611e77565b90506000611f1e8260026118a2565b90506000611f2c8383611e77565b9050476000611f3b8487611dbd565b9050611f46816123fb565b6000611f524784611e77565b90506000611f618260036118a2565b9050611f6d85826125c2565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611fba8383611e77565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ff5573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506028805460ff191690555050505050505050565b8061204c5761204c6126d7565b6001600160a01b0384166000908152600f602052604090205460ff16801561208d57506001600160a01b0383166000908152600f602052604090205460ff16155b156120a25761209d84848461271c565b6121a0565b6001600160a01b0384166000908152600f602052604090205460ff161580156120e357506001600160a01b0383166000908152600f602052604090205460ff165b156120f35761209d848484612862565b6001600160a01b0384166000908152600f602052604090205460ff1615801561213557506001600160a01b0383166000908152600f602052604090205460ff16155b156121455761209d848484612921565b6001600160a01b0384166000908152600f602052604090205460ff16801561218557506001600160a01b0383166000908152600f602052604090205460ff165b156121955761209d84848461297b565b6121a0848484612921565b806121bc576121bc601754601655601b54601a55601954601855565b50505050565b6014546008546000918291825b6011548110156123145782600a6000601184815481106121f1576121f1612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061225c575081600b60006011848154811061223557612235612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561227257601454600854945094505050509091565b6122b8600a60006011848154811061228c5761228c612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e77565b9250612300600b6000601184815481106122d4576122d4612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e77565b91508061230c81612ea7565b9150506121cf565b50600854601454612324916118a2565b82101561233b576014546008549350935050509091565b90939092509050565b600080600080600061235586612a04565b9050600061236287612a20565b9050600061236f88612a3c565b905060006123898361238384818d89611e77565b90611e77565b9993985091965094509092505050565b60008080806123a88986611823565b905060006123b68987611823565b905060006123c48888611823565b905060006123d28a89611823565b905060006123e68361238384818989611e77565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061243057612430612eee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a957600080fd5b505afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190612b36565b816001815181106124f4576124f4612eee565b60200260200101906001600160a01b031690816001600160a01b03168152505061253f307f0000000000000000000000000000000000000000000000000000000000000000846116ff565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612594908590600090869030904290600401612d8b565b600060405180830381600087803b1580156125ae57600080fd5b505af1158015611d58573d6000803e3d6000fd5b6125ed307f0000000000000000000000000000000000000000000000000000000000000000846116ff565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806126346000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d09190612cd3565b5050505050565b6016541580156126e75750601854155b80156126f35750601a54155b156126fa57565b60168054601755601a8054601b55601880546019556000928390559082905555565b600080600080600080600061273088611e1c565b965096509650965096509650965061277688600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127a59088611e77565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127d49087611dbd565b6001600160a01b038a166000908152600a60205260409020556127f682612a58565b6127ff81612a58565b6128098584612ae0565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161284e91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061287688611e1c565b96509650965096509650965096506128bc87600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b90915220546128f29085611dbd565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127d49087611dbd565b600080600080600080600061293588611e1c565b96509650965096509650965096506127a587600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b600080600080600080600061298f88611e1c565b96509650965096509650965096506129d588600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128bc9088611e77565b600061096f60646109cd6016548561182390919063ffffffff16565b600061096f60646109cd601a548561182390919063ffffffff16565b600061096f60646109cd6018548561182390919063ffffffff16565b6000612a62611d9a565b90506000612a708383611823565b306000908152600a6020526040902054909150612a8d9082611dbd565b306000908152600a6020908152604080832093909355600f9052205460ff16156109fb57306000908152600b6020526040902054612acb9084611dbd565b306000908152600b6020526040902055505050565b601454612aed9083611e77565b601455601554612afd9082611dbd565b6015555050565b80358015158114612b1457600080fd5b919050565b600060208284031215612b2b57600080fd5b8135610ae681612f04565b600060208284031215612b4857600080fd5b8151610ae681612f04565b60008060408385031215612b6657600080fd5b8235612b7181612f04565b91506020830135612b8181612f04565b809150509250929050565b600080600060608486031215612ba157600080fd5b8335612bac81612f04565b92506020840135612bbc81612f04565b929592945050506040919091013590565b60008060408385031215612be057600080fd5b8235612beb81612f04565b9150612bf960208401612b04565b90509250929050565b60008060408385031215612c1557600080fd5b8235612c2081612f04565b946020939093013593505050565b600060208284031215612c4057600080fd5b610ae682612b04565b600060208284031215612c5b57600080fd5b5035919050565b60008060408385031215612c7557600080fd5b82359150612bf960208401612b04565b60008060408385031215612c9857600080fd5b50508035926020909101359150565b600080600060608486031215612cbc57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612ce857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d2e57858101830151858201604001528201612d12565b81811115612d40576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ddb5784516001600160a01b031683529383019391830191600101612db6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e0f57612e0f612ec2565b500190565b600082612e3157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612e5057612e50612ec2565b500290565b600082821015612e6757612e67612ec2565b500390565b600181811c90821680612e8057607f821691505b60208210811415612ea157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebb57612ebb612ec2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612f1957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055b590ac610acfa39a78863d37cfc585bc97c087807318dca97b6a57813504fa64736f6c634300080700330000000000000000000000004a913dd9c9bcdb952363732b2c5097707c34adb7

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635342acb41161014f578063a2b81a46116100c1578063d59f385b1161007a578063d59f385b14610788578063dd467064146107a8578063dd62ed3e146107c8578063ea2f0b371461080e578063f2fde38b1461082e578063fc7522771461084e57600080fd5b8063a2b81a46146106de578063a457c2d7146106fe578063a69df4b51461071e578063a9059cbb14610733578063b6c5232414610753578063c49b9a801461076857600080fd5b8063787a08a611610113578063787a08a614610624578063809157c51461063a57806388f82020146106525780638da5cb5b1461068b5780638fcc250d146106a957806395d89b41146106c957600080fd5b80635342acb4146105805780635932ead1146105b95780636bc87c3a146105d957806370a08231146105ef578063715018a61461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146105015780634f662566146105205780634fc3f41a1461054057806352390c021461056057600080fd5b80633685d4191461041757806339509351146104375780633b124fe7146104575780633bd5d1731461046d578063437823ec1461048d57600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631da1db5e1461037f57806322976e0d1461039f57806323b872dd146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806303d29d281461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612bcd565b61086e565b005b3480156102b057600080fd5b506102b96108cc565b6040516102c69190612d01565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004612c02565b61095e565b60405190151581526020016102c6565b34801561030b57600080fd5b506015545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600854610310565b34801561038b57600080fd5b506102a261039a366004612c49565b610975565b3480156103ab57600080fd5b50610310601a5481565b3480156103c157600080fd5b506102ef6103d0366004612b8c565b610a00565b3480156103e157600080fd5b506103106103f0366004612c49565b610a69565b34801561040157600080fd5b5060065460405160ff90911681526020016102c6565b34801561042357600080fd5b506102a2610432366004612b19565b610aed565b34801561044357600080fd5b506102ef610452366004612c02565b610ca0565b34801561046357600080fd5b5061031060165481565b34801561047957600080fd5b506102a2610488366004612c49565b610cd6565b34801561049957600080fd5b506102a26104a8366004612b19565b610dc2565b3480156104b957600080fd5b506103106104c8366004612c62565b610e10565b3480156104d957600080fd5b506103527f0000000000000000000000004337756608ea25da21c0755d954268cf42b547ce81565b34801561050d57600080fd5b506028546102ef90610100900460ff1681565b34801561052c57600080fd5b506102a261053b366004612c85565b610e9f565b34801561054c57600080fd5b506102a261055b366004612c49565b610f7b565b34801561056c57600080fd5b506102a261057b366004612b19565b610faa565b34801561058c57600080fd5b506102ef61059b366004612b19565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156105c557600080fd5b506102a26105d4366004612c2e565b611175565b3480156105e557600080fd5b5061031060185481565b3480156105fb57600080fd5b5061031061060a366004612b19565b6111b2565b34801561061b57600080fd5b506102a2611211565b34801561063057600080fd5b5061031060135481565b34801561064657600080fd5b5060125460ff166102ef565b34801561065e57600080fd5b506102ef61066d366004612b19565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561069757600080fd5b506000546001600160a01b0316610352565b3480156106b557600080fd5b506102a26106c4366004612c85565b611273565b3480156106d557600080fd5b506102b96112c0565b3480156106ea57600080fd5b506102a26106f9366004612ca7565b6112cf565b34801561070a57600080fd5b506102ef610719366004612c02565b611307565b34801561072a57600080fd5b506102a2611356565b34801561073f57600080fd5b506102ef61074e366004612c02565b61145c565b34801561075f57600080fd5b50600254610310565b34801561077457600080fd5b506102a2610783366004612c2e565b611469565b34801561079457600080fd5b506102a26107a3366004612ca7565b6114e7565b3480156107b457600080fd5b506102a26107c3366004612c49565b61151f565b3480156107d457600080fd5b506103106107e3366004612b53565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561081a57600080fd5b506102a2610829366004612b19565b6115a4565b34801561083a57600080fd5b506102a2610849366004612b19565b6115ef565b34801561085a57600080fd5b506102a2610869366004612ca7565b6116c7565b6000546001600160a01b031633146108a15760405162461bcd60e51b815260040161089890612d56565b60405180910390fd5b5060016001600160a01b0382166000908152601060205260409020805460ff191660011790555b5050565b6060600480546108db90612e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612e6c565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096b3384846116ff565b5060015b92915050565b6000546001600160a01b0316331461099f5760405162461bcd60e51b815260040161089890612d56565b60648111156109ad57600080fd5b60095447906001600160a01b03166108fc6109d360646109cd8587611823565b906118a2565b6040518115909202916000818181858888f193505050501580156109fb573d6000803e3d6000fd5b505050565b6000610a0d8484846118e4565b610a5f8433610a5a85604051806060016040528060288152602001612f1d602891396001600160a01b038a166000908152600d602090815260408083203384529091529020549190611d60565b6116ff565b5060019392505050565b6000601454821115610ad05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610898565b6000610ada611d9a565b9050610ae683826118a2565b9392505050565b6000546001600160a01b03163314610b175760405162461bcd60e51b815260040161089890612d56565b6001600160a01b0381166000908152600f602052604090205460ff16610b7f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b60005b6011548110156108c857816001600160a01b031660118281548110610ba957610ba9612eee565b6000918252602090912001546001600160a01b03161415610c8e5760118054610bd490600190612e55565b81548110610be457610be4612eee565b600091825260209091200154601180546001600160a01b039092169183908110610c1057610c10612eee565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055600f90925220805460ff191690556011805480610c6857610c68612ed8565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c9881612ea7565b915050610b82565b336000818152600d602090815260408083206001600160a01b0387168452909152812054909161096b918590610a5a9086611dbd565b336000818152600f602052604090205460ff1615610d4b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610898565b6000610d5683611e1c565b5050506001600160a01b0386166000908152600a6020526040902054939450610d8493925084915050611e77565b6001600160a01b0383166000908152600a6020526040902055601454610daa9082611e77565b601455601554610dba9084611dbd565b601555505050565b6000546001600160a01b03163314610dec5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6000600854831115610e645760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610898565b81610e84576000610e7484611e1c565b5094965061096f95505050505050565b6000610e8f84611e1c565b5093965061096f95505050505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b815260040161089890612d56565b60018210158015610edc57506103e88111155b610ee557600080fd5b6000610f00826109cd8560085461182390919063ffffffff16565b90506103e8600854610f129190612e14565b811015610f745760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b6064820152608401610898565b6027555050565b6000546001600160a01b03163314610fa55760405162461bcd60e51b815260040161089890612d56565b601355565b6000546001600160a01b03163314610fd45760405162461bcd60e51b815260040161089890612d56565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561104c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b6064820152608401610898565b6001600160a01b0381166000908152600f602052604090205460ff16156110b55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b6001600160a01b0381166000908152600a60205260409020541561110f576001600160a01b0381166000908152600a60205260409020546110f590610a69565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152600f60205260408120805460ff191660019081179091556011805491820181559091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0319169091179055565b6000546001600160a01b0316331461119f5760405162461bcd60e51b815260040161089890612d56565b6012805460ff1916911515919091179055565b6001600160a01b0381166000908152600f602052604081205460ff16156111ef57506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461096f90610a69565b6000546001600160a01b0316331461123b5760405162461bcd60e51b815260040161089890612d56565b600080546040516001600160a01b0390911690600080516020612f45833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161089890612d56565b60006112b8826109cd8560085461182390919063ffffffff16565b602955505050565b6060600580546108db90612e6c565b6000546001600160a01b031633146112f95760405162461bcd60e51b815260040161089890612d56565b601f92909255601c55602455565b600061096b3384610a5a85604051806060016040528060258152602001612f6560259139336000908152600d602090815260408083206001600160a01b038d1684529091529020549190611d60565b6001546001600160a01b031633146113bc5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610898565b600254421161140d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610898565b600154600080546040516001600160a01b039384169390911691600080516020612f4583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061096b3384846118e4565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161089890612d56565b602880548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114dc90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115115760405162461bcd60e51b815260040161089890612d56565b602192909255601e55602255565b6000546001600160a01b031633146115495760405162461bcd60e51b815260040161089890612d56565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115788142612dfc565b600255600080546040516001600160a01b0390911690600080516020612f45833981519152908390a350565b6000546001600160a01b031633146115ce5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6000546001600160a01b031633146116195760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03811661167e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b600080546040516001600160a01b0380851693921691600080516020612f4583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116f15760405162461bcd60e51b815260040161089890612d56565b602092909255601d55602355565b6001600160a01b0383166117615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166117c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826118325750600061096f565b600061183e8385612e36565b90508261184b8583612e14565b14610ae65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610898565b6000610ae683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eb9565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b60008111611a0c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610898565b6001600160a01b03831660009081526010602052604090205460ff1615611a5e5760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526010602052604090205460ff1615611ab05760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b7f0000000000000000000000004337756608ea25da21c0755d954268cf42b547ce6001600160a01b0316836001600160a01b0316148015611b2357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611b4857506001600160a01b0382166000908152600e602052604090205460ff16155b8015611b56575060125460ff165b15611bb657602754811115611b6a57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b8e57600080fd5b601354611b9c904290611dbd565b6001600160a01b0383166000908152600c60205260409020555b6000611bc1306111b2565b90506029548110611bd157506029545b60295481108015908190611be8575060285460ff16155b8015611c2657507f0000000000000000000000004337756608ea25da21c0755d954268cf42b547ce6001600160a01b0316856001600160a01b031614155b8015611c395750602854610100900460ff165b15611c4c576029549150611c4c82611ee7565b6001600160a01b0385166000908152600e602052604090205460019060ff1680611c8e57506001600160a01b0385166000908152600e602052604090205460ff165b15611c97575060005b7f0000000000000000000000004337756608ea25da21c0755d954268cf42b547ce6001600160a01b0316866001600160a01b03161415611ce857601f54601855602054601a55602154601655611d4c565b7f0000000000000000000000004337756608ea25da21c0755d954268cf42b547ce6001600160a01b0316856001600160a01b03161415611d3957601c54601855601d54601a55601e54601655611d4c565b602454601855602354601a556022546016555b611d588686868461203f565b505050505050565b60008184841115611d845760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e55565b95945050505050565b6000806000611da76121c2565b9092509050611db682826118a2565b9250505090565b600080611dca8385612dfc565b905083811015610ae65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610898565b6000806000806000806000806000806000611e368c612344565b93509350935093506000806000611e578f878787611e52611d9a565b612399565b919f509d509b509599509397509195509350505050919395979092949650565b6000610ae683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d60565b60008183611eda5760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e14565b6028805460ff191660011790556000611f018260026118a2565b90506000611f0f8383611e77565b90506000611f1e8260026118a2565b90506000611f2c8383611e77565b9050476000611f3b8487611dbd565b9050611f46816123fb565b6000611f524784611e77565b90506000611f618260036118a2565b9050611f6d85826125c2565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611fba8383611e77565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ff5573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506028805460ff191690555050505050505050565b8061204c5761204c6126d7565b6001600160a01b0384166000908152600f602052604090205460ff16801561208d57506001600160a01b0383166000908152600f602052604090205460ff16155b156120a25761209d84848461271c565b6121a0565b6001600160a01b0384166000908152600f602052604090205460ff161580156120e357506001600160a01b0383166000908152600f602052604090205460ff165b156120f35761209d848484612862565b6001600160a01b0384166000908152600f602052604090205460ff1615801561213557506001600160a01b0383166000908152600f602052604090205460ff16155b156121455761209d848484612921565b6001600160a01b0384166000908152600f602052604090205460ff16801561218557506001600160a01b0383166000908152600f602052604090205460ff165b156121955761209d84848461297b565b6121a0848484612921565b806121bc576121bc601754601655601b54601a55601954601855565b50505050565b6014546008546000918291825b6011548110156123145782600a6000601184815481106121f1576121f1612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061225c575081600b60006011848154811061223557612235612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561227257601454600854945094505050509091565b6122b8600a60006011848154811061228c5761228c612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e77565b9250612300600b6000601184815481106122d4576122d4612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e77565b91508061230c81612ea7565b9150506121cf565b50600854601454612324916118a2565b82101561233b576014546008549350935050509091565b90939092509050565b600080600080600061235586612a04565b9050600061236287612a20565b9050600061236f88612a3c565b905060006123898361238384818d89611e77565b90611e77565b9993985091965094509092505050565b60008080806123a88986611823565b905060006123b68987611823565b905060006123c48888611823565b905060006123d28a89611823565b905060006123e68361238384818989611e77565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061243057612430612eee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a957600080fd5b505afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190612b36565b816001815181106124f4576124f4612eee565b60200260200101906001600160a01b031690816001600160a01b03168152505061253f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ff565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612594908590600090869030904290600401612d8b565b600060405180830381600087803b1580156125ae57600080fd5b505af1158015611d58573d6000803e3d6000fd5b6125ed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ff565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806126346000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d09190612cd3565b5050505050565b6016541580156126e75750601854155b80156126f35750601a54155b156126fa57565b60168054601755601a8054601b55601880546019556000928390559082905555565b600080600080600080600061273088611e1c565b965096509650965096509650965061277688600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127a59088611e77565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127d49087611dbd565b6001600160a01b038a166000908152600a60205260409020556127f682612a58565b6127ff81612a58565b6128098584612ae0565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161284e91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061287688611e1c565b96509650965096509650965096506128bc87600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b90915220546128f29085611dbd565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127d49087611dbd565b600080600080600080600061293588611e1c565b96509650965096509650965096506127a587600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b600080600080600080600061298f88611e1c565b96509650965096509650965096506129d588600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128bc9088611e77565b600061096f60646109cd6016548561182390919063ffffffff16565b600061096f60646109cd601a548561182390919063ffffffff16565b600061096f60646109cd6018548561182390919063ffffffff16565b6000612a62611d9a565b90506000612a708383611823565b306000908152600a6020526040902054909150612a8d9082611dbd565b306000908152600a6020908152604080832093909355600f9052205460ff16156109fb57306000908152600b6020526040902054612acb9084611dbd565b306000908152600b6020526040902055505050565b601454612aed9083611e77565b601455601554612afd9082611dbd565b6015555050565b80358015158114612b1457600080fd5b919050565b600060208284031215612b2b57600080fd5b8135610ae681612f04565b600060208284031215612b4857600080fd5b8151610ae681612f04565b60008060408385031215612b6657600080fd5b8235612b7181612f04565b91506020830135612b8181612f04565b809150509250929050565b600080600060608486031215612ba157600080fd5b8335612bac81612f04565b92506020840135612bbc81612f04565b929592945050506040919091013590565b60008060408385031215612be057600080fd5b8235612beb81612f04565b9150612bf960208401612b04565b90509250929050565b60008060408385031215612c1557600080fd5b8235612c2081612f04565b946020939093013593505050565b600060208284031215612c4057600080fd5b610ae682612b04565b600060208284031215612c5b57600080fd5b5035919050565b60008060408385031215612c7557600080fd5b82359150612bf960208401612b04565b60008060408385031215612c9857600080fd5b50508035926020909101359150565b600080600060608486031215612cbc57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612ce857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d2e57858101830151858201604001528201612d12565b81811115612d40576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ddb5784516001600160a01b031683529383019391830191600101612db6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e0f57612e0f612ec2565b500190565b600082612e3157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612e5057612e50612ec2565b500290565b600082821015612e6757612e67612ec2565b500390565b600181811c90821680612e8057607f821691505b60208210811415612ea157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebb57612ebb612ec2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612f1957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055b590ac610acfa39a78863d37cfc585bc97c087807318dca97b6a57813504fa64736f6c63430008070033

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

0000000000000000000000004a913dd9c9bcdb952363732b2c5097707c34adb7

-----Decoded View---------------
Arg [0] : marketingWallet (address): 0x4A913Dd9C9BCDB952363732B2C5097707C34Adb7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a913dd9c9bcdb952363732b2c5097707c34adb7


Deployed Bytecode Sourcemap

25596:23249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31786:294;;;;;;;;;;-1:-1:-1;31786:294:0;;;;;:::i;:::-;;:::i;:::-;;28912:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29557:161;;;;;;;;;;-1:-1:-1;29557:161:0;;;;;:::i;:::-;;:::i;:::-;;;4674:14:1;;4667:22;4649:41;;4637:2;4622:18;29557:161:0;4509:187:1;34742:87:0;;;;;;;;;;-1:-1:-1;34811:10:0;;34742:87;;;12688:25:1;;;12676:2;12661:18;34742:87:0;12542:177:1;27464:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3853:32:1;;;3835:51;;3823:2;3808:18;27464:51:0;3689:203:1;29135:79:0;;;;;;;;;;-1:-1:-1;29205:7:0;;29135:79;;40947:262;;;;;;;;;;-1:-1:-1;40947:262:0;;;;;:::i;:::-;;:::i;26910:32::-;;;;;;;;;;;;;;;;42339:313;;;;;;;;;;-1:-1:-1;42339:313:0;;;;;:::i;:::-;;:::i;32924:253::-;;;;;;;;;;-1:-1:-1;32924:253:0;;;;;:::i;:::-;;:::i;29062:67::-;;;;;;;;;;-1:-1:-1;29118:9:0;;29062:67;;29118:9;;;;14175:36:1;;14163:2;14148:18;29062:67:0;14033:184:1;33879:479:0;;;;;;;;;;-1:-1:-1;33879:479:0;;;;;:::i;:::-;;:::i;31279:218::-;;;;;;;;;;-1:-1:-1;31279:218:0;;;;;:::i;:::-;;:::i;26730:26::-;;;;;;;;;;;;;;;;32092:378;;;;;;;;;;-1:-1:-1;32092:378:0;;;;;:::i;:::-;;:::i;34366:111::-;;;;;;;;;;-1:-1:-1;34366:111:0;;;;;:::i;:::-;;:::i;32478:438::-;;;;;;;;;;-1:-1:-1;32478:438:0;;;;;:::i;:::-;;:::i;27522:38::-;;;;;;;;;;;;;;;27595:40;;;;;;;;;;-1:-1:-1;27595:40:0;;;;;;;;;;;30921:350;;;;;;;;;;-1:-1:-1;30921:350:0;;;;;:::i;:::-;;:::i;30809:100::-;;;;;;;;;;-1:-1:-1;30809:100:0;;;;;:::i;:::-;;:::i;33313:558::-;;;;;;;;;;-1:-1:-1;33313:558:0;;;;;:::i;:::-;;:::i;34607:123::-;;;;;;;;;;-1:-1:-1;34607:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;34695:27:0;34671:4;34695:27;;;:18;:27;;;;;;;;;34607:123;48739:103;;;;;;;;;;-1:-1:-1;48739:103:0;;;;;:::i;:::-;;:::i;26811:32::-;;;;;;;;;;;;;;;;29353:198;;;;;;;;;;-1:-1:-1;29353:198:0;;;;;:::i;:::-;;:::i;16209:148::-;;;;;;;;;;;;;:::i;26543:36::-;;;;;;;;;;;;;;;;48633:94;;;;;;;;;;-1:-1:-1;48704:15:0;;;;48633:94;;33185:120;;;;;;;;;;-1:-1:-1;33185:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33277:20:0;33253:4;33277:20;;;:11;:20;;;;;;;;;33185:120;15573:79;;;;;;;;;;-1:-1:-1;15611:7:0;15638:6;-1:-1:-1;;;;;15638:6:0;15573:79;;29726:223;;;;;;;;;;-1:-1:-1;29726:223:0;;;;;:::i;:::-;;:::i;28985:71::-;;;;;;;;;;;;;:::i;29965:286::-;;;;;;;;;;-1:-1:-1;29965:286:0;;;;;:::i;:::-;;:::i;31505:269::-;;;;;;;;;;-1:-1:-1;31505:269:0;;;;;:::i;:::-;;:::i;17231:305::-;;;;;;;;;;;;;:::i;44990:167::-;;;;;;;;;;-1:-1:-1;44990:167:0;;;;;:::i;:::-;;:::i;16764:89::-;;;;;;;;;;-1:-1:-1;16836:9:0;;16764:89;;34837:171;;;;;;;;;;-1:-1:-1;34837:171:0;;;;;:::i;:::-;;:::i;30572:229::-;;;;;;;;;;-1:-1:-1;30572:229:0;;;;;:::i;:::-;;:::i;16929:226::-;;;;;;;;;;-1:-1:-1;16929:226:0;;;;;:::i;:::-;;:::i;29220:127::-;;;;;;;;;;-1:-1:-1;29220:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29318:18:0;;;29301:7;29318:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29220:127;34485:110;;;;;;;;;;-1:-1:-1;34485:110:0;;;;;:::i;:::-;;:::i;16512:244::-;;;;;;;;;;-1:-1:-1;16512:244:0;;;;;:::i;:::-;;:::i;30267:289::-;;;;;;;;;;-1:-1:-1;30267:289:0;;;;;:::i;:::-;;:::i;31786:294::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31901:4:0::1;-1:-1:-1::0;;;;;31926:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31926:30:0::1;31952:4;31926:30;::::0;;31979:94:::1;31786:294:::0;;:::o;28912:67::-;28949:13;28972:5;28965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28912:67;:::o;29557:161::-;29632:4;29649:39;8076:10;29672:7;29681:6;29649:8;:39::i;:::-;-1:-1:-1;29706:4:0;29557:161;;;;;:::o;40947:262::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;41058:3:::1;41038:16;:23;;41030:32;;;::::0;::::1;;41133:16;::::0;41093:21:::1;::::0;-1:-1:-1;;;;;41133:16:0::1;41125:76;41160:40;41196:3;41160:31;41093:21:::0;41174:16;41160:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;41125:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41019:190;40947:262:::0;:::o;42339:313::-;42437:4;42454:36;42464:6;42472:9;42483:6;42454:9;:36::i;:::-;42501:121;42510:6;8076:10;42532:89;42570:6;42532:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42532:19:0;;;;;;:11;:19;;;;;;;;8076:10;42532:33;;;;;;;;;;:37;:89::i;:::-;42501:8;:121::i;:::-;-1:-1:-1;42640:4:0;42339:313;;;;;:::o;32924:253::-;32990:7;33029;;33018;:18;;33010:73;;;;-1:-1:-1;;;33010:73:0;;6144:2:1;33010:73:0;;;6126:21:1;6183:2;6163:18;;;6156:30;6222:34;6202:18;;;6195:62;-1:-1:-1;;;6273:18:1;;;6266:40;6323:19;;33010:73:0;5942:406:1;33010:73:0;33094:19;33117:10;:8;:10::i;:::-;33094:33;-1:-1:-1;33145:24:0;:7;33094:33;33145:11;:24::i;:::-;33138:31;32924:253;-1:-1:-1;;;32924:253:0:o;33879:479::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33961:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33953:60;;;::::0;-1:-1:-1;;;33953:60:0;;8132:2:1;33953:60:0::1;::::0;::::1;8114:21:1::0;8171:2;8151:18;;;8144:30;8210:29;8190:18;;;8183:57;8257:18;;33953:60:0::1;7930:351:1::0;33953:60:0::1;34029:9;34024:327;34048:9;:16:::0;34044:20;::::1;34024:327;;;34106:7;-1:-1:-1::0;;;;;34090:23:0::1;:9;34100:1;34090:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34090:12:0::1;:23;34086:254;;;34149:9;34159:16:::0;;:20:::1;::::0;34178:1:::1;::::0;34159:20:::1;:::i;:::-;34149:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34134:9:::1;:12:::0;;-1:-1:-1;;;;;34149:31:0;;::::1;::::0;34144:1;;34134:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34134:46:0::1;-1:-1:-1::0;;;;;34134:46:0;;::::1;;::::0;;34199:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34238:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34238:28:0::1;::::0;;34285:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34285:15:0;;;;;-1:-1:-1;;;;;;34285:15:0::1;::::0;;;;;31786:294;;:::o;34086:254::-:1;34066:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34024:327;;31279:218:::0;8076:10;31367:4;31416:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31416:34:0;;;;;;;;;;31367:4;;31384:83;;31407:7;;31416:50;;31455:10;31416:38;:50::i;32092:378::-;8076:10;32144:14;32193:19;;;:11;:19;;;;;;;;32192:20;32184:77;;;;-1:-1:-1;;;32184:77:0;;11927:2:1;32184:77:0;;;11909:21:1;11966:2;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;-1:-1:-1;;;12056:18:1;;;12049:42;12108:19;;32184:77:0;11725:408:1;32184:77:0;32273:15;32298:19;32309:7;32298:10;:19::i;:::-;-1:-1:-1;;;;;;;;32346:15:0;;;;;;:7;:15;;;;;;32272:45;;-1:-1:-1;32346:28:0;;:15;-1:-1:-1;32272:45:0;;-1:-1:-1;;32346:19:0;:28::i;:::-;-1:-1:-1;;;;;32328:15:0;;;;;;:7;:15;;;;;:46;32395:7;;:20;;32407:7;32395:11;:20::i;:::-;32385:7;:30;32439:10;;:23;;32454:7;32439:14;:23::i;:::-;32426:10;:36;-1:-1:-1;;;32092:378:0:o;34366:111::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34435:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34435:34:0::1;34465:4;34435:34;::::0;;34366:111::o;32478:438::-;32568:7;32607;;32596;:18;;32588:62;;;;-1:-1:-1;;;32588:62:0;;8488:2:1;32588:62:0;;;8470:21:1;8527:2;8507:18;;;8500:30;8566:33;8546:18;;;8539:61;8617:18;;32588:62:0;8286:355:1;32588:62:0;32666:17;32661:248;;32701:15;32726:19;32737:7;32726:10;:19::i;:::-;-1:-1:-1;32700:45:0;;-1:-1:-1;32760:14:0;;-1:-1:-1;;;;;;32760:14:0;32661:248;32809:23;32841:19;32852:7;32841:10;:19::i;:::-;-1:-1:-1;32807:53:0;;-1:-1:-1;32875:22:0;;-1:-1:-1;;;;;;32875:22:0;30921:350;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;31027:1:::1;31016:7;:12;;:31;;;;;31043:4;31032:7;:15;;31016:31;31008:40;;;::::0;::::1;;31088:14;31105:33;31130:7;31105:20;31117:7;31105;;:11;;:20;;;;:::i;:33::-;31088:50;;31178:4;31168:7;;:14;;;;:::i;:::-;31157:6;:26;;31149:81;;;::::0;-1:-1:-1;;;31149:81:0;;7721:2:1;31149:81:0::1;::::0;::::1;7703:21:1::0;7760:2;7740:18;;;7733:30;7799:34;7779:18;;;7772:62;-1:-1:-1;;;7850:18:1;;;7843:40;7900:19;;31149:81:0::1;7519:406:1::0;31149:81:0::1;31241:13;:22:::0;-1:-1:-1;;30921:350:0:o;30809:100::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;30881:8:::1;:20:::0;30809:100::o;33313:558::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;33406:42:::1;-1:-1:-1::0;;;;;33395:53:0;::::1;;;33387:100;;;::::0;-1:-1:-1;;;33387:100:0;;11524:2:1;33387:100:0::1;::::0;::::1;11506:21:1::0;11563:2;11543:18;;;11536:30;11602:34;11582:18;;;11575:62;-1:-1:-1;;;11653:18:1;;;11646:32;11695:19;;33387:100:0::1;11322:398:1::0;33387:100:0::1;-1:-1:-1::0;;;;;33621:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33620:21;33612:61;;;::::0;-1:-1:-1;;;33612:61:0;;8132:2:1;33612:61:0::1;::::0;::::1;8114:21:1::0;8171:2;8151:18;;;8144:30;8210:29;8190:18;;;8183:57;8257:18;;33612:61:0::1;7930:351:1::0;33612:61:0::1;-1:-1:-1::0;;;;;33687:16:0;::::1;33706:1;33687:16:::0;;;:7:::1;:16;::::0;;;;;:20;33684:108:::1;;-1:-1:-1::0;;;;;33763:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33743:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33724:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33684:108:::1;-1:-1:-1::0;;;;;33802:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33802:27:0::1;33825:4;33802:27:::0;;::::1;::::0;;;33840:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33840:23:0::1;::::0;;::::1;::::0;;33313:558::o;48739:103::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;48811:15:::1;:23:::0;;-1:-1:-1;;48811:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48739:103::o;29353:198::-;-1:-1:-1;;;;;29443:20:0;;29419:7;29443:20;;;:11;:20;;;;;;;;29439:49;;;-1:-1:-1;;;;;;29472:16:0;;;;;:7;:16;;;;;;;29353:198::o;29439:49::-;-1:-1:-1;;;;;29526:16:0;;;;;;:7;:16;;;;;;29506:37;;:19;:37::i;16209:148::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;16316:1:::1;16300:6:::0;;16279:40:::1;::::0;-1:-1:-1;;;;;16300:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16279:40:0;16316:1;;16279:40:::1;16347:1;16330:19:::0;;-1:-1:-1;;;;;;16330:19:0::1;::::0;;16209:148::o;29726:223::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;29834:18:::1;29855:33;29880:7;29855:20;29867:7;29855;;:11;;:20;;;;:::i;:33::-;29899:29;:42:::0;-1:-1:-1;;;29726:223:0:o;28985:71::-;29024:13;29047:7;29040:14;;;;;:::i;29965:286::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;30109:15:::1;:32:::0;;;;30152:17:::1;:36:::0;30199:21:::1;:44:::0;29965:286::o;31505:269::-;31598:4;31615:129;8076:10;31638:7;31647:96;31686:15;31647:96;;;;;;;;;;;;;;;;;8076:10;31647:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31647:34:0;;;;;;;;;;;;:38;:96::i;17231:305::-;17283:14;;-1:-1:-1;;;;;17283:14:0;17301:10;17283:28;17275:76;;;;-1:-1:-1;;;17275:76:0;;12340:2:1;17275:76:0;;;12322:21:1;12379:2;12359:18;;;12352:30;12418:34;12398:18;;;12391:62;-1:-1:-1;;;12469:18:1;;;12462:33;12512:19;;17275:76:0;12138:399:1;17275:76:0;17388:9;;17370:15;:27;17362:72;;;;-1:-1:-1;;;17362:72:0;;11164:2:1;17362:72:0;;;11146:21:1;11203:2;11183:18;;;11176:30;11242:33;11222:18;;;11215:61;11293:18;;17362:72:0;10962:355:1;17362:72:0;17479:14;;;17471:6;;17450:44;;-1:-1:-1;;;;;17479:14:0;;;;17471:6;;;;-1:-1:-1;;;;;;;;;;;17450:44:0;;17514:14;;;17505:23;;-1:-1:-1;;;;;;17505:23:0;-1:-1:-1;;;;;17514:14:0;;;17505:23;;;;;;17231:305::o;44990:167::-;45068:4;45085:42;8076:10;45109:9;45120:6;45085:9;:42::i;34837:171::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;34914:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;34914:32:0;;::::1;;::::0;;34962:38:::1;::::0;::::1;::::0;::::1;::::0;34938:8;4674:14:1;4667:22;4649:41;;4637:2;4622:18;;4509:187;34962:38:0::1;;;;;;;;34837:171:::0;:::o;30572:229::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;30693:10:::1;:22:::0;;;;30726:11:::1;:24:::0;30761:15:::1;:32:::0;30572:229::o;16929:226::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;17010:6:::1;::::0;;;16993:23;;-1:-1:-1;;;;;;16993:23:0;;::::1;-1:-1:-1::0;;;;;17010:6:0;::::1;16993:23;::::0;;;17027:19:::1;::::0;;17069:22:::1;17087:4:::0;17069:15:::1;:22;:::i;:::-;17057:9;:34:::0;17144:1:::1;17128:6:::0;;17107:40:::1;::::0;-1:-1:-1;;;;;17128:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17107:40:0;17144:1;;17107:40:::1;16929:226:::0;:::o;34485:110::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34552:27:0::1;34582:5;34552:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34552:35:0::1;::::0;;34485:110::o;16512:244::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16601:22:0;::::1;16593:73;;;::::0;-1:-1:-1;;;16593:73:0;;6555:2:1;16593:73:0::1;::::0;::::1;6537:21:1::0;6594:2;6574:18;;;6567:30;6633:34;6613:18;;;6606:62;-1:-1:-1;;;6684:18:1;;;6677:36;6730:19;;16593:73:0::1;6353:402:1::0;16593:73:0::1;16703:6;::::0;;16682:38:::1;::::0;-1:-1:-1;;;;;16682:38:0;;::::1;::::0;16703:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16682:38:0;::::1;16731:6;:17:::0;;-1:-1:-1;;;;;;16731:17:0::1;-1:-1:-1::0;;;;;16731:17:0;;;::::1;::::0;;;::::1;::::0;;16512:244::o;30267:289::-;15785:6;;-1:-1:-1;;;;;15785:6:0;8076:10;15785:22;15777:67;;;;-1:-1:-1;;;15777:67:0;;;;;;;:::i;:::-;30412:16:::1;:34:::0;;;;30457:17:::1;:36:::0;30504:21:::1;:44:::0;30267:289::o;39211:337::-;-1:-1:-1;;;;;39304:19:0;;39296:68;;;;-1:-1:-1;;;39296:68:0;;10759:2:1;39296:68:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;-1:-1:-1;;;10888:18:1;;;10881:34;10932:19;;39296:68:0;10557:400:1;39296:68:0;-1:-1:-1;;;;;39383:21:0;;39375:68;;;;-1:-1:-1;;;39375:68:0;;6962:2:1;39375:68:0;;;6944:21:1;7001:2;6981:18;;;6974:30;7040:34;7020:18;;;7013:62;-1:-1:-1;;;7091:18:1;;;7084:32;7133:19;;39375:68:0;6760:398:1;39375:68:0;-1:-1:-1;;;;;39456:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39508:32;;12688:25:1;;;39508:32:0;;12661:18:1;39508:32:0;;;;;;;39211:337;;;:::o;4857:471::-;4915:7;5160:6;5156:47;;-1:-1:-1;5190:1:0;5183:8;;5156:47;5215:9;5227:5;5231:1;5227;:5;:::i;:::-;5215:17;-1:-1:-1;5260:1:0;5251:5;5255:1;5215:17;5251:5;:::i;:::-;:10;5243:56;;;;-1:-1:-1;;;5243:56:0;;8848:2:1;5243:56:0;;;8830:21:1;8887:2;8867:18;;;8860:30;8926:34;8906:18;;;8899:62;-1:-1:-1;;;8977:18:1;;;8970:31;9018:19;;5243:56:0;8646:397:1;5804:132:0;5862:7;5889:39;5893:1;5896;5889:39;;;;;;;;;;;;;;;;;:3;:39::i;42660:2322::-;-1:-1:-1;;;;;42782:18:0;;42774:68;;;;-1:-1:-1;;;42774:68:0;;10353:2:1;42774:68:0;;;10335:21:1;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:1;;;10475:35;10527:19;;42774:68:0;10151:401:1;42774:68:0;-1:-1:-1;;;;;42861:16:0;;42853:64;;;;-1:-1:-1;;;42853:64:0;;5740:2:1;42853:64:0;;;5722:21:1;5779:2;5759:18;;;5752:30;5818:34;5798:18;;;5791:62;-1:-1:-1;;;5869:18:1;;;5862:33;5912:19;;42853:64:0;5538:399:1;42853:64:0;42945:1;42936:6;:10;42928:64;;;;-1:-1:-1;;;42928:64:0;;9611:2:1;42928:64:0;;;9593:21:1;9650:2;9630:18;;;9623:30;9689:34;9669:18;;;9662:62;-1:-1:-1;;;9740:18:1;;;9733:39;9789:19;;42928:64:0;9409:405:1;42928:64:0;-1:-1:-1;;;;;43011:20:0;;;;;;:14;:20;;;;;;;;:29;43003:46;;;;-1:-1:-1;;;43003:46:0;;;;;;10021:2:1;10003:21;;;10060:1;10040:18;;;10033:29;-1:-1:-1;;;10093:2:1;10078:18;;10071:34;10137:2;10122:18;;9819:327;43003:46:0;-1:-1:-1;;;;;43068:18:0;;;;;;:14;:18;;;;;;;;:27;43060:44;;;;-1:-1:-1;;;43060:44:0;;;;;;10021:2:1;10003:21;;;10060:1;10040:18;;;10033:29;-1:-1:-1;;;10093:2:1;10078:18;;10071:34;10137:2;10122:18;;9819:327;43060:44:0;43127:13;-1:-1:-1;;;;;43119:21:0;:4;-1:-1:-1;;;;;43119:21:0;;:55;;;;;43158:15;-1:-1:-1;;;;;43144:30:0;:2;-1:-1:-1;;;;;43144:30:0;;;43119:55;:82;;;;-1:-1:-1;;;;;;43179:22:0;;;;;;:18;:22;;;;;;;;43178:23;43119:82;:101;;;;-1:-1:-1;43205:15:0;;;;43119:101;43115:305;;;43259:13;;43249:6;:23;;43241:32;;;;;;-1:-1:-1;;;;;43300:15:0;;;;;;:11;:15;;;;;;43318;-1:-1:-1;43292:42:0;;;;;;43391:8;;43371:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;43353:15:0;;;;;;:11;:15;;;;;:47;43115:305;43444:28;43475:24;43493:4;43475:9;:24::i;:::-;43444:55;;43539:29;;43515:20;:53;43512:146;;-1:-1:-1;43617:29:0;;43512:146;43721:29;;43697:53;;;;;;;43779;;-1:-1:-1;43816:16:0;;;;43815:17;43779:53;:91;;;;;43857:13;-1:-1:-1;;;;;43849:21:0;:4;-1:-1:-1;;;;;43849:21:0;;;43779:91;:129;;;;-1:-1:-1;43887:21:0;;;;;;;43779:129;43761:301;;;43970:29;;43947:52;;44014:36;44029:20;44014:14;:36::i;:::-;-1:-1:-1;;;;;44254:24:0;;44135:12;44254:24;;;:18;:24;;;;;;44150:4;;44254:24;;;:50;;-1:-1:-1;;;;;;44282:22:0;;;;;;:18;:22;;;;;;;;44254:50;44251:96;;;-1:-1:-1;44330:5:0;44251:96;44368:13;-1:-1:-1;;;;;44360:21:0;:4;-1:-1:-1;;;;;44360:21:0;;44357:501;;;44414:15;;44398:13;:31;44460:16;;44444:13;:32;44501:10;;44491:7;:20;44357:501;;;44538:13;-1:-1:-1;;;;;44532:19:0;:2;-1:-1:-1;;;;;44532:19:0;;44529:329;;;44583:17;;44567:13;:33;44631:17;;44615:13;:33;44673:11;;44663:7;:21;44529:329;;;44733:21;;44717:13;:37;44785:21;;44769:13;:37;44831:15;;44821:7;:25;44529:329;44936:38;44951:4;44956:2;44959:6;44966:7;44936:14;:38::i;:::-;42763:2219;;;42660:2322;;;:::o;4406:192::-;4492:7;4528:12;4520:6;;;;4512:29;;;;-1:-1:-1;;;4512:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4552:9:0;4564:5;4568:1;4564;:5;:::i;:::-;4552:17;4406:192;-1:-1:-1;;;;;4406:192:0:o;36714:163::-;36755:7;36776:15;36793;36812:19;:17;:19::i;:::-;36775:56;;-1:-1:-1;36775:56:0;-1:-1:-1;36849:20:0;36775:56;;36849:11;:20::i;:::-;36842:27;;;;36714:163;:::o;3503:181::-;3561:7;;3593:5;3597:1;3593;:5;:::i;:::-;3581:17;;3622:1;3617;:6;;3609:46;;;;-1:-1:-1;;;3609:46:0;;7365:2:1;3609:46:0;;;7347:21:1;7404:2;7384:18;;;7377:30;7443:29;7423:18;;;7416:57;7490:18;;3609:46:0;7163:351:1;35265:472:0;35324:7;35333;35342;35351;35360;35369;35378;35399:23;35424:12;35438:18;35458;35480:20;35492:7;35480:11;:20::i;:::-;35398:102;;;;;;;;35512:15;35529:23;35554:12;35570:62;35582:7;35591:4;35597:10;35609;35621;:8;:10::i;:::-;35570:11;:62::i;:::-;35511:121;;-1:-1:-1;35511:121:0;-1:-1:-1;35511:121:0;-1:-1:-1;35683:15:0;;-1:-1:-1;35700:4:0;;-1:-1:-1;35706:10:0;;-1:-1:-1;35718:10:0;-1:-1:-1;;;;35265:472:0;;;;;;;;;:::o;3967:136::-;4025:7;4052:43;4056:1;4059;4052:43;;;;;;;;;;;;;;;;;:3;:43::i;6432:278::-;6518:7;6553:12;6546:5;6538:28;;;;-1:-1:-1;;;6538:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6577:9:0;6589:5;6593:1;6589;:5;:::i;39679:1260::-;27995:16;:23;;-1:-1:-1;;27995:23:0;28014:4;27995:23;;;:16;39888:27:::1;:20:::0;39913:1:::1;39888:24;:27::i;:::-;39856:59:::0;-1:-1:-1;39926:29:0::1;39958:47;:20:::0;39856:59;39958:24:::1;:47::i;:::-;39926:79:::0;-1:-1:-1;40016:34:0::1;40053:28;39926:79:::0;40079:1:::1;40053:25;:28::i;:::-;40016:65:::0;-1:-1:-1;40092:29:0::1;40124:53;:21:::0;40016:65;40124:25:::1;:53::i;:::-;40092:85:::0;-1:-1:-1;40213:21:0::1;40188:22;40333:53;:26:::0;40364:21;40333:30:::1;:53::i;:::-;40305:81;;40399:35;40416:17;40399:16;:35::i;:::-;40447:18;40468:41;:21;40494:14:::0;40468:25:::1;:41::i;:::-;40447:62:::0;-1:-1:-1;40522:20:0::1;40545:17;40447:62:::0;40560:1:::1;40545:14;:17::i;:::-;40522:40;;40575:49;40588:21;40611:12;40575;:49::i;:::-;40642:79;::::0;;13911:25:1;;;13967:2;13952:18;;13945:34;;;13995:18;;;13988:34;;;40642:79:0::1;::::0;13899:2:1;13884:18;40642:79:0::1;;;;;;;40734:20;40757:28;:10:::0;40772:12;40757:14:::1;:28::i;:::-;40851:16;::::0;:39:::1;::::0;40734:51;;-1:-1:-1;;;;;;40851:16:0::1;::::0;:39;::::1;;;::::0;40734:51;;40851:16:::1;:39:::0;:16;:39;40734:51;40851:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40906:25:0::1;::::0;12688::1;;;40906::0::1;::::0;12676:2:1;12661:18;40906:25:0::1;;;;;;;-1:-1:-1::0;;28041:16:0;:24;;-1:-1:-1;;28041:24:0;;;-1:-1:-1;;;;;;;;39679:1260:0:o;45238:818::-;45349:7;45345:40;;45371:14;:12;:14::i;:::-;-1:-1:-1;;;;;45402:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45426:22:0;;;;;;:11;:22;;;;;;;;45425:23;45402:46;45398:597;;;45465:48;45487:6;45495:9;45506:6;45465:21;:48::i;:::-;45398:597;;;-1:-1:-1;;;;;45536:19:0;;;;;;:11;:19;;;;;;;;45535:20;:46;;;;-1:-1:-1;;;;;;45559:22:0;;;;;;:11;:22;;;;;;;;45535:46;45531:464;;;45598:46;45618:6;45626:9;45637:6;45598:19;:46::i;45531:464::-;-1:-1:-1;;;;;45667:19:0;;;;;;:11;:19;;;;;;;;45666:20;:47;;;;-1:-1:-1;;;;;;45691:22:0;;;;;;:11;:22;;;;;;;;45690:23;45666:47;45662:333;;;45730:44;45748:6;45756:9;45767:6;45730:17;:44::i;45662:333::-;-1:-1:-1;;;;;45796:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45819:22:0;;;;;;:11;:22;;;;;;;;45796:45;45792:203;;;45858:48;45880:6;45888:9;45899:6;45858:21;:48::i;45792:203::-;45939:44;45957:6;45965:9;45976:6;45939:17;:44::i;:::-;46011:7;46007:41;;46033:15;39084;;39074:7;:25;39126:21;;39110:13;:37;39174:21;;39158:13;:37;39030:173;46033:15;45238:818;;;;:::o;36885:555::-;36982:7;;37018;;36935;;;;;37036:289;37060:9;:16;37056:20;;37036:289;;;37126:7;37102;:21;37110:9;37120:1;37110:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37110:12:0;37102:21;;;;;;;;;;;;;:31;;:66;;;37161:7;37137;:21;37145:9;37155:1;37145:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37145:12:0;37137:21;;;;;;;;;;;;;:31;37102:66;37098:97;;;37178:7;;37187;;37170:25;;;;;;;36885:555;;:::o;37098:97::-;37220:34;37232:7;:21;37240:9;37250:1;37240:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37240:12:0;37232:21;;;;;;;;;;;;;37220:7;;:11;:34::i;:::-;37210:44;;37279:34;37291:7;:21;37299:9;37309:1;37299:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37299:12:0;37291:21;;;;;;;;;;;;;37279:7;;:11;:34::i;:::-;37269:44;-1:-1:-1;37078:3:0;;;;:::i;:::-;;;;37036:289;;;-1:-1:-1;37361:7:0;;37349;;:20;;:11;:20::i;:::-;37339:7;:30;37335:61;;;37379:7;;37388;;37371:25;;;;;;36885:555;;:::o;37335:61::-;37415:7;;37424;;-1:-1:-1;36885:555:0;-1:-1:-1;36885:555:0:o;35745:429::-;35805:7;35814;35823;35832;35852:12;35867:24;35883:7;35867:15;:24::i;:::-;35852:39;;35902:18;35923:30;35945:7;35923:21;:30::i;:::-;35902:51;;35964:18;35985:30;36007:7;35985:21;:30::i;:::-;35964:51;-1:-1:-1;36026:23:0;36052:49;36090:10;36052:33;35964:51;36052:33;:7;36064:4;36052:11;:17::i;:::-;:21;;:33::i;:49::-;36026:75;36137:4;;-1:-1:-1;36143:10:0;;-1:-1:-1;36143:10:0;-1:-1:-1;35745:429:0;;-1:-1:-1;;;35745:429:0:o;36182:524::-;36317:7;;;;36373:24;:7;36385:11;36373;:24::i;:::-;36355:42;-1:-1:-1;36408:12:0;36423:21;:4;36432:11;36423:8;:21::i;:::-;36408:36;-1:-1:-1;36455:18:0;36476:27;:10;36491:11;36476:14;:27::i;:::-;36455:48;-1:-1:-1;36514:18:0;36535:27;:10;36550:11;36535:14;:27::i;:::-;36514:48;-1:-1:-1;36573:23:0;36599:49;36637:10;36599:33;36514:48;36599:33;:7;36611:4;36599:11;:17::i;:49::-;36667:7;;;;-1:-1:-1;36693:4:0;;-1:-1:-1;36182:524:0;;-1:-1:-1;;;;;;;;;36182:524:0:o;41217:589::-;41367:16;;;41381:1;41367:16;;;;;;;;41343:21;;41367:16;;;;;;;;;;-1:-1:-1;41367:16:0;41343:40;;41412:4;41394;41399:1;41394:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41394:23:0;;;-1:-1:-1;;;;;41394:23:0;;;;;41438:15;-1:-1:-1;;;;;41438:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41428:4;41433:1;41428:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41428:32:0;;;-1:-1:-1;;;;;41428:32:0;;;;;41473:62;41490:4;41505:15;41523:11;41473:8;:62::i;:::-;41574:224;;-1:-1:-1;;;41574:224:0;;-1:-1:-1;;;;;41574:15:0;:66;;;;:224;;41655:11;;41681:1;;41725:4;;41752;;41772:15;;41574:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41814:513;41962:62;41979:4;41994:15;42012:11;41962:8;:62::i;:::-;42067:15;-1:-1:-1;;;;;42067:31:0;;42106:9;42139:4;42159:11;42185:1;42228;42271:7;15611;15638:6;-1:-1:-1;;;;;15638:6:0;;15573:79;42271:7;42067:252;;;;;;-1:-1:-1;;;;;;42067:252:0;;;-1:-1:-1;;;;;4256:15:1;;;42067:252:0;;;4238:34:1;4288:18;;;4281:34;;;;4331:18;;;4324:34;;;;4374:18;;;4367:34;4438:15;;;4417:19;;;4410:44;42293:15:0;4470:19:1;;;4463:35;4172:19;;42067:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41814:513;;:::o;38690:332::-;38736:7;;:12;:34;;;;-1:-1:-1;38752:13:0;;:18;38736:34;:56;;;;-1:-1:-1;38774:13:0;;:18;38736:56;38733:68;;;38690:332::o;38733:68::-;38831:7;;;38813:15;:25;38873:13;;;38849:21;:37;38921:13;;;38897:21;:37;-1:-1:-1;38947:11:0;;;;38969:17;;;;38997;38690:332::o;47287:627::-;47390:15;47407:23;47432:12;47446:23;47471:12;47485:18;47505;47527:19;47538:7;47527:10;:19::i;:::-;47389:157;;;;;;;;;;;;;;47575:28;47595:7;47575;:15;47583:6;-1:-1:-1;;;;;47575:15:0;-1:-1:-1;;;;;47575:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47557:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47632:7;:15;;;;:28;;47652:7;47632:19;:28::i;:::-;-1:-1:-1;;;;;47614:15:0;;;;;;;:7;:15;;;;;;:46;;;;47692:18;;;;;;;:39;;47715:15;47692:22;:39::i;:::-;-1:-1:-1;;;;;47671:18:0;;;;;;:7;:18;;;;;:60;47742:26;47757:10;47742:14;:26::i;:::-;47786;47801:10;47786:14;:26::i;:::-;47823:23;47835:4;47841;47823:11;:23::i;:::-;47879:9;-1:-1:-1;;;;;47862:44:0;47871:6;-1:-1:-1;;;;;47862:44:0;;47890:15;47862:44;;;;12688:25:1;;12676:2;12661:18;;12542:177;47862:44:0;;;;;;;;47378:536;;;;;;;47287:627;;;:::o;46639:640::-;46740:15;46757:23;46782:12;46796:23;46821:12;46835:18;46855;46877:19;46888:7;46877:10;:19::i;:::-;46739:157;;;;;;;;;;;;;;46925:28;46945:7;46925;:15;46933:6;-1:-1:-1;;;;;46925:15:0;-1:-1:-1;;;;;46925:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46907:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;46985:18;;;;;:7;:18;;;;;:39;;47008:15;46985:22;:39::i;:::-;-1:-1:-1;;;;;46964:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47056:7;:18;;;;:39;;47079:15;47056:22;:39::i;46064:567::-;46163:15;46180:23;46205:12;46219:23;46244:12;46258:18;46278;46300:19;46311:7;46300:10;:19::i;:::-;46162:157;;;;;;;;;;;;;;46348:28;46368:7;46348;:15;46356:6;-1:-1:-1;;;;;46348:15:0;-1:-1:-1;;;;;46348:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;47926:699::-;48029:15;48046:23;48071:12;48085:23;48110:12;48124:18;48144;48166:19;48177:7;48166:10;:19::i;:::-;48028:157;;;;;;;;;;;;;;48214:28;48234:7;48214;:15;48222:6;-1:-1:-1;;;;;48214:15:0;-1:-1:-1;;;;;48214:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;48196:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48271:7;:15;;;;:28;;48291:7;48271:19;:28::i;38182:154::-;38246:7;38273:55;38312:5;38273:20;38285:7;;38273;:11;;:20;;;;:::i;38344:166::-;38414:7;38441:61;38486:5;38441:26;38453:13;;38441:7;:11;;:26;;;;:::i;38516:166::-;38586:7;38613:61;38658:5;38613:26;38625:13;;38613:7;:11;;:26;;;;:::i;37448:355::-;37511:19;37534:10;:8;:10::i;:::-;37511:33;-1:-1:-1;37555:18:0;37576:27;:10;37511:33;37576:14;:27::i;:::-;37655:4;37639:22;;;;:7;:22;;;;;;37555:48;;-1:-1:-1;37639:38:0;;37555:48;37639:26;:38::i;:::-;37630:4;37614:22;;;;:7;:22;;;;;;;;:63;;;;37691:11;:26;;;;;;37688:107;;;37773:4;37757:22;;;;:7;:22;;;;;;:38;;37784:10;37757:26;:38::i;:::-;37748:4;37732:22;;;;:7;:22;;;;;:63;37500:303;;37448:355;:::o;35110:147::-;35188:7;;:17;;35200:4;35188:11;:17::i;:::-;35178:7;:27;35229:10;;:20;;35244:4;35229:14;:20::i;:::-;35216:10;:33;-1:-1:-1;;35110:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:248::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2729:9;2716:23;2706:33;;2758:35;2789:2;2778:9;2774:18;2758:35;:::i;2804:248::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;;2972:23:1;;;3042:2;3027:18;;;3014:32;;-1:-1:-1;2804:248:1:o;3057:316::-;3134:6;3142;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;-1:-1:-1;;3242:23:1;;;3312:2;3297:18;;3284:32;;-1:-1:-1;3363:2:1;3348:18;;;3335:32;;3057:316;-1:-1:-1;3057:316:1:o;3378:306::-;3466:6;3474;3482;3535:2;3523:9;3514:7;3510:23;3506:32;3503:52;;;3551:1;3548;3541:12;3503:52;3580:9;3574:16;3564:26;;3630:2;3619:9;3615:18;3609:25;3599:35;;3674:2;3663:9;3659:18;3653:25;3643:35;;3378:306;;;;;:::o;4936:597::-;5048:4;5077:2;5106;5095:9;5088:21;5138:6;5132:13;5181:6;5176:2;5165:9;5161:18;5154:34;5206:1;5216:140;5230:6;5227:1;5224:13;5216:140;;;5325:14;;;5321:23;;5315:30;5291:17;;;5310:2;5287:26;5280:66;5245:10;;5216:140;;;5374:6;5371:1;5368:13;5365:91;;;5444:1;5439:2;5430:6;5419:9;5415:22;5411:31;5404:42;5365:91;-1:-1:-1;5517:2:1;5496:15;-1:-1:-1;;5492:29:1;5477:45;;;;5524:2;5473:54;;4936:597;-1:-1:-1;;;4936:597:1:o;9048:356::-;9250:2;9232:21;;;9269:18;;;9262:30;9328:34;9323:2;9308:18;;9301:62;9395:2;9380:18;;9048:356::o;12724:980::-;12986:4;13034:3;13023:9;13019:19;13065:6;13054:9;13047:25;13091:2;13129:6;13124:2;13113:9;13109:18;13102:34;13172:3;13167:2;13156:9;13152:18;13145:31;13196:6;13231;13225:13;13262:6;13254;13247:22;13300:3;13289:9;13285:19;13278:26;;13339:2;13331:6;13327:15;13313:29;;13360:1;13370:195;13384:6;13381:1;13378:13;13370:195;;;13449:13;;-1:-1:-1;;;;;13445:39:1;13433:52;;13540:15;;;;13505:12;;;;13481:1;13399:9;13370:195;;;-1:-1:-1;;;;;;;13621:32:1;;;;13616:2;13601:18;;13594:60;-1:-1:-1;;;13685:3:1;13670:19;13663:35;13582:3;12724:980;-1:-1:-1;;;12724:980:1:o;14222:128::-;14262:3;14293:1;14289:6;14286:1;14283:13;14280:39;;;14299:18;;:::i;:::-;-1:-1:-1;14335:9:1;;14222:128::o;14355:217::-;14395:1;14421;14411:132;;14465:10;14460:3;14456:20;14453:1;14446:31;14500:4;14497:1;14490:15;14528:4;14525:1;14518:15;14411:132;-1:-1:-1;14557:9:1;;14355:217::o;14577:168::-;14617:7;14683:1;14679;14675:6;14671:14;14668:1;14665:21;14660:1;14653:9;14646:17;14642:45;14639:71;;;14690:18;;:::i;:::-;-1:-1:-1;14730:9:1;;14577:168::o;14750:125::-;14790:4;14818:1;14815;14812:8;14809:34;;;14823:18;;:::i;:::-;-1:-1:-1;14860:9:1;;14750:125::o;14880:380::-;14959:1;14955:12;;;;15002;;;15023:61;;15077:4;15069:6;15065:17;15055:27;;15023:61;15130:2;15122:6;15119:14;15099:18;15096:38;15093:161;;;15176:10;15171:3;15167:20;15164:1;15157:31;15211:4;15208:1;15201:15;15239:4;15236:1;15229:15;15093:161;;14880:380;;;:::o;15265:135::-;15304:3;-1:-1:-1;;15325:17:1;;15322:43;;;15345:18;;:::i;:::-;-1:-1:-1;15392:1:1;15381:13;;15265:135::o;15405:127::-;15466:10;15461:3;15457:20;15454:1;15447:31;15497:4;15494:1;15487:15;15521:4;15518:1;15511:15;15537:127;15598:10;15593:3;15589:20;15586:1;15579:31;15629:4;15626:1;15619:15;15653:4;15650:1;15643:15;15669:127;15730:10;15725:3;15721:20;15718:1;15711:31;15761:4;15758:1;15751:15;15785:4;15782:1;15775:15;15933:131;-1:-1:-1;;;;;16008:31:1;;15998:42;;15988:70;;16054:1;16051;16044:12;15988:70;15933:131;:::o

Swarm Source

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