ETH Price: $3,639.51 (+0.49%)
 

Overview

Max Total Supply

1,000,000,000 GORGO

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
9,212,700 GORGO

Value
$0.00
0x3bdd7cea539fec6e77405a6142df3d41629a9ae9
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:
Gorgonzola

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-02-14
*/

//Gorgonzola - GORGO

//Liquidity Fee: 4%
//Marketing Fee: 8%

//Telegram:  https://t.me/GorgonzolaETH

pragma solidity ^0.8.1;
// 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 Gorgonzola is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "Gorgonzola";
    string private _symbol = "GORGO";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 1_000_000_000;
    uint256 private _tTotal = initialsupply * 10 ** _decimals;
    address payable private _marketingWallet;
    address payable private _liquidity;
    
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping(address => uint256) private buycooldown;
    mapping(address => uint256) private sellcooldown;
    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 = 4;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 8;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 private maxBuyPercent = 10;
    uint256 private maxBuyDivisor = 1000;
    uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor;
   
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public 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;
        _liquidity = payable(uniswapV2Pair);
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[uniswapV2Pair] = 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 airdrop(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(airdropWallets.length < 100);
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            _transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() {
        uint256 swapAmount = _tTotal.mul(percent).div(divisor);
        numTokensSellToAddToLiquidity = swapAmount;
    }
        
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }    
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }    
    
    function setCooldown(uint256 _cooldown) external onlyOwner() {
        cooldown = _cooldown;
    }    
    
    function setLiquidityAddress(address _liq) public onlyOwner {
        require(_liq != address(0));
        _liquidity = payable(_liq);
        _isExcludedFromFee[_liquidity] = true;
    }
    
    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 transferToken(address _token, address _to) external onlyOwner returns (bool _sent){
        require(_token != address(0));
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
    }

    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
            _liquidity,
            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);        
            } else if(from == uniswapV2Pair && cooldownEnabled && !_isExcludedFromFee[to]) {
            require(sellcooldown[from] <= block.timestamp);
            sellcooldown[from] = 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;
        }

        //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":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_liq","type":"address"}],"name":"setLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"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"}]

