ERC-20
Deflationary Token
Overview
Max Total Supply
3,528,669.205456498624259063 ASH
Holders
9,477 ( -0.011%)
Market
Price
$1.28 @ 0.000571 ETH (+8.14%)
Onchain Market Cap
$4,501,409.63
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
37.264152229446567857 ASHValue
$47.54 ( ~0.021277066960944 Eth) [0.0011%]Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | 0X64D91F12ECE7362F91A6F8E7940CD55F05060B92-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $1.24 0.0005549 Eth | $377.90 300.397 0X64D91F12ECE7362F91A6F8E7940CD55F05060B92 | 99.3978% |
2 | ![]() | 0X64D91F12ECE7362F91A6F8E7940CD55F05060B92-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $1.24 0.0005494 Eth | $2.25 1.820 0X64D91F12ECE7362F91A6F8E7940CD55F05060B92 | 0.6022% |
Contract Source Code Verified (Exact Match)
Contract Name:
ASH
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyz//////////////////////////////////////////////////////////// //// //// XX XX //// XXXXXX XXXXXX //// XXXXXXXXXXXX XXXXXXXXXXXX //// XXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //// XXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXX //// XXXXXXXXXXXX XXXXXXXXXXXX //// XXXXXX XXXXXX //// XX XX //
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyzimport "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";import "@openzeppelin/contracts/utils/Address.sol";import "./INFT2ERC20.sol";import "./access/AdminControl.sol";import "./rates/INFT2ERC20RateEngine.sol";contract NFT2ERC20 is ReentrancyGuard, ERC20Burnable, AdminControl, INFT2ERC20 {using Address for address;address private _rateEngine;address private _treasury;uint128 private _treasuryBasisPoints;mapping (string => bytes4) private _specTransferFunction;constructor (string memory _name, string memory _symbol) ERC20(_name, _symbol) {}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../ERC20.sol";import "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys `amount` tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 amount) public virtual {_burn(_msgSender(), amount);}/*** @dev Destroys `amount` tokens from `account`, deducting from the caller's* allowance.*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Library used to query support of an interface declared via {IERC165}.** Note that these functions return the actual result of the query: they do not* `revert` if an interface is not supported. It is up to the caller to decide* what to do in these cases.*/library ERC165Checker {// As per the EIP-165 spec, no interface should ever match 0xffffffffbytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;/*** @dev Returns true if `account` supports the {IERC165} interface,*/function supportsERC165(address account) internal view returns (bool) {// Any contract that implements ERC165 must explicitly indicate support of// InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalidreturn _supportsERC165Interface(account, type(IERC165).interfaceId) &&!_supportsERC165Interface(account, _INTERFACE_ID_INVALID);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/function isContract(address account) internal view returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyzimport "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "./access/IAdminControl.sol";interface INFT2ERC20 is IAdminControl, IERC20 {event Swapped(address indexed account, address indexed tokenContract, uint256[] args, string spec, uint256 rate);event RateEngineUpdated(address sender, address rateEngine);event TreasuryUpdated(address sender, address treasury, uint128 basisPoints);event TransferSpecUpdated(address sender, string spec, bytes4 transferFunction);/** @dev sets the contract used to get NFT to ERC20 conversion rate values*/function setRateEngine(address rateEngine) external;/** @dev sets the amount of tokens the treasury gets on every burn*/function setTreasury(address treasury, uint128 basisPoints) external;/*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyzimport "@openzeppelin/contracts/utils/introspection/ERC165.sol";import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "./IAdminControl.sol";abstract contract AdminControl is Ownable, IAdminControl, ERC165 {using EnumerableSet for EnumerableSet.AddressSet;// Track registered adminsEnumerableSet.AddressSet private _admins;/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {return interfaceId == type(IAdminControl).interfaceId|| super.supportsInterface(interfaceId);}/**
123456789101112131415161718// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyzimport "@openzeppelin/contracts/utils/introspection/IERC165.sol";/*** @dev Required interface of an INFT2ERC20 compliant converter contracts.*/interface INFT2ERC20RateEngine is IERC165 {/** @dev get the conversion rate for a given NFT*/function getRate(uint256 totalSupply, address tokenContract, uint256[] calldata args, string calldata spec) external view returns (uint256);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin 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
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma 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/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/function decimals() external view returns (uint8);
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.3;/// @author: manifold.xyzimport "@openzeppelin/contracts/utils/introspection/IERC165.sol";/*** @dev Admin control interface*/interface IAdminControl is IERC165 {event AdminApproved(address indexed account, address indexed sender);event AdminRevoked(address indexed account, address indexed sender);/*** @dev gets address of all admins*/function getAdmins() external view returns (address[] memory);/*** @dev add an admin. Can only be called by contract owner.*/function approveAdmin(address admin) external;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {return interfaceId == type(IERC165).interfaceId;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```* contract Example {* // Add the library methods* using EnumerableSet for EnumerableSet.AddressSet;** // Declare a set state variable* EnumerableSet.AddressSet private mySet;* }* ```** As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor () {
12345678910111213141516{"optimizer": {"enabled": true,"runs": 1000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"rateEngine","type":"address"}],"name":"RateEngineUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"tokenContract","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"args","type":"uint256[]"},{"indexed":false,"internalType":"string","name":"spec","type":"string"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"Swapped","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"string","name":"spec","type":"string"},{"indexed":false,"internalType":"bytes4","name":"transferFunction","type":"bytes4"}],"name":"TransferSpecUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint128","name":"basisPoints","type":"uint128"}],"name":"TreasuryUpdated","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":"admin","type":"address"}],"name":"approveAdmin","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint256[]","name":"args","type":"uint256[]"},{"internalType":"string","name":"spec","type":"string"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint256[]","name":"args","type":"uint256[]"},{"internalType":"string","name":"spec","type":"string"},{"internalType":"address","name":"receiver","type":"address"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateEngine","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasury","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rateEngine","type":"address"}],"name":"setRateEngine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"spec","type":"string"},{"internalType":"bytes4","name":"transferFunction","type":"bytes4"}],"name":"setTransferFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury","type":"address"},{"internalType":"uint128","name":"basisPoints","type":"uint128"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806004815260200163213ab93760e11b81525060405180604001604052806003815260200162082a6960eb1b81525081816001600081905550600062000067620000eb60201b60201c565b600180546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000ca906005906020850190620000ef565b508051620000e0906006906020840190620000ef565b5050505050620001d2565b3390565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b60208210811415620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6128d880620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636de09116116100f9578063a9059cbb11610097578063d4e8521b11610071578063d4e8521b146103da578063dd62ed3e146103ed578063ede6662b14610426578063f2fde38b14610439576101c4565b8063a9059cbb146103a3578063b9b9e408146103b6578063c132749c146103c9576101c4565b806379cc6790116100d357806379cc6790146103505780638da5cb5b1461036357806395d89b4114610388578063a457c2d714610390576101c4565b80636de091161461030c57806370a082311461031f578063715018a614610348576101c4565b80632d345670116101665780633950935111610140578063395093511461029d5780633b19e84a146102b057806342966c68146102e65780636d73e669146102f9576101c4565b80632d34567014610266578063313ce5671461027957806331ae450b14610288576101c4565b806318160ddd116101a257806318160ddd14610219578063185d95bb1461022b57806323b872dd1461024057806324d7806c14610253576101c4565b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004612497565b61044c565b60405190151581526020015b60405180910390f35b6101f9610492565b6040516101e8919061271c565b6101dc61021436600461244e565b610524565b6004545b6040519081526020016101e8565b61023e6102393660046124b1565b61053b565b005b6101dc61024e3660046122be565b610640565b6101dc610261366004612272565b610706565b61023e610274366004612272565b61073f565b604051601281526020016101e8565b6102906107ef565b6040516101e89190612695565b6101dc6102ab36600461244e565b6108ba565b600a54600b54604080516001600160a01b0390931683526fffffffffffffffffffffffffffffffff9091166020830152016101e8565b61023e6102f4366004612503565b6108f1565b61023e610307366004612272565b6108fb565b61023e61031a3660046122f9565b6109a5565b61021d61032d366004612272565b6001600160a01b031660009081526002602052604090205490565b61023e610a1b565b61023e61035e36600461244e565b610acc565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101e8565b6101f9610b6d565b6101dc61039e36600461244e565b610b7c565b6101dc6103b136600461244e565b610c2f565b61023e6103c4366004612377565b610c3c565b6009546001600160a01b0316610370565b61023e6103e8366004612272565b610caf565b61021d6103fb36600461228c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61023e610434366004612404565b610e39565b61023e610447366004612272565b610ff5565b60006001600160e01b031982167f0f21484300000000000000000000000000000000000000000000000000000000148061048a575061048a82611134565b90505b919050565b6060600580546104a190612836565b80601f01602080910402602001604051908101604052809291908181526020018280546104cd90612836565b801561051a5780601f106104ef5761010080835404028352916020019161051a565b820191906000526020600020905b8154815290600101906020018083116104fd57829003601f168201915b5050505050905090565b6000610531338484611182565b5060015b92915050565b3361054e6001546001600160a01b031690565b6001600160a01b0316148061056957506105696007336112db565b6105c65760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084015b60405180910390fd5b80600c84846040516105d9929190612647565b908152604051908190036020018120805460e09390931c63ffffffff19909316929092179091557fac03ca21e1a01cd6a9b17e613cd0483faf6b274fdae6c7f6e20ab1ffab443b9e90610633903390869086908690612657565b60405180910390a1505050565b600061064d848484611300565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106e75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016105bd565b6106fb85336106f686856127ef565b611182565b506001949350505050565b6000816001600160a01b03166107246001546001600160a01b031690565b6001600160a01b0316148061048a575061048a6007836112db565b6001546001600160a01b031633146107995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6107a46007826112db565b156107ec5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a36107ea600782611521565b505b50565b60606107fb6007611536565b67ffffffffffffffff81111561082157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561084a578160200160208202803683370190505b50905060005b61085a6007611536565b8110156108b65761086c600782611540565b82828151811061088c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806108ae81612871565b915050610850565b5090565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105319185906106f6908690612798565b6107ec338261154c565b6001546001600160a01b031633146109555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6109606007826112db565b6107ec5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a36107ea6007826116d2565b600260005414156109f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105bd565b6002600081905550610a0f858585858560006116e7565b50506001600055505050565b6001546001600160a01b03163314610a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610ad883336103fb565b905081811015610b4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105bd565b610b5e83336106f685856127ef565b610b68838361154c565b505050565b6060600680546104a190612836565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610c165760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105bd565b610c2533856106f686856127ef565b5060019392505050565b6000610531338484611300565b60026000541415610c8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105bd565b6002600055610ca28686868686866116e7565b5050600160005550505050565b33610cc26001546001600160a01b031690565b6001600160a01b03161480610cdd5750610cdd6007336112db565b610d355760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084016105bd565b610d5f817f63d15a6000000000000000000000000000000000000000000000000000000000611d78565b610dd15760405162461bcd60e51b815260206004820152602e60248201527f4e46543245524332303a204d75737420696d706c656d656e7420494e4654324560448201527f5243323052617465456e67696e6500000000000000000000000000000000000060648201526084016105bd565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040805133815260208101929092527f5d670467ec72133bc6e7e671b46a473aec85b91264a3c8ab10131c62a3fdb3ee910160405180910390a150565b33610e4c6001546001600160a01b031690565b6001600160a01b03161480610e675750610e676007336112db565b610ebf5760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084016105bd565b612710816fffffffffffffffffffffffffffffffff1610610f485760405162461bcd60e51b815260206004820152603560248201527f4e46543245524332303a206261736973506f696e7473206d757374206265206c60448201527f657373207468616e20313030303020283130302529000000000000000000000060648201526084016105bd565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155600b80547fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff84169081179091556040805133815260208101939093528201527fbb7426550d303f915457b68d8bf519232f246fa31d5279202ee484dc58def9299060600160405180910390a15050565b6001546001600160a01b0316331461104f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6001600160a01b0381166110cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006001600160e01b031982167f553e757e00000000000000000000000000000000000000000000000000000000148061048a57506301ffc9a760e01b6001600160e01b031983161461048a565b6001600160a01b0383166111fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0382166112795760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b03831661137c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0382166113f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b038316600090815260026020526040902054818110156114875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105bd565b61149182826127ef565b6001600160a01b0380861660009081526002602052604080822093909355908516815290812080548492906114c7908490612798565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161151391815260200190565b60405180910390a350505050565b60006112f9836001600160a01b038416611d94565b600061048a825490565b60006112f98383611eab565b6001600160a01b0382166115c85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b038216600090815260026020526040902054818110156116575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b61166182826127ef565b6001600160a01b0384166000908152600260205260408120919091556004805484929061168f9084906127ef565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016112ce565b60006112f9836001600160a01b038416611f5a565b8361175a5760405162461bcd60e51b815260206004820152602d60248201527f4e46543245524332303a204d7573742070726f76696465206174206c6561737460448201527f206f6e6520617267756d656e740000000000000000000000000000000000000060648201526084016105bd565b6009546001600160a01b03166117d85760405162461bcd60e51b815260206004820152602560248201527f4e46543245524332303a205261746520456e67696e65206e6f7420636f6e666960448201527f677572656400000000000000000000000000000000000000000000000000000060648201526084016105bd565b604051600090600c906117ee9086908690612647565b908152604051908190036020019020546001600160e01b031960e09190911b1614156118825760405162461bcd60e51b815260206004820152603160248201527f4e46543245524332303a205472616e736665722066756e6374696f6e206e6f7460448201527f20646566696e656420666f72207370656300000000000000000000000000000060648201526084016105bd565b6001600160a01b0386163b6118ff5760405162461bcd60e51b815260206004820152602960248201527f4e46543245524332303a20546f6b656e2061646472657373206d75737420626560448201527f20636f6e7472616374000000000000000000000000000000000000000000000060648201526084016105bd565b6009546000906001600160a01b03166363d15a6061191c60045490565b89898989896040518763ffffffff1660e01b81526004016119429695949392919061274f565b60206040518083038186803b15801561195a57600080fd5b505afa15801561196e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611992919061251b565b90506001851115611ab7576000876001600160a01b0316600c86866040516119bb929190612647565b908152604051602091819003820181205460e01b91339161dead916119e4918d918d91016125aa565b60408051601f1981840301815290829052611a04949392916020016125ed565b60408051601f1981840301815290829052611a1e9161262b565b6000604051808303816000865af19150503d8060008114611a5b576040519150601f19603f3d011682016040523d82523d6000602084013e611a60565b606091505b5050905080611ab15760405162461bcd60e51b815260206004820152601760248201527f4e46543245524332303a204275726e206661696c75726500000000000000000060448201526064016105bd565b50611c1f565b6000876001600160a01b0316600c8686604051611ad5929190612647565b9081526040519081900360200190205460e01b3361dead8a8a600081611b0b57634e487b7160e01b600052603260045260246000fd5b6040516001600160a01b0395861660248201529490931660448501525060209091020135606482015260840160408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909416939093179092529051611b8a919061262b565b6000604051808303816000865af19150503d8060008114611bc7576040519150601f19603f3d011682016040523d82523d6000602084013e611bcc565b606091505b5050905080611c1d5760405162461bcd60e51b815260206004820152601760248201527f4e46543245524332303a204275726e206661696c75726500000000000000000060448201526064016105bd565b505b6001600160a01b038216611c8f57611c373382611fa9565b866001600160a01b0316336001600160a01b03167f439c74b7b04753dbf9f7344797e72012cc78fca6cd987a67bf19cad1c138aa858888888887604051611c829594939291906126e2565b60405180910390a3611ced565b611c998282611fa9565b866001600160a01b0316826001600160a01b03167f439c74b7b04753dbf9f7344797e72012cc78fca6cd987a67bf19cad1c138aa858888888887604051611ce49594939291906126e2565b60405180910390a35b600b546fffffffffffffffffffffffffffffffff1615801590611d1a5750600a546001600160a01b031615155b15611d6f57600b5460009061271090611d45906fffffffffffffffffffffffffffffffff16846127d0565b611d4f91906127b0565b90508015611d6d57600a54611d6d906001600160a01b031682611fa9565b505b50505050505050565b6000611d8383612088565b80156112f957506112f983836120bb565b60008181526001830160205260408120548015611ea1576000611db86001836127ef565b8554909150600090611dcc906001906127ef565b90506000866000018281548110611df357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611e2457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080611e6557634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610535565b6000915050610535565b81546000908210611f245760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b826000018281548110611f4757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6000818152600183016020526040812054611fa157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610535565b506000610535565b6001600160a01b038216611fff5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105bd565b80600460008282546120119190612798565b90915550506001600160a01b0382166000908152600260205260408120805483929061203e908490612798565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600061209b826301ffc9a760e01b6120bb565b801561048a57506120b4826001600160e01b03196120bb565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166301ffc9a760e01b179052905160009190829081906001600160a01b038716906175309061213790869061262b565b6000604051808303818686fa925050503d8060008114612173576040519150601f19603f3d011682016040523d82523d6000602084013e612178565b606091505b50915091506020815110156121935760009350505050610535565b8180156121af5750808060200190518101906121af9190612477565b9695505050505050565b80356001600160a01b038116811461048d57600080fd5b60008083601f8401126121e1578182fd5b50813567ffffffffffffffff8111156121f8578182fd5b6020830191508360208260051b850101111561221357600080fd5b9250929050565b80356001600160e01b03198116811461048d57600080fd5b60008083601f840112612243578182fd5b50813567ffffffffffffffff81111561225a578182fd5b60208301915083602082850101111561221357600080fd5b600060208284031215612283578081fd5b6112f9826121b9565b6000806040838503121561229e578081fd5b6122a7836121b9565b91506122b5602084016121b9565b90509250929050565b6000806000606084860312156122d2578081fd5b6122db846121b9565b92506122e9602085016121b9565b9150604084013590509250925092565b600080600080600060608688031215612310578081fd5b612319866121b9565b9450602086013567ffffffffffffffff80821115612335578283fd5b61234189838a016121d0565b90965094506040880135915080821115612359578283fd5b5061236688828901612232565b969995985093965092949392505050565b6000806000806000806080878903121561238f578081fd5b612398876121b9565b9550602087013567ffffffffffffffff808211156123b4578283fd5b6123c08a838b016121d0565b909750955060408901359150808211156123d8578283fd5b506123e589828a01612232565b90945092506123f89050606088016121b9565b90509295509295509295565b60008060408385031215612416578182fd5b61241f836121b9565b915060208301356fffffffffffffffffffffffffffffffff81168114612443578182fd5b809150509250929050565b60008060408385031215612460578182fd5b612469836121b9565b946020939093013593505050565b600060208284031215612488578081fd5b815180151581146112f9578182fd5b6000602082840312156124a8578081fd5b6112f98261221a565b6000806000604084860312156124c5578283fd5b833567ffffffffffffffff8111156124db578384fd5b6124e786828701612232565b90945092506124fa90506020850161221a565b90509250925092565b600060208284031215612514578081fd5b5035919050565b60006020828403121561252c578081fd5b5051919050565b60008284527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612564578081fd5b8260051b80836020870137939093016020019283525090919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156125d8578081fd5b8260051b808584379190910190815292915050565b60006001600160e01b031986168252846004830152836024830152825161261b816044850160208701612806565b9190910160440195945050505050565b6000825161263d818460208701612806565b9190910192915050565b6000828483379101908152919050565b60006001600160a01b03861682526060602083015261267a606083018587612580565b90506001600160e01b03198316604083015295945050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d65783516001600160a01b0316835292840192918401916001016126b1565b50909695505050505050565b6000606082526126f6606083018789612533565b8281036020840152612709818688612580565b9150508260408301529695505050505050565b600060208252825180602084015261273b816040850160208701612806565b601f01601f19169190910160400192915050565b60008782526001600160a01b038716602083015260806040830152612778608083018688612533565b828103606084015261278b818587612580565b9998505050505050505050565b600082198211156127ab576127ab61288c565b500190565b6000826127cb57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156127ea576127ea61288c565b500290565b6000828210156128015761280161288c565b500390565b60005b83811015612821578181015183820152602001612809565b83811115612830576000848401525b50505050565b600181811c9082168061284a57607f821691505b6020821081141561286b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128855761288561288c565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220522e471b1b5d5c21d5355090190f7d6495763e00f113747351161d1fee306e6764736f6c63430008030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636de09116116100f9578063a9059cbb11610097578063d4e8521b11610071578063d4e8521b146103da578063dd62ed3e146103ed578063ede6662b14610426578063f2fde38b14610439576101c4565b8063a9059cbb146103a3578063b9b9e408146103b6578063c132749c146103c9576101c4565b806379cc6790116100d357806379cc6790146103505780638da5cb5b1461036357806395d89b4114610388578063a457c2d714610390576101c4565b80636de091161461030c57806370a082311461031f578063715018a614610348576101c4565b80632d345670116101665780633950935111610140578063395093511461029d5780633b19e84a146102b057806342966c68146102e65780636d73e669146102f9576101c4565b80632d34567014610266578063313ce5671461027957806331ae450b14610288576101c4565b806318160ddd116101a257806318160ddd14610219578063185d95bb1461022b57806323b872dd1461024057806324d7806c14610253576101c4565b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004612497565b61044c565b60405190151581526020015b60405180910390f35b6101f9610492565b6040516101e8919061271c565b6101dc61021436600461244e565b610524565b6004545b6040519081526020016101e8565b61023e6102393660046124b1565b61053b565b005b6101dc61024e3660046122be565b610640565b6101dc610261366004612272565b610706565b61023e610274366004612272565b61073f565b604051601281526020016101e8565b6102906107ef565b6040516101e89190612695565b6101dc6102ab36600461244e565b6108ba565b600a54600b54604080516001600160a01b0390931683526fffffffffffffffffffffffffffffffff9091166020830152016101e8565b61023e6102f4366004612503565b6108f1565b61023e610307366004612272565b6108fb565b61023e61031a3660046122f9565b6109a5565b61021d61032d366004612272565b6001600160a01b031660009081526002602052604090205490565b61023e610a1b565b61023e61035e36600461244e565b610acc565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101e8565b6101f9610b6d565b6101dc61039e36600461244e565b610b7c565b6101dc6103b136600461244e565b610c2f565b61023e6103c4366004612377565b610c3c565b6009546001600160a01b0316610370565b61023e6103e8366004612272565b610caf565b61021d6103fb36600461228c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61023e610434366004612404565b610e39565b61023e610447366004612272565b610ff5565b60006001600160e01b031982167f0f21484300000000000000000000000000000000000000000000000000000000148061048a575061048a82611134565b90505b919050565b6060600580546104a190612836565b80601f01602080910402602001604051908101604052809291908181526020018280546104cd90612836565b801561051a5780601f106104ef5761010080835404028352916020019161051a565b820191906000526020600020905b8154815290600101906020018083116104fd57829003601f168201915b5050505050905090565b6000610531338484611182565b5060015b92915050565b3361054e6001546001600160a01b031690565b6001600160a01b0316148061056957506105696007336112db565b6105c65760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084015b60405180910390fd5b80600c84846040516105d9929190612647565b908152604051908190036020018120805460e09390931c63ffffffff19909316929092179091557fac03ca21e1a01cd6a9b17e613cd0483faf6b274fdae6c7f6e20ab1ffab443b9e90610633903390869086908690612657565b60405180910390a1505050565b600061064d848484611300565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106e75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016105bd565b6106fb85336106f686856127ef565b611182565b506001949350505050565b6000816001600160a01b03166107246001546001600160a01b031690565b6001600160a01b0316148061048a575061048a6007836112db565b6001546001600160a01b031633146107995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6107a46007826112db565b156107ec5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a36107ea600782611521565b505b50565b60606107fb6007611536565b67ffffffffffffffff81111561082157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561084a578160200160208202803683370190505b50905060005b61085a6007611536565b8110156108b65761086c600782611540565b82828151811061088c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806108ae81612871565b915050610850565b5090565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105319185906106f6908690612798565b6107ec338261154c565b6001546001600160a01b031633146109555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6109606007826112db565b6107ec5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a36107ea6007826116d2565b600260005414156109f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105bd565b6002600081905550610a0f858585858560006116e7565b50506001600055505050565b6001546001600160a01b03163314610a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610ad883336103fb565b905081811015610b4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105bd565b610b5e83336106f685856127ef565b610b68838361154c565b505050565b6060600680546104a190612836565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610c165760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105bd565b610c2533856106f686856127ef565b5060019392505050565b6000610531338484611300565b60026000541415610c8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105bd565b6002600055610ca28686868686866116e7565b5050600160005550505050565b33610cc26001546001600160a01b031690565b6001600160a01b03161480610cdd5750610cdd6007336112db565b610d355760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084016105bd565b610d5f817f63d15a6000000000000000000000000000000000000000000000000000000000611d78565b610dd15760405162461bcd60e51b815260206004820152602e60248201527f4e46543245524332303a204d75737420696d706c656d656e7420494e4654324560448201527f5243323052617465456e67696e6500000000000000000000000000000000000060648201526084016105bd565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040805133815260208101929092527f5d670467ec72133bc6e7e671b46a473aec85b91264a3c8ab10131c62a3fdb3ee910160405180910390a150565b33610e4c6001546001600160a01b031690565b6001600160a01b03161480610e675750610e676007336112db565b610ebf5760405162461bcd60e51b8152602060048201526024808201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616044820152633236b4b760e11b60648201526084016105bd565b612710816fffffffffffffffffffffffffffffffff1610610f485760405162461bcd60e51b815260206004820152603560248201527f4e46543245524332303a206261736973506f696e7473206d757374206265206c60448201527f657373207468616e20313030303020283130302529000000000000000000000060648201526084016105bd565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155600b80547fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff84169081179091556040805133815260208101939093528201527fbb7426550d303f915457b68d8bf519232f246fa31d5279202ee484dc58def9299060600160405180910390a15050565b6001546001600160a01b0316331461104f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b6001600160a01b0381166110cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006001600160e01b031982167f553e757e00000000000000000000000000000000000000000000000000000000148061048a57506301ffc9a760e01b6001600160e01b031983161461048a565b6001600160a01b0383166111fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0382166112795760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b03831661137c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b0382166113f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b038316600090815260026020526040902054818110156114875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105bd565b61149182826127ef565b6001600160a01b0380861660009081526002602052604080822093909355908516815290812080548492906114c7908490612798565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161151391815260200190565b60405180910390a350505050565b60006112f9836001600160a01b038416611d94565b600061048a825490565b60006112f98383611eab565b6001600160a01b0382166115c85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b6001600160a01b038216600090815260026020526040902054818110156116575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b61166182826127ef565b6001600160a01b0384166000908152600260205260408120919091556004805484929061168f9084906127ef565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016112ce565b60006112f9836001600160a01b038416611f5a565b8361175a5760405162461bcd60e51b815260206004820152602d60248201527f4e46543245524332303a204d7573742070726f76696465206174206c6561737460448201527f206f6e6520617267756d656e740000000000000000000000000000000000000060648201526084016105bd565b6009546001600160a01b03166117d85760405162461bcd60e51b815260206004820152602560248201527f4e46543245524332303a205261746520456e67696e65206e6f7420636f6e666960448201527f677572656400000000000000000000000000000000000000000000000000000060648201526084016105bd565b604051600090600c906117ee9086908690612647565b908152604051908190036020019020546001600160e01b031960e09190911b1614156118825760405162461bcd60e51b815260206004820152603160248201527f4e46543245524332303a205472616e736665722066756e6374696f6e206e6f7460448201527f20646566696e656420666f72207370656300000000000000000000000000000060648201526084016105bd565b6001600160a01b0386163b6118ff5760405162461bcd60e51b815260206004820152602960248201527f4e46543245524332303a20546f6b656e2061646472657373206d75737420626560448201527f20636f6e7472616374000000000000000000000000000000000000000000000060648201526084016105bd565b6009546000906001600160a01b03166363d15a6061191c60045490565b89898989896040518763ffffffff1660e01b81526004016119429695949392919061274f565b60206040518083038186803b15801561195a57600080fd5b505afa15801561196e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611992919061251b565b90506001851115611ab7576000876001600160a01b0316600c86866040516119bb929190612647565b908152604051602091819003820181205460e01b91339161dead916119e4918d918d91016125aa565b60408051601f1981840301815290829052611a04949392916020016125ed565b60408051601f1981840301815290829052611a1e9161262b565b6000604051808303816000865af19150503d8060008114611a5b576040519150601f19603f3d011682016040523d82523d6000602084013e611a60565b606091505b5050905080611ab15760405162461bcd60e51b815260206004820152601760248201527f4e46543245524332303a204275726e206661696c75726500000000000000000060448201526064016105bd565b50611c1f565b6000876001600160a01b0316600c8686604051611ad5929190612647565b9081526040519081900360200190205460e01b3361dead8a8a600081611b0b57634e487b7160e01b600052603260045260246000fd5b6040516001600160a01b0395861660248201529490931660448501525060209091020135606482015260840160408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909416939093179092529051611b8a919061262b565b6000604051808303816000865af19150503d8060008114611bc7576040519150601f19603f3d011682016040523d82523d6000602084013e611bcc565b606091505b5050905080611c1d5760405162461bcd60e51b815260206004820152601760248201527f4e46543245524332303a204275726e206661696c75726500000000000000000060448201526064016105bd565b505b6001600160a01b038216611c8f57611c373382611fa9565b866001600160a01b0316336001600160a01b03167f439c74b7b04753dbf9f7344797e72012cc78fca6cd987a67bf19cad1c138aa858888888887604051611c829594939291906126e2565b60405180910390a3611ced565b611c998282611fa9565b866001600160a01b0316826001600160a01b03167f439c74b7b04753dbf9f7344797e72012cc78fca6cd987a67bf19cad1c138aa858888888887604051611ce49594939291906126e2565b60405180910390a35b600b546fffffffffffffffffffffffffffffffff1615801590611d1a5750600a546001600160a01b031615155b15611d6f57600b5460009061271090611d45906fffffffffffffffffffffffffffffffff16846127d0565b611d4f91906127b0565b90508015611d6d57600a54611d6d906001600160a01b031682611fa9565b505b50505050505050565b6000611d8383612088565b80156112f957506112f983836120bb565b60008181526001830160205260408120548015611ea1576000611db86001836127ef565b8554909150600090611dcc906001906127ef565b90506000866000018281548110611df357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611e2457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080611e6557634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610535565b6000915050610535565b81546000908210611f245760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016105bd565b826000018281548110611f4757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6000818152600183016020526040812054611fa157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610535565b506000610535565b6001600160a01b038216611fff5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105bd565b80600460008282546120119190612798565b90915550506001600160a01b0382166000908152600260205260408120805483929061203e908490612798565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600061209b826301ffc9a760e01b6120bb565b801561048a57506120b4826001600160e01b03196120bb565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166301ffc9a760e01b179052905160009190829081906001600160a01b038716906175309061213790869061262b565b6000604051808303818686fa925050503d8060008114612173576040519150601f19603f3d011682016040523d82523d6000602084013e612178565b606091505b50915091506020815110156121935760009350505050610535565b8180156121af5750808060200190518101906121af9190612477565b9695505050505050565b80356001600160a01b038116811461048d57600080fd5b60008083601f8401126121e1578182fd5b50813567ffffffffffffffff8111156121f8578182fd5b6020830191508360208260051b850101111561221357600080fd5b9250929050565b80356001600160e01b03198116811461048d57600080fd5b60008083601f840112612243578182fd5b50813567ffffffffffffffff81111561225a578182fd5b60208301915083602082850101111561221357600080fd5b600060208284031215612283578081fd5b6112f9826121b9565b6000806040838503121561229e578081fd5b6122a7836121b9565b91506122b5602084016121b9565b90509250929050565b6000806000606084860312156122d2578081fd5b6122db846121b9565b92506122e9602085016121b9565b9150604084013590509250925092565b600080600080600060608688031215612310578081fd5b612319866121b9565b9450602086013567ffffffffffffffff80821115612335578283fd5b61234189838a016121d0565b90965094506040880135915080821115612359578283fd5b5061236688828901612232565b969995985093965092949392505050565b6000806000806000806080878903121561238f578081fd5b612398876121b9565b9550602087013567ffffffffffffffff808211156123b4578283fd5b6123c08a838b016121d0565b909750955060408901359150808211156123d8578283fd5b506123e589828a01612232565b90945092506123f89050606088016121b9565b90509295509295509295565b60008060408385031215612416578182fd5b61241f836121b9565b915060208301356fffffffffffffffffffffffffffffffff81168114612443578182fd5b809150509250929050565b60008060408385031215612460578182fd5b612469836121b9565b946020939093013593505050565b600060208284031215612488578081fd5b815180151581146112f9578182fd5b6000602082840312156124a8578081fd5b6112f98261221a565b6000806000604084860312156124c5578283fd5b833567ffffffffffffffff8111156124db578384fd5b6124e786828701612232565b90945092506124fa90506020850161221a565b90509250925092565b600060208284031215612514578081fd5b5035919050565b60006020828403121561252c578081fd5b5051919050565b60008284527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612564578081fd5b8260051b80836020870137939093016020019283525090919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156125d8578081fd5b8260051b808584379190910190815292915050565b60006001600160e01b031986168252846004830152836024830152825161261b816044850160208701612806565b9190910160440195945050505050565b6000825161263d818460208701612806565b9190910192915050565b6000828483379101908152919050565b60006001600160a01b03861682526060602083015261267a606083018587612580565b90506001600160e01b03198316604083015295945050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d65783516001600160a01b0316835292840192918401916001016126b1565b50909695505050505050565b6000606082526126f6606083018789612533565b8281036020840152612709818688612580565b9150508260408301529695505050505050565b600060208252825180602084015261273b816040850160208701612806565b601f01601f19169190910160400192915050565b60008782526001600160a01b038716602083015260806040830152612778608083018688612533565b828103606084015261278b818587612580565b9998505050505050505050565b600082198211156127ab576127ab61288c565b500190565b6000826127cb57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156127ea576127ea61288c565b500290565b6000828210156128015761280161288c565b500390565b60005b83811015612821578181015183820152602001612809565b83811115612830576000848401525b50505050565b600181811c9082168061284a57607f821691505b6020821081141561286b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128855761288561288c565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220522e471b1b5d5c21d5355090190f7d6495763e00f113747351161d1fee306e6764736f6c63430008030033
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.