ETH Price: $3,396.90 (-1.14%)
Gas: 2 Gwei

Contract

0x69D26C4901765ffA6d7716045b680c9574CB00B5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve201970342024-06-29 11:25:5945 mins ago1719660359IN
Honkler: HONKLER Token
0 ETH0.000098992.13530662
Approve201966722024-06-29 10:13:231 hr ago1719656003IN
Honkler: HONKLER Token
0 ETH0.000107232.29991772
Transfer201934732024-06-28 23:29:1112 hrs ago1719617351IN
Honkler: HONKLER Token
0 ETH0.000056941.54983063
Approve201906352024-06-28 13:58:3522 hrs ago1719583115IN
Honkler: HONKLER Token
0 ETH0.00030526.59200434
Approve201886762024-06-28 7:25:2328 hrs ago1719559523IN
Honkler: HONKLER Token
0 ETH0.000346377.43858279
Approve201852832024-06-27 20:02:1140 hrs ago1719518531IN
Honkler: HONKLER Token
0 ETH0.000369937.99005194
Approve201852032024-06-27 19:46:1140 hrs ago1719517571IN
Honkler: HONKLER Token
0 ETH0.000421889.06034804
Approve201838102024-06-27 15:05:5945 hrs ago1719500759IN
Honkler: HONKLER Token
0 ETH0.0008680518.61828811
Approve201805802024-06-27 4:17:112 days ago1719461831IN
Honkler: HONKLER Token
0 ETH0.000187264.03946375
Approve201795722024-06-27 0:54:472 days ago1719449687IN
Honkler: HONKLER Token
0 ETH0.000244925.25996758
Transfer201782722024-06-26 20:33:472 days ago1719434027IN
Honkler: HONKLER Token
0 ETH0.00022467.02885191
Transfer201780072024-06-26 19:40:112 days ago1719430811IN
Honkler: HONKLER Token
0 ETH0.0006143912.52464313
Approve201778292024-06-26 19:04:232 days ago1719428663IN
Honkler: HONKLER Token
0 ETH0.000376958.14156133
Approve201760262024-06-26 13:00:472 days ago1719406847IN
Honkler: HONKLER Token
0 ETH0.000286836.16008887
Approve201759692024-06-26 12:49:232 days ago1719406163IN
Honkler: HONKLER Token
0 ETH0.000086323.26256348
Approve201733512024-06-26 4:03:593 days ago1719374639IN
Honkler: HONKLER Token
0 ETH0.00005672.32990894
Approve201733152024-06-26 3:56:473 days ago1719374207IN
Honkler: HONKLER Token
0 ETH0.000088971.91082347
Transfer201730082024-06-26 2:54:593 days ago1719370499IN
Honkler: HONKLER Token
0 ETH0.000092863.31668285
Approve201730082024-06-26 2:54:593 days ago1719370499IN
Honkler: HONKLER Token
0 ETH0.000067782.31668285
Approve201715962024-06-25 22:11:113 days ago1719353471IN
Honkler: HONKLER Token
0 ETH0.000153953.32078151
Approve201693142024-06-25 14:32:233 days ago1719325943IN
Honkler: HONKLER Token
0 ETH0.000570212.24552993
Approve201678012024-06-25 9:28:114 days ago1719307691IN
Honkler: HONKLER Token
0 ETH0.000275235.91089913
Approve201628862024-06-24 16:58:114 days ago1719248291IN
Honkler: HONKLER Token
0 ETH0.0011833125.37987037
Approve201620812024-06-24 14:16:474 days ago1719238607IN
Honkler: HONKLER Token
0 ETH0.0005417811.6203147
Approve201617082024-06-24 13:02:114 days ago1719234131IN
Honkler: HONKLER Token
0 ETH0.000266375.71329667
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
199686062024-05-28 13:16:4731 days ago1716902207
Honkler: HONKLER Token
2 ETH
199685982024-05-28 13:15:1131 days ago1716902111  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Honkler

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 1 : Honkler.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

// lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// lib/v2-core/contracts/interfaces/IUniswapV2Factory.sol

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// lib/v2-core/contracts/interfaces/IUniswapV2Pair.sol

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// lib/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

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

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// lib/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) internal _balances;

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

    uint256 internal _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 returns (string memory) {
        return _name;
    }

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// src/Honkler.sol

/* Interface for the honking contract that tracks honkers
 */
interface IHonkingContract {
    function hasHonked(address _user) external pure returns (bool);
}

/* Honkler is an ERC20 token. Upon creation, 69,696,969 HONKLER is minted to this contract.
 * No more HONKLER can be minted or burned, ever. The contract Owner deploys all of the HONKLER 
 * into liquidity on Uniswap against ETH sent to the liquidity deployment function call.
 */