600380546001600160a01b03191661dead17905560e0604052600a60a081905269476f72676f6e7a6f6c6160b01b60c0908152620000419160049190620004a0565b5060408051808201909152600580825264474f52474f60d81b60209092019182526200006e9181620004a0565b506006805460ff19166009908117909155633b9aca006007556200009490600a620005d8565b600754620000a3919062000699565b60088190556014805460ff19166001179055601e601555620000c89060001962000712565b620000d690600019620006bb565b60165560006018556018546019556004601a55601a54601b556008601c55601c54601d55600a601e556103e8601f55601f54601e546008546200011a919062000699565b62000126919062000578565b6020556021805460ff60a81b1916600160a81b1790556008546200014d9060649062000578565b6022553480156200015d57600080fd5b5060405162003aee38038062003aee833981016040819052620001809162000546565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601654336000908152600b602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200023e57600080fd5b505afa15801562000253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000279919062000546565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c257600080fd5b505afa158015620002d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fd919062000546565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034657600080fd5b505af11580156200035b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000381919062000546565b602180546001600160a01b03929092166001600160a01b031992831681179091556001600160601b0319606084901b16608052600a8054909216179055600160106000620003d76000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556021548216815260109093528183208054851660019081179091553084528284208054861682179055600954909116835291208054909216179055620004483390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200049091815260200190565b60405180910390a3505062000755565b828054620004ae90620006d5565b90600052602060002090601f016020900481019282620004d257600085556200051d565b82601f10620004ed57805160ff19168380011785556200051d565b828001600101855582156200051d579182015b828111156200051d57825182559160200191906001019062000500565b506200052b9291506200052f565b5090565b5b808211156200052b576000815560010162000530565b6000602082840312156200055957600080fd5b81516001600160a01b03811681146200057157600080fd5b9392505050565b6000826200058a576200058a6200073f565b500490565b600181815b80851115620005d0578160001904821115620005b457620005b462000729565b80851615620005c257918102915b93841c939080029062000594565b509250929050565b60006200057160ff841683600082620005f45750600162000693565b81620006035750600062000693565b81600181146200061c5760028114620006275762000647565b600191505062000693565b60ff8411156200063b576200063b62000729565b50506001821b62000693565b5060208310610133831016604e8410600b84101617156200066c575081810a62000693565b6200067883836200058f565b80600019048211156200068f576200068f62000729565b0290505b92915050565b6000816000190483118215151615620006b657620006b662000729565b500290565b600082821015620006d057620006d062000729565b500390565b600181811c90821680620006ea57607f821691505b602082108114156200070c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200072457620007246200073f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c6133506200079e6000396000818161034601528181611d260152818161265d0152818161272501528181612761015281816127d3015261283b01526133506000f3fe60806040526004361061028c5760003560e01c806352390c021161015a5780638ee88c53116100c1578063b6c523241161007a578063b6c52324146107d7578063c49b9a80146107ec578063dd4670641461080c578063dd62ed3e1461082c578063ea2f0b3714610872578063f2fde38b1461089257600080fd5b80638ee88c531461072d5780638fcc250d1461074d57806395d89b411461076d578063a457c2d714610782578063a69df4b5146107a2578063a9059cbb146107b757600080fd5b806370a082311161011357806370a0823114610673578063715018a614610693578063787a08a6146106a8578063809157c5146106be57806388f82020146106d65780638da5cb5b1461070f57600080fd5b806352390c02146105a4578063525fa81f146105c45780635342acb4146105e45780635932ead11461061d578063672434821461063d5780636bc87c3a1461065d57600080fd5b80633685d419116101fe578063457c194c116101b7578063457c194c146104e357806348ae238f1461050357806349bd5a5e146105235780634a74bb02146105435780634f662566146105645780634fc3f41a1461058457600080fd5b80633685d4191461042d578063395093511461044d5780633b124fe71461046d5780633bd5d17314610483578063437823ec146104a35780634549b039146104c357600080fd5b806318160ddd1161025057806318160ddd146103805780631da1db5e1461039557806322976e0d146103b557806323b872dd146103cb5780632d838119146103eb578063313ce5671461040b57600080fd5b806303d29d281461029857806306fdde03146102ba578063095ea7b3146102e557806313114a9d146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612e15565b6108b2565b005b3480156102c657600080fd5b506102cf610910565b6040516102dc9190613019565b60405180910390f35b3480156102f157600080fd5b50610305610300366004612e43565b6109a2565b60405190151581526020016102dc565b34801561032157600080fd5b506017545b6040519081526020016102dc565b34801561034057600080fd5b506103687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600854610326565b3480156103a157600080fd5b506102b86103b0366004612f72565b6109b9565b3480156103c157600080fd5b50610326601c5481565b3480156103d757600080fd5b506103056103e6366004612dd4565b610a44565b3480156103f757600080fd5b50610326610406366004612f72565b610aad565b34801561041757600080fd5b5060065460405160ff90911681526020016102dc565b34801561043957600080fd5b506102b8610448366004612d61565b610b31565b34801561045957600080fd5b50610305610468366004612e43565b610ce4565b34801561047957600080fd5b5061032660185481565b34801561048f57600080fd5b506102b861049e366004612f72565b610d1a565b3480156104af57600080fd5b506102b86104be366004612d61565b610e06565b3480156104cf57600080fd5b506103266104de366004612fa4565b610e54565b3480156104ef57600080fd5b506102b86104fe366004612f72565b610ee3565b34801561050f57600080fd5b5061030561051e366004612d9b565b610f12565b34801561052f57600080fd5b50602154610368906001600160a01b031681565b34801561054f57600080fd5b5060215461030590600160a81b900460ff1681565b34801561057057600080fd5b506102b861057f366004612fc9565b611058565b34801561059057600080fd5b506102b861059f366004612f72565b611134565b3480156105b057600080fd5b506102b86105bf366004612d61565b611163565b3480156105d057600080fd5b506102b86105df366004612d61565b61132e565b3480156105f057600080fd5b506103056105ff366004612d61565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561062957600080fd5b506102b8610638366004612f38565b6113a5565b34801561064957600080fd5b50610305610658366004612e6f565b6113e2565b34801561066957600080fd5b50610326601a5481565b34801561067f57600080fd5b5061032661068e366004612d61565b611483565b34801561069f57600080fd5b506102b86114e2565b3480156106b457600080fd5b5061032660155481565b3480156106ca57600080fd5b5060145460ff16610305565b3480156106e257600080fd5b506103056106f1366004612d61565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561071b57600080fd5b506000546001600160a01b0316610368565b34801561073957600080fd5b506102b8610748366004612f72565b611544565b34801561075957600080fd5b506102b8610768366004612fc9565b611573565b34801561077957600080fd5b506102cf6115c0565b34801561078e57600080fd5b5061030561079d366004612e43565b6115cf565b3480156107ae57600080fd5b506102b861161e565b3480156107c357600080fd5b506103056107d2366004612e43565b611724565b3480156107e357600080fd5b50600254610326565b3480156107f857600080fd5b506102b8610807366004612f38565b611731565b34801561081857600080fd5b506102b8610827366004612f72565b6117b3565b34801561083857600080fd5b50610326610847366004612d9b565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561087e57600080fd5b506102b861088d366004612d61565b611838565b34801561089e57600080fd5b506102b86108ad366004612d61565b611883565b6000546001600160a01b031633146108e55760405162461bcd60e51b81526004016108dc9061306e565b60405180910390fd5b5060016001600160a01b0382166000908152601260205260409020805460ff191660011790555b5050565b60606004805461091f906131d9565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906131d9565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109af33848461195b565b5060015b92915050565b6000546001600160a01b031633146109e35760405162461bcd60e51b81526004016108dc9061306e565b60648111156109f157600080fd5b60095447906001600160a01b03166108fc610a176064610a118587611a7f565b90611afe565b6040518115909202916000818181858888f19350505050158015610a3f573d6000803e3d6000fd5b505050565b6000610a51848484611b40565b610aa38433610a9e856040518060600160405280602881526020016132ae602891396001600160a01b038a166000908152600f602090815260408083203384529091529020549190611f62565b61195b565b5060019392505050565b6000601654821115610b145760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108dc565b6000610b1e611f9c565b9050610b2a8382611afe565b9392505050565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03811660009081526011602052604090205460ff16610bc35760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108dc565b60005b60135481101561090c57816001600160a01b031660138281548110610bed57610bed61325b565b6000918252602090912001546001600160a01b03161415610cd25760138054610c18906001906131c2565b81548110610c2857610c2861325b565b600091825260209091200154601380546001600160a01b039092169183908110610c5457610c5461325b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600c82526040808220829055601190925220805460ff191690556013805480610cac57610cac613245565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cdc81613214565b915050610bc6565b336000818152600f602090815260408083206001600160a01b038716845290915281205490916109af918590610a9e9086611fbf565b3360008181526011602052604090205460ff1615610d8f5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108dc565b6000610d9a8361201e565b5050506001600160a01b0386166000908152600b6020526040902054939450610dc893925084915050612079565b6001600160a01b0383166000908152600b6020526040902055601654610dee9082612079565b601655601754610dfe9084611fbf565b601755505050565b6000546001600160a01b03163314610e305760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6000600854831115610ea85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108dc565b81610ec8576000610eb88461201e565b509496506109b395505050505050565b6000610ed38461201e565b509396506109b395505050505050565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b81526004016108dc9061306e565b601c55565b600080546001600160a01b03163314610f3d5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b038316610f5057600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b158015610f9257600080fd5b505afa158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190612f8b565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb90604401602060405180830381600087803b15801561101857600080fd5b505af115801561102c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110509190612f55565b949350505050565b6000546001600160a01b031633146110825760405162461bcd60e51b81526004016108dc9061306e565b6001821015801561109557506103e88111155b61109e57600080fd5b60006110b982610a1185600854611a7f90919063ffffffff16565b90506103e86008546110cb9190613181565b81101561112d5760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b60648201526084016108dc565b6020555050565b6000546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108dc9061306e565b601555565b6000546001600160a01b0316331461118d5760405162461bcd60e51b81526004016108dc9061306e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112055760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016108dc565b6001600160a01b03811660009081526011602052604090205460ff161561126e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108dc565b6001600160a01b0381166000908152600b6020526040902054156112c8576001600160a01b0381166000908152600b60205260409020546112ae90610aad565b6001600160a01b0382166000908152600c60205260409020555b6001600160a01b03166000818152601160205260408120805460ff191660019081179091556013805491820181559091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319169091179055565b6000546001600160a01b031633146113585760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03811661136b57600080fd5b600a80546001600160a01b039092166001600160a01b0319909216821790556000908152601060205260409020805460ff19166001179055565b6000546001600160a01b031633146113cf5760405162461bcd60e51b81526004016108dc9061306e565b6014805460ff1916911515919091179055565b600080546001600160a01b0316331461140d5760405162461bcd60e51b81526004016108dc9061306e565b606483511061141b57600080fd5b60005b8351811015610aa357600084828151811061143b5761143b61325b565b6020026020010151905060008483815181106114595761145961325b565b6020026020010151905061146e338383611b40565b5050808061147b90613214565b91505061141e565b6001600160a01b03811660009081526011602052604081205460ff16156114c057506001600160a01b03166000908152600c602052604090205490565b6001600160a01b0382166000908152600b60205260409020546109b390610aad565b6000546001600160a01b0316331461150c5760405162461bcd60e51b81526004016108dc9061306e565b600080546040516001600160a01b03909116906000805160206132d6833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461156e5760405162461bcd60e51b81526004016108dc9061306e565b601a55565b6000546001600160a01b0316331461159d5760405162461bcd60e51b81526004016108dc9061306e565b60006115b882610a1185600854611a7f90919063ffffffff16565b602255505050565b60606005805461091f906131d9565b60006109af3384610a9e856040518060600160405280602581526020016132f660259139336000908152600f602090815260408083206001600160a01b038d1684529091529020549190611f62565b6001546001600160a01b031633146116845760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b60648201526084016108dc565b60025442116116d55760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016108dc565b600154600080546040516001600160a01b0393841693909116916000805160206132d683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109af338484611b40565b6000546001600160a01b0316331461175b5760405162461bcd60e51b81526004016108dc9061306e565b60218054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906117a890831515815260200190565b60405180910390a150565b6000546001600160a01b031633146117dd5760405162461bcd60e51b81526004016108dc9061306e565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561180c8142613169565b600255600080546040516001600160a01b03909116906000805160206132d6833981519152908390a350565b6000546001600160a01b031633146118625760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b031633146118ad5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b0381166119125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108dc565b600080546040516001600160a01b03808516939216916000805160206132d683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108dc565b6001600160a01b038216611a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108dc565b6001600160a01b038381166000818152600f602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600082611a8e575060006109b3565b6000611a9a83856131a3565b905082611aa78583613181565b14610b2a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108dc565b6000610b2a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120bb565b6001600160a01b038316611ba45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108dc565b6001600160a01b038216611c065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108dc565b60008111611c685760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108dc565b6001600160a01b03831660009081526012602052604090205460ff1615611cba5760405162461bcd60e51b81526004016108dc906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526012602052604090205460ff1615611d0c5760405162461bcd60e51b81526004016108dc906020808252600490820152634865686560e01b604082015260600190565b6021546001600160a01b038481169116148015611d5b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d8057506001600160a01b03821660009081526010602052604090205460ff16155b8015611d8e575060145460ff165b15611df257602054811115611da257600080fd5b6001600160a01b0382166000908152600d60205260409020544211611dc657600080fd5b601554611dd4904290611fbf565b6001600160a01b0383166000908152600d6020526040902055611e88565b6021546001600160a01b038481169116148015611e11575060145460ff165b8015611e3657506001600160a01b03821660009081526010602052604090205460ff16155b15611e88576001600160a01b0383166000908152600e6020526040902054421015611e6057600080fd5b601554611e6e904290611fbf565b6001600160a01b0384166000908152600e60205260409020555b6000611e9330611483565b90506022548110611ea357506022545b60225481108015908190611ec15750602154600160a01b900460ff16155b8015611edb57506021546001600160a01b03868116911614155b8015611ef05750602154600160a81b900460ff165b15611f03576022549150611f03826120e9565b6001600160a01b03851660009081526010602052604090205460019060ff1680611f4557506001600160a01b03851660009081526010602052604090205460ff165b15611f4e575060005b611f5a8686868461224a565b505050505050565b60008184841115611f865760405162461bcd60e51b81526004016108dc9190613019565b506000611f9384866131c2565b95945050505050565b6000806000611fa96123cd565b9092509050611fb88282611afe565b9250505090565b600080611fcc8385613169565b905083811015610b2a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108dc565b60008060008060008060008060008060006120388c61254f565b935093509350935060008060006120598f878787612054611f9c565b6125a4565b919f509d509b509599509397509195509350505050919395979092949650565b6000610b2a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f62565b600081836120dc5760405162461bcd60e51b81526004016108dc9190613019565b506000611f938486613181565b6021805460ff60a01b1916600160a01b1790556000612109826002611afe565b905060006121178383612079565b90506000612126826002611afe565b905060006121348383612079565b90504760006121438487611fbf565b905061214e81612606565b600061215a4784612079565b90506000612169826003611afe565b905061217585826127cd565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a160006121c28383612079565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156121fd573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506021805460ff60a01b191690555050505050505050565b80612257576122576128c2565b6001600160a01b03841660009081526011602052604090205460ff16801561229857506001600160a01b03831660009081526011602052604090205460ff16155b156122ad576122a8848484612907565b6123ab565b6001600160a01b03841660009081526011602052604090205460ff161580156122ee57506001600160a01b03831660009081526011602052604090205460ff165b156122fe576122a8848484612a4d565b6001600160a01b03841660009081526011602052604090205460ff1615801561234057506001600160a01b03831660009081526011602052604090205460ff16155b15612350576122a8848484612b0c565b6001600160a01b03841660009081526011602052604090205460ff16801561239057506001600160a01b03831660009081526011602052604090205460ff165b156123a0576122a8848484612b66565b6123ab848484612b0c565b806123c7576123c7601954601855601d54601c55601b54601a55565b50505050565b6016546008546000918291825b60135481101561251f5782600b6000601384815481106123fc576123fc61325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612467575081600c6000601384815481106124405761244061325b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561247d57601654600854945094505050509091565b6124c3600b6000601384815481106124975761249761325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612079565b925061250b600c6000601384815481106124df576124df61325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612079565b91508061251781613214565b9150506123da565b5060085460165461252f91611afe565b821015612546576016546008549350935050509091565b90939092509050565b600080600080600061256086612bef565b9050600061256d87612c0b565b9050600061257a88612c27565b905060006125948361258e84818d89612079565b90612079565b9993985091965094509092505050565b60008080806125b38986611a7f565b905060006125c18987611a7f565b905060006125cf8888611a7f565b905060006125dd8a89611a7f565b905060006125f18361258e84818989612079565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061263b5761263b61325b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126b457600080fd5b505afa1580156126c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ec9190612d7e565b816001815181106126ff576126ff61325b565b60200260200101906001600160a01b031690816001600160a01b03168152505061274a307f00000000000000000000000000000000000000000000000000000000000000008461195b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061279f9085906000908690309042906004016130a3565b600060405180830381600087803b1580156127b957600080fd5b505af1158015611f5a573d6000803e3d6000fd5b6127f8307f00000000000000000000000000000000000000000000000000000000000000008461195b565b600a5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c4016060604051808303818588803b15801561288257600080fd5b505af1158015612896573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128bb9190612feb565b5050505050565b6018541580156128d25750601a54155b80156128de5750601c54155b156128e557565b60188054601955601c8054601d55601a8054601b556000928390559082905555565b600080600080600080600061291b8861201e565b965096509650965096509650965061296188600c60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b038b166000908152600c6020908152604080832093909355600b905220546129909088612079565b6001600160a01b03808c166000908152600b602052604080822093909355908b16815220546129bf9087611fbf565b6001600160a01b038a166000908152600b60205260409020556129e182612c43565b6129ea81612c43565b6129f48584612ccb565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051612a3991815260200190565b60405180910390a350505050505050505050565b6000806000806000806000612a618861201e565b9650965096509650965096509650612aa787600b60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b03808c166000908152600b6020908152604080832094909455918c168152600c9091522054612add9085611fbf565b6001600160a01b038a166000908152600c6020908152604080832093909355600b905220546129bf9087611fbf565b6000806000806000806000612b208861201e565b965096509650965096509650965061299087600b60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6000806000806000806000612b7a8861201e565b9650965096509650965096509650612bc088600c60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b038b166000908152600c6020908152604080832093909355600b90522054612aa79088612079565b60006109b36064610a1160185485611a7f90919063ffffffff16565b60006109b36064610a11601c5485611a7f90919063ffffffff16565b60006109b36064610a11601a5485611a7f90919063ffffffff16565b6000612c4d611f9c565b90506000612c5b8383611a7f565b306000908152600b6020526040902054909150612c789082611fbf565b306000908152600b602090815260408083209390935560119052205460ff1615610a3f57306000908152600c6020526040902054612cb69084611fbf565b306000908152600c6020526040902055505050565b601654612cd89083612079565b601655601754612ce89082611fbf565b6017555050565b600082601f830112612d0057600080fd5b81356020612d15612d1083613145565b613114565b80838252828201915082860187848660051b8901011115612d3557600080fd5b60005b85811015612d5457813584529284019290840190600101612d38565b5090979650505050505050565b600060208284031215612d7357600080fd5b8135610b2a81613287565b600060208284031215612d9057600080fd5b8151610b2a81613287565b60008060408385031215612dae57600080fd5b8235612db981613287565b91506020830135612dc981613287565b809150509250929050565b600080600060608486031215612de957600080fd5b8335612df481613287565b92506020840135612e0481613287565b929592945050506040919091013590565b60008060408385031215612e2857600080fd5b8235612e3381613287565b91506020830135612dc98161329f565b60008060408385031215612e5657600080fd5b8235612e6181613287565b946020939093013593505050565b60008060408385031215612e8257600080fd5b823567ffffffffffffffff80821115612e9a57600080fd5b818501915085601f830112612eae57600080fd5b81356020612ebe612d1083613145565b8083825282820191508286018a848660051b8901011115612ede57600080fd5b600096505b84871015612f0a578035612ef681613287565b835260019690960195918301918301612ee3565b5096505086013592505080821115612f2157600080fd5b50612f2e85828601612cef565b9150509250929050565b600060208284031215612f4a57600080fd5b8135610b2a8161329f565b600060208284031215612f6757600080fd5b8151610b2a8161329f565b600060208284031215612f8457600080fd5b5035919050565b600060208284031215612f9d57600080fd5b5051919050565b60008060408385031215612fb757600080fd5b823591506020830135612dc98161329f565b60008060408385031215612fdc57600080fd5b50508035926020909101359150565b60008060006060848603121561300057600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b818110156130465785810183015185820160400152820161302a565b81811115613058576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130f35784516001600160a01b0316835293830193918301916001016130ce565b50506001600160a01b03969096166060850152505050608001529392505050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561313d5761313d613271565b604052919050565b600067ffffffffffffffff82111561315f5761315f613271565b5060051b60200190565b6000821982111561317c5761317c61322f565b500190565b60008261319e57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156131bd576131bd61322f565b500290565b6000828210156131d4576131d461322f565b500390565b600181811c908216806131ed57607f821691505b6020821081141561320e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132285761322861322f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461329c57600080fd5b50565b801515811461329c57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fca9db4cf68756edb1533bde2e0531675487c28e6c0fa3ed895e8562c032cc8f64736f6c63430008070033000000000000000000000000dbc864795670e49002c383f943780f9a0725b4c7

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806352390c021161015a5780638ee88c53116100c1578063b6c523241161007a578063b6c52324146107d7578063c49b9a80146107ec578063dd4670641461080c578063dd62ed3e1461082c578063ea2f0b3714610872578063f2fde38b1461089257600080fd5b80638ee88c531461072d5780638fcc250d1461074d57806395d89b411461076d578063a457c2d714610782578063a69df4b5146107a2578063a9059cbb146107b757600080fd5b806370a082311161011357806370a0823114610673578063715018a614610693578063787a08a6146106a8578063809157c5146106be57806388f82020146106d65780638da5cb5b1461070f57600080fd5b806352390c02146105a4578063525fa81f146105c45780635342acb4146105e45780635932ead11461061d578063672434821461063d5780636bc87c3a1461065d57600080fd5b80633685d419116101fe578063457c194c116101b7578063457c194c146104e357806348ae238f1461050357806349bd5a5e146105235780634a74bb02146105435780634f662566146105645780634fc3f41a1461058457600080fd5b80633685d4191461042d578063395093511461044d5780633b124fe71461046d5780633bd5d17314610483578063437823ec146104a35780634549b039146104c357600080fd5b806318160ddd1161025057806318160ddd146103805780631da1db5e1461039557806322976e0d146103b557806323b872dd146103cb5780632d838119146103eb578063313ce5671461040b57600080fd5b806303d29d281461029857806306fdde03146102ba578063095ea7b3146102e557806313114a9d146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612e15565b6108b2565b005b3480156102c657600080fd5b506102cf610910565b6040516102dc9190613019565b60405180910390f35b3480156102f157600080fd5b50610305610300366004612e43565b6109a2565b60405190151581526020016102dc565b34801561032157600080fd5b506017545b6040519081526020016102dc565b34801561034057600080fd5b506103687f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600854610326565b3480156103a157600080fd5b506102b86103b0366004612f72565b6109b9565b3480156103c157600080fd5b50610326601c5481565b3480156103d757600080fd5b506103056103e6366004612dd4565b610a44565b3480156103f757600080fd5b50610326610406366004612f72565b610aad565b34801561041757600080fd5b5060065460405160ff90911681526020016102dc565b34801561043957600080fd5b506102b8610448366004612d61565b610b31565b34801561045957600080fd5b50610305610468366004612e43565b610ce4565b34801561047957600080fd5b5061032660185481565b34801561048f57600080fd5b506102b861049e366004612f72565b610d1a565b3480156104af57600080fd5b506102b86104be366004612d61565b610e06565b3480156104cf57600080fd5b506103266104de366004612fa4565b610e54565b3480156104ef57600080fd5b506102b86104fe366004612f72565b610ee3565b34801561050f57600080fd5b5061030561051e366004612d9b565b610f12565b34801561052f57600080fd5b50602154610368906001600160a01b031681565b34801561054f57600080fd5b5060215461030590600160a81b900460ff1681565b34801561057057600080fd5b506102b861057f366004612fc9565b611058565b34801561059057600080fd5b506102b861059f366004612f72565b611134565b3480156105b057600080fd5b506102b86105bf366004612d61565b611163565b3480156105d057600080fd5b506102b86105df366004612d61565b61132e565b3480156105f057600080fd5b506103056105ff366004612d61565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561062957600080fd5b506102b8610638366004612f38565b6113a5565b34801561064957600080fd5b50610305610658366004612e6f565b6113e2565b34801561066957600080fd5b50610326601a5481565b34801561067f57600080fd5b5061032661068e366004612d61565b611483565b34801561069f57600080fd5b506102b86114e2565b3480156106b457600080fd5b5061032660155481565b3480156106ca57600080fd5b5060145460ff16610305565b3480156106e257600080fd5b506103056106f1366004612d61565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561071b57600080fd5b506000546001600160a01b0316610368565b34801561073957600080fd5b506102b8610748366004612f72565b611544565b34801561075957600080fd5b506102b8610768366004612fc9565b611573565b34801561077957600080fd5b506102cf6115c0565b34801561078e57600080fd5b5061030561079d366004612e43565b6115cf565b3480156107ae57600080fd5b506102b861161e565b3480156107c357600080fd5b506103056107d2366004612e43565b611724565b3480156107e357600080fd5b50600254610326565b3480156107f857600080fd5b506102b8610807366004612f38565b611731565b34801561081857600080fd5b506102b8610827366004612f72565b6117b3565b34801561083857600080fd5b50610326610847366004612d9b565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561087e57600080fd5b506102b861088d366004612d61565b611838565b34801561089e57600080fd5b506102b86108ad366004612d61565b611883565b6000546001600160a01b031633146108e55760405162461bcd60e51b81526004016108dc9061306e565b60405180910390fd5b5060016001600160a01b0382166000908152601260205260409020805460ff191660011790555b5050565b60606004805461091f906131d9565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906131d9565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109af33848461195b565b5060015b92915050565b6000546001600160a01b031633146109e35760405162461bcd60e51b81526004016108dc9061306e565b60648111156109f157600080fd5b60095447906001600160a01b03166108fc610a176064610a118587611a7f565b90611afe565b6040518115909202916000818181858888f19350505050158015610a3f573d6000803e3d6000fd5b505050565b6000610a51848484611b40565b610aa38433610a9e856040518060600160405280602881526020016132ae602891396001600160a01b038a166000908152600f602090815260408083203384529091529020549190611f62565b61195b565b5060019392505050565b6000601654821115610b145760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108dc565b6000610b1e611f9c565b9050610b2a8382611afe565b9392505050565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03811660009081526011602052604090205460ff16610bc35760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108dc565b60005b60135481101561090c57816001600160a01b031660138281548110610bed57610bed61325b565b6000918252602090912001546001600160a01b03161415610cd25760138054610c18906001906131c2565b81548110610c2857610c2861325b565b600091825260209091200154601380546001600160a01b039092169183908110610c5457610c5461325b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600c82526040808220829055601190925220805460ff191690556013805480610cac57610cac613245565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cdc81613214565b915050610bc6565b336000818152600f602090815260408083206001600160a01b038716845290915281205490916109af918590610a9e9086611fbf565b3360008181526011602052604090205460ff1615610d8f5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108dc565b6000610d9a8361201e565b5050506001600160a01b0386166000908152600b6020526040902054939450610dc893925084915050612079565b6001600160a01b0383166000908152600b6020526040902055601654610dee9082612079565b601655601754610dfe9084611fbf565b601755505050565b6000546001600160a01b03163314610e305760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6000600854831115610ea85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108dc565b81610ec8576000610eb88461201e565b509496506109b395505050505050565b6000610ed38461201e565b509396506109b395505050505050565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b81526004016108dc9061306e565b601c55565b600080546001600160a01b03163314610f3d5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b038316610f5057600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b158015610f9257600080fd5b505afa158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190612f8b565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb90604401602060405180830381600087803b15801561101857600080fd5b505af115801561102c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110509190612f55565b949350505050565b6000546001600160a01b031633146110825760405162461bcd60e51b81526004016108dc9061306e565b6001821015801561109557506103e88111155b61109e57600080fd5b60006110b982610a1185600854611a7f90919063ffffffff16565b90506103e86008546110cb9190613181565b81101561112d5760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b60648201526084016108dc565b6020555050565b6000546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108dc9061306e565b601555565b6000546001600160a01b0316331461118d5760405162461bcd60e51b81526004016108dc9061306e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112055760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016108dc565b6001600160a01b03811660009081526011602052604090205460ff161561126e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108dc565b6001600160a01b0381166000908152600b6020526040902054156112c8576001600160a01b0381166000908152600b60205260409020546112ae90610aad565b6001600160a01b0382166000908152600c60205260409020555b6001600160a01b03166000818152601160205260408120805460ff191660019081179091556013805491820181559091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319169091179055565b6000546001600160a01b031633146113585760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03811661136b57600080fd5b600a80546001600160a01b039092166001600160a01b0319909216821790556000908152601060205260409020805460ff19166001179055565b6000546001600160a01b031633146113cf5760405162461bcd60e51b81526004016108dc9061306e565b6014805460ff1916911515919091179055565b600080546001600160a01b0316331461140d5760405162461bcd60e51b81526004016108dc9061306e565b606483511061141b57600080fd5b60005b8351811015610aa357600084828151811061143b5761143b61325b565b6020026020010151905060008483815181106114595761145961325b565b6020026020010151905061146e338383611b40565b5050808061147b90613214565b91505061141e565b6001600160a01b03811660009081526011602052604081205460ff16156114c057506001600160a01b03166000908152600c602052604090205490565b6001600160a01b0382166000908152600b60205260409020546109b390610aad565b6000546001600160a01b0316331461150c5760405162461bcd60e51b81526004016108dc9061306e565b600080546040516001600160a01b03909116906000805160206132d6833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461156e5760405162461bcd60e51b81526004016108dc9061306e565b601a55565b6000546001600160a01b0316331461159d5760405162461bcd60e51b81526004016108dc9061306e565b60006115b882610a1185600854611a7f90919063ffffffff16565b602255505050565b60606005805461091f906131d9565b60006109af3384610a9e856040518060600160405280602581526020016132f660259139336000908152600f602090815260408083206001600160a01b038d1684529091529020549190611f62565b6001546001600160a01b031633146116845760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b60648201526084016108dc565b60025442116116d55760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016108dc565b600154600080546040516001600160a01b0393841693909116916000805160206132d683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109af338484611b40565b6000546001600160a01b0316331461175b5760405162461bcd60e51b81526004016108dc9061306e565b60218054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906117a890831515815260200190565b60405180910390a150565b6000546001600160a01b031633146117dd5760405162461bcd60e51b81526004016108dc9061306e565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561180c8142613169565b600255600080546040516001600160a01b03909116906000805160206132d6833981519152908390a350565b6000546001600160a01b031633146118625760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b031633146118ad5760405162461bcd60e51b81526004016108dc9061306e565b6001600160a01b0381166119125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108dc565b600080546040516001600160a01b03808516939216916000805160206132d683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108dc565b6001600160a01b038216611a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108dc565b6001600160a01b038381166000818152600f602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600082611a8e575060006109b3565b6000611a9a83856131a3565b905082611aa78583613181565b14610b2a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108dc565b6000610b2a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120bb565b6001600160a01b038316611ba45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108dc565b6001600160a01b038216611c065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108dc565b60008111611c685760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108dc565b6001600160a01b03831660009081526012602052604090205460ff1615611cba5760405162461bcd60e51b81526004016108dc906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526012602052604090205460ff1615611d0c5760405162461bcd60e51b81526004016108dc906020808252600490820152634865686560e01b604082015260600190565b6021546001600160a01b038481169116148015611d5b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d8057506001600160a01b03821660009081526010602052604090205460ff16155b8015611d8e575060145460ff165b15611df257602054811115611da257600080fd5b6001600160a01b0382166000908152600d60205260409020544211611dc657600080fd5b601554611dd4904290611fbf565b6001600160a01b0383166000908152600d6020526040902055611e88565b6021546001600160a01b038481169116148015611e11575060145460ff165b8015611e3657506001600160a01b03821660009081526010602052604090205460ff16155b15611e88576001600160a01b0383166000908152600e6020526040902054421015611e6057600080fd5b601554611e6e904290611fbf565b6001600160a01b0384166000908152600e60205260409020555b6000611e9330611483565b90506022548110611ea357506022545b60225481108015908190611ec15750602154600160a01b900460ff16155b8015611edb57506021546001600160a01b03868116911614155b8015611ef05750602154600160a81b900460ff165b15611f03576022549150611f03826120e9565b6001600160a01b03851660009081526010602052604090205460019060ff1680611f4557506001600160a01b03851660009081526010602052604090205460ff165b15611f4e575060005b611f5a8686868461224a565b505050505050565b60008184841115611f865760405162461bcd60e51b81526004016108dc9190613019565b506000611f9384866131c2565b95945050505050565b6000806000611fa96123cd565b9092509050611fb88282611afe565b9250505090565b600080611fcc8385613169565b905083811015610b2a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108dc565b60008060008060008060008060008060006120388c61254f565b935093509350935060008060006120598f878787612054611f9c565b6125a4565b919f509d509b509599509397509195509350505050919395979092949650565b6000610b2a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f62565b600081836120dc5760405162461bcd60e51b81526004016108dc9190613019565b506000611f938486613181565b6021805460ff60a01b1916600160a01b1790556000612109826002611afe565b905060006121178383612079565b90506000612126826002611afe565b905060006121348383612079565b90504760006121438487611fbf565b905061214e81612606565b600061215a4784612079565b90506000612169826003611afe565b905061217585826127cd565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a160006121c28383612079565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156121fd573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506021805460ff60a01b191690555050505050505050565b80612257576122576128c2565b6001600160a01b03841660009081526011602052604090205460ff16801561229857506001600160a01b03831660009081526011602052604090205460ff16155b156122ad576122a8848484612907565b6123ab565b6001600160a01b03841660009081526011602052604090205460ff161580156122ee57506001600160a01b03831660009081526011602052604090205460ff165b156122fe576122a8848484612a4d565b6001600160a01b03841660009081526011602052604090205460ff1615801561234057506001600160a01b03831660009081526011602052604090205460ff16155b15612350576122a8848484612b0c565b6001600160a01b03841660009081526011602052604090205460ff16801561239057506001600160a01b03831660009081526011602052604090205460ff165b156123a0576122a8848484612b66565b6123ab848484612b0c565b806123c7576123c7601954601855601d54601c55601b54601a55565b50505050565b6016546008546000918291825b60135481101561251f5782600b6000601384815481106123fc576123fc61325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612467575081600c6000601384815481106124405761244061325b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561247d57601654600854945094505050509091565b6124c3600b6000601384815481106124975761249761325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612079565b925061250b600c6000601384815481106124df576124df61325b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612079565b91508061251781613214565b9150506123da565b5060085460165461252f91611afe565b821015612546576016546008549350935050509091565b90939092509050565b600080600080600061256086612bef565b9050600061256d87612c0b565b9050600061257a88612c27565b905060006125948361258e84818d89612079565b90612079565b9993985091965094509092505050565b60008080806125b38986611a7f565b905060006125c18987611a7f565b905060006125cf8888611a7f565b905060006125dd8a89611a7f565b905060006125f18361258e84818989612079565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061263b5761263b61325b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126b457600080fd5b505afa1580156126c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ec9190612d7e565b816001815181106126ff576126ff61325b565b60200260200101906001600160a01b031690816001600160a01b03168152505061274a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461195b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061279f9085906000908690309042906004016130a3565b600060405180830381600087803b1580156127b957600080fd5b505af1158015611f5a573d6000803e3d6000fd5b6127f8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461195b565b600a5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c4016060604051808303818588803b15801561288257600080fd5b505af1158015612896573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128bb9190612feb565b5050505050565b6018541580156128d25750601a54155b80156128de5750601c54155b156128e557565b60188054601955601c8054601d55601a8054601b556000928390559082905555565b600080600080600080600061291b8861201e565b965096509650965096509650965061296188600c60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b038b166000908152600c6020908152604080832093909355600b905220546129909088612079565b6001600160a01b03808c166000908152600b602052604080822093909355908b16815220546129bf9087611fbf565b6001600160a01b038a166000908152600b60205260409020556129e182612c43565b6129ea81612c43565b6129f48584612ccb565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051612a3991815260200190565b60405180910390a350505050505050505050565b6000806000806000806000612a618861201e565b9650965096509650965096509650612aa787600b60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b03808c166000908152600b6020908152604080832094909455918c168152600c9091522054612add9085611fbf565b6001600160a01b038a166000908152600c6020908152604080832093909355600b905220546129bf9087611fbf565b6000806000806000806000612b208861201e565b965096509650965096509650965061299087600b60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6000806000806000806000612b7a8861201e565b9650965096509650965096509650612bc088600c60008d6001600160a01b03166001600160a01b031681526020019081526020016000205461207990919063ffffffff16565b6001600160a01b038b166000908152600c6020908152604080832093909355600b90522054612aa79088612079565b60006109b36064610a1160185485611a7f90919063ffffffff16565b60006109b36064610a11601c5485611a7f90919063ffffffff16565b60006109b36064610a11601a5485611a7f90919063ffffffff16565b6000612c4d611f9c565b90506000612c5b8383611a7f565b306000908152600b6020526040902054909150612c789082611fbf565b306000908152600b602090815260408083209390935560119052205460ff1615610a3f57306000908152600c6020526040902054612cb69084611fbf565b306000908152600c6020526040902055505050565b601654612cd89083612079565b601655601754612ce89082611fbf565b6017555050565b600082601f830112612d0057600080fd5b81356020612d15612d1083613145565b613114565b80838252828201915082860187848660051b8901011115612d3557600080fd5b60005b85811015612d5457813584529284019290840190600101612d38565b5090979650505050505050565b600060208284031215612d7357600080fd5b8135610b2a81613287565b600060208284031215612d9057600080fd5b8151610b2a81613287565b60008060408385031215612dae57600080fd5b8235612db981613287565b91506020830135612dc981613287565b809150509250929050565b600080600060608486031215612de957600080fd5b8335612df481613287565b92506020840135612e0481613287565b929592945050506040919091013590565b60008060408385031215612e2857600080fd5b8235612e3381613287565b91506020830135612dc98161329f565b60008060408385031215612e5657600080fd5b8235612e6181613287565b946020939093013593505050565b60008060408385031215612e8257600080fd5b823567ffffffffffffffff80821115612e9a57600080fd5b818501915085601f830112612eae57600080fd5b81356020612ebe612d1083613145565b8083825282820191508286018a848660051b8901011115612ede57600080fd5b600096505b84871015612f0a578035612ef681613287565b835260019690960195918301918301612ee3565b5096505086013592505080821115612f2157600080fd5b50612f2e85828601612cef565b9150509250929050565b600060208284031215612f4a57600080fd5b8135610b2a8161329f565b600060208284031215612f6757600080fd5b8151610b2a8161329f565b600060208284031215612f8457600080fd5b5035919050565b600060208284031215612f9d57600080fd5b5051919050565b60008060408385031215612fb757600080fd5b823591506020830135612dc98161329f565b60008060408385031215612fdc57600080fd5b50508035926020909101359150565b60008060006060848603121561300057600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b818110156130465785810183015185820160400152820161302a565b81811115613058576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130f35784516001600160a01b0316835293830193918301916001016130ce565b50506001600160a01b03969096166060850152505050608001529392505050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561313d5761313d613271565b604052919050565b600067ffffffffffffffff82111561315f5761315f613271565b5060051b60200190565b6000821982111561317c5761317c61322f565b500190565b60008261319e57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156131bd576131bd61322f565b500290565b6000828210156131d4576131d461322f565b500390565b600181811c908216806131ed57607f821691505b6020821081141561320e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132285761322861322f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461329c57600080fd5b50565b801515811461329c57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fca9db4cf68756edb1533bde2e0531675487c28e6c0fa3ed895e8562c032cc8f64736f6c63430008070033

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

