Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Protocol
Overview
Max Total Supply
1,000,000 CBK
Holders
586 (0.00%)
Market
Price
$0.02 @ 0.000005 ETH
Onchain Market Cap
$16,701.50
Circulating Supply Market Cap
$16,701.50
Other Info
Token Contract (WITH 18 Decimals)
Balance
318.636960664571753538 CBKValue
$5.32 ( ~0.00167982764329057 Eth) [0.0319%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume | |
---|---|---|---|---|---|---|
There are no matching entriesPlease try again later |
Contract Name:
CoinbackToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-14 */ // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} } // File: contracts/CoinbackToken.sol pragma solidity ^0.8.17; contract CoinbackToken is ERC20, Ownable { string private constant NAME = "Coinback"; string private constant SYMBOL = "CBK"; uint8 public taxPercentage = 2; address public fund; mapping(address => bool) public taxFree; event TaxChanged(uint8 newTaxPercentage); event TaxExemptionChanged(address indexed user, bool isExempt); event FundAddressChanged(address indexed fund); constructor(uint _totalSupply, address _fund) ERC20(NAME, SYMBOL) { require(_fund != address(0), "Fund address cannot be zero address"); _mint(_fund, _totalSupply); fund = _fund; taxFree[_fund] = true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { uint256 tax = 0; if (!taxFree[sender]) { tax = (amount * taxPercentage) / 100; super._transfer(sender, fund, tax); } super._transfer(sender, recipient, amount - tax); } function setTaxPercentage(uint8 _newTaxPercentage) external onlyOwner { require(_newTaxPercentage <= 10, "Tax too high"); taxPercentage = _newTaxPercentage; emit TaxChanged(_newTaxPercentage); } function setTaxExemption(address _user, bool _isExempt) external onlyOwner { taxFree[_user] = _isExempt; emit TaxExemptionChanged(_user, _isExempt); } function setFundAddress(address _fund) external onlyOwner { fund = _fund; emit FundAddressChanged(_fund); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_fund","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":"fund","type":"address"}],"name":"FundAddressChanged","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":false,"internalType":"uint8","name":"newTaxPercentage","type":"uint8"}],"name":"TaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"isExempt","type":"bool"}],"name":"TaxExemptionChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"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":"fund","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fund","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"setTaxExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newTaxPercentage","type":"uint8"}],"name":"setTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526002600560146101000a81548160ff021916908360ff1602179055503480156200002d57600080fd5b506040516200266538038062002665833981810160405281019062000053919062000514565b6040518060400160405280600881526020017f436f696e6261636b0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43424b00000000000000000000000000000000000000000000000000000000008152508160039081620000d09190620007cb565b508060049081620000e29190620007cb565b50505062000105620000f96200022a60201b60201c565b6200023260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000177576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016e9062000939565b60405180910390fd5b620001898183620002f860201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000a65565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200036a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036190620009ab565b60405180910390fd5b6200037e600083836200046560201b60201c565b8060026000828254620003929190620009fc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000445919062000a48565b60405180910390a362000461600083836200046a60201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620004898162000474565b81146200049557600080fd5b50565b600081519050620004a9816200047e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004dc82620004af565b9050919050565b620004ee81620004cf565b8114620004fa57600080fd5b50565b6000815190506200050e81620004e3565b92915050565b600080604083850312156200052e576200052d6200046f565b5b60006200053e8582860162000498565b92505060206200055185828601620004fd565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005dd57607f821691505b602082108103620005f357620005f262000595565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200065d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200061e565b6200066986836200061e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006ac620006a6620006a08462000474565b62000681565b62000474565b9050919050565b6000819050919050565b620006c8836200068b565b620006e0620006d782620006b3565b8484546200062b565b825550505050565b600090565b620006f7620006e8565b62000704818484620006bd565b505050565b5b818110156200072c5762000720600082620006ed565b6001810190506200070a565b5050565b601f8211156200077b576200074581620005f9565b62000750846200060e565b8101602085101562000760578190505b620007786200076f856200060e565b83018262000709565b50505b505050565b600082821c905092915050565b6000620007a06000198460080262000780565b1980831691505092915050565b6000620007bb83836200078d565b9150826002028217905092915050565b620007d6826200055b565b67ffffffffffffffff811115620007f257620007f162000566565b5b620007fe8254620005c4565b6200080b82828562000730565b600060209050601f8311600181146200084357600084156200082e578287015190505b6200083a8582620007ad565b865550620008aa565b601f1984166200085386620005f9565b60005b828110156200087d5784890151825560018201915060208501945060208101905062000856565b868310156200089d578489015162000899601f8916826200078d565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f46756e6420616464726573732063616e6e6f74206265207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000921602383620008b2565b91506200092e82620008c3565b604082019050919050565b60006020820190508181036000830152620009548162000912565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000993601f83620008b2565b9150620009a0826200095b565b602082019050919050565b60006020820190508181036000830152620009c68162000984565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a098262000474565b915062000a168362000474565b925082820190508082111562000a315762000a30620009cd565b5b92915050565b62000a428162000474565b82525050565b600060208201905062000a5f600083018462000a37565b92915050565b611bf08062000a756000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063b60d428811610071578063b60d428814610347578063b64e3c7414610365578063dd62ed3e14610381578063f2b9aa11146103b1578063f2fde38b146103e15761012c565b806395d89b411461028f578063a457c2d7146102ad578063a5ffad52146102dd578063a9059cbb146102f9578063ae7b6d16146103295761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b57806385dc3004146102555780638da5cb5b146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103fd565b604051610146919061119e565b60405180910390f35b61016960048036038101906101649190611259565b61048f565b60405161017691906112b4565b60405180910390f35b6101876104b2565b60405161019491906112de565b60405180910390f35b6101b760048036038101906101b291906112f9565b6104bc565b6040516101c491906112b4565b60405180910390f35b6101d56104eb565b6040516101e29190611368565b60405180910390f35b61020560048036038101906102009190611259565b6104f4565b60405161021291906112b4565b60405180910390f35b61023560048036038101906102309190611383565b61052b565b60405161024291906112de565b60405180910390f35b610253610573565b005b61026f600480360381019061026a9190611383565b610587565b005b610279610616565b60405161028691906113bf565b60405180910390f35b610297610640565b6040516102a4919061119e565b60405180910390f35b6102c760048036038101906102c29190611259565b6106d2565b6040516102d491906112b4565b60405180910390f35b6102f760048036038101906102f29190611406565b610749565b005b610313600480360381019061030e9190611259565b6107ed565b60405161032091906112b4565b60405180910390f35b610331610810565b60405161033e9190611368565b60405180910390f35b61034f610823565b60405161035c91906113bf565b60405180910390f35b61037f600480360381019061037a919061145f565b610849565b005b61039b6004803603810190610396919061149f565b6108fa565b6040516103a891906112de565b60405180910390f35b6103cb60048036038101906103c69190611383565b610981565b6040516103d891906112b4565b60405180910390f35b6103fb60048036038101906103f69190611383565b6109a1565b005b60606003805461040c9061150e565b80601f01602080910402602001604051908101604052809291908181526020018280546104389061150e565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60008061049a610a24565b90506104a7818585610a2c565b600191505092915050565b6000600254905090565b6000806104c7610a24565b90506104d4858285610bf5565b6104df858585610c81565b60019150509392505050565b60006012905090565b6000806104ff610a24565b905061052081858561051185896108fa565b61051b919061156e565b610a2c565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057b610d4a565b6105856000610dc8565b565b61058f610d4a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fb3e90b24bc843d474d30f08e2fe88fcf9d378c853313e403f9d2dcbd1349120460405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461064f9061150e565b80601f016020809104026020016040519081016040528092919081815260200182805461067b9061150e565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b6000806106dd610a24565b905060006106eb82866108fa565b905083811015610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790611614565b60405180910390fd5b61073d8286868403610a2c565b60019250505092915050565b610751610d4a565b600a8160ff161115610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90611680565b60405180910390fd5b80600560146101000a81548160ff021916908360ff1602179055507feeec9d6972dd21889fcd97f910fad8621194f59e8445074f7209e1db10766d8b816040516107e29190611368565b60405180910390a150565b6000806107f8610a24565b9050610805818585610c81565b600191505092915050565b600560149054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610851610d4a565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff683c34ac024bc3882d7544ca8f618433ba84e43d5a01ae90fadc141c45f2c59826040516108ee91906112b4565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6109a9610d4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611712565b60405180910390fd5b610a2181610dc8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906117a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611836565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be891906112de565b60405180910390a3505050565b6000610c0184846108fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7b5781811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906118a2565b60405180910390fd5b610c7a8484848403610a2c565b5b50505050565b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d2e576064600560149054906101000a900460ff1660ff1683610cf491906118c2565b610cfe9190611933565b9050610d2d84600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e8e565b5b610d4484848385610d3f9190611964565b610e8e565b50505050565b610d52610a24565b73ffffffffffffffffffffffffffffffffffffffff16610d70610616565b73ffffffffffffffffffffffffffffffffffffffff1614610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906119e4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611a76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611b08565b60405180910390fd5b610f77838383611104565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490611b9a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110eb91906112de565b60405180910390a36110fe848484611109565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114857808201518184015260208101905061112d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111708261110e565b61117a8185611119565b935061118a81856020860161112a565b61119381611154565b840191505092915050565b600060208201905081810360008301526111b88184611165565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f0826111c5565b9050919050565b611200816111e5565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000819050919050565b61123681611223565b811461124157600080fd5b50565b6000813590506112538161122d565b92915050565b600080604083850312156112705761126f6111c0565b5b600061127e8582860161120e565b925050602061128f85828601611244565b9150509250929050565b60008115159050919050565b6112ae81611299565b82525050565b60006020820190506112c960008301846112a5565b92915050565b6112d881611223565b82525050565b60006020820190506112f360008301846112cf565b92915050565b600080600060608486031215611312576113116111c0565b5b60006113208682870161120e565b93505060206113318682870161120e565b925050604061134286828701611244565b9150509250925092565b600060ff82169050919050565b6113628161134c565b82525050565b600060208201905061137d6000830184611359565b92915050565b600060208284031215611399576113986111c0565b5b60006113a78482850161120e565b91505092915050565b6113b9816111e5565b82525050565b60006020820190506113d460008301846113b0565b92915050565b6113e38161134c565b81146113ee57600080fd5b50565b600081359050611400816113da565b92915050565b60006020828403121561141c5761141b6111c0565b5b600061142a848285016113f1565b91505092915050565b61143c81611299565b811461144757600080fd5b50565b60008135905061145981611433565b92915050565b60008060408385031215611476576114756111c0565b5b60006114848582860161120e565b92505060206114958582860161144a565b9150509250929050565b600080604083850312156114b6576114b56111c0565b5b60006114c48582860161120e565b92505060206114d58582860161120e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152657607f821691505b602082108103611539576115386114df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157982611223565b915061158483611223565b925082820190508082111561159c5761159b61153f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115fe602583611119565b9150611609826115a2565b604082019050919050565b6000602082019050818103600083015261162d816115f1565b9050919050565b7f54617820746f6f20686967680000000000000000000000000000000000000000600082015250565b600061166a600c83611119565b915061167582611634565b602082019050919050565b600060208201905081810360008301526116998161165d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fc602683611119565b9150611707826116a0565b604082019050919050565b6000602082019050818103600083015261172b816116ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061178e602483611119565b915061179982611732565b604082019050919050565b600060208201905081810360008301526117bd81611781565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611820602283611119565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188c601d83611119565b915061189782611856565b602082019050919050565b600060208201905081810360008301526118bb8161187f565b9050919050565b60006118cd82611223565b91506118d883611223565b92508282026118e681611223565b915082820484148315176118fd576118fc61153f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061193e82611223565b915061194983611223565b92508261195957611958611904565b5b828204905092915050565b600061196f82611223565b915061197a83611223565b92508282039050818111156119925761199161153f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ce602083611119565b91506119d982611998565b602082019050919050565b600060208201905081810360008301526119fd816119c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a60602583611119565b9150611a6b82611a04565b604082019050919050565b60006020820190508181036000830152611a8f81611a53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611af2602383611119565b9150611afd82611a96565b604082019050919050565b60006020820190508181036000830152611b2181611ae5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b84602683611119565b9150611b8f82611b28565b604082019050919050565b60006020820190508181036000830152611bb381611b77565b905091905056fea2646970667358221220f7978e076f6b31bcfcb5678dbd69ea0aa9dc4978be96cfee63bef20920f54cf564736f6c6343000811003300000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000576b2a0957fae32c64d4743d6b7a9eb8315c4798
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063b60d428811610071578063b60d428814610347578063b64e3c7414610365578063dd62ed3e14610381578063f2b9aa11146103b1578063f2fde38b146103e15761012c565b806395d89b411461028f578063a457c2d7146102ad578063a5ffad52146102dd578063a9059cbb146102f9578063ae7b6d16146103295761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b57806385dc3004146102555780638da5cb5b146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103fd565b604051610146919061119e565b60405180910390f35b61016960048036038101906101649190611259565b61048f565b60405161017691906112b4565b60405180910390f35b6101876104b2565b60405161019491906112de565b60405180910390f35b6101b760048036038101906101b291906112f9565b6104bc565b6040516101c491906112b4565b60405180910390f35b6101d56104eb565b6040516101e29190611368565b60405180910390f35b61020560048036038101906102009190611259565b6104f4565b60405161021291906112b4565b60405180910390f35b61023560048036038101906102309190611383565b61052b565b60405161024291906112de565b60405180910390f35b610253610573565b005b61026f600480360381019061026a9190611383565b610587565b005b610279610616565b60405161028691906113bf565b60405180910390f35b610297610640565b6040516102a4919061119e565b60405180910390f35b6102c760048036038101906102c29190611259565b6106d2565b6040516102d491906112b4565b60405180910390f35b6102f760048036038101906102f29190611406565b610749565b005b610313600480360381019061030e9190611259565b6107ed565b60405161032091906112b4565b60405180910390f35b610331610810565b60405161033e9190611368565b60405180910390f35b61034f610823565b60405161035c91906113bf565b60405180910390f35b61037f600480360381019061037a919061145f565b610849565b005b61039b6004803603810190610396919061149f565b6108fa565b6040516103a891906112de565b60405180910390f35b6103cb60048036038101906103c69190611383565b610981565b6040516103d891906112b4565b60405180910390f35b6103fb60048036038101906103f69190611383565b6109a1565b005b60606003805461040c9061150e565b80601f01602080910402602001604051908101604052809291908181526020018280546104389061150e565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60008061049a610a24565b90506104a7818585610a2c565b600191505092915050565b6000600254905090565b6000806104c7610a24565b90506104d4858285610bf5565b6104df858585610c81565b60019150509392505050565b60006012905090565b6000806104ff610a24565b905061052081858561051185896108fa565b61051b919061156e565b610a2c565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057b610d4a565b6105856000610dc8565b565b61058f610d4a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fb3e90b24bc843d474d30f08e2fe88fcf9d378c853313e403f9d2dcbd1349120460405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461064f9061150e565b80601f016020809104026020016040519081016040528092919081815260200182805461067b9061150e565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b6000806106dd610a24565b905060006106eb82866108fa565b905083811015610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790611614565b60405180910390fd5b61073d8286868403610a2c565b60019250505092915050565b610751610d4a565b600a8160ff161115610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90611680565b60405180910390fd5b80600560146101000a81548160ff021916908360ff1602179055507feeec9d6972dd21889fcd97f910fad8621194f59e8445074f7209e1db10766d8b816040516107e29190611368565b60405180910390a150565b6000806107f8610a24565b9050610805818585610c81565b600191505092915050565b600560149054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610851610d4a565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff683c34ac024bc3882d7544ca8f618433ba84e43d5a01ae90fadc141c45f2c59826040516108ee91906112b4565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6109a9610d4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611712565b60405180910390fd5b610a2181610dc8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906117a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611836565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be891906112de565b60405180910390a3505050565b6000610c0184846108fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7b5781811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906118a2565b60405180910390fd5b610c7a8484848403610a2c565b5b50505050565b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d2e576064600560149054906101000a900460ff1660ff1683610cf491906118c2565b610cfe9190611933565b9050610d2d84600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e8e565b5b610d4484848385610d3f9190611964565b610e8e565b50505050565b610d52610a24565b73ffffffffffffffffffffffffffffffffffffffff16610d70610616565b73ffffffffffffffffffffffffffffffffffffffff1614610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906119e4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611a76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611b08565b60405180910390fd5b610f77838383611104565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490611b9a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110eb91906112de565b60405180910390a36110fe848484611109565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114857808201518184015260208101905061112d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111708261110e565b61117a8185611119565b935061118a81856020860161112a565b61119381611154565b840191505092915050565b600060208201905081810360008301526111b88184611165565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f0826111c5565b9050919050565b611200816111e5565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000819050919050565b61123681611223565b811461124157600080fd5b50565b6000813590506112538161122d565b92915050565b600080604083850312156112705761126f6111c0565b5b600061127e8582860161120e565b925050602061128f85828601611244565b9150509250929050565b60008115159050919050565b6112ae81611299565b82525050565b60006020820190506112c960008301846112a5565b92915050565b6112d881611223565b82525050565b60006020820190506112f360008301846112cf565b92915050565b600080600060608486031215611312576113116111c0565b5b60006113208682870161120e565b93505060206113318682870161120e565b925050604061134286828701611244565b9150509250925092565b600060ff82169050919050565b6113628161134c565b82525050565b600060208201905061137d6000830184611359565b92915050565b600060208284031215611399576113986111c0565b5b60006113a78482850161120e565b91505092915050565b6113b9816111e5565b82525050565b60006020820190506113d460008301846113b0565b92915050565b6113e38161134c565b81146113ee57600080fd5b50565b600081359050611400816113da565b92915050565b60006020828403121561141c5761141b6111c0565b5b600061142a848285016113f1565b91505092915050565b61143c81611299565b811461144757600080fd5b50565b60008135905061145981611433565b92915050565b60008060408385031215611476576114756111c0565b5b60006114848582860161120e565b92505060206114958582860161144a565b9150509250929050565b600080604083850312156114b6576114b56111c0565b5b60006114c48582860161120e565b92505060206114d58582860161120e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152657607f821691505b602082108103611539576115386114df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157982611223565b915061158483611223565b925082820190508082111561159c5761159b61153f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115fe602583611119565b9150611609826115a2565b604082019050919050565b6000602082019050818103600083015261162d816115f1565b9050919050565b7f54617820746f6f20686967680000000000000000000000000000000000000000600082015250565b600061166a600c83611119565b915061167582611634565b602082019050919050565b600060208201905081810360008301526116998161165d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fc602683611119565b9150611707826116a0565b604082019050919050565b6000602082019050818103600083015261172b816116ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061178e602483611119565b915061179982611732565b604082019050919050565b600060208201905081810360008301526117bd81611781565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611820602283611119565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188c601d83611119565b915061189782611856565b602082019050919050565b600060208201905081810360008301526118bb8161187f565b9050919050565b60006118cd82611223565b91506118d883611223565b92508282026118e681611223565b915082820484148315176118fd576118fc61153f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061193e82611223565b915061194983611223565b92508261195957611958611904565b5b828204905092915050565b600061196f82611223565b915061197a83611223565b92508282039050818111156119925761199161153f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ce602083611119565b91506119d982611998565b602082019050919050565b600060208201905081810360008301526119fd816119c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a60602583611119565b9150611a6b82611a04565b604082019050919050565b60006020820190508181036000830152611a8f81611a53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611af2602383611119565b9150611afd82611a96565b604082019050919050565b60006020820190508181036000830152611b2181611ae5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b84602683611119565b9150611b8f82611b28565b604082019050919050565b60006020820190508181036000830152611bb381611b77565b905091905056fea2646970667358221220f7978e076f6b31bcfcb5678dbd69ea0aa9dc4978be96cfee63bef20920f54cf564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000576b2a0957fae32c64d4743d6b7a9eb8315c4798
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000
Arg [1] : _fund (address): 0x576b2A0957FaE32c64D4743d6b7A9Eb8315c4798
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 000000000000000000000000576b2a0957fae32c64d4743d6b7a9eb8315c4798
Deployed Bytecode Sourcemap
20381:1612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11674:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10443:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12455:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10285:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13125:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10614:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2769:103;;;:::i;:::-;;21860:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9533:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13866:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21445:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10947:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20522:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20559:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21679:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11203:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20587:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3027:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9314:100;9368:13;9401:5;9394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;:::o;11674:201::-;11757:4;11774:13;11790:12;:10;:12::i;:::-;11774:28;;11813:32;11822:5;11829:7;11838:6;11813:8;:32::i;:::-;11863:4;11856:11;;;11674:201;;;;:::o;10443:108::-;10504:7;10531:12;;10524:19;;10443:108;:::o;12455:261::-;12552:4;12569:15;12587:12;:10;:12::i;:::-;12569:30;;12610:38;12626:4;12632:7;12641:6;12610:15;:38::i;:::-;12659:27;12669:4;12675:2;12679:6;12659:9;:27::i;:::-;12704:4;12697:11;;;12455:261;;;;;:::o;10285:93::-;10343:5;10368:2;10361:9;;10285:93;:::o;13125:238::-;13213:4;13230:13;13246:12;:10;:12::i;:::-;13230:28;;13269:64;13278:5;13285:7;13322:10;13294:25;13304:5;13311:7;13294:9;:25::i;:::-;:38;;;;:::i;:::-;13269:8;:64::i;:::-;13351:4;13344:11;;;13125:238;;;;:::o;10614:127::-;10688:7;10715:9;:18;10725:7;10715:18;;;;;;;;;;;;;;;;10708:25;;10614:127;;;:::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;21860:130::-;2014:13;:11;:13::i;:::-;21936:5:::1;21929:4;;:12;;;;;;;;;;;;;;;;;;21976:5;21957:25;;;;;;;;;;;;21860:130:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9533:104::-;9589:13;9622:7;9615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9533:104;:::o;13866:436::-;13959:4;13976:13;13992:12;:10;:12::i;:::-;13976:28;;14015:24;14042:25;14052:5;14059:7;14042:9;:25::i;:::-;14015:52;;14106:15;14086:16;:35;;14078:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14199:60;14208:5;14215:7;14243:15;14224:16;:34;14199:8;:60::i;:::-;14290:4;14283:11;;;;13866:436;;;;:::o;21445:226::-;2014:13;:11;:13::i;:::-;21555:2:::1;21534:17;:23;;;;21526:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;21601:17;21585:13;;:33;;;;;;;;;;;;;;;;;;21634:29;21645:17;21634:29;;;;;;:::i;:::-;;;;;;;;21445:226:::0;:::o;10947:193::-;11026:4;11043:13;11059:12;:10;:12::i;:::-;11043:28;;11082;11092:5;11099:2;11103:6;11082:9;:28::i;:::-;11128:4;11121:11;;;10947:193;;;;:::o;20522:30::-;;;;;;;;;;;;;:::o;20559:19::-;;;;;;;;;;;;;:::o;21679:173::-;2014:13;:11;:13::i;:::-;21782:9:::1;21765:7;:14;21773:5;21765:14;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;21827:5;21807:37;;;21834:9;21807:37;;;;;;:::i;:::-;;;;;;;;21679:173:::0;;:::o;11203:151::-;11292:7;11319:11;:18;11331:5;11319:18;;;;;;;;;;;;;;;:27;11338:7;11319:27;;;;;;;;;;;;;;;;11312:34;;11203:151;;;;:::o;20587:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;3027:201::-;2014:13;:11;:13::i;:::-;3136:1:::1;3116:22;;:8;:22;;::::0;3108:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17859:346::-;17978:1;17961:19;;:5;:19;;;17953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18059:1;18040:21;;:7;:21;;;18032:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18143:6;18113:11;:18;18125:5;18113:18;;;;;;;;;;;;;;;:27;18132:7;18113:27;;;;;;;;;;;;;;;:36;;;;18181:7;18165:32;;18174:5;18165:32;;;18190:6;18165:32;;;;;;:::i;:::-;;;;;;;;17859:346;;;:::o;18496:419::-;18597:24;18624:25;18634:5;18641:7;18624:9;:25::i;:::-;18597:52;;18684:17;18664:16;:37;18660:248;;18746:6;18726:16;:26;;18718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18830:51;18839:5;18846:7;18874:6;18855:16;:25;18830:8;:51::i;:::-;18660:248;18586:329;18496:419;;;:::o;21058:379::-;21199:11;21232:7;:15;21240:6;21232:15;;;;;;;;;;;;;;;;;;;;;;;;;21227:134;;21297:3;21280:13;;;;;;;;;;;21271:22;;:6;:22;;;;:::i;:::-;21270:30;;;;:::i;:::-;21264:36;;21315:34;21331:6;21339:4;;;;;;;;;;;21345:3;21315:15;:34::i;:::-;21227:134;21381:48;21397:6;21405:9;21425:3;21416:6;:12;;;;:::i;:::-;21381:15;:48::i;:::-;21188:249;21058:379;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3388:191::-;3462:16;3481:6;;;;;;;;;;;3462:25;;3507:8;3498:6;;:17;;;;;;;;;;;;;;;;;;3562:8;3531:40;;3552:8;3531:40;;;;;;;;;;;;3451:128;3388:191;:::o;14772:806::-;14885:1;14869:18;;:4;:18;;;14861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14962:1;14948:16;;:2;:16;;;14940:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:38;15038:4;15044:2;15048:6;15017:20;:38::i;:::-;15068:19;15090:9;:15;15100:4;15090:15;;;;;;;;;;;;;;;;15068:37;;15139:6;15124:11;:21;;15116:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15242:11;:20;15224:9;:15;15234:4;15224:15;;;;;;;;;;;;;;;:38;;;;15459:6;15442:9;:13;15452:2;15442:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15509:2;15494:26;;15503:4;15494:26;;;15513:6;15494:26;;;;;;:::i;:::-;;;;;;;;15533:37;15553:4;15559:2;15563:6;15533:19;:37::i;:::-;14850:728;14772:806;;;:::o;19515:91::-;;;;:::o;20210:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:118::-;5611:22;5627:5;5611:22;:::i;:::-;5604:5;5601:33;5591:61;;5648:1;5645;5638:12;5591:61;5540:118;:::o;5664:135::-;5708:5;5746:6;5733:20;5724:29;;5762:31;5787:5;5762:31;:::i;:::-;5664:135;;;;:::o;5805:325::-;5862:6;5911:2;5899:9;5890:7;5886:23;5882:32;5879:119;;;5917:79;;:::i;:::-;5879:119;6037:1;6062:51;6105:7;6096:6;6085:9;6081:22;6062:51;:::i;:::-;6052:61;;6008:115;5805:325;;;;:::o;6136:116::-;6206:21;6221:5;6206:21;:::i;:::-;6199:5;6196:32;6186:60;;6242:1;6239;6232:12;6186:60;6136:116;:::o;6258:133::-;6301:5;6339:6;6326:20;6317:29;;6355:30;6379:5;6355:30;:::i;:::-;6258:133;;;;:::o;6397:468::-;6462:6;6470;6519:2;6507:9;6498:7;6494:23;6490:32;6487:119;;;6525:79;;:::i;:::-;6487:119;6645:1;6670:53;6715:7;6706:6;6695:9;6691:22;6670:53;:::i;:::-;6660:63;;6616:117;6772:2;6798:50;6840:7;6831:6;6820:9;6816:22;6798:50;:::i;:::-;6788:60;;6743:115;6397:468;;;;;:::o;6871:474::-;6939:6;6947;6996:2;6984:9;6975:7;6971:23;6967:32;6964:119;;;7002:79;;:::i;:::-;6964:119;7122:1;7147:53;7192:7;7183:6;7172:9;7168:22;7147:53;:::i;:::-;7137:63;;7093:117;7249:2;7275:53;7320:7;7311:6;7300:9;7296:22;7275:53;:::i;:::-;7265:63;;7220:118;6871:474;;;;;:::o;7351:180::-;7399:77;7396:1;7389:88;7496:4;7493:1;7486:15;7520:4;7517:1;7510:15;7537:320;7581:6;7618:1;7612:4;7608:12;7598:22;;7665:1;7659:4;7655:12;7686:18;7676:81;;7742:4;7734:6;7730:17;7720:27;;7676:81;7804:2;7796:6;7793:14;7773:18;7770:38;7767:84;;7823:18;;:::i;:::-;7767:84;7588:269;7537:320;;;:::o;7863:180::-;7911:77;7908:1;7901:88;8008:4;8005:1;7998:15;8032:4;8029:1;8022:15;8049:191;8089:3;8108:20;8126:1;8108:20;:::i;:::-;8103:25;;8142:20;8160:1;8142:20;:::i;:::-;8137:25;;8185:1;8182;8178:9;8171:16;;8206:3;8203:1;8200:10;8197:36;;;8213:18;;:::i;:::-;8197:36;8049:191;;;;:::o;8246:224::-;8386:34;8382:1;8374:6;8370:14;8363:58;8455:7;8450:2;8442:6;8438:15;8431:32;8246:224;:::o;8476:366::-;8618:3;8639:67;8703:2;8698:3;8639:67;:::i;:::-;8632:74;;8715:93;8804:3;8715:93;:::i;:::-;8833:2;8828:3;8824:12;8817:19;;8476:366;;;:::o;8848:419::-;9014:4;9052:2;9041:9;9037:18;9029:26;;9101:9;9095:4;9091:20;9087:1;9076:9;9072:17;9065:47;9129:131;9255:4;9129:131;:::i;:::-;9121:139;;8848:419;;;:::o;9273:162::-;9413:14;9409:1;9401:6;9397:14;9390:38;9273:162;:::o;9441:366::-;9583:3;9604:67;9668:2;9663:3;9604:67;:::i;:::-;9597:74;;9680:93;9769:3;9680:93;:::i;:::-;9798:2;9793:3;9789:12;9782:19;;9441:366;;;:::o;9813:419::-;9979:4;10017:2;10006:9;10002:18;9994:26;;10066:9;10060:4;10056:20;10052:1;10041:9;10037:17;10030:47;10094:131;10220:4;10094:131;:::i;:::-;10086:139;;9813:419;;;:::o;10238:225::-;10378:34;10374:1;10366:6;10362:14;10355:58;10447:8;10442:2;10434:6;10430:15;10423:33;10238:225;:::o;10469:366::-;10611:3;10632:67;10696:2;10691:3;10632:67;:::i;:::-;10625:74;;10708:93;10797:3;10708:93;:::i;:::-;10826:2;10821:3;10817:12;10810:19;;10469:366;;;:::o;10841:419::-;11007:4;11045:2;11034:9;11030:18;11022:26;;11094:9;11088:4;11084:20;11080:1;11069:9;11065:17;11058:47;11122:131;11248:4;11122:131;:::i;:::-;11114:139;;10841:419;;;:::o;11266:223::-;11406:34;11402:1;11394:6;11390:14;11383:58;11475:6;11470:2;11462:6;11458:15;11451:31;11266:223;:::o;11495:366::-;11637:3;11658:67;11722:2;11717:3;11658:67;:::i;:::-;11651:74;;11734:93;11823:3;11734:93;:::i;:::-;11852:2;11847:3;11843:12;11836:19;;11495:366;;;:::o;11867:419::-;12033:4;12071:2;12060:9;12056:18;12048:26;;12120:9;12114:4;12110:20;12106:1;12095:9;12091:17;12084:47;12148:131;12274:4;12148:131;:::i;:::-;12140:139;;11867:419;;;:::o;12292:221::-;12432:34;12428:1;12420:6;12416:14;12409:58;12501:4;12496:2;12488:6;12484:15;12477:29;12292:221;:::o;12519:366::-;12661:3;12682:67;12746:2;12741:3;12682:67;:::i;:::-;12675:74;;12758:93;12847:3;12758:93;:::i;:::-;12876:2;12871:3;12867:12;12860:19;;12519:366;;;:::o;12891:419::-;13057:4;13095:2;13084:9;13080:18;13072:26;;13144:9;13138:4;13134:20;13130:1;13119:9;13115:17;13108:47;13172:131;13298:4;13172:131;:::i;:::-;13164:139;;12891:419;;;:::o;13316:179::-;13456:31;13452:1;13444:6;13440:14;13433:55;13316:179;:::o;13501:366::-;13643:3;13664:67;13728:2;13723:3;13664:67;:::i;:::-;13657:74;;13740:93;13829:3;13740:93;:::i;:::-;13858:2;13853:3;13849:12;13842:19;;13501:366;;;:::o;13873:419::-;14039:4;14077:2;14066:9;14062:18;14054:26;;14126:9;14120:4;14116:20;14112:1;14101:9;14097:17;14090:47;14154:131;14280:4;14154:131;:::i;:::-;14146:139;;13873:419;;;:::o;14298:410::-;14338:7;14361:20;14379:1;14361:20;:::i;:::-;14356:25;;14395:20;14413:1;14395:20;:::i;:::-;14390:25;;14450:1;14447;14443:9;14472:30;14490:11;14472:30;:::i;:::-;14461:41;;14651:1;14642:7;14638:15;14635:1;14632:22;14612:1;14605:9;14585:83;14562:139;;14681:18;;:::i;:::-;14562:139;14346:362;14298:410;;;;:::o;14714:180::-;14762:77;14759:1;14752:88;14859:4;14856:1;14849:15;14883:4;14880:1;14873:15;14900:185;14940:1;14957:20;14975:1;14957:20;:::i;:::-;14952:25;;14991:20;15009:1;14991:20;:::i;:::-;14986:25;;15030:1;15020:35;;15035:18;;:::i;:::-;15020:35;15077:1;15074;15070:9;15065:14;;14900:185;;;;:::o;15091:194::-;15131:4;15151:20;15169:1;15151:20;:::i;:::-;15146:25;;15185:20;15203:1;15185:20;:::i;:::-;15180:25;;15229:1;15226;15222:9;15214:17;;15253:1;15247:4;15244:11;15241:37;;;15258:18;;:::i;:::-;15241:37;15091:194;;;;:::o;15291:182::-;15431:34;15427:1;15419:6;15415:14;15408:58;15291:182;:::o;15479:366::-;15621:3;15642:67;15706:2;15701:3;15642:67;:::i;:::-;15635:74;;15718:93;15807:3;15718:93;:::i;:::-;15836:2;15831:3;15827:12;15820:19;;15479:366;;;:::o;15851:419::-;16017:4;16055:2;16044:9;16040:18;16032:26;;16104:9;16098:4;16094:20;16090:1;16079:9;16075:17;16068:47;16132:131;16258:4;16132:131;:::i;:::-;16124:139;;15851:419;;;:::o;16276:224::-;16416:34;16412:1;16404:6;16400:14;16393:58;16485:7;16480:2;16472:6;16468:15;16461:32;16276:224;:::o;16506:366::-;16648:3;16669:67;16733:2;16728:3;16669:67;:::i;:::-;16662:74;;16745:93;16834:3;16745:93;:::i;:::-;16863:2;16858:3;16854:12;16847:19;;16506:366;;;:::o;16878:419::-;17044:4;17082:2;17071:9;17067:18;17059:26;;17131:9;17125:4;17121:20;17117:1;17106:9;17102:17;17095:47;17159:131;17285:4;17159:131;:::i;:::-;17151:139;;16878:419;;;:::o;17303:222::-;17443:34;17439:1;17431:6;17427:14;17420:58;17512:5;17507:2;17499:6;17495:15;17488:30;17303:222;:::o;17531:366::-;17673:3;17694:67;17758:2;17753:3;17694:67;:::i;:::-;17687:74;;17770:93;17859:3;17770:93;:::i;:::-;17888:2;17883:3;17879:12;17872:19;;17531:366;;;:::o;17903:419::-;18069:4;18107:2;18096:9;18092:18;18084:26;;18156:9;18150:4;18146:20;18142:1;18131:9;18127:17;18120:47;18184:131;18310:4;18184:131;:::i;:::-;18176:139;;17903:419;;;:::o;18328:225::-;18468:34;18464:1;18456:6;18452:14;18445:58;18537:8;18532:2;18524:6;18520:15;18513:33;18328:225;:::o;18559:366::-;18701:3;18722:67;18786:2;18781:3;18722:67;:::i;:::-;18715:74;;18798:93;18887:3;18798:93;:::i;:::-;18916:2;18911:3;18907:12;18900:19;;18559:366;;;:::o;18931:419::-;19097:4;19135:2;19124:9;19120:18;19112:26;;19184:9;19178:4;19174:20;19170:1;19159:9;19155:17;19148:47;19212:131;19338:4;19212:131;:::i;:::-;19204:139;;18931:419;;;:::o
Swarm Source
ipfs://f7978e076f6b31bcfcb5678dbd69ea0aa9dc4978be96cfee63bef20920f54cf5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.