ETH Price: $2,682.67 (+10.23%)
Gas: 2 Gwei

Token

THUNDER (THUN)
 

Overview

Max Total Supply

1,096,455,554.703340684232512079 THUN

Holders

909

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,182.843321951767388068 THUN

Value
$0.00
0xb908c667446b3335a290aaa2e28365f6203a9882
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:
Thunder

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-23
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

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

contract Owned {
    address public owner;
    address public proposedOwner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() virtual {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev propeses a new owner
     * Can only be called by the current owner.
     */
    function proposeOwner(address payable _newOwner) external onlyOwner {
        proposedOwner = _newOwner;
    }

    /**
     * @dev claims ownership of the contract
     * Can only be called by the new proposed owner.
     */
    function claimOwnership() external {
        require(msg.sender == proposedOwner);
        emit OwnershipTransferred(owner, proposedOwner);
        owner = proposedOwner;
    }
}

interface IPika {
    function minSupply() external returns (uint256);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    function burn(uint256 value) external;
}

struct Wallets {
    address team;
    address charity;
    address staking;
    address liquidity;
}

contract Thunder is ERC20, Owned {
    IPika pika;
    Wallets public pikaWallets;
    address public beneficiary;
    bool public feesEnabled;
    mapping(address => bool) public isExcludedFromFee;

    event BeneficiaryUpdated(address oldBeneficiary, address newBeneficiary);
    event FeesEnabledUpdated(bool enabled);
    event ExcludedFromFeeUpdated(address account, bool excluded);
    event PikaWalletsUpdated();
    event Evolved(uint256 amountPika, uint256 amountThunder);

    constructor(address _pika, Wallets memory _pikaWallets)
        ERC20("THUNDER", "THUN")
    {
        pika = IPika(_pika);
        pikaWallets = _pikaWallets;
        // premine for uniswap liquidity
        uint256 totalSupply = 70000000 ether;
        feesEnabled = false;
        _mint(_msgSender(), totalSupply);
        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        beneficiary = msg.sender;
    }

    function evolve(uint256 _amountPika) external {
        pika.transferFrom(msg.sender, address(this), _amountPika);
        uint256 amountThunder = _amountPika / 10000;

        uint256 burnedPika = calculateFee(_amountPika, 2500);
        if (pika.totalSupply() - burnedPika >= pika.minSupply()) {
            pika.burn(burnedPika);
        } else {
            burnedPika = 0;
        }

        uint256 lpRewards = calculateFee(_amountPika, 100);
        uint256 charityTeamAmount = lpRewards / 4;
        pika.transfer(pikaWallets.liquidity, lpRewards);
        pika.transfer(pikaWallets.charity, charityTeamAmount);
        pika.transfer(pikaWallets.team, charityTeamAmount);

        pika.transfer(
            pikaWallets.staking,
            _amountPika - burnedPika - lpRewards - charityTeamAmount * 2
        );

        _mint(msg.sender, amountThunder);
        emit Evolved(_amountPika, amountThunder);
    }

    /**
     * @dev if fees are enabled, subtract 2.25% fee and send it to beneficiary
     * @dev after a certain threshold, try to swap collected fees automatically
     * @dev if automatic swap fails (or beneficiary does not implement swapTokens function) transfer should still succeed
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(
            recipient != address(this),
            "Cannot send tokens to token contract"
        );
        if (
            !feesEnabled ||
            isExcludedFromFee[sender] ||
            isExcludedFromFee[recipient]
        ) {
            ERC20._transfer(sender, recipient, amount);
            return;
        }
        uint256 burnedFee = calculateFee(amount, 25);
        _burn(sender, burnedFee);

        uint256 transferFee = calculateFee(amount, 200);
        ERC20._transfer(sender, beneficiary, transferFee);
        ERC20._transfer(sender, recipient, amount - transferFee - burnedFee);
    }

    function calculateFee(uint256 _amount, uint256 _fee)
        public
        pure
        returns (uint256)
    {
        return (_amount * _fee) / 10000;
    }

    /**
     * @notice allows to burn tokens from own balance
     * @dev only allows burning tokens until minimum supply is reached
     * @param value amount of tokens to burn
     */
    function burn(uint256 value) public {
        _burn(_msgSender(), value);
    }

    /**
     * @notice sets recipient of transfer fee
     * @dev only callable by owner
     * @param _newBeneficiary new beneficiary
     */
    function setBeneficiary(address _newBeneficiary) public onlyOwner {
        setExcludeFromFee(_newBeneficiary, true);
        emit BeneficiaryUpdated(beneficiary, _newBeneficiary);
        beneficiary = _newBeneficiary;
    }

    /**
     * @notice sets the wallets for the pika tokens
     * @dev only callable by owner
     * @param _newWallets updated wallets
     */
    function setPikaWallets(Wallets memory _newWallets) public onlyOwner {
        emit PikaWalletsUpdated();
        pikaWallets = _newWallets;
    }

    /**
     * @notice sets whether account collects fees on token transfer
     * @dev only callable by owner
     * @param _enabled bool whether fees are enabled
     */
    function setFeesEnabled(bool _enabled) public onlyOwner {
        emit FeesEnabledUpdated(_enabled);
        feesEnabled = _enabled;
    }

    /**
     * @notice adds or removes an account that is exempt from fee collection
     * @dev only callable by owner
     * @param _account account to modify
     * @param _excluded new value
     */
    function setExcludeFromFee(address _account, bool _excluded)
        public
        onlyOwner
    {
        isExcludedFromFee[_account] = _excluded;
        emit ExcludedFromFeeUpdated(_account, _excluded);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_pika","type":"address"},{"components":[{"internalType":"address","name":"team","type":"address"},{"internalType":"address","name":"charity","type":"address"},{"internalType":"address","name":"staking","type":"address"},{"internalType":"address","name":"liquidity","type":"address"}],"internalType":"struct Wallets","name":"_pikaWallets","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldBeneficiary","type":"address"},{"indexed":false,"internalType":"address","name":"newBeneficiary","type":"address"}],"name":"BeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountPika","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountThunder","type":"uint256"}],"name":"Evolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"FeesEnabledUpdated","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":[],"name":"PikaWalletsUpdated","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":[{"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":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"calculateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountPika","type":"uint256"}],"name":"evolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pikaWallets","outputs":[{"internalType":"address","name":"team","type":"address"},{"internalType":"address","name":"charity","type":"address"},{"internalType":"address","name":"staking","type":"address"},{"internalType":"address","name":"liquidity","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"proposeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proposedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newBeneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"team","type":"address"},{"internalType":"address","name":"charity","type":"address"},{"internalType":"address","name":"staking","type":"address"},{"internalType":"address","name":"liquidity","type":"address"}],"internalType":"struct Wallets","name":"_newWallets","type":"tuple"}],"name":"setPikaWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200213738038062002137833981016040819052620000349162000399565b60408051808201825260078152662a242aa72222a960c91b6020808301918252835180850190945260048452632a242aa760e11b9084015281519192916200007f91600391620002d6565b50805162000095906004906020840190620002d6565b5050600580546001600160a01b031916339081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600780546001600160a01b038085166001600160a01b0319928316179092558251600880549184169183169190911790556020830151600980549184169183169190911790556040830151600a80549184169183169190911790556060830151600b8054919093169116179055600c805460ff60a01b191690556a39e7139a8c08fa06000000620001736200016c3390565b82620001ee565b5050336000818152600d602052604081208054600160ff199182168117909255737a250d5630b4cf539739df2c5dacb4c659f2488d9092527fe491d3ddab46a3ddc2b907c015f7e2686859fac31a4f174b9b79a82620b0324e8054909216179055600c80546001600160a01b031916909117905550620004b5565b6001600160a01b038216620002495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200025d919062000453565b90915550506001600160a01b038216600090815260208190526040812080548392906200028c90849062000453565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002e49062000478565b90600052602060002090601f01602090048101928262000308576000855562000353565b82601f106200032357805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035357825182559160200191906001019062000336565b506200036192915062000365565b5090565b5b8082111562000361576000815560010162000366565b80516001600160a01b03811681146200039457600080fd5b919050565b60008082840360a0811215620003ad578283fd5b620003b8846200037c565b92506080601f1982011215620003cc578182fd5b50604051608081016001600160401b0381118282101715620003fc57634e487b7160e01b83526041600452602483fd5b6040526200040d602085016200037c565b81526200041d604085016200037c565b602082015262000430606085016200037c565b604082015262000443608085016200037c565b6060820152809150509250929050565b600082198211156200047357634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200048d57607f821691505b60208210811415620004af57634e487b7160e01b600052602260045260246000fd5b50919050565b611c7280620004c56000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c806370a08231116100ee578063a9059cbb11610097578063d153b60c11610071578063d153b60c146103a7578063dd62ed3e146103ba578063e055555d146103f3578063f119f5671461044c57600080fd5b8063a9059cbb1461036e578063af9549e014610381578063b5ed298a1461039457600080fd5b8063a457c2d7116100c8578063a457c2d714610323578063a64e4f8a14610336578063a901dd921461035b57600080fd5b806370a08231146102df5780638da5cb5b1461030857806395d89b411461031b57600080fd5b8063313ce5671161015b5780633950935111610135578063395093511461028e57806342966c68146102a15780634e71e0c8146102b45780635342acb4146102bc57600080fd5b8063313ce5671461024157806334e731221461025057806338af3eed1461026357600080fd5b806318160ddd1161018c57806318160ddd146102095780631c31f7101461021b57806323b872dd1461022e57600080fd5b806306fdde03146101b3578063095727e0146101d1578063095ea7b3146101e6575b600080fd5b6101bb61045f565b6040516101c89190611a80565b60405180910390f35b6101e46101df366004611986565b6104f1565b005b6101f96101f4366004611923565b6105a6565b60405190151581526020016101c8565b6002545b6040519081526020016101c8565b6101e4610229366004611862565b6105bc565b6101f961023c3660046118b6565b61065f565b604051601281526020016101c8565b61020d61025e366004611a5f565b610744565b600c54610276906001600160a01b031681565b6040516001600160a01b0390911681526020016101c8565b6101f961029c366004611923565b610764565b6101e46102af366004611a2f565b61079b565b6101e46107a8565b6101f96102ca366004611862565b600d6020526000908152604090205460ff1681565b61020d6102ed366004611862565b6001600160a01b031660009081526020819052604090205490565b600554610276906001600160a01b031681565b6101bb61083a565b6101f9610331366004611923565b610849565b600c546101f99074010000000000000000000000000000000000000000900460ff1681565b6101e461036936600461194e565b610916565b6101f961037c366004611923565b6109ac565b6101e461038f3660046118f6565b6109b9565b6101e46103a2366004611862565b610a51565b600654610276906001600160a01b031681565b61020d6103c836600461187e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854600954600a54600b54610419936001600160a01b03908116938116928116911684565b604080516001600160a01b03958616815293851660208501529184169183019190915290911660608201526080016101c8565b6101e461045a366004611a2f565b610aa2565b60606003805461046e90611b96565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611b96565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b6005546001600160a01b0316331461050857600080fd5b6040517f3e85e06aae67714e679dacf3d57ddfb4bb18cb0b78ceeed5867b92fadb29397090600090a18051600880547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b039384161790915560208301516009805483169184169190911790556040830151600a80548316918416919091179055606090920151600b80549093169116179055565b60006105b333848461103a565b50600192915050565b6005546001600160a01b031633146105d357600080fd5b6105de8160016109b9565b600c54604080516001600160a01b03928316815291831660208301527fe72eaf6addaa195f3c83095031dd08f3a96808dcf047babed1fe4e4f69d6c622910160405180910390a1600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600061066c8484846111c7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61073985336107348685611b7f565b61103a565b506001949350505050565b60006127106107538385611b42565b61075d9190611b09565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105b3918590610734908690611af1565b6107a53382611340565b50565b6006546001600160a01b031633146107bf57600080fd5b6006546005546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600654600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b60606004805461046e90611b96565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161071c565b61090c33856107348685611b7f565b5060019392505050565b6005546001600160a01b0316331461092d57600080fd5b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a1600c805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60006105b33384846111c7565b6005546001600160a01b031633146109d057600080fd5b6001600160a01b0382166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2910160405180910390a15050565b6005546001600160a01b03163314610a6857600080fd5b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6007546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610b0d57600080fd5b505af1158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b45919061196a565b506000610b5461271083611b09565b90506000610b64836109c4610744565b9050600760009054906101000a90046001600160a01b03166001600160a01b0316638fe6cae36040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610bb657600080fd5b505af1158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee9190611a47565b600754604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905184926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015610c4b57600080fd5b505afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c839190611a47565b610c8d9190611b7f565b10610d0e576007546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015610cf157600080fd5b505af1158015610d05573d6000803e3d6000fd5b50505050610d12565b5060005b6000610d1f846064610744565b90506000610d2e600483611b09565b600754600b546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101869052929350169063a9059cbb90604401602060405180830381600087803b158015610d9957600080fd5b505af1158015610dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd1919061196a565b506007546009546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610e3b57600080fd5b505af1158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e73919061196a565b506007546008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610edd57600080fd5b505af1158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f15919061196a565b50600754600a546001600160a01b039182169163a9059cbb9116610f3a846002611b42565b85610f45888b611b7f565b610f4f9190611b7f565b610f599190611b7f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fb757600080fd5b505af1158015610fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fef919061196a565b50610ffa33856114fa565b60408051868152602081018690527f831683a0a2794a398b7d69c2b83ba3c01f936a631165543a1a686a39e3164886910160405180910390a15050505050565b6001600160a01b0383166110cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b038216611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821630141561125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f7261637400000000000000000000000000000000000000000000000000000000606482015260840161071c565b600c5474010000000000000000000000000000000000000000900460ff1615806112a157506001600160a01b0383166000908152600d602052604090205460ff165b806112c457506001600160a01b0382166000908152600d602052604090205460ff165b156112d9576112d48383836115f3565b505050565b60006112e6826019610744565b90506112f28482611340565b60006112ff8360c8610744565b600c5490915061131a9086906001600160a01b0316836115f3565b61133985858461132a8588611b7f565b6113349190611b7f565b6115f3565b5050505050565b6001600160a01b0382166113d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0382166000908152602081905260409020548181101561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6114898282611b7f565b6001600160a01b038416600090815260208190526040812091909155600280548492906114b7908490611b7f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016111ba565b6001600160a01b03821661156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161071c565b806002600082825461157c9190611af1565b90915550506001600160a01b038216600090815260208190526040812080548392906115a9908490611af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b03821661171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b038316600090815260208190526040902054818110156117c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161071c565b6117d28282611b7f565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611808908490611af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185491815260200190565b60405180910390a350505050565b600060208284031215611873578081fd5b813561075d81611c19565b60008060408385031215611890578081fd5b823561189b81611c19565b915060208301356118ab81611c19565b809150509250929050565b6000806000606084860312156118ca578081fd5b83356118d581611c19565b925060208401356118e581611c19565b929592945050506040919091013590565b60008060408385031215611908578182fd5b823561191381611c19565b915060208301356118ab81611c2e565b60008060408385031215611935578182fd5b823561194081611c19565b946020939093013593505050565b60006020828403121561195f578081fd5b813561075d81611c2e565b60006020828403121561197b578081fd5b815161075d81611c2e565b600060808284031215611997578081fd5b6040516080810181811067ffffffffffffffff821117156119df577f4e487b710000000000000000000000000000000000000000000000000000000083526041600452602483fd5b60405282356119ed81611c19565b815260208301356119fd81611c19565b60208201526040830135611a1081611c19565b60408201526060830135611a2381611c19565b60608201529392505050565b600060208284031215611a40578081fd5b5035919050565b600060208284031215611a58578081fd5b5051919050565b60008060408385031215611a71578182fd5b50508035926020909101359150565b6000602080835283518082850152825b81811015611aac57858101830151858201604001528201611a90565b81811115611abd5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115611b0457611b04611bea565b500190565b600082611b3d577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b7a57611b7a611bea565b500290565b600082821015611b9157611b91611bea565b500390565b600181811c90821680611baa57607f821691505b60208210811415611be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b03811681146107a557600080fd5b80151581146107a557600080fdfea2646970667358221220cab5754d60f1317f2e00057a741f552b7c60e3a75799ede7474a5bbf003cd0c364736f6c63430008040033000000000000000000000000a682ee16b497afceedf47e4820fc2af3845fd2d2000000000000000000000000af4d3ee0061c18eeb19f852658e4088e572f6a27000000000000000000000000969015c7dbefca0d72ee4d49f0b09bd1bea3a5570000000000000000000000003498296daa51c1da882376ed66bfbe3988745453000000000000000000000000f21b2f10e523a2a35c0797ce835523d1bd02e309

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c806370a08231116100ee578063a9059cbb11610097578063d153b60c11610071578063d153b60c146103a7578063dd62ed3e146103ba578063e055555d146103f3578063f119f5671461044c57600080fd5b8063a9059cbb1461036e578063af9549e014610381578063b5ed298a1461039457600080fd5b8063a457c2d7116100c8578063a457c2d714610323578063a64e4f8a14610336578063a901dd921461035b57600080fd5b806370a08231146102df5780638da5cb5b1461030857806395d89b411461031b57600080fd5b8063313ce5671161015b5780633950935111610135578063395093511461028e57806342966c68146102a15780634e71e0c8146102b45780635342acb4146102bc57600080fd5b8063313ce5671461024157806334e731221461025057806338af3eed1461026357600080fd5b806318160ddd1161018c57806318160ddd146102095780631c31f7101461021b57806323b872dd1461022e57600080fd5b806306fdde03146101b3578063095727e0146101d1578063095ea7b3146101e6575b600080fd5b6101bb61045f565b6040516101c89190611a80565b60405180910390f35b6101e46101df366004611986565b6104f1565b005b6101f96101f4366004611923565b6105a6565b60405190151581526020016101c8565b6002545b6040519081526020016101c8565b6101e4610229366004611862565b6105bc565b6101f961023c3660046118b6565b61065f565b604051601281526020016101c8565b61020d61025e366004611a5f565b610744565b600c54610276906001600160a01b031681565b6040516001600160a01b0390911681526020016101c8565b6101f961029c366004611923565b610764565b6101e46102af366004611a2f565b61079b565b6101e46107a8565b6101f96102ca366004611862565b600d6020526000908152604090205460ff1681565b61020d6102ed366004611862565b6001600160a01b031660009081526020819052604090205490565b600554610276906001600160a01b031681565b6101bb61083a565b6101f9610331366004611923565b610849565b600c546101f99074010000000000000000000000000000000000000000900460ff1681565b6101e461036936600461194e565b610916565b6101f961037c366004611923565b6109ac565b6101e461038f3660046118f6565b6109b9565b6101e46103a2366004611862565b610a51565b600654610276906001600160a01b031681565b61020d6103c836600461187e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854600954600a54600b54610419936001600160a01b03908116938116928116911684565b604080516001600160a01b03958616815293851660208501529184169183019190915290911660608201526080016101c8565b6101e461045a366004611a2f565b610aa2565b60606003805461046e90611b96565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611b96565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b6005546001600160a01b0316331461050857600080fd5b6040517f3e85e06aae67714e679dacf3d57ddfb4bb18cb0b78ceeed5867b92fadb29397090600090a18051600880547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b039384161790915560208301516009805483169184169190911790556040830151600a80548316918416919091179055606090920151600b80549093169116179055565b60006105b333848461103a565b50600192915050565b6005546001600160a01b031633146105d357600080fd5b6105de8160016109b9565b600c54604080516001600160a01b03928316815291831660208301527fe72eaf6addaa195f3c83095031dd08f3a96808dcf047babed1fe4e4f69d6c622910160405180910390a1600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600061066c8484846111c7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61073985336107348685611b7f565b61103a565b506001949350505050565b60006127106107538385611b42565b61075d9190611b09565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105b3918590610734908690611af1565b6107a53382611340565b50565b6006546001600160a01b031633146107bf57600080fd5b6006546005546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600654600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b60606004805461046e90611b96565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161071c565b61090c33856107348685611b7f565b5060019392505050565b6005546001600160a01b0316331461092d57600080fd5b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a1600c805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60006105b33384846111c7565b6005546001600160a01b031633146109d057600080fd5b6001600160a01b0382166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2910160405180910390a15050565b6005546001600160a01b03163314610a6857600080fd5b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6007546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610b0d57600080fd5b505af1158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b45919061196a565b506000610b5461271083611b09565b90506000610b64836109c4610744565b9050600760009054906101000a90046001600160a01b03166001600160a01b0316638fe6cae36040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610bb657600080fd5b505af1158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee9190611a47565b600754604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905184926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015610c4b57600080fd5b505afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c839190611a47565b610c8d9190611b7f565b10610d0e576007546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015610cf157600080fd5b505af1158015610d05573d6000803e3d6000fd5b50505050610d12565b5060005b6000610d1f846064610744565b90506000610d2e600483611b09565b600754600b546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101869052929350169063a9059cbb90604401602060405180830381600087803b158015610d9957600080fd5b505af1158015610dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd1919061196a565b506007546009546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610e3b57600080fd5b505af1158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e73919061196a565b506007546008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610edd57600080fd5b505af1158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f15919061196a565b50600754600a546001600160a01b039182169163a9059cbb9116610f3a846002611b42565b85610f45888b611b7f565b610f4f9190611b7f565b610f599190611b7f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fb757600080fd5b505af1158015610fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fef919061196a565b50610ffa33856114fa565b60408051868152602081018690527f831683a0a2794a398b7d69c2b83ba3c01f936a631165543a1a686a39e3164886910160405180910390a15050505050565b6001600160a01b0383166110cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b038216611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821630141561125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f7261637400000000000000000000000000000000000000000000000000000000606482015260840161071c565b600c5474010000000000000000000000000000000000000000900460ff1615806112a157506001600160a01b0383166000908152600d602052604090205460ff165b806112c457506001600160a01b0382166000908152600d602052604090205460ff165b156112d9576112d48383836115f3565b505050565b60006112e6826019610744565b90506112f28482611340565b60006112ff8360c8610744565b600c5490915061131a9086906001600160a01b0316836115f3565b61133985858461132a8588611b7f565b6113349190611b7f565b6115f3565b5050505050565b6001600160a01b0382166113d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b0382166000908152602081905260409020548181101561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6114898282611b7f565b6001600160a01b038416600090815260208190526040812091909155600280548492906114b7908490611b7f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016111ba565b6001600160a01b03821661156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161071c565b806002600082825461157c9190611af1565b90915550506001600160a01b038216600090815260208190526040812080548392906115a9908490611af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b03821661171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161071c565b6001600160a01b038316600090815260208190526040902054818110156117c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161071c565b6117d28282611b7f565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611808908490611af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185491815260200190565b60405180910390a350505050565b600060208284031215611873578081fd5b813561075d81611c19565b60008060408385031215611890578081fd5b823561189b81611c19565b915060208301356118ab81611c19565b809150509250929050565b6000806000606084860312156118ca578081fd5b83356118d581611c19565b925060208401356118e581611c19565b929592945050506040919091013590565b60008060408385031215611908578182fd5b823561191381611c19565b915060208301356118ab81611c2e565b60008060408385031215611935578182fd5b823561194081611c19565b946020939093013593505050565b60006020828403121561195f578081fd5b813561075d81611c2e565b60006020828403121561197b578081fd5b815161075d81611c2e565b600060808284031215611997578081fd5b6040516080810181811067ffffffffffffffff821117156119df577f4e487b710000000000000000000000000000000000000000000000000000000083526041600452602483fd5b60405282356119ed81611c19565b815260208301356119fd81611c19565b60208201526040830135611a1081611c19565b60408201526060830135611a2381611c19565b60608201529392505050565b600060208284031215611a40578081fd5b5035919050565b600060208284031215611a58578081fd5b5051919050565b60008060408385031215611a71578182fd5b50508035926020909101359150565b6000602080835283518082850152825b81811015611aac57858101830151858201604001528201611a90565b81811115611abd5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115611b0457611b04611bea565b500190565b600082611b3d577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b7a57611b7a611bea565b500290565b600082821015611b9157611b91611bea565b500390565b600181811c90821680611baa57607f821691505b60208210811415611be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b03811681146107a557600080fd5b80151581146107a557600080fdfea2646970667358221220cab5754d60f1317f2e00057a741f552b7c60e3a75799ede7474a5bbf003cd0c364736f6c63430008040033

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

000000000000000000000000a682ee16b497afceedf47e4820fc2af3845fd2d2000000000000000000000000af4d3ee0061c18eeb19f852658e4088e572f6a27000000000000000000000000969015c7dbefca0d72ee4d49f0b09bd1bea3a5570000000000000000000000003498296daa51c1da882376ed66bfbe3988745453000000000000000000000000f21b2f10e523a2a35c0797ce835523d1bd02e309

-----Decoded View---------------
Arg [0] : _pika (address): 0xA682Ee16b497afcEEDF47e4820Fc2af3845FD2D2
Arg [1] : _pikaWallets (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a682ee16b497afceedf47e4820fc2af3845fd2d2
Arg [1] : 000000000000000000000000af4d3ee0061c18eeb19f852658e4088e572f6a27
Arg [2] : 000000000000000000000000969015c7dbefca0d72ee4d49f0b09bd1bea3a557
Arg [3] : 0000000000000000000000003498296daa51c1da882376ed66bfbe3988745453
Arg [4] : 000000000000000000000000f21b2f10e523a2a35c0797ce835523d1bd02e309


Deployed Bytecode Sourcemap

17343:4934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6287:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21364:149;;;;;;:::i;:::-;;:::i;:::-;;8595:210;;;;;;:::i;:::-;;:::i;:::-;;;6660:14:1;;6653:22;6635:41;;6623:2;6608:18;8595:210:0;6590:92:1;7407:108:0;7495:12;;7407:108;;;11910:25:1;;;11898:2;11883:18;7407:108:0;11865:76:1;20977:229:0;;;;;;:::i;:::-;;:::i;9287:493::-;;;;;;:::i;:::-;;:::i;7249:93::-;;;7332:2;12341:36:1;;12329:2;12314:18;7249:93:0;12296:87:1;20376:165:0;;;;;;:::i;:::-;;:::i;17433:26::-;;;;;-1:-1:-1;;;;;17433:26:0;;;;;;-1:-1:-1;;;;;4586:55:1;;;4568:74;;4556:2;4541:18;17433:26:0;4523:125:1;10189:297:0;;;;;;:::i;:::-;;:::i;20740:81::-;;;;;;:::i;:::-;;:::i;16541:180::-;;;:::i;17496:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7578:177;;;;;;:::i;:::-;-1:-1:-1;;;;;7729:18:0;7697:7;7729:18;;;;;;;;;;;;7578:177;15622:20;;;;;-1:-1:-1;;;;;15622:20:0;;;6506:104;;;:::i;10989:446::-;;;;;;:::i;:::-;;:::i;17466:23::-;;;;;;;;;;;;21698:141;;;;;;:::i;:::-;;:::i;7968:216::-;;;;;;:::i;:::-;;:::i;22056:218::-;;;;;;:::i;:::-;;:::i;16303:112::-;;;;;;:::i;:::-;;:::i;15649:28::-;;;;;-1:-1:-1;;;;;15649:28:0;;;8247:201;;;;;;:::i;:::-;-1:-1:-1;;;;;8413:18:0;;;8381:7;8413:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8247:201;17400:26;;;;;;;;;;;-1:-1:-1;;;;;17400:26:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5295:15:1;;;5277:34;;5347:15;;;5342:2;5327:18;;5320:43;5399:15;;;5379:18;;;5372:43;;;;5451:15;;;5446:2;5431:18;;5424:43;5203:3;5188:19;17400:26:0;5170:303:1;18344:943:0;;;;;;:::i;:::-;;:::i;6287:100::-;6341:13;6374:5;6367:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6287:100;:::o;21364:149::-;16168:5;;-1:-1:-1;;;;;16168:5:0;16154:10;:19;16146:28;;;;;;21449:20:::1;::::0;::::1;::::0;;;::::1;21480:25:::0;;:11:::1;:25:::0;;;;;::::1;-1:-1:-1::0;;;;;21480:25:0;;::::1;;::::0;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;;::::0;;21364:149::o;8595:210::-;8714:4;8736:39;4053:10;8759:7;8768:6;8736:8;:39::i;:::-;-1:-1:-1;8793:4:0;8595:210;;;;:::o;20977:229::-;16168:5;;-1:-1:-1;;;;;16168:5:0;16154:10;:19;16146:28;;;;;;21054:40:::1;21072:15;21089:4;21054:17;:40::i;:::-;21129:11;::::0;21110:48:::1;::::0;;-1:-1:-1;;;;;21129:11:0;;::::1;4888:34:1::0;;4958:15;;;4953:2;4938:18;;4931:43;21110:48:0::1;::::0;4800:18:1;21110:48:0::1;;;;;;;21169:11;:29:::0;;;::::1;-1:-1:-1::0;;;;;21169:29:0;;;::::1;::::0;;;::::1;::::0;;20977:229::o;9287:493::-;9427:4;9444:36;9454:6;9462:9;9473:6;9444:9;:36::i;:::-;-1:-1:-1;;;;;9520:19:0;;9493:24;9520:19;;;:11;:19;;;;;;;;4053:10;9520:33;;;;;;;;9586:26;;;;9564:116;;;;;;;9578:2:1;9564:116:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:34;9636:18;;;9629:62;9727:10;9707:18;;;9700:38;9755:19;;9564:116:0;;;;;;;;;9691:57;9700:6;4053:10;9722:25;9741:6;9722:16;:25;:::i;:::-;9691:8;:57::i;:::-;-1:-1:-1;9768:4:0;;9287:493;-1:-1:-1;;;;9287:493:0:o;20376:165::-;20477:7;20528:5;20510:14;20520:4;20510:7;:14;:::i;:::-;20509:24;;;;:::i;:::-;20502:31;20376:165;-1:-1:-1;;;20376:165:0:o;10189:297::-;4053:10;10304:4;10398:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10398:34:0;;;;;;;;;;10304:4;;10326:130;;10376:7;;10398:47;;10435:10;;10398:47;:::i;20740:81::-;20787:26;4053:10;20807:5;20787;:26::i;:::-;20740:81;:::o;16541:180::-;16609:13;;-1:-1:-1;;;;;16609:13:0;16595:10;:27;16587:36;;;;;;16667:13;;16660:5;;16639:42;;-1:-1:-1;;;;;16667:13:0;;;;16660:5;;;;16639:42;;16667:13;;16639:42;16700:13;;16692:5;:21;;;;-1:-1:-1;;;;;16700:13:0;;;16692:21;;;;;;16541:180::o;6506:104::-;6562:13;6595:7;6588:14;;;;;:::i;10989:446::-;4053:10;11109:4;11158:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11158:34:0;;;;;;;;;;11225:35;;;;11203:122;;;;;;;11200:2:1;11203:122:0;;;11182:21:1;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;11349:7;11329:18;;;11322:35;11374:19;;11203:122:0;11172:227:1;11203:122:0;11336:67;4053:10;11359:7;11368:34;11387:15;11368:16;:34;:::i;11336:67::-;-1:-1:-1;11423:4:0;;10989:446;-1:-1:-1;;;10989:446:0:o;21698:141::-;16168:5;;-1:-1:-1;;;;;16168:5:0;16154:10;:19;16146:28;;;;;;21770::::1;::::0;6660:14:1;;6653:22;6635:41;;21770:28:0::1;::::0;6623:2:1;6608:18;21770:28:0::1;;;;;;;21809:11;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;21698:141::o;7968:216::-;8090:4;8112:42;4053:10;8136:9;8147:6;8112:9;:42::i;22056:218::-;16168:5;;-1:-1:-1;;;;;16168:5:0;16154:10;:19;16146:28;;;;;;-1:-1:-1;;;;;22168:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;22223:43;;6049:74:1;;;6139:18;;;6132:50;22223:43:0::1;::::0;6022:18:1;22223:43:0::1;;;;;;;22056:218:::0;;:::o;16303:112::-;16168:5;;-1:-1:-1;;;;;16168:5:0;16154:10;:19;16146:28;;;;;;16382:13:::1;:25:::0;;;::::1;-1:-1:-1::0;;;;;16382:25:0;;;::::1;::::0;;;::::1;::::0;;16303:112::o;18344:943::-;18401:4;;:57;;;;;18419:10;18401:57;;;5741:34:1;18439:4:0;5791:18:1;;;5784:43;5843:18;;;5836:34;;;-1:-1:-1;;;;;18401:4:0;;;;:17;;5653:18:1;;18401:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18469:21:0;18493:19;18507:5;18493:11;:19;:::i;:::-;18469:43;;18525:18;18546:31;18559:11;18572:4;18546:12;:31::i;:::-;18525:52;;18627:4;;;;;;;;;-1:-1:-1;;;;;18627:4:0;-1:-1:-1;;;;;18627:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18592:4;;:18;;;;;;;;18613:10;;-1:-1:-1;;;;;18592:4:0;;:16;;:18;;;;;;;;;;;;;;:4;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:31;;;;:::i;:::-;:51;18588:152;;18660:4;;:21;;;;;;;;11910:25:1;;;-1:-1:-1;;;;;18660:4:0;;;;:9;;11883:18:1;;18660:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18588:152;;;-1:-1:-1;18727:1:0;18588:152;18752:17;18772:30;18785:11;18798:3;18772:12;:30::i;:::-;18752:50;-1:-1:-1;18813:25:0;18841:13;18853:1;18752:50;18841:13;:::i;:::-;18865:4;;18879:21;;18865:47;;;;;-1:-1:-1;;;;;18879:21:0;;;18865:47;;;6367:74:1;6457:18;;;6450:34;;;18813:41:0;;-1:-1:-1;18865:4:0;;:13;;6340:18:1;;18865:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18923:4:0;;18937:19;;18923:53;;;;;-1:-1:-1;;;;;18937:19:0;;;18923:53;;;6367:74:1;6457:18;;;6450:34;;;18923:4:0;;;:13;;6340:18:1;;18923:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18987:4:0;;19001:11;:16;18987:50;;;;;-1:-1:-1;;;;;19001:16:0;;;18987:50;;;6367:74:1;6457:18;;;6450:34;;;18987:4:0;;;:13;;6340:18:1;;18987:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;19050:4:0;;19078:19;;-1:-1:-1;;;;;19050:4:0;;;;:13;;19078:19;19151:21;:17;19078:19;19151:21;:::i;:::-;19139:9;19112:24;19126:10;19112:11;:24;:::i;:::-;:36;;;;:::i;:::-;:60;;;;:::i;:::-;19050:133;;;;;;;;;;-1:-1:-1;;;;;6385:55:1;;;19050:133:0;;;6367:74:1;6457:18;;;6450:34;6340:18;;19050:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19196:32;19202:10;19214:13;19196:5;:32::i;:::-;19244:35;;;12120:25:1;;;12176:2;12161:18;;12154:34;;;19244:35:0;;12093:18:1;19244:35:0;;;;;;;18344:943;;;;;:::o;14485:380::-;-1:-1:-1;;;;;14621:19:0;;14613:68;;;;;;;10795:2:1;14613:68:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;10944:6;10924:18;;;10917:34;10968:19;;14613:68:0;10767:226:1;14613:68:0;-1:-1:-1;;;;;14700:21:0;;14692:68;;;;;;;8363:2:1;14692:68:0;;;8345:21:1;8402:2;8382:18;;;8375:30;8441:34;8421:18;;;8414:62;8512:4;8492:18;;;8485:32;8534:19;;14692:68:0;8335:224:1;14692:68:0;-1:-1:-1;;;;;14773:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14825:32;;11910:25:1;;;14825:32:0;;11883:18:1;14825:32:0;;;;;;;;14485:380;;;:::o;19597:771::-;-1:-1:-1;;;;;19752:26:0;;19773:4;19752:26;;19730:112;;;;;;;9173:2:1;19730:112:0;;;9155:21:1;9212:2;9192:18;;;9185:30;9251:34;9231:18;;;9224:62;9322:6;9302:18;;;9295:34;9346:19;;19730:112:0;9145:226:1;19730:112:0;19872:11;;;;;;;19871:12;;:54;;-1:-1:-1;;;;;;19900:25:0;;;;;;:17;:25;;;;;;;;19871:54;:99;;;-1:-1:-1;;;;;;19942:28:0;;;;;;:17;:28;;;;;;;;19871:99;19853:219;;;19997:42;20013:6;20021:9;20032:6;19997:15;:42::i;:::-;19597:771;;;:::o;19853:219::-;20082:17;20102:24;20115:6;20123:2;20102:12;:24::i;:::-;20082:44;;20137:24;20143:6;20151:9;20137:5;:24::i;:::-;20174:19;20196:25;20209:6;20217:3;20196:12;:25::i;:::-;20256:11;;20174:47;;-1:-1:-1;20232:49:0;;20248:6;;-1:-1:-1;;;;;20256:11:0;20174:47;20232:15;:49::i;:::-;20292:68;20308:6;20316:9;20350;20327:20;20336:11;20327:6;:20;:::i;:::-;:32;;;;:::i;:::-;20292:15;:68::i;:::-;19597:771;;;;;:::o;13553:494::-;-1:-1:-1;;;;;13637:21:0;;13629:67;;;;;;;9987:2:1;13629:67:0;;;9969:21:1;10026:2;10006:18;;;9999:30;10065:34;10045:18;;;10038:62;10136:3;10116:18;;;10109:31;10157:19;;13629:67:0;9959:223:1;13629:67:0;-1:-1:-1;;;;;13796:18:0;;13771:22;13796:18;;;;;;;;;;;13833:24;;;;13825:71;;;;;;;7960:2:1;13825:71:0;;;7942:21:1;7999:2;7979:18;;;7972:30;8038:34;8018:18;;;8011:62;8109:4;8089:18;;;8082:32;8131:19;;13825:71:0;7932:224:1;13825:71:0;13928:23;13945:6;13928:14;:23;:::i;:::-;-1:-1:-1;;;;;13907:18:0;;:9;:18;;;;;;;;;;:44;;;;13962:12;:22;;13978:6;;13907:9;13962:22;;13978:6;;13962:22;:::i;:::-;;;;-1:-1:-1;;14002:37:0;;11910:25:1;;;14028:1:0;;-1:-1:-1;;;;;14002:37:0;;;;;11898:2:1;11883:18;14002:37:0;11865:76:1;12882:338:0;-1:-1:-1;;;;;12966:21:0;;12958:65;;;;;;;11606:2:1;12958:65:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:33;11664:18;;;11657:61;11735:18;;12958:65:0;11578:181:1;12958:65:0;13114:6;13098:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13131:18:0;;:9;:18;;;;;;;;;;:28;;13153:6;;13131:9;:28;;13153:6;;13131:28;:::i;:::-;;;;-1:-1:-1;;13175:37:0;;11910:25:1;;;-1:-1:-1;;;;;13175:37:0;;;13192:1;;13175:37;;11898:2:1;11883:18;13175:37:0;;;;;;;12882:338;;:::o;11925:675::-;-1:-1:-1;;;;;12065:20:0;;12057:70;;;;;;;10389:2:1;12057:70:0;;;10371:21:1;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;10538:7;10518:18;;;10511:35;10563:19;;12057:70:0;10361:227:1;12057:70:0;-1:-1:-1;;;;;12146:23:0;;12138:71;;;;;;;7556:2:1;12138:71:0;;;7538:21:1;7595:2;7575:18;;;7568:30;7634:34;7614:18;;;7607:62;7705:5;7685:18;;;7678:33;7728:19;;12138:71:0;7528:225:1;12138:71:0;-1:-1:-1;;;;;12306:17:0;;12282:21;12306:17;;;;;;;;;;;12356:23;;;;12334:111;;;;;;;8766:2:1;12334:111:0;;;8748:21:1;8805:2;8785:18;;;8778:30;8844:34;8824:18;;;8817:62;8915:8;8895:18;;;8888:36;8941:19;;12334:111:0;8738:228:1;12334:111:0;12476:22;12492:6;12476:13;:22;:::i;:::-;-1:-1:-1;;;;;12456:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12509:20;;;;;;;;:30;;12533:6;;12456:9;12509:30;;12533:6;;12509:30;:::i;:::-;;;;;;;;12574:9;-1:-1:-1;;;;;12557:35:0;12566:6;-1:-1:-1;;;;;12557:35:0;;12585:6;12557:35;;;;11910:25:1;;11898:2;11883:18;;11865:76;12557:35:0;;;;;;;;11925:675;;;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;546:398::-;614:6;622;675:2;663:9;654:7;650:23;646:32;643:2;;;696:6;688;681:22;643:2;740:9;727:23;759:31;784:5;759:31;:::i;:::-;809:5;-1:-1:-1;866:2:1;851:18;;838:32;879:33;838:32;879:33;:::i;:::-;931:7;921:17;;;633:311;;;;;:::o;949:466::-;1026:6;1034;1042;1095:2;1083:9;1074:7;1070:23;1066:32;1063:2;;;1116:6;1108;1101:22;1063:2;1160:9;1147:23;1179:31;1204:5;1179:31;:::i;:::-;1229:5;-1:-1:-1;1286:2:1;1271:18;;1258:32;1299:33;1258:32;1299:33;:::i;:::-;1053:362;;1351:7;;-1:-1:-1;;;1405:2:1;1390:18;;;;1377:32;;1053:362::o;1420:392::-;1485:6;1493;1546:2;1534:9;1525:7;1521:23;1517:32;1514:2;;;1567:6;1559;1552:22;1514:2;1611:9;1598:23;1630:31;1655:5;1630:31;:::i;:::-;1680:5;-1:-1:-1;1737:2:1;1722:18;;1709:32;1750:30;1709:32;1750:30;:::i;1817:325::-;1885:6;1893;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;2011:9;1998:23;2030:31;2055:5;2030:31;:::i;:::-;2080:5;2132:2;2117:18;;;;2104:32;;-1:-1:-1;;;1904:238:1:o;2147:251::-;2203:6;2256:2;2244:9;2235:7;2231:23;2227:32;2224:2;;;2277:6;2269;2262:22;2224:2;2321:9;2308:23;2340:28;2362:5;2340:28;:::i;2403:255::-;2470:6;2523:2;2511:9;2502:7;2498:23;2494:32;2491:2;;;2544:6;2536;2529:22;2491:2;2581:9;2575:16;2600:28;2622:5;2600:28;:::i;2663:1097::-;2746:6;2799:3;2787:9;2778:7;2774:23;2770:33;2767:2;;;2821:6;2813;2806:22;2767:2;2859;2853:9;2901:3;2893:6;2889:16;2971:6;2959:10;2956:22;2935:18;2923:10;2920:34;2917:62;2914:2;;;3017:77;3009:6;3002:93;3118:4;3115:1;3108:15;3151:4;3143:6;3136:20;2914:2;3182;3175:22;3219:23;;3251:31;3219:23;3251:31;:::i;:::-;3291:21;;3364:2;3349:18;;3336:32;3377:33;3336:32;3377:33;:::i;:::-;3438:2;3426:15;;3419:32;3503:2;3488:18;;3475:32;3516:33;3475:32;3516:33;:::i;:::-;3577:2;3565:15;;3558:32;3642:2;3627:18;;3614:32;3655:33;3614:32;3655:33;:::i;:::-;3716:2;3704:15;;3697:32;3708:6;2757:1003;-1:-1:-1;;;2757:1003:1:o;3765:190::-;3824:6;3877:2;3865:9;3856:7;3852:23;3848:32;3845:2;;;3898:6;3890;3883:22;3845:2;-1:-1:-1;3926:23:1;;3835:120;-1:-1:-1;3835:120:1:o;3960:194::-;4030:6;4083:2;4071:9;4062:7;4058:23;4054:32;4051:2;;;4104:6;4096;4089:22;4051:2;-1:-1:-1;4132:16:1;;4041:113;-1:-1:-1;4041:113:1:o;4159:258::-;4227:6;4235;4288:2;4276:9;4267:7;4263:23;4259:32;4256:2;;;4309:6;4301;4294:22;4256:2;-1:-1:-1;;4337:23:1;;;4407:2;4392:18;;;4379:32;;-1:-1:-1;4246:171:1:o;6687:662::-;6799:4;6828:2;6857;6846:9;6839:21;6889:6;6883:13;6932:6;6927:2;6916:9;6912:18;6905:34;6957:4;6970:140;6984:6;6981:1;6978:13;6970:140;;;7079:14;;;7075:23;;7069:30;7045:17;;;7064:2;7041:26;7034:66;6999:10;;6970:140;;;7128:6;7125:1;7122:13;7119:2;;;7198:4;7193:2;7184:6;7173:9;7169:22;7165:31;7158:45;7119:2;-1:-1:-1;7265:2:1;7253:15;7270:66;7249:88;7234:104;;;;7340:2;7230:113;;6808:541;-1:-1:-1;;;6808:541:1:o;12388:128::-;12428:3;12459:1;12455:6;12452:1;12449:13;12446:2;;;12465:18;;:::i;:::-;-1:-1:-1;12501:9:1;;12436:80::o;12521:274::-;12561:1;12587;12577:2;;12622:77;12619:1;12612:88;12723:4;12720:1;12713:15;12751:4;12748:1;12741:15;12577:2;-1:-1:-1;12780:9:1;;12567:228::o;12800:::-;12840:7;12966:1;12898:66;12894:74;12891:1;12888:81;12883:1;12876:9;12869:17;12865:105;12862:2;;;12973:18;;:::i;:::-;-1:-1:-1;13013:9:1;;12852:176::o;13033:125::-;13073:4;13101:1;13098;13095:8;13092:2;;;13106:18;;:::i;:::-;-1:-1:-1;13143:9:1;;13082:76::o;13163:437::-;13242:1;13238:12;;;;13285;;;13306:2;;13360:4;13352:6;13348:17;13338:27;;13306:2;13413;13405:6;13402:14;13382:18;13379:38;13376:2;;;13450:77;13447:1;13440:88;13551:4;13548:1;13541:15;13579:4;13576:1;13569:15;13376:2;;13218:382;;;:::o;13605:184::-;13657:77;13654:1;13647:88;13754:4;13751:1;13744:15;13778:4;13775:1;13768:15;13794:154;-1:-1:-1;;;;;13873:5:1;13869:54;13862:5;13859:65;13849:2;;13938:1;13935;13928:12;13953:118;14039:5;14032:13;14025:21;14018:5;14015:32;14005:2;;14061:1;14058;14051:12

Swarm Source

ipfs://cab5754d60f1317f2e00057a741f552b7c60e3a75799ede7474a5bbf003cd0c3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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