contract Honkler is ERC20, Ownable {

    error LiquidityAlreadyDeployed();
    error LiquidityDeploymentFailed();
    error CannotHaveOverMaxAllowedAfterBuy();
    error OnlyHonkersCanBuy();

    address public HonklerLpAddress;
    address HonkingContractAddress;
    bool onlyHonkers;
    uint256 public maxAllowed =  2439393915 * 10**15; // 3.5% of total supply max by default

    IUniswapV2Router02 public uniswapRouter = 
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    constructor()
        ERC20(string("Honkler"), string("HONKLER"))
        Ownable(0xE0e448F85fF036226243C95f9a91Af9CB2C893c1)
    {
        _mint(address(this), 69696969 * 10**18);
    }

    /* External function to deploy liquidity on Uniswap against all the HONKLER in this contract.
     * The caller must send ETH to this function all of which will be used for liquidity.
     */
    function deployLiquidity(address _honkingAddress)
        external
        payable
        onlyOwner
    {
        if (HonklerLpAddress != address(0)) {
            revert LiquidityAlreadyDeployed();
        }

        onlyHonkers = true;
        HonkingContractAddress = _honkingAddress;

        IERC20 honkler = IERC20(address(this));
        honkler.approve(address(uniswapRouter), honkler.balanceOf(address(this)));

        uniswapRouter.addLiquidityETH{value: msg.value}(
            address(this),
            honkler.balanceOf(address(this)),
            0,
            0,
            msg.sender,
            block.timestamp
        );
        HonklerLpAddress = IUniswapV2Factory(uniswapRouter.factory()).getPair(
            address(this), uniswapRouter.WETH());

        if (HonklerLpAddress == address(0) ||
            honkler.balanceOf(address(this)) != 0    
        ) {
            revert LiquidityDeploymentFailed();
        }
    }

    /* Overridden _update function, to allow only honkers to buy on Uniswap, and to prevent buys
     * where the buyer will have over maxAllowed after the buy order goes through.
     */
    function _update(address from, address to, uint256 value) internal override {
        if (HonklerLpAddress != address(0) &&
            from == HonklerLpAddress &&
            to != address(0) &&
            to != address(uniswapRouter)
        ) {

            // This is a buy transaction on Uniswap that may have buy restrictions

            // Check if honker, if onlyHonkers flag is set to true
            if (onlyHonkers) {
                IHonkingContract honkingContract = IHonkingContract(HonkingContractAddress);
                bool hasHonked = honkingContract.hasHonked(to);
                if (!hasHonked) {
                    revert OnlyHonkersCanBuy();
                }
            }

            // Check if 'to' will have more than maxAllowed after this buy
            if (_balances[to] + value > maxAllowed) {
                revert CannotHaveOverMaxAllowedAfterBuy();
            }

            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }

            unchecked {
                _balances[from] = fromBalance - value;
                _balances[to] += value;
            }

            emit Transfer(from, to, value);

        } else {

            if (from == address(0)) {
                // Overflow check required: The rest of the code assumes that totalSupply never overflows
                _totalSupply += value;
            } else {
                uint256 fromBalance = _balances[from];
                if (fromBalance < value) {
                    revert ERC20InsufficientBalance(from, fromBalance, value);
                }
                unchecked {
                    // Overflow not possible: value <= fromBalance <= totalSupply.
                    _balances[from] = fromBalance - value;
                }
            }

            if (to == address(0)) {
                unchecked {
                    // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                    _totalSupply -= value;
                }
            } else {
                unchecked {
                    // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                    _balances[to] += value;
                }
            }

            emit Transfer(from, to, value);
        }
    }

    /* External function called by Owner to set the maxAllowed (after buy) variable.
     */
    function setMaxAllowed(uint256 _max)
        external
        onlyOwner
    {
        maxAllowed = _max;
    }

    /* External function called by Owner to set the onlyHonkers flag to false. This allows
     * anyone to buy HONKLER from Uniswap, not just honkers.
     */
    function allowAllBuys()
        external
        onlyOwner
    {
        onlyHonkers = false;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotHaveOverMaxAllowedAfterBuy","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"LiquidityAlreadyDeployed","type":"error"},{"inputs":[],"name":"LiquidityDeploymentFailed","type":"error"},{"inputs":[],"name":"OnlyHonkersCanBuy","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"HonklerLpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowAllBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_honkingAddress","type":"address"}],"name":"deployLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxAllowed","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526a02048fcf21cd9ef05f8000600855600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055348015610044575f80fd5b5073e0e448f85ff036226243c95f9a91af9cb2c893c1604051806040016040528060078152602001662437b735b632b960c91b815250604051806040016040528060078152602001662427a725a622a960c91b81525081600390816100a99190610528565b5060046100b68282610528565b5050506001600160a01b0381166100e757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100f08161010b565b50610106306a39a6e842a13c064184000061015c565b610632565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101855760405163ec442f0560e01b81525f60048201526024016100de565b6101905f8383610194565b5050565b6006546001600160a01b0316158015906101bb57506006546001600160a01b038481169116145b80156101cf57506001600160a01b03821615155b80156101e957506009546001600160a01b03838116911614155b1561037d57600754600160a01b900460ff16156102935760075460405163343f3fe360e11b81526001600160a01b038481166004830152909116905f90829063687e7fc690602401602060405180830381865afa15801561024c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027091906105e7565b90508061029057604051635efe556360e11b815260040160405180910390fd5b50505b6008546001600160a01b0383165f908152602081905260409020546102b990839061060d565b11156102d857604051632702d41360e11b815260040160405180910390fd5b6001600160a01b0383165f908152602081905260409020548181101561032a5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100de565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290925f80516020611c53833981519152910160405180910390a350505050565b6001600160a01b0383166103a7578060025f82825461039c919061060d565b909155506104179050565b6001600160a01b0383165f90815260208190526040902054818110156103f95760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100de565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661043357600280548290039055610451565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03165f80516020611c538339815191528360405161048391815260200190565b60405180910390a35b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806104b957607f821691505b6020821081036104d757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561048c57805f5260205f20601f840160051c810160208510156105025750805b601f840160051c820191505b81811015610521575f815560010161050e565b5050505050565b81516001600160401b0381111561054157610541610491565b6105558161054f84546104a5565b846104dd565b602080601f831160018114610588575f84156105715750858301515b5f19600386901b1c1916600185901b1785556105df565b5f85815260208120601f198616915b828110156105b657888601518255948401946001909101908401610597565b50858210156105d357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156105f7575f80fd5b81518015158114610606575f80fd5b9392505050565b8082018082111561062c57634e487b7160e01b5f52601160045260245ffd5b92915050565b6116148061063f5f395ff3fe608060405260043610610123575f3560e01c80638da5cb5b116100a1578063ca39967111610071578063dd62ed3e11610057578063dd62ed3e14610345578063f2fde38b14610396578063f46015ed146103b5575f80fd5b8063ca39967114610304578063d8b1d6cb14610319575f80fd5b80638da5cb5b1461029457806395d89b41146102be578063a9059cbb146102d2578063b9bb0ec8146102f1575f80fd5b806323b872dd116100f657806370a08231116100dc57806370a08231146101ee578063715018a61461022f578063735de9f714610243575f80fd5b806323b872dd146101b4578063313ce567146101d3575f80fd5b806306fdde0314610127578063095ea7b3146101515780631318d0fd1461018057806318160ddd14610196575b5f80fd5b348015610132575f80fd5b5061013b6103d4565b604051610148919061138d565b60405180910390f35b34801561015c575f80fd5b5061017061016b366004611401565b610464565b6040519015158152602001610148565b34801561018b575f80fd5b5061019461047d565b005b3480156101a1575f80fd5b506002545b604051908152602001610148565b3480156101bf575f80fd5b506101706101ce36600461142b565b6104af565b3480156101de575f80fd5b5060405160128152602001610148565b3480156101f9575f80fd5b506101a6610208366004611469565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b34801561023a575f80fd5b506101946104d2565b34801561024e575f80fd5b5060095461026f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610148565b34801561029f575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661026f565b3480156102c9575f80fd5b5061013b6104e5565b3480156102dd575f80fd5b506101706102ec366004611401565b6104f4565b6101946102ff366004611469565b610501565b34801561030f575f80fd5b506101a660085481565b348015610324575f80fd5b5060065461026f9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610350575f80fd5b506101a661035f36600461148b565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156103a1575f80fd5b506101946103b0366004611469565b610afe565b3480156103c0575f80fd5b506101946103cf3660046114c2565b610b66565b6060600380546103e3906114d9565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906114d9565b801561045a5780601f106104315761010080835404028352916020019161045a565b820191905f5260205f20905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b5f33610471818585610b73565b60019150505b92915050565b610485610b85565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f336104bc858285610bd8565b6104c7858585610ca5565b506001949350505050565b6104da610b85565b6104e35f610d4e565b565b6060600480546103e3906114d9565b5f33610471818585610ca5565b610509610b85565b60065473ffffffffffffffffffffffffffffffffffffffff1615610559576040517f049f8aca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffff0000000000000000000000000000000000000000009092169190911774010000000000000000000000000000000000000000179091556009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905292839263095ea7b39291169083906370a0823190602401602060405180830381865afa15801561061a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063e919061152a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156106ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106cf9190611541565b506009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905273ffffffffffffffffffffffffffffffffffffffff9283169263f305d719923492918616906370a0823190602401602060405180830381865afa15801561074a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076e919061152a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201525f6044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156107f4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108199190611560565b5050600954604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff909216925063c45a01559160048083019260209291908290030181865afa158015610889573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ad919061158b565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610933573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610957919061158b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e9919061158b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790551580610ac357506040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8216906370a0823190602401602060405180830381865afa158015610a9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac0919061152a565b15155b15610afa576040517fa9b844eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b610b06610b85565b73ffffffffffffffffffffffffffffffffffffffff8116610b5a576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b610b6381610d4e565b50565b610b6e610b85565b600855565b610b808383836001610dc4565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104e3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c9f5781811015610c91576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610b51565b610c9f84848484035f610dc4565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cf4576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8216610d43576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b610b80838383610f09565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff8416610e13576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8316610e62576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015610c9f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610efb91815260200190565b60405180910390a350505050565b60065473ffffffffffffffffffffffffffffffffffffffff1615801590610f4a575060065473ffffffffffffffffffffffffffffffffffffffff8481169116145b8015610f6b575073ffffffffffffffffffffffffffffffffffffffff821615155b8015610f92575060095473ffffffffffffffffffffffffffffffffffffffff838116911614155b156111e65760075474010000000000000000000000000000000000000000900460ff161561108c576007546040517f687e7fc600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152909116905f90829063687e7fc690602401602060405180830381865afa15801561102c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110509190611541565b905080611089576040517fbdfcaac600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505b60085473ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020546110bf9083906115a6565b11156110f7576040517f4e05a82600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561117c576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610b51565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610efb565b73ffffffffffffffffffffffffffffffffffffffff831661121d578060025f82825461121291906115a6565b909155506112cd9050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156112a2576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610b51565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff82166112f657600280548290039055611321565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138091815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610b63575f80fd5b5f8060408385031215611412575f80fd5b823561141d816113e0565b946020939093013593505050565b5f805f6060848603121561143d575f80fd5b8335611448816113e0565b92506020840135611458816113e0565b929592945050506040919091013590565b5f60208284031215611479575f80fd5b8135611484816113e0565b9392505050565b5f806040838503121561149c575f80fd5b82356114a7816113e0565b915060208301356114b7816113e0565b809150509250929050565b5f602082840312156114d2575f80fd5b5035919050565b600181811c908216806114ed57607f821691505b602082108103611524577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f6020828403121561153a575f80fd5b5051919050565b5f60208284031215611551575f80fd5b81518015158114611484575f80fd5b5f805f60608486031215611572575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561159b575f80fd5b8151611484816113e0565b80820180821115610477577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea26469706673582212209d497f81090b96199ae203f1b0a0c0ade753c420998ab3868d777760868f7b2364736f6c63430008190033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x608060405260043610610123575f3560e01c80638da5cb5b116100a1578063ca39967111610071578063dd62ed3e11610057578063dd62ed3e14610345578063f2fde38b14610396578063f46015ed146103b5575f80fd5b8063ca39967114610304578063d8b1d6cb14610319575f80fd5b80638da5cb5b1461029457806395d89b41146102be578063a9059cbb146102d2578063b9bb0ec8146102f1575f80fd5b806323b872dd116100f657806370a08231116100dc57806370a08231146101ee578063715018a61461022f578063735de9f714610243575f80fd5b806323b872dd146101b4578063313ce567146101d3575f80fd5b806306fdde0314610127578063095ea7b3146101515780631318d0fd1461018057806318160ddd14610196575b5f80fd5b348015610132575f80fd5b5061013b6103d4565b604051610148919061138d565b60405180910390f35b34801561015c575f80fd5b5061017061016b366004611401565b610464565b6040519015158152602001610148565b34801561018b575f80fd5b5061019461047d565b005b3480156101a1575f80fd5b506002545b604051908152602001610148565b3480156101bf575f80fd5b506101706101ce36600461142b565b6104af565b3480156101de575f80fd5b5060405160128152602001610148565b3480156101f9575f80fd5b506101a6610208366004611469565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b34801561023a575f80fd5b506101946104d2565b34801561024e575f80fd5b5060095461026f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610148565b34801561029f575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661026f565b3480156102c9575f80fd5b5061013b6104e5565b3480156102dd575f80fd5b506101706102ec366004611401565b6104f4565b6101946102ff366004611469565b610501565b34801561030f575f80fd5b506101a660085481565b348015610324575f80fd5b5060065461026f9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610350575f80fd5b506101a661035f36600461148b565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156103a1575f80fd5b506101946103b0366004611469565b610afe565b3480156103c0575f80fd5b506101946103cf3660046114c2565b610b66565b6060600380546103e3906114d9565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906114d9565b801561045a5780601f106104315761010080835404028352916020019161045a565b820191905f5260205f20905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b5f33610471818585610b73565b60019150505b92915050565b610485610b85565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f336104bc858285610bd8565b6104c7858585610ca5565b506001949350505050565b6104da610b85565b6104e35f610d4e565b565b6060600480546103e3906114d9565b5f33610471818585610ca5565b610509610b85565b60065473ffffffffffffffffffffffffffffffffffffffff1615610559576040517f049f8aca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffff0000000000000000000000000000000000000000009092169190911774010000000000000000000000000000000000000000179091556009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905292839263095ea7b39291169083906370a0823190602401602060405180830381865afa15801561061a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063e919061152a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156106ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106cf9190611541565b506009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905273ffffffffffffffffffffffffffffffffffffffff9283169263f305d719923492918616906370a0823190602401602060405180830381865afa15801561074a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076e919061152a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201525f6044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156107f4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108199190611560565b5050600954604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff909216925063c45a01559160048083019260209291908290030181865afa158015610889573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ad919061158b565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610933573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610957919061158b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e9919061158b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790551580610ac357506040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8216906370a0823190602401602060405180830381865afa158015610a9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac0919061152a565b15155b15610afa576040517fa9b844eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b610b06610b85565b73ffffffffffffffffffffffffffffffffffffffff8116610b5a576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b610b6381610d4e565b50565b610b6e610b85565b600855565b610b808383836001610dc4565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104e3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c9f5781811015610c91576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610b51565b610c9f84848484035f610dc4565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cf4576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8216610d43576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b610b80838383610f09565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff8416610e13576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8316610e62576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610b51565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015610c9f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610efb91815260200190565b60405180910390a350505050565b60065473ffffffffffffffffffffffffffffffffffffffff1615801590610f4a575060065473ffffffffffffffffffffffffffffffffffffffff8481169116145b8015610f6b575073ffffffffffffffffffffffffffffffffffffffff821615155b8015610f92575060095473ffffffffffffffffffffffffffffffffffffffff838116911614155b156111e65760075474010000000000000000000000000000000000000000900460ff161561108c576007546040517f687e7fc600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152909116905f90829063687e7fc690602401602060405180830381865afa15801561102c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110509190611541565b905080611089576040517fbdfcaac600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505b60085473ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020546110bf9083906115a6565b11156110f7576040517f4e05a82600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561117c576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610b51565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610efb565b73ffffffffffffffffffffffffffffffffffffffff831661121d578060025f82825461121291906115a6565b909155506112cd9050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156112a2576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610b51565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff82166112f657600280548290039055611321565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138091815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610b63575f80fd5b5f8060408385031215611412575f80fd5b823561141d816113e0565b946020939093013593505050565b5f805f6060848603121561143d575f80fd5b8335611448816113e0565b92506020840135611458816113e0565b929592945050506040919091013590565b5f60208284031215611479575f80fd5b8135611484816113e0565b9392505050565b5f806040838503121561149c575f80fd5b82356114a7816113e0565b915060208301356114b7816113e0565b809150509250929050565b5f602082840312156114d2575f80fd5b5035919050565b600181811c908216806114ed57607f821691505b602082108103611524577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f6020828403121561153a575f80fd5b5051919050565b5f60208284031215611551575f80fd5b81518015158114611484575f80fd5b5f805f60608486031215611572575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561159b575f80fd5b8151611484816113e0565b80820180821115610477577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea26469706673582212209d497f81090b96199ae203f1b0a0c0ade753c420998ab3868d777760868f7b2364736f6c63430008190033

Deployed Bytecode Sourcemap

33488:4938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23954:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26173:186;;;;;;;;;;-1:-1:-1;26173:186:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;26173:186:0;975:187:1;38325:99:0;;;;;;;;;;;;;:::i;:::-;;25024:97;;;;;;;;;;-1:-1:-1;25102:12:0;;25024:97;;;1313:25:1;;;1301:2;1286:18;25024:97:0;1167:177:1;26919:244:0;;;;;;;;;;-1:-1:-1;26919:244:0;;;;;:::i;:::-;;:::i;24882:82::-;;;;;;;;;;-1:-1:-1;24882:82:0;;24955:2;1952:36:1;;1940:2;1925:18;24882:82:0;1810:184:1;25179:116:0;;;;;;;;;;-1:-1:-1;25179:116:0;;;;;:::i;:::-;25270:18;;25244:7;25270:18;;;;;;;;;;;;25179:116;19320:101;;;;;;;;;;;;;:::i;33874:113::-;;;;;;;;;;-1:-1:-1;33874:113:0;;;;;;;;;;;2454:42:1;2442:55;;;2424:74;;2412:2;2397:18;33874:113:0;2251:253:1;18665:85:0;;;;;;;;;;-1:-1:-1;18737:6:0;;;;18665:85;;24156:93;;;;;;;;;;;;;:::i;25490:178::-;;;;;;;;;;-1:-1:-1;25490:178:0;;;;;:::i;:::-;;:::i;34382:950::-;;;;;;:::i;:::-;;:::i;33780:48::-;;;;;;;;;;;;;;;;33685:31;;;;;;;;;;-1:-1:-1;33685:31:0;;;;;;;;25726:140;;;;;;;;;;-1:-1:-1;25726:140:0;;;;;:::i;:::-;25832:18;;;;25806:7;25832:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25726:140;19570:215;;;;;;;;;;-1:-1:-1;19570:215:0;;;;;:::i;:::-;;:::i;38049:110::-;;;;;;;;;;-1:-1:-1;38049:110:0;;;;;:::i;:::-;;:::i;23954:89::-;23999:13;24031:5;24024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23954:89;:::o;26173:186::-;26246:4;10127:10;26300:31;10127:10;26316:7;26325:5;26300:8;:31::i;:::-;26348:4;26341:11;;;26173:186;;;;;:::o;38325:99::-;18558:13;:11;:13::i;:::-;38398:11:::1;:19:::0;;;::::1;::::0;;38325:99::o;26919:244::-;27006:4;10127:10;27062:37;27078:4;10127:10;27093:5;27062:15;:37::i;:::-;27109:26;27119:4;27125:2;27129:5;27109:9;:26::i;:::-;-1:-1:-1;27152:4:0;;26919:244;-1:-1:-1;;;;26919:244:0:o;19320:101::-;18558:13;:11;:13::i;:::-;19384:30:::1;19411:1;19384:18;:30::i;:::-;19320:101::o:0;24156:93::-;24203:13;24235:7;24228:14;;;;;:::i;25490:178::-;25559:4;10127:10;25613:27;10127:10;25630:2;25634:5;25613:9;:27::i;34382:950::-;18558:13;:11;:13::i;:::-;34501:16:::1;::::0;:30:::1;:16;:30:::0;34497:94:::1;;34554:26;;;;;;;;;;;;;;34497:94;34601:11;:18:::0;;34629:40:::1;::::0;;::::1;::::0;;;;;;;;34601:18;34629:40;;;;34752:13:::1;::::0;34768:32:::1;::::0;;;;34712:4:::1;34768:32;::::0;::::1;2424:74:1::0;;;34712:4:0;;;34728:15:::1;::::0;34752:13;::::1;::::0;34712:4;;34768:17:::1;::::0;2397:18:1;;34768:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34728:73;::::0;;::::1;::::0;;;;;;4153:42:1;4141:55;;;34728:73:0::1;::::0;::::1;4123:74:1::0;4213:18;;;4206:34;4096:18;;34728:73:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;34812:13:0::1;::::0;34900:32:::1;::::0;;;;34881:4:::1;34900:32;::::0;::::1;2424:74:1::0;;;34812:13:0::1;::::0;;::::1;::::0;:29:::1;::::0;34849:9:::1;::::0;34881:4;34900:17;::::1;::::0;::::1;::::0;2397:18:1;;34900:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34812:213;::::0;;::::1;::::0;;;;;;4846:42:1;4915:15;;;34812:213:0::1;::::0;::::1;4897:34:1::0;4947:18;;;4940:34;34946:1:0::1;4990:18:1::0;;;4983:34;;;5033:18;;;5026:34;34976:10:0::1;5076:19:1::0;;;5069:44;35000:15:0::1;5129:19:1::0;;;5122:35;4808:19;;34812:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;35072:13:0::1;::::0;:23:::1;::::0;;;;;;;:13:::1;::::0;;::::1;::::0;-1:-1:-1;35072:21:0::1;::::0;:23:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:13;:23:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35054:50;;;35126:4;35133:13;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35054:100;::::0;;::::1;::::0;;;;;;5919:42:1;5988:15;;;35054:100:0::1;::::0;::::1;5970:34:1::0;6040:15;;6020:18;;;6013:43;5882:18;;35054:100:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35035:16;:119:::0;;;::::1;;::::0;;;::::1;::::0;;::::1;::::0;;35169:30;;:83:::1;;-1:-1:-1::0;35215:32:0::1;::::0;;;;35241:4:::1;35215:32;::::0;::::1;2424:74:1::0;35215:17:0::1;::::0;::::1;::::0;::::1;::::0;2397:18:1;;35215:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37:::0;::::1;35169:83;35165:161;;;35288:27;;;;;;;;;;;;;;35165:161;34487:845;34382:950:::0;:::o;19570:215::-;18558:13;:11;:13::i;:::-;19654:22:::1;::::0;::::1;19650:91;;19699:31;::::0;::::1;::::0;;19727:1:::1;19699:31;::::0;::::1;2424:74:1::0;2397:18;;19699:31:0::1;;;;;;;;19650:91;19750:28;19769:8;19750:18;:28::i;:::-;19570:215:::0;:::o;38049:110::-;18558:13;:11;:13::i;:::-;38135:10:::1;:17:::0;38049:110::o;30869:128::-;30953:37;30962:5;30969:7;30978:5;30985:4;30953:8;:37::i;:::-;30869:128;;;:::o;18823:162::-;18737:6;;18882:23;18737:6;10127:10;18882:23;18878:101;;18928:40;;;;;10127:10;18928:40;;;2424:74:1;2397:18;;18928:40:0;2251:253:1;32543:477:0;25832:18;;;;32642:24;25832:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;32728:17;32708:37;;32704:310;;32784:5;32765:16;:24;32761:130;;;32816:60;;;;;6299:42:1;6287:55;;32816:60:0;;;6269:74:1;6359:18;;;6352:34;;;6402:18;;;6395:34;;;6242:18;;32816:60:0;6067:368:1;32761:130:0;32932:57;32941:5;32948:7;32976:5;32957:16;:24;32983:5;32932:8;:57::i;:::-;32632:388;32543:477;;;:::o;27536:300::-;27619:18;;;27615:86;;27660:30;;;;;27687:1;27660:30;;;2424:74:1;2397:18;;27660:30:0;2251:253:1;27615:86:0;27714:16;;;27710:86;;27753:32;;;;;27782:1;27753:32;;;2424:74:1;2397:18;;27753:32:0;2251:253:1;27710:86:0;27805:24;27813:4;27819:2;27823:5;27805:7;:24::i;19939:187::-;20031:6;;;;20047:17;;;;;;;;;;;20079:40;;20031:6;;;20047:17;20031:6;;20079:40;;20012:16;;20079:40;20002:124;19939:187;:::o;31829:432::-;31941:19;;;31937:89;;31983:32;;;;;32012:1;31983:32;;;2424:74:1;2397:18;;31983:32:0;2251:253:1;31937:89:0;32039:21;;;32035:90;;32083:31;;;;;32111:1;32083:31;;;2424:74:1;2397:18;;32083:31:0;2251:253:1;32035:90:0;32134:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;32179:76;;;;32229:7;32213:31;;32222:5;32213:31;;;32238:5;32213:31;;;;1313:25:1;;1301:2;1286:18;;1167:177;32213:31:0;;;;;;;;31829:432;;;;:::o;35526:2424::-;35616:16;;:30;:16;:30;;;;:70;;-1:-1:-1;35670:16:0;;;35662:24;;;35670:16;;35662:24;35616:70;:102;;;;-1:-1:-1;35702:16:0;;;;;35616:102;:146;;;;-1:-1:-1;35748:13:0;;;35734:28;;;35748:13;;35734:28;;35616:146;35612:2332;;;35943:11;;;;;;;35939:289;;;36026:22;;36084:29;;;;;36026:22;2442:55:1;;;36084:29:0;;;2424:74:1;36026:22:0;;;;35974:32;;36026:22;;36084:25;;2397:18:1;;36084:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36067:46;;36136:9;36131:83;;36176:19;;;;;;;;;;;;;;36131:83;35956:272;;35939:289;36345:10;;36321:13;;;:9;:13;;;;;;;;;;;:21;;36337:5;;36321:21;:::i;:::-;:34;36317:114;;;36382:34;;;;;;;;;;;;;;36317:114;36467:15;;;36445:19;36467:15;;;;;;;;;;;36500:19;;;36496:115;;;36546:50;;;;;6299:42:1;6287:55;;36546:50:0;;;6269:74:1;6359:18;;;6352:34;;;6402:18;;;6395:34;;;6242:18;;36546:50:0;6067:368:1;36496:115:0;36653:15;;;;:9;:15;;;;;;;;;;;36671:19;;;36653:37;;36708:13;;;;;;;;;;:22;;;;;;36764:25;;1313::1;;;36708:13:0;;36764:25;;1286:18:1;36764:25:0;1167:177:1;35612:2332:0;36826:18;;;36822:588;;36986:5;36970:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;36822:588:0;;-1:-1:-1;36822:588:0;;37052:15;;;37030:19;37052:15;;;;;;;;;;;37089:19;;;37085:123;;;37139:50;;;;;6299:42:1;6287:55;;37139:50:0;;;6269:74:1;6359:18;;;6352:34;;;6402:18;;;6395:34;;;6242:18;;37139:50:0;6067:368:1;37085:123:0;37340:15;;;:9;:15;;;;;;;;;;37358:19;;;;37340:37;;36822:588;37428:16;;;37424:465;;37603:12;:21;;;;;;;37424:465;;;37834:13;;;:9;:13;;;;;;;;;;:22;;;;;;37424:465;37923:2;37908:25;;37917:4;37908:25;;;37927:5;37908:25;;;;1313::1;;1301:2;1286:18;;1167:177;37908:25:0;;;;;;;;35526:2424;;;:::o;14:477:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;482:2;412:66;407:2;399:6;395:15;391:88;380:9;376:104;372:113;364:121;;;14:477;;;;:::o;496:154::-;582:42;575:5;571:54;564:5;561:65;551:93;;640:1;637;630:12;655:315;723:6;731;784:2;772:9;763:7;759:23;755:32;752:52;;;800:1;797;790:12;752:52;839:9;826:23;858:31;883:5;858:31;:::i;:::-;908:5;960:2;945:18;;;;932:32;;-1:-1:-1;;;655:315:1:o;1349:456::-;1426:6;1434;1442;1495:2;1483:9;1474:7;1470:23;1466:32;1463:52;;;1511:1;1508;1501:12;1463:52;1550:9;1537:23;1569:31;1594:5;1569:31;:::i;:::-;1619:5;-1:-1:-1;1676:2:1;1661:18;;1648:32;1689:33;1648:32;1689:33;:::i;:::-;1349:456;;1741:7;;-1:-1:-1;;;1795:2:1;1780:18;;;;1767:32;;1349:456::o;1999:247::-;2058:6;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2166:9;2153:23;2185:31;2210:5;2185:31;:::i;:::-;2235:5;1999:247;-1:-1:-1;;;1999:247:1:o;2740:388::-;2808:6;2816;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:31;2968:5;2943:31;:::i;:::-;2993:5;-1:-1:-1;3050:2:1;3035:18;;3022:32;3063:33;3022:32;3063:33;:::i;:::-;3115:7;3105:17;;;2740:388;;;;;:::o;3133:180::-;3192:6;3245:2;3233:9;3224:7;3220:23;3216:32;3213:52;;;3261:1;3258;3251:12;3213:52;-1:-1:-1;3284:23:1;;3133:180;-1:-1:-1;3133:180:1:o;3318:437::-;3397:1;3393:12;;;;3440;;;3461:61;;3515:4;3507:6;3503:17;3493:27;;3461:61;3568:2;3560:6;3557:14;3537:18;3534:38;3531:218;;3605:77;3602:1;3595:88;3706:4;3703:1;3696:15;3734:4;3731:1;3724:15;3531:218;;3318:437;;;:::o;3760:184::-;3830:6;3883:2;3871:9;3862:7;3858:23;3854:32;3851:52;;;3899:1;3896;3889:12;3851:52;-1:-1:-1;3922:16:1;;3760:184;-1:-1:-1;3760:184:1:o;4251:277::-;4318:6;4371:2;4359:9;4350:7;4346:23;4342:32;4339:52;;;4387:1;4384;4377:12;4339:52;4419:9;4413:16;4472:5;4465:13;4458:21;4451:5;4448:32;4438:60;;4494:1;4491;4484:12;5168:306;5256:6;5264;5272;5325:2;5313:9;5304:7;5300:23;5296:32;5293:52;;;5341:1;5338;5331:12;5293:52;5370:9;5364:16;5354:26;;5420:2;5409:9;5405:18;5399:25;5389:35;;5464:2;5453:9;5449:18;5443:25;5433:35;;5168:306;;;;;:::o;5479:251::-;5549:6;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;5650:9;5644:16;5669:31;5694:5;5669:31;:::i;6440:279::-;6505:9;;;6526:10;;;6523:190;;;6569:77;6566:1;6559:88;6670:4;6667:1;6660:15;6698:4;6695:1;6688:15

Swarm Source

ipfs://9d497f81090b96199ae203f1b0a0c0ade753c420998ab3868d777760868f7b23

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

$Honkler is a memecoin with slogan: The honking shall continue until morale improves.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.