Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,847 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23954770 | 11 days ago | IN | 0 ETH | 0.00009489 | ||||
| Transfer | 23896640 | 19 days ago | IN | 0 ETH | 0.00000194 | ||||
| Approve | 23841277 | 27 days ago | IN | 0 ETH | 0.00011337 | ||||
| Approve | 23609950 | 59 days ago | IN | 0 ETH | 0.00000591 | ||||
| Approve | 23547683 | 68 days ago | IN | 0 ETH | 0.00004817 | ||||
| Approve | 23518021 | 72 days ago | IN | 0 ETH | 0.00005295 | ||||
| Approve | 23496664 | 75 days ago | IN | 0 ETH | 0.00001379 | ||||
| Transfer | 23496655 | 75 days ago | IN | 0 ETH | 0.00006501 | ||||
| Approve | 23494970 | 75 days ago | IN | 0 ETH | 0.00001084 | ||||
| Approve | 23484361 | 77 days ago | IN | 0 ETH | 0.00009713 | ||||
| Approve | 23475460 | 78 days ago | IN | 0 ETH | 0.00010998 | ||||
| Approve | 23475391 | 78 days ago | IN | 0 ETH | 0.00013229 | ||||
| Approve | 23475260 | 78 days ago | IN | 0 ETH | 0.00013847 | ||||
| Approve | 23385136 | 90 days ago | IN | 0 ETH | 0.00004042 | ||||
| Approve | 23368420 | 93 days ago | IN | 0 ETH | 0.00007283 | ||||
| Approve | 23325954 | 99 days ago | IN | 0 ETH | 0.00009572 | ||||
| Approve | 23288027 | 104 days ago | IN | 0 ETH | 0.00000845 | ||||
| Approve | 23273371 | 106 days ago | IN | 0 ETH | 0.00000738 | ||||
| Approve | 23223661 | 113 days ago | IN | 0 ETH | 0.00001178 | ||||
| Approve | 23166077 | 121 days ago | IN | 0 ETH | 0.00014129 | ||||
| Approve | 23134347 | 126 days ago | IN | 0 ETH | 0.00016049 | ||||
| Approve | 23131807 | 126 days ago | IN | 0 ETH | 0.00015301 | ||||
| Approve | 23103101 | 130 days ago | IN | 0 ETH | 0.00005071 | ||||
| Approve | 23103100 | 130 days ago | IN | 0 ETH | 0.0000889 | ||||
| Approve | 23097145 | 131 days ago | IN | 0 ETH | 0.00019976 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WrappedZilToken
Compiler Version
v0.8.9+commit.e5eed63a
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.9;
import "../libs/token/ERC20/ERC20.sol";
import "../libs/token/ERC20/ERC20Detailed.sol";
import "../libs/math/SafeMath.sol";
/**
* @title WrappedZilToken - Ethereum-bridged Zilliqa Token for Ethereum.
*
* @dev Standard ERC20 that mints from the PoS lock
* contract. Does not burn after transferring to the lock contract
* as the lock contract checks for balance after deposits.
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
*/
contract WrappedZilToken is ERC20, ERC20Detailed {
using SafeMath for uint256;
address public lockProxyAddress;
constructor(address _lockProxyAddress) ERC20Detailed("Ethereum-bridged Zilliqa Token", "eZIL", 12) public {
lockProxyAddress = _lockProxyAddress;
}
function _transfer(address sender, address recipient, uint256 amount) internal override {
if (sender == lockProxyAddress) {
require(recipient != lockProxyAddress, "WrappedZilToken: lockProxy should not call transfer to self");
// lockProxy is the primary minter - so mint whenever required.
uint256 balance = balanceOf(lockProxyAddress);
if (balance < amount) {
_mint(lockProxyAddress, amount.sub(balance));
}
}
super._transfer(sender, recipient, amount);
}
function circulatingSupply() external view returns (uint256 amount) {
return totalSupply().sub(balanceOf(lockProxyAddress));
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "./IERC20.sol";
import "../../math/SafeMath.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 `ERC20Mintable`.
*
* *For a detailed writeup see our guide [How to implement supply
* mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an `Approval` event is emitted on calls to `transferFrom`.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
* functions have been added to mitigate the well-known issues around setting
* allowances. See `IERC20.approve`.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See `IERC20.totalSupply`.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See `IERC20.balanceOf`.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See `IERC20.transfer`.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See `IERC20.allowance`.
*/
function allowance(address owner, address spender) public virtual override view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See `IERC20.approve`.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual override returns (bool) {
_approve(msg.sender, 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`;
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to `approve` that can be used as a mitigation for
* problems described in `IERC20.approve`.
*
* Emits an `Approval` event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(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) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to `transfer`, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a `Transfer` event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a `Transfer` event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destoys `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 value) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is 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 {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See `_burn` and `_approve`.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view 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.
*
* > Note that 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 returns (uint8) {
return _decimals;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_lockProxyAddress","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":"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":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"amount","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":"lockProxyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ad938038062001ad9833981810160405281019062000037919062000257565b6040518060400160405280601e81526020017f457468657265756d2d62726964676564205a696c6c69716120546f6b656e00008152506040518060400160405280600481526020017f655a494c00000000000000000000000000000000000000000000000000000000815250600c8260039080519060200190620000bd9291906200013d565b508160049080519060200190620000d69291906200013d565b5080600560006101000a81548160ff021916908360ff16021790555050505080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620002ee565b8280546200014b90620002b8565b90600052602060002090601f0160209004810192826200016f5760008555620001bb565b82601f106200018a57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001ba5782518255916020019190600101906200019d565b5b509050620001ca9190620001ce565b5090565b5b80821115620001e9576000816000905550600101620001cf565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200021f82620001f2565b9050919050565b620002318162000212565b81146200023d57600080fd5b50565b600081519050620002518162000226565b92915050565b60006020828403121562000270576200026f620001ed565b5b6000620002808482850162000240565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d157607f821691505b60208210811415620002e857620002e762000289565b5b50919050565b6117db80620002fe6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634ad43eda1161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b80634ad43eda146101be57806370a08231146101dc5780639358928b1461020c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d8565b6040516100e9919061105d565b60405180910390f35b61010c60048036038101906101079190611118565b61036a565b6040516101199190611173565b60405180910390f35b61012a610381565b604051610137919061119d565b60405180910390f35b61015a600480360381019061015591906111b8565b61038b565b6040516101679190611173565b60405180910390f35b61017861043c565b6040516101859190611227565b60405180910390f35b6101a860048036038101906101a39190611118565b610453565b6040516101b59190611173565b60405180910390f35b6101c66104f8565b6040516101d39190611251565b60405180910390f35b6101f660048036038101906101f1919061126c565b61051e565b604051610203919061119d565b60405180910390f35b610214610566565b604051610221919061119d565b60405180910390f35b6102326105b1565b60405161023f919061105d565b60405180910390f35b610262600480360381019061025d9190611118565b610643565b60405161026f9190611173565b60405180910390f35b610292600480360381019061028d9190611118565b6106e8565b60405161029f9190611173565b60405180910390f35b6102c260048036038101906102bd9190611299565b6106ff565b6040516102cf919061119d565b60405180910390f35b6060600380546102e790611308565b80601f016020809104026020016040519081016040528092919081815260200182805461031390611308565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b6000610377338484610786565b6001905092915050565b6000600254905090565b6000610398848484610951565b610431843361042c85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610786565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006104ee33846104e985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b610786565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105ac610596600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661051e565b61059e610381565b610ac090919063ffffffff16565b905090565b6060600480546105c090611308565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90611308565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b60006106de33846106d985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610786565b6001905092915050565b60006106f5338484610951565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906113ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d9061143e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610944919061119d565b60405180910390a3505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab057600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906114d0565b60405180910390fd5b6000610a65600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661051e565b905081811015610aae57610aad600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610aa88385610ac090919063ffffffff16565b610b68565b5b505b610abb838383610cf0565b505050565b6000610b0283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f60565b905092915050565b6000808284610b19919061151f565b905083811015610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906115c1565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf9061162d565b60405180910390fd5b610bed81600254610b0a90919063ffffffff16565b600281905550610c44816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce4919061119d565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906116bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790611751565b60405180910390fd5b610e21816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eb4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f53919061119d565b60405180910390a3505050565b6000838311158290610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f919061105d565b60405180910390fd5b5060008385610fb79190611771565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ffe578082015181840152602081019050610fe3565b8381111561100d576000848401525b50505050565b6000601f19601f8301169050919050565b600061102f82610fc4565b6110398185610fcf565b9350611049818560208601610fe0565b61105281611013565b840191505092915050565b600060208201905081810360008301526110778184611024565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110af82611084565b9050919050565b6110bf816110a4565b81146110ca57600080fd5b50565b6000813590506110dc816110b6565b92915050565b6000819050919050565b6110f5816110e2565b811461110057600080fd5b50565b600081359050611112816110ec565b92915050565b6000806040838503121561112f5761112e61107f565b5b600061113d858286016110cd565b925050602061114e85828601611103565b9150509250929050565b60008115159050919050565b61116d81611158565b82525050565b60006020820190506111886000830184611164565b92915050565b611197816110e2565b82525050565b60006020820190506111b2600083018461118e565b92915050565b6000806000606084860312156111d1576111d061107f565b5b60006111df868287016110cd565b93505060206111f0868287016110cd565b925050604061120186828701611103565b9150509250925092565b600060ff82169050919050565b6112218161120b565b82525050565b600060208201905061123c6000830184611218565b92915050565b61124b816110a4565b82525050565b60006020820190506112666000830184611242565b92915050565b6000602082840312156112825761128161107f565b5b6000611290848285016110cd565b91505092915050565b600080604083850312156112b0576112af61107f565b5b60006112be858286016110cd565b92505060206112cf858286016110cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061132057607f821691505b60208210811415611334576113336112d9565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611396602483610fcf565b91506113a18261133a565b604082019050919050565b600060208201905081810360008301526113c581611389565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611428602283610fcf565b9150611433826113cc565b604082019050919050565b600060208201905081810360008301526114578161141b565b9050919050565b7f577261707065645a696c546f6b656e3a206c6f636b50726f78792073686f756c60008201527f64206e6f742063616c6c207472616e7366657220746f2073656c660000000000602082015250565b60006114ba603b83610fcf565b91506114c58261145e565b604082019050919050565b600060208201905081810360008301526114e9816114ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061152a826110e2565b9150611535836110e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561156a576115696114f0565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006115ab601b83610fcf565b91506115b682611575565b602082019050919050565b600060208201905081810360008301526115da8161159e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611617601f83610fcf565b9150611622826115e1565b602082019050919050565b600060208201905081810360008301526116468161160a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116a9602583610fcf565b91506116b48261164d565b604082019050919050565b600060208201905081810360008301526116d88161169c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061173b602383610fcf565b9150611746826116df565b604082019050919050565b6000602082019050818103600083015261176a8161172e565b9050919050565b600061177c826110e2565b9150611787836110e2565b92508282101561179a576117996114f0565b5b82820390509291505056fea2646970667358221220cd53410c8c9bab7a56a95009f2ffc5aace56565131d55f7a69727d91193a69d364736f6c634300080900330000000000000000000000009a016ce184a22dbf6c17daa59eb7d3140dbd1c54
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634ad43eda1161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b80634ad43eda146101be57806370a08231146101dc5780639358928b1461020c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d8565b6040516100e9919061105d565b60405180910390f35b61010c60048036038101906101079190611118565b61036a565b6040516101199190611173565b60405180910390f35b61012a610381565b604051610137919061119d565b60405180910390f35b61015a600480360381019061015591906111b8565b61038b565b6040516101679190611173565b60405180910390f35b61017861043c565b6040516101859190611227565b60405180910390f35b6101a860048036038101906101a39190611118565b610453565b6040516101b59190611173565b60405180910390f35b6101c66104f8565b6040516101d39190611251565b60405180910390f35b6101f660048036038101906101f1919061126c565b61051e565b604051610203919061119d565b60405180910390f35b610214610566565b604051610221919061119d565b60405180910390f35b6102326105b1565b60405161023f919061105d565b60405180910390f35b610262600480360381019061025d9190611118565b610643565b60405161026f9190611173565b60405180910390f35b610292600480360381019061028d9190611118565b6106e8565b60405161029f9190611173565b60405180910390f35b6102c260048036038101906102bd9190611299565b6106ff565b6040516102cf919061119d565b60405180910390f35b6060600380546102e790611308565b80601f016020809104026020016040519081016040528092919081815260200182805461031390611308565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b6000610377338484610786565b6001905092915050565b6000600254905090565b6000610398848484610951565b610431843361042c85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610786565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006104ee33846104e985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b610786565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105ac610596600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661051e565b61059e610381565b610ac090919063ffffffff16565b905090565b6060600480546105c090611308565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90611308565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b60006106de33846106d985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b610786565b6001905092915050565b60006106f5338484610951565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906113ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d9061143e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610944919061119d565b60405180910390a3505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab057600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906114d0565b60405180910390fd5b6000610a65600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661051e565b905081811015610aae57610aad600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610aa88385610ac090919063ffffffff16565b610b68565b5b505b610abb838383610cf0565b505050565b6000610b0283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f60565b905092915050565b6000808284610b19919061151f565b905083811015610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906115c1565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf9061162d565b60405180910390fd5b610bed81600254610b0a90919063ffffffff16565b600281905550610c44816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce4919061119d565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906116bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790611751565b60405180910390fd5b610e21816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ac090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eb4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f53919061119d565b60405180910390a3505050565b6000838311158290610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f919061105d565b60405180910390fd5b5060008385610fb79190611771565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ffe578082015181840152602081019050610fe3565b8381111561100d576000848401525b50505050565b6000601f19601f8301169050919050565b600061102f82610fc4565b6110398185610fcf565b9350611049818560208601610fe0565b61105281611013565b840191505092915050565b600060208201905081810360008301526110778184611024565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110af82611084565b9050919050565b6110bf816110a4565b81146110ca57600080fd5b50565b6000813590506110dc816110b6565b92915050565b6000819050919050565b6110f5816110e2565b811461110057600080fd5b50565b600081359050611112816110ec565b92915050565b6000806040838503121561112f5761112e61107f565b5b600061113d858286016110cd565b925050602061114e85828601611103565b9150509250929050565b60008115159050919050565b61116d81611158565b82525050565b60006020820190506111886000830184611164565b92915050565b611197816110e2565b82525050565b60006020820190506111b2600083018461118e565b92915050565b6000806000606084860312156111d1576111d061107f565b5b60006111df868287016110cd565b93505060206111f0868287016110cd565b925050604061120186828701611103565b9150509250925092565b600060ff82169050919050565b6112218161120b565b82525050565b600060208201905061123c6000830184611218565b92915050565b61124b816110a4565b82525050565b60006020820190506112666000830184611242565b92915050565b6000602082840312156112825761128161107f565b5b6000611290848285016110cd565b91505092915050565b600080604083850312156112b0576112af61107f565b5b60006112be858286016110cd565b92505060206112cf858286016110cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061132057607f821691505b60208210811415611334576113336112d9565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611396602483610fcf565b91506113a18261133a565b604082019050919050565b600060208201905081810360008301526113c581611389565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611428602283610fcf565b9150611433826113cc565b604082019050919050565b600060208201905081810360008301526114578161141b565b9050919050565b7f577261707065645a696c546f6b656e3a206c6f636b50726f78792073686f756c60008201527f64206e6f742063616c6c207472616e7366657220746f2073656c660000000000602082015250565b60006114ba603b83610fcf565b91506114c58261145e565b604082019050919050565b600060208201905081810360008301526114e9816114ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061152a826110e2565b9150611535836110e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561156a576115696114f0565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006115ab601b83610fcf565b91506115b682611575565b602082019050919050565b600060208201905081810360008301526115da8161159e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611617601f83610fcf565b9150611622826115e1565b602082019050919050565b600060208201905081810360008301526116468161160a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116a9602583610fcf565b91506116b48261164d565b604082019050919050565b600060208201905081810360008301526116d88161169c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061173b602383610fcf565b9150611746826116df565b604082019050919050565b6000602082019050818103600083015261176a8161172e565b9050919050565b600061177c826110e2565b9150611787836110e2565b92508282101561179a576117996114f0565b5b82820390509291505056fea2646970667358221220cd53410c8c9bab7a56a95009f2ffc5aace56565131d55f7a69727d91193a69d364736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009a016ce184a22dbf6c17daa59eb7d3140dbd1c54
-----Decoded View---------------
Arg [0] : _lockProxyAddress (address): 0x9a016Ce184a22DbF6c17daA59Eb7d3140DBd1c54
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009a016ce184a22dbf6c17daa59eb7d3140dbd1c54
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.004652 | 154,972.1967 | $720.88 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.