ETH Price: $3,093.68 (+1.07%)
Gas: 3 Gwei

Token

SafeBitcoin (SafeBTC)
 

Overview

Max Total Supply

1,000,000,000,000,000 SafeBTC

Holders

672 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
10,533,163,264.581919582 SafeBTC

Value
$0.00
0x12df6dcefed5c760736c22586485de5910ff7fda
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SafeBitcoin is a token with frictionless fee redistribution and liquidity-adds on transfers.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SafeBitcoin

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-03
*/

pragma solidity ^0.6.12;
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

contract SafeBitcoin 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;

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

    string private _name = "SafeBitcoin";
    string private _symbol = "SafeBTC";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public tradingEnabled = false;

    uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9;

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

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

    constructor () public {
        _rOwned[0x426c91B3e87a5B1e95554dB8A688ccabBF04D541] = _rTotal;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

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

    function enableTrading() external onlyOwner() {
        tradingEnabled = true;
    }

    receive() external payable {}

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

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

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

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

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

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

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

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

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        if (from != owner() && !tradingEnabled) {
            require(tradingEnabled, "Trading is not enabled yet");
        }

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

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

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

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

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

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

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

        if(!takeFee)
            restoreAllFee();
    }

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

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

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




}

Contract Security Audit

Contract ABI

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

