ETH Price: $2,684.26 (-2.22%)

Token

ERC20 ***
 

Overview

Max Total Supply

100,000,000,000 ERC20 ***

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,603,734,810.38663149077392218 ERC20 ***

Value
$0.00
0xfc3c9a707547f45893b255c4d335f0cd7851a78a
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:
Shidai

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-12-07
*/

/**
Shidai
Welcome to the community. Dai LP with high taxes at the start to fund a growing community
in the future. Contract will be renounced at 0 tax(or what the community wants)
when the time is right. Removing limits will also come in time. 
Liq will be locked for a very long time or burnt depending on how the community is
feeling. I suspect a telegram will be set up, I will supply logo and socials. 
*/


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


/* pragma solidity ^0.8.0; */


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 ToTheDEAD() 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 Shidai is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public DAI = 0x6B175474E89094C44Da98b954EedeAC495271d0F;

    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("Shidai", "Shidai") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 9;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 69;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% 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(0x683187861b0b3CC5653B1F3EDe1fa427Bca3e2E9); 

        // 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 StartProceedings() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        swapTokensForDAI(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":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"CommunityBuyFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"CommunitySellFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DAI","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LimitsGONE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"StartProceedings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ToTheDEAD","outputs":[],"stateMutability":"nonpayable","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":[{"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":"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":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60c0604052600680546001600160a01b031916736b175474e89094c44da98b954eedeac495271d0f179055600b805462ffffff191660011790553480156200004657600080fd5b5060408051808201825260068082526553686964616960d01b602080840182815285518087019096529285528401528151919291620000889160039162000596565b5080516200009e90600490602084019062000596565b505050620000bb620000b56200033760201b60201c565b6200033b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000dd8160016200038d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000128573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014e91906200063c565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c691906200063c565b6001600160a01b031660a0819052620001e19060016200038d565b600960006045816c01431e0fae6d7217caa000000060646200020582600262000684565b620002119190620006a6565b60085560646200022382600262000684565b6200022f9190620006a6565b600a556127106200024282600562000684565b6200024e9190620006a6565b600955600d859055600e849055620002678486620006c9565b600c5560108390556011829055620002808284620006c9565b600f55600780546001600160a01b03191673683187861b0b3cc5653b1f3ede1fa427bca3e2e9179055620002c8620002c06005546001600160a01b031690565b600162000407565b620002d530600162000407565b620002e461dead600162000407565b62000303620002fb6005546001600160a01b031690565b60016200038d565b620003103060016200038d565b6200031f61dead60016200038d565b6200032b3382620004b1565b50505050505062000721565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003dc5760405162461bcd60e51b815260206004820181905260248201526000805160206200267983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004525760405162461bcd60e51b81526020600482018190526024820152600080516020620026798339815191526044820152606401620003d3565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003d3565b80600260008282546200051d9190620006c9565b90915550506001600160a01b038216600090815260208190526040812080548392906200054c908490620006c9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005a490620006e4565b90600052602060002090601f016020900481019282620005c8576000855562000613565b82601f10620005e357805160ff191683800117855562000613565b8280016001018555821562000613579182015b8281111562000613578251825591602001919060010190620005f6565b506200062192915062000625565b5090565b5b8082111562000621576000815560010162000626565b6000602082840312156200064f57600080fd5b81516001600160a01b03811681146200066757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006a157620006a16200066e565b500290565b600082620006c457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006df57620006df6200066e565b500190565b600181811c90821680620006f957607f821691505b602082108114156200071b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611f016200077860003960008181610412015281816112fa0152818161150b0152818161161b015281816116c4015261177e0152600081816102fe01528181611a5f0152611a9e0152611f016000f3fe6080604052600436106102555760003560e01c80638da5cb5b11610139578063c18bc195116100b6578063e0bab4c41161007a578063e0bab4c41461072d578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b8063a0d82dc5116100fd578063a0d82dc5146105e6578063a0daf0d7146105fc578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638da5cb5b1461055d5780638ea5220f1461057b578063924de9b71461059b57806395d89b41146105bb5780639c3b4fdc146105d057600080fd5b8063313ce567116101d25780636ddd1713116101965780636ddd17131461049d57806370a08231146104bd5780637571336a146104f35780637ac141071461051357806381c7d7451461052857806387f734871461053d57600080fd5b8063313ce567146103e457806349bd5a5e146104005780634a62bb65146104345780634fbee1931461044e5780636a486a8e1461048757600080fd5b80631816467f116102195780631816467f14610357578063203e727e1461037957806323b872dd1461039957806327c8f835146103b957806329ac2d24146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102bc5780631694505e146102ec57806318160ddd1461033857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107c5565b6040516102839190611b16565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611b82565b610857565b6040519015158152602001610283565b3480156102c857600080fd5b506102ac6102d7366004611bac565b60136020526000908152604090205460ff1681565b3480156102f857600080fd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561034457600080fd5b506002545b604051908152602001610283565b34801561036357600080fd5b50610377610372366004611bac565b61086d565b005b34801561038557600080fd5b50610377610394366004611bc7565b6108fd565b3480156103a557600080fd5b506102ac6103b4366004611be0565b6109da565b3480156103c557600080fd5b5061032061dead81565b3480156103db57600080fd5b506102ac610a84565b3480156103f057600080fd5b5060405160128152602001610283565b34801561040c57600080fd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b34801561044057600080fd5b50600b546102ac9060ff1681565b34801561045a57600080fd5b506102ac610469366004611bac565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049357600080fd5b50610349600f5481565b3480156104a957600080fd5b50600b546102ac9062010000900460ff1681565b3480156104c957600080fd5b506103496104d8366004611bac565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b5061037761050e366004611c2c565b610ac1565b34801561051f57600080fd5b50610377610b16565b34801561053457600080fd5b50610377610b4c565b34801561054957600080fd5b50610377610558366004611c5f565b610b89565b34801561056957600080fd5b506005546001600160a01b0316610320565b34801561058757600080fd5b50600754610320906001600160a01b031681565b3480156105a757600080fd5b506103776105b6366004611c81565b610c21565b3480156105c757600080fd5b50610276610c67565b3480156105dc57600080fd5b50610349600d5481565b3480156105f257600080fd5b5061034960105481565b34801561060857600080fd5b50610377610617366004611c5f565b610c76565b34801561062857600080fd5b506102ac610637366004611b82565b610d09565b34801561064857600080fd5b50600b546102ac90610100900460ff1681565b34801561066757600080fd5b50610377610676366004611c2c565b610d16565b34801561068757600080fd5b50610377610696366004611bc7565b610d9f565b3480156106a757600080fd5b5061034960085481565b3480156106bd57600080fd5b506102ac6106cc366004611bc7565b610e70565b3480156106dd57600080fd5b50610349600c5481565b3480156106f357600080fd5b50610349610702366004611c9c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b50600654610320906001600160a01b031681565b34801561075957600080fd5b5061034960095481565b34801561076f57600080fd5b50610349600e5481565b34801561078557600080fd5b50610377610794366004611bac565b610fc7565b3480156107a557600080fd5b5061034960115481565b3480156107bb57600080fd5b50610349600a5481565b6060600380546107d490611cc6565b80601f016020809104026020016040519081016040528092919081815260200182805461080090611cc6565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610864338484611062565b50600192915050565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161089790611d01565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109275760405162461bcd60e51b815260040161089790611d01565b670de0b6b3a76400006103e861093c60025490565b610947906001611d4c565b6109519190611d6b565b61095b9190611d6b565b8110156109c25760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610897565b6109d481670de0b6b3a7640000611d4c565b60085550565b60006109e7848484611186565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610897565b610a798533858403611062565b506001949350505050565b6005546000906001600160a01b03163314610ab15760405162461bcd60e51b815260040161089790611d01565b50600b805460ff19169055600190565b6005546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161089790611d01565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b405760405162461bcd60e51b815260040161089790611d01565b610b4a60006117c6565b565b6005546001600160a01b03163314610b765760405162461bcd60e51b815260040161089790611d01565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bb35760405162461bcd60e51b815260040161089790611d01565b600d829055600e819055610bc78183611d8d565b600c8190556101a41015610c1d5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742034323025206f72206c65737300006044820152606401610897565b5050565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161089790611d01565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107d490611cc6565b6005546001600160a01b03163314610ca05760405162461bcd60e51b815260040161089790611d01565b60108290556011819055610cb48183611d8d565b600f81905560451015610c1d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420363925206f72206c6573730000006044820152606401610897565b6000610864338484611186565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161089790611d01565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc95760405162461bcd60e51b815260040161089790611d01565b670de0b6b3a76400006103e8610dde60025490565b610de9906005611d4c565b610df39190611d6b565b610dfd9190611d6b565b811015610e585760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610897565b610e6a81670de0b6b3a7640000611d4c565b600a5550565b6005546000906001600160a01b03163314610e9d5760405162461bcd60e51b815260040161089790611d01565b620186a0610eaa60025490565b610eb5906001611d4c565b610ebf9190611d6b565b821015610f2c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610897565b6103e8610f3860025490565b610f43906005611d4c565b610f4d9190611d6b565b821115610fb95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610897565b50600981905560015b919050565b6005546001600160a01b03163314610ff15760405162461bcd60e51b815260040161089790611d01565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b61105f816117c6565b50565b6001600160a01b0383166110c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b0382166111255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ac5760405162461bcd60e51b815260040161089790611da5565b6001600160a01b0382166111d25760405162461bcd60e51b815260040161089790611dea565b806111e8576111e383836000611818565b505050565b600b5460ff16156114c0576005546001600160a01b0384811691161480159061121f57506005546001600160a01b03838116911614155b801561123357506001600160a01b03821615155b801561124a57506001600160a01b03821661dead14155b80156112605750600654600160a01b900460ff16155b156114c057600b54610100900460ff166112f8576001600160a01b03831660009081526012602052604090205460ff16806112b357506001600160a01b03821660009081526012602052604090205460ff165b6112f85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610897565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561135257506001600160a01b03821660009081526013602052604090205460ff16155b15611436576008548111156113c75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610897565b600a546001600160a01b0383166000908152602081905260409020546113ed9083611d8d565b11156114315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b6114c0565b6001600160a01b03821660009081526013602052604090205460ff166114c057600a546001600160a01b03831660009081526020819052604090205461147c9083611d8d565b11156114c05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b30600090815260208190526040902054600954811080159081906114ec5750600b5462010000900460ff165b80156115025750600654600160a01b900460ff16155b801561153f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561156457506001600160a01b03851660009081526012602052604090205460ff16155b801561158957506001600160a01b03841660009081526012602052604090205460ff16155b156115b7576006805460ff60a01b1916600160a01b1790556115a961196d565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160557506001600160a01b03851660009081526012602052604090205460ff165b1561160e575060005b600080600083156117b0577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561165c57506000600f54115b156116c257611681606461167b600f548a6119b490919063ffffffff16565b906119c7565b9250600f54601154846116949190611d4c565b61169e9190611d6b565b9150600f54601054846116b19190611d4c565b6116bb9190611d6b565b9050611761565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561170557506000600c54115b1561176157611724606461167b600c548a6119b490919063ffffffff16565b9250600c54600e54846117379190611d4c565b6117419190611d6b565b9150600c54600d54846117549190611d4c565b61175e9190611d6b565b90505b821561177257611772893085611818565b81156117a3576117a3307f000000000000000000000000000000000000000000000000000000000000000084611818565b6117ad8388611e2d565b96505b6117bb898989611818565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183e5760405162461bcd60e51b815260040161089790611da5565b6001600160a01b0382166118645760405162461bcd60e51b815260040161089790611dea565b6001600160a01b038316600090815260208190526040902054818110156118dc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611913908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195f91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119855750565b600954611993906014611d4c565b8111156119ab576009546119a8906014611d4c565b90505b61105f816119d3565b60006119c08284611d4c565b9392505050565b60006119c08284611d6b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0857611a08611e44565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3957611a39611e44565b60200260200101906001600160a01b031690816001600160a01b031681525050611a84307f000000000000000000000000000000000000000000000000000000000000000084611062565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611ae0928792600092889291909116904290600401611e5a565b600060405180830381600087803b158015611afa57600080fd5b505af1158015611b0e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b4357858101830151858201604001528201611b27565b81811115611b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc257600080fd5b60008060408385031215611b9557600080fd5b611b9e83611b6b565b946020939093013593505050565b600060208284031215611bbe57600080fd5b6119c082611b6b565b600060208284031215611bd957600080fd5b5035919050565b600080600060608486031215611bf557600080fd5b611bfe84611b6b565b9250611c0c60208501611b6b565b9150604084013590509250925092565b80358015158114610fc257600080fd5b60008060408385031215611c3f57600080fd5b611c4883611b6b565b9150611c5660208401611c1c565b90509250929050565b60008060408385031215611c7257600080fd5b50508035926020909101359150565b600060208284031215611c9357600080fd5b6119c082611c1c565b60008060408385031215611caf57600080fd5b611cb883611b6b565b9150611c5660208401611b6b565b600181811c90821680611cda57607f821691505b60208210811415611cfb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d6657611d66611d36565b500290565b600082611d8857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611da057611da0611d36565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e3f57611e3f611d36565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611eaa5784516001600160a01b031683529383019391830191600101611e85565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f8e59fb3cc6edfae6347fdec47b4432ea7d8eaaf79dd9f828536cc29437d588364736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638da5cb5b11610139578063c18bc195116100b6578063e0bab4c41161007a578063e0bab4c41461072d578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc1951461067b578063c8c8ebe41461069b578063d257b34f146106b1578063d85ba063146106d1578063dd62ed3e146106e757600080fd5b8063a0d82dc5116100fd578063a0d82dc5146105e6578063a0daf0d7146105fc578063a9059cbb1461061c578063bbc0c7421461063c578063c02466681461065b57600080fd5b80638da5cb5b1461055d5780638ea5220f1461057b578063924de9b71461059b57806395d89b41146105bb5780639c3b4fdc146105d057600080fd5b8063313ce567116101d25780636ddd1713116101965780636ddd17131461049d57806370a08231146104bd5780637571336a146104f35780637ac141071461051357806381c7d7451461052857806387f734871461053d57600080fd5b8063313ce567146103e457806349bd5a5e146104005780634a62bb65146104345780634fbee1931461044e5780636a486a8e1461048757600080fd5b80631816467f116102195780631816467f14610357578063203e727e1461037957806323b872dd1461039957806327c8f835146103b957806329ac2d24146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102bc5780631694505e146102ec57806318160ddd1461033857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107c5565b6040516102839190611b16565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611b82565b610857565b6040519015158152602001610283565b3480156102c857600080fd5b506102ac6102d7366004611bac565b60136020526000908152604090205460ff1681565b3480156102f857600080fd5b506103207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561034457600080fd5b506002545b604051908152602001610283565b34801561036357600080fd5b50610377610372366004611bac565b61086d565b005b34801561038557600080fd5b50610377610394366004611bc7565b6108fd565b3480156103a557600080fd5b506102ac6103b4366004611be0565b6109da565b3480156103c557600080fd5b5061032061dead81565b3480156103db57600080fd5b506102ac610a84565b3480156103f057600080fd5b5060405160128152602001610283565b34801561040c57600080fd5b506103207f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a81565b34801561044057600080fd5b50600b546102ac9060ff1681565b34801561045a57600080fd5b506102ac610469366004611bac565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049357600080fd5b50610349600f5481565b3480156104a957600080fd5b50600b546102ac9062010000900460ff1681565b3480156104c957600080fd5b506103496104d8366004611bac565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b5061037761050e366004611c2c565b610ac1565b34801561051f57600080fd5b50610377610b16565b34801561053457600080fd5b50610377610b4c565b34801561054957600080fd5b50610377610558366004611c5f565b610b89565b34801561056957600080fd5b506005546001600160a01b0316610320565b34801561058757600080fd5b50600754610320906001600160a01b031681565b3480156105a757600080fd5b506103776105b6366004611c81565b610c21565b3480156105c757600080fd5b50610276610c67565b3480156105dc57600080fd5b50610349600d5481565b3480156105f257600080fd5b5061034960105481565b34801561060857600080fd5b50610377610617366004611c5f565b610c76565b34801561062857600080fd5b506102ac610637366004611b82565b610d09565b34801561064857600080fd5b50600b546102ac90610100900460ff1681565b34801561066757600080fd5b50610377610676366004611c2c565b610d16565b34801561068757600080fd5b50610377610696366004611bc7565b610d9f565b3480156106a757600080fd5b5061034960085481565b3480156106bd57600080fd5b506102ac6106cc366004611bc7565b610e70565b3480156106dd57600080fd5b50610349600c5481565b3480156106f357600080fd5b50610349610702366004611c9c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073957600080fd5b50600654610320906001600160a01b031681565b34801561075957600080fd5b5061034960095481565b34801561076f57600080fd5b50610349600e5481565b34801561078557600080fd5b50610377610794366004611bac565b610fc7565b3480156107a557600080fd5b5061034960115481565b3480156107bb57600080fd5b50610349600a5481565b6060600380546107d490611cc6565b80601f016020809104026020016040519081016040528092919081815260200182805461080090611cc6565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610864338484611062565b50600192915050565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161089790611d01565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109275760405162461bcd60e51b815260040161089790611d01565b670de0b6b3a76400006103e861093c60025490565b610947906001611d4c565b6109519190611d6b565b61095b9190611d6b565b8110156109c25760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610897565b6109d481670de0b6b3a7640000611d4c565b60085550565b60006109e7848484611186565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610897565b610a798533858403611062565b506001949350505050565b6005546000906001600160a01b03163314610ab15760405162461bcd60e51b815260040161089790611d01565b50600b805460ff19169055600190565b6005546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161089790611d01565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b405760405162461bcd60e51b815260040161089790611d01565b610b4a60006117c6565b565b6005546001600160a01b03163314610b765760405162461bcd60e51b815260040161089790611d01565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bb35760405162461bcd60e51b815260040161089790611d01565b600d829055600e819055610bc78183611d8d565b600c8190556101a41015610c1d5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742034323025206f72206c65737300006044820152606401610897565b5050565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161089790611d01565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107d490611cc6565b6005546001600160a01b03163314610ca05760405162461bcd60e51b815260040161089790611d01565b60108290556011819055610cb48183611d8d565b600f81905560451015610c1d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420363925206f72206c6573730000006044820152606401610897565b6000610864338484611186565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161089790611d01565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc95760405162461bcd60e51b815260040161089790611d01565b670de0b6b3a76400006103e8610dde60025490565b610de9906005611d4c565b610df39190611d6b565b610dfd9190611d6b565b811015610e585760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610897565b610e6a81670de0b6b3a7640000611d4c565b600a5550565b6005546000906001600160a01b03163314610e9d5760405162461bcd60e51b815260040161089790611d01565b620186a0610eaa60025490565b610eb5906001611d4c565b610ebf9190611d6b565b821015610f2c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610897565b6103e8610f3860025490565b610f43906005611d4c565b610f4d9190611d6b565b821115610fb95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610897565b50600981905560015b919050565b6005546001600160a01b03163314610ff15760405162461bcd60e51b815260040161089790611d01565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b61105f816117c6565b50565b6001600160a01b0383166110c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b0382166111255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ac5760405162461bcd60e51b815260040161089790611da5565b6001600160a01b0382166111d25760405162461bcd60e51b815260040161089790611dea565b806111e8576111e383836000611818565b505050565b600b5460ff16156114c0576005546001600160a01b0384811691161480159061121f57506005546001600160a01b03838116911614155b801561123357506001600160a01b03821615155b801561124a57506001600160a01b03821661dead14155b80156112605750600654600160a01b900460ff16155b156114c057600b54610100900460ff166112f8576001600160a01b03831660009081526012602052604090205460ff16806112b357506001600160a01b03821660009081526012602052604090205460ff165b6112f85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610897565b7f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a6001600160a01b0316836001600160a01b031614801561135257506001600160a01b03821660009081526013602052604090205460ff16155b15611436576008548111156113c75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610897565b600a546001600160a01b0383166000908152602081905260409020546113ed9083611d8d565b11156114315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b6114c0565b6001600160a01b03821660009081526013602052604090205460ff166114c057600a546001600160a01b03831660009081526020819052604090205461147c9083611d8d565b11156114c05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b30600090815260208190526040902054600954811080159081906114ec5750600b5462010000900460ff165b80156115025750600654600160a01b900460ff16155b801561153f57507f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a6001600160a01b0316846001600160a01b0316145b801561156457506001600160a01b03851660009081526012602052604090205460ff16155b801561158957506001600160a01b03841660009081526012602052604090205460ff16155b156115b7576006805460ff60a01b1916600160a01b1790556115a961196d565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160557506001600160a01b03851660009081526012602052604090205460ff165b1561160e575060005b600080600083156117b0577f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a6001600160a01b0316886001600160a01b031614801561165c57506000600f54115b156116c257611681606461167b600f548a6119b490919063ffffffff16565b906119c7565b9250600f54601154846116949190611d4c565b61169e9190611d6b565b9150600f54601054846116b19190611d4c565b6116bb9190611d6b565b9050611761565b7f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a6001600160a01b0316896001600160a01b031614801561170557506000600c54115b1561176157611724606461167b600c548a6119b490919063ffffffff16565b9250600c54600e54846117379190611d4c565b6117419190611d6b565b9150600c54600d54846117549190611d4c565b61175e9190611d6b565b90505b821561177257611772893085611818565b81156117a3576117a3307f0000000000000000000000007b8c7c187f17705789fbd895b1b71d8eed8e942a84611818565b6117ad8388611e2d565b96505b6117bb898989611818565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183e5760405162461bcd60e51b815260040161089790611da5565b6001600160a01b0382166118645760405162461bcd60e51b815260040161089790611dea565b6001600160a01b038316600090815260208190526040902054818110156118dc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611913908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195f91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119855750565b600954611993906014611d4c565b8111156119ab576009546119a8906014611d4c565b90505b61105f816119d3565b60006119c08284611d4c565b9392505050565b60006119c08284611d6b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0857611a08611e44565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3957611a39611e44565b60200260200101906001600160a01b031690816001600160a01b031681525050611a84307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611062565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611ae0928792600092889291909116904290600401611e5a565b600060405180830381600087803b158015611afa57600080fd5b505af1158015611b0e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b4357858101830151858201604001528201611b27565b81811115611b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc257600080fd5b60008060408385031215611b9557600080fd5b611b9e83611b6b565b946020939093013593505050565b600060208284031215611bbe57600080fd5b6119c082611b6b565b600060208284031215611bd957600080fd5b5035919050565b600080600060608486031215611bf557600080fd5b611bfe84611b6b565b9250611c0c60208501611b6b565b9150604084013590509250925092565b80358015158114610fc257600080fd5b60008060408385031215611c3f57600080fd5b611c4883611b6b565b9150611c5660208401611c1c565b90509250929050565b60008060408385031215611c7257600080fd5b50508035926020909101359150565b600060208284031215611c9357600080fd5b6119c082611c1c565b60008060408385031215611caf57600080fd5b611cb883611b6b565b9150611c5660208401611b6b565b600181811c90821680611cda57607f821691505b60208210811415611cfb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d6657611d66611d36565b500290565b600082611d8857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611da057611da0611d36565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e3f57611e3f611d36565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611eaa5784516001600160a01b031683529383019391830191600101611e85565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f8e59fb3cc6edfae6347fdec47b4432ea7d8eaaf79dd9f828536cc29437d588364736f6c634300080a0033

