ETH Price: $3,486.40 (+2.28%)

Token

#halfrekt (NME)
 

Overview

Max Total Supply

16,000,000 NME

Holders

53

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HalfRekt

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-02
*/

/**
 *Submitted for verification at Etherscan.io on 2020-10-02
*/

pragma solidity ^0.6.0;


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

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

// 
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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;
    }
}

// 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// 
/**
 * @dev Collection of functions related to the address type
 */
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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

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

    mapping (address => uint256) internal _balances;

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

    uint256 internal _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 is 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 { }
}

// 
/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// 
interface UniswapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface UniswapRouter {
    function WETH() external pure returns (address);
}

//                                           _
//                                .-.  .--''` )
//                             _ |  |/`   .-'`
//                            ( `\      /`
//                            _)   _.  -'._
//                          /`  .'     .-.-;
//                          `).'      /  \  \
//                         (`,        \_o/_o/__
//                          /           .-''`  ``'-.
//                          {         /` ,___.--''`
//                          {   ;     '-. \ \
//        _   _             {   |'-....-`'.\_\
//       / './ '.           \   \          `"`
//    _  \   \  |            \   \
//   ( '-.J     \_..----.._ __)   `\--..__
//  .-`                    `        `\    ''--...--.
// (_,.--""`/`         .-             `\       .__ _)
//         |          (                 }    .__ _)
//         \_,         '.               }_  - _.'
//            \_,         '.            } `'--'
//               '._.     ,_)          /
//                  |    /           .'
//                   \   |    _   .-'
//                    \__/;--.||-'
//                     _||   _||__   __
//              _ __.-` "`)(` `"  ```._)
//     TENDIES  (_`,-   ,-'  `''-.   '-._)
//            (  (    /          '.__.'
//             `"`'--'
//
// Are you a HalfRekt pleb? Welcome to the 99%. To dig yourself out of the hole, you can grill the Tendies bucket to earn 1% of the Tendies in the bucket.
// Since you suck at your job, half the Tendies are burnt.
//
// Are you a HalfRekt whale? Become a top 50 TEND holder and the plebs will help dig you out of your EMN hole.
// Top 50 Tendies whales get to share 49% of the TEND that plebs grill in the bucket. Just like real life, the plebs work for the 1%.
//
// So the plebs don’t get wise to the poor distribution of wealth in DeFi, they are distracted with CryptoTendies NFT collectible card packs for being good boys & girls.
// Collect your NFTs and don’t look behind the curtain.
//
// Whether you are a pleb or a whale, you no longer serve Andre Cronjob, you serve Decentralized Autonomous Mommy.
// Mommy rewards good boys & girls with Good Boy Points for providing liquidity & doing your chores.
//
// If you’re reading this and you’re from the SEC, don’t worry, Good Boy Points are just a valueless governance token.
//
// Tested in prod with <3 by the $TEND team (http://tendies.dev / [email protected]).
contract HalfRekt is Ownable, ERC20Burnable {
    using SafeMath for uint256;

    uint256 public constant APPROXIMATELY_HALF_REKT = 48;

    UniswapRouter internal constant UNISWAP_ROUTER = UniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    UniswapFactory internal constant UNISWAP_FACTORY = UniswapFactory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    address internal constant EXPLOITER = 0x2D407dDb06311396fE14D4b49da5F0471447d45C;

    uint256 internal constant EXPLOIT_BIRTHDATE_BLOCK = 10954411; // (Sep-29-2020 01:20:41 AM +UTC) 1601342441

    uint256 internal constant ONE_HOUR_IN_BLOCKS = 1; // 15s/block // FIXME: 240

    address public uniswapPair;

    uint256 public nextExploitBlock;

    mapping (address => uint256) private allHalfRektersIndex;

    address[] public allHalfRekters;

    mapping (address => bool) public unrektables;

    constructor()
    public Ownable()
    ERC20("#halfrekt", "NME")
    {
        uint256 initialSupply = 16000000 * 10 ** 18;
        uniswapPair = UNISWAP_FACTORY.createPair(UNISWAP_ROUTER.WETH(), address(this));
        nextExploitBlock = block.number + ONE_HOUR_IN_BLOCKS; // Every ~1 hour, a random exploited can exploit the exploiter
        _mint(EXPLOITER, initialSupply / 2); // Exploiter always has priority on distribution
        _mint(msg.sender, initialSupply / 2); // Then the half rekters (for merkle distribution)
        setUnrektable(msg.sender, true);
        setUnrektable(uniswapPair, true); // Such that uniswap buyers don't get half rekt
    }

    function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override {
        require(_sender != EXPLOITER, "only #halfrekt frens can transfer"); // Prevent exploiter from transferring tokens to save them from trouble
        if (!unrektables[_sender]) {
            uint256 halfRektAmount = _amount.mul(APPROXIMATELY_HALF_REKT).div(100);
            super._transfer(_sender, EXPLOITER, halfRektAmount);
            _amount = _amount.sub(halfRektAmount);
            emit HalfRektExploited(_sender, halfRektAmount);
        }
        super._transfer(_sender, _recipient, _amount);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal virtual override { 
        if (_to != address(0) && balanceOf(_to) == 0 && _amount > 0) {
            allHalfRekters.push(_to);
            allHalfRektersIndex[_to] = allHalfRekters.length - 1;
        }
        if (_from != address(0) && balanceOf(_from).sub(_amount) == 0) {
            delete allHalfRekters[allHalfRektersIndex[_from]];
        }
    }

    function setUnrektable(address _address, bool _rektable) public onlyOwner {
        unrektables[_address] = _rektable;
    }

    function exploitTheExploiter() external {   
        if (block.number > nextExploitBlock) {
            if (block.number - nextExploitBlock <= 256) { // EVM :-(
                address luckyExploitedExploiter = allHalfRekters[uint256(blockhash(nextExploitBlock)) % allHalfRekters.length];
                uint256 totalExploitAmount = balanceOf(EXPLOITER).div(100); // 1% 
                uint256 rewardAmount = totalExploitAmount.div(10); // 0.1%
                uint256 exploitAmount = totalExploitAmount.sub(rewardAmount);

                super._transfer(EXPLOITER, luckyExploitedExploiter, exploitAmount);
                super._transfer(EXPLOITER, msg.sender, rewardAmount);
                emit ExploiterExploited(luckyExploitedExploiter, exploitAmount);
            }
            nextExploitBlock = nextExploitBlock + ONE_HOUR_IN_BLOCKS;
        }
    }

    event HalfRektExploited(address addr, uint256 amount);
    event ExploiterExploited(address addr, uint256 amount);
}

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":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExploiterExploited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"HalfRektExploited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"APPROXIMATELY_HALF_REKT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allHalfRekters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exploitTheExploiter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextExploitBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_rektable","type":"bool"}],"name":"setUnrektable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unrektables","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f2368616c6672656b7400000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e4d4500000000000000000000000000000000000000000000000000000000008152506000620000906200041160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600490805190602001906200014692919062000b0c565b5080600590805190602001906200015f92919062000b0c565b506012600660006101000a81548160ff021916908360ff160217905550505060006a0d3c21bcecceda100000009050735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021957600080fd5b505afa1580156200022e573d6000803e3d6000fd5b505050506040513d60208110156200024557600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620002ed57600080fd5b505af115801562000302573d6000803e3d6000fd5b505050506040513d60208110156200031957600080fd5b8101908080519060200190929190505050600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060014301600781905550620003a5732d407ddb06311396fe14d4b49da5f0471447d45c600283816200039857fe5b046200041960201b60201c565b620003c23360028381620003b557fe5b046200041960201b60201c565b620003d5336001620005f960201b60201c565b6200040a600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005f960201b60201c565b5062000bbb565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620004d1600083836200072660201b60201c565b620004ed816003546200092460201b620019001790919060201c565b6003819055506200054c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200092460201b620019001790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620006096200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000774575060006200077283620009ad60201b60201c565b145b8015620007815750600081115b1562000837576009829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160098054905003600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200089e575060006200089c826200088886620009ad60201b60201c565b620009f660201b62001b981790919060201c565b145b156200091f576009600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481548110620008f157fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b505050565b600080828401905083811015620009a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000a4083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000a4860201b60201c565b905092915050565b600083831115829062000af9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000abd57808201518184015260208101905062000aa0565b50505050905090810190601f16801562000aeb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b4f57805160ff191683800117855562000b80565b8280016001018555821562000b80579182015b8281111562000b7f57825182559160200191906001019062000b62565b5b50905062000b8f919062000b93565b5090565b62000bb891905b8082111562000bb457600081600090555060010162000b9a565b5090565b90565b6123da8062000bcb6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb1461062e578063c816841b14610694578063d2b574f7146106de578063dd62ed3e1461073a578063ded75dfc146107b2578063f2fde38b146108025761014d565b806370a082311461044b578063715018a6146104a357806379cc6790146104ad5780638da5cb5b146104fb57806395d89b4114610545578063a457c2d7146105c85761014d565b8063313ce56711610115578063313ce567146102fd578063395093511461032157806342966c681461038757806345150f8e146103b55780634df6f0c0146103d35780635e522cfd146103dd5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780631ebcbbeb1461025957806323b872dd14610277575b600080fd5b61015a610846565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108e8565b604051808215151515815260200191505060405180910390f35b610243610906565b6040518082815260200191505060405180910390f35b610261610910565b6040518082815260200191505060405180910390f35b6102e36004803603606081101561028d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610915565b604051808215151515815260200191505060405180910390f35b6103056109ee565b604051808260ff1660ff16815260200191505060405180910390f35b61036d6004803603604081101561033757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a05565b604051808215151515815260200191505060405180910390f35b6103b36004803603602081101561039d57600080fd5b8101908080359060200190929190505050610ab8565b005b6103bd610acc565b6040518082815260200191505060405180910390f35b6103db610ad2565b005b610409600480360360208110156103f357600080fd5b8101908080359060200190929190505050610c58565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61048d6004803603602081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c94565b6040518082815260200191505060405180910390f35b6104ab610cdd565b005b6104f9600480360360408110156104c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e65565b005b610503610ec7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054d610ef0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058d578082015181840152602081019050610572565b50505050905090810190601f1680156105ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610614600480360360408110156105de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f92565b604051808215151515815260200191505060405180910390f35b61067a6004803603604081101561064457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061105f565b604051808215151515815260200191505060405180910390f35b61069c61107d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610720600480360360208110156106f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a3565b604051808215151515815260200191505060405180910390f35b61079c6004803603604081101561075057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c3565b6040518082815260200191505060405180910390f35b610800600480360360408110156107c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061114a565b005b6108446004803603602081101561081857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126e565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108fc6108f561147b565b8484611483565b6001905092915050565b6000600354905090565b603081565b600061092284848461167a565b6109e38461092e61147b565b6109de856040518060600160405280602881526020016122a960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061099461147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b611483565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610aae610a1261147b565b84610aa98560026000610a2361147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190090919063ffffffff16565b611483565b6001905092915050565b610ac9610ac361147b565b82611988565b50565b60075481565b600754431115610c5657610100600754430311610c49576000600980805490506007544060001c81610b0057fe5b0681548110610b0b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610b6a6064610b5c732d407ddb06311396fe14d4b49da5f0471447d45c610c94565b611b4e90919063ffffffff16565b90506000610b82600a83611b4e90919063ffffffff16565b90506000610b998284611b9890919063ffffffff16565b9050610bba732d407ddb06311396fe14d4b49da5f0471447d45c8583611be2565b610bd9732d407ddb06311396fe14d4b49da5f0471447d45c3384611be2565b7fe0b0cbebe7603bece55f41490cc1c2d1e04c7b3d107cb06a9c4b6f51cfc6364e8482604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050505b6001600754016007819055505b565b60098181548110610c6557fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce561147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610ea4826040518060600160405280602481526020016122d160249139610e9586610e9061147b565b6110c3565b6118409092919063ffffffff16565b9050610eb883610eb261147b565b83611483565b610ec28383611988565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b5050505050905090565b6000611055610f9f61147b565b84611050856040518060600160405280602581526020016123806025913960026000610fc961147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b611483565b6001905092915050565b600061107361106c61147b565b848461167a565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115261147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61127661147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061221a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061235c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122406022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b732d407ddb06311396fe14d4b49da5f0471447d45c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123166021913960400191505060405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661183057600061178d606461177f603085611ea790919063ffffffff16565b611b4e90919063ffffffff16565b90506117ae84732d407ddb06311396fe14d4b49da5f0471447d45c83611be2565b6117c18183611b9890919063ffffffff16565b91507fff6825da43256ba0e3b3c5e705c1ea95b6357ddbf104df9e7f3179e1b0282c6a8482604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b61183b838383611be2565b505050565b60008383111582906118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118b2578082015181840152602081019050611897565b50505050905090810190601f1680156118df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122f56021913960400191505060405180910390fd5b611a1a82600083611f2d565b611a86816040518060600160405280602281526020016121f860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ade81600354611b9890919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611b9083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210e565b905092915050565b6000611bda83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611840565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806123376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121d56023913960400191505060405180910390fd5b611cf9838383611f2d565b611d658160405180606001604052806026815260200161226260269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dfa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080831415611eba5760009050611f27565b6000828402905082848281611ecb57fe5b0414611f22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122886021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f7257506000611f7083610c94565b145b8015611f7e5750600081115b15612033576009829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160098054905003600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208a575060006120888261207a86610c94565b611b9890919063ffffffff16565b145b15612109576009600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106120db57fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b505050565b600080831182906121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561217f578082015181840152602081019050612164565b50505050905090810190601f1680156121ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816121c657fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f6e6c79202368616c6672656b74206672656e732063616e207472616e7366657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d5170a00cd1baffbc576faa0dfafe85932550769638a7cdf477481cea254ba864736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb1461062e578063c816841b14610694578063d2b574f7146106de578063dd62ed3e1461073a578063ded75dfc146107b2578063f2fde38b146108025761014d565b806370a082311461044b578063715018a6146104a357806379cc6790146104ad5780638da5cb5b146104fb57806395d89b4114610545578063a457c2d7146105c85761014d565b8063313ce56711610115578063313ce567146102fd578063395093511461032157806342966c681461038757806345150f8e146103b55780634df6f0c0146103d35780635e522cfd146103dd5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780631ebcbbeb1461025957806323b872dd14610277575b600080fd5b61015a610846565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108e8565b604051808215151515815260200191505060405180910390f35b610243610906565b6040518082815260200191505060405180910390f35b610261610910565b6040518082815260200191505060405180910390f35b6102e36004803603606081101561028d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610915565b604051808215151515815260200191505060405180910390f35b6103056109ee565b604051808260ff1660ff16815260200191505060405180910390f35b61036d6004803603604081101561033757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a05565b604051808215151515815260200191505060405180910390f35b6103b36004803603602081101561039d57600080fd5b8101908080359060200190929190505050610ab8565b005b6103bd610acc565b6040518082815260200191505060405180910390f35b6103db610ad2565b005b610409600480360360208110156103f357600080fd5b8101908080359060200190929190505050610c58565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61048d6004803603602081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c94565b6040518082815260200191505060405180910390f35b6104ab610cdd565b005b6104f9600480360360408110156104c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e65565b005b610503610ec7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054d610ef0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058d578082015181840152602081019050610572565b50505050905090810190601f1680156105ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610614600480360360408110156105de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f92565b604051808215151515815260200191505060405180910390f35b61067a6004803603604081101561064457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061105f565b604051808215151515815260200191505060405180910390f35b61069c61107d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610720600480360360208110156106f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a3565b604051808215151515815260200191505060405180910390f35b61079c6004803603604081101561075057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c3565b6040518082815260200191505060405180910390f35b610800600480360360408110156107c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061114a565b005b6108446004803603602081101561081857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126e565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108fc6108f561147b565b8484611483565b6001905092915050565b6000600354905090565b603081565b600061092284848461167a565b6109e38461092e61147b565b6109de856040518060600160405280602881526020016122a960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061099461147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b611483565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610aae610a1261147b565b84610aa98560026000610a2361147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190090919063ffffffff16565b611483565b6001905092915050565b610ac9610ac361147b565b82611988565b50565b60075481565b600754431115610c5657610100600754430311610c49576000600980805490506007544060001c81610b0057fe5b0681548110610b0b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610b6a6064610b5c732d407ddb06311396fe14d4b49da5f0471447d45c610c94565b611b4e90919063ffffffff16565b90506000610b82600a83611b4e90919063ffffffff16565b90506000610b998284611b9890919063ffffffff16565b9050610bba732d407ddb06311396fe14d4b49da5f0471447d45c8583611be2565b610bd9732d407ddb06311396fe14d4b49da5f0471447d45c3384611be2565b7fe0b0cbebe7603bece55f41490cc1c2d1e04c7b3d107cb06a9c4b6f51cfc6364e8482604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050505b6001600754016007819055505b565b60098181548110610c6557fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce561147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610ea4826040518060600160405280602481526020016122d160249139610e9586610e9061147b565b6110c3565b6118409092919063ffffffff16565b9050610eb883610eb261147b565b83611483565b610ec28383611988565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b5050505050905090565b6000611055610f9f61147b565b84611050856040518060600160405280602581526020016123806025913960026000610fc961147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b611483565b6001905092915050565b600061107361106c61147b565b848461167a565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115261147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61127661147b565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061221a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061235c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122406022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b732d407ddb06311396fe14d4b49da5f0471447d45c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123166021913960400191505060405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661183057600061178d606461177f603085611ea790919063ffffffff16565b611b4e90919063ffffffff16565b90506117ae84732d407ddb06311396fe14d4b49da5f0471447d45c83611be2565b6117c18183611b9890919063ffffffff16565b91507fff6825da43256ba0e3b3c5e705c1ea95b6357ddbf104df9e7f3179e1b0282c6a8482604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b61183b838383611be2565b505050565b60008383111582906118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118b2578082015181840152602081019050611897565b50505050905090810190601f1680156118df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122f56021913960400191505060405180910390fd5b611a1a82600083611f2d565b611a86816040518060600160405280602281526020016121f860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ade81600354611b9890919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611b9083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210e565b905092915050565b6000611bda83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611840565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806123376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121d56023913960400191505060405180910390fd5b611cf9838383611f2d565b611d658160405180606001604052806026815260200161226260269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118409092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dfa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080831415611eba5760009050611f27565b6000828402905082848281611ecb57fe5b0414611f22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122886021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f7257506000611f7083610c94565b145b8015611f7e5750600081115b15612033576009829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160098054905003600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208a575060006120888261207a86610c94565b611b9890919063ffffffff16565b145b15612109576009600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106120db57fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b505050565b600080831182906121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561217f578082015181840152602081019050612164565b50505050905090810190601f1680156121ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816121c657fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f6e6c79202368616c6672656b74206672656e732063616e207472616e7366657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d5170a00cd1baffbc576faa0dfafe85932550769638a7cdf477481cea254ba864736f6c63430006060033

