POL Price: $0.695328 (+13.84%)
 

Overview

Max Total Supply

9,500,000 HSM

Holders

86

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
HoneySium

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 7: HoneySium.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {Ownable} from "./Ownable.sol";
import {ERC20} from "./ERC20.sol";
import {IHoneySiumToken} from "./IHoneySiumToken.sol";

/**
 * @title HoneySium (HSM)
 * @notice
                                        :aabba}                  
                                        !qa1    |a                  
                                    Car.      qz                  
                                |k/         ,a:                  
                                Jv          ,a;                   
                                uc           hi                    
                !,            O+          p)                     
            ^Or`Jbc           o          p>                      
            `]!1x  r          a        .h:    .`^^               
                ?U b          p       Ik' lnhn1^ >rhq(!          
                    p:J          p      ]Y YkI          `iZabJ      
                ,Jaaaaak!      C     c]b/                   Qa+   
                ,dwoaaaaaaaa^    X    XC<                      ra.  
            ;a!  Uaaaaaaan "1{"> ,h`                      /hk^   
            aav. OaaaaaaaYCaaQ   <bi            .I_-tbahUx.      
            aaaaaaaLaaaaa1aa/   laaaui/jrt1?----<:               
            IaaaaabQaaaa!aw    laaaa!                            
                LaUlaaa01p(     maaaai   <m                        
                            _paaaab`   Iaap                       
                        `aaaaaaaad-    !aaaaj                      
                        .kaaaO1      0aaaad                       
                                    ;baaaaak.                       
                            -}Caaaaaaaad.                         
                            ibaaaaaa('    -U                     
                                        `aaU                     
                                    ^1waaaaY                     
                                        raaaaa`                     
                                        ?aaam                      
                                        .aaa|                      
                                        vab                       
                                        'a>                       
                                        '-                        
 */
contract HoneySium is ERC20, Ownable, IHoneySiumToken {
    uint256 private immutable _SUPPLY_CAP = 500000000 * 10**uint(decimals());

    /**
     * @notice Constructor
     * @param _premintReceiver address that receives the premint
     */
    constructor(address _premintReceiver) 
    ERC20("HoneySium", "HSM") {
        uint256 _premintAmount = 2500000 * 10**uint(decimals());
        // Transfer the sum of the premint to address
        _mint(_premintReceiver, _premintAmount);
    }

    /**
     * @notice Mint HSM tokens
     * @param account address to receive tokens
     * @param amount amount to mint
     * @return status true if mint is successful, false if not
     */
    function mint(address account, uint256 amount) external override onlyOwner returns (bool status) {
        require(_SUPPLY_CAP > totalSupply() + amount, "HSM: amount is greater than cap");
        if (totalSupply() + amount <= _SUPPLY_CAP) {
            _mint(account, amount);
            return true;
        }
        return false;
    }

    /**
     * @notice View supply cap
     */
    function SUPPLY_CAP() external view override returns (uint256) {
        return _SUPPLY_CAP;
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 7: IERC20.sol
// 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);
}

File 5 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.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);
}

File 6 of 7: IHoneySiumToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IERC20} from "./IERC20.sol";

interface IHoneySiumToken is IERC20 {
    function SUPPLY_CAP() external view returns (uint256);

    function mint(address account, uint256 amount) external returns (bool);
}