69d3c21bcecceda100000060095569085afffa6ff50bffffff19600a55610100604052600b60c08190526a29b0b332a134ba31b7b4b760a91b60e09081526200004c91600c9190620003ef565b50604080518082019091526007808252665361666542544360c81b60209092019182526200007d91600d91620003ef565b50600e805460ff191660091790556002600f819055601081905560118190556012556013805462ff00001961ff00199091166101001716905569010f0cf064dd59200000601455681b1ae4d6e2ef500000601555348015620000de57600080fd5b506000620000eb620003dc565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5473426c91b3e87a5b1e95554db8a688ccabbf04d541600052600360209081527fdae0230916352d93439294bde53db753519867b266106c98c7bedbad392618ed919091556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b158015620001c657600080fd5b505afa158015620001db573d6000803e3d6000fd5b505050506040513d6020811015620001f257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024357600080fd5b505afa15801562000258573d6000803e3d6000fd5b505050506040513d60208110156200026f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002c257600080fd5b505af1158015620002d7573d6000803e3d6000fd5b505050506040513d6020811015620002ee57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200031b620003e0565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006835281812080548516600190811790915573426c91b3e87a5b1e95554db8a688ccabbf04d5418083527fde6e131bfac210e42aacb63526fcf4c6d7f1f2c5ad6b27640a6a84b7380e269880549096169091179094556009548251908152915190927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a3506200048b565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043257805160ff191683800117855562000462565b8280016001018555821562000462579182015b828111156200046257825182559160200191906001019062000445565b506200047092915062000474565b5090565b5b8082111562000470576000815560010162000475565b60805160601c60a05160601c612b82620004d360003980610efa5280611afe5250806109e152806122ba52806123725280612399528061247f52806124a65250612b826000f3fe6080604052600436106102345760003560e01c80635342acb41161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107d3578063dd467064146107fd578063dd62ed3e14610827578063ea2f0b3714610862578063f2fde38b146108955761023b565b8063a457c2d71461070b578063a69df4b514610744578063a9059cbb14610759578063b6c5232414610792578063c49b9a80146107a75761023b565b806388f82020116100f257806388f820201461066f5780638a8c523c146106a25780638da5cb5b146106b75780638ee88c53146106cc57806395d89b41146106f65761023b565b80635342acb4146105ca5780636bc87c3a146105fd57806370a0823114610612578063715018a6146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d5780634ada218b1461058257806352390c02146105975761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108c8565b005b34801561027857600080fd5b50610281610925565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109bb565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109d9565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109df565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a03565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a09565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610a90565b34801561042957600080fd5b50610432610af2565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610afb565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b3480156104c057600080fd5b50610358610d0a565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d10565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610dea565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e66565b34801561056457600080fd5b5061037f610ef8565b34801561057957600080fd5b5061032f610f1c565b34801561058e57600080fd5b5061032f610f2a565b3480156105a357600080fd5b5061026a600480360360208110156105ba57600080fd5b50356001600160a01b0316610f39565b3480156105d657600080fd5b5061032f600480360360208110156105ed57600080fd5b50356001600160a01b03166110bf565b34801561060957600080fd5b506103586110dd565b34801561061e57600080fd5b506103586004803603602081101561063557600080fd5b50356001600160a01b03166110e3565b34801561065157600080fd5b5061026a611145565b34801561066657600080fd5b506103586111d5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111db565b3480156106ae57600080fd5b5061026a6111f9565b3480156106c357600080fd5b5061037f611264565b3480156106d857600080fd5b5061026a600480360360208110156106ef57600080fd5b5035611273565b34801561070257600080fd5b506102816112d0565b34801561071757600080fd5b5061032f6004803603604081101561072e57600080fd5b506001600160a01b038135169060200135611331565b34801561075057600080fd5b5061026a611399565b34801561076557600080fd5b5061032f6004803603604081101561077c57600080fd5b506001600160a01b038135169060200135611487565b34801561079e57600080fd5b5061035861149b565b3480156107b357600080fd5b5061026a600480360360208110156107ca57600080fd5b503515156114a1565b3480156107df57600080fd5b5061026a600480360360208110156107f657600080fd5b5035611548565b34801561080957600080fd5b5061026a6004803603602081101561082057600080fd5b50356115c6565b34801561083357600080fd5b506103586004803603604081101561084a57600080fd5b506001600160a01b0381358116916020013516611664565b34801561086e57600080fd5b5061026a6004803603602081101561088557600080fd5b50356001600160a01b031661168f565b3480156108a157600080fd5b5061026a600480360360208110156108b857600080fd5b50356001600160a01b0316611708565b6108d06117ee565b6000546001600160a01b03908116911614610920576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109cf6109c86117ee565b84846117f2565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610a168484846118de565b610a8684610a226117ee565b610a81856040518060600160405280602881526020016129ff602891396001600160a01b038a16600090815260056020526040812090610a606117ee565b6001600160a01b031681526020810191909152604001600020549190611bb8565b6117f2565b5060019392505050565b6000600a54821115610ad35760405162461bcd60e51b815260040180806020018281038252602a815260200180612944602a913960400191505060405180910390fd5b6000610add611c4f565b9050610ae98382611c72565b9150505b919050565b600e5460ff1690565b610b036117ee565b6000546001600160a01b03908116911614610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bc0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cb857816001600160a01b031660088281548110610be457fe5b6000918252602090912001546001600160a01b03161415610cb057600880546000198101908110610c1157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c3757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c8957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cb8565b600101610bc3565b5050565b60006109cf610cc96117ee565b84610a818560056000610cda6117ee565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611cbb565b600f5481565b6000610d1a6117ee565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d755760405162461bcd60e51b815260040180806020018281038252602c815260200180612ad9602c913960400191505060405180910390fd5b6000610d8083611d15565b505050506001600160a01b038416600090815260036020526040902054919250610dac91905082611d64565b6001600160a01b038316600090815260036020526040902055600a54610dd29082611d64565b600a55600b54610de29084611cbb565b600b55505050565b610df26117ee565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610ebf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ede576000610ecf84611d15565b509395506109d3945050505050565b6000610ee984611d15565b509295506109d3945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601354610100900460ff1681565b60135462010000900460ff1681565b610f416117ee565b6000546001600160a01b03908116911614610f91576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610fff576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611059576001600160a01b03811660009081526003602052604090205461103f90610a90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561112357506001600160a01b038116600090815260046020526040902054610aed565b6001600160a01b0382166000908152600360205260409020546109d390610a90565b61114d6117ee565b6000546001600160a01b0390811691161461119d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a47833981519152908390a3600080546001600160a01b0319169055565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6112016117ee565b6000546001600160a01b03908116911614611251576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6013805462ff0000191662010000179055565b6000546001600160a01b031690565b61127b6117ee565b6000546001600160a01b039081169116146112cb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b60006109cf61133e6117ee565b84610a8185604051806060016040528060258152602001612b2860259139600560006113686117ee565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bb8565b6001546001600160a01b031633146113e25760405162461bcd60e51b8152600401808060200182810382526023815260200180612b056023913960400191505060405180910390fd5b6002544211611438576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a4783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109cf6114946117ee565b84846118de565b60025490565b6114a96117ee565b6000546001600160a01b039081169116146114f9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6115506117ee565b6000546001600160a01b039081169116146115a0576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6115c060646115ba83600954611da690919063ffffffff16565b90611c72565b60145550565b6115ce6117ee565b6000546001600160a01b0390811691161461161e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a47833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116976117ee565b6000546001600160a01b039081169116146116e7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6117106117ee565b6000546001600160a01b03908116911614611760576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b0381166117a55760405162461bcd60e51b815260040180806020018281038252602681526020018061296e6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a4783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118375760405162461bcd60e51b8152600401808060200182810382526024815260200180612ab56024913960400191505060405180910390fd5b6001600160a01b03821661187c5760405162461bcd60e51b81526004018080602001828103825260228152602001806129946022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119235760405162461bcd60e51b8152600401808060200182810382526025815260200180612a906025913960400191505060405180910390fd5b6001600160a01b0382166119685760405162461bcd60e51b81526004018080602001828103825260238152602001806129216023913960400191505060405180910390fd5b600081116119a75760405162461bcd60e51b8152600401808060200182810382526029815260200180612a676029913960400191505060405180910390fd5b6119af611264565b6001600160a01b0316836001600160a01b0316141580156119e957506119d3611264565b6001600160a01b0316826001600160a01b031614155b15611a2f57601454811115611a2f5760405162461bcd60e51b81526004018080602001828103825260288152602001806129b66028913960400191505060405180910390fd5b611a37611264565b6001600160a01b0316836001600160a01b031614158015611a61575060135462010000900460ff16155b15611ac35760135462010000900460ff16611ac3576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b6000611ace306110e3565b90506014548110611ade57506014545b60155481108015908190611af5575060135460ff16155b8015611b3357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b465750601354610100900460ff165b15611b59576015549150611b5982611dff565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b9b57506001600160a01b03851660009081526006602052604090205460ff165b15611ba4575060005b611bb086868684611e9c565b505050505050565b60008184841115611c475760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c0c578181015183820152602001611bf4565b50505050905090810190601f168015611c395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c5c612010565b9092509050611c6b8282611c72565b9250505090565b6000611cb483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612173565b9392505050565b600082820183811015611cb4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d2c8a6121d8565b9250925092506000806000611d4a8d8686611d45611c4f565b61221a565b919f909e50909c50959a5093985091965092945050505050565b6000611cb483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bb8565b600082611db5575060006109d3565b82820282848281611dc257fe5b0414611cb45760405162461bcd60e51b81526004018080602001828103825260218152602001806129de6021913960400191505060405180910390fd5b6013805460ff191660011790556000611e19826002611c72565b90506000611e278383611d64565b905047611e338361226a565b6000611e3f4783611d64565b9050611e4b8382612479565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611ea957611ea9612577565b6001600160a01b03841660009081526007602052604090205460ff168015611eea57506001600160a01b03831660009081526007602052604090205460ff16155b15611eff57611efa8484846125a9565b611ffd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f4057506001600160a01b03831660009081526007602052604090205460ff165b15611f5057611efa8484846126cd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f9257506001600160a01b03831660009081526007602052604090205460ff16155b15611fa257611efa848484612776565b6001600160a01b03841660009081526007602052604090205460ff168015611fe257506001600160a01b03831660009081526007602052604090205460ff165b15611ff257611efa8484846127ba565b611ffd848484612776565b8061200a5761200a61282d565b50505050565b600a546009546000918291825b6008548110156121415782600360006008848154811061203957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061209e575081600460006008848154811061207757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120b557600a546009549450945050505061216f565b6120f560036000600884815481106120c957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d64565b9250612137600460006008848154811061210b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d64565b915060010161201d565b50600954600a5461215191611c72565b82101561216957600a5460095493509350505061216f565b90925090505b9091565b600081836121c25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c0c578181015183820152602001611bf4565b5060008385816121ce57fe5b0495945050505050565b6000806000806121e78561283b565b905060006121f486612857565b9050600061220c826122068986611d64565b90611d64565b979296509094509092505050565b60008080806122298886611da6565b905060006122378887611da6565b905060006122458888611da6565b90506000612257826122068686611d64565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561231157600080fd5b505afa158015612325573d6000803e3d6000fd5b505050506040513d602081101561233b57600080fd5b505181518290600190811061234c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612397307f0000000000000000000000000000000000000000000000000000000000000000846117f2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243c578181015183820152602001612424565b505050509050019650505050505050600060405180830381600087803b15801561246557600080fd5b505af1158015611bb0573d6000803e3d6000fd5b6124a4307f0000000000000000000000000000000000000000000000000000000000000000846117f2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806124e1611264565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561254c57600080fd5b505af1158015612560573d6000803e3d6000fd5b50505050506040513d606081101561200a57600080fd5b600f541580156125875750601154155b15612591576125a7565b600f805460105560118054601255600091829055555b565b6000806000806000806125bb87611d15565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125ed9088611d64565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461261c9087611d64565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461264b9086611cbb565b6001600160a01b03891660009081526003602052604090205561266d81612873565b61267784836128fc565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126df87611d15565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127119087611d64565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127479084611cbb565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461264b9086611cbb565b60008060008060008061278887611d15565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061261c9087611d64565b6000806000806000806127cc87611d15565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127fe9088611d64565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127119087611d64565b601054600f55601254601155565b60006109d360646115ba600f5485611da690919063ffffffff16565b60006109d360646115ba60115485611da690919063ffffffff16565b600061287d611c4f565b9050600061288b8383611da6565b306000908152600360205260409020549091506128a89082611cbb565b3060009081526003602090815260408083209390935560079052205460ff16156128f757306000908152600460205260409020546128e69084611cbb565b306000908152600460205260409020555b505050565b600a546129099083611d64565b600a55600b546129199082611cbb565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122029f9f11e41e73f594e5e1ede97208bae2b9f41854ce24d439d35a221cebc388564736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80635342acb41161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107d3578063dd467064146107fd578063dd62ed3e14610827578063ea2f0b3714610862578063f2fde38b146108955761023b565b8063a457c2d71461070b578063a69df4b514610744578063a9059cbb14610759578063b6c5232414610792578063c49b9a80146107a75761023b565b806388f82020116100f257806388f820201461066f5780638a8c523c146106a25780638da5cb5b146106b75780638ee88c53146106cc57806395d89b41146106f65761023b565b80635342acb4146105ca5780636bc87c3a146105fd57806370a0823114610612578063715018a6146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d5780634ada218b1461058257806352390c02146105975761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108c8565b005b34801561027857600080fd5b50610281610925565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109bb565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109d9565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109df565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a03565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a09565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610a90565b34801561042957600080fd5b50610432610af2565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610afb565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b3480156104c057600080fd5b50610358610d0a565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d10565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610dea565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e66565b34801561056457600080fd5b5061037f610ef8565b34801561057957600080fd5b5061032f610f1c565b34801561058e57600080fd5b5061032f610f2a565b3480156105a357600080fd5b5061026a600480360360208110156105ba57600080fd5b50356001600160a01b0316610f39565b3480156105d657600080fd5b5061032f600480360360208110156105ed57600080fd5b50356001600160a01b03166110bf565b34801561060957600080fd5b506103586110dd565b34801561061e57600080fd5b506103586004803603602081101561063557600080fd5b50356001600160a01b03166110e3565b34801561065157600080fd5b5061026a611145565b34801561066657600080fd5b506103586111d5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111db565b3480156106ae57600080fd5b5061026a6111f9565b3480156106c357600080fd5b5061037f611264565b3480156106d857600080fd5b5061026a600480360360208110156106ef57600080fd5b5035611273565b34801561070257600080fd5b506102816112d0565b34801561071757600080fd5b5061032f6004803603604081101561072e57600080fd5b506001600160a01b038135169060200135611331565b34801561075057600080fd5b5061026a611399565b34801561076557600080fd5b5061032f6004803603604081101561077c57600080fd5b506001600160a01b038135169060200135611487565b34801561079e57600080fd5b5061035861149b565b3480156107b357600080fd5b5061026a600480360360208110156107ca57600080fd5b503515156114a1565b3480156107df57600080fd5b5061026a600480360360208110156107f657600080fd5b5035611548565b34801561080957600080fd5b5061026a6004803603602081101561082057600080fd5b50356115c6565b34801561083357600080fd5b506103586004803603604081101561084a57600080fd5b506001600160a01b0381358116916020013516611664565b34801561086e57600080fd5b5061026a6004803603602081101561088557600080fd5b50356001600160a01b031661168f565b3480156108a157600080fd5b5061026a600480360360208110156108b857600080fd5b50356001600160a01b0316611708565b6108d06117ee565b6000546001600160a01b03908116911614610920576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109cf6109c86117ee565b84846117f2565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610a168484846118de565b610a8684610a226117ee565b610a81856040518060600160405280602881526020016129ff602891396001600160a01b038a16600090815260056020526040812090610a606117ee565b6001600160a01b031681526020810191909152604001600020549190611bb8565b6117f2565b5060019392505050565b6000600a54821115610ad35760405162461bcd60e51b815260040180806020018281038252602a815260200180612944602a913960400191505060405180910390fd5b6000610add611c4f565b9050610ae98382611c72565b9150505b919050565b600e5460ff1690565b610b036117ee565b6000546001600160a01b03908116911614610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bc0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cb857816001600160a01b031660088281548110610be457fe5b6000918252602090912001546001600160a01b03161415610cb057600880546000198101908110610c1157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c3757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c8957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cb8565b600101610bc3565b5050565b60006109cf610cc96117ee565b84610a818560056000610cda6117ee565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611cbb565b600f5481565b6000610d1a6117ee565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d755760405162461bcd60e51b815260040180806020018281038252602c815260200180612ad9602c913960400191505060405180910390fd5b6000610d8083611d15565b505050506001600160a01b038416600090815260036020526040902054919250610dac91905082611d64565b6001600160a01b038316600090815260036020526040902055600a54610dd29082611d64565b600a55600b54610de29084611cbb565b600b55505050565b610df26117ee565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610ebf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ede576000610ecf84611d15565b509395506109d3945050505050565b6000610ee984611d15565b509295506109d3945050505050565b7f000000000000000000000000e3b2d2eae80cd8eadb72bf3f14e23c0a621b4f0581565b601354610100900460ff1681565b60135462010000900460ff1681565b610f416117ee565b6000546001600160a01b03908116911614610f91576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610fff576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611059576001600160a01b03811660009081526003602052604090205461103f90610a90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561112357506001600160a01b038116600090815260046020526040902054610aed565b6001600160a01b0382166000908152600360205260409020546109d390610a90565b61114d6117ee565b6000546001600160a01b0390811691161461119d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a47833981519152908390a3600080546001600160a01b0319169055565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6112016117ee565b6000546001600160a01b03908116911614611251576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6013805462ff0000191662010000179055565b6000546001600160a01b031690565b61127b6117ee565b6000546001600160a01b039081169116146112cb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b60006109cf61133e6117ee565b84610a8185604051806060016040528060258152602001612b2860259139600560006113686117ee565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bb8565b6001546001600160a01b031633146113e25760405162461bcd60e51b8152600401808060200182810382526023815260200180612b056023913960400191505060405180910390fd5b6002544211611438576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a4783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109cf6114946117ee565b84846118de565b60025490565b6114a96117ee565b6000546001600160a01b039081169116146114f9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6115506117ee565b6000546001600160a01b039081169116146115a0576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6115c060646115ba83600954611da690919063ffffffff16565b90611c72565b60145550565b6115ce6117ee565b6000546001600160a01b0390811691161461161e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a47833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116976117ee565b6000546001600160a01b039081169116146116e7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6117106117ee565b6000546001600160a01b03908116911614611760576040805162461bcd60e51b81526020600482018190526024820152600080516020612a27833981519152604482015290519081900360640190fd5b6001600160a01b0381166117a55760405162461bcd60e51b815260040180806020018281038252602681526020018061296e6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a4783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118375760405162461bcd60e51b8152600401808060200182810382526024815260200180612ab56024913960400191505060405180910390fd5b6001600160a01b03821661187c5760405162461bcd60e51b81526004018080602001828103825260228152602001806129946022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119235760405162461bcd60e51b8152600401808060200182810382526025815260200180612a906025913960400191505060405180910390fd5b6001600160a01b0382166119685760405162461bcd60e51b81526004018080602001828103825260238152602001806129216023913960400191505060405180910390fd5b600081116119a75760405162461bcd60e51b8152600401808060200182810382526029815260200180612a676029913960400191505060405180910390fd5b6119af611264565b6001600160a01b0316836001600160a01b0316141580156119e957506119d3611264565b6001600160a01b0316826001600160a01b031614155b15611a2f57601454811115611a2f5760405162461bcd60e51b81526004018080602001828103825260288152602001806129b66028913960400191505060405180910390fd5b611a37611264565b6001600160a01b0316836001600160a01b031614158015611a61575060135462010000900460ff16155b15611ac35760135462010000900460ff16611ac3576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b6000611ace306110e3565b90506014548110611ade57506014545b60155481108015908190611af5575060135460ff16155b8015611b3357507f000000000000000000000000e3b2d2eae80cd8eadb72bf3f14e23c0a621b4f056001600160a01b0316856001600160a01b031614155b8015611b465750601354610100900460ff165b15611b59576015549150611b5982611dff565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b9b57506001600160a01b03851660009081526006602052604090205460ff165b15611ba4575060005b611bb086868684611e9c565b505050505050565b60008184841115611c475760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c0c578181015183820152602001611bf4565b50505050905090810190601f168015611c395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c5c612010565b9092509050611c6b8282611c72565b9250505090565b6000611cb483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612173565b9392505050565b600082820183811015611cb4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d2c8a6121d8565b9250925092506000806000611d4a8d8686611d45611c4f565b61221a565b919f909e50909c50959a5093985091965092945050505050565b6000611cb483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bb8565b600082611db5575060006109d3565b82820282848281611dc257fe5b0414611cb45760405162461bcd60e51b81526004018080602001828103825260218152602001806129de6021913960400191505060405180910390fd5b6013805460ff191660011790556000611e19826002611c72565b90506000611e278383611d64565b905047611e338361226a565b6000611e3f4783611d64565b9050611e4b8382612479565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611ea957611ea9612577565b6001600160a01b03841660009081526007602052604090205460ff168015611eea57506001600160a01b03831660009081526007602052604090205460ff16155b15611eff57611efa8484846125a9565b611ffd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f4057506001600160a01b03831660009081526007602052604090205460ff165b15611f5057611efa8484846126cd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f9257506001600160a01b03831660009081526007602052604090205460ff16155b15611fa257611efa848484612776565b6001600160a01b03841660009081526007602052604090205460ff168015611fe257506001600160a01b03831660009081526007602052604090205460ff165b15611ff257611efa8484846127ba565b611ffd848484612776565b8061200a5761200a61282d565b50505050565b600a546009546000918291825b6008548110156121415782600360006008848154811061203957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061209e575081600460006008848154811061207757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120b557600a546009549450945050505061216f565b6120f560036000600884815481106120c957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d64565b9250612137600460006008848154811061210b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d64565b915060010161201d565b50600954600a5461215191611c72565b82101561216957600a5460095493509350505061216f565b90925090505b9091565b600081836121c25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c0c578181015183820152602001611bf4565b5060008385816121ce57fe5b0495945050505050565b6000806000806121e78561283b565b905060006121f486612857565b9050600061220c826122068986611d64565b90611d64565b979296509094509092505050565b60008080806122298886611da6565b905060006122378887611da6565b905060006122458888611da6565b90506000612257826122068686611d64565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561231157600080fd5b505afa158015612325573d6000803e3d6000fd5b505050506040513d602081101561233b57600080fd5b505181518290600190811061234c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612397307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117f2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243c578181015183820152602001612424565b505050509050019650505050505050600060405180830381600087803b15801561246557600080fd5b505af1158015611bb0573d6000803e3d6000fd5b6124a4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117f2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806124e1611264565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561254c57600080fd5b505af1158015612560573d6000803e3d6000fd5b50505050506040513d606081101561200a57600080fd5b600f541580156125875750601154155b15612591576125a7565b600f805460105560118054601255600091829055555b565b6000806000806000806125bb87611d15565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125ed9088611d64565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461261c9087611d64565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461264b9086611cbb565b6001600160a01b03891660009081526003602052604090205561266d81612873565b61267784836128fc565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126df87611d15565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127119087611d64565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127479084611cbb565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461264b9086611cbb565b60008060008060008061278887611d15565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061261c9087611d64565b6000806000806000806127cc87611d15565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127fe9088611d64565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127119087611d64565b601054600f55601254601155565b60006109d360646115ba600f5485611da690919063ffffffff16565b60006109d360646115ba60115485611da690919063ffffffff16565b600061287d611c4f565b9050600061288b8383611da6565b306000908152600360205260409020549091506128a89082611cbb565b3060009081526003602090815260408083209390935560079052205460ff16156128f757306000908152600460205260409020546128e69084611cbb565b306000908152600460205260409020555b505050565b600a546129099083611d64565b600a55600b546129199082611cbb565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122029f9f11e41e73f594e5e1ede97208bae2b9f41854ce24d439d35a221cebc388564736f6c634300060c0033

