POL Price: $0.397618 (+3.65%)
 

Overview

Max Total Supply

20.94 GOV

Holders

2

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Elite: Deployer
Balance
10 GOV

Value
$0.00
0x6bcff4e32cac3b8a1a96ab427a5b7a4366b8ccda
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
GOV

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-10-05
*/

/**
 *Submitted for verification at polygonscan.com on 2021-10-01
*/

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev 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;
        }
        _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 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 {}
}

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


pragma solidity ^0.8.0;

contract GOV is ERC20("GOV", "GOV"), Ownable, Pausable {
    using SafeERC20 for IERC20;
    using Address for address payable;

    IERC20 public penky;

    constructor(address penkyToken) {
        penky = IERC20(penkyToken);
    }
    
    event _swapPenkyToGovernance(address indexed user,uint256 amount);
    event _swapGovernanceToPenky(address indexed user,uint256 amount);

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    receive() external payable {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function swapPenkyToGovernance(uint256 amount) public whenNotPaused {
        address user = _msgSender();
        penky.safeTransferFrom(user, address(this), amount);
        _mint(user, amount);
    }
    
    function contractPenkyBalance() public view returns (uint256) {
        return penky.balanceOf(address(this));
    }

    function swapGovernanceToPenky(uint256 amount) public whenNotPaused {       
        address user = _msgSender();
        _burn(user, amount);
        penky.safeTransfer(user, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"penkyToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_swapGovernanceToPenky","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_swapPenkyToGovernance","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractPenkyBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"penky","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapGovernanceToPenky","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapPenkyToGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162001987380380620019878339810160408190526200003491620001e6565b6040518060400160405280600381526020016223a7ab60e91b8152506040518060400160405280600381526020016223a7ab60e91b81525081600390805190602001906200008492919062000140565b5080516200009a90600490602084019062000140565b505050620000b7620000b1620000ea60201b60201c565b620000ee565b6005805460ff60a01b19169055600680546001600160a01b0319166001600160a01b039290921691909117905562000253565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e9062000216565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600060208284031215620001f8578081fd5b81516001600160a01b03811681146200020f578182fd5b9392505050565b6002810460018216806200022b57607f821691505b602082108114156200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b61172480620002636000396000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610323578063a9059cbb14610343578063c7d5c31814610363578063dd62ed3e14610383578063e01fe7fe146103a3578063f2fde38b146103b857610140565b8063715018a6146102ad5780638456cb59146102c25780638da5cb5b146102d757806395d89b41146102f9578063a20592a81461030e57610140565b806339509351116100fd57806339509351146102015780633f4ba83a1461022157806340c10f1914610238578063500e9ab7146102585780635c975abb1461027857806370a082311461028d57610140565b806306fdde0314610145578063095ea7b31461017057806318160ddd1461019d57806323b872dd146101bf578063313ce567146101df57610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a6103d8565b60405161016791906111c3565b60405180910390f35b34801561017c57600080fd5b5061019061018b3660046110d2565b61046a565b60405161016791906111b8565b3480156101a957600080fd5b506101b2610487565b604051610167919061162b565b3480156101cb57600080fd5b506101906101da366004611097565b61048d565b3480156101eb57600080fd5b506101f4610528565b6040516101679190611634565b34801561020d57600080fd5b5061019061021c3660046110d2565b61052d565b34801561022d57600080fd5b50610236610581565b005b34801561024457600080fd5b506102366102533660046110d2565b6105ca565b34801561026457600080fd5b5061023661027336600461111b565b610617565b34801561028457600080fd5b5061019061066b565b34801561029957600080fd5b506101b26102a836600461104b565b61067b565b3480156102b957600080fd5b5061023661069a565b3480156102ce57600080fd5b506102366106e3565b3480156102e357600080fd5b506102ec61072a565b6040516101679190611167565b34801561030557600080fd5b5061015a610739565b34801561031a57600080fd5b506101b2610748565b34801561032f57600080fd5b5061019061033e3660046110d2565b6107ce565b34801561034f57600080fd5b5061019061035e3660046110d2565b610847565b34801561036f57600080fd5b5061023661037e36600461111b565b61085b565b34801561038f57600080fd5b506101b261039e366004611065565b6108ad565b3480156103af57600080fd5b506102ec6108d8565b3480156103c457600080fd5b506102366103d336600461104b565b6108e7565b6060600380546103e79061169d565b80601f01602080910402602001604051908101604052809291908181526020018280546104139061169d565b80156104605780601f1061043557610100808354040283529160200191610460565b820191906000526020600020905b81548152906001019060200180831161044357829003601f168201915b5050505050905090565b600061047e610477610958565b848461095c565b50600192915050565b60025490565b600061049a848484610a10565b6001600160a01b0384166000908152600160205260408120816104bb610958565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105075760405162461bcd60e51b81526004016104fe906113e7565b60405180910390fd5b61051b85610513610958565b85840361095c565b60019150505b9392505050565b601290565b600061047e61053a610958565b848460016000610548610958565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461057c9190611642565b61095c565b610589610958565b6001600160a01b031661059a61072a565b6001600160a01b0316146105c05760405162461bcd60e51b81526004016104fe9061142f565b6105c8610b3a565b565b6105d2610958565b6001600160a01b03166105e361072a565b6001600160a01b0316146106095760405162461bcd60e51b81526004016104fe9061142f565b6106138282610bab565b5050565b61061f61066b565b1561063c5760405162461bcd60e51b81526004016104fe906113bd565b6000610646610958565b600654909150610661906001600160a01b0316823085610c73565b6106138183610bab565b600554600160a01b900460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b6106a2610958565b6001600160a01b03166106b361072a565b6001600160a01b0316146106d95760405162461bcd60e51b81526004016104fe9061142f565b6105c86000610ccb565b6106eb610958565b6001600160a01b03166106fc61072a565b6001600160a01b0316146107225760405162461bcd60e51b81526004016104fe9061142f565b6105c8610d1d565b6005546001600160a01b031690565b6060600480546103e79061169d565b6006546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610779903090600401611167565b60206040518083038186803b15801561079157600080fd5b505afa1580156107a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c99190611133565b905090565b600080600160006107dd610958565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156108295760405162461bcd60e51b81526004016104fe906115af565b61083d610834610958565b8585840361095c565b5060019392505050565b600061047e610854610958565b8484610a10565b61086361066b565b156108805760405162461bcd60e51b81526004016104fe906113bd565b600061088a610958565b90506108968183610d7e565b600654610613906001600160a01b03168284610e70565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031681565b6108ef610958565b6001600160a01b031661090061072a565b6001600160a01b0316146109265760405162461bcd60e51b81526004016104fe9061142f565b6001600160a01b03811661094c5760405162461bcd60e51b81526004016104fe906112a9565b61095581610ccb565b50565b3390565b6001600160a01b0383166109825760405162461bcd60e51b81526004016104fe906114ea565b6001600160a01b0382166109a85760405162461bcd60e51b81526004016104fe906112ef565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a0390859061162b565b60405180910390a3505050565b6001600160a01b038316610a365760405162461bcd60e51b81526004016104fe906114a5565b6001600160a01b038216610a5c5760405162461bcd60e51b81526004016104fe906111f6565b610a67838383610e6b565b6001600160a01b03831660009081526020819052604090205481811015610aa05760405162461bcd60e51b81526004016104fe90611331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ad7908490611642565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b21919061162b565b60405180910390a3610b34848484610e6b565b50505050565b610b4261066b565b610b5e5760405162461bcd60e51b81526004016104fe90611239565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b94610958565b604051610ba19190611167565b60405180910390a1565b6001600160a01b038216610bd15760405162461bcd60e51b81526004016104fe906115f4565b610bdd60008383610e6b565b8060026000828254610bef9190611642565b90915550506001600160a01b03821660009081526020819052604081208054839290610c1c908490611642565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c5f90859061162b565b60405180910390a361061360008383610e6b565b610b34846323b872dd60e01b858585604051602401610c949392919061117b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610e8f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d2561066b565b15610d425760405162461bcd60e51b81526004016104fe906113bd565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b94610958565b6001600160a01b038216610da45760405162461bcd60e51b81526004016104fe90611464565b610db082600083610e6b565b6001600160a01b03821660009081526020819052604090205481811015610de95760405162461bcd60e51b81526004016104fe90611267565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e1890849061165a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e5b90869061162b565b60405180910390a3610e6b836000845b505050565b610e6b8363a9059cbb60e01b8484604051602401610c9492919061119f565b6000610ee4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f1e9092919063ffffffff16565b805190915015610e6b5780806020019051810190610f0291906110fb565b610e6b5760405162461bcd60e51b81526004016104fe90611565565b6060610f2d8484600085610f35565b949350505050565b606082471015610f575760405162461bcd60e51b81526004016104fe90611377565b610f6085610ff5565b610f7c5760405162461bcd60e51b81526004016104fe9061152e565b600080866001600160a01b03168587604051610f98919061114b565b60006040518083038185875af1925050503d8060008114610fd5576040519150601f19603f3d011682016040523d82523d6000602084013e610fda565b606091505b5091509150610fea828286610ffb565b979650505050505050565b3b151590565b6060831561100a575081610521565b82511561101a5782518084602001fd5b8160405162461bcd60e51b81526004016104fe91906111c3565b80356001600160a01b038116811461069557600080fd5b60006020828403121561105c578081fd5b61052182611034565b60008060408385031215611077578081fd5b61108083611034565b915061108e60208401611034565b90509250929050565b6000806000606084860312156110ab578081fd5b6110b484611034565b92506110c260208501611034565b9150604084013590509250925092565b600080604083850312156110e4578182fd5b6110ed83611034565b946020939093013593505050565b60006020828403121561110c578081fd5b81518015158114610521578182fd5b60006020828403121561112c578081fd5b5035919050565b600060208284031215611144578081fd5b5051919050565b6000825161115d818460208701611671565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526111e2816040850160208701611671565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611655576116556116d8565b500190565b60008282101561166c5761166c6116d8565b500390565b60005b8381101561168c578181015183820152602001611674565b83811115610b345750506000910152565b6002810460018216806116b157607f821691505b602082108114156116d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122082161ee157fc9e4d38b9ad4f8e9a880864c39b114391feebbd46d16a19c83f8064736f6c634300080000330000000000000000000000003a35e98cc7390a15d458bb85f9a12823e2ef25ed

Deployed Bytecode

0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610323578063a9059cbb14610343578063c7d5c31814610363578063dd62ed3e14610383578063e01fe7fe146103a3578063f2fde38b146103b857610140565b8063715018a6146102ad5780638456cb59146102c25780638da5cb5b146102d757806395d89b41146102f9578063a20592a81461030e57610140565b806339509351116100fd57806339509351146102015780633f4ba83a1461022157806340c10f1914610238578063500e9ab7146102585780635c975abb1461027857806370a082311461028d57610140565b806306fdde0314610145578063095ea7b31461017057806318160ddd1461019d57806323b872dd146101bf578063313ce567146101df57610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a6103d8565b60405161016791906111c3565b60405180910390f35b34801561017c57600080fd5b5061019061018b3660046110d2565b61046a565b60405161016791906111b8565b3480156101a957600080fd5b506101b2610487565b604051610167919061162b565b3480156101cb57600080fd5b506101906101da366004611097565b61048d565b3480156101eb57600080fd5b506101f4610528565b6040516101679190611634565b34801561020d57600080fd5b5061019061021c3660046110d2565b61052d565b34801561022d57600080fd5b50610236610581565b005b34801561024457600080fd5b506102366102533660046110d2565b6105ca565b34801561026457600080fd5b5061023661027336600461111b565b610617565b34801561028457600080fd5b5061019061066b565b34801561029957600080fd5b506101b26102a836600461104b565b61067b565b3480156102b957600080fd5b5061023661069a565b3480156102ce57600080fd5b506102366106e3565b3480156102e357600080fd5b506102ec61072a565b6040516101679190611167565b34801561030557600080fd5b5061015a610739565b34801561031a57600080fd5b506101b2610748565b34801561032f57600080fd5b5061019061033e3660046110d2565b6107ce565b34801561034f57600080fd5b5061019061035e3660046110d2565b610847565b34801561036f57600080fd5b5061023661037e36600461111b565b61085b565b34801561038f57600080fd5b506101b261039e366004611065565b6108ad565b3480156103af57600080fd5b506102ec6108d8565b3480156103c457600080fd5b506102366103d336600461104b565b6108e7565b6060600380546103e79061169d565b80601f01602080910402602001604051908101604052809291908181526020018280546104139061169d565b80156104605780601f1061043557610100808354040283529160200191610460565b820191906000526020600020905b81548152906001019060200180831161044357829003601f168201915b5050505050905090565b600061047e610477610958565b848461095c565b50600192915050565b60025490565b600061049a848484610a10565b6001600160a01b0384166000908152600160205260408120816104bb610958565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105075760405162461bcd60e51b81526004016104fe906113e7565b60405180910390fd5b61051b85610513610958565b85840361095c565b60019150505b9392505050565b601290565b600061047e61053a610958565b848460016000610548610958565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461057c9190611642565b61095c565b610589610958565b6001600160a01b031661059a61072a565b6001600160a01b0316146105c05760405162461bcd60e51b81526004016104fe9061142f565b6105c8610b3a565b565b6105d2610958565b6001600160a01b03166105e361072a565b6001600160a01b0316146106095760405162461bcd60e51b81526004016104fe9061142f565b6106138282610bab565b5050565b61061f61066b565b1561063c5760405162461bcd60e51b81526004016104fe906113bd565b6000610646610958565b600654909150610661906001600160a01b0316823085610c73565b6106138183610bab565b600554600160a01b900460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b6106a2610958565b6001600160a01b03166106b361072a565b6001600160a01b0316146106d95760405162461bcd60e51b81526004016104fe9061142f565b6105c86000610ccb565b6106eb610958565b6001600160a01b03166106fc61072a565b6001600160a01b0316146107225760405162461bcd60e51b81526004016104fe9061142f565b6105c8610d1d565b6005546001600160a01b031690565b6060600480546103e79061169d565b6006546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610779903090600401611167565b60206040518083038186803b15801561079157600080fd5b505afa1580156107a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c99190611133565b905090565b600080600160006107dd610958565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156108295760405162461bcd60e51b81526004016104fe906115af565b61083d610834610958565b8585840361095c565b5060019392505050565b600061047e610854610958565b8484610a10565b61086361066b565b156108805760405162461bcd60e51b81526004016104fe906113bd565b600061088a610958565b90506108968183610d7e565b600654610613906001600160a01b03168284610e70565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031681565b6108ef610958565b6001600160a01b031661090061072a565b6001600160a01b0316146109265760405162461bcd60e51b81526004016104fe9061142f565b6001600160a01b03811661094c5760405162461bcd60e51b81526004016104fe906112a9565b61095581610ccb565b50565b3390565b6001600160a01b0383166109825760405162461bcd60e51b81526004016104fe906114ea565b6001600160a01b0382166109a85760405162461bcd60e51b81526004016104fe906112ef565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a0390859061162b565b60405180910390a3505050565b6001600160a01b038316610a365760405162461bcd60e51b81526004016104fe906114a5565b6001600160a01b038216610a5c5760405162461bcd60e51b81526004016104fe906111f6565b610a67838383610e6b565b6001600160a01b03831660009081526020819052604090205481811015610aa05760405162461bcd60e51b81526004016104fe90611331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ad7908490611642565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b21919061162b565b60405180910390a3610b34848484610e6b565b50505050565b610b4261066b565b610b5e5760405162461bcd60e51b81526004016104fe90611239565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b94610958565b604051610ba19190611167565b60405180910390a1565b6001600160a01b038216610bd15760405162461bcd60e51b81526004016104fe906115f4565b610bdd60008383610e6b565b8060026000828254610bef9190611642565b90915550506001600160a01b03821660009081526020819052604081208054839290610c1c908490611642565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c5f90859061162b565b60405180910390a361061360008383610e6b565b610b34846323b872dd60e01b858585604051602401610c949392919061117b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610e8f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d2561066b565b15610d425760405162461bcd60e51b81526004016104fe906113bd565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b94610958565b6001600160a01b038216610da45760405162461bcd60e51b81526004016104fe90611464565b610db082600083610e6b565b6001600160a01b03821660009081526020819052604090205481811015610de95760405162461bcd60e51b81526004016104fe90611267565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e1890849061165a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e5b90869061162b565b60405180910390a3610e6b836000845b505050565b610e6b8363a9059cbb60e01b8484604051602401610c9492919061119f565b6000610ee4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f1e9092919063ffffffff16565b805190915015610e6b5780806020019051810190610f0291906110fb565b610e6b5760405162461bcd60e51b81526004016104fe90611565565b6060610f2d8484600085610f35565b949350505050565b606082471015610f575760405162461bcd60e51b81526004016104fe90611377565b610f6085610ff5565b610f7c5760405162461bcd60e51b81526004016104fe9061152e565b600080866001600160a01b03168587604051610f98919061114b565b60006040518083038185875af1925050503d8060008114610fd5576040519150601f19603f3d011682016040523d82523d6000602084013e610fda565b606091505b5091509150610fea828286610ffb565b979650505050505050565b3b151590565b6060831561100a575081610521565b82511561101a5782518084602001fd5b8160405162461bcd60e51b81526004016104fe91906111c3565b80356001600160a01b038116811461069557600080fd5b60006020828403121561105c578081fd5b61052182611034565b60008060408385031215611077578081fd5b61108083611034565b915061108e60208401611034565b90509250929050565b6000806000606084860312156110ab578081fd5b6110b484611034565b92506110c260208501611034565b9150604084013590509250925092565b600080604083850312156110e4578182fd5b6110ed83611034565b946020939093013593505050565b60006020828403121561110c578081fd5b81518015158114610521578182fd5b60006020828403121561112c578081fd5b5035919050565b600060208284031215611144578081fd5b5051919050565b6000825161115d818460208701611671565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526111e2816040850160208701611671565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611655576116556116d8565b500190565b60008282101561166c5761166c6116d8565b500390565b60005b8381101561168c578181015183820152602001611674565b83811115610b345750506000910152565b6002810460018216806116b157607f821691505b602082108114156116d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122082161ee157fc9e4d38b9ad4f8e9a880864c39b114391feebbd46d16a19c83f8064736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003a35e98cc7390a15d458bb85f9a12823e2ef25ed

-----Decoded View---------------
Arg [0] : penkyToken (address): 0x3A35e98cC7390A15d458Bb85f9a12823e2eF25eD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a35e98cc7390a15d458bb85f9a12823e2ef25ed


Deployed Bytecode Sourcemap

32537:1223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6242:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8409:169;;;;;;;;;;-1:-1:-1;8409:169:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7362:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9060:492::-;;;;;;;;;;-1:-1:-1;9060:492:0;;;;;:::i;:::-;;:::i;7204:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9961:215::-;;;;;;;;;;-1:-1:-1;9961:215:0;;;;;:::i;:::-;;:::i;33146:65::-;;;;;;;;;;;;;:::i;:::-;;32937:95;;;;;;;;;;-1:-1:-1;32937:95:0;;;;;:::i;:::-;;:::i;33219:206::-;;;;;;;;;;-1:-1:-1;33219:206:0;;;;;:::i;:::-;;:::i;31322:86::-;;;;;;;;;;;;;:::i;7533:127::-;;;;;;;;;;-1:-1:-1;7533:127:0;;;;;:::i;:::-;;:::i;17791:94::-;;;;;;;;;;;;;:::i;33077:61::-;;;;;;;;;;;;;:::i;17140:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6461:104::-;;;;;;;;;;;;;:::i;33437:118::-;;;;;;;;;;;;;:::i;10679:413::-;;;;;;;;;;-1:-1:-1;10679:413:0;;;;;:::i;:::-;;:::i;7873:175::-;;;;;;;;;;-1:-1:-1;7873:175:0;;;;;:::i;:::-;;:::i;33563:194::-;;;;;;;;;;-1:-1:-1;33563:194:0;;;;;:::i;:::-;;:::i;8111:151::-;;;;;;;;;;-1:-1:-1;8111:151:0;;;;;:::i;:::-;;:::i;32674:19::-;;;;;;;;;;;;;:::i;18040:192::-;;;;;;;;;;-1:-1:-1;18040:192:0;;;;;:::i;:::-;;:::i;6242:100::-;6296:13;6329:5;6322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6242:100;:::o;8409:169::-;8492:4;8509:39;8518:12;:10;:12::i;:::-;8532:7;8541:6;8509:8;:39::i;:::-;-1:-1:-1;8566:4:0;8409:169;;;;:::o;7362:108::-;7450:12;;7362:108;:::o;9060:492::-;9200:4;9217:36;9227:6;9235:9;9246:6;9217:9;:36::i;:::-;-1:-1:-1;;;;;9293:19:0;;9266:24;9293:19;;;:11;:19;;;;;9266:24;9313:12;:10;:12::i;:::-;-1:-1:-1;;;;;9293:33:0;-1:-1:-1;;;;;9293:33:0;;;;;;;;;;;;;9266:60;;9365:6;9345:16;:26;;9337:79;;;;-1:-1:-1;;;9337:79:0;;;;;;;:::i;:::-;;;;;;;;;9452:57;9461:6;9469:12;:10;:12::i;:::-;9502:6;9483:16;:25;9452:8;:57::i;:::-;9540:4;9533:11;;;9060:492;;;;;;:::o;7204:93::-;7287:2;7204:93;:::o;9961:215::-;10049:4;10066:80;10075:12;:10;:12::i;:::-;10089:7;10135:10;10098:11;:25;10110:12;:10;:12::i;:::-;-1:-1:-1;;;;;10098:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10098:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10066:8;:80::i;33146:65::-;17371:12;:10;:12::i;:::-;-1:-1:-1;;;;;17360:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17360:23:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;;;;;;:::i;:::-;33193:10:::1;:8;:10::i;:::-;33146:65::o:0;32937:95::-;17371:12;:10;:12::i;:::-;-1:-1:-1;;;;;17360:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17360:23:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;;;;;;:::i;:::-;33007:17:::1;33013:2;33017:6;33007:5;:17::i;:::-;32937:95:::0;;:::o;33219:206::-;31648:8;:6;:8::i;:::-;31647:9;31639:38;;;;-1:-1:-1;;;31639:38:0;;;;;;;:::i;:::-;33298:12:::1;33313;:10;:12::i;:::-;33336:5;::::0;33298:27;;-1:-1:-1;33336:51:0::1;::::0;-1:-1:-1;;;;;33336:5:0::1;33298:27:::0;33373:4:::1;33380:6:::0;33336:22:::1;:51::i;:::-;33398:19;33404:4;33410:6;33398:5;:19::i;31322:86::-:0;31393:7;;-1:-1:-1;;;31393:7:0;;;;;31322:86::o;7533:127::-;-1:-1:-1;;;;;7634:18:0;;7607:7;7634:18;;;;;;;;;;;7533:127;;;;:::o;17791:94::-;17371:12;:10;:12::i;:::-;-1:-1:-1;;;;;17360:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17360:23:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;;;;;;:::i;:::-;17856:21:::1;17874:1;17856:9;:21::i;33077:61::-:0;17371:12;:10;:12::i;:::-;-1:-1:-1;;;;;17360:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17360:23:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;;;;;;:::i;:::-;33122:8:::1;:6;:8::i;17140:87::-:0;17213:6;;-1:-1:-1;;;;;17213:6:0;17140:87;:::o;6461:104::-;6517:13;6550:7;6543:14;;;;;:::i;33437:118::-;33517:5;;:30;;-1:-1:-1;;;33517:30:0;;33490:7;;-1:-1:-1;;;;;33517:5:0;;:15;;:30;;33541:4;;33517:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33510:37;;33437:118;:::o;10679:413::-;10772:4;10789:24;10816:11;:25;10828:12;:10;:12::i;:::-;-1:-1:-1;;;;;10816:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10816:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10869:35:0;;;;10861:85;;;;-1:-1:-1;;;10861:85:0;;;;;;;:::i;:::-;10982:67;10991:12;:10;:12::i;:::-;11005:7;11033:15;11014:16;:34;10982:8;:67::i;:::-;-1:-1:-1;11080:4:0;;10679:413;-1:-1:-1;;;10679:413:0:o;7873:175::-;7959:4;7976:42;7986:12;:10;:12::i;:::-;8000:9;8011:6;7976:9;:42::i;33563:194::-;31648:8;:6;:8::i;:::-;31647:9;31639:38;;;;-1:-1:-1;;;31639:38:0;;;;;;;:::i;:::-;33649:12:::1;33664;:10;:12::i;:::-;33649:27;;33687:19;33693:4;33699:6;33687:5;:19::i;:::-;33717:5;::::0;:32:::1;::::0;-1:-1:-1;;;;;33717:5:0::1;33736:4:::0;33742:6;33717:18:::1;:32::i;8111:151::-:0;-1:-1:-1;;;;;8227:18:0;;;8200:7;8227:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8111:151::o;32674:19::-;;;-1:-1:-1;;;;;32674:19:0;;:::o;18040:192::-;17371:12;:10;:12::i;:::-;-1:-1:-1;;;;;17360:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17360:23:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18129:22:0;::::1;18121:73;;;;-1:-1:-1::0;;;18121:73:0::1;;;;;;;:::i;:::-;18205:19;18215:8;18205:9;:19::i;:::-;18040:192:::0;:::o;674:98::-;754:10;674:98;:::o;14363:380::-;-1:-1:-1;;;;;14499:19:0;;14491:68;;;;-1:-1:-1;;;14491:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14578:21:0;;14570:68;;;;-1:-1:-1;;;14570:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14651:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14703:32;;;;;14681:6;;14703:32;:::i;:::-;;;;;;;;14363:380;;;:::o;11582:733::-;-1:-1:-1;;;;;11722:20:0;;11714:70;;;;-1:-1:-1;;;11714:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11803:23:0;;11795:71;;;;-1:-1:-1;;;11795:71:0;;;;;;;:::i;:::-;11879:47;11900:6;11908:9;11919:6;11879:20;:47::i;:::-;-1:-1:-1;;;;;11963:17:0;;11939:21;11963:17;;;;;;;;;;;11999:23;;;;11991:74;;;;-1:-1:-1;;;11991:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12101:17:0;;;:9;:17;;;;;;;;;;;12121:22;;;12101:42;;12165:20;;;;;;;;:30;;12137:6;;12101:9;12165:30;;12137:6;;12165:30;:::i;:::-;;;;;;;;12230:9;-1:-1:-1;;;;;12213:35:0;12222:6;-1:-1:-1;;;;;12213:35:0;;12241:6;12213:35;;;;;;:::i;:::-;;;;;;;;12261:46;12281:6;12289:9;12300:6;12261:19;:46::i;:::-;11582:733;;;;:::o;32381:120::-;31925:8;:6;:8::i;:::-;31917:41;;;;-1:-1:-1;;;31917:41:0;;;;;;;:::i;:::-;32440:7:::1;:15:::0;;-1:-1:-1;;;;32440:15:0::1;::::0;;32471:22:::1;32480:12;:10;:12::i;:::-;32471:22;;;;;;:::i;:::-;;;;;;;;32381:120::o:0;12602:399::-;-1:-1:-1;;;;;12686:21:0;;12678:65;;;;-1:-1:-1;;;12678:65:0;;;;;;;:::i;:::-;12756:49;12785:1;12789:7;12798:6;12756:20;:49::i;:::-;12834:6;12818:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12851:18:0;;:9;:18;;;;;;;;;;:28;;12873:6;;12851:9;:28;;12873:6;;12851:28;:::i;:::-;;;;-1:-1:-1;;12895:37:0;;-1:-1:-1;;;;;12895:37:0;;;12912:1;;12895:37;;;;12925:6;;12895:37;:::i;:::-;;;;;;;;12945:48;12973:1;12977:7;12986:6;12945:19;:48::i;27233:248::-;27377:96;27397:5;27427:27;;;27456:4;27462:2;27466:5;27404:68;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;27404:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;27404:68:0;-1:-1:-1;;;;;;27404:68:0;;;;;;;;;;27377:19;:96::i;18240:173::-;18315:6;;;-1:-1:-1;;;;;18332:17:0;;;-1:-1:-1;;;;;;18332:17:0;;;;;;;18365:40;;18315:6;;;18332:17;18315:6;;18365:40;;18296:16;;18365:40;18240:173;;:::o;32122:118::-;31648:8;:6;:8::i;:::-;31647:9;31639:38;;;;-1:-1:-1;;;31639:38:0;;;;;;;:::i;:::-;32182:7:::1;:14:::0;;-1:-1:-1;;;;32182:14:0::1;-1:-1:-1::0;;;32182:14:0::1;::::0;;32212:20:::1;32219:12;:10;:12::i;13334:591::-:0;-1:-1:-1;;;;;13418:21:0;;13410:67;;;;-1:-1:-1;;;13410:67:0;;;;;;;:::i;:::-;13490:49;13511:7;13528:1;13532:6;13490:20;:49::i;:::-;-1:-1:-1;;;;;13577:18:0;;13552:22;13577:18;;;;;;;;;;;13614:24;;;;13606:71;;;;-1:-1:-1;;;13606:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13713:18:0;;:9;:18;;;;;;;;;;13734:23;;;13713:44;;13779:12;:22;;13751:6;;13713:9;13779:22;;13751:6;;13779:22;:::i;:::-;;;;-1:-1:-1;;13819:37:0;;13845:1;;-1:-1:-1;;;;;13819:37:0;;;;;;;13849:6;;13819:37;:::i;:::-;;;;;;;;13869:48;13889:7;13906:1;13910:6;13869:48;13334:591;;;:::o;27014:211::-;27131:86;27151:5;27181:23;;;27206:2;27210:5;27158:58;;;;;;;;;:::i;29587:716::-;30011:23;30037:69;30065:4;30037:69;;;;;;;;;;;;;;;;;30045:5;-1:-1:-1;;;;;30037:27:0;;;:69;;;;;:::i;:::-;30121:17;;30011:95;;-1:-1:-1;30121:21:0;30117:179;;30218:10;30207:30;;;;;;;;;;;;:::i;:::-;30199:85;;;;-1:-1:-1;;;30199:85:0;;;;;;;:::i;21936:229::-;22073:12;22105:52;22127:6;22135:4;22141:1;22144:12;22105:21;:52::i;:::-;22098:59;21936:229;-1:-1:-1;;;;21936:229:0:o;23056:510::-;23226:12;23284:5;23259:21;:30;;23251:81;;;;-1:-1:-1;;;23251:81:0;;;;;;;:::i;:::-;23351:18;23362:6;23351:10;:18::i;:::-;23343:60;;;;-1:-1:-1;;;23343:60:0;;;;;;;:::i;:::-;23417:12;23431:23;23458:6;-1:-1:-1;;;;;23458:11:0;23477:5;23484:4;23458:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23416:73;;;;23507:51;23524:7;23533:10;23545:12;23507:16;:51::i;:::-;23500:58;23056:510;-1:-1:-1;;;;;;;23056:510:0:o;19130:387::-;19453:20;19501:8;;;19130:387::o;25742:712::-;25892:12;25921:7;25917:530;;;-1:-1:-1;25952:10:0;25945:17;;25917:530;26066:17;;:21;26062:374;;26264:10;26258:17;26325:15;26312:10;26308:2;26304:19;26297:44;26212:148;26407:12;26400:20;;-1:-1:-1;;;26400:20:0;;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:190;;1708:2;1696:9;1687:7;1683:23;1679:32;1676:2;;;1729:6;1721;1714:22;1676:2;-1:-1:-1;1757:23:1;;1666:120;-1:-1:-1;1666:120:1:o;1791:194::-;;1914:2;1902:9;1893:7;1889:23;1885:32;1882:2;;;1935:6;1927;1920:22;1882:2;-1:-1:-1;1963:16:1;;1872:113;-1:-1:-1;1872:113:1:o;1990:274::-;;2157:6;2151:13;2173:53;2219:6;2214:3;2207:4;2199:6;2195:17;2173:53;:::i;:::-;2242:16;;;;;2127:137;-1:-1:-1;;2127:137:1:o;2269:203::-;-1:-1:-1;;;;;2433:32:1;;;;2415:51;;2403:2;2388:18;;2370:102::o;2477:375::-;-1:-1:-1;;;;;2735:15:1;;;2717:34;;2787:15;;;;2782:2;2767:18;;2760:43;2834:2;2819:18;;2812:34;;;;2667:2;2652:18;;2634:218::o;2857:274::-;-1:-1:-1;;;;;3049:32:1;;;;3031:51;;3113:2;3098:18;;3091:34;3019:2;3004:18;;2986:145::o;3136:187::-;3301:14;;3294:22;3276:41;;3264:2;3249:18;;3231:92::o;3549:383::-;;3698:2;3687:9;3680:21;3730:6;3724:13;3773:6;3768:2;3757:9;3753:18;3746:34;3789:66;3848:6;3843:2;3832:9;3828:18;3823:2;3815:6;3811:15;3789:66;:::i;:::-;3916:2;3895:15;-1:-1:-1;;3891:29:1;3876:45;;;;3923:2;3872:54;;3670:262;-1:-1:-1;;3670:262:1:o;3937:399::-;4139:2;4121:21;;;4178:2;4158:18;;;4151:30;4217:34;4212:2;4197:18;;4190:62;-1:-1:-1;;;4283:2:1;4268:18;;4261:33;4326:3;4311:19;;4111:225::o;4341:344::-;4543:2;4525:21;;;4582:2;4562:18;;;4555:30;-1:-1:-1;;;4616:2:1;4601:18;;4594:50;4676:2;4661:18;;4515:170::o;4690:398::-;4892:2;4874:21;;;4931:2;4911:18;;;4904:30;4970:34;4965:2;4950:18;;4943:62;-1:-1:-1;;;5036:2:1;5021:18;;5014:32;5078:3;5063:19;;4864:224::o;5093:402::-;5295:2;5277:21;;;5334:2;5314:18;;;5307:30;5373:34;5368:2;5353:18;;5346:62;-1:-1:-1;;;5439:2:1;5424:18;;5417:36;5485:3;5470:19;;5267:228::o;5500:398::-;5702:2;5684:21;;;5741:2;5721:18;;;5714:30;5780:34;5775:2;5760:18;;5753:62;-1:-1:-1;;;5846:2:1;5831:18;;5824:32;5888:3;5873:19;;5674:224::o;5903:402::-;6105:2;6087:21;;;6144:2;6124:18;;;6117:30;6183:34;6178:2;6163:18;;6156:62;-1:-1:-1;;;6249:2:1;6234:18;;6227:36;6295:3;6280:19;;6077:228::o;6310:402::-;6512:2;6494:21;;;6551:2;6531:18;;;6524:30;6590:34;6585:2;6570:18;;6563:62;-1:-1:-1;;;6656:2:1;6641:18;;6634:36;6702:3;6687:19;;6484:228::o;6717:340::-;6919:2;6901:21;;;6958:2;6938:18;;;6931:30;-1:-1:-1;;;6992:2:1;6977:18;;6970:46;7048:2;7033:18;;6891:166::o;7062:404::-;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:38;7456:3;7441:19;;7236:230::o;7471:356::-;7673:2;7655:21;;;7692:18;;;7685:30;7751:34;7746:2;7731:18;;7724:62;7818:2;7803:18;;7645:182::o;7832:397::-;8034:2;8016:21;;;8073:2;8053:18;;;8046:30;8112:34;8107:2;8092:18;;8085:62;-1:-1:-1;;;8178:2:1;8163:18;;8156:31;8219:3;8204:19;;8006:223::o;8234:401::-;8436:2;8418:21;;;8475:2;8455:18;;;8448:30;8514:34;8509:2;8494:18;;8487:62;-1:-1:-1;;;8580:2:1;8565:18;;8558:35;8625:3;8610:19;;8408:227::o;8640:400::-;8842:2;8824:21;;;8881:2;8861:18;;;8854:30;8920:34;8915:2;8900:18;;8893:62;-1:-1:-1;;;8986:2:1;8971:18;;8964:34;9030:3;9015:19;;8814:226::o;9045:353::-;9247:2;9229:21;;;9286:2;9266:18;;;9259:30;9325:31;9320:2;9305:18;;9298:59;9389:2;9374:18;;9219:179::o;9403:406::-;9605:2;9587:21;;;9644:2;9624:18;;;9617:30;9683:34;9678:2;9663:18;;9656:62;-1:-1:-1;;;9749:2:1;9734:18;;9727:40;9799:3;9784:19;;9577:232::o;9814:401::-;10016:2;9998:21;;;10055:2;10035:18;;;10028:30;10094:34;10089:2;10074:18;;10067:62;-1:-1:-1;;;10160:2:1;10145:18;;10138:35;10205:3;10190:19;;9988:227::o;10220:355::-;10422:2;10404:21;;;10461:2;10441:18;;;10434:30;10500:33;10495:2;10480:18;;10473:61;10566:2;10551:18;;10394:181::o;10580:177::-;10726:25;;;10714:2;10699:18;;10681:76::o;10762:184::-;10934:4;10922:17;;;;10904:36;;10892:2;10877:18;;10859:87::o;10951:128::-;;11022:1;11018:6;11015:1;11012:13;11009:2;;;11028:18;;:::i;:::-;-1:-1:-1;11064:9:1;;10999:80::o;11084:125::-;;11152:1;11149;11146:8;11143:2;;;11157:18;;:::i;:::-;-1:-1:-1;11194:9:1;;11133:76::o;11214:258::-;11286:1;11296:113;11310:6;11307:1;11304:13;11296:113;;;11386:11;;;11380:18;11367:11;;;11360:39;11332:2;11325:10;11296:113;;;11427:6;11424:1;11421:13;11418:2;;;-1:-1:-1;;11462:1:1;11444:16;;11437:27;11267:205::o;11477:380::-;11562:1;11552:12;;11609:1;11599:12;;;11620:2;;11674:4;11666:6;11662:17;11652:27;;11620:2;11727;11719:6;11716:14;11696:18;11693:38;11690:2;;;11773:10;11768:3;11764:20;11761:1;11754:31;11808:4;11805:1;11798:15;11836:4;11833:1;11826:15;11690:2;;11532:325;;;:::o;11862:127::-;11923:10;11918:3;11914:20;11911:1;11904:31;11954:4;11951:1;11944:15;11978:4;11975:1;11968:15

Swarm Source

ipfs://82161ee157fc9e4d38b9ad4f8e9a880864c39b114391feebbd46d16a19c83f80
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.