Deployed Bytecode Sourcemap

24468:10750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9324:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11491:169;;;;;;;;;;-1:-1:-1;11491:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11491:169:0;1053:187:1;25428:63:0;;;;;;;;;;-1:-1:-1;25428:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24544:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;24544:51:0;1436:229:1;10444:108:0;;;;;;;;;;-1:-1:-1;10532:12:0;;10444:108;;;1816:25:1;;;1804:2;1789:18;10444:108:0;1670:177:1;30277:189:0;;;;;;;;;;-1:-1:-1;30277:189:0;;;;;:::i;:::-;;:::i;:::-;;28514:275;;;;;;;;;;-1:-1:-1;28514:275:0;;;;;:::i;:::-;;:::i;12142:492::-;;;;;;;;;;-1:-1:-1;12142:492:0;;;;;:::i;:::-;;:::i;24647:53::-;;;;;;;;;;;;24693:6;24647:53;;27820:119;;;;;;;;;;;;;:::i;10286:93::-;;;;;;;;;;-1:-1:-1;10286:93:0;;10369:2;2720:36:1;;2708:2;2693:18;10286:93:0;2578:184:1;24602:38:0;;;;;;;;;;;;;;;24957:33;;;;;;;;;;-1:-1:-1;24957:33:0;;;;;;;;30476:126;;;;;;;;;;-1:-1:-1;30476:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30566:28:0;30542:4;30566:28;;;:19;:28;;;;;;;;;30476:126;25181:28;;;;;;;;;;;;;;;;25037:31;;;;;;;;;;-1:-1:-1;25037:31:0;;;;;;;;;;;10615:127;;;;;;;;;;-1:-1:-1;10615:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10716:18:0;10689:7;10716:18;;;;;;;;;;;;10615:127;29061:167;;;;;;;;;;-1:-1:-1;29061:167:0;;;;;:::i;:::-;;:::i;2567:95::-;;;;;;;;;;;;;:::i;27653:115::-;;;;;;;;;;;;;:::i;29432:317::-;;;;;;;;;;-1:-1:-1;29432:317:0;;;;;:::i;:::-;;:::i;1916:87::-;;;;;;;;;;-1:-1:-1;1989:6:0;;-1:-1:-1;;;;;1989:6:0;1916:87;;24809:24;;;;;;;;;;-1:-1:-1;24809:24:0;;;;-1:-1:-1;;;;;24809:24:0;;;29324:100;;;;;;;;;;-1:-1:-1;29324:100:0;;;;;:::i;:::-;;:::i;9543:104::-;;;;;;;;;;;;;:::i;25111:24::-;;;;;;;;;;;;;;;;25216:25;;;;;;;;;;;;;;;;29757:322;;;;;;;;;;-1:-1:-1;29757:322:0;;;;;:::i;:::-;;:::i;10955:175::-;;;;;;;;;;-1:-1:-1;10955:175:0;;;;;:::i;:::-;;:::i;24997:33::-;;;;;;;;;;-1:-1:-1;24997:33:0;;;;;;;;;;;30087:182;;;;;;;;;;-1:-1:-1;30087:182:0;;;;;:::i;:::-;;:::i;28797:256::-;;;;;;;;;;-1:-1:-1;28797:256:0;;;;;:::i;:::-;;:::i;24842:35::-;;;;;;;;;;;;;;;;28009:497;;;;;;;;;;-1:-1:-1;28009:497:0;;;;;:::i;:::-;;:::i;25077:27::-;;;;;;;;;;;;;;;;11193:151;;;;;;;;;;-1:-1:-1;11193:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11309:18:0;;;11282:7;11309:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11193:151;24707:63;;;;;;;;;;-1:-1:-1;24707:63:0;;;;-1:-1:-1;;;;;24707:63:0;;;24884:33;;;;;;;;;;;;;;;;25142:30;;;;;;;;;;;;;;;;2817:201;;;;;;;;;;-1:-1:-1;2817:201:0;;;;;:::i;:::-;;:::i;25248:31::-;;;;;;;;;;;;;;;;24924:24;;;;;;;;;;;;;;;;9324:100;9378:13;9411:5;9404:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9324:100;:::o;11491:169::-;11574:4;11591:39;669:10;11614:7;11623:6;11591:8;:39::i;:::-;-1:-1:-1;11648:4:0;11491:169;;;;:::o;30277:189::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;;;;;;;;;30413:9:::1;::::0;30382:41:::1;::::0;-1:-1:-1;;;;;30413:9:0;;::::1;::::0;30382:41;::::1;::::0;::::1;::::0;30413:9:::1;::::0;30382:41:::1;30434:9;:24:::0;;-1:-1:-1;;;;;;30434:24:0::1;-1:-1:-1::0;;;;;30434:24:0;;;::::1;::::0;;;::::1;::::0;;30277:189::o;28514:275::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;28651:4:::1;28643;28622:13;10532:12:::0;;;10444:108;28622:13:::1;:17;::::0;28638:1:::1;28622:17;:::i;:::-;28621:26;;;;:::i;:::-;28620:35;;;;:::i;:::-;28610:6;:45;;28588:142;;;::::0;-1:-1:-1;;;28588:142:0;;5369:2:1;28588:142:0::1;::::0;::::1;5351:21:1::0;5408:2;5388:18;;;5381:30;5447:34;5427:18;;;5420:62;-1:-1:-1;;;5498:18:1;;;5491:45;5553:19;;28588:142:0::1;5167:411:1::0;28588:142:0::1;28764:17;:6:::0;28774::::1;28764:17;:::i;:::-;28741:20;:40:::0;-1:-1:-1;28514:275:0:o;12142:492::-;12282:4;12299:36;12309:6;12317:9;12328:6;12299:9;:36::i;:::-;-1:-1:-1;;;;;12375:19:0;;12348:24;12375:19;;;:11;:19;;;;;;;;669:10;12375:33;;;;;;;;12427:26;;;;12419:79;;;;-1:-1:-1;;;12419:79:0;;5785:2:1;12419:79:0;;;5767:21:1;5824:2;5804:18;;;5797:30;5863:34;5843:18;;;5836:62;-1:-1:-1;;;5914:18:1;;;5907:38;5962:19;;12419:79:0;5583:404:1;12419:79:0;12534:57;12543:6;669:10;12584:6;12565:16;:25;12534:8;:57::i;:::-;-1:-1:-1;12622:4:0;;12142:492;-1:-1:-1;;;;12142:492:0:o;27820:119::-;1989:6;;27870:4;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;-1:-1:-1;27887:14:0::1;:22:::0;;-1:-1:-1;;27887:22:0::1;::::0;;;27820:119;:::o;29061:167::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29174:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29174:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29061:167::o;2567:95::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;2624:30:::1;2651:1;2624:18;:30::i;:::-;2567:95::o:0;27653:115::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;27711:13:::1;:20:::0;;-1:-1:-1;;27742:18:0;;;;;27653:115::o;29432:317::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;29554:9:::1;:19:::0;;;29584:15:::1;:31:::0;;;29641:27:::1;29602:13:::0;29566:7;29641:27:::1;:::i;:::-;29626:12;:42:::0;;;29703:3:::1;-1:-1:-1::0;29687:19:0::1;29679:62;;;::::0;-1:-1:-1;;;29679:62:0;;6327:2:1;29679:62:0::1;::::0;::::1;6309:21:1::0;6366:2;6346:18;;;6339:30;6405:32;6385:18;;;6378:60;6455:18;;29679:62:0::1;6125:354:1::0;29679:62:0::1;29432:317:::0;;:::o;29324:100::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;29395:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29395:21:0;;::::1;::::0;;;::::1;::::0;;29324:100::o;9543:104::-;9599:13;9632:7;9625:14;;;;;:::i;29757:322::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;29880:10:::1;:20:::0;;;29911:16:::1;:32:::0;;;29970:29:::1;29930:13:::0;29893:7;29970:29:::1;:::i;:::-;29954:13;:45:::0;;;30035:2:::1;-1:-1:-1::0;30018:19:0::1;30010:61;;;::::0;-1:-1:-1;;;30010:61:0;;6686:2:1;30010:61:0::1;::::0;::::1;6668:21:1::0;6725:2;6705:18;;;6698:30;6764:31;6744:18;;;6737:59;6813:18;;30010:61:0::1;6484:353:1::0;10955:175:0;11041:4;11058:42;669:10;11082:9;11093:6;11058:9;:42::i;30087:182::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30172:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30172:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30227:34;;1193:41:1;;;30227:34:0::1;::::0;1166:18:1;30227:34:0::1;;;;;;;30087:182:::0;;:::o;28797:256::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;28937:4:::1;28929;28908:13;10532:12:::0;;;10444:108;28908:13:::1;:17;::::0;28924:1:::1;28908:17;:::i;:::-;28907:26;;;;:::i;:::-;28906:35;;;;:::i;:::-;28896:6;:45;;28874:131;;;::::0;-1:-1:-1;;;28874:131:0;;7044:2:1;28874:131:0::1;::::0;::::1;7026:21:1::0;7083:2;7063:18;;;7056:30;7122:34;7102:18;;;7095:62;-1:-1:-1;;;7173:18:1;;;7166:34;7217:19;;28874:131:0::1;6842:400:1::0;28874:131:0::1;29028:17;:6:::0;29038::::1;29028:17;:::i;:::-;29016:9;:29:::0;-1:-1:-1;28797:256:0:o;28009:497::-;1989:6;;28117:4;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;28196:6:::1;28175:13;10532:12:::0;;;10444:108;28175:13:::1;:17;::::0;28191:1:::1;28175:17;:::i;:::-;28174:28;;;;:::i;:::-;28161:9;:41;;28139:144;;;::::0;-1:-1:-1;;;28139:144:0;;7449:2:1;28139:144:0::1;::::0;::::1;7431:21:1::0;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:51;7639:19;;28139:144:0::1;7247:417:1::0;28139:144:0::1;28351:4;28330:13;10532:12:::0;;;10444:108;28330:13:::1;:17;::::0;28346:1:::1;28330:17;:::i;:::-;28329:26;;;;:::i;:::-;28316:9;:39;;28294:141;;;::::0;-1:-1:-1;;;28294:141:0;;7871:2:1;28294:141:0::1;::::0;::::1;7853:21:1::0;7910:2;7890:18;;;7883:30;7949:34;7929:18;;;7922:62;-1:-1:-1;;;8000:18:1;;;7993:50;8060:19;;28294:141:0::1;7669:416:1::0;28294:141:0::1;-1:-1:-1::0;28446:18:0::1;:30:::0;;;28494:4:::1;2207:1;28009:497:::0;;;:::o;2817:201::-;1989:6;;-1:-1:-1;;;;;1989:6:0;669:10;2136:23;2128:68;;;;-1:-1:-1;;;2128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2906:22:0;::::1;2898:73;;;::::0;-1:-1:-1;;;2898:73:0;;8292:2:1;2898:73:0::1;::::0;::::1;8274:21:1::0;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;-1:-1:-1;;;8421:18:1;;;8414:36;8467:19;;2898:73:0::1;8090:402:1::0;2898:73:0::1;2982:28;3001:8;2982:18;:28::i;:::-;2817:201:::0;:::o;14983:380::-;-1:-1:-1;;;;;15119:19:0;;15111:68;;;;-1:-1:-1;;;15111:68:0;;8699:2:1;15111:68:0;;;8681:21:1;8738:2;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;-1:-1:-1;;;8828:18:1;;;8821:34;8872:19;;15111:68:0;8497:400:1;15111:68:0;-1:-1:-1;;;;;15198:21:0;;15190:68;;;;-1:-1:-1;;;15190:68:0;;9104:2:1;15190:68:0;;;9086:21:1;9143:2;9123:18;;;9116:30;9182:34;9162:18;;;9155:62;-1:-1:-1;;;9233:18:1;;;9226:32;9275:19;;15190:68:0;8902:398:1;15190:68:0;-1:-1:-1;;;;;15271:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15323:32;;1816:25:1;;;15323:32:0;;1789:18:1;15323:32:0;;;;;;;14983:380;;;:::o;30610:3679::-;-1:-1:-1;;;;;30742:18:0;;30734:68;;;;-1:-1:-1;;;30734:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30821:16:0;;30813:64;;;;-1:-1:-1;;;30813:64:0;;;;;;;:::i;:::-;30894:11;30890:93;;30922:28;30938:4;30944:2;30948:1;30922:15;:28::i;:::-;30610:3679;;;:::o;30890:93::-;30999:14;;;;30995:1430;;;1989:6;;-1:-1:-1;;;;;31052:15:0;;;1989:6;;31052:15;;;;:49;;-1:-1:-1;1989:6:0;;-1:-1:-1;;;;;31088:13:0;;;1989:6;;31088:13;;31052:49;:86;;;;-1:-1:-1;;;;;;31122:16:0;;;;31052:86;:128;;;;-1:-1:-1;;;;;;31159:21:0;;31173:6;31159:21;;31052:128;:158;;;;-1:-1:-1;31202:8:0;;-1:-1:-1;;;31202:8:0;;;;31201:9;31052:158;31030:1384;;;31250:13;;;;;;;31245:223;;-1:-1:-1;;;;;31322:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31351:23:0;;;;;;:19;:23;;;;;;;;31322:52;31288:160;;;;-1:-1:-1;;;31288:160:0;;10317:2:1;31288:160:0;;;10299:21:1;10356:2;10336:18;;;10329:30;-1:-1:-1;;;10375:18:1;;;10368:52;10437:18;;31288:160:0;10115:346:1;31288:160:0;31682:13;-1:-1:-1;;;;;31674:21:0;:4;-1:-1:-1;;;;;31674:21:0;;:82;;;;-1:-1:-1;;;;;;31721:35:0;;;;;;:31;:35;;;;;;;;31720:36;31674:82;31648:751;;;31843:20;;31833:6;:30;;31799:169;;;;-1:-1:-1;;;31799:169:0;;10668:2:1;31799:169:0;;;10650:21:1;10707:2;10687:18;;;10680:30;10746:34;10726:18;;;10719:62;-1:-1:-1;;;10797:18:1;;;10790:51;10858:19;;31799:169:0;10466:417:1;31799:169:0;32051:9;;-1:-1:-1;;;;;10716:18:0;;10689:7;10716:18;;;;;;;;;;;32025:22;;:6;:22;:::i;:::-;:35;;31991:140;;;;-1:-1:-1;;;31991:140:0;;11090:2:1;31991:140:0;;;11072:21:1;11129:2;11109:18;;;11102:30;-1:-1:-1;;;11148:18:1;;;11141:49;11207:18;;31991:140:0;10888:343:1;31991:140:0;31648:751;;;-1:-1:-1;;;;;32179:35:0;;;;;;:31;:35;;;;;;;;32174:225;;32299:9;;-1:-1:-1;;;;;10716:18:0;;10689:7;10716:18;;;;;;;;;;;32273:22;;:6;:22;:::i;:::-;:35;;32239:140;;;;-1:-1:-1;;;32239:140:0;;11090:2:1;32239:140:0;;;11072:21:1;11129:2;11109:18;;;11102:30;-1:-1:-1;;;11148:18:1;;;11141:49;11207:18;;32239:140:0;10888:343:1;32239:140:0;32486:4;32437:28;10716:18;;;;;;;;;;;32544;;32520:42;;;;;;;32593:35;;-1:-1:-1;32617:11:0;;;;;;;32593:35;:61;;;;-1:-1:-1;32646:8:0;;-1:-1:-1;;;32646:8:0;;;;32645:9;32593:61;:97;;;;;32677:13;-1:-1:-1;;;;;32671:19:0;:2;-1:-1:-1;;;;;32671:19:0;;32593:97;:140;;;;-1:-1:-1;;;;;;32708:25:0;;;;;;:19;:25;;;;;;;;32707:26;32593:140;:181;;;;-1:-1:-1;;;;;;32751:23:0;;;;;;:19;:23;;;;;;;;32750:24;32593:181;32575:313;;;32801:8;:15;;-1:-1:-1;;;;32801:15:0;-1:-1:-1;;;32801:15:0;;;32833:10;:8;:10::i;:::-;32860:8;:16;;-1:-1:-1;;;;32860:16:0;;;32575:313;32916:8;;-1:-1:-1;;;;;33026:25:0;;32900:12;33026:25;;;:19;:25;;;;;;32916:8;-1:-1:-1;;;32916:8:0;;;;;32915:9;;33026:25;;:52;;-1:-1:-1;;;;;;33055:23:0;;;;;;:19;:23;;;;;;;;33026:52;33022:100;;;-1:-1:-1;33105:5:0;33022:100;33134:12;33161:26;33202:20;33315:7;33311:925;;;33373:13;-1:-1:-1;;;;;33367:19:0;:2;-1:-1:-1;;;;;33367:19:0;;:40;;;;;33406:1;33390:13;;:17;33367:40;33363:583;;;33435:34;33465:3;33435:25;33446:13;;33435:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33428:41;;33537:13;;33517:16;;33510:4;:23;;;;:::i;:::-;33509:41;;;;:::i;:::-;33488:62;;33606:13;;33592:10;;33585:4;:17;;;;:::i;:::-;33584:35;;;;:::i;:::-;33569:50;;33363:583;;;33689:13;-1:-1:-1;;;;;33681:21:0;:4;-1:-1:-1;;;;;33681:21:0;;:41;;;;;33721:1;33706:12;;:16;33681:41;33677:269;;;33750:33;33779:3;33750:24;33761:12;;33750:6;:10;;:24;;;;:::i;:33::-;33743:40;;33850:12;;33831:15;;33824:4;:22;;;;:::i;:::-;33823:39;;;;:::i;:::-;33802:60;;33918:12;;33905:9;;33898:4;:16;;;;:::i;:::-;33897:33;;;;:::i;:::-;33882:48;;33677:269;33966:7;;33962:90;;33994:42;34010:4;34024;34031;33994:15;:42::i;:::-;34070:22;;34066:128;;34113:65;34137:4;34144:13;34159:18;34113:15;:65::i;:::-;34210:14;34220:4;34210:14;;:::i;:::-;;;33311:925;34248:33;34264:4;34270:2;34274:6;34248:15;:33::i;:::-;30723:3566;;;;;;30610:3679;;;:::o;3178:191::-;3271:6;;;-1:-1:-1;;;;;3288:17:0;;;-1:-1:-1;;;;;;3288:17:0;;;;;;;3321:40;;3271:6;;;3288:17;3271:6;;3321:40;;3252:16;;3321:40;3241:128;3178:191;:::o;13124:733::-;-1:-1:-1;;;;;13264:20:0;;13256:70;;;;-1:-1:-1;;;13256:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13345:23:0;;13337:71;;;;-1:-1:-1;;;13337:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13505:17:0;;13481:21;13505:17;;;;;;;;;;;13541:23;;;;13533:74;;;;-1:-1:-1;;;13533:74:0;;11568:2:1;13533:74:0;;;11550:21:1;11607:2;11587:18;;;11580:30;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:18:1;;;11690:36;11743:19;;13533:74:0;11366:402:1;13533:74:0;-1:-1:-1;;;;;13643:17:0;;;:9;:17;;;;;;;;;;;13663:22;;;13643:42;;13707:20;;;;;;;;:30;;13679:6;;13643:9;13707:30;;13679:6;;13707:30;:::i;:::-;;;;;;;;13772:9;-1:-1:-1;;;;;13755:35:0;13764:6;-1:-1:-1;;;;;13755:35:0;;13783:6;13755:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;13755:35:0;;;;;;;;13245:612;13124:733;;;:::o;34874:339::-;34957:4;34913:23;10716:18;;;;;;;;;;;;34974:59;;35015:7;34874:339::o;34974:59::-;35067:18;;:23;;35088:2;35067:23;:::i;:::-;35049:15;:41;35045:115;;;35125:18;;:23;;35146:2;35125:23;:::i;:::-;35107:41;;35045:115;35172:33;35189:15;35172:16;:33::i;20436:98::-;20494:7;20521:5;20525:1;20521;:5;:::i;:::-;20514:12;20436:98;-1:-1:-1;;;20436:98:0:o;20835:::-;20893:7;20920:5;20924:1;20920;:5;:::i;34297:569::-;34447:16;;;34461:1;34447:16;;;;;;;;34423:21;;34447:16;;;;;;;;;;-1:-1:-1;34447:16:0;34423:40;;34492:4;34474;34479:1;34474:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34474:23:0;;;:7;;;;;;;;;:23;34518:3;;34508:7;;34518:3;;;34508:4;;34518:3;;34508:7;;;;;;:::i;:::-;;;;;;:13;-1:-1:-1;;;;;34508:13:0;;;-1:-1:-1;;;;;34508:13:0;;;;;34534:62;34551:4;34566:15;34584:11;34534:8;:62::i;:::-;34808:9;;34635:223;;-1:-1:-1;;;34635:223:0;;-1:-1:-1;;;;;34635:15:0;:69;;;;;:223;;34719:11;;34745:1;;34789:4;;34808:9;;;;;34832:15;;34635:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34352:514;34297:569;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:160::-;2832:20;;2888:13;;2881:21;2871:32;;2861:60;;2917:1;2914;2907:12;2932:254;2997:6;3005;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;:::-;3087:39;;3145:35;3176:2;3165:9;3161:18;3145:35;:::i;:::-;3135:45;;2932:254;;;;;:::o;3191:248::-;3259:6;3267;3320:2;3308:9;3299:7;3295:23;3291:32;3288:52;;;3336:1;3333;3326:12;3288:52;-1:-1:-1;;3359:23:1;;;3429:2;3414:18;;;3401:32;;-1:-1:-1;3191:248:1:o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:380::-;3973:1;3969:12;;;;4016;;;4037:61;;4091:4;4083:6;4079:17;4069:27;;4037:61;4144:2;4136:6;4133:14;4113:18;4110:38;4107:161;;;4190:10;4185:3;4181:20;4178:1;4171:31;4225:4;4222:1;4215:15;4253:4;4250:1;4243:15;4107:161;;3894:380;;;:::o;4279:356::-;4481:2;4463:21;;;4500:18;;;4493:30;4559:34;4554:2;4539:18;;4532:62;4626:2;4611:18;;4279:356::o;4640:127::-;4701:10;4696:3;4692:20;4689:1;4682:31;4732:4;4729:1;4722:15;4756:4;4753:1;4746:15;4772:168;4812:7;4878:1;4874;4870:6;4866:14;4863:1;4860:21;4855:1;4848:9;4841:17;4837:45;4834:71;;;4885:18;;:::i;:::-;-1:-1:-1;4925:9:1;;4772:168::o;4945:217::-;4985:1;5011;5001:132;;5055:10;5050:3;5046:20;5043:1;5036:31;5090:4;5087:1;5080:15;5118:4;5115:1;5108:15;5001:132;-1:-1:-1;5147:9:1;;4945:217::o;5992:128::-;6032:3;6063:1;6059:6;6056:1;6053:13;6050:39;;;6069:18;;:::i;:::-;-1:-1:-1;6105:9:1;;5992:128::o;9305:401::-;9507:2;9489:21;;;9546:2;9526:18;;;9519:30;9585:34;9580:2;9565:18;;9558:62;-1:-1:-1;;;9651:2:1;9636:18;;9629:35;9696:3;9681:19;;9305:401::o;9711:399::-;9913:2;9895:21;;;9952:2;9932:18;;;9925:30;9991:34;9986:2;9971:18;;9964:62;-1:-1:-1;;;10057:2:1;10042:18;;10035:33;10100:3;10085:19;;9711:399::o;11236:125::-;11276:4;11304:1;11301;11298:8;11295:34;;;11309:18;;:::i;:::-;-1:-1:-1;11346:9:1;;11236:125::o;11905:127::-;11966:10;11961:3;11957:20;11954:1;11947:31;11997:4;11994:1;11987:15;12021:4;12018:1;12011:15;12037:980;12299:4;12347:3;12336:9;12332:19;12378:6;12367:9;12360:25;12404:2;12442:6;12437:2;12426:9;12422:18;12415:34;12485:3;12480:2;12469:9;12465:18;12458:31;12509:6;12544;12538:13;12575:6;12567;12560:22;12613:3;12602:9;12598:19;12591:26;;12652:2;12644:6;12640:15;12626:29;;12673:1;12683:195;12697:6;12694:1;12691:13;12683:195;;;12762:13;;-1:-1:-1;;;;;12758:39:1;12746:52;;12853:15;;;;12818:12;;;;12794:1;12712:9;12683:195;;;-1:-1:-1;;;;;;;12934:32:1;;;;12929:2;12914:18;;12907:60;-1:-1:-1;;;12998:3:1;12983:19;12976:35;12895:3;12037:980;-1:-1:-1;;;12037:980:1:o

Swarm Source

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