ETH Price: $3,052.48 (+2.82%)
Gas: 16 Gwei

Token

RedPill (RPILL)
 

Overview

Max Total Supply

20,000,000 RPILL

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
19,521.566006156 RPILL

Value
$0.00
0x4fd570403485164a98225bd3798b4c4dfd53aaef
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:
WHITELADY

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

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

        return c;
    }

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

        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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

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

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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 20000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable _marketingAddress = payable(address(0x581122E69cdad759B85B3965a1c3DdA8a89b1Ae6));

    string private _name = "RedPill";
    string private _symbol = "RPILL";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _reflectionFee;
    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(10); //1%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public deadBlocks = 0;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.reflection = 0;
        buyFee.liquidity = 3;
        buyFee.marketing = 3;

        sellFee.reflection = 0;
        sellFee.liquidity = 3;
        sellFee.marketing = 3;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D  );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

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

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

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

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

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

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

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

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

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

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

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

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

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


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


    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }


    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setBothFees(
        uint8 buy_reflection,
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_reflection,
        uint8 sell_liquidity,
        uint8 sell_marketing


    ) external onlyOwner {
        buyFee.reflection = buy_reflection;
        buyFee.liquidity = buy_liquidity;
        buyFee.marketing = buy_marketing;

        sellFee.reflection = sell_reflection;
        sellFee.liquidity = sell_liquidity;
        sellFee.marketing = sell_marketing;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

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

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

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

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tWallet);

        return (tTransferAmount, tFee, tLiquidity, tWallet);
    }

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

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

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

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

    function _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

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

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

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

   
    function removeAllFee() private {
        _reflectionFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflection;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _reflectionFee = sellFee.reflection;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }

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

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

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

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

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

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        removeAllFee();
    }

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

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


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

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

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

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

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

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

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405266470de4df82000060098190556200001f9060001962000682565b6200002d90600019620006af565b600a55600c80546001600160a01b03191673581122e69cdad759b85b3965a1c3dda8a89b1ae617905560408051808201909152600780825266149959141a5b1b60ca1b60209092019182526200008691600d91620005c6565b5060408051808201909152600580825264149412531360da1b6020909201918252620000b591600e91620005c6565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200011490600a9062000100906103e862000d10620004ac602090811b91909117901c565b620004ff60201b62000d521790919060201c565b6013556200013b6003620001006103e8600954620004ac60201b62000d101790919060201c565b601455620001626014620001006103e8600954620004ac60201b62000d101790919060201c565b601555600060168190556017556018805460ff191690553480156200018657600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526002602090815260409182902092909255601080546203030062ffffff199182168117909255601180549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000250573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002769190620006c9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ea9190620006c9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000338573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035e9190620006c9565b6001600160a01b0390811660a05281166080526001600560006200038a6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c8054841683528483208054881683179055549092168152600893849052918220805490941681179093556200040d6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004553390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049d91815260200190565b60405180910390a350620007c2565b6000620004f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058a60201b60201c565b90505b92915050565b6000826200051057506000620004f9565b60006200051e8385620006f4565b9050826200052d858362000716565b14620004f65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005ae5760405162461bcd60e51b81526004016200058191906200072d565b506000620005bd848662000716565b95945050505050565b828054620005d49062000785565b90600052602060002090601f016020900481019282620005f8576000855562000643565b82601f106200061357805160ff191683800117855562000643565b8280016001018555821562000643579182015b828111156200064357825182559160200191906001019062000626565b506200065192915062000655565b5090565b5b8082111562000651576000815560010162000656565b634e487b7160e01b600052601260045260246000fd5b6000826200069457620006946200066c565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620006c457620006c462000699565b500390565b600060208284031215620006dc57600080fd5b81516001600160a01b0381168114620004f657600080fd5b600081600019048311821515161562000711576200071162000699565b500290565b6000826200072857620007286200066c565b500490565b600060208083528351808285015260005b818110156200075c578581018301518582016040015282016200073e565b818111156200076f576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c908216806200079a57607f821691505b60208210811415620007bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516125e3620008276000396000818161040d015281816110e20152818161123d0152818161157f01526115f6015260008181610282015281816119af01528181611a6801528181611aa401528181611b160152611b7201526125e36000f3fe6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213a565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a7565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121d3565b610780565b005b34801561027c57600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121f0565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612246565b610840565b34801561037857600080fd5b506102cd610387366004612262565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121d3565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b57600080fd5b5061023e61044a3660046121d3565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121d3565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121d3565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121d3565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121d3565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a7565b610a9c565b3480156105ae57600080fd5b5061026e6105bd36600461228c565b610aa9565b3480156105ce57600080fd5b5061026e6105dd366004612300565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121d3565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd61063636600461231b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121d3565b610bac565b34801561068d57600080fd5b5061026e61069c366004612262565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121d3565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e690612354565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612354565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd1565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa9061238f565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef5565b610836843361083185604051806060016040528060288152602001612586602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112f7565b610dd1565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa9061238f565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611331565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa9061238f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e690612354565b6000610776338484610ef5565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa9061238f565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa9061238f565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa9061238f565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611354565b600082610d615750600061077a565b6000610d6d83856123da565b905082610d7a85836123f9565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b6000811161101d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104957506000546001600160a01b03838116911614155b156110a05760185460ff166110a05760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ab3061096f565b905060135481106110bb57506013545b601454811080159081906110d957506012546301000000900460ff16155b801561111757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561112d5750601254640100000000900460ff165b1561114057601454915061114082611382565b6001600160a01b03851660009081526005602052604090205460019060ff168061118257506001600160a01b03851660009081526005602052604090205460ff165b1561118b575060005b80156112e3576001600160a01b03861660009081526008602052604090205460ff161580156111d357506001600160a01b03851660009081526008602052604090205460ff16155b156112e35760135484111561123b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146112e3576015546112808661096f565b61128a908661241b565b11156112e35760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112ef86868684611566565b505050505050565b6000818484111561131b5760405162461bcd60e51b81526004016107aa919061213a565b5060006113288486612433565b95945050505050565b600080600061133e6117d6565b909250905061134d8282610d10565b9250505090565b600081836113755760405162461bcd60e51b81526004016107aa919061213a565b50600061132884866123f9565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113c892610100918290048316929190041661244a565b6113d2919061244a565b6113dc919061244a565b6113e790600261246f565b60115460105460ff9283169350600092849261141092610100918290048316929190041661244a565b61141d9060ff16856123da565b61142791906123f9565b905060006114358285612433565b90504761144182611958565b600061144d8247612433565b6011546010549192506000916114739160ff61010091829004811692919091041661244a565b6114809060ff1687612433565b61148a90836123f9565b6011546010549192506000916114b09160ff61010091829004811692919091041661244a565b6114bd9060ff16836123da565b905080156114cf576114cf8682611b10565b6011546010546000916114f29160ff62010000928390048116929091041661244a565b60ff166115008460026123da565b61150a91906123da565b9050801561154e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166b5761157d6012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156115f4576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141561166b576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ac57506001600160a01b03831660009081526006602052604090205460ff16155b156116c1576116bc848484611bf0565b6117bf565b6001600160a01b03841660009081526006602052604090205460ff1615801561170257506001600160a01b03831660009081526006602052604090205460ff165b15611712576116bc848484611d37565b6001600160a01b03841660009081526006602052604090205460ff1615801561175457506001600160a01b03831660009081526006602052604090205460ff16155b15611764576116bc848484611df2565b6001600160a01b03841660009081526006602052604090205460ff1680156117a457506001600160a01b03831660009081526006602052604090205460ff165b156117b4576116bc848484611e48565b6117bf848484611df2565b6117d06012805462ffffff19169055565b50505050565b600a546009546000918291825b6007548110156119285782600260006007848154811061180557611805612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611870575081600360006007848154811061184957611849612498565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188657600a54600954945094505050509091565b6118cc60026000600784815481106118a0576118a0612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ec9565b925061191460036000600784815481106118e8576118e8612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ec9565b915080611920816124ae565b9150506117e3565b50600954600a5461193891610d10565b82101561194f57600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198d5761198d612498565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2f91906124c9565b81600181518110611a4257611a42612498565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8d307f000000000000000000000000000000000000000000000000000000000000000084610dd1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae29085906000908690309042906004016124e6565b600060405180830381600087803b158015611afc57600080fd5b505af11580156112ef573d6000803e3d6000fd5b611b3b307f000000000000000000000000000000000000000000000000000000000000000084610dd1565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be99190612557565b5050505050565b600080600080611bff85611f0b565b93509350935093506000806000611c2088878787611c1b611331565b611f6a565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4b9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7a9084611ec9565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ca99083611fcc565b6001600160a01b038a16600090815260026020526040902055611ccb8561202b565b611cd48461202b565b611cde81876120b4565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2391815260200190565b60405180910390a350505050505050505050565b600080600080611d4685611f0b565b93509350935093506000806000611d6288878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8d9084611ec9565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc39088611fcc565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ca99083611fcc565b600080600080611e0185611f0b565b93509350935093506000806000611e1d88878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7a9084611ec9565b600080600080611e5785611f0b565b93509350935093506000806000611e7388878787611c1b611331565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9e9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8d90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112f7565b6000806000806000611f1c866120d8565b90506000611f29876120f9565b90506000611f3688612119565b90506000611f4e83611f488b87611ec9565b90611ec9565b9050611f5a8183611ec9565b9993985091965094509092505050565b6000808080611f798986610d52565b90506000611f878987610d52565b90506000611f958988610d52565b90506000611fa38989610d52565b90506000611fb782611f4885818989611ec9565b949d949c50929a509298505050505050505050565b600080611fd9838561241b565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612035611331565b905060006120438383610d52565b306000908152600260205260409020549091506120609082611fcc565b3060009081526002602090815260408083209390935560069052205460ff16156120af573060009081526003602052604090205461209e9084611fcc565b306000908152600360205260409020555b505050565b600a546120c19083611ec9565b600a55600b546120d19082611fcc565b600b555050565b60125460009061077a906064906120f390859060ff16610d52565b90610d10565b60125460009061077a906064906120f3908590610100900460ff16610d52565b60125460009061077a906064906120f390859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121675785810183015185820160400152820161214b565b81811115612179576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146121a457600080fd5b50565b600080604083850312156121ba57600080fd5b82356121c58161218f565b946020939093013593505050565b6000602082840312156121e557600080fd5b813561091a8161218f565b60008060006060848603121561220557600080fd5b83356122108161218f565b925060208401356122208161218f565b929592945050506040919091013590565b8035801515811461224157600080fd5b919050565b6000806040838503121561225957600080fd5b6121c583612231565b60006020828403121561227457600080fd5b5035919050565b803560ff8116811461224157600080fd5b60008060008060008060c087890312156122a557600080fd5b6122ae8761227b565b95506122bc6020880161227b565b94506122ca6040880161227b565b93506122d86060880161227b565b92506122e66080880161227b565b91506122f460a0880161227b565b90509295509295509295565b60006020828403121561231257600080fd5b61091a82612231565b6000806040838503121561232e57600080fd5b82356123398161218f565b915060208301356123498161218f565b809150509250929050565b600181811c9082168061236857607f821691505b6020821081141561238957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123f4576123f46123c4565b500290565b60008261241657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561242e5761242e6123c4565b500190565b600082821015612445576124456123c4565b500390565b600060ff821660ff84168060ff03821115612467576124676123c4565b019392505050565b600060ff821660ff84168160ff0481118215151615612490576124906123c4565b029392505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124c2576124c26123c4565b5060010190565b6000602082840312156124db57600080fd5b815161091a8161218f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125365784516001600160a01b031683529383019391830191600101612511565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561256c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122090462ae93194e58c536ca26475f1a08d77eeaca5afe6df85b8cc219ea15b5c8064736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213a565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a7565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121d3565b610780565b005b34801561027c57600080fd5b506102a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121f0565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612246565b610840565b34801561037857600080fd5b506102cd610387366004612262565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121d3565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000527555674c1992dba28a23df5f8b00df4a77b86681565b34801561043b57600080fd5b5061023e61044a3660046121d3565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121d3565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121d3565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121d3565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121d3565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a7565b610a9c565b3480156105ae57600080fd5b5061026e6105bd36600461228c565b610aa9565b3480156105ce57600080fd5b5061026e6105dd366004612300565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121d3565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd61063636600461231b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121d3565b610bac565b34801561068d57600080fd5b5061026e61069c366004612262565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121d3565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e690612354565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612354565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd1565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa9061238f565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef5565b610836843361083185604051806060016040528060288152602001612586602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112f7565b610dd1565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa9061238f565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611331565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa9061238f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e690612354565b6000610776338484610ef5565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa9061238f565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa9061238f565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa9061238f565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611354565b600082610d615750600061077a565b6000610d6d83856123da565b905082610d7a85836123f9565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b6000811161101d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104957506000546001600160a01b03838116911614155b156110a05760185460ff166110a05760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ab3061096f565b905060135481106110bb57506013545b601454811080159081906110d957506012546301000000900460ff16155b801561111757507f000000000000000000000000527555674c1992dba28a23df5f8b00df4a77b8666001600160a01b0316856001600160a01b031614155b801561112d5750601254640100000000900460ff165b1561114057601454915061114082611382565b6001600160a01b03851660009081526005602052604090205460019060ff168061118257506001600160a01b03851660009081526005602052604090205460ff165b1561118b575060005b80156112e3576001600160a01b03861660009081526008602052604090205460ff161580156111d357506001600160a01b03851660009081526008602052604090205460ff16155b156112e35760135484111561123b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f000000000000000000000000527555674c1992dba28a23df5f8b00df4a77b8666001600160a01b0316856001600160a01b0316146112e3576015546112808661096f565b61128a908661241b565b11156112e35760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112ef86868684611566565b505050505050565b6000818484111561131b5760405162461bcd60e51b81526004016107aa919061213a565b5060006113288486612433565b95945050505050565b600080600061133e6117d6565b909250905061134d8282610d10565b9250505090565b600081836113755760405162461bcd60e51b81526004016107aa919061213a565b50600061132884866123f9565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113c892610100918290048316929190041661244a565b6113d2919061244a565b6113dc919061244a565b6113e790600261246f565b60115460105460ff9283169350600092849261141092610100918290048316929190041661244a565b61141d9060ff16856123da565b61142791906123f9565b905060006114358285612433565b90504761144182611958565b600061144d8247612433565b6011546010549192506000916114739160ff61010091829004811692919091041661244a565b6114809060ff1687612433565b61148a90836123f9565b6011546010549192506000916114b09160ff61010091829004811692919091041661244a565b6114bd9060ff16836123da565b905080156114cf576114cf8682611b10565b6011546010546000916114f29160ff62010000928390048116929091041661244a565b60ff166115008460026123da565b61150a91906123da565b9050801561154e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166b5761157d6012805462ffffff19169055565b7f000000000000000000000000527555674c1992dba28a23df5f8b00df4a77b8666001600160a01b0316846001600160a01b031614156115f4576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f000000000000000000000000527555674c1992dba28a23df5f8b00df4a77b8666001600160a01b0316836001600160a01b0316141561166b576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ac57506001600160a01b03831660009081526006602052604090205460ff16155b156116c1576116bc848484611bf0565b6117bf565b6001600160a01b03841660009081526006602052604090205460ff1615801561170257506001600160a01b03831660009081526006602052604090205460ff165b15611712576116bc848484611d37565b6001600160a01b03841660009081526006602052604090205460ff1615801561175457506001600160a01b03831660009081526006602052604090205460ff16155b15611764576116bc848484611df2565b6001600160a01b03841660009081526006602052604090205460ff1680156117a457506001600160a01b03831660009081526006602052604090205460ff165b156117b4576116bc848484611e48565b6117bf848484611df2565b6117d06012805462ffffff19169055565b50505050565b600a546009546000918291825b6007548110156119285782600260006007848154811061180557611805612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611870575081600360006007848154811061184957611849612498565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188657600a54600954945094505050509091565b6118cc60026000600784815481106118a0576118a0612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ec9565b925061191460036000600784815481106118e8576118e8612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ec9565b915080611920816124ae565b9150506117e3565b50600954600a5461193891610d10565b82101561194f57600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198d5761198d612498565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2f91906124c9565b81600181518110611a4257611a42612498565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae29085906000908690309042906004016124e6565b600060405180830381600087803b158015611afc57600080fd5b505af11580156112ef573d6000803e3d6000fd5b611b3b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd1565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be99190612557565b5050505050565b600080600080611bff85611f0b565b93509350935093506000806000611c2088878787611c1b611331565b611f6a565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4b9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7a9084611ec9565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ca99083611fcc565b6001600160a01b038a16600090815260026020526040902055611ccb8561202b565b611cd48461202b565b611cde81876120b4565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2391815260200190565b60405180910390a350505050505050505050565b600080600080611d4685611f0b565b93509350935093506000806000611d6288878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8d9084611ec9565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc39088611fcc565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ca99083611fcc565b600080600080611e0185611f0b565b93509350935093506000806000611e1d88878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7a9084611ec9565b600080600080611e5785611f0b565b93509350935093506000806000611e7388878787611c1b611331565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9e9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8d90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112f7565b6000806000806000611f1c866120d8565b90506000611f29876120f9565b90506000611f3688612119565b90506000611f4e83611f488b87611ec9565b90611ec9565b9050611f5a8183611ec9565b9993985091965094509092505050565b6000808080611f798986610d52565b90506000611f878987610d52565b90506000611f958988610d52565b90506000611fa38989610d52565b90506000611fb782611f4885818989611ec9565b949d949c50929a509298505050505050505050565b600080611fd9838561241b565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612035611331565b905060006120438383610d52565b306000908152600260205260409020549091506120609082611fcc565b3060009081526002602090815260408083209390935560069052205460ff16156120af573060009081526003602052604090205461209e9084611fcc565b306000908152600360205260409020555b505050565b600a546120c19083611ec9565b600a55600b546120d19082611fcc565b600b555050565b60125460009061077a906064906120f390859060ff16610d52565b90610d10565b60125460009061077a906064906120f3908590610100900460ff16610d52565b60125460009061077a906064906120f390859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121675785810183015185820160400152820161214b565b81811115612179576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146121a457600080fd5b50565b600080604083850312156121ba57600080fd5b82356121c58161218f565b946020939093013593505050565b6000602082840312156121e557600080fd5b813561091a8161218f565b60008060006060848603121561220557600080fd5b83356122108161218f565b925060208401356122208161218f565b929592945050506040919091013590565b8035801515811461224157600080fd5b919050565b6000806040838503121561225957600080fd5b6121c583612231565b60006020828403121561227457600080fd5b5035919050565b803560ff8116811461224157600080fd5b60008060008060008060c087890312156122a557600080fd5b6122ae8761227b565b95506122bc6020880161227b565b94506122ca6040880161227b565b93506122d86060880161227b565b92506122e66080880161227b565b91506122f460a0880161227b565b90509295509295509295565b60006020828403121561231257600080fd5b61091a82612231565b6000806040838503121561232e57600080fd5b82356123398161218f565b915060208301356123498161218f565b809150509250929050565b600181811c9082168061236857607f821691505b6020821081141561238957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123f4576123f46123c4565b500290565b60008261241657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561242e5761242e6123c4565b500190565b600082821015612445576124456123c4565b500390565b600060ff821660ff84168060ff03821115612467576124676123c4565b019392505050565b600060ff821660ff84168160ff0481118215151615612490576124906123c4565b029392505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124c2576124c26123c4565b5060010190565b6000602082840312156124db57600080fd5b815161091a8161218f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125365784516001600160a01b031683529383019391830191600101612511565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561256c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122090462ae93194e58c536ca26475f1a08d77eeaca5afe6df85b8cc219ea15b5c8064736f6c634300080a0033

