ETH Price: $2,474.55 (+1.01%)

Token

Golden Clifford ($GCLIFF)
 

Overview

Max Total Supply

1,000,000,000 $GCLIFF

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,000,000 $GCLIFF

Value
$0.00
0xaa5c03ad449ad4d2fe8715a1d194327b9bc29580
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:
GoldenClifford

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}











// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: contracts/test.sol


pragma solidity ^0.8.16;


contract GoldenClifford is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
   
    struct BuyFee {
        
        uint16 devFee;
    }

    struct SellFee {
        
        uint16 devFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapTokensAtAmount = 4 * 10**7 * 10**18; 


    uint256 public maxBuyAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale)
    uint256 public maxSellAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale)
    uint256 public maxWalletAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

    address payable devWallet = payable(address(0xE2Bc8E35B49E552aFb9096fa02140df0D1351AF6)); 
   
   
    

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    mapping(address => bool) public automatedMarketMakerPairs;

    
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    constructor() ERC20("Golden Clifford", "$GCLIFF") {
       
        buyFee.devFee = 10;
        totalBuyFee = 10; 

        
        sellFee.devFee = 10;
        totalSellFee = 10;

        

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

       
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1 * 10**9 * (10**18)); // 1 Billion Tokens
    }

    receive() external payable {}

    function updateRouter(address newAddress) external onlyOwner {
    require(newAddress != address(uniswapV2Router), "ERC20: The router already has that address");
            uniswapV2Router = IUniswapV2Router02(newAddress);
         address get_pair =
            IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this),
            uniswapV2Router.WETH());
        if (get_pair == address(0)) {
          uniswapV2Pair =
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),
             uniswapV2Router.WETH());
    } else {
        uniswapV2Pair = get_pair;
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "ERC20: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

     function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludefromLimit(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromLimit[account] = excluded;
    }


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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "ERC20: The Uniswap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "ERC20: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
            
    function setBuyFees(
        uint16 newBuyFee
        ) external onlyOwner

    {
        buyFee.devFee = newBuyFee;
         totalBuyFee = newBuyFee;
        require(totalBuyFee <= 5,
         "MaX buy fees limit  is 5%");
    }

   
    function setSellFee(
        uint16 newSellFee
        
    ) external onlyOwner  {
        sellFee.devFee = newSellFee;
        totalSellFee = newSellFee;
        require (totalSellFee <= 30, "Max sell fees limit is 30%");
    }

                    

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    // function to change dev wallet
    function setDevWallet(address newWallet) external onlyOwner {
    require (newWallet != address(0), "Dev wallet can not be a zero address");
        devWallet = payable(newWallet);
    }
  
    // Function to set Max Wallet limit ( How many tokens a wallet can hold)
    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount > 20000000, "Can't set lower amount, No rugPull");
        maxWalletAmount = amount * 10**18;
    }
    // // function to set Max Buy limit per transaction
    function setMaxBuyAmount(uint256 amount) external onlyOwner {
      require(amount >= 20000000, "Can't set lower amount, No rugPull");
        maxBuyAmount = amount * 10**18;
    }
    // function to set Max sell limit per transaction
    function setMaxSellAmount(uint256 amount) external onlyOwner {
        require(amount >= 20000000, "Can't set lower amount, No rugPull");
        maxSellAmount = amount * 10**18;
    }

    // function to set threshold for eth conversion
   function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
       swapTokensAtAmount =  amount * 10**18;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");
       
        require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            swapTokensAtAmount;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            
            uint256 swapTokens = contractTokenBalance;
            swapAndSendToDev(swapTokens);

        }

        bool takeFee = true;

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

        if (takeFee) {
            uint256 fees;

          

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[to]) {
                    require(amount <= maxSellAmount, "Sell exceeds per transaction limit");
                } else if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxBuyAmount, "Buy exceeds per transaction limit");
                   
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Antiwhale: Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

        super._transfer(from, to, amount);
    }

    function swapAndSendToDev (uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance.sub(initialBalance);

        
       (bool os, ) = payable(devWallet).call{value: newBalance}("");
       require(os,"transaction failed");

    }
   

    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

        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a2116545850052128000000600a556a108b2a2c28029094000000600b819055600c819055600d55600e8054600160301b600160d01b03191679e2bc8e35b49e552afb9096fa02140df0d1351af60000000000001790553480156200006857600080fd5b506040518060400160405280600f81526020016e11dbdb19195b8810db1a59999bdc99608a1b815250604051806040016040528060078152602001661223a1a624a32360c91b8152508160039081620000c2919062000751565b506004620000d1828262000751565b505050620000ee620000e86200033660201b60201c565b6200033a565b60088054600a61ffff199182168117909255600e80546009805490931690931790915563ffffffff19909116620a000a1790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa15801562000177573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019d91906200081d565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021191906200081d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028591906200081d565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002c48160016200038c565b620002e3620002db6005546001600160a01b031690565b60016200047c565b620002f03060016200047c565b600e805460ff60201b19166401000000001790556200032e6200031b6005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620005c3565b505062000877565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503620004285760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200041f565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503620005645760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b60648201526084016200041f565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200061b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200041f565b80600260008282546200062f91906200084f565b90915550506001600160a01b038216600090815260208190526040812080548392906200065e9084906200084f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006d857607f821691505b602082108103620006f957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006a857600081815260208120601f850160051c81016020861015620007285750805b601f850160051c820191505b81811015620007495782815560010162000734565b505050505050565b81516001600160401b038111156200076d576200076d620006ad565b62000785816200077e8454620006c3565b84620006ff565b602080601f831160018114620007bd5760008415620007a45750858301515b600019600386901b1c1916600185901b17855562000749565b600085815260208120601f198616915b82811015620007ee57888601518255948401946001909101908401620007cd565b50858210156200080d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083057600080fd5b81516001600160a01b03811681146200084857600080fd5b9392505050565b808201808211156200087157634e487b7160e01b600052601160045260246000fd5b92915050565b6124ef80620008876000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f45605146106b4578063e99c9d09146106ca578063f2fde38b146106ea578063f34eb0b81461070a578063f9d0831a1461072a57600080fd5b8063b62496f5146105de578063c02466681461060e578063c851cc321461062e578063dd62ed3e1461064e578063e064648a1461069457600080fd5b80639a7a23d6116100f25780639a7a23d614610548578063a457c2d714610568578063a9059cbb14610588578063aa4bde28146105a8578063afa4f3b2146105be57600080fd5b806388e765ff146104ea5780638a8c523c146105005780638da5cb5b1461051557806395d89b411461053357600080fd5b806343c348a5116101b157806366d602ae1161017557806366d602ae146104475780636ddd17131461045d57806370a082311461047f578063715018a6146104b55780637537a47f146104ca57600080fd5b806343c348a51461039357806347062402146103b357806349bd5a5e146103ce5780634fbee193146103ee5780635d0044ca1461042757600080fd5b80631f53ac02116101f85780631f53ac02146102e757806323b872dd146103095780632b14ca5614610329578063313ce56714610357578063395093511461037357600080fd5b806306fdde0314610235578063095ea7b3146102605780631694505e1461029057806318160ddd146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61074a565b604051610257919061211a565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461217d565b6107dc565b6040519015158152602001610257565b34801561029c57600080fd5b506006546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102d457600080fd5b506002545b604051908152602001610257565b3480156102f357600080fd5b506103076103023660046121a9565b6107f3565b005b34801561031557600080fd5b506102806103243660046121c6565b6108ba565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff9091168152602001610257565b34801561036357600080fd5b5060405160128152602001610257565b34801561037f57600080fd5b5061028061038e36600461217d565b610964565b34801561039f57600080fd5b506103076103ae366004612207565b6109a0565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102b0906001600160a01b031681565b3480156103fa57600080fd5b506102806104093660046121a9565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561043357600080fd5b5061030761044236600461222b565b610a3d565b34801561045357600080fd5b506102d9600c5481565b34801561046957600080fd5b50600e5461028090640100000000900460ff1681565b34801561048b57600080fd5b506102d961049a3660046121a9565b6001600160a01b031660009081526020819052604090205490565b3480156104c157600080fd5b50610307610aa2565b3480156104d657600080fd5b506103076104e5366004612252565b610ad8565b3480156104f657600080fd5b506102d9600b5481565b34801561050c57600080fd5b50610307610b2d565b34801561052157600080fd5b506005546001600160a01b03166102b0565b34801561053f57600080fd5b5061024a610b70565b34801561055457600080fd5b50610307610563366004612252565b610b7f565b34801561057457600080fd5b5061028061058336600461217d565b610c4c565b34801561059457600080fd5b506102806105a336600461217d565b610ce5565b3480156105b457600080fd5b506102d9600d5481565b3480156105ca57600080fd5b506103076105d936600461222b565b610cf2565b3480156105ea57600080fd5b506102806105f93660046121a9565b60116020526000908152604090205460ff1681565b34801561061a57600080fd5b50610307610629366004612252565b610d34565b34801561063a57600080fd5b506103076106493660046121a9565b610e47565b34801561065a57600080fd5b506102d961066936600461228b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106a057600080fd5b506103076106af366004612207565b61121a565b3480156106c057600080fd5b506102d9600a5481565b3480156106d657600080fd5b506103076106e536600461222b565b6112c6565b3480156106f657600080fd5b506103076107053660046121a9565b61132c565b34801561071657600080fd5b5061030761072536600461222b565b6113c4565b34801561073657600080fd5b506103076107453660046121a9565b61142a565b606060038054610759906122b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906122b9565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e93384846115e4565b5060015b92915050565b6005546001600160a01b031633146108265760405162461bcd60e51b815260040161081d906122f3565b60405180910390fd5b6001600160a01b0381166108885760405162461bcd60e51b8152602060048201526024808201527f4465762077616c6c65742063616e206e6f742062652061207a65726f206164646044820152637265737360e01b606482015260840161081d565b600e80546001600160a01b039092166601000000000000026601000000000000600160d01b0319909216919091179055565b60006108c7848484611708565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561094c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081d565b61095985338584036115e4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061099b90869061233e565b6115e4565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161081d906122f3565b6008805461ffff831661ffff199182168117909255600e80549091168217905560051015610a3a5760405162461bcd60e51b815260206004820152601960248201527f4d6158206275792066656573206c696d69742020697320352500000000000000604482015260640161081d565b50565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161081d906122f3565b6301312d008111610a8a5760405162461bcd60e51b815260040161081d90612351565b610a9c81670de0b6b3a7640000612393565b600d5550565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161081d906122f3565b610ad66000611bac565b565b6005546001600160a01b03163314610b025760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b575760405162461bcd60e51b815260040161081d906122f3565b600e805465ff0000000000191665010000000000179055565b606060048054610759906122b9565b6005546001600160a01b03163314610ba95760405162461bcd60e51b815260040161081d906122f3565b6007546001600160a01b0390811690831603610c3e5760405162461bcd60e51b815260206004820152604860248201527f45524332303a2054686520556e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a40161081d565b610c488282611bfe565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081d565b610cdb33858584036115e4565b5060019392505050565b60006107e9338484611708565b6005546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161081d906122f3565b610d2e81670de0b6b3a7640000612393565b600a5550565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610de85760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161081d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e715760405162461bcd60e51b815260040161081d906122f3565b6006546001600160a01b0390811690821603610ee25760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161081d565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610f3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6291906123aa565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe891906123aa565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611033573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105791906123aa565b90506001600160a01b0381166111f957600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906123aa565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906123aa565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d591906123aa565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146112445760405162461bcd60e51b815260040161081d906122f3565b6009805461ffff191661ffff838116918217909255600e805463ffff00001916620100009283021790819055601e9190049091161115610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d61782073656c6c2066656573206c696d697420697320333025000000000000604482015260640161081d565b6005546001600160a01b031633146112f05760405162461bcd60e51b815260040161081d906122f3565b6301312d008110156113145760405162461bcd60e51b815260040161081d90612351565b61132681670de0b6b3a7640000612393565b600c5550565b6005546001600160a01b031633146113565760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b0381166113bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a3a81611bac565b6005546001600160a01b031633146113ee5760405162461bcd60e51b815260040161081d906122f3565b6301312d008110156114125760405162461bcd60e51b815260040161081d90612351565b61142481670de0b6b3a7640000612393565b600b5550565b6005546001600160a01b031633146114545760405162461bcd60e51b815260040161081d906122f3565b306001600160a01b038216036114965760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161081d565b6001600160a01b0381166114dd576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c48573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a91906123c7565b9050816001600160a01b031663a9059cbb61156d6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906123e0565b50505050565b6001600160a01b0383166116465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661176c5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b0382166117ce5760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b600e5465010000000000900460ff168061180057506001600160a01b0383166000908152600f602052604090205460ff165b61184c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161081d565b806000036118655761186083836000611ce8565b505050565b30600090815260208190526040902054600a54600e549082101590640100000000900460ff1680156118a15750600754600160a01b900460ff16155b80156118bb57506007546001600160a01b03868116911614155b80156118c45750805b156118d557816118d381611ebb565b505b6001600160a01b0385166000908152600f602052604090205460019060ff168061191757506001600160a01b0385166000908152600f602052604090205460ff165b15611920575060005b8015611b99576001600160a01b03851660009081526011602052604081205460ff161561195a5750600e5462010000900461ffff16611984565b6001600160a01b03871660009081526011602052604090205460ff16156119845750600e5461ffff165b6001600160a01b03871660009081526010602052604090205460ff161580156119c657506001600160a01b03861660009081526010602052604090205460ff16155b15611b66576001600160a01b03861660009081526011602052604090205460ff1615611a4e57600c54851115611a495760405162461bcd60e51b815260206004820152602260248201527f53656c6c206578636565647320706572207472616e73616374696f6e206c696d6044820152611a5d60f21b606482015260840161081d565b611acb565b6001600160a01b03871660009081526011602052604090205460ff1615611acb57600b54851115611acb5760405162461bcd60e51b815260206004820152602160248201527f427579206578636565647320706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161081d565b6001600160a01b03861660009081526011602052604090205460ff16611b6657600d5485611b0e886001600160a01b031660009081526020819052604090205490565b611b18919061233e565b1115611b665760405162461bcd60e51b815260206004820181905260248201527f416e74697768616c653a2042616c616e63652065786365656473206c696d6974604482015260640161081d565b6000611b7d6064611b778885611f9d565b90611fb0565b9050611b898682611fbc565b9550611b96883083611ce8565b50505b611ba4868686611ce8565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611c945760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161081d565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d4c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b038216611dae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b6001600160a01b03831660009081526020819052604090205481811015611e265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5d90849061233e565b90915550508115611eb657826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ead91815260200190565b60405180910390a35b6115de565b6007805460ff60a01b1916600160a01b17905547611ed882611fc8565b6000611ee44783611fbc565b600e5460405191925060009166010000000000009091046001600160a01b03169083908381818185875af1925050503d8060008114611f3f576040519150601f19603f3d011682016040523d82523d6000602084013e611f44565b606091505b5050905080611f8a5760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b604482015260640161081d565b50506007805460ff60a01b191690555050565b6000611fa98284612393565b9392505050565b6000611fa982846123fd565b6000611fa9828461241f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ffd57611ffd612432565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a91906123aa565b8160018151811061208d5761208d612432565b6001600160a01b0392831660209182029290920101526006546120b391309116846115e4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120ec908590600090869030904290600401612448565b600060405180830381600087803b15801561210657600080fd5b505af1158015611ba4573d6000803e3d6000fd5b600060208083528351808285015260005b818110156121475785810183015185820160400152820161212b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a3a57600080fd5b6000806040838503121561219057600080fd5b823561219b81612168565b946020939093013593505050565b6000602082840312156121bb57600080fd5b8135611fa981612168565b6000806000606084860312156121db57600080fd5b83356121e681612168565b925060208401356121f681612168565b929592945050506040919091013590565b60006020828403121561221957600080fd5b813561ffff81168114611fa957600080fd5b60006020828403121561223d57600080fd5b5035919050565b8015158114610a3a57600080fd5b6000806040838503121561226557600080fd5b823561227081612168565b9150602083013561228081612244565b809150509250929050565b6000806040838503121561229e57600080fd5b82356122a981612168565b9150602083013561228081612168565b600181811c908216806122cd57607f821691505b6020821081036122ed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ed576107ed612328565b60208082526022908201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756040820152611b1b60f21b606082015260800190565b80820281158282048414176107ed576107ed612328565b6000602082840312156123bc57600080fd5b8151611fa981612168565b6000602082840312156123d957600080fd5b5051919050565b6000602082840312156123f257600080fd5b8151611fa981612244565b60008261241a57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107ed576107ed612328565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124985784516001600160a01b031683529383019391830191600101612473565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d358be17d9a166e6b50108b68adb2a76ada4b28f69e83dfc12614684065859b464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f45605146106b4578063e99c9d09146106ca578063f2fde38b146106ea578063f34eb0b81461070a578063f9d0831a1461072a57600080fd5b8063b62496f5146105de578063c02466681461060e578063c851cc321461062e578063dd62ed3e1461064e578063e064648a1461069457600080fd5b80639a7a23d6116100f25780639a7a23d614610548578063a457c2d714610568578063a9059cbb14610588578063aa4bde28146105a8578063afa4f3b2146105be57600080fd5b806388e765ff146104ea5780638a8c523c146105005780638da5cb5b1461051557806395d89b411461053357600080fd5b806343c348a5116101b157806366d602ae1161017557806366d602ae146104475780636ddd17131461045d57806370a082311461047f578063715018a6146104b55780637537a47f146104ca57600080fd5b806343c348a51461039357806347062402146103b357806349bd5a5e146103ce5780634fbee193146103ee5780635d0044ca1461042757600080fd5b80631f53ac02116101f85780631f53ac02146102e757806323b872dd146103095780632b14ca5614610329578063313ce56714610357578063395093511461037357600080fd5b806306fdde0314610235578063095ea7b3146102605780631694505e1461029057806318160ddd146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61074a565b604051610257919061211a565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461217d565b6107dc565b6040519015158152602001610257565b34801561029c57600080fd5b506006546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102d457600080fd5b506002545b604051908152602001610257565b3480156102f357600080fd5b506103076103023660046121a9565b6107f3565b005b34801561031557600080fd5b506102806103243660046121c6565b6108ba565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff9091168152602001610257565b34801561036357600080fd5b5060405160128152602001610257565b34801561037f57600080fd5b5061028061038e36600461217d565b610964565b34801561039f57600080fd5b506103076103ae366004612207565b6109a0565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102b0906001600160a01b031681565b3480156103fa57600080fd5b506102806104093660046121a9565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561043357600080fd5b5061030761044236600461222b565b610a3d565b34801561045357600080fd5b506102d9600c5481565b34801561046957600080fd5b50600e5461028090640100000000900460ff1681565b34801561048b57600080fd5b506102d961049a3660046121a9565b6001600160a01b031660009081526020819052604090205490565b3480156104c157600080fd5b50610307610aa2565b3480156104d657600080fd5b506103076104e5366004612252565b610ad8565b3480156104f657600080fd5b506102d9600b5481565b34801561050c57600080fd5b50610307610b2d565b34801561052157600080fd5b506005546001600160a01b03166102b0565b34801561053f57600080fd5b5061024a610b70565b34801561055457600080fd5b50610307610563366004612252565b610b7f565b34801561057457600080fd5b5061028061058336600461217d565b610c4c565b34801561059457600080fd5b506102806105a336600461217d565b610ce5565b3480156105b457600080fd5b506102d9600d5481565b3480156105ca57600080fd5b506103076105d936600461222b565b610cf2565b3480156105ea57600080fd5b506102806105f93660046121a9565b60116020526000908152604090205460ff1681565b34801561061a57600080fd5b50610307610629366004612252565b610d34565b34801561063a57600080fd5b506103076106493660046121a9565b610e47565b34801561065a57600080fd5b506102d961066936600461228b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106a057600080fd5b506103076106af366004612207565b61121a565b3480156106c057600080fd5b506102d9600a5481565b3480156106d657600080fd5b506103076106e536600461222b565b6112c6565b3480156106f657600080fd5b506103076107053660046121a9565b61132c565b34801561071657600080fd5b5061030761072536600461222b565b6113c4565b34801561073657600080fd5b506103076107453660046121a9565b61142a565b606060038054610759906122b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906122b9565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e93384846115e4565b5060015b92915050565b6005546001600160a01b031633146108265760405162461bcd60e51b815260040161081d906122f3565b60405180910390fd5b6001600160a01b0381166108885760405162461bcd60e51b8152602060048201526024808201527f4465762077616c6c65742063616e206e6f742062652061207a65726f206164646044820152637265737360e01b606482015260840161081d565b600e80546001600160a01b039092166601000000000000026601000000000000600160d01b0319909216919091179055565b60006108c7848484611708565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561094c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081d565b61095985338584036115e4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061099b90869061233e565b6115e4565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161081d906122f3565b6008805461ffff831661ffff199182168117909255600e80549091168217905560051015610a3a5760405162461bcd60e51b815260206004820152601960248201527f4d6158206275792066656573206c696d69742020697320352500000000000000604482015260640161081d565b50565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161081d906122f3565b6301312d008111610a8a5760405162461bcd60e51b815260040161081d90612351565b610a9c81670de0b6b3a7640000612393565b600d5550565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161081d906122f3565b610ad66000611bac565b565b6005546001600160a01b03163314610b025760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b575760405162461bcd60e51b815260040161081d906122f3565b600e805465ff0000000000191665010000000000179055565b606060048054610759906122b9565b6005546001600160a01b03163314610ba95760405162461bcd60e51b815260040161081d906122f3565b6007546001600160a01b0390811690831603610c3e5760405162461bcd60e51b815260206004820152604860248201527f45524332303a2054686520556e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a40161081d565b610c488282611bfe565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081d565b610cdb33858584036115e4565b5060019392505050565b60006107e9338484611708565b6005546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161081d906122f3565b610d2e81670de0b6b3a7640000612393565b600a5550565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610de85760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161081d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e715760405162461bcd60e51b815260040161081d906122f3565b6006546001600160a01b0390811690821603610ee25760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161081d565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610f3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6291906123aa565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe891906123aa565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611033573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105791906123aa565b90506001600160a01b0381166111f957600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906123aa565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906123aa565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d591906123aa565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146112445760405162461bcd60e51b815260040161081d906122f3565b6009805461ffff191661ffff838116918217909255600e805463ffff00001916620100009283021790819055601e9190049091161115610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d61782073656c6c2066656573206c696d697420697320333025000000000000604482015260640161081d565b6005546001600160a01b031633146112f05760405162461bcd60e51b815260040161081d906122f3565b6301312d008110156113145760405162461bcd60e51b815260040161081d90612351565b61132681670de0b6b3a7640000612393565b600c5550565b6005546001600160a01b031633146113565760405162461bcd60e51b815260040161081d906122f3565b6001600160a01b0381166113bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a3a81611bac565b6005546001600160a01b031633146113ee5760405162461bcd60e51b815260040161081d906122f3565b6301312d008110156114125760405162461bcd60e51b815260040161081d90612351565b61142481670de0b6b3a7640000612393565b600b5550565b6005546001600160a01b031633146114545760405162461bcd60e51b815260040161081d906122f3565b306001600160a01b038216036114965760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161081d565b6001600160a01b0381166114dd576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c48573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a91906123c7565b9050816001600160a01b031663a9059cbb61156d6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906123e0565b50505050565b6001600160a01b0383166116465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661176c5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b0382166117ce5760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b600e5465010000000000900460ff168061180057506001600160a01b0383166000908152600f602052604090205460ff165b61184c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161081d565b806000036118655761186083836000611ce8565b505050565b30600090815260208190526040902054600a54600e549082101590640100000000900460ff1680156118a15750600754600160a01b900460ff16155b80156118bb57506007546001600160a01b03868116911614155b80156118c45750805b156118d557816118d381611ebb565b505b6001600160a01b0385166000908152600f602052604090205460019060ff168061191757506001600160a01b0385166000908152600f602052604090205460ff165b15611920575060005b8015611b99576001600160a01b03851660009081526011602052604081205460ff161561195a5750600e5462010000900461ffff16611984565b6001600160a01b03871660009081526011602052604090205460ff16156119845750600e5461ffff165b6001600160a01b03871660009081526010602052604090205460ff161580156119c657506001600160a01b03861660009081526010602052604090205460ff16155b15611b66576001600160a01b03861660009081526011602052604090205460ff1615611a4e57600c54851115611a495760405162461bcd60e51b815260206004820152602260248201527f53656c6c206578636565647320706572207472616e73616374696f6e206c696d6044820152611a5d60f21b606482015260840161081d565b611acb565b6001600160a01b03871660009081526011602052604090205460ff1615611acb57600b54851115611acb5760405162461bcd60e51b815260206004820152602160248201527f427579206578636565647320706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161081d565b6001600160a01b03861660009081526011602052604090205460ff16611b6657600d5485611b0e886001600160a01b031660009081526020819052604090205490565b611b18919061233e565b1115611b665760405162461bcd60e51b815260206004820181905260248201527f416e74697768616c653a2042616c616e63652065786365656473206c696d6974604482015260640161081d565b6000611b7d6064611b778885611f9d565b90611fb0565b9050611b898682611fbc565b9550611b96883083611ce8565b50505b611ba4868686611ce8565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611c945760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161081d565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d4c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b038216611dae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b6001600160a01b03831660009081526020819052604090205481811015611e265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5d90849061233e565b90915550508115611eb657826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ead91815260200190565b60405180910390a35b6115de565b6007805460ff60a01b1916600160a01b17905547611ed882611fc8565b6000611ee44783611fbc565b600e5460405191925060009166010000000000009091046001600160a01b03169083908381818185875af1925050503d8060008114611f3f576040519150601f19603f3d011682016040523d82523d6000602084013e611f44565b606091505b5050905080611f8a5760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b604482015260640161081d565b50506007805460ff60a01b191690555050565b6000611fa98284612393565b9392505050565b6000611fa982846123fd565b6000611fa9828461241f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ffd57611ffd612432565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a91906123aa565b8160018151811061208d5761208d612432565b6001600160a01b0392831660209182029290920101526006546120b391309116846115e4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120ec908590600090869030904290600401612448565b600060405180830381600087803b15801561210657600080fd5b505af1158015611ba4573d6000803e3d6000fd5b600060208083528351808285015260005b818110156121475785810183015185820160400152820161212b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a3a57600080fd5b6000806040838503121561219057600080fd5b823561219b81612168565b946020939093013593505050565b6000602082840312156121bb57600080fd5b8135611fa981612168565b6000806000606084860312156121db57600080fd5b83356121e681612168565b925060208401356121f681612168565b929592945050506040919091013590565b60006020828403121561221957600080fd5b813561ffff81168114611fa957600080fd5b60006020828403121561223d57600080fd5b5035919050565b8015158114610a3a57600080fd5b6000806040838503121561226557600080fd5b823561227081612168565b9150602083013561228081612244565b809150509250929050565b6000806040838503121561229e57600080fd5b82356122a981612168565b9150602083013561228081612168565b600181811c908216806122cd57607f821691505b6020821081036122ed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ed576107ed612328565b60208082526022908201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756040820152611b1b60f21b606082015260800190565b80820281158282048414176107ed576107ed612328565b6000602082840312156123bc57600080fd5b8151611fa981612168565b6000602082840312156123d957600080fd5b5051919050565b6000602082840312156123f257600080fd5b8151611fa981612244565b60008261241a57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107ed576107ed612328565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124985784516001600160a01b031683529383019391830191600101612473565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d358be17d9a166e6b50108b68adb2a76ada4b28f69e83dfc12614684065859b464736f6c63430008110033

