ETH Price: $2,843.70 (+9.51%)
 

Overview

Max Total Supply

7,754.795680076633493631 STCP

Holders

39

Market

Price

$2.13 @ 0.000748 ETH

Onchain Market Cap

$16,486.80

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50 STCP

Value
$106.30 ( ~0.0373809285383068 Eth) [0.6448%]
0x2ae93d7d935f413ce4e2f66bc180244c4547401e
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:
MyCbToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-19
*/

/*
 *    /\                                                        /\
 *   |  |                                                      |  |
 *  /----\                stockpilefinance.com                /----\
 * [______]                                                  [______]
 *  |    |         _____                        _____         |    |
 *  |[]  |        [     ]                      [     ]        |  []|
 *  |    |       [_______][ ][ ][ ][][ ][ ][ ][_______]       |    |
 *  |    [ ][ ][ ]|     |  ,----------------,  |     |[ ][ ][ ]    |
 *  |             |     |/'    ____..____    '\|     |             |
 *   \  []        |     |    /'    ||    '\    |     |        []  /
 *    |      []   |     |   |o     ||     o|   |     |  []       |
 *    |           |  _  |   |     _||_     |   |  _  |           |
 *    |   []      | (_) |   |    (_||_)    |   | (_) |       []  |
 *    |           |     |   |     (||)     |   |     |           |
 *    |           |     |   |      ||      |   |     |           |
 *  /''           |     |   |o     ||     o|   |     |           ''\
 * [_____________[_______]--'------''------'--[_______]_____________]
 *
 */

// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/GSN/[email protected]


pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


// File contracts/interfaces/INBUNIERC20.sol


pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface INBUNIERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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


    event Log(string log);

}


// File @openzeppelin/contracts/math/[email protected]


pragma solidity ^0.6.0;

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.6.2;

