ETH Price: $2,462.33 (-8.11%)

Token

BasketCoin (BSKT)
 

Overview

Max Total Supply

2,417,889.729122738313846585 BSKT

Holders

1,341 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BasketCoin token contract has migrated to a new address on BNB Smart Chain. This ERC-20 token has been discontinued.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BasketCoin

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}

contract BasketCoin is ERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    uint256 public burnFee = 1;
    uint256 public stakeFee = 1;
    uint256 public minTotalSupplyToBurn = 21e23;
    
    address public rewardContract;
    
    uint256 public maxPurchasableETHForPresale = 5e18;      // max purchable ETH amount in presale = 5 ETH
    uint256 public publicSaleRate = 10000;                  // 10000 BSKT per 1 ETH
    uint256 public preSaleRate = 11000;                     // 11000 BSKT per 1 ETH
    
    bool public saleStatus;                                 // false: sale impossible, true: sale possible
    bool public saleMode;                                   // false: presale, true: public sale
    mapping (address => uint256) public purchaseMap;
    mapping (address => bool) public whiteList;
    uint256 public preSaleSum;
    uint256 public publicSaleSum;
    
    event Purchased(address indexed purchaser, uint256 purchasedETH);
    event RewardContractUpdated(address indexed stakeContract);
    event SaleModeUpdated(bool saleMode);
    event SaleStatusUpdated(bool saleStatus);
    
    constructor(
    ) public ERC20("BasketCoin", "BSKT") {
        _mint(_msgSender(), 546e22);
        _mint(address(this), 1554e22);
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(rewardContract != address(0), 'BSKT: rewardContract is zeor address.');
        
        if(from == owner() || to == owner()) {
            super._transfer(from, to,  amount);
        } else {
            uint256 burnAmount = amount.mul(burnFee).div(100);
            uint256 stakeAmount = amount.mul(stakeFee).div(100);
            
            if(totalSupply().sub(burnAmount) >= minTotalSupplyToBurn) {
                super._burn(from, burnAmount);
                super._transfer(from, rewardContract,  stakeAmount);
                super._transfer(from, to,  amount.sub(stakeAmount).sub(burnAmount));
            } else {
                super._transfer(from, rewardContract,  stakeAmount.add(burnAmount));
                super._transfer(from, to,  amount.sub(stakeAmount).sub(burnAmount));
            }
        }
    }

    receive() external payable { purchase(); }
    
    function min(uint256 value1, uint256 value2) internal pure returns (uint256) {
        if(value1 <= value2)
            return value1;
        else
            return value2;
    }

    function purchase() public payable {
        require(saleStatus, 'BSKT: sale not started yet.');
        
        uint256 purchaseTokenAmount;
        uint256 purchasableETH;
        if(!saleMode) {
            require(whiteList[_msgSender()], 'BSKT: you are not in white list.');
            require(purchaseMap[_msgSender()] < maxPurchasableETHForPresale, 'BSKT: you already purchased max.');
            
            purchasableETH = min(maxPurchasableETHForPresale.sub(purchaseMap[_msgSender()]), msg.value);
            purchaseTokenAmount = purchasableETH.mul(preSaleRate);
            preSaleSum = preSaleSum.add(purchaseTokenAmount);
            uint256 refundETH = msg.value.sub(purchasableETH);
            
            purchaseMap[_msgSender()] = purchaseMap[_msgSender()].add(purchasableETH);

            if(refundETH > 0) {
                (bool success,) = _msgSender().call{ value: refundETH }("");
                require(success, "refund failed");
            }
        } else {
            purchasableETH = msg.value;
            purchaseTokenAmount = purchasableETH.mul(publicSaleRate);
            publicSaleSum = publicSaleSum.add(purchaseTokenAmount);
        }
        
        super._transfer(address(this), _msgSender(), purchaseTokenAmount);
        Purchased(_msgSender(), purchasableETH);
    }
    
    function burn(uint256 amount) external onlyOwner {
        super._burn(_msgSender(), amount);
    }
    
    function withdrawETH() public onlyOwner {
        (bool success,) = _msgSender().call{ value: address(this).balance }("");
        require(success, "withdraw failed");
    }
    
    function withdrawALL() public onlyOwner {
        super._transfer(address(this), _msgSender(), balanceOf(address(this)));
    }
    
    function updateRewardContract(address _rewardContract) public onlyOwner {
        require(_rewardContract != address(0), 'BSKT: rewardContract is zeor address.');
        rewardContract = _rewardContract;
        emit RewardContractUpdated(_rewardContract);
    }
    
    function updateSaleMode(bool _saleMode) public onlyOwner {
        if(saleMode != _saleMode) {
            saleMode = _saleMode;
            SaleModeUpdated(saleMode);
        }
    }
    
    function updateSaleStatus(bool _saleStatus) public onlyOwner {
        if(saleStatus != _saleStatus) {
            saleStatus = _saleStatus;
            SaleStatusUpdated(saleStatus);
        }
    }
    
    function addAddressToWhiteList(address account) public onlyOwner {
        whiteList[account] = true;
    }
    
    function removeAddressFromWhiteList(address account) public onlyOwner {
        whiteList[account] = false;
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":false,"internalType":"uint256","name":"purchasedETH","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"stakeContract","type":"address"}],"name":"RewardContractUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"saleMode","type":"bool"}],"name":"SaleModeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"saleStatus","type":"bool"}],"name":"SaleStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAddressToWhiteList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPurchasableETHForPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTotalSupplyToBurn","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":"preSaleRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleSum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAddressFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardContract","type":"address"}],"name":"updateRewardContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleMode","type":"bool"}],"name":"updateSaleMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleStatus","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawALL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160065560016007556a01bcb13a657b2638800000600855674563918244f40000600a55612710600b55612af8600c553480156200004257600080fd5b506040518060400160405280600a81526020017f4261736b6574436f696e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42534b54000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c792919062000473565b508060049080519060200190620000e092919062000473565b506012600560006101000a81548160ff021916908360ff1602179055505050600062000111620001ff60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001dc620001c4620001ff60201b60201c565b6a048433316e40302c8000006200020760201b60201c565b620001f9306a0cdab916888f4e088000006200020760201b60201c565b62000519565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002bf60008383620003e560201b60201c565b620002db81600254620003ea60201b620024951790919060201c565b60028190555062000339816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003ea60201b620024951790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004b657805160ff1916838001178555620004e7565b82800160010185558215620004e7579182015b82811115620004e6578251825591602001919060010190620004c9565b5b509050620004f69190620004fa565b5090565b5b8082111562000515576000816000905550600101620004fb565b5090565b6132d380620005296000396000f3fe6080604052600436106102135760003560e01c80636ea69d6211610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e14610ae2578063e086e5ec14610b67578063f2fde38b14610b7e578063f9020e3314610bcf578063fce589d814610bfc57610222565b8063a9059cbb146109f0578063d833dbe914610a61578063d8ac0fb014610a8c578063dd2cbb5a14610ab757610222565b80638da5cb5b116100e75780638da5cb5b146108465780639244f4961461088757806395d89b41146108d85780639debb7c414610968578063a457c2d71461097f57610222565b80636ea69d621461072457806370a0823114610765578063715018a6146107ca5780637bc2f4a4146107e157610222565b8063344ee8a01161019b578063429df2621161016a578063429df262146106365780634bb01abb1461066157806352abe540146106b25780635dcd3ea9146106ef57806364edfbf01461071a57610222565b8063344ee8a0146104f8578063372c12b114610523578063395093511461058a57806342966c68146105fb57610222565b806318160ddd116101e257806318160ddd146103925780631d0f84f7146103bd578063222c97771461040e57806323b872dd14610439578063313ce567146104ca57610222565b806306fdde0314610227578063095ea7b3146102b75780630a088949146103285780630deed6a61461036557610222565b3661022257610220610c27565b005b600080fd5b34801561023357600080fd5b5061023c61112a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027c578082015181840152602081019050610261565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c357600080fd5b50610310600480360360408110156102da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111cc565b60405180821515815260200191505060405180910390f35b34801561033457600080fd5b506103636004803603602081101561034b57600080fd5b810190808035151590602001909291905050506111ea565b005b34801561037157600080fd5b5061037a611334565b60405180821515815260200191505060405180910390f35b34801561039e57600080fd5b506103a7611347565b6040518082815260200191505060405180910390f35b3480156103c957600080fd5b5061040c600480360360208110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611351565b005b34801561041a57600080fd5b50610423611528565b6040518082815260200191505060405180910390f35b34801561044557600080fd5b506104b26004803603606081101561045c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152e565b60405180821515815260200191505060405180910390f35b3480156104d657600080fd5b506104df611607565b604051808260ff16815260200191505060405180910390f35b34801561050457600080fd5b5061050d61161e565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b506105726004803603602081101561054657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611624565b60405180821515815260200191505060405180910390f35b34801561059657600080fd5b506105e3600480360360408110156105ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611644565b60405180821515815260200191505060405180910390f35b34801561060757600080fd5b506106346004803603602081101561061e57600080fd5b81019080803590602001909291905050506116f7565b005b34801561064257600080fd5b5061064b6117d5565b6040518082815260200191505060405180910390f35b34801561066d57600080fd5b506106b06004803603602081101561068457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117db565b005b3480156106be57600080fd5b506106ed600480360360208110156106d557600080fd5b81019080803515159060200190929190505050611900565b005b3480156106fb57600080fd5b50610704611a4a565b6040518082815260200191505060405180910390f35b610722610c27565b005b34801561073057600080fd5b50610739611a50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077157600080fd5b506107b46004803603602081101561078857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a76565b6040518082815260200191505060405180910390f35b3480156107d657600080fd5b506107df611abe565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c49565b6040518082815260200191505060405180910390f35b34801561085257600080fd5b5061085b611c61565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089357600080fd5b506108d6600480360360208110156108aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c8b565b005b3480156108e457600080fd5b506108ed611db0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092d578082015181840152602081019050610912565b50505050905090810190601f16801561095a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561097457600080fd5b5061097d611e52565b005b34801561098b57600080fd5b506109d8600480360360408110156109a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f38565b60405180821515815260200191505060405180910390f35b3480156109fc57600080fd5b50610a4960048036036040811015610a1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612005565b60405180821515815260200191505060405180910390f35b348015610a6d57600080fd5b50610a76612023565b6040518082815260200191505060405180910390f35b348015610a9857600080fd5b50610aa1612029565b6040518082815260200191505060405180910390f35b348015610ac357600080fd5b50610acc61202f565b6040518082815260200191505060405180910390f35b348015610aee57600080fd5b50610b5160048036036040811015610b0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612035565b6040518082815260200191505060405180910390f35b348015610b7357600080fd5b50610b7c6120bc565b005b348015610b8a57600080fd5b50610bcd60048036036020811015610ba157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061226c565b005b348015610bdb57600080fd5b50610be461247c565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c1161248f565b6040518082815260200191505060405180910390f35b600d60009054906101000a900460ff16610ca9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f42534b543a2073616c65206e6f742073746172746564207965742e000000000081525060200191505060405180910390fd5b600080600d60019054906101000a900460ff1661108957600f6000610ccc61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42534b543a20796f7520617265206e6f7420696e207768697465206c6973742e81525060200191505060405180910390fd5b600a54600e6000610d9561251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42534b543a20796f7520616c726561647920707572636861736564206d61782e81525060200191505060405180910390fd5b610ea7610ea1600e6000610e5561251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a5461252590919063ffffffff16565b3461256f565b9050610ebe600c548261258a90919063ffffffff16565b9150610ed58260105461249590919063ffffffff16565b6010819055506000610ef0823461252590919063ffffffff16565b9050610f4b82600e6000610f0261251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b600e6000610f5761251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000811115611083576000610fa861251d565b73ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b5050905080611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f726566756e64206661696c65640000000000000000000000000000000000000081525060200191505060405180910390fd5b505b506110bf565b3490506110a1600b548261258a90919063ffffffff16565b91506110b88260115461249590919063ffffffff16565b6011819055505b6110d1306110cb61251d565b84612610565b6110d961251d565b73ffffffffffffffffffffffffffffffffffffffff167fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b826040518082815260200191505060405180910390a25050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b5050505050905090565b60006111e06111d961251d565b84846128d1565b6001905092915050565b6111f261251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515600d60009054906101000a900460ff161515146113315780600d60006101000a81548160ff0219169083151502179055507fc75413bb803e9f5f8572b10a8262838386a1bc5db1743ff399db4f5c32f4691e600d60009054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b600d60019054906101000a900460ff1681565b6000600254905090565b61135961251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132546025913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f71c6147d8b22bcac5527821af8d1814be1445ab5beb7068e4a5f342827221e0e60405160405180910390a250565b60075481565b600061153b848484612ac8565b6115fc8461154761251d565b6115f7856040518060600160405280602881526020016131c260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006115ad61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6128d1565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60085481565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006116ed61165161251d565b846116e8856001600061166261251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b6128d1565b6001905092915050565b6116ff61251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117d26117cc61251d565b82612e14565b50565b60115481565b6117e361251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61190861251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515600d60019054906101000a900460ff16151514611a475780600d60016101000a81548160ff0219169083151502179055507f95d15b5f4d390e482ff0bc69d63e9a7b5c974ff607d3ac70e1764a38256576df600d60019054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b60105481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ac661251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e6020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c9361251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e485780601f10611e1d57610100808354040283529160200191611e48565b820191906000526020600020905b815481529060010190602001808311611e2b57829003601f168201915b5050505050905090565b611e5a61251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f3630611f2861251d565b611f3130611a76565b612610565b565b6000611ffb611f4561251d565b84611ff6856040518060600160405280602581526020016132796025913960016000611f6f61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6128d1565b6001905092915050565b600061201961201261251d565b8484612ac8565b6001905092915050565b600c5481565b600a5481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120c461251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612186576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061219061251d565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d80600081146121ed576040519150601f19603f3d011682016040523d82523d6000602084013e6121f2565b606091505b5050905080612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f7769746864726177206661696c6564000000000000000000000000000000000081525060200191505060405180910390fd5b50565b61227461251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131336026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900460ff1681565b60065481565b600080828401905083811015612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600061256783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d54565b905092915050565b600081831161258057829050612584565b8190505b92915050565b60008083141561259d576000905061260a565b60008284029050828482816125ae57fe5b0414612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131a16021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061320b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130ee6023913960400191505060405180910390fd5b612727838383612fd8565b6127928160405180606001604052806026815260200161317b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612825816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612957576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132306024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131596022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132546025913960400191505060405180910390fd5b612b78611c61565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612be35750612bb4611c61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15612bf857612bf3838383612610565b612d4f565b6000612c226064612c146006548561258a90919063ffffffff16565b612fdd90919063ffffffff16565b90506000612c4e6064612c406007548661258a90919063ffffffff16565b612fdd90919063ffffffff16565b9050600854612c6d83612c5f611347565b61252590919063ffffffff16565b10612cdd57612c7c8583612e14565b612ca985600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612610565b612cd88585612cd385612cc5868961252590919063ffffffff16565b61252590919063ffffffff16565b612610565b612d4c565b612d1c85600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612d17858561249590919063ffffffff16565b612610565b612d4b8585612d4685612d38868961252590919063ffffffff16565b61252590919063ffffffff16565b612610565b5b50505b505050565b6000838311158290612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612dc6578082015181840152602081019050612dab565b50505050905090810190601f168015612df35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131ea6021913960400191505060405180910390fd5b612ea682600083612fd8565b612f1181604051806060016040528060228152602001613111602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f688160025461252590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600061301f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613027565b905092915050565b600080831182906130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561309857808201518184015260208101905061307d565b50505050905090810190601f1680156130c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816130df57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342534b543a20726577617264436f6e7472616374206973207a656f7220616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200733b4fb5f69a94486257b193ca3723f257c24a6490fa4b923f8c8512415495c64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80636ea69d6211610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e14610ae2578063e086e5ec14610b67578063f2fde38b14610b7e578063f9020e3314610bcf578063fce589d814610bfc57610222565b8063a9059cbb146109f0578063d833dbe914610a61578063d8ac0fb014610a8c578063dd2cbb5a14610ab757610222565b80638da5cb5b116100e75780638da5cb5b146108465780639244f4961461088757806395d89b41146108d85780639debb7c414610968578063a457c2d71461097f57610222565b80636ea69d621461072457806370a0823114610765578063715018a6146107ca5780637bc2f4a4146107e157610222565b8063344ee8a01161019b578063429df2621161016a578063429df262146106365780634bb01abb1461066157806352abe540146106b25780635dcd3ea9146106ef57806364edfbf01461071a57610222565b8063344ee8a0146104f8578063372c12b114610523578063395093511461058a57806342966c68146105fb57610222565b806318160ddd116101e257806318160ddd146103925780631d0f84f7146103bd578063222c97771461040e57806323b872dd14610439578063313ce567146104ca57610222565b806306fdde0314610227578063095ea7b3146102b75780630a088949146103285780630deed6a61461036557610222565b3661022257610220610c27565b005b600080fd5b34801561023357600080fd5b5061023c61112a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027c578082015181840152602081019050610261565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c357600080fd5b50610310600480360360408110156102da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111cc565b60405180821515815260200191505060405180910390f35b34801561033457600080fd5b506103636004803603602081101561034b57600080fd5b810190808035151590602001909291905050506111ea565b005b34801561037157600080fd5b5061037a611334565b60405180821515815260200191505060405180910390f35b34801561039e57600080fd5b506103a7611347565b6040518082815260200191505060405180910390f35b3480156103c957600080fd5b5061040c600480360360208110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611351565b005b34801561041a57600080fd5b50610423611528565b6040518082815260200191505060405180910390f35b34801561044557600080fd5b506104b26004803603606081101561045c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152e565b60405180821515815260200191505060405180910390f35b3480156104d657600080fd5b506104df611607565b604051808260ff16815260200191505060405180910390f35b34801561050457600080fd5b5061050d61161e565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b506105726004803603602081101561054657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611624565b60405180821515815260200191505060405180910390f35b34801561059657600080fd5b506105e3600480360360408110156105ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611644565b60405180821515815260200191505060405180910390f35b34801561060757600080fd5b506106346004803603602081101561061e57600080fd5b81019080803590602001909291905050506116f7565b005b34801561064257600080fd5b5061064b6117d5565b6040518082815260200191505060405180910390f35b34801561066d57600080fd5b506106b06004803603602081101561068457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117db565b005b3480156106be57600080fd5b506106ed600480360360208110156106d557600080fd5b81019080803515159060200190929190505050611900565b005b3480156106fb57600080fd5b50610704611a4a565b6040518082815260200191505060405180910390f35b610722610c27565b005b34801561073057600080fd5b50610739611a50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077157600080fd5b506107b46004803603602081101561078857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a76565b6040518082815260200191505060405180910390f35b3480156107d657600080fd5b506107df611abe565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c49565b6040518082815260200191505060405180910390f35b34801561085257600080fd5b5061085b611c61565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089357600080fd5b506108d6600480360360208110156108aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c8b565b005b3480156108e457600080fd5b506108ed611db0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092d578082015181840152602081019050610912565b50505050905090810190601f16801561095a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561097457600080fd5b5061097d611e52565b005b34801561098b57600080fd5b506109d8600480360360408110156109a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f38565b60405180821515815260200191505060405180910390f35b3480156109fc57600080fd5b50610a4960048036036040811015610a1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612005565b60405180821515815260200191505060405180910390f35b348015610a6d57600080fd5b50610a76612023565b6040518082815260200191505060405180910390f35b348015610a9857600080fd5b50610aa1612029565b6040518082815260200191505060405180910390f35b348015610ac357600080fd5b50610acc61202f565b6040518082815260200191505060405180910390f35b348015610aee57600080fd5b50610b5160048036036040811015610b0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612035565b6040518082815260200191505060405180910390f35b348015610b7357600080fd5b50610b7c6120bc565b005b348015610b8a57600080fd5b50610bcd60048036036020811015610ba157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061226c565b005b348015610bdb57600080fd5b50610be461247c565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c1161248f565b6040518082815260200191505060405180910390f35b600d60009054906101000a900460ff16610ca9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f42534b543a2073616c65206e6f742073746172746564207965742e000000000081525060200191505060405180910390fd5b600080600d60019054906101000a900460ff1661108957600f6000610ccc61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42534b543a20796f7520617265206e6f7420696e207768697465206c6973742e81525060200191505060405180910390fd5b600a54600e6000610d9561251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42534b543a20796f7520616c726561647920707572636861736564206d61782e81525060200191505060405180910390fd5b610ea7610ea1600e6000610e5561251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a5461252590919063ffffffff16565b3461256f565b9050610ebe600c548261258a90919063ffffffff16565b9150610ed58260105461249590919063ffffffff16565b6010819055506000610ef0823461252590919063ffffffff16565b9050610f4b82600e6000610f0261251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b600e6000610f5761251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000811115611083576000610fa861251d565b73ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b5050905080611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f726566756e64206661696c65640000000000000000000000000000000000000081525060200191505060405180910390fd5b505b506110bf565b3490506110a1600b548261258a90919063ffffffff16565b91506110b88260115461249590919063ffffffff16565b6011819055505b6110d1306110cb61251d565b84612610565b6110d961251d565b73ffffffffffffffffffffffffffffffffffffffff167fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b826040518082815260200191505060405180910390a25050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b5050505050905090565b60006111e06111d961251d565b84846128d1565b6001905092915050565b6111f261251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515600d60009054906101000a900460ff161515146113315780600d60006101000a81548160ff0219169083151502179055507fc75413bb803e9f5f8572b10a8262838386a1bc5db1743ff399db4f5c32f4691e600d60009054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b600d60019054906101000a900460ff1681565b6000600254905090565b61135961251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132546025913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f71c6147d8b22bcac5527821af8d1814be1445ab5beb7068e4a5f342827221e0e60405160405180910390a250565b60075481565b600061153b848484612ac8565b6115fc8461154761251d565b6115f7856040518060600160405280602881526020016131c260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006115ad61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6128d1565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60085481565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006116ed61165161251d565b846116e8856001600061166261251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b6128d1565b6001905092915050565b6116ff61251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117d26117cc61251d565b82612e14565b50565b60115481565b6117e361251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61190861251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515600d60019054906101000a900460ff16151514611a475780600d60016101000a81548160ff0219169083151502179055507f95d15b5f4d390e482ff0bc69d63e9a7b5c974ff607d3ac70e1764a38256576df600d60019054906101000a900460ff1660405180821515815260200191505060405180910390a15b50565b60105481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ac661251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e6020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c9361251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e485780601f10611e1d57610100808354040283529160200191611e48565b820191906000526020600020905b815481529060010190602001808311611e2b57829003601f168201915b5050505050905090565b611e5a61251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f3630611f2861251d565b611f3130611a76565b612610565b565b6000611ffb611f4561251d565b84611ff6856040518060600160405280602581526020016132796025913960016000611f6f61251d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6128d1565b6001905092915050565b600061201961201261251d565b8484612ac8565b6001905092915050565b600c5481565b600a5481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120c461251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612186576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061219061251d565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d80600081146121ed576040519150601f19603f3d011682016040523d82523d6000602084013e6121f2565b606091505b5050905080612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f7769746864726177206661696c6564000000000000000000000000000000000081525060200191505060405180910390fd5b50565b61227461251d565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131336026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900460ff1681565b60065481565b600080828401905083811015612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600061256783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d54565b905092915050565b600081831161258057829050612584565b8190505b92915050565b60008083141561259d576000905061260a565b60008284029050828482816125ae57fe5b0414612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131a16021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061320b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130ee6023913960400191505060405180910390fd5b612727838383612fd8565b6127928160405180606001604052806026815260200161317b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612825816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612957576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132306024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131596022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132546025913960400191505060405180910390fd5b612b78611c61565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612be35750612bb4611c61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15612bf857612bf3838383612610565b612d4f565b6000612c226064612c146006548561258a90919063ffffffff16565b612fdd90919063ffffffff16565b90506000612c4e6064612c406007548661258a90919063ffffffff16565b612fdd90919063ffffffff16565b9050600854612c6d83612c5f611347565b61252590919063ffffffff16565b10612cdd57612c7c8583612e14565b612ca985600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612610565b612cd88585612cd385612cc5868961252590919063ffffffff16565b61252590919063ffffffff16565b612610565b612d4c565b612d1c85600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612d17858561249590919063ffffffff16565b612610565b612d4b8585612d4685612d38868961252590919063ffffffff16565b61252590919063ffffffff16565b612610565b5b50505b505050565b6000838311158290612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612dc6578082015181840152602081019050612dab565b50505050905090810190601f168015612df35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131ea6021913960400191505060405180910390fd5b612ea682600083612fd8565b612f1181604051806060016040528060228152602001613111602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d549092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f688160025461252590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600061301f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613027565b905092915050565b600080831182906130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561309857808201518184015260208101905061307d565b50505050905090810190601f1680156130c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816130df57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342534b543a20726577617264436f6e7472616374206973207a656f7220616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200733b4fb5f69a94486257b193ca3723f257c24a6490fa4b923f8c8512415495c64736f6c634300060c0033

