ERC-20
Overview
Max Total Supply
22,000,000,000,000 GAS
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000028733112714417 GASValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JGASERC20
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.13; /* ██████╗░██╗██████╗░███████╗███╗░░██╗ ░██████╗░░█████╗░░██████╗ ██╗███╗░░██╗██╗░░░██╗ ██╔══██╗██║██╔══██╗██╔════╝████╗░██║ ██╔════╝░██╔══██╗██╔════╝ ██║████╗░██║██║░░░██║ ██████╦╝██║██║░░██║█████╗░░██╔██╗██║ ██║░░██╗░███████║╚█████╗░ ██║██╔██╗██║██║░░░██║ ██╔══██╗██║██║░░██║██╔══╝░░██║╚████║ ██║░░╚██╗██╔══██║░╚═══██╗ ██║██║╚████║██║░░░██║ ██████╦╝██║██████╔╝███████╗██║░╚███║ ╚██████╔╝██║░░██║██████╔╝ ██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝╚═════╝░╚══════╝╚═╝░░╚══╝ ░╚═════╝░╚═╝░░╚═╝╚═════╝░ ╚═╝╚═╝░░╚══╝░╚═════╝░ No fuken roadmap mf, just like the govt. Hop on |^^^^^^^^^^^\||____ | The STFU Truck |||""'|""\__,_ | _____________ l||__|__|__|) ...|(@)@)"""""""**|(@)(@)**|(@) */ /** @dev wen moon? */ /** * @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; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @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 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IOwnable { function owner() external view returns (address); function renounceOwnership() external; function transferOwnership( address newOwner_ ) external; } contract Ownable is IOwnable { address internal _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { _owner = msg.sender; emit OwnershipTransferred( address(0), _owner ); } function owner() public view override returns (address) { return _owner; } modifier onlyOwner() { require( _owner == msg.sender, "Ownable: caller is not the owner" ); _; } function renounceOwnership() public virtual override onlyOwner() { emit OwnershipTransferred( _owner, address(0) ); _owner = address(0); } function transferOwnership( address newOwner_ ) public virtual override onlyOwner() { require( newOwner_ != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred( _owner, newOwner_ ); _owner = newOwner_; } } contract JGASERC20 is ERC20, Ownable { uint public initialSupply = 22 * 1e12; constructor() ERC20("Biden Gas Inu", "GAS") { _mint(owner(), initialSupply * 1e18); } /* ██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░██████╗░ ██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗ ██████╦╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝██████╔╝ ██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗ ██████╦╝██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║██║░░██║ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝ */ function Brrr(uint256 asMuchAsIWant_) external onlyOwner { //Jk we're not the Fed _mint(owner(), asMuchAsIWant_); } function BurnDatGas(uint256 amount_) external { //Got me self a 2022 F350 _burn(msg.sender, amount_); } /* ──▄█████▄ ─█████████ ███▀───▀███─█████ ██───▄───██─█████ ██───▀───██─████ ███▄───▄███─████ ─█████████─▄████ ──▀█████▀─▄█████ ───────▄▄███████ ───────█████████ ───────████████▄▄▄▄▄▄▄ ───────█████████████ ───────██F350███▒▒▒█ ─────────▀██████▒▒▒█ ──▄█████▄─▀█████▒▒▄▀ ─█████████─▀████▄▀ ███▀───▀███─████ ██───▄───██─████ ██───▀───██─████ ███▄───▄███─█▀ ─█████████ ──▀█████▀ */ } /* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░▄▄▄▄▄▄░░░░░░░░░░░░░░░░░░░ ░░░░░▄█████████▄▄░░░░░░░░▄▄░░░░░ ░░░░███████████████▄▄░░░░▄██▄░░░ ░░░▄█████████████████████████░░░ ░▄██████████████████████████▀░░░ ░███░░░░░░░░░░░░░░░░░░░█░░░░░░░░ ░███░███████████████████░░░░░░░░ ░███░░▀████───████────█▀░░░░░░░░ ░███░░░▀▄▄▄▄▄▀░▀▄▄▄▄▄▀▀▀▄░░░░░░░ ░░██░░░░░░░░░░░░░░░░░░░░░▀▄░░░░░ ░░▄█░░░░░▄▀█▀▀▀▄▄▄░░░░░▄▀░░▀▄░░░ ░█░░░░░▄▀──█───█──▀█▄▄░▀▀░░░░▀▄░ ░▀▄▄░░█────█───█───█──▀▀▄░░▄▀▀▀░ ░░░█░██▄▄▄▄█▄▄▄█▄▄▄█▄▄▄▄▄█▄▄▀░░░ ░░░█░█████████████▄▄░░░░░░░░░░░░ ░░░█░█████████████████████████▄░ ░░░█░███████████████▀▀░░░░░░░░█░ ░░░█░██████████▀▀░░░░░░░░░░░░░█░ ░░░█░██████▀░░░░░░░░░░░░░░░░░░█░ ░░░█░███▀░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░█▀░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░▀▄░▀▄░░░░░░░█░ ░░░█░░░░░░░░░░░░▄▄▄▀▄▄▀░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░█░ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ██████╗░██╗██████╗░███████╗███╗░░██╗██╗ ██╔══██╗██║██╔══██╗██╔════╝████╗░██║██║ ██████╦╝██║██║░░██║█████╗░░██╔██╗██║██║ ██╔══██╗██║██║░░██║██╔══╝░░██║╚████║╚═╝ ██████╦╝██║██████╔╝███████╗██║░╚███║██╗ ╚═════╝░╚═╝╚═════╝░╚══════╝╚═╝░░╚══╝╚═╝ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"internalType":"uint256","name":"asMuchAsIWant_","type":"uint256"}],"name":"Brrr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"BurnDatGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052651402462f60006006553480156200001b57600080fd5b506040518060400160405280600d81526020016c426964656e2047617320496e7560981b8152506040518060400160405280600381526020016247415360e81b815250816003908051906020019062000076929190620001f3565b5080516200008c906004906020840190620001f3565b5050600580546001600160a01b031916339081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362000105620000e86005546001600160a01b031690565b600654620000ff90670de0b6b3a7640000620002af565b6200010b565b62000328565b6001600160a01b038216620001665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017a9190620002d1565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a9908490620002d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200020190620002ec565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620002cc57620002cc62000299565b500290565b60008219821115620002e757620002e762000299565b500190565b600181811c908216806200030157607f821691505b6020821081036200032257634e487b7160e01b600052602260045260246000fd5b50919050565b610d9780620003386000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634f29627c116100a257806395d89b411161007157806395d89b4114610215578063a457c2d71461021d578063a9059cbb14610230578063dd62ed3e14610243578063f2fde38b1461025657600080fd5b80634f29627c146101b657806370a08231146101c9578063715018a6146101f25780638da5cb5b146101fa57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063378dc3dc1461019a57806339509351146101a357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631e596f3214610163575b600080fd5b610118610269565b6040516101259190610b68565b60405180910390f35b61014161013c366004610bd9565b6102fb565b6040519015158152602001610125565b6002545b604051908152602001610125565b610176610171366004610c03565b610313565b005b610141610186366004610c1c565b610320565b60405160128152602001610125565b61015560065481565b6101416101b1366004610bd9565b610344565b6101766101c4366004610c03565b610366565b6101556101d7366004610c58565b6001600160a01b031660009081526020819052604090205490565b6101766103b4565b6005546040516001600160a01b039091168152602001610125565b610118610428565b61014161022b366004610bd9565b610437565b61014161023e366004610bd9565b6104b2565b610155610251366004610c7a565b6104c0565b610176610264366004610c58565b6104eb565b60606003805461027890610cad565b80601f01602080910402602001604051908101604052809291908181526020018280546102a490610cad565b80156102f15780601f106102c6576101008083540402835291602001916102f1565b820191906000526020600020905b8154815290600101906020018083116102d457829003601f168201915b5050505050905090565b6000336103098185856105d6565b5060019392505050565b61031d33826106fb565b50565b60003361032e858285610841565b6103398585856108bb565b506001949350505050565b60003361030981858561035783836104c0565b6103619190610cfd565b6105d6565b6005546001600160a01b031633146103995760405162461bcd60e51b815260040161039090610d15565b60405180910390fd5b61031d6103ae6005546001600160a01b031690565b82610a89565b6005546001600160a01b031633146103de5760405162461bcd60e51b815260040161039090610d15565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60606004805461027890610cad565b6000338161044582866104c0565b9050838110156104a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610390565b61033982868684036105d6565b6000336103098185856108bb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105155760405162461bcd60e51b815260040161039090610d15565b6001600160a01b03811661057a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610390565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166106385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610390565b6001600160a01b0382166106995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610390565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661075b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610390565b6001600160a01b038216600090815260208190526040902054818110156107cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610390565b6001600160a01b03831660009081526020819052604081208383039055600280548492906107fe908490610d4a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106ee565b600061084d84846104c0565b905060001981146108b557818110156108a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610390565b6108b584848484036105d6565b50505050565b6001600160a01b03831661091f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610390565b6001600160a01b0382166109815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610390565b6001600160a01b038316600090815260208190526040902054818110156109f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610390565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a30908490610cfd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c91815260200190565b60405180910390a36108b5565b6001600160a01b038216610adf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610390565b8060026000828254610af19190610cfd565b90915550506001600160a01b03821660009081526020819052604081208054839290610b1e908490610cfd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610b9557858101830151858201604001528201610b79565b81811115610ba7576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bd457600080fd5b919050565b60008060408385031215610bec57600080fd5b610bf583610bbd565b946020939093013593505050565b600060208284031215610c1557600080fd5b5035919050565b600080600060608486031215610c3157600080fd5b610c3a84610bbd565b9250610c4860208501610bbd565b9150604084013590509250925092565b600060208284031215610c6a57600080fd5b610c7382610bbd565b9392505050565b60008060408385031215610c8d57600080fd5b610c9683610bbd565b9150610ca460208401610bbd565b90509250929050565b600181811c90821680610cc157607f821691505b602082108103610ce157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d1057610d10610ce7565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610d5c57610d5c610ce7565b50039056fea2646970667358221220b14c13b18033e58af93b9f9621ae383c3de20d646176aa83fbb9cf21054d0b6364736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634f29627c116100a257806395d89b411161007157806395d89b4114610215578063a457c2d71461021d578063a9059cbb14610230578063dd62ed3e14610243578063f2fde38b1461025657600080fd5b80634f29627c146101b657806370a08231146101c9578063715018a6146101f25780638da5cb5b146101fa57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063378dc3dc1461019a57806339509351146101a357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631e596f3214610163575b600080fd5b610118610269565b6040516101259190610b68565b60405180910390f35b61014161013c366004610bd9565b6102fb565b6040519015158152602001610125565b6002545b604051908152602001610125565b610176610171366004610c03565b610313565b005b610141610186366004610c1c565b610320565b60405160128152602001610125565b61015560065481565b6101416101b1366004610bd9565b610344565b6101766101c4366004610c03565b610366565b6101556101d7366004610c58565b6001600160a01b031660009081526020819052604090205490565b6101766103b4565b6005546040516001600160a01b039091168152602001610125565b610118610428565b61014161022b366004610bd9565b610437565b61014161023e366004610bd9565b6104b2565b610155610251366004610c7a565b6104c0565b610176610264366004610c58565b6104eb565b60606003805461027890610cad565b80601f01602080910402602001604051908101604052809291908181526020018280546102a490610cad565b80156102f15780601f106102c6576101008083540402835291602001916102f1565b820191906000526020600020905b8154815290600101906020018083116102d457829003601f168201915b5050505050905090565b6000336103098185856105d6565b5060019392505050565b61031d33826106fb565b50565b60003361032e858285610841565b6103398585856108bb565b506001949350505050565b60003361030981858561035783836104c0565b6103619190610cfd565b6105d6565b6005546001600160a01b031633146103995760405162461bcd60e51b815260040161039090610d15565b60405180910390fd5b61031d6103ae6005546001600160a01b031690565b82610a89565b6005546001600160a01b031633146103de5760405162461bcd60e51b815260040161039090610d15565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60606004805461027890610cad565b6000338161044582866104c0565b9050838110156104a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610390565b61033982868684036105d6565b6000336103098185856108bb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105155760405162461bcd60e51b815260040161039090610d15565b6001600160a01b03811661057a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610390565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166106385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610390565b6001600160a01b0382166106995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610390565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661075b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610390565b6001600160a01b038216600090815260208190526040902054818110156107cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610390565b6001600160a01b03831660009081526020819052604081208383039055600280548492906107fe908490610d4a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106ee565b600061084d84846104c0565b905060001981146108b557818110156108a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610390565b6108b584848484036105d6565b50505050565b6001600160a01b03831661091f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610390565b6001600160a01b0382166109815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610390565b6001600160a01b038316600090815260208190526040902054818110156109f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610390565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a30908490610cfd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c91815260200190565b60405180910390a36108b5565b6001600160a01b038216610adf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610390565b8060026000828254610af19190610cfd565b90915550506001600160a01b03821660009081526020819052604081208054839290610b1e908490610cfd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610b9557858101830151858201604001528201610b79565b81811115610ba7576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bd457600080fd5b919050565b60008060408385031215610bec57600080fd5b610bf583610bbd565b946020939093013593505050565b600060208284031215610c1557600080fd5b5035919050565b600080600060608486031215610c3157600080fd5b610c3a84610bbd565b9250610c4860208501610bbd565b9150604084013590509250925092565b600060208284031215610c6a57600080fd5b610c7382610bbd565b9392505050565b60008060408385031215610c8d57600080fd5b610c9683610bbd565b9150610ca460208401610bbd565b90509250929050565b600181811c90821680610cc157607f821691505b602082108103610ce157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d1057610d10610ce7565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610d5c57610d5c610ce7565b50039056fea2646970667358221220b14c13b18033e58af93b9f9621ae383c3de20d646176aa83fbb9cf21054d0b6364736f6c634300080d0033
Deployed Bytecode Sourcemap
19697:3156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7838:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10189:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10189:201:0;1053:187:1;8958:108:0;9046:12;;8958:108;;;1391:25:1;;;1379:2;1364:18;8958:108:0;1245:177:1;21635:117:0;;;;;;:::i;:::-;;:::i;:::-;;10970:295;;;;;;:::i;:::-;;:::i;8800:93::-;;;8883:2;2087:36:1;;2075:2;2060:18;8800:93:0;1945:184:1;19743:37:0;;;;;;11674:238;;;;;;:::i;:::-;;:::i;21498:129::-;;;;;;:::i;:::-;;:::i;9129:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9230:18:0;9203:7;9230:18;;;;;;;;;;;;9129:127;19283:151;;;:::i;19080:82::-;19150:6;;19080:82;;-1:-1:-1;;;;;19150:6:0;;;2471:51:1;;2459:2;2444:18;19080:82:0;2325:203:1;8057:104:0;;;:::i;12415:436::-;;;;;;:::i;:::-;;:::i;9462:193::-;;;;;;:::i;:::-;;:::i;9718:151::-;;;;;;:::i;:::-;;:::i;19440:250::-;;;;;;:::i;:::-;;:::i;7838:100::-;7892:13;7925:5;7918:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7838:100;:::o;10189:201::-;10272:4;2465:10;10328:32;2465:10;10344:7;10353:6;10328:8;:32::i;:::-;-1:-1:-1;10378:4:0;;10189:201;-1:-1:-1;;;10189:201:0:o;21635:117::-;21718:26;21724:10;21736:7;21718:5;:26::i;:::-;21635:117;:::o;10970:295::-;11101:4;2465:10;11159:38;11175:4;2465:10;11190:6;11159:15;:38::i;:::-;11208:27;11218:4;11224:2;11228:6;11208:9;:27::i;:::-;-1:-1:-1;11253:4:0;;10970:295;-1:-1:-1;;;;10970:295:0:o;11674:238::-;11762:4;2465:10;11818:64;2465:10;11834:7;11871:10;11843:25;2465:10;11834:7;11843:9;:25::i;:::-;:38;;;;:::i;:::-;11818:8;:64::i;21498:129::-;19205:6;;-1:-1:-1;;;;;19205:6:0;19215:10;19205:20;19196:67;;;;-1:-1:-1;;;19196:67:0;;;;;;;:::i;:::-;;;;;;;;;21589:30:::1;21595:7;19150:6:::0;;-1:-1:-1;;;;;19150:6:0;;19080:82;21595:7:::1;21604:14;21589:5;:30::i;19283:151::-:0;19205:6;;-1:-1:-1;;;;;19205:6:0;19215:10;19205:20;19196:67;;;;-1:-1:-1;;;19196:67:0;;;;;;;:::i;:::-;19382:6:::1;::::0;19360:42:::1;::::0;19398:1:::1;::::0;-1:-1:-1;;;;;19382:6:0::1;::::0;19360:42:::1;::::0;19398:1;;19360:42:::1;19409:6;:19:::0;;-1:-1:-1;;;;;;19409:19:0::1;::::0;;19283:151::o;8057:104::-;8113:13;8146:7;8139:14;;;;;:::i;12415:436::-;12508:4;2465:10;12508:4;12591:25;2465:10;12608:7;12591:9;:25::i;:::-;12564:52;;12655:15;12635:16;:35;;12627:85;;;;-1:-1:-1;;;12627:85:0;;4011:2:1;12627:85:0;;;3993:21:1;4050:2;4030:18;;;4023:30;4089:34;4069:18;;;4062:62;-1:-1:-1;;;4140:18:1;;;4133:35;4185:19;;12627:85:0;3809:401:1;12627:85:0;12748:60;12757:5;12764:7;12792:15;12773:16;:34;12748:8;:60::i;9462:193::-;9541:4;2465:10;9597:28;2465:10;9614:2;9618:6;9597:9;:28::i;9718:151::-;-1:-1:-1;;;;;9834:18:0;;;9807:7;9834:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9718:151::o;19440:250::-;19205:6;;-1:-1:-1;;;;;19205:6:0;19215:10;19205:20;19196:67;;;;-1:-1:-1;;;19196:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19540:23:0;::::1;19531:75;;;::::0;-1:-1:-1;;;19531:75:0;;4417:2:1;19531:75:0::1;::::0;::::1;4399:21:1::0;4456:2;4436:18;;;4429:30;4495:34;4475:18;;;4468:62;-1:-1:-1;;;4546:18:1;;;4539:36;4592:19;;19531:75:0::1;4215:402:1::0;19531:75:0::1;19640:6;::::0;19618:41:::1;::::0;-1:-1:-1;;;;;19618:41:0;;::::1;::::0;19640:6:::1;::::0;19618:41:::1;::::0;19640:6:::1;::::0;19618:41:::1;19666:6;:18:::0;;-1:-1:-1;;;;;;19666:18:0::1;-1:-1:-1::0;;;;;19666:18:0;;;::::1;::::0;;;::::1;::::0;;19440:250::o;16040:380::-;-1:-1:-1;;;;;16176:19:0;;16168:68;;;;-1:-1:-1;;;16168:68:0;;4824:2:1;16168:68:0;;;4806:21:1;4863:2;4843:18;;;4836:30;4902:34;4882:18;;;4875:62;-1:-1:-1;;;4953:18:1;;;4946:34;4997:19;;16168:68:0;4622:400:1;16168:68:0;-1:-1:-1;;;;;16255:21:0;;16247:68;;;;-1:-1:-1;;;16247:68:0;;5229:2:1;16247:68:0;;;5211:21:1;5268:2;5248:18;;;5241:30;5307:34;5287:18;;;5280:62;-1:-1:-1;;;5358:18:1;;;5351:32;5400:19;;16247:68:0;5027:398:1;16247:68:0;-1:-1:-1;;;;;16328:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16380:32;;1391:25:1;;;16380:32:0;;1364:18:1;16380:32:0;;;;;;;;16040:380;;;:::o;15011:591::-;-1:-1:-1;;;;;15095:21:0;;15087:67;;;;-1:-1:-1;;;15087:67:0;;5632:2:1;15087:67:0;;;5614:21:1;5671:2;5651:18;;;5644:30;5710:34;5690:18;;;5683:62;-1:-1:-1;;;5761:18:1;;;5754:31;5802:19;;15087:67:0;5430:397:1;15087:67:0;-1:-1:-1;;;;;15254:18:0;;15229:22;15254:18;;;;;;;;;;;15291:24;;;;15283:71;;;;-1:-1:-1;;;15283:71:0;;6034:2:1;15283:71:0;;;6016:21:1;6073:2;6053:18;;;6046:30;6112:34;6092:18;;;6085:62;-1:-1:-1;;;6163:18:1;;;6156:32;6205:19;;15283:71:0;5832:398:1;15283:71:0;-1:-1:-1;;;;;15390:18:0;;:9;:18;;;;;;;;;;15411:23;;;15390:44;;15456:12;:22;;15428:6;;15390:9;15456:22;;15428:6;;15456:22;:::i;:::-;;;;-1:-1:-1;;15496:37:0;;1391:25:1;;;15522:1:0;;-1:-1:-1;;;;;15496:37:0;;;;;1379:2:1;1364:18;15496:37:0;1245:177:1;16711:453:0;16846:24;16873:25;16883:5;16890:7;16873:9;:25::i;:::-;16846:52;;-1:-1:-1;;16913:16:0;:37;16909:248;;16995:6;16975:16;:26;;16967:68;;;;-1:-1:-1;;;16967:68:0;;6567:2:1;16967:68:0;;;6549:21:1;6606:2;6586:18;;;6579:30;6645:31;6625:18;;;6618:59;6694:18;;16967:68:0;6365:353:1;16967:68:0;17079:51;17088:5;17095:7;17123:6;17104:16;:25;17079:8;:51::i;:::-;16835:329;16711:453;;;:::o;13321:671::-;-1:-1:-1;;;;;13452:18:0;;13444:68;;;;-1:-1:-1;;;13444:68:0;;6925:2:1;13444:68:0;;;6907:21:1;6964:2;6944:18;;;6937:30;7003:34;6983:18;;;6976:62;-1:-1:-1;;;7054:18:1;;;7047:35;7099:19;;13444:68:0;6723:401:1;13444:68:0;-1:-1:-1;;;;;13531:16:0;;13523:64;;;;-1:-1:-1;;;13523:64:0;;7331:2:1;13523:64:0;;;7313:21:1;7370:2;7350:18;;;7343:30;7409:34;7389:18;;;7382:62;-1:-1:-1;;;7460:18:1;;;7453:33;7503:19;;13523:64:0;7129:399:1;13523:64:0;-1:-1:-1;;;;;13673:15:0;;13651:19;13673:15;;;;;;;;;;;13707:21;;;;13699:72;;;;-1:-1:-1;;;13699:72:0;;7735:2:1;13699:72:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:36;7910:19;;13699:72:0;7533:402:1;13699:72:0;-1:-1:-1;;;;;13807:15:0;;;:9;:15;;;;;;;;;;;13825:20;;;13807:38;;13867:13;;;;;;;;:23;;13839:6;;13807:9;13867:23;;13839:6;;13867:23;:::i;:::-;;;;;;;;13923:2;-1:-1:-1;;;;;13908:26:0;13917:4;-1:-1:-1;;;;;13908:26:0;;13927:6;13908:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;13908:26:0;;;;;;;;13947:37;15011:591;14279:399;-1:-1:-1;;;;;14363:21:0;;14355:65;;;;-1:-1:-1;;;14355:65:0;;8142:2:1;14355:65:0;;;8124:21:1;8181:2;8161:18;;;8154:30;8220:33;8200:18;;;8193:61;8271:18;;14355:65:0;7940:355:1;14355:65:0;14511:6;14495:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14528:18:0;;:9;:18;;;;;;;;;;:28;;14550:6;;14528:9;:28;;14550:6;;14528:28;:::i;:::-;;;;-1:-1:-1;;14572:37:0;;1391:25:1;;;-1:-1:-1;;;;;14572:37:0;;;14589:1;;14572:37;;1379:2:1;1364:18;14572:37:0;;;;;;;14279:399;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:180::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;-1:-1:-1;1578:23:1;;1427:180;-1:-1:-1;1427:180:1:o;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:128;3355:3;3386:1;3382:6;3379:1;3376:13;3373:39;;;3392:18;;:::i;:::-;-1:-1:-1;3428:9:1;;3315:128::o;3448:356::-;3650:2;3632:21;;;3669:18;;;3662:30;3728:34;3723:2;3708:18;;3701:62;3795:2;3780:18;;3448:356::o;6235:125::-;6275:4;6303:1;6300;6297:8;6294:34;;;6308:18;;:::i;:::-;-1:-1:-1;6345:9:1;;6235:125::o
Swarm Source
ipfs://b14c13b18033e58af93b9f9621ae383c3de20d646176aa83fbb9cf21054d0b63
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.