Deployed Bytecode Sourcemap

34697:10293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26808:169;;;;;;;;;;-1:-1:-1;26808:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;26808:169:0;1023:187:1;34781:41:0;;;;;;;;;;-1:-1:-1;34781:41:0;;;;-1:-1:-1;;;;;34781:41:0;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;34781:41:0;1215:229:1;25761:108:0;;;;;;;;;;-1:-1:-1;25849:12:0;;25761:108;;;1595:25:1;;;1583:2;1568:18;25761:108:0;1449:177:1;40499:189:0;;;;;;;;;;-1:-1:-1;40499:189:0;;;;;:::i;:::-;;:::i;:::-;;27459:492;;;;;;;;;;-1:-1:-1;27459:492:0;;;;;:::i;:::-;;:::i;35056:22::-;;;;;;;;;;-1:-1:-1;35056:22:0;;;;;;;;;;;2518:6:1;2506:19;;;2488:38;;2476:2;2461:18;35056:22:0;2344:188:1;25603:93:0;;;;;;;;;;-1:-1:-1;25603:93:0;;25686:2;2679:36:1;;2667:2;2652:18;25603:93:0;2537:184:1;28360:215:0;;;;;;;;;;-1:-1:-1;28360:215:0;;;;;:::i;:::-;;:::i;39808:238::-;;;;;;;;;;-1:-1:-1;39808:238:0;;;;;:::i;:::-;;:::i;35029:20::-;;;;;;;;;;-1:-1:-1;35029:20:0;;;;;;;;34829:29;;;;;;;;;;-1:-1:-1;34829:29:0;;;;-1:-1:-1;;;;;34829:29:0;;;40327:126;;;;;;;;;;-1:-1:-1;40327:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40417:28:0;40393:4;40417:28;;;:19;:28;;;;;;;;;40327:126;40776:184;;;;;;;;;;-1:-1:-1;40776:184:0;;;;;:::i;:::-;;:::i;35248:49::-;;;;;;;;;;;;;;;;35503:23;;;;;;;;;;-1:-1:-1;35503:23:0;;;;;;;;;;;25932:127;;;;;;;;;;-1:-1:-1;25932:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;26033:18:0;26006:7;26033:18;;;;;;;;;;;;25932:127;18062:103;;;;;;;;;;;;;:::i;38838:159::-;;;;;;;;;;-1:-1:-1;38838:159:0;;;;;:::i;:::-;;:::i;35161:48::-;;;;;;;;;;;;;;;;39006:95;;;;;;;;;;;;;:::i;17411:87::-;;;;;;;;;;-1:-1:-1;17484:6:0;;-1:-1:-1;;;;;17484:6:0;17411:87;;24860:104;;;;;;;;;;;;;:::i;39109:319::-;;;;;;;;;;-1:-1:-1;39109:319:0;;;;;:::i;:::-;;:::i;29078:413::-;;;;;;;;;;-1:-1:-1;29078:413:0;;;;;:::i;:::-;;:::i;26272:175::-;;;;;;;;;;-1:-1:-1;26272:175:0;;;;;:::i;:::-;;:::i;35336:51::-;;;;;;;;;;;;;;;;41514:121;;;;;;;;;;-1:-1:-1;41514:121:0;;;;;:::i;:::-;;:::i;35809:57::-;;;;;;;;;;-1:-1:-1;35809:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38073:334;;;;;;;;;;-1:-1:-1;38073:334:0;;;;;:::i;:::-;;:::i;37436:629::-;;;;;;;;;;-1:-1:-1;37436:629:0;;;;;:::i;:::-;;:::i;26510:151::-;;;;;;;;;;-1:-1:-1;26510:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26626:18:0;;;26599:7;26626:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26510:151;40059:236;;;;;;;;;;-1:-1:-1;40059:236:0;;;;;:::i;:::-;;:::i;35095:54::-;;;;;;;;;;;;;;;;41267:187;;;;;;;;;;-1:-1:-1;41267:187:0;;;;;:::i;:::-;;:::i;18320:201::-;;;;;;;;;;-1:-1:-1;18320:201:0;;;;;:::i;:::-;;:::i;41023:183::-;;;;;;;;;;-1:-1:-1;41023:183:0;;;;;:::i;:::-;;:::i;38416:414::-;;;;;;;;;;-1:-1:-1;38416:414:0;;;;;:::i;:::-;;:::i;24641:100::-;24695:13;24728:5;24721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;:::o;26808:169::-;26891:4;26908:39;16195:10;26931:7;26940:6;26908:8;:39::i;:::-;-1:-1:-1;26965:4:0;26808:169;;;;;:::o;40499:189::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;40575:23:0;::::1;40566:73;;;::::0;-1:-1:-1;;;40566:73:0;;5247:2:1;40566:73:0::1;::::0;::::1;5229:21:1::0;5286:2;5266:18;;;5259:30;5325:34;5305:18;;;5298:62;-1:-1:-1;;;5376:18:1;;;5369:34;5420:19;;40566:73:0::1;5045:400:1::0;40566:73:0::1;40650:9;:30:::0;;-1:-1:-1;;;;;40650:30:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;40650:30:0;;::::1;::::0;;;::::1;::::0;;40499:189::o;27459:492::-;27599:4;27616:36;27626:6;27634:9;27645:6;27616:9;:36::i;:::-;-1:-1:-1;;;;;27692:19:0;;27665:24;27692:19;;;:11;:19;;;;;;;;16195:10;27692:33;;;;;;;;27744:26;;;;27736:79;;;;-1:-1:-1;;;27736:79:0;;5652:2:1;27736:79:0;;;5634:21:1;5691:2;5671:18;;;5664:30;5730:34;5710:18;;;5703:62;-1:-1:-1;;;5781:18:1;;;5774:38;5829:19;;27736:79:0;5450:404:1;27736:79:0;27851:57;27860:6;16195:10;27901:6;27882:16;:25;27851:8;:57::i;:::-;-1:-1:-1;27939:4:0;;27459:492;-1:-1:-1;;;;27459:492:0:o;28360:215::-;16195:10;28448:4;28497:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28497:34:0;;;;;;;;;;28448:4;;28465:80;;28488:7;;28497:47;;28534:10;;28497:47;:::i;:::-;28465:8;:80::i;39808:238::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39903:6:::1;:25:::0;;::::1;::::0;::::1;-1:-1:-1::0;;39903:25:0;;::::1;::::0;::::1;::::0;;;39940:11:::1;:23:::0;;;;::::1;::::0;::::1;::::0;;39997:1:::1;-1:-1:-1::0;39982:16:0::1;39974:64;;;::::0;-1:-1:-1;;;39974:64:0;;6323:2:1;39974:64:0::1;::::0;::::1;6305:21:1::0;6362:2;6342:18;;;6335:30;6401:27;6381:18;;;6374:55;6446:18;;39974:64:0::1;6121:349:1::0;39974:64:0::1;39808:238:::0;:::o;40776:184::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;40861:8:::1;40852:6;:17;40844:64;;;;-1:-1:-1::0;;;40844:64:0::1;;;;;;;:::i;:::-;40937:15;:6:::0;40946::::1;40937:15;:::i;:::-;40919;:33:::0;-1:-1:-1;40776:184:0:o;18062:103::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;18127:30:::1;18154:1;18127:18;:30::i;:::-;18062:103::o:0;38838:159::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38949:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;38949:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38838:159::o;39006:95::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39061:16:::1;:23:::0;;-1:-1:-1;;39061:23:0::1;::::0;::::1;::::0;;39006:95::o;24860:104::-;24916:13;24949:7;24942:14;;;;;:::i;39109:319::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39253:13:::1;::::0;-1:-1:-1;;;;;39253:13:0;;::::1;39245:21:::0;;::::1;::::0;39223:143:::1;;;::::0;-1:-1:-1;;;39223:143:0;;7253:2:1;39223:143:0::1;::::0;::::1;7235:21:1::0;7292:2;7272:18;;;7265:30;7331:34;7311:18;;;7304:62;7402:34;7382:18;;;7375:62;-1:-1:-1;;;7453:19:1;;;7446:39;7502:19;;39223:143:0::1;7051:476:1::0;39223:143:0::1;39379:41;39408:4;39414:5;39379:28;:41::i;:::-;39109:319:::0;;:::o;29078:413::-;16195:10;29171:4;29215:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29215:34:0;;;;;;;;;;29268:35;;;;29260:85;;;;-1:-1:-1;;;29260:85:0;;7734:2:1;29260:85:0;;;7716:21:1;7773:2;7753:18;;;7746:30;7812:34;7792:18;;;7785:62;-1:-1:-1;;;7863:18:1;;;7856:35;7908:19;;29260:85:0;7532:401:1;29260:85:0;29381:67;16195:10;29404:7;29432:15;29413:16;:34;29381:8;:67::i;:::-;-1:-1:-1;29479:4:0;;29078:413;-1:-1:-1;;;29078:413:0:o;26272:175::-;26358:4;26375:42;16195:10;26399:9;26410:6;26375:9;:42::i;41514:121::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41612:15:::1;:6:::0;41621::::1;41612:15;:::i;:::-;41590:18;:37:::0;-1:-1:-1;41514:121:0:o;38073:334::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38180:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;38158:139:::1;;;::::0;-1:-1:-1;;;38158:139:0;;8140:2:1;38158:139:0::1;::::0;::::1;8122:21:1::0;8179:2;8159:18;;;8152:30;8218:34;8198:18;;;8191:62;-1:-1:-1;;;8269:18:1;;;8262:47;8326:19;;38158:139:0::1;7938:413:1::0;38158:139:0::1;-1:-1:-1::0;;;;;38308:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38308:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38365:34;;1163:41:1;;;38365:34:0::1;::::0;1136:18:1;38365:34:0::1;;;;;;;38073:334:::0;;:::o;37436:629::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;37534:15:::1;::::0;-1:-1:-1;;;;;37534:15:0;;::::1;37512:38:::0;;::::1;::::0;37504:93:::1;;;::::0;-1:-1:-1;;;37504:93:0;;8558:2:1;37504:93:0::1;::::0;::::1;8540:21:1::0;8597:2;8577:18;;;8570:30;8636:34;8616:18;;;8609:62;-1:-1:-1;;;8687:18:1;;;8680:40;8737:19;;37504:93:0::1;8356:406:1::0;37504:93:0::1;37612:15;:48:::0;;-1:-1:-1;;;;;;37612:48:0::1;-1:-1:-1::0;;;;;37612:48:0;::::1;::::0;;::::1;::::0;;;37722:25:::1;::::0;;-1:-1:-1;;;37722:25:0;;;;-1:-1:-1;;37612:48:0;37722:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;37612:48;37722:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37704:52:0::1;;37765:4;37785:15;;;;;;;;;-1:-1:-1::0;;;;;37785:15:0::1;-1:-1:-1::0;;;;;37785:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37704:104;::::0;-1:-1:-1;;;;;;37704:104:0::1;::::0;;;;;;-1:-1:-1;;;;;9253:15:1;;;37704:104:0::1;::::0;::::1;9235:34:1::0;9305:15;;9285:18;;;9278:43;9170:18;;37704:104:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37672:136:::0;-1:-1:-1;;;;;;37823:22:0;::::1;37819:239;;37907:15;;;;;;;;;-1:-1:-1::0;;;;;37907:15:0::1;-1:-1:-1::0;;;;;37907:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37889:55:0::1;;37953:4;37974:15;;;;;;;;;-1:-1:-1::0;;;;;37974:15:0::1;-1:-1:-1::0;;;;;37974:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37889:108;::::0;-1:-1:-1;;;;;;37889:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9253:15:1;;;37889:108:0::1;::::0;::::1;9235:34:1::0;9305:15;;9285:18;;;9278:43;9170:18;;37889:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37860:13;:137:::0;;-1:-1:-1;;;;;;37860:137:0::1;-1:-1:-1::0;;;;;37860:137:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;39109:319:0:o;37819:239::-:1;38022:13;:24:::0;;-1:-1:-1;;;;;38022:24:0;::::1;-1:-1:-1::0;;;;;;38022:24:0;;::::1;;::::0;;37497:568:::1;37436:629:::0;:::o;40059:236::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;40155:7:::1;:27:::0;;-1:-1:-1;;40155:27:0::1;;::::0;;::::1;::::0;;::::1;::::0;;;40193:12:::1;:25:::0;;-1:-1:-1;;40193:25:0::1;::::0;;;::::1;;::::0;;;;40254:2:::1;40238:12:::0;;::::1;::::0;;::::1;:18;;40229:58;;;::::0;-1:-1:-1;;;40229:58:0;;9534:2:1;40229:58:0::1;::::0;::::1;9516:21:1::0;9573:2;9553:18;;;9546:30;9612:28;9592:18;;;9585:56;9658:18;;40229:58:0::1;9332:350:1::0;41267:187:0;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41357:8:::1;41347:6;:18;;41339:65;;;;-1:-1:-1::0;;;41339:65:0::1;;;;;;;:::i;:::-;41431:15;:6:::0;41440::::1;41431:15;:::i;:::-;41415:13;:31:::0;-1:-1:-1;41267:187:0:o;18320:201::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18409:22:0;::::1;18401:73;;;::::0;-1:-1:-1;;;18401:73:0;;9889:2:1;18401:73:0::1;::::0;::::1;9871:21:1::0;9928:2;9908:18;;;9901:30;9967:34;9947:18;;;9940:62;-1:-1:-1;;;10018:18:1;;;10011:36;10064:19;;18401:73:0::1;9687:402:1::0;18401:73:0::1;18485:28;18504:8;18485:18;:28::i;41023:183::-:0;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41110:8:::1;41100:6;:18;;41092:65;;;;-1:-1:-1::0;;;41092:65:0::1;;;;;;;:::i;:::-;41183:15;:6:::0;41192::::1;41183:15;:::i;:::-;41168:12;:30:::0;-1:-1:-1;41023:183:0:o;38416:414::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;38514:4:::1;-1:-1:-1::0;;;;;38496:23:0;::::1;::::0;38488:43:::1;;;::::0;-1:-1:-1;;;38488:43:0;;10296:2:1;38488:43:0::1;::::0;::::1;10278:21:1::0;10335:1;10315:18;;;10308:29;-1:-1:-1;;;10353:18:1;;;10346:37;10400:18;;38488:43:0::1;10094:330:1::0;38488:43:0::1;-1:-1:-1::0;;;;;38546:22:0;::::1;38542:124;;17484:6:::0;;38585:48:::1;::::0;-1:-1:-1;;;;;17484:6:0;;;;38611:21:::1;38585:48:::0;::::1;;;::::0;::::1;::::0;;;38611:21;17484:6;38585:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;38542:124;38739:35;::::0;-1:-1:-1;;;38739:35:0;;38768:4:::1;38739:35;::::0;::::1;1387:51:1::0;38703:6:0;;38676:17:::1;::::0;-1:-1:-1;;;;;38739:20:0;::::1;::::0;::::1;::::0;1360:18:1;;38739:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38721:53;;38785:10;-1:-1:-1::0;;;;;38785:19:0::1;;38805:7;17484:6:::0;;-1:-1:-1;;;;;17484:6:0;;17411:87;38805:7:::1;38785:37;::::0;-1:-1:-1;;;;;;38785:37:0::1;::::0;;;;;;-1:-1:-1;;;;;10810:32:1;;;38785:37:0::1;::::0;::::1;10792:51:1::0;10859:18;;;10852:34;;;10765:18;;38785:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38477:353;;38416:414:::0;:::o;32792:380::-;-1:-1:-1;;;;;32928:19:0;;32920:68;;;;-1:-1:-1;;;32920:68:0;;11349:2:1;32920:68:0;;;11331:21:1;11388:2;11368:18;;;11361:30;11427:34;11407:18;;;11400:62;-1:-1:-1;;;11478:18:1;;;11471:34;11522:19;;32920:68:0;11147:400:1;32920:68:0;-1:-1:-1;;;;;33007:21:0;;32999:68;;;;-1:-1:-1;;;32999:68:0;;11754:2:1;32999:68:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;-1:-1:-1;;;11883:18:1;;;11876:32;11925:19;;32999:68:0;11552:398:1;32999:68:0;-1:-1:-1;;;;;33080:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33132:32;;1595:25:1;;;33132:32:0;;1568:18:1;33132:32:0;;;;;;;32792:380;;;:::o;41643:2370::-;-1:-1:-1;;;;;41775:18:0;;41767:68;;;;-1:-1:-1;;;41767:68:0;;12157:2:1;41767:68:0;;;12139:21:1;12196:2;12176:18;;;12169:30;12235:34;12215:18;;;12208:62;-1:-1:-1;;;12286:18:1;;;12279:35;12331:19;;41767:68:0;11955:401:1;41767:68:0;-1:-1:-1;;;;;41854:16:0;;41846:64;;;;-1:-1:-1;;;41846:64:0;;12563:2:1;41846:64:0;;;12545:21:1;12602:2;12582:18;;;12575:30;12641:34;12621:18;;;12614:62;-1:-1:-1;;;12692:18:1;;;12685:33;12735:19;;41846:64:0;12361:399:1;41846:64:0;41939:16;;;;;;;;:45;;-1:-1:-1;;;;;;41959:25:0;;;;;;:19;:25;;;;;;;;41939:45;41930:105;;;;-1:-1:-1;;;41930:105:0;;12967:2:1;41930:105:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045:25;13025:18;;;13018:53;13088:18;;41930:105:0;12765:347:1;41930:105:0;42052:6;42062:1;42052:11;42048:93;;42080:28;42096:4;42102:2;42106:1;42080:15;:28::i;:::-;41643:2370;;;:::o;42048:93::-;42202:4;42153:28;26033:18;;;;;;;;;;;42287;;42336:11;;42250:55;;;;;42336:11;;;;;:37;;;;-1:-1:-1;42365:8:0;;-1:-1:-1;;;42365:8:0;;;;42364:9;42336:37;:75;;;;-1:-1:-1;42398:13:0;;-1:-1:-1;;;;;42390:21:0;;;42398:13;;42390:21;;42336:75;:115;;;;;42428:23;42336:115;42318:272;;;42513:20;42548:28;42513:20;42548:16;:28::i;:::-;42463:127;42318:272;-1:-1:-1;;;;;42723:25:0;;42602:12;42723:25;;;:19;:25;;;;;;42617:4;;42723:25;;;:52;;-1:-1:-1;;;;;;42752:23:0;;;;;;:19;:23;;;;;;;;42723:52;42719:100;;;-1:-1:-1;42802:5:0;42719:100;42835:7;42831:1129;;;-1:-1:-1;;;;;42906:29:0;;42859:12;42906:29;;;:25;:29;;;;;;;;42902:185;;;-1:-1:-1;42963:12:0;;;;;;;42902:185;;;-1:-1:-1;;;;;43001:31:0;;;;;;:25;:31;;;;;;;;42997:90;;;-1:-1:-1;43060:11:0;;;;42997:90;-1:-1:-1;;;;;43108:26:0;;;;;;:20;:26;;;;;;;;43107:27;:56;;;;-1:-1:-1;;;;;;43139:24:0;;;;;;:20;:24;;;;;;;;43138:25;43107:56;43103:675;;;-1:-1:-1;;;;;43188:29:0;;;;;;:25;:29;;;;;;;;43184:321;;;43260:13;;43250:6;:23;;43242:70;;;;-1:-1:-1;;;43242:70:0;;13319:2:1;43242:70:0;;;13301:21:1;13358:2;13338:18;;;13331:30;13397:34;13377:18;;;13370:62;-1:-1:-1;;;13448:18:1;;;13441:32;13490:19;;43242:70:0;13117:398:1;43242:70:0;43184:321;;;-1:-1:-1;;;;;43342:31:0;;;;;;:25;:31;;;;;;;;43338:167;;;43414:12;;43404:6;:22;;43396:68;;;;-1:-1:-1;;;43396:68:0;;13722:2:1;43396:68:0;;;13704:21:1;13761:2;13741:18;;;13734:30;13800:34;13780:18;;;13773:62;-1:-1:-1;;;13851:18:1;;;13844:31;13892:19;;43396:68:0;13520:397:1;43396:68:0;-1:-1:-1;;;;;43530:29:0;;;;;;:25;:29;;;;;;;;43525:238;;43644:15;;43634:6;43618:13;43628:2;-1:-1:-1;;;;;26033:18:0;26006:7;26033:18;;;;;;;;;;;;25932:127;43618:13;:22;;;;:::i;:::-;:41;;43584:159;;;;-1:-1:-1;;;43584:159:0;;14124:2:1;43584:159:0;;;14106:21:1;;;14143:18;;;14136:30;14202:34;14182:18;;;14175:62;14254:18;;43584:159:0;13922:356:1;43584:159:0;43794:17;43814:25;43835:3;43814:16;:6;43825:4;43814:10;:16::i;:::-;:20;;:25::i;:::-;43794:45;-1:-1:-1;43863:21:0;:6;43794:45;43863:10;:21::i;:::-;43854:30;;43901:47;43917:4;43931;43938:9;43901:15;:47::i;:::-;42844:1116;;42831:1129;43972:33;43988:4;43994:2;43998:6;43972:15;:33::i;:::-;41756:2257;;;41643:2370;;;:::o;18681:191::-;18774:6;;;-1:-1:-1;;;;;18791:17:0;;;-1:-1:-1;;;;;;18791:17:0;;;;;;;18824:40;;18774:6;;;18791:17;18774:6;;18824:40;;18755:16;;18824:40;18744:128;18681:191;:::o;39436:352::-;-1:-1:-1;;;;;39541:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;39519:153;;;;-1:-1:-1;;;39519:153:0;;14485:2:1;39519:153:0;;;14467:21:1;14524:2;14504:18;;;14497:30;14563:34;14543:18;;;14536:62;14634:33;14614:18;;;14607:61;14685:19;;39519:153:0;14283:427:1;39519:153:0;-1:-1:-1;;;;;39683:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39683:39:0;;;;;;;;;;39740:40;;39683:39;;:31;39740:40;;;39436:352;;:::o;29981:763::-;-1:-1:-1;;;;;30121:20:0;;30113:70;;;;-1:-1:-1;;;30113:70:0;;14917:2:1;30113:70:0;;;14899:21:1;14956:2;14936:18;;;14929:30;14995:34;14975:18;;;14968:62;-1:-1:-1;;;15046:18:1;;;15039:35;15091:19;;30113:70:0;14715:401:1;30113:70:0;-1:-1:-1;;;;;30202:23:0;;30194:71;;;;-1:-1:-1;;;30194:71:0;;15323:2:1;30194:71:0;;;15305:21:1;15362:2;15342:18;;;15335:30;15401:34;15381:18;;;15374:62;-1:-1:-1;;;15452:18:1;;;15445:33;15495:19;;30194:71:0;15121:399:1;30194:71:0;-1:-1:-1;;;;;30362:17:0;;30338:21;30362:17;;;;;;;;;;;30398:23;;;;30390:74;;;;-1:-1:-1;;;30390:74:0;;15727:2:1;30390:74:0;;;15709:21:1;15766:2;15746:18;;;15739:30;15805:34;15785:18;;;15778:62;-1:-1:-1;;;15856:18:1;;;15849:36;15902:19;;30390:74:0;15525:402:1;30390:74:0;-1:-1:-1;;;;;30500:17:0;;;:9;:17;;;;;;;;;;;30520:22;;;30500:42;;30564:20;;;;;;;;:30;;30536:6;;30500:9;30564:30;;30536:6;;30564:30;:::i;:::-;;;;-1:-1:-1;;30611:10:0;;30607:71;;30658:9;-1:-1:-1;;;;;30641:35:0;30650:6;-1:-1:-1;;;;;30641:35:0;;30669:6;30641:35;;;;1595:25:1;;1583:2;1568:18;;1449:177;30641:35:0;;;;;;;;30607:71;30690:46;41643:2370;44021:362;36188:8;:15;;-1:-1:-1;;;;36188:15:0;-1:-1:-1;;;36188:15:0;;;44120:21:::1;44152:24;44169:6:::0;44152:16:::1;:24::i;:::-;44187:18;44208:41;:21;44234:14:::0;44208:25:::1;:41::i;:::-;44293:9;::::0;44285:46:::1;::::0;44187:62;;-1:-1:-1;44272:7:0::1;::::0;44293:9;;;::::1;-1:-1:-1::0;;;;;44293:9:0::1;::::0;44187:62;;44272:7;44285:46;44272:7;44285:46;44187:62;44293:9;44285:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44271:60;;;44349:2;44341:32;;;::::0;-1:-1:-1;;;44341:32:0;;16344:2:1;44341:32:0::1;::::0;::::1;16326:21:1::0;16383:2;16363:18;;;16356:30;-1:-1:-1;;;16402:18:1;;;16395:48;16460:18;;44341:32:0::1;16142:342:1::0;44341:32:0::1;-1:-1:-1::0;;36226:8:0;:16;;-1:-1:-1;;;;36226:16:0;;;-1:-1:-1;;44021:362:0:o;12009:98::-;12067:7;12094:5;12098:1;12094;:5;:::i;:::-;12087:12;12009:98;-1:-1:-1;;;12009:98:0:o;12408:::-;12466:7;12493:5;12497:1;12493;:5;:::i;11652:98::-;11710:7;11737:5;11741:1;11737;:5;:::i;44396:591::-;44546:16;;;44560:1;44546:16;;;;;;;;44522:21;;44546:16;;;;;;;;;;-1:-1:-1;44546:16:0;44522:40;;44591:4;44573;44578:1;44573:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44573:23:0;;;:7;;;;;;;;;;:23;;;;44617:15;;:22;;;-1:-1:-1;;;44617:22:0;;;;:15;;;;;:20;;:22;;;;;44573:7;;44617:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44607:4;44612:1;44607:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44607:32:0;;;:7;;;;;;;;;:32;44684:15;;44652:62;;44669:4;;44684:15;44702:11;44652:8;:62::i;:::-;44753:15;;:226;;-1:-1:-1;;;44753:226:0;;-1:-1:-1;;;;;44753:15:0;;;;:66;;:226;;44834:11;;44753:15;;44904:4;;44931;;44951:15;;44753:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:247::-;1690:6;1743:2;1731:9;1722:7;1718:23;1714:32;1711:52;;;1759:1;1756;1749:12;1711:52;1798:9;1785:23;1817:31;1842:5;1817:31;:::i;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2726:272::-;2784:6;2837:2;2825:9;2816:7;2812:23;2808:32;2805:52;;;2853:1;2850;2843:12;2805:52;2892:9;2879:23;2942:6;2935:5;2931:18;2924:5;2921:29;2911:57;;2964:1;2961;2954:12;3211:180;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:1;;3211:180;-1:-1:-1;3211:180:1:o;3396:118::-;3482:5;3475:13;3468:21;3461:5;3458:32;3448:60;;3504:1;3501;3494:12;3519:382;3584:6;3592;3645:2;3633:9;3624:7;3620:23;3616:32;3613:52;;;3661:1;3658;3651:12;3613:52;3700:9;3687:23;3719:31;3744:5;3719:31;:::i;:::-;3769:5;-1:-1:-1;3826:2:1;3811:18;;3798:32;3839:30;3798:32;3839:30;:::i;:::-;3888:7;3878:17;;;3519:382;;;;;:::o;3906:388::-;3974:6;3982;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4090:9;4077:23;4109:31;4134:5;4109:31;:::i;:::-;4159:5;-1:-1:-1;4216:2:1;4201:18;;4188:32;4229:33;4188:32;4229:33;:::i;4299:380::-;4378:1;4374:12;;;;4421;;;4442:61;;4496:4;4488:6;4484:17;4474:27;;4442:61;4549:2;4541:6;4538:14;4518:18;4515:38;4512:161;;4595:10;4590:3;4586:20;4583:1;4576:31;4630:4;4627:1;4620:15;4658:4;4655:1;4648:15;4512:161;;4299:380;;;:::o;4684:356::-;4886:2;4868:21;;;4905:18;;;4898:30;4964:34;4959:2;4944:18;;4937:62;5031:2;5016:18;;4684:356::o;5859:127::-;5920:10;5915:3;5911:20;5908:1;5901:31;5951:4;5948:1;5941:15;5975:4;5972:1;5965:15;5991:125;6056:9;;;6077:10;;;6074:36;;;6090:18;;:::i;6475:398::-;6677:2;6659:21;;;6716:2;6696:18;;;6689:30;6755:34;6750:2;6735:18;;6728:62;-1:-1:-1;;;6821:2:1;6806:18;;6799:32;6863:3;6848:19;;6475:398::o;6878:168::-;6951:9;;;6982;;6999:15;;;6993:22;;6979:37;6969:71;;7020:18;;:::i;8767:251::-;8837:6;8890:2;8878:9;8869:7;8865:23;8861:32;8858:52;;;8906:1;8903;8896:12;8858:52;8938:9;8932:16;8957:31;8982:5;8957:31;:::i;10429:184::-;10499:6;10552:2;10540:9;10531:7;10527:23;10523:32;10520:52;;;10568:1;10565;10558:12;10520:52;-1:-1:-1;10591:16:1;;10429:184;-1:-1:-1;10429:184:1:o;10897:245::-;10964:6;11017:2;11005:9;10996:7;10992:23;10988:32;10985:52;;;11033:1;11030;11023:12;10985:52;11065:9;11059:16;11084:28;11106:5;11084:28;:::i;16489:217::-;16529:1;16555;16545:132;;16599:10;16594:3;16590:20;16587:1;16580:31;16634:4;16631:1;16624:15;16662:4;16659:1;16652:15;16545:132;-1:-1:-1;16691:9:1;;16489:217::o;16711:128::-;16778:9;;;16799:11;;;16796:37;;;16813:18;;:::i;16976:127::-;17037:10;17032:3;17028:20;17025:1;17018:31;17068:4;17065:1;17058:15;17092:4;17089:1;17082:15;17108:980;17370:4;17418:3;17407:9;17403:19;17449:6;17438:9;17431:25;17475:2;17513:6;17508:2;17497:9;17493:18;17486:34;17556:3;17551:2;17540:9;17536:18;17529:31;17580:6;17615;17609:13;17646:6;17638;17631:22;17684:3;17673:9;17669:19;17662:26;;17723:2;17715:6;17711:15;17697:29;;17744:1;17754:195;17768:6;17765:1;17762:13;17754:195;;;17833:13;;-1:-1:-1;;;;;17829:39:1;17817:52;;17924:15;;;;17889:12;;;;17865:1;17783:9;17754:195;;;-1:-1:-1;;;;;;;18005:32:1;;;;18000:2;17985:18;;17978:60;-1:-1:-1;;;18069:3:1;18054:19;18047:35;17966:3;17108:980;-1:-1:-1;;;17108:980:1:o

Swarm Source

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