BEP-20
Overview
Max Total Supply
10,000,000,000DSC
Holders
35,495
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2 DSCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DSC
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC20.sol"; contract DSC is ERC20, Ownable { uint public maxUpNodeNum = 30; uint public amountCondition = 1000e18; address public defaultUpNode = address(0); mapping(address => address) private fathers; constructor(string memory name, string memory symbol, address _to, address _owner) ERC20(name, symbol) { setOwner(_owner, true); _mint(_to, 5000000000e18); fathers[0x84d5BbD963764D2C2922326c7c9823DBDea75e2C] = address(this); } function totalSupply() public view virtual override returns (uint256) { return 10000000000e18; } function changeCondition(uint newCondition) public onlyOwner { amountCondition = newCondition; } function changeDefaultUpNode(address newDefaultUpNode) public onlyOwner { defaultUpNode = newDefaultUpNode; } function _addUpNode(address sender, address receiver) internal { // 如果sender没有上级 ,则将为其设置默认上级 if (fathers[sender] == address(0)) { if (defaultUpNode != address(0)) { // 默认上级不为0时才需要设置 fathers[sender] = defaultUpNode; } } // 如果receiver没有上级,则将sender设置为其上级 if (fathers[receiver] == address(0)) { fathers[receiver] = sender; } } function selectUpNodes(address from) external view returns (address[] memory nodes) { nodes = new address[](maxUpNodeNum / 3); address next = fathers[from]; uint k = 0; for (uint i=0; i< maxUpNodeNum; i++) { if (next != address(0) && next != defaultUpNode) { if (i % 3 == 0) { nodes[k++] = next; } next = fathers[next]; } else { break; } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { //忽略掉合约划转的情况,同时金额必须是指定的金额 if (_msgSender() == from && amount == amountCondition) { _addUpNode(from, to); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; abstract contract Ownable { mapping(address => bool) public owners; mapping(address => uint) public applyCancelTimes; constructor() { owners[msg.sender] = true; } modifier onlyOwner() { require(owners[msg.sender], "O1"); _; } function applySetOwner(address owner) public onlyOwner { require(owners[owner], 'No need apply'); applyCancelTimes[owner] = block.timestamp; } function cancelSetReceiver(address owner) external onlyOwner { require(owners[owner], 'No need cancel'); applyCancelTimes[owner] = 0; } function setOwner(address owner, bool flag) public onlyOwner { if (!flag) { // 如果是撤销管理员,需要延迟10天生效 require(applyCancelTimes[owner] != 0 && block.timestamp > applyCancelTimes[owner] + 10 days, "Not ready for change receiver"); applyCancelTimes[owner] == 0; } owners[owner] = flag; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"amountCondition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"applyCancelTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"applySetOwner","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"cancelSetReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCondition","type":"uint256"}],"name":"changeCondition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDefaultUpNode","type":"address"}],"name":"changeDefaultUpNode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultUpNode","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxUpNodeNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"owners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"selectUpNodes","outputs":[{"internalType":"address[]","name":"nodes","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setOwner","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"}]
Contract Creation Code
6080604052601e600755683635c9adc5dea00000600855600980546001600160a01b03191690553480156200003357600080fd5b50604051620017023803806200170283398101604081905262000056916200059a565b8351849084906200006f90600390602085019062000424565b5080516200008590600490602084019062000424565b5050336000908152600560205260409020805460ff19166001908117909155620000b29150829062000122565b620000ca826b1027e72f1f128130880000006200024c565b50507384d5bbd963764d2c2922326c7c9823dbdea75e2c6000525050600a6020527fa15acc6aec124ddbc2fe2c5ef5f03d360fc52a503e546d172a5ddd51b419464680546001600160a01b031916301790556200069e565b3360009081526005602052604090205460ff166200016c5760405162461bcd60e51b81526020600482015260026024820152614f3160f01b60448201526064015b60405180910390fd5b8062000221576001600160a01b03821660009081526006602052604090205415801590620001c057506001600160a01b038216600090815260066020526040902054620001bd90620d2f0062000626565b42115b6200020e5760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420726561647920666f72206368616e6765207265636569766572000000604482015260640162000163565b6001600160a01b03821660005260066020525b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6001600160a01b038216620002a45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000163565b620002b26000838362000340565b8060026000828254620002c6919062000626565b90915550506001600160a01b03821660009081526020819052604081208054839290620002f590849062000626565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b336001600160a01b0384161480156200035a575060085481145b156200036c576200036c838362000371565b505050565b6001600160a01b038281166000908152600a602052604090205416620003d3576009546001600160a01b031615620003d3576009546001600160a01b038381166000908152600a6020526040902080546001600160a01b031916919092161790555b6001600160a01b038181166000908152600a6020526040902054166200033c576001600160a01b039081166000908152600a6020526040902080546001600160a01b03191692909116919091179055565b82805462000432906200064b565b90600052602060002090601f016020900481019282620004565760008555620004a1565b82601f106200047157805160ff1916838001178555620004a1565b82800160010185558215620004a1579182015b82811115620004a157825182559160200191906001019062000484565b50620004af929150620004b3565b5090565b5b80821115620004af5760008155600101620004b4565b80516001600160a01b0381168114620004e257600080fd5b919050565b600082601f830112620004f8578081fd5b81516001600160401b038082111562000515576200051562000688565b604051601f8301601f19908116603f0116810190828211818310171562000540576200054062000688565b816040528381526020925086838588010111156200055c578485fd5b8491505b838210156200057f578582018301518183018401529082019062000560565b838211156200059057848385830101525b9695505050505050565b60008060008060808587031215620005b0578384fd5b84516001600160401b0380821115620005c7578586fd5b620005d588838901620004e7565b95506020870151915080821115620005eb578485fd5b50620005fa87828801620004e7565b9350506200060b60408601620004ca565b91506200061b60608601620004ca565b905092959194509250565b600082198211156200064657634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200066057607f821691505b602082108114156200068257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61105480620006ae6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063516c731c116100b8578063a457c2d71161007c578063a457c2d7146102b4578063a9059cbb146102c7578063ca2597c8146102da578063dd62ed3e146102ed578063f3ecb16814610300578063f5b58bcc1461032057600080fd5b8063516c731c14610254578063530cc0441461026757806370a082311461027057806395d89b4114610299578063983256a0146102a157600080fd5b806323b872dd1161010a57806323b872dd146101d85780632676fe62146101eb5780632cb482ee14610216578063313ce5671461021f578063395093511461022e5780635044530d1461024157600080fd5b8063022914a714610147578063068fb96d1461017f57806306fdde0314610194578063095ea7b3146101a957806318160ddd146101bc575b600080fd5b61016a610155366004610d97565b60056020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b61019261018d366004610d97565b610340565b005b61019c6103eb565b6040516101769190610eed565b61016a6101b7366004610e5f565b61047d565b6b204fce5e3e250261100000005b604051908152602001610176565b61016a6101e6366004610dea565b610495565b6009546101fe906001600160a01b031681565b6040516001600160a01b039091168152602001610176565b6101ca60085481565b60405160128152602001610176565b61016a61023c366004610e5f565b6104b9565b61019261024f366004610d97565b6104db565b610192610262366004610e25565b61057e565b6101ca60075481565b6101ca61027e366004610d97565b6001600160a01b031660009081526020819052604090205490565b61019c610687565b6101926102af366004610e88565b610696565b61016a6102c2366004610e5f565b6106ca565b61016a6102d5366004610e5f565b610745565b6101926102e8366004610d97565b610753565b6101ca6102fb366004610db8565b6107a4565b61031361030e366004610d97565b6107cf565b6040516101769190610ea0565b6101ca61032e366004610d97565b60066020526000908152604090205481565b3360009081526005602052604090205460ff166103785760405162461bcd60e51b815260040161036f90610f40565b60405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff166103d15760405162461bcd60e51b815260206004820152600e60248201526d139bc81b9959590818d85b98d95b60921b604482015260640161036f565b6001600160a01b0316600090815260066020526040812055565b6060600380546103fa90610f88565b80601f016020809104026020016040519081016040528092919081815260200182805461042690610f88565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b60003361048b818585610925565b5060019392505050565b6000336104a3858285610a49565b6104ae858585610ac3565b506001949350505050565b60003361048b8185856104cc83836107a4565b6104d69190610f5c565b610925565b3360009081526005602052604090205460ff1661050a5760405162461bcd60e51b815260040161036f90610f40565b6001600160a01b03811660009081526005602052604090205460ff166105625760405162461bcd60e51b815260206004820152600d60248201526c4e6f206e656564206170706c7960981b604482015260640161036f565b6001600160a01b03166000908152600660205260409020429055565b3360009081526005602052604090205460ff166105ad5760405162461bcd60e51b815260040161036f90610f40565b8061065c576001600160a01b038216600090815260066020526040902054158015906105fd57506001600160a01b0382166000908152600660205260409020546105fa90620d2f00610f5c565b42115b6106495760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420726561647920666f72206368616e6765207265636569766572000000604482015260640161036f565b6001600160a01b03821660005260066020525b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6060600480546103fa90610f88565b3360009081526005602052604090205460ff166106c55760405162461bcd60e51b815260040161036f90610f40565b600855565b600033816106d882866107a4565b9050838110156107385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036f565b6104ae8286868403610925565b60003361048b818585610ac3565b3360009081526005602052604090205460ff166107825760405162461bcd60e51b815260040161036f90610f40565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b606060036007546107e09190610f74565b67ffffffffffffffff81111561080657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561082f578160200160208202803683370190505b506001600160a01b038084166000908152600a6020526040812054929350911690805b60075481101561091d576001600160a01b0383161580159061088257506009546001600160a01b03848116911614155b1561090657610892600382610fde565b6108e3578284836108a281610fc3565b9450815181106108c257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250505b6001600160a01b039283166000908152600a60205260409020549092169161090b565b61091d565b8061091581610fc3565b915050610852565b505050919050565b6001600160a01b0383166109875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036f565b6001600160a01b0382166109e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a5584846107a4565b90506000198114610abd5781811015610ab05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036f565b610abd8484848403610925565b50505050565b6001600160a01b038316610b275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036f565b6001600160a01b038216610b895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036f565b610b94838383610c9c565b6001600160a01b03831660009081526020819052604090205481811015610c0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c43908490610f5c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8f91815260200190565b60405180910390a3610abd565b336001600160a01b038416148015610cb5575060085481145b15610cc457610cc48383610cc9565b505050565b6001600160a01b038281166000908152600a602052604090205416610d29576009546001600160a01b031615610d29576009546001600160a01b038381166000908152600a6020526040902080546001600160a01b031916919092161790555b6001600160a01b038181166000908152600a602052604090205416610d77576001600160a01b038181166000908152600a6020526040902080546001600160a01b0319169184169190911790555b5050565b80356001600160a01b0381168114610d9257600080fd5b919050565b600060208284031215610da8578081fd5b610db182610d7b565b9392505050565b60008060408385031215610dca578081fd5b610dd383610d7b565b9150610de160208401610d7b565b90509250929050565b600080600060608486031215610dfe578081fd5b610e0784610d7b565b9250610e1560208501610d7b565b9150604084013590509250925092565b60008060408385031215610e37578182fd5b610e4083610d7b565b915060208301358015158114610e54578182fd5b809150509250929050565b60008060408385031215610e71578182fd5b610e7a83610d7b565b946020939093013593505050565b600060208284031215610e99578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b81811015610ee15783516001600160a01b031683529284019291840191600101610ebc565b50909695505050505050565b6000602080835283518082850152825b81811015610f1957858101830151858201604001528201610efd565b81811115610f2a5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600290820152614f3160f01b604082015260600190565b60008219821115610f6f57610f6f610ff2565b500190565b600082610f8357610f83611008565b500490565b600181811c90821680610f9c57607f821691505b60208210811415610fbd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610fd757610fd7610ff2565b5060010190565b600082610fed57610fed611008565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea2646970667358221220b3a3175d9a981b5b4aa9e24775305970a1f204c5cac1cb2479ef664b8be69d1864736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006a623944dc46169096b39a5322d30c5a681f308a000000000000000000000000625620e8318c7e8907d6261b96cd56cbb00a452500000000000000000000000000000000000000000000000000000000000000094453465320436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034453430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063516c731c116100b8578063a457c2d71161007c578063a457c2d7146102b4578063a9059cbb146102c7578063ca2597c8146102da578063dd62ed3e146102ed578063f3ecb16814610300578063f5b58bcc1461032057600080fd5b8063516c731c14610254578063530cc0441461026757806370a082311461027057806395d89b4114610299578063983256a0146102a157600080fd5b806323b872dd1161010a57806323b872dd146101d85780632676fe62146101eb5780632cb482ee14610216578063313ce5671461021f578063395093511461022e5780635044530d1461024157600080fd5b8063022914a714610147578063068fb96d1461017f57806306fdde0314610194578063095ea7b3146101a957806318160ddd146101bc575b600080fd5b61016a610155366004610d97565b60056020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b61019261018d366004610d97565b610340565b005b61019c6103eb565b6040516101769190610eed565b61016a6101b7366004610e5f565b61047d565b6b204fce5e3e250261100000005b604051908152602001610176565b61016a6101e6366004610dea565b610495565b6009546101fe906001600160a01b031681565b6040516001600160a01b039091168152602001610176565b6101ca60085481565b60405160128152602001610176565b61016a61023c366004610e5f565b6104b9565b61019261024f366004610d97565b6104db565b610192610262366004610e25565b61057e565b6101ca60075481565b6101ca61027e366004610d97565b6001600160a01b031660009081526020819052604090205490565b61019c610687565b6101926102af366004610e88565b610696565b61016a6102c2366004610e5f565b6106ca565b61016a6102d5366004610e5f565b610745565b6101926102e8366004610d97565b610753565b6101ca6102fb366004610db8565b6107a4565b61031361030e366004610d97565b6107cf565b6040516101769190610ea0565b6101ca61032e366004610d97565b60066020526000908152604090205481565b3360009081526005602052604090205460ff166103785760405162461bcd60e51b815260040161036f90610f40565b60405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff166103d15760405162461bcd60e51b815260206004820152600e60248201526d139bc81b9959590818d85b98d95b60921b604482015260640161036f565b6001600160a01b0316600090815260066020526040812055565b6060600380546103fa90610f88565b80601f016020809104026020016040519081016040528092919081815260200182805461042690610f88565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b60003361048b818585610925565b5060019392505050565b6000336104a3858285610a49565b6104ae858585610ac3565b506001949350505050565b60003361048b8185856104cc83836107a4565b6104d69190610f5c565b610925565b3360009081526005602052604090205460ff1661050a5760405162461bcd60e51b815260040161036f90610f40565b6001600160a01b03811660009081526005602052604090205460ff166105625760405162461bcd60e51b815260206004820152600d60248201526c4e6f206e656564206170706c7960981b604482015260640161036f565b6001600160a01b03166000908152600660205260409020429055565b3360009081526005602052604090205460ff166105ad5760405162461bcd60e51b815260040161036f90610f40565b8061065c576001600160a01b038216600090815260066020526040902054158015906105fd57506001600160a01b0382166000908152600660205260409020546105fa90620d2f00610f5c565b42115b6106495760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420726561647920666f72206368616e6765207265636569766572000000604482015260640161036f565b6001600160a01b03821660005260066020525b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6060600480546103fa90610f88565b3360009081526005602052604090205460ff166106c55760405162461bcd60e51b815260040161036f90610f40565b600855565b600033816106d882866107a4565b9050838110156107385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036f565b6104ae8286868403610925565b60003361048b818585610ac3565b3360009081526005602052604090205460ff166107825760405162461bcd60e51b815260040161036f90610f40565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b606060036007546107e09190610f74565b67ffffffffffffffff81111561080657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561082f578160200160208202803683370190505b506001600160a01b038084166000908152600a6020526040812054929350911690805b60075481101561091d576001600160a01b0383161580159061088257506009546001600160a01b03848116911614155b1561090657610892600382610fde565b6108e3578284836108a281610fc3565b9450815181106108c257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250505b6001600160a01b039283166000908152600a60205260409020549092169161090b565b61091d565b8061091581610fc3565b915050610852565b505050919050565b6001600160a01b0383166109875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036f565b6001600160a01b0382166109e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a5584846107a4565b90506000198114610abd5781811015610ab05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036f565b610abd8484848403610925565b50505050565b6001600160a01b038316610b275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036f565b6001600160a01b038216610b895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036f565b610b94838383610c9c565b6001600160a01b03831660009081526020819052604090205481811015610c0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c43908490610f5c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8f91815260200190565b60405180910390a3610abd565b336001600160a01b038416148015610cb5575060085481145b15610cc457610cc48383610cc9565b505050565b6001600160a01b038281166000908152600a602052604090205416610d29576009546001600160a01b031615610d29576009546001600160a01b038381166000908152600a6020526040902080546001600160a01b031916919092161790555b6001600160a01b038181166000908152600a602052604090205416610d77576001600160a01b038181166000908152600a6020526040902080546001600160a01b0319169184169190911790555b5050565b80356001600160a01b0381168114610d9257600080fd5b919050565b600060208284031215610da8578081fd5b610db182610d7b565b9392505050565b60008060408385031215610dca578081fd5b610dd383610d7b565b9150610de160208401610d7b565b90509250929050565b600080600060608486031215610dfe578081fd5b610e0784610d7b565b9250610e1560208501610d7b565b9150604084013590509250925092565b60008060408385031215610e37578182fd5b610e4083610d7b565b915060208301358015158114610e54578182fd5b809150509250929050565b60008060408385031215610e71578182fd5b610e7a83610d7b565b946020939093013593505050565b600060208284031215610e99578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b81811015610ee15783516001600160a01b031683529284019291840191600101610ebc565b50909695505050505050565b6000602080835283518082850152825b81811015610f1957858101830151858201604001528201610efd565b81811115610f2a5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600290820152614f3160f01b604082015260600190565b60008219821115610f6f57610f6f610ff2565b500190565b600082610f8357610f83611008565b500490565b600181811c90821680610f9c57607f821691505b60208210811415610fbd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610fd757610fd7610ff2565b5060010190565b600082610fed57610fed611008565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea2646970667358221220b3a3175d9a981b5b4aa9e24775305970a1f204c5cac1cb2479ef664b8be69d1864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006a623944dc46169096b39a5322d30c5a681f308a000000000000000000000000625620e8318c7e8907d6261b96cd56cbb00a452500000000000000000000000000000000000000000000000000000000000000094453465320436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034453430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): DSFS Coin
Arg [1] : symbol (string): DSC
Arg [2] : _to (address): 0x6A623944dC46169096b39a5322d30c5A681f308a
Arg [3] : _owner (address): 0x625620E8318C7e8907d6261B96Cd56cBb00A4525
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000006a623944dc46169096b39a5322d30c5a681f308a
Arg [3] : 000000000000000000000000625620e8318c7e8907d6261b96cd56cbb00a4525
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4453465320436f696e0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4453430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
185:2213:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149:38:5;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2886:14:6;;2879:22;2861:41;;2849:2;2834:18;149:38:5;;;;;;;;581:158;;;;;;:::i;:::-;;:::i;:::-;;2135:98:2;;;:::i;:::-;;;;;;;:::i;4412:197::-;;;;;;:::i;:::-;;:::i;671:110:1:-;759:14;671:110;;;7829:25:6;;;7817:2;7802:18;671:110:1;7784:76:6;5171:286:2;;;;;;:::i;:::-;;:::i;303:41:1:-;;;;;-1:-1:-1;;;;;303:41:1;;;;;;-1:-1:-1;;;;;2011:32:6;;;1993:51;;1981:2;1966:18;303:41:1;1948:102:6;259:37:1;;;;;;3072:91:2;;;3154:2;8007:36:6;;7995:2;7980:18;3072:91:2;7962:87:6;5852:234:2;;;;;;:::i;:::-;;:::i;408:165:5:-;;;;;;:::i;:::-;;:::i;747:387::-;;;;;;:::i;:::-;;:::i;223:29:1:-;;;;;;3387:125:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3487:18:2;3461:7;3487:18;;;;;;;;;;;;3387:125;2346:102;;;:::i;789:110:1:-;;;;;;:::i;:::-;;:::i;6573:427:2:-;;;;;;:::i;:::-;;:::i;3708:189::-;;;;;;:::i;:::-;;:::i;907:123:1:-;;;;;;:::i;:::-;;:::i;3955:149:2:-;;;;;;:::i;:::-;;:::i;1573:489:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;194:48:5:-;;;;;;:::i;:::-;;;;;;;;;;;;;;581:158;362:10;355:18;;;;:6;:18;;;;;;;;347:33;;;;-1:-1:-1;;;347:33:5;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;661:13:5;::::1;;::::0;;;:6:::1;:13;::::0;;;;;::::1;;653:40;;;::::0;-1:-1:-1;;;653:40:5;;5637:2:6;653:40:5::1;::::0;::::1;5619:21:6::0;5676:2;5656:18;;;5649:30;-1:-1:-1;;;5695:18:6;;;5688:44;5749:18;;653:40:5::1;5609:164:6::0;653:40:5::1;-1:-1:-1::0;;;;;704:23:5::1;730:1;704:23:::0;;;:16:::1;:23;::::0;;;;:27;581:158::o;2135:98:2:-;2189:13;2221:5;2214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98;:::o;4412:197::-;4495:4;719:10:0;4549:32:2;719:10:0;4565:7:2;4574:6;4549:8;:32::i;:::-;-1:-1:-1;4598:4:2;;4412:197;-1:-1:-1;;;4412:197:2:o;5171:286::-;5298:4;719:10:0;5354:38:2;5370:4;719:10:0;5385:6:2;5354:15;:38::i;:::-;5402:27;5412:4;5418:2;5422:6;5402:9;:27::i;:::-;-1:-1:-1;5446:4:2;;5171:286;-1:-1:-1;;;;5171:286:2:o;5852:234::-;5940:4;719:10:0;5994:64:2;719:10:0;6010:7:2;6047:10;6019:25;719:10:0;6010:7:2;6019:9;:25::i;:::-;:38;;;;:::i;:::-;5994:8;:64::i;408:165:5:-;362:10;355:18;;;;:6;:18;;;;;;;;347:33;;;;-1:-1:-1;;;347:33:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;482:13:5;::::1;;::::0;;;:6:::1;:13;::::0;;;;;::::1;;474:39;;;::::0;-1:-1:-1;;;474:39:5;;5295:2:6;474:39:5::1;::::0;::::1;5277:21:6::0;5334:2;5314:18;;;5307:30;-1:-1:-1;;;5353:18:6;;;5346:43;5406:18;;474:39:5::1;5267:163:6::0;474:39:5::1;-1:-1:-1::0;;;;;524:23:5::1;;::::0;;;:16:::1;:23;::::0;;;;550:15:::1;524:41:::0;;408:165::o;747:387::-;362:10;355:18;;;;:6;:18;;;;;;;;347:33;;;;-1:-1:-1;;;347:33:5;;;;;;;:::i;:::-;824:4:::1;819:277;;-1:-1:-1::0;;;;;907:23:5;::::1;;::::0;;;:16:::1;:23;::::0;;;;;:28;;::::1;::::0;:83:::1;;-1:-1:-1::0;;;;;;957:23:5;::::1;;::::0;;;:16:::1;:23;::::0;;;;;:33:::1;::::0;983:7:::1;957:33;:::i;:::-;939:15;:51;907:83;899:142;;;::::0;-1:-1:-1;;;899:142:5;;6791:2:6;899:142:5::1;::::0;::::1;6773:21:6::0;6830:2;6810:18;;;6803:30;6869:31;6849:18;;;6842:59;6918:18;;899:142:5::1;6763:179:6::0;899:142:5::1;-1:-1:-1::0;;;;;1056:23:5;::::1;;::::0;:16:::1;:23;::::0;819:277:::1;-1:-1:-1::0;;;;;1106:13:5;;;::::1;;::::0;;;:6:::1;:13;::::0;;;;:20;;-1:-1:-1;;1106:20:5::1;::::0;::::1;;::::0;;;::::1;::::0;;747:387::o;2346:102:2:-;2402:13;2434:7;2427:14;;;;;:::i;789:110:1:-;362:10:5;355:18;;;;:6;:18;;;;;;;;347:33;;;;-1:-1:-1;;;347:33:5;;;;;;;:::i;:::-;861:15:1::1;:30:::0;789:110::o;6573:427:2:-;6666:4;719:10:0;6666:4:2;6747:25;719:10:0;6764:7:2;6747:9;:25::i;:::-;6720:52;;6810:15;6790:16;:35;;6782:85;;;;-1:-1:-1;;;6782:85:2;;7479:2:6;6782:85:2;;;7461:21:6;7518:2;7498:18;;;7491:30;7557:34;7537:18;;;7530:62;-1:-1:-1;;;7608:18:6;;;7601:35;7653:19;;6782:85:2;7451:227:6;6782:85:2;6901:60;6910:5;6917:7;6945:15;6926:16;:34;6901:8;:60::i;3708:189::-;3787:4;719:10:0;3841:28:2;719:10:0;3858:2:2;3862:6;3841:9;:28::i;907:123:1:-;362:10:5;355:18;;;;:6;:18;;;;;;;;347:33;;;;-1:-1:-1;;;347:33:5;;;;;;;:::i;:::-;990:13:1::1;:32:::0;;-1:-1:-1;;;;;;990:32:1::1;-1:-1:-1::0;;;;;990:32:1;;;::::1;::::0;;;::::1;::::0;;907:123::o;3955:149:2:-;-1:-1:-1;;;;;4070:18:2;;;4044:7;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3955:149::o;1573:489:1:-;1633:22;1705:1;1690:12;;:16;;;;:::i;:::-;1676:31;;;;;;-1:-1:-1;;;1676:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1676:31:1;-1:-1:-1;;;;;;1733:13:1;;;1718:12;1733:13;;;:7;:13;;;;;;1668:39;;-1:-1:-1;1733:13:1;;;1718:12;1778:277;1796:12;;1793:1;:15;1778:277;;;-1:-1:-1;;;;;1834:18:1;;;;;;:43;;-1:-1:-1;1864:13:1;;-1:-1:-1;;;;;1856:21:1;;;1864:13;;1856:21;;1834:43;1830:214;;;1902:5;1906:1;1902;:5;:::i;:::-;1898:76;;1950:4;1937:5;1943:3;;;;:::i;:::-;;;1937:10;;;;;;-1:-1:-1;;;1937:10:1;;;;;;;;;;;;;;:17;-1:-1:-1;;;;;1937:17:1;;;-1:-1:-1;;;;;1937:17:1;;;;;1898:76;-1:-1:-1;;;;;1999:13:1;;;;;;;:7;:13;;;;;;;;;;1830:214;;;2036:5;;1830:214;1810:3;;;;:::i;:::-;;;;1778:277;;;;1573:489;;;;;:::o;10089:370:2:-;-1:-1:-1;;;;;10220:19:2;;10212:68;;;;-1:-1:-1;;;10212:68:2;;6386:2:6;10212:68:2;;;6368:21:6;6425:2;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;-1:-1:-1;;;6515:18:6;;;6508:34;6559:19;;10212:68:2;6358:226:6;10212:68:2;-1:-1:-1;;;;;10298:21:2;;10290:68;;;;-1:-1:-1;;;10290:68:2;;4127:2:6;10290:68:2;;;4109:21:6;4166:2;4146:18;;;4139:30;4205:34;4185:18;;;4178:62;-1:-1:-1;;;4256:18:6;;;4249:32;4298:19;;10290:68:2;4099:224:6;10290:68:2;-1:-1:-1;;;;;10369:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10420:32;;7829:25:6;;;10420:32:2;;7802:18:6;10420:32:2;;;;;;;10089:370;;;:::o;10740:441::-;10870:24;10897:25;10907:5;10914:7;10897:9;:25::i;:::-;10870:52;;-1:-1:-1;;10936:16:2;:37;10932:243;;11017:6;10997:16;:26;;10989:68;;;;-1:-1:-1;;;10989:68:2;;4530:2:6;10989:68:2;;;4512:21:6;4569:2;4549:18;;;4542:30;4608:31;4588:18;;;4581:59;4657:18;;10989:68:2;4502:179:6;10989:68:2;11099:51;11108:5;11115:7;11143:6;11124:16;:25;11099:8;:51::i;:::-;10740:441;;;;:::o;7454:651::-;-1:-1:-1;;;;;7580:18:2;;7572:68;;;;-1:-1:-1;;;7572:68:2;;5980:2:6;7572:68:2;;;5962:21:6;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:6;;;6102:35;6154:19;;7572:68:2;5952:227:6;7572:68:2;-1:-1:-1;;;;;7658:16:2;;7650:64;;;;-1:-1:-1;;;7650:64:2;;3723:2:6;7650:64:2;;;3705:21:6;3762:2;3742:18;;;3735:30;3801:34;3781:18;;;3774:62;-1:-1:-1;;;3852:18:6;;;3845:33;3895:19;;7650:64:2;3695:225:6;7650:64:2;7725:38;7746:4;7752:2;7756:6;7725:20;:38::i;:::-;-1:-1:-1;;;;;7796:15:2;;7774:19;7796:15;;;;;;;;;;;7829:21;;;;7821:72;;;;-1:-1:-1;;;7821:72:2;;4888:2:6;7821:72:2;;;4870:21:6;4927:2;4907:18;;;4900:30;4966:34;4946:18;;;4939:62;-1:-1:-1;;;5017:18:6;;;5010:36;5063:19;;7821:72:2;4860:228:6;7821:72:2;-1:-1:-1;;;;;7927:15:2;;;:9;:15;;;;;;;;;;;7945:20;;;7927:38;;7985:13;;;;;;;;:23;;7959:6;;7927:9;7985:23;;7959:6;;7985:23;:::i;:::-;;;;;;;;8039:2;-1:-1:-1;;;;;8024:26:2;8033:4;-1:-1:-1;;;;;8024:26:2;;8043:6;8024:26;;;;7829:25:6;;7817:2;7802:18;;7784:76;8024:26:2;;;;;;;;8061:37;2070:325:1;;719:10:0;-1:-1:-1;;;;;2290:20:1;;;:49;;;;;2324:15;;2314:6;:25;2290:49;2286:102;;;2356:20;2367:4;2373:2;2356:10;:20::i;:::-;2070:325;;;:::o;1038:527::-;-1:-1:-1;;;;;1187:15:1;;;1214:1;1187:15;;;:7;:15;;;;;;;1183:201;;1237:13;;-1:-1:-1;;;;;1237:13:1;:27;1233:140;;1344:13;;-1:-1:-1;;;;;1326:15:1;;;1344:13;1326:15;;;:7;:15;;;;;:31;;-1:-1:-1;;;;;;1326:31:1;1344:13;;;;1326:31;;;1233:140;-1:-1:-1;;;;;1472:17:1;;;1501:1;1472:17;;;:7;:17;;;;;;;1468:90;;-1:-1:-1;;;;;1520:17:1;;;;;;;:7;:17;;;;;:26;;-1:-1:-1;;;;;;1520:26:1;;;;;;;;;;1468:90;1038:527;;:::o;14:173:6:-;82:20;;-1:-1:-1;;;;;131:31:6;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:6:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:367::-;1076:6;1084;1137:2;1125:9;1116:7;1112:23;1108:32;1105:2;;;1158:6;1150;1143:22;1105:2;1186:29;1205:9;1186:29;:::i;:::-;1176:39;;1265:2;1254:9;1250:18;1237:32;1312:5;1305:13;1298:21;1291:5;1288:32;1278:2;;1339:6;1331;1324:22;1278:2;1367:5;1357:15;;;1095:283;;;;;:::o;1383:264::-;1451:6;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:2;;;1533:6;1525;1518:22;1480:2;1561:29;1580:9;1561:29;:::i;:::-;1551:39;1637:2;1622:18;;;;1609:32;;-1:-1:-1;;;1470:177:6:o;1652:190::-;1711:6;1764:2;1752:9;1743:7;1739:23;1735:32;1732:2;;;1785:6;1777;1770:22;1732:2;-1:-1:-1;1813:23:6;;1722:120;-1:-1:-1;1722:120:6:o;2055:661::-;2226:2;2278:21;;;2348:13;;2251:18;;;2370:22;;;2197:4;;2226:2;2449:15;;;;2423:2;2408:18;;;2197:4;2495:195;2509:6;2506:1;2503:13;2495:195;;;2574:13;;-1:-1:-1;;;;;2570:39:6;2558:52;;2665:15;;;;2630:12;;;;2606:1;2524:9;2495:195;;;-1:-1:-1;2707:3:6;;2206:510;-1:-1:-1;;;;;;2206:510:6:o;2913:603::-;3025:4;3054:2;3083;3072:9;3065:21;3115:6;3109:13;3158:6;3153:2;3142:9;3138:18;3131:34;3183:4;3196:140;3210:6;3207:1;3204:13;3196:140;;;3305:14;;;3301:23;;3295:30;3271:17;;;3290:2;3267:26;3260:66;3225:10;;3196:140;;;3354:6;3351:1;3348:13;3345:2;;;3424:4;3419:2;3410:6;3399:9;3395:22;3391:31;3384:45;3345:2;-1:-1:-1;3500:2:6;3479:15;-1:-1:-1;;3475:29:6;3460:45;;;;3507:2;3456:54;;3034:482;-1:-1:-1;;;3034:482:6:o;6947:325::-;7149:2;7131:21;;;7188:1;7168:18;;;7161:29;-1:-1:-1;;;7221:2:6;7206:18;;7199:32;7263:2;7248:18;;7121:151::o;8054:128::-;8094:3;8125:1;8121:6;8118:1;8115:13;8112:2;;;8131:18;;:::i;:::-;-1:-1:-1;8167:9:6;;8102:80::o;8187:120::-;8227:1;8253;8243:2;;8258:18;;:::i;:::-;-1:-1:-1;8292:9:6;;8233:74::o;8312:380::-;8391:1;8387:12;;;;8434;;;8455:2;;8509:4;8501:6;8497:17;8487:27;;8455:2;8562;8554:6;8551:14;8531:18;8528:38;8525:2;;;8608:10;8603:3;8599:20;8596:1;8589:31;8643:4;8640:1;8633:15;8671:4;8668:1;8661:15;8525:2;;8367:325;;;:::o;8697:135::-;8736:3;-1:-1:-1;;8757:17:6;;8754:2;;;8777:18;;:::i;:::-;-1:-1:-1;8824:1:6;8813:13;;8744:88::o;8837:112::-;8869:1;8895;8885:2;;8900:18;;:::i;:::-;-1:-1:-1;8934:9:6;;8875:74::o;8954:127::-;9015:10;9010:3;9006:20;9003:1;8996:31;9046:4;9043:1;9036:15;9070:4;9067:1;9060:15;9086:127;9147:10;9142:3;9138:20;9135:1;9128:31;9178:4;9175:1;9168:15;9202:4;9199:1;9192:15
Swarm Source
ipfs://b3a3175d9a981b5b4aa9e24775305970a1f204c5cac1cb2479ef664b8be69d18
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.