S Price: $0.717856 (-11.11%)

Token

Hand Of God (HOG)

Overview

Max Total Supply

5,000 HOG

Holders

18

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
209.225788754642798618 HOG

Value
$0.00
0x470e6cc0d754d91d7f0a8d6375fd966b87906355
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Hog

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-24
*/

/*
 * Seigniorage Reimagined ⚡️AI Driven, Forged on Sonic.  Emissions optimized every 6 hours. No mercy, no emotion—only equilibrium
 * https://x.com/HandofGodSonic
/*

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
pragma solidity 0.8.19;

interface IOracle {
    function update() external;

    function consult(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 amountOut);

    function twap(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 _amountOut);
}
pragma solidity 0.8.19;

library SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        // 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;
        }

        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
pragma solidity 0.8.19;

contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() {
        _transferOperator(_msgSender());
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(
            _operator == _msgSender(),
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator) public onlyOwner {
        _transferOperator(newOperator);
    }

    function _transferOperator(address newOperator) internal {
        require(
            newOperator != address(0),
            "operator: zero address given for new operator"
        );
        emit OperatorTransferred(address(0), newOperator);
        _operator = newOperator;
    }
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` hog on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}
pragma solidity 0.8.19;

contract Hog is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    address public taxManager;
    address public oracle;

    // Initial pool
    uint256 public constant INITIAL_LIQUIDITY_DISTRIBUTION = 5000 ether;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;
    mapping(address => bool) public isLP;

    // Current tax rate
    uint256 public taxRate;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [
        0,
        5e17,
        6e17,
        7e17,
        8e17,
        9e17,
        9.5e17,
        1e18,
        1.05e18,
        1.10e18,
        1.20e18,
        1.30e18,
        1.40e18,
        1.50e18
    ];
    uint256[] public taxTiersRates = [
        2000,
        1900,
        1600,
        1200,
        1000,
        1000,
        500,
        250,
        200,
        175,
        150,
        125,
        125,
        100
    ];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    modifier onlyTaxManager() {
        require(taxManager == _msgSender(), "Caller is not the tax office");
        _;
    }

    function setTaxManager(address _taxManager) public onlyTaxManager {
        taxManager = _taxManager;
    }

    bool public rewardPoolDistributed = false;

    constructor() ERC20("Hand Of God", "HOG") {
        taxManager = _msgSender();
        _mint(_msgSender(), INITIAL_LIQUIDITY_DISTRIBUTION);
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersTwapsCount(),
            "Index has to lower than count of tax tiers"
        );
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersRatesCount(),
            "Index has to lower than count of tax tiers"
        );
        taxTiersRates[_index] = _value;
        return true;
    }

    function _getHogPrice() internal view returns (uint256 _hogPrice) {
        try IOracle(oracle).twap(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Hog: failed to fetch HOG price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _hogPrice) internal returns (uint256) {
        for (
            uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1);
            tierId >= 0;
            --tierId
        ) {
            if (_hogPrice >= taxTiersTwaps[tierId]) {
                require(
                    taxTiersRates[tierId] < 10000,
                    "tax equal or bigger to 100%"
                );
                taxRate = taxTiersRates[tierId];
                return taxTiersRates[tierId];
            }
        }
        return 0;
    }

    function setLP(address _LP, bool _isLP) public onlyTaxManager {
        isLP[_LP] = _isLP;
    }

    function enableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = false;
    }

    function setOracle(address _oracle) public onlyTaxManager {
        require(_oracle != address(0), "oracle address cannot be 0 address");
        oracle = _oracle;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxManager {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate <= 2000, "tax equal or bigger to 20%");
        taxRate = _taxRate;
    }

    function excludeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    function mint(
        address recipient,
        uint256 amount
    ) public onlyOperator returns (bool) {
        _mint(recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transferHOG(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );

        return true;
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address sender = _msgSender();
        _transferHOG(sender, recipient, amount);
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);
        _burn(sender, taxAmount);
        _transfer(sender, recipient, amountAfterTax);
    }

    function _transferHOG(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 currentTaxRate = 0;
        if (autoCalculateTax) {
            uint256 currentHogPrice = _getHogPrice();
            currentTaxRate = _updateTaxRate(currentHogPrice);
        }
        if (!autoCalculateTax) {
            currentTaxRate = taxRate;
        }
        if (
            (isLP[recipient]) &&
            currentTaxRate != 0 &&
            !excludedAddresses[sender] &&
            !excludedAddresses[recipient]
        ) {
            _transferWithTax(sender, recipient, amount);
        } else {
            _transfer(sender, recipient, amount);
        }
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOwner {
        _token.transfer(_to, _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":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"INITIAL_LIQUIDITY_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"bool","name":"_isLP","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxManager","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd629000061018052670f43fc2c04ee00006101a0526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000c290600b90600e62000405565b50604080516101c0810182526107d0815261076c6020820152610640918101919091526104b060608201526103e86080820181905260a08201526101f460c082015260fa60e082015260c861010082015260af6101208201526096610140820152607d610160820181905261018082015260646101a08201526200014b90600c90600e62000460565b50600e805460ff191690553480156200016357600080fd5b506040518060400160405280600b81526020016a12185b990813d98811dbd960aa1b81525060405180604001604052806003815260200162484f4760e81b8152508160039081620001b591906200055f565b506004620001c482826200055f565b505050620001e1620001db6200021d60201b60201c565b62000221565b620001ec3362000273565b600780546001600160a01b03191633908117909155620002179069010f0cf064dd592000006200033d565b62000653565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038116620002e55760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b60648201526084015b60405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216620003955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002dc565b8060026000828254620003a991906200062b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b8280548282559060005260206000209081019282156200044e579160200282015b828111156200044e57825182906001600160401b031690559160200191906001019062000426565b506200045c929150620004a4565b5090565b8280548282559060005260206000209081019282156200044e579160200282015b828111156200044e578251829061ffff1690559160200191906001019062000481565b5b808211156200045c5760008155600101620004a5565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e657607f821691505b6020821081036200050757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040057600081815260208120601f850160051c81016020861015620005365750805b601f850160051c820191505b81811015620005575782815560010162000542565b505050505050565b81516001600160401b038111156200057b576200057b620004bb565b62000593816200058c8454620004d1565b846200050d565b602080601f831160018114620005cb5760008415620005b25750858301515b600019600386901b1c1916600185901b17855562000557565b600085815260208120601f198616915b82811015620005fc57888601518255948401946001909101908401620005db565b50858210156200061b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200064d57634e487b7160e01b600052601160045260246000fd5b92915050565b611e0480620006636000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c8063771a3a1d11610151578063a6431bba116100c3578063dbd5951111610087578063dbd5951114610572578063dd62ed3e14610583578063ebca1bd914610596578063ee2a9535146105c2578063f2fde38b146105ca578063ff87fc7c146105dd57600080fd5b8063a6431bba1461050e578063a9059cbb14610516578063b87c5a4a14610529578063c6d69a301461053c578063cf011b261461054f57600080fd5b80638d3cc818116101155780638d3cc818146104ae5780638da5cb5b146104c257806393995d4b146104d357806395d89b41146104e65780639662676c146104ee578063a457c2d7146104fb57600080fd5b8063771a3a1d1461044957806379cc6790146104525780637adbf973146104655780637dc0d1d0146104785780637df0f7671461048b57600080fd5b806342966c68116101ea578063570ca735116101ae578063570ca735146103d95780635c29908d146103ea57806365bbacd9146103fd57806366206ce91461040557806370a0823114610418578063715018a61461044157600080fd5b806342966c681461036257806342c6b4f1146103755780634456eda2146103885780634d2377301461039b57806354575af4146103c657600080fd5b806328d679381161023c57806328d67938146102f457806329605e7714610307578063313ce5671461031a5780633758e6ce14610329578063395093511461033c57806340c10f191461034f57600080fd5b806306fdde0314610279578063095e391314610297578063095ea7b3146102ac57806318160ddd146102cf57806323b872dd146102e1575b600080fd5b6102816105e5565b60405161028e91906119ea565b60405180910390f35b6102aa6102a5366004611a4d565b610677565b005b6102bf6102ba366004611a6a565b6106cc565b604051901515815260200161028e565b6002545b60405190815260200161028e565b6102bf6102ef366004611a96565b6106e6565b6102aa610302366004611ae5565b610735565b6102aa610315366004611a4d565b61078a565b6040516012815260200161028e565b6102bf610337366004611a4d565b61079e565b6102bf61034a366004611a6a565b61085d565b6102bf61035d366004611a6a565b61087a565b6102aa610370366004611b1e565b6108f6565b6102d3610383366004611b1e565b610900565b6006546001600160a01b031633146102bf565b6007546103ae906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b6102aa6103d4366004611b37565b610921565b6006546001600160a01b03166103ae565b6102d36103f8366004611b1e565b6109a2565b6102aa6109b2565b6102bf610413366004611b79565b6109eb565b6102d3610426366004611a4d565b6001600160a01b031660009081526020819052604090205490565b6102aa610afb565b6102d3600a5481565b6102aa610460366004611a6a565b610b0f565b6102aa610473366004611a4d565b610b28565b6008546103ae906001600160a01b031681565b6102bf610499366004611a4d565b60096020526000908152604090205460ff1681565b6008546102bf90600160a01b900460ff1681565b6005546001600160a01b03166103ae565b6102bf6104e1366004611a4d565b610bd5565b610281610c8f565b600e546102bf9060ff1681565b6102bf610509366004611a6a565b610c9e565b600b546102d3565b6102bf610524366004611a6a565b610d24565b6102bf610537366004611b79565b610d32565b6102aa61054a366004611b1e565b610d9a565b6102bf61055d366004611a4d565b600d6020526000908152604090205460ff1681565b6102d369010f0cf064dd5920000081565b6102d3610591366004611b9d565b610e81565b6102bf6105a4366004611a4d565b6001600160a01b03166000908152600d602052604090205460ff1690565b600c546102d3565b6102aa6105d8366004611a4d565b610eac565b6102aa610f22565b6060600380546105f490611bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611bcb565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6007546001600160a01b031633146106aa5760405162461bcd60e51b81526004016106a190611c05565b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000336106da818585610f61565b60019150505b92915050565b60006106f3848484611086565b61072b843361072685604051806060016040528060288152602001611da76028913961071f8a33610e81565b919061115b565b610f61565b5060019392505050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610792611187565b61079b816111e1565b50565b6007546000906001600160a01b031633146107cb5760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b0382166000908152600d602052604090205460ff16156108345760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c756465640000000000000060448201526064016106a1565b506001600160a01b03166000908152600d60205260409020805460ff1916600190811790915590565b6000336106da8185856108708383610e81565b6107269190611c52565b6006546000906001600160a01b031633146108e35760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201526330ba37b960e11b60648201526084016106a1565b6108ed83836112a5565b50600192915050565b61079b3382611364565b600b818154811061091057600080fd5b600091825260209091200154905081565b610929611187565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610978573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099c9190611c65565b50505050565b600c818154811061091057600080fd5b6007546001600160a01b031633146109dc5760405162461bcd60e51b81526004016106a190611c05565b6008805460ff60a01b19169055565b6007546000906001600160a01b03163314610a185760405162461bcd60e51b81526004016106a190611c05565b600b548360ff1610610a3c5760405162461bcd60e51b81526004016106a190611c82565b60ff831615610a7b57600b610a52600185611ccc565b60ff1681548110610a6557610a65611ce5565b90600052602060002001548211610a7b57600080fd5b610a8f6001610a89600b5490565b9061148e565b8360ff161015610acf57600b610aa6846001611cfb565b60ff1681548110610ab957610ab9611ce5565b90600052602060002001548210610acf57600080fd5b81600b8460ff1681548110610ae657610ae6611ce5565b60009182526020909120015550600192915050565b610b03611187565b610b0d60006114a1565b565b610b1a8233836114f3565b610b248282611364565b5050565b6007546001600160a01b03163314610b525760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b038116610bb35760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b60648201526084016106a1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546000906001600160a01b03163314610c025760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b0382166000908152600d602052604090205460ff16610c6a5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c756465640000000000000060448201526064016106a1565b506001600160a01b03166000908152600d60205260409020805460ff19169055600190565b6060600480546105f490611bcb565b60003381610cac8286610e81565b905083811015610d0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a1565b610d198286868403610f61565b506001949350505050565b6000336106da818585611086565b6007546000906001600160a01b03163314610d5f5760405162461bcd60e51b81526004016106a190611c05565b600c548360ff1610610d835760405162461bcd60e51b81526004016106a190611c82565b81600c8460ff1681548110610ae657610ae6611ce5565b6007546001600160a01b03163314610dc45760405162461bcd60e51b81526004016106a190611c05565b600854600160a01b900460ff1615610e2a5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e61604482015263189b195960e21b60648201526084016106a1565b6107d0811115610e7c5760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f2032302500000000000060448201526064016106a1565b600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610eb4611187565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b61079b816114a1565b6007546001600160a01b03163314610f4c5760405162461bcd60e51b81526004016106a190611c05565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b038316610fc35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b6001600160a01b0382166110245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600854600090600160a01b900460ff16156110b45760006110a5611567565b90506110b081611647565b9150505b600854600160a01b900460ff166110ca5750600a545b6001600160a01b03831660009081526009602052604090205460ff1680156110f157508015155b801561111657506001600160a01b0384166000908152600d602052604090205460ff16155b801561113b57506001600160a01b0383166000908152600d602052604090205460ff16155b156111505761114b84848461175c565b61099c565b61099c8484846117ab565b6000818484111561117f5760405162461bcd60e51b81526004016106a191906119ea565b505050900390565b6005546001600160a01b03163314610b0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a1565b6001600160a01b03811661124d5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b60648201526084016106a1565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166112fb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a1565b806002600082825461130d9190611c52565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166113c45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a1565b6001600160a01b038216600090815260208190526040902054818110156114385760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611079565b600061149a8284611d14565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114ff8484610e81565b9050600019811461099c578181101561155a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a1565b61099c8484848403610f61565b600854604051630d01142560e31b8152306004820152670de0b6b3a764000060248201526000916001600160a01b031690636808a12890604401602060405180830381865afa9250505080156115da575060408051601f3d908101601f191682019092526115d791810190611d27565b60015b6116395760405162461bcd60e51b815260206004820152602a60248201527f486f673a206661696c656420746f20666574636820484f472070726963652066604482015269726f6d204f7261636c6560b01b60648201526084016106a1565b6001600160901b0316919050565b6000806116616001611658600b5490565b60ff169061194f565b90505b600b8160ff168154811061167a5761167a611ce5565b9060005260206000200154831061174c57612710600c8260ff16815481106116a4576116a4611ce5565b9060005260206000200154106116fc5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f2031303025000000000060448201526064016106a1565b600c8160ff168154811061171257611712611ce5565b9060005260206000200154600a81905550600c8160ff168154811061173957611739611ce5565b9060005260206000200154915050919050565b61175581611d50565b9050611664565b600061177f612710611779600a548561199190919063ffffffff16565b9061199d565b9050600061178d838361148e565b90506117998583611364565b6117a48585836117ab565b5050505050565b6001600160a01b03831661180f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a1565b6001600160a01b0382166118715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a1565b6001600160a01b038316600090815260208190526040902054818110156118e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361099c565b600061149a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119a9565b600061149a8284611d6d565b600061149a8284611d84565b60008360ff168360ff16111582906119d45760405162461bcd60e51b81526004016106a191906119ea565b5060006119e18486611ccc565b95945050505050565b600060208083528351808285015260005b81811015611a17578581018301518582016040015282016119fb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461079b57600080fd5b600060208284031215611a5f57600080fd5b813561149a81611a38565b60008060408385031215611a7d57600080fd5b8235611a8881611a38565b946020939093013593505050565b600080600060608486031215611aab57600080fd5b8335611ab681611a38565b92506020840135611ac681611a38565b929592945050506040919091013590565b801515811461079b57600080fd5b60008060408385031215611af857600080fd5b8235611b0381611a38565b91506020830135611b1381611ad7565b809150509250929050565b600060208284031215611b3057600080fd5b5035919050565b600080600060608486031215611b4c57600080fd5b8335611b5781611a38565b9250602084013591506040840135611b6e81611a38565b809150509250925092565b60008060408385031215611b8c57600080fd5b823560ff81168114611a8857600080fd5b60008060408385031215611bb057600080fd5b8235611bbb81611a38565b91506020830135611b1381611a38565b600181811c90821680611bdf57607f821691505b602082108103611bff57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106e0576106e0611c3c565b600060208284031215611c7757600080fd5b815161149a81611ad7565b6020808252602a908201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666040820152692074617820746965727360b01b606082015260800190565b60ff82811682821603908111156106e0576106e0611c3c565b634e487b7160e01b600052603260045260246000fd5b60ff81811683821601908111156106e0576106e0611c3c565b818103818111156106e0576106e0611c3c565b600060208284031215611d3957600080fd5b81516001600160901b038116811461149a57600080fd5b600060ff821680611d6357611d63611c3c565b6000190192915050565b80820281158282048414176106e0576106e0611c3c565b600082611da157634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220efb30c029009260eb6a0456f6d0a340b9daecebcb161d8260685a91228c6d75b64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102745760003560e01c8063771a3a1d11610151578063a6431bba116100c3578063dbd5951111610087578063dbd5951114610572578063dd62ed3e14610583578063ebca1bd914610596578063ee2a9535146105c2578063f2fde38b146105ca578063ff87fc7c146105dd57600080fd5b8063a6431bba1461050e578063a9059cbb14610516578063b87c5a4a14610529578063c6d69a301461053c578063cf011b261461054f57600080fd5b80638d3cc818116101155780638d3cc818146104ae5780638da5cb5b146104c257806393995d4b146104d357806395d89b41146104e65780639662676c146104ee578063a457c2d7146104fb57600080fd5b8063771a3a1d1461044957806379cc6790146104525780637adbf973146104655780637dc0d1d0146104785780637df0f7671461048b57600080fd5b806342966c68116101ea578063570ca735116101ae578063570ca735146103d95780635c29908d146103ea57806365bbacd9146103fd57806366206ce91461040557806370a0823114610418578063715018a61461044157600080fd5b806342966c681461036257806342c6b4f1146103755780634456eda2146103885780634d2377301461039b57806354575af4146103c657600080fd5b806328d679381161023c57806328d67938146102f457806329605e7714610307578063313ce5671461031a5780633758e6ce14610329578063395093511461033c57806340c10f191461034f57600080fd5b806306fdde0314610279578063095e391314610297578063095ea7b3146102ac57806318160ddd146102cf57806323b872dd146102e1575b600080fd5b6102816105e5565b60405161028e91906119ea565b60405180910390f35b6102aa6102a5366004611a4d565b610677565b005b6102bf6102ba366004611a6a565b6106cc565b604051901515815260200161028e565b6002545b60405190815260200161028e565b6102bf6102ef366004611a96565b6106e6565b6102aa610302366004611ae5565b610735565b6102aa610315366004611a4d565b61078a565b6040516012815260200161028e565b6102bf610337366004611a4d565b61079e565b6102bf61034a366004611a6a565b61085d565b6102bf61035d366004611a6a565b61087a565b6102aa610370366004611b1e565b6108f6565b6102d3610383366004611b1e565b610900565b6006546001600160a01b031633146102bf565b6007546103ae906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b6102aa6103d4366004611b37565b610921565b6006546001600160a01b03166103ae565b6102d36103f8366004611b1e565b6109a2565b6102aa6109b2565b6102bf610413366004611b79565b6109eb565b6102d3610426366004611a4d565b6001600160a01b031660009081526020819052604090205490565b6102aa610afb565b6102d3600a5481565b6102aa610460366004611a6a565b610b0f565b6102aa610473366004611a4d565b610b28565b6008546103ae906001600160a01b031681565b6102bf610499366004611a4d565b60096020526000908152604090205460ff1681565b6008546102bf90600160a01b900460ff1681565b6005546001600160a01b03166103ae565b6102bf6104e1366004611a4d565b610bd5565b610281610c8f565b600e546102bf9060ff1681565b6102bf610509366004611a6a565b610c9e565b600b546102d3565b6102bf610524366004611a6a565b610d24565b6102bf610537366004611b79565b610d32565b6102aa61054a366004611b1e565b610d9a565b6102bf61055d366004611a4d565b600d6020526000908152604090205460ff1681565b6102d369010f0cf064dd5920000081565b6102d3610591366004611b9d565b610e81565b6102bf6105a4366004611a4d565b6001600160a01b03166000908152600d602052604090205460ff1690565b600c546102d3565b6102aa6105d8366004611a4d565b610eac565b6102aa610f22565b6060600380546105f490611bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611bcb565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6007546001600160a01b031633146106aa5760405162461bcd60e51b81526004016106a190611c05565b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000336106da818585610f61565b60019150505b92915050565b60006106f3848484611086565b61072b843361072685604051806060016040528060288152602001611da76028913961071f8a33610e81565b919061115b565b610f61565b5060019392505050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610792611187565b61079b816111e1565b50565b6007546000906001600160a01b031633146107cb5760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b0382166000908152600d602052604090205460ff16156108345760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c756465640000000000000060448201526064016106a1565b506001600160a01b03166000908152600d60205260409020805460ff1916600190811790915590565b6000336106da8185856108708383610e81565b6107269190611c52565b6006546000906001600160a01b031633146108e35760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201526330ba37b960e11b60648201526084016106a1565b6108ed83836112a5565b50600192915050565b61079b3382611364565b600b818154811061091057600080fd5b600091825260209091200154905081565b610929611187565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610978573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099c9190611c65565b50505050565b600c818154811061091057600080fd5b6007546001600160a01b031633146109dc5760405162461bcd60e51b81526004016106a190611c05565b6008805460ff60a01b19169055565b6007546000906001600160a01b03163314610a185760405162461bcd60e51b81526004016106a190611c05565b600b548360ff1610610a3c5760405162461bcd60e51b81526004016106a190611c82565b60ff831615610a7b57600b610a52600185611ccc565b60ff1681548110610a6557610a65611ce5565b90600052602060002001548211610a7b57600080fd5b610a8f6001610a89600b5490565b9061148e565b8360ff161015610acf57600b610aa6846001611cfb565b60ff1681548110610ab957610ab9611ce5565b90600052602060002001548210610acf57600080fd5b81600b8460ff1681548110610ae657610ae6611ce5565b60009182526020909120015550600192915050565b610b03611187565b610b0d60006114a1565b565b610b1a8233836114f3565b610b248282611364565b5050565b6007546001600160a01b03163314610b525760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b038116610bb35760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b60648201526084016106a1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546000906001600160a01b03163314610c025760405162461bcd60e51b81526004016106a190611c05565b6001600160a01b0382166000908152600d602052604090205460ff16610c6a5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c756465640000000000000060448201526064016106a1565b506001600160a01b03166000908152600d60205260409020805460ff19169055600190565b6060600480546105f490611bcb565b60003381610cac8286610e81565b905083811015610d0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a1565b610d198286868403610f61565b506001949350505050565b6000336106da818585611086565b6007546000906001600160a01b03163314610d5f5760405162461bcd60e51b81526004016106a190611c05565b600c548360ff1610610d835760405162461bcd60e51b81526004016106a190611c82565b81600c8460ff1681548110610ae657610ae6611ce5565b6007546001600160a01b03163314610dc45760405162461bcd60e51b81526004016106a190611c05565b600854600160a01b900460ff1615610e2a5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e61604482015263189b195960e21b60648201526084016106a1565b6107d0811115610e7c5760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f2032302500000000000060448201526064016106a1565b600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610eb4611187565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b61079b816114a1565b6007546001600160a01b03163314610f4c5760405162461bcd60e51b81526004016106a190611c05565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b038316610fc35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b6001600160a01b0382166110245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600854600090600160a01b900460ff16156110b45760006110a5611567565b90506110b081611647565b9150505b600854600160a01b900460ff166110ca5750600a545b6001600160a01b03831660009081526009602052604090205460ff1680156110f157508015155b801561111657506001600160a01b0384166000908152600d602052604090205460ff16155b801561113b57506001600160a01b0383166000908152600d602052604090205460ff16155b156111505761114b84848461175c565b61099c565b61099c8484846117ab565b6000818484111561117f5760405162461bcd60e51b81526004016106a191906119ea565b505050900390565b6005546001600160a01b03163314610b0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a1565b6001600160a01b03811661124d5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b60648201526084016106a1565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166112fb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a1565b806002600082825461130d9190611c52565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166113c45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a1565b6001600160a01b038216600090815260208190526040902054818110156114385760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611079565b600061149a8284611d14565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114ff8484610e81565b9050600019811461099c578181101561155a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a1565b61099c8484848403610f61565b600854604051630d01142560e31b8152306004820152670de0b6b3a764000060248201526000916001600160a01b031690636808a12890604401602060405180830381865afa9250505080156115da575060408051601f3d908101601f191682019092526115d791810190611d27565b60015b6116395760405162461bcd60e51b815260206004820152602a60248201527f486f673a206661696c656420746f20666574636820484f472070726963652066604482015269726f6d204f7261636c6560b01b60648201526084016106a1565b6001600160901b0316919050565b6000806116616001611658600b5490565b60ff169061194f565b90505b600b8160ff168154811061167a5761167a611ce5565b9060005260206000200154831061174c57612710600c8260ff16815481106116a4576116a4611ce5565b9060005260206000200154106116fc5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f2031303025000000000060448201526064016106a1565b600c8160ff168154811061171257611712611ce5565b9060005260206000200154600a81905550600c8160ff168154811061173957611739611ce5565b9060005260206000200154915050919050565b61175581611d50565b9050611664565b600061177f612710611779600a548561199190919063ffffffff16565b9061199d565b9050600061178d838361148e565b90506117998583611364565b6117a48585836117ab565b5050505050565b6001600160a01b03831661180f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a1565b6001600160a01b0382166118715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a1565b6001600160a01b038316600090815260208190526040902054818110156118e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361099c565b600061149a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119a9565b600061149a8284611d6d565b600061149a8284611d84565b60008360ff168360ff16111582906119d45760405162461bcd60e51b81526004016106a191906119ea565b5060006119e18486611ccc565b95945050505050565b600060208083528351808285015260005b81811015611a17578581018301518582016040015282016119fb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461079b57600080fd5b600060208284031215611a5f57600080fd5b813561149a81611a38565b60008060408385031215611a7d57600080fd5b8235611a8881611a38565b946020939093013593505050565b600080600060608486031215611aab57600080fd5b8335611ab681611a38565b92506020840135611ac681611a38565b929592945050506040919091013590565b801515811461079b57600080fd5b60008060408385031215611af857600080fd5b8235611b0381611a38565b91506020830135611b1381611ad7565b809150509250929050565b600060208284031215611b3057600080fd5b5035919050565b600080600060608486031215611b4c57600080fd5b8335611b5781611a38565b9250602084013591506040840135611b6e81611a38565b809150509250925092565b60008060408385031215611b8c57600080fd5b823560ff81168114611a8857600080fd5b60008060408385031215611bb057600080fd5b8235611bbb81611a38565b91506020830135611b1381611a38565b600181811c90821680611bdf57607f821691505b602082108103611bff57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106e0576106e0611c3c565b600060208284031215611c7757600080fd5b815161149a81611ad7565b6020808252602a908201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666040820152692074617820746965727360b01b606082015260800190565b60ff82811682821603908111156106e0576106e0611c3c565b634e487b7160e01b600052603260045260246000fd5b60ff81811683821601908111156106e0576106e0611c3c565b818103818111156106e0576106e0611c3c565b600060208284031215611d3957600080fd5b81516001600160901b038116811461149a57600080fd5b600060ff821680611d6357611d63611c3c565b6000190192915050565b80820281158282048414176106e0576106e0611c3c565b600082611da157634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220efb30c029009260eb6a0456f6d0a340b9daecebcb161d8260685a91228c6d75b64736f6c63430008130033

Deployed Bytecode Sourcemap

34335:7289:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22240:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35579:109;;;;;;:::i;:::-;;:::i;:::-;;24600:201;;;;;;:::i;:::-;;:::i;:::-;;;1440:14:1;;1433:22;1415:41;;1403:2;1388:18;24600:201:0;1275:187:1;23369:108:0;23457:12;;23369:108;;;1613:25:1;;;1601:2;1586:18;23369:108:0;1467:177:1;39655:449:0;;;;;;:::i;:::-;;:::i;38215:98::-;;;;;;:::i;:::-;;:::i;19091:113::-;;;;;;:::i;:::-;;:::i;23211:93::-;;;23294:2;2762:36:1;;2750:2;2735:18;23211:93:0;2620:184:1;38963:247:0;;;;;;:::i;:::-;;:::i;26051:238::-;;;;;;:::i;:::-;;:::i;39473:174::-;;;;;;:::i;:::-;;:::i;33729:91::-;;;;;;:::i;:::-;;:::i;34821:267::-;;;;;;:::i;:::-;;:::i;18983:100::-;19066:9;;-1:-1:-1;;;;;19066:9:0;862:10;19050:25;18983:100;;34449:25;;;;;-1:-1:-1;;;;;34449:25:0;;;;;;-1:-1:-1;;;;;3158:32:1;;;3140:51;;3128:2;3113:18;34449:25:0;2994:203:1;41437:184:0;;;;;;:::i;:::-;;:::i;18716:85::-;18784:9;;-1:-1:-1;;;;;18784:9:0;18716:85;;35095:242;;;;;;:::i;:::-;;:::i;38427:100::-;;;:::i;36331:608::-;;;;;;:::i;:::-;;:::i;23540:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23641:18:0;23614:7;23641:18;;;;;;;;;;;;23540:127;2813:103;;;:::i;34772:22::-;;;;;;34139:164;;;;;;:::i;:::-;;:::i;38535:172::-;;;;;;:::i;:::-;;:::i;34481:21::-;;;;;-1:-1:-1;;;;;34481:21:0;;;34702:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34667:28;;;;;-1:-1:-1;;;34667:28:0;;;;;;2172:87;2245:6;;-1:-1:-1;;;;;2245:6:0;2172:87;;39218:247;;;;;;:::i;:::-;;:::i;22459:104::-;;;:::i;35696:41::-;;;;;;;;;26792:436;;;;;;:::i;:::-;;:::i;35952:115::-;36039:13;:20;35952:115;;40112:237;;;;;;:::i;:::-;;:::i;36947:387::-;;;;;;:::i;:::-;;:::i;38715:240::-;;;;;;:::i;:::-;;:::i;35389:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34532:67;;34589:10;34532:67;;24129:151;;;;;;:::i;:::-;;:::i;36198:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;36288:27:0;36264:4;36288:27;;;:17;:27;;;;;;;;;36198:125;36075:115;36162:13;:20;36075:115;;3071:201;;;;;;:::i;:::-;;:::i;38321:98::-;;;:::i;22240:100::-;22294:13;22327:5;22320:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22240:100;:::o;35579:109::-;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;;;;;;;;;35656:10:::1;:24:::0;;-1:-1:-1;;;;;;35656:24:0::1;-1:-1:-1::0;;;;;35656:24:0;;;::::1;::::0;;;::::1;::::0;;35579:109::o;24600:201::-;24683:4;862:10;24739:32;862:10;24755:7;24764:6;24739:8;:32::i;:::-;24789:4;24782:11;;;24600:201;;;;;:::o;39655:449::-;39787:4;39804:39;39817:6;39825:9;39836:6;39804:12;:39::i;:::-;39854:218;39877:6;862:10;39925:136;39979:6;39925:136;;;;;;;;;;;;;;;;;:31;39935:6;862:10;24129:151;:::i;39925:31::-;:35;:136;:35;:136::i;:::-;39854:8;:218::i;:::-;-1:-1:-1;40092:4:0;39655:449;;;;;:::o;38215:98::-;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38288:9:0;;;::::1;;::::0;;;:4:::1;:9;::::0;;;;:17;;-1:-1:-1;;38288:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38215:98::o;19091:113::-;2058:13;:11;:13::i;:::-;19166:30:::1;19184:11;19166:17;:30::i;:::-;19091:113:::0;:::o;38963:247::-;35492:10;;39052:4;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39078:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39077:28;39069:66;;;::::0;-1:-1:-1;;;39069:66:0;;5356:2:1;39069:66:0::1;::::0;::::1;5338:21:1::0;5395:2;5375:18;;;5368:30;5434:27;5414:18;;;5407:55;5479:18;;39069:66:0::1;5154:349:1::0;39069:66:0::1;-1:-1:-1::0;;;;;;39146:27:0::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;39146:34:0::1;39176:4;39146:34:::0;;::::1;::::0;;;39176:4;38963:247::o;26051:238::-;26139:4;862:10;26195:64;862:10;26211:7;26248:10;26220:25;862:10;26211:7;26220:9;:25::i;:::-;:38;;;;:::i;39473:174::-;18866:9;;39576:4;;-1:-1:-1;;;;;18866:9:0;862:10;18866:25;18844:111;;;;-1:-1:-1;;;18844:111:0;;5972:2:1;18844:111:0;;;5954:21:1;6011:2;5991:18;;;5984:30;6050:34;6030:18;;;6023:62;-1:-1:-1;;;6101:18:1;;;6094:34;6145:19;;18844:111:0;5770:400:1;18844:111:0;39593:24:::1;39599:9;39610:6;39593:5;:24::i;:::-;-1:-1:-1::0;39635:4:0::1;39473:174:::0;;;;:::o;33729:91::-;33785:27;862:10;33805:6;33785:5;:27::i;34821:267::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34821:267:0;:::o;41437:184::-;2058:13;:11;:13::i;:::-;41584:29:::1;::::0;-1:-1:-1;;;41584:29:0;;-1:-1:-1;;;;;6367:32:1;;;41584:29:0::1;::::0;::::1;6349:51:1::0;6416:18;;;6409:34;;;41584:15:0;::::1;::::0;::::1;::::0;6322:18:1;;41584:29:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41437:184:::0;;;:::o;35095:242::-;;;;;;;;;;;;38427:100;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;38495:16:::1;:24:::0;;-1:-1:-1;;;;38495:24:0::1;::::0;;38427:100::o;36331:608::-;35492:10;;36442:4;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;36039:13;:20;36545:6:::1;:32;;;36523:124;;;;-1:-1:-1::0;;;36523:124:0::1;;;;;;;:::i;:::-;36662:10;::::0;::::1;::::0;36658:86:::1;;36706:13;36720:10;36729:1;36720:6:::0;:10:::1;:::i;:::-;36706:25;;;;;;;;;;:::i;:::-;;;;;;;;;36697:6;:34;36689:43;;;::::0;::::1;;36767:30;36795:1;36767:23;36039:13:::0;:20;;35952:115;36767:23:::1;:27:::0;::::1;:30::i;:::-;36758:6;:39;;;36754:115;;;36831:13;36845:10;:6:::0;36854:1:::1;36845:10;:::i;:::-;36831:25;;;;;;;;;;:::i;:::-;;;;;;;;;36822:6;:34;36814:43;;;::::0;::::1;;36903:6;36879:13;36893:6;36879:21;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;36927:4:0::1;36331:608:::0;;;;:::o;2813:103::-;2058:13;:11;:13::i;:::-;2878:30:::1;2905:1;2878:18;:30::i;:::-;2813:103::o:0;34139:164::-;34216:46;34232:7;862:10;34255:6;34216:15;:46::i;:::-;34273:22;34279:7;34288:6;34273:5;:22::i;:::-;34139:164;;:::o;38535:172::-;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38612:21:0;::::1;38604:68;;;::::0;-1:-1:-1;;;38604:68:0;;8116:2:1;38604:68:0::1;::::0;::::1;8098:21:1::0;8155:2;8135:18;;;8128:30;8194:34;8174:18;;;8167:62;-1:-1:-1;;;8245:18:1;;;8238:32;8287:19;;38604:68:0::1;7914:398:1::0;38604:68:0::1;38683:6;:16:::0;;-1:-1:-1;;;;;;38683:16:0::1;-1:-1:-1::0;;;;;38683:16:0;;;::::1;::::0;;;::::1;::::0;;38535:172::o;39218:247::-;35492:10;;39307:4;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39332:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39324:65;;;::::0;-1:-1:-1;;;39324:65:0;;8519:2:1;39324:65:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;8597:27;8577:18;;;8570:55;8642:18;;39324:65:0::1;8317:349:1::0;39324:65:0::1;-1:-1:-1::0;;;;;;39400:27:0::1;39430:5;39400:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;39400:35:0::1;::::0;;-1:-1:-1;;39218:247:0:o;22459:104::-;22515:13;22548:7;22541:14;;;;;:::i;26792:436::-;26885:4;862:10;26885:4;26968:25;862:10;26985:7;26968:9;:25::i;:::-;26941:52;;27032:15;27012:16;:35;;27004:85;;;;-1:-1:-1;;;27004:85:0;;8873:2:1;27004:85:0;;;8855:21:1;8912:2;8892:18;;;8885:30;8951:34;8931:18;;;8924:62;-1:-1:-1;;;9002:18:1;;;8995:35;9047:19;;27004:85:0;8671:401:1;27004:85:0;27125:60;27134:5;27141:7;27169:15;27150:16;:34;27125:8;:60::i;:::-;-1:-1:-1;27216:4:0;;26792:436;-1:-1:-1;;;;26792:436:0:o;40112:237::-;40223:4;862:10;40280:39;862:10;40301:9;40312:6;40280:12;:39::i;36947:387::-;35492:10;;37058:4;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;36162:13;:20;37161:6:::1;:32;;;37139:124;;;;-1:-1:-1::0;;;37139:124:0::1;;;;;;;:::i;:::-;37298:6;37274:13;37288:6;37274:21;;;;;;;;;;:::i;38715:240::-:0;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;38795:16:::1;::::0;-1:-1:-1;;;38795:16:0;::::1;;;38794:17;38786:66;;;::::0;-1:-1:-1;;;38786:66:0;;9279:2:1;38786:66:0::1;::::0;::::1;9261:21:1::0;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:34;9452:19;;38786:66:0::1;9077:400:1::0;38786:66:0::1;38883:4;38871:8;:16;;38863:55;;;::::0;-1:-1:-1;;;38863:55:0;;9684:2:1;38863:55:0::1;::::0;::::1;9666:21:1::0;9723:2;9703:18;;;9696:30;9762:28;9742:18;;;9735:56;9808:18;;38863:55:0::1;9482:350:1::0;38863:55:0::1;38929:7;:18:::0;38715:240::o;24129:151::-;-1:-1:-1;;;;;24245:18:0;;;24218:7;24245:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24129:151::o;3071:201::-;2058:13;:11;:13::i;:::-;-1:-1:-1;;;;;3160:22:0;::::1;3152:73;;;::::0;-1:-1:-1;;;3152:73:0;;10039:2:1;3152:73:0::1;::::0;::::1;10021:21:1::0;10078:2;10058:18;;;10051:30;10117:34;10097:18;;;10090:62;-1:-1:-1;;;10168:18:1;;;10161:36;10214:19;;3152:73:0::1;9837:402:1::0;3152:73:0::1;3236:28;3255:8;3236:18;:28::i;38321:98::-:0;35492:10;;-1:-1:-1;;;;;35492:10:0;862;35492:26;35484:67;;;;-1:-1:-1;;;35484:67:0;;;;;;;:::i;:::-;38388:16:::1;:23:::0;;-1:-1:-1;;;;38388:23:0::1;-1:-1:-1::0;;;38388:23:0::1;::::0;;38321:98::o;30785:346::-;-1:-1:-1;;;;;30887:19:0;;30879:68;;;;-1:-1:-1;;;30879:68:0;;10446:2:1;30879:68:0;;;10428:21:1;10485:2;10465:18;;;10458:30;10524:34;10504:18;;;10497:62;-1:-1:-1;;;10575:18:1;;;10568:34;10619:19;;30879:68:0;10244:400:1;30879:68:0;-1:-1:-1;;;;;30966:21:0;;30958:68;;;;-1:-1:-1;;;30958:68:0;;10851:2:1;30958:68:0;;;10833:21:1;10890:2;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;-1:-1:-1;;;10980:18:1;;;10973:32;11022:19;;30958:68:0;10649:398:1;30958:68:0;-1:-1:-1;;;;;31039:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31091:32;;1613:25:1;;;31091:32:0;;1586:18:1;31091:32:0;;;;;;;;30785:346;;;:::o;40701:728::-;40869:16;;40828:22;;-1:-1:-1;;;40869:16:0;;;;40865:152;;;40902:23;40928:14;:12;:14::i;:::-;40902:40;;40974:31;40989:15;40974:14;:31::i;:::-;40957:48;;40887:130;40865:152;41032:16;;-1:-1:-1;;;41032:16:0;;;;41027:74;;-1:-1:-1;41082:7:0;;41027:74;-1:-1:-1;;;;;41130:15:0;;;;;;:4;:15;;;;;;;;41129:53;;;;-1:-1:-1;41163:19:0;;;41129:53;:96;;;;-1:-1:-1;;;;;;41200:25:0;;;;;;:17;:25;;;;;;;;41199:26;41129:96;:142;;;;-1:-1:-1;;;;;;41243:28:0;;;;;;:17;:28;;;;;;;;41242:29;41129:142;41111:311;;;41298:43;41315:6;41323:9;41334:6;41298:16;:43::i;:::-;41111:311;;;41374:36;41384:6;41392:9;41403:6;41374:9;:36::i;11503:206::-;11589:7;11650:12;11642:6;;;;11634:29;;;;-1:-1:-1;;;11634:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11685:5:0;;;11503:206::o;2337:132::-;2245:6;;-1:-1:-1;;;;;2245:6:0;862:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;11254:2:1;2393:68:0;;;11236:21:1;;;11273:18;;;11266:30;11332:34;11312:18;;;11305:62;11384:18;;2393:68:0;11052:356:1;19212:290:0;-1:-1:-1;;;;;19302:25:0;;19280:120;;;;-1:-1:-1;;;19280:120:0;;11615:2:1;19280:120:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:34;11673:18;;;11666:62;-1:-1:-1;;;11744:18:1;;;11737:43;11797:19;;19280:120:0;11413:409:1;19280:120:0;19416:44;;-1:-1:-1;;;;;19416:44:0;;;19444:1;;19416:44;;19444:1;;19416:44;19471:9;:23;;-1:-1:-1;;;;;;19471:23:0;-1:-1:-1;;;;;19471:23:0;;;;;;;;;;19212:290::o;28791:548::-;-1:-1:-1;;;;;28875:21:0;;28867:65;;;;-1:-1:-1;;;28867:65:0;;12029:2:1;28867:65:0;;;12011:21:1;12068:2;12048:18;;;12041:30;12107:33;12087:18;;;12080:61;12158:18;;28867:65:0;11827:355:1;28867:65:0;29023:6;29007:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;29178:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;29233:37;1613:25:1;;;29233:37:0;;1586:18:1;29233:37:0;;;;;;;34139:164;;:::o;29672:675::-;-1:-1:-1;;;;;29756:21:0;;29748:67;;;;-1:-1:-1;;;29748:67:0;;12389:2:1;29748:67:0;;;12371:21:1;12428:2;12408:18;;;12401:30;12467:34;12447:18;;;12440:62;-1:-1:-1;;;12518:18:1;;;12511:31;12559:19;;29748:67:0;12187:397:1;29748:67:0;-1:-1:-1;;;;;29915:18:0;;29890:22;29915:18;;;;;;;;;;;29952:24;;;;29944:71;;;;-1:-1:-1;;;29944:71:0;;12791:2:1;29944:71:0;;;12773:21:1;12830:2;12810:18;;;12803:30;12869:34;12849:18;;;12842:62;-1:-1:-1;;;12920:18:1;;;12913:32;12962:19;;29944:71:0;12589:398:1;29944:71:0;-1:-1:-1;;;;;30051:18:0;;:9;:18;;;;;;;;;;;30072:23;;;30051:44;;30190:12;:22;;;;;;;30241:37;1613:25:1;;;30051:9:0;;:18;30241:37;;1586:18:1;30241:37:0;1467:177:1;9605:98:0;9663:7;9690:5;9694:1;9690;:5;:::i;:::-;9683:12;9605:98;-1:-1:-1;;;9605:98:0:o;3432:191::-;3525:6;;;-1:-1:-1;;;;;3542:17:0;;;-1:-1:-1;;;;;;3542:17:0;;;;;;;3575:40;;3525:6;;;3542:17;3525:6;;3575:40;;3506:16;;3575:40;3495:128;3432:191;:::o;31420:419::-;31521:24;31548:25;31558:5;31565:7;31548:9;:25::i;:::-;31521:52;;-1:-1:-1;;31588:16:0;:37;31584:248;;31670:6;31650:16;:26;;31642:68;;;;-1:-1:-1;;;31642:68:0;;13327:2:1;31642:68:0;;;13309:21:1;13366:2;13346:18;;;13339:30;13405:31;13385:18;;;13378:59;13454:18;;31642:68:0;13125:353:1;31642:68:0;31754:51;31763:5;31770:7;31798:6;31779:16;:25;31754:8;:51::i;37342:290::-;37431:6;;37423:41;;-1:-1:-1;;;37423:41:0;;37452:4;37423:41;;;6349:51:1;37459:4:0;6416:18:1;;;6409:34;37389:17:0;;-1:-1:-1;;;;;37431:6:0;;37423:20;;6322:18:1;;37423:41:0;;;;;;;;;;;;;;;;;;-1:-1:-1;37423:41:0;;;;;;;;-1:-1:-1;;37423:41:0;;;;;;;;;;;;:::i;:::-;;;37419:206;;37561:52;;-1:-1:-1;;;37561:52:0;;14304:2:1;37561:52:0;;;14286:21:1;14343:2;14323:18;;;14316:30;14382:34;14362:18;;;14355:62;-1:-1:-1;;;14433:18:1;;;14426:40;14483:19;;37561:52:0;14102:406:1;37419:206:0;-1:-1:-1;;;;;37512:15:0;;37342:290;-1:-1:-1;37342:290:0:o;37640:567::-;37701:7;37740:12;37755:37;37790:1;37761:23;36039:13;:20;;35952:115;37761:23;37755:34;;;;:37::i;:::-;37740:52;;37721:460;37885:13;37899:6;37885:21;;;;;;;;;;:::i;:::-;;;;;;;;;37872:9;:34;37868:302;;37981:5;37957:13;37971:6;37957:21;;;;;;;;;;:::i;:::-;;;;;;;;;:29;37927:130;;;;-1:-1:-1;;;37927:130:0;;14715:2:1;37927:130:0;;;14697:21:1;14754:2;14734:18;;;14727:30;14793:29;14773:18;;;14766:57;14840:18;;37927:130:0;14513:351:1;37927:130:0;38086:13;38100:6;38086:21;;;;;;;;;;:::i;:::-;;;;;;;;;38076:7;:31;;;;38133:13;38147:6;38133:21;;;;;;;;;;:::i;:::-;;;;;;;;;38126:28;;;37640:567;;;:::o;37868:302::-;37833:8;;;:::i;:::-;;;37721:460;;40357:336;40488:17;40508:30;40532:5;40508:19;40519:7;;40508:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;40488:50;-1:-1:-1;40549:22:0;40574:21;:6;40488:50;40574:10;:21::i;:::-;40549:46;;40606:24;40612:6;40620:9;40606:5;:24::i;:::-;40641:44;40651:6;40659:9;40670:14;40641:9;:44::i;:::-;40477:216;;40357:336;;;:::o;27698:806::-;-1:-1:-1;;;;;27795:18:0;;27787:68;;;;-1:-1:-1;;;27787:68:0;;15254:2:1;27787:68:0;;;15236:21:1;15293:2;15273:18;;;15266:30;15332:34;15312:18;;;15305:62;-1:-1:-1;;;15383:18:1;;;15376:35;15428:19;;27787:68:0;15052:401:1;27787:68:0;-1:-1:-1;;;;;27874:16:0;;27866:64;;;;-1:-1:-1;;;27866:64:0;;15660:2:1;27866:64:0;;;15642:21:1;15699:2;15679:18;;;15672:30;15738:34;15718:18;;;15711:62;-1:-1:-1;;;15789:18:1;;;15782:33;15832:19;;27866:64:0;15458:399:1;27866:64:0;-1:-1:-1;;;;;28016:15:0;;27994:19;28016:15;;;;;;;;;;;28050:21;;;;28042:72;;;;-1:-1:-1;;;28042:72:0;;16064:2:1;28042:72:0;;;16046:21:1;16103:2;16083:18;;;16076:30;16142:34;16122:18;;;16115:62;-1:-1:-1;;;16193:18:1;;;16186:36;16239:19;;28042:72:0;15862:402:1;28042:72:0;-1:-1:-1;;;;;28150:15:0;;;:9;:15;;;;;;;;;;;28168:20;;;28150:38;;28368:13;;;;;;;;;;:23;;;;;;28420:26;;1613:25:1;;;28368:13:0;;28420:26;;1586:18:1;28420:26:0;;;;;;;28459:37;29672:675;14368:130;14422:5;14447:43;14451:1;14454;14447:43;;;;;;;;;;;;;;;;;:3;:43::i;9962:98::-;10020:7;10047:5;10051:1;10047;:5;:::i;10361:98::-;10419:7;10446:5;10450:1;10446;:5;:::i;14801:218::-;14917:5;14948:1;14943:6;;:1;:6;;;;14951:12;14935:29;;;;;-1:-1:-1;;;14935:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14975:7:0;14985:5;14989:1;14985;:5;:::i;:::-;14975:15;14801:218;-1:-1:-1;;;;;14801:218:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:247;762:6;815:2;803:9;794:7;790:23;786:32;783:52;;;831:1;828;821:12;783:52;870:9;857:23;889:31;914:5;889:31;:::i;955:315::-;1023:6;1031;1084:2;1072:9;1063:7;1059:23;1055:32;1052:52;;;1100:1;1097;1090:12;1052:52;1139:9;1126:23;1158:31;1183:5;1158:31;:::i;:::-;1208:5;1260:2;1245:18;;;;1232:32;;-1:-1:-1;;;955:315:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:118::-;2196:5;2189:13;2182:21;2175:5;2172:32;2162:60;;2218:1;2215;2208:12;2233:382;2298:6;2306;2359:2;2347:9;2338:7;2334:23;2330:32;2327:52;;;2375:1;2372;2365:12;2327:52;2414:9;2401:23;2433:31;2458:5;2433:31;:::i;:::-;2483:5;-1:-1:-1;2540:2:1;2525:18;;2512:32;2553:30;2512:32;2553:30;:::i;:::-;2602:7;2592:17;;;2233:382;;;;;:::o;2809:180::-;2868:6;2921:2;2909:9;2900:7;2896:23;2892:32;2889:52;;;2937:1;2934;2927:12;2889:52;-1:-1:-1;2960:23:1;;2809:180;-1:-1:-1;2809:180:1:o;3202:470::-;3293:6;3301;3309;3362:2;3350:9;3341:7;3337:23;3333:32;3330:52;;;3378:1;3375;3368:12;3330:52;3417:9;3404:23;3436:31;3461:5;3436:31;:::i;:::-;3486:5;-1:-1:-1;3538:2:1;3523:18;;3510:32;;-1:-1:-1;3594:2:1;3579:18;;3566:32;3607:33;3566:32;3607:33;:::i;:::-;3659:7;3649:17;;;3202:470;;;;;:::o;3677:337::-;3743:6;3751;3804:2;3792:9;3783:7;3779:23;3775:32;3772:52;;;3820:1;3817;3810:12;3772:52;3859:9;3846:23;3909:4;3902:5;3898:16;3891:5;3888:27;3878:55;;3929:1;3926;3919:12;4019:388;4087:6;4095;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4203:9;4190:23;4222:31;4247:5;4222:31;:::i;:::-;4272:5;-1:-1:-1;4329:2:1;4314:18;;4301:32;4342:33;4301:32;4342:33;:::i;4412:380::-;4491:1;4487:12;;;;4534;;;4555:61;;4609:4;4601:6;4597:17;4587:27;;4555:61;4662:2;4654:6;4651:14;4631:18;4628:38;4625:161;;4708:10;4703:3;4699:20;4696:1;4689:31;4743:4;4740:1;4733:15;4771:4;4768:1;4761:15;4625:161;;4412:380;;;:::o;4797:352::-;4999:2;4981:21;;;5038:2;5018:18;;;5011:30;5077;5072:2;5057:18;;5050:58;5140:2;5125:18;;4797:352::o;5508:127::-;5569:10;5564:3;5560:20;5557:1;5550:31;5600:4;5597:1;5590:15;5624:4;5621:1;5614:15;5640:125;5705:9;;;5726:10;;;5723:36;;;5739:18;;:::i;6454:245::-;6521:6;6574:2;6562:9;6553:7;6549:23;6545:32;6542:52;;;6590:1;6587;6580:12;6542:52;6622:9;6616:16;6641:28;6663:5;6641:28;:::i;7062:406::-;7264:2;7246:21;;;7303:2;7283:18;;;7276:30;7342:34;7337:2;7322:18;;7315:62;-1:-1:-1;;;7408:2:1;7393:18;;7386:40;7458:3;7443:19;;7062:406::o;7473:151::-;7563:4;7556:12;;;7542;;;7538:31;;7581:14;;7578:40;;;7598:18;;:::i;7629:127::-;7690:10;7685:3;7681:20;7678:1;7671:31;7721:4;7718:1;7711:15;7745:4;7742:1;7735:15;7761:148;7849:4;7828:12;;;7842;;;7824:31;;7867:13;;7864:39;;;7883:18;;:::i;12992:128::-;13059:9;;;13080:11;;;13077:37;;;13094:18;;:::i;13788:309::-;13858:6;13911:2;13899:9;13890:7;13886:23;13882:32;13879:52;;;13927:1;13924;13917:12;13879:52;13959:9;13953:16;-1:-1:-1;;;;;14002:5:1;13998:50;13991:5;13988:61;13978:89;;14063:1;14060;14053:12;14869:178;14906:3;14950:4;14943:5;14939:16;14974:7;14964:41;;14985:18;;:::i;:::-;-1:-1:-1;;15021:20:1;;14869:178;-1:-1:-1;;14869:178:1:o;16269:168::-;16342:9;;;16373;;16390:15;;;16384:22;;16370:37;16360:71;;16411:18;;:::i;16442:217::-;16482:1;16508;16498:132;;16552:10;16547:3;16543:20;16540:1;16533:31;16587:4;16584:1;16577:15;16615:4;16612:1;16605:15;16498:132;-1:-1:-1;16644:9:1;;16442:217::o

Swarm Source

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