ETH Price: $3,048.38 (+2.68%)
Gas: 14 Gwei

Token

Pepe Origins (PEPEO)
 

Overview

Max Total Supply

69,420,000 PEPEO

Holders

290

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
55.535999444756463616 PEPEO

Value
$0.00
0x244f5ee0A22B65F59863f51456AB8eD89231b722
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:
PepeOrigins

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-17
*/

/**

Telegram: https://t.me/PepeOriginsERC

*/

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

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


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

////// lib/openzeppelin-contracts/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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

        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 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 {}
}

////// lib/openzeppelin-contracts/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;
        }
    }
}

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public PEPE = 0x6982508145454Ce325dDbE47a25d4ec3d2311933;

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Pepe Origins", "PEPEO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), PEPE);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buyDevFee = 20;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 20;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 69_420_000 * 1e18;

        maxTransactionAmount =  totalSupply * 1000 / 1000;
        maxWallet = totalSupply * 20 / 1000;
        swapTokensAtAmount = (totalSupply * 30) / 10000;

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0x28A8F9728590D7FbEC13A5aeDF50067853C5bA49); 

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 3, "Must keep fees at 3% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of PEPE
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForPEPE(contractBalance);
    }

}

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":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"PEPE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916736982508145454ce325ddbe47a25d4ec3d2311933179055600b80546201000162ffffff199091161790553480156200004a57600080fd5b50604080518082018252600c81526b50657065204f726967696e7360a01b602080830191825283518085019094526005845264504550454f60d81b9084015281519192916200009c91600391620005a8565b508051620000b2906004906020840190620005a8565b505050620000cf620000c96200034960201b60201c565b6200034d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f18160016200039f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016291906200064e565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da91906200064e565b6001600160a01b031660a0819052620001f59060016200039f565b6014600081816a396c41bd9e54ada38000006103e862000216828262000696565b620002229190620006b8565b6008556103e86200023582601462000696565b620002419190620006b8565b600a556127106200025482601e62000696565b620002609190620006b8565b600955600d859055600e849055620002798486620006db565b600c5560108390556011829055620002928284620006db565b600f55600780546001600160a01b0319167328a8f9728590d7fbec13a5aedf50067853c5ba49179055620002da620002d26005546001600160a01b031690565b600162000419565b620002e730600162000419565b620002f661dead600162000419565b620003156200030d6005546001600160a01b031690565b60016200039f565b620003223060016200039f565b6200033161dead60016200039f565b6200033d3382620004c3565b50505050505062000733565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ee5760405162461bcd60e51b815260206004820181905260248201526000805160206200268a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004645760405162461bcd60e51b815260206004820181905260248201526000805160206200268a8339815191526044820152606401620003e5565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200051b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e5565b80600260008282546200052f9190620006db565b90915550506001600160a01b038216600090815260208190526040812080548392906200055e908490620006db565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b690620006f6565b90600052602060002090601f016020900481019282620005da576000855562000625565b82601f10620005f557805160ff191683800117855562000625565b8280016001018555821562000625579182015b828111156200062557825182559160200191906001019062000608565b506200063392915062000637565b5090565b5b8082111562000633576000815560010162000638565b6000602082840312156200066157600080fd5b81516001600160a01b03811681146200067957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006b357620006b362000680565b500290565b600082620006d657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006f157620006f162000680565b500190565b600181811c908216806200070b57607f821691505b602082108114156200072d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611f006200078a6000396000818161041d015281816112f90152818161150a0152818161161a015281816116c3015261177d01526000818161032001528181611a5e0152611a9d0152611f006000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461072d578063e4fbaecb14610743578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b80639c3b4fdc116100fd5780639c3b4fdc146105f0578063a0d82dc514610606578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638a8c523c146105685780638da5cb5b1461057d5780638ea5220f1461059b578063924de9b7146105bb57806395d89b41146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b15565b6107c5565b005b34801561028f57600080fd5b50610298610865565b6040516102a59190611b37565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ba3565b6108f7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611bcd565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611bcd565b61090d565b3480156103a557600080fd5b506102816103b4366004611be8565b610994565b3480156103c557600080fd5b506102ce6103d4366004611c01565b610a71565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611bcd565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b15565b610b1b565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611bcd565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bae565b34801561053f57600080fd5b506102ce610be4565b34801561055457600080fd5b50610281610563366004611c4d565b610c21565b34801561057457600080fd5b50610281610c76565b34801561058957600080fd5b506005546001600160a01b0316610342565b3480156105a757600080fd5b50600754610342906001600160a01b031681565b3480156105c757600080fd5b506102816105d6366004611c80565b610cb3565b3480156105e757600080fd5b50610298610cf9565b3480156105fc57600080fd5b5061036b600d5481565b34801561061257600080fd5b5061036b60105481565b34801561062857600080fd5b506102ce610637366004611ba3565b610d08565b34801561064857600080fd5b50600b546102ce90610100900460ff1681565b34801561066757600080fd5b50610281610676366004611c4d565b610d15565b34801561068757600080fd5b50610281610696366004611be8565b610d9e565b3480156106a757600080fd5b5061036b60085481565b3480156106bd57600080fd5b506102ce6106cc366004611be8565b610e6f565b3480156106dd57600080fd5b5061036b600c5481565b3480156106f357600080fd5b5061036b610702366004611c9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b5061036b60095481565b34801561074f57600080fd5b50600654610342906001600160a01b031681565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611bcd565b610fc6565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611cc5565b60405180910390fd5b6010829055601181905561080c8183611d10565b600f819055600310156108615760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016107ef565b5050565b60606003805461087490611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090611d28565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610904338484611061565b50600192915050565b6005546001600160a01b031633146109375760405162461bcd60e51b81526004016107ef90611cc5565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109be5760405162461bcd60e51b81526004016107ef90611cc5565b670de0b6b3a76400006103e86109d360025490565b6109de906001611d63565b6109e89190611d82565b6109f29190611d82565b811015610a595760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6b81670de0b6b3a7640000611d63565b60085550565b6000610a7e848484611185565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b108533858403611061565b506001949350505050565b6005546001600160a01b03163314610b455760405162461bcd60e51b81526004016107ef90611cc5565b600d829055600e819055610b598183611d10565b600c819055606310156108615760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016107ef565b6005546001600160a01b03163314610bd85760405162461bcd60e51b81526004016107ef90611cc5565b610be260006117c5565b565b6005546000906001600160a01b03163314610c115760405162461bcd60e51b81526004016107ef90611cc5565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016107ef90611cc5565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016107ef90611cc5565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087490611d28565b6000610904338484611185565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b81526004016107ef90611cc5565b670de0b6b3a76400006103e8610ddd60025490565b610de8906005611d63565b610df29190611d82565b610dfc9190611d82565b811015610e575760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6981670de0b6b3a7640000611d63565b600a5550565b6005546000906001600160a01b03163314610e9c5760405162461bcd60e51b81526004016107ef90611cc5565b620186a0610ea960025490565b610eb4906001611d63565b610ebe9190611d82565b821015610f2b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3760025490565b610f42906005611d63565b610f4c9190611d82565b821115610fb85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105e816117c5565b50565b6001600160a01b0383166110c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016107ef90611da4565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016107ef90611de9565b806111e7576111e283836000611817565b505050565b600b5460ff16156114bf576005546001600160a01b0384811691161480159061121e57506005546001600160a01b03838116911614155b801561123257506001600160a01b03821615155b801561124957506001600160a01b03821661dead14155b801561125f5750600654600160a01b900460ff16155b156114bf57600b54610100900460ff166112f7576001600160a01b03831660009081526012602052604090205460ff16806112b257506001600160a01b03821660009081526012602052604090205460ff165b6112f75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561135157506001600160a01b03821660009081526013602052604090205460ff16155b15611435576008548111156113c65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ec9083611d10565b11156114305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114bf565b6001600160a01b03821660009081526013602052604090205460ff166114bf57600a546001600160a01b03831660009081526020819052604090205461147b9083611d10565b11156114bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114eb5750600b5462010000900460ff165b80156115015750600654600160a01b900460ff16155b801561153e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561156357506001600160a01b03851660009081526012602052604090205460ff16155b801561158857506001600160a01b03841660009081526012602052604090205460ff16155b156115b6576006805460ff60a01b1916600160a01b1790556115a861196c565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160457506001600160a01b03851660009081526012602052604090205460ff165b1561160d575060005b600080600083156117af577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561165b57506000600f54115b156116c157611680606461167a600f548a6119b390919063ffffffff16565b906119c6565b9250600f54601154846116939190611d63565b61169d9190611d82565b9150600f54601054846116b09190611d63565b6116ba9190611d82565b9050611760565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561170457506000600c54115b1561176057611723606461167a600c548a6119b390919063ffffffff16565b9250600c54600e54846117369190611d63565b6117409190611d82565b9150600c54600d54846117539190611d63565b61175d9190611d82565b90505b821561177157611771893085611817565b81156117a2576117a2307f000000000000000000000000000000000000000000000000000000000000000084611817565b6117ac8388611e2c565b96505b6117ba898989611817565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183d5760405162461bcd60e51b81526004016107ef90611da4565b6001600160a01b0382166118635760405162461bcd60e51b81526004016107ef90611de9565b6001600160a01b038316600090815260208190526040902054818110156118db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611912908490611d10565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195e91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119845750565b600954611992906014611d63565b8111156119aa576009546119a7906014611d63565b90505b61105e816119d2565b60006119bf8284611d63565b9392505050565b60006119bf8284611d82565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0757611a07611e43565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3857611a38611e43565b60200260200101906001600160a01b031690816001600160a01b031681525050611a83307f000000000000000000000000000000000000000000000000000000000000000084611061565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611adf928792600092889291909116904290600401611e59565b600060405180830381600087803b158015611af957600080fd5b505af1158015611b0d573d6000803e3d6000fd5b505050505050565b60008060408385031215611b2857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b6457858101830151858201604001528201611b48565b81811115611b76576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc157600080fd5b60008060408385031215611bb657600080fd5b611bbf83611b8c565b946020939093013593505050565b600060208284031215611bdf57600080fd5b6119bf82611b8c565b600060208284031215611bfa57600080fd5b5035919050565b600080600060608486031215611c1657600080fd5b611c1f84611b8c565b9250611c2d60208501611b8c565b9150604084013590509250925092565b80358015158114610fc157600080fd5b60008060408385031215611c6057600080fd5b611c6983611b8c565b9150611c7760208401611c3d565b90509250929050565b600060208284031215611c9257600080fd5b6119bf82611c3d565b60008060408385031215611cae57600080fd5b611cb783611b8c565b9150611c7760208401611b8c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2357611d23611cfa565b500190565b600181811c90821680611d3c57607f821691505b60208210811415611d5d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d7d57611d7d611cfa565b500290565b600082611d9f57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e3e57611e3e611cfa565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ea95784516001600160a01b031683529383019391830191600101611e84565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c1917fc8ceaaa6855a12c0a899673be0c6d65dd27c170a8c8b1571525a5ebfde64736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461072d578063e4fbaecb14610743578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b80639c3b4fdc116100fd5780639c3b4fdc146105f0578063a0d82dc514610606578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638a8c523c146105685780638da5cb5b1461057d5780638ea5220f1461059b578063924de9b7146105bb57806395d89b41146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b15565b6107c5565b005b34801561028f57600080fd5b50610298610865565b6040516102a59190611b37565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ba3565b6108f7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611bcd565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611bcd565b61090d565b3480156103a557600080fd5b506102816103b4366004611be8565b610994565b3480156103c557600080fd5b506102ce6103d4366004611c01565b610a71565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc5581565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611bcd565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b15565b610b1b565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611bcd565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bae565b34801561053f57600080fd5b506102ce610be4565b34801561055457600080fd5b50610281610563366004611c4d565b610c21565b34801561057457600080fd5b50610281610c76565b34801561058957600080fd5b506005546001600160a01b0316610342565b3480156105a757600080fd5b50600754610342906001600160a01b031681565b3480156105c757600080fd5b506102816105d6366004611c80565b610cb3565b3480156105e757600080fd5b50610298610cf9565b3480156105fc57600080fd5b5061036b600d5481565b34801561061257600080fd5b5061036b60105481565b34801561062857600080fd5b506102ce610637366004611ba3565b610d08565b34801561064857600080fd5b50600b546102ce90610100900460ff1681565b34801561066757600080fd5b50610281610676366004611c4d565b610d15565b34801561068757600080fd5b50610281610696366004611be8565b610d9e565b3480156106a757600080fd5b5061036b60085481565b3480156106bd57600080fd5b506102ce6106cc366004611be8565b610e6f565b3480156106dd57600080fd5b5061036b600c5481565b3480156106f357600080fd5b5061036b610702366004611c9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b5061036b60095481565b34801561074f57600080fd5b50600654610342906001600160a01b031681565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611bcd565b610fc6565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611cc5565b60405180910390fd5b6010829055601181905561080c8183611d10565b600f819055600310156108615760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016107ef565b5050565b60606003805461087490611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090611d28565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610904338484611061565b50600192915050565b6005546001600160a01b031633146109375760405162461bcd60e51b81526004016107ef90611cc5565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109be5760405162461bcd60e51b81526004016107ef90611cc5565b670de0b6b3a76400006103e86109d360025490565b6109de906001611d63565b6109e89190611d82565b6109f29190611d82565b811015610a595760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6b81670de0b6b3a7640000611d63565b60085550565b6000610a7e848484611185565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b108533858403611061565b506001949350505050565b6005546001600160a01b03163314610b455760405162461bcd60e51b81526004016107ef90611cc5565b600d829055600e819055610b598183611d10565b600c819055606310156108615760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016107ef565b6005546001600160a01b03163314610bd85760405162461bcd60e51b81526004016107ef90611cc5565b610be260006117c5565b565b6005546000906001600160a01b03163314610c115760405162461bcd60e51b81526004016107ef90611cc5565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016107ef90611cc5565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016107ef90611cc5565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087490611d28565b6000610904338484611185565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b81526004016107ef90611cc5565b670de0b6b3a76400006103e8610ddd60025490565b610de8906005611d63565b610df29190611d82565b610dfc9190611d82565b811015610e575760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6981670de0b6b3a7640000611d63565b600a5550565b6005546000906001600160a01b03163314610e9c5760405162461bcd60e51b81526004016107ef90611cc5565b620186a0610ea960025490565b610eb4906001611d63565b610ebe9190611d82565b821015610f2b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3760025490565b610f42906005611d63565b610f4c9190611d82565b821115610fb85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107ef90611cc5565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105e816117c5565b50565b6001600160a01b0383166110c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016107ef90611da4565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016107ef90611de9565b806111e7576111e283836000611817565b505050565b600b5460ff16156114bf576005546001600160a01b0384811691161480159061121e57506005546001600160a01b03838116911614155b801561123257506001600160a01b03821615155b801561124957506001600160a01b03821661dead14155b801561125f5750600654600160a01b900460ff16155b156114bf57600b54610100900460ff166112f7576001600160a01b03831660009081526012602052604090205460ff16806112b257506001600160a01b03821660009081526012602052604090205460ff165b6112f75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc556001600160a01b0316836001600160a01b031614801561135157506001600160a01b03821660009081526013602052604090205460ff16155b15611435576008548111156113c65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ec9083611d10565b11156114305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114bf565b6001600160a01b03821660009081526013602052604090205460ff166114bf57600a546001600160a01b03831660009081526020819052604090205461147b9083611d10565b11156114bf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114eb5750600b5462010000900460ff165b80156115015750600654600160a01b900460ff16155b801561153e57507f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc556001600160a01b0316846001600160a01b0316145b801561156357506001600160a01b03851660009081526012602052604090205460ff16155b801561158857506001600160a01b03841660009081526012602052604090205460ff16155b156115b6576006805460ff60a01b1916600160a01b1790556115a861196c565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160457506001600160a01b03851660009081526012602052604090205460ff165b1561160d575060005b600080600083156117af577f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc556001600160a01b0316886001600160a01b031614801561165b57506000600f54115b156116c157611680606461167a600f548a6119b390919063ffffffff16565b906119c6565b9250600f54601154846116939190611d63565b61169d9190611d82565b9150600f54601054846116b09190611d63565b6116ba9190611d82565b9050611760565b7f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc556001600160a01b0316896001600160a01b031614801561170457506000600c54115b1561176057611723606461167a600c548a6119b390919063ffffffff16565b9250600c54600e54846117369190611d63565b6117409190611d82565b9150600c54600d54846117539190611d63565b61175d9190611d82565b90505b821561177157611771893085611817565b81156117a2576117a2307f00000000000000000000000002c738b9598df90000996b24d3f6571acfb2dc5584611817565b6117ac8388611e2c565b96505b6117ba898989611817565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183d5760405162461bcd60e51b81526004016107ef90611da4565b6001600160a01b0382166118635760405162461bcd60e51b81526004016107ef90611de9565b6001600160a01b038316600090815260208190526040902054818110156118db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611912908490611d10565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195e91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119845750565b600954611992906014611d63565b8111156119aa576009546119a7906014611d63565b90505b61105e816119d2565b60006119bf8284611d63565b9392505050565b60006119bf8284611d82565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0757611a07611e43565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3857611a38611e43565b60200260200101906001600160a01b031690816001600160a01b031681525050611a83307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611061565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611adf928792600092889291909116904290600401611e59565b600060405180830381600087803b158015611af957600080fd5b505af1158015611b0d573d6000803e3d6000fd5b505050505050565b60008060408385031215611b2857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b6457858101830151858201604001528201611b48565b81811115611b76576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc157600080fd5b60008060408385031215611bb657600080fd5b611bbf83611b8c565b946020939093013593505050565b600060208284031215611bdf57600080fd5b6119bf82611b8c565b600060208284031215611bfa57600080fd5b5035919050565b600080600060608486031215611c1657600080fd5b611c1f84611b8c565b9250611c2d60208501611b8c565b9150604084013590509250925092565b80358015158114610fc157600080fd5b60008060408385031215611c6057600080fd5b611c6983611b8c565b9150611c7760208401611c3d565b90509250929050565b600060208284031215611c9257600080fd5b6119bf82611c3d565b60008060408385031215611cae57600080fd5b611cb783611b8c565b9150611c7760208401611b8c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2357611d23611cfa565b500190565b600181811c90821680611d3c57607f821691505b60208210811415611d5d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d7d57611d7d611cfa565b500290565b600082611d9f57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e3e57611e3e611cfa565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ea95784516001600160a01b031683529383019391830191600101611e84565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c1917fc8ceaaa6855a12c0a899673be0c6d65dd27c170a8c8b1571525a5ebfde64736f6c634300080c0033

