ETH Price: $2,287.62 (-3.92%)
Gas: 3.55 Gwei

Token

DOGETOPIA (DOGETOPIA)
 

Overview

Max Total Supply

1,000,000,000,000 DOGETOPIA

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
16,765,369,681.833775356 DOGETOPIA

Value
$0.00
0xA6a3931c141CCb88F416B58AA64Df4506E1F22b7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DOGETOPIA

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

/**

TELEGRAM: https://t.me/dogetopia1
WEBSITE: https://dogetopiatoken.com
TWITTER: https://twitter.com/Dogetopia_token
INSTAGRAM: https://www.instagram.com/dogetopia_token

────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
─████████████───██████████████─██████████████─██████████████─██████████████─██████████████─██████████████─██████████─██████████████─
─██░░░░░░░░████─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░██─██░░░░░░░░░░██─
─██░░████░░░░██─██░░██████░░██─██░░██████████─██░░██████████─██████░░██████─██░░██████░░██─██░░██████░░██─████░░████─██░░██████░░██─
─██░░██──██░░██─██░░██──██░░██─██░░██─────────██░░██─────────────██░░██─────██░░██──██░░██─██░░██──██░░██───██░░██───██░░██──██░░██─
─██░░██──██░░██─██░░██──██░░██─██░░██─────────██░░██████████─────██░░██─────██░░██──██░░██─██░░██████░░██───██░░██───██░░██████░░██─
─██░░██──██░░██─██░░██──██░░██─██░░██──██████─██░░░░░░░░░░██─────██░░██─────██░░██──██░░██─██░░░░░░░░░░██───██░░██───██░░░░░░░░░░██─
─██░░██──██░░██─██░░██──██░░██─██░░██──██░░██─██░░██████████─────██░░██─────██░░██──██░░██─██░░██████████───██░░██───██░░██████░░██─
─██░░██──██░░██─██░░██──██░░██─██░░██──██░░██─██░░██─────────────██░░██─────██░░██──██░░██─██░░██───────────██░░██───██░░██──██░░██─
─██░░████░░░░██─██░░██████░░██─██░░██████░░██─██░░██████████─────██░░██─────██░░██████░░██─██░░██─────────████░░████─██░░██──██░░██─
─██░░░░░░░░████─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─────██░░██─────██░░░░░░░░░░██─██░░██─────────██░░░░░░██─██░░██──██░░██─
─████████████───██████████████─██████████████─██████████████─────██████─────██████████████─██████─────────██████████─██████──██████─
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.0;

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() external virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function startTrading() external virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

    event 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 burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


contract DOGETOPIA is Context, IERC20, Ownable, Pausable {
    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 _whiteList;

    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "DOGETOPIA";
    string private _symbol = "DOGETOPIA";
    uint8 private _decimals = 9;
    
     //Buy Fees
    uint256 public _buyTaxFee = 0;
    uint256 public _buyLiquidityFee = 1;
    uint256 public _buyMarketingFee = 7;
    uint256 public _buyBurnFee = 1;

    //Sell Fees
    uint256 public _sellTaxFee = 90;
    uint256 public _sellMarketingFee = 7;
    uint256 public _sellLiquidityFee = 1;
    uint256 public _sellBurnFee = 1;

    // Fees (Current)
    uint256 private _taxFee;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _burnFee;
    address payable public marketingWallet = payable(0xeF0AC8f1a8714C9BE2497241600Ca69A40245114);

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public numTokensSellToAddToLiquidity = 1000000000 * 10**9; //0.1%
    uint256 public _maxTxAmount = 50000000000 * 10**9;
    uint256 public maxBuyTransactionAmount = 50000000000 * 10**9;  //5%
    uint256 public maxWalletToken = 50000000000 * 10**9; //5%
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor() {
        _rOwned[_msgSender()] = _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
        _whiteList[owner()] = true;
        _whiteList[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

    
     //to recieve ETH from uniswapV2Router when swaping
    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 && _marketingFee==0 && _burnFee==0) return;

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

    
    function isWhiteListed(address account) public view returns(bool) {
        return _whiteList[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
    ) whenNotPaused() private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            to != uniswapV2Pair
        ) {

            uint256 contractBalanceRecepient = balanceOf(to);
            require(
                contractBalanceRecepient + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
            
        }
        
        
        if(from == uniswapV2Pair &&  !isWhiteListed(to)){
            require(amount <= maxBuyTransactionAmount, "Buy transfer amount exceeds the maxBuyTransactionAmount.");
        }

        // 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));        
        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(isWhiteListed(from) || isWhiteListed(to)){
            takeFee = false;
        }

        // Set buy fees
        if(from == uniswapV2Pair || from.isContract()) {
            _taxFee = _buyTaxFee;
            _marketingFee = _buyMarketingFee;
            _liquidityFee = _buyLiquidityFee;
            _burnFee = _buyBurnFee;
        }
        
        // Set sell fees
        if(to == uniswapV2Pair || to.isContract()) {
            _taxFee = _sellTaxFee;
            _marketingFee = _sellMarketingFee;
            _liquidityFee = _sellLiquidityFee; 
            _burnFee = _sellBurnFee;           
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 combineFees = _liquidityFee.add(_marketingFee); // marketing + liquidity fees
        uint256 tokensForLiquidity = contractTokenBalance.mul(_liquidityFee).div(combineFees); 
        
        uint256 tokensForMarketing = contractTokenBalance.sub(tokensForLiquidity);
        
        // split the Liquidity tokens balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.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);
        
        uint256 contractBalance = address(this).balance;
        swapTokensForEth(tokensForMarketing);
        uint256 transferredBalance = address(this).balance.sub(contractBalance);
        
        //Send to Marketing address
        transferToAddressETH(marketingWallet, transferredBalance);
    }

    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) private 
    {
        if(_whiteList[sender] || _whiteList[recipient])
        {   
           removeAllFee(); 
        }
        else  
        {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

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



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


    function takeBurn(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private
    returns (uint256, uint256)
    {
        if(_burnFee==0) {  return(tTransferAmount, rTransferAmount); }
        uint256 tBurn = tAmount.div(100).mul(_burnFee);
        uint256 rBurn = tBurn.mul(_getRate());
        rTransferAmount = rTransferAmount.sub(rBurn);
        tTransferAmount = tTransferAmount.sub(tBurn);
        _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn);
        emit Transfer(sender, deadAddress, tBurn);
        return(tTransferAmount, rTransferAmount);
    }


    function takeMarketing(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private
    returns (uint256, uint256)
    {
        if(_marketingFee==0) {  return(tTransferAmount, rTransferAmount); }
        uint256 tMarketing = tAmount.div(100).mul(_marketingFee);
        uint256 rMarketing = tMarketing.mul(_getRate());
        rTransferAmount = rTransferAmount.sub(rMarketing);
        tTransferAmount = tTransferAmount.sub(tMarketing);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        emit Transfer(sender, address(this), tMarketing);
        return(tTransferAmount, rTransferAmount); 
    }


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

    function excludeFromFee(address account) public onlyOwner {
        _whiteList[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _whiteList[account] = false;
    }
    
    function setMarketingWallet(address payable newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }
    
   
    function setBuyFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _buyTaxFee = taxFee;
        _buyMarketingFee = MarketingFee;
        _buyLiquidityFee = liquidityFee;
        _buyBurnFee = burnFee;
    }

    function setSellFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _sellTaxFee = taxFee;
        _sellMarketingFee = MarketingFee;
        _sellLiquidityFee = liquidityFee;
        _sellBurnFee = burnFee;
    }
    
    function setNumTokensSellToAddToLiquidity(uint256 newAmt) external onlyOwner() {
        numTokensSellToAddToLiquidity = newAmt*10**_decimals;
    }
    
    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount > 0, "Cannot set transaction amount as zero");
        _maxTxAmount = maxTxAmount * 10**_decimals;
    }

    function setMaxBuytx(uint256 _newAmount) public onlyOwner {
        maxBuyTransactionAmount = _newAmount * 10**_decimals;
    }

    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
  	    maxWalletToken = _maxToken * 10**_decimals;
  	}
    
    //New router address?
    //No problem, just change it here!
    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPancakeRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this), _newPancakeRouter.WETH());
        uniswapV2Router = _newPancakeRouter;
    }
    
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
}

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":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTaxFee","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":"_pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhiteListed","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":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBuyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxBuytx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setSellFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b03191661dead179055683635c9adc5dea00000600b8190556200003590600019620005b3565b620000439060001962000552565b600c5560408051808201909152600980825268444f4745544f50494160b81b60209092019182526200007891600e9162000459565b5060408051808201909152600980825268444f4745544f50494160b81b6020909201918252620000ab91600f9162000459565b506010805460ff19166009179055600060115560016012819055600760138190556014829055605a6015556016556017819055601855601d80546001600160a01b03191673ef0ac8f1a8714c9be2497241600ca69a40245114179055601f805460ff60a81b1916600160a81b179055670de0b6b3a76400006020556802b5e3af16b1880000602181905560228190556023553480156200014a57600080fd5b5060006200015762000446565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506003805460ff19169055600c5460046000620001bc62000446565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023357600080fd5b505afa15801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e9190620004ff565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b757600080fd5b505afa158015620002cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f29190620004ff565b6040518363ffffffff1660e01b8152600401620003119291906200052f565b602060405180830381600087803b1580156200032c57600080fd5b505af115801562000341573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003679190620004ff565b601f80546001600160a01b03199081166001600160a01b0393841617909155601e8054909116918316919091179055600160076000620003a66200044a565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526007909252902080549091166001179055620003f062000446565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b5460405162000437919062000549565b60405180910390a350620005d4565b3390565b6000546001600160a01b031690565b828054620004679062000576565b90600052602060002090601f0160209004810192826200048b5760008555620004d6565b82601f10620004a657805160ff1916838001178555620004d6565b82800160010185558215620004d6579182015b82811115620004d6578251825591602001919060010190620004b9565b50620004e4929150620004e8565b5090565b5b80821115620004e45760008155600101620004e9565b60006020828403121562000511578081fd5b81516001600160a01b038116811462000528578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b90815260200190565b6000828210156200057157634e487b7160e01b81526011600452602481fd5b500390565b6002810460018216806200058b57607f821691505b60208210811415620005ad57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005cf57634e487b7160e01b81526012600452602481fd5b500690565b61374380620005e46000396000f3fe60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201b0e7781fe06add9a58c41f49288a8e4eb9691217d8f0f2682d856716a44d96b64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201b0e7781fe06add9a58c41f49288a8e4eb9691217d8f0f2682d856716a44d96b64736f6c63430008000033

Deployed Bytecode Sourcemap

32591:23268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35580:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36492:161;;;;;;;;;;-1:-1:-1;36492:161:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37613:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34058:42::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33581:30::-;;;;;;;;;;;;;:::i;35857:95::-;;;;;;;;;;;;;:::i;33637:31::-;;;;;;;;;;;;;:::i;36661:313::-;;;;;;;;;;-1:-1:-1;36661:313:0;;;;;:::i;:::-;;:::i;32955:71::-;;;;;;;;;;;;;:::i;15295:124::-;;;;;;;;;;;;;:::i;:::-;;38537:253;;;;;;;;;;-1:-1:-1;38537:253:0;;;;;:::i;:::-;;:::i;35766:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15036:118::-;;;;;;;;;;;;;:::i;39139:479::-;;;;;;;;;;-1:-1:-1;39139:479:0;;;;;:::i;:::-;;:::i;36982:218::-;;;;;;;;;;-1:-1:-1;36982:218:0;;;;;:::i;:::-;;:::i;37708:377::-;;;;;;;;;;-1:-1:-1;37708:377:0;;;;;:::i;:::-;;:::i;55207:322::-;;;;;;;;;;-1:-1:-1;55207:322:0;;;;;:::i;:::-;;:::i;53545:103::-;;;;;;;;;;-1:-1:-1;53545:103:0;;;;;:::i;:::-;;:::i;38093:436::-;;;;;;;;;;-1:-1:-1;38093:436:0;;;;;:::i;:::-;;:::i;34107:29::-;;;;;;;;;;;;;:::i;34177:40::-;;;;;;;;;;;;;:::i;38798:333::-;;;;;;;;;;-1:-1:-1;38798:333:0;;;;;:::i;:::-;;:::i;34361:60::-;;;;;;;;;;;;;:::i;14236:86::-;;;;;;;;;;;;;:::i;53774:122::-;;;;;;;;;;-1:-1:-1;53774:122:0;;;;;:::i;:::-;;:::i;43454:111::-;;;;;;;;;;-1:-1:-1;43454:111:0;;;;;:::i;:::-;;:::i;35960:198::-;;;;;;;;;;-1:-1:-1;35960:198:0;;;;;:::i;:::-;;:::i;23297:148::-;;;;;;;;;;;;;:::i;33957:92::-;;;;;;;;;;;;;:::i;33761:31::-;;;;;;;;;;;;;:::i;34305:49::-;;;;;;;;;;;;;:::i;33718:36::-;;;;;;;;;;;;;:::i;37485:120::-;;;;;;;;;;-1:-1:-1;37485:120:0;;;;;:::i;:::-;;:::i;22654:79::-;;;;;;;;;;;;;:::i;55004:124::-;;;;;;;;;;-1:-1:-1;55004:124:0;;;;;:::i;:::-;;:::i;35671:87::-;;;;;;;;;;;;;:::i;54199:283::-;;;;;;;;;;-1:-1:-1;54199:283:0;;;;;:::i;:::-;;:::i;37208:269::-;;;;;;;;;;-1:-1:-1;37208:269:0;;;;;:::i;:::-;;:::i;54867:129::-;;;;;;;;;;-1:-1:-1;54867:129:0;;;;;:::i;:::-;;:::i;24319:305::-;;;;;;;;;;;;;:::i;36166:167::-;;;;;;;;;;-1:-1:-1;36166:167:0;;;;;:::i;:::-;;:::i;53913:278::-;;;;;;;;;;-1:-1:-1;53913:278:0;;;;;:::i;:::-;;:::i;23852:89::-;;;;;;;;;;;;;:::i;55541:171::-;;;;;;;;;;-1:-1:-1;55541:171:0;;;;;:::i;:::-;;:::i;33539:35::-;;;;;;;;;;;;;:::i;33675:36::-;;;;;;;;;;;;;:::i;34226:65::-;;;;;;;;;;;;;:::i;33497:35::-;;;;;;;;;;;;;:::i;24017:226::-;;;;;;;;;;-1:-1:-1;24017:226:0;;;;;:::i;:::-;;:::i;36341:143::-;;;;;;;;;;-1:-1:-1;36341:143:0;;;;;:::i;:::-;;:::i;34434:51::-;;;;;;;;;;;;;:::i;53660:102::-;;;;;;;;;;-1:-1:-1;53660:102:0;;;;;:::i;:::-;;:::i;54656:203::-;;;;;;;;;;-1:-1:-1;54656:203:0;;;;;:::i;:::-;;:::i;33461:29::-;;;;;;;;;;;;;:::i;54494:150::-;;;;;;;;;;-1:-1:-1;54494:150:0;;;;;:::i;:::-;;:::i;23600:244::-;;;;;;;;;;-1:-1:-1;23600:244:0;;;;;:::i;:::-;;:::i;35580:83::-;35617:13;35650:5;35643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35580:83;:::o;36492:161::-;36567:4;36584:39;36593:12;:10;:12::i;:::-;36607:7;36616:6;36584:8;:39::i;:::-;-1:-1:-1;36641:4:0;36492:161;;;;;:::o;37613:87::-;37682:10;;37613:87;:::o;34058:42::-;;;-1:-1:-1;;;;;34058:42:0;;:::o;33581:30::-;;;;:::o;35857:95::-;35937:7;;35857:95;:::o;33637:31::-;;;;:::o;36661:313::-;36759:4;36776:36;36786:6;36794:9;36805:6;36776:9;:36::i;:::-;36823:121;36832:6;36840:12;:10;:12::i;:::-;36854:89;36892:6;36854:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36854:19:0;;;;;;:11;:19;;;;;;36874:12;:10;:12::i;:::-;-1:-1:-1;;;;;36854:33:0;;;;;;;;;;;;-1:-1:-1;36854:33:0;;;:89;:37;:89::i;:::-;36823:8;:121::i;:::-;-1:-1:-1;36962:4:0;36661:313;;;;;;:::o;32955:71::-;;;-1:-1:-1;;;;;32955:71:0;;:::o;15295:124::-;14839:8;:6;:8::i;:::-;14831:41;;;;-1:-1:-1;;;14831:41:0;;;;;;;:::i;:::-;;;;;;;;;15358:7:::1;:15:::0;;-1:-1:-1;;15358:15:0::1;::::0;;15389:22:::1;15398:12;:10;:12::i;:::-;15389:22;;;;;;:::i;:::-;;;;;;;;15295:124::o:0;38537:253::-;38603:7;38642;;38631;:18;;38623:73;;;;-1:-1:-1;;;38623:73:0;;;;;;;:::i;:::-;38707:19;38730:10;:8;:10::i;:::-;38707:33;-1:-1:-1;38758:24:0;:7;38707:33;38758:11;:24::i;:::-;38751:31;;;38537:253;;;;:::o;35766:83::-;35832:9;;;;35766:83;:::o;15036:118::-;14562:8;:6;:8::i;:::-;14561:9;14553:38;;;;-1:-1:-1;;;14553:38:0;;;;;;;:::i;:::-;15096:7:::1;:14:::0;;-1:-1:-1;;15096:14:0::1;15106:4;15096:14;::::0;;15126:20:::1;15133:12;:10;:12::i;39139:479::-:0;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39221:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;39213:60;;;;-1:-1:-1::0;;;39213:60:0::1;;;;;;;:::i;:::-;39289:9;39284:327;39308:9;:16:::0;39304:20;::::1;39284:327;;;39366:7;-1:-1:-1::0;;;;;39350:23:0::1;:9;39360:1;39350:12;;;;;;-1:-1:-1::0;;;39350:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;39350:12:0::1;:23;39346:254;;;39409:9;39419:16:::0;;:20:::1;::::0;39438:1:::1;::::0;39419:20:::1;:::i;:::-;39409:31;;;;;;-1:-1:-1::0;;;39409:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;39394:9:::1;:12:::0;;-1:-1:-1;;;;;39409:31:0;;::::1;::::0;39404:1;;39394:12;::::1;;;-1:-1:-1::0;;;39394:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;39394:46:0::1;-1:-1:-1::0;;;;;39394:46:0;;::::1;;::::0;;39459:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;39498:11:::1;:20:::0;;;;:28;;-1:-1:-1;;39498:28:0::1;::::0;;39545:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;39545:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;39545:15:0;;;;;-1:-1:-1;;;;;;39545:15:0::1;::::0;;;;;39579:5:::1;;39346:254;39326:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39284:327;;;;39139:479:::0;:::o;36982:218::-;37070:4;37087:83;37096:12;:10;:12::i;:::-;37110:7;37119:50;37158:10;37119:11;:25;37131:12;:10;:12::i;:::-;-1:-1:-1;;;;;37119:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37119:25:0;;;:34;;;;;;;;;;;:38;:50::i;37708:377::-;37760:14;37777:12;:10;:12::i;:::-;-1:-1:-1;;;;;37809:19:0;;;;;;:11;:19;;;;;;37760:29;;-1:-1:-1;37809:19:0;;37808:20;37800:77;;;;-1:-1:-1;;;37800:77:0;;;;;;;:::i;:::-;37889:15;37913:19;37924:7;37913:10;:19::i;:::-;-1:-1:-1;;;;;;;;;37961:15:0;;;;;;:7;:15;;;;;;37888:44;;-1:-1:-1;37961:28:0;;:15;-1:-1:-1;37888:44:0;37961:19;:28::i;:::-;-1:-1:-1;;;;;37943:15:0;;;;;;:7;:15;;;;;:46;38010:7;;:20;;38022:7;38010:11;:20::i;:::-;38000:7;:30;38054:10;;:23;;38069:7;38054:14;:23::i;:::-;38041:10;:36;-1:-1:-1;;;37708:377:0:o;55207:322::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;55282:36:::1;55340:9;55282:68;;55395:17;-1:-1:-1::0;;;;;55395:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55377:57:0::1;;55443:4;55450:17;-1:-1:-1::0;;;;;55450:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55377:98;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55361:13;:114:::0;;-1:-1:-1;;;;;55361:114:0;;::::1;-1:-1:-1::0;;;;;;55361:114:0;;::::1;;::::0;;;55486:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;55207:322:0:o;53545:103::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53614:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;53614:26:0::1;53636:4;53614:26;::::0;;53545:103::o;38093:436::-;38183:7;38222;;38211;:18;;38203:62;;;;-1:-1:-1;;;38203:62:0;;;;;;;:::i;:::-;38281:17;38276:246;;38316:15;38340:19;38351:7;38340:10;:19::i;:::-;-1:-1:-1;38315:44:0;;-1:-1:-1;38374:14:0;;-1:-1:-1;;;;;38374:14:0;38276:246;38423:23;38454:19;38465:7;38454:10;:19::i;:::-;-1:-1:-1;38421:52:0;;-1:-1:-1;38488:22:0;;-1:-1:-1;;;;;38488:22:0;34107:29;;;-1:-1:-1;;;;;34107:29:0;;:::o;34177:40::-;;;-1:-1:-1;;;34177:40:0;;;;;:::o;38798:333::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38881:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38880:21;38872:61;;;;-1:-1:-1::0;;;38872:61:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38947:16:0;::::1;38966:1;38947:16:::0;;;:7:::1;:16;::::0;;;;;:20;38944:108:::1;;-1:-1:-1::0;;;;;39023:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;39003:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;38984:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;38944:108:::1;-1:-1:-1::0;;;;;39062:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;39062:27:0::1;39085:4;39062:27:::0;;::::1;::::0;;;39100:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;39100:23:0::1;::::0;;::::1;::::0;;38798:333::o;34361:60::-;;;;:::o;14236:86::-;14307:7;;;;14236:86;:::o;53774:122::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;53861:15:::1;:27:::0;;-1:-1:-1;;;;;;53861:27:0::1;-1:-1:-1::0;;;;;53861:27:0;;;::::1;::::0;;;::::1;::::0;;53774:122::o;43454:111::-;-1:-1:-1;;;;;43538:19:0;43514:4;43538:19;;;:10;:19;;;;;;;;;43454:111::o;35960:198::-;-1:-1:-1;;;;;36050:20:0;;36026:7;36050:20;;;:11;:20;;;;;;;;36046:49;;;-1:-1:-1;;;;;;36079:16:0;;;;;;:7;:16;;;;;;36072:23;;36046:49;-1:-1:-1;;;;;36133:16:0;;;;;;:7;:16;;;;;;36113:37;;:19;:37::i;23297:148::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;23404:1:::1;23388:6:::0;;23367:40:::1;::::0;-1:-1:-1;;;;;23388:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;23367:40:0;23404:1;;23367:40:::1;23435:1;23418:19:::0;;-1:-1:-1;;;;;;23418:19:0::1;::::0;;23297:148::o;33957:92::-;;;-1:-1:-1;;;;;33957:92:0;;:::o;33761:31::-;;;;:::o;34305:49::-;;;;:::o;33718:36::-;;;;:::o;37485:120::-;-1:-1:-1;;;;;37577:20:0;37553:4;37577:20;;;:11;:20;;;;;;;;;37485:120::o;22654:79::-;22692:7;22719:6;-1:-1:-1;;;;;22719:6:0;22654:79;:::o;55004:124::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;55112:9:::1;::::0;55108:13:::1;::::0;55112:9:::1;;55108:2;:13;:::i;:::-;55096:25;::::0;:9;:25:::1;:::i;:::-;55079:14;:42:::0;-1:-1:-1;55004:124:0:o;35671:87::-;35710:13;35743:7;35736:14;;;;;:::i;54199:283::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;54335:11:::1;:20:::0;;;;54366:17:::1;:32:::0;;;;54409:17:::1;:32:::0;54452:12:::1;:22:::0;54199:283::o;37208:269::-;37301:4;37318:129;37327:12;:10;:12::i;:::-;37341:7;37350:96;37389:15;37350:96;;;;;;;;;;;;;;;;;:11;:25;37362:12;:10;:12::i;:::-;-1:-1:-1;;;;;37350:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37350:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;54867:129::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;54979:9:::1;::::0;54975:13:::1;::::0;54979:9:::1;;54975:2;:13;:::i;:::-;54962:26;::::0;:10;:26:::1;:::i;:::-;54936:23;:52:::0;-1:-1:-1;54867:129:0:o;24319:305::-;24371:14;;-1:-1:-1;;;;;24371:14:0;24389:10;24371:28;24363:76;;;;-1:-1:-1;;;24363:76:0;;;;;;;:::i;:::-;24476:9;;24458:15;:27;24450:72;;;;-1:-1:-1;;;24450:72:0;;;;;;;:::i;:::-;24567:14;;;24559:6;;24538:44;;-1:-1:-1;;;;;24567:14:0;;;;24559:6;;;;-1:-1:-1;;;;;;;;;;;24538:44:0;;24602:14;;;24593:23;;-1:-1:-1;;;;;;24593:23:0;-1:-1:-1;;;;;24602:14:0;;;24593:23;;;;;;24319:305::o;36166:167::-;36244:4;36261:42;36271:12;:10;:12::i;:::-;36285:9;36296:6;36261:9;:42::i;53913:278::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;54048:10:::1;:19:::0;;;;54078:16:::1;:31:::0;;;;54120:16:::1;:31:::0;54162:11:::1;:21:::0;53913:278::o;23852:89::-;23924:9;;23852:89;:::o;55541:171::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;55618:21:::1;:32:::0;;-1:-1:-1;;;;55618:32:0::1;-1:-1:-1::0;;;55618:32:0;::::1;;;;::::0;;55666:38:::1;::::0;::::1;::::0;::::1;::::0;55618:32;;55666:38:::1;:::i;:::-;;;;;;;;55541:171:::0;:::o;33539:35::-;;;;:::o;33675:36::-;;;;:::o;34226:65::-;;;;:::o;33497:35::-;;;;:::o;24017:226::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;24098:6:::1;::::0;;;24081:23;;-1:-1:-1;;;;;;24081:23:0;;::::1;-1:-1:-1::0;;;;;24098:6:0;::::1;24081:23;::::0;;;24115:19:::1;::::0;;24157:22:::1;24175:4:::0;24157:15:::1;:22;:::i;:::-;24145:9;:34:::0;24232:1:::1;24216:6:::0;;24195:40:::1;::::0;-1:-1:-1;;;;;24216:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;24195:40:0;24232:1;;24195:40:::1;24017:226:::0;:::o;36341:143::-;-1:-1:-1;;;;;36449:18:0;;;36422:7;36449:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36341:143::o;34434:51::-;;;;:::o;53660:102::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53727:19:0::1;53749:5;53727:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;53727:27:0::1;::::0;;53660:102::o;54656:203::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;54755:1:::1;54741:11;:15;54733:65;;;;-1:-1:-1::0;;;54733:65:0::1;;;;;;;:::i;:::-;54842:9;::::0;54838:13:::1;::::0;54842:9:::1;;54838:2;:13;:::i;:::-;54824:27;::::0;:11;:27:::1;:::i;:::-;54809:12;:42:::0;-1:-1:-1;54656:203:0:o;33461:29::-;;;;:::o;54494:150::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;54627:9:::1;::::0;54623:13:::1;::::0;54627:9:::1;;54623:2;:13;:::i;:::-;54616:20;::::0;:6;:20:::1;:::i;:::-;54584:29;:52:::0;-1:-1:-1;54494:150:0:o;23600:244::-;22876:12;:10;:12::i;:::-;22866:6;;-1:-1:-1;;;;;22866:6:0;;;:22;;;22858:67;;;;-1:-1:-1;;;22858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23689:22:0;::::1;23681:73;;;;-1:-1:-1::0;;;23681:73:0::1;;;;;;;:::i;:::-;23791:6;::::0;;23770:38:::1;::::0;-1:-1:-1;;;;;23770:38:0;;::::1;::::0;23791:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;23770:38:0;::::1;23819:6;:17:::0;;-1:-1:-1;;;;;;23819:17:0::1;-1:-1:-1::0;;;;;23819:17:0;;;::::1;::::0;;;::::1;::::0;;23600:244::o;13337:115::-;13433:10;13337:115;:::o;43573:337::-;-1:-1:-1;;;;;43666:19:0;;43658:68;;;;-1:-1:-1;;;43658:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43745:21:0;;43737:68;;;;-1:-1:-1;;;43737:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43818:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;43870:32;;;;;43848:6;;43870:32;:::i;:::-;;;;;;;;43573:337;;;:::o;43918:2666::-;14562:8;:6;:8::i;:::-;14561:9;14553:38;;;;-1:-1:-1;;;14553:38:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44056:18:0;::::1;44048:68;;;;-1:-1:-1::0;;;44048:68:0::1;;;;;;;:::i;:::-;44144:1;44135:6;:10;44127:64;;;;-1:-1:-1::0;;;44127:64:0::1;;;;;;;:::i;:::-;44240:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;44232:15:0::1;:4;-1:-1:-1::0;;;;;44232:15:0::1;;;:45;;;;;44270:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;44264:13:0::1;:2;-1:-1:-1::0;;;;;44264:13:0::1;;;44232:45;:78;;;;-1:-1:-1::0;;;;;;44294:16:0;::::1;::::0;::::1;44232:78;:116;;;;-1:-1:-1::0;;;;;;44327:21:0;::::1;44341:6;44327:21;;44232:116;:152;;;;-1:-1:-1::0;44371:13:0::1;::::0;-1:-1:-1;;;;;44365:19:0;;::::1;44371:13:::0;::::1;44365:19;;44232:152;44214:437;;;44413:32;44448:13;44458:2;44448:9;:13::i;:::-;44539:14;::::0;44413:48;;-1:-1:-1;44502:33:0::1;44529:6:::0;44413:48;44502:33:::1;:::i;:::-;:51;;44476:149;;;;-1:-1:-1::0;;;44476:149:0::1;;;;;;;:::i;:::-;44214:437;;44692:13;::::0;-1:-1:-1;;;;;44684:21:0;;::::1;44692:13:::0;::::1;44684:21;:44:::0;::::1;;;;44711:17;44725:2;44711:13;:17::i;:::-;44710:18;44684:44;44681:177;;;44762:23;;44752:6;:33;;44744:102;;;;-1:-1:-1::0;;;44744:102:0::1;;;;;;;:::i;:::-;45152:28;45183:24;45201:4;45183:9;:24::i;:::-;45277:29;::::0;45152:55;;-1:-1:-1;45253:53:0;::::1;::::0;::::1;::::0;;;45335::::1;;-1:-1:-1::0;45372:16:0::1;::::0;-1:-1:-1;;;45372:16:0;::::1;;;45371:17;45335:53;:91;;;;-1:-1:-1::0;45413:13:0::1;::::0;-1:-1:-1;;;;;45405:21:0;;::::1;45413:13:::0;::::1;45405:21;;45335:91;:129;;;;-1:-1:-1::0;45443:21:0::1;::::0;-1:-1:-1;;;45443:21:0;::::1;;;45335:129;45317:318;;;45514:29;;45491:52;;45587:36;45602:20;45587:14;:36::i;:::-;45725:4;45832:19;45846:4:::0;45832:13:::1;:19::i;:::-;:40;;;;45855:17;45869:2;45855:13;:17::i;:::-;45829:86;;;-1:-1:-1::0;45898:5:0::1;45829:86;45963:13;::::0;-1:-1:-1;;;;;45955:21:0;;::::1;45963:13:::0;::::1;45955:21;::::0;:42:::1;;;45980:17;:4;-1:-1:-1::0;;;;;45980:15:0::1;;:17::i;:::-;45952:225;;;46024:10;::::0;46014:7:::1;:20:::0;46065:16:::1;::::0;46049:13:::1;:32:::0;46112:16:::1;::::0;46096:13:::1;:32:::0;46154:11:::1;::::0;46143:8:::1;:22:::0;45952:225:::1;46232:13;::::0;-1:-1:-1;;;;;46226:19:0;;::::1;46232:13:::0;::::1;46226:19;::::0;:38:::1;;;46249:15;:2;-1:-1:-1::0;;;;;46249:13:0::1;;:15::i;:::-;46223:237;;;46291:11;::::0;46281:7:::1;:21:::0;46333:17:::1;::::0;46317:13:::1;:33:::0;46381:17:::1;::::0;46365:13:::1;:33:::0;46425:12:::1;::::0;46414:8:::1;:23:::0;46223:237:::1;46546:30;46561:4;46566:2;46569:6;46546:14;:30::i;:::-;14602:1;;;43918:2666:::0;;;:::o;9747:192::-;9833:7;9869:12;9861:6;;;;9853:29;;;;-1:-1:-1;;;9853:29:0;;;;;;;;:::i;:::-;-1:-1:-1;9893:9:0;9905:5;9909:1;9905;:5;:::i;:::-;9893:17;9747:192;-1:-1:-1;;;;;9747:192:0:o;41739:163::-;41780:7;41801:15;41818;41837:19;:17;:19::i;:::-;41800:56;;-1:-1:-1;41800:56:0;-1:-1:-1;41874:20:0;41800:56;;41874:11;:20::i;:::-;41867:27;;;;41739:163;:::o;11145:132::-;11203:7;11230:39;11234:1;11237;11230:39;;;;;;;;;;;;;;;;;:3;:39::i;8844:181::-;8902:7;;8934:5;8938:1;8934;:5;:::i;:::-;8922:17;;8963:1;8958;:6;;8950:46;;;;-1:-1:-1;;;8950:46:0;;;;;;;:::i;40537:419::-;40596:7;40605;40614;40623;40632;40641;40662:23;40687:12;40701:18;40723:20;40735:7;40723:11;:20::i;:::-;40661:82;;;;;;40755:15;40772:23;40797:12;40813:50;40825:7;40834:4;40840:10;40852;:8;:10::i;:::-;40813:11;:50::i;:::-;40754:109;;;;-1:-1:-1;40754:109:0;;-1:-1:-1;40914:15:0;;-1:-1:-1;40931:4:0;;-1:-1:-1;40937:10:0;;-1:-1:-1;40537:419:0;;-1:-1:-1;;;;;40537:419:0:o;9308:136::-;9366:7;9393:43;9397:1;9400;9393:43;;;;;;;;;;;;;;;;;:3;:43::i;46592:1597::-;34797:16;:23;;-1:-1:-1;;;;34797:23:0;-1:-1:-1;;;34797:23:0;;;46717:13:::1;::::0;46699::::1;::::0;34797:23;;46699:32:::1;::::0;:13;:17:::1;:32::i;:::-;46677:54;;46772:26;46801:56;46845:11;46801:39;46826:13;;46801:20;:24;;:39;;;;:::i;:::-;:43:::0;::::1;:56::i;:::-;46772:85:::0;-1:-1:-1;46879:26:0::1;46908:44;:20:::0;46772:85;46908:24:::1;:44::i;:::-;46879:73:::0;-1:-1:-1;47032:12:0::1;47047:25;:18:::0;47070:1:::1;47047:22;:25::i;:::-;47032:40:::0;-1:-1:-1;47083:17:0::1;47103:28;:18:::0;47032:40;47103:22:::1;:28::i;:::-;47083:48:::0;-1:-1:-1;47434:21:0::1;47500:22;47517:4:::0;47500:16:::1;:22::i;:::-;47653:18;47674:41;:21;47700:14:::0;47674:25:::1;:41::i;:::-;47653:62;;47765:35;47778:9;47789:10;47765:12;:35::i;:::-;47826:43;47841:4;47847:10;47859:9;47826:43;;;;;;;;:::i;:::-;;;;;;;;47916:21;47948:36;47965:18:::0;47948:16:::1;:36::i;:::-;47995:26;48024:42;:21;48050:15:::0;48024:25:::1;:42::i;:::-;48145:15;::::0;47995:71;;-1:-1:-1;48124:57:0::1;::::0;-1:-1:-1;;;;;48145:15:0::1;47995:71:::0;48124:20:::1;:57::i;:::-;-1:-1:-1::0;;34843:16:0;:24;;-1:-1:-1;;;;34843:24:0;;;-1:-1:-1;;;;;;;;46592:1597:0:o;16109:619::-;16169:4;16637:20;;16480:66;16677:23;;;;;;:42;;-1:-1:-1;16704:15:0;;;16677:42;16669:51;16109:619;-1:-1:-1;;;;16109:619:0:o;49388:945::-;-1:-1:-1;;;;;49491:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;49513:21:0;;;;;;:10;:21;;;;;;;;49491:43;49488:229;;;49562:14;:12;:14::i;:::-;49488:229;;;49648:12;;49638:6;:22;;49630:75;;;;-1:-1:-1;;;49630:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49733:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49757:22:0;;;;;;:11;:22;;;;;;;;49756:23;49733:46;49729:597;;;49796:48;49818:6;49826:9;49837:6;49796:21;:48::i;:::-;49729:597;;;-1:-1:-1;;;;;49867:19:0;;;;;;:11;:19;;;;;;;;49866:20;:46;;;;-1:-1:-1;;;;;;49890:22:0;;;;;;:11;:22;;;;;;;;49866:46;49862:464;;;49929:46;49949:6;49957:9;49968:6;49929:19;:46::i;49862:464::-;-1:-1:-1;;;;;49998:19:0;;;;;;:11;:19;;;;;;;;49997:20;:47;;;;-1:-1:-1;;;;;;50022:22:0;;;;;;:11;:22;;;;;;;;50021:23;49997:47;49993:333;;;50061:44;50079:6;50087:9;50098:6;50061:17;:44::i;49993:333::-;-1:-1:-1;;;;;50127:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;50150:22:0;;;;;;:11;:22;;;;;;;;50127:45;50123:203;;;50189:48;50211:6;50219:9;50230:6;50189:21;:48::i;50123:203::-;50270:44;50288:6;50296:9;50307:6;50270:17;:44::i;:::-;49388:945;;;:::o;41910:561::-;42007:7;;42043;;41960;;;;;42067:289;42091:9;:16;42087:20;;42067:289;;;42157:7;42133;:21;42141:9;42151:1;42141:12;;;;;;-1:-1:-1;;;42141:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42141:12:0;42133:21;;;;;;;;;;;;;:31;;:66;;;42192:7;42168;:21;42176:9;42186:1;42176:12;;;;;;-1:-1:-1;;;42176:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42176:12:0;42168:21;;;;;;;;;;;;;:31;42133:66;42129:97;;;42209:7;;42218;;42201:25;;;;;;;;;42129:97;42251:34;42263:7;:21;42271:9;42281:1;42271:12;;;;;;-1:-1:-1;;;42271:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42271:12:0;42263:21;;;;;;;;;;;;;42251:7;;:11;:34::i;:::-;42241:44;;42310:34;42322:7;:21;42330:9;42340:1;42330:12;;;;;;-1:-1:-1;;;42330:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42330:12:0;42322:21;;;;;;;;;;;;;42310:7;;:11;:34::i;:::-;42300:44;-1:-1:-1;42109:3:0;;;;:::i;:::-;;;;42067:289;;;-1:-1:-1;42392:7:0;;42380;;:20;;:11;:20::i;:::-;42370:7;:30;42366:61;;;42410:7;;42419;;42402:25;;;;;;;;42366:61;42446:7;;-1:-1:-1;42455:7:0;-1:-1:-1;41910:561:0;;;:::o;11773:278::-;11859:7;11894:12;11887:5;11879:28;;;;-1:-1:-1;;;11879:28:0;;;;;;;;:::i;:::-;-1:-1:-1;11918:9:0;11930:5;11934:1;11930;:5;:::i;40964:330::-;41024:7;41033;41042;41062:12;41077:24;41093:7;41077:15;:24::i;:::-;41062:39;;41112:18;41133:30;41155:7;41133:21;:30::i;:::-;41112:51;-1:-1:-1;41174:23:0;41200:33;41112:51;41200:17;:7;41212:4;41200:11;:17::i;:::-;:21;;:33::i;:::-;41174:59;41269:4;;-1:-1:-1;41275:10:0;;-1:-1:-1;40964:330:0;;-1:-1:-1;;;40964:330:0:o;41302:429::-;41417:7;;;;41473:24;:7;41485:11;41473;:24::i;:::-;41455:42;-1:-1:-1;41508:12:0;41523:21;:4;41532:11;41523:8;:21::i;:::-;41508:36;-1:-1:-1;41555:18:0;41576:27;:10;41591:11;41576:14;:27::i;:::-;41555:48;-1:-1:-1;41614:23:0;41640:33;41555:48;41640:17;:7;41652:4;41640:11;:17::i;:33::-;41692:7;;;;-1:-1:-1;41718:4:0;;-1:-1:-1;41302:429:0;;-1:-1:-1;;;;;;;41302:429:0:o;10198:471::-;10256:7;10501:6;10497:47;;-1:-1:-1;10531:1:0;10524:8;;10497:47;10556:9;10568:5;10572:1;10568;:5;:::i;:::-;10556:17;-1:-1:-1;10601:1:0;10592:5;10596:1;10556:17;10592:5;:::i;:::-;:10;10584:56;;;;-1:-1:-1;;;10584:56:0;;;;;;;:::i;48197:589::-;48347:16;;;48361:1;48347:16;;;;;;;;48323:21;;48347:16;;;;;;;;;;-1:-1:-1;48347:16:0;48323:40;;48392:4;48374;48379:1;48374:7;;;;;;-1:-1:-1;;;48374:7:0;;;;;;;;;-1:-1:-1;;;;;48374:23:0;;;:7;;;;;;;;;;:23;;;;48418:15;;:22;;;-1:-1:-1;;;48418:22:0;;;;:15;;;;;:20;;:22;;;;;48374:7;;48418:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48408:4;48413:1;48408:7;;;;;;-1:-1:-1;;;48408:7:0;;;;;;;;;-1:-1:-1;;;;;48408:32:0;;;:7;;;;;;;;;:32;48485:15;;48453:62;;48470:4;;48485:15;48503:11;48453:8;:62::i;:::-;48554:15;;:224;;-1:-1:-1;;;48554:224:0;;-1:-1:-1;;;;;48554:15:0;;;;:66;;:224;;48635:11;;48554:15;;48705:4;;48732;;48752:15;;48554:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48794:513;48974:15;;48942:62;;48959:4;;-1:-1:-1;;;;;48974:15:0;48992:11;48942:8;:62::i;:::-;49047:15;;-1:-1:-1;;;;;49047:15:0;:31;49086:9;49119:4;49139:11;49047:15;;49251:7;:5;:7::i;:::-;49273:15;49047:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48794:513;;:::o;55724:126::-;55816:26;;-1:-1:-1;;;;;55816:18:0;;;:26;;;;;55835:6;;55816:26;;;;55835:6;55816:18;:26;;;;;;;;;;;;;;;;;;;43190:244;43236:7;;:12;:34;;;;-1:-1:-1;43252:13:0;;:18;43236:34;:54;;;;-1:-1:-1;43274:13:0;;:16;43236:54;:69;;;;-1:-1:-1;43294:8:0;;:11;43236:69;43233:81;;;43307:7;;43233:81;43346:1;43336:7;:11;;;43358:13;:17;;;43386:13;:17;;;43414:8;:12;43190:244;:::o;52971:566::-;53074:15;53091:23;53116:12;53130:23;53155:12;53169:18;53191:19;53202:7;53191:10;:19::i;:::-;-1:-1:-1;;;;;53239:15:0;;;;;;:7;:15;;;;;;53073:137;;-1:-1:-1;53073:137:0;;-1:-1:-1;53073:137:0;;-1:-1:-1;53073:137:0;-1:-1:-1;53073:137:0;-1:-1:-1;53073:137:0;-1:-1:-1;53239:28:0;;53259:7;53239:19;:28::i;:::-;-1:-1:-1;;;;;53221:15:0;;;;;;:7;:15;;;;;;;;:46;;;;53296:7;:15;;;;:28;;53316:7;53296:19;:28::i;:::-;-1:-1:-1;;;;;53278:15:0;;;;;;;:7;:15;;;;;;:46;;;;53356:18;;;;;;;:39;;53379:15;53356:22;:39::i;:::-;-1:-1:-1;;;;;53335:18:0;;;;;;:7;:18;;;;;:60;53409:26;53424:10;53409:14;:26::i;:::-;53446:23;53458:4;53464;53446:11;:23::i;:::-;53502:9;-1:-1:-1;;;;;53485:44:0;53494:6;-1:-1:-1;;;;;53485:44:0;;53513:15;53485:44;;;;;;:::i;:::-;;;;;;;;52971:566;;;;;;;;;:::o;52377:586::-;52478:15;52495:23;52520:12;52534:23;52559:12;52573:18;52595:19;52606:7;52595:10;:19::i;:::-;-1:-1:-1;;;;;52643:15:0;;;;;;:7;:15;;;;;;52477:137;;-1:-1:-1;52477:137:0;;-1:-1:-1;52477:137:0;;-1:-1:-1;52477:137:0;-1:-1:-1;52477:137:0;-1:-1:-1;52477:137:0;-1:-1:-1;52643:28:0;;52477:137;52643:19;:28::i;:::-;-1:-1:-1;;;;;52625:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;52703:18;;;;;:7;:18;;;;;:39;;52726:15;52703:22;:39::i;:::-;-1:-1:-1;;;;;52682:18:0;;;;;;:7;:18;;;;;;;;:60;;;;52774:7;:18;;;;:39;;52797:15;52774:22;:39::i;50345:727::-;50450:15;50467:23;50492:12;50506:23;50531:12;50545:18;50567:19;50578:7;50567:10;:19::i;:::-;50449:137;;;;;;;;;;;;50634:59;50643:6;50651:15;50668;50685:7;50634:8;:59::i;:::-;50597:96;-1:-1:-1;50597:96:0;-1:-1:-1;50741:64:0;50755:6;50597:96;;50797:7;50741:13;:64::i;:::-;-1:-1:-1;;;;;50834:15:0;;;;;;:7;:15;;;;;;50704:101;;-1:-1:-1;50704:101:0;;-1:-1:-1;50834:28:0;;50854:7;50834:19;:28::i;39626:642::-;39729:15;39746:23;39771:12;39785:23;39810:12;39824:18;39846:19;39857:7;39846:10;:19::i;:::-;-1:-1:-1;;;;;39894:15:0;;;;;;:7;:15;;;;;;39728:137;;-1:-1:-1;39728:137:0;;-1:-1:-1;39728:137:0;;-1:-1:-1;39728:137:0;-1:-1:-1;39728:137:0;-1:-1:-1;39728:137:0;-1:-1:-1;39894:28:0;;39914:7;39894:19;:28::i;:::-;-1:-1:-1;;;;;39876:15:0;;;;;;:7;:15;;;;;;;;:46;;;;39951:7;:15;;;;:28;;39971:7;39951:19;:28::i;42850:154::-;42914:7;42941:55;42980:5;42941:20;42953:7;;42941;:11;;:20;;;;:::i;43012:166::-;43082:7;43109:61;43154:5;43109:26;43121:13;;43109:7;:11;;:26;;;;:::i;42483:355::-;42546:19;42569:10;:8;:10::i;:::-;42546:33;-1:-1:-1;42590:18:0;42611:27;:10;42546:33;42611:14;:27::i;:::-;42690:4;42674:22;;;;:7;:22;;;;;;42590:48;;-1:-1:-1;42674:38:0;;42590:48;42674:26;:38::i;:::-;42665:4;42649:22;;;;:7;:22;;;;;;;;:63;;;;42726:11;:26;;;;;;42723:107;;;42808:4;42792:22;;;;:7;:22;;;;;;:38;;42819:10;42792:26;:38::i;:::-;42783:4;42767:22;;;;:7;:22;;;;;:63;42483:355;;;:::o;40382:147::-;40460:7;;:17;;40472:4;40460:11;:17::i;:::-;40450:7;:27;40501:10;;:20;;40516:4;40501:14;:20::i;:::-;40488:10;:33;-1:-1:-1;;40382:147:0:o;51082:609::-;51205:7;51214;51242:8;;51252:1;51242:11;51239:62;;;-1:-1:-1;51265:15:0;;-1:-1:-1;51282:15:0;51258:40;;51239:62;51348:8;;51311:13;;51327:30;;:16;:7;51339:3;51327:11;:16::i;:::-;:20;;:30::i;:::-;51311:46;;51368:13;51384:21;51394:10;:8;:10::i;:::-;51384:5;;:9;:21::i;:::-;51368:37;-1:-1:-1;51434:26:0;:15;51368:37;51434:19;:26::i;:::-;51416:44;-1:-1:-1;51489:26:0;:15;51509:5;51489:19;:26::i;:::-;51557:11;;-1:-1:-1;;;;;51557:11:0;51549:20;;;;:7;:20;;;;;;51471:44;;-1:-1:-1;51549:31:0;;51574:5;51549:24;:31::i;:::-;51534:11;;;-1:-1:-1;;;;;51534:11:0;;;51526:20;;;;:7;:20;;;;;;;:54;;;;51613:11;;51596:36;;51613:11;;;;51596:36;;;;;;;;51626:5;;51596:36;:::i;:::-;;;;;;;;51650:15;51667;51643:40;;;;;;51082:609;;;;;;;;:::o;51701:666::-;51829:7;51838;51866:13;;51881:1;51866:16;51863:67;;;-1:-1:-1;51894:15:0;;-1:-1:-1;51911:15:0;51887:40;;51863:67;51982:13;;51940:18;;51961:35;;:16;:7;51973:3;51961:11;:16::i;:35::-;51940:56;;52007:18;52028:26;52043:10;:8;:10::i;52028:26::-;52007:47;-1:-1:-1;52083:31:0;:15;52007:47;52083:19;:31::i;:::-;52065:49;-1:-1:-1;52143:31:0;:15;52163:10;52143:19;:31::i;:::-;52226:4;52210:22;;;;:7;:22;;;;;;52125:49;;-1:-1:-1;52210:38:0;;52237:10;52210:26;:38::i;:::-;52201:4;52185:22;;;;:7;:22;;;;;;;:63;;;;52264:43;;-1:-1:-1;;;;;52264:43:0;;;;;;;52296:10;;52264:43;:::i;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;985:402::-;;;1114:2;1102:9;1093:7;1089:23;1085:32;1082:2;;;1135:6;1127;1120:22;1082:2;1179:9;1166:23;1198:33;1225:5;1198:33;:::i;:::-;1250:5;-1:-1:-1;1307:2:1;1292:18;;1279:32;1320:35;1279:32;1320:35;:::i;:::-;1374:7;1364:17;;;1072:315;;;;;:::o;1392:470::-;;;;1538:2;1526:9;1517:7;1513:23;1509:32;1506:2;;;1559:6;1551;1544:22;1506:2;1603:9;1590:23;1622:33;1649:5;1622:33;:::i;:::-;1674:5;-1:-1:-1;1731:2:1;1716:18;;1703:32;1744:35;1703:32;1744:35;:::i;:::-;1496:366;;1798:7;;-1:-1:-1;;;1852:2:1;1837:18;;;;1824:32;;1496:366::o;1867:327::-;;;1996:2;1984:9;1975:7;1971:23;1967:32;1964:2;;;2017:6;2009;2002:22;1964:2;2061:9;2048:23;2080:33;2107:5;2080:33;:::i;:::-;2132:5;2184:2;2169:18;;;;2156:32;;-1:-1:-1;;;1954:240:1:o;2199:192::-;;2308:2;2296:9;2287:7;2283:23;2279:32;2276:2;;;2329:6;2321;2314:22;2276:2;2357:28;2375:9;2357:28;:::i;2396:190::-;;2508:2;2496:9;2487:7;2483:23;2479:32;2476:2;;;2529:6;2521;2514:22;2476:2;-1:-1:-1;2557:23:1;;2466:120;-1:-1:-1;2466:120:1:o;2591:260::-;;;2717:2;2705:9;2696:7;2692:23;2688:32;2685:2;;;2738:6;2730;2723:22;2685:2;2779:9;2766:23;2756:33;;2808:37;2841:2;2830:9;2826:18;2808:37;:::i;:::-;2798:47;;2675:176;;;;;:::o;2856:316::-;;;;3013:2;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3068:9;3062:16;3052:26;;3118:2;3107:9;3103:18;3097:25;3087:35;;3162:2;3151:9;3147:18;3141:25;3131:35;;2971:201;;;;;:::o;3177:395::-;;;;;3340:3;3328:9;3319:7;3315:23;3311:33;3308:2;;;3362:6;3354;3347:22;3308:2;-1:-1:-1;;3390:23:1;;;3460:2;3445:18;;3432:32;;-1:-1:-1;3511:2:1;3496:18;;3483:32;;3562:2;3547:18;3534:32;;-1:-1:-1;3298:274:1;-1:-1:-1;3298:274:1:o;3577:203::-;-1:-1:-1;;;;;3741:32:1;;;;3723:51;;3711:2;3696:18;;3678:102::o;4225:304::-;-1:-1:-1;;;;;4455:15:1;;;4437:34;;4507:15;;4502:2;4487:18;;4480:43;4387:2;4372:18;;4354:175::o;4534:607::-;-1:-1:-1;;;;;4893:15:1;;;4875:34;;4940:2;4925:18;;4918:34;;;;4983:2;4968:18;;4961:34;;;;5026:2;5011:18;;5004:34;;;;5075:15;;;5069:3;5054:19;;5047:44;4855:3;5107:19;;5100:35;;;;4824:3;4809:19;;4791:350::o;5146:187::-;5311:14;;5304:22;5286:41;;5274:2;5259:18;;5241:92::o;5573:603::-;;5714:2;5743;5732:9;5725:21;5775:6;5769:13;5818:6;5813:2;5802:9;5798:18;5791:34;5843:4;5856:140;5870:6;5867:1;5864:13;5856:140;;;5965:14;;;5961:23;;5955:30;5931:17;;;5950:2;5927:26;5920:66;5885:10;;5856:140;;;6014:6;6011:1;6008:13;6005:2;;;6084:4;6079:2;6070:6;6059:9;6055:22;6051:31;6044:45;6005:2;-1:-1:-1;6160:2:1;6139:15;-1:-1:-1;;6135:29:1;6120:45;;;;6167:2;6116:54;;5694:482;-1:-1:-1;;;5694:482:1:o;6181:344::-;6383:2;6365:21;;;6422:2;6402:18;;;6395:30;-1:-1:-1;;;6456:2:1;6441:18;;6434:50;6516:2;6501:18;;6355:170::o;6530:401::-;6732:2;6714:21;;;6771:2;6751:18;;;6744:30;6810:34;6805:2;6790:18;;6783:62;-1:-1:-1;;;6876:2:1;6861:18;;6854:35;6921:3;6906:19;;6704:227::o;6936:406::-;7138:2;7120:21;;;7177:2;7157:18;;;7150:30;7216:34;7211:2;7196:18;;7189:62;-1:-1:-1;;;7282:2:1;7267:18;;7260:40;7332:3;7317:19;;7110:232::o;7347:402::-;7549:2;7531:21;;;7588:2;7568:18;;;7561:30;7627:34;7622:2;7607:18;;7600:62;-1:-1:-1;;;7693:2:1;7678:18;;7671:36;7739:3;7724:19;;7521:228::o;7754:398::-;7956:2;7938:21;;;7995:2;7975:18;;;7968:30;8034:34;8029:2;8014:18;;8007:62;-1:-1:-1;;;8100:2:1;8085:18;;8078:32;8142:3;8127:19;;7928:224::o;8157:351::-;8359:2;8341:21;;;8398:2;8378:18;;;8371:30;8437:29;8432:2;8417:18;;8410:57;8499:2;8484:18;;8331:177::o;8513:351::-;8715:2;8697:21;;;8754:2;8734:18;;;8727:30;8793:29;8788:2;8773:18;;8766:57;8855:2;8840:18;;8687:177::o;8869:340::-;9071:2;9053:21;;;9110:2;9090:18;;;9083:30;-1:-1:-1;;;9144:2:1;9129:18;;9122:46;9200:2;9185:18;;9043:166::o;9214:355::-;9416:2;9398:21;;;9455:2;9435:18;;;9428:30;9494:33;9489:2;9474:18;;9467:61;9560:2;9545:18;;9388:181::o;9574:404::-;9776:2;9758:21;;;9815:2;9795:18;;;9788:30;9854:34;9849:2;9834:18;;9827:62;-1:-1:-1;;;9920:2:1;9905:18;;9898:38;9968:3;9953:19;;9748:230::o;9983:400::-;10185:2;10167:21;;;10224:2;10204:18;;;10197:30;10263:34;10258:2;10243:18;;10236:62;-1:-1:-1;;;10329:2:1;10314:18;;10307:34;10373:3;10358:19;;10157:226::o;10388:397::-;10590:2;10572:21;;;10629:2;10609:18;;;10602:30;10668:34;10663:2;10648:18;;10641:62;-1:-1:-1;;;10734:2:1;10719:18;;10712:31;10775:3;10760:19;;10562:223::o;10790:356::-;10992:2;10974:21;;;11011:18;;;11004:30;11070:34;11065:2;11050:18;;11043:62;11137:2;11122:18;;10964:182::o;11151:405::-;11353:2;11335:21;;;11392:2;11372:18;;;11365:30;11431:34;11426:2;11411:18;;11404:62;-1:-1:-1;;;11497:2:1;11482:18;;11475:39;11546:3;11531:19;;11325:231::o;11561:401::-;11763:2;11745:21;;;11802:2;11782:18;;;11775:30;11841:34;11836:2;11821:18;;11814:62;-1:-1:-1;;;11907:2:1;11892:18;;11885:35;11952:3;11937:19;;11735:227::o;11967:400::-;12169:2;12151:21;;;12208:2;12188:18;;;12181:30;12247:34;12242:2;12227:18;;12220:62;-1:-1:-1;;;12313:2:1;12298:18;;12291:34;12357:3;12342:19;;12141:226::o;12372:355::-;12574:2;12556:21;;;12613:2;12593:18;;;12586:30;12652:33;12647:2;12632:18;;12625:61;12718:2;12703:18;;12546:181::o;12732:420::-;12934:2;12916:21;;;12973:2;12953:18;;;12946:30;13012:34;13007:2;12992:18;;12985:62;13083:26;13078:2;13063:18;;13056:54;13142:3;13127:19;;12906:246::o;13157:408::-;13359:2;13341:21;;;13398:2;13378:18;;;13371:30;13437:34;13432:2;13417:18;;13410:62;-1:-1:-1;;;13503:2:1;13488:18;;13481:42;13555:3;13540:19;;13331:234::o;13570:399::-;13772:2;13754:21;;;13811:2;13791:18;;;13784:30;13850:34;13845:2;13830:18;;13823:62;-1:-1:-1;;;13916:2:1;13901:18;;13894:33;13959:3;13944:19;;13744:225::o;13974:177::-;14120:25;;;14108:2;14093:18;;14075:76::o;14156:983::-;;14466:3;14455:9;14451:19;14497:6;14486:9;14479:25;14523:2;14561:6;14556:2;14545:9;14541:18;14534:34;14604:3;14599:2;14588:9;14584:18;14577:31;14628:6;14663;14657:13;14694:6;14686;14679:22;14732:3;14721:9;14717:19;14710:26;;14771:2;14763:6;14759:15;14745:29;;14792:4;14805:195;14819:6;14816:1;14813:13;14805:195;;;14884:13;;-1:-1:-1;;;;;14880:39:1;14868:52;;14975:15;;;;14940:12;;;;14916:1;14834:9;14805:195;;;-1:-1:-1;;;;;;;15056:32:1;;;;15051:2;15036:18;;15029:60;-1:-1:-1;;;15120:3:1;15105:19;15098:35;15017:3;14427:712;-1:-1:-1;;;14427:712:1:o;15144:319::-;15346:25;;;15402:2;15387:18;;15380:34;;;;15445:2;15430:18;;15423:34;15334:2;15319:18;;15301:162::o;15468:184::-;15640:4;15628:17;;;;15610:36;;15598:2;15583:18;;15565:87::o;15657:128::-;;15728:1;15724:6;15721:1;15718:13;15715:2;;;15734:18;;:::i;:::-;-1:-1:-1;15770:9:1;;15705:80::o;15790:217::-;;15856:1;15846:2;;-1:-1:-1;;;15881:31:1;;15935:4;15932:1;15925:15;15963:4;15888:1;15953:15;15846:2;-1:-1:-1;15992:9:1;;15836:171::o;16012:453::-;16108:6;16131:5;16145:314;16194:1;16231:2;16221:8;16218:16;16208:2;;16238:5;;;16208:2;16279:4;16274:3;16270:14;16264:4;16261:24;16258:2;;;16288:18;;:::i;:::-;16338:2;16328:8;16324:17;16321:2;;;16353:16;;;;16321:2;16432:17;;;;;16392:15;;16145:314;;16470:148;;16557:55;-1:-1:-1;;16598:4:1;16584:19;;16578:4;16623:922;16707:8;16697:2;;-1:-1:-1;16748:1:1;16762:5;;16697:2;16796:4;16786:2;;-1:-1:-1;16833:1:1;16847:5;;16786:2;16878:4;16896:1;16891:59;;;;16964:1;16959:183;;;;16871:271;;16891:59;16921:1;16912:10;;16935:5;;;16959:183;16996:3;16986:8;16983:17;16980:2;;;17003:18;;:::i;:::-;17059:1;17049:8;17045:16;17036:25;;17087:3;17080:5;17077:14;17074:2;;;17094:18;;:::i;:::-;17127:5;;;16871:271;;17226:2;17216:8;17213:16;17207:3;17201:4;17198:13;17194:36;17188:2;17178:8;17175:16;17170:2;17164:4;17161:12;17157:35;17154:77;17151:2;;;-1:-1:-1;17263:19:1;;;17298:14;;;17295:2;;;17315:18;;:::i;:::-;17348:5;;17151:2;17395:42;17433:3;17423:8;17417:4;17414:1;17395:42;:::i;:::-;17470:6;17465:3;17461:16;17452:7;17449:29;17446:2;;;17481:18;;:::i;:::-;17519:20;;16687:858;-1:-1:-1;;;;16687:858:1:o;17550:168::-;;17656:1;17652;17648:6;17644:14;17641:1;17638:21;17633:1;17626:9;17619:17;17615:45;17612:2;;;17663:18;;:::i;:::-;-1:-1:-1;17703:9:1;;17602:116::o;17723:125::-;;17791:1;17788;17785:8;17782:2;;;17796:18;;:::i;:::-;-1:-1:-1;17833:9:1;;17772:76::o;17853:380::-;17938:1;17928:12;;17985:1;17975:12;;;17996:2;;18050:4;18042:6;18038:17;18028:27;;17996:2;18103;18095:6;18092:14;18072:18;18069:38;18066:2;;;18149:10;18144:3;18140:20;18137:1;18130:31;18184:4;18181:1;18174:15;18212:4;18209:1;18202:15;18066:2;;17908:325;;;:::o;18238:135::-;;-1:-1:-1;;18298:17:1;;18295:2;;;18318:18;;:::i;:::-;-1:-1:-1;18365:1:1;18354:13;;18285:88::o;18378:127::-;18439:10;18434:3;18430:20;18427:1;18420:31;18470:4;18467:1;18460:15;18494:4;18491:1;18484:15;18510:133;-1:-1:-1;;;;;18587:31:1;;18577:42;;18567:2;;18633:1;18630;18623:12;18567:2;18557:86;:::o

Swarm Source

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