ETH Price: $3,149.73 (-8.35%)
Gas: 9 Gwei

Token

Taira No Kiyomori (KIYOMORI)
 

Overview

Max Total Supply

100,000,000,000 KIYOMORI

Holders

59

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
KIYOMORI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */


/**
~~~~~~~~
Taira no Kiyomori was a military leader and kugyō of the late Heian period of Japan.
~
He established the first samurai-dominated administrative government in the history of Japan.
~~~~~~~~
*/


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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// 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 KIYOMORI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    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 = false;

    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("Taira No Kiyomori", "KIYOMORI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 1;
        uint256 _buyLiquidityFee = 3;

        uint256 _sellDevFee = 2;
        uint256 _sellLiquidityFee = 2;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        devWallet = address(0x09d07E65098824f8e9F4EB8AeB45E92BCC1eb013); // set as dev wallet

        // 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 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 <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% 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 swapTokensForUSDC(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;

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

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

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

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

        swapTokensForUSDC(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":"USDC","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":"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"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b5060408051808201825260118152705461697261204e6f204b69796f6d6f726960781b6020808301918252835180850190945260088452674b49594f4d4f524960c01b908401528151919291620000a091600391620005ad565b508051620000b6906004906020840190620005ad565b505050620000d3620000cd6200034e60201b60201c565b62000352565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f5816001620003a4565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000166919062000653565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001de919062000653565b6001600160a01b031660a0819052620001f9906001620003a4565b600160036002806c01431e0fae6d7217caa000000060646200021c82876200069b565b620002289190620006bd565b60085560646200023a8260026200069b565b620002469190620006bd565b600a55612710620002598260056200069b565b620002659190620006bd565b600955600d859055600e8490556200027e8486620006e0565b600c5560108390556011829055620002978284620006e0565b600f55600780546001600160a01b0319167309d07e65098824f8e9f4eb8aeb45e92bcc1eb013179055620002df620002d76005546001600160a01b031690565b60016200041e565b620002ec3060016200041e565b620002fb61dead60016200041e565b6200031a620003126005546001600160a01b031690565b6001620003a4565b62000327306001620003a4565b6200033661dead6001620003a4565b620003423382620004c8565b50505050505062000738565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003f35760405162461bcd60e51b815260206004820181905260248201526000805160206200258783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004695760405162461bcd60e51b81526020600482018190526024820152600080516020620025878339815191526044820152606401620003ea565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ea565b8060026000828254620005349190620006e0565b90915550506001600160a01b0382166000908152602081905260408120805483929062000563908490620006e0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005bb90620006fb565b90600052602060002090601f016020900481019282620005df57600085556200062a565b82601f10620005fa57805160ff19168380011785556200062a565b828001600101855582156200062a579182015b828111156200062a5782518255916020019190600101906200060d565b50620006389291506200063c565b5090565b5b808211156200063857600081556001016200063d565b6000602082840312156200066657600080fd5b81516001600160a01b03811681146200067e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006b857620006b862000685565b500290565b600082620006db57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006f657620006f662000685565b500190565b600181811c908216806200071057607f821691505b602082108114156200073257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611df86200078f600039600081816103f2015281816111f10152818161140201528181611512015281816115bb01526116750152600081816103150152818161195601526119950152611df86000f3fe60806040526004361061024a5760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b806395d89b41116100fd57806395d89b41146105d05780639c3b4fdc146105e5578063a0d82dc5146105fb578063a9059cbb14610611578063bbc0c7421461063157600080fd5b806389a302711461053d5780638a8c523c1461055d5780638da5cb5b146105725780638ea5220f14610590578063924de9b7146105b057600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b806349bd5a5e146103e05780634a62bb65146104145780634fbee1931461042e57806366ca9b83146104675780636a486a8e1461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611a0d565b61079a565b005b34801561028457600080fd5b5061028d61083a565b60405161029a9190611a2f565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611a9b565b6108cc565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611ac5565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611ac5565b6108e2565b34801561039a57600080fd5b506102c36103a9366004611ae0565b610969565b3480156103ba57600080fd5b5061033761dead81565b3480156103d057600080fd5b506040516012815260200161029a565b3480156103ec57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b34801561042057600080fd5b50600b546102c39060ff1681565b34801561043a57600080fd5b506102c3610449366004611ac5565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047357600080fd5b50610276610482366004611a0d565b610a13565b34801561049357600080fd5b50610360600f5481565b3480156104a957600080fd5b50600b546102c39062010000900460ff1681565b3480156104c957600080fd5b506103606104d8366004611ac5565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b50610276610aa6565b34801561051457600080fd5b506102c3610adc565b34801561052957600080fd5b50610276610538366004611b2c565b610b19565b34801561054957600080fd5b50600654610337906001600160a01b031681565b34801561056957600080fd5b50610276610b6e565b34801561057e57600080fd5b506005546001600160a01b0316610337565b34801561059c57600080fd5b50600754610337906001600160a01b031681565b3480156105bc57600080fd5b506102766105cb366004611b5f565b610bab565b3480156105dc57600080fd5b5061028d610bf1565b3480156105f157600080fd5b50610360600d5481565b34801561060757600080fd5b5061036060105481565b34801561061d57600080fd5b506102c361062c366004611a9b565b610c00565b34801561063d57600080fd5b50600b546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611b2c565b610c0d565b34801561067c57600080fd5b5061027661068b366004611b7a565b610c96565b34801561069c57600080fd5b5061036060085481565b3480156106b257600080fd5b506102c36106c1366004611b7a565b610d67565b3480156106d257600080fd5b50610360600c5481565b3480156106e857600080fd5b506103606106f7366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060095481565b34801561074457600080fd5b50610360600e5481565b34801561075a57600080fd5b50610276610769366004611ac5565b610ebe565b34801561077a57600080fd5b5061036060115481565b34801561079057600080fd5b50610360600a5481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611bbd565b60405180910390fd5b601082905560118190556107e18183611c08565b600f819055600a10156108365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107c4565b5050565b60606003805461084990611c20565b80601f016020809104026020016040519081016040528092919081815260200182805461087590611c20565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9338484610f59565b50600192915050565b6005546001600160a01b0316331461090c5760405162461bcd60e51b81526004016107c490611bbd565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061097684848461107d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109fb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610a088533858403610f59565b506001949350505050565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107c490611bbd565b600d829055600e819055610a518183611c08565b600c819055600a10156108365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107c4565b6005546001600160a01b03163314610ad05760405162461bcd60e51b81526004016107c490611bbd565b610ada60006116bd565b565b6005546000906001600160a01b03163314610b095760405162461bcd60e51b81526004016107c490611bbd565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b435760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b985760405162461bcd60e51b81526004016107c490611bbd565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bd55760405162461bcd60e51b81526004016107c490611bbd565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084990611c20565b60006108d933848461107d565b6005546001600160a01b03163314610c375760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610cc05760405162461bcd60e51b81526004016107c490611bbd565b670de0b6b3a76400006103e8610cd560025490565b610ce0906005611c5b565b610cea9190611c7a565b610cf49190611c7a565b811015610d4f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610d6181670de0b6b3a7640000611c5b565b600a5550565b6005546000906001600160a01b03163314610d945760405162461bcd60e51b81526004016107c490611bbd565b620186a0610da160025490565b610dac906001611c5b565b610db69190611c7a565b821015610e235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610e2f60025490565b610e3a906005611c5b565b610e449190611c7a565b821115610eb05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600981905560015b919050565b6005546001600160a01b03163314610ee85760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b038116610f4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b610f56816116bd565b50565b6001600160a01b038316610fbb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b03821661101c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110a35760405162461bcd60e51b81526004016107c490611c9c565b6001600160a01b0382166110c95760405162461bcd60e51b81526004016107c490611ce1565b806110df576110da8383600061170f565b505050565b600b5460ff16156113b7576005546001600160a01b0384811691161480159061111657506005546001600160a01b03838116911614155b801561112a57506001600160a01b03821615155b801561114157506001600160a01b03821661dead14155b80156111575750600654600160a01b900460ff16155b156113b757600b54610100900460ff166111ef576001600160a01b03831660009081526012602052604090205460ff16806111aa57506001600160a01b03821660009081526012602052604090205460ff165b6111ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561124957506001600160a01b03821660009081526013602052604090205460ff16155b1561132d576008548111156112be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b600a546001600160a01b0383166000908152602081905260409020546112e49083611c08565b11156113285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b6113b7565b6001600160a01b03821660009081526013602052604090205460ff166113b757600a546001600160a01b0383166000908152602081905260409020546113739083611c08565b11156113b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600954811080159081906113e35750600b5462010000900460ff165b80156113f95750600654600160a01b900460ff16155b801561143657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561145b57506001600160a01b03851660009081526012602052604090205460ff16155b801561148057506001600160a01b03841660009081526012602052604090205460ff16155b156114ae576006805460ff60a01b1916600160a01b1790556114a0611864565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806114fc57506001600160a01b03851660009081526012602052604090205460ff165b15611505575060005b600080600083156116a7577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561155357506000600f54115b156115b9576115786064611572600f548a6118ab90919063ffffffff16565b906118be565b9250600f546011548461158b9190611c5b565b6115959190611c7a565b9150600f54601054846115a89190611c5b565b6115b29190611c7a565b9050611658565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156115fc57506000600c54115b156116585761161b6064611572600c548a6118ab90919063ffffffff16565b9250600c54600e548461162e9190611c5b565b6116389190611c7a565b9150600c54600d548461164b9190611c5b565b6116559190611c7a565b90505b82156116695761166989308561170f565b811561169a5761169a307f00000000000000000000000000000000000000000000000000000000000000008461170f565b6116a48388611d24565b96505b6116b289898961170f565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117355760405162461bcd60e51b81526004016107c490611c9c565b6001600160a01b03821661175b5760405162461bcd60e51b81526004016107c490611ce1565b6001600160a01b038316600090815260208190526040902054818110156117d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061180a908490611c08565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185691815260200190565b60405180910390a350505050565b306000908152602081905260409020548061187c5750565b60095461188a906014611c5b565b8111156118a25760095461189f906014611c5b565b90505b610f56816118ca565b60006118b78284611c5b565b9392505050565b60006118b78284611c7a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118ff576118ff611d3b565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061193057611930611d3b565b60200260200101906001600160a01b031690816001600160a01b03168152505061197b307f000000000000000000000000000000000000000000000000000000000000000084610f59565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d795926119d7928792600092889291909116904290600401611d51565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505050565b60008060408385031215611a2057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611a5c57858101830151858201604001528201611a40565b81811115611a6e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610eb957600080fd5b60008060408385031215611aae57600080fd5b611ab783611a84565b946020939093013593505050565b600060208284031215611ad757600080fd5b6118b782611a84565b600080600060608486031215611af557600080fd5b611afe84611a84565b9250611b0c60208501611a84565b9150604084013590509250925092565b80358015158114610eb957600080fd5b60008060408385031215611b3f57600080fd5b611b4883611a84565b9150611b5660208401611b1c565b90509250929050565b600060208284031215611b7157600080fd5b6118b782611b1c565b600060208284031215611b8c57600080fd5b5035919050565b60008060408385031215611ba657600080fd5b611baf83611a84565b9150611b5660208401611a84565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1b57611c1b611bf2565b500190565b600181811c90821680611c3457607f821691505b60208210811415611c5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611c7557611c75611bf2565b500290565b600082611c9757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611d3657611d36611bf2565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611da15784516001600160a01b031683529383019391830191600101611d7c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e39f97f4003f644d9fe4b93b01242983e9e8ee854be6e58c641933d0b06e86ba64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b806395d89b41116100fd57806395d89b41146105d05780639c3b4fdc146105e5578063a0d82dc5146105fb578063a9059cbb14610611578063bbc0c7421461063157600080fd5b806389a302711461053d5780638a8c523c1461055d5780638da5cb5b146105725780638ea5220f14610590578063924de9b7146105b057600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b806349bd5a5e146103e05780634a62bb65146104145780634fbee1931461042e57806366ca9b83146104675780636a486a8e1461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611a0d565b61079a565b005b34801561028457600080fd5b5061028d61083a565b60405161029a9190611a2f565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611a9b565b6108cc565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611ac5565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611ac5565b6108e2565b34801561039a57600080fd5b506102c36103a9366004611ae0565b610969565b3480156103ba57600080fd5b5061033761dead81565b3480156103d057600080fd5b506040516012815260200161029a565b3480156103ec57600080fd5b506103377f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b5853281565b34801561042057600080fd5b50600b546102c39060ff1681565b34801561043a57600080fd5b506102c3610449366004611ac5565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047357600080fd5b50610276610482366004611a0d565b610a13565b34801561049357600080fd5b50610360600f5481565b3480156104a957600080fd5b50600b546102c39062010000900460ff1681565b3480156104c957600080fd5b506103606104d8366004611ac5565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b50610276610aa6565b34801561051457600080fd5b506102c3610adc565b34801561052957600080fd5b50610276610538366004611b2c565b610b19565b34801561054957600080fd5b50600654610337906001600160a01b031681565b34801561056957600080fd5b50610276610b6e565b34801561057e57600080fd5b506005546001600160a01b0316610337565b34801561059c57600080fd5b50600754610337906001600160a01b031681565b3480156105bc57600080fd5b506102766105cb366004611b5f565b610bab565b3480156105dc57600080fd5b5061028d610bf1565b3480156105f157600080fd5b50610360600d5481565b34801561060757600080fd5b5061036060105481565b34801561061d57600080fd5b506102c361062c366004611a9b565b610c00565b34801561063d57600080fd5b50600b546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611b2c565b610c0d565b34801561067c57600080fd5b5061027661068b366004611b7a565b610c96565b34801561069c57600080fd5b5061036060085481565b3480156106b257600080fd5b506102c36106c1366004611b7a565b610d67565b3480156106d257600080fd5b50610360600c5481565b3480156106e857600080fd5b506103606106f7366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060095481565b34801561074457600080fd5b50610360600e5481565b34801561075a57600080fd5b50610276610769366004611ac5565b610ebe565b34801561077a57600080fd5b5061036060115481565b34801561079057600080fd5b50610360600a5481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611bbd565b60405180910390fd5b601082905560118190556107e18183611c08565b600f819055600a10156108365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107c4565b5050565b60606003805461084990611c20565b80601f016020809104026020016040519081016040528092919081815260200182805461087590611c20565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9338484610f59565b50600192915050565b6005546001600160a01b0316331461090c5760405162461bcd60e51b81526004016107c490611bbd565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061097684848461107d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109fb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610a088533858403610f59565b506001949350505050565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107c490611bbd565b600d829055600e819055610a518183611c08565b600c819055600a10156108365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107c4565b6005546001600160a01b03163314610ad05760405162461bcd60e51b81526004016107c490611bbd565b610ada60006116bd565b565b6005546000906001600160a01b03163314610b095760405162461bcd60e51b81526004016107c490611bbd565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b435760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b985760405162461bcd60e51b81526004016107c490611bbd565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bd55760405162461bcd60e51b81526004016107c490611bbd565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084990611c20565b60006108d933848461107d565b6005546001600160a01b03163314610c375760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610cc05760405162461bcd60e51b81526004016107c490611bbd565b670de0b6b3a76400006103e8610cd560025490565b610ce0906005611c5b565b610cea9190611c7a565b610cf49190611c7a565b811015610d4f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610d6181670de0b6b3a7640000611c5b565b600a5550565b6005546000906001600160a01b03163314610d945760405162461bcd60e51b81526004016107c490611bbd565b620186a0610da160025490565b610dac906001611c5b565b610db69190611c7a565b821015610e235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610e2f60025490565b610e3a906005611c5b565b610e449190611c7a565b821115610eb05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600981905560015b919050565b6005546001600160a01b03163314610ee85760405162461bcd60e51b81526004016107c490611bbd565b6001600160a01b038116610f4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b610f56816116bd565b50565b6001600160a01b038316610fbb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b03821661101c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110a35760405162461bcd60e51b81526004016107c490611c9c565b6001600160a01b0382166110c95760405162461bcd60e51b81526004016107c490611ce1565b806110df576110da8383600061170f565b505050565b600b5460ff16156113b7576005546001600160a01b0384811691161480159061111657506005546001600160a01b03838116911614155b801561112a57506001600160a01b03821615155b801561114157506001600160a01b03821661dead14155b80156111575750600654600160a01b900460ff16155b156113b757600b54610100900460ff166111ef576001600160a01b03831660009081526012602052604090205460ff16806111aa57506001600160a01b03821660009081526012602052604090205460ff165b6111ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b585326001600160a01b0316836001600160a01b031614801561124957506001600160a01b03821660009081526013602052604090205460ff16155b1561132d576008548111156112be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b600a546001600160a01b0383166000908152602081905260409020546112e49083611c08565b11156113285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b6113b7565b6001600160a01b03821660009081526013602052604090205460ff166113b757600a546001600160a01b0383166000908152602081905260409020546113739083611c08565b11156113b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600954811080159081906113e35750600b5462010000900460ff165b80156113f95750600654600160a01b900460ff16155b801561143657507f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b585326001600160a01b0316846001600160a01b0316145b801561145b57506001600160a01b03851660009081526012602052604090205460ff16155b801561148057506001600160a01b03841660009081526012602052604090205460ff16155b156114ae576006805460ff60a01b1916600160a01b1790556114a0611864565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806114fc57506001600160a01b03851660009081526012602052604090205460ff165b15611505575060005b600080600083156116a7577f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b585326001600160a01b0316886001600160a01b031614801561155357506000600f54115b156115b9576115786064611572600f548a6118ab90919063ffffffff16565b906118be565b9250600f546011548461158b9190611c5b565b6115959190611c7a565b9150600f54601054846115a89190611c5b565b6115b29190611c7a565b9050611658565b7f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b585326001600160a01b0316896001600160a01b03161480156115fc57506000600c54115b156116585761161b6064611572600c548a6118ab90919063ffffffff16565b9250600c54600e548461162e9190611c5b565b6116389190611c7a565b9150600c54600d548461164b9190611c5b565b6116559190611c7a565b90505b82156116695761166989308561170f565b811561169a5761169a307f000000000000000000000000913c5e56771ccff9f7d0385753cca2ed38b585328461170f565b6116a48388611d24565b96505b6116b289898961170f565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117355760405162461bcd60e51b81526004016107c490611c9c565b6001600160a01b03821661175b5760405162461bcd60e51b81526004016107c490611ce1565b6001600160a01b038316600090815260208190526040902054818110156117d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061180a908490611c08565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185691815260200190565b60405180910390a350505050565b306000908152602081905260409020548061187c5750565b60095461188a906014611c5b565b8111156118a25760095461189f906014611c5b565b90505b610f56816118ca565b60006118b78284611c5b565b9392505050565b60006118b78284611c7a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118ff576118ff611d3b565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061193057611930611d3b565b60200260200101906001600160a01b031690816001600160a01b03168152505061197b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f59565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d795926119d7928792600092889291909116904290600401611d51565b600060405180830381600087803b1580156119f157600080fd5b505af1158015611a05573d6000803e3d6000fd5b505050505050565b60008060408385031215611a2057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611a5c57858101830151858201604001528201611a40565b81811115611a6e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610eb957600080fd5b60008060408385031215611aae57600080fd5b611ab783611a84565b946020939093013593505050565b600060208284031215611ad757600080fd5b6118b782611a84565b600080600060608486031215611af557600080fd5b611afe84611a84565b9250611b0c60208501611a84565b9150604084013590509250925092565b80358015158114610eb957600080fd5b60008060408385031215611b3f57600080fd5b611b4883611a84565b9150611b5660208401611b1c565b90509250929050565b600060208284031215611b7157600080fd5b6118b782611b1c565b600060208284031215611b8c57600080fd5b5035919050565b60008060408385031215611ba657600080fd5b611baf83611a84565b9150611b5660208401611a84565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1b57611c1b611bf2565b500190565b600181811c90821680611c3457607f821691505b60208210811415611c5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611c7557611c75611bf2565b500290565b600082611c9757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611d3657611d36611bf2565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611da15784516001600160a01b031683529383019391830191600101611d7c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e39f97f4003f644d9fe4b93b01242983e9e8ee854be6e58c641933d0b06e86ba64736f6c634300080a0033

Deployed Bytecode Sourcemap

24388:10496:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29423:318;;;;;;;;;;-1:-1:-1;29423:318:0;;;;;:::i;:::-;;:::i;:::-;;9244:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11411:169;;;;;;;;;;-1:-1:-1;11411:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;11411:169:0;1306:187:1;25351:63:0;;;;;;;;;;-1:-1:-1;25351:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24466:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;24466:51:0;1689:229:1;10364:108:0;;;;;;;;;;-1:-1:-1;10452:12:0;;10364:108;;;2069:25:1;;;2057:2;2042:18;10364:108:0;1923:177:1;29939:189:0;;;;;;;;;;-1:-1:-1;29939:189:0;;;;;:::i;:::-;;:::i;12062:492::-;;;;;;;;;;-1:-1:-1;12062:492:0;;;;;:::i;:::-;;:::i;24569:53::-;;;;;;;;;;;;24615:6;24569:53;;10206:93;;;;;;;;;;-1:-1:-1;10206:93:0;;10289:2;2788:36:1;;2776:2;2761:18;10206:93:0;2646:184:1;24524:38:0;;;;;;;;;;;;;;;24880:33;;;;;;;;;;-1:-1:-1;24880:33:0;;;;;;;;30138:126;;;;;;;;;;-1:-1:-1;30138:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30228:28:0;30204:4;30228:28;;;:19;:28;;;;;;;;;30138:126;29104:311;;;;;;;;;;-1:-1:-1;29104:311:0;;;;;:::i;:::-;;:::i;25104:28::-;;;;;;;;;;;;;;;;24960:31;;;;;;;;;;-1:-1:-1;24960:31:0;;;;;;;;;;;10535:127;;;;;;;;;;-1:-1:-1;10535:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10636:18:0;10609:7;10636:18;;;;;;;;;;;;10535:127;2479:103;;;;;;;;;;;;;:::i;27773:121::-;;;;;;;;;;;;;:::i;28733:167::-;;;;;;;;;;-1:-1:-1;28733:167:0;;;;;:::i;:::-;;:::i;24629:64::-;;;;;;;;;;-1:-1:-1;24629:64:0;;;;-1:-1:-1;;;;;24629:64:0;;;27609:112;;;;;;;;;;;;;:::i;1828:87::-;;;;;;;;;;-1:-1:-1;1901:6:0;;-1:-1:-1;;;;;1901:6:0;1828:87;;24732:24;;;;;;;;;;-1:-1:-1;24732:24:0;;;;-1:-1:-1;;;;;24732:24:0;;;28996:100;;;;;;;;;;-1:-1:-1;28996:100:0;;;;;:::i;:::-;;:::i;9463:104::-;;;;;;;;;;;;;:::i;25034:24::-;;;;;;;;;;;;;;;;25139:25;;;;;;;;;;;;;;;;10875:175;;;;;;;;;;-1:-1:-1;10875:175:0;;;;;:::i;:::-;;:::i;24920:33::-;;;;;;;;;;-1:-1:-1;24920:33:0;;;;;;;;;;;29749:182;;;;;;;;;;-1:-1:-1;29749:182:0;;;;;:::i;:::-;;:::i;28469:256::-;;;;;;;;;;-1:-1:-1;28469:256:0;;;;;:::i;:::-;;:::i;24765:35::-;;;;;;;;;;;;;;;;27964:497;;;;;;;;;;-1:-1:-1;27964:497:0;;;;;:::i;:::-;;:::i;25000:27::-;;;;;;;;;;;;;;;;11113:151;;;;;;;;;;-1:-1:-1;11113:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11229:18:0;;;11202:7;11229:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11113:151;24807:33;;;;;;;;;;;;;;;;25065:30;;;;;;;;;;;;;;;;2737:201;;;;;;;;;;-1:-1:-1;2737:201:0;;;;;:::i;:::-;;:::i;25171:31::-;;;;;;;;;;;;;;;;24847:24;;;;;;;;;;;;;;;;29423:318;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;;;;;;;;;29542:10:::1;:20:::0;;;29573:16:::1;:32:::0;;;29632:29:::1;29592:13:::0;29555:7;29632:29:::1;:::i;:::-;29616:13;:45:::0;;;29697:2:::1;-1:-1:-1::0;29680:19:0::1;29672:61;;;::::0;-1:-1:-1;;;29672:61:0;;4722:2:1;29672:61:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;29672:61:0::1;4520:353:1::0;29672:61:0::1;29423:318:::0;;:::o;9244:100::-;9298:13;9331:5;9324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9244:100;:::o;11411:169::-;11494:4;11511:39;581:10;11534:7;11543:6;11511:8;:39::i;:::-;-1:-1:-1;11568:4:0;11411:169;;;;:::o;29939:189::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;30075:9:::1;::::0;30044:41:::1;::::0;-1:-1:-1;;;;;30075:9:0;;::::1;::::0;30044:41;::::1;::::0;::::1;::::0;30075:9:::1;::::0;30044:41:::1;30096:9;:24:::0;;-1:-1:-1;;;;;;30096:24:0::1;-1:-1:-1::0;;;;;30096:24:0;;;::::1;::::0;;;::::1;::::0;;29939:189::o;12062:492::-;12202:4;12219:36;12229:6;12237:9;12248:6;12219:9;:36::i;:::-;-1:-1:-1;;;;;12295:19:0;;12268:24;12295:19;;;:11;:19;;;;;;;;581:10;12295:33;;;;;;;;12347:26;;;;12339:79;;;;-1:-1:-1;;;12339:79:0;;5465:2:1;12339:79:0;;;5447:21:1;5504:2;5484:18;;;5477:30;5543:34;5523:18;;;5516:62;-1:-1:-1;;;5594:18:1;;;5587:38;5642:19;;12339:79:0;5263:404:1;12339:79:0;12454:57;12463:6;581:10;12504:6;12485:16;:25;12454:8;:57::i;:::-;-1:-1:-1;12542:4:0;;12062:492;-1:-1:-1;;;;12062:492:0:o;29104:311::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;29222:9:::1;:19:::0;;;29252:15:::1;:31:::0;;;29309:27:::1;29270:13:::0;29234:7;29309:27:::1;:::i;:::-;29294:12;:42:::0;;;29371:2:::1;-1:-1:-1::0;29355:18:0::1;29347:60;;;::::0;-1:-1:-1;;;29347:60:0;;4722:2:1;29347:60:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;29347:60:0::1;4520:353:1::0;2479:103:0;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;2544:30:::1;2571:1;2544:18;:30::i;:::-;2479:103::o:0;27773:121::-;1901:6;;27825:4;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;-1:-1:-1;27842:14:0::1;:22:::0;;-1:-1:-1;;27842:22:0::1;::::0;;;27773:121;:::o;28733:167::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28846:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28846:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28733:167::o;27609:112::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;27664:13:::1;:20:::0;;-1:-1:-1;;27695:18:0;;;;;27609:112::o;28996:100::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;29067:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29067:21:0;;::::1;::::0;;;::::1;::::0;;28996:100::o;9463:104::-;9519:13;9552:7;9545:14;;;;;:::i;10875:175::-;10961:4;10978:42;581:10;11002:9;11013:6;10978:9;:42::i;29749:182::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29834:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29834:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29889:34;;1446:41:1;;;29889:34:0::1;::::0;1419:18:1;29889:34:0::1;;;;;;;29749:182:::0;;:::o;28469:256::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;28609:4:::1;28601;28580:13;10452:12:::0;;;10364:108;28580:13:::1;:17;::::0;28596:1:::1;28580:17;:::i;:::-;28579:26;;;;:::i;:::-;28578:35;;;;:::i;:::-;28568:6;:45;;28546:131;;;::::0;-1:-1:-1;;;28546:131:0;;6269:2:1;28546:131:0::1;::::0;::::1;6251:21:1::0;6308:2;6288:18;;;6281:30;6347:34;6327:18;;;6320:62;-1:-1:-1;;;6398:18:1;;;6391:34;6442:19;;28546:131:0::1;6067:400:1::0;28546:131:0::1;28700:17;:6:::0;28710::::1;28700:17;:::i;:::-;28688:9;:29:::0;-1:-1:-1;28469:256:0:o;27964:497::-;1901:6;;28072:4;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;28151:6:::1;28130:13;10452:12:::0;;;10364:108;28130:13:::1;:17;::::0;28146:1:::1;28130:17;:::i;:::-;28129:28;;;;:::i;:::-;28116:9;:41;;28094:144;;;::::0;-1:-1:-1;;;28094:144:0;;6674:2:1;28094:144:0::1;::::0;::::1;6656:21:1::0;6713:2;6693:18;;;6686:30;6752:34;6732:18;;;6725:62;-1:-1:-1;;;6803:18:1;;;6796:51;6864:19;;28094:144:0::1;6472:417:1::0;28094:144:0::1;28306:4;28285:13;10452:12:::0;;;10364:108;28285:13:::1;:17;::::0;28301:1:::1;28285:17;:::i;:::-;28284:26;;;;:::i;:::-;28271:9;:39;;28249:141;;;::::0;-1:-1:-1;;;28249:141:0;;7096:2:1;28249:141:0::1;::::0;::::1;7078:21:1::0;7135:2;7115:18;;;7108:30;7174:34;7154:18;;;7147:62;-1:-1:-1;;;7225:18:1;;;7218:50;7285:19;;28249:141:0::1;6894:416:1::0;28249:141:0::1;-1:-1:-1::0;28401:18:0::1;:30:::0;;;28449:4:::1;2119:1;27964:497:::0;;;:::o;2737:201::-;1901:6;;-1:-1:-1;;;;;1901:6:0;581:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2826:22:0;::::1;2818:73;;;::::0;-1:-1:-1;;;2818:73:0;;7517:2:1;2818:73:0::1;::::0;::::1;7499:21:1::0;7556:2;7536:18;;;7529:30;7595:34;7575:18;;;7568:62;-1:-1:-1;;;7646:18:1;;;7639:36;7692:19;;2818:73:0::1;7315:402:1::0;2818:73:0::1;2902:28;2921:8;2902:18;:28::i;:::-;2737:201:::0;:::o;14903:380::-;-1:-1:-1;;;;;15039:19:0;;15031:68;;;;-1:-1:-1;;;15031:68:0;;7924:2:1;15031:68:0;;;7906:21:1;7963:2;7943:18;;;7936:30;8002:34;7982:18;;;7975:62;-1:-1:-1;;;8053:18:1;;;8046:34;8097:19;;15031:68:0;7722:400:1;15031:68:0;-1:-1:-1;;;;;15118:21:0;;15110:68;;;;-1:-1:-1;;;15110:68:0;;8329:2:1;15110:68:0;;;8311:21:1;8368:2;8348:18;;;8341:30;8407:34;8387:18;;;8380:62;-1:-1:-1;;;8458:18:1;;;8451:32;8500:19;;15110:68:0;8127:398:1;15110:68:0;-1:-1:-1;;;;;15191:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15243:32;;2069:25:1;;;15243:32:0;;2042:18:1;15243:32:0;;;;;;;14903:380;;;:::o;30272:3679::-;-1:-1:-1;;;;;30404:18:0;;30396:68;;;;-1:-1:-1;;;30396:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30483:16:0;;30475:64;;;;-1:-1:-1;;;30475:64:0;;;;;;;:::i;:::-;30556:11;30552:93;;30584:28;30600:4;30606:2;30610:1;30584:15;:28::i;:::-;30272:3679;;;:::o;30552:93::-;30661:14;;;;30657:1430;;;1901:6;;-1:-1:-1;;;;;30714:15:0;;;1901:6;;30714:15;;;;:49;;-1:-1:-1;1901:6:0;;-1:-1:-1;;;;;30750:13:0;;;1901:6;;30750:13;;30714:49;:86;;;;-1:-1:-1;;;;;;30784:16:0;;;;30714:86;:128;;;;-1:-1:-1;;;;;;30821:21:0;;30835:6;30821:21;;30714:128;:158;;;;-1:-1:-1;30864:8:0;;-1:-1:-1;;;30864:8:0;;;;30863:9;30714:158;30692:1384;;;30912:13;;;;;;;30907:223;;-1:-1:-1;;;;;30984:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31013:23:0;;;;;;:19;:23;;;;;;;;30984:52;30950:160;;;;-1:-1:-1;;;30950:160:0;;9542:2:1;30950:160:0;;;9524:21:1;9581:2;9561:18;;;9554:30;-1:-1:-1;;;9600:18:1;;;9593:52;9662:18;;30950:160:0;9340:346:1;30950:160:0;31344:13;-1:-1:-1;;;;;31336:21:0;:4;-1:-1:-1;;;;;31336:21:0;;:82;;;;-1:-1:-1;;;;;;31383:35:0;;;;;;:31;:35;;;;;;;;31382:36;31336:82;31310:751;;;31505:20;;31495:6;:30;;31461:169;;;;-1:-1:-1;;;31461:169:0;;9893:2:1;31461:169:0;;;9875:21:1;9932:2;9912:18;;;9905:30;9971:34;9951:18;;;9944:62;-1:-1:-1;;;10022:18:1;;;10015:51;10083:19;;31461:169:0;9691:417:1;31461:169:0;31713:9;;-1:-1:-1;;;;;10636:18:0;;10609:7;10636:18;;;;;;;;;;;31687:22;;:6;:22;:::i;:::-;:35;;31653:140;;;;-1:-1:-1;;;31653:140:0;;10315:2:1;31653:140:0;;;10297:21:1;10354:2;10334:18;;;10327:30;-1:-1:-1;;;10373:18:1;;;10366:49;10432:18;;31653:140:0;10113:343:1;31653:140:0;31310:751;;;-1:-1:-1;;;;;31841:35:0;;;;;;:31;:35;;;;;;;;31836:225;;31961:9;;-1:-1:-1;;;;;10636:18:0;;10609:7;10636:18;;;;;;;;;;;31935:22;;:6;:22;:::i;:::-;:35;;31901:140;;;;-1:-1:-1;;;31901:140:0;;10315:2:1;31901:140:0;;;10297:21:1;10354:2;10334:18;;;10327:30;-1:-1:-1;;;10373:18:1;;;10366:49;10432:18;;31901:140:0;10113:343:1;31901:140:0;32148:4;32099:28;10636:18;;;;;;;;;;;32206;;32182:42;;;;;;;32255:35;;-1:-1:-1;32279:11:0;;;;;;;32255:35;:61;;;;-1:-1:-1;32308:8:0;;-1:-1:-1;;;32308:8:0;;;;32307:9;32255:61;:97;;;;;32339:13;-1:-1:-1;;;;;32333:19:0;:2;-1:-1:-1;;;;;32333:19:0;;32255:97;:140;;;;-1:-1:-1;;;;;;32370:25:0;;;;;;:19;:25;;;;;;;;32369:26;32255:140;:181;;;;-1:-1:-1;;;;;;32413:23:0;;;;;;:19;:23;;;;;;;;32412:24;32255:181;32237:313;;;32463:8;:15;;-1:-1:-1;;;;32463:15:0;-1:-1:-1;;;32463:15:0;;;32495:10;:8;:10::i;:::-;32522:8;:16;;-1:-1:-1;;;;32522:16:0;;;32237:313;32578:8;;-1:-1:-1;;;;;32688:25:0;;32562:12;32688:25;;;:19;:25;;;;;;32578:8;-1:-1:-1;;;32578:8:0;;;;;32577:9;;32688:25;;:52;;-1:-1:-1;;;;;;32717:23:0;;;;;;:19;:23;;;;;;;;32688:52;32684:100;;;-1:-1:-1;32767:5:0;32684:100;32796:12;32823:26;32864:20;32977:7;32973:925;;;33035:13;-1:-1:-1;;;;;33029:19:0;:2;-1:-1:-1;;;;;33029:19:0;;:40;;;;;33068:1;33052:13;;:17;33029:40;33025:583;;;33097:34;33127:3;33097:25;33108:13;;33097:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33090:41;;33199:13;;33179:16;;33172:4;:23;;;;:::i;:::-;33171:41;;;;:::i;:::-;33150:62;;33268:13;;33254:10;;33247:4;:17;;;;:::i;:::-;33246:35;;;;:::i;:::-;33231:50;;33025:583;;;33351:13;-1:-1:-1;;;;;33343:21:0;:4;-1:-1:-1;;;;;33343:21:0;;:41;;;;;33383:1;33368:12;;:16;33343:41;33339:269;;;33412:33;33441:3;33412:24;33423:12;;33412:6;:10;;:24;;;;:::i;:33::-;33405:40;;33512:12;;33493:15;;33486:4;:22;;;;:::i;:::-;33485:39;;;;:::i;:::-;33464:60;;33580:12;;33567:9;;33560:4;:16;;;;:::i;:::-;33559:33;;;;:::i;:::-;33544:48;;33339:269;33628:7;;33624:90;;33656:42;33672:4;33686;33693;33656:15;:42::i;:::-;33732:22;;33728:128;;33775:65;33799:4;33806:13;33821:18;33775:15;:65::i;:::-;33872:14;33882:4;33872:14;;:::i;:::-;;;32973:925;33910:33;33926:4;33932:2;33936:6;33910:15;:33::i;:::-;30385:3566;;;;;;30272:3679;;;:::o;3098:191::-;3191:6;;;-1:-1:-1;;;;;3208:17:0;;;-1:-1:-1;;;;;;3208:17:0;;;;;;;3241:40;;3191:6;;;3208:17;3191:6;;3241:40;;3172:16;;3241:40;3161:128;3098:191;:::o;13044:733::-;-1:-1:-1;;;;;13184:20:0;;13176:70;;;;-1:-1:-1;;;13176:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13265:23:0;;13257:71;;;;-1:-1:-1;;;13257:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13425:17:0;;13401:21;13425:17;;;;;;;;;;;13461:23;;;;13453:74;;;;-1:-1:-1;;;13453:74:0;;10793:2:1;13453:74:0;;;10775:21:1;10832:2;10812:18;;;10805:30;10871:34;10851:18;;;10844:62;-1:-1:-1;;;10922:18:1;;;10915:36;10968:19;;13453:74:0;10591:402:1;13453:74:0;-1:-1:-1;;;;;13563:17:0;;;:9;:17;;;;;;;;;;;13583:22;;;13563:42;;13627:20;;;;;;;;:30;;13599:6;;13563:9;13627:30;;13599:6;;13627:30;:::i;:::-;;;;;;;;13692:9;-1:-1:-1;;;;;13675:35:0;13684:6;-1:-1:-1;;;;;13675:35:0;;13703:6;13675:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;13675:35:0;;;;;;;;13165:612;13044:733;;;:::o;34539:340::-;34622:4;34578:23;10636:18;;;;;;;;;;;;34639:59;;34680:7;34539:340::o;34639:59::-;34732:18;;:23;;34753:2;34732:23;:::i;:::-;34714:15;:41;34710:115;;;34790:18;;:23;;34811:2;34790:23;:::i;:::-;34772:41;;34710:115;34837:34;34855:15;34837:17;:34::i;20356:98::-;20414:7;20441:5;20445:1;20441;:5;:::i;:::-;20434:12;20356:98;-1:-1:-1;;;20356:98:0:o;20755:::-;20813:7;20840:5;20844:1;20840;:5;:::i;33959:572::-;34110:16;;;34124:1;34110:16;;;;;;;;34086:21;;34110:16;;;;;;;;;;-1:-1:-1;34110:16:0;34086:40;;34155:4;34137;34142:1;34137:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34137:23:0;;;:7;;;;;;;;;:23;34181:4;;34171:7;;34181:4;;;34171;;34181;;34171:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34171:14:0;;;-1:-1:-1;;;;;34171:14:0;;;;;34198:62;34215:4;34230:15;34248:11;34198:8;:62::i;:::-;34473:9;;34299:224;;-1:-1:-1;;;34299:224:0;;-1:-1:-1;;;;;34299:15:0;:69;;;;;:224;;34383:11;;34409:1;;34454:4;;34473:9;;;;;34497:15;;34299:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34015:516;33959: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:328::-;2182:6;2190;2198;2251:2;2239:9;2230:7;2226:23;2222:32;2219:52;;;2267:1;2264;2257:12;2219:52;2290:29;2309:9;2290:29;:::i;:::-;2280:39;;2338:38;2372:2;2361:9;2357:18;2338:38;:::i;:::-;2328:48;;2423:2;2412:9;2408:18;2395:32;2385:42;;2105:328;;;;;:::o;2835:160::-;2900:20;;2956:13;;2949:21;2939:32;;2929:60;;2985:1;2982;2975:12;3000:254;3065:6;3073;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3165:29;3184:9;3165:29;:::i;:::-;3155:39;;3213:35;3244:2;3233:9;3229:18;3213:35;:::i;:::-;3203:45;;3000:254;;;;;:::o;3259:180::-;3315:6;3368:2;3356:9;3347:7;3343:23;3339:32;3336:52;;;3384:1;3381;3374:12;3336:52;3407:26;3423:9;3407:26;:::i;3444:180::-;3503:6;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;-1:-1:-1;3595:23:1;;3444:180;-1:-1:-1;3444:180:1:o;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;4878:380::-;4957:1;4953:12;;;;5000;;;5021:61;;5075:4;5067:6;5063:17;5053:27;;5021:61;5128:2;5120:6;5117:14;5097:18;5094:38;5091:161;;;5174:10;5169:3;5165:20;5162:1;5155:31;5209:4;5206:1;5199:15;5237:4;5234:1;5227:15;5091:161;;4878:380;;;:::o;5672:168::-;5712:7;5778:1;5774;5770:6;5766:14;5763:1;5760:21;5755:1;5748:9;5741:17;5737:45;5734:71;;;5785:18;;:::i;:::-;-1:-1:-1;5825:9:1;;5672:168::o;5845:217::-;5885:1;5911;5901:132;;5955:10;5950:3;5946:20;5943:1;5936:31;5990:4;5987:1;5980:15;6018:4;6015:1;6008:15;5901:132;-1:-1:-1;6047:9:1;;5845:217::o;8530:401::-;8732:2;8714:21;;;8771:2;8751:18;;;8744:30;8810:34;8805:2;8790:18;;8783:62;-1:-1:-1;;;8876:2:1;8861:18;;8854:35;8921:3;8906:19;;8530:401::o;8936:399::-;9138:2;9120:21;;;9177:2;9157:18;;;9150:30;9216:34;9211:2;9196:18;;9189:62;-1:-1:-1;;;9282:2:1;9267:18;;9260:33;9325:3;9310:19;;8936:399::o;10461:125::-;10501:4;10529:1;10526;10523:8;10520:34;;;10534:18;;:::i;:::-;-1:-1:-1;10571:9:1;;10461:125::o;11130:127::-;11191:10;11186:3;11182:20;11179:1;11172:31;11222:4;11219:1;11212:15;11246:4;11243:1;11236:15;11262:980;11524:4;11572:3;11561:9;11557:19;11603:6;11592:9;11585:25;11629:2;11667:6;11662:2;11651:9;11647:18;11640:34;11710:3;11705:2;11694:9;11690:18;11683:31;11734:6;11769;11763:13;11800:6;11792;11785:22;11838:3;11827:9;11823:19;11816:26;;11877:2;11869:6;11865:15;11851:29;;11898:1;11908:195;11922:6;11919:1;11916:13;11908:195;;;11987:13;;-1:-1:-1;;;;;11983:39:1;11971:52;;12078:15;;;;12043:12;;;;12019:1;11937:9;11908:195;;;-1:-1:-1;;;;;;;12159:32:1;;;;12154:2;12139:18;;12132:60;-1:-1:-1;;;12223:3:1;12208:19;12201:35;12120:3;11262:980;-1:-1:-1;;;11262:980:1:o

Swarm Source

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