Deployed Bytecode Sourcemap

24228:18385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31672:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31672:98:0;;:::i;:::-;;26749:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27661:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27661:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28782:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25183:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25183:51:0;;;;;;;;;;;;;;27026:95;;;;;;;;;;;;;:::i;27830:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27830:313:0;;;;;;;;;;;;;;;;;:::i;29706:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29706:253:0;;:::i;26935:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30308:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30308:479:0;-1:-1:-1;;;;;30308:479:0;;:::i;28151:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28151:218:0;;;;;;;;:::i;24999:26::-;;;;;;;;;;;;;:::i;28877:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28877:377:0;;:::i;31435:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31435:111:0;-1:-1:-1;;;;;31435:111:0;;:::i;29262:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29262:436:0;;;;;;;;;:::i;25241:38::-;;;;;;;;;;;;;:::i;25316:40::-;;;;;;;;;;;;;:::i;25363:34::-;;;;;;;;;;;;;:::i;29967:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29967:333:0;-1:-1:-1;;;;;29967:333:0;;:::i;35553:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35553:123:0;-1:-1:-1;;;;;35553:123:0;;:::i;25082:32::-;;;;;;;;;;;;;:::i;27129:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27129:198:0;-1:-1:-1;;;;;27129:198:0;;:::i;14999:148::-;;;;;;;;;;;;;:::i;25406:53::-;;;;;;;;;;;;;:::i;28654:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28654:120:0;-1:-1:-1;;;;;28654:120:0;;:::i;32257:86::-;;;;;;;;;;;;;:::i;14363:79::-;;;;;;;;;;;;;:::i;31778:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31778:122:0;;:::i;26840:87::-;;;;;;;;;;;;;:::i;28377:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28377:269:0;;;;;;;;:::i;16005:293::-;;;;;;;;;;;;;:::i;27335:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27335:167:0;;;;;;;;:::i;15554:89::-;;;;;;;;;;;;;:::i;32078:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32078:171:0;;;;:::i;31908:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31908:162:0;;:::i;15719:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15719:214:0;;:::i;27510:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27510:143:0;;;;;;;;;;:::i;31554:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31554:110:0;-1:-1:-1;;;;;31554:110:0;;:::i;15302:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15302:244:0;-1:-1:-1;;;;;15302:244:0;;:::i;31672:98::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;31746:7:::1;:16:::0;31672:98::o;26749:83::-;26819:5;26812:12;;;;;;;;-1:-1:-1;;26812:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26786:13;;26812:12;;26819:5;;26812:12;;26819:5;26812:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26749:83;:::o;27661:161::-;27736:4;27753:39;27762:12;:10;:12::i;:::-;27776:7;27785:6;27753:8;:39::i;:::-;-1:-1:-1;27810:4:0;27661:161;;;;;:::o;28782:87::-;28851:10;;28782:87;:::o;25183:51::-;;;:::o;27026:95::-;27106:7;;27026:95;:::o;27830:313::-;27928:4;27945:36;27955:6;27963:9;27974:6;27945:9;:36::i;:::-;27992:121;28001:6;28009:12;:10;:12::i;:::-;28023:89;28061:6;28023:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28023:19:0;;;;;;:11;:19;;;;;;28043:12;:10;:12::i;:::-;-1:-1:-1;;;;;28023:33:0;;;;;;;;;;;;-1:-1:-1;28023:33:0;;;:89;:37;:89::i;:::-;27992:8;:121::i;:::-;-1:-1:-1;28131:4:0;27830:313;;;;;:::o;29706:253::-;29772:7;29811;;29800;:18;;29792:73;;;;-1:-1:-1;;;29792:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29876:19;29899:10;:8;:10::i;:::-;29876:33;-1:-1:-1;29927:24:0;:7;29876:33;29927:11;:24::i;:::-;29920:31;;;29706:253;;;;:::o;26935:83::-;27001:9;;;;26935:83;:::o;30308:479::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30390:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30382:60;;;::::0;;-1:-1:-1;;;30382:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30458:9;30453:327;30477:9;:16:::0;30473:20;::::1;30453:327;;;30535:7;-1:-1:-1::0;;;;;30519:23:0::1;:9;30529:1;30519:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;30519:12:0::1;:23;30515:254;;;30578:9;30588:16:::0;;-1:-1:-1;;30588:20:0;;;30578:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;30563:9:::1;:12:::0;;-1:-1:-1;;;;;30578:31:0;;::::1;::::0;30573:1;;30563:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;30563:46:0::1;-1:-1:-1::0;;;;;30563:46:0;;::::1;;::::0;;30628:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;30667:11:::1;:20:::0;;;;:28;;-1:-1:-1;;30667:28:0::1;::::0;;30714:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;30714:15:0;;;;;-1:-1:-1;;;;;;30714:15:0::1;::::0;;;;;30748:5:::1;;30515:254;30495:3;;30453:327;;;;30308:479:::0;:::o;28151:218::-;28239:4;28256:83;28265:12;:10;:12::i;:::-;28279:7;28288:50;28327:10;28288:11;:25;28300:12;:10;:12::i;:::-;-1:-1:-1;;;;;28288:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28288:25:0;;;:34;;;;;;;;;;;:38;:50::i;24999:26::-;;;;:::o;28877:377::-;28929:14;28946:12;:10;:12::i;:::-;-1:-1:-1;;;;;28978:19:0;;;;;;:11;:19;;;;;;28929:29;;-1:-1:-1;28978:19:0;;28977:20;28969:77;;;;-1:-1:-1;;;28969:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29058:15;29082:19;29093:7;29082:10;:19::i;:::-;-1:-1:-1;;;;;;;;;29130:15:0;;;;;;:7;:15;;;;;;29057:44;;-1:-1:-1;29130:28:0;;:15;-1:-1:-1;29057:44:0;29130:19;:28::i;:::-;-1:-1:-1;;;;;29112:15:0;;;;;;:7;:15;;;;;:46;29179:7;;:20;;29191:7;29179:11;:20::i;:::-;29169:7;:30;29223:10;;:23;;29238:7;29223:14;:23::i;:::-;29210:10;:36;-1:-1:-1;;;28877:377:0:o;31435:111::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31504:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;31504:34:0::1;31534:4;31504:34;::::0;;31435:111::o;29262:436::-;29352:7;29391;;29380;:18;;29372:62;;;;;-1:-1:-1;;;29372:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29450:17;29445:246;;29485:15;29509:19;29520:7;29509:10;:19::i;:::-;-1:-1:-1;29484:44:0;;-1:-1:-1;29543:14:0;;-1:-1:-1;;;;;29543:14:0;29445:246;29592:23;29623:19;29634:7;29623:10;:19::i;:::-;-1:-1:-1;29590:52:0;;-1:-1:-1;29657:22:0;;-1:-1:-1;;;;;29657:22:0;25241:38;;;:::o;25316:40::-;;;;;;;;;:::o;25363:34::-;;;;;;;;;:::o;29967:333::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30050:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30049:21;30041:61;;;::::0;;-1:-1:-1;;;30041:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;30116:16:0;::::1;30135:1;30116:16:::0;;;:7:::1;:16;::::0;;;;;:20;30113:108:::1;;-1:-1:-1::0;;;;;30192:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;30172:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;30153:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;30113:108:::1;-1:-1:-1::0;;;;;30231:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;30231:27:0::1;30254:4;30231:27:::0;;::::1;::::0;;;30269:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;30269:23:0::1;::::0;;::::1;::::0;;29967:333::o;35553:123::-;-1:-1:-1;;;;;35641:27:0;35617:4;35641:27;;;:18;:27;;;;;;;;;35553:123::o;25082:32::-;;;;:::o;27129:198::-;-1:-1:-1;;;;;27219:20:0;;27195:7;27219:20;;;:11;:20;;;;;;;;27215:49;;;-1:-1:-1;;;;;;27248:16:0;;;;;;:7;:16;;;;;;27241:23;;27215:49;-1:-1:-1;;;;;27302:16:0;;;;;;:7;:16;;;;;;27282:37;;:19;:37::i;14999:148::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;15106:1:::1;15090:6:::0;;15069:40:::1;::::0;-1:-1:-1;;;;;15090:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;15069:40:0;15106:1;;15069:40:::1;15137:1;15120:19:::0;;-1:-1:-1;;;;;;15120:19:0::1;::::0;;14999:148::o;25406:53::-;;;;:::o;28654:120::-;-1:-1:-1;;;;;28746:20:0;28722:4;28746:20;;;:11;:20;;;;;;;;;28654:120::o;32257:86::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;32314:14:::1;:21:::0;;-1:-1:-1;;32314:21:0::1;::::0;::::1;::::0;;32257:86::o;14363:79::-;14401:7;14428:6;-1:-1:-1;;;;;14428:6:0;14363:79;:::o;31778:122::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;31864:13:::1;:28:::0;31778:122::o;26840:87::-;26912:7;26905:14;;;;;;;;-1:-1:-1;;26905:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26879:13;;26905:14;;26912:7;;26905:14;;26912:7;26905:14;;;;;;;;;;;;;;;;;;;;;;;;28377:269;28470:4;28487:129;28496:12;:10;:12::i;:::-;28510:7;28519:96;28558:15;28519:96;;;;;;;;;;;;;;;;;:11;:25;28531:12;:10;:12::i;:::-;-1:-1:-1;;;;;28519:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28519:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16005:293::-;16057:14;;-1:-1:-1;;;;;16057:14:0;16075:10;16057:28;16049:76;;;;-1:-1:-1;;;16049:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16150:9;;16144:3;:15;16136:60;;;;;-1:-1:-1;;;16136:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16241:14;;;16233:6;;16212:44;;-1:-1:-1;;;;;16241:14:0;;;;16233:6;;;;-1:-1:-1;;;;;;;;;;;16212:44:0;;16276:14;;;16267:23;;-1:-1:-1;;;;;;16267:23:0;-1:-1:-1;;;;;16276:14:0;;;16267:23;;;;;;16005:293::o;27335:167::-;27413:4;27430:42;27440:12;:10;:12::i;:::-;27454:9;27465:6;27430:9;:42::i;15554:89::-;15626:9;;15554:89;:::o;32078:171::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;32155:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;32155:32:0;;::::1;::::0;;;::::1;::::0;;;32203:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;32078:171:::0;:::o;31908:162::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;32002:60:::1;32046:5;32002:25;32014:12;32002:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;31987:12;:75:::0;-1:-1:-1;31908:162:0:o;15719:214::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;15800:6:::1;::::0;;;15783:23;;-1:-1:-1;;;;;;15783:23:0;;::::1;-1:-1:-1::0;;;;;15800:6:0;::::1;15783:23;::::0;;;15817:19:::1;::::0;;15859:3:::1;:10:::0;::::1;15847:9;:22:::0;15885:40:::1;::::0;15800:6;;-1:-1:-1;;;;;;;;;;;15885:40:0;15800:6;;15885:40:::1;15719:214:::0;:::o;27510:143::-;-1:-1:-1;;;;;27618:18:0;;;27591:7;27618:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27510:143::o;31554:110::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31621:27:0::1;31651:5;31621:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;31621:35:0::1;::::0;;31554:110::o;15302:244::-;14585:12;:10;:12::i;:::-;14575:6;;-1:-1:-1;;;;;14575:6:0;;;:22;;;14567:67;;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14567:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15391:22:0;::::1;15383:73;;;;-1:-1:-1::0;;;15383:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15493:6;::::0;;15472:38:::1;::::0;-1:-1:-1;;;;;15472:38:0;;::::1;::::0;15493:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;15472:38:0;::::1;15521:6;:17:::0;;-1:-1:-1;;;;;;15521:17:0::1;-1:-1:-1::0;;;;;15521:17:0;;;::::1;::::0;;;::::1;::::0;;15302:244::o;7349:106::-;7437:10;7349:106;:::o;35684:337::-;-1:-1:-1;;;;;35777:19:0;;35769:68;;;;-1:-1:-1;;;35769:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35856:21:0;;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35929:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35981:32;;;;;;;;;;;;;;;;;35684:337;;;:::o;36029:1907::-;-1:-1:-1;;;;;36151:18:0;;36143:68;;;;-1:-1:-1;;;36143:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36230:16:0;;36222:64;;;;-1:-1:-1;;;36222:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36314:1;36305:6;:10;36297:64;;;;-1:-1:-1;;;36297:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36385:7;:5;:7::i;:::-;-1:-1:-1;;;;;36377:15:0;:4;-1:-1:-1;;;;;36377:15:0;;;:32;;;;;36402:7;:5;:7::i;:::-;-1:-1:-1;;;;;36396:13:0;:2;-1:-1:-1;;;;;36396:13:0;;;36377:32;36374:125;;;36442:12;;36432:6;:22;;36424:75;;;;-1:-1:-1;;;36424:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36524:7;:5;:7::i;:::-;-1:-1:-1;;;;;36516:15:0;:4;-1:-1:-1;;;;;36516:15:0;;;:34;;;;-1:-1:-1;36536:14:0;;;;;;;36535:15;36516:34;36512:120;;;36575:14;;;;;;;36567:53;;;;;-1:-1:-1;;;36567:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36926:28;36957:24;36975:4;36957:9;:24::i;:::-;36926:55;;37021:12;;36997:20;:36;36994:112;;-1:-1:-1;37082:12:0;;36994:112;37169:29;;37145:53;;;;;;;37227;;-1:-1:-1;37264:16:0;;;;37263:17;37227:53;:91;;;;;37305:13;-1:-1:-1;;;;;37297:21:0;:4;-1:-1:-1;;;;;37297:21:0;;;37227:91;:129;;;;-1:-1:-1;37335:21:0;;;;;;;37227:129;37209:318;;;37406:29;;37383:52;;37479:36;37494:20;37479:14;:36::i;:::-;-1:-1:-1;;;;;37719:24:0;;37600:12;37719:24;;;:18;:24;;;;;;37615:4;;37719:24;;;:50;;-1:-1:-1;;;;;;37747:22:0;;;;;;:18;:22;;;;;;;;37719:50;37716:96;;;-1:-1:-1;37795:5:0;37716:96;37890:38;37905:4;37910:2;37913:6;37920:7;37890:14;:38::i;:::-;36029:1907;;;;;;:::o;3759:192::-;3845:7;3881:12;3873:6;;;;3865:29;;;;-1:-1:-1;;;3865:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3917:5:0;;;3759:192::o;33745:163::-;33786:7;33807:15;33824;33843:19;:17;:19::i;:::-;33806:56;;-1:-1:-1;33806:56:0;-1:-1:-1;33880:20:0;33806:56;;33880:11;:20::i;:::-;33873:27;;;;33745:163;:::o;5157:132::-;5215:7;5242:39;5246:1;5249;5242:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5235:46;5157:132;-1:-1:-1;;;5157:132:0:o;2856:181::-;2914:7;2946:5;;;2970:6;;;;2962:46;;;;;-1:-1:-1;;;2962:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;32543:419;32602:7;32611;32620;32629;32638;32647;32668:23;32693:12;32707:18;32729:20;32741:7;32729:11;:20::i;:::-;32667:82;;;;;;32761:15;32778:23;32803:12;32819:50;32831:7;32840:4;32846:10;32858;:8;:10::i;:::-;32819:11;:50::i;:::-;32760:109;;;;-1:-1:-1;32760:109:0;;-1:-1:-1;32920:15:0;;-1:-1:-1;32937:4:0;;-1:-1:-1;32943:10:0;;-1:-1:-1;32543:419:0;;-1:-1:-1;;;;;32543:419:0:o;3320:136::-;3378:7;3405:43;3409:1;3412;3405:43;;;;;;;;;;;;;;;;;:3;:43::i;4210:471::-;4268:7;4513:6;4509:47;;-1:-1:-1;4543:1:0;4536:8;;4509:47;4580:5;;;4584:1;4580;:5;:1;4604:5;;;;;:10;4596:56;;;;-1:-1:-1;;;4596:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37944:977;25835:16;:23;;-1:-1:-1;;25835:23:0;25854:4;25835:23;;;:16;38095:27:::1;:20:::0;38120:1:::1;38095:24;:27::i;:::-;38080:42:::0;-1:-1:-1;38133:17:0::1;38153:30;:20:::0;38080:42;38153:24:::1;:30::i;:::-;38133:50:::0;-1:-1:-1;38486:21:0::1;38552:22;38569:4:::0;38552:16:::1;:22::i;:::-;38705:18;38726:41;:21;38752:14:::0;38726:25:::1;:41::i;:::-;38705:62;;38817:35;38830:9;38841:10;38817:12;:35::i;:::-;38870:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;25881:16:0;:24;;-1:-1:-1;;25881:24:0;;;-1:-1:-1;;;37944:977:0:o;40120:818::-;40231:7;40227:40;;40253:14;:12;:14::i;:::-;-1:-1:-1;;;;;40284:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40308:22:0;;;;;;:11;:22;;;;;;;;40307:23;40284:46;40280:597;;;40347:48;40369:6;40377:9;40388:6;40347:21;:48::i;:::-;40280:597;;;-1:-1:-1;;;;;40418:19:0;;;;;;:11;:19;;;;;;;;40417:20;:46;;;;-1:-1:-1;;;;;;40441:22:0;;;;;;:11;:22;;;;;;;;40417:46;40413:464;;;40480:46;40500:6;40508:9;40519:6;40480:19;:46::i;40413:464::-;-1:-1:-1;;;;;40549:19:0;;;;;;:11;:19;;;;;;;;40548:20;:47;;;;-1:-1:-1;;;;;;40573:22:0;;;;;;:11;:22;;;;;;;;40572:23;40548:47;40544:333;;;40612:44;40630:6;40638:9;40649:6;40612:17;:44::i;40544:333::-;-1:-1:-1;;;;;40678:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40701:22:0;;;;;;:11;:22;;;;;;;;40678:45;40674:203;;;40740:48;40762:6;40770:9;40781:6;40740:21;:48::i;40674:203::-;40821:44;40839:6;40847:9;40858:6;40821:17;:44::i;:::-;40893:7;40889:41;;40915:15;:13;:15::i;:::-;40120:818;;;;:::o;33916:555::-;34013:7;;34049;;33966;;;;;34067:289;34091:9;:16;34087:20;;34067:289;;;34157:7;34133;:21;34141:9;34151:1;34141:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34141:12:0;34133:21;;;;;;;;;;;;;:31;;:66;;;34192:7;34168;:21;34176:9;34186:1;34176:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34176:12:0;34168:21;;;;;;;;;;;;;:31;34133:66;34129:97;;;34209:7;;34218;;34201:25;;;;;;;;;34129:97;34251:34;34263:7;:21;34271:9;34281:1;34271:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34271:12:0;34263:21;;;;;;;;;;;;;34251:7;;:11;:34::i;:::-;34241:44;;34310:34;34322:7;:21;34330:9;34340:1;34330:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34330:12:0;34322:21;;;;;;;;;;;;;34310:7;;:11;:34::i;:::-;34300:44;-1:-1:-1;34109:3:0;;34067:289;;;-1:-1:-1;34392:7:0;;34380;;:20;;:11;:20::i;:::-;34370:7;:30;34366:61;;;34410:7;;34419;;34402:25;;;;;;;;34366:61;34446:7;;-1:-1:-1;34455:7:0;-1:-1:-1;33916:555:0;;;:::o;5785:278::-;5871:7;5906:12;5899:5;5891:28;;;;-1:-1:-1;;;5891:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5930:9;5946:1;5942;:5;;;;;;;5785:278;-1:-1:-1;;;;;5785:278:0:o;32970:330::-;33030:7;33039;33048;33068:12;33083:24;33099:7;33083:15;:24::i;:::-;33068:39;;33118:18;33139:30;33161:7;33139:21;:30::i;:::-;33118:51;-1:-1:-1;33180:23:0;33206:33;33118:51;33206:17;:7;33218:4;33206:11;:17::i;:::-;:21;;:33::i;:::-;33180:59;33275:4;;-1:-1:-1;33281:10:0;;-1:-1:-1;32970:330:0;;-1:-1:-1;;;32970:330:0:o;33308:429::-;33423:7;;;;33479:24;:7;33491:11;33479;:24::i;:::-;33461:42;-1:-1:-1;33514:12:0;33529:21;:4;33538:11;33529:8;:21::i;:::-;33514:36;-1:-1:-1;33561:18:0;33582:27;:10;33597:11;33582:14;:27::i;:::-;33561:48;-1:-1:-1;33620:23:0;33646:33;33561:48;33646:17;:7;33658:4;33646:11;:17::i;:33::-;33698:7;;;;-1:-1:-1;33724:4:0;;-1:-1:-1;33308:429:0;;-1:-1:-1;;;;;;;33308:429:0:o;38929:589::-;39079:16;;;39093:1;39079:16;;;39055:21;39079:16;;;;;39055:21;39079:16;;;;;;;;;;-1:-1:-1;39079:16:0;39055:40;;39124:4;39106;39111:1;39106:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;39106:23:0;;;-1:-1:-1;;;;;39106:23:0;;;;;39150:15;-1:-1:-1;;;;;39150:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39150:22:0;39140:7;;:4;;39145:1;;39140:7;;;;;;;;;;;:32;-1:-1:-1;;;;;39140:32:0;;;-1:-1:-1;;;;;39140:32:0;;;;;39185:62;39202:4;39217:15;39235:11;39185:8;:62::i;:::-;39286:15;-1:-1:-1;;;;;39286:66:0;;39367:11;39393:1;39437:4;39464;39484:15;39286:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39286:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39526:513;39674:62;39691:4;39706:15;39724:11;39674:8;:62::i;:::-;39779:15;-1:-1:-1;;;;;39779:31:0;;39818:9;39851:4;39871:11;39897:1;39940;39983:7;:5;:7::i;:::-;40005:15;39779:252;;;;;;;;;;;;;-1:-1:-1;;;;;39779:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39779:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35178:234;35224:7;;:12;:34;;;;-1:-1:-1;35240:13:0;;:18;35224:34;35221:46;;;35260:7;;35221:46;35297:7;;;35279:15;:25;35339:13;;;35315:21;:37;-1:-1:-1;35365:11:0;;;;35387:17;35178:234;:::o;42039:563::-;42142:15;42159:23;42184:12;42198:23;42223:12;42237:18;42259:19;42270:7;42259:10;:19::i;:::-;-1:-1:-1;;;;;42307:15:0;;;;;;:7;:15;;;;;;42141:137;;-1:-1:-1;42141:137:0;;-1:-1:-1;42141:137:0;;-1:-1:-1;42141:137:0;-1:-1:-1;42141:137:0;-1:-1:-1;42141:137:0;-1:-1:-1;42307:28:0;;42327:7;42307:19;:28::i;:::-;-1:-1:-1;;;;;42289:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42364:7;:15;;;;:28;;42384:7;42364:19;:28::i;:::-;-1:-1:-1;;;;;42346:15:0;;;;;;;:7;:15;;;;;;:46;;;;42424:18;;;;;;;:39;;42447:15;42424:22;:39::i;:::-;-1:-1:-1;;;;;42403:18:0;;;;;;:7;:18;;;;;:60;42474:26;42489:10;42474:14;:26::i;:::-;42511:23;42523:4;42529;42511:11;:23::i;:::-;42567:9;-1:-1:-1;;;;;42550:44:0;42559:6;-1:-1:-1;;;;;42550:44:0;;42578:15;42550:44;;;;;;;;;;;;;;;;;;42039:563;;;;;;;;;:::o;41456:575::-;41557:15;41574:23;41599:12;41613:23;41638:12;41652:18;41674:19;41685:7;41674:10;:19::i;:::-;-1:-1:-1;;;;;41722:15:0;;;;;;:7;:15;;;;;;41556:137;;-1:-1:-1;41556:137:0;;-1:-1:-1;41556:137:0;;-1:-1:-1;41556:137:0;-1:-1:-1;41556:137:0;-1:-1:-1;41556:137:0;-1:-1:-1;41722:28:0;;41556:137;41722:19;:28::i;:::-;-1:-1:-1;;;;;41704:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41782:18;;;;;:7;:18;;;;;:39;;41805:15;41782:22;:39::i;:::-;-1:-1:-1;;;;;41761:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41853:7;:18;;;;:39;;41876:15;41853:22;:39::i;40946:502::-;41045:15;41062:23;41087:12;41101:23;41126:12;41140:18;41162:19;41173:7;41162:10;:19::i;:::-;-1:-1:-1;;;;;41210:15:0;;;;;;:7;:15;;;;;;41044:137;;-1:-1:-1;41044:137:0;;-1:-1:-1;41044:137:0;;-1:-1:-1;41044:137:0;-1:-1:-1;41044:137:0;-1:-1:-1;41044:137:0;-1:-1:-1;41210:28:0;;41044:137;41210:19;:28::i;30793:634::-;30896:15;30913:23;30938:12;30952:23;30977:12;30991:18;31013:19;31024:7;31013:10;:19::i;:::-;-1:-1:-1;;;;;31061:15:0;;;;;;:7;:15;;;;;;30895:137;;-1:-1:-1;30895:137:0;;-1:-1:-1;30895:137:0;;-1:-1:-1;30895:137:0;-1:-1:-1;30895:137:0;-1:-1:-1;30895:137:0;-1:-1:-1;31061:28:0;;31081:7;31061:19;:28::i;:::-;-1:-1:-1;;;;;31043:15:0;;;;;;:7;:15;;;;;;;;:46;;;;31118:7;:15;;;;:28;;31138:7;31118:19;:28::i;35420:125::-;35474:15;;35464:7;:25;35516:21;;35500:13;:37;35420:125::o;34842:154::-;34906:7;34933:55;34972:5;34933:20;34945:7;;34933;:11;;:20;;;;:::i;35004:166::-;35074:7;35101:61;35146:5;35101:26;35113:13;;35101:7;:11;;:26;;;;:::i;34479:355::-;34542:19;34565:10;:8;:10::i;:::-;34542:33;-1:-1:-1;34586:18:0;34607:27;:10;34542:33;34607:14;:27::i;:::-;34686:4;34670:22;;;;:7;:22;;;;;;34586:48;;-1:-1:-1;34670:38:0;;34586:48;34670:26;:38::i;:::-;34661:4;34645:22;;;;:7;:22;;;;;;;;:63;;;;34722:11;:26;;;;;;34719:107;;;34804:4;34788:22;;;;:7;:22;;;;;;:38;;34815:10;34788:26;:38::i;:::-;34779:4;34763:22;;;;:7;:22;;;;;:63;34719:107;34479:355;;;:::o;32388:147::-;32466:7;;:17;;32478:4;32466:11;:17::i;:::-;32456:7;:27;32507:10;;:20;;32522:4;32507:14;:20::i;:::-;32494:10;:33;-1:-1:-1;;32388:147:0:o

Swarm Source

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