Deployed Bytecode Sourcemap

25128:20980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28439:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29424:193;;;;;;;;;;-1:-1:-1;29424:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29424:193:0;1072:187:1;30780:115:0;;;;;;;;;;-1:-1:-1;30780:115:0;;;;;:::i;:::-;;:::i;:::-;;26424:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;26424:51:0;1516:230:1;28716:95:0;;;;;;;;;;-1:-1:-1;28796:7:0;;28716:95;;;1897:25:1;;;1885:2;1870:18;28716:95:0;1751:177:1;29625:446:0;;;;;;;;;;-1:-1:-1;29625:446:0;;;;;:::i;:::-;;:::i;26288:22::-;;;;;;;;;;-1:-1:-1;26288:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;2614:4:1;2602:17;;;2584:36;;2656:17;;;2651:2;2636:18;;2629:45;2710:17;;2690:18;;;2683:45;;;;2572:2;2557:18;26288:22:0;2394:340:1;45854:251:0;;;;;;;;;;-1:-1:-1;45854:251:0;;;;;:::i;:::-;;:::i;30211:322::-;;;;;;;;;;-1:-1:-1;30211:322:0;;;;;:::i;:::-;;:::i;28625:83::-;;;;;;;;;;-1:-1:-1;28691:9:0;;28625:83;;28691:9;;;;3484:36:1;;3472:2;3457:18;28625:83:0;3342:184:1;30543:111:0;;;;;;;;;;-1:-1:-1;30543:111:0;;;;;:::i;:::-;;:::i;26261:20::-;;;;;;;;;;-1:-1:-1;26261:20:0;;;;;;;;;;;;;;;;;;;;;;26482:38;;;;;;;;;;;;;;;35918:124;;;;;;;;;;-1:-1:-1;35918:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;36007:27:0;35983:4;36007:27;;;:18;:27;;;;;;;;;35918:124;28819:198;;;;;;;;;;-1:-1:-1;28819:198:0;;;;;:::i;:::-;;:::i;15192:148::-;;;;;;;;;;;;;:::i;26599:55::-;;;;;;;;;;;;;;;;30081:120;;;;;;;;;;-1:-1:-1;30081:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30173:20:0;30149:4;30173:20;;;:11;:20;;;;;;;;;30081:120;14550:79;;;;;;;;;;-1:-1:-1;14588:7:0;14615:6;-1:-1:-1;;;;;14615:6:0;14550:79;;26752:57;;;;;;;;;;;;;;;;30903:114;;;;;;;;;;-1:-1:-1;30903:114:0;;;;;:::i;:::-;;:::i;28530:87::-;;;;;;;;;;;;;:::i;27300:46::-;;;;;;;;;;-1:-1:-1;27300:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29025:199;;;;;;;;;;-1:-1:-1;29025:199:0;;;;;:::i;:::-;;:::i;31025:514::-;;;;;;;;;;-1:-1:-1;31025:514:0;;;;;:::i;:::-;;:::i;31695:171::-;;;;;;;;;;-1:-1:-1;31695:171:0;;;;;:::i;:::-;;:::i;36050:128::-;;;;;;;;;;-1:-1:-1;36050:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;36141:29:0;36117:4;36141:29;;;:20;:29;;;;;;;;;36050:128;29232:184;;;;;;;;;;-1:-1:-1;29232:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29381:18:0;;;29349:7;29381:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29232:184;30662:110;;;;;;;;;;-1:-1:-1;30662:110:0;;;;;:::i;:::-;;:::i;31547:140::-;;;;;;;;;;-1:-1:-1;31547:140:0;;;;;:::i;:::-;;:::i;15495:281::-;;;;;;;;;;-1:-1:-1;15495:281:0;;;;;:::i;:::-;;:::i;27202:29::-;;;;;;;;;;;;;;;;28439:83;28476:13;28509:5;28502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28439:83;:::o;29424:193::-;29526:4;29548:39;7394:10;29571:7;29580:6;29548:8;:39::i;:::-;-1:-1:-1;29605:4:0;29424:193;;;;;:::o;30780:115::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30851:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;30851:36:0::1;30883:4;30851:36;::::0;;30780:115::o;29625:446::-;29757:4;29774:36;29784:6;29792:9;29803:6;29774:9;:36::i;:::-;29821:220;29844:6;7394:10;29892:138;29948:6;29892:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29892:19:0;;;;;;:11;:19;;;;;;;;7394:10;29892:33;;;;;;;;;;:37;:138::i;:::-;29821:8;:220::i;:::-;-1:-1:-1;30059:4:0;29625:446;;;;;:::o;45854:251::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;45941:11:::1;:21:::0;;-1:-1:-1;;45941:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;45976:11:::0;:30;::::1;;;-1:-1:-1::0;45991:10:0::1;::::0;:15;45976:30:::1;45973:125;;;46035:12;46022:10;:25:::0;46062:10:::1;:24:::0;;;45973:125:::1;45854:251:::0;;:::o;30211:322::-;30305:7;30363;;30352;:18;;30330:110;;;;-1:-1:-1;;;30330:110:0;;5966:2:1;30330:110:0;;;5948:21:1;6005:2;5985:18;;;5978:30;6044:34;6024:18;;;6017:62;-1:-1:-1;;;6095:18:1;;;6088:40;6145:19;;30330:110:0;5764:406:1;30330:110:0;30451:19;30473:10;:8;:10::i;:::-;30451:32;-1:-1:-1;30501:24:0;:7;30451:32;30501:11;:24::i;:::-;30494:31;30211:322;-1:-1:-1;;;30211:322:0:o;30543:111::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30612:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;30612:34:0::1;30642:4;30612:34;::::0;;30543:111::o;28819:198::-;-1:-1:-1;;;;;28909:20:0;;28885:7;28909:20;;;:11;:20;;;;;;;;28905:49;;;-1:-1:-1;;;;;;28938:16:0;;;;;:7;:16;;;;;;;28819:198::o;28905:49::-;-1:-1:-1;;;;;28992:16:0;;;;;;:7;:16;;;;;;28972:37;;:19;:37::i;15192:148::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;15299:1:::1;15283:6:::0;;15262:40:::1;::::0;-1:-1:-1;;;;;15283:6:0;;::::1;::::0;15262:40:::1;::::0;15299:1;;15262:40:::1;15330:1;15313:19:::0;;-1:-1:-1;;;;;;15313:19:0::1;::::0;;15192:148::o;30903:114::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30972:29:0::1;31004:5;30972:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;30972:37:0::1;::::0;;30903:114::o;28530:87::-;28569:13;28602:7;28595:14;;;;;:::i;29025:199::-;29130:4;29152:42;7394:10;29176:9;29187:6;29152:9;:42::i;31025:514::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;31272:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;31317:32:0;;;;31272:34:::1;31317:32:::0;;::::1;::::0;::::1;;-1:-1:-1::0;;31360:32:0;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;31405:7:::1;:36:::0;;;;::::1;31452:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;31497::::0;;::::1;::::0;;;::::1;;;::::0;;31025:514::o;31695:171::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;31772:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;31772:32:0;;::::1;;::::0;;31820:38:::1;::::0;::::1;::::0;::::1;::::0;31796:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;31820:38:0::1;;;;;;;;31695:171:::0;:::o;30662:110::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30729:27:0::1;30759:5;30729:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;30729:35:0::1;::::0;;30662:110::o;31547:140::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;31638:29:::1;:41:::0;31547:140::o;15495:281::-;14762:6;;-1:-1:-1;;;;;14762:6:0;7394:10;14762:22;14754:67;;;;-1:-1:-1;;;14754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15598:22:0;::::1;15576:110;;;::::0;-1:-1:-1;;;15576:110:0;;6377:2:1;15576:110:0::1;::::0;::::1;6359:21:1::0;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;-1:-1:-1;;;6506:18:1;;;6499:36;6552:19;;15576:110:0::1;6175:402:1::0;15576:110:0::1;15723:6;::::0;;15702:38:::1;::::0;-1:-1:-1;;;;;15702:38:0;;::::1;::::0;15723:6;::::1;::::0;15702:38:::1;::::0;::::1;15751:6;:17:::0;;-1:-1:-1;;;;;;15751:17:0::1;-1:-1:-1::0;;;;;15751:17:0;;;::::1;::::0;;;::::1;::::0;;15495:281::o;5038:132::-;5096:7;5123:39;5127:1;5130;5123:39;;;;;;;;;;;;;;;;;:3;:39::i;4543:252::-;4601:7;4627:6;4623:47;;-1:-1:-1;4657:1:0;4650:8;;4623:47;4682:9;4694:5;4698:1;4694;:5;:::i;:::-;4682:17;-1:-1:-1;4727:1:0;4718:5;4722:1;4682:17;4718:5;:::i;:::-;:10;4710:56;;;;-1:-1:-1;;;4710:56:0;;7311:2:1;4710:56:0;;;7293:21:1;7350:2;7330:18;;;7323:30;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:18:1;;;7433:31;7481:19;;4710:56:0;7109:397:1;36186:371:0;-1:-1:-1;;;;;36313:19:0;;36305:68;;;;-1:-1:-1;;;36305:68:0;;7713:2:1;36305:68:0;;;7695:21:1;7752:2;7732:18;;;7725:30;7791:34;7771:18;;;7764:62;-1:-1:-1;;;7842:18:1;;;7835:34;7886:19;;36305:68:0;7511:400:1;36305:68:0;-1:-1:-1;;;;;36392:21:0;;36384:68;;;;-1:-1:-1;;;36384:68:0;;8118:2:1;36384:68:0;;;8100:21:1;8157:2;8137:18;;;8130:30;8196:34;8176:18;;;8169:62;-1:-1:-1;;;8247:18:1;;;8240:32;8289:19;;36384:68:0;7916:398:1;36384:68:0;-1:-1:-1;;;;;36465:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36517:32;;1897:25:1;;;36517:32:0;;1870:18:1;36517:32:0;;;;;;;36186:371;;;:::o;36565:2343::-;-1:-1:-1;;;;;36687:18:0;;36679:68;;;;-1:-1:-1;;;36679:68:0;;8521:2:1;36679:68:0;;;8503:21:1;8560:2;8540:18;;;8533:30;8599:34;8579:18;;;8572:62;-1:-1:-1;;;8650:18:1;;;8643:35;8695:19;;36679:68:0;8319:401:1;36679:68:0;-1:-1:-1;;;;;36766:16:0;;36758:64;;;;-1:-1:-1;;;36758:64:0;;8927:2:1;36758:64:0;;;8909:21:1;8966:2;8946:18;;;8939:30;9005:34;8985:18;;;8978:62;-1:-1:-1;;;9056:18:1;;;9049:33;9099:19;;36758:64:0;8725:399:1;36758:64:0;36850:1;36841:6;:10;36833:64;;;;-1:-1:-1;;;36833:64:0;;9331:2:1;36833:64:0;;;9313:21:1;9370:2;9350:18;;;9343:30;9409:34;9389:18;;;9382:62;-1:-1:-1;;;9460:18:1;;;9453:39;9509:19;;36833:64:0;9129:405:1;36833:64:0;14588:7;14615:6;-1:-1:-1;;;;;36923:15:0;;;14615:6;;36923:15;;;;:32;;-1:-1:-1;14588:7:0;14615:6;-1:-1:-1;;;;;36942:13:0;;;14615:6;;36942:13;;36923:32;36918:88;;;36966:11;;;;36958:48;;;;-1:-1:-1;;;36958:48:0;;9741:2:1;36958:48:0;;;9723:21:1;9780:2;9760:18;;;9753:30;9819:26;9799:18;;;9792:54;9863:18;;36958:48:0;9539:348:1;36958:48:0;37341:28;37372:24;37390:4;37372:9;:24::i;:::-;37341:55;;37437:12;;37413:20;:36;37409:104;;-1:-1:-1;37489:12:0;;37409:104;37589:29;;37552:66;;;;;;;37647:53;;-1:-1:-1;37684:16:0;;;;;;;37683:17;37647:53;:91;;;;;37725:13;-1:-1:-1;;;;;37717:21:0;:4;-1:-1:-1;;;;;37717:21:0;;;37647:91;:129;;;;-1:-1:-1;37755:21:0;;;;;;;37647:129;37629:318;;;37826:29;;37803:52;;37899:36;37914:20;37899:14;:36::i;:::-;-1:-1:-1;;;;;38140:24:0;;38020:12;38140:24;;;:18;:24;;;;;;38035:4;;38140:24;;;:50;;-1:-1:-1;;;;;;38168:22:0;;;;;;:18;:22;;;;;;;;38140:50;38136:98;;;-1:-1:-1;38217:5:0;38136:98;38248:7;38244:536;;;-1:-1:-1;;;;;38277:26:0;;;;;;:20;:26;;;;;;;;38276:27;:56;;;;-1:-1:-1;;;;;;38308:24:0;;;;;;:20;:24;;;;;;;;38307:25;38276:56;38272:497;;;38393:12;;38383:6;:22;;38353:136;;;;-1:-1:-1;;;38353:136:0;;10094:2:1;38353:136:0;;;10076:21:1;10133:2;10113:18;;;10106:30;10172:34;10152:18;;;10145:62;-1:-1:-1;;;10223:18:1;;;10216:38;10271:19;;38353:136:0;9892:404:1;38353:136:0;38518:13;-1:-1:-1;;;;;38512:19:0;:2;-1:-1:-1;;;;;38512:19:0;;38508:228;;38616:14;;38599:13;38609:2;38599:9;:13::i;:::-;38590:22;;:6;:22;:::i;:::-;:40;;38556:160;;;;-1:-1:-1;;;38556:160:0;;10636:2:1;38556:160:0;;;10618:21:1;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;-1:-1:-1;;;10765:18:1;;;10758:32;10807:19;;38556:160:0;10434:398:1;38556:160:0;38859:41;38874:4;38880:2;38884:6;38892:7;38859:14;:41::i;:::-;36668:2240;;;36565:2343;;;:::o;4058:226::-;4178:7;4214:12;4206:6;;;;4198:29;;;;-1:-1:-1;;;4198:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4238:9:0;4250:5;4254:1;4250;:5;:::i;:::-;4238:17;4058:226;-1:-1:-1;;;;;4058:226:0:o;33395:164::-;33437:7;33458:15;33475;33494:19;:17;:19::i;:::-;33457:56;;-1:-1:-1;33457:56:0;-1:-1:-1;33531:20:0;33457:56;;33531:11;:20::i;:::-;33524:27;;;;33395:164;:::o;5666:312::-;5786:7;5821:12;5814:5;5806:28;;;;-1:-1:-1;;;5806:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5845:9:0;5857:5;5861:1;5857;:5;:::i;38916:1195::-;27116:16;:23;;-1:-1:-1;;27116:23:0;;;;;39119:7:::1;:17:::0;39100:6:::1;:16:::0;27116:23;;39119:17;;;::::1;27116:23:::0;39119:17;;::::1;::::0;39100:16;;::::1;::::0;::::1;::::0;39061:36:::1;::::0;27116:23;39080:17;;;::::1;::::0;::::1;::::0;39061:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;39060:81;::::0;39140:1:::1;39060:81;:::i;:::-;39217:7;:17:::0;39198:6:::1;:16:::0;39038:103:::1;::::0;;::::1;::::0;-1:-1:-1;39152:32:0::1;::::0;39038:103;;39198:36:::1;::::0;39217:17:::1;::::0;;;::::1;::::0;::::1;::::0;39198:16;;::::1;;:36;:::i;:::-;39188:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;39187:63;;;;:::i;:::-;39152:98:::0;-1:-1:-1;39261:14:0::1;39278:33;39152:98:::0;39278:6;:33:::1;:::i;:::-;39261:50:::0;-1:-1:-1;39349:21:0::1;39383:24;39261:50:::0;39383:16:::1;:24::i;:::-;39420:20;39443:38;39467:14:::0;39443:21:::1;:38;:::i;:::-;39564:7;:17:::0;39545:6:::1;:16:::0;39420:61;;-1:-1:-1;39492:19:0::1;::::0;39545:36:::1;::::0;39564:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39545:16;;;::::1;;:36;:::i;:::-;39530:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39514:69;::::0;:12;:69:::1;:::i;:::-;39660:7;:17:::0;39641:6:::1;:16:::0;39492:91;;-1:-1:-1;39594:29:0::1;::::0;39641:36:::1;::::0;39660:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39641:16;;;::::1;;:36;:::i;:::-;39626:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39594:84:::0;-1:-1:-1;39695:25:0;;39691:160:::1;;39778:61;39791:24;39817:21;39778:12;:61::i;:::-;39958:7;:17:::0;39939:6:::1;:16:::0;39897:20:::1;::::0;39939:36:::1;::::0;39958:17:::1;::::0;;;;::::1;::::0;::::1;::::0;39939:16;;::::1;;:36;:::i;:::-;39920:56;;:15;:11:::0;39934:1:::1;39920:15;:::i;:::-;:56;;;;:::i;:::-;39897:79:::0;-1:-1:-1;40002:16:0;;39998:98:::1;;40043:17;::::0;40035:49:::1;::::0;-1:-1:-1;;;;;40043:17:0;;::::1;::::0;40035:49;::::1;;;::::0;40071:12;;40043:17:::1;40035:49:::0;40043:17;40035:49;40071:12;40043:17;40035:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39998:98;-1:-1:-1::0;;27162:16:0;:24;;-1:-1:-1;;27162:24:0;;;-1:-1:-1;;;;;;;38916:1195:0:o;41316:1022::-;41471:7;41467:230;;;41495:14;35455;:18;;-1:-1:-1;;35512:17:0;;;35412:132;41495:14;41538:13;-1:-1:-1;;;;;41528:23:0;:6;-1:-1:-1;;;;;41528:23:0;;41524:72;;;35606:6;:17;35589:14;:34;;35606:17;;;;-1:-1:-1;;35634:32:0;;;;;;;35606:17;35650:16;;;;;35634:32;;-1:-1:-1;;35677:32:0;35693:16;;;;;;;;;35677:32;;;;;;;;;41572:8;41627:13;-1:-1:-1;;;;;41614:26:0;:9;-1:-1:-1;;;;;41614:26:0;;41610:76;;;35788:7;:18;35771:14;:35;;35788:18;;;;-1:-1:-1;;35817:33:0;;;;;;;35788:18;35833:17;;;;;35817:33;;-1:-1:-1;;35861:33:0;35877:17;;;;;;;;;35861:33;;;;;;;;;41661:9;-1:-1:-1;;;;;41713:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41737:22:0;;;;;;:11;:22;;;;;;;;41736:23;41713:46;41709:597;;;41776:48;41798:6;41806:9;41817:6;41776:21;:48::i;:::-;41709:597;;;-1:-1:-1;;;;;41847:19:0;;;;;;:11;:19;;;;;;;;41846:20;:46;;;;-1:-1:-1;;;;;;41870:22:0;;;;;;:11;:22;;;;;;;;41846:46;41842:464;;;41909:46;41929:6;41937:9;41948:6;41909:19;:46::i;41842:464::-;-1:-1:-1;;;;;41978:19:0;;;;;;:11;:19;;;;;;;;41977:20;:47;;;;-1:-1:-1;;;;;;42002:22:0;;;;;;:11;:22;;;;;;;;42001:23;41977:47;41973:333;;;42041:44;42059:6;42067:9;42078:6;42041:17;:44::i;41973:333::-;-1:-1:-1;;;;;42107:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42130:22:0;;;;;;:11;:22;;;;;;;;42107:45;42103:203;;;42169:48;42191:6;42199:9;42210:6;42169:21;:48::i;42103:203::-;42250:44;42268:6;42276:9;42287:6;42250:17;:44::i;:::-;42316:14;35455;:18;;-1:-1:-1;;35512:17:0;;;35412:132;42316:14;41316:1022;;;;:::o;33567:605::-;33665:7;;33701;;33618;;;;;33719:338;33743:9;:16;33739:20;;33719:338;;;33827:7;33803;:21;33811:9;33821:1;33811:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33811:12:0;33803:21;;;;;;;;;;;;;:31;;:83;;;33879:7;33855;:21;33863:9;33873:1;33863:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33863:12:0;33855:21;;;;;;;;;;;;;:31;33803:83;33781:146;;;33910:7;;33919;;33902:25;;;;;;;33567:605;;:::o;33781:146::-;33952:34;33964:7;:21;33972:9;33982:1;33972:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33972:12:0;33964:21;;;;;;;;;;;;;33952:7;;:11;:34::i;:::-;33942:44;;34011:34;34023:7;:21;34031:9;34041:1;34031:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34031:12:0;34023:21;;;;;;;;;;;;;34011:7;;:11;:34::i;:::-;34001:44;-1:-1:-1;33761:3:0;;;;:::i;:::-;;;;33719:338;;;-1:-1:-1;34093:7:0;;34081;;:20;;:11;:20::i;:::-;34071:7;:30;34067:61;;;34111:7;;34120;;34103:25;;;;;;33567:605;;:::o;34067:61::-;34147:7;;34156;;-1:-1:-1;33567:605:0;-1:-1:-1;33567:605:0:o;40119:589::-;40269:16;;;40283:1;40269:16;;;;;;;;40245:21;;40269:16;;;;;;;;;;-1:-1:-1;40269:16:0;40245:40;;40314:4;40296;40301:1;40296:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40296:23:0;;;-1:-1:-1;;;;;40296:23:0;;;;;40340:15;-1:-1:-1;;;;;40340:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40330:4;40335:1;40330:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40330:32:0;;;-1:-1:-1;;;;;40330:32:0;;;;;40375:62;40392:4;40407:15;40425:11;40375:8;:62::i;:::-;40476:224;;-1:-1:-1;;;40476:224:0;;-1:-1:-1;;;;;40476:15:0;:66;;;;:224;;40557:11;;40583:1;;40627:4;;40654;;40674:15;;40476:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40716:519;40864:62;40881:4;40896:15;40914:11;40864:8;:62::i;:::-;40969:258;;-1:-1:-1;;;40969:258:0;;41041:4;40969:258;;;13405:34:1;;;13455:18;;;13448:34;;;41087:1:0;13498:18:1;;;13491:34;;;13541:18;;;13534:34;13584:19;;;13577:44;41201:15:0;13637:19:1;;;13630:35;40969:15:0;-1:-1:-1;;;;;40969:31:0;;;;41008:9;;13339:19:1;;40969:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40716:519;;:::o;44041:863::-;44192:23;44230:12;44257:18;44290:15;44319:20;44331:7;44319:11;:20::i;:::-;44177:162;;;;;;;;44351:15;44368:23;44393:12;44409:135;44435:7;44457:4;44476:10;44501:7;44523:10;:8;:10::i;:::-;44409:11;:135::i;:::-;-1:-1:-1;;;;;44575:15:0;;;;;;:7;:15;;;;;;44350:194;;-1:-1:-1;44350:194:0;;-1:-1:-1;44350:194:0;-1:-1:-1;44575:28:0;;44595:7;44575:19;:28::i;:::-;-1:-1:-1;;;;;44557:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44632:7;:15;;;;:28;;44652:7;44632:19;:28::i;:::-;-1:-1:-1;;;;;44614:15:0;;;;;;;:7;:15;;;;;;:46;;;;44692:18;;;;;;;:39;;44715:15;44692:22;:39::i;:::-;-1:-1:-1;;;;;44671:18:0;;;;;;:7;:18;;;;;:60;44742:26;44757:10;44742:14;:26::i;:::-;44779:23;44794:7;44779:14;:23::i;:::-;44813;44825:4;44831;44813:11;:23::i;:::-;44869:9;-1:-1:-1;;;;;44852:44:0;44861:6;-1:-1:-1;;;;;44852:44:0;;44880:15;44852:44;;;;1897:25:1;;1885:2;1870:18;;1751:177;44852:44:0;;;;;;;;44166:738;;;;;;;44041:863;;;:::o;43158:875::-;43307:23;43345:12;43372:18;43405:15;43434:20;43446:7;43434:11;:20::i;:::-;43292:162;;;;;;;;43466:15;43483:23;43508:12;43524:135;43550:7;43572:4;43591:10;43616:7;43638:10;:8;:10::i;43524:135::-;-1:-1:-1;;;;;43690:15:0;;;;;;:7;:15;;;;;;43465:194;;-1:-1:-1;43465:194:0;;-1:-1:-1;43465:194:0;-1:-1:-1;43690:28:0;;43465:194;43690:19;:28::i;:::-;-1:-1:-1;;;;;43672:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43750:18;;;;;:7;:18;;;;;:39;;43773:15;43750:22;:39::i;:::-;-1:-1:-1;;;;;43729:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43821:7;:18;;;;:39;;43844:15;43821:22;:39::i;42346:802::-;42493:23;42531:12;42558:18;42591:15;42620:20;42632:7;42620:11;:20::i;:::-;42478:162;;;;;;;;42652:15;42669:23;42694:12;42710:135;42736:7;42758:4;42777:10;42802:7;42824:10;:8;:10::i;42710:135::-;-1:-1:-1;;;;;42876:15:0;;;;;;:7;:15;;;;;;42651:194;;-1:-1:-1;42651:194:0;;-1:-1:-1;42651:194:0;-1:-1:-1;42876:28:0;;42651:194;42876:19;:28::i;44912:934::-;45063:23;45101:12;45128:18;45161:15;45190:20;45202:7;45190:11;:20::i;:::-;45048:162;;;;;;;;45222:15;45239:23;45264:12;45280:135;45306:7;45328:4;45347:10;45372:7;45394:10;:8;:10::i;45280:135::-;-1:-1:-1;;;;;45446:15:0;;;;;;:7;:15;;;;;;45221:194;;-1:-1:-1;45221:194:0;;-1:-1:-1;45221:194:0;-1:-1:-1;45446:28:0;;45466:7;45446:19;:28::i;:::-;-1:-1:-1;;;;;45428:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45503:7;:15;;;;:28;;45523:7;3619:136;3677:7;3704:43;3708:1;3711;3704:43;;;;;;;;;;;;;;;;;:3;:43::i;32123:568::-;32224:7;32246;32268;32290;32325:12;32340:31;32363:7;32340:22;:31::i;:::-;32325:46;;32382:18;32403:30;32425:7;32403:21;:30::i;:::-;32382:51;;32444:15;32462:30;32484:7;32462:21;:30::i;:::-;32444:48;-1:-1:-1;32503:23:0;32529:33;32551:10;32529:17;:7;32541:4;32529:11;:17::i;:::-;:21;;:33::i;:::-;32503:59;-1:-1:-1;32591:28:0;32503:59;32611:7;32591:19;:28::i;:::-;32573:46;32657:4;;-1:-1:-1;32663:10:0;;-1:-1:-1;32663:10:0;-1:-1:-1;32123:568:0;;-1:-1:-1;;;32123:568:0:o;32699:688::-;32924:7;;;;33021:24;:7;33033:11;33021;:24::i;:::-;33003:42;-1:-1:-1;33056:12:0;33071:21;:4;33080:11;33071:8;:21::i;:::-;33056:36;-1:-1:-1;33103:18:0;33124:27;:10;33139:11;33124:14;:27::i;:::-;33103:48;-1:-1:-1;33162:15:0;33180:24;:7;33192:11;33180;:24::i;:::-;33162:42;-1:-1:-1;33215:23:0;33241:88;33162:42;33241:61;33291:10;33241:61;:7;33267:4;33241:25;:31::i;:88::-;33348:7;;;;-1:-1:-1;33374:4:0;;-1:-1:-1;32699:688:0;;-1:-1:-1;;;;;;;;;32699:688:0:o;3155:181::-;3213:7;;3245:5;3249:1;3245;:5;:::i;:::-;3233:17;;3274:1;3269;:6;;3261:46;;;;-1:-1:-1;;;3261:46:0;;14189:2:1;3261:46:0;;;14171:21:1;14228:2;14208:18;;;14201:30;14267:29;14247:18;;;14240:57;14314:18;;3261:46:0;13987:351:1;34180:355:0;34243:19;34265:10;:8;:10::i;:::-;34243:32;-1:-1:-1;34286:18:0;34307:27;:10;34243:32;34307:14;:27::i;:::-;34386:4;34370:22;;;;:7;:22;;;;;;34286:48;;-1:-1:-1;34370:38:0;;34286:48;34370:26;:38::i;:::-;34361:4;34345:22;;;;:7;:22;;;;;;;;:63;;;;34423:11;:26;;;;;;34419:108;;;34505:4;34489:22;;;;:7;:22;;;;;;:38;;34516:10;34489:26;:38::i;:::-;34480:4;34464:22;;;;:7;:22;;;;;:63;34419:108;34232:303;;34180:355;:::o;31968:147::-;32046:7;;:17;;32058:4;32046:11;:17::i;:::-;32036:7;:27;32087:10;;:20;;32102:4;32087:14;:20::i;:::-;32074:10;:33;-1:-1:-1;;31968:147:0:o;34891:144::-;35001:14;;34962:7;;34989:38;;35021:5;;34989:27;;:7;;35001:14;;34989:11;:27::i;:::-;:31;;:38::i;35043:174::-;35184:13;;35140:7;;35172:37;;35203:5;;35172:26;;:7;;35184:13;;;;;35172:11;:26::i;35225:174::-;35366:13;;35322:7;;35354:37;;35385:5;;35354:26;;:7;;35366:13;;;;;35354:11;:26::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2739:160::-;2804:20;;2860:13;;2853:21;2843:32;;2833:60;;2889:1;2886;2879:12;2833:60;2739:160;;;:::o;2904:248::-;2969:6;2977;3030:2;3018:9;3009:7;3005:23;3001:32;2998:52;;;3046:1;3043;3036:12;2998:52;3069:26;3085:9;3069:26;:::i;3157:180::-;3216:6;3269:2;3257:9;3248:7;3244:23;3240:32;3237:52;;;3285:1;3282;3275:12;3237:52;-1:-1:-1;3308:23:1;;3157:180;-1:-1:-1;3157:180:1:o;3739:156::-;3805:20;;3865:4;3854:16;;3844:27;;3834:55;;3885:1;3882;3875:12;3900:535;3992:6;4000;4008;4016;4024;4032;4085:3;4073:9;4064:7;4060:23;4056:33;4053:53;;;4102:1;4099;4092:12;4053:53;4125:27;4142:9;4125:27;:::i;:::-;4115:37;;4171:36;4203:2;4192:9;4188:18;4171:36;:::i;:::-;4161:46;;4226:36;4258:2;4247:9;4243:18;4226:36;:::i;:::-;4216:46;;4281:36;4313:2;4302:9;4298:18;4281:36;:::i;:::-;4271:46;;4336:37;4368:3;4357:9;4353:19;4336:37;:::i;:::-;4326:47;;4392:37;4424:3;4413:9;4409:19;4392:37;:::i;:::-;4382:47;;3900:535;;;;;;;;:::o;4440:180::-;4496:6;4549:2;4537:9;4528:7;4524:23;4520:32;4517:52;;;4565:1;4562;4555:12;4517:52;4588:26;4604:9;4588:26;:::i;4625:388::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4809:9;4796:23;4828:31;4853:5;4828:31;:::i;:::-;4878:5;-1:-1:-1;4935:2:1;4920:18;;4907:32;4948:33;4907:32;4948:33;:::i;:::-;5000:7;4990:17;;;4625:388;;;;;:::o;5018:380::-;5097:1;5093:12;;;;5140;;;5161:61;;5215:4;5207:6;5203:17;5193:27;;5161:61;5268:2;5260:6;5257:14;5237:18;5234:38;5231:161;;;5314:10;5309:3;5305:20;5302:1;5295:31;5349:4;5346:1;5339:15;5377:4;5374:1;5367:15;5231:161;;5018:380;;;:::o;5403:356::-;5605:2;5587:21;;;5624:18;;;5617:30;5683:34;5678:2;5663:18;;5656:62;5750:2;5735:18;;5403:356::o;6582:127::-;6643:10;6638:3;6634:20;6631:1;6624:31;6674:4;6671:1;6664:15;6698:4;6695:1;6688:15;6714:168;6754:7;6820:1;6816;6812:6;6808:14;6805:1;6802:21;6797:1;6790:9;6783:17;6779:45;6776:71;;;6827:18;;:::i;:::-;-1:-1:-1;6867:9:1;;6714:168::o;6887:217::-;6927:1;6953;6943:132;;6997:10;6992:3;6988:20;6985:1;6978:31;7032:4;7029:1;7022:15;7060:4;7057:1;7050:15;6943:132;-1:-1:-1;7089:9:1;;6887:217::o;10301:128::-;10341:3;10372:1;10368:6;10365:1;10362:13;10359:39;;;10378:18;;:::i;:::-;-1:-1:-1;10414:9:1;;10301:128::o;10837:125::-;10877:4;10905:1;10902;10899:8;10896:34;;;10910:18;;:::i;:::-;-1:-1:-1;10947:9:1;;10837:125::o;10967:204::-;11005:3;11041:4;11038:1;11034:12;11073:4;11070:1;11066:12;11108:3;11102:4;11098:14;11093:3;11090:23;11087:49;;;11116:18;;:::i;:::-;11152:13;;10967:204;-1:-1:-1;;;10967:204:1:o;11176:238::-;11214:7;11254:4;11251:1;11247:12;11286:4;11283:1;11279:12;11346:3;11340:4;11336:14;11331:3;11328:23;11321:3;11314:11;11307:19;11303:49;11300:75;;;11355:18;;:::i;:::-;11395:13;;11176:238;-1:-1:-1;;;11176:238:1:o;11419:127::-;11480:10;11475:3;11471:20;11468:1;11461:31;11511:4;11508:1;11501:15;11535:4;11532:1;11525:15;11551:135;11590:3;-1:-1:-1;;11611:17:1;;11608:43;;;11631:18;;:::i;:::-;-1:-1:-1;11678:1:1;11667:13;;11551:135::o;11823:251::-;11893:6;11946:2;11934:9;11925:7;11921:23;11917:32;11914:52;;;11962:1;11959;11952:12;11914:52;11994:9;11988:16;12013:31;12038:5;12013:31;:::i;12079:980::-;12341:4;12389:3;12378:9;12374:19;12420:6;12409:9;12402:25;12446:2;12484:6;12479:2;12468:9;12464:18;12457:34;12527:3;12522:2;12511:9;12507:18;12500:31;12551:6;12586;12580:13;12617:6;12609;12602:22;12655:3;12644:9;12640:19;12633:26;;12694:2;12686:6;12682:15;12668:29;;12715:1;12725:195;12739:6;12736:1;12733:13;12725:195;;;12804:13;;-1:-1:-1;;;;;12800:39:1;12788:52;;12895:15;;;;12860:12;;;;12836:1;12754:9;12725:195;;;-1:-1:-1;;;;;;;12976:32:1;;;;12971:2;12956:18;;12949:60;-1:-1:-1;;;13040:3:1;13025:19;13018:35;12937:3;12079:980;-1:-1:-1;;;12079:980:1:o;13676:306::-;13764:6;13772;13780;13833:2;13821:9;13812:7;13808:23;13804:32;13801:52;;;13849:1;13846;13839:12;13801:52;13878:9;13872:16;13862:26;;13928:2;13917:9;13913:18;13907:25;13897:35;;13972:2;13961:9;13957:18;13951:25;13941:35;;13676:306;;;;;:::o

Swarm Source

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