ETH Price: $2,583.59 (-2.79%)
Gas: 0.96 Gwei

Token

PunkedApe (PAPE)
 

Overview

Max Total Supply

1,000,000,000 PAPE

Holders

135

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
254,237.181100011 PAPE

Value
$0.00
0x8d502471792512c9f8197fc28B6A6D5026bb7437
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:
PunkedApe

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-30
*/

//SPDX-License-Identifier: BUSL-1.
pragma solidity ^0.6.12;

interface IERC20 {
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}
 
/**
 * @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 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() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
 
    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
 
    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
 
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(
            _previousOwner == msg.sender,
            "You don't have permission to unlock"
        );
        require(now > _lockTime, "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}
 
// 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 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 PunkedApe is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
 
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
 
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) public _isExcludedFromMax;
    mapping(address => bool) private _isExcluded;
    address[] private _excluded;
 
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
 
    address private _devAddress = 0xE0c4410F5f277FB2514C108D81130B38cAA43534;
 
    string private _name = "PunkedApe";
    string private _symbol = "PAPE";
    uint8 private _decimals = 9;
 
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
 
    uint256 public _sellTaxFee = 0;
    uint256 private _previousSellTaxFee = _taxFee;
 
    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;
 
    uint256 public _sellLiquidityFee = 0;
    uint256 private _previousSellLiquidityFee = _liquidityFee;
 
    uint256 public _devFee = 0;
    uint256 private _previousDevFee = _devFee;
 
    uint256 public _sellDevFee = 0;
    uint256 private _previousSellDevFee = _devFee;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
 
    uint256 public _maxTxAmount = 1 * 10**9 * 10**9;
    uint256 public _maxWalletToken = 1 * 10**9 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5 * 10**7 * 10**9;
 
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
 
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
 
    constructor() public {
        _rOwned[_msgSender()] = _rTotal;
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
 
        // exclude owner, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_devAddress] = true;
 
        _isExcludedFromMax[owner()] = true;
        _isExcludedFromMax[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
 
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
 
    function name() public view returns (string memory) {
        return _name;
    }
 
    function symbol() public view returns (string memory) {
        return _symbol;
    }
 
    function decimals() public view returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }
 
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
 
    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
 
    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }
 
    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }
 
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
 
    function devAddress() public view returns (address) {
        return _devAddress;
    }
 
    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
 
        (, uint256 tFee, uint256 tLiquidity, uint256 tDev) = _getTValues(
            tAmount,
            false
        );
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _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 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 _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _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);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
 
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
 
    function excludeFromMax(address account) public onlyOwner {
        _isExcludedFromMax[account] = true;
    }
 
    function includeInMax(address account) public onlyOwner {
        _isExcludedFromMax[account] = false;
    }
 
    function setTheTaxFeePercent(uint256 taxFee) external onlyOwner {
        _taxFee = taxFee;
    }
 
    function setTheSellTaxFeePercent(uint256 taxFee) external onlyOwner {
        _sellTaxFee = taxFee;
    }
 
    function setTheLiquidityFeePercent(uint256 liquidityFee)
        external
        onlyOwner
    {
        _liquidityFee = liquidityFee;
    }
 
    function setTheSellLiquidityFeePercent(uint256 liquidityFee)
        external
        onlyOwner
    {
        _sellLiquidityFee = liquidityFee;
    }
 
    function setTheDevFeePercent(uint256 devFee) external onlyOwner {
        _devFee = devFee;
    }
 
    function setTheSellDevFeePercent(uint256 devFee) external onlyOwner {
        _sellDevFee = devFee;
    }
 
    function setMultipleFeePercent(
        uint256 taxFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        _taxFee = taxFee;
        _liquidityFee = liquidityFee;
        _devFee = devFee;
    }
 
    function setMultipleExtFeePercent(
        uint256 taxFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        _sellTaxFee = taxFee;
        _sellLiquidityFee = liquidityFee;
        _sellDevFee = devFee;
    }
 
    function setTheMaxTrans(uint256 maxTxPercent) external onlyOwner {
        require(maxTxPercent > 0, "Cannot set to 0");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }
 
    function setTheMaxWal(uint256 maxWalletPercent) external onlyOwner {
        require(maxWalletPercent > 0, "Cannot set to 0");
        _maxWalletToken = _tTotal.mul(maxWalletPercent).div(10**2);
    }
 
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
 
    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}
 
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
 
    function _getTValues(uint256 tAmount, bool selling)
        public
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount, selling);
        uint256 tLiquidity = calculateLiquidityFee(tAmount, selling);
        uint256 tDev = calculateDevFee(tAmount, selling);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tDev);
 
        return (tTransferAmount, tFee, tLiquidity, tDev);
    }
 
    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tDev,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rDev);
        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 _takeDevFee(uint256 tDev) private {
        uint256 currentRate = _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[_devAddress] = _rOwned[_devAddress].add(rDev);
        if (_isExcluded[_devAddress])
            _tOwned[_devAddress] = _tOwned[_devAddress].add(tDev);
    }
 
    function calculateTaxFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 tFee = selling ? _sellTaxFee : _taxFee;
        return _amount.mul(tFee).div(10**2);
    }
 
    function calculateLiquidityFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 lFee = selling ? _sellLiquidityFee : _liquidityFee;
        return _amount.mul(lFee).div(10**2);
    }
 
    function calculateDevFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 dFee = selling ? _sellDevFee : _devFee;
        return _amount.mul(dFee).div(10**2);
    }
 
    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;
 
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousDevFee = _devFee;
 
        _previousSellTaxFee = _sellTaxFee;
        _previousSellLiquidityFee = _sellLiquidityFee;
        _previousSellDevFee = _sellDevFee;
 
        _taxFee = 0;
        _liquidityFee = 0;
        _devFee = 0;
 
        _sellTaxFee = 0;
        _sellLiquidityFee = 0;
        _sellDevFee = 0;
    }
 
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _devFee = _previousDevFee;
 
        _sellTaxFee = _previousSellTaxFee;
        _sellLiquidityFee = _previousSellLiquidityFee;
        _sellDevFee = _previousSellDevFee;
    }
 
    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }
 
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (!_isExcludedFromMax[from] && !_isExcludedFromMax[to])
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
 
        if (!_isExcludedFromMax[to] && to != uniswapV2Pair) {
            uint256 heldTokens = balanceOf(to);
            require(
                (heldTokens + amount) <= _maxWalletToken,
                "Total Holding is currently limited, you can not buy that much."
            );
        }
 
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
 
        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }
 
        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
 
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
 
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
 
        _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);
        }
 
        if (!takeFee) restoreAllFee();
    }
 
    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"selling","type":"bool"}],"name":"_getTValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMax","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":"includeInMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setMultipleExtFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setMultipleFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setTheDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTheLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setTheMaxTrans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"name":"setTheMaxWal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setTheSellDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTheSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTheSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTheTaxFeePercent","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"}]

670de0b6b3a7640000600a5567081ad01a501bffff19600b55600d80546001600160a01b03191673e0c4410f5f277fb2514c108d81130b38caa43534179055610100604052600960c08190526850756e6b656441706560b81b60e09081526200006c91600e919062000498565b50604080518082019091526004808252635041504560e01b60209092019182526200009a91600f9162000498565b506010805460ff191660091790556000601181905560128190556013819055601481905560158190556016819055601781905560188190556019819055601a819055601b819055601c55601d805461ff001916610100179055670de0b6b3a7640000601e819055601f5566b1a2bc2ec500006020553480156200011c57600080fd5b5060006200012962000485565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b54600360006200018462000485565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fb57600080fd5b505afa15801562000210573d6000803e3d6000fd5b505050506040513d60208110156200022757600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200027857600080fd5b505afa1580156200028d573d6000803e3d6000fd5b505050506040513d6020811015620002a457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b505050506040513d60208110156200032357600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200035062000489565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600d54909116835290822080549093168117909255600790620003b762000489565b6001600160a01b031681526020808201929092526040016000908120805493151560ff19948516179055737a250d5630b4cf539739df2c5dacb4c659f2488d9052600790527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f805490911660011790556200043162000485565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35062000534565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004db57805160ff19168380011785556200050b565b828001600101855582156200050b579182015b828111156200050b578251825591602001919060010190620004ee565b50620005199291506200051d565b5090565b5b808211156200051957600081556001016200051e565b60805160601c60a05160601c61345f620005956000398061118f528061213b52806122025280612cbb5280612e305280612f205280612fab525080610d2452806129b25280612a6a5280612a915280612b775280612bde525061345f6000f3fe60806040526004361061031e5760003560e01c806378109e54116101ab578063aa45026b116100f7578063c9ea304c11610095578063ea2f0b371161006f578063ea2f0b3714610b48578063f2fde38b14610b7b578063f4b8c14d14610bae578063fddf33af14610be157610325565b8063c9ea304c14610aad578063dd46706414610ae3578063dd62ed3e14610b0d57610325565b8063b6cee10e116100d1578063b6cee10e14610a0f578063c49b9a8014610a39578063c5495c0014610a65578063c9cf778914610a9857610325565b8063aa45026b146109bb578063ad85cd98146109d0578063b6c52324146109fa57610325565b80638da5cb5b11610164578063a114f9241161013e578063a114f92414610901578063a457c2d714610934578063a69df4b51461096d578063a9059cbb1461098257610325565b80638da5cb5b146108ad57806395d89b41146108c25780639944a998146108d757610325565b806378109e54146107b95780637d1db4a5146107ce5780637e89ad4c146107e357806388790a681461080d57806388e9b5ac1461082257806388f820201461087a57610325565b80633b124fe71161026a57806352390c021161022357806362042091116101fd57806362042091146107325780636bc87c3a1461075c57806370a0823114610771578063715018a6146107a457610325565b806352390c02146106965780635342acb4146106c957806361e134b2146106fc57610325565b80633b124fe7146105c8578063437823ec146105dd5780634549b0391461061057806349bd5a5e146106425780634a74bb02146106575780634ae738501461066c57610325565b8063200a692d116102d7578063313ce567116102b1578063313ce5671461051c5780633685d41914610547578063395093511461057a5780633ad10ef6146105b357610325565b8063200a692d1461049a57806323b872dd146104af5780632d838119146104f257610325565b806306fdde031461032a578063095b207f146103b4578063095ea7b3146103e057806313114a9d1461042d5780631694505e1461045457806318160ddd1461048557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c0b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610379578181015183820152602001610361565b50505050905090810190601f1680156103a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103c057600080fd5b506103de600480360360208110156103d757600080fd5b5035610ca1565b005b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610cfe565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d1c565b60408051918252519081900360200190f35b34801561046057600080fd5b50610469610d22565b604080516001600160a01b039092168252519081900360200190f35b34801561049157600080fd5b50610442610d46565b3480156104a657600080fd5b50610442610d4c565b3480156104bb57600080fd5b50610419600480360360608110156104d257600080fd5b506001600160a01b03813581169160208101359091169060400135610d52565b3480156104fe57600080fd5b506104426004803603602081101561051557600080fd5b5035610dd9565b34801561052857600080fd5b50610531610e3b565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b506103de6004803603602081101561056a57600080fd5b50356001600160a01b0316610e44565b34801561058657600080fd5b506104196004803603604081101561059d57600080fd5b506001600160a01b038135169060200135611005565b3480156105bf57600080fd5b50610469611053565b3480156105d457600080fd5b50610442611062565b3480156105e957600080fd5b506103de6004803603602081101561060057600080fd5b50356001600160a01b0316611068565b34801561061c57600080fd5b506104426004803603604081101561063357600080fd5b508035906020013515156110e4565b34801561064e57600080fd5b5061046961118d565b34801561066357600080fd5b506104196111b1565b34801561067857600080fd5b506103de6004803603602081101561068f57600080fd5b50356111bf565b3480156106a257600080fd5b506103de600480360360208110156106b957600080fd5b50356001600160a01b031661121c565b3480156106d557600080fd5b50610419600480360360208110156106ec57600080fd5b50356001600160a01b03166113a2565b34801561070857600080fd5b506103de6004803603606081101561071f57600080fd5b50803590602081013590604001356113c0565b34801561073e57600080fd5b506103de6004803603602081101561075557600080fd5b5035611426565b34801561076857600080fd5b50610442611483565b34801561077d57600080fd5b506104426004803603602081101561079457600080fd5b50356001600160a01b0316611489565b3480156107b057600080fd5b506103de6114eb565b3480156107c557600080fd5b5061044261157b565b3480156107da57600080fd5b50610442611581565b3480156107ef57600080fd5b506103de6004803603602081101561080657600080fd5b5035611587565b34801561081957600080fd5b5061044261164c565b34801561082e57600080fd5b506108546004803603604081101561084557600080fd5b50803590602001351515611652565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561088657600080fd5b506104196004803603602081101561089d57600080fd5b50356001600160a01b03166116b5565b3480156108b957600080fd5b506104696116d3565b3480156108ce57600080fd5b5061033f6116e2565b3480156108e357600080fd5b506103de600480360360208110156108fa57600080fd5b5035611743565b34801561090d57600080fd5b506103de6004803603602081101561092457600080fd5b50356001600160a01b03166117a0565b34801561094057600080fd5b506104196004803603604081101561095757600080fd5b506001600160a01b038135169060200135611819565b34801561097957600080fd5b506103de611881565b34801561098e57600080fd5b50610419600480360360408110156109a557600080fd5b506001600160a01b03813516906020013561196f565b3480156109c757600080fd5b50610442611983565b3480156109dc57600080fd5b506103de600480360360208110156109f357600080fd5b5035611989565b348015610a0657600080fd5b506104426119e6565b348015610a1b57600080fd5b506103de60048036036020811015610a3257600080fd5b50356119ec565b348015610a4557600080fd5b506103de60048036036020811015610a5c57600080fd5b50351515611a49565b348015610a7157600080fd5b5061041960048036036020811015610a8857600080fd5b50356001600160a01b0316611af0565b348015610aa457600080fd5b50610442611b05565b348015610ab957600080fd5b506103de60048036036060811015610ad057600080fd5b5080359060208101359060400135611b0b565b348015610aef57600080fd5b506103de60048036036020811015610b0657600080fd5b5035611b71565b348015610b1957600080fd5b5061044260048036036040811015610b3057600080fd5b506001600160a01b0381358116916020013516611c0f565b348015610b5457600080fd5b506103de60048036036020811015610b6b57600080fd5b50356001600160a01b0316611c3a565b348015610b8757600080fd5b506103de60048036036020811015610b9e57600080fd5b50356001600160a01b0316611cb3565b348015610bba57600080fd5b506103de60048036036020811015610bd157600080fd5b50356001600160a01b0316611d99565b348015610bed57600080fd5b506103de60048036036020811015610c0457600080fd5b5035611e15565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b820191906000526020600020905b815481529060010190602001808311610c7a57829003601f168201915b5050505050905090565b610ca9611ed4565b6000546001600160a01b03908116911614610cf9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601355565b6000610d12610d0b611ed4565b8484611ed8565b5060015b92915050565b600c5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5490565b60135481565b6000610d5f848484611fc4565b610dcf84610d6b611ed4565b610dca856040518060600160405280602881526020016132ca602891396001600160a01b038a16600090815260056020526040812090610da9611ed4565b6001600160a01b0316815260208101919091526040016000205491906122bc565b611ed8565b5060019392505050565b6000600b54821115610e1c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061320f602a913960400191505060405180910390fd5b6000610e26612353565b9050610e328382612376565b9150505b919050565b60105460ff1690565b610e4c611ed4565b6000546001600160a01b03908116911614610e9c576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16610f09576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60095481101561100157816001600160a01b031660098281548110610f2d57fe5b6000918252602090912001546001600160a01b03161415610ff957600980546000198101908110610f5a57fe5b600091825260209091200154600980546001600160a01b039092169183908110610f8057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610fd257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611001565b600101610f0c565b5050565b6000610d12611012611ed4565b84610dca8560056000611023611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123bf565b600d546001600160a01b031690565b60115481565b611070611ed4565b6000546001600160a01b039081169116146110c0576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561113d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b600080600061114d866000611652565b9350935093505060008061116b88868686611166612353565b612419565b50915091508661118157509350610d1692505050565b9450610d169350505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601d54610100900460ff1681565b6111c7611ed4565b6000546001600160a01b03908116911614611217576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601555565b611224611ed4565b6000546001600160a01b03908116911614611274576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156112e2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561133c576001600160a01b03811660009081526003602052604090205461132290610dd9565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113c8611ed4565b6000546001600160a01b03908116911614611418576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601392909255601755601b55565b61142e611ed4565b6000546001600160a01b0390811691161461147e576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601955565b60155481565b6001600160a01b03811660009081526008602052604081205460ff16156114c957506001600160a01b038116600090815260046020526040902054610e36565b6001600160a01b038216600090815260036020526040902054610d1690610dd9565b6114f3611ed4565b6000546001600160a01b03908116911614611543576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613312833981519152908390a3600080546001600160a01b0319169055565b601f5481565b601e5481565b61158f611ed4565b6000546001600160a01b039081169116146115df576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611626576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611646606461164083600a5461247b90919063ffffffff16565b90612376565b601f5550565b60175481565b600080600080600061166487876124d4565b905060006116728888612501565b905060006116808989612524565b90506000611698836116928c87612547565b90612547565b90506116a48183612547565b9a9399509197509550909350505050565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b61174b611ed4565b6000546001600160a01b0390811691161461179b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601b55565b6117a8611ed4565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610d12611826611ed4565b84610dca856040518060600160405280602581526020016134056025913960056000611850611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122bc565b6001546001600160a01b031633146118ca5760405162461bcd60e51b81526004018080602001828103825260238152602001806133e26023913960400191505060405180910390fd5b6002544211611920576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061331283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610d1261197c611ed4565b8484611fc4565b60195481565b611991611ed4565b6000546001600160a01b039081169116146119e1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601155565b60025490565b6119f4611ed4565b6000546001600160a01b03908116911614611a44576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601755565b611a51611ed4565b6000546001600160a01b03908116911614611aa1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601d8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60076020526000908152604090205460ff1681565b601b5481565b611b13611ed4565b6000546001600160a01b03908116911614611b63576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601192909255601555601955565b611b79611ed4565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613312833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c42611ed4565b6000546001600160a01b03908116911614611c92576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611cbb611ed4565b6000546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b038116611d505760405162461bcd60e51b81526004018080602001828103825260268152602001806132396026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061331283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611da1611ed4565b6000546001600160a01b03908116911614611df1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b611e1d611ed4565b6000546001600160a01b03908116911614611e6d576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611eb4576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611ece606461164083600a5461247b90919063ffffffff16565b601e5550565b3390565b6001600160a01b038316611f1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806133be6024913960400191505060405180910390fd5b6001600160a01b038216611f625760405162461bcd60e51b815260040180806020018281038252602281526020018061325f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166120095760405162461bcd60e51b81526004018080602001828103825260258152602001806133996025913960400191505060405180910390fd5b6001600160a01b03821661204e5760405162461bcd60e51b81526004018080602001828103825260238152602001806131ec6023913960400191505060405180910390fd5b6000811161208d5760405162461bcd60e51b81526004018080602001828103825260298152602001806133326029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff161580156120cf57506001600160a01b03821660009081526007602052604090205460ff16155b1561211557601e548111156121155760405162461bcd60e51b81526004018080602001828103825260288152602001806132816028913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615801561217057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156121c757600061218083611489565b9050601f5482820111156121c55760405162461bcd60e51b815260040180806020018281038252603e81526020018061335b603e913960400191505060405180910390fd5b505b60006121d230611489565b9050601e5481106121e25750601e545b602054811080159081906121f95750601d5460ff16155b801561223757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561224a5750601d54610100900460ff165b1561225d57602054915061225d82612589565b6001600160a01b03851660009081526006602052604090205460019060ff168061229f57506001600160a01b03851660009081526006602052604090205460ff165b156122a8575060005b6122b486868684612626565b505050505050565b6000818484111561234b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123105781810151838201526020016122f8565b50505050905090810190601f16801561233d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061236061279a565b909250905061236f8282612376565b9250505090565b60006123b883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128fd565b9392505050565b6000828201838110156123b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000808080612428898661247b565b90506000612436898761247b565b90506000612444898861247b565b90506000612452898961247b565b905060006124668261169285818989612547565b949d949c50929a509298505050505050505050565b60008261248a57506000610d16565b8282028284828161249757fe5b04146123b85760405162461bcd60e51b81526004018080602001828103825260218152602001806132a96021913960400191505060405180910390fd5b600080826124e4576011546124e8565b6013545b90506124f96064611640868461247b565b949350505050565b60008082612511576015546124e8565b506017546124f96064611640868461247b565b60008082612534576019546124e8565b50601b546124f96064611640868461247b565b60006123b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122bc565b601d805460ff1916600117905560006125a3826002612376565b905060006125b18383612547565b9050476125bd83612962565b60006125c94783612547565b90506125d58382612b71565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601d805460ff19169055505050565b8061263357612633612c53565b6001600160a01b03841660009081526008602052604090205460ff16801561267457506001600160a01b03831660009081526008602052604090205460ff16155b1561268957612684848484612caf565b612787565b6001600160a01b03841660009081526008602052604090205460ff161580156126ca57506001600160a01b03831660009081526008602052604090205460ff165b156126da57612684848484612e24565b6001600160a01b03841660009081526008602052604090205460ff1615801561271c57506001600160a01b03831660009081526008602052604090205460ff16155b1561272c57612684848484612f14565b6001600160a01b03841660009081526008602052604090205460ff16801561276c57506001600160a01b03831660009081526008602052604090205460ff165b1561277c57612684848484612f9f565b612787848484612f14565b8061279457612794613059565b50505050565b600b54600a546000918291825b6009548110156128cb578260036000600984815481106127c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612828575081600460006009848154811061280157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561283f57600b54600a54945094505050506128f9565b61287f600360006009848154811061285357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612547565b92506128c1600460006009848154811061289557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612547565b91506001016127a7565b50600a54600b546128db91612376565b8210156128f357600b54600a549350935050506128f9565b90925090505b9091565b6000818361294c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123105781810151838201526020016122f8565b50600083858161295857fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061299057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0957600080fd5b505afa158015612a1d573d6000803e3d6000fd5b505050506040513d6020811015612a3357600080fd5b5051815182906001908110612a4457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a8f307f000000000000000000000000000000000000000000000000000000000000000084611ed8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b34578181015183820152602001612b1c565b505050509050019650505050505050600060405180830381600087803b158015612b5d57600080fd5b505af11580156122b4573d6000803e3d6000fd5b612b9c307f000000000000000000000000000000000000000000000000000000000000000084611ed8565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d606081101561279457600080fd5b601154158015612c635750601554155b15612c6d57612cad565b601180546012556015805460165560198054601a556013805460145560178054601855601b8054601c556000958690559385905591849055839055829055555b565b600080600080612cf3857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612d0f88878787611166612353565b6001600160a01b038d166000908152600460205260409020549295509093509150612d3a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d699084612547565b6001600160a01b03808c1660009081526003602052604080822093909355908b1681522054612d9890836123bf565b6001600160a01b038a16600090815260036020526040902055612dba8561307f565b612dc384613108565b612dcd81876131c7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080612e68857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612e8488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612eaf9084612547565b6001600160a01b03808c16600090815260036020908152604080832094909455918c16815260049091522054612ee590886123bf565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d9890836123bf565b600080600080612f58857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612f7488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612d699084612547565b600080600080612fe3857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612fff88878787611166612353565b6001600160a01b038d16600090815260046020526040902054929550909350915061302a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612eaf9084612547565b601254601155601654601555601a54601955601454601355601854601755601c54601b55565b6000613089612353565b90506000613097838361247b565b306000908152600360205260409020549091506130b490826123bf565b3060009081526003602090815260408083209390935560089052205460ff161561310357306000908152600460205260409020546130f290846123bf565b306000908152600460205260409020555b505050565b6000613112612353565b90506000613120838361247b565b600d546001600160a01b031660009081526003602052604090205490915061314890826123bf565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526008909152205460ff161561310357600d546001600160a01b03166000908152600460205260409020546131a790846123bf565b600d546001600160a01b0316600090815260046020526040902055505050565b600b546131d49083612547565b600b55600c546131e490826123bf565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220daf6cbd40ac40689c5bcc87bad617ee227c8b67e6469a5d510137f40f2259e3764736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806378109e54116101ab578063aa45026b116100f7578063c9ea304c11610095578063ea2f0b371161006f578063ea2f0b3714610b48578063f2fde38b14610b7b578063f4b8c14d14610bae578063fddf33af14610be157610325565b8063c9ea304c14610aad578063dd46706414610ae3578063dd62ed3e14610b0d57610325565b8063b6cee10e116100d1578063b6cee10e14610a0f578063c49b9a8014610a39578063c5495c0014610a65578063c9cf778914610a9857610325565b8063aa45026b146109bb578063ad85cd98146109d0578063b6c52324146109fa57610325565b80638da5cb5b11610164578063a114f9241161013e578063a114f92414610901578063a457c2d714610934578063a69df4b51461096d578063a9059cbb1461098257610325565b80638da5cb5b146108ad57806395d89b41146108c25780639944a998146108d757610325565b806378109e54146107b95780637d1db4a5146107ce5780637e89ad4c146107e357806388790a681461080d57806388e9b5ac1461082257806388f820201461087a57610325565b80633b124fe71161026a57806352390c021161022357806362042091116101fd57806362042091146107325780636bc87c3a1461075c57806370a0823114610771578063715018a6146107a457610325565b806352390c02146106965780635342acb4146106c957806361e134b2146106fc57610325565b80633b124fe7146105c8578063437823ec146105dd5780634549b0391461061057806349bd5a5e146106425780634a74bb02146106575780634ae738501461066c57610325565b8063200a692d116102d7578063313ce567116102b1578063313ce5671461051c5780633685d41914610547578063395093511461057a5780633ad10ef6146105b357610325565b8063200a692d1461049a57806323b872dd146104af5780632d838119146104f257610325565b806306fdde031461032a578063095b207f146103b4578063095ea7b3146103e057806313114a9d1461042d5780631694505e1461045457806318160ddd1461048557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c0b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610379578181015183820152602001610361565b50505050905090810190601f1680156103a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103c057600080fd5b506103de600480360360208110156103d757600080fd5b5035610ca1565b005b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610cfe565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d1c565b60408051918252519081900360200190f35b34801561046057600080fd5b50610469610d22565b604080516001600160a01b039092168252519081900360200190f35b34801561049157600080fd5b50610442610d46565b3480156104a657600080fd5b50610442610d4c565b3480156104bb57600080fd5b50610419600480360360608110156104d257600080fd5b506001600160a01b03813581169160208101359091169060400135610d52565b3480156104fe57600080fd5b506104426004803603602081101561051557600080fd5b5035610dd9565b34801561052857600080fd5b50610531610e3b565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b506103de6004803603602081101561056a57600080fd5b50356001600160a01b0316610e44565b34801561058657600080fd5b506104196004803603604081101561059d57600080fd5b506001600160a01b038135169060200135611005565b3480156105bf57600080fd5b50610469611053565b3480156105d457600080fd5b50610442611062565b3480156105e957600080fd5b506103de6004803603602081101561060057600080fd5b50356001600160a01b0316611068565b34801561061c57600080fd5b506104426004803603604081101561063357600080fd5b508035906020013515156110e4565b34801561064e57600080fd5b5061046961118d565b34801561066357600080fd5b506104196111b1565b34801561067857600080fd5b506103de6004803603602081101561068f57600080fd5b50356111bf565b3480156106a257600080fd5b506103de600480360360208110156106b957600080fd5b50356001600160a01b031661121c565b3480156106d557600080fd5b50610419600480360360208110156106ec57600080fd5b50356001600160a01b03166113a2565b34801561070857600080fd5b506103de6004803603606081101561071f57600080fd5b50803590602081013590604001356113c0565b34801561073e57600080fd5b506103de6004803603602081101561075557600080fd5b5035611426565b34801561076857600080fd5b50610442611483565b34801561077d57600080fd5b506104426004803603602081101561079457600080fd5b50356001600160a01b0316611489565b3480156107b057600080fd5b506103de6114eb565b3480156107c557600080fd5b5061044261157b565b3480156107da57600080fd5b50610442611581565b3480156107ef57600080fd5b506103de6004803603602081101561080657600080fd5b5035611587565b34801561081957600080fd5b5061044261164c565b34801561082e57600080fd5b506108546004803603604081101561084557600080fd5b50803590602001351515611652565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561088657600080fd5b506104196004803603602081101561089d57600080fd5b50356001600160a01b03166116b5565b3480156108b957600080fd5b506104696116d3565b3480156108ce57600080fd5b5061033f6116e2565b3480156108e357600080fd5b506103de600480360360208110156108fa57600080fd5b5035611743565b34801561090d57600080fd5b506103de6004803603602081101561092457600080fd5b50356001600160a01b03166117a0565b34801561094057600080fd5b506104196004803603604081101561095757600080fd5b506001600160a01b038135169060200135611819565b34801561097957600080fd5b506103de611881565b34801561098e57600080fd5b50610419600480360360408110156109a557600080fd5b506001600160a01b03813516906020013561196f565b3480156109c757600080fd5b50610442611983565b3480156109dc57600080fd5b506103de600480360360208110156109f357600080fd5b5035611989565b348015610a0657600080fd5b506104426119e6565b348015610a1b57600080fd5b506103de60048036036020811015610a3257600080fd5b50356119ec565b348015610a4557600080fd5b506103de60048036036020811015610a5c57600080fd5b50351515611a49565b348015610a7157600080fd5b5061041960048036036020811015610a8857600080fd5b50356001600160a01b0316611af0565b348015610aa457600080fd5b50610442611b05565b348015610ab957600080fd5b506103de60048036036060811015610ad057600080fd5b5080359060208101359060400135611b0b565b348015610aef57600080fd5b506103de60048036036020811015610b0657600080fd5b5035611b71565b348015610b1957600080fd5b5061044260048036036040811015610b3057600080fd5b506001600160a01b0381358116916020013516611c0f565b348015610b5457600080fd5b506103de60048036036020811015610b6b57600080fd5b50356001600160a01b0316611c3a565b348015610b8757600080fd5b506103de60048036036020811015610b9e57600080fd5b50356001600160a01b0316611cb3565b348015610bba57600080fd5b506103de60048036036020811015610bd157600080fd5b50356001600160a01b0316611d99565b348015610bed57600080fd5b506103de60048036036020811015610c0457600080fd5b5035611e15565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b820191906000526020600020905b815481529060010190602001808311610c7a57829003601f168201915b5050505050905090565b610ca9611ed4565b6000546001600160a01b03908116911614610cf9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601355565b6000610d12610d0b611ed4565b8484611ed8565b5060015b92915050565b600c5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600a5490565b60135481565b6000610d5f848484611fc4565b610dcf84610d6b611ed4565b610dca856040518060600160405280602881526020016132ca602891396001600160a01b038a16600090815260056020526040812090610da9611ed4565b6001600160a01b0316815260208101919091526040016000205491906122bc565b611ed8565b5060019392505050565b6000600b54821115610e1c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061320f602a913960400191505060405180910390fd5b6000610e26612353565b9050610e328382612376565b9150505b919050565b60105460ff1690565b610e4c611ed4565b6000546001600160a01b03908116911614610e9c576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16610f09576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60095481101561100157816001600160a01b031660098281548110610f2d57fe5b6000918252602090912001546001600160a01b03161415610ff957600980546000198101908110610f5a57fe5b600091825260209091200154600980546001600160a01b039092169183908110610f8057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610fd257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611001565b600101610f0c565b5050565b6000610d12611012611ed4565b84610dca8560056000611023611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123bf565b600d546001600160a01b031690565b60115481565b611070611ed4565b6000546001600160a01b039081169116146110c0576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561113d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b600080600061114d866000611652565b9350935093505060008061116b88868686611166612353565b612419565b50915091508661118157509350610d1692505050565b9450610d169350505050565b7f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d81565b601d54610100900460ff1681565b6111c7611ed4565b6000546001600160a01b03908116911614611217576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601555565b611224611ed4565b6000546001600160a01b03908116911614611274576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156112e2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561133c576001600160a01b03811660009081526003602052604090205461132290610dd9565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113c8611ed4565b6000546001600160a01b03908116911614611418576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601392909255601755601b55565b61142e611ed4565b6000546001600160a01b0390811691161461147e576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601955565b60155481565b6001600160a01b03811660009081526008602052604081205460ff16156114c957506001600160a01b038116600090815260046020526040902054610e36565b6001600160a01b038216600090815260036020526040902054610d1690610dd9565b6114f3611ed4565b6000546001600160a01b03908116911614611543576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613312833981519152908390a3600080546001600160a01b0319169055565b601f5481565b601e5481565b61158f611ed4565b6000546001600160a01b039081169116146115df576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611626576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611646606461164083600a5461247b90919063ffffffff16565b90612376565b601f5550565b60175481565b600080600080600061166487876124d4565b905060006116728888612501565b905060006116808989612524565b90506000611698836116928c87612547565b90612547565b90506116a48183612547565b9a9399509197509550909350505050565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b61174b611ed4565b6000546001600160a01b0390811691161461179b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601b55565b6117a8611ed4565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610d12611826611ed4565b84610dca856040518060600160405280602581526020016134056025913960056000611850611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122bc565b6001546001600160a01b031633146118ca5760405162461bcd60e51b81526004018080602001828103825260238152602001806133e26023913960400191505060405180910390fd5b6002544211611920576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061331283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610d1261197c611ed4565b8484611fc4565b60195481565b611991611ed4565b6000546001600160a01b039081169116146119e1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601155565b60025490565b6119f4611ed4565b6000546001600160a01b03908116911614611a44576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601755565b611a51611ed4565b6000546001600160a01b03908116911614611aa1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601d8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60076020526000908152604090205460ff1681565b601b5481565b611b13611ed4565b6000546001600160a01b03908116911614611b63576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601192909255601555601955565b611b79611ed4565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613312833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c42611ed4565b6000546001600160a01b03908116911614611c92576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611cbb611ed4565b6000546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b038116611d505760405162461bcd60e51b81526004018080602001828103825260268152602001806132396026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061331283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611da1611ed4565b6000546001600160a01b03908116911614611df1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b611e1d611ed4565b6000546001600160a01b03908116911614611e6d576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611eb4576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611ece606461164083600a5461247b90919063ffffffff16565b601e5550565b3390565b6001600160a01b038316611f1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806133be6024913960400191505060405180910390fd5b6001600160a01b038216611f625760405162461bcd60e51b815260040180806020018281038252602281526020018061325f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166120095760405162461bcd60e51b81526004018080602001828103825260258152602001806133996025913960400191505060405180910390fd5b6001600160a01b03821661204e5760405162461bcd60e51b81526004018080602001828103825260238152602001806131ec6023913960400191505060405180910390fd5b6000811161208d5760405162461bcd60e51b81526004018080602001828103825260298152602001806133326029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff161580156120cf57506001600160a01b03821660009081526007602052604090205460ff16155b1561211557601e548111156121155760405162461bcd60e51b81526004018080602001828103825260288152602001806132816028913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615801561217057507f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316826001600160a01b031614155b156121c757600061218083611489565b9050601f5482820111156121c55760405162461bcd60e51b815260040180806020018281038252603e81526020018061335b603e913960400191505060405180910390fd5b505b60006121d230611489565b9050601e5481106121e25750601e545b602054811080159081906121f95750601d5460ff16155b801561223757507f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316856001600160a01b031614155b801561224a5750601d54610100900460ff165b1561225d57602054915061225d82612589565b6001600160a01b03851660009081526006602052604090205460019060ff168061229f57506001600160a01b03851660009081526006602052604090205460ff165b156122a8575060005b6122b486868684612626565b505050505050565b6000818484111561234b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123105781810151838201526020016122f8565b50505050905090810190601f16801561233d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061236061279a565b909250905061236f8282612376565b9250505090565b60006123b883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128fd565b9392505050565b6000828201838110156123b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000808080612428898661247b565b90506000612436898761247b565b90506000612444898861247b565b90506000612452898961247b565b905060006124668261169285818989612547565b949d949c50929a509298505050505050505050565b60008261248a57506000610d16565b8282028284828161249757fe5b04146123b85760405162461bcd60e51b81526004018080602001828103825260218152602001806132a96021913960400191505060405180910390fd5b600080826124e4576011546124e8565b6013545b90506124f96064611640868461247b565b949350505050565b60008082612511576015546124e8565b506017546124f96064611640868461247b565b60008082612534576019546124e8565b50601b546124f96064611640868461247b565b60006123b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122bc565b601d805460ff1916600117905560006125a3826002612376565b905060006125b18383612547565b9050476125bd83612962565b60006125c94783612547565b90506125d58382612b71565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601d805460ff19169055505050565b8061263357612633612c53565b6001600160a01b03841660009081526008602052604090205460ff16801561267457506001600160a01b03831660009081526008602052604090205460ff16155b1561268957612684848484612caf565b612787565b6001600160a01b03841660009081526008602052604090205460ff161580156126ca57506001600160a01b03831660009081526008602052604090205460ff165b156126da57612684848484612e24565b6001600160a01b03841660009081526008602052604090205460ff1615801561271c57506001600160a01b03831660009081526008602052604090205460ff16155b1561272c57612684848484612f14565b6001600160a01b03841660009081526008602052604090205460ff16801561276c57506001600160a01b03831660009081526008602052604090205460ff165b1561277c57612684848484612f9f565b612787848484612f14565b8061279457612794613059565b50505050565b600b54600a546000918291825b6009548110156128cb578260036000600984815481106127c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612828575081600460006009848154811061280157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561283f57600b54600a54945094505050506128f9565b61287f600360006009848154811061285357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612547565b92506128c1600460006009848154811061289557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612547565b91506001016127a7565b50600a54600b546128db91612376565b8210156128f357600b54600a549350935050506128f9565b90925090505b9091565b6000818361294c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123105781810151838201526020016122f8565b50600083858161295857fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061299057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0957600080fd5b505afa158015612a1d573d6000803e3d6000fd5b505050506040513d6020811015612a3357600080fd5b5051815182906001908110612a4457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a8f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ed8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b34578181015183820152602001612b1c565b505050509050019650505050505050600060405180830381600087803b158015612b5d57600080fd5b505af11580156122b4573d6000803e3d6000fd5b612b9c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ed8565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d606081101561279457600080fd5b601154158015612c635750601554155b15612c6d57612cad565b601180546012556015805460165560198054601a556013805460145560178054601855601b8054601c556000958690559385905591849055839055829055555b565b600080600080612cf3857f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612d0f88878787611166612353565b6001600160a01b038d166000908152600460205260409020549295509093509150612d3a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d699084612547565b6001600160a01b03808c1660009081526003602052604080822093909355908b1681522054612d9890836123bf565b6001600160a01b038a16600090815260036020526040902055612dba8561307f565b612dc384613108565b612dcd81876131c7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080612e68857f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612e8488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612eaf9084612547565b6001600160a01b03808c16600090815260036020908152604080832094909455918c16815260049091522054612ee590886123bf565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d9890836123bf565b600080600080612f58857f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612f7488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612d699084612547565b600080600080612fe3857f0000000000000000000000008adb7fbf941bf1f2308e96f76432e93a694cb91d6001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612fff88878787611166612353565b6001600160a01b038d16600090815260046020526040902054929550909350915061302a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612eaf9084612547565b601254601155601654601555601a54601955601454601355601854601755601c54601b55565b6000613089612353565b90506000613097838361247b565b306000908152600360205260409020549091506130b490826123bf565b3060009081526003602090815260408083209390935560089052205460ff161561310357306000908152600460205260409020546130f290846123bf565b306000908152600460205260409020555b505050565b6000613112612353565b90506000613120838361247b565b600d546001600160a01b031660009081526003602052604090205490915061314890826123bf565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526008909152205460ff161561310357600d546001600160a01b03166000908152600460205260409020546131a790846123bf565b600d546001600160a01b0316600090815260046020526040902055505050565b600b546131d49083612547565b600b55600c546131e490826123bf565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220daf6cbd40ac40689c5bcc87bad617ee227c8b67e6469a5d510137f40f2259e3764736f6c634300060c0033

Deployed Bytecode Sourcemap

27681:23769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30797:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36863:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36863:107:0;;:::i;:::-;;31789:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31789:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33293:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29136:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29136:51:0;;;;;;;;;;;;;;31077:95;;;;;;;;;;;;;:::i;28656:30::-;;;;;;;;;;;;;:::i;31991:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31991:446:0;;;;;;;;;;;;;;;;;:::i;34163:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34163:322:0;;:::i;30985:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34835:473;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34835:473:0;-1:-1:-1;;;;;34835:473:0;;:::i;32446:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32446:300:0;;;;;;;;:::i;33389:89::-;;;;;;;;;;;;;:::i;28572:26::-;;;;;;;;;;;;;:::i;36277:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36277:111:0;-1:-1:-1;;;;;36277:111:0;;:::i;33487:667::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33487:667:0;;;;;;;;;:::i;29194:38::-;;;;;;;;;;;;;:::i;29270:40::-;;;;;;;;;;;;;:::i;36979:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36979:146:0;;:::i;34494:332::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34494:332:0;-1:-1:-1;;;;;34494:332:0;;:::i;43175:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43175:124:0;-1:-1:-1;;;;;43175:124:0;;:::i;37769:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37769:254:0;;;;;;;;;;;;:::i;37297:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37297:99:0;;:::i;28748:32::-;;;;;;;;;;;;;:::i;31181:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31181:198:0;-1:-1:-1;;;;;31181:198:0;;:::i;16902:148::-;;;;;;;;;;;;;:::i;29374:50::-;;;;;;;;;;;;;:::i;29320:47::-;;;;;;;;;;;;;:::i;38231:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38231:203:0;;:::i;28850:36::-;;;;;;;;;;;;;:::i;38874:587::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38874:587:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33164:120;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33164:120:0;-1:-1:-1;;;;;33164:120:0;;:::i;16258:79::-;;;;;;;;;;;;;:::i;30889:87::-;;;;;;;;;;;;;:::i;37405:107::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37405:107:0;;:::i;36636:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36636:110:0;-1:-1:-1;;;;;36636:110:0;;:::i;32755:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32755:400:0;;;;;;;;:::i;17949:329::-;;;;;;;;;;;;;:::i;31388:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31388:199:0;;;;;;;;:::i;28960:26::-;;;;;;;;;;;;;:::i;36755:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36755:99:0;;:::i;17496:89::-;;;;;;;;;;;;;:::i;37134:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37134:154:0;;:::i;38443:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38443:171:0;;;;:::i;28038:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28038:50:0;-1:-1:-1;;;;;28038:50:0;;:::i;29044:30::-;;;;;;;;;;;;;:::i;37521:239::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37521:239:0;;;;;;;;;;;;:::i;17662:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17662:214:0;;:::i;31596:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31596:184:0;;;;;;;;;;:::i;36397:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36397:110:0;-1:-1:-1;;;;;36397:110:0;;:::i;17206:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17206:281:0;-1:-1:-1;;;;;17206:281:0;;:::i;36516:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36516:111:0;-1:-1:-1;;;;;36516:111:0;;:::i;38032:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38032:190:0;;:::i;30797:83::-;30867:5;30860:12;;;;;;;;-1:-1:-1;;30860:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30834:13;;30860:12;;30867:5;;30860:12;;30867:5;30860:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30797:83;:::o;36863:107::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;36942:11:::1;:20:::0;36863:107::o;31789:193::-;31891:4;31913:39;31922:12;:10;:12::i;:::-;31936:7;31945:6;31913:8;:39::i;:::-;-1:-1:-1;31970:4:0;31789:193;;;;;:::o;33293:87::-;33362:10;;33293:87;:::o;29136:51::-;;;:::o;31077:95::-;31157:7;;31077:95;:::o;28656:30::-;;;;:::o;31991:446::-;32123:4;32140:36;32150:6;32158:9;32169:6;32140:9;:36::i;:::-;32187:220;32210:6;32231:12;:10;:12::i;:::-;32258:138;32314:6;32258:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32258:19:0;;;;;;:11;:19;;;;;;32278:12;:10;:12::i;:::-;-1:-1:-1;;;;;32258:33:0;;;;;;;;;;;;-1:-1:-1;32258:33:0;;;:138;:37;:138::i;:::-;32187:8;:220::i;:::-;-1:-1:-1;32425:4:0;31991:446;;;;;:::o;34163:322::-;34257:7;34315;;34304;:18;;34282:110;;;;-1:-1:-1;;;34282:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34403:19;34425:10;:8;:10::i;:::-;34403:32;-1:-1:-1;34453:24:0;:7;34403:32;34453:11;:24::i;:::-;34446:31;;;34163:322;;;;:::o;30985:83::-;31051:9;;;;30985:83;:::o;34835:473::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34915:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34907:56;;;::::0;;-1:-1:-1;;;34907:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34979:9;34974:327;34998:9;:16:::0;34994:20;::::1;34974:327;;;35056:7;-1:-1:-1::0;;;;;35040:23:0::1;:9;35050:1;35040:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35040:12:0::1;:23;35036:254;;;35099:9;35109:16:::0;;-1:-1:-1;;35109:20:0;;;35099:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35084:9:::1;:12:::0;;-1:-1:-1;;;;;35099:31:0;;::::1;::::0;35094:1;;35084:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35084:46:0::1;-1:-1:-1::0;;;;;35084:46:0;;::::1;;::::0;;35149:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35188:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35188:28:0::1;::::0;;35235:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35235:15:0;;;;;-1:-1:-1;;;;;;35235:15:0::1;::::0;;;;;35269:5:::1;;35036:254;35016:3;;34974:327;;;;34835:473:::0;:::o;32446:300::-;32561:4;32583:133;32606:12;:10;:12::i;:::-;32633:7;32655:50;32694:10;32655:11;:25;32667:12;:10;:12::i;:::-;-1:-1:-1;;;;;32655:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32655:25:0;;;:34;;;;;;;;;;;:38;:50::i;33389:89::-;33459:11;;-1:-1:-1;;;;;33459:11:0;33389:89;:::o;28572:26::-;;;;:::o;36277:111::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36346:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;36346:34:0::1;36376:4;36346:34;::::0;;36277:111::o;33487:667::-;33605:7;33649;;33638;:18;;33630:62;;;;;-1:-1:-1;;;33630:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33709:12;33723:18;33743:12;33759:64;33785:7;33807:5;33759:11;:64::i;:::-;33706:117;;;;;;;33835:15;33852:23;33881:132;33907:7;33929:4;33948:10;33973:4;33992:10;:8;:10::i;:::-;33881:11;:132::i;:::-;33834:179;;;;;34032:17;34027:120;;-1:-1:-1;34073:7:0;-1:-1:-1;34066:14:0;;-1:-1:-1;;;34066:14:0;34027:120;34120:15;-1:-1:-1;34113:22:0;;-1:-1:-1;;;;34113:22:0;29194:38;;;:::o;29270:40::-;;;;;;;;;:::o;36979:146::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37089:13:::1;:28:::0;36979:146::o;34494:332::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34575:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34574:21;34566:61;;;::::0;;-1:-1:-1;;;34566:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34642:16:0;::::1;34661:1;34642:16:::0;;;:7:::1;:16;::::0;;;;;:20;34638:109:::1;;-1:-1:-1::0;;;;;34718:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34698:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34679:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34638:109:::1;-1:-1:-1::0;;;;;34757:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34757:27:0::1;34780:4;34757:27:::0;;::::1;::::0;;;34795:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34795:23:0::1;::::0;;::::1;::::0;;34494:332::o;43175:124::-;-1:-1:-1;;;;;43264:27:0;43240:4;43264:27;;;:18;:27;;;;;;;;;43175:124::o;37769:254::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37921:11:::1;:20:::0;;;;37952:17:::1;:32:::0;37995:11:::1;:20:::0;37769:254::o;37297:99::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37372:7:::1;:16:::0;37297:99::o;28748:32::-;;;;:::o;31181:198::-;-1:-1:-1;;;;;31271:20:0;;31247:7;31271:20;;;:11;:20;;;;;;;;31267:49;;;-1:-1:-1;;;;;;31300:16:0;;;;;;:7;:16;;;;;;31293:23;;31267:49;-1:-1:-1;;;;;31354:16:0;;;;;;:7;:16;;;;;;31334:37;;:19;:37::i;16902:148::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;17009:1:::1;16993:6:::0;;16972:40:::1;::::0;-1:-1:-1;;;;;16993:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16972:40:0;17009:1;;16972:40:::1;17040:1;17023:19:::0;;-1:-1:-1;;;;;;17023:19:0::1;::::0;;16902:148::o;29374:50::-;;;;:::o;29320:47::-;;;;:::o;38231:203::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;38336:1:::1;38317:16;:20;38309:48;;;::::0;;-1:-1:-1;;;38309:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38309:48:0;;;;;;;;;;;;;::::1;;38386:40;38420:5;38386:29;38398:16;38386:7;;:11;;:29;;;;:::i;:::-;:33:::0;::::1;:40::i;:::-;38368:15;:58:::0;-1:-1:-1;38231:203:0:o;28850:36::-;;;;:::o;38874:587::-;38988:7;39010;39032;39054;39089:12;39104:33;39120:7;39129;39104:15;:33::i;:::-;39089:48;;39148:18;39169:39;39191:7;39200;39169:21;:39::i;:::-;39148:60;;39219:12;39234:33;39250:7;39259;39234:15;:33::i;:::-;39219:48;-1:-1:-1;39278:23:0;39304:33;39326:10;39304:17;:7;39316:4;39304:11;:17::i;:::-;:21;;:33::i;:::-;39278:59;-1:-1:-1;39366:25:0;39278:59;39386:4;39366:19;:25::i;:::-;39348:43;39430:4;;-1:-1:-1;39436:10:0;;-1:-1:-1;39436:10:0;-1:-1:-1;38874:587:0;;-1:-1:-1;;;;38874:587:0:o;33164:120::-;-1:-1:-1;;;;;33256:20:0;33232:4;33256:20;;;:11;:20;;;;;;;;;33164:120::o;16258:79::-;16296:7;16323:6;-1:-1:-1;;;;;16323:6:0;16258:79;:::o;30889:87::-;30961:7;30954:14;;;;;;;;-1:-1:-1;;30954:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30928:13;;30954:14;;30961:7;;30954:14;;30961:7;30954:14;;;;;;;;;;;;;;;;;;;;;;;;37405:107;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37484:11:::1;:20:::0;37405:107::o;36636:110::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36703:27:0::1;36733:5;36703:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;36703:35:0::1;::::0;;36636:110::o;32755:400::-;32875:4;32897:228;32920:12;:10;:12::i;:::-;32947:7;32969:145;33026:15;32969:145;;;;;;;;;;;;;;;;;:11;:25;32981:12;:10;:12::i;:::-;-1:-1:-1;;;;;32969:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32969:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;17949:329::-;18015:14;;-1:-1:-1;;;;;18015:14:0;18033:10;18015:28;17993:113;;;;-1:-1:-1;;;17993:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18131:9;;18125:3;:15;18117:59;;;;;-1:-1:-1;;;18117:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18221:14;;;18213:6;;18192:44;;-1:-1:-1;;;;;18221:14:0;;;;18213:6;;;;-1:-1:-1;;;;;;;;;;;18192:44:0;;18256:14;;;18247:23;;-1:-1:-1;;;;;;18247:23:0;-1:-1:-1;;;;;18256:14:0;;;18247:23;;;;;;17949:329::o;31388:199::-;31493:4;31515:42;31525:12;:10;:12::i;:::-;31539:9;31550:6;31515:9;:42::i;28960:26::-;;;;:::o;36755:99::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;36830:7:::1;:16:::0;36755:99::o;17496:89::-;17568:9;;17496:89;:::o;37134:154::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37248:17:::1;:32:::0;37134:154::o;38443:171::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;38520:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;38520:32:0;;::::1;::::0;;;::::1;::::0;;;38568:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38443:171:::0;:::o;28038:50::-;;;;;;;;;;;;;;;:::o;29044:30::-;;;;:::o;37521:239::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;37670:7:::1;:16:::0;;;;37697:13:::1;:28:::0;37736:7:::1;:16:::0;37521:239::o;17662:214::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;17743:6:::1;::::0;;;17726:23;;-1:-1:-1;;;;;;17726:23:0;;::::1;-1:-1:-1::0;;;;;17743:6:0;::::1;17726:23;::::0;;;17760:19:::1;::::0;;17802:3:::1;:10:::0;::::1;17790:9;:22:::0;17828:40:::1;::::0;17743:6;;-1:-1:-1;;;;;;;;;;;17828:40:0;17743:6;;17828:40:::1;17662:214:::0;:::o;31596:184::-;-1:-1:-1;;;;;31745:18:0;;;31713:7;31745:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31596:184::o;36397:110::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36464:27:0::1;36494:5;36464:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;36464:35:0::1;::::0;;36397:110::o;17206:281::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17309:22:0;::::1;17287:110;;;;-1:-1:-1::0;;;17287:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17434:6;::::0;;17413:38:::1;::::0;-1:-1:-1;;;;;17413:38:0;;::::1;::::0;17434:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17413:38:0;::::1;17462:6;:17:::0;;-1:-1:-1;;;;;;17462:17:0::1;-1:-1:-1::0;;;;;17462:17:0;;;::::1;::::0;;;::::1;::::0;;17206:281::o;36516:111::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36585:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;36585:34:0::1;36615:4;36585:34;::::0;;36516:111::o;38032:190::-;16481:12;:10;:12::i;:::-;16471:6;;-1:-1:-1;;;;;16471:6:0;;;:22;;;16463:67;;;;;-1:-1:-1;;;16463:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16463:67:0;;;;;;;;;;;;;;;38131:1:::1;38116:12;:16;38108:44;;;::::0;;-1:-1:-1;;;38108:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38108:44:0;;;;;;;;;;;;;::::1;;38178:36;38208:5;38178:25;38190:12;38178:7;;:11;;:25;;;;:::i;:36::-;38163:12;:51:::0;-1:-1:-1;38032:190:0:o;8201:106::-;8289:10;8201:106;:::o;43308:372::-;-1:-1:-1;;;;;43435:19:0;;43427:68;;;;-1:-1:-1;;;43427:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43514:21:0;;43506:68;;;;-1:-1:-1;;;43506:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43588:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43640:32;;;;;;;;;;;;;;;;;43308:372;;;:::o;43689:2098::-;-1:-1:-1;;;;;43811:18:0;;43803:68;;;;-1:-1:-1;;;43803:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43890:16:0;;43882:64;;;;-1:-1:-1;;;43882:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43974:1;43965:6;:10;43957:64;;;;-1:-1:-1;;;43957:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44037:24:0;;;;;;:18;:24;;;;;;;;44036:25;:52;;;;-1:-1:-1;;;;;;44066:22:0;;;;;;:18;:22;;;;;;;;44065:23;44036:52;44032:195;;;44139:12;;44129:6;:22;;44103:124;;;;-1:-1:-1;;;44103:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44246:22:0;;;;;;:18;:22;;;;;;;;44245:23;:46;;;;;44278:13;-1:-1:-1;;;;;44272:19:0;:2;-1:-1:-1;;;;;44272:19:0;;;44245:46;44241:292;;;44308:18;44329:13;44339:2;44329:9;:13::i;:::-;44308:34;;44408:15;;44397:6;44384:10;:19;44383:40;;44357:164;;;;-1:-1:-1;;;44357:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44241:292;;44828:28;44859:24;44877:4;44859:9;:24::i;:::-;44828:55;;44925:12;;44901:20;:36;44897:104;;-1:-1:-1;44977:12:0;;44897:104;45078:29;;45041:66;;;;;;;45136:53;;-1:-1:-1;45173:16:0;;;;45172:17;45136:53;:91;;;;;45214:13;-1:-1:-1;;;;;45206:21:0;:4;-1:-1:-1;;;;;45206:21:0;;;45136:91;:129;;;;-1:-1:-1;45244:21:0;;;;;;;45136:129;45118:318;;;45315:29;;45292:52;;45388:36;45403:20;45388:14;:36::i;:::-;-1:-1:-1;;;;;45631:24:0;;45510:12;45631:24;;;:18;:24;;;;;;45525:4;;45631:24;;;:50;;-1:-1:-1;;;;;;45659:22:0;;;;;;:18;:22;;;;;;;;45631:50;45627:98;;;-1:-1:-1;45708:5:0;45627:98;45738:41;45753:4;45759:2;45763:6;45771:7;45738:14;:41::i;:::-;43689:2098;;;;;;:::o;4499:227::-;4619:7;4655:12;4647:6;;;;4639:29;;;;-1:-1:-1;;;4639:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4691:5:0;;;4499:227::o;40113:164::-;40155:7;40176:15;40193;40212:19;:17;:19::i;:::-;40175:56;;-1:-1:-1;40175:56:0;-1:-1:-1;40249:20:0;40175:56;;40249:11;:20::i;:::-;40242:27;;;;40113:164;:::o;5936:132::-;5994:7;6021:39;6025:1;6028;6021:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6014:46;5936:132;-1:-1:-1;;;5936:132:0:o;3593:182::-;3651:7;3683:5;;;3707:6;;;;3699:46;;;;;-1:-1:-1;;;3699:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39470:634;39692:7;;;;39789:24;:7;39801:11;39789;:24::i;:::-;39771:42;-1:-1:-1;39824:12:0;39839:21;:4;39848:11;39839:8;:21::i;:::-;39824:36;-1:-1:-1;39871:18:0;39892:27;:10;39907:11;39892:14;:27::i;:::-;39871:48;-1:-1:-1;39930:12:0;39945:21;:4;39954:11;39945:8;:21::i;:::-;39930:36;-1:-1:-1;39977:23:0;40003:43;39930:36;40003:33;40025:10;40003:33;:7;40015:4;40003:11;:17::i;:43::-;40065:7;;;;-1:-1:-1;40091:4:0;;-1:-1:-1;39470:634:0;;-1:-1:-1;;;;;;;;;39470:634:0:o;4986:473::-;5044:7;5289:6;5285:47;;-1:-1:-1;5319:1:0;5312:8;;5285:47;5357:5;;;5361:1;5357;:5;:1;5381:5;;;;;:10;5373:56;;;;-1:-1:-1;;;5373:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41585:230;41690:7;41715:12;41730:7;:31;;41754:7;;41730:31;;;41740:11;;41730:31;41715:46;-1:-1:-1;41779:28:0;41801:5;41779:17;:7;41715:46;41779:11;:17::i;:28::-;41772:35;41585:230;-1:-1:-1;;;;41585:230:0:o;41824:248::-;41935:7;41960:12;41975:7;:43;;42005:13;;41975:43;;;-1:-1:-1;41985:17:0;;42036:28;42058:5;42036:17;:7;41985:17;42036:11;:17::i;42081:230::-;42186:7;42211:12;42226:7;:31;;42250:7;;42226:31;;;-1:-1:-1;42236:11:0;;42275:28;42297:5;42275:17;:7;42236:11;42275;:17::i;4059:136::-;4117:7;4144:43;4148:1;4151;4144:43;;;;;;;;;;;;;;;;;:3;:43::i;45796:982::-;29799:16;:23;;-1:-1:-1;;29799:23:0;29818:4;29799:23;;;:16;45947:27:::1;:20:::0;45972:1:::1;45947:24;:27::i;:::-;45932:42:::0;-1:-1:-1;45985:17:0::1;46005:30;:20:::0;45932:42;46005:24:::1;:30::i;:::-;45985:50:::0;-1:-1:-1;46339:21:0::1;46406:22;46423:4:::0;46406:16:::1;:22::i;:::-;46560:18;46581:41;:21;46607:14:::0;46581:25:::1;:41::i;:::-;46560:62;;46673:35;46686:9;46697:10;46673:12;:35::i;:::-;46727:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;29845:16:0;:24;;-1:-1:-1;;29845:24:0;;;-1:-1:-1;;;45796:982:0:o;47989:840::-;48145:7;48140:28;;48154:14;:12;:14::i;:::-;-1:-1:-1;;;;;48186:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48210:22:0;;;;;;:11;:22;;;;;;;;48209:23;48186:46;48182:597;;;48249:48;48271:6;48279:9;48290:6;48249:21;:48::i;:::-;48182:597;;;-1:-1:-1;;;;;48320:19:0;;;;;;:11;:19;;;;;;;;48319:20;:46;;;;-1:-1:-1;;;;;;48343:22:0;;;;;;:11;:22;;;;;;;;48319:46;48315:464;;;48382:46;48402:6;48410:9;48421:6;48382:19;:46::i;48315:464::-;-1:-1:-1;;;;;48451:19:0;;;;;;:11;:19;;;;;;;;48450:20;:47;;;;-1:-1:-1;;;;;;48475:22:0;;;;;;:11;:22;;;;;;;;48474:23;48450:47;48446:333;;;48514:44;48532:6;48540:9;48551:6;48514:17;:44::i;48446:333::-;-1:-1:-1;;;;;48580:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48603:22:0;;;;;;:11;:22;;;;;;;;48580:45;48576:203;;;48642:48;48664:6;48672:9;48683:6;48642:21;:48::i;48576:203::-;48723:44;48741:6;48749:9;48760:6;48723:17;:44::i;:::-;48797:7;48792:29;;48806:15;:13;:15::i;:::-;47989:840;;;;:::o;40286:605::-;40384:7;;40420;;40337;;;;;40438:338;40462:9;:16;40458:20;;40438:338;;;40546:7;40522;:21;40530:9;40540:1;40530:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40530:12:0;40522:21;;;;;;;;;;;;;:31;;:83;;;40598:7;40574;:21;40582:9;40592:1;40582:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40582:12:0;40574:21;;;;;;;;;;;;;:31;40522:83;40500:146;;;40629:7;;40638;;40621:25;;;;;;;;;40500:146;40671:34;40683:7;:21;40691:9;40701:1;40691:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40691:12:0;40683:21;;;;;;;;;;;;;40671:7;;:11;:34::i;:::-;40661:44;;40730:34;40742:7;:21;40750:9;40760:1;40750:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40750:12:0;40742:21;;;;;;;;;;;;;40730:7;;:11;:34::i;:::-;40720:44;-1:-1:-1;40480:3:0;;40438:338;;;-1:-1:-1;40812:7:0;;40800;;:20;;:11;:20::i;:::-;40790:7;:30;40786:61;;;40830:7;;40839;;40822:25;;;;;;;;40786:61;40866:7;;-1:-1:-1;40875:7:0;-1:-1:-1;40286:605:0;;;:::o;6565:313::-;6685:7;6720:12;6713:5;6705:28;;;;-1:-1:-1;;;6705:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6744:9;6760:1;6756;:5;;;;;;;6565:313;-1:-1:-1;;;;;6565:313:0:o;46787:591::-;46937:16;;;46951:1;46937:16;;;46913:21;46937:16;;;;;46913:21;46937:16;;;;;;;;;;-1:-1:-1;46937:16:0;46913:40;;46982:4;46964;46969:1;46964:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;46964:23:0;;;-1:-1:-1;;;;;46964:23:0;;;;;47008:15;-1:-1:-1;;;;;47008:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47008:22:0;46998:7;;:4;;47003:1;;46998:7;;;;;;;;;;;:32;-1:-1:-1;;;;;46998:32:0;;;-1:-1:-1;;;;;46998:32:0;;;;;47044:62;47061:4;47076:15;47094:11;47044:8;:62::i;:::-;47146:15;-1:-1:-1;;;;;47146:66:0;;47227:11;47253:1;47297:4;47324;47344:15;47146:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47146:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47387:520;47535:62;47552:4;47567:15;47585:11;47535:8;:62::i;:::-;47641:258;;;-1:-1:-1;;;47641:258:0;;47713:4;47641:258;;;;;;;;;;;;47759:1;47641:258;;;;;;;;;;;;;;47873:15;47641:258;;;;;;-1:-1:-1;;;;;47641:15:0;:31;;;;47680:9;;47641:258;;;;;;;;;;;;;;;47680:9;47641:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42320:529;42367:7;;:12;:34;;;;-1:-1:-1;42383:13:0;;:18;42367:34;42363:47;;;42403:7;;42363:47;42441:7;;;42423:15;:25;42483:13;;;42459:21;:37;42525:7;;;42507:15;:25;42568:11;;;42546:19;:33;42618:17;;;42590:25;:45;42668:11;;;42646:19;:33;-1:-1:-1;42693:11:0;;;;42715:17;;;;42743:11;;;;42768:15;;;42794:21;;;42826:15;42320:529;:::o;50567:880::-;50718:23;50756:12;50783:18;50816:12;50842:48;50854:7;50876:13;-1:-1:-1;;;;;50863:26:0;:9;-1:-1:-1;;;;;50863:26:0;;50842:11;:48::i;:::-;50703:187;;;;;;;;50902:15;50919:23;50944:12;50960:132;50986:7;51008:4;51027:10;51052:4;51071:10;:8;:10::i;50960:132::-;-1:-1:-1;;;;;51124:15:0;;;;;;:7;:15;;;;;;50901:191;;-1:-1:-1;50901:191:0;;-1:-1:-1;50901:191:0;-1:-1:-1;51124:28:0;;51144:7;51124:19;:28::i;:::-;-1:-1:-1;;;;;51106:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51181:7;:15;;;;:28;;51201:7;51181:19;:28::i;:::-;-1:-1:-1;;;;;51163:15:0;;;;;;;:7;:15;;;;;;:46;;;;51241:18;;;;;;;:39;;51264:15;51241:22;:39::i;:::-;-1:-1:-1;;;;;51220:18:0;;;;;;:7;:18;;;;;:60;51291:26;51306:10;51291:14;:26::i;:::-;51328:17;51340:4;51328:11;:17::i;:::-;51356:23;51368:4;51374;51356:11;:23::i;:::-;51412:9;-1:-1:-1;;;;;51395:44:0;51404:6;-1:-1:-1;;;;;51395:44:0;;51423:15;51395:44;;;;;;;;;;;;;;;;;;50567:880;;;;;;;;;;:::o;49666:892::-;49815:23;49853:12;49880:18;49913:12;49939:48;49951:7;49973:13;-1:-1:-1;;;;;49960:26:0;:9;-1:-1:-1;;;;;49960:26:0;;49939:11;:48::i;:::-;49800:187;;;;;;;;49999:15;50016:23;50041:12;50057:132;50083:7;50105:4;50124:10;50149:4;50168:10;:8;:10::i;50057:132::-;-1:-1:-1;;;;;50221:15:0;;;;;;:7;:15;;;;;;49998:191;;-1:-1:-1;49998:191:0;;-1:-1:-1;49998:191:0;-1:-1:-1;50221:28:0;;49998:191;50221:19;:28::i;:::-;-1:-1:-1;;;;;50203:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50281:18;;;;;:7;:18;;;;;:39;;50304:15;50281:22;:39::i;:::-;-1:-1:-1;;;;;50260:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50352:7;:18;;;;:39;;50375:15;50352:22;:39::i;48838:819::-;48985:23;49023:12;49050:18;49083:12;49109:48;49121:7;49143:13;-1:-1:-1;;;;;49130:26:0;:9;-1:-1:-1;;;;;49130:26:0;;49109:11;:48::i;:::-;48970:187;;;;;;;;49169:15;49186:23;49211:12;49227:132;49253:7;49275:4;49294:10;49319:4;49338:10;:8;:10::i;49227:132::-;-1:-1:-1;;;;;49391:15:0;;;;;;:7;:15;;;;;;49168:191;;-1:-1:-1;49168:191:0;;-1:-1:-1;49168:191:0;-1:-1:-1;49391:28:0;;49168:191;49391:19;:28::i;35317:951::-;35468:23;35506:12;35533:18;35566:12;35592:48;35604:7;35626:13;-1:-1:-1;;;;;35613:26:0;:9;-1:-1:-1;;;;;35613:26:0;;35592:11;:48::i;:::-;35453:187;;;;;;;;35652:15;35669:23;35694:12;35710:132;35736:7;35758:4;35777:10;35802:4;35821:10;:8;:10::i;35710:132::-;-1:-1:-1;;;;;35874:15:0;;;;;;:7;:15;;;;;;35651:191;;-1:-1:-1;35651:191:0;;-1:-1:-1;35651:191:0;-1:-1:-1;35874:28:0;;35894:7;35874:19;:28::i;:::-;-1:-1:-1;;;;;35856:15:0;;;;;;:7;:15;;;;;;;;:46;;;;35931:7;:15;;;;:28;;35951:7;35931:19;:28::i;42858:308::-;42912:15;;42902:7;:25;42954:21;;42938:13;:37;42996:15;;42986:7;:25;43039:19;;43025:11;:33;43089:25;;43069:17;:45;43139:19;;43125:11;:33;42858:308::o;40900:355::-;40963:19;40985:10;:8;:10::i;:::-;40963:32;-1:-1:-1;41006:18:0;41027:27;:10;40963:32;41027:14;:27::i;:::-;41106:4;41090:22;;;;:7;:22;;;;;;41006:48;;-1:-1:-1;41090:38:0;;41006:48;41090:26;:38::i;:::-;41081:4;41065:22;;;;:7;:22;;;;;;;;:63;;;;41143:11;:26;;;;;;41139:108;;;41225:4;41209:22;;;;:7;:22;;;;;;:38;;41236:10;41209:26;:38::i;:::-;41200:4;41184:22;;;;:7;:22;;;;;:63;41139:108;40900:355;;;:::o;41264:312::-;41318:19;41340:10;:8;:10::i;:::-;41318:32;-1:-1:-1;41361:12:0;41376:21;:4;41318:32;41376:8;:21::i;:::-;41439:11;;-1:-1:-1;;;;;41439:11:0;41431:20;;;;:7;:20;;;;;;41361:36;;-1:-1:-1;41431:30:0;;41361:36;41431:24;:30::i;:::-;41416:11;;;-1:-1:-1;;;;;41416:11:0;;;41408:20;;;;:7;:20;;;;;;;;:53;;;;41488:11;;;;;41476:24;;:11;:24;;;;;;;41472:96;;;41546:11;;-1:-1:-1;;;;;41546:11:0;41538:20;;;;:7;:20;;;;;;:30;;41563:4;41538:24;:30::i;:::-;41523:11;;-1:-1:-1;;;;;41523:11:0;41515:20;;;;:7;:20;;;;;:53;41264:312;;;:::o;38718:147::-;38796:7;;:17;;38808:4;38796:11;:17::i;:::-;38786:7;:27;38837:10;;:20;;38852:4;38837:14;:20::i;:::-;38824:10;:33;-1:-1:-1;;38718:147:0:o

Swarm Source

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