ETH Price: $2,689.48 (-2.11%)

Token

APEBORG (APEBORG)
 

Overview

Max Total Supply

1,000,000,000,000,000 APEBORG

Holders

964

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
56,075,877.363909956 APEBORG

Value
$0.00
0xe6AC0069ee75B4A9bc1f1A669983e52cF0F1cB15
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:
APEBORG

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-23
*/

/**
Telegram Portal: https://t.me/APEBORG
Website: https://apeborg.com/
Twitter: https://twitter.com/ApeborgToken
Facebook: https://facebook.com/ApeborgToken
Discord: https://discord.gg/GYAKwUGmJQ
Reddit: https://reddit.com/r/ApeborgToken
*/

/// @custom:security-contact [email protected]
pragma solidity ^0.8.10;

// SPDX-License-Identifier: Unlicensed
interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * 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 a later date");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
        _previousOwner = address(0);
    }
}

/**
 * @title TokenRecover
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Allows owner to recover any ERC20 sent into the contract
 */
contract TokenRecover is Ownable {

    using Address for address payable;
    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }

    function recoverETH(address account, uint256 amount) public virtual onlyOwner {
        payable(account).sendValue(amount);
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

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

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

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

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

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

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

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

    mapping(address => bool) private _isExcludedFromFee;

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

    mapping(address => bool) private _isExcludedFromLimit;
    address[] private _blackListedBots;

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


    string private _name = "APEBORG";
    string private _symbol = "APEBORG";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 tax;
        uint8 liquidity;
    }

    struct SellFee {
        uint8 tax;
        uint8 liquidity;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _taxFee;
    uint8 private _liquidityFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9;
    uint256 public _maxWalletSize = 1 * 10**13 * 10**9;

    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

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

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

        buyFee.tax = 2;
        buyFee.liquidity = 8;

        sellFee.tax = 2;
        sellFee.liquidity = 8;

        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, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

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

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

    function setRouterAddress(address payable newRouter) external onlyOwner {
        require(newRouter != address(uniswapV2Router), "The router already has that address");
            IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), _newUniswapRouter.WETH());
            uniswapV2Router = _newUniswapRouter;
    }

    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 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, , ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _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");

        (
            ,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        if (!deductTransferFee) {
            return rAmount;
        } else {
            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 addBotToBlacklist(address account) external onlyOwner {
        require(
            account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            "We cannot blacklist UniSwap router"
        );
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);

        emit botAddedToBlacklist(account);
    }

        function isBotBlacklisted(address account) public view returns(bool) {
            return _isBlackListedBot[account];
    }

    function removeBotFromBlacklist(address account) external onlyOwner {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[
                    _blackListedBots.length - 1
                ];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
        emit botRemovedFromBlacklist(account);
    }

    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 not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

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

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

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

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

    function setSellFee(
        uint8 tax,
        uint8 liquidity
    ) external onlyOwner {
        sellFee.tax = tax;
        sellFee.liquidity = liquidity;
    }

    function setBuyFee(
        uint8 tax,
        uint8 liquidity
    ) external onlyOwner {
        buyFee.tax = tax;
        buyFee.liquidity = liquidity;
    }

    function setBothFees(
        uint8 buy_tax,
        uint8 buy_liquidity,
        uint8 sell_tax,
        uint8 sell_liquidity
    ) external onlyOwner {
        buyFee.tax = buy_tax;
        buyFee.liquidity = buy_liquidity;

        sellFee.tax = sell_tax;
        sellFee.liquidity = sell_liquidity;
    }

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

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

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**2);
    }

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

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

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

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

        return (tTransferAmount, tFee, tLiquidity);
    }

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

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

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

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

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

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

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

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function setBuy() private {
        _taxFee = buyFee.tax;
        _liquidityFee = buyFee.liquidity;

    }

    function setSell() private {
        _taxFee = sellFee.tax;
        _liquidityFee = sellFee.liquidity;
    }

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

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[from], "from is blacklisted");
        require(!_isBlackListedBot[msg.sender], "you are blacklisted");
        require(!_isBlackListedBot[tx.origin], "blacklisted");

        if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { 
            require(amount <= _maxTxAmount,"Transfer amount exceeds the maxTxAmount.");
            
            if(to != uniswapV2Pair) { 
                require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }
        }


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

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

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

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

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) {
            takeFee = false;
        } else {
            //Set Fee for Buys
            if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
                setBuy();
            }
            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                setSell();
            }
        }

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

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

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

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

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

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

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

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

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

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

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


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

        _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 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _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 _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"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":"excludeFromLimit","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":"includeInLimit","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":"isBotBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_tax","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_tax","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