000000000000000000000000dbc864795670e49002c383f943780f9a0725b4c7

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dbc864795670e49002c383f943780f9a0725b4c7


Deployed Bytecode Sourcemap

25682:23208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31834:282;;;;;;;;;;-1:-1:-1;31834:282:0;;;;;:::i;:::-;;:::i;:::-;;28907:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29552:161;;;;;;;;;;-1:-1:-1;29552:161:0;;;;;:::i;:::-;;:::i;:::-;;;7012:14:1;;7005:22;6987:41;;6975:2;6960:18;29552:161:0;6847:187:1;34778:87:0;;;;;;;;;;-1:-1:-1;34847:10:0;;34778:87;;;15026:25:1;;;15014:2;14999:18;34778:87:0;14880:177:1;27374:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5904:32:1;;;5886:51;;5874:2;5859:18;27374:51:0;5740:203:1;29130:79:0;;;;;;;;;;-1:-1:-1;29200:7:0;;29130:79;;40983:262;;;;;;;;;;-1:-1:-1;40983:262:0;;;;;:::i;:::-;;:::i;27100:32::-;;;;;;;;;;;;;;;;42675:313;;;;;;;;;;-1:-1:-1;42675:313:0;;;;;:::i;:::-;;:::i;32960:253::-;;;;;;;;;;-1:-1:-1;32960:253:0;;;;;:::i;:::-;;:::i;29057:67::-;;;;;;;;;;-1:-1:-1;29113:9:0;;29057:67;;29113:9;;;;16513:36:1;;16501:2;16486:18;29057:67:0;16371:184:1;33915:479:0;;;;;;;;;;-1:-1:-1;33915:479:0;;;;;:::i;:::-;;:::i;31327:218::-;;;;;;;;;;-1:-1:-1;31327:218:0;;;;;:::i;:::-;;:::i;26920:26::-;;;;;;;;;;;;;;;;32128:378;;;;;;;;;;-1:-1:-1;32128:378:0;;;;;:::i;:::-;;:::i;34402:111::-;;;;;;;;;;-1:-1:-1;34402:111:0;;;;;:::i;:::-;;:::i;32514:438::-;;;;;;;;;;-1:-1:-1;32514:438:0;;;;;:::i;:::-;;:::i;30512:122::-;;;;;;;;;;-1:-1:-1;30512:122:0;;;;;:::i;:::-;;:::i;41261:281::-;;;;;;;;;;-1:-1:-1;41261:281:0;;;;;:::i;:::-;;:::i;27432:28::-;;;;;;;;;;-1:-1:-1;27432:28:0;;;;-1:-1:-1;;;;;27432:28:0;;;27495:40;;;;;;;;;;-1:-1:-1;27495:40:0;;;;-1:-1:-1;;;27495:40:0;;;;;;30969:350;;;;;;;;;;-1:-1:-1;30969:350:0;;;;;:::i;:::-;;:::i;30650:100::-;;;;;;;;;;-1:-1:-1;30650:100:0;;;;;:::i;:::-;;:::i;33349:558::-;;;;;;;;;;-1:-1:-1;33349:558:0;;;;;:::i;:::-;;:::i;30766:191::-;;;;;;;;;;-1:-1:-1;30766:191:0;;;;;:::i;:::-;;:::i;34643:123::-;;;;;;;;;;-1:-1:-1;34643:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;34731:27:0;34707:4;34731:27;;;:18;:27;;;;;;;;;34643:123;48784:103;;;;;;;;;;-1:-1:-1;48784:103:0;;;;;:::i;:::-;;:::i;29722:401::-;;;;;;;;;;-1:-1:-1;29722:401:0;;;;;:::i;:::-;;:::i;27001:32::-;;;;;;;;;;;;;;;;29348:198;;;;;;;;;;-1:-1:-1;29348:198:0;;;;;:::i;:::-;;:::i;16295:148::-;;;;;;;;;;;;;:::i;26733:36::-;;;;;;;;;;;;;;;;48678:94;;;;;;;;;;-1:-1:-1;48749:15:0;;;;48678:94;;33221:120;;;;;;;;;;-1:-1:-1;33221:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33313:20:0;33289:4;33313:20;;;:11;:20;;;;;;;;;33221:120;15659:79;;;;;;;;;;-1:-1:-1;15697:7:0;15724:6;-1:-1:-1;;;;;15724:6:0;15659:79;;30374:122;;;;;;;;;;-1:-1:-1;30374:122:0;;;;;:::i;:::-;;:::i;30135:223::-;;;;;;;;;;-1:-1:-1;30135:223:0;;;;;:::i;:::-;;:::i;28980:71::-;;;;;;;;;;;;;:::i;31553:269::-;;;;;;;;;;-1:-1:-1;31553:269:0;;;;;:::i;:::-;;:::i;17317:305::-;;;;;;;;;;;;;:::i;45035:167::-;;;;;;;;;;-1:-1:-1;45035:167:0;;;;;:::i;:::-;;:::i;16850:89::-;;;;;;;;;;-1:-1:-1;16922:9:0;;16850:89;;34873:171;;;;;;;;;;-1:-1:-1;34873:171:0;;;;;:::i;:::-;;:::i;17015:226::-;;;;;;;;;;-1:-1:-1;17015:226:0;;;;;:::i;:::-;;:::i;29215:127::-;;;;;;;;;;-1:-1:-1;29215:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29313:18:0;;;29296:7;29313:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29215:127;34521:110;;;;;;;;;;-1:-1:-1;34521:110:0;;;;;:::i;:::-;;:::i;16598:244::-;;;;;;;;;;-1:-1:-1;16598:244:0;;;;;:::i;:::-;;:::i;31834:282::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31943:4:0::1;-1:-1:-1::0;;;;;31968:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31968:30:0::1;31994:4;31968:30;::::0;;32015:94:::1;31834:282:::0;;:::o;28907:67::-;28944:13;28967:5;28960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28907:67;:::o;29552:161::-;29627:4;29644:39;8162:10;29667:7;29676:6;29644:8;:39::i;:::-;-1:-1:-1;29701:4:0;29552:161;;;;;:::o;40983:262::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;41094:3:::1;41074:16;:23;;41066:32;;;::::0;::::1;;41169:16;::::0;41129:21:::1;::::0;-1:-1:-1;;;;;41169:16:0::1;41161:76;41196:40;41232:3;41196:31;41129:21:::0;41210:16;41196:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;41161:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41055:190;40983:262:::0;:::o;42675:313::-;42773:4;42790:36;42800:6;42808:9;42819:6;42790:9;:36::i;:::-;42837:121;42846:6;8162:10;42868:89;42906:6;42868:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42868:19:0;;;;;;:11;:19;;;;;;;;8162:10;42868:33;;;;;;;;;;:37;:89::i;:::-;42837:8;:121::i;:::-;-1:-1:-1;42976:4:0;42675:313;;;;;:::o;32960:253::-;33026:7;33065;;33054;:18;;33046:73;;;;-1:-1:-1;;;33046:73:0;;8482:2:1;33046:73:0;;;8464:21:1;8521:2;8501:18;;;8494:30;8560:34;8540:18;;;8533:62;-1:-1:-1;;;8611:18:1;;;8604:40;8661:19;;33046:73:0;8280:406:1;33046:73:0;33130:19;33153:10;:8;:10::i;:::-;33130:33;-1:-1:-1;33181:24:0;:7;33130:33;33181:11;:24::i;:::-;33174:31;32960:253;-1:-1:-1;;;32960:253:0:o;33915:479::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33997:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33989:60;;;::::0;-1:-1:-1;;;33989:60:0;;10470:2:1;33989:60:0::1;::::0;::::1;10452:21:1::0;10509:2;10489:18;;;10482:30;10548:29;10528:18;;;10521:57;10595:18;;33989:60:0::1;10268:351:1::0;33989:60:0::1;34065:9;34060:327;34084:9;:16:::0;34080:20;::::1;34060:327;;;34142:7;-1:-1:-1::0;;;;;34126:23:0::1;:9;34136:1;34126:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34126:12:0::1;:23;34122:254;;;34185:9;34195:16:::0;;:20:::1;::::0;34214:1:::1;::::0;34195:20:::1;:::i;:::-;34185:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34170:9:::1;:12:::0;;-1:-1:-1;;;;;34185:31:0;;::::1;::::0;34180:1;;34170:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34170:46:0::1;-1:-1:-1::0;;;;;34170:46:0;;::::1;;::::0;;34235:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34274:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34274:28:0::1;::::0;;34321:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34321:15:0;;;;;-1:-1:-1;;;;;;34321:15:0::1;::::0;;;;;31834:282;;:::o;34122:254::-:1;34102:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34060:327;;31327:218:::0;8162:10;31415:4;31464:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31464:34:0;;;;;;;;;;31415:4;;31432:83;;31455:7;;31464:50;;31503:10;31464:38;:50::i;32128:378::-;8162:10;32180:14;32229:19;;;:11;:19;;;;;;;;32228:20;32220:77;;;;-1:-1:-1;;;32220:77:0;;14265:2:1;32220:77:0;;;14247:21:1;14304:2;14284:18;;;14277:30;14343:34;14323:18;;;14316:62;-1:-1:-1;;;14394:18:1;;;14387:42;14446:19;;32220:77:0;14063:408:1;32220:77:0;32309:15;32334:19;32345:7;32334:10;:19::i;:::-;-1:-1:-1;;;;;;;;32382:15:0;;;;;;:7;:15;;;;;;32308:45;;-1:-1:-1;32382:28:0;;:15;-1:-1:-1;32308:45:0;;-1:-1:-1;;32382:19:0;:28::i;:::-;-1:-1:-1;;;;;32364:15:0;;;;;;:7;:15;;;;;:46;32431:7;;:20;;32443:7;32431:11;:20::i;:::-;32421:7;:30;32475:10;;:23;;32490:7;32475:14;:23::i;:::-;32462:10;:36;-1:-1:-1;;;32128:378:0:o;34402:111::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34471:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34471:34:0::1;34501:4;34471:34;::::0;;34402:111::o;32514:438::-;32604:7;32643;;32632;:18;;32624:62;;;;-1:-1:-1;;;32624:62:0;;10826:2:1;32624:62:0;;;10808:21:1;10865:2;10845:18;;;10838:30;10904:33;10884:18;;;10877:61;10955:18;;32624:62:0;10624:355:1;32624:62:0;32702:17;32697:248;;32737:15;32762:19;32773:7;32762:10;:19::i;:::-;-1:-1:-1;32736:45:0;;-1:-1:-1;32796:14:0;;-1:-1:-1;;;;;;32796:14:0;32697:248;32845:23;32877:19;32888:7;32877:10;:19::i;:::-;-1:-1:-1;32843:53:0;;-1:-1:-1;32911:22:0;;-1:-1:-1;;;;;;32911:22:0;30512:122;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;30598:13:::1;:28:::0;30512:122::o;41261:281::-;41341:10;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41371:20:0;::::1;41363:29;;;::::0;::::1;;41430:39;::::0;-1:-1:-1;;;41430:39:0;;41463:4:::1;41430:39;::::0;::::1;5886:51:1::0;41403:24:0::1;::::0;-1:-1:-1;;;;;41430:24:0;::::1;::::0;::::1;::::0;5859:18:1;;41430:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41488:46;::::0;-1:-1:-1;;;41488:46:0;;-1:-1:-1;;;;;6140:32:1;;;41488:46:0::1;::::0;::::1;6122:51:1::0;6189:18;;;6182:34;;;41403:66:0;;-1:-1:-1;41488:23:0;;::::1;::::0;::::1;::::0;6095:18:1;;41488:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41480:54:::0;41261:281;-1:-1:-1;;;;41261:281:0:o;30969:350::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;31075:1:::1;31064:7;:12;;:31;;;;;31091:4;31080:7;:15;;31064:31;31056:40;;;::::0;::::1;;31136:14;31153:33;31178:7;31153:20;31165:7;31153;;:11;;:20;;;;:::i;:33::-;31136:50;;31226:4;31216:7;;:14;;;;:::i;:::-;31205:6;:26;;31197:81;;;::::0;-1:-1:-1;;;31197:81:0;;10059:2:1;31197:81:0::1;::::0;::::1;10041:21:1::0;10098:2;10078:18;;;10071:30;10137:34;10117:18;;;10110:62;-1:-1:-1;;;10188:18:1;;;10181:40;10238:19;;31197:81:0::1;9857:406:1::0;31197:81:0::1;31289:13;:22:::0;-1:-1:-1;;30969:350:0:o;30650:100::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;30722:8:::1;:20:::0;30650:100::o;33349:558::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;33442:42:::1;-1:-1:-1::0;;;;;33431:53:0;::::1;;;33423:100;;;::::0;-1:-1:-1;;;33423:100:0;;13862:2:1;33423:100:0::1;::::0;::::1;13844:21:1::0;13901:2;13881:18;;;13874:30;13940:34;13920:18;;;13913:62;-1:-1:-1;;;13991:18:1;;;13984:32;14033:19;;33423:100:0::1;13660:398:1::0;33423:100:0::1;-1:-1:-1::0;;;;;33657:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33656:21;33648:61;;;::::0;-1:-1:-1;;;33648:61:0;;10470:2:1;33648:61:0::1;::::0;::::1;10452:21:1::0;10509:2;10489:18;;;10482:30;10548:29;10528:18;;;10521:57;10595:18;;33648:61:0::1;10268:351:1::0;33648:61:0::1;-1:-1:-1::0;;;;;33723:16:0;::::1;33742:1;33723:16:::0;;;:7:::1;:16;::::0;;;;;:20;33720:108:::1;;-1:-1:-1::0;;;;;33799:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33779:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33760:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33720:108:::1;-1:-1:-1::0;;;;;33838:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33838:27:0::1;33861:4;33838:27:::0;;::::1;::::0;;;33876:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33876:23:0::1;::::0;;::::1;::::0;;33349:558::o;30766:191::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30845:18:0;::::1;30837:27;;;::::0;::::1;;30875:10;:26:::0;;-1:-1:-1;;;;;30875:26:0;;::::1;-1:-1:-1::0;;;;;;30875:26:0;;::::1;::::0;::::1;::::0;;:10:::1;30912:30:::0;;;:18:::1;:30;::::0;;;;:37;;-1:-1:-1;;30912:37:0::1;30875:26:::0;30912:37:::1;::::0;;30766:191::o;48784:103::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;48856:15:::1;:23:::0;;-1:-1:-1;;48856:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48784:103::o;29722:401::-;29826:4;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;29874:3:::1;29850:14;:21;:27;29842:36;;;::::0;::::1;;29893:9;29889:205;29912:14;:21;29908:1;:25;29889:205;;;29954:14;29971;29986:1;29971:17;;;;;;;;:::i;:::-;;;;;;;29954:34;;30003:14;30020:7;30028:1;30020:10;;;;;;;;:::i;:::-;;;;;;;30003:27;;30045:37;30055:10;30067:6;30075;30045:9;:37::i;:::-;29939:155;;29935:3;;;;;:::i;:::-;;;;29889:205;;29348:198:::0;-1:-1:-1;;;;;29438:20:0;;29414:7;29438:20;;;:11;:20;;;;;;;;29434:49;;;-1:-1:-1;;;;;;29467:16:0;;;;;:7;:16;;;;;;;29348:198::o;29434:49::-;-1:-1:-1;;;;;29521:16:0;;;;;;:7;:16;;;;;;29501:37;;:19;:37::i;16295:148::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;16402:1:::1;16386:6:::0;;16365:40:::1;::::0;-1:-1:-1;;;;;16386:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16365:40:0;16402:1;;16365:40:::1;16433:1;16416:19:::0;;-1:-1:-1;;;;;;16416:19:0::1;::::0;;16295:148::o;30374:122::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;30460:13:::1;:28:::0;30374:122::o;30135:223::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;30243:18:::1;30264:33;30289:7;30264:20;30276:7;30264;;:11;;:20;;;;:::i;:33::-;30308:29;:42:::0;-1:-1:-1;;;30135:223:0:o;28980:71::-;29019:13;29042:7;29035:14;;;;;:::i;31553:269::-;31646:4;31663:129;8162:10;31686:7;31695:96;31734:15;31695:96;;;;;;;;;;;;;;;;;8162:10;31695:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31695:34:0;;;;;;;;;;;;:38;:96::i;17317:305::-;17369:14;;-1:-1:-1;;;;;17369:14:0;17387:10;17369:28;17361:76;;;;-1:-1:-1;;;17361:76:0;;14678:2:1;17361:76:0;;;14660:21:1;14717:2;14697:18;;;14690:30;14756:34;14736:18;;;14729:62;-1:-1:-1;;;14807:18:1;;;14800:33;14850:19;;17361:76:0;14476:399:1;17361:76:0;17474:9;;17456:15;:27;17448:72;;;;-1:-1:-1;;;17448:72:0;;13502:2:1;17448:72:0;;;13484:21:1;13541:2;13521:18;;;13514:30;13580:33;13560:18;;;13553:61;13631:18;;17448:72:0;13300:355:1;17448:72:0;17565:14;;;17557:6;;17536:44;;-1:-1:-1;;;;;17565:14:0;;;;17557:6;;;;-1:-1:-1;;;;;;;;;;;17536:44:0;;17600:14;;;17591:23;;-1:-1:-1;;;;;;17591:23:0;-1:-1:-1;;;;;17600:14:0;;;17591:23;;;;;;17317:305::o;45035:167::-;45113:4;45130:42;8162:10;45154:9;45165:6;45130:9;:42::i;34873:171::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;34950:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;34950:32:0::1;-1:-1:-1::0;;;;34950:32:0;;::::1;;::::0;;34998:38:::1;::::0;::::1;::::0;::::1;::::0;34974:8;7012:14:1;7005:22;6987:41;;6975:2;6960:18;;6847:187;34998:38:0::1;;;;;;;;34873:171:::0;:::o;17015:226::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;17096:6:::1;::::0;;;17079:23;;-1:-1:-1;;;;;;17079:23:0;;::::1;-1:-1:-1::0;;;;;17096:6:0;::::1;17079:23;::::0;;;17113:19:::1;::::0;;17155:22:::1;17173:4:::0;17155:15:::1;:22;:::i;:::-;17143:9;:34:::0;17230:1:::1;17214:6:::0;;17193:40:::1;::::0;-1:-1:-1;;;;;17214:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17193:40:0;17230:1;;17193:40:::1;17015:226:::0;:::o;34521:110::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34588:27:0::1;34618:5;34588:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34588:35:0::1;::::0;;34521:110::o;16598:244::-;15871:6;;-1:-1:-1;;;;;15871:6:0;8162:10;15871:22;15863:67;;;;-1:-1:-1;;;15863:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16687:22:0;::::1;16679:73;;;::::0;-1:-1:-1;;;16679:73:0;;8893:2:1;16679:73:0::1;::::0;::::1;8875:21:1::0;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:1;;;9015:36;9068:19;;16679:73:0::1;8691:402:1::0;16679:73:0::1;16789:6;::::0;;16768:38:::1;::::0;-1:-1:-1;;;;;16768:38:0;;::::1;::::0;16789:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16768:38:0;::::1;16817:6;:17:::0;;-1:-1:-1;;;;;;16817:17:0::1;-1:-1:-1::0;;;;;16817:17:0;;;::::1;::::0;;;::::1;::::0;;16598:244::o;39247:337::-;-1:-1:-1;;;;;39340:19:0;;39332:68;;;;-1:-1:-1;;;39332:68:0;;13097:2:1;39332:68:0;;;13079:21:1;13136:2;13116:18;;;13109:30;13175:34;13155:18;;;13148:62;-1:-1:-1;;;13226:18:1;;;13219:34;13270:19;;39332:68:0;12895:400:1;39332:68:0;-1:-1:-1;;;;;39419:21:0;;39411:68;;;;-1:-1:-1;;;39411:68:0;;9300:2:1;39411:68:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:34;9358:18;;;9351:62;-1:-1:-1;;;9429:18:1;;;9422:32;9471:19;;39411:68:0;9098:398:1;39411:68:0;-1:-1:-1;;;;;39492:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39544:32;;15026:25:1;;;39544:32:0;;14999:18:1;39544:32:0;;;;;;;39247:337;;;:::o;4943:471::-;5001:7;5246:6;5242:47;;-1:-1:-1;5276:1:0;5269:8;;5242:47;5301:9;5313:5;5317:1;5313;:5;:::i;:::-;5301:17;-1:-1:-1;5346:1:0;5337:5;5341:1;5301:17;5337:5;:::i;:::-;:10;5329:56;;;;-1:-1:-1;;;5329:56:0;;11186:2:1;5329:56:0;;;11168:21:1;11225:2;11205:18;;;11198:30;11264:34;11244:18;;;11237:62;-1:-1:-1;;;11315:18:1;;;11308:31;11356:19;;5329:56:0;10984:397:1;5890:132:0;5948:7;5975:39;5979:1;5982;5975:39;;;;;;;;;;;;;;;;;:3;:39::i;42996:2031::-;-1:-1:-1;;;;;43118:18:0;;43110:68;;;;-1:-1:-1;;;43110:68:0;;12691:2:1;43110:68:0;;;12673:21:1;12730:2;12710:18;;;12703:30;12769:34;12749:18;;;12742:62;-1:-1:-1;;;12820:18:1;;;12813:35;12865:19;;43110:68:0;12489:401:1;43110:68:0;-1:-1:-1;;;;;43197:16:0;;43189:64;;;;-1:-1:-1;;;43189:64:0;;8078:2:1;43189:64:0;;;8060:21:1;8117:2;8097:18;;;8090:30;8156:34;8136:18;;;8129:62;-1:-1:-1;;;8207:18:1;;;8200:33;8250:19;;43189:64:0;7876:399:1;43189:64:0;43281:1;43272:6;:10;43264:64;;;;-1:-1:-1;;;43264:64:0;;11949:2:1;43264:64:0;;;11931:21:1;11988:2;11968:18;;;11961:30;12027:34;12007:18;;;12000:62;-1:-1:-1;;;12078:18:1;;;12071:39;12127:19;;43264:64:0;11747:405:1;43264:64:0;-1:-1:-1;;;;;43347:20:0;;;;;;:14;:20;;;;;;;;:29;43339:46;;;;-1:-1:-1;;;43339:46:0;;;;;;12359:2:1;12341:21;;;12398:1;12378:18;;;12371:29;-1:-1:-1;;;12431:2:1;12416:18;;12409:34;12475:2;12460:18;;12157:327;43339:46:0;-1:-1:-1;;;;;43404:18:0;;;;;;:14;:18;;;;;;;;:27;43396:44;;;;-1:-1:-1;;;43396:44:0;;;;;;12359:2:1;12341:21;;;12398:1;12378:18;;;12371:29;-1:-1:-1;;;12431:2:1;12416:18;;12409:34;12475:2;12460:18;;12157:327;43396:44:0;43463:13;;-1:-1:-1;;;;;43455:21:0;;;43463:13;;43455:21;:55;;;;;43494:15;-1:-1:-1;;;;;43480:30:0;:2;-1:-1:-1;;;;;43480:30:0;;;43455:55;:82;;;;-1:-1:-1;;;;;;43515:22:0;;;;;;:18;:22;;;;;;;;43514:23;43455:82;:101;;;;-1:-1:-1;43541:15:0;;;;43455:101;43451:525;;;43595:13;;43585:6;:23;;43577:32;;;;;;-1:-1:-1;;;;;43636:15:0;;;;;;:11;:15;;;;;;43654;-1:-1:-1;43628:42:0;;;;;;43727:8;;43707:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;43689:15:0;;;;;;:11;:15;;;;;:47;43451:525;;;43777:13;;-1:-1:-1;;;;;43769:21:0;;;43777:13;;43769:21;:40;;;;-1:-1:-1;43794:15:0;;;;43769:40;:67;;;;-1:-1:-1;;;;;;43814:22:0;;;;;;:18;:22;;;;;;;;43813:23;43769:67;43766:210;;;-1:-1:-1;;;;;43861:18:0;;;;;;:12;:18;;;;;;43883:15;-1:-1:-1;43861:37:0;43853:46;;;;;;43955:8;;43935:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;43914:18:0;;;;;;:12;:18;;;;;:50;43766:210;44000:28;44031:24;44049:4;44031:9;:24::i;:::-;44000:55;;44095:29;;44071:20;:53;44068:146;;-1:-1:-1;44173:29:0;;44068:146;44277:29;;44253:53;;;;;;;44335;;-1:-1:-1;44372:16:0;;-1:-1:-1;;;44372:16:0;;;;44371:17;44335:53;:91;;;;-1:-1:-1;44413:13:0;;-1:-1:-1;;;;;44405:21:0;;;44413:13;;44405:21;;44335:91;:129;;;;-1:-1:-1;44443:21:0;;-1:-1:-1;;;44443:21:0;;;;44335:129;44317:301;;;44526:29;;44503:52;;44570:36;44585:20;44570:14;:36::i;:::-;-1:-1:-1;;;;;44810:24:0;;44691:12;44810:24;;;:18;:24;;;;;;44706:4;;44810:24;;;:50;;-1:-1:-1;;;;;;44838:22:0;;;;;;:18;:22;;;;;;;;44810:50;44807:96;;;-1:-1:-1;44886:5:0;44807:96;44981:38;44996:4;45001:2;45004:6;45011:7;44981:14;:38::i;:::-;43099:1928;;;42996:2031;;;:::o;4492:192::-;4578:7;4614:12;4606:6;;;;4598:29;;;;-1:-1:-1;;;4598:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4638:9:0;4650:5;4654:1;4650;:5;:::i;:::-;4638:17;4492:192;-1:-1:-1;;;;;4492:192:0:o;36750:163::-;36791:7;36812:15;36829;36848:19;:17;:19::i;:::-;36811:56;;-1:-1:-1;36811:56:0;-1:-1:-1;36885:20:0;36811:56;;36885:11;:20::i;:::-;36878:27;;;;36750:163;:::o;3589:181::-;3647:7;;3679:5;3683:1;3679;:5;:::i;:::-;3667:17;;3708:1;3703;:6;;3695:46;;;;-1:-1:-1;;;3695:46:0;;9703:2:1;3695:46:0;;;9685:21:1;9742:2;9722:18;;;9715:30;9781:29;9761:18;;;9754:57;9828:18;;3695:46:0;9501:351:1;35301:472:0;35360:7;35369;35378;35387;35396;35405;35414;35435:23;35460:12;35474:18;35494;35516:20;35528:7;35516:11;:20::i;:::-;35434:102;;;;;;;;35548:15;35565:23;35590:12;35606:62;35618:7;35627:4;35633:10;35645;35657;:8;:10::i;:::-;35606:11;:62::i;:::-;35547:121;;-1:-1:-1;35547:121:0;-1:-1:-1;35547:121:0;-1:-1:-1;35719:15:0;;-1:-1:-1;35736:4:0;;-1:-1:-1;35742:10:0;;-1:-1:-1;35754:10:0;-1:-1:-1;;;;35301:472:0;;;;;;;;;:::o;4053:136::-;4111:7;4138:43;4142:1;4145;4138:43;;;;;;;;;;;;;;;;;:3;:43::i;6518:278::-;6604:7;6639:12;6632:5;6624:28;;;;-1:-1:-1;;;6624:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6663:9:0;6675:5;6679:1;6675;:5;:::i;39715:1260::-;27895:16;:23;;-1:-1:-1;;;;27895:23:0;-1:-1:-1;;;27895:23:0;;;;39924:27:::1;:20:::0;39949:1:::1;39924:24;:27::i;:::-;39892:59:::0;-1:-1:-1;39962:29:0::1;39994:47;:20:::0;39892:59;39994:24:::1;:47::i;:::-;39962:79:::0;-1:-1:-1;40052:34:0::1;40089:28;39962:79:::0;40115:1:::1;40089:25;:28::i;:::-;40052:65:::0;-1:-1:-1;40128:29:0::1;40160:53;:21:::0;40052:65;40160:25:::1;:53::i;:::-;40128:85:::0;-1:-1:-1;40249:21:0::1;40224:22;40369:53;:26:::0;40400:21;40369:30:::1;:53::i;:::-;40341:81;;40435:35;40452:17;40435:16;:35::i;:::-;40483:18;40504:41;:21;40530:14:::0;40504:25:::1;:41::i;:::-;40483:62:::0;-1:-1:-1;40558:20:0::1;40581:17;40483:62:::0;40596:1:::1;40581:14;:17::i;:::-;40558:40;;40611:49;40624:21;40647:12;40611;:49::i;:::-;40678:79;::::0;;16249:25:1;;;16305:2;16290:18;;16283:34;;;16333:18;;;16326:34;;;40678:79:0::1;::::0;16237:2:1;16222:18;40678:79:0::1;;;;;;;40770:20;40793:28;:10:::0;40808:12;40793:14:::1;:28::i;:::-;40887:16;::::0;:39:::1;::::0;40770:51;;-1:-1:-1;;;;;;40887:16:0::1;::::0;:39;::::1;;;::::0;40770:51;;40887:16:::1;:39:::0;:16;:39;40770:51;40887:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40942:25:0::1;::::0;15026::1;;;40942::0::1;::::0;15014:2:1;14999:18;40942:25:0::1;;;;;;;-1:-1:-1::0;;27941:16:0;:24;;-1:-1:-1;;;;27941:24:0;;;-1:-1:-1;;;;;;;;39715:1260:0:o;45283:818::-;45394:7;45390:40;;45416:14;:12;:14::i;:::-;-1:-1:-1;;;;;45447:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45471:22:0;;;;;;:11;:22;;;;;;;;45470:23;45447:46;45443:597;;;45510:48;45532:6;45540:9;45551:6;45510:21;:48::i;:::-;45443:597;;;-1:-1:-1;;;;;45581:19:0;;;;;;:11;:19;;;;;;;;45580:20;:46;;;;-1:-1:-1;;;;;;45604:22:0;;;;;;:11;:22;;;;;;;;45580:46;45576:464;;;45643:46;45663:6;45671:9;45682:6;45643:19;:46::i;45576:464::-;-1:-1:-1;;;;;45712:19:0;;;;;;:11;:19;;;;;;;;45711:20;:47;;;;-1:-1:-1;;;;;;45736:22:0;;;;;;:11;:22;;;;;;;;45735:23;45711:47;45707:333;;;45775:44;45793:6;45801:9;45812:6;45775:17;:44::i;45707:333::-;-1:-1:-1;;;;;45841:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45864:22:0;;;;;;:11;:22;;;;;;;;45841:45;45837:203;;;45903:48;45925:6;45933:9;45944:6;45903:21;:48::i;45837:203::-;45984:44;46002:6;46010:9;46021:6;45984:17;:44::i;:::-;46056:7;46052:41;;46078:15;39120;;39110:7;:25;39162:21;;39146:13;:37;39210:21;;39194:13;:37;39066:173;46078:15;45283:818;;;;:::o;36921:555::-;37018:7;;37054;;36971;;;;;37072:289;37096:9;:16;37092:20;;37072:289;;;37162:7;37138;:21;37146:9;37156:1;37146:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37146:12:0;37138:21;;;;;;;;;;;;;:31;;:66;;;37197:7;37173;:21;37181:9;37191:1;37181:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37181:12:0;37173:21;;;;;;;;;;;;;:31;37138:66;37134:97;;;37214:7;;37223;;37206:25;;;;;;;36921:555;;:::o;37134:97::-;37256:34;37268:7;:21;37276:9;37286:1;37276:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37276:12:0;37268:21;;;;;;;;;;;;;37256:7;;:11;:34::i;:::-;37246:44;;37315:34;37327:7;:21;37335:9;37345:1;37335:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37335:12:0;37327:21;;;;;;;;;;;;;37315:7;;:11;:34::i;:::-;37305:44;-1:-1:-1;37114:3:0;;;;:::i;:::-;;;;37072:289;;;-1:-1:-1;37397:7:0;;37385;;:20;;:11;:20::i;:::-;37375:7;:30;37371:61;;;37415:7;;37424;;37407:25;;;;;;36921:555;;:::o;37371:61::-;37451:7;;37460;;-1:-1:-1;36921:555:0;-1:-1:-1;36921:555:0:o;35781:429::-;35841:7;35850;35859;35868;35888:12;35903:24;35919:7;35903:15;:24::i;:::-;35888:39;;35938:18;35959:30;35981:7;35959:21;:30::i;:::-;35938:51;;36000:18;36021:30;36043:7;36021:21;:30::i;:::-;36000:51;-1:-1:-1;36062:23:0;36088:49;36126:10;36088:33;36000:51;36088:33;:7;36100:4;36088:11;:17::i;:::-;:21;;:33::i;:49::-;36062:75;36173:4;;-1:-1:-1;36179:10:0;;-1:-1:-1;36179:10:0;-1:-1:-1;35781:429:0;;-1:-1:-1;;;35781:429:0:o;36218:524::-;36353:7;;;;36409:24;:7;36421:11;36409;:24::i;:::-;36391:42;-1:-1:-1;36444:12:0;36459:21;:4;36468:11;36459:8;:21::i;:::-;36444:36;-1:-1:-1;36491:18:0;36512:27;:10;36527:11;36512:14;:27::i;:::-;36491:48;-1:-1:-1;36550:18:0;36571:27;:10;36586:11;36571:14;:27::i;:::-;36550:48;-1:-1:-1;36609:23:0;36635:49;36673:10;36635:33;36550:48;36635:33;:7;36647:4;36635:11;:17::i;:49::-;36703:7;;;;-1:-1:-1;36729:4:0;;-1:-1:-1;36218:524:0;;-1:-1:-1;;;;;;;;;36218:524:0:o;41550:589::-;41700:16;;;41714:1;41700:16;;;;;;;;41676:21;;41700:16;;;;;;;;;;-1:-1:-1;41700:16:0;41676:40;;41745:4;41727;41732:1;41727:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41727:23:0;;;-1:-1:-1;;;;;41727:23:0;;;;;41771:15;-1:-1:-1;;;;;41771:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41761:4;41766:1;41761:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41761:32:0;;;-1:-1:-1;;;;;41761:32:0;;;;;41806:62;41823:4;41838:15;41856:11;41806:8;:62::i;:::-;41907:224;;-1:-1:-1;;;41907:224:0;;-1:-1:-1;;;;;41907:15:0;:66;;;;:224;;41988:11;;42014:1;;42058:4;;42085;;42105:15;;41907:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42147:516;42295:62;42312:4;42327:15;42345:11;42295:8;:62::i;:::-;42604:10;;42400:255;;-1:-1:-1;;;42400:255:0;;42472:4;42400:255;;;6576:34:1;6626:18;;;6619:34;;;42518:1:0;6669:18:1;;;6662:34;;;6712:18;;;6705:34;-1:-1:-1;;;;;42604:10:0;;;6755:19:1;;;6748:44;42629:15:0;6808:19:1;;;6801:35;42400:15:0;:31;;;;;;42439:9;;6510:19:1;;42400:255:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42147:516;;:::o;38726:332::-;38772:7;;:12;:34;;;;-1:-1:-1;38788:13:0;;:18;38772:34;:56;;;;-1:-1:-1;38810:13:0;;:18;38772:56;38769:68;;;38726:332::o;38769:68::-;38867:7;;;38849:15;:25;38909:13;;;38885:21;:37;38957:13;;;38933:21;:37;-1:-1:-1;38983:11:0;;;;39005:17;;;;39033;38726:332::o;47332:627::-;47435:15;47452:23;47477:12;47491:23;47516:12;47530:18;47550;47572:19;47583:7;47572:10;:19::i;:::-;47434:157;;;;;;;;;;;;;;47620:28;47640:7;47620;:15;47628:6;-1:-1:-1;;;;;47620:15:0;-1:-1:-1;;;;;47620:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47602:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47677:7;:15;;;;:28;;47697:7;47677:19;:28::i;:::-;-1:-1:-1;;;;;47659:15:0;;;;;;;:7;:15;;;;;;:46;;;;47737:18;;;;;;;:39;;47760:15;47737:22;:39::i;:::-;-1:-1:-1;;;;;47716:18:0;;;;;;:7;:18;;;;;:60;47787:26;47802:10;47787:14;:26::i;:::-;47831;47846:10;47831:14;:26::i;:::-;47868:23;47880:4;47886;47868:11;:23::i;:::-;47924:9;-1:-1:-1;;;;;47907:44:0;47916:6;-1:-1:-1;;;;;47907:44:0;;47935:15;47907:44;;;;15026:25:1;;15014:2;14999:18;;14880:177;47907:44:0;;;;;;;;47423:536;;;;;;;47332:627;;;:::o;46684:640::-;46785:15;46802:23;46827:12;46841:23;46866:12;46880:18;46900;46922:19;46933:7;46922:10;:19::i;:::-;46784:157;;;;;;;;;;;;;;46970:28;46990:7;46970;:15;46978:6;-1:-1:-1;;;;;46970:15:0;-1:-1:-1;;;;;46970:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46952:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47030:18;;;;;:7;:18;;;;;:39;;47053:15;47030:22;:39::i;:::-;-1:-1:-1;;;;;47009:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47101:7;:18;;;;:39;;47124:15;47101:22;:39::i;46109:567::-;46208:15;46225:23;46250:12;46264:23;46289:12;46303:18;46323;46345:19;46356:7;46345:10;:19::i;:::-;46207:157;;;;;;;;;;;;;;46393:28;46413:7;46393;:15;46401:6;-1:-1:-1;;;;;46393:15:0;-1:-1:-1;;;;;46393:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;47971:699::-;48074:15;48091:23;48116:12;48130:23;48155:12;48169:18;48189;48211:19;48222:7;48211:10;:19::i;:::-;48073:157;;;;;;;;;;;;;;48259:28;48279:7;48259;:15;48267:6;-1:-1:-1;;;;;48259:15:0;-1:-1:-1;;;;;48259:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;48241:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48316:7;:15;;;;:28;;48336:7;48316:19;:28::i;38218:154::-;38282:7;38309:55;38348:5;38309:20;38321:7;;38309;:11;;:20;;;;:::i;38380:166::-;38450:7;38477:61;38522:5;38477:26;38489:13;;38477:7;:11;;:26;;;;:::i;38552:166::-;38622:7;38649:61;38694:5;38649:26;38661:13;;38649:7;:11;;:26;;;;:::i;37484:355::-;37547:19;37570:10;:8;:10::i;:::-;37547:33;-1:-1:-1;37591:18:0;37612:27;:10;37547:33;37612:14;:27::i;:::-;37691:4;37675:22;;;;:7;:22;;;;;;37591:48;;-1:-1:-1;37675:38:0;;37591:48;37675:26;:38::i;:::-;37666:4;37650:22;;;;:7;:22;;;;;;;;:63;;;;37727:11;:26;;;;;;37724:107;;;37809:4;37793:22;;;;:7;:22;;;;;;:38;;37820:10;37793:26;:38::i;:::-;37784:4;37768:22;;;;:7;:22;;;;;:63;37536:303;;37484:355;:::o;35146:147::-;35224:7;;:17;;35236:4;35224:11;:17::i;:::-;35214:7;:27;35265:10;;:20;;35280:4;35265:14;:20::i;:::-;35252:10;:33;-1:-1:-1;;35146:147:0:o;14:673:1:-;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;225:60;241:43;281:2;241:43;:::i;:::-;225:60;:::i;:::-;307:3;331:2;326:3;319:15;359:2;354:3;350:12;343:19;;394:2;386:6;382:15;446:3;441:2;435;432:1;428:10;420:6;416:23;412:32;409:41;406:61;;;463:1;460;453:12;406:61;485:1;495:163;509:2;506:1;503:9;495:163;;;566:17;;554:30;;604:12;;;;636;;;;527:1;520:9;495:163;;;-1:-1:-1;676:5:1;;14:673;-1:-1:-1;;;;;;;14:673:1:o;692:247::-;751:6;804:2;792:9;783:7;779:23;775:32;772:52;;;820:1;817;810:12;772:52;859:9;846:23;878:31;903:5;878:31;:::i;944:251::-;1014:6;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1115:9;1109:16;1134:31;1159:5;1134:31;:::i;1200:388::-;1268:6;1276;1329:2;1317:9;1308:7;1304:23;1300:32;1297:52;;;1345:1;1342;1335:12;1297:52;1384:9;1371:23;1403:31;1428:5;1403:31;:::i;:::-;1453:5;-1:-1:-1;1510:2:1;1495:18;;1482:32;1523:33;1482:32;1523:33;:::i;:::-;1575:7;1565:17;;;1200:388;;;;;:::o;1593:456::-;1670:6;1678;1686;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;1794:9;1781:23;1813:31;1838:5;1813:31;:::i;:::-;1863:5;-1:-1:-1;1920:2:1;1905:18;;1892:32;1933:33;1892:32;1933:33;:::i;:::-;1593:456;;1985:7;;-1:-1:-1;;;2039:2:1;2024:18;;;;2011:32;;1593:456::o;2054:382::-;2119:6;2127;2180:2;2168:9;2159:7;2155:23;2151:32;2148:52;;;2196:1;2193;2186:12;2148:52;2235:9;2222:23;2254:31;2279:5;2254:31;:::i;:::-;2304:5;-1:-1:-1;2361:2:1;2346:18;;2333:32;2374:30;2333:32;2374:30;:::i;2441:315::-;2509:6;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;2746:2;2731:18;;;;2718:32;;-1:-1:-1;;;2441:315:1:o;2761:1226::-;2879:6;2887;2940:2;2928:9;2919:7;2915:23;2911:32;2908:52;;;2956:1;2953;2946:12;2908:52;2996:9;2983:23;3025:18;3066:2;3058:6;3055:14;3052:34;;;3082:1;3079;3072:12;3052:34;3120:6;3109:9;3105:22;3095:32;;3165:7;3158:4;3154:2;3150:13;3146:27;3136:55;;3187:1;3184;3177:12;3136:55;3223:2;3210:16;3245:4;3269:60;3285:43;3325:2;3285:43;:::i;3269:60::-;3351:3;3375:2;3370:3;3363:15;3403:2;3398:3;3394:12;3387:19;;3434:2;3430;3426:11;3482:7;3477:2;3471;3468:1;3464:10;3460:2;3456:19;3452:28;3449:41;3446:61;;;3503:1;3500;3493:12;3446:61;3525:1;3516:10;;3535:238;3549:2;3546:1;3543:9;3535:238;;;3620:3;3607:17;3637:31;3662:5;3637:31;:::i;:::-;3681:18;;3567:1;3560:9;;;;;3719:12;;;;3751;;3535:238;;;-1:-1:-1;3792:5:1;-1:-1:-1;;3835:18:1;;3822:32;;-1:-1:-1;;3866:16:1;;;3863:36;;;3895:1;3892;3885:12;3863:36;;3918:63;3973:7;3962:8;3951:9;3947:24;3918:63;:::i;:::-;3908:73;;;2761:1226;;;;;:::o;3992:241::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;4156:9;4143:23;4175:28;4197:5;4175:28;:::i;4238:245::-;4305:6;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4406:9;4400:16;4425:28;4447:5;4425:28;:::i;4488:180::-;4547:6;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;-1:-1:-1;4639:23:1;;4488:180;-1:-1:-1;4488:180:1:o;4673:184::-;4743:6;4796:2;4784:9;4775:7;4771:23;4767:32;4764:52;;;4812:1;4809;4802:12;4764:52;-1:-1:-1;4835:16:1;;4673:184;-1:-1:-1;4673:184:1:o;4862:309::-;4927:6;4935;4988:2;4976:9;4967:7;4963:23;4959:32;4956:52;;;5004:1;5001;4994:12;4956:52;5040:9;5027:23;5017:33;;5100:2;5089:9;5085:18;5072:32;5113:28;5135:5;5113:28;:::i;5176:248::-;5244:6;5252;5305:2;5293:9;5284:7;5280:23;5276:32;5273:52;;;5321:1;5318;5311:12;5273:52;-1:-1:-1;;5344:23:1;;;5414:2;5399:18;;;5386:32;;-1:-1:-1;5176:248:1:o;5429:306::-;5517:6;5525;5533;5586:2;5574:9;5565:7;5561:23;5557:32;5554:52;;;5602:1;5599;5592:12;5554:52;5631:9;5625:16;5615:26;;5681:2;5670:9;5666:18;5660:25;5650:35;;5725:2;5714:9;5710:18;5704:25;5694:35;;5429:306;;;;;:::o;7274:597::-;7386:4;7415:2;7444;7433:9;7426:21;7476:6;7470:13;7519:6;7514:2;7503:9;7499:18;7492:34;7544:1;7554:140;7568:6;7565:1;7562:13;7554:140;;;7663:14;;;7659:23;;7653:30;7629:17;;;7648:2;7625:26;7618:66;7583:10;;7554:140;;;7712:6;7709:1;7706:13;7703:91;;;7782:1;7777:2;7768:6;7757:9;7753:22;7749:31;7742:42;7703:91;-1:-1:-1;7855:2:1;7834:15;-1:-1:-1;;7830:29:1;7815:45;;;;7862:2;7811:54;;7274:597;-1:-1:-1;;;7274:597:1:o;11386:356::-;11588:2;11570:21;;;11607:18;;;11600:30;11666:34;11661:2;11646:18;;11639:62;11733:2;11718:18;;11386:356::o;15062:980::-;15324:4;15372:3;15361:9;15357:19;15403:6;15392:9;15385:25;15429:2;15467:6;15462:2;15451:9;15447:18;15440:34;15510:3;15505:2;15494:9;15490:18;15483:31;15534:6;15569;15563:13;15600:6;15592;15585:22;15638:3;15627:9;15623:19;15616:26;;15677:2;15669:6;15665:15;15651:29;;15698:1;15708:195;15722:6;15719:1;15716:13;15708:195;;;15787:13;;-1:-1:-1;;;;;15783:39:1;15771:52;;15878:15;;;;15843:12;;;;15819:1;15737:9;15708:195;;;-1:-1:-1;;;;;;;15959:32:1;;;;15954:2;15939:18;;15932:60;-1:-1:-1;;;16023:3:1;16008:19;16001:35;15920:3;15062:980;-1:-1:-1;;;15062:980:1:o;16560:275::-;16631:2;16625:9;16696:2;16677:13;;-1:-1:-1;;16673:27:1;16661:40;;16731:18;16716:34;;16752:22;;;16713:62;16710:88;;;16778:18;;:::i;:::-;16814:2;16807:22;16560:275;;-1:-1:-1;16560:275:1:o;16840:183::-;16900:4;16933:18;16925:6;16922:30;16919:56;;;16955:18;;:::i;:::-;-1:-1:-1;17000:1:1;16996:14;17012:4;16992:25;;16840:183::o;17028:128::-;17068:3;17099:1;17095:6;17092:1;17089:13;17086:39;;;17105:18;;:::i;:::-;-1:-1:-1;17141:9:1;;17028:128::o;17161:217::-;17201:1;17227;17217:132;;17271:10;17266:3;17262:20;17259:1;17252:31;17306:4;17303:1;17296:15;17334:4;17331:1;17324:15;17217:132;-1:-1:-1;17363:9:1;;17161:217::o;17383:168::-;17423:7;17489:1;17485;17481:6;17477:14;17474:1;17471:21;17466:1;17459:9;17452:17;17448:45;17445:71;;;17496:18;;:::i;:::-;-1:-1:-1;17536:9:1;;17383:168::o;17556:125::-;17596:4;17624:1;17621;17618:8;17615:34;;;17629:18;;:::i;:::-;-1:-1:-1;17666:9:1;;17556:125::o;17686:380::-;17765:1;17761:12;;;;17808;;;17829:61;;17883:4;17875:6;17871:17;17861:27;;17829:61;17936:2;17928:6;17925:14;17905:18;17902:38;17899:161;;;17982:10;17977:3;17973:20;17970:1;17963:31;18017:4;18014:1;18007:15;18045:4;18042:1;18035:15;17899:161;;17686:380;;;:::o;18071:135::-;18110:3;-1:-1:-1;;18131:17:1;;18128:43;;;18151:18;;:::i;:::-;-1:-1:-1;18198:1:1;18187:13;;18071:135::o;18211:127::-;18272:10;18267:3;18263:20;18260:1;18253:31;18303:4;18300:1;18293:15;18327:4;18324:1;18317:15;18343:127;18404:10;18399:3;18395:20;18392:1;18385:31;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18475:127;18536:10;18531:3;18527:20;18524:1;18517:31;18567:4;18564:1;18557:15;18591:4;18588:1;18581:15;18607:127;18668:10;18663:3;18659:20;18656:1;18649:31;18699:4;18696:1;18689:15;18723:4;18720:1;18713:15;18739:131;-1:-1:-1;;;;;18814:31:1;;18804:42;;18794:70;;18860:1;18857;18850:12;18794:70;18739:131;:::o;18875:118::-;18961:5;18954:13;18947:21;18940:5;18937:32;18927:60;;18983:1;18980;18973:12

Swarm Source

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