File 7 of 7: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_premintReceiver","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":"SUPPLY_CAP","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"status","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052620000126012600a6200038d565b6200002290631dcd65006200044b565b6080523480156200003257600080fd5b50604051620011b2380380620011b28339810160408190526200005591620002f7565b60405180604001604052806009815260200168486f6e65795369756d60b81b8152506040518060400160405280600381526020016248534d60e81b8152508160039080519060200190620000ab92919062000251565b508051620000c190600490602084019062000251565b505050620000de620000d86200011360201b60201c565b62000117565b6000620000ee6012600a6200038d565b620000fd90622625a06200044b565b90506200010b828262000169565b5050620004c0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001d8919062000329565b90915550506001600160a01b038216600090815260208190526040812080548392906200020790849062000329565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200025f906200046d565b90600052602060002090601f016020900481019282620002835760008555620002ce565b82601f106200029e57805160ff1916838001178555620002ce565b82800160010185558215620002ce579182015b82811115620002ce578251825591602001919060010190620002b1565b50620002dc929150620002e0565b5090565b5b80821115620002dc5760008155600101620002e1565b6000602082840312156200030a57600080fd5b81516001600160a01b03811681146200032257600080fd5b9392505050565b600082198211156200033f576200033f620004aa565b500190565b600181815b8085111562000385578160001904821115620003695762000369620004aa565b808516156200037757918102915b93841c939080029062000349565b509250929050565b6000620003228383600082620003a65750600162000445565b81620003b55750600062000445565b8160018114620003ce5760028114620003d957620003f9565b600191505062000445565b60ff841115620003ed57620003ed620004aa565b50506001821b62000445565b5060208310610133831016604e8410600b84101617156200041e575081810a62000445565b6200042a838362000344565b8060001904821115620004415762000441620004aa565b0290505b92915050565b6000816000190483118215151615620004685762000468620004aa565b500290565b600181811c908216806200048257607f821691505b60208210811415620004a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b608051610cc8620004ea600039600081816101480152818161046501526104d30152610cc86000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461021c578063a9059cbb1461022f578063dd62ed3e14610242578063f2fde38b1461027b57600080fd5b806370a08231146101c6578063715018a6146101ef5780638da5cb5b146101f957806395d89b411461021457600080fd5b806323b872dd116100d357806323b872dd1461017e578063313ce5671461019157806339509351146101a057806340c10f19146101b357600080fd5b806306fdde0314610105578063095ea7b3146101235780630cfccc831461014657806318160ddd14610176575b600080fd5b61010d61028e565b60405161011a9190610ba7565b60405180910390f35b610136610131366004610b7d565b610320565b604051901515815260200161011a565b7f00000000000000000000000000000000000000000000000000000000000000005b60405190815260200161011a565b600254610168565b61013661018c366004610b41565b610337565b6040516012815260200161011a565b6101366101ae366004610b7d565b6103e6565b6101366101c1366004610b7d565b610422565b6101686101d4366004610aec565b6001600160a01b031660009081526020819052604090205490565b6101f7610526565b005b6005546040516001600160a01b03909116815260200161011a565b61010d61055c565b61013661022a366004610b7d565b61056b565b61013661023d366004610b7d565b610604565b610168610250366004610b0e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f7610289366004610aec565b610611565b60606003805461029d90610c57565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610c57565b80156103165780601f106102eb57610100808354040283529160200191610316565b820191906000526020600020905b8154815290600101906020018083116102f957829003601f168201915b5050505050905090565b600061032d3384846106ac565b5060015b92915050565b60006103448484846107d0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103db85338584036106ac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032d91859061041d908690610c31565b6106ac565b6005546000906001600160a01b0316331461044f5760405162461bcd60e51b81526004016103c590610bfc565b8161045960025490565b6104639190610c31565b7f0000000000000000000000000000000000000000000000000000000000000000116104d15760405162461bcd60e51b815260206004820152601f60248201527f48534d3a20616d6f756e742069732067726561746572207468616e206361700060448201526064016103c5565b7f0000000000000000000000000000000000000000000000000000000000000000826104fc60025490565b6105069190610c31565b1161051d57610515838361099f565b506001610331565b50600092915050565b6005546001600160a01b031633146105505760405162461bcd60e51b81526004016103c590610bfc565b61055a6000610a7e565b565b60606004805461029d90610c57565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c5565b6105fa33858584036106ac565b5060019392505050565b600061032d3384846107d0565b6005546001600160a01b0316331461063b5760405162461bcd60e51b81526004016103c590610bfc565b6001600160a01b0381166106a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c5565b6106a981610a7e565b50565b6001600160a01b03831661070e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c5565b6001600160a01b03821661076f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108345760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c5565b6001600160a01b0382166108965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c5565b6001600160a01b0383166000908152602081905260409020548181101561090e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610945908490610c31565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161099191815260200190565b60405180910390a350505050565b6001600160a01b0382166109f55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c5565b8060026000828254610a079190610c31565b90915550506001600160a01b03821660009081526020819052604081208054839290610a34908490610c31565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610ae757600080fd5b919050565b600060208284031215610afe57600080fd5b610b0782610ad0565b9392505050565b60008060408385031215610b2157600080fd5b610b2a83610ad0565b9150610b3860208401610ad0565b90509250929050565b600080600060608486031215610b5657600080fd5b610b5f84610ad0565b9250610b6d60208501610ad0565b9150604084013590509250925092565b60008060408385031215610b9057600080fd5b610b9983610ad0565b946020939093013593505050565b600060208083528351808285015260005b81811015610bd457858101830151858201604001528201610bb8565b81811115610be6576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c5257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680610c6b57607f821691505b60208210811415610c8c57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122084c4143babc8508825ec8edd54413ac4d8bf6b726ebdf082fac0b18d6322cfee64736f6c63430008070033000000000000000000000000713499c5c22fd1f5796a1bb2380b391ab6b41cc6

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461021c578063a9059cbb1461022f578063dd62ed3e14610242578063f2fde38b1461027b57600080fd5b806370a08231146101c6578063715018a6146101ef5780638da5cb5b146101f957806395d89b411461021457600080fd5b806323b872dd116100d357806323b872dd1461017e578063313ce5671461019157806339509351146101a057806340c10f19146101b357600080fd5b806306fdde0314610105578063095ea7b3146101235780630cfccc831461014657806318160ddd14610176575b600080fd5b61010d61028e565b60405161011a9190610ba7565b60405180910390f35b610136610131366004610b7d565b610320565b604051901515815260200161011a565b7f0000000000000000000000000000000000000000019d971e4fe8401e740000005b60405190815260200161011a565b600254610168565b61013661018c366004610b41565b610337565b6040516012815260200161011a565b6101366101ae366004610b7d565b6103e6565b6101366101c1366004610b7d565b610422565b6101686101d4366004610aec565b6001600160a01b031660009081526020819052604090205490565b6101f7610526565b005b6005546040516001600160a01b03909116815260200161011a565b61010d61055c565b61013661022a366004610b7d565b61056b565b61013661023d366004610b7d565b610604565b610168610250366004610b0e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f7610289366004610aec565b610611565b60606003805461029d90610c57565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610c57565b80156103165780601f106102eb57610100808354040283529160200191610316565b820191906000526020600020905b8154815290600101906020018083116102f957829003601f168201915b5050505050905090565b600061032d3384846106ac565b5060015b92915050565b60006103448484846107d0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103db85338584036106ac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032d91859061041d908690610c31565b6106ac565b6005546000906001600160a01b0316331461044f5760405162461bcd60e51b81526004016103c590610bfc565b8161045960025490565b6104639190610c31565b7f0000000000000000000000000000000000000000019d971e4fe8401e74000000116104d15760405162461bcd60e51b815260206004820152601f60248201527f48534d3a20616d6f756e742069732067726561746572207468616e206361700060448201526064016103c5565b7f0000000000000000000000000000000000000000019d971e4fe8401e74000000826104fc60025490565b6105069190610c31565b1161051d57610515838361099f565b506001610331565b50600092915050565b6005546001600160a01b031633146105505760405162461bcd60e51b81526004016103c590610bfc565b61055a6000610a7e565b565b60606004805461029d90610c57565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c5565b6105fa33858584036106ac565b5060019392505050565b600061032d3384846107d0565b6005546001600160a01b0316331461063b5760405162461bcd60e51b81526004016103c590610bfc565b6001600160a01b0381166106a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c5565b6106a981610a7e565b50565b6001600160a01b03831661070e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c5565b6001600160a01b03821661076f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108345760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c5565b6001600160a01b0382166108965760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c5565b6001600160a01b0383166000908152602081905260409020548181101561090e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610945908490610c31565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161099191815260200190565b60405180910390a350505050565b6001600160a01b0382166109f55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c5565b8060026000828254610a079190610c31565b90915550506001600160a01b03821660009081526020819052604081208054839290610a34908490610c31565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610ae757600080fd5b919050565b600060208284031215610afe57600080fd5b610b0782610ad0565b9392505050565b60008060408385031215610b2157600080fd5b610b2a83610ad0565b9150610b3860208401610ad0565b90509250929050565b600080600060608486031215610b5657600080fd5b610b5f84610ad0565b9250610b6d60208501610ad0565b9150604084013590509250925092565b60008060408385031215610b9057600080fd5b610b9983610ad0565b946020939093013593505050565b600060208083528351808285015260005b81811015610bd457858101830151858201604001528201610bb8565b81811115610be6576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c5257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680610c6b57607f821691505b60208210811415610c8c57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122084c4143babc8508825ec8edd54413ac4d8bf6b726ebdf082fac0b18d6322cfee64736f6c63430008070033

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