/**
 * @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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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


// File contracts/interfaces/IFeeApprover.sol


pragma solidity ^0.6.0;


interface IFeeApprover {

    function check(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    function setFeeMultiplier(uint _feeMultiplier) external;
    function feePercentX100() external view returns (uint);

    function setTokenUniswapPair(address _tokenUniswapPair) external;
   
    function setCoreTokenAddress(address _coreTokenAddress) external;
    function updateTxState() external;
    function calculateAmountsAfterFee(        
        address sender, 
        address recipient, 
        uint256 amount
    ) external  returns (uint256 transferToAmount, uint256 transferToFeeBearerAmount, uint256 transferToBurnAmount);

    function setPaused() external;
 

}


// File contracts/interfaces/ICoreVault.sol

pragma solidity ^0.6.0;


interface ICoreVault {
    function addPendingRewards(uint _amount) external;
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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


// File contracts/uniswapv2/interfaces/IUniswapV2Factory.sol

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 migrator() 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;
    function setMigrator(address) external;
}


// File contracts/uniswapv2/interfaces/IUniswapV2Router01.sol

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


// File contracts/uniswapv2/interfaces/IUniswapV2Router02.sol

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

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


// File contracts/uniswapv2/interfaces/IWETH.sol

pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.6.0;

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

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

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

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

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

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

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


// File contracts/MyCbToken.sol


pragma solidity ^0.6.0;







// import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract MyCbToken is Context, INBUNIERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

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

    event LiquidityAddition(address indexed dst, uint value);
    event LPTokenClaimed(address dst, uint value);

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 public constant initialSupply = 10000e18; // 10k 
    uint256 public contractStartTimestamp;


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

    //function initialSetup(address router, address factory) internal {
    constructor(address router, address factory) public {
        _name = "stockpilefinance.com";
        _symbol = "STCP";
        _decimals = 18;
        _mint(address(this), initialSupply);
        contractStartTimestamp = block.timestamp;
        uniswapRouterV2 = IUniswapV2Router02(router != address(0) ? router : 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // For testing
        uniswapFactory = IUniswapV2Factory(factory != address(0) ? factory : 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); // For testing
        //createUniswapPairMainnet();
    }

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

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

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

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


    IUniswapV2Router02 public uniswapRouterV2;
    IUniswapV2Factory public uniswapFactory;


    address public tokenUniswapPair;

    function createUniswapPairMainnet() public returns (address) {
        require(tokenUniswapPair == address(0), "Token: pool already created");
        tokenUniswapPair = uniswapFactory.createPair(
            address(uniswapRouterV2.WETH()),
            address(this)
        );
        return tokenUniswapPair;
    }


    //// Liquidity generation logic
    /// Steps - All tokens tat will ever exist go to this contract
    /// This contract accepts ETH as payable
    /// ETH is mapped to people
    /// When liquidity generationevent is over veryone can call 
    /// the mint LP function
    // which will put all the ETH and tokens inside the uniswap contract
    /// without any involvement
    /// This LP will go into this contract
    /// And will be able to proportionally be withdrawn baed on ETH put in
    /// A emergency drain function allows the contract owner to drain all ETH and tokens from this contract
    /// After the liquidity generation event happened. In case something goes wrong, to send ETH back


    string public liquidityGenerationParticipationAgreement = "I'm not a resident of the United States \n I understand that this contract is provided with no warranty of any kind. \n I agree to not hold the contract creators, CORE team members or anyone associated with this event liable for any damage monetary and otherwise I might onccur. \n I understand that any smart contract interaction carries an inherent risk.";
    uint liquidityGenerationDuration = 4 days;

    function getSecondsLeftInLiquidityGenerationEvent() public view returns (uint256) {
        require(liquidityGenerationOngoing(), "Event over");
        return contractStartTimestamp.add(liquidityGenerationDuration).sub(block.timestamp);
    }

    function liquidityGenerationOngoing() public view returns (bool) {
        return contractStartTimestamp.add(liquidityGenerationDuration) > block.timestamp;
    }

    // Emergency drain in case of a bug
    // Adds all funds to owner to refund people
    // Designed to be as simple as possible
    function emergencyDrain24hAfterLiquidityGenerationEventIsDone() public onlyOwner {
        require(contractStartTimestamp.add(8 days) < block.timestamp, "Liquidity generation grace period still ongoing"); // About 24h after liquidity generation happens        
        (bool success, ) = msg.sender.call.value(address(this).balance)("");
        require(success, "Transfer failed.");
        _balances[msg.sender] = _balances[address(this)];
        _balances[address(this)] = 0;
    }

    uint256 public totalLPTokensMinted;
    uint256 public totalETHContributed;
    uint256 public LPperETHUnit;


    bool public LPGenerationCompleted;
    // Sends all avaibile balances and mints LP tokens
    // Possible ways this could break addressed 
    // 1) Multiple calls and resetting amounts - addressed with boolean
    // 2) Failed WETH wrapping/unwrapping addressed with checks
    // 3) Failure to create LP tokens, addressed with checks
    // 4) Unacceptable division errors . Addressed with multiplications by 1e18
    // 5) Pair not set - impossible since its set in constructor
    function addLiquidityToUniswapCORExWETHPair() public {
        require(liquidityGenerationOngoing() == false, "Liquidity generation onging");
        require(LPGenerationCompleted == false, "Liquidity generation already finished");
        totalETHContributed = address(this).balance;
        IUniswapV2Pair pair = IUniswapV2Pair(tokenUniswapPair);
        //Wrap eth
        address WETH = uniswapRouterV2.WETH();
        IWETH(WETH).deposit{value : totalETHContributed}();
        require(address(this).balance == 0 , "Transfer Failed");
        IWETH(WETH).transfer(address(pair),totalETHContributed);
        _balances[address(pair)] = _balances[address(this)];
        _balances[address(this)] = 0;
        pair.mint(address(this));
        totalLPTokensMinted = pair.balanceOf(address(this));
        require(totalLPTokensMinted != 0 , "LP creation failed");
        LPperETHUnit = totalLPTokensMinted.mul(1e18).div(totalETHContributed); // 1e18x for  change
        require(LPperETHUnit != 0 , "LP creation failed");
        LPGenerationCompleted = true;

    }


    mapping (address => uint)  public ethContributed;
    // Possible ways this could break addressed
    // 1) No ageement to terms - added require
    // 2) Adding liquidity after generaion is over - added require
    // 3) Overflow from uint - impossible there isnt that much ETH aviable 
    // 4) Depositing 0 - not an issue it will just add 0 to tally
    function addLiquidity(bool agreesToTermsOutlinedInLiquidityGenerationParticipationAgreement) public payable {
        require(liquidityGenerationOngoing(), "Liquidity Generation Event over");
        require(agreesToTermsOutlinedInLiquidityGenerationParticipationAgreement, "No agreement provided");
        ethContributed[msg.sender] += msg.value; // Overflow protection from safemath is not neded here 
        totalETHContributed = totalETHContributed.add(msg.value); // for front end display during LGE. This resets with definietly correct balance while calling pair.
        emit LiquidityAddition(msg.sender, msg.value);
    }
    
    // Possible ways this could break addressed
    // 1) Accessing before event is over and resetting eth contributed -- added require
    // 2) No uniswap pair - impossible at this moment because of the LPGenerationCompleted bool
    // 3) LP per unit is 0 - impossible checked at generation function
    function claimLPTokens() public {
        require(LPGenerationCompleted, "Event not over yet");
        require(ethContributed[msg.sender] > 0 , "Nothing to claim, move along");
        IUniswapV2Pair pair = IUniswapV2Pair(tokenUniswapPair);
        uint256 amountLPToTransfer = ethContributed[msg.sender].mul(LPperETHUnit).div(1e18);
        pair.transfer(msg.sender, amountLPToTransfer); // stored as 1e18x value for change
        ethContributed[msg.sender] = 0;
        emit LPTokenClaimed(msg.sender, amountLPToTransfer);
    }


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

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

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

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

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

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

    function setShouldTransferChecker(address _transferCheckerAddress)
        public
        onlyOwner
    {
        transferCheckerAddress = _transferCheckerAddress;
    }

    address public transferCheckerAddress;

    function setFeeDistributor(address _feeDistributor)
        public
        onlyOwner
    {
        feeDistributor = _feeDistributor;
    }

    address public feeDistributor;




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


        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        
        (uint256 transferToAmount, uint256 transferToFeeDistributorAmount, uint256 transferToBurnAmount) = IFeeApprover(transferCheckerAddress).calculateAmountsAfterFee(sender, recipient, amount);

        // Addressing a broken checker contract
        require(transferToAmount.add(transferToFeeDistributorAmount).add(transferToBurnAmount) == amount, "Math broke, does gravity still work?");

        // START - STCP
        _totalSupply = _totalSupply.sub(transferToBurnAmount);
        emit Transfer(sender, address(0), transferToBurnAmount);
        // END - STCP

        _balances[recipient] = _balances[recipient].add(transferToAmount);
        emit Transfer(sender, recipient, transferToAmount);

        
        if(transferToFeeDistributorAmount > 0 && feeDistributor != address(0)){
            _balances[feeDistributor] = _balances[feeDistributor].add(transferToFeeDistributorAmount);
            emit Transfer(sender, feeDistributor, transferToFeeDistributorAmount);
            if(feeDistributor != address(0)){
                ICoreVault(feeDistributor).addPendingRewards(transferToFeeDistributorAmount);
            }
        }
    }

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"factory","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":false,"internalType":"address","name":"dst","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"LPTokenClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dst","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"LiquidityAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"log","type":"string"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"LPGenerationCompleted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LPperETHUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"agreesToTermsOutlinedInLiquidityGenerationParticipationAgreement","type":"bool"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"addLiquidityToUniswapCORExWETHPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLPTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createUniswapPairMainnet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyDrain24hAfterLiquidityGenerationEventIsDone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethContributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecondsLeftInLiquidityGenerationEvent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityGenerationOngoing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityGenerationParticipationAgreement","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeDistributor","type":"address"}],"name":"setFeeDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_transferCheckerAddress","type":"address"}],"name":"setShouldTransferChecker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenUniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalETHContributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLPTokensMinted","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":[],"name":"transferCheckerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouterV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6102206040526101616080818152906200253860a03980516200002b91600b9160209091019062000374565b5062054600600c553480156200004057600080fd5b506040516200269938038062002699833981810160405260408110156200006657600080fd5b50805160209091015160006200007b620001f6565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260148082527f73746f636b70696c6566696e616e63652e636f6d00000000000000000000000060209092019182526200010b9160049162000374565b50604080518082019091526004808252630535443560e41b6020909201918252620001399160059162000374565b506006805460ff191660121790556200015d3069021e19e0c9bab2400000620001fa565b426007556001600160a01b0382166200018b57737a250d5630b4cf539739df2c5dacb4c659f2488d6200018d565b815b600880546001600160a01b0319166001600160a01b039283161790558116620001cb57735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f620001cd565b805b600980546001600160a01b0319166001600160a01b039290921691909117905550620004109050565b3390565b6001600160a01b03821662000256576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000264600083836200030d565b62000280816003546200031260201b6200180d1790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620002b59183906200180d62000312821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200036d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003b757805160ff1916838001178555620003e7565b82800160010185558215620003e7579182015b82811115620003e7578251825591602001919060010190620003ca565b50620003f5929150620003f9565b5090565b5b80821115620003f55760008155600101620003fa565b61211880620004206000396000f3fe60806040526004361061020e5760003560e01c80635b5f3e871161011857806395d89b41116100a0578063ccfc2e8d1161006f578063ccfc2e8d14610667578063da620cd71461069a578063dd62ed3e146106b9578063f2fde38b146106f4578063f96f5b35146107275761020e565b806395d89b41146105cb578063a457c2d7146105e0578063a9059cbb14610619578063b2aef26b146106525761020e565b8063715018a6116100e7578063715018a61461056257806375b208bc146105775780638bdb2afa1461058c5780638da5cb5b146105a15780638e8e2925146105b65761020e565b80635b5f3e87146104f057806360a02590146105055780636a2f796c1461051a57806370a082311461052f5761020e565b806323b872dd1161019b57806338af66321161016a57806338af66321461046357806339509351146104785780634d332457146104b15780634f1a0f7d146104c6578063596fa9e3146104db5761020e565b806323b872dd146103cb578063313ce5671461040e57806331a22a2014610439578063378dc3dc1461044e5761020e565b80630d43e8ad116101e25780630d43e8ad1461032857806310a7a6591461035957806314b8fecc1461038c57806318160ddd146103a157806323399434146103b65761020e565b80622b13291461021357806306fdde031461023a578063095ea7b3146102c457806309a2ba1014610311575b600080fd5b34801561021f57600080fd5b5061022861075a565b60408051918252519081900360200190f35b34801561024657600080fd5b5061024f610760565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610289578181015183820152602001610271565b50505050905090810190601f1680156102b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d057600080fd5b506102fd600480360360408110156102e757600080fd5b506001600160a01b0381351690602001356107f6565b604080519115158252519081900360200190f35b34801561031d57600080fd5b50610326610814565b005b34801561033457600080fd5b5061033d610c33565b604080516001600160a01b039092168252519081900360200190f35b34801561036557600080fd5b506103266004803603602081101561037c57600080fd5b50356001600160a01b0316610c42565b34801561039857600080fd5b506102fd610cbc565b3480156103ad57600080fd5b50610228610cc5565b3480156103c257600080fd5b50610228610ccb565b3480156103d757600080fd5b506102fd600480360360608110156103ee57600080fd5b506001600160a01b03813581169160208101359091169060400135610cd1565b34801561041a57600080fd5b50610423610d58565b6040805160ff9092168252519081900360200190f35b34801561044557600080fd5b50610228610d61565b34801561045a57600080fd5b50610228610d67565b34801561046f57600080fd5b50610326610d75565b34801561048457600080fd5b506102fd6004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610f33565b3480156104bd57600080fd5b5061033d610f81565b3480156104d257600080fd5b50610326610f90565b3480156104e757600080fd5b5061033d6110ea565b3480156104fc57600080fd5b506102286110f9565b34801561051157600080fd5b506102fd611167565b34801561052657600080fd5b50610228611187565b34801561053b57600080fd5b506102286004803603602081101561055257600080fd5b50356001600160a01b031661118d565b34801561056e57600080fd5b506103266111a8565b34801561058357600080fd5b5061033d61124a565b34801561059857600080fd5b5061033d6113c3565b3480156105ad57600080fd5b5061033d6113d2565b3480156105c257600080fd5b5061024f6113e1565b3480156105d757600080fd5b5061024f61146f565b3480156105ec57600080fd5b506102fd6004803603604081101561060357600080fd5b506001600160a01b0381351690602001356114d0565b34801561062557600080fd5b506102fd6004803603604081101561063c57600080fd5b506001600160a01b038135169060200135611538565b34801561065e57600080fd5b5061033d61154c565b34801561067357600080fd5b506103266004803603602081101561068a57600080fd5b50356001600160a01b031661155b565b610326600480360360208110156106b057600080fd5b503515156115d5565b3480156106c557600080fd5b50610228600480360360408110156106dc57600080fd5b506001600160a01b03813581169160200135166116d8565b34801561070057600080fd5b506103266004803603602081101561071757600080fd5b50356001600160a01b0316611703565b34801561073357600080fd5b506102286004803603602081101561074a57600080fd5b50356001600160a01b03166117fb565b600d5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b600061080a61080361186e565b8484611872565b5060015b92915050565b61081c611167565b1561086e576040805162461bcd60e51b815260206004820152601b60248201527f4c69717569646974792067656e65726174696f6e206f6e67696e670000000000604482015290519081900360640190fd5b60105460ff16156108b05760405162461bcd60e51b81526004018080602001828103825260258152602001806120be6025913960400191505060405180910390fd5b47600e55600a54600854604080516315ab88c960e31b815290516001600160a01b0393841693600093169163ad5c4648916004808301926020929190829003018186803b15801561090057600080fd5b505afa158015610914573d6000803e3d6000fd5b505050506040513d602081101561092a57600080fd5b5051600e5460408051630d0e30db60e41b815290519293506001600160a01b0384169263d0e30db0929160048082019260009290919082900301818588803b15801561097557600080fd5b505af1158015610989573d6000803e3d6000fd5b5050505050476000146109d5576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8811985a5b1959608a1b604482015290519081900360640190fd5b806001600160a01b031663a9059cbb83600e546040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a2e57600080fd5b505af1158015610a42573d6000803e3d6000fd5b505050506040513d6020811015610a5857600080fd5b505030600081815260016020908152604080832080546001600160a01b038816808652838620919091558585529084905581516335313c2160e11b8152600481019590955290519093636a6278429360248083019493928390030190829087803b158015610ac557600080fd5b505af1158015610ad9573d6000803e3d6000fd5b505050506040513d6020811015610aef57600080fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6020811015610b6157600080fd5b5051600d819055610bae576040805162461bcd60e51b815260206004820152601260248201527113140818dc99585d1a5bdb8819985a5b195960721b604482015290519081900360640190fd5b610bd7600e54610bd1670de0b6b3a7640000600d5461195e90919063ffffffff16565b906119b7565b600f819055610c22576040805162461bcd60e51b815260206004820152601260248201527113140818dc99585d1a5bdb8819985a5b195960721b604482015290519081900360640190fd5b50506010805460ff19166001179055565b6013546001600160a01b031681565b610c4a61186e565b6000546001600160a01b03908116911614610c9a576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60105460ff1681565b60035490565b600e5481565b6000610cde8484846119f9565b610d4e84610cea61186e565b610d4985604051806060016040528060288152602001611fe4602891396001600160a01b038a16600090815260026020526040812090610d2861186e565b6001600160a01b031681526020810191909152604001600020549190611dbf565b611872565b5060019392505050565b60065460ff1690565b600f5481565b69021e19e0c9bab240000081565b60105460ff16610dc1576040805162461bcd60e51b8152602060048201526012602482015271115d995b9d081b9bdd081bdd995c881e595d60721b604482015290519081900360640190fd5b33600090815260116020526040902054610e22576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7468696e6720746f20636c61696d2c206d6f766520616c6f6e6700000000604482015290519081900360640190fd5b600a54600f54336000908152601160205260408120546001600160a01b03909316929091610e5e91670de0b6b3a764000091610bd1919061195e565b9050816001600160a01b031663a9059cbb33836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610eb757600080fd5b505af1158015610ecb573d6000803e3d6000fd5b505050506040513d6020811015610ee157600080fd5b5050336000818152601160209081526040808320929092558151928352820183905280517f586e28f4f60b4d906fc69694ea6d7fe5c5668730ce3286d7af8eca868f3c27609281900390910190a15050565b600061080a610f4061186e565b84610d498560026000610f5161186e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061180d565b600a546001600160a01b031681565b610f9861186e565b6000546001600160a01b03908116911614610fe8576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b6007544290610ffa90620a8c0061180d565b106110365760405162461bcd60e51b815260040180806020018281038252602f815260200180611f94602f913960400191505060405180910390fd5b604051600090339047908381818185875af1925050503d8060008114611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b50509050806110c6576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b50306000818152600160205260408082208054338452918320919091559181529055565b6008546001600160a01b031681565b6000611103611167565b611141576040805162461bcd60e51b815260206004820152600a60248201526922bb32b73a1037bb32b960b11b604482015290519081900360640190fd5b6111624261115c600c5460075461180d90919063ffffffff16565b90611e56565b905090565b600042611181600c5460075461180d90919063ffffffff16565b11905090565b60075481565b6001600160a01b031660009081526001602052604090205490565b6111b061186e565b6000546001600160a01b03908116911614611200576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546000906001600160a01b0316156112ab576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a20706f6f6c20616c726561647920637265617465640000000000604482015290519081900360640190fd5b600954600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693169163ad5c4648916004808301926020929190829003018186803b1580156112fa57600080fd5b505afa15801561130e573d6000803e3d6000fd5b505050506040513d602081101561132457600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b0390921660048301523060248301525160448083019260209291908290030181600087803b15801561137357600080fd5b505af1158015611387573d6000803e3d6000fd5b505050506040513d602081101561139d57600080fd5b5051600a80546001600160a01b0319166001600160a01b03928316179081905516919050565b6009546001600160a01b031681565b6000546001600160a01b031690565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b505050505081565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b600061080a6114dd61186e565b84610d4985604051806060016040528060258152602001612099602591396002600061150761186e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611dbf565b600061080a61154561186e565b84846119f9565b6012546001600160a01b031681565b61156361186e565b6000546001600160a01b039081169116146115b3576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6115dd611167565b61162e576040805162461bcd60e51b815260206004820152601f60248201527f4c69717569646974792047656e65726174696f6e204576656e74206f76657200604482015290519081900360640190fd5b80611678576040805162461bcd60e51b8152602060048201526015602482015274139bc81859dc99595b595b9d081c1c9bdd9a591959605a1b604482015290519081900360640190fd5b336000908152601160205260409020805434908101909155600e5461169c9161180d565b600e5560408051348152905133917f20b711375edba008429d2f91787c68aa13aab7f267c346bf91be1a104d8b7b8b919081900360200190a250565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61170b61186e565b6000546001600160a01b0390811691161461175b576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b6001600160a01b0381166117a05760405162461bcd60e51b8152600401808060200182810382526026815260200180611f266026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205481565b600082820183811015611867576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166118b75760405162461bcd60e51b81526004018080602001828103825260248152602001806120756024913960400191505060405180910390fd5b6001600160a01b0382166118fc5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f4c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261196d5750600061080e565b8282028284828161197a57fe5b04146118675760405162461bcd60e51b8152600401808060200182810382526021815260200180611fc36021913960400191505060405180910390fd5b600061186783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e98565b6001600160a01b038316611a3e5760405162461bcd60e51b815260040180806020018281038252602581526020018061202c6025913960400191505060405180910390fd5b6001600160a01b038216611a835760405162461bcd60e51b8152600401808060200182810382526023815260200180611f036023913960400191505060405180910390fd5b611a8e838383611efd565b611acb81604051806060016040528060268152602001611f6e602691396001600160a01b0386166000908152600160205260409020549190611dbf565b6001600160a01b0380851660008181526001602052604080822094909455601254845163301a580160e01b81526004810193909352868416602484015260448301869052935190938493849391169163301a58019160648082019260609290919082900301818787803b158015611b4157600080fd5b505af1158015611b55573d6000803e3d6000fd5b505050506040513d6060811015611b6b57600080fd5b5080516020820151604090920151909450909250905083611b9682611b90868661180d565b9061180d565b14611bd25760405162461bcd60e51b81526004018080602001828103825260248152602001806120516024913960400191505060405180910390fd5b600354611bdf9082611e56565b6003556040805182815290516000916001600160a01b038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36001600160a01b038516600090815260016020526040902054611c46908461180d565b6001600160a01b0380871660008181526001602090815260409182902094909455805187815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600082118015611cb757506013546001600160a01b031615155b15611db7576013546001600160a01b0316600090815260016020526040902054611ce1908361180d565b601380546001600160a01b039081166000908152600160209081526040918290209490945591548251868152925190821693918a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a36013546001600160a01b031615611db75760135460408051630211eb7d60e51b81526004810185905290516001600160a01b039092169163423d6fa09160248082019260009290919082900301818387803b158015611d9e57600080fd5b505af1158015611db2573d6000803e3d6000fd5b505050505b505050505050565b60008184841115611e4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e13578181015183820152602001611dfb565b50505050905090810190601f168015611e405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061186783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dbf565b60008183611ee75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e13578181015183820152602001611dfb565b506000838581611ef357fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654c69717569646974792067656e65726174696f6e20677261636520706572696f64207374696c6c206f6e676f696e67536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d6174682062726f6b652c20646f65732067726176697479207374696c6c20776f726b3f45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4c69717569646974792067656e65726174696f6e20616c72656164792066696e6973686564a264697066735822122049f905980a121c981cca0579edcf7cef6821db2c24cfc219bafef13b2b2c51f664736f6c634300060c003349276d206e6f742061207265736964656e74206f662074686520556e6974656420537461746573200a204920756e6465727374616e642074686174207468697320636f6e74726163742069732070726f76696465642077697468206e6f2077617272616e7479206f6620616e79206b696e642e200a204920616772656520746f206e6f7420686f6c642074686520636f6e74726163742063726561746f72732c20434f5245207465616d206d656d62657273206f7220616e796f6e65206173736f63696174656420776974682074686973206576656e74206c6961626c6520666f7220616e792064616d616765206d6f6e657461727920616e64206f74686572776973652049206d69676874206f6e636375722e200a204920756e6465727374616e64207468617420616e7920736d61727420636f6e747261637420696e746572616374696f6e206361727269657320616e20696e686572656e74207269736b2e0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80635b5f3e871161011857806395d89b41116100a0578063ccfc2e8d1161006f578063ccfc2e8d14610667578063da620cd71461069a578063dd62ed3e146106b9578063f2fde38b146106f4578063f96f5b35146107275761020e565b806395d89b41146105cb578063a457c2d7146105e0578063a9059cbb14610619578063b2aef26b146106525761020e565b8063715018a6116100e7578063715018a61461056257806375b208bc146105775780638bdb2afa1461058c5780638da5cb5b146105a15780638e8e2925146105b65761020e565b80635b5f3e87146104f057806360a02590146105055780636a2f796c1461051a57806370a082311461052f5761020e565b806323b872dd1161019b57806338af66321161016a57806338af66321461046357806339509351146104785780634d332457146104b15780634f1a0f7d146104c6578063596fa9e3146104db5761020e565b806323b872dd146103cb578063313ce5671461040e57806331a22a2014610439578063378dc3dc1461044e5761020e565b80630d43e8ad116101e25780630d43e8ad1461032857806310a7a6591461035957806314b8fecc1461038c57806318160ddd146103a157806323399434146103b65761020e565b80622b13291461021357806306fdde031461023a578063095ea7b3146102c457806309a2ba1014610311575b600080fd5b34801561021f57600080fd5b5061022861075a565b60408051918252519081900360200190f35b34801561024657600080fd5b5061024f610760565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610289578181015183820152602001610271565b50505050905090810190601f1680156102b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d057600080fd5b506102fd600480360360408110156102e757600080fd5b506001600160a01b0381351690602001356107f6565b604080519115158252519081900360200190f35b34801561031d57600080fd5b50610326610814565b005b34801561033457600080fd5b5061033d610c33565b604080516001600160a01b039092168252519081900360200190f35b34801561036557600080fd5b506103266004803603602081101561037c57600080fd5b50356001600160a01b0316610c42565b34801561039857600080fd5b506102fd610cbc565b3480156103ad57600080fd5b50610228610cc5565b3480156103c257600080fd5b50610228610ccb565b3480156103d757600080fd5b506102fd600480360360608110156103ee57600080fd5b506001600160a01b03813581169160208101359091169060400135610cd1565b34801561041a57600080fd5b50610423610d58565b6040805160ff9092168252519081900360200190f35b34801561044557600080fd5b50610228610d61565b34801561045a57600080fd5b50610228610d67565b34801561046f57600080fd5b50610326610d75565b34801561048457600080fd5b506102fd6004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610f33565b3480156104bd57600080fd5b5061033d610f81565b3480156104d257600080fd5b50610326610f90565b3480156104e757600080fd5b5061033d6110ea565b3480156104fc57600080fd5b506102286110f9565b34801561051157600080fd5b506102fd611167565b34801561052657600080fd5b50610228611187565b34801561053b57600080fd5b506102286004803603602081101561055257600080fd5b50356001600160a01b031661118d565b34801561056e57600080fd5b506103266111a8565b34801561058357600080fd5b5061033d61124a565b34801561059857600080fd5b5061033d6113c3565b3480156105ad57600080fd5b5061033d6113d2565b3480156105c257600080fd5b5061024f6113e1565b3480156105d757600080fd5b5061024f61146f565b3480156105ec57600080fd5b506102fd6004803603604081101561060357600080fd5b506001600160a01b0381351690602001356114d0565b34801561062557600080fd5b506102fd6004803603604081101561063c57600080fd5b506001600160a01b038135169060200135611538565b34801561065e57600080fd5b5061033d61154c565b34801561067357600080fd5b506103266004803603602081101561068a57600080fd5b50356001600160a01b031661155b565b610326600480360360208110156106b057600080fd5b503515156115d5565b3480156106c557600080fd5b50610228600480360360408110156106dc57600080fd5b506001600160a01b03813581169160200135166116d8565b34801561070057600080fd5b506103266004803603602081101561071757600080fd5b50356001600160a01b0316611703565b34801561073357600080fd5b506102286004803603602081101561074a57600080fd5b50356001600160a01b03166117fb565b600d5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b600061080a61080361186e565b8484611872565b5060015b92915050565b61081c611167565b1561086e576040805162461bcd60e51b815260206004820152601b60248201527f4c69717569646974792067656e65726174696f6e206f6e67696e670000000000604482015290519081900360640190fd5b60105460ff16156108b05760405162461bcd60e51b81526004018080602001828103825260258152602001806120be6025913960400191505060405180910390fd5b47600e55600a54600854604080516315ab88c960e31b815290516001600160a01b0393841693600093169163ad5c4648916004808301926020929190829003018186803b15801561090057600080fd5b505afa158015610914573d6000803e3d6000fd5b505050506040513d602081101561092a57600080fd5b5051600e5460408051630d0e30db60e41b815290519293506001600160a01b0384169263d0e30db0929160048082019260009290919082900301818588803b15801561097557600080fd5b505af1158015610989573d6000803e3d6000fd5b5050505050476000146109d5576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8811985a5b1959608a1b604482015290519081900360640190fd5b806001600160a01b031663a9059cbb83600e546040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a2e57600080fd5b505af1158015610a42573d6000803e3d6000fd5b505050506040513d6020811015610a5857600080fd5b505030600081815260016020908152604080832080546001600160a01b038816808652838620919091558585529084905581516335313c2160e11b8152600481019590955290519093636a6278429360248083019493928390030190829087803b158015610ac557600080fd5b505af1158015610ad9573d6000803e3d6000fd5b505050506040513d6020811015610aef57600080fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6020811015610b6157600080fd5b5051600d819055610bae576040805162461bcd60e51b815260206004820152601260248201527113140818dc99585d1a5bdb8819985a5b195960721b604482015290519081900360640190fd5b610bd7600e54610bd1670de0b6b3a7640000600d5461195e90919063ffffffff16565b906119b7565b600f819055610c22576040805162461bcd60e51b815260206004820152601260248201527113140818dc99585d1a5bdb8819985a5b195960721b604482015290519081900360640190fd5b50506010805460ff19166001179055565b6013546001600160a01b031681565b610c4a61186e565b6000546001600160a01b03908116911614610c9a576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60105460ff1681565b60035490565b600e5481565b6000610cde8484846119f9565b610d4e84610cea61186e565b610d4985604051806060016040528060288152602001611fe4602891396001600160a01b038a16600090815260026020526040812090610d2861186e565b6001600160a01b031681526020810191909152604001600020549190611dbf565b611872565b5060019392505050565b60065460ff1690565b600f5481565b69021e19e0c9bab240000081565b60105460ff16610dc1576040805162461bcd60e51b8152602060048201526012602482015271115d995b9d081b9bdd081bdd995c881e595d60721b604482015290519081900360640190fd5b33600090815260116020526040902054610e22576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7468696e6720746f20636c61696d2c206d6f766520616c6f6e6700000000604482015290519081900360640190fd5b600a54600f54336000908152601160205260408120546001600160a01b03909316929091610e5e91670de0b6b3a764000091610bd1919061195e565b9050816001600160a01b031663a9059cbb33836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610eb757600080fd5b505af1158015610ecb573d6000803e3d6000fd5b505050506040513d6020811015610ee157600080fd5b5050336000818152601160209081526040808320929092558151928352820183905280517f586e28f4f60b4d906fc69694ea6d7fe5c5668730ce3286d7af8eca868f3c27609281900390910190a15050565b600061080a610f4061186e565b84610d498560026000610f5161186e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061180d565b600a546001600160a01b031681565b610f9861186e565b6000546001600160a01b03908116911614610fe8576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b6007544290610ffa90620a8c0061180d565b106110365760405162461bcd60e51b815260040180806020018281038252602f815260200180611f94602f913960400191505060405180910390fd5b604051600090339047908381818185875af1925050503d8060008114611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b50509050806110c6576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b50306000818152600160205260408082208054338452918320919091559181529055565b6008546001600160a01b031681565b6000611103611167565b611141576040805162461bcd60e51b815260206004820152600a60248201526922bb32b73a1037bb32b960b11b604482015290519081900360640190fd5b6111624261115c600c5460075461180d90919063ffffffff16565b90611e56565b905090565b600042611181600c5460075461180d90919063ffffffff16565b11905090565b60075481565b6001600160a01b031660009081526001602052604090205490565b6111b061186e565b6000546001600160a01b03908116911614611200576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546000906001600160a01b0316156112ab576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a20706f6f6c20616c726561647920637265617465640000000000604482015290519081900360640190fd5b600954600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693169163ad5c4648916004808301926020929190829003018186803b1580156112fa57600080fd5b505afa15801561130e573d6000803e3d6000fd5b505050506040513d602081101561132457600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b0390921660048301523060248301525160448083019260209291908290030181600087803b15801561137357600080fd5b505af1158015611387573d6000803e3d6000fd5b505050506040513d602081101561139d57600080fd5b5051600a80546001600160a01b0319166001600160a01b03928316179081905516919050565b6009546001600160a01b031681565b6000546001600160a01b031690565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b505050505081565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b600061080a6114dd61186e565b84610d4985604051806060016040528060258152602001612099602591396002600061150761186e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611dbf565b600061080a61154561186e565b84846119f9565b6012546001600160a01b031681565b61156361186e565b6000546001600160a01b039081169116146115b3576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6115dd611167565b61162e576040805162461bcd60e51b815260206004820152601f60248201527f4c69717569646974792047656e65726174696f6e204576656e74206f76657200604482015290519081900360640190fd5b80611678576040805162461bcd60e51b8152602060048201526015602482015274139bc81859dc99595b595b9d081c1c9bdd9a591959605a1b604482015290519081900360640190fd5b336000908152601160205260409020805434908101909155600e5461169c9161180d565b600e5560408051348152905133917f20b711375edba008429d2f91787c68aa13aab7f267c346bf91be1a104d8b7b8b919081900360200190a250565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61170b61186e565b6000546001600160a01b0390811691161461175b576040805162461bcd60e51b8152602060048201819052602482015260008051602061200c833981519152604482015290519081900360640190fd5b6001600160a01b0381166117a05760405162461bcd60e51b8152600401808060200182810382526026815260200180611f266026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205481565b600082820183811015611867576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166118b75760405162461bcd60e51b81526004018080602001828103825260248152602001806120756024913960400191505060405180910390fd5b6001600160a01b0382166118fc5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f4c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261196d5750600061080e565b8282028284828161197a57fe5b04146118675760405162461bcd60e51b8152600401808060200182810382526021815260200180611fc36021913960400191505060405180910390fd5b600061186783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e98565b6001600160a01b038316611a3e5760405162461bcd60e51b815260040180806020018281038252602581526020018061202c6025913960400191505060405180910390fd5b6001600160a01b038216611a835760405162461bcd60e51b8152600401808060200182810382526023815260200180611f036023913960400191505060405180910390fd5b611a8e838383611efd565b611acb81604051806060016040528060268152602001611f6e602691396001600160a01b0386166000908152600160205260409020549190611dbf565b6001600160a01b0380851660008181526001602052604080822094909455601254845163301a580160e01b81526004810193909352868416602484015260448301869052935190938493849391169163301a58019160648082019260609290919082900301818787803b158015611b4157600080fd5b505af1158015611b55573d6000803e3d6000fd5b505050506040513d6060811015611b6b57600080fd5b5080516020820151604090920151909450909250905083611b9682611b90868661180d565b9061180d565b14611bd25760405162461bcd60e51b81526004018080602001828103825260248152602001806120516024913960400191505060405180910390fd5b600354611bdf9082611e56565b6003556040805182815290516000916001600160a01b038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36001600160a01b038516600090815260016020526040902054611c46908461180d565b6001600160a01b0380871660008181526001602090815260409182902094909455805187815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600082118015611cb757506013546001600160a01b031615155b15611db7576013546001600160a01b0316600090815260016020526040902054611ce1908361180d565b601380546001600160a01b039081166000908152600160209081526040918290209490945591548251868152925190821693918a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a36013546001600160a01b031615611db75760135460408051630211eb7d60e51b81526004810185905290516001600160a01b039092169163423d6fa09160248082019260009290919082900301818387803b158015611d9e57600080fd5b505af1158015611db2573d6000803e3d6000fd5b505050505b505050505050565b60008184841115611e4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e13578181015183820152602001611dfb565b50505050905090810190601f168015611e405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061186783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dbf565b60008183611ee75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e13578181015183820152602001611dfb565b506000838581611ef357fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654c69717569646974792067656e65726174696f6e20677261636520706572696f64207374696c6c206f6e676f696e67536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d6174682062726f6b652c20646f65732067726176697479207374696c6c20776f726b3f45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4c69717569646974792067656e65726174696f6e20616c72656164792066696e6973686564a264697066735822122049f905980a121c981cca0579edcf7cef6821db2c24cfc219bafef13b2b2c51f664736f6c634300060c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f


Deployed Bytecode Sourcemap

32641:18712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38178:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33310:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42591:210;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42591:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38791:1087;;;;;;;;;;;;;:::i;:::-;;45728:29;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;45728:29:0;;;;;;;;;;;;;;45349:174;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45349:174:0;-1:-1:-1;;;;;45349:174:0;;:::i;38298:33::-;;;;;;;;;;;;;:::i;35031:100::-;;;;;;;;;;;;;:::i;38219:34::-;;;;;;;;;;;;;:::i;43275:454::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43275:454:0;;;;;;;;;;;;;;;;;:::i;34883:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38260:27;;;;;;;;;;;;;:::i;33137:48::-;;;;;;;;;;;;;:::i;41209:540::-;;;;;;;;;;;;;:::i;44138:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44138:300:0;;;;;;;;:::i;35548:31::-;;;;;;;;;;;;;:::i;37679:491::-;;;;;;;;;;;;;:::i;35450:41::-;;;;;;;;;;;;;:::i;37118:246::-;;;;;;;;;;;;;:::i;37372:164::-;;;;;;;;;;;;;:::i;33200:37::-;;;;;;;;;;;;;:::i;35323:117::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35323:117:0;-1:-1:-1;;;;;35323:117:0;;:::i;30760:148::-;;;;;;;;;;;;;:::i;35588:324::-;;;;;;;;;;;;;:::i;35498:39::-;;;;;;;;;;;;;:::i;30118:79::-;;;;;;;;;;;;;:::i;36645:416::-;;;;;;;;;;;;;:::i;34158:87::-;;;;;;;;;;;;;:::i;44941:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44941:400:0;;;;;;;;:::i;41964:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41964:216:0;;;;;;;;:::i;45531:37::-;;;;;;;;;;;;;:::i;45577:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45577:143:0;-1:-1:-1;;;;;45577:143:0;;:::i;40252:638::-;;;;;;;;;;;;;;;;-1:-1:-1;40252:638:0;;;;:::i;42243:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42243:201:0;;;;;;;;;;:::i;31063:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31063:244:0;-1:-1:-1;;;;;31063:244:0;;:::i;39888:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39888:48:0;-1:-1:-1;;;;;39888:48:0;;:::i;38178:34::-;;;;:::o;33310:83::-;33380:5;33373:12;;;;;;;;-1:-1:-1;;33373:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33347:13;;33373:12;;33380:5;;33373:12;;33380:5;33373:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33310:83;:::o;42591:210::-;42710:4;42732:39;42741:12;:10;:12::i;:::-;42755:7;42764:6;42732:8;:39::i;:::-;-1:-1:-1;42789:4:0;42591:210;;;;;:::o;38791:1087::-;38863:28;:26;:28::i;:::-;:37;38855:77;;;;;-1:-1:-1;;;38855:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38951:21;;;;:30;38943:80;;;;-1:-1:-1;;;38943:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39056:21;39034:19;:43;39125:16;;39188:15;;:22;;;-1:-1:-1;;;39188:22:0;;;;-1:-1:-1;;;;;39125:16:0;;;;39088:19;;39188:15;;:20;;:22;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39188:22:0;39249:19;;39221:50;;;-1:-1:-1;;;39221:50:0;;;;39188:22;;-1:-1:-1;;;;;;39221:19:0;;;;;39249;39221:50;;;;;;;;;;;;;;;39249:19;39221;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39290:21;39315:1;39290:26;39282:55;;;;;-1:-1:-1;;;39282:55:0;;;;;;;;;;;;-1:-1:-1;;;39282:55:0;;;;;;;;;;;;;;;39354:4;-1:-1:-1;;;;;39348:20:0;;39377:4;39383:19;;39348:55;;;;;;;;;;;;;-1:-1:-1;;;;;39348:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39459:4:0;39441:24;;;;:9;39348:55;39441:24;;;;;;;;;-1:-1:-1;;;;;39414:24:0;;;;;;;;:51;;;;39476:24;;;:28;;;;39515:24;;-1:-1:-1;;;39515:24:0;;;;;;;;;;;39414;;39515:9;;:24;;;;;39348:55;39515:24;;;;;;;;39414;39515;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39572:29:0;;;-1:-1:-1;;;39572:29:0;;39595:4;39572:29;;;;;;-1:-1:-1;;;;;39572:14:0;;;;;:29;;;;;39515:24;;39572:29;;;;;;;:14;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39572:29:0;39550:19;:51;;;39612:56;;;;;-1:-1:-1;;;39612:56:0;;;;;;;;;;;;-1:-1:-1;;;39612:56:0;;;;;;;;;;;;;;;39694:54;39728:19;;39694:29;39718:4;39694:19;;:23;;:29;;;;:::i;:::-;:33;;:54::i;:::-;39679:12;:69;;;39780:49;;;;;-1:-1:-1;;;39780:49:0;;;;;;;;;;;;-1:-1:-1;;;39780:49:0;;;;;;;;;;;;;;;-1:-1:-1;;39840:21:0;:28;;-1:-1:-1;;39840:28:0;39864:4;39840:28;;;38791:1087::o;45728:29::-;;;-1:-1:-1;;;;;45728:29:0;;:::o;45349:174::-;30340:12;:10;:12::i;:::-;30330:6;;-1:-1:-1;;;;;30330:6:0;;;:22;;;30322:67;;;;;-1:-1:-1;;;30322:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30322:67:0;;;;;;;;;;;;;;;45467:22:::1;:48:::0;;-1:-1:-1;;;;;;45467:48:0::1;-1:-1:-1::0;;;;;45467:48:0;;;::::1;::::0;;;::::1;::::0;;45349:174::o;38298:33::-;;;;;;:::o;35031:100::-;35111:12;;35031:100;:::o;38219:34::-;;;;:::o;43275:454::-;43415:4;43432:36;43442:6;43450:9;43461:6;43432:9;:36::i;:::-;43479:220;43502:6;43523:12;:10;:12::i;:::-;43550:138;43606:6;43550:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43550:19:0;;;;;;:11;:19;;;;;;43570:12;:10;:12::i;:::-;-1:-1:-1;;;;;43550:33:0;;;;;;;;;;;;-1:-1:-1;43550:33:0;;;:138;:37;:138::i;:::-;43479:8;:220::i;:::-;-1:-1:-1;43717:4:0;43275:454;;;;;:::o;34883:83::-;34949:9;;;;34883:83;:::o;38260:27::-;;;;:::o;33137:48::-;33177:8;33137:48;:::o;41209:540::-;41260:21;;;;41252:52;;;;;-1:-1:-1;;;41252:52:0;;;;;;;;;;;;-1:-1:-1;;;41252:52:0;;;;;;;;;;;;;;;41338:10;41352:1;41323:26;;;:14;:26;;;;;;41315:72;;;;;-1:-1:-1;;;41315:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41435:16;;41523:12;;41507:10;41398:19;41492:26;;;:14;:26;;;;;;-1:-1:-1;;;;;41435:16:0;;;;41398:19;;41492:54;;41541:4;;41492:44;;:26;:30;:44::i;:54::-;41463:83;;41557:4;-1:-1:-1;;;;;41557:13:0;;41571:10;41583:18;41557:45;;;;;;;;;;;;;-1:-1:-1;;;;;41557:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41664:10:0;41678:1;41649:26;;;:14;41557:45;41649:26;;;;;;;:30;;;;41695:46;;;;;;;;;;;;;;;;;;;;;;41209:540;;:::o;44138:300::-;44253:4;44275:133;44298:12;:10;:12::i;:::-;44325:7;44347:50;44386:10;44347:11;:25;44359:12;:10;:12::i;:::-;-1:-1:-1;;;;;44347:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;44347:25:0;;;:34;;;;;;;;;;;:38;:50::i;35548:31::-;;;-1:-1:-1;;;;;35548:31:0;;:::o;37679:491::-;30340:12;:10;:12::i;:::-;30330:6;;-1:-1:-1;;;;;30330:6:0;;;:22;;;30322:67;;;;;-1:-1:-1;;;30322:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30322:67:0;;;;;;;;;;;;;;;37779:22:::1;::::0;37816:15:::1;::::0;37779:34:::1;::::0;37806:6:::1;37779:26;:34::i;:::-;:52;37771:112;;;;-1:-1:-1::0;;;37771:112:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37969:48;::::0;37951:12:::1;::::0;37969:10:::1;::::0;37991:21:::1;::::0;37951:12;37969:48;37951:12;37969:48;37991:21;37969:10;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37950:67;;;38036:7;38028:36;;;::::0;;-1:-1:-1;;;38028:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38028:36:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;38117:4:0::1;38099:24;::::0;;;:9:::1;:24;::::0;;;;;;;38085:10:::1;38075:21:::0;;;;;:48;;;;38134:24;;;:28;;37679:491::o;35450:41::-;;;-1:-1:-1;;;;;35450:41:0;;:::o;37118:246::-;37191:7;37219:28;:26;:28::i;:::-;37211:51;;;;;-1:-1:-1;;;37211:51:0;;;;;;;;;;;;-1:-1:-1;;;37211:51:0;;;;;;;;;;;;;;;37280:76;37340:15;37280:55;37307:27;;37280:22;;:26;;:55;;;;:::i;:::-;:59;;:76::i;:::-;37273:83;;37118:246;:::o;37372:164::-;37431:4;37513:15;37455:55;37482:27;;37455:22;;:26;;:55;;;;:::i;:::-;:73;37448:80;;37372:164;:::o;33200:37::-;;;;:::o;35323:117::-;-1:-1:-1;;;;;35415:17:0;35388:7;35415:17;;;:9;:17;;;;;;;35323:117::o;30760:148::-;30340:12;:10;:12::i;:::-;30330:6;;-1:-1:-1;;;;;30330:6:0;;;:22;;;30322:67;;;;;-1:-1:-1;;;30322:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30322:67:0;;;;;;;;;;;;;;;30867:1:::1;30851:6:::0;;30830:40:::1;::::0;-1:-1:-1;;;;;30851:6:0;;::::1;::::0;30830:40:::1;::::0;30867:1;;30830:40:::1;30898:1;30881:19:::0;;-1:-1:-1;;;;;;30881:19:0::1;::::0;;30760:148::o;35588:324::-;35668:16;;35640:7;;-1:-1:-1;;;;;35668:16:0;:30;35660:70;;;;;-1:-1:-1;;;35660:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35760:14;;35808:15;;:22;;;-1:-1:-1;;;35808:22:0;;;;-1:-1:-1;;;;;35760:14:0;;;;:25;;35808:15;;:20;;:22;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35808:22:0;35760:110;;;-1:-1:-1;;;;;;35760:110:0;;;;;;;-1:-1:-1;;;;;35760:110:0;;;;;;;35854:4;35760:110;;;;;;;;;;35808:22;;35760:110;;;;;;;-1:-1:-1;35760:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35760:110:0;35741:16;:129;;-1:-1:-1;;;;;;35741:129:0;-1:-1:-1;;;;;35741:129:0;;;;;;;;35888:16;;35588:324;-1:-1:-1;35588:324:0:o;35498:39::-;;;-1:-1:-1;;;;;35498:39:0;;:::o;30118:79::-;30156:7;30183:6;-1:-1:-1;;;;;30183:6:0;30118:79;:::o;36645:416::-;;;;;;;;;;;;;;;-1:-1:-1;;36645:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34158:87::-;34230:7;34223:14;;;;;;;;-1:-1:-1;;34223:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34197:13;;34223:14;;34230:7;;34223:14;;34230:7;34223:14;;;;;;;;;;;;;;;;;;;;;;;;44941:400;45061:4;45083:228;45106:12;:10;:12::i;:::-;45133:7;45155:145;45212:15;45155:145;;;;;;;;;;;;;;;;;:11;:25;45167:12;:10;:12::i;:::-;-1:-1:-1;;;;;45155:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;45155:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;41964:216::-;42086:4;42108:42;42118:12;:10;:12::i;:::-;42132:9;42143:6;42108:9;:42::i;45531:37::-;;;-1:-1:-1;;;;;45531:37:0;;:::o;45577:143::-;30340:12;:10;:12::i;:::-;30330:6;;-1:-1:-1;;;;;30330:6:0;;;:22;;;30322:67;;;;;-1:-1:-1;;;30322:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30322:67:0;;;;;;;;;;;;;;;45680:14:::1;:32:::0;;-1:-1:-1;;;;;;45680:32:0::1;-1:-1:-1::0;;;;;45680:32:0;;;::::1;::::0;;;::::1;::::0;;45577:143::o;40252:638::-;40379:28;:26;:28::i;:::-;40371:72;;;;;-1:-1:-1;;;40371:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40462:64;40454:98;;;;;-1:-1:-1;;;40454:98:0;;;;;;;;;;;;-1:-1:-1;;;40454:98:0;;;;;;;;;;;;;;;40578:10;40563:26;;;;:14;:26;;;;;:39;;40593:9;40563:39;;;;;;40691:19;;:34;;:23;:34::i;:::-;40669:19;:56;40842:40;;;40872:9;40842:40;;;;40860:10;;40842:40;;;;;;;;;;40252:638;:::o;42243:201::-;-1:-1:-1;;;;;42409:18:0;;;42377:7;42409:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;42243:201::o;31063:244::-;30340:12;:10;:12::i;:::-;30330:6;;-1:-1:-1;;;;;30330:6:0;;;:22;;;30322:67;;;;;-1:-1:-1;;;30322:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30322:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31152:22:0;::::1;31144:73;;;;-1:-1:-1::0;;;31144:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31254:6;::::0;;31233:38:::1;::::0;-1:-1:-1;;;;;31233:38:0;;::::1;::::0;31254:6;::::1;::::0;31233:38:::1;::::0;::::1;31282:6;:17:::0;;-1:-1:-1;;;;;;31282:17:0::1;-1:-1:-1::0;;;;;31282:17:0;;;::::1;::::0;;;::::1;::::0;;31063:244::o;39888:48::-;;;;;;;;;;;;;:::o;5972:181::-;6030:7;6062:5;;;6086:6;;;;6078:46;;;;;-1:-1:-1;;;6078:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6144:1;5972:181;-1:-1:-1;;;5972:181:0:o;1856:106::-;1944:10;1856:106;:::o;49820:380::-;-1:-1:-1;;;;;49956:19:0;;49948:68;;;;-1:-1:-1;;;49948:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50035:21:0;;50027:68;;;;-1:-1:-1;;;50027:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50108:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;50160:32;;;;;;;;;;;;;;;;;49820:380;;;:::o;7326:471::-;7384:7;7629:6;7625:47;;-1:-1:-1;7659:1:0;7652:8;;7625:47;7696:5;;;7700:1;7696;:5;:1;7720:5;;;;;:10;7712:56;;;;-1:-1:-1;;;7712:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8273:132;8331:7;8358:39;8362:1;8365;8358:39;;;;;;;;;;;;;;;;;:3;:39::i;46254:1680::-;-1:-1:-1;;;;;46394:20:0;;46386:70;;;;-1:-1:-1;;;46386:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46475:23:0;;46467:71;;;;-1:-1:-1;;;46467:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46563:47;46584:6;46592:9;46603:6;46563:20;:47::i;:::-;46643:108;46679:6;46643:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46643:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;46623:17:0;;;;;;;:9;:17;;;;;;:128;;;;46884:22;;46871:88;;-1:-1:-1;;;46871:88:0;;;;;;;;;;;;;;;;;;;;;;;;46623:17;;;;;;46884:22;;;46871:61;;:88;;;;;;;;;;;;;;;46623:17;46884:22;46871:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46871:88:0;;;;;;;;;;;;;-1:-1:-1;46871:88:0;;-1:-1:-1;46871:88:0;-1:-1:-1;47111:6:0;47029:78;46871:88;47029:52;46871:88;;47029:20;:52::i;:::-;:56;;:78::i;:::-;:88;47021:137;;;;-1:-1:-1;;;47021:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47211:12;;:38;;47228:20;47211:16;:38::i;:::-;47196:12;:53;47265:50;;;;;;;;47290:1;;-1:-1:-1;;;;;47265:50:0;;;;;;;;;;;;-1:-1:-1;;;;;47374:20:0;;;;;;:9;:20;;;;;;:42;;47399:16;47374:24;:42::i;:::-;-1:-1:-1;;;;;47351:20:0;;;;;;;:9;:20;;;;;;;;;:65;;;;47432:45;;;;;;;47351:20;;47432:45;;;;;;;;;;;;;47536:1;47503:30;:34;:66;;;;-1:-1:-1;47541:14:0;;-1:-1:-1;;;;;47541:14:0;:28;;47503:66;47500:427;;;47623:14;;-1:-1:-1;;;;;47623:14:0;47613:25;;;;:9;:25;;;;;;:61;;47643:30;47613:29;:61::i;:::-;47595:14;;;-1:-1:-1;;;;;47595:14:0;;;47585:25;;;;:9;:25;;;;;;;;;:89;;;;47711:14;;47694:64;;;;;;;47711:14;;;;47694:64;;;;;;;;;;;;;47776:14;;-1:-1:-1;;;;;47776:14:0;:28;47773:143;;47835:14;;47824:76;;;-1:-1:-1;;;47824:76:0;;;;;;;;;;-1:-1:-1;;;;;47835:14:0;;;;47824:44;;:76;;;;;47835:14;;47824:76;;;;;;;;47835:14;;47824:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47773:143;46254:1680;;;;;;:::o;6875:192::-;6961:7;6997:12;6989:6;;;;6981:29;;;;-1:-1:-1;;;6981:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7033:5:0;;;6875:192::o;6436:136::-;6494:7;6521:43;6525:1;6528;6521:43;;;;;;;;;;;;;;;;;:3;:43::i;8901:278::-;8987:7;9022:12;9015:5;9007:28;;;;-1:-1:-1;;;9007:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9046:9;9062:1;9058;:5;;;;;;;8901:278;-1:-1:-1;;;;;8901:278:0:o;51225:125::-;;;;:::o

Swarm Source

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