Polygon Sponsored slots available. Book your slot here!
ERC-20
Gaming
Overview
Max Total Supply
42,000,000 DMA
Holders
5,746 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DMAToken
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./interface/IProtocol.sol"; // File: /contracts/DMAToken.sol // @title DMAToken - Dragoma Platform Token ERC20 implementation // @notice Simple implementation of a {ERC20} token to be used as // Dragoma (DMA) contract DMAToken is ERC20 { uint256 Percent = 100; uint256 Ratio = 3; uint256 supply = 42000000 * 10 ** decimals(); address protocolContract; /** * @dev Allocation to each channel * team 2% share * airdrop 1% share * operation 7% share * protocol 90% share */ constructor(address team, address airdrop, address operation, address protocol) ERC20("Dragoma", "DMA") { _mint(team, supply * 2 / 100); _mint(airdrop, supply * 1 / 100); _mint(operation, supply * 7 / 100); _mint(protocol, supply * 90 / 100); protocolContract = protocol; } /** * @dev See {ERC20-transfer}. * has 3% commission * If you meet the criteria, you will be reduced * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public override returns (bool) { require(balanceOf(msg.sender) >= IProtocol(protocolContract).getAirdropPortion(msg.sender) + amount, "amount error"); if(IProtocol(protocolContract).inWhiteList(msg.sender)){ super.transfer(to, amount); }else{ uint256 fee = amount * Ratio / Percent; super.transfer(protocolContract, fee); super.transfer(to, amount - fee); } return true; } /** * @dev See {ERC20-transferFrom}. * has 3% commission * If you meet the criteria, you will be reduced * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transferFrom( address from, address to, uint256 amount ) public override returns (bool) { require(balanceOf(from) >= IProtocol(protocolContract).getAirdropPortion(from) + amount, "amount error"); _spendAllowance(from, msg.sender, amount); if(IProtocol(protocolContract).inWhiteList(from)){ super._transfer(from, to, amount); }else{ uint256 feeAmount = amount * Ratio / Percent; super._transfer(from, protocolContract, feeAmount); super._transfer(from, to, amount - feeAmount); } return true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IProtocol { function inWhiteList(address _account) external view returns(bool); function getAirdropPortion(address _account) external view returns(uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma 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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"team","type":"address"},{"internalType":"address","name":"airdrop","type":"address"},{"internalType":"address","name":"operation","type":"address"},{"internalType":"address","name":"protocol","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052606460055560036006556200001e6200021d60201b60201c565b600a6200002c9190620005f2565b630280de806200003d919062000643565b6007553480156200004d57600080fd5b50604051620021ec380380620021ec83398181016040528101906200007391906200070e565b6040518060400160405280600781526020017f447261676f6d61000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444d4100000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f7929190620003a8565b50806004908051906020019062000110929190620003a8565b5050506200014384606460026007546200012b919062000643565b620001379190620007af565b6200022660201b60201c565b6200017383606460016007546200015b919062000643565b620001679190620007af565b6200022660201b60201c565b620001a2826064600780546200018a919062000643565b620001969190620007af565b6200022660201b60201c565b620001d2816064605a600754620001ba919062000643565b620001c69190620007af565b6200022660201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000959565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000298576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028f9062000848565b60405180910390fd5b620002ac600083836200039e60201b60201c565b8060026000828254620002c091906200086a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031791906200086a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037e9190620008d8565b60405180910390a36200039a60008383620003a360201b60201c565b5050565b505050565b505050565b828054620003b69062000924565b90600052602060002090601f016020900481019282620003da576000855562000426565b82601f10620003f557805160ff191683800117855562000426565b8280016001018555821562000426579182015b828111156200042557825182559160200191906001019062000408565b5b50905062000435919062000439565b5090565b5b80821115620004545760008160009055506001016200043a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004e657808604811115620004be57620004bd62000458565b5b6001851615620004ce5780820291505b8081029050620004de8562000487565b94506200049e565b94509492505050565b600082620005015760019050620005d4565b81620005115760009050620005d4565b81600181146200052a576002811462000535576200056b565b6001915050620005d4565b60ff8411156200054a576200054962000458565b5b8360020a91508482111562000564576200056362000458565b5b50620005d4565b5060208310610133831016604e8410600b8410161715620005a55782820a9050838111156200059f576200059e62000458565b5b620005d4565b620005b4848484600162000494565b92509050818404811115620005ce57620005cd62000458565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005ff82620005db565b91506200060c83620005e5565b92506200063b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004ef565b905092915050565b60006200065082620005db565b91506200065d83620005db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000699576200069862000458565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006d682620006a9565b9050919050565b620006e881620006c9565b8114620006f457600080fd5b50565b6000815190506200070881620006dd565b92915050565b600080600080608085870312156200072b576200072a620006a4565b5b60006200073b87828801620006f7565b94505060206200074e87828801620006f7565b93505060406200076187828801620006f7565b92505060606200077487828801620006f7565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620007bc82620005db565b9150620007c983620005db565b925082620007dc57620007db62000780565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000830601f83620007e7565b91506200083d82620007f8565b602082019050919050565b60006020820190508181036000830152620008638162000821565b9050919050565b60006200087782620005db565b91506200088483620005db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008bc57620008bb62000458565b5b828201905092915050565b620008d281620005db565b82525050565b6000602082019050620008ef6000830184620008c7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093d57607f821691505b602082108103620009535762000952620008f5565b5b50919050565b61188380620009696000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610f1f565b60405180910390f35b6100e660048036038101906100e19190610fda565b610308565b6040516100f39190611035565b60405180910390f35b61010461032b565b604051610111919061105f565b60405180910390f35b610134600480360381019061012f919061107a565b610335565b6040516101419190611035565b60405180910390f35b610152610553565b60405161015f91906110e9565b60405180910390f35b610182600480360381019061017d9190610fda565b61055c565b60405161018f9190611035565b60405180910390f35b6101b260048036038101906101ad9190611104565b610593565b6040516101bf919061105f565b60405180910390f35b6101d06105db565b6040516101dd9190610f1f565b60405180910390f35b61020060048036038101906101fb9190610fda565b61066d565b60405161020d9190611035565b60405180910390f35b610230600480360381019061022b9190610fda565b6106e4565b60405161023d9190611035565b60405180910390f35b610260600480360381019061025b9190611131565b6108f6565b60405161026d919061105f565b60405180910390f35b606060038054610285906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906111a0565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361097d565b9050610320818585610985565b600191505092915050565b6000600254905090565b600081600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afda0413866040518263ffffffff1660e01b815260040161039391906111e0565b602060405180830381865afa1580156103b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d49190611210565b6103de919061126c565b6103e785610593565b1015610428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041f9061130e565b60405180910390fd5b610433843384610b4e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369e0e346856040518263ffffffff1660e01b815260040161048e91906111e0565b602060405180830381865afa1580156104ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104cf919061135a565b156104e4576104df848484610bda565b610548565b6000600554600654846104f79190611387565b6105019190611410565b905061053085600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610bda565b610546858583866105419190611441565b610bda565b505b600190509392505050565b60006012905090565b60008061056761097d565b905061058881858561057985896108f6565b610583919061126c565b610985565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105ea906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610616906111a0565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b60008061067861097d565b9050600061068682866108f6565b9050838110156106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906114e7565b60405180910390fd5b6106d88286868403610985565b60019250505092915050565b600081600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afda0413336040518263ffffffff1660e01b815260040161074291906111e0565b602060405180830381865afa15801561075f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107839190611210565b61078d919061126c565b61079633610593565b10156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce9061130e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369e0e346336040518263ffffffff1660e01b815260040161083291906111e0565b602060405180830381865afa15801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061135a565b15610888576108828383610e59565b506108ec565b60006005546006548461089b9190611387565b6108a59190611410565b90506108d3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610e59565b506108e98482856108e49190611441565b610e59565b50505b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90611579565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a9061160b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b41919061105f565b60405180910390a3505050565b6000610b5a84846108f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611677565b60405180910390fd5b610bd38484848403610985565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061179b565b60405180910390fd5b610cc3838383610e7c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061182d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc919061126c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e40919061105f565b60405180910390a3610e53848484610e81565b50505050565b600080610e6461097d565b9050610e71818585610bda565b600191505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ec0578082015181840152602081019050610ea5565b83811115610ecf576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ef182610e86565b610efb8185610e91565b9350610f0b818560208601610ea2565b610f1481610ed5565b840191505092915050565b60006020820190508181036000830152610f398184610ee6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7182610f46565b9050919050565b610f8181610f66565b8114610f8c57600080fd5b50565b600081359050610f9e81610f78565b92915050565b6000819050919050565b610fb781610fa4565b8114610fc257600080fd5b50565b600081359050610fd481610fae565b92915050565b60008060408385031215610ff157610ff0610f41565b5b6000610fff85828601610f8f565b925050602061101085828601610fc5565b9150509250929050565b60008115159050919050565b61102f8161101a565b82525050565b600060208201905061104a6000830184611026565b92915050565b61105981610fa4565b82525050565b60006020820190506110746000830184611050565b92915050565b60008060006060848603121561109357611092610f41565b5b60006110a186828701610f8f565b93505060206110b286828701610f8f565b92505060406110c386828701610fc5565b9150509250925092565b600060ff82169050919050565b6110e3816110cd565b82525050565b60006020820190506110fe60008301846110da565b92915050565b60006020828403121561111a57611119610f41565b5b600061112884828501610f8f565b91505092915050565b6000806040838503121561114857611147610f41565b5b600061115685828601610f8f565b925050602061116785828601610f8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b6111da81610f66565b82525050565b60006020820190506111f560008301846111d1565b92915050565b60008151905061120a81610fae565b92915050565b60006020828403121561122657611225610f41565b5b6000611234848285016111fb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061127782610fa4565b915061128283610fa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b7576112b661123d565b5b828201905092915050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b60006112f8600c83610e91565b9150611303826112c2565b602082019050919050565b60006020820190508181036000830152611327816112eb565b9050919050565b6113378161101a565b811461134257600080fd5b50565b6000815190506113548161132e565b92915050565b6000602082840312156113705761136f610f41565b5b600061137e84828501611345565b91505092915050565b600061139282610fa4565b915061139d83610fa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113d6576113d561123d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061141b82610fa4565b915061142683610fa4565b925082611436576114356113e1565b5b828204905092915050565b600061144c82610fa4565b915061145783610fa4565b92508282101561146a5761146961123d565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d1602583610e91565b91506114dc82611475565b604082019050919050565b60006020820190508181036000830152611500816114c4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611563602483610e91565b915061156e82611507565b604082019050919050565b6000602082019050818103600083015261159281611556565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f5602283610e91565b915061160082611599565b604082019050919050565b60006020820190508181036000830152611624816115e8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611661601d83610e91565b915061166c8261162b565b602082019050919050565b6000602082019050818103600083015261169081611654565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f3602583610e91565b91506116fe82611697565b604082019050919050565b60006020820190508181036000830152611722816116e6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611785602383610e91565b915061179082611729565b604082019050919050565b600060208201905081810360008301526117b481611778565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611817602683610e91565b9150611822826117bb565b604082019050919050565b600060208201905081810360008301526118468161180a565b905091905056fea2646970667358221220c965d72d8b5ae25a904c787d5afb45d5281f02fdcd072e24470c65a5b8ae2e9164736f6c634300080d003300000000000000000000000082c91bc2d0096c09522e19714c444a94132974e9000000000000000000000000d7607b155e4f14a3a3cc9a980eaeaf9d37718ff60000000000000000000000004c0ce1c7d8f51fd2878c01806385f0c647db595d000000000000000000000000cec6540bf275328d962ea02e5e0fdff504cb3929
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610f1f565b60405180910390f35b6100e660048036038101906100e19190610fda565b610308565b6040516100f39190611035565b60405180910390f35b61010461032b565b604051610111919061105f565b60405180910390f35b610134600480360381019061012f919061107a565b610335565b6040516101419190611035565b60405180910390f35b610152610553565b60405161015f91906110e9565b60405180910390f35b610182600480360381019061017d9190610fda565b61055c565b60405161018f9190611035565b60405180910390f35b6101b260048036038101906101ad9190611104565b610593565b6040516101bf919061105f565b60405180910390f35b6101d06105db565b6040516101dd9190610f1f565b60405180910390f35b61020060048036038101906101fb9190610fda565b61066d565b60405161020d9190611035565b60405180910390f35b610230600480360381019061022b9190610fda565b6106e4565b60405161023d9190611035565b60405180910390f35b610260600480360381019061025b9190611131565b6108f6565b60405161026d919061105f565b60405180910390f35b606060038054610285906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906111a0565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361097d565b9050610320818585610985565b600191505092915050565b6000600254905090565b600081600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afda0413866040518263ffffffff1660e01b815260040161039391906111e0565b602060405180830381865afa1580156103b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d49190611210565b6103de919061126c565b6103e785610593565b1015610428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041f9061130e565b60405180910390fd5b610433843384610b4e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369e0e346856040518263ffffffff1660e01b815260040161048e91906111e0565b602060405180830381865afa1580156104ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104cf919061135a565b156104e4576104df848484610bda565b610548565b6000600554600654846104f79190611387565b6105019190611410565b905061053085600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610bda565b610546858583866105419190611441565b610bda565b505b600190509392505050565b60006012905090565b60008061056761097d565b905061058881858561057985896108f6565b610583919061126c565b610985565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105ea906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610616906111a0565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b60008061067861097d565b9050600061068682866108f6565b9050838110156106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906114e7565b60405180910390fd5b6106d88286868403610985565b60019250505092915050565b600081600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afda0413336040518263ffffffff1660e01b815260040161074291906111e0565b602060405180830381865afa15801561075f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107839190611210565b61078d919061126c565b61079633610593565b10156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce9061130e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369e0e346336040518263ffffffff1660e01b815260040161083291906111e0565b602060405180830381865afa15801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061135a565b15610888576108828383610e59565b506108ec565b60006005546006548461089b9190611387565b6108a59190611410565b90506108d3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610e59565b506108e98482856108e49190611441565b610e59565b50505b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90611579565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a9061160b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b41919061105f565b60405180910390a3505050565b6000610b5a84846108f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611677565b60405180910390fd5b610bd38484848403610985565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061179b565b60405180910390fd5b610cc3838383610e7c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061182d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc919061126c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e40919061105f565b60405180910390a3610e53848484610e81565b50505050565b600080610e6461097d565b9050610e71818585610bda565b600191505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ec0578082015181840152602081019050610ea5565b83811115610ecf576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ef182610e86565b610efb8185610e91565b9350610f0b818560208601610ea2565b610f1481610ed5565b840191505092915050565b60006020820190508181036000830152610f398184610ee6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7182610f46565b9050919050565b610f8181610f66565b8114610f8c57600080fd5b50565b600081359050610f9e81610f78565b92915050565b6000819050919050565b610fb781610fa4565b8114610fc257600080fd5b50565b600081359050610fd481610fae565b92915050565b60008060408385031215610ff157610ff0610f41565b5b6000610fff85828601610f8f565b925050602061101085828601610fc5565b9150509250929050565b60008115159050919050565b61102f8161101a565b82525050565b600060208201905061104a6000830184611026565b92915050565b61105981610fa4565b82525050565b60006020820190506110746000830184611050565b92915050565b60008060006060848603121561109357611092610f41565b5b60006110a186828701610f8f565b93505060206110b286828701610f8f565b92505060406110c386828701610fc5565b9150509250925092565b600060ff82169050919050565b6110e3816110cd565b82525050565b60006020820190506110fe60008301846110da565b92915050565b60006020828403121561111a57611119610f41565b5b600061112884828501610f8f565b91505092915050565b6000806040838503121561114857611147610f41565b5b600061115685828601610f8f565b925050602061116785828601610f8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b6111da81610f66565b82525050565b60006020820190506111f560008301846111d1565b92915050565b60008151905061120a81610fae565b92915050565b60006020828403121561122657611225610f41565b5b6000611234848285016111fb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061127782610fa4565b915061128283610fa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b7576112b661123d565b5b828201905092915050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b60006112f8600c83610e91565b9150611303826112c2565b602082019050919050565b60006020820190508181036000830152611327816112eb565b9050919050565b6113378161101a565b811461134257600080fd5b50565b6000815190506113548161132e565b92915050565b6000602082840312156113705761136f610f41565b5b600061137e84828501611345565b91505092915050565b600061139282610fa4565b915061139d83610fa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113d6576113d561123d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061141b82610fa4565b915061142683610fa4565b925082611436576114356113e1565b5b828204905092915050565b600061144c82610fa4565b915061145783610fa4565b92508282101561146a5761146961123d565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d1602583610e91565b91506114dc82611475565b604082019050919050565b60006020820190508181036000830152611500816114c4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611563602483610e91565b915061156e82611507565b604082019050919050565b6000602082019050818103600083015261159281611556565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f5602283610e91565b915061160082611599565b604082019050919050565b60006020820190508181036000830152611624816115e8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611661601d83610e91565b915061166c8261162b565b602082019050919050565b6000602082019050818103600083015261169081611654565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f3602583610e91565b91506116fe82611697565b604082019050919050565b60006020820190508181036000830152611722816116e6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611785602383610e91565b915061179082611729565b604082019050919050565b600060208201905081810360008301526117b481611778565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611817602683610e91565b9150611822826117bb565b604082019050919050565b600060208201905081810360008301526118468161180a565b905091905056fea2646970667358221220c965d72d8b5ae25a904c787d5afb45d5281f02fdcd072e24470c65a5b8ae2e9164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000082c91bc2d0096c09522e19714c444a94132974e9000000000000000000000000d7607b155e4f14a3a3cc9a980eaeaf9d37718ff60000000000000000000000004c0ce1c7d8f51fd2878c01806385f0c647db595d000000000000000000000000cec6540bf275328d962ea02e5e0fdff504cb3929
-----Decoded View---------------
Arg [0] : team (address): 0x82c91BC2d0096c09522E19714c444A94132974e9
Arg [1] : airdrop (address): 0xd7607b155e4F14a3a3Cc9A980eaeaf9d37718fF6
Arg [2] : operation (address): 0x4c0CE1c7d8f51fd2878c01806385F0c647DB595D
Arg [3] : protocol (address): 0xCec6540bF275328d962Ea02E5E0FdFf504cb3929
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000082c91bc2d0096c09522e19714c444a94132974e9
Arg [1] : 000000000000000000000000d7607b155e4f14a3a3cc9a980eaeaf9d37718ff6
Arg [2] : 0000000000000000000000004c0ce1c7d8f51fd2878c01806385f0c647db595d
Arg [3] : 000000000000000000000000cec6540bf275328d962ea02e5e0fdff504cb3929
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.