608060405269d3c21bcecceda1000000600c819055620000229060001962000432565b620000309060001962000455565b600d5560408051808201909152600780825266415045424f524760c81b60209092019182526200006391600f916200038c565b5060408051808201909152600780825266415045424f524760c81b602090920191825262000094916010916200038c565b506011805460ff191660091790556015805460ff60a81b1916600160a81b17905569d3c21bcecceda1000000601655681b1ae4d6e2ef50000060175569021e19e0c9bab2400000601855348015620000eb57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d5433600090815260036020908152604091829020929092556012805461080261ffff199182168117909255601380549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d991906200047b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000227573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024d91906200047b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c191906200047b565b601580546001600160a01b0319166001600160a01b039283161790556014805462010000600160b01b03191662010000848416021790556000805482168152600660209081526040808320805460ff19908116600190811790925530808652838620805483168417905585549096168552600a84528285208054821683179055948452818420805490951617909355600c54925192835233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620004ea565b8280546200039a90620004ad565b90600052602060002090601f016020900481019282620003be576000855562000409565b82601f10620003d957805160ff191683800117855562000409565b8280016001018555821562000409579182015b8281111562000409578251825591602001919060010190620003ec565b50620004179291506200041b565b5090565b5b808211156200041757600081556001016200041c565b6000826200045057634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200047657634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200048e57600080fd5b81516001600160a01b0381168114620004a657600080fd5b9392505050565b600181811c90821680620004c257607f821691505b60208210811415620004e457634e487b7160e01b600052602260045260246000fd5b50919050565b61366a80620004fa6000396000f3fe6080604052600436106102cd5760003560e01c80636e47786111610175578063a9059cbb116100dc578063d94160e011610095578063ea2f0b371161006f578063ea2f0b371461092f578063f0f165af1461094f578063f2fde38b1461096f578063f6831bf21461098f57600080fd5b8063d94160e014610890578063dd467064146108c9578063dd62ed3e146108e957600080fd5b8063a9059cbb146107db578063af2ce614146107fb578063b030b34a1461081b578063b6c523241461083b578063c49b9a8014610850578063d543dbeb1461087057600080fd5b80638da5cb5b1161012e5780638da5cb5b1461073d5780638f9a55c01461075b57806391d919a91461077157806395d89b4114610791578063a457c2d7146107a6578063a69df4b5146107c657600080fd5b80636e4778611461067957806370a0823114610699578063715018a6146106b95780637d1db4a5146106ce57806388f82020146106e45780638980f11f1461071d57600080fd5b80633685d41911610234578063437823ec116101ed57806349bd5a5e116101c757806349bd5a5e146105df5780634a74bb02146105ff57806352390c02146106205780635342acb41461064057600080fd5b8063437823ec1461057c5780634549b0391461059c57806347062402146105bc57600080fd5b80633685d419146104bc57806339509351146104dc5780633a17304a146104fc5780633bd5d1731461051c5780633e0c06291461053c57806341cb87fc1461055c57600080fd5b806318160ddd1161028657806318160ddd146103e85780631d7ef879146103fd57806323b872dd1461041d5780632b14ca561461043d5780632d8381191461047a578063313ce5671461049a57600080fd5b806305cb4893146102d957806306fdde0314610327578063095ea7b3146103495780630bd3a7f91461036957806313114a9d1461038b5780631694505e146103aa57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506103126102f4366004613193565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561033357600080fd5b5061033c6109af565b60405161031e91906131b0565b34801561035557600080fd5b50610312610364366004613205565b610a41565b34801561037557600080fd5b50610389610384366004613193565b610a58565b005b34801561039757600080fd5b50600e545b60405190815260200161031e565b3480156103b657600080fd5b506014546103d0906201000090046001600160a01b031681565b6040516001600160a01b03909116815260200161031e565b3480156103f457600080fd5b50600c5461039c565b34801561040957600080fd5b50610389610418366004613193565b610aaf565b34801561042957600080fd5b50610312610438366004613231565b610c57565b34801561044957600080fd5b506013546104609060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161031e565b34801561048657600080fd5b5061039c610495366004613272565b610cc0565b3480156104a657600080fd5b5060115460405160ff909116815260200161031e565b3480156104c857600080fd5b506103896104d7366004613193565b610d44565b3480156104e857600080fd5b506103126104f7366004613205565b610efb565b34801561050857600080fd5b506103896105173660046132a1565b610f31565b34801561052857600080fd5b50610389610537366004613272565b610f94565b34801561054857600080fd5b50610389610557366004613205565b611097565b34801561056857600080fd5b50610389610577366004613193565b6110d4565b34801561058857600080fd5b50610389610597366004613193565b611301565b3480156105a857600080fd5b5061039c6105b7366004613303565b61134f565b3480156105c857600080fd5b506012546104609060ff8082169161010090041682565b3480156105eb57600080fd5b506015546103d0906001600160a01b031681565b34801561060b57600080fd5b5060155461031290600160a81b900460ff1681565b34801561062c57600080fd5b5061038961063b366004613193565b6113e5565b34801561064c57600080fd5b5061031261065b366004613193565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561068557600080fd5b50610389610694366004613333565b611538565b3480156106a557600080fd5b5061039c6106b4366004613193565b611586565b3480156106c557600080fd5b506103896115e5565b3480156106da57600080fd5b5061039c60165481565b3480156106f057600080fd5b506103126106ff366004613193565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561072957600080fd5b50610389610738366004613205565b611647565b34801561074957600080fd5b506000546001600160a01b03166103d0565b34801561076757600080fd5b5061039c60185481565b34801561077d57600080fd5b5061038961078c366004613193565b611708565b34801561079d57600080fd5b5061033c611753565b3480156107b257600080fd5b506103126107c1366004613205565b611762565b3480156107d257600080fd5b506103896117b1565b3480156107e757600080fd5b506103126107f6366004613205565b6118c8565b34801561080757600080fd5b50610389610816366004613272565b6118d5565b34801561082757600080fd5b50610389610836366004613193565b611925565b34801561084757600080fd5b5060025461039c565b34801561085c57600080fd5b5061038961086b366004613366565b611b0a565b34801561087c57600080fd5b5061038961088b366004613272565b611b81565b34801561089c57600080fd5b506103126108ab366004613193565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156108d557600080fd5b506103896108e4366004613272565b611bcb565b3480156108f557600080fd5b5061039c610904366004613383565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561093b57600080fd5b5061038961094a366004613193565b611c50565b34801561095b57600080fd5b5061038961096a366004613272565b611c9b565b34801561097b57600080fd5b5061038961098a366004613193565b611cca565b34801561099b57600080fd5b506103896109aa366004613333565b611da2565b6060600f80546109be906133b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906133b1565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b5050505050905090565b6000610a4e338484611df0565b5060015b92915050565b6000546001600160a01b03163314610a8b5760405162461bcd60e51b8152600401610a82906133ec565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610a82906133ec565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610b515760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610a82565b6001600160a01b03811660009081526009602052604090205460ff1615610bba5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a82565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610c64848484611f14565b610cb68433610cb1856040518060600160405280602881526020016135c8602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612444565b611df0565b5060019392505050565b6000600d54821115610d275760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a82565b6000610d3161247e565b9050610d3d83826124a1565b9392505050565b6000546001600160a01b03163314610d6e5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526007602052604090205460ff16610dd65760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a82565b60005b600854811015610ef757816001600160a01b031660088281548110610e0057610e00613421565b6000918252602090912001546001600160a01b03161415610ee55760088054610e2b9060019061344d565b81548110610e3b57610e3b613421565b600091825260209091200154600880546001600160a01b039092169183908110610e6757610e67613421565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ebf57610ebf613464565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eef8161347a565b915050610dd9565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610a4e918590610cb190866124e3565b6000546001600160a01b03163314610f5b5760405162461bcd60e51b8152600401610a82906133ec565b6012805460ff95861661ffff19918216176101009587168602179091556013805493861693909116929092179316909102919091179055565b3360008181526007602052604090205460ff16156110095760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a82565b60008061101584612542565b9250925050600061102f85848461102a61247e565b612584565b50506001600160a01b03851660009081526003602052604090205490915061105790826125d4565b6001600160a01b038516600090815260036020526040902055600d5461107d90826125d4565b600d55600e5461108d90866124e3565b600e555050505050565b6000546001600160a01b031633146110c15760405162461bcd60e51b8152600401610a82906133ec565b610ef76001600160a01b03831682612616565b6000546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610a82906133ec565b6014546001600160a01b038281166201000090920416141561116e5760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610a82565b6014546040805163c45a015560e01b8152905183926201000090046001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190613495565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112529190613495565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561129f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c39190613495565b601580546001600160a01b0319166001600160a01b039283161790556014805462010000600160b01b03191662010000939092169290920217905550565b6000546001600160a01b0316331461132b5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156113a35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a82565b6000806113af85612542565b92509250506000806113c587858561102a61247e565b5091509150856113da57509250610a52915050565b9350610a5292505050565b6000546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526007602052604090205460ff16156114785760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a82565b6001600160a01b038116600090815260036020526040902054156114d2576001600160a01b0381166000908152600360205260409020546114b890610cc0565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146115625760405162461bcd60e51b8152600401610a82906133ec565b6012805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156115c357506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a5290610cc0565b6000546001600160a01b0316331461160f5760405162461bcd60e51b8152600401610a82906133ec565b600080546040516001600160a01b03909116906000805160206135f0833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146116715760405162461bcd60e51b8152600401610a82906133ec565b816001600160a01b031663a9059cbb6116926000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170391906134b2565b505050565b6000546001600160a01b031633146117325760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060601080546109be906133b1565b6000610a4e3384610cb185604051806060016040528060258152602001613610602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612444565b6001546001600160a01b031633146118175760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a82565b60025442116118765760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610a82565b600154600080546040516001600160a01b0393841693909116916000805160206135f083398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610a4e338484611f14565b6000546001600160a01b031633146118ff5760405162461bcd60e51b8152600401610a82906133ec565b61191f606461191983600c5461272f90919063ffffffff16565b906124a1565b60185550565b6000546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526009602052604090205460ff166119b75760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a82565b60005b600b54811015611ad057816001600160a01b0316600b82815481106119e1576119e1613421565b6000918252602090912001546001600160a01b03161415611abe57600b8054611a0c9060019061344d565b81548110611a1c57611a1c613421565b600091825260209091200154600b80546001600160a01b039092169183908110611a4857611a48613421565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480611a9757611a97613464565b600082815260209020810160001990810180546001600160a01b0319169055019055611ad0565b80611ac88161347a565b9150506119ba565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610c4c565b6000546001600160a01b03163314611b345760405162461bcd60e51b8152600401610a82906133ec565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610c4c90831515815260200190565b6000546001600160a01b03163314611bab5760405162461bcd60e51b8152600401610a82906133ec565b611bc5606461191983600c5461272f90919063ffffffff16565b60165550565b6000546001600160a01b03163314611bf55760405162461bcd60e51b8152600401610a82906133ec565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611c2481426134cf565b600255600080546040516001600160a01b03909116906000805160206135f0833981519152908390a350565b6000546001600160a01b03163314611c7a5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611cc55760405162461bcd60e51b8152600401610a82906133ec565b601755565b6000546001600160a01b03163314611cf45760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b038116611d595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a82565b600080546040516001600160a01b03808516939216916000805160206135f083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611dcc5760405162461bcd60e51b8152600401610a82906133ec565b6013805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b038316611e525760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a82565b6001600160a01b038216611eb35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a82565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611f785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a82565b6001600160a01b038216611fda5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a82565b6000811161203c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a82565b6001600160a01b03831660009081526009602052604090205460ff161561209b5760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610a82565b3360009081526009602052604090205460ff16156120f15760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610a82565b3260009081526009602052604090205460ff161561213f5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610a82565b6001600160a01b0383166000908152600a602052604090205460ff1615801561218157506001600160a01b0382166000908152600a602052604090205460ff16155b1561226e576016548111156121e95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a82565b6015546001600160a01b0383811691161461226e576018548161220b84611586565b61221591906134cf565b1061226e5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610a82565b600061227930611586565b9050601654811061228957506016545b601754811080159081906122a75750601554600160a01b900460ff16155b80156122c157506015546001600160a01b03868116911614155b80156122d65750601554600160a81b900460ff165b156122e95760175491506122e9826127ae565b6001600160a01b03851660009081526006602052604090205460019060ff168061232b57506001600160a01b03851660009081526006602052604090205460ff165b8061235d57506015546001600160a01b0387811691161480159061235d57506015546001600160a01b03868116911614155b1561236a57506000612430565b6015546001600160a01b03878116911614801561239b57506014546001600160a01b03868116620100009092041614155b156123cd576123cd6012546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6015546001600160a01b0386811691161480156123fe57506014546001600160a01b03878116620100009092041614155b15612430576124306013546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61243c86868684612855565b505050505050565b600081848411156124685760405162461bcd60e51b8152600401610a8291906131b0565b506000612475848661344d565b95945050505050565b600080600061248b6129c4565b909250905061249a82826124a1565b9250505090565b6000610d3d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b46565b6000806124f083856134cf565b905083811015610d3d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a82565b60008060008061255185612b74565b9050600061255e86612b8f565b905060006125768261257089866125d4565b906125d4565b979296509094509092505050565b6000808080612593888661272f565b905060006125a1888761272f565b905060006125af888861272f565b905060006125c18261257086866125d4565b939b939a50919850919650505050505050565b6000610d3d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612444565b804710156126665760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a82565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146126b3576040519150601f19603f3d011682016040523d82523d6000602084013e6126b8565b606091505b50509050806117035760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a82565b60008261273e57506000610a52565b600061274a83856134e7565b9050826127578583613506565b14610d3d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a82565b6015805460ff60a01b1916600160a01b17905560006127ce8260026124a1565b905060006127dc83836125d4565b9050476127e883612baf565b60006127f447836125d4565b90506128008382612d26565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061286257612862612de2565b6001600160a01b03841660009081526007602052604090205460ff1680156128a357506001600160a01b03831660009081526007602052604090205460ff16155b156128b8576128b3848484612e11565b6129b6565b6001600160a01b03841660009081526007602052604090205460ff161580156128f957506001600160a01b03831660009081526007602052604090205460ff165b15612909576128b3848484612f45565b6001600160a01b03841660009081526007602052604090205460ff1615801561294b57506001600160a01b03831660009081526007602052604090205460ff16155b1561295b576128b3848484612ffc565b6001600160a01b03841660009081526007602052604090205460ff16801561299b57506001600160a01b03831660009081526007602052604090205460ff165b156129ab576128b384848461304e565b6129b6848484612ffc565b6129be612de2565b50505050565b600d54600c546000918291825b600854811015612b16578260036000600884815481106129f3576129f3613421565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a5e5750816004600060088481548110612a3757612a37613421565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7457600d54600c54945094505050509091565b612aba6003600060088481548110612a8e57612a8e613421565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906125d4565b9250612b026004600060088481548110612ad657612ad6613421565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906125d4565b915080612b0e8161347a565b9150506129d1565b50600c54600d54612b26916124a1565b821015612b3d57600d54600c549350935050509091565b90939092509050565b60008183612b675760405162461bcd60e51b8152600401610a8291906131b0565b5060006124758486613506565b601454600090610a529060649061191990859060ff1661272f565b601454600090610a5290606490611919908590610100900460ff1661272f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612be457612be4613421565b60200260200101906001600160a01b031690816001600160a01b031681525050601460029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7b9190613495565b81600181518110612c8e57612c8e613421565b6001600160a01b039283166020918202929092010152601454612cba9130916201000090041684611df0565b60145460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac94790612cf8908590600090869030904290600401613528565b600060405180830381600087803b158015612d1257600080fd5b505af115801561243c573d6000803e3d6000fd5b601454612d449030906201000090046001600160a01b031684611df0565b60145460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a4820152620100009091046001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612db6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ddb9190613599565b5050505050565b60145460ff16158015612dfd5750601454610100900460ff16155b15612e0457565b6014805461ffff19169055565b6000806000612e1f84612542565b9250925092506000806000612e3887868661102a61247e565b6001600160a01b038c166000908152600460205260409020549295509093509150612e6390886125d4565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e9290846125d4565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612ec190836124e3565b6001600160a01b038916600090815260036020526040902055612ee3846130cf565b612eed8186613157565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051612f3291815260200190565b60405180910390a3505050505050505050565b6000806000612f5384612542565b9250925092506000806000612f6c87868661102a61247e565b6001600160a01b038c166000908152600360205260409020549295509093509150612f9790846125d4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612fcd90876124e3565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612ec190836124e3565b600080600061300a84612542565b925092509250600080600061302387868661102a61247e565b6001600160a01b038c166000908152600360205260409020549295509093509150612e9290846125d4565b600080600061305c84612542565b925092509250600080600061307587868661102a61247e565b6001600160a01b038c1660009081526004602052604090205492955090935091506130a090886125d4565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f9790846125d4565b60006130d961247e565b905060006130e7838361272f565b3060009081526003602052604090205490915061310490826124e3565b3060009081526003602090815260408083209390935560079052205460ff1615611703573060009081526004602052604090205461314290846124e3565b30600090815260046020526040902055505050565b600d5461316490836125d4565b600d55600e5461317490826124e3565b600e555050565b6001600160a01b038116811461319057600080fd5b50565b6000602082840312156131a557600080fd5b8135610d3d8161317b565b600060208083528351808285015260005b818110156131dd578581018301518582016040015282016131c1565b818111156131ef576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561321857600080fd5b82356132238161317b565b946020939093013593505050565b60008060006060848603121561324657600080fd5b83356132518161317b565b925060208401356132618161317b565b929592945050506040919091013590565b60006020828403121561328457600080fd5b5035919050565b803560ff8116811461329c57600080fd5b919050565b600080600080608085870312156132b757600080fd5b6132c08561328b565b93506132ce6020860161328b565b92506132dc6040860161328b565b91506132ea6060860161328b565b905092959194509250565b801515811461319057600080fd5b6000806040838503121561331657600080fd5b823591506020830135613328816132f5565b809150509250929050565b6000806040838503121561334657600080fd5b61334f8361328b565b915061335d6020840161328b565b90509250929050565b60006020828403121561337857600080fd5b8135610d3d816132f5565b6000806040838503121561339657600080fd5b82356133a18161317b565b915060208301356133288161317b565b600181811c908216806133c557607f821691505b602082108114156133e657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561345f5761345f613437565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561348e5761348e613437565b5060010190565b6000602082840312156134a757600080fd5b8151610d3d8161317b565b6000602082840312156134c457600080fd5b8151610d3d816132f5565b600082198211156134e2576134e2613437565b500190565b600081600019048311821515161561350157613501613437565b500290565b60008261352357634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156135785784516001600160a01b031683529383019391830191600101613553565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156135ae57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cd753f30c26c2906b7b9cfc9cf1b95a09c25220746f0184ca562030ba6dfbd364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80636e47786111610175578063a9059cbb116100dc578063d94160e011610095578063ea2f0b371161006f578063ea2f0b371461092f578063f0f165af1461094f578063f2fde38b1461096f578063f6831bf21461098f57600080fd5b8063d94160e014610890578063dd467064146108c9578063dd62ed3e146108e957600080fd5b8063a9059cbb146107db578063af2ce614146107fb578063b030b34a1461081b578063b6c523241461083b578063c49b9a8014610850578063d543dbeb1461087057600080fd5b80638da5cb5b1161012e5780638da5cb5b1461073d5780638f9a55c01461075b57806391d919a91461077157806395d89b4114610791578063a457c2d7146107a6578063a69df4b5146107c657600080fd5b80636e4778611461067957806370a0823114610699578063715018a6146106b95780637d1db4a5146106ce57806388f82020146106e45780638980f11f1461071d57600080fd5b80633685d41911610234578063437823ec116101ed57806349bd5a5e116101c757806349bd5a5e146105df5780634a74bb02146105ff57806352390c02146106205780635342acb41461064057600080fd5b8063437823ec1461057c5780634549b0391461059c57806347062402146105bc57600080fd5b80633685d419146104bc57806339509351146104dc5780633a17304a146104fc5780633bd5d1731461051c5780633e0c06291461053c57806341cb87fc1461055c57600080fd5b806318160ddd1161028657806318160ddd146103e85780631d7ef879146103fd57806323b872dd1461041d5780632b14ca561461043d5780632d8381191461047a578063313ce5671461049a57600080fd5b806305cb4893146102d957806306fdde0314610327578063095ea7b3146103495780630bd3a7f91461036957806313114a9d1461038b5780631694505e146103aa57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506103126102f4366004613193565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561033357600080fd5b5061033c6109af565b60405161031e91906131b0565b34801561035557600080fd5b50610312610364366004613205565b610a41565b34801561037557600080fd5b50610389610384366004613193565b610a58565b005b34801561039757600080fd5b50600e545b60405190815260200161031e565b3480156103b657600080fd5b506014546103d0906201000090046001600160a01b031681565b6040516001600160a01b03909116815260200161031e565b3480156103f457600080fd5b50600c5461039c565b34801561040957600080fd5b50610389610418366004613193565b610aaf565b34801561042957600080fd5b50610312610438366004613231565b610c57565b34801561044957600080fd5b506013546104609060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161031e565b34801561048657600080fd5b5061039c610495366004613272565b610cc0565b3480156104a657600080fd5b5060115460405160ff909116815260200161031e565b3480156104c857600080fd5b506103896104d7366004613193565b610d44565b3480156104e857600080fd5b506103126104f7366004613205565b610efb565b34801561050857600080fd5b506103896105173660046132a1565b610f31565b34801561052857600080fd5b50610389610537366004613272565b610f94565b34801561054857600080fd5b50610389610557366004613205565b611097565b34801561056857600080fd5b50610389610577366004613193565b6110d4565b34801561058857600080fd5b50610389610597366004613193565b611301565b3480156105a857600080fd5b5061039c6105b7366004613303565b61134f565b3480156105c857600080fd5b506012546104609060ff8082169161010090041682565b3480156105eb57600080fd5b506015546103d0906001600160a01b031681565b34801561060b57600080fd5b5060155461031290600160a81b900460ff1681565b34801561062c57600080fd5b5061038961063b366004613193565b6113e5565b34801561064c57600080fd5b5061031261065b366004613193565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561068557600080fd5b50610389610694366004613333565b611538565b3480156106a557600080fd5b5061039c6106b4366004613193565b611586565b3480156106c557600080fd5b506103896115e5565b3480156106da57600080fd5b5061039c60165481565b3480156106f057600080fd5b506103126106ff366004613193565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561072957600080fd5b50610389610738366004613205565b611647565b34801561074957600080fd5b506000546001600160a01b03166103d0565b34801561076757600080fd5b5061039c60185481565b34801561077d57600080fd5b5061038961078c366004613193565b611708565b34801561079d57600080fd5b5061033c611753565b3480156107b257600080fd5b506103126107c1366004613205565b611762565b3480156107d257600080fd5b506103896117b1565b3480156107e757600080fd5b506103126107f6366004613205565b6118c8565b34801561080757600080fd5b50610389610816366004613272565b6118d5565b34801561082757600080fd5b50610389610836366004613193565b611925565b34801561084757600080fd5b5060025461039c565b34801561085c57600080fd5b5061038961086b366004613366565b611b0a565b34801561087c57600080fd5b5061038961088b366004613272565b611b81565b34801561089c57600080fd5b506103126108ab366004613193565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156108d557600080fd5b506103896108e4366004613272565b611bcb565b3480156108f557600080fd5b5061039c610904366004613383565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561093b57600080fd5b5061038961094a366004613193565b611c50565b34801561095b57600080fd5b5061038961096a366004613272565b611c9b565b34801561097b57600080fd5b5061038961098a366004613193565b611cca565b34801561099b57600080fd5b506103896109aa366004613333565b611da2565b6060600f80546109be906133b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906133b1565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b5050505050905090565b6000610a4e338484611df0565b5060015b92915050565b6000546001600160a01b03163314610a8b5760405162461bcd60e51b8152600401610a82906133ec565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610a82906133ec565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610b515760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610a82565b6001600160a01b03811660009081526009602052604090205460ff1615610bba5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a82565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610c64848484611f14565b610cb68433610cb1856040518060600160405280602881526020016135c8602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612444565b611df0565b5060019392505050565b6000600d54821115610d275760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a82565b6000610d3161247e565b9050610d3d83826124a1565b9392505050565b6000546001600160a01b03163314610d6e5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526007602052604090205460ff16610dd65760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a82565b60005b600854811015610ef757816001600160a01b031660088281548110610e0057610e00613421565b6000918252602090912001546001600160a01b03161415610ee55760088054610e2b9060019061344d565b81548110610e3b57610e3b613421565b600091825260209091200154600880546001600160a01b039092169183908110610e6757610e67613421565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ebf57610ebf613464565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eef8161347a565b915050610dd9565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610a4e918590610cb190866124e3565b6000546001600160a01b03163314610f5b5760405162461bcd60e51b8152600401610a82906133ec565b6012805460ff95861661ffff19918216176101009587168602179091556013805493861693909116929092179316909102919091179055565b3360008181526007602052604090205460ff16156110095760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a82565b60008061101584612542565b9250925050600061102f85848461102a61247e565b612584565b50506001600160a01b03851660009081526003602052604090205490915061105790826125d4565b6001600160a01b038516600090815260036020526040902055600d5461107d90826125d4565b600d55600e5461108d90866124e3565b600e555050505050565b6000546001600160a01b031633146110c15760405162461bcd60e51b8152600401610a82906133ec565b610ef76001600160a01b03831682612616565b6000546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610a82906133ec565b6014546001600160a01b038281166201000090920416141561116e5760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610a82565b6014546040805163c45a015560e01b8152905183926201000090046001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190613495565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112529190613495565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561129f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c39190613495565b601580546001600160a01b0319166001600160a01b039283161790556014805462010000600160b01b03191662010000939092169290920217905550565b6000546001600160a01b0316331461132b5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156113a35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a82565b6000806113af85612542565b92509250506000806113c587858561102a61247e565b5091509150856113da57509250610a52915050565b9350610a5292505050565b6000546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526007602052604090205460ff16156114785760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a82565b6001600160a01b038116600090815260036020526040902054156114d2576001600160a01b0381166000908152600360205260409020546114b890610cc0565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146115625760405162461bcd60e51b8152600401610a82906133ec565b6012805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156115c357506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a5290610cc0565b6000546001600160a01b0316331461160f5760405162461bcd60e51b8152600401610a82906133ec565b600080546040516001600160a01b03909116906000805160206135f0833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146116715760405162461bcd60e51b8152600401610a82906133ec565b816001600160a01b031663a9059cbb6116926000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170391906134b2565b505050565b6000546001600160a01b031633146117325760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060601080546109be906133b1565b6000610a4e3384610cb185604051806060016040528060258152602001613610602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612444565b6001546001600160a01b031633146118175760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a82565b60025442116118765760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610a82565b600154600080546040516001600160a01b0393841693909116916000805160206135f083398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610a4e338484611f14565b6000546001600160a01b031633146118ff5760405162461bcd60e51b8152600401610a82906133ec565b61191f606461191983600c5461272f90919063ffffffff16565b906124a1565b60185550565b6000546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03811660009081526009602052604090205460ff166119b75760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a82565b60005b600b54811015611ad057816001600160a01b0316600b82815481106119e1576119e1613421565b6000918252602090912001546001600160a01b03161415611abe57600b8054611a0c9060019061344d565b81548110611a1c57611a1c613421565b600091825260209091200154600b80546001600160a01b039092169183908110611a4857611a48613421565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480611a9757611a97613464565b600082815260209020810160001990810180546001600160a01b0319169055019055611ad0565b80611ac88161347a565b9150506119ba565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610c4c565b6000546001600160a01b03163314611b345760405162461bcd60e51b8152600401610a82906133ec565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610c4c90831515815260200190565b6000546001600160a01b03163314611bab5760405162461bcd60e51b8152600401610a82906133ec565b611bc5606461191983600c5461272f90919063ffffffff16565b60165550565b6000546001600160a01b03163314611bf55760405162461bcd60e51b8152600401610a82906133ec565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611c2481426134cf565b600255600080546040516001600160a01b03909116906000805160206135f0833981519152908390a350565b6000546001600160a01b03163314611c7a5760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611cc55760405162461bcd60e51b8152600401610a82906133ec565b601755565b6000546001600160a01b03163314611cf45760405162461bcd60e51b8152600401610a82906133ec565b6001600160a01b038116611d595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a82565b600080546040516001600160a01b03808516939216916000805160206135f083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611dcc5760405162461bcd60e51b8152600401610a82906133ec565b6013805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b038316611e525760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a82565b6001600160a01b038216611eb35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a82565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611f785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a82565b6001600160a01b038216611fda5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a82565b6000811161203c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a82565b6001600160a01b03831660009081526009602052604090205460ff161561209b5760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610a82565b3360009081526009602052604090205460ff16156120f15760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610a82565b3260009081526009602052604090205460ff161561213f5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610a82565b6001600160a01b0383166000908152600a602052604090205460ff1615801561218157506001600160a01b0382166000908152600a602052604090205460ff16155b1561226e576016548111156121e95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a82565b6015546001600160a01b0383811691161461226e576018548161220b84611586565b61221591906134cf565b1061226e5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610a82565b600061227930611586565b9050601654811061228957506016545b601754811080159081906122a75750601554600160a01b900460ff16155b80156122c157506015546001600160a01b03868116911614155b80156122d65750601554600160a81b900460ff165b156122e95760175491506122e9826127ae565b6001600160a01b03851660009081526006602052604090205460019060ff168061232b57506001600160a01b03851660009081526006602052604090205460ff165b8061235d57506015546001600160a01b0387811691161480159061235d57506015546001600160a01b03868116911614155b1561236a57506000612430565b6015546001600160a01b03878116911614801561239b57506014546001600160a01b03868116620100009092041614155b156123cd576123cd6012546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6015546001600160a01b0386811691161480156123fe57506014546001600160a01b03878116620100009092041614155b15612430576124306013546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61243c86868684612855565b505050505050565b600081848411156124685760405162461bcd60e51b8152600401610a8291906131b0565b506000612475848661344d565b95945050505050565b600080600061248b6129c4565b909250905061249a82826124a1565b9250505090565b6000610d3d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b46565b6000806124f083856134cf565b905083811015610d3d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a82565b60008060008061255185612b74565b9050600061255e86612b8f565b905060006125768261257089866125d4565b906125d4565b979296509094509092505050565b6000808080612593888661272f565b905060006125a1888761272f565b905060006125af888861272f565b905060006125c18261257086866125d4565b939b939a50919850919650505050505050565b6000610d3d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612444565b804710156126665760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a82565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146126b3576040519150601f19603f3d011682016040523d82523d6000602084013e6126b8565b606091505b50509050806117035760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a82565b60008261273e57506000610a52565b600061274a83856134e7565b9050826127578583613506565b14610d3d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a82565b6015805460ff60a01b1916600160a01b17905560006127ce8260026124a1565b905060006127dc83836125d4565b9050476127e883612baf565b60006127f447836125d4565b90506128008382612d26565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061286257612862612de2565b6001600160a01b03841660009081526007602052604090205460ff1680156128a357506001600160a01b03831660009081526007602052604090205460ff16155b156128b8576128b3848484612e11565b6129b6565b6001600160a01b03841660009081526007602052604090205460ff161580156128f957506001600160a01b03831660009081526007602052604090205460ff165b15612909576128b3848484612f45565b6001600160a01b03841660009081526007602052604090205460ff1615801561294b57506001600160a01b03831660009081526007602052604090205460ff16155b1561295b576128b3848484612ffc565b6001600160a01b03841660009081526007602052604090205460ff16801561299b57506001600160a01b03831660009081526007602052604090205460ff165b156129ab576128b384848461304e565b6129b6848484612ffc565b6129be612de2565b50505050565b600d54600c546000918291825b600854811015612b16578260036000600884815481106129f3576129f3613421565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a5e5750816004600060088481548110612a3757612a37613421565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7457600d54600c54945094505050509091565b612aba6003600060088481548110612a8e57612a8e613421565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906125d4565b9250612b026004600060088481548110612ad657612ad6613421565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906125d4565b915080612b0e8161347a565b9150506129d1565b50600c54600d54612b26916124a1565b821015612b3d57600d54600c549350935050509091565b90939092509050565b60008183612b675760405162461bcd60e51b8152600401610a8291906131b0565b5060006124758486613506565b601454600090610a529060649061191990859060ff1661272f565b601454600090610a5290606490611919908590610100900460ff1661272f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612be457612be4613421565b60200260200101906001600160a01b031690816001600160a01b031681525050601460029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7b9190613495565b81600181518110612c8e57612c8e613421565b6001600160a01b039283166020918202929092010152601454612cba9130916201000090041684611df0565b60145460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac94790612cf8908590600090869030904290600401613528565b600060405180830381600087803b158015612d1257600080fd5b505af115801561243c573d6000803e3d6000fd5b601454612d449030906201000090046001600160a01b031684611df0565b60145460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a4820152620100009091046001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612db6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ddb9190613599565b5050505050565b60145460ff16158015612dfd5750601454610100900460ff16155b15612e0457565b6014805461ffff19169055565b6000806000612e1f84612542565b9250925092506000806000612e3887868661102a61247e565b6001600160a01b038c166000908152600460205260409020549295509093509150612e6390886125d4565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e9290846125d4565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612ec190836124e3565b6001600160a01b038916600090815260036020526040902055612ee3846130cf565b612eed8186613157565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051612f3291815260200190565b60405180910390a3505050505050505050565b6000806000612f5384612542565b9250925092506000806000612f6c87868661102a61247e565b6001600160a01b038c166000908152600360205260409020549295509093509150612f9790846125d4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612fcd90876124e3565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612ec190836124e3565b600080600061300a84612542565b925092509250600080600061302387868661102a61247e565b6001600160a01b038c166000908152600360205260409020549295509093509150612e9290846125d4565b600080600061305c84612542565b925092509250600080600061307587868661102a61247e565b6001600160a01b038c1660009081526004602052604090205492955090935091506130a090886125d4565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f9790846125d4565b60006130d961247e565b905060006130e7838361272f565b3060009081526003602052604090205490915061310490826124e3565b3060009081526003602090815260408083209390935560079052205460ff1615611703573060009081526004602052604090205461314290846124e3565b30600090815260046020526040902055505050565b600d5461316490836125d4565b600d55600e5461317490826124e3565b600e555050565b6001600160a01b038116811461319057600080fd5b50565b6000602082840312156131a557600080fd5b8135610d3d8161317b565b600060208083528351808285015260005b818110156131dd578581018301518582016040015282016131c1565b818111156131ef576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561321857600080fd5b82356132238161317b565b946020939093013593505050565b60008060006060848603121561324657600080fd5b83356132518161317b565b925060208401356132618161317b565b929592945050506040919091013590565b60006020828403121561328457600080fd5b5035919050565b803560ff8116811461329c57600080fd5b919050565b600080600080608085870312156132b757600080fd5b6132c08561328b565b93506132ce6020860161328b565b92506132dc6040860161328b565b91506132ea6060860161328b565b905092959194509250565b801515811461319057600080fd5b6000806040838503121561331657600080fd5b823591506020830135613328816132f5565b809150509250929050565b6000806040838503121561334657600080fd5b61334f8361328b565b915061335d6020840161328b565b90509250929050565b60006020828403121561337857600080fd5b8135610d3d816132f5565b6000806040838503121561339657600080fd5b82356133a18161317b565b915060208301356133288161317b565b600181811c908216806133c557607f821691505b602082108114156133e657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561345f5761345f613437565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561348e5761348e613437565b5060010190565b6000602082840312156134a757600080fd5b8151610d3d8161317b565b6000602082840312156134c457600080fd5b8151610d3d816132f5565b600082198211156134e2576134e2613437565b500190565b600081600019048311821515161561350157613501613437565b500290565b60008261352357634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156135785784516001600160a01b031683529383019391830191600101613553565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156135ae57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cd753f30c26c2906b7b9cfc9cf1b95a09c25220746f0184ca562030ba6dfbd364736f6c634300080a0033

