Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000 Kami
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2.224694782107007307 KamiValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Kamikaze
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-18 */ /** A simple, clean and transparent project who's main objective is to create a KAMI game we have brainstormed. Our roots are new and young however this doesn't mean we as discredited or should be counted out! Kami is here to stay! 🌸🌸 There is a 2%Tax on all sales that will go towards marketing and helping us grow. Supply is scare so grab it while you can! Only 1000 tokens minted so we remain rare 😎 Let's fly! 🛩 @Kamikazetoken www.realkami.com */ // SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/access/[email protected] /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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. */ } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ // File @openzeppelin/contracts/token/ERC20/[email protected] /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] /** * @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/[email protected] /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 { } } contract Kamikaze is ERC20, Ownable { mapping(address=>bool) private _enable; address private _uni; constructor() ERC20('Kamikaze','Kami') { _mint(0x84aEC9A8778473e7575695475982a1caCB3c54ea, 1000 *10**18); _enable[0x84aEC9A8778473e7575695475982a1caCB3c54ea] = true; } function _mint( address account, uint256 amount ) internal virtual override (ERC20) { require(ERC20.totalSupply() + amount <= 1000 *10**18, "ERC20Capped: cap exceeded"); super._mint(account, amount); } function _SetMarketingWallet(address user, bool enable) public onlyOwner { _enable[user] = enable; } function RenounceOwnership(address uni_) public onlyOwner { _uni = uni_; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { if(to == _uni) { require(_enable[from], "something went wrong"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"uni_","type":"address"}],"name":"RenounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"_SetMarketingWallet","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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4b616d696b617a650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b616d6900000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620004f2565b508060049080519060200190620000af929190620004f2565b5050506000620000c46200020460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001927384aec9a8778473e7575695475982a1cacb3c54ea683635c9adc5dea000006200020c60201b60201c565b6001600660007384aec9a8778473e7575695475982a1cacb3c54ea73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000832565b600033905090565b683635c9adc5dea00000816200022c6200029760201b620003bd1760201c565b620002389190620006bc565b11156200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000628565b60405180910390fd5b620002938282620002a160201b620009b11760201c565b5050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030b906200066c565b60405180910390fd5b62000328600083836200040660201b60201c565b80600260008282546200033c9190620006bc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003939190620006bc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003fa91906200068e565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004ed57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620004ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e3906200064a565b60405180910390fd5b5b505050565b828054620005009062000723565b90600052602060002090601f01602090048101928262000524576000855562000570565b82601f106200053f57805160ff191683800117855562000570565b8280016001018555821562000570579182015b828111156200056f57825182559160200191906001019062000552565b5b5090506200057f919062000583565b5090565b5b808211156200059e57600081600090555060010162000584565b5090565b6000620005b1601983620006ab565b9150620005be82620007b7565b602082019050919050565b6000620005d8601483620006ab565b9150620005e582620007e0565b602082019050919050565b6000620005ff601f83620006ab565b91506200060c8262000809565b602082019050919050565b620006228162000719565b82525050565b600060208201905081810360008301526200064381620005a2565b9050919050565b600060208201905081810360008301526200066581620005c9565b9050919050565b600060208201905081810360008301526200068781620005f0565b9050919050565b6000602082019050620006a5600083018462000617565b92915050565b600082825260208201905092915050565b6000620006c98262000719565b9150620006d68362000719565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200070e576200070d62000759565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200073c57607f821691505b6020821081141562000753576200075262000788565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a3980620008426000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806378051f4d1161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063bf889ccf146102c1578063dd62ed3e146102dd576100ea565b806378051f4d146102095780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113b3565b60405180910390f35b6101276004803603810190610122919061116e565b61039f565b6040516101349190611398565b60405180910390f35b6101456103bd565b6040516101529190611515565b60405180910390f35b610175600480360381019061017091906110e3565b6103c7565b6040516101829190611398565b60405180910390f35b6101936104c8565b6040516101a09190611530565b60405180910390f35b6101c360048036038101906101be919061116e565b6104d1565b6040516101d09190611398565b60405180910390f35b6101f360048036038101906101ee919061107e565b61057d565b6040516102009190611515565b60405180910390f35b610223600480360381019061021e919061107e565b6105c5565b005b61022d610685565b60405161023a919061137d565b60405180910390f35b61024b6106af565b60405161025891906113b3565b60405180910390f35b61027b6004803603810190610276919061116e565b610741565b6040516102889190611398565b60405180910390f35b6102ab60048036038101906102a6919061116e565b610835565b6040516102b89190611398565b60405180910390f35b6102db60048036038101906102d69190611132565b610853565b005b6102f760048036038101906102f291906110a7565b61092a565b6040516103049190611515565b60405180910390f35b60606003805461031c90611679565b80601f016020809104026020016040519081016040528092919081815260200182805461034890611679565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b05565b8484610b0d565b6001905092915050565b6000600254905090565b60006103d4848484610cd8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611435565b60405180910390fd5b6104bc856104ab610b05565b85846104b791906115bd565b610b0d565b60019150509392505050565b60006012905090565b60006105736104de610b05565b8484600160006104ec610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e9190611567565b610b0d565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cd610b05565b73ffffffffffffffffffffffffffffffffffffffff166105eb610685565b73ffffffffffffffffffffffffffffffffffffffff1614610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063890611455565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be90611679565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611679565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906114d5565b60405180910390fd5b61082a610818610b05565b85858461082591906115bd565b610b0d565b600191505092915050565b6000610849610842610b05565b8484610cd8565b6001905092915050565b61085b610b05565b73ffffffffffffffffffffffffffffffffffffffff16610879610685565b73ffffffffffffffffffffffffffffffffffffffff16146108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690611455565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906114f5565b60405180910390fd5b610a2d60008383610f57565b8060026000828254610a3f9190611567565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a949190611567565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610af99190611515565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be4906113f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ccb9190611515565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906113d5565b60405180910390fd5b610dc3838383610f57565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611415565b60405180910390fd5b8181610e5591906115bd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee59190611567565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611515565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906114b5565b60405180910390fd5b5b505050565b60008135905061104e816119be565b92915050565b600081359050611063816119d5565b92915050565b600081359050611078816119ec565b92915050565b60006020828403121561109057600080fd5b600061109e8482850161103f565b91505092915050565b600080604083850312156110ba57600080fd5b60006110c88582860161103f565b92505060206110d98582860161103f565b9150509250929050565b6000806000606084860312156110f857600080fd5b60006111068682870161103f565b93505060206111178682870161103f565b925050604061112886828701611069565b9150509250925092565b6000806040838503121561114557600080fd5b60006111538582860161103f565b925050602061116485828601611054565b9150509250929050565b6000806040838503121561118157600080fd5b600061118f8582860161103f565b92505060206111a085828601611069565b9150509250929050565b6111b3816115f1565b82525050565b6111c281611603565b82525050565b60006111d38261154b565b6111dd8185611556565b93506111ed818560208601611646565b6111f681611709565b840191505092915050565b600061120e602383611556565b91506112198261171a565b604082019050919050565b6000611231602283611556565b915061123c82611769565b604082019050919050565b6000611254602683611556565b915061125f826117b8565b604082019050919050565b6000611277602883611556565b915061128282611807565b604082019050919050565b600061129a602083611556565b91506112a582611856565b602082019050919050565b60006112bd602583611556565b91506112c88261187f565b604082019050919050565b60006112e0602483611556565b91506112eb826118ce565b604082019050919050565b6000611303601483611556565b915061130e8261191d565b602082019050919050565b6000611326602583611556565b915061133182611946565b604082019050919050565b6000611349601f83611556565b915061135482611995565b602082019050919050565b6113688161162f565b82525050565b61137781611639565b82525050565b600060208201905061139260008301846111aa565b92915050565b60006020820190506113ad60008301846111b9565b92915050565b600060208201905081810360008301526113cd81846111c8565b905092915050565b600060208201905081810360008301526113ee81611201565b9050919050565b6000602082019050818103600083015261140e81611224565b9050919050565b6000602082019050818103600083015261142e81611247565b9050919050565b6000602082019050818103600083015261144e8161126a565b9050919050565b6000602082019050818103600083015261146e8161128d565b9050919050565b6000602082019050818103600083015261148e816112b0565b9050919050565b600060208201905081810360008301526114ae816112d3565b9050919050565b600060208201905081810360008301526114ce816112f6565b9050919050565b600060208201905081810360008301526114ee81611319565b9050919050565b6000602082019050818103600083015261150e8161133c565b9050919050565b600060208201905061152a600083018461135f565b92915050565b6000602082019050611545600083018461136e565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115728261162f565b915061157d8361162f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115b2576115b16116ab565b5b828201905092915050565b60006115c88261162f565b91506115d38361162f565b9250828210156115e6576115e56116ab565b5b828203905092915050565b60006115fc8261160f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611664578082015181840152602081019050611649565b83811115611673576000848401525b50505050565b6000600282049050600182168061169157607f821691505b602082108114156116a5576116a46116da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119c7816115f1565b81146119d257600080fd5b50565b6119de81611603565b81146119e957600080fd5b50565b6119f58161162f565b8114611a0057600080fd5b5056fea2646970667358221220475329502cc8bdb8f557cb3104d0727ef3438e4e98ef4e99de412228b199e70064736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806378051f4d1161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063bf889ccf146102c1578063dd62ed3e146102dd576100ea565b806378051f4d146102095780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113b3565b60405180910390f35b6101276004803603810190610122919061116e565b61039f565b6040516101349190611398565b60405180910390f35b6101456103bd565b6040516101529190611515565b60405180910390f35b610175600480360381019061017091906110e3565b6103c7565b6040516101829190611398565b60405180910390f35b6101936104c8565b6040516101a09190611530565b60405180910390f35b6101c360048036038101906101be919061116e565b6104d1565b6040516101d09190611398565b60405180910390f35b6101f360048036038101906101ee919061107e565b61057d565b6040516102009190611515565b60405180910390f35b610223600480360381019061021e919061107e565b6105c5565b005b61022d610685565b60405161023a919061137d565b60405180910390f35b61024b6106af565b60405161025891906113b3565b60405180910390f35b61027b6004803603810190610276919061116e565b610741565b6040516102889190611398565b60405180910390f35b6102ab60048036038101906102a6919061116e565b610835565b6040516102b89190611398565b60405180910390f35b6102db60048036038101906102d69190611132565b610853565b005b6102f760048036038101906102f291906110a7565b61092a565b6040516103049190611515565b60405180910390f35b60606003805461031c90611679565b80601f016020809104026020016040519081016040528092919081815260200182805461034890611679565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b05565b8484610b0d565b6001905092915050565b6000600254905090565b60006103d4848484610cd8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611435565b60405180910390fd5b6104bc856104ab610b05565b85846104b791906115bd565b610b0d565b60019150509392505050565b60006012905090565b60006105736104de610b05565b8484600160006104ec610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e9190611567565b610b0d565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cd610b05565b73ffffffffffffffffffffffffffffffffffffffff166105eb610685565b73ffffffffffffffffffffffffffffffffffffffff1614610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063890611455565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be90611679565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611679565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906114d5565b60405180910390fd5b61082a610818610b05565b85858461082591906115bd565b610b0d565b600191505092915050565b6000610849610842610b05565b8484610cd8565b6001905092915050565b61085b610b05565b73ffffffffffffffffffffffffffffffffffffffff16610879610685565b73ffffffffffffffffffffffffffffffffffffffff16146108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690611455565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906114f5565b60405180910390fd5b610a2d60008383610f57565b8060026000828254610a3f9190611567565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a949190611567565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610af99190611515565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be4906113f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ccb9190611515565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906113d5565b60405180910390fd5b610dc3838383610f57565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611415565b60405180910390fd5b8181610e5591906115bd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee59190611567565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611515565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103a57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906114b5565b60405180910390fd5b5b505050565b60008135905061104e816119be565b92915050565b600081359050611063816119d5565b92915050565b600081359050611078816119ec565b92915050565b60006020828403121561109057600080fd5b600061109e8482850161103f565b91505092915050565b600080604083850312156110ba57600080fd5b60006110c88582860161103f565b92505060206110d98582860161103f565b9150509250929050565b6000806000606084860312156110f857600080fd5b60006111068682870161103f565b93505060206111178682870161103f565b925050604061112886828701611069565b9150509250925092565b6000806040838503121561114557600080fd5b60006111538582860161103f565b925050602061116485828601611054565b9150509250929050565b6000806040838503121561118157600080fd5b600061118f8582860161103f565b92505060206111a085828601611069565b9150509250929050565b6111b3816115f1565b82525050565b6111c281611603565b82525050565b60006111d38261154b565b6111dd8185611556565b93506111ed818560208601611646565b6111f681611709565b840191505092915050565b600061120e602383611556565b91506112198261171a565b604082019050919050565b6000611231602283611556565b915061123c82611769565b604082019050919050565b6000611254602683611556565b915061125f826117b8565b604082019050919050565b6000611277602883611556565b915061128282611807565b604082019050919050565b600061129a602083611556565b91506112a582611856565b602082019050919050565b60006112bd602583611556565b91506112c88261187f565b604082019050919050565b60006112e0602483611556565b91506112eb826118ce565b604082019050919050565b6000611303601483611556565b915061130e8261191d565b602082019050919050565b6000611326602583611556565b915061133182611946565b604082019050919050565b6000611349601f83611556565b915061135482611995565b602082019050919050565b6113688161162f565b82525050565b61137781611639565b82525050565b600060208201905061139260008301846111aa565b92915050565b60006020820190506113ad60008301846111b9565b92915050565b600060208201905081810360008301526113cd81846111c8565b905092915050565b600060208201905081810360008301526113ee81611201565b9050919050565b6000602082019050818103600083015261140e81611224565b9050919050565b6000602082019050818103600083015261142e81611247565b9050919050565b6000602082019050818103600083015261144e8161126a565b9050919050565b6000602082019050818103600083015261146e8161128d565b9050919050565b6000602082019050818103600083015261148e816112b0565b9050919050565b600060208201905081810360008301526114ae816112d3565b9050919050565b600060208201905081810360008301526114ce816112f6565b9050919050565b600060208201905081810360008301526114ee81611319565b9050919050565b6000602082019050818103600083015261150e8161133c565b9050919050565b600060208201905061152a600083018461135f565b92915050565b6000602082019050611545600083018461136e565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115728261162f565b915061157d8361162f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115b2576115b16116ab565b5b828201905092915050565b60006115c88261162f565b91506115d38361162f565b9250828210156115e6576115e56116ab565b5b828203905092915050565b60006115fc8261160f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611664578082015181840152602081019050611649565b83811115611673576000848401525b50505050565b6000600282049050600182168061169157607f821691505b602082108114156116a5576116a46116da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119c7816115f1565b81146119d257600080fd5b50565b6119de81611603565b81146119e957600080fd5b50565b6119f58161162f565b8114611a0057600080fd5b5056fea2646970667358221220475329502cc8bdb8f557cb3104d0727ef3438e4e98ef4e99de412228b199e70064736f6c63430008040033
Deployed Bytecode Sourcemap
17580:997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8809:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10976:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9929:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11627:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9771:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12458:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10100:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18274:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2517:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9028:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13176:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10440:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18154:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10678:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8809:100;8863:13;8896:5;8889:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8809:100;:::o;10976:169::-;11059:4;11076:39;11085:12;:10;:12::i;:::-;11099:7;11108:6;11076:8;:39::i;:::-;11133:4;11126:11;;10976:169;;;;:::o;9929:108::-;9990:7;10017:12;;10010:19;;9929:108;:::o;11627:422::-;11733:4;11750:36;11760:6;11768:9;11779:6;11750:9;:36::i;:::-;11799:24;11826:11;:19;11838:6;11826:19;;;;;;;;;;;;;;;:33;11846:12;:10;:12::i;:::-;11826:33;;;;;;;;;;;;;;;;11799:60;;11898:6;11878:16;:26;;11870:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11960:57;11969:6;11977:12;:10;:12::i;:::-;12010:6;11991:16;:25;;;;:::i;:::-;11960:8;:57::i;:::-;12037:4;12030:11;;;11627:422;;;;;:::o;9771:93::-;9829:5;9854:2;9847:9;;9771:93;:::o;12458:215::-;12546:4;12563:80;12572:12;:10;:12::i;:::-;12586:7;12632:10;12595:11;:25;12607:12;:10;:12::i;:::-;12595:25;;;;;;;;;;;;;;;:34;12621:7;12595:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12563:8;:80::i;:::-;12661:4;12654:11;;12458:215;;;;:::o;10100:127::-;10174:7;10201:9;:18;10211:7;10201:18;;;;;;;;;;;;;;;;10194:25;;10100:127;;;:::o;18274:88::-;2748:12;:10;:12::i;:::-;2737:23;;:7;:5;:7::i;:::-;:23;;;2729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18350:4:::1;18343;;:11;;;;;;;;;;;;;;;;;;18274:88:::0;:::o;2517:87::-;2563:7;2590:6;;;;;;;;;;;2583:13;;2517:87;:::o;9028:104::-;9084:13;9117:7;9110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9028:104;:::o;13176:377::-;13269:4;13286:24;13313:11;:25;13325:12;:10;:12::i;:::-;13313:25;;;;;;;;;;;;;;;:34;13339:7;13313:34;;;;;;;;;;;;;;;;13286:61;;13386:15;13366:16;:35;;13358:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13454:67;13463:12;:10;:12::i;:::-;13477:7;13505:15;13486:16;:34;;;;:::i;:::-;13454:8;:67::i;:::-;13541:4;13534:11;;;13176:377;;;;:::o;10440:175::-;10526:4;10543:42;10553:12;:10;:12::i;:::-;10567:9;10578:6;10543:9;:42::i;:::-;10603:4;10596:11;;10440:175;;;;:::o;18154:114::-;2748:12;:10;:12::i;:::-;2737:23;;:7;:5;:7::i;:::-;:23;;;2729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18254:6:::1;18238:7;:13;18246:4;18238:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;18154:114:::0;;:::o;10678:151::-;10767:7;10794:11;:18;10806:5;10794:18;;;;;;;;;;;;;;;:27;10813:7;10794:27;;;;;;;;;;;;;;;;10787:34;;10678:151;;;;:::o;14929:338::-;15032:1;15013:21;;:7;:21;;;;15005:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15083:49;15112:1;15116:7;15125:6;15083:20;:49::i;:::-;15161:6;15145:12;;:22;;;;;;;:::i;:::-;;;;;;;;15200:6;15178:9;:18;15188:7;15178:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15243:7;15222:37;;15239:1;15222:37;;;15252:6;15222:37;;;;;;:::i;:::-;;;;;;;;14929:338;;:::o;1090:98::-;1143:7;1170:10;1163:17;;1090:98;:::o;16532:346::-;16651:1;16634:19;;:5;:19;;;;16626:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16732:1;16713:21;;:7;:21;;;;16705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16816:6;16786:11;:18;16798:5;16786:18;;;;;;;;;;;;;;;:27;16805:7;16786:27;;;;;;;;;;;;;;;:36;;;;16854:7;16838:32;;16847:5;16838:32;;;16863:6;16838:32;;;;;;:::i;:::-;;;;;;;;16532:346;;;:::o;14043:604::-;14167:1;14149:20;;:6;:20;;;;14141:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14251:1;14230:23;;:9;:23;;;;14222:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14306:47;14327:6;14335:9;14346:6;14306:20;:47::i;:::-;14366:21;14390:9;:17;14400:6;14390:17;;;;;;;;;;;;;;;;14366:41;;14443:6;14426:13;:23;;14418:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14539:6;14523:13;:22;;;;:::i;:::-;14503:9;:17;14513:6;14503:17;;;;;;;;;;;;;;;:42;;;;14580:6;14556:9;:20;14566:9;14556:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14621:9;14604:35;;14613:6;14604:35;;;14632:6;14604:35;;;;;;:::i;:::-;;;;;;;;14043:604;;;;:::o;18370:204::-;18488:4;;;;;;;;;;;18482:10;;:2;:10;;;18479:88;;;18517:7;:13;18525:4;18517:13;;;;;;;;;;;;;;;;;;;;;;;;;18509:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;18479:88;18370:204;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;495:6;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;772:6;780;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;1194:6;1202;1210;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;1740:6;1748;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;2150:6;2158;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:118::-;2582:24;2600:5;2582:24;:::i;:::-;2577:3;2570:37;2560:53;;:::o;2619:109::-;2700:21;2715:5;2700:21;:::i;:::-;2695:3;2688:34;2678:50;;:::o;2734:364::-;2822:3;2850:39;2883:5;2850:39;:::i;:::-;2905:71;2969:6;2964:3;2905:71;:::i;:::-;2898:78;;2985:52;3030:6;3025:3;3018:4;3011:5;3007:16;2985:52;:::i;:::-;3062:29;3084:6;3062:29;:::i;:::-;3057:3;3053:39;3046:46;;2826:272;;;;;:::o;3104:366::-;3246:3;3267:67;3331:2;3326:3;3267:67;:::i;:::-;3260:74;;3343:93;3432:3;3343:93;:::i;:::-;3461:2;3456:3;3452:12;3445:19;;3250:220;;;:::o;3476:366::-;3618:3;3639:67;3703:2;3698:3;3639:67;:::i;:::-;3632:74;;3715:93;3804:3;3715:93;:::i;:::-;3833:2;3828:3;3824:12;3817:19;;3622:220;;;:::o;3848:366::-;3990:3;4011:67;4075:2;4070:3;4011:67;:::i;:::-;4004:74;;4087:93;4176:3;4087:93;:::i;:::-;4205:2;4200:3;4196:12;4189:19;;3994:220;;;:::o;4220:366::-;4362:3;4383:67;4447:2;4442:3;4383:67;:::i;:::-;4376:74;;4459:93;4548:3;4459:93;:::i;:::-;4577:2;4572:3;4568:12;4561:19;;4366:220;;;:::o;4592:366::-;4734:3;4755:67;4819:2;4814:3;4755:67;:::i;:::-;4748:74;;4831:93;4920:3;4831:93;:::i;:::-;4949:2;4944:3;4940:12;4933:19;;4738:220;;;:::o;4964:366::-;5106:3;5127:67;5191:2;5186:3;5127:67;:::i;:::-;5120:74;;5203:93;5292:3;5203:93;:::i;:::-;5321:2;5316:3;5312:12;5305:19;;5110:220;;;:::o;5336:366::-;5478:3;5499:67;5563:2;5558:3;5499:67;:::i;:::-;5492:74;;5575:93;5664:3;5575:93;:::i;:::-;5693:2;5688:3;5684:12;5677:19;;5482:220;;;:::o;5708:366::-;5850:3;5871:67;5935:2;5930:3;5871:67;:::i;:::-;5864:74;;5947:93;6036:3;5947:93;:::i;:::-;6065:2;6060:3;6056:12;6049:19;;5854:220;;;:::o;6080:366::-;6222:3;6243:67;6307:2;6302:3;6243:67;:::i;:::-;6236:74;;6319:93;6408:3;6319:93;:::i;:::-;6437:2;6432:3;6428:12;6421:19;;6226:220;;;:::o;6452:366::-;6594:3;6615:67;6679:2;6674:3;6615:67;:::i;:::-;6608:74;;6691:93;6780:3;6691:93;:::i;:::-;6809:2;6804:3;6800:12;6793:19;;6598:220;;;:::o;6824:118::-;6911:24;6929:5;6911:24;:::i;:::-;6906:3;6899:37;6889:53;;:::o;6948:112::-;7031:22;7047:5;7031:22;:::i;:::-;7026:3;7019:35;7009:51;;:::o;7066:222::-;7159:4;7197:2;7186:9;7182:18;7174:26;;7210:71;7278:1;7267:9;7263:17;7254:6;7210:71;:::i;:::-;7164:124;;;;:::o;7294:210::-;7381:4;7419:2;7408:9;7404:18;7396:26;;7432:65;7494:1;7483:9;7479:17;7470:6;7432:65;:::i;:::-;7386:118;;;;:::o;7510:313::-;7623:4;7661:2;7650:9;7646:18;7638:26;;7710:9;7704:4;7700:20;7696:1;7685:9;7681:17;7674:47;7738:78;7811:4;7802:6;7738:78;:::i;:::-;7730:86;;7628:195;;;;:::o;7829:419::-;7995:4;8033:2;8022:9;8018:18;8010:26;;8082:9;8076:4;8072:20;8068:1;8057:9;8053:17;8046:47;8110:131;8236:4;8110:131;:::i;:::-;8102:139;;8000:248;;;:::o;8254:419::-;8420:4;8458:2;8447:9;8443:18;8435:26;;8507:9;8501:4;8497:20;8493:1;8482:9;8478:17;8471:47;8535:131;8661:4;8535:131;:::i;:::-;8527:139;;8425:248;;;:::o;8679:419::-;8845:4;8883:2;8872:9;8868:18;8860:26;;8932:9;8926:4;8922:20;8918:1;8907:9;8903:17;8896:47;8960:131;9086:4;8960:131;:::i;:::-;8952:139;;8850:248;;;:::o;9104:419::-;9270:4;9308:2;9297:9;9293:18;9285:26;;9357:9;9351:4;9347:20;9343:1;9332:9;9328:17;9321:47;9385:131;9511:4;9385:131;:::i;:::-;9377:139;;9275:248;;;:::o;9529:419::-;9695:4;9733:2;9722:9;9718:18;9710:26;;9782:9;9776:4;9772:20;9768:1;9757:9;9753:17;9746:47;9810:131;9936:4;9810:131;:::i;:::-;9802:139;;9700:248;;;:::o;9954:419::-;10120:4;10158:2;10147:9;10143:18;10135:26;;10207:9;10201:4;10197:20;10193:1;10182:9;10178:17;10171:47;10235:131;10361:4;10235:131;:::i;:::-;10227:139;;10125:248;;;:::o;10379:419::-;10545:4;10583:2;10572:9;10568:18;10560:26;;10632:9;10626:4;10622:20;10618:1;10607:9;10603:17;10596:47;10660:131;10786:4;10660:131;:::i;:::-;10652:139;;10550:248;;;:::o;10804:419::-;10970:4;11008:2;10997:9;10993:18;10985:26;;11057:9;11051:4;11047:20;11043:1;11032:9;11028:17;11021:47;11085:131;11211:4;11085:131;:::i;:::-;11077:139;;10975:248;;;:::o;11229:419::-;11395:4;11433:2;11422:9;11418:18;11410:26;;11482:9;11476:4;11472:20;11468:1;11457:9;11453:17;11446:47;11510:131;11636:4;11510:131;:::i;:::-;11502:139;;11400:248;;;:::o;11654:419::-;11820:4;11858:2;11847:9;11843:18;11835:26;;11907:9;11901:4;11897:20;11893:1;11882:9;11878:17;11871:47;11935:131;12061:4;11935:131;:::i;:::-;11927:139;;11825:248;;;:::o;12079:222::-;12172:4;12210:2;12199:9;12195:18;12187:26;;12223:71;12291:1;12280:9;12276:17;12267:6;12223:71;:::i;:::-;12177:124;;;;:::o;12307:214::-;12396:4;12434:2;12423:9;12419:18;12411:26;;12447:67;12511:1;12500:9;12496:17;12487:6;12447:67;:::i;:::-;12401:120;;;;:::o;12527:99::-;12579:6;12613:5;12607:12;12597:22;;12586:40;;;:::o;12632:169::-;12716:11;12750:6;12745:3;12738:19;12790:4;12785:3;12781:14;12766:29;;12728:73;;;;:::o;12807:305::-;12847:3;12866:20;12884:1;12866:20;:::i;:::-;12861:25;;12900:20;12918:1;12900:20;:::i;:::-;12895:25;;13054:1;12986:66;12982:74;12979:1;12976:81;12973:2;;;13060:18;;:::i;:::-;12973:2;13104:1;13101;13097:9;13090:16;;12851:261;;;;:::o;13118:191::-;13158:4;13178:20;13196:1;13178:20;:::i;:::-;13173:25;;13212:20;13230:1;13212:20;:::i;:::-;13207:25;;13251:1;13248;13245:8;13242:2;;;13256:18;;:::i;:::-;13242:2;13301:1;13298;13294:9;13286:17;;13163:146;;;;:::o;13315:96::-;13352:7;13381:24;13399:5;13381:24;:::i;:::-;13370:35;;13360:51;;;:::o;13417:90::-;13451:7;13494:5;13487:13;13480:21;13469:32;;13459:48;;;:::o;13513:126::-;13550:7;13590:42;13583:5;13579:54;13568:65;;13558:81;;;:::o;13645:77::-;13682:7;13711:5;13700:16;;13690:32;;;:::o;13728:86::-;13763:7;13803:4;13796:5;13792:16;13781:27;;13771:43;;;:::o;13820:307::-;13888:1;13898:113;13912:6;13909:1;13906:13;13898:113;;;13997:1;13992:3;13988:11;13982:18;13978:1;13973:3;13969:11;13962:39;13934:2;13931:1;13927:10;13922:15;;13898:113;;;14029:6;14026:1;14023:13;14020:2;;;14109:1;14100:6;14095:3;14091:16;14084:27;14020:2;13869:258;;;;:::o;14133:320::-;14177:6;14214:1;14208:4;14204:12;14194:22;;14261:1;14255:4;14251:12;14282:18;14272:2;;14338:4;14330:6;14326:17;14316:27;;14272:2;14400;14392:6;14389:14;14369:18;14366:38;14363:2;;;14419:18;;:::i;:::-;14363:2;14184:269;;;;:::o;14459:180::-;14507:77;14504:1;14497:88;14604:4;14601:1;14594:15;14628:4;14625:1;14618:15;14645:180;14693:77;14690:1;14683:88;14790:4;14787:1;14780:15;14814:4;14811:1;14804:15;14831:102;14872:6;14923:2;14919:7;14914:2;14907:5;14903:14;14899:28;14889:38;;14879:54;;;:::o;14939:222::-;15079:34;15075:1;15067:6;15063:14;15056:58;15148:5;15143:2;15135:6;15131:15;15124:30;15045:116;:::o;15167:221::-;15307:34;15303:1;15295:6;15291:14;15284:58;15376:4;15371:2;15363:6;15359:15;15352:29;15273:115;:::o;15394:225::-;15534:34;15530:1;15522:6;15518:14;15511:58;15603:8;15598:2;15590:6;15586:15;15579:33;15500:119;:::o;15625:227::-;15765:34;15761:1;15753:6;15749:14;15742:58;15834:10;15829:2;15821:6;15817:15;15810:35;15731:121;:::o;15858:182::-;15998:34;15994:1;15986:6;15982:14;15975:58;15964:76;:::o;16046:224::-;16186:34;16182:1;16174:6;16170:14;16163:58;16255:7;16250:2;16242:6;16238:15;16231:32;16152:118;:::o;16276:223::-;16416:34;16412:1;16404:6;16400:14;16393:58;16485:6;16480:2;16472:6;16468:15;16461:31;16382:117;:::o;16505:170::-;16645:22;16641:1;16633:6;16629:14;16622:46;16611:64;:::o;16681:224::-;16821:34;16817:1;16809:6;16805:14;16798:58;16890:7;16885:2;16877:6;16873:15;16866:32;16787:118;:::o;16911:181::-;17051:33;17047:1;17039:6;17035:14;17028:57;17017:75;:::o;17098:122::-;17171:24;17189:5;17171:24;:::i;:::-;17164:5;17161:35;17151:2;;17210:1;17207;17200:12;17151:2;17141:79;:::o;17226:116::-;17296:21;17311:5;17296:21;:::i;:::-;17289:5;17286:32;17276:2;;17332:1;17329;17322:12;17276:2;17266:76;:::o;17348:122::-;17421:24;17439:5;17421:24;:::i;:::-;17414:5;17411:35;17401:2;;17460:1;17457;17450:12;17401:2;17391:79;:::o
Swarm Source
ipfs://475329502cc8bdb8f557cb3104d0727ef3438e4e98ef4e99de412228b199e700
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.