000000000000000000000000713499c5c22fd1f5796a1bb2380b391ab6b41cc6

-----Decoded View---------------
Arg [0] : _premintReceiver (address): 0x713499C5C22fd1F5796A1BB2380b391ab6b41Cc6

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000713499c5c22fd1f5796a1bb2380b391ab6b41cc6


Deployed Bytecode Sourcemap

2421:1219:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4160:166;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:7;;1606:22;1588:41;;1576:2;1561:18;4160:166:1;1448:187:7;3537:100:2;3618:11;3537:100;;;6716:25:7;;;6704:2;6689:18;3537:100:2;6570:177:7;3151:106:1;3238:12;;3151:106;;4793:478;;;;;;:::i;:::-;;:::i;3000:91::-;;;3082:2;6894:36:7;;6882:2;6867:18;3000:91:1;6752:184:7;5666:212:1;;;;;;:::i;:::-;;:::i;3132:347:2:-;;;;;;:::i;:::-;;:::i;3315:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3415:18:1;3389:7;3415:18;;;;;;;;;;;;3315:125;1598:92:6;;;:::i;:::-;;966:85;1038:6;;966:85;;-1:-1:-1;;;;;1038:6:6;;;1386:51:7;;1374:2;1359:18;966:85:6;1240:203:7;2274:102:1;;;:::i;6365:405::-;;;;;;:::i;:::-;;:::i;3643:172::-;;;;;;:::i;:::-;;:::i;3873:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3988:18:1;;;3962:7;3988:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3873:149;1839:189:6;;;;;;:::i;:::-;;:::i;2063:98:1:-;2117:13;2149:5;2142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98;:::o;4160:166::-;4243:4;4259:39;666:10:0;4282:7:1;4291:6;4259:8;:39::i;:::-;-1:-1:-1;4315:4:1;4160:166;;;;;:::o;4793:478::-;4929:4;4945:36;4955:6;4963:9;4974:6;4945:9;:36::i;:::-;-1:-1:-1;;;;;5019:19:1;;4992:24;5019:19;;;:11;:19;;;;;;;;666:10:0;5019:33:1;;;;;;;;5070:26;;;;5062:79;;;;-1:-1:-1;;;5062:79:1;;4425:2:7;5062:79:1;;;4407:21:7;4464:2;4444:18;;;4437:30;4503:34;4483:18;;;4476:62;-1:-1:-1;;;4554:18:7;;;4547:38;4602:19;;5062:79:1;;;;;;;;;5175:57;5184:6;666:10:0;5225:6:1;5206:16;:25;5175:8;:57::i;:::-;-1:-1:-1;5260:4:1;;4793:478;-1:-1:-1;;;;4793:478:1:o;5666:212::-;666:10:0;5754:4:1;5802:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5802:34:1;;;;;;;;;;5754:4;;5770:80;;5793:7;;5802:47;;5839:10;;5802:47;:::i;:::-;5770:8;:80::i;3132:347:2:-;1038:6:6;;3216:11:2;;-1:-1:-1;;;;;1038:6:6;666:10:0;1178:23:6;1170:68;;;;-1:-1:-1;;;1170:68:6;;;;;;;:::i;:::-;3278:6:2::1;3262:13;3238:12:1::0;;;3151:106;3262:13:2::1;:22;;;;:::i;:::-;3248:11;:36;3240:80;;;::::0;-1:-1:-1;;;3240:80:2;;4065:2:7;3240:80:2::1;::::0;::::1;4047:21:7::0;4104:2;4084:18;;;4077:30;4143:33;4123:18;;;4116:61;4194:18;;3240:80:2::1;3863:355:7::0;3240:80:2::1;3361:11;3351:6;3335:13;3238:12:1::0;;;3151:106;3335:13:2::1;:22;;;;:::i;:::-;:37;3331:118;;3389:22;3395:7;3404:6;3389:5;:22::i;:::-;-1:-1:-1::0;3433:4:2::1;3426:11;;3331:118;-1:-1:-1::0;3466:5:2::1;3132:347:::0;;;;:::o;1598:92:6:-;1038:6;;-1:-1:-1;;;;;1038:6:6;666:10:0;1178:23:6;1170:68;;;;-1:-1:-1;;;1170:68:6;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2274:102:1:-;2330:13;2362:7;2355:14;;;;;:::i;6365:405::-;666:10:0;6458:4:1;6501:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6501:34:1;;;;;;;;;;6553:35;;;;6545:85;;;;-1:-1:-1;;;6545:85:1;;6006:2:7;6545:85:1;;;5988:21:7;6045:2;6025:18;;;6018:30;6084:34;6064:18;;;6057:62;-1:-1:-1;;;6135:18:7;;;6128:35;6180:19;;6545:85:1;5804:401:7;6545:85:1;6664:67;666:10:0;6687:7:1;6715:15;6696:16;:34;6664:8;:67::i;:::-;-1:-1:-1;6759:4:1;;6365:405;-1:-1:-1;;;6365:405:1:o;3643:172::-;3729:4;3745:42;666:10:0;3769:9:1;3780:6;3745:9;:42::i;1839:189:6:-;1038:6;;-1:-1:-1;;;;;1038:6:6;666:10:0;1178:23:6;1170:68;;;;-1:-1:-1;;;1170:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:6;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:6;;2848:2:7;1919:73:6::1;::::0;::::1;2830:21:7::0;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:7;;;2970:36;3023:19;;1919:73:6::1;2646:402:7::0;1919:73:6::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;9941:370:1:-;-1:-1:-1;;;;;10072:19:1;;10064:68;;;;-1:-1:-1;;;10064:68:1;;5601:2:7;10064:68:1;;;5583:21:7;5640:2;5620:18;;;5613:30;5679:34;5659:18;;;5652:62;-1:-1:-1;;;5730:18:7;;;5723:34;5774:19;;10064:68:1;5399:400:7;10064:68:1;-1:-1:-1;;;;;10150:21:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;3255:2:7;10142:68:1;;;3237:21:7;3294:2;3274:18;;;3267:30;3333:34;3313:18;;;3306:62;-1:-1:-1;;;3384:18:7;;;3377:32;3426:19;;10142:68:1;3053:398:7;10142:68:1;-1:-1:-1;;;;;10221:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10272:32;;6716:25:7;;;10272:32:1;;6689:18:7;10272:32:1;;;;;;;9941:370;;;:::o;7244:713::-;-1:-1:-1;;;;;7379:20:1;;7371:70;;;;-1:-1:-1;;;7371:70:1;;5195:2:7;7371:70:1;;;5177:21:7;5234:2;5214:18;;;5207:30;5273:34;5253:18;;;5246:62;-1:-1:-1;;;5324:18:7;;;5317:35;5369:19;;7371:70:1;4993:401:7;7371:70:1;-1:-1:-1;;;;;7459:23:1;;7451:71;;;;-1:-1:-1;;;7451:71:1;;2444:2:7;7451:71:1;;;2426:21:7;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:7;;;2566:33;2616:19;;7451:71:1;2242:399:7;7451:71:1;-1:-1:-1;;;;;7615:17:1;;7591:21;7615:17;;;;;;;;;;;7650:23;;;;7642:74;;;;-1:-1:-1;;;7642:74:1;;3658:2:7;7642:74:1;;;3640:21:7;3697:2;3677:18;;;3670:30;3736:34;3716:18;;;3709:62;-1:-1:-1;;;3787:18:7;;;3780:36;3833:19;;7642:74:1;3456:402:7;7642:74:1;-1:-1:-1;;;;;7750:17:1;;;:9;:17;;;;;;;;;;;7770:22;;;7750:42;;7812:20;;;;;;;;:30;;7786:6;;7750:9;7812:30;;7786:6;;7812:30;:::i;:::-;;;;;;;;7875:9;-1:-1:-1;;;;;7858:35:1;7867:6;-1:-1:-1;;;;;7858:35:1;;7886:6;7858:35;;;;6716:25:7;;6704:2;6689:18;;6570:177;7858:35:1;;;;;;;;7361:596;7244:713;;;:::o;8233:389::-;-1:-1:-1;;;;;8316:21:1;;8308:65;;;;-1:-1:-1;;;8308:65:1;;6412:2:7;8308:65:1;;;6394:21:7;6451:2;6431:18;;;6424:30;6490:33;6470:18;;;6463:61;6541:18;;8308:65:1;6210:355:7;8308:65:1;8460:6;8444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8476:18:1;;:9;:18;;;;;;;;;;:28;;8498:6;;8476:9;:28;;8498:6;;8476:28;:::i;:::-;;;;-1:-1:-1;;8519:37:1;;6716:25:7;;;-1:-1:-1;;;;;8519:37:1;;;8536:1;;8519:37;;6704:2:7;6689:18;8519:37:1;;;;;;;8233:389;;:::o;2034:169:6:-;2108:6;;;-1:-1:-1;;;;;2124:17:6;;;-1:-1:-1;;;;;;2124:17:6;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;14:173:7:-;82:20;;-1:-1:-1;;;;;131:31:7;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:7:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:7:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:91;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:91;-1:-1:-1;2221:2:7;2200:15;-1:-1:-1;;2196:29:7;2181:45;;;;2228:2;2177:54;;1640:597;-1:-1:-1;;;1640:597:7:o;4632:356::-;4834:2;4816:21;;;4853:18;;;4846:30;4912:34;4907:2;4892:18;;4885:62;4979:2;4964:18;;4632:356::o;6941:225::-;6981:3;7012:1;7008:6;7005:1;7002:13;6999:136;;;7057:10;7052:3;7048:20;7045:1;7038:31;7092:4;7089:1;7082:15;7120:4;7117:1;7110:15;6999:136;-1:-1:-1;7151:9:7;;6941:225::o;7171:380::-;7250:1;7246:12;;;;7293;;;7314:61;;7368:4;7360:6;7356:17;7346:27;;7314:61;7421:2;7413:6;7410:14;7390:18;7387:38;7384:161;;;7467:10;7462:3;7458:20;7455:1;7448:31;7502:4;7499:1;7492:15;7530:4;7527:1;7520:15;7384:161;;7171:380;;;:::o

Swarm Source

ipfs://84c4143babc8508825ec8edd54413ac4d8bf6b726ebdf082fac0b18d6322cfee
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.