ERC-20
Overview
Max Total Supply
69,000,000,000 AI
Holders
9
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
144,176,606.830289521873250055 AIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Incumming
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-03 */ /* https://t.me/artificiallyincumming */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 `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 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); } 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); } 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() { _transferOwnership(_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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); } interface IUniswapV2Router02 is IUniswapV2Router01 { } contract Incumming is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; // Anti bot mapping(address => uint256) public _blockNumberByAddress; bool public antiBotsActive = true; mapping(address => bool) public isContractExempt; uint public blockCooldownAmount = 1; /** * @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() { _name = "Artificially Incumming"; _symbol = "AI"; uint e_totalSupply = 69_000_000_000 ether; // Anti bot isContractExempt[address(this)] = true; _mint(msg.sender, e_totalSupply); } /** * @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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `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); // bots don't get jizz if(antiBotsActive) { if(!isContractExempt[from] && !isContractExempt[to]) { address human = ensureOneHuman(from, to); ensureMaxTxFrequency(human); _blockNumberByAddress[human] = block.number; } } // 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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} // anti bot function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function ensureOneHuman(address _to, address _from) internal virtual returns (address) { require(!isContract(_to) || !isContract(_from), "No bots are allowed JIZZ!"); if (isContract(_to)) return _from; else return _to; } function ensureMaxTxFrequency(address addr) internal virtual { bool isAllowed = _blockNumberByAddress[addr] == 0 || ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1)); require(isAllowed, "Max tx frequency exceeded!"); } function setAntiBotsActive(bool value) external onlyOwner { antiBotsActive = value; } function setBlockCooldown(uint value) external onlyOwner { blockCooldownAmount = value; } function setContractExempt(address account, bool value) external onlyOwner { isContractExempt[account] = value; } // End anti bot }
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":"address","name":"","type":"address"}],"name":"_blockNumberByAddress","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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","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":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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
60806040526007805460ff191660019081179091556009553480156200002457600080fd5b506200003033620000d7565b60408051808201909152601681527f4172746966696369616c6c7920496e63756d6d696e67000000000000000000006020820152600490620000739082620002b8565b50604080518082019091526002815261414960f01b60208201526005906200009c9082620002b8565b50306000908152600860205260409020805460ff191660011790556bdef376571332906a88000000620000d0338262000127565b50620003ac565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000196919062000384565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c590849062000384565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023f57607f821691505b6020821081036200026057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020f57600081815260208120601f850160051c810160208610156200028f5750805b601f850160051c820191505b81811015620002b0578281556001016200029b565b505050505050565b81516001600160401b03811115620002d457620002d462000214565b620002ec81620002e584546200022a565b8462000266565b602080601f8311600181146200032457600084156200030b5750858301515b600019600386901b1c1916600185901b178555620002b0565b600085815260208120601f198616915b82811015620003555788860151825594840194600190910190840162000334565b5085821015620003745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003a657634e487b7160e01b600052601160045260246000fd5b92915050565b610e3e80620003bc6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b60405160128152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220c3d8168e776c98b222ef7cbe523b5ce853249298de1d3e0141fbd45b3bebb36364736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b60405160128152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220c3d8168e776c98b222ef7cbe523b5ce853249298de1d3e0141fbd45b3bebb36364736f6c63430008110033
Deployed Bytecode Sourcemap
5638:13458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6803:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9154:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9154:201:0;1004:187:1;18834:103:0;;;;;;:::i;:::-;;:::i;:::-;;7923:108;8011:12;;7923:108;;;1527:25:1;;;1515:2;1500:18;7923:108:0;1381:177:1;6108:35:0;;;;;;9935:295;;;;;;:::i;:::-;;:::i;7765:93::-;;;7848:2;2038:36:1;;2026:2;2011:18;7765:93:0;1896:184:1;10639:240:0;;;;;;:::i;:::-;;:::i;6013:33::-;;;;;;;;;8094:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8195:18:0;8168:7;8195:18;;;:9;:18;;;;;;;8094:127;4486:103;;;:::i;5950:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18727:99;;;;;;:::i;:::-;;:::i;3835:87::-;3881:7;3908:6;3835:87;;-1:-1:-1;;;;;3908:6:0;;;2772:51:1;;2760:2;2745:18;3835:87:0;2626:203:1;7022:104:0;;;:::i;18945:127::-;;;;;;:::i;:::-;;:::i;11382:438::-;;;;;;:::i;:::-;;:::i;8427:193::-;;;;;;:::i;:::-;;:::i;8683:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8799:18:0;;;8772:7;8799:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8683:151;4744:201;;;;;;:::i;:::-;;:::i;6053:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6803:100;6857:13;6890:5;6883:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6803:100;:::o;9154:201::-;9237:4;224:10;9293:32;224:10;9309:7;9318:6;9293:8;:32::i;:::-;9343:4;9336:11;;;9154:201;;;;;:::o;18834:103::-;3881:7;3908:6;-1:-1:-1;;;;;3908:6:0;224:10;4055:23;4047:68;;;;-1:-1:-1;;;4047:68:0;;;;;;;:::i;:::-;;;;;;;;;18902:19:::1;:27:::0;18834:103::o;9935:295::-;10066:4;224:10;10124:38;10140:4;224:10;10155:6;10124:15;:38::i;:::-;10173:27;10183:4;10189:2;10193:6;10173:9;:27::i;:::-;-1:-1:-1;10218:4:0;;9935:295;-1:-1:-1;;;;9935:295:0:o;10639:240::-;224:10;10727:4;10808:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10808:27:0;;;;;;;;;;10727:4;;224:10;10783:66;;224:10;;10808:27;;:40;;10838:10;;10808:40;:::i;:::-;10783:8;:66::i;4486:103::-;3881:7;3908:6;-1:-1:-1;;;;;3908:6:0;224:10;4055:23;4047:68;;;;-1:-1:-1;;;4047:68:0;;;;;;;:::i;:::-;4551:30:::1;4578:1;4551:18;:30::i;:::-;4486:103::o:0;18727:99::-;3881:7;3908:6;-1:-1:-1;;;;;3908:6:0;224:10;4055:23;4047:68;;;;-1:-1:-1;;;4047:68:0;;;;;;;:::i;:::-;18796:14:::1;:22:::0;;-1:-1:-1;;18796:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18727:99::o;7022:104::-;7078:13;7111:7;7104:14;;;;;:::i;18945:127::-;3881:7;3908:6;-1:-1:-1;;;;;3908:6:0;224:10;4055:23;4047:68;;;;-1:-1:-1;;;4047:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19031:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;19031:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18945:127::o;11382:438::-;224:10;11475:4;11558:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11558:27:0;;;;;;;;;;11475:4;;224:10;11604:35;;;;11596:85;;;;-1:-1:-1;;;11596:85:0;;4533:2:1;11596:85:0;;;4515:21:1;4572:2;4552:18;;;4545:30;4611:34;4591:18;;;4584:62;-1:-1:-1;;;4662:18:1;;;4655:35;4707:19;;11596:85:0;4331:401:1;11596:85:0;11717:60;11726:5;11733:7;11761:15;11742:16;:34;11717:8;:60::i;8427:193::-;8506:4;224:10;8562:28;224:10;8579:2;8583:6;8562:9;:28::i;4744:201::-;3881:7;3908:6;-1:-1:-1;;;;;3908:6:0;224:10;4055:23;4047:68;;;;-1:-1:-1;;;4047:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4833:22:0;::::1;4825:73;;;::::0;-1:-1:-1;;;4825:73:0;;4939:2:1;4825:73:0::1;::::0;::::1;4921:21:1::0;4978:2;4958:18;;;4951:30;5017:34;4997:18;;;4990:62;-1:-1:-1;;;5068:18:1;;;5061:36;5114:19;;4825:73:0::1;4737:402:1::0;4825:73:0::1;4909:28;4928:8;4909:18;:28::i;:::-;4744:201:::0;:::o;15378:380::-;-1:-1:-1;;;;;15514:19:0;;15506:68;;;;-1:-1:-1;;;15506:68:0;;5346:2:1;15506:68:0;;;5328:21:1;5385:2;5365:18;;;5358:30;5424:34;5404:18;;;5397:62;-1:-1:-1;;;5475:18:1;;;5468:34;5519:19;;15506:68:0;5144:400:1;15506:68:0;-1:-1:-1;;;;;15593:21:0;;15585:68;;;;-1:-1:-1;;;15585:68:0;;5751:2:1;15585:68:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:32;5922:19;;15585:68:0;5549:398:1;15585:68:0;-1:-1:-1;;;;;15666:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15718:32;;1527:25:1;;;15718:32:0;;1500:18:1;15718:32:0;;;;;;;15378:380;;;:::o;16045:453::-;-1:-1:-1;;;;;8799:18:0;;;16180:24;8799:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16247:37:0;;16243:248;;16329:6;16309:16;:26;;16301:68;;;;-1:-1:-1;;;16301:68:0;;6154:2:1;16301:68:0;;;6136:21:1;6193:2;6173:18;;;6166:30;6232:31;6212:18;;;6205:59;6281:18;;16301:68:0;5952:353:1;16301:68:0;16413:51;16422:5;16429:7;16457:6;16438:16;:25;16413:8;:51::i;:::-;16169:329;16045:453;;;:::o;12299:1031::-;-1:-1:-1;;;;;12430:18:0;;12422:68;;;;-1:-1:-1;;;12422:68:0;;6512:2:1;12422:68:0;;;6494:21:1;6551:2;6531:18;;;6524:30;6590:34;6570:18;;;6563:62;-1:-1:-1;;;6641:18:1;;;6634:35;6686:19;;12422:68:0;6310:401:1;12422:68:0;-1:-1:-1;;;;;12509:16:0;;12501:64;;;;-1:-1:-1;;;12501:64:0;;6918:2:1;12501:64:0;;;6900:21:1;6957:2;6937:18;;;6930:30;6996:34;6976:18;;;6969:62;-1:-1:-1;;;7047:18:1;;;7040:33;7090:19;;12501:64:0;6716:399:1;12501:64:0;12664:14;;;;12661:303;;;-1:-1:-1;;;;;12708:22:0;;;;;;:16;:22;;;;;;;;12707:23;:48;;;;-1:-1:-1;;;;;;12735:20:0;;;;;;:16;:20;;;;;;;;12734:21;12707:48;12704:249;;;12789:13;12805:24;12820:4;12826:2;12805:14;:24::i;:::-;12789:40;;12848:27;12869:5;12848:20;:27::i;:::-;-1:-1:-1;;;;;12894:28:0;;;;;:21;:28;;;;;12925:12;12894:43;;12704:249;-1:-1:-1;;;;;13011:15:0;;12989:19;13011:15;;;:9;:15;;;;;;13045:21;;;;13037:72;;;;-1:-1:-1;;;13037:72:0;;7322:2:1;13037:72:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:36;7497:19;;13037:72:0;7120:402:1;13037:72:0;-1:-1:-1;;;;;13145:15:0;;;;;;;:9;:15;;;;;;13163:20;;;13145:38;;13205:13;;;;;;;;:23;;13177:6;;13145:15;13205:23;;13177:6;;13205:23;:::i;:::-;;;;;;;;13261:2;-1:-1:-1;;;;;13246:26:0;13255:4;-1:-1:-1;;;;;13246:26:0;;13265:6;13246:26;;;;1527:25:1;;1515:2;1500:18;;1381:177;13246:26:0;;;;;;;;13285:37;17098:125;5105:191;5179:16;5198:6;;-1:-1:-1;;;;;5215:17:0;;;-1:-1:-1;;;;;;5215:17:0;;;;;;5248:40;;5198:6;;;;;;;5248:40;;5179:16;5248:40;5168:128;5105:191;:::o;18180:252::-;18258:7;18108:20;;18156:8;;18286:38;;-1:-1:-1;18108:20:0;;18156:8;18286:38;18278:76;;;;-1:-1:-1;;;18278:76:0;;7729:2:1;18278:76:0;;;7711:21:1;7768:2;7748:18;;;7741:30;7807:27;7787:18;;;7780:55;7852:18;;18278:76:0;7527:349:1;18278:76:0;18108:20;;18156:8;18365:59;;-1:-1:-1;18393:5:0;18386:12;;18365:59;-1:-1:-1;18421:3:0;18414:10;;18440:279;-1:-1:-1;;;;;18529:27:0;;18512:14;18529:27;;;:21;:27;;;;;;:32;;:123;;-1:-1:-1;18634:16:0;:12;18649:1;18634:16;:::i;:::-;18610:19;;-1:-1:-1;;;;;18580:27:0;;;;;;:21;:27;;;;;;:49;;18610:19;18580:49;:::i;:::-;18579:72;18529:123;18512:140;;18671:9;18663:48;;;;-1:-1:-1;;;18663:48:0;;8083:2:1;18663:48:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:28;8141:18;;;8134:56;8207:18;;18663:48:0;7881:350:1;18663:48:0;18501:218;18440:279;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2276:160::-;2341:20;;2397:13;;2390:21;2380:32;;2370:60;;2426:1;2423;2416:12;2441:180;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:26;2605:9;2589:26;:::i;2834:254::-;2899:6;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;2999:29;3018:9;2999:29;:::i;:::-;2989:39;;3047:35;3078:2;3067:9;3063:18;3047:35;:::i;:::-;3037:45;;2834:254;;;;;:::o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;3743:356::-;3945:2;3927:21;;;3964:18;;;3957:30;4023:34;4018:2;4003:18;;3996:62;4090:2;4075:18;;3743:356::o;4104:222::-;4169:9;;;4190:10;;;4187:133;;;4242:10;4237:3;4233:20;4230:1;4223:31;4277:4;4274:1;4267:15;4305:4;4302:1;4295:15
Swarm Source
ipfs://c3d8168e776c98b222ef7cbe523b5ce853249298de1d3e0141fbd45b3bebb363
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.