ERC-20
Overview
Max Total Supply
100,000,000,000 Chronos
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
2,164,642,972.767181804 ChronosValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Chronos
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-04 */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Chronos is ERC20, Ownable { uint256 constant maxWalletStart = 25e17; uint256 constant addMaxWalletPerMinute = 5e17; uint256 public constant totalSupplyOnStart = 1e20; uint256 tradingStartTime; address public pool; constructor() ERC20("Chronos", "Chronos") { _mint(msg.sender, totalSupplyOnStart); } function decimals() public pure override returns (uint8) { return 9; } function maxWallet() public view returns (uint256) { if (tradingStartTime == 0) return totalSupply(); uint256 res = maxWalletStart + ((block.timestamp - tradingStartTime) * addMaxWalletPerMinute) / (1 minutes); if (res > totalSupply()) return totalSupply(); return res; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { // before start trading only owner can manipulate the token if (pool == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } // check max wallet if (to != pool) require(balanceOf(to) + amount <= maxWallet(), "wallet maximum"); } function startTrade(address poolAddress) public onlyOwner { tradingStartTime = block.timestamp; pool = poolAddress; } }
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":"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":"pure","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":"maxWallet","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":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"startTrade","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":[],"name":"totalSupplyOnStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040805180820182526007808252664368726f6e6f7360c81b60208084018281528551808701909652928552840152815191929162000054916003916200038a565b5080516200006a9060049060208401906200038a565b5050506200008762000081620000a260201b60201c565b620000a6565b6200009c3368056bc75e2d63100000620000f8565b620004fd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001545760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200016260008383620001ef565b806002600082825462000176919062000446565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a590849062000446565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6007546001600160a01b03166200027d576005546001600160a01b03848116911614806200022a57506005546001600160a01b038381169116145b620002785760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200014b565b505050565b6007546001600160a01b0383811691161462000278576200029d6200030b565b81620002be846001600160a01b031660009081526020819052604090205490565b620002ca919062000446565b1115620002785760405162461bcd60e51b815260206004820152600e60248201526d77616c6c6574206d6178696d756d60901b60448201526064016200014b565b60006006546000141562000320575060025490565b6000603c6706f05b59d3b20000600654426200033d919062000461565b6200034991906200047b565b6200035591906200049d565b62000369906722b1c8c1227a000062000446565b90506200037560025490565b8111156200038557505060025490565b919050565b8280546200039890620004c0565b90600052602060002090601f016020900481019282620003bc576000855562000407565b82601f10620003d757805160ff191683800117855562000407565b8280016001018555821562000407579182015b8281111562000407578251825591602001919060010190620003ea565b506200041592915062000419565b5090565b5b808211156200041557600081556001016200041a565b634e487b7160e01b600052601160045260246000fd5b600082198211156200045c576200045c62000430565b500190565b60008282101562000476576200047662000430565b500390565b600081600019048311821515161562000498576200049862000430565b500290565b600082620004bb57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620004d557607f821691505b60208210811415620004f757634e487b7160e01b600052602260045260246000fd5b50919050565b610d40806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461023d578063a9059cbb14610250578063dd62ed3e14610263578063f2fde38b1461029c578063f8b45b05146102af57600080fd5b8063715018a61461020c57806375a50dae146102145780638da5cb5b1461022457806395d89b411461023557600080fd5b806323b872dd116100e957806323b872dd14610199578063313ce567146101ac57806339509351146101bb5780636b0ec5b6146101ce57806370a08231146101e357600080fd5b806306fdde031461011b578063095ea7b31461013957806316f0115b1461015c57806318160ddd14610187575b600080fd5b6101236102b7565b6040516101309190610aed565b60405180910390f35b61014c610147366004610b59565b610349565b6040519015158152602001610130565b60075461016f906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6002545b604051908152602001610130565b61014c6101a7366004610b83565b61035f565b60405160098152602001610130565b61014c6101c9366004610b59565b61040e565b6101e16101dc366004610bbf565b61044a565b005b61018b6101f1366004610bbf565b6001600160a01b031660009081526020819052604090205490565b6101e161049a565b61018b68056bc75e2d6310000081565b6005546001600160a01b031661016f565b6101236104d0565b61014c61024b366004610b59565b6104df565b61014c61025e366004610b59565b610578565b61018b610271366004610be1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e16102aa366004610bbf565b610585565b61018b610620565b6060600380546102c690610c14565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610c14565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610694565b50600192915050565b600061036c8484846107b8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104038533858403610694565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610356918590610445908690610c65565b610694565b6005546001600160a01b031633146104745760405162461bcd60e51b81526004016103ed90610c7d565b42600655600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146104c45760405162461bcd60e51b81526004016103ed90610c7d565b6104ce6000610992565b565b6060600480546102c690610c14565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105615760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ed565b61056e3385858403610694565b5060019392505050565b60006103563384846107b8565b6005546001600160a01b031633146105af5760405162461bcd60e51b81526004016103ed90610c7d565b6001600160a01b0381166106145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ed565b61061d81610992565b50565b600060065460001415610634575060025490565b6000603c6706f05b59d3b200006006544261064f9190610cb2565b6106599190610cc9565b6106639190610ce8565b610675906722b1c8c1227a0000610c65565b905061068060025490565b81111561068f57505060025490565b919050565b6001600160a01b0383166106f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ed565b6001600160a01b0382166107575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661081c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ed565b6001600160a01b03821661087e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ed565b6108898383836109e4565b6001600160a01b038316600090815260208190526040902054818110156109015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ed565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610938908490610c65565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098491815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b0316610a67576005546001600160a01b0384811691161480610a1d57506005546001600160a01b038381169116145b610a625760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016103ed565b505050565b6007546001600160a01b03838116911614610a6257610a84610620565b81610aa4846001600160a01b031660009081526020819052604090205490565b610aae9190610c65565b1115610a625760405162461bcd60e51b815260206004820152600e60248201526d77616c6c6574206d6178696d756d60901b60448201526064016103ed565b600060208083528351808285015260005b81811015610b1a57858101830151858201604001528201610afe565b81811115610b2c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461068f57600080fd5b60008060408385031215610b6c57600080fd5b610b7583610b42565b946020939093013593505050565b600080600060608486031215610b9857600080fd5b610ba184610b42565b9250610baf60208501610b42565b9150604084013590509250925092565b600060208284031215610bd157600080fd5b610bda82610b42565b9392505050565b60008060408385031215610bf457600080fd5b610bfd83610b42565b9150610c0b60208401610b42565b90509250929050565b600181811c90821680610c2857607f821691505b60208210811415610c4957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c7857610c78610c4f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610cc457610cc4610c4f565b500390565b6000816000190483118215151615610ce357610ce3610c4f565b500290565b600082610d0557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212203cd0dc08ab8c17577594eea0e135fb0d3f8cf2da83e2a71a139cab020bc3f5a964736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461023d578063a9059cbb14610250578063dd62ed3e14610263578063f2fde38b1461029c578063f8b45b05146102af57600080fd5b8063715018a61461020c57806375a50dae146102145780638da5cb5b1461022457806395d89b411461023557600080fd5b806323b872dd116100e957806323b872dd14610199578063313ce567146101ac57806339509351146101bb5780636b0ec5b6146101ce57806370a08231146101e357600080fd5b806306fdde031461011b578063095ea7b31461013957806316f0115b1461015c57806318160ddd14610187575b600080fd5b6101236102b7565b6040516101309190610aed565b60405180910390f35b61014c610147366004610b59565b610349565b6040519015158152602001610130565b60075461016f906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6002545b604051908152602001610130565b61014c6101a7366004610b83565b61035f565b60405160098152602001610130565b61014c6101c9366004610b59565b61040e565b6101e16101dc366004610bbf565b61044a565b005b61018b6101f1366004610bbf565b6001600160a01b031660009081526020819052604090205490565b6101e161049a565b61018b68056bc75e2d6310000081565b6005546001600160a01b031661016f565b6101236104d0565b61014c61024b366004610b59565b6104df565b61014c61025e366004610b59565b610578565b61018b610271366004610be1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e16102aa366004610bbf565b610585565b61018b610620565b6060600380546102c690610c14565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610c14565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610694565b50600192915050565b600061036c8484846107b8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104038533858403610694565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610356918590610445908690610c65565b610694565b6005546001600160a01b031633146104745760405162461bcd60e51b81526004016103ed90610c7d565b42600655600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146104c45760405162461bcd60e51b81526004016103ed90610c7d565b6104ce6000610992565b565b6060600480546102c690610c14565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105615760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ed565b61056e3385858403610694565b5060019392505050565b60006103563384846107b8565b6005546001600160a01b031633146105af5760405162461bcd60e51b81526004016103ed90610c7d565b6001600160a01b0381166106145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ed565b61061d81610992565b50565b600060065460001415610634575060025490565b6000603c6706f05b59d3b200006006544261064f9190610cb2565b6106599190610cc9565b6106639190610ce8565b610675906722b1c8c1227a0000610c65565b905061068060025490565b81111561068f57505060025490565b919050565b6001600160a01b0383166106f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ed565b6001600160a01b0382166107575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661081c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ed565b6001600160a01b03821661087e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ed565b6108898383836109e4565b6001600160a01b038316600090815260208190526040902054818110156109015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ed565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610938908490610c65565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098491815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b0316610a67576005546001600160a01b0384811691161480610a1d57506005546001600160a01b038381169116145b610a625760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016103ed565b505050565b6007546001600160a01b03838116911614610a6257610a84610620565b81610aa4846001600160a01b031660009081526020819052604090205490565b610aae9190610c65565b1115610a625760405162461bcd60e51b815260206004820152600e60248201526d77616c6c6574206d6178696d756d60901b60448201526064016103ed565b600060208083528351808285015260005b81811015610b1a57858101830151858201604001528201610afe565b81811115610b2c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461068f57600080fd5b60008060408385031215610b6c57600080fd5b610b7583610b42565b946020939093013593505050565b600080600060608486031215610b9857600080fd5b610ba184610b42565b9250610baf60208501610b42565b9150604084013590509250925092565b600060208284031215610bd157600080fd5b610bda82610b42565b9392505050565b60008060408385031215610bf457600080fd5b610bfd83610b42565b9150610c0b60208401610b42565b90509250929050565b600181811c90821680610c2857607f821691505b60208210811415610c4957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c7857610c78610c4f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610cc457610cc4610c4f565b500390565b6000816000190483118215151615610ce357610ce3610c4f565b500290565b600082610d0557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212203cd0dc08ab8c17577594eea0e135fb0d3f8cf2da83e2a71a139cab020bc3f5a964736f6c634300080a0033
Deployed Bytecode Sourcemap
18490:1443:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8529:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10696:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10696:169:0;1053:187:1;18717:19:0;;;;;-1:-1:-1;;;;;18717:19:0;;;;;;-1:-1:-1;;;;;1409:32:1;;;1391:51;;1379:2;1364:18;18717:19:0;1245:203:1;9649:108:0;9737:12;;9649:108;;;1599:25:1;;;1587:2;1572:18;9649:108:0;1453:177:1;11347:492:0;;;;;;:::i;:::-;;:::i;18851:84::-;;;18926:1;2110:36:1;;2098:2;2083:18;18851:84:0;1968:184:1;12248:215:0;;;;;;:::i;:::-;;:::i;19790:140::-;;;;;;:::i;:::-;;:::i;:::-;;9820:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9921:18:0;9894:7;9921:18;;;;;;;;;;;;9820:127;2441:103;;;:::i;18630:49::-;;18675:4;18630:49;;1790:87;1863:6;;-1:-1:-1;;;;;1863:6:0;1790:87;;8748:104;;;:::i;12966:413::-;;;;;;:::i;:::-;;:::i;10160:175::-;;;;;;:::i;:::-;;:::i;10398:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10514:18:0;;;10487:7;10514:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10398:151;2699:201;;;;;;:::i;:::-;;:::i;18943:338::-;;;:::i;8529:100::-;8583:13;8616:5;8609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8529:100;:::o;10696:169::-;10779:4;10796:39;647:10;10819:7;10828:6;10796:8;:39::i;:::-;-1:-1:-1;10853:4:0;10696:169;;;;:::o;11347:492::-;11487:4;11504:36;11514:6;11522:9;11533:6;11504:9;:36::i;:::-;-1:-1:-1;;;;;11580:19:0;;11553:24;11580:19;;;:11;:19;;;;;;;;647:10;11580:33;;;;;;;;11632:26;;;;11624:79;;;;-1:-1:-1;;;11624:79:0;;3200:2:1;11624:79:0;;;3182:21:1;3239:2;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;-1:-1:-1;;;3329:18:1;;;3322:38;3377:19;;11624:79:0;;;;;;;;;11739:57;11748:6;647:10;11789:6;11770:16;:25;11739:8;:57::i;:::-;-1:-1:-1;11827:4:0;;11347:492;-1:-1:-1;;;;11347:492:0:o;12248:215::-;647:10;12336:4;12385:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12385:34:0;;;;;;;;;;12336:4;;12353:80;;12376:7;;12385:47;;12422:10;;12385:47;:::i;:::-;12353:8;:80::i;19790:140::-;1863:6;;-1:-1:-1;;;;;1863:6:0;647:10;2010:23;2002:68;;;;-1:-1:-1;;;2002:68:0;;;;;;;:::i;:::-;19878:15:::1;19859:16;:34:::0;19904:4:::1;:18:::0;;-1:-1:-1;;;;;;19904:18:0::1;-1:-1:-1::0;;;;;19904:18:0;;;::::1;::::0;;;::::1;::::0;;19790:140::o;2441:103::-;1863:6;;-1:-1:-1;;;;;1863:6:0;647:10;2010:23;2002:68;;;;-1:-1:-1;;;2002:68:0;;;;;;;:::i;:::-;2506:30:::1;2533:1;2506:18;:30::i;:::-;2441:103::o:0;8748:104::-;8804:13;8837:7;8830:14;;;;;:::i;12966:413::-;647:10;13059:4;13103:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13103:34:0;;;;;;;;;;13156:35;;;;13148:85;;;;-1:-1:-1;;;13148:85:0;;4235:2:1;13148:85:0;;;4217:21:1;4274:2;4254:18;;;4247:30;4313:34;4293:18;;;4286:62;-1:-1:-1;;;4364:18:1;;;4357:35;4409:19;;13148:85:0;4033:401:1;13148:85:0;13269:67;647:10;13292:7;13320:15;13301:16;:34;13269:8;:67::i;:::-;-1:-1:-1;13367:4:0;;12966:413;-1:-1:-1;;;12966:413:0:o;10160:175::-;10246:4;10263:42;647:10;10287:9;10298:6;10263:9;:42::i;2699:201::-;1863:6;;-1:-1:-1;;;;;1863:6:0;647:10;2010:23;2002:68;;;;-1:-1:-1;;;2002:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2788:22:0;::::1;2780:73;;;::::0;-1:-1:-1;;;2780:73:0;;4641:2:1;2780:73:0::1;::::0;::::1;4623:21:1::0;4680:2;4660:18;;;4653:30;4719:34;4699:18;;;4692:62;-1:-1:-1;;;4770:18:1;;;4763:36;4816:19;;2780:73:0::1;4439:402:1::0;2780:73:0::1;2864:28;2883:8;2864:18;:28::i;:::-;2699:201:::0;:::o;18943:338::-;18985:7;19009:16;;19029:1;19009:21;19005:47;;;-1:-1:-1;9737:12:0;;;18943:338::o;19005:47::-;19063:11;19186:9;18619:4;19127:16;;19109:15;:34;;;;:::i;:::-;19108:60;;;;:::i;:::-;19107:89;;;;:::i;:::-;19077:119;;18566:5;19077:119;:::i;:::-;19063:133;;19217:13;9737:12;;;9649:108;19217:13;19211:3;:19;19207:45;;;-1:-1:-1;;9737:12:0;;;18943:338::o;19207:45::-;19270:3;18943:338;-1:-1:-1;18943:338:0:o;16650:380::-;-1:-1:-1;;;;;16786:19:0;;16778:68;;;;-1:-1:-1;;;16778:68:0;;5573:2:1;16778:68:0;;;5555:21:1;5612:2;5592:18;;;5585:30;5651:34;5631:18;;;5624:62;-1:-1:-1;;;5702:18:1;;;5695:34;5746:19;;16778:68:0;5371:400:1;16778:68:0;-1:-1:-1;;;;;16865:21:0;;16857:68;;;;-1:-1:-1;;;16857:68:0;;5978:2:1;16857:68:0;;;5960:21:1;6017:2;5997:18;;;5990:30;6056:34;6036:18;;;6029:62;-1:-1:-1;;;6107:18:1;;;6100:32;6149:19;;16857:68:0;5776:398:1;16857:68:0;-1:-1:-1;;;;;16938:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16990:32;;1599:25:1;;;16990:32:0;;1572:18:1;16990:32:0;;;;;;;16650:380;;;:::o;13869:733::-;-1:-1:-1;;;;;14009:20:0;;14001:70;;;;-1:-1:-1;;;14001:70:0;;6381:2:1;14001:70:0;;;6363:21:1;6420:2;6400:18;;;6393:30;6459:34;6439:18;;;6432:62;-1:-1:-1;;;6510:18:1;;;6503:35;6555:19;;14001:70:0;6179:401:1;14001:70:0;-1:-1:-1;;;;;14090:23:0;;14082:71;;;;-1:-1:-1;;;14082:71:0;;6787:2:1;14082:71:0;;;6769:21:1;6826:2;6806:18;;;6799:30;6865:34;6845:18;;;6838:62;-1:-1:-1;;;6916:18:1;;;6909:33;6959:19;;14082:71:0;6585:399:1;14082:71:0;14166:47;14187:6;14195:9;14206:6;14166:20;:47::i;:::-;-1:-1:-1;;;;;14250:17:0;;14226:21;14250:17;;;;;;;;;;;14286:23;;;;14278:74;;;;-1:-1:-1;;;14278:74:0;;7191:2:1;14278:74:0;;;7173:21:1;7230:2;7210:18;;;7203:30;7269:34;7249:18;;;7242:62;-1:-1:-1;;;7320:18:1;;;7313:36;7366:19;;14278:74:0;6989:402:1;14278:74:0;-1:-1:-1;;;;;14388:17:0;;;:9;:17;;;;;;;;;;;14408:22;;;14388:42;;14452:20;;;;;;;;:30;;14424:6;;14388:9;14452:30;;14424:6;;14452:30;:::i;:::-;;;;;;;;14517:9;-1:-1:-1;;;;;14500:35:0;14509:6;-1:-1:-1;;;;;14500:35:0;;14528:6;14500:35;;;;1599:25:1;;1587:2;1572:18;;1453:177;14500:35:0;;;;;;;;13990:612;13869:733;;;:::o;3060:191::-;3153:6;;;-1:-1:-1;;;;;3170:17:0;;;-1:-1:-1;;;;;;3170:17:0;;;;;;;3203:40;;3153:6;;;3170:17;3153:6;;3203:40;;3134:16;;3203:40;3123:128;3060:191;:::o;19289:493::-;19505:4;;-1:-1:-1;;;;;19505:4:0;19501:139;;1863:6;;-1:-1:-1;;;;;19548:15:0;;;1863:6;;19548:15;;:32;;-1:-1:-1;1863:6:0;;-1:-1:-1;;;;;19567:13:0;;;1863:6;;19567:13;19548:32;19540:67;;;;-1:-1:-1;;;19540:67:0;;7598:2:1;19540:67:0;;;7580:21:1;7637:2;7617:18;;;7610:30;-1:-1:-1;;;7656:18:1;;;7649:52;7718:18;;19540:67:0;7396:346:1;19540:67:0;19289:493;;;:::o;19501:139::-;19691:4;;-1:-1:-1;;;;;19685:10:0;;;19691:4;;19685:10;19681:93;;19744:11;:9;:11::i;:::-;19734:6;19718:13;19728:2;-1:-1:-1;;;;;9921:18:0;9894:7;9921:18;;;;;;;;;;;;9820:127;19718:13;:22;;;;:::i;:::-;:37;;19710:64;;;;-1:-1:-1;;;19710:64:0;;7949:2:1;19710:64:0;;;7931:21:1;7988:2;7968:18;;;7961:30;-1:-1:-1;;;8007:18:1;;;8000:44;8061:18;;19710:64:0;7747:338:1;14:597;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;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;1635:328::-;1712:6;1720;1728;1781:2;1769:9;1760:7;1756:23;1752:32;1749:52;;;1797:1;1794;1787:12;1749:52;1820:29;1839:9;1820:29;:::i;:::-;1810:39;;1868:38;1902:2;1891:9;1887:18;1868:38;:::i;:::-;1858:48;;1953:2;1942:9;1938:18;1925:32;1915:42;;1635:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;2157:186;-1:-1:-1;;;2157:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;3407:127::-;3468:10;3463:3;3459:20;3456:1;3449:31;3499:4;3496:1;3489:15;3523:4;3520:1;3513:15;3539:128;3579:3;3610:1;3606:6;3603:1;3600:13;3597:39;;;3616:18;;:::i;:::-;-1:-1:-1;3652:9:1;;3539:128::o;3672:356::-;3874:2;3856:21;;;3893:18;;;3886:30;3952:34;3947:2;3932:18;;3925:62;4019:2;4004:18;;3672:356::o;4846:125::-;4886:4;4914:1;4911;4908:8;4905:34;;;4919:18;;:::i;:::-;-1:-1:-1;4956:9:1;;4846:125::o;4976:168::-;5016:7;5082:1;5078;5074:6;5070:14;5067:1;5064:21;5059:1;5052:9;5045:17;5041:45;5038:71;;;5089:18;;:::i;:::-;-1:-1:-1;5129:9:1;;4976:168::o;5149:217::-;5189:1;5215;5205:132;;5259:10;5254:3;5250:20;5247:1;5240:31;5294:4;5291:1;5284:15;5322:4;5319:1;5312:15;5205:132;-1:-1:-1;5351:9:1;;5149:217::o
Swarm Source
ipfs://3cd0dc08ab8c17577594eea0e135fb0d3f8cf2da83e2a71a139cab020bc3f5a9
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.