Deployed Bytecode Sourcemap

32098:3807:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32098:3807:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;19498:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19498:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21604:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21604:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20573:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32184:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22247:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;22247:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20425:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22977:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;22977:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28699:91;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28699:91:0;;;;;;;;;;;;;;;;;:::i;:::-;;32800:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34905:874;;;:::i;:::-;;32905:31;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;32905:31:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20736:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20736:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2657:148;;;:::i;:::-;;29109:295;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29109:295:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2015:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19700:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19700:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23698:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23698:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21068:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21068:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32765:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32945:44;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;32945:44:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21306:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21306:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34771:126;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;34771:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2960:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;2960:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19498:83;19535:13;19568:5;19561:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:83;:::o;21604:169::-;21687:4;21704:39;21713:12;:10;:12::i;:::-;21727:7;21736:6;21704:8;:39::i;:::-;21761:4;21754:11;;21604:169;;;;:::o;20573:100::-;20626:7;20653:12;;20646:19;;20573:100;:::o;32184:52::-;32234:2;32184:52;:::o;22247:321::-;22353:4;22370:36;22380:6;22388:9;22399:6;22370:9;:36::i;:::-;22417:121;22426:6;22434:12;:10;:12::i;:::-;22448:89;22486:6;22448:89;;;;;;;;;;;;;;;;;:11;:19;22460:6;22448:19;;;;;;;;;;;;;;;:33;22468:12;:10;:12::i;:::-;22448:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22417:8;:121::i;:::-;22556:4;22549:11;;22247:321;;;;;:::o;20425:83::-;20466:5;20491:9;;;;;;;;;;;20484:16;;20425:83;:::o;22977:218::-;23065:4;23082:83;23091:12;:10;:12::i;:::-;23105:7;23114:50;23153:10;23114:11;:25;23126:12;:10;:12::i;:::-;23114:25;;;;;;;;;;;;;;;:34;23140:7;23114:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23082:8;:83::i;:::-;23183:4;23176:11;;22977:218;;;;:::o;28699:91::-;28755:27;28761:12;:10;:12::i;:::-;28775:6;28755:5;:27::i;:::-;28699:91;:::o;32800:31::-;;;;:::o;34905:874::-;34978:16;;34963:12;:31;34959:813;;;35050:3;35030:16;;35015:12;:31;:38;35011:679;;35085:31;35119:14;35173;:21;;;;35152:16;;35142:27;35134:36;;:60;;;;;;35119:76;;;;;;;;;;;;;;;;;;;;;;;;;35085:110;;35214:26;35243:29;35268:3;35243:20;32516:42;35243:9;:20::i;:::-;:24;;:29;;;;:::i;:::-;35214:58;;35298:20;35321:26;35344:2;35321:18;:22;;:26;;;;:::i;:::-;35298:49;;35374:21;35398:36;35421:12;35398:18;:22;;:36;;;;:::i;:::-;35374:60;;35455:66;32516:42;35482:23;35507:13;35455:15;:66::i;:::-;35540:52;32516:42;35567:10;35579:12;35540:15;:52::i;:::-;35616:58;35635:23;35660:13;35616:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;35011:679;;;;;32728:1;35723:16;;:37;35704:16;:56;;;;34959:813;34905:874::o;32905:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20736:119::-;20802:7;20829:9;:18;20839:7;20829:18;;;;;;;;;;;;;;;;20822:25;;20736:119;;;:::o;2657:148::-;2237:12;:10;:12::i;:::-;2227:22;;:6;;;;;;;;;;;:22;;;2219:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2764:1:::1;2727:40;;2748:6;::::0;::::1;;;;;;;;;2727:40;;;;;;;;;;;;2795:1;2778:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2657:148::o:0;29109:295::-;29186:26;29215:84;29252:6;29215:84;;;;;;;;;;;;;;;;;:32;29225:7;29234:12;:10;:12::i;:::-;29215:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;29186:113;;29312:51;29321:7;29330:12;:10;:12::i;:::-;29344:18;29312:8;:51::i;:::-;29374:22;29380:7;29389:6;29374:5;:22::i;:::-;29109:295;;;:::o;2015:79::-;2053:7;2080:6;;;;;;;;;;;2073:13;;2015:79;:::o;19700:87::-;19739:13;19772:7;19765:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19700:87;:::o;23698:269::-;23791:4;23808:129;23817:12;:10;:12::i;:::-;23831:7;23840:96;23879:15;23840:96;;;;;;;;;;;;;;;;;:11;:25;23852:12;:10;:12::i;:::-;23840:25;;;;;;;;;;;;;;;:34;23866:7;23840:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23808:8;:129::i;:::-;23955:4;23948:11;;23698:269;;;;:::o;21068:175::-;21154:4;21171:42;21181:12;:10;:12::i;:::-;21195:9;21206:6;21171:9;:42::i;:::-;21231:4;21224:11;;21068:175;;;;:::o;32765:26::-;;;;;;;;;;;;;:::o;32945:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;21306:151::-;21395:7;21422:11;:18;21434:5;21422:18;;;;;;;;;;;;;;;:27;21441:7;21422:27;;;;;;;;;;;;;;;;21415:34;;21306:151;;;;:::o;34771:126::-;2237:12;:10;:12::i;:::-;2227:22;;:6;;;;;;;;;;;:22;;;2219:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34880:9:::1;34856:11;:21;34868:8;34856:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;34771:126:::0;;:::o;2960:244::-;2237:12;:10;:12::i;:::-;2227:22;;:6;;;;;;;;;;;:22;;;2219:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3069:1:::1;3049:22;;:8;:22;;;;3041:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3159:8;3130:38;;3151:6;::::0;::::1;;;;;;;;;3130:38;;;;;;;;;;;;3188:8;3179:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2960:244:::0;:::o;648:106::-;701:15;736:10;729:17;;648:106;:::o;26845:346::-;26964:1;26947:19;;:5;:19;;;;26939:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27045:1;27026:21;;:7;:21;;;;27018:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:6;27099:11;:18;27111:5;27099:18;;;;;;;;;;;;;;;:27;27118:7;27099:27;;;;;;;;;;;;;;;:36;;;;27167:7;27151:32;;27160:5;27151:32;;;27176:6;27151:32;;;;;;;;;;;;;;;;;;26845:346;;;:::o;33681:626::-;32516:42;33799:20;;:7;:20;;;;33791:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33945:11;:20;33957:7;33945:20;;;;;;;;;;;;;;;;;;;;;;;;;33940:304;;33982:22;34007:45;34048:3;34007:36;32234:2;34007:7;:11;;:36;;;;:::i;:::-;:40;;:45;;;;:::i;:::-;33982:70;;34067:51;34083:7;32516:42;34103:14;34067:15;:51::i;:::-;34143:27;34155:14;34143:7;:11;;:27;;;;:::i;:::-;34133:37;;34190:42;34208:7;34217:14;34190:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;33940:304;;34254:45;34270:7;34279:10;34291:7;34254:15;:45::i;:::-;33681:626;;;:::o;4959:192::-;5045:7;5078:1;5073;:6;;5081:12;5065:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5065:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5105:9;5121:1;5117;:5;5105:17;;5142:1;5135:8;;;4959:192;;;;;:::o;4056:181::-;4114:7;4134:9;4150:1;4146;:5;4134:17;;4175:1;4170;:6;;4162:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4228:1;4221:8;;;4056:181;;;;:::o;25987:418::-;26090:1;26071:21;;:7;:21;;;;26063:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26143:49;26164:7;26181:1;26185:6;26143:20;:49::i;:::-;26226:68;26249:6;26226:68;;;;;;;;;;;;;;;;;:9;:18;26236:7;26226:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26205:9;:18;26215:7;26205:18;;;;;;;;;;;;;;;:89;;;;26320:24;26337:6;26320:12;;:16;;:24;;;;:::i;:::-;26305:12;:39;;;;26386:1;26360:37;;26369:7;26360:37;;;26390:6;26360:37;;;;;;;;;;;;;;;;;;25987:418;;:::o;6357:132::-;6415:7;6442:39;6446:1;6449;6442:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6435:46;;6357:132;;;;:::o;4520:136::-;4578:7;4605:43;4609:1;4612;4605:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4598:50;;4520:136;;;;:::o;24457:539::-;24581:1;24563:20;;:6;:20;;;;24555:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24665:1;24644:23;;:9;:23;;;;24636:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24720:47;24741:6;24749:9;24760:6;24720:20;:47::i;:::-;24800:71;24822:6;24800:71;;;;;;;;;;;;;;;;;:9;:17;24810:6;24800:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;24780:9;:17;24790:6;24780:17;;;;;;;;;;;;;;;:91;;;;24905:32;24930:6;24905:9;:20;24915:9;24905:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24882:9;:20;24892:9;24882:20;;;;;;;;;;;;;;;:55;;;;24970:9;24953:35;;24962:6;24953:35;;;24981:6;24953:35;;;;;;;;;;;;;;;;;;24457:539;;;:::o;5410:471::-;5468:7;5718:1;5713;:6;5709:47;;;5743:1;5736:8;;;;5709:47;5768:9;5784:1;5780;:5;5768:17;;5813:1;5808;5804;:5;;;;;;:10;5796:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5872:1;5865:8;;;5410:471;;;;;:::o;34315:448::-;34447:1;34432:17;;:3;:17;;;;:40;;;;;34471:1;34453:14;34463:3;34453:9;:14::i;:::-;:19;34432:40;:55;;;;;34486:1;34476:7;:11;34432:55;34428:179;;;34504:14;34524:3;34504:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;34504:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34594:1;34570:14;:21;;;;:25;34543:19;:24;34563:3;34543:24;;;;;;;;;;;;;;;:52;;;;34428:179;34638:1;34621:19;;:5;:19;;;;:57;;;;;34677:1;34644:29;34665:7;34644:16;34654:5;34644:9;:16::i;:::-;:20;;:29;;;;:::i;:::-;:34;34621:57;34617:139;;;34702:14;34717:19;:26;34737:5;34717:26;;;;;;;;;;;;;;;;34702:42;;;;;;;;;;;;;;;;34695:49;;;;;;;;;;;34617:139;34315:448;;;:::o;6985:278::-;7071:7;7103:1;7099;:5;7106:12;7091:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7091:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7130:9;7146:1;7142;:5;;;;;;7130:17;;7254:1;7247:8;;;6985:278;;;;;:::o

Swarm Source

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