Deployed Bytecode Sourcemap

23275:10628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28444:316;;;;;;;;;;-1:-1:-1;28444:316:0;;;;;:::i;:::-;;:::i;:::-;;8131:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10298:169;;;;;;;;;;-1:-1:-1;10298:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10298:169:0;1306:187:1;24240:63:0;;;;;;;;;;-1:-1:-1;24240:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23356:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;23356:51:0;1689:229:1;9251:108:0;;;;;;;;;;-1:-1:-1;9339:12:0;;9251:108;;;2069:25:1;;;2057:2;2042:18;9251:108:0;1923:177:1;28958:189:0;;;;;;;;;;-1:-1:-1;28958:189:0;;;;;:::i;:::-;;:::i;27207:275::-;;;;;;;;;;-1:-1:-1;27207:275:0;;;;;:::i;:::-;;:::i;10949:492::-;;;;;;;;;;-1:-1:-1;10949:492:0;;;;;:::i;:::-;;:::i;23459:53::-;;;;;;;;;;;;23505:6;23459:53;;9093:93;;;;;;;;;;-1:-1:-1;9093:93:0;;9176:2;2973:36:1;;2961:2;2946:18;9093:93:0;2831:184:1;23414:38:0;;;;;;;;;;;;;;;23770:33;;;;;;;;;;-1:-1:-1;23770:33:0;;;;;;;;29157:126;;;;;;;;;;-1:-1:-1;29157:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29247:28:0;29223:4;29247:28;;;:19;:28;;;;;;;;;29157:126;28125:311;;;;;;;;;;-1:-1:-1;28125:311:0;;;;;:::i;:::-;;:::i;23993:28::-;;;;;;;;;;;;;;;;23850:30;;;;;;;;;;-1:-1:-1;23850:30:0;;;;;;;;;;;9422:127;;;;;;;;;;-1:-1:-1;9422:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9523:18:0;9496:7;9523:18;;;;;;;;;;;;9422:127;1366:103;;;;;;;;;;;;;:::i;26511:121::-;;;;;;;;;;;;;:::i;27754:167::-;;;;;;;;;;-1:-1:-1;27754:167:0;;;;;:::i;:::-;;:::i;26347:112::-;;;;;;;;;;;;;:::i;715:87::-;;;;;;;;;;-1:-1:-1;788:6:0;;-1:-1:-1;;;;;788:6:0;715:87;;23622:24;;;;;;;;;;-1:-1:-1;23622:24:0;;;;-1:-1:-1;;;;;23622:24:0;;;28017:100;;;;;;;;;;-1:-1:-1;28017:100:0;;;;;:::i;:::-;;:::i;8350:104::-;;;;;;;;;;;;;:::i;23923:24::-;;;;;;;;;;;;;;;;24028:25;;;;;;;;;;;;;;;;9762:175;;;;;;;;;;-1:-1:-1;9762:175:0;;;;;:::i;:::-;;:::i;23810:33::-;;;;;;;;;;-1:-1:-1;23810:33:0;;;;;;;;;;;28768:182;;;;;;;;;;-1:-1:-1;28768:182:0;;;;;:::i;:::-;;:::i;27490:256::-;;;;;;;;;;-1:-1:-1;27490:256:0;;;;;:::i;:::-;;:::i;23655:35::-;;;;;;;;;;;;;;;;26702:497;;;;;;;;;;-1:-1:-1;26702:497:0;;;;;:::i;:::-;;:::i;23889:27::-;;;;;;;;;;;;;;;;10000:151;;;;;;;;;;-1:-1:-1;10000:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10116:18:0;;;10089:7;10116:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10000:151;23697:33;;;;;;;;;;;;;;;;23519:64;;;;;;;;;;-1:-1:-1;23519:64:0;;;;-1:-1:-1;;;;;23519:64:0;;;23954:30;;;;;;;;;;;;;;;;1624:201;;;;;;;;;;-1:-1:-1;1624:201:0;;;;;:::i;:::-;;:::i;24060:31::-;;;;;;;;;;;;;;;;23737:24;;;;;;;;;;;;;;;;28444:316;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;;;;;;;;;28563:10:::1;:20:::0;;;28594:16:::1;:32:::0;;;28653:29:::1;28613:13:::0;28576:7;28653:29:::1;:::i;:::-;28637:13;:45:::0;;;28718:1:::1;-1:-1:-1::0;28701:18:0::1;28693:59;;;::::0;-1:-1:-1;;;28693:59:0;;4722:2:1;28693:59:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800;4780:18;;;4773:58;4848:18;;28693:59:0::1;4520:352:1::0;28693:59:0::1;28444:316:::0;;:::o;8131:100::-;8185:13;8218:5;8211:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8131:100;:::o;10298:169::-;10381:4;10398:39;167:10;10421:7;10430:6;10398:8;:39::i;:::-;-1:-1:-1;10455:4:0;10298:169;;;;:::o;28958:189::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;29094:9:::1;::::0;29063:41:::1;::::0;-1:-1:-1;;;;;29094:9:0;;::::1;::::0;29063:41;::::1;::::0;::::1;::::0;29094:9:::1;::::0;29063:41:::1;29115:9;:24:::0;;-1:-1:-1;;;;;;29115:24:0::1;-1:-1:-1::0;;;;;29115:24:0;;;::::1;::::0;;;::::1;::::0;;28958:189::o;27207:275::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;27344:4:::1;27336;27315:13;9339:12:::0;;;9251:108;27315:13:::1;:17;::::0;27331:1:::1;27315:17;:::i;:::-;27314:26;;;;:::i;:::-;27313:35;;;;:::i;:::-;27303:6;:45;;27281:142;;;::::0;-1:-1:-1;;;27281:142:0;;5859:2:1;27281:142:0::1;::::0;::::1;5841:21:1::0;5898:2;5878:18;;;5871:30;5937:34;5917:18;;;5910:62;-1:-1:-1;;;5988:18:1;;;5981:45;6043:19;;27281:142:0::1;5657:411:1::0;27281:142:0::1;27457:17;:6:::0;27467::::1;27457:17;:::i;:::-;27434:20;:40:::0;-1:-1:-1;27207:275:0:o;10949:492::-;11089:4;11106:36;11116:6;11124:9;11135:6;11106:9;:36::i;:::-;-1:-1:-1;;;;;11182:19:0;;11155:24;11182:19;;;:11;:19;;;;;;;;167:10;11182:33;;;;;;;;11234:26;;;;11226:79;;;;-1:-1:-1;;;11226:79:0;;6275:2:1;11226:79:0;;;6257:21:1;6314:2;6294:18;;;6287:30;6353:34;6333:18;;;6326:62;-1:-1:-1;;;6404:18:1;;;6397:38;6452:19;;11226:79:0;6073:404:1;11226:79:0;11341:57;11350:6;167:10;11391:6;11372:16;:25;11341:8;:57::i;:::-;-1:-1:-1;11429:4:0;;10949:492;-1:-1:-1;;;;10949:492:0:o;28125:311::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;28243:9:::1;:19:::0;;;28273:15:::1;:31:::0;;;28330:27:::1;28291:13:::0;28255:7;28330:27:::1;:::i;:::-;28315:12;:42:::0;;;28392:2:::1;-1:-1:-1::0;28376:18:0::1;28368:60;;;::::0;-1:-1:-1;;;28368:60:0;;6684:2:1;28368:60:0::1;::::0;::::1;6666:21:1::0;6723:2;6703:18;;;6696:30;6762:31;6742:18;;;6735:59;6811:18;;28368:60:0::1;6482:353:1::0;1366:103:0;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;1431:30:::1;1458:1;1431:18;:30::i;:::-;1366:103::o:0;26511:121::-;788:6;;26563:4;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;-1:-1:-1;26580:14:0::1;:22:::0;;-1:-1:-1;;26580:22:0::1;::::0;;;26511:121;:::o;27754:167::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27867:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27867:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27754:167::o;26347:112::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;26402:13:::1;:20:::0;;-1:-1:-1;;26433:18:0;;;;;26347:112::o;28017:100::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;28088:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28088:21:0;;::::1;::::0;;;::::1;::::0;;28017:100::o;8350:104::-;8406:13;8439:7;8432:14;;;;;:::i;9762:175::-;9848:4;9865:42;167:10;9889:9;9900:6;9865:9;:42::i;28768:182::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28853:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;28853:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28908:34;;1446:41:1;;;28908:34:0::1;::::0;1419:18:1;28908:34:0::1;;;;;;;28768:182:::0;;:::o;27490:256::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;27630:4:::1;27622;27601:13;9339:12:::0;;;9251:108;27601:13:::1;:17;::::0;27617:1:::1;27601:17;:::i;:::-;27600:26;;;;:::i;:::-;27599:35;;;;:::i;:::-;27589:6;:45;;27567:131;;;::::0;-1:-1:-1;;;27567:131:0;;7042:2:1;27567:131:0::1;::::0;::::1;7024:21:1::0;7081:2;7061:18;;;7054:30;7120:34;7100:18;;;7093:62;-1:-1:-1;;;7171:18:1;;;7164:34;7215:19;;27567:131:0::1;6840:400:1::0;27567:131:0::1;27721:17;:6:::0;27731::::1;27721:17;:::i;:::-;27709:9;:29:::0;-1:-1:-1;27490:256:0:o;26702:497::-;788:6;;26810:4;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;26889:6:::1;26868:13;9339:12:::0;;;9251:108;26868:13:::1;:17;::::0;26884:1:::1;26868:17;:::i;:::-;26867:28;;;;:::i;:::-;26854:9;:41;;26832:144;;;::::0;-1:-1:-1;;;26832:144:0;;7447:2:1;26832:144:0::1;::::0;::::1;7429:21:1::0;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:1;;;7569:51;7637:19;;26832:144:0::1;7245:417:1::0;26832:144:0::1;27044:4;27023:13;9339:12:::0;;;9251:108;27023:13:::1;:17;::::0;27039:1:::1;27023:17;:::i;:::-;27022:26;;;;:::i;:::-;27009:9;:39;;26987:141;;;::::0;-1:-1:-1;;;26987:141:0;;7869:2:1;26987:141:0::1;::::0;::::1;7851:21:1::0;7908:2;7888:18;;;7881:30;7947:34;7927:18;;;7920:62;-1:-1:-1;;;7998:18:1;;;7991:50;8058:19;;26987:141:0::1;7667:416:1::0;26987:141:0::1;-1:-1:-1::0;27139:18:0::1;:30:::0;;;27187:4:::1;1006:1;26702:497:::0;;;:::o;1624:201::-;788:6;;-1:-1:-1;;;;;788:6:0;167:10;935:23;927:68;;;;-1:-1:-1;;;927:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1713:22:0;::::1;1705:73;;;::::0;-1:-1:-1;;;1705:73:0;;8290:2:1;1705:73:0::1;::::0;::::1;8272:21:1::0;8329:2;8309:18;;;8302:30;8368:34;8348:18;;;8341:62;-1:-1:-1;;;8419:18:1;;;8412:36;8465:19;;1705:73:0::1;8088:402:1::0;1705:73:0::1;1789:28;1808:8;1789:18;:28::i;:::-;1624:201:::0;:::o;13790:380::-;-1:-1:-1;;;;;13926:19:0;;13918:68;;;;-1:-1:-1;;;13918:68:0;;8697:2:1;13918:68:0;;;8679:21:1;8736:2;8716:18;;;8709:30;8775:34;8755:18;;;8748:62;-1:-1:-1;;;8826:18:1;;;8819:34;8870:19;;13918:68:0;8495:400:1;13918:68:0;-1:-1:-1;;;;;14005:21:0;;13997:68;;;;-1:-1:-1;;;13997:68:0;;9102:2:1;13997:68:0;;;9084:21:1;9141:2;9121:18;;;9114:30;9180:34;9160:18;;;9153:62;-1:-1:-1;;;9231:18:1;;;9224:32;9273:19;;13997:68:0;8900:398:1;13997:68:0;-1:-1:-1;;;;;14078:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14130:32;;2069:25:1;;;14130:32:0;;2042:18:1;14130:32:0;;;;;;;13790:380;;;:::o;29291:3679::-;-1:-1:-1;;;;;29423:18:0;;29415:68;;;;-1:-1:-1;;;29415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29502:16:0;;29494:64;;;;-1:-1:-1;;;29494:64:0;;;;;;;:::i;:::-;29575:11;29571:93;;29603:28;29619:4;29625:2;29629:1;29603:15;:28::i;:::-;29291:3679;;;:::o;29571:93::-;29680:14;;;;29676:1430;;;788:6;;-1:-1:-1;;;;;29733:15:0;;;788:6;;29733:15;;;;:49;;-1:-1:-1;788:6:0;;-1:-1:-1;;;;;29769:13:0;;;788:6;;29769:13;;29733:49;:86;;;;-1:-1:-1;;;;;;29803:16:0;;;;29733:86;:128;;;;-1:-1:-1;;;;;;29840:21:0;;29854:6;29840:21;;29733:128;:158;;;;-1:-1:-1;29883:8:0;;-1:-1:-1;;;29883:8:0;;;;29882:9;29733:158;29711:1384;;;29931:13;;;;;;;29926:223;;-1:-1:-1;;;;;30003:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30032:23:0;;;;;;:19;:23;;;;;;;;30003:52;29969:160;;;;-1:-1:-1;;;29969:160:0;;10315:2:1;29969:160:0;;;10297:21:1;10354:2;10334:18;;;10327:30;-1:-1:-1;;;10373:18:1;;;10366:52;10435:18;;29969:160:0;10113:346:1;29969:160:0;30363:13;-1:-1:-1;;;;;30355:21:0;:4;-1:-1:-1;;;;;30355:21:0;;:82;;;;-1:-1:-1;;;;;;30402:35:0;;;;;;:31;:35;;;;;;;;30401:36;30355:82;30329:751;;;30524:20;;30514:6;:30;;30480:169;;;;-1:-1:-1;;;30480:169:0;;10666:2:1;30480:169:0;;;10648:21:1;10705:2;10685:18;;;10678:30;10744:34;10724:18;;;10717:62;-1:-1:-1;;;10795:18:1;;;10788:51;10856:19;;30480:169:0;10464:417:1;30480:169:0;30732:9;;-1:-1:-1;;;;;9523:18:0;;9496:7;9523:18;;;;;;;;;;;30706:22;;:6;:22;:::i;:::-;:35;;30672:140;;;;-1:-1:-1;;;30672:140:0;;11088:2:1;30672:140:0;;;11070:21:1;11127:2;11107:18;;;11100:30;-1:-1:-1;;;11146:18:1;;;11139:49;11205:18;;30672:140:0;10886:343:1;30672:140:0;30329:751;;;-1:-1:-1;;;;;30860:35:0;;;;;;:31;:35;;;;;;;;30855:225;;30980:9;;-1:-1:-1;;;;;9523:18:0;;9496:7;9523:18;;;;;;;;;;;30954:22;;:6;:22;:::i;:::-;:35;;30920:140;;;;-1:-1:-1;;;30920:140:0;;11088:2:1;30920:140:0;;;11070:21:1;11127:2;11107:18;;;11100:30;-1:-1:-1;;;11146:18:1;;;11139:49;11205:18;;30920:140:0;10886:343:1;30920:140:0;31167:4;31118:28;9523:18;;;;;;;;;;;31225;;31201:42;;;;;;;31274:35;;-1:-1:-1;31298:11:0;;;;;;;31274:35;:61;;;;-1:-1:-1;31327:8:0;;-1:-1:-1;;;31327:8:0;;;;31326:9;31274:61;:97;;;;;31358:13;-1:-1:-1;;;;;31352:19:0;:2;-1:-1:-1;;;;;31352:19:0;;31274:97;:140;;;;-1:-1:-1;;;;;;31389:25:0;;;;;;:19;:25;;;;;;;;31388:26;31274:140;:181;;;;-1:-1:-1;;;;;;31432:23:0;;;;;;:19;:23;;;;;;;;31431:24;31274:181;31256:313;;;31482:8;:15;;-1:-1:-1;;;;31482:15:0;-1:-1:-1;;;31482:15:0;;;31514:10;:8;:10::i;:::-;31541:8;:16;;-1:-1:-1;;;;31541:16:0;;;31256:313;31597:8;;-1:-1:-1;;;;;31707:25:0;;31581:12;31707:25;;;:19;:25;;;;;;31597:8;-1:-1:-1;;;31597:8:0;;;;;31596:9;;31707:25;;:52;;-1:-1:-1;;;;;;31736:23:0;;;;;;:19;:23;;;;;;;;31707:52;31703:100;;;-1:-1:-1;31786:5:0;31703:100;31815:12;31842:26;31883:20;31996:7;31992:925;;;32054:13;-1:-1:-1;;;;;32048:19:0;:2;-1:-1:-1;;;;;32048:19:0;;:40;;;;;32087:1;32071:13;;:17;32048:40;32044:583;;;32116:34;32146:3;32116:25;32127:13;;32116:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32109:41;;32218:13;;32198:16;;32191:4;:23;;;;:::i;:::-;32190:41;;;;:::i;:::-;32169:62;;32287:13;;32273:10;;32266:4;:17;;;;:::i;:::-;32265:35;;;;:::i;:::-;32250:50;;32044:583;;;32370:13;-1:-1:-1;;;;;32362:21:0;:4;-1:-1:-1;;;;;32362:21:0;;:41;;;;;32402:1;32387:12;;:16;32362:41;32358:269;;;32431:33;32460:3;32431:24;32442:12;;32431:6;:10;;:24;;;;:::i;:33::-;32424:40;;32531:12;;32512:15;;32505:4;:22;;;;:::i;:::-;32504:39;;;;:::i;:::-;32483:60;;32599:12;;32586:9;;32579:4;:16;;;;:::i;:::-;32578:33;;;;:::i;:::-;32563:48;;32358:269;32647:7;;32643:90;;32675:42;32691:4;32705;32712;32675:15;:42::i;:::-;32751:22;;32747:128;;32794:65;32818:4;32825:13;32840:18;32794:15;:65::i;:::-;32891:14;32901:4;32891:14;;:::i;:::-;;;31992:925;32929:33;32945:4;32951:2;32955:6;32929:15;:33::i;:::-;29404:3566;;;;;;29291:3679;;;:::o;1985:191::-;2078:6;;;-1:-1:-1;;;;;2095:17:0;;;-1:-1:-1;;;;;;2095:17:0;;;;;;;2128:40;;2078:6;;;2095:17;2078:6;;2128:40;;2059:16;;2128:40;2048:128;1985:191;:::o;11931:733::-;-1:-1:-1;;;;;12071:20:0;;12063:70;;;;-1:-1:-1;;;12063:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12152:23:0;;12144:71;;;;-1:-1:-1;;;12144:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12312:17:0;;12288:21;12312:17;;;;;;;;;;;12348:23;;;;12340:74;;;;-1:-1:-1;;;12340:74:0;;11566:2:1;12340:74:0;;;11548:21:1;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;-1:-1:-1;;;11695:18:1;;;11688:36;11741:19;;12340:74:0;11364:402:1;12340:74:0;-1:-1:-1;;;;;12450:17:0;;;:9;:17;;;;;;;;;;;12470:22;;;12450:42;;12514:20;;;;;;;;:30;;12486:6;;12450:9;12514:30;;12486:6;;12514:30;:::i;:::-;;;;;;;;12579:9;-1:-1:-1;;;;;12562:35:0;12571:6;-1:-1:-1;;;;;12562:35:0;;12590:6;12562:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;12562:35:0;;;;;;;;12052:612;11931:733;;;:::o;33558:340::-;33641:4;33597:23;9523:18;;;;;;;;;;;;33658:59;;33699:7;33558:340::o;33658:59::-;33751:18;;:23;;33772:2;33751:23;:::i;:::-;33733:15;:41;33729:115;;;33809:18;;:23;;33830:2;33809:23;:::i;:::-;33791:41;;33729:115;33856:34;33874:15;33856:17;:34::i;19243:98::-;19301:7;19328:5;19332:1;19328;:5;:::i;:::-;19321:12;19243:98;-1:-1:-1;;;19243:98:0:o;19642:::-;19700:7;19727:5;19731:1;19727;:5;:::i;32978:572::-;33129:16;;;33143:1;33129:16;;;;;;;;33105:21;;33129:16;;;;;;;;;;-1:-1:-1;33129:16:0;33105:40;;33174:4;33156;33161:1;33156:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33156:23:0;;;:7;;;;;;;;;:23;33200:4;;33190:7;;33200:4;;;33190;;33200;;33190:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33190:14:0;;;-1:-1:-1;;;;;33190:14:0;;;;;33217:62;33234:4;33249:15;33267:11;33217:8;:62::i;:::-;33492:9;;33318:224;;-1:-1:-1;;;33318:224:0;;-1:-1:-1;;;;;33318:15:0;:69;;;;;:224;;33402:11;;33428:1;;33473:4;;33492:9;;;;;33516:15;;33318:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33034:516;32978:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4877:380::-;4956:1;4952:12;;;;4999;;;5020:61;;5074:4;5066:6;5062:17;5052:27;;5020:61;5127:2;5119:6;5116:14;5096:18;5093:38;5090:161;;;5173:10;5168:3;5164:20;5161:1;5154:31;5208:4;5205:1;5198:15;5236:4;5233:1;5226:15;5090:161;;4877:380;;;:::o;5262:168::-;5302:7;5368:1;5364;5360:6;5356:14;5353:1;5350:21;5345:1;5338:9;5331:17;5327:45;5324:71;;;5375:18;;:::i;:::-;-1:-1:-1;5415:9:1;;5262:168::o;5435:217::-;5475:1;5501;5491:132;;5545:10;5540:3;5536:20;5533:1;5526:31;5580:4;5577:1;5570:15;5608:4;5605:1;5598:15;5491:132;-1:-1:-1;5637:9:1;;5435:217::o;9303:401::-;9505:2;9487:21;;;9544:2;9524:18;;;9517:30;9583:34;9578:2;9563:18;;9556:62;-1:-1:-1;;;9649:2:1;9634:18;;9627:35;9694:3;9679:19;;9303:401::o;9709:399::-;9911:2;9893:21;;;9950:2;9930:18;;;9923:30;9989:34;9984:2;9969:18;;9962:62;-1:-1:-1;;;10055:2:1;10040:18;;10033:33;10098:3;10083:19;;9709:399::o;11234:125::-;11274:4;11302:1;11299;11296:8;11293:34;;;11307:18;;:::i;:::-;-1:-1:-1;11344:9:1;;11234:125::o;11903:127::-;11964:10;11959:3;11955:20;11952:1;11945:31;11995:4;11992:1;11985:15;12019:4;12016:1;12009:15;12035:980;12297:4;12345:3;12334:9;12330:19;12376:6;12365:9;12358:25;12402:2;12440:6;12435:2;12424:9;12420:18;12413:34;12483:3;12478:2;12467:9;12463:18;12456:31;12507:6;12542;12536:13;12573:6;12565;12558:22;12611:3;12600:9;12596:19;12589:26;;12650:2;12642:6;12638:15;12624:29;;12671:1;12681:195;12695:6;12692:1;12689:13;12681:195;;;12760:13;;-1:-1:-1;;;;;12756:39:1;12744:52;;12851:15;;;;12816:12;;;;12792:1;12710:9;12681:195;;;-1:-1:-1;;;;;;;12932:32:1;;;;12927:2;12912:18;;12905:60;-1:-1:-1;;;12996:3:1;12981:19;12974:35;12893:3;12035:980;-1:-1:-1;;;12035:980:1:o

Swarm Source

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