Deployed Bytecode Sourcemap

27108:5302:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29453:10;:8;:10::i;:::-;27108:5302;;;;;18293:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20399:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31955:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27781:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19368:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31476:267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27257:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21042:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19220:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27291:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27933:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21772:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31034:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28014:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32292:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31755:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27982:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29671:1351;;;:::i;:::-;;27347:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19531:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1602:148;;;;;;;;;;;;;:::i;:::-;;27879:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;960:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32171:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18495:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31335:129;;;;;;;;;;;;;:::i;:::-;;22493:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19863:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27582:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27389:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27497:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20101:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31147:176;;;;;;;;;;;;;:::i;:::-;;1905:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27673:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27224:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29671:1351;29725:10;;;;;;;;;;;29717:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29788:27;29826:22;29863:8;;;;;;;;;;;29859:1020;;29896:9;:23;29906:12;:10;:12::i;:::-;29896:23;;;;;;;;;;;;;;;;;;;;;;;;;29888:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30007:27;;29979:11;:25;29991:12;:10;:12::i;:::-;29979:25;;;;;;;;;;;;;;;;:55;29971:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30117:74;30121:58;30153:11;:25;30165:12;:10;:12::i;:::-;30153:25;;;;;;;;;;;;;;;;30121:27;;:31;;:58;;;;:::i;:::-;30181:9;30117:3;:74::i;:::-;30100:91;;30228:31;30247:11;;30228:14;:18;;:31;;;;:::i;:::-;30206:53;;30287:35;30302:19;30287:10;;:14;;:35;;;;:::i;:::-;30274:10;:48;;;;30337:17;30357:29;30371:14;30357:9;:13;;:29;;;;:::i;:::-;30337:49;;30443:45;30473:14;30443:11;:25;30455:12;:10;:12::i;:::-;30443:25;;;;;;;;;;;;;;;;:29;;:45;;;;:::i;:::-;30415:11;:25;30427:12;:10;:12::i;:::-;30415:25;;;;;;;;;;;;;;;:73;;;;30520:1;30508:9;:13;30505:164;;;30543:12;30560;:10;:12::i;:::-;:17;;30586:9;30560:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30542:59;;;30628:7;30620:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30505:164;;29859:1020;;;;30718:9;30701:26;;30764:34;30783:14;;30764;:18;;:34;;;;:::i;:::-;30742:56;;30829:38;30847:19;30829:13;;:17;;:38;;;;:::i;:::-;30813:13;:54;;;;29859:1020;30899:65;30923:4;30930:12;:10;:12::i;:::-;30944:19;30899:15;:65::i;:::-;30985:12;:10;:12::i;:::-;30975:39;;;30999:14;30975:39;;;;;;;;;;;;;;;;;;29671:1351;;:::o;18293:83::-;18330:13;18363:5;18356:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18293:83;:::o;20399:169::-;20482:4;20499:39;20508:12;:10;:12::i;:::-;20522:7;20531:6;20499:8;:39::i;:::-;20556:4;20549:11;;20399:169;;;;:::o;31955:204::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32044:11:::1;32030:25;;:10;;;;;;;;;;;:25;;;32027:125;;32085:11;32072:10;;:24;;;;;;;;;;;;;;;;;;32111:29;32129:10;;;;;;;;;;;32111:29;;;;;;;;;;;;;;;;;;;;32027:125;31955:204:::0;:::o;27781:20::-;;;;;;;;;;;;;:::o;19368:100::-;19421:7;19448:12;;19441:19;;19368:100;:::o;31476:267::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31594:1:::1;31567:29;;:15;:29;;;;31559:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31666:15;31649:14;;:32;;;;;;;;;;;;;;;;;;31719:15;31697:38;;;;;;;;;;;;31476:267:::0;:::o;27257:27::-;;;;:::o;21042:321::-;21148:4;21165:36;21175:6;21183:9;21194:6;21165:9;:36::i;:::-;21212:121;21221:6;21229:12;:10;:12::i;:::-;21243:89;21281:6;21243:89;;;;;;;;;;;;;;;;;:11;:19;21255:6;21243:19;;;;;;;;;;;;;;;:33;21263:12;:10;:12::i;:::-;21243:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;21212:8;:121::i;:::-;21351:4;21344:11;;21042:321;;;;;:::o;19220:83::-;19261:5;19286:9;;;;;;;;;;;19279:16;;19220:83;:::o;27291:43::-;;;;:::o;27933:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;21772:218::-;21860:4;21877:83;21886:12;:10;:12::i;:::-;21900:7;21909:50;21948:10;21909:11;:25;21921:12;:10;:12::i;:::-;21909:25;;;;;;;;;;;;;;;:34;21935:7;21909:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21877:8;:83::i;:::-;21978:4;21971:11;;21772:218;;;;:::o;31034:101::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31094:33:::1;31106:12;:10;:12::i;:::-;31120:6;31094:11;:33::i;:::-;31034:101:::0;:::o;28014:28::-;;;;:::o;32292:115::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32394:5:::1;32373:9;:18;32383:7;32373:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;32292:115:::0;:::o;31755:188::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31838:9:::1;31826:21;;:8;;;;;;;;;;;:21;;;31823:113;;31875:9;31864:8;;:20;;;;;;;;;;;;;;;;;;31899:25;31915:8;;;;;;;;;;;31899:25;;;;;;;;;;;;;;;;;;;;31823:113;31755:188:::0;:::o;27982:25::-;;;;:::o;27347:29::-;;;;;;;;;;;;;:::o;19531:119::-;19597:7;19624:9;:18;19634:7;19624:18;;;;;;;;;;;;;;;;19617:25;;19531:119;;;:::o;1602:148::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1709:1:::1;1672:40;;1693:6;;;;;;;;;;;1672:40;;;;;;;;;;;;1740:1;1723:6;;:19;;;;;;;;;;;;;;;;;;1602:148::o:0;27879:47::-;;;;;;;;;;;;;;;;;:::o;960:79::-;998:7;1025:6;;;;;;;;;;;1018:13;;960:79;:::o;32171:109::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32268:4:::1;32247:9;:18;32257:7;32247:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;32171:109:::0;:::o;18495:87::-;18534:13;18567:7;18560:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18495:87;:::o;31335:129::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31386:70:::1;31410:4;31417:12;:10;:12::i;:::-;31431:24;31449:4;31431:9;:24::i;:::-;31386:15;:70::i;:::-;31335:129::o:0;22493:269::-;22586:4;22603:129;22612:12;:10;:12::i;:::-;22626:7;22635:96;22674:15;22635:96;;;;;;;;;;;;;;;;;:11;:25;22647:12;:10;:12::i;:::-;22635:25;;;;;;;;;;;;;;;:34;22661:7;22635:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22603:8;:129::i;:::-;22750:4;22743:11;;22493:269;;;;:::o;19863:175::-;19949:4;19966:42;19976:12;:10;:12::i;:::-;19990:9;20001:6;19966:9;:42::i;:::-;20026:4;20019:11;;19863:175;;;;:::o;27582:34::-;;;;:::o;27389:49::-;;;;:::o;27497:37::-;;;;:::o;20101:151::-;20190:7;20217:11;:18;20229:5;20217:18;;;;;;;;;;;;;;;:27;20236:7;20217:27;;;;;;;;;;;;;;;;20210:34;;20101:151;;;;:::o;31147:176::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31199:12:::1;31216;:10;:12::i;:::-;:17;;31242:21;31216:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31198:71;;;31288:7;31280:35;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;1242:1;31147:176::o:0;1905:244::-;1182:12;:10;:12::i;:::-;1172:22;;:6;;;;;;;;;;;:22;;;1164:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2014:1:::1;1994:22;;:8;:22;;;;1986:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2104:8;2075:38;;2096:6;;;;;;;;;;;2075:38;;;;;;;;;;;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;1905:244:::0;:::o;27673:22::-;;;;;;;;;;;;;:::o;27224:26::-;;;;:::o;2419:181::-;2477:7;2497:9;2513:1;2509;:5;2497:17;;2538:1;2533;:6;;2525:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2591:1;2584:8;;;2419:181;;;;:::o;96:106::-;149:15;184:10;177:17;;96:106;:::o;2883:136::-;2941:7;2968:43;2972:1;2975;2968:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2961:50;;2883:136;;;;:::o;29478:185::-;29546:7;29579:6;29569;:16;29566:89;;29607:6;29600:13;;;;29566:89;29649:6;29642:13;;29478:185;;;;;:::o;3773:471::-;3831:7;4081:1;4076;:6;4072:47;;;4106:1;4099:8;;;;4072:47;4131:9;4147:1;4143;:5;4131:17;;4176:1;4171;4167;:5;;;;;;:10;4159:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4235:1;4228:8;;;3773:471;;;;;:::o;23252:539::-;23376:1;23358:20;;:6;:20;;;;23350:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23460:1;23439:23;;:9;:23;;;;23431:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23515:47;23536:6;23544:9;23555:6;23515:20;:47::i;:::-;23595:71;23617:6;23595:71;;;;;;;;;;;;;;;;;:9;:17;23605:6;23595:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23575:9;:17;23585:6;23575:17;;;;;;;;;;;;;;;:91;;;;23700:32;23725:6;23700:9;:20;23710:9;23700:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23677:9;:20;23687:9;23677:20;;;;;;;;;;;;;;;:55;;;;23765:9;23748:35;;23757:6;23748:35;;;23776:6;23748:35;;;;;;;;;;;;;;;;;;23252:539;;;:::o;25638:346::-;25757:1;25740:19;;:5;:19;;;;25732:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25838:1;25819:21;;:7;:21;;;;25811:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25922:6;25892:11;:18;25904:5;25892:18;;;;;;;;;;;;;;;:27;25911:7;25892:27;;;;;;;;;;;;;;;:36;;;;25960:7;25944:32;;25953:5;25944:32;;;25969:6;25944:32;;;;;;;;;;;;;;;;;;25638:346;;;:::o;28440:976::-;28598:1;28572:28;;:14;;;;;;;;;;;:28;;;;28564:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28674:7;:5;:7::i;:::-;28666:15;;:4;:15;;;:32;;;;28691:7;:5;:7::i;:::-;28685:13;;:2;:13;;;28666:32;28663:746;;;28715:34;28731:4;28737:2;28742:6;28715:15;:34::i;:::-;28663:746;;;28782:18;28803:28;28827:3;28803:19;28814:7;;28803:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;28782:49;;28846:19;28868:29;28893:3;28868:20;28879:8;;28868:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;28846:51;;28962:20;;28929:29;28947:10;28929:13;:11;:13::i;:::-;:17;;:29;;;;:::i;:::-;:53;28926:472;;29003:29;29015:4;29021:10;29003:11;:29::i;:::-;29051:51;29067:4;29073:14;;;;;;;;;;;29090:11;29051:15;:51::i;:::-;29121:67;29137:4;29143:2;29148:39;29176:10;29148:23;29159:11;29148:6;:10;;:23;;;;:::i;:::-;:27;;:39;;;;:::i;:::-;29121:15;:67::i;:::-;28926:472;;;29229:67;29245:4;29251:14;;;;;;;;;;;29268:27;29284:10;29268:11;:15;;:27;;;;:::i;:::-;29229:15;:67::i;:::-;29315;29331:4;29337:2;29342:39;29370:10;29342:23;29353:11;29342:6;:10;;:23;;;;:::i;:::-;:27;;:39;;;;:::i;:::-;29315:15;:67::i;:::-;28926:472;28663:746;;;28440:976;;;:::o;3322:192::-;3408:7;3441:1;3436;:6;;3444:12;3428:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3468:9;3484:1;3480;:5;3468:17;;3505:1;3498:8;;;3322:192;;;;;:::o;24782:418::-;24885:1;24866:21;;:7;:21;;;;24858:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24938:49;24959:7;24976:1;24980:6;24938:20;:49::i;:::-;25021:68;25044:6;25021:68;;;;;;;;;;;;;;;;;:9;:18;25031:7;25021:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;25000:9;:18;25010:7;25000:18;;;;;;;;;;;;;;;:89;;;;25115:24;25132:6;25115:12;;:16;;:24;;;;:::i;:::-;25100:12;:39;;;;25181:1;25155:37;;25164:7;25155:37;;;25185:6;25155:37;;;;;;;;;;;;;;;;;;24782:418;;:::o;27009:92::-;;;;:::o;4720:132::-;4778:7;4805:39;4809:1;4812;4805:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4798:46;;4720:132;;;;:::o;5348:278::-;5434:7;5466:1;5462;:5;5469:12;5454:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5493:9;5509:1;5505;:5;;;;;;5493:17;;5617:1;5610:8;;;5348:278;;;;;:::o

Swarm Source

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