Deployed Bytecode Sourcemap

28879:23953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36939:125;;;;;;;;;;-1:-1:-1;36939:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37030:26:0;37002:4;37030:26;;;:17;:26;;;;;;;;;36939:125;;;;567:14:1;;560:22;542:41;;530:2;515:18;36939:125:0;;;;;;;;32300:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33285:193::-;;;;;;;;;;-1:-1:-1;33285:193:0;;;;;:::i;:::-;;:::i;38724:115::-;;;;;;;;;;-1:-1:-1;38724:115:0;;;;;:::i;:::-;;:::i;:::-;;34784:87;;;;;;;;;;-1:-1:-1;34853:10:0;;34784:87;;;1662:25:1;;;1650:2;1635:18;34784:87:0;1516:177:1;30087:41:0;;;;;;;;;;-1:-1:-1;30087:41:0;;;;;;;-1:-1:-1;;;;;30087:41:0;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;30087:41:0;1698:230:1;32577:95:0;;;;;;;;;;-1:-1:-1;32657:7:0;;32577:95;;36496:431;;;;;;;;;;-1:-1:-1;36496:431:0;;;;;:::i;:::-;;:::i;33486:446::-;;;;;;;;;;-1:-1:-1;33486:446:0;;;;;:::i;:::-;;:::i;29992:22::-;;;;;;;;;;-1:-1:-1;29992:22:0;;;;;;;;;;;;;;;;;;;2590:4:1;2578:17;;;2560:36;;2632:17;;;;2627:2;2612:18;;2605:45;2533:18;29992:22:0;2394:262:1;36164:322:0;;;;;;;;;;-1:-1:-1;36164:322:0;;;;;:::i;:::-;;:::i;32486:83::-;;;;;;;;;;-1:-1:-1;32552:9:0;;32486:83;;32552:9;;;;2988:36:1;;2976:2;2961:18;32486:83:0;2846:184:1;38006:473:0;;;;;;;;;;-1:-1:-1;38006:473:0;;;;;:::i;:::-;;:::i;33940:300::-;;;;;;;;;;-1:-1:-1;33940:300:0;;;;;:::i;:::-;;:::i;39318:319::-;;;;;;;;;;-1:-1:-1;39318:319:0;;;;;:::i;:::-;;:::i;34879:631::-;;;;;;;;;;-1:-1:-1;34879:631:0;;;;;:::i;:::-;;:::i;19274:131::-;;;;;;;;;;-1:-1:-1;19274:131:0;;;;;:::i;:::-;;:::i;31856:436::-;;;;;;;;;;-1:-1:-1;31856:436:0;;;;;:::i;:::-;;:::i;38487:111::-;;;;;;;;;;-1:-1:-1;38487:111:0;;;;;:::i;:::-;;:::i;35518:638::-;;;;;;;;;;-1:-1:-1;35518:638:0;;;;;:::i;:::-;;:::i;29965:20::-;;;;;;;;;;-1:-1:-1;29965:20:0;;;;;;;;;;;;;;;30135:28;;;;;;;;;;-1:-1:-1;30135:28:0;;;;-1:-1:-1;;;;;30135:28:0;;;30200:40;;;;;;;;;;-1:-1:-1;30200:40:0;;;;-1:-1:-1;;;30200:40:0;;;;;;37666:332;;;;;;;;;;-1:-1:-1;37666:332:0;;;;;:::i;:::-;;:::i;43419:124::-;;;;;;;;;;-1:-1:-1;43419:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;43508:27:0;43484:4;43508:27;;;:18;:27;;;;;;;;;43419:124;39145:165;;;;;;;;;;-1:-1:-1;39145:165:0;;;;;:::i;:::-;;:::i;32680:198::-;;;;;;;;;;-1:-1:-1;32680:198:0;;;;;:::i;:::-;;:::i;17169:148::-;;;;;;;;;;;;;:::i;30249:56::-;;;;;;;;;;;;;;;;34656:120;;;;;;;;;;-1:-1:-1;34656:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34748:20:0;34724:4;34748:20;;;:11;:20;;;;;;;;;34656:120;19106:160;;;;;;;;;;-1:-1:-1;19106:160:0;;;;;:::i;:::-;;:::i;16527:79::-;;;;;;;;;;-1:-1:-1;16565:7:0;16592:6;-1:-1:-1;;;;;16592:6:0;16527:79;;30389:50;;;;;;;;;;;;;;;;38847:114;;;;;;;;;;-1:-1:-1;38847:114:0;;;;;:::i;:::-;;:::i;32391:87::-;;;;;;;;;;;;;:::i;34248:400::-;;;;;;;;;;-1:-1:-1;34248:400:0;;;;;:::i;:::-;;:::i;18224:385::-;;;;;;;;;;;;;:::i;32886:199::-;;;;;;;;;;-1:-1:-1;32886:199:0;;;;;:::i;:::-;;:::i;39937:172::-;;;;;;;;;;-1:-1:-1;39937:172:0;;;;;:::i;:::-;;:::i;37072:586::-;;;;;;;;;;-1:-1:-1;37072:586:0;;;;;:::i;:::-;;:::i;17761:89::-;;;;;;;;;;-1:-1:-1;17833:9:0;;17761:89;;40117:171;;;;;;;;;;-1:-1:-1;40117:171:0;;;;;:::i;:::-;;:::i;39793:136::-;;;;;;;;;;-1:-1:-1;39793:136:0;;;;;:::i;:::-;;:::i;43551:128::-;;;;;;;;;;-1:-1:-1;43551:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;43642:29:0;43618:4;43642:29;;;:20;:29;;;;;;;;;43551:128;17926:226;;;;;;;;;;-1:-1:-1;17926:226:0;;;;;:::i;:::-;;:::i;33093:184::-;;;;;;;;;;-1:-1:-1;33093:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;33242:18:0;;;33210:7;33242:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33093:184;38606:110;;;;;;;;;;-1:-1:-1;38606:110:0;;;;;:::i;:::-;;:::i;39645:140::-;;;;;;;;;;-1:-1:-1;39645:140:0;;;;;:::i;:::-;;:::i;17472:281::-;;;;;;;;;;-1:-1:-1;17472:281:0;;;;;:::i;:::-;;:::i;38969:168::-;;;;;;;;;;-1:-1:-1;38969:168:0;;;;;:::i;:::-;;:::i;32300:83::-;32337:13;32370:5;32363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32300:83;:::o;33285:193::-;33387:4;33409:39;8581:10;33432:7;33441:6;33409:8;:39::i;:::-;-1:-1:-1;33466:4:0;33285:193;;;;;:::o;38724:115::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;38795:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;38795:36:0::1;38827:4;38795:36;::::0;;38724:115::o;36496:431::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;36603:42:::1;-1:-1:-1::0;;;;;36592:53:0;::::1;;;36570:137;;;::::0;-1:-1:-1;;;36570:137:0;;6343:2:1;36570:137:0::1;::::0;::::1;6325:21:1::0;6382:2;6362:18;;;6355:30;6421:34;6401:18;;;6394:62;-1:-1:-1;;;6472:18:1;;;6465:32;6514:19;;36570:137:0::1;6141:398:1::0;36570:137:0::1;-1:-1:-1::0;;;;;36727:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;36726:27;36718:70;;;::::0;-1:-1:-1;;;36718:70:0;;6746:2:1;36718:70:0::1;::::0;::::1;6728:21:1::0;6785:2;6765:18;;;6758:30;6824:32;6804:18;;;6797:60;6874:18;;36718:70:0::1;6544:354:1::0;36718:70:0::1;-1:-1:-1::0;;;;;36799:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;:33;;-1:-1:-1;;36799:33:0::1;36828:4;36799:33:::0;;::::1;::::0;;;36843:16:::1;:30:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36843:30:0::1;::::0;::::1;::::0;;36891:28;;1871:51:1;;;36891:28:0::1;::::0;1844:18:1;36891:28:0::1;;;;;;;;36496:431:::0;:::o;33486:446::-;33618:4;33635:36;33645:6;33653:9;33664:6;33635:9;:36::i;:::-;33682:220;33705:6;8581:10;33753:138;33809:6;33753:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33753:19:0;;;;;;:11;:19;;;;;;;;8581:10;33753:33;;;;;;;;;;:37;:138::i;:::-;33682:8;:220::i;:::-;-1:-1:-1;33920:4:0;33486:446;;;;;:::o;36164:322::-;36258:7;36316;;36305;:18;;36283:110;;;;-1:-1:-1;;;36283:110:0;;7105:2:1;36283:110:0;;;7087:21:1;7144:2;7124:18;;;7117:30;7183:34;7163:18;;;7156:62;-1:-1:-1;;;7234:18:1;;;7227:40;7284:19;;36283:110:0;6903:406:1;36283:110:0;36404:19;36426:10;:8;:10::i;:::-;36404:32;-1:-1:-1;36454:24:0;:7;36404:32;36454:11;:24::i;:::-;36447:31;36164:322;-1:-1:-1;;;36164:322:0:o;38006:473::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38086:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38078:56;;;::::0;-1:-1:-1;;;38078:56:0;;7516:2:1;38078:56:0::1;::::0;::::1;7498:21:1::0;7555:2;7535:18;;;7528:30;7594:25;7574:18;;;7567:53;7637:18;;38078:56:0::1;7314:347:1::0;38078:56:0::1;38150:9;38145:327;38169:9;:16:::0;38165:20;::::1;38145:327;;;38227:7;-1:-1:-1::0;;;;;38211:23:0::1;:9;38221:1;38211:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38211:12:0::1;:23;38207:254;;;38270:9;38280:16:::0;;:20:::1;::::0;38299:1:::1;::::0;38280:20:::1;:::i;:::-;38270:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;38255:9:::1;:12:::0;;-1:-1:-1;;;;;38270:31:0;;::::1;::::0;38265:1;;38255:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;38255:46:0::1;-1:-1:-1::0;;;;;38255:46:0;;::::1;;::::0;;38320:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38359:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38359:28:0::1;::::0;;38406:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38406:15:0;;;;;-1:-1:-1;;;;;;38406:15:0::1;::::0;;;;;38145:327:::1;38006:473:::0;:::o;38207:254::-:1;38187:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38145:327;;;;38006:473:::0;:::o;33940:300::-;8581:10;34055:4;34149:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34149:34:0;;;;;;;;;;34055:4;;34077:133;;34127:7;;34149:50;;34188:10;34149:38;:50::i;39318:319::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;39486:6:::1;:20:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;39517:32:0;;;;39486:20:::1;39517:32:::0;;::::1;::::0;::::1;;::::0;;;39562:7:::1;:22:::0;;;;::::1;39595:34:::0;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;39318:319::o;34879:631::-;8581:10;34931:14;34994:19;;;:11;:19;;;;;;;;34993:20;34971:114;;;;-1:-1:-1;;;34971:114:0;;8534:2:1;34971:114:0;;;8516:21:1;8573:2;8553:18;;;8546:30;8612:34;8592:18;;;8585:62;-1:-1:-1;;;8663:18:1;;;8656:42;8715:19;;34971:114:0;8332:408:1;34971:114:0;35128:12;35155:18;35187:20;35199:7;35187:11;:20::i;:::-;35098:109;;;;;35219:15;35242:113;35268:7;35290:4;35309:10;35334;:8;:10::i;:::-;35242:11;:113::i;:::-;-1:-1:-1;;;;;;;35386:15:0;;;;;;:7;:15;;;;;;35218:137;;-1:-1:-1;35386:28:0;;35218:137;35386:19;:28::i;:::-;-1:-1:-1;;;;;35368:15:0;;;;;;:7;:15;;;;;:46;35435:7;;:20;;35447:7;35435:11;:20::i;:::-;35425:7;:30;35479:10;;:23;;35494:7;35479:14;:23::i;:::-;35466:10;:36;-1:-1:-1;;;;;34879:631:0:o;19274:131::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;19363:34:::1;-1:-1:-1::0;;;;;19363:26:0;::::1;19390:6:::0;19363:26:::1;:34::i;31856:436::-:0;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;31968:15:::1;::::0;-1:-1:-1;;;;;31947:37:0;;::::1;31968:15:::0;;;::::1;;31947:37;;31939:85;;;::::0;-1:-1:-1;;;31939:85:0;;8947:2:1;31939:85:0::1;::::0;::::1;8929:21:1::0;8986:2;8966:18;;;8959:30;9025:34;9005:18;;;8998:62;-1:-1:-1;;;9076:18:1;;;9069:33;9119:19;;31939:85:0::1;8745:399:1::0;31939:85:0::1;32156:15;::::0;:25:::1;::::0;;-1:-1:-1;;;32156:25:0;;;;32097:9;;32156:15;;::::1;-1:-1:-1::0;;;;;32156:15:0::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32138:55:0::1;;32202:4;32209:17;-1:-1:-1::0;;;;;32209:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32138:96;::::0;-1:-1:-1;;;;;;32138:96:0::1;::::0;;;;;;-1:-1:-1;;;;;9635:15:1;;;32138:96:0::1;::::0;::::1;9617:34:1::0;9687:15;;9667:18;;;9660:43;9552:18;;32138:96:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32122:13;:112:::0;;-1:-1:-1;;;;;;32122:112:0::1;-1:-1:-1::0;;;;;32122:112:0;;::::1;;::::0;;32249:15:::1;:35:::0;;-1:-1:-1;;;;;;32249:35:0::1;::::0;;;;::::1;::::0;;;::::1;;::::0;;-1:-1:-1;31856:436:0:o;38487:111::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38556:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38556:34:0::1;38586:4;38556:34;::::0;;38487:111::o;35518:638::-;35636:7;35680;;35669;:18;;35661:62;;;;-1:-1:-1;;;35661:62:0;;9916:2:1;35661:62:0;;;9898:21:1;9955:2;9935:18;;;9928:30;9994:33;9974:18;;;9967:61;10045:18;;35661:62:0;9714:355:1;35661:62:0;35766:12;35793:18;35825:20;35837:7;35825:11;:20::i;:::-;35736:109;;;;;35857:15;35874:23;35903:113;35929:7;35951:4;35970:10;35995;:8;:10::i;35903:113::-;35856:160;;;;;36034:17;36029:120;;-1:-1:-1;36075:7:0;-1:-1:-1;36068:14:0;;-1:-1:-1;;36068:14:0;36029:120;36122:15;-1:-1:-1;36115:22:0;;-1:-1:-1;;;36115:22:0;37666:332;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37747:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37746:21;37738:61;;;::::0;-1:-1:-1;;;37738:61:0;;10276:2:1;37738:61:0::1;::::0;::::1;10258:21:1::0;10315:2;10295:18;;;10288:30;10354:29;10334:18;;;10327:57;10401:18;;37738:61:0::1;10074:351:1::0;37738:61:0::1;-1:-1:-1::0;;;;;37814:16:0;::::1;37833:1;37814:16:::0;;;:7:::1;:16;::::0;;;;;:20;37810:109:::1;;-1:-1:-1::0;;;;;37890:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37870:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37851:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37810:109:::1;-1:-1:-1::0;;;;;37929:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37929:27:0::1;37952:4;37929:27:::0;;::::1;::::0;;;37967:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37967:23:0::1;::::0;;::::1;::::0;;37666:332::o;39145:165::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;39247:6:::1;:16:::0;;::::1;39274:28:::0;;::::1;39247:16;39274:28;-1:-1:-1::0;;39274:28:0;;;39247:16;;;::::1;39274:28:::0;;;;;;;::::1;::::0;;39145:165::o;32680:198::-;-1:-1:-1;;;;;32770:20:0;;32746:7;32770:20;;;:11;:20;;;;;;;;32766:49;;;-1:-1:-1;;;;;;32799:16:0;;;;;:7;:16;;;;;;;32680:198::o;32766:49::-;-1:-1:-1;;;;;32853:16:0;;;;;;:7;:16;;;;;;32833:37;;:19;:37::i;17169:148::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;17276:1:::1;17260:6:::0;;17239:40:::1;::::0;-1:-1:-1;;;;;17260:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17239:40:0;17276:1;;17239:40:::1;17307:1;17290:19:::0;;-1:-1:-1;;;;;;17290:19:0::1;::::0;;17169:148::o;19106:160::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;19214:12:::1;-1:-1:-1::0;;;;;19207:29:0::1;;19237:7;16565::::0;16592:6;-1:-1:-1;;;;;16592:6:0;;16527:79;19237:7:::1;19207:51;::::0;-1:-1:-1;;;;;;19207:51:0::1;::::0;;;;;;-1:-1:-1;;;;;10622:32:1;;;19207:51:0::1;::::0;::::1;10604::1::0;10671:18;;;10664:34;;;10577:18;;19207:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19106:160:::0;;:::o;38847:114::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38916:29:0::1;38948:5;38916:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;38916:37:0::1;::::0;;38847:114::o;32391:87::-;32430:13;32463:7;32456:14;;;;;:::i;34248:400::-;34368:4;34390:228;8581:10;34440:7;34462:145;34519:15;34462:145;;;;;;;;;;;;;;;;;8581:10;34462:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34462:34:0;;;;;;;;;;;;:38;:145::i;18224:385::-;18290:14;;-1:-1:-1;;;;;18290:14:0;18308:10;18290:28;18268:113;;;;-1:-1:-1;;;18268:113:0;;11161:2:1;18268:113:0;;;11143:21:1;11200:2;11180:18;;;11173:30;11239:34;11219:18;;;11212:62;-1:-1:-1;;;11290:18:1;;;11283:33;11333:19;;18268:113:0;10959:399:1;18268:113:0;18418:9;;18400:15;:27;18392:77;;;;-1:-1:-1;;;18392:77:0;;11565:2:1;18392:77:0;;;11547:21:1;11604:2;11584:18;;;11577:30;11643:34;11623:18;;;11616:62;-1:-1:-1;;;11694:18:1;;;11687:35;11739:19;;18392:77:0;11363:401:1;18392:77:0;18514:14;;;18506:6;;18485:44;;-1:-1:-1;;;;;18514:14:0;;;;18506:6;;;;-1:-1:-1;;;;;;;;;;;18485:44:0;;18549:14;;;;18540:23;;-1:-1:-1;;;;;;18540:23:0;;;-1:-1:-1;;;;;18549:14:0;;18540:23;;;;18574:27;;;18224:385::o;32886:199::-;32991:4;33013:42;8581:10;33037:9;33048:6;33013:9;:42::i;39937:172::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;40064:37:::1;40095:5;40064:26;40076:13;40064:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;40047:14;:54:::0;-1:-1:-1;39937:172:0:o;37072:586::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37159:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37151:65;;;::::0;-1:-1:-1;;;37151:65:0;;11971:2:1;37151:65:0::1;::::0;::::1;11953:21:1::0;12010:2;11990:18;;;11983:30;12049:28;12029:18;;;12022:56;12095:18;;37151:65:0::1;11769:350:1::0;37151:65:0::1;37232:9;37227:376;37251:16;:23:::0;37247:27;::::1;37227:376;;;37323:7;-1:-1:-1::0;;;;;37300:30:0::1;:16;37317:1;37300:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37300:19:0::1;:30;37296:296;;;37373:16;37412:23:::0;;:27:::1;::::0;37438:1:::1;::::0;37412:27:::1;:::i;:::-;37373:85;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;37351:16:::1;:19:::0;;-1:-1:-1;;;;;37373:85:0;;::::1;::::0;37368:1;;37351:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;37351:107:0::1;-1:-1:-1::0;;;;;37351:107:0;;::::1;;::::0;;37477:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;37477:34:0::1;::::0;;37530:16:::1;:22:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37530:22:0;;;;;-1:-1:-1;;;;;;37530:22:0::1;::::0;;;;;37571:5:::1;;37296:296;37276:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37227:376;;;-1:-1:-1::0;37618:32:0::1;::::0;-1:-1:-1;;;;;1889:32:1;;1871:51;;37618:32:0::1;::::0;1859:2:1;1844:18;37618:32:0::1;1698:230:1::0;40117:171:0;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;40194:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40194:32:0::1;-1:-1:-1::0;;;;40194:32:0;;::::1;;::::0;;40242:38:::1;::::0;::::1;::::0;::::1;::::0;40218:8;567:14:1;560:22;542:41;;530:2;515:18;;402:187;39793:136:0;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;39885:36:::1;39915:5;39885:25;39897:12;39885:7;;:11;;:25;;;;:::i;:36::-;39870:12;:51:::0;-1:-1:-1;39793:136:0:o;17926:226::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;18007:6:::1;::::0;;;17990:23;;-1:-1:-1;;;;;;17990:23:0;;::::1;-1:-1:-1::0;;;;;18007:6:0;::::1;17990:23;::::0;;;18024:19:::1;::::0;;18066:22:::1;18084:4:::0;18066:15:::1;:22;:::i;:::-;18054:9;:34:::0;18141:1:::1;18125:6:::0;;18104:40:::1;::::0;-1:-1:-1;;;;;18125:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;18104:40:0;18141:1;;18104:40:::1;17926:226:::0;:::o;38606:110::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38673:27:0::1;38703:5;38673:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38673:35:0::1;::::0;;38606:110::o;39645:140::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;39736:29:::1;:41:::0;39645:140::o;17472:281::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17575:22:0;::::1;17553:110;;;::::0;-1:-1:-1;;;17553:110:0;;12459:2:1;17553:110:0::1;::::0;::::1;12441:21:1::0;12498:2;12478:18;;;12471:30;12537:34;12517:18;;;12510:62;-1:-1:-1;;;12588:18:1;;;12581:36;12634:19;;17553:110:0::1;12257:402:1::0;17553:110:0::1;17700:6;::::0;;17679:38:::1;::::0;-1:-1:-1;;;;;17679:38:0;;::::1;::::0;17700:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17679:38:0;::::1;17728:6;:17:::0;;-1:-1:-1;;;;;;17728:17:0::1;-1:-1:-1::0;;;;;17728:17:0;;;::::1;::::0;;;::::1;::::0;;17472:281::o;38969:168::-;16739:6;;-1:-1:-1;;;;;16739:6:0;8581:10;16739:22;16731:67;;;;-1:-1:-1;;;16731:67:0;;;;;;;:::i;:::-;39072:7:::1;:17:::0;;::::1;39100:29:::0;;::::1;39072:17;39100:29;-1:-1:-1::0;;39100:29:0;;;39072:17;;;::::1;39100:29:::0;;;;;;;::::1;::::0;;38969:168::o;43687:371::-;-1:-1:-1;;;;;43814:19:0;;43806:68;;;;-1:-1:-1;;;43806:68:0;;12866:2:1;43806:68:0;;;12848:21:1;12905:2;12885:18;;;12878:30;12944:34;12924:18;;;12917:62;-1:-1:-1;;;12995:18:1;;;12988:34;13039:19;;43806:68:0;12664:400:1;43806:68:0;-1:-1:-1;;;;;43893:21:0;;43885:68;;;;-1:-1:-1;;;43885:68:0;;13271:2:1;43885:68:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;-1:-1:-1;;;13400:18:1;;;13393:32;13442:19;;43885:68:0;13069:398:1;43885:68:0;-1:-1:-1;;;;;43966:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44018:32;;1662:25:1;;;44018:32:0;;1635:18:1;44018:32:0;;;;;;;43687:371;;;:::o;44066:2575::-;-1:-1:-1;;;;;44188:18:0;;44180:68;;;;-1:-1:-1;;;44180:68:0;;13674:2:1;44180:68:0;;;13656:21:1;13713:2;13693:18;;;13686:30;13752:34;13732:18;;;13725:62;-1:-1:-1;;;13803:18:1;;;13796:35;13848:19;;44180:68:0;13472:401:1;44180:68:0;-1:-1:-1;;;;;44267:16:0;;44259:64;;;;-1:-1:-1;;;44259:64:0;;14080:2:1;44259:64:0;;;14062:21:1;14119:2;14099:18;;;14092:30;14158:34;14138:18;;;14131:62;-1:-1:-1;;;14209:18:1;;;14202:33;14252:19;;44259:64:0;13878:399:1;44259:64:0;44351:1;44342:6;:10;44334:64;;;;-1:-1:-1;;;44334:64:0;;14484:2:1;44334:64:0;;;14466:21:1;14523:2;14503:18;;;14496:30;14562:34;14542:18;;;14535:62;-1:-1:-1;;;14613:18:1;;;14606:39;14662:19;;44334:64:0;14282:405:1;44334:64:0;-1:-1:-1;;;;;44418:23:0;;;;;;:17;:23;;;;;;;;44417:24;44409:56;;;;-1:-1:-1;;;44409:56:0;;14894:2:1;44409:56:0;;;14876:21:1;14933:2;14913:18;;;14906:30;-1:-1:-1;;;14952:18:1;;;14945:49;15011:18;;44409:56:0;14692:343:1;44409:56:0;44503:10;44485:29;;;;:17;:29;;;;;;;;44484:30;44476:62;;;;-1:-1:-1;;;44476:62:0;;15242:2:1;44476:62:0;;;15224:21:1;15281:2;15261:18;;;15254:30;-1:-1:-1;;;15300:18:1;;;15293:49;15359:18;;44476:62:0;15040:343:1;44476:62:0;44576:9;44558:28;;;;:17;:28;;;;;;;;44557:29;44549:53;;;;-1:-1:-1;;;44549:53:0;;15590:2:1;44549:53:0;;;15572:21:1;15629:2;15609:18;;;15602:30;-1:-1:-1;;;15648:18:1;;;15641:41;15699:18;;44549:53:0;15388:335:1;44549:53:0;-1:-1:-1;;;;;44620:26:0;;;;;;:20;:26;;;;;;;;44619:27;:56;;;;-1:-1:-1;;;;;;44651:24:0;;;;;;:20;:24;;;;;;;;44650:25;44619:56;44615:339;;;44711:12;;44701:6;:22;;44693:74;;;;-1:-1:-1;;;44693:74:0;;15930:2:1;44693:74:0;;;15912:21:1;15969:2;15949:18;;;15942:30;16008:34;15988:18;;;15981:62;-1:-1:-1;;;16059:18:1;;;16052:38;16107:19;;44693:74:0;15728:404:1;44693:74:0;44805:13;;-1:-1:-1;;;;;44799:19:0;;;44805:13;;44799:19;44796:147;;44873:14;;44864:6;44848:13;44858:2;44848:9;:13::i;:::-;:22;;;;:::i;:::-;:39;44840:87;;;;-1:-1:-1;;;44840:87:0;;16339:2:1;44840:87:0;;;16321:21:1;16378:2;16358:18;;;16351:30;16417:34;16397:18;;;16390:62;-1:-1:-1;;;16468:18:1;;;16461:33;16511:19;;44840:87:0;16137:399:1;44840:87:0;45250:28;45281:24;45299:4;45281:9;:24::i;:::-;45250:55;;45346:12;;45322:20;:36;45318:104;;-1:-1:-1;45398:12:0;;45318:104;45498:29;;45461:66;;;;;;;45556:53;;-1:-1:-1;45593:16:0;;-1:-1:-1;;;45593:16:0;;;;45592:17;45556:53;:91;;;;-1:-1:-1;45634:13:0;;-1:-1:-1;;;;;45626:21:0;;;45634:13;;45626:21;;45556:91;:129;;;;-1:-1:-1;45664:21:0;;-1:-1:-1;;;45664:21:0;;;;45556:129;45538:318;;;45735:29;;45712:52;;45808:36;45823:20;45808:14;:36::i;:::-;-1:-1:-1;;;;;46050:24:0;;45929:12;46050:24;;;:18;:24;;;;;;45944:4;;46050:24;;;:50;;-1:-1:-1;;;;;;46078:22:0;;;;;;:18;:22;;;;;;;;46050:50;46049:102;;;-1:-1:-1;46114:13:0;;-1:-1:-1;;;;;46106:21:0;;;46114:13;;46106:21;;;;:44;;-1:-1:-1;46137:13:0;;-1:-1:-1;;;;;46131:19:0;;;46137:13;;46131:19;;46106:44;46045:469;;;-1:-1:-1;46178:5:0;46045:469;;;46259:13;;-1:-1:-1;;;;;46251:21:0;;;46259:13;;46251:21;:55;;;;-1:-1:-1;46290:15:0;;-1:-1:-1;;;;;46276:30:0;;;46290:15;;;;;46276:30;;46251:55;46248:103;;;46327:8;43229:6;:10;43219:7;:20;;43229:10;43266:16;;;43229:10;43266:16;;;43250:32;;;-1:-1:-1;;43250:32:0;;;43229:10;;43250:32;;;;;;;;;;43182:110;46327:8;46408:13;;-1:-1:-1;;;;;46402:19:0;;;46408:13;;46402:19;:55;;;;-1:-1:-1;46441:15:0;;-1:-1:-1;;;;;46425:32:0;;;46441:15;;;;;46425:32;;46402:55;46398:105;;;46478:9;43348:7;:11;43338:7;:21;;43348:11;43386:17;;;43348:11;43386:17;;;43370:33;;;-1:-1:-1;;43370:33:0;;;43348:11;;43370:33;;;;;;;;;;43300:111;46478:9;46592:41;46607:4;46613:2;46617:6;46625:7;46592:14;:41::i;:::-;44169:2472;;;44066:2575;;;:::o;4793:226::-;4913:7;4949:12;4941:6;;;;4933:29;;;;-1:-1:-1;;;4933:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4973:9:0;4985:5;4989:1;4985;:5;:::i;:::-;4973:17;4793:226;-1:-1:-1;;;;;4793:226:0:o;41557:164::-;41599:7;41620:15;41637;41656:19;:17;:19::i;:::-;41619:56;;-1:-1:-1;41619:56:0;-1:-1:-1;41693:20:0;41619:56;;41693:11;:20::i;:::-;41686:27;;;;41557:164;:::o;6225:132::-;6283:7;6310:39;6314:1;6317;6310:39;;;;;;;;;;;;;;;;;:3;:39::i;3890:181::-;3948:7;;3980:5;3984:1;3980;:5;:::i;:::-;3968:17;;4009:1;4004;:6;;3996:46;;;;-1:-1:-1;;;3996:46:0;;16743:2:1;3996:46:0;;;16725:21:1;16782:2;16762:18;;;16755:30;16821:29;16801:18;;;16794:57;16868:18;;3996:46:0;16541:351:1;40545:414:0;40646:7;40668;40690;40725:12;40740:24;40756:7;40740:15;:24::i;:::-;40725:39;;40775:18;40796:30;40818:7;40796:21;:30::i;:::-;40775:51;-1:-1:-1;40837:23:0;40863:33;40775:51;40863:17;:7;40875:4;40863:11;:17::i;:::-;:21;;:33::i;:::-;40837:59;40934:4;;-1:-1:-1;40940:10:0;;-1:-1:-1;40545:414:0;;-1:-1:-1;;;40545:414:0:o;40967:582::-;41166:7;;;;41263:24;:7;41275:11;41263;:24::i;:::-;41245:42;-1:-1:-1;41298:12:0;41313:21;:4;41322:11;41313:8;:21::i;:::-;41298:36;-1:-1:-1;41345:18:0;41366:27;:10;41381:11;41366:14;:27::i;:::-;41345:48;-1:-1:-1;41404:23:0;41430:61;41345:48;41430:31;:7;41456:4;41430:25;:31::i;:61::-;41510:7;;;;-1:-1:-1;41536:4:0;;-1:-1:-1;40967:582:0;;-1:-1:-1;;;;;;;40967:582:0:o;4354:136::-;4412:7;4439:43;4443:1;4446;4439:43;;;;;;;;;;;;;;;;;:3;:43::i;11105:469::-;11234:6;11209:21;:31;;11187:110;;;;-1:-1:-1;;;11187:110:0;;17099:2:1;11187:110:0;;;17081:21:1;17138:2;17118:18;;;17111:30;17177:31;17157:18;;;17150:59;17226:18;;11187:110:0;16897:353:1;11187:110:0;11389:12;11407:9;-1:-1:-1;;;;;11407:14:0;11429:6;11407:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11388:52;;;11473:7;11451:115;;;;-1:-1:-1;;;11451:115:0;;17667:2:1;11451:115:0;;;17649:21:1;17706:2;17686:18;;;17679:30;17745:34;17725:18;;;17718:62;17816:28;17796:18;;;17789:56;17862:19;;11451:115:0;17465:422:1;5278:471:0;5336:7;5581:6;5577:47;;-1:-1:-1;5611:1:0;5604:8;;5577:47;5636:9;5648:5;5652:1;5648;:5;:::i;:::-;5636:17;-1:-1:-1;5681:1:0;5672:5;5676:1;5636:17;5672:5;:::i;:::-;:10;5664:56;;;;-1:-1:-1;;;5664:56:0;;18489:2:1;5664:56:0;;;18471:21:1;18528:2;18508:18;;;18501:30;18567:34;18547:18;;;18540:62;-1:-1:-1;;;18618:18:1;;;18611:31;18659:19;;5664:56:0;18287:397:1;46649:977:0;30866:16;:23;;-1:-1:-1;;;;30866:23:0;-1:-1:-1;;;30866:23:0;;;;46800:27:::1;:20:::0;46825:1:::1;46800:24;:27::i;:::-;46785:42:::0;-1:-1:-1;46838:17:0::1;46858:30;:20:::0;46785:42;46858:24:::1;:30::i;:::-;46838:50:::0;-1:-1:-1;47191:21:0::1;47257:22;47274:4:::0;47257:16:::1;:22::i;:::-;47410:18;47431:41;:21;47457:14:::0;47431:25:::1;:41::i;:::-;47410:62;;47522:35;47535:9;47546:10;47522:12;:35::i;:::-;47575:43;::::0;;18891:25:1;;;18947:2;18932:18;;18925:34;;;18975:18;;;18968:34;;;47575:43:0::1;::::0;18879:2:1;18864:18;47575:43:0::1;;;;;;;-1:-1:-1::0;;30912:16:0;:24;;-1:-1:-1;;;;30912:24:0;;;-1:-1:-1;;;46649:977:0:o;48831:834::-;48987:7;48982:41;;49009:14;:12;:14::i;:::-;-1:-1:-1;;;;;49040:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49064:22:0;;;;;;:11;:22;;;;;;;;49063:23;49040:46;49036:597;;;49103:48;49125:6;49133:9;49144:6;49103:21;:48::i;:::-;49036:597;;;-1:-1:-1;;;;;49174:19:0;;;;;;:11;:19;;;;;;;;49173:20;:46;;;;-1:-1:-1;;;;;;49197:22:0;;;;;;:11;:22;;;;;;;;49173:46;49169:464;;;49236:46;49256:6;49264:9;49275:6;49236:19;:46::i;49169:464::-;-1:-1:-1;;;;;49305:19:0;;;;;;:11;:19;;;;;;;;49304:20;:47;;;;-1:-1:-1;;;;;;49329:22:0;;;;;;:11;:22;;;;;;;;49328:23;49304:47;49300:333;;;49368:44;49386:6;49394:9;49405:6;49368:17;:44::i;49300:333::-;-1:-1:-1;;;;;49434:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49457:22:0;;;;;;:11;:22;;;;;;;;49434:45;49430:203;;;49496:48;49518:6;49526:9;49537:6;49496:21;:48::i;49430:203::-;49577:44;49595:6;49603:9;49614:6;49577:17;:44::i;:::-;49643:14;:12;:14::i;:::-;48831:834;;;;:::o;41729:605::-;41827:7;;41863;;41780;;;;;41881:338;41905:9;:16;41901:20;;41881:338;;;41989:7;41965;:21;41973:9;41983:1;41973:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41973:12:0;41965:21;;;;;;;;;;;;;:31;;:83;;;42041:7;42017;:21;42025:9;42035:1;42025:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42025:12:0;42017:21;;;;;;;;;;;;;:31;41965:83;41943:146;;;42072:7;;42081;;42064:25;;;;;;;41729:605;;:::o;41943:146::-;42114:34;42126:7;:21;42134:9;42144:1;42134:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42134:12:0;42126:21;;;;;;;;;;;;;42114:7;;:11;:34::i;:::-;42104:44;;42173:34;42185:7;:21;42193:9;42203:1;42193:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42193:12:0;42185:21;;;;;;;;;;;;;42173:7;;:11;:34::i;:::-;42163:44;-1:-1:-1;41923:3:0;;;;:::i;:::-;;;;41881:338;;;-1:-1:-1;42255:7:0;;42243;;:20;;:11;:20::i;:::-;42233:7;:30;42229:61;;;42273:7;;42282;;42265:25;;;;;;41729:605;;:::o;42229:61::-;42309:7;;42318;;-1:-1:-1;41729:605:0;-1:-1:-1;41729:605:0:o;6853:312::-;6973:7;7008:12;7001:5;6993:28;;;;-1:-1:-1;;;6993:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7032:9:0;7044:5;7048:1;7044;:5;:::i;42705:130::-;42808:7;;42769;;42796:31;;42821:5;;42796:20;;:7;;42808;;42796:11;:20::i;42843:174::-;42984:13;;42940:7;;42972:37;;43003:5;;42972:26;;:7;;42984:13;;;;;42972:11;:26::i;47634:589::-;47784:16;;;47798:1;47784:16;;;;;;;;47760:21;;47784:16;;;;;;;;;;-1:-1:-1;47784:16:0;47760:40;;47829:4;47811;47816:1;47811:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47811:23:0;;;-1:-1:-1;;;;;47811:23:0;;;;;47855:15;;;;;;;;;-1:-1:-1;;;;;47855:15:0;-1:-1:-1;;;;;47855:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47845:4;47850:1;47845:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47845:32:0;;;:7;;;;;;;;;:32;47922:15;;47890:62;;47907:4;;47922:15;;;;47940:11;47890:8;:62::i;:::-;47991:15;;:224;;-1:-1:-1;;;47991:224:0;;:15;;;;-1:-1:-1;;;;;47991:15:0;;:66;;:224;;48072:11;;48098:1;;48142:4;;48169;;48189:15;;47991:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48231:519;48411:15;;48379:62;;48396:4;;48411:15;;;-1:-1:-1;;;;;48411:15:0;48429:11;48379:8;:62::i;:::-;48484:15;;:258;;-1:-1:-1;;;48484:258:0;;48556:4;48484:258;;;20471:34:1;;;20521:18;;;20514:34;;;48602:1:0;20564:18:1;;;20557:34;;;20607:18;;;20600:34;20650:19;;;20643:44;48716:15:0;20703:19:1;;;20696:35;48484:15:0;;;;-1:-1:-1;;;;;48484:15:0;;:31;;48523:9;;20405:19:1;;48484:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48231:519;;:::o;43025:149::-;43072:7;;;;:12;:34;;;;-1:-1:-1;43088:13:0;;;;;;;:18;43072:34;43068:47;;;43025:149::o;43068:47::-;43127:7;:11;;-1:-1:-1;;43149:17:0;;;43025:149::o;51196:777::-;51347:23;51385:12;51412:18;51444:20;51456:7;51444:11;:20::i;:::-;51332:132;;;;;;51476:15;51493:23;51518:12;51534:113;51560:7;51582:4;51601:10;51626;:8;:10::i;51534:113::-;-1:-1:-1;;;;;51678:15:0;;;;;;:7;:15;;;;;;51475:172;;-1:-1:-1;51475:172:0;;-1:-1:-1;51475:172:0;-1:-1:-1;51678:28:0;;51698:7;51678:19;:28::i;:::-;-1:-1:-1;;;;;51660:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51735:7;:15;;;;:28;;51755:7;51735:19;:28::i;:::-;-1:-1:-1;;;;;51717:15:0;;;;;;;:7;:15;;;;;;:46;;;;51795:18;;;;;;;:39;;51818:15;51795:22;:39::i;:::-;-1:-1:-1;;;;;51774:18:0;;;;;;:7;:18;;;;;:60;51845:26;51860:10;51845:14;:26::i;:::-;51882:23;51894:4;51900;51882:11;:23::i;:::-;51938:9;-1:-1:-1;;;;;51921:44:0;51930:6;-1:-1:-1;;;;;51921:44:0;;51949:15;51921:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;51921:44:0;;;;;;;;51321:652;;;;;;51196:777;;;:::o;50399:789::-;50548:23;50586:12;50613:18;50645:20;50657:7;50645:11;:20::i;:::-;50533:132;;;;;;50677:15;50694:23;50719:12;50735:113;50761:7;50783:4;50802:10;50827;:8;:10::i;50735:113::-;-1:-1:-1;;;;;50879:15:0;;;;;;:7;:15;;;;;;50676:172;;-1:-1:-1;50676:172:0;;-1:-1:-1;50676:172:0;-1:-1:-1;50879:28:0;;50676:172;50879:19;:28::i;:::-;-1:-1:-1;;;;;50861:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50939:18;;;;;:7;:18;;;;;:39;;50962:15;50939:22;:39::i;:::-;-1:-1:-1;;;;;50918:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51010:7;:18;;;;:39;;51033:15;51010:22;:39::i;49673:716::-;49820:23;49858:12;49885:18;49917:20;49929:7;49917:11;:20::i;:::-;49805:132;;;;;;49949:15;49966:23;49991:12;50007:113;50033:7;50055:4;50074:10;50099;:8;:10::i;50007:113::-;-1:-1:-1;;;;;50151:15:0;;;;;;:7;:15;;;;;;49948:172;;-1:-1:-1;49948:172:0;;-1:-1:-1;49948:172:0;-1:-1:-1;50151:28:0;;49948:172;50151:19;:28::i;51981:848::-;52132:23;52170:12;52197:18;52229:20;52241:7;52229:11;:20::i;:::-;52117:132;;;;;;52261:15;52278:23;52303:12;52319:113;52345:7;52367:4;52386:10;52411;:8;:10::i;52319:113::-;-1:-1:-1;;;;;52463:15:0;;;;;;:7;:15;;;;;;52260:172;;-1:-1:-1;52260:172:0;;-1:-1:-1;52260:172:0;-1:-1:-1;52463:28:0;;52483:7;52463:19;:28::i;:::-;-1:-1:-1;;;;;52445:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52520:7;:15;;;;:28;;52540:7;52520:19;:28::i;42342:355::-;42405:19;42427:10;:8;:10::i;:::-;42405:32;-1:-1:-1;42448:18:0;42469:27;:10;42405:32;42469:14;:27::i;:::-;42548:4;42532:22;;;;:7;:22;;;;;;42448:48;;-1:-1:-1;42532:38:0;;42448:48;42532:26;:38::i;:::-;42523:4;42507:22;;;;:7;:22;;;;;;;;:63;;;;42585:11;:26;;;;;;42581:108;;;42667:4;42651:22;;;;:7;:22;;;;;;:38;;42678:10;42651:26;:38::i;:::-;42642:4;42626:22;;;;:7;:22;;;;;:63;42394:303;;42342:355;:::o;40390:147::-;40468:7;;:17;;40480:4;40468:11;:17::i;:::-;40458:7;:27;40509:10;;:20;;40524:4;40509:14;:20::i;:::-;40496:10;:33;-1:-1:-1;;40390:147:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:247::-;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;594:597::-;706:4;735:2;764;753:9;746:21;796:6;790:13;839:6;834:2;823:9;819:18;812:34;864:1;874:140;888:6;885:1;882:13;874:140;;;983:14;;;979:23;;973:30;949:17;;;968:2;945:26;938:66;903:10;;874:140;;;1032:6;1029:1;1026:13;1023:91;;;1102:1;1097:2;1088:6;1077:9;1073:22;1069:31;1062:42;1023:91;-1:-1:-1;1175:2:1;1154:15;-1:-1:-1;;1150:29:1;1135:45;;;;1182:2;1131:54;;594:597;-1:-1:-1;;;594:597:1:o;1196:315::-;1264:6;1272;1325:2;1313:9;1304:7;1300:23;1296:32;1293:52;;;1341:1;1338;1331:12;1293:52;1380:9;1367:23;1399:31;1424:5;1399:31;:::i;:::-;1449:5;1501:2;1486:18;;;;1473:32;;-1:-1:-1;;;1196:315:1:o;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2661:180::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;-1:-1:-1;2812:23:1;;2661:180;-1:-1:-1;2661:180:1:o;3035:156::-;3101:20;;3161:4;3150:16;;3140:27;;3130:55;;3181:1;3178;3171:12;3130:55;3035:156;;;:::o;3196:393::-;3274:6;3282;3290;3298;3351:3;3339:9;3330:7;3326:23;3322:33;3319:53;;;3368:1;3365;3358:12;3319:53;3391:27;3408:9;3391:27;:::i;:::-;3381:37;;3437:36;3469:2;3458:9;3454:18;3437:36;:::i;:::-;3427:46;;3492:36;3524:2;3513:9;3509:18;3492:36;:::i;:::-;3482:46;;3547:36;3579:2;3568:9;3564:18;3547:36;:::i;:::-;3537:46;;3196:393;;;;;;;:::o;3854:118::-;3940:5;3933:13;3926:21;3919:5;3916:32;3906:60;;3962:1;3959;3952:12;3977:309;4042:6;4050;4103:2;4091:9;4082:7;4078:23;4074:32;4071:52;;;4119:1;4116;4109:12;4071:52;4155:9;4142:23;4132:33;;4215:2;4204:9;4200:18;4187:32;4228:28;4250:5;4228:28;:::i;:::-;4275:5;4265:15;;;3977:309;;;;;:::o;4499:252::-;4563:6;4571;4624:2;4612:9;4603:7;4599:23;4595:32;4592:52;;;4640:1;4637;4630:12;4592:52;4663:27;4680:9;4663:27;:::i;:::-;4653:37;;4709:36;4741:2;4730:9;4726:18;4709:36;:::i;:::-;4699:46;;4499:252;;;;;:::o;4756:241::-;4812:6;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:28;4961:5;4939:28;:::i;5002:388::-;5070:6;5078;5131:2;5119:9;5110:7;5106:23;5102:32;5099:52;;;5147:1;5144;5137:12;5099:52;5186:9;5173:23;5205:31;5230:5;5205:31;:::i;:::-;5255:5;-1:-1:-1;5312:2:1;5297:18;;5284:32;5325:33;5284:32;5325:33;:::i;5395:380::-;5474:1;5470:12;;;;5517;;;5538:61;;5592:4;5584:6;5580:17;5570:27;;5538:61;5645:2;5637:6;5634:14;5614:18;5611:38;5608:161;;;5691:10;5686:3;5682:20;5679:1;5672:31;5726:4;5723:1;5716:15;5754:4;5751:1;5744:15;5608:161;;5395:380;;;:::o;5780:356::-;5982:2;5964:21;;;6001:18;;;5994:30;6060:34;6055:2;6040:18;;6033:62;6127:2;6112:18;;5780:356::o;7666:127::-;7727:10;7722:3;7718:20;7715:1;7708:31;7758:4;7755:1;7748:15;7782:4;7779:1;7772:15;7798:127;7859:10;7854:3;7850:20;7847:1;7840:31;7890:4;7887:1;7880:15;7914:4;7911:1;7904:15;7930:125;7970:4;7998:1;7995;7992:8;7989:34;;;8003:18;;:::i;:::-;-1:-1:-1;8040:9:1;;7930:125::o;8060:127::-;8121:10;8116:3;8112:20;8109:1;8102:31;8152:4;8149:1;8142:15;8176:4;8173:1;8166:15;8192:135;8231:3;-1:-1:-1;;8252:17:1;;8249:43;;;8272:18;;:::i;:::-;-1:-1:-1;8319:1:1;8308:13;;8192:135::o;9149:251::-;9219:6;9272:2;9260:9;9251:7;9247:23;9243:32;9240:52;;;9288:1;9285;9278:12;9240:52;9320:9;9314:16;9339:31;9364:5;9339:31;:::i;10709:245::-;10776:6;10829:2;10817:9;10808:7;10804:23;10800:32;10797:52;;;10845:1;10842;10835:12;10797:52;10877:9;10871:16;10896:28;10918:5;10896:28;:::i;12124:128::-;12164:3;12195:1;12191:6;12188:1;12185:13;12182:39;;;12201:18;;:::i;:::-;-1:-1:-1;12237:9:1;;12124:128::o;17892:168::-;17932:7;17998:1;17994;17990:6;17986:14;17983:1;17980:21;17975:1;17968:9;17961:17;17957:45;17954:71;;;18005:18;;:::i;:::-;-1:-1:-1;18045:9:1;;17892:168::o;18065:217::-;18105:1;18131;18121:132;;18175:10;18170:3;18166:20;18163:1;18156:31;18210:4;18207:1;18200:15;18238:4;18235:1;18228:15;18121:132;-1:-1:-1;18267:9:1;;18065:217::o;19145:980::-;19407:4;19455:3;19444:9;19440:19;19486:6;19475:9;19468:25;19512:2;19550:6;19545:2;19534:9;19530:18;19523:34;19593:3;19588:2;19577:9;19573:18;19566:31;19617:6;19652;19646:13;19683:6;19675;19668:22;19721:3;19710:9;19706:19;19699:26;;19760:2;19752:6;19748:15;19734:29;;19781:1;19791:195;19805:6;19802:1;19799:13;19791:195;;;19870:13;;-1:-1:-1;;;;;19866:39:1;19854:52;;19961:15;;;;19926:12;;;;19902:1;19820:9;19791:195;;;-1:-1:-1;;;;;;;20042:32:1;;;;20037:2;20022:18;;20015:60;-1:-1:-1;;;20106:3:1;20091:19;20084:35;20003:3;19145:980;-1:-1:-1;;;19145:980:1:o;20742:306::-;20830:6;20838;20846;20899:2;20887:9;20878:7;20874:23;20870:32;20867:52;;;20915:1;20912;20905:12;20867:52;20944:9;20938:16;20928:26;;20994:2;20983:9;20979:18;20973:25;20963:35;;21038:2;21027:9;21023:18;21017:25;21007:35;;20742:306;;;;;:::o

Swarm Source

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