Token
DOP (DOP)
ERC-20
Overview
Max Total Supply
6,290,774,702.621817574331668809 DOP
Holders
1,475,304
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
200 DOPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DOP
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-22 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Indicates a failed `decreaseAllowance` request. */ error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `requestedDecrease`. * * NOTE: Although this function is designed to avoid double spending with {approval}, * it can still be frontrunned, preventing any attempt of allowance reduction. */ function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < requestedDecrease) { revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } unchecked { _approve(owner, spender, currentAllowance - requestedDecrease); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0). * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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 value) internal virtual { _approve(owner, spender, value, true); } /** * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true * using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } contract DOP is ERC20 { constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) { _mint(_msgSender(), 1_000_000_000 * (10 ** 18)); } function mint(uint256 amount) public { require(amount <= 10_000 * (10 ** decimals()), "ammount should be less than 10,000"); _mint(_msgSender(), amount); } function burn(uint256 amount) external returns (bool) { _burn(_msgSender(), amount); return true; } function burnFrom(address account, uint256 amount) external returns (bool) { require(allowance(account,_msgSender()) >= amount, "tokens not approved"); _burn(account, amount); return true; } }
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"requestedDecrease","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162001e5738038062001e578339818101604052810190620000369190620004cd565b8181816003908162000049919062000787565b5080600490816200005b919062000787565b5050506200008b620000726200009360201b60201c565b6b033b2e3c9fd0803ce80000006200009a60201b60201c565b505062000997565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200010d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001049190620008ae565b60405180910390fd5b620001205f83836200012460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000178578060025f8282546200016b9190620008f6565b9250508190555062000249565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000204578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620001fb9392919062000941565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000292578060025f8282540392505081905550620002dc565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b91906200097c565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003a98262000361565b810181811067ffffffffffffffff82111715620003cb57620003ca62000371565b5b80604052505050565b5f620003df62000348565b9050620003ed82826200039e565b919050565b5f67ffffffffffffffff8211156200040f576200040e62000371565b5b6200041a8262000361565b9050602081019050919050565b5f5b838110156200044657808201518184015260208101905062000429565b5f8484015250505050565b5f620004676200046184620003f2565b620003d4565b9050828152602081018484840111156200048657620004856200035d565b5b6200049384828562000427565b509392505050565b5f82601f830112620004b257620004b162000359565b5b8151620004c484826020860162000451565b91505092915050565b5f8060408385031215620004e657620004e562000351565b5b5f83015167ffffffffffffffff81111562000506576200050562000355565b5b62000514858286016200049b565b925050602083015167ffffffffffffffff81111562000538576200053762000355565b5b62000546858286016200049b565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200059f57607f821691505b602082108103620005b557620005b46200055a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005dc565b620006258683620005dc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200066f6200066962000663846200063d565b62000646565b6200063d565b9050919050565b5f819050919050565b6200068a836200064f565b620006a2620006998262000676565b848454620005e8565b825550505050565b5f90565b620006b8620006aa565b620006c58184846200067f565b505050565b5b81811015620006ec57620006e05f82620006ae565b600181019050620006cb565b5050565b601f8211156200073b576200070581620005bb565b6200071084620005cd565b8101602085101562000720578190505b620007386200072f85620005cd565b830182620006ca565b50505b505050565b5f82821c905092915050565b5f6200075d5f198460080262000740565b1980831691505092915050565b5f6200077783836200074c565b9150826002028217905092915050565b620007928262000550565b67ffffffffffffffff811115620007ae57620007ad62000371565b5b620007ba825462000587565b620007c7828285620006f0565b5f60209050601f831160018114620007fd575f8415620007e8578287015190505b620007f485826200076a565b86555062000863565b601f1984166200080d86620005bb565b5f5b8281101562000836578489015182556001820191506020850194506020810190506200080f565b8683101562000856578489015162000852601f8916826200074c565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000896826200086b565b9050919050565b620008a8816200088a565b82525050565b5f602082019050620008c35f8301846200089d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000902826200063d565b91506200090f836200063d565b92508282019050808211156200092a5762000929620008c9565b5b92915050565b6200093b816200063d565b82525050565b5f606082019050620009565f8301866200089d565b62000965602083018562000930565b62000974604083018462000930565b949350505050565b5f602082019050620009915f83018462000930565b92915050565b6114b280620009a55f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d6814610284578063a457c2d7146102a0578063a9059cbb146102d0578063dd62ed3e14610300576100e8565b806370a082311461020657806379cc67901461023657806395d89b4114610266576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f4610330565b6040516101019190610e50565b60405180910390f35b610124600480360381019061011f9190610f01565b6103c0565b6040516101319190610f59565b60405180910390f35b6101426103e2565b60405161014f9190610f81565b60405180910390f35b610172600480360381019061016d9190610f9a565b6103eb565b60405161017f9190610f59565b60405180910390f35b610190610419565b60405161019d9190611005565b60405180910390f35b6101c060048036038101906101bb9190610f01565b610421565b6040516101cd9190610f59565b60405180910390f35b6101f060048036038101906101eb919061101e565b610457565b6040516101fd9190610f59565b60405180910390f35b610220600480360381019061021b9190611049565b610472565b60405161022d9190610f81565b60405180910390f35b610250600480360381019061024b9190610f01565b6104b7565b60405161025d9190610f59565b60405180910390f35b61026e61051f565b60405161027b9190610e50565b60405180910390f35b61029e6004803603810190610299919061101e565b6105af565b005b6102ba60048036038101906102b59190610f01565b610626565b6040516102c79190610f59565b60405180910390f35b6102ea60048036038101906102e59190610f01565b6106a1565b6040516102f79190610f59565b60405180910390f35b61031a60048036038101906103159190611074565b6106c3565b6040516103279190610f81565b60405180910390f35b60606003805461033f906110df565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906110df565b80156103b65780601f1061038d576101008083540402835291602001916103b6565b820191905f5260205f20905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b5f806103ca610745565b90506103d781858561074c565b600191505092915050565b5f600254905090565b5f806103f5610745565b905061040285828561075e565b61040d8585856107f0565b60019150509392505050565b5f6012905090565b5f8061042b610745565b905061044c81858561043d85896106c3565b610447919061113c565b61074c565b600191505092915050565b5f610469610463610745565b836108e0565b60019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f816104ca846104c5610745565b6106c3565b101561050b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610502906111b9565b60405180910390fd5b61051583836108e0565b6001905092915050565b60606004805461052e906110df565b80601f016020809104026020016040519081016040528092919081815260200182805461055a906110df565b80156105a55780601f1061057c576101008083540402835291602001916105a5565b820191905f5260205f20905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b6105b7610419565b600a6105c39190611306565b6127106105d09190611350565b811115610612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060990611401565b60405180910390fd5b61062361061d610745565b8261095f565b50565b5f80610630610745565b90505f61063d82866106c3565b905083811015610688578481856040517fa60f030c00000000000000000000000000000000000000000000000000000000815260040161067f9392919061142e565b60405180910390fd5b610695828686840361074c565b60019250505092915050565b5f806106ab610745565b90506106b88185856107f0565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61075983838360016109de565b505050565b5f61076984846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107ea57818110156107db578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d29392919061142e565b60405180910390fd5b6107e984848484035f6109de565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610860575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108579190611463565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d0575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c79190611463565b60405180910390fd5b6108db838383610bad565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610950575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109479190611463565b60405180910390fd5b61095b825f83610bad565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109c69190611463565b60405180910390fd5b6109da5f8383610bad565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a4e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a459190611463565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ab59190611463565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ba7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9e9190610f81565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfd578060025f828254610bf1919061113c565b92505081905550610ccb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c86578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c7d9392919061142e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d12578060025f8282540392505081905550610d5c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db99190610f81565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dfd578082015181840152602081019050610de2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e2282610dc6565b610e2c8185610dd0565b9350610e3c818560208601610de0565b610e4581610e08565b840191505092915050565b5f6020820190508181035f830152610e688184610e18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e9d82610e74565b9050919050565b610ead81610e93565b8114610eb7575f80fd5b50565b5f81359050610ec881610ea4565b92915050565b5f819050919050565b610ee081610ece565b8114610eea575f80fd5b50565b5f81359050610efb81610ed7565b92915050565b5f8060408385031215610f1757610f16610e70565b5b5f610f2485828601610eba565b9250506020610f3585828601610eed565b9150509250929050565b5f8115159050919050565b610f5381610f3f565b82525050565b5f602082019050610f6c5f830184610f4a565b92915050565b610f7b81610ece565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f805f60608486031215610fb157610fb0610e70565b5b5f610fbe86828701610eba565b9350506020610fcf86828701610eba565b9250506040610fe086828701610eed565b9150509250925092565b5f60ff82169050919050565b610fff81610fea565b82525050565b5f6020820190506110185f830184610ff6565b92915050565b5f6020828403121561103357611032610e70565b5b5f61104084828501610eed565b91505092915050565b5f6020828403121561105e5761105d610e70565b5b5f61106b84828501610eba565b91505092915050565b5f806040838503121561108a57611089610e70565b5b5f61109785828601610eba565b92505060206110a885828601610eba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110f657607f821691505b602082108103611109576111086110b2565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61114682610ece565b915061115183610ece565b92508282019050808211156111695761116861110f565b5b92915050565b7f746f6b656e73206e6f7420617070726f766564000000000000000000000000005f82015250565b5f6111a3601383610dd0565b91506111ae8261116f565b602082019050919050565b5f6020820190508181035f8301526111d081611197565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561122c578086048111156112085761120761110f565b5b60018516156112175780820291505b8081029050611225856111d7565b94506111ec565b94509492505050565b5f8261124457600190506112ff565b81611251575f90506112ff565b81600181146112675760028114611271576112a0565b60019150506112ff565b60ff8411156112835761128261110f565b5b8360020a91508482111561129a5761129961110f565b5b506112ff565b5060208310610133831016604e8410600b84101617156112d55782820a9050838111156112d0576112cf61110f565b5b6112ff565b6112e284848460016111e3565b925090508184048111156112f9576112f861110f565b5b81810290505b9392505050565b5f61131082610ece565b915061131b83610fea565b92506113487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611235565b905092915050565b5f61135a82610ece565b915061136583610ece565b925082820261137381610ece565b9150828204841483151761138a5761138961110f565b5b5092915050565b7f616d6d6f756e742073686f756c64206265206c657373207468616e2031302c305f8201527f3030000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602283610dd0565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b61142881610e93565b82525050565b5f6060820190506114415f83018661141f565b61144e6020830185610f72565b61145b6040830184610f72565b949350505050565b5f6020820190506114765f83018461141f565b9291505056fea2646970667358221220875d9cbb8ab46339738dc2afc53872d06112da026ca15d0650f0f83f5e2e1e1d64736f6c63430008150033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003444f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d6814610284578063a457c2d7146102a0578063a9059cbb146102d0578063dd62ed3e14610300576100e8565b806370a082311461020657806379cc67901461023657806395d89b4114610266576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f4610330565b6040516101019190610e50565b60405180910390f35b610124600480360381019061011f9190610f01565b6103c0565b6040516101319190610f59565b60405180910390f35b6101426103e2565b60405161014f9190610f81565b60405180910390f35b610172600480360381019061016d9190610f9a565b6103eb565b60405161017f9190610f59565b60405180910390f35b610190610419565b60405161019d9190611005565b60405180910390f35b6101c060048036038101906101bb9190610f01565b610421565b6040516101cd9190610f59565b60405180910390f35b6101f060048036038101906101eb919061101e565b610457565b6040516101fd9190610f59565b60405180910390f35b610220600480360381019061021b9190611049565b610472565b60405161022d9190610f81565b60405180910390f35b610250600480360381019061024b9190610f01565b6104b7565b60405161025d9190610f59565b60405180910390f35b61026e61051f565b60405161027b9190610e50565b60405180910390f35b61029e6004803603810190610299919061101e565b6105af565b005b6102ba60048036038101906102b59190610f01565b610626565b6040516102c79190610f59565b60405180910390f35b6102ea60048036038101906102e59190610f01565b6106a1565b6040516102f79190610f59565b60405180910390f35b61031a60048036038101906103159190611074565b6106c3565b6040516103279190610f81565b60405180910390f35b60606003805461033f906110df565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906110df565b80156103b65780601f1061038d576101008083540402835291602001916103b6565b820191905f5260205f20905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b5f806103ca610745565b90506103d781858561074c565b600191505092915050565b5f600254905090565b5f806103f5610745565b905061040285828561075e565b61040d8585856107f0565b60019150509392505050565b5f6012905090565b5f8061042b610745565b905061044c81858561043d85896106c3565b610447919061113c565b61074c565b600191505092915050565b5f610469610463610745565b836108e0565b60019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f816104ca846104c5610745565b6106c3565b101561050b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610502906111b9565b60405180910390fd5b61051583836108e0565b6001905092915050565b60606004805461052e906110df565b80601f016020809104026020016040519081016040528092919081815260200182805461055a906110df565b80156105a55780601f1061057c576101008083540402835291602001916105a5565b820191905f5260205f20905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b6105b7610419565b600a6105c39190611306565b6127106105d09190611350565b811115610612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060990611401565b60405180910390fd5b61062361061d610745565b8261095f565b50565b5f80610630610745565b90505f61063d82866106c3565b905083811015610688578481856040517fa60f030c00000000000000000000000000000000000000000000000000000000815260040161067f9392919061142e565b60405180910390fd5b610695828686840361074c565b60019250505092915050565b5f806106ab610745565b90506106b88185856107f0565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61075983838360016109de565b505050565b5f61076984846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107ea57818110156107db578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d29392919061142e565b60405180910390fd5b6107e984848484035f6109de565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610860575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108579190611463565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d0575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c79190611463565b60405180910390fd5b6108db838383610bad565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610950575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109479190611463565b60405180910390fd5b61095b825f83610bad565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109c69190611463565b60405180910390fd5b6109da5f8383610bad565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a4e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a459190611463565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ab59190611463565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ba7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9e9190610f81565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfd578060025f828254610bf1919061113c565b92505081905550610ccb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c86578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c7d9392919061142e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d12578060025f8282540392505081905550610d5c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db99190610f81565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dfd578082015181840152602081019050610de2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e2282610dc6565b610e2c8185610dd0565b9350610e3c818560208601610de0565b610e4581610e08565b840191505092915050565b5f6020820190508181035f830152610e688184610e18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e9d82610e74565b9050919050565b610ead81610e93565b8114610eb7575f80fd5b50565b5f81359050610ec881610ea4565b92915050565b5f819050919050565b610ee081610ece565b8114610eea575f80fd5b50565b5f81359050610efb81610ed7565b92915050565b5f8060408385031215610f1757610f16610e70565b5b5f610f2485828601610eba565b9250506020610f3585828601610eed565b9150509250929050565b5f8115159050919050565b610f5381610f3f565b82525050565b5f602082019050610f6c5f830184610f4a565b92915050565b610f7b81610ece565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f805f60608486031215610fb157610fb0610e70565b5b5f610fbe86828701610eba565b9350506020610fcf86828701610eba565b9250506040610fe086828701610eed565b9150509250925092565b5f60ff82169050919050565b610fff81610fea565b82525050565b5f6020820190506110185f830184610ff6565b92915050565b5f6020828403121561103357611032610e70565b5b5f61104084828501610eed565b91505092915050565b5f6020828403121561105e5761105d610e70565b5b5f61106b84828501610eba565b91505092915050565b5f806040838503121561108a57611089610e70565b5b5f61109785828601610eba565b92505060206110a885828601610eba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110f657607f821691505b602082108103611109576111086110b2565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61114682610ece565b915061115183610ece565b92508282019050808211156111695761116861110f565b5b92915050565b7f746f6b656e73206e6f7420617070726f766564000000000000000000000000005f82015250565b5f6111a3601383610dd0565b91506111ae8261116f565b602082019050919050565b5f6020820190508181035f8301526111d081611197565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561122c578086048111156112085761120761110f565b5b60018516156112175780820291505b8081029050611225856111d7565b94506111ec565b94509492505050565b5f8261124457600190506112ff565b81611251575f90506112ff565b81600181146112675760028114611271576112a0565b60019150506112ff565b60ff8411156112835761128261110f565b5b8360020a91508482111561129a5761129961110f565b5b506112ff565b5060208310610133831016604e8410600b84101617156112d55782820a9050838111156112d0576112cf61110f565b5b6112ff565b6112e284848460016111e3565b925090508184048111156112f9576112f861110f565b5b81810290505b9392505050565b5f61131082610ece565b915061131b83610fea565b92506113487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611235565b905092915050565b5f61135a82610ece565b915061136583610ece565b925082820261137381610ece565b9150828204841483151761138a5761138961110f565b5b5092915050565b7f616d6d6f756e742073686f756c64206265206c657373207468616e2031302c305f8201527f3030000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602283610dd0565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b61142881610e93565b82525050565b5f6060820190506114415f83018661141f565b61144e6020830185610f72565b61145b6040830184610f72565b949350505050565b5f6020820190506114765f83018461141f565b9291505056fea2646970667358221220875d9cbb8ab46339738dc2afc53872d06112da026ca15d0650f0f83f5e2e1e1d64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003444f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f500000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): DOP
Arg [1] : symbol_ (string): DOP
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 444f500000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 444f500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
19238:724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8165:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10458:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9267:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11226:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9118:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11884:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19607:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9429:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19737:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8375:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12810:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9752:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9997:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8165:91;8210:13;8243:5;8236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8165:91;:::o;10458:190::-;10531:4;10548:13;10564:12;:10;:12::i;:::-;10548:28;;10587:31;10596:5;10603:7;10612:5;10587:8;:31::i;:::-;10636:4;10629:11;;;10458:190;;;;:::o;9267:99::-;9319:7;9346:12;;9339:19;;9267:99;:::o;11226:249::-;11313:4;11330:15;11348:12;:10;:12::i;:::-;11330:30;;11371:37;11387:4;11393:7;11402:5;11371:15;:37::i;:::-;11419:26;11429:4;11435:2;11439:5;11419:9;:26::i;:::-;11463:4;11456:11;;;11226:249;;;;;:::o;9118:84::-;9167:5;9192:2;9185:9;;9118:84;:::o;11884:238::-;11972:4;11989:13;12005:12;:10;:12::i;:::-;11989:28;;12028:64;12037:5;12044:7;12081:10;12053:25;12063:5;12070:7;12053:9;:25::i;:::-;:38;;;;:::i;:::-;12028:8;:64::i;:::-;12110:4;12103:11;;;11884:238;;;;:::o;19607:122::-;19655:4;19672:27;19678:12;:10;:12::i;:::-;19692:6;19672:5;:27::i;:::-;19717:4;19710:11;;19607:122;;;:::o;9429:118::-;9494:7;9521:9;:18;9531:7;9521:18;;;;;;;;;;;;;;;;9514:25;;9429:118;;;:::o;19737:222::-;19806:4;19866:6;19831:31;19841:7;19849:12;:10;:12::i;:::-;19831:9;:31::i;:::-;:41;;19823:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19907:22;19913:7;19922:6;19907:5;:22::i;:::-;19947:4;19940:11;;19737:222;;;;:::o;8375:95::-;8422:13;8455:7;8448:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8375:95;:::o;19421:178::-;19503:10;:8;:10::i;:::-;19497:2;:16;;;;:::i;:::-;19487:6;:27;;;;:::i;:::-;19477:6;:37;;19469:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;19564:27;19570:12;:10;:12::i;:::-;19584:6;19564:5;:27::i;:::-;19421:178;:::o;12810:504::-;12905:4;12922:13;12938:12;:10;:12::i;:::-;12922:28;;12961:24;12988:25;12998:5;13005:7;12988:9;:25::i;:::-;12961:52;;13047:17;13028:16;:36;13024:150;;;13117:7;13126:16;13144:17;13088:74;;;;;;;;;;;;;:::i;:::-;;;;;;;;13024:150;13209:62;13218:5;13225:7;13253:17;13234:16;:36;13209:8;:62::i;:::-;13302:4;13295:11;;;;12810:504;;;;:::o;9752:182::-;9821:4;9838:13;9854:12;:10;:12::i;:::-;9838:28;;9877:27;9887:5;9894:2;9898:5;9877:9;:27::i;:::-;9922:4;9915:11;;;9752:182;;;;:::o;9997:142::-;10077:7;10104:11;:18;10116:5;10104:18;;;;;;;;;;;;;;;:27;10123:7;10104:27;;;;;;;;;;;;;;;;10097:34;;9997:142;;;;:::o;3839:98::-;3892:7;3919:10;3912:17;;3839:98;:::o;17007:138::-;17100:37;17109:5;17116:7;17125:5;17132:4;17100:8;:37::i;:::-;17007:138;;;:::o;18744:487::-;18844:24;18871:25;18881:5;18888:7;18871:9;:25::i;:::-;18844:52;;18931:17;18911:16;:37;18907:317;;18988:5;18969:16;:24;18965:132;;;19048:7;19057:16;19075:5;19021:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;18965:132;19140:57;19149:5;19156:7;19184:5;19165:16;:24;19191:5;19140:8;:57::i;:::-;18907:317;18833:398;18744:487;;;:::o;13699:308::-;13799:1;13783:18;;:4;:18;;;13779:88;;13852:1;13825:30;;;;;;;;;;;:::i;:::-;;;;;;;;13779:88;13895:1;13881:16;;:2;:16;;;13877:88;;13950:1;13921:32;;;;;;;;;;;:::i;:::-;;;;;;;;13877:88;13975:24;13983:4;13989:2;13993:5;13975:7;:24::i;:::-;13699:308;;;:::o;16359:211::-;16449:1;16430:21;;:7;:21;;;16426:91;;16502:1;16475:30;;;;;;;;;;;:::i;:::-;;;;;;;;16426:91;16527:35;16535:7;16552:1;16556:5;16527:7;:35::i;:::-;16359:211;;:::o;15811:213::-;15901:1;15882:21;;:7;:21;;;15878:93;;15956:1;15927:32;;;;;;;;;;;:::i;:::-;;;;;;;;15878:93;15981:35;15997:1;16001:7;16010:5;15981:7;:35::i;:::-;15811:213;;:::o;18012:443::-;18142:1;18125:19;;:5;:19;;;18121:91;;18197:1;18168:32;;;;;;;;;;;:::i;:::-;;;;;;;;18121:91;18245:1;18226:21;;:7;:21;;;18222:92;;18299:1;18271:31;;;;;;;;;;;:::i;:::-;;;;;;;;18222:92;18354:5;18324:11;:18;18336:5;18324:18;;;;;;;;;;;;;;;:27;18343:7;18324:27;;;;;;;;;;;;;;;:35;;;;18374:9;18370:78;;;18421:7;18405:31;;18414:5;18405:31;;;18430:5;18405:31;;;;;;:::i;:::-;;;;;;;;18370:78;18012:443;;;;:::o;14323:1135::-;14429:1;14413:18;;:4;:18;;;14409:552;;14567:5;14551:12;;:21;;;;;;;:::i;:::-;;;;;;;;14409:552;;;14605:19;14627:9;:15;14637:4;14627:15;;;;;;;;;;;;;;;;14605:37;;14675:5;14661:11;:19;14657:117;;;14733:4;14739:11;14752:5;14708:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;14657:117;14929:5;14915:11;:19;14897:9;:15;14907:4;14897:15;;;;;;;;;;;;;;;:37;;;;14590:371;14409:552;14991:1;14977:16;;:2;:16;;;14973:435;;15159:5;15143:12;;:21;;;;;;;;;;;14973:435;;;15376:5;15359:9;:13;15369:2;15359:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;14973:435;15440:2;15425:25;;15434:4;15425:25;;;15444:5;15425:25;;;;;;:::i;:::-;;;;;;;;14323:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6563:77;6560:1;6553:88;6660:4;6657:1;6650:15;6684:4;6681:1;6674:15;6701:191;6741:3;6760:20;6778:1;6760:20;:::i;:::-;6755:25;;6794:20;6812:1;6794:20;:::i;:::-;6789:25;;6837:1;6834;6830:9;6823:16;;6858:3;6855:1;6852:10;6849:36;;;6865:18;;:::i;:::-;6849:36;6701:191;;;;:::o;6898:169::-;7038:21;7034:1;7026:6;7022:14;7015:45;6898:169;:::o;7073:366::-;7215:3;7236:67;7300:2;7295:3;7236:67;:::i;:::-;7229:74;;7312:93;7401:3;7312:93;:::i;:::-;7430:2;7425:3;7421:12;7414:19;;7073:366;;;:::o;7445:419::-;7611:4;7649:2;7638:9;7634:18;7626:26;;7698:9;7692:4;7688:20;7684:1;7673:9;7669:17;7662:47;7726:131;7852:4;7726:131;:::i;:::-;7718:139;;7445:419;;;:::o;7870:102::-;7912:8;7959:5;7956:1;7952:13;7931:34;;7870:102;;;:::o;7978:848::-;8039:5;8046:4;8070:6;8061:15;;8094:5;8085:14;;8108:712;8129:1;8119:8;8116:15;8108:712;;;8224:4;8219:3;8215:14;8209:4;8206:24;8203:50;;;8233:18;;:::i;:::-;8203:50;8283:1;8273:8;8269:16;8266:451;;;8698:4;8691:5;8687:16;8678:25;;8266:451;8748:4;8742;8738:15;8730:23;;8778:32;8801:8;8778:32;:::i;:::-;8766:44;;8108:712;;;7978:848;;;;;;;:::o;8832:1073::-;8886:5;9077:8;9067:40;;9098:1;9089:10;;9100:5;;9067:40;9126:4;9116:36;;9143:1;9134:10;;9145:5;;9116:36;9212:4;9260:1;9255:27;;;;9296:1;9291:191;;;;9205:277;;9255:27;9273:1;9264:10;;9275:5;;;9291:191;9336:3;9326:8;9323:17;9320:43;;;9343:18;;:::i;:::-;9320:43;9392:8;9389:1;9385:16;9376:25;;9427:3;9420:5;9417:14;9414:40;;;9434:18;;:::i;:::-;9414:40;9467:5;;;9205:277;;9591:2;9581:8;9578:16;9572:3;9566:4;9563:13;9559:36;9541:2;9531:8;9528:16;9523:2;9517:4;9514:12;9510:35;9494:111;9491:246;;;9647:8;9641:4;9637:19;9628:28;;9682:3;9675:5;9672:14;9669:40;;;9689:18;;:::i;:::-;9669:40;9722:5;;9491:246;9762:42;9800:3;9790:8;9784:4;9781:1;9762:42;:::i;:::-;9747:57;;;;9836:4;9831:3;9827:14;9820:5;9817:25;9814:51;;;9845:18;;:::i;:::-;9814:51;9894:4;9887:5;9883:16;9874:25;;8832:1073;;;;;;:::o;9911:281::-;9969:5;9993:23;10011:4;9993:23;:::i;:::-;9985:31;;10037:25;10053:8;10037:25;:::i;:::-;10025:37;;10081:104;10118:66;10108:8;10102:4;10081:104;:::i;:::-;10072:113;;9911:281;;;;:::o;10198:410::-;10238:7;10261:20;10279:1;10261:20;:::i;:::-;10256:25;;10295:20;10313:1;10295:20;:::i;:::-;10290:25;;10350:1;10347;10343:9;10372:30;10390:11;10372:30;:::i;:::-;10361:41;;10551:1;10542:7;10538:15;10535:1;10532:22;10512:1;10505:9;10485:83;10462:139;;10581:18;;:::i;:::-;10462:139;10246:362;10198:410;;;;:::o;10614:221::-;10754:34;10750:1;10742:6;10738:14;10731:58;10823:4;10818:2;10810:6;10806:15;10799:29;10614:221;:::o;10841:366::-;10983:3;11004:67;11068:2;11063:3;11004:67;:::i;:::-;10997:74;;11080:93;11169:3;11080:93;:::i;:::-;11198:2;11193:3;11189:12;11182:19;;10841:366;;;:::o;11213:419::-;11379:4;11417:2;11406:9;11402:18;11394:26;;11466:9;11460:4;11456:20;11452:1;11441:9;11437:17;11430:47;11494:131;11620:4;11494:131;:::i;:::-;11486:139;;11213:419;;;:::o;11638:118::-;11725:24;11743:5;11725:24;:::i;:::-;11720:3;11713:37;11638:118;;:::o;11762:442::-;11911:4;11949:2;11938:9;11934:18;11926:26;;11962:71;12030:1;12019:9;12015:17;12006:6;11962:71;:::i;:::-;12043:72;12111:2;12100:9;12096:18;12087:6;12043:72;:::i;:::-;12125;12193:2;12182:9;12178:18;12169:6;12125:72;:::i;:::-;11762:442;;;;;;:::o;12210:222::-;12303:4;12341:2;12330:9;12326:18;12318:26;;12354:71;12422:1;12411:9;12407:17;12398:6;12354:71;:::i;:::-;12210:222;;;;:::o
Swarm Source
ipfs://875d9cbb8ab46339738dc2afc53872d06112da026ca15d0650f0f83f5e2e1e1d
[ 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.