Source Code
Overview
ETH Balance
0 ETH
Multichain Info
N/A
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | Amount | ||
|---|---|---|---|---|---|---|
| 26381172 | 194 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ZenToken
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at sepolia.basescan.org on 2025-05-29 */ // Sources flattened with hardhat v2.22.18 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Total supply cap has been exceeded. */ error ERC20ExceededCap(uint256 increasedSupply, uint256 cap); /** * @dev The supplied cap is not a valid cap. */ error ERC20InvalidCap(uint256 cap); /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { if (cap_ == 0) { revert ERC20InvalidCap(0); } _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_update}. */ function _update(address from, address to, uint256 value) internal virtual override { super._update(from, to, value); if (from == address(0)) { uint256 maxSupply = cap(); uint256 supply = totalSupply(); if (supply > maxSupply) { revert ERC20ExceededCap(supply, maxSupply); } } } } // File contracts/interfaces/IVesting.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; interface IVesting { function beneficiary() external view returns(address); function startVesting() external; } // File contracts/ZenToken.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /// @title ZEN official ERC-20 smart contract /// @notice Minting role is granted in the constructor to the Vault Contracts, responsible for /// restoring EON and Zend balances. contract ZenToken is ERC20Capped { // Simple mapping to track authorized minters mapping(address => bool) public minters; uint256 internal constant TOTAL_ZEN_SUPPLY = 21_000_000; uint256 internal constant TOKEN_SIZE = 10 ** 18; address public immutable horizenFoundationVested; address public immutable horizenDaoVested; uint8 private numOfMinters; uint256 public constant DAO_SUPPLY_PERCENTAGE = 60; uint256 public constant INITIAL_SUPPLY_PERCENTAGE = 25; error AddressParameterCantBeZero(string paramName); error CallerNotMinter(address caller); modifier canMint() { // Checks that the calling account has the minter role if (!minters[msg.sender]) { revert CallerNotMinter(msg.sender); } _; } /// @notice Smart contract constructor /// @param tokenName Name of the token /// @param tokenSymbol Ticker of the token /// @param _eonBackupContract Address of EON Vault contract /// @param _zendBackupContract Address of ZEND Vault contract /// @param _horizenFoundationVested Address who will receive the remaining portion of Zen reserved to the Foundation (with locking period) /// @param _horizenDaoVested Address who will receive the remaining portion of Zen reserved to the DAO (with locking period) constructor( string memory tokenName, string memory tokenSymbol, address _eonBackupContract, address _zendBackupContract, address _horizenFoundationVested, address _horizenDaoVested ) ERC20(tokenName, tokenSymbol) ERC20Capped(TOTAL_ZEN_SUPPLY * TOKEN_SIZE) { if (_eonBackupContract == address(0)) revert AddressParameterCantBeZero("_eonBackupContract"); if (_zendBackupContract == address(0)) revert AddressParameterCantBeZero("_zendBackupContract"); if (_horizenFoundationVested == address(0)) revert AddressParameterCantBeZero("_horizenFoundationVested"); if (_horizenDaoVested == address(0)) revert AddressParameterCantBeZero("_horizenDaoVested"); // Grant the minter role to a specified account minters[_eonBackupContract] = true; minters[_zendBackupContract] = true; numOfMinters = 2; horizenFoundationVested = _horizenFoundationVested; horizenDaoVested = _horizenDaoVested; } function mint(address to, uint256 amount) public canMint { _mint(to, amount); } function notifyMintingDone() public canMint { minters[msg.sender] = false; unchecked { --numOfMinters; } if (numOfMinters == 0) { uint256 remainingSupply = cap() - totalSupply(); //Horizen DAO is eligible of 60% of the remaining supply. The rest is for the Foundation. uint256 daoSupply = (remainingSupply * DAO_SUPPLY_PERCENTAGE) / 100; uint256 foundationSupply = remainingSupply - daoSupply; uint256 daoInitialSupply = (daoSupply * INITIAL_SUPPLY_PERCENTAGE) / 100; uint256 foundationInitialSupply = (foundationSupply * INITIAL_SUPPLY_PERCENTAGE) / 100; _mint( IVesting(horizenFoundationVested).beneficiary(), foundationInitialSupply ); _mint( horizenFoundationVested, foundationSupply - foundationInitialSupply ); _mint( IVesting(horizenDaoVested).beneficiary(), daoInitialSupply ); _mint(horizenDaoVested, daoSupply - daoInitialSupply); IVesting(horizenFoundationVested).startVesting(); IVesting(horizenDaoVested).startVesting(); } } }
Contract ABI
API[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"address","name":"_eonBackupContract","type":"address"},{"internalType":"address","name":"_zendBackupContract","type":"address"},{"internalType":"address","name":"_horizenFoundationVested","type":"address"},{"internalType":"address","name":"_horizenDaoVested","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"paramName","type":"string"}],"name":"AddressParameterCantBeZero","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerNotMinter","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededCap","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20InvalidCap","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DAO_SUPPLY_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"horizenDaoVested","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"horizenFoundationVested","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notifyMintingDone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e060405234801561000f575f5ffd5b5060405161125438038061125483398101604081905261002e916102f5565b610044670de0b6b3a76400006301406f40610399565b868660036100528382610446565b50600461005f8282610446565b505050805f036100895760405163392e1e2760e01b81525f60048201526024015b60405180910390fd5b6080526001600160a01b0384166100d857604051630e02d8f560e31b815260206004820152601260248201527117d95bdb909858dadd5c10dbdb9d1c9858dd60721b6044820152606401610080565b6001600160a01b03831661012f57604051630e02d8f560e31b815260206004820152601360248201527f5f7a656e644261636b7570436f6e7472616374000000000000000000000000006044820152606401610080565b6001600160a01b03821661018657604051630e02d8f560e31b815260206004820152601860248201527f5f686f72697a656e466f756e646174696f6e56657374656400000000000000006044820152606401610080565b6001600160a01b0381166101d157604051630e02d8f560e31b815260206004820152601160248201527017da1bdc9a5e995b91185bd5995cdd1959607a1b6044820152606401610080565b6001600160a01b039384165f90815260056020526040808220805460ff1990811660019081179092559587168352912080548516909117905560068054909316600217909255821660a0521660c052506105009050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261024b575f5ffd5b81516001600160401b0381111561026457610264610228565b604051601f8201601f19908116603f011681016001600160401b038111828210171561029257610292610228565b6040528181528382016020018510156102a9575f5ffd5b5f5b828110156102c7576020818601810151838301820152016102ab565b505f918101602001919091529392505050565b80516001600160a01b03811681146102f0575f5ffd5b919050565b5f5f5f5f5f5f60c0878903121561030a575f5ffd5b86516001600160401b0381111561031f575f5ffd5b61032b89828a0161023c565b602089015190975090506001600160401b03811115610348575f5ffd5b61035489828a0161023c565b955050610363604088016102da565b9350610371606088016102da565b925061037f608088016102da565b915061038d60a088016102da565b90509295509295509295565b80820281158282048414176103bc57634e487b7160e01b5f52601160045260245ffd5b92915050565b600181811c908216806103d657607f821691505b6020821081036103f457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561044157805f5260205f20601f840160051c8101602085101561041f5750805b601f840160051c820191505b8181101561043e575f815560010161042b565b50505b505050565b81516001600160401b0381111561045f5761045f610228565b6104738161046d84546103c2565b846103fa565b6020601f8211600181146104a5575f831561048e5750848201515b5f19600385901b1c1916600184901b17845561043e565b5f84815260208120601f198516915b828110156104d457878501518255602094850194600190920191016104b4565b50848210156104f157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60805160a05160c051610cf26105625f395f818161023e0152818161059d0152818161062601526106bf01525f81816101ff015281816104e10152818161056a015261065101525f81816101810152818161045b015261095e0152610cf25ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c806375252b261161009e5780638a2545161161006e5780638a2545161461023957806395d89b4114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f46eccc4146102b3575f5ffd5b806375252b26146101e25780637986eb0b146101ea5780637c745afb146101f2578063867e3036146101fa575f5ffd5b8063313ce567116100d9578063313ce56714610170578063355274ea1461017f57806340c10f19146101a557806370a08231146101ba575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b6101126102d5565b60405161011f9190610ad6565b60405180910390f35b61013b610136366004610b38565b610365565b604051901515815260200161011f565b6002545b60405190815260200161011f565b61013b61016b366004610b62565b61037e565b6040516012815260200161011f565b7f000000000000000000000000000000000000000000000000000000000000000061014f565b6101b86101b3366004610b38565b6103a1565b005b61014f6101c8366004610ba0565b6001600160a01b03165f9081526020819052604090205490565b61014f603c81565b6101b86103e5565b61014f601981565b6102217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161011f565b6102217f000000000000000000000000000000000000000000000000000000000000000081565b610112610733565b61013b610276366004610b38565b610742565b61014f610289366004610bc2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61013b6102c1366004610ba0565b60056020525f908152604090205460ff1681565b6060600380546102e490610bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461031090610bf9565b801561035b5780601f106103325761010080835404028352916020019161035b565b820191905f5260205f20905b81548152906001019060200180831161033e57829003601f168201915b5050505050905090565b5f3361037281858561074f565b60019150505b92915050565b5f3361038b858285610761565b6103968585856107dd565b506001949350505050565b335f9081526005602052604090205460ff166103d757604051632fdab94f60e11b81523360048201526024015b60405180910390fd5b6103e1828261083a565b5050565b335f9081526005602052604090205460ff1661041657604051632fdab94f60e11b81523360048201526024016103ce565b335f908152600560205260408120805460ff19908116909155600680545f1960ff82811691909101169216821790559003610731575f61045560025490565b61047f907f0000000000000000000000000000000000000000000000000000000000000000610c45565b90505f606461048f603c84610c58565b6104999190610c6f565b90505f6104a68284610c45565b90505f60646104b6601985610c58565b6104c09190610c6f565b90505f60646104d0601985610c58565b6104da9190610c6f565b90506105657f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166338af3eed6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561053b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055f9190610c8e565b8261083a565b6105987f00000000000000000000000000000000000000000000000000000000000000006105938386610c45565b61083a565b6106217f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166338af3eed6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105f7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061061b9190610c8e565b8361083a565b61064f7f00000000000000000000000000000000000000000000000000000000000000006105938487610c45565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663deb36e326040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156106a7575f5ffd5b505af11580156106b9573d5f5f3e3d5ffd5b505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663deb36e326040518163ffffffff1660e01b81526004015f604051808303815f87803b158015610715575f5ffd5b505af1158015610727573d5f5f3e3d5ffd5b5050505050505050505b565b6060600480546102e490610bf9565b5f336103728185856107dd565b61075c838383600161086e565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156107d757818110156107c957604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103ce565b6107d784848484035f61086e565b50505050565b6001600160a01b03831661080657604051634b637e8f60e11b81525f60048201526024016103ce565b6001600160a01b03821661082f5760405163ec442f0560e01b81525f60048201526024016103ce565b61075c838383610940565b6001600160a01b0382166108635760405163ec442f0560e01b81525f60048201526024016103ce565b6103e15f8383610940565b6001600160a01b0384166108975760405163e602df0560e01b81525f60048201526024016103ce565b6001600160a01b0383166108c057604051634a1406b160e11b81525f60048201526024016103ce565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107d757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161093291815260200190565b60405180910390a350505050565b61094b8383836109b0565b6001600160a01b03831661075c576002547f000000000000000000000000000000000000000000000000000000000000000090818111156109a95760405163279e7e1560e21b815260048101829052602481018390526044016103ce565b5050505050565b6001600160a01b0383166109da578060025f8282546109cf9190610ca9565b90915550610a4a9050565b6001600160a01b0383165f9081526020819052604090205481811015610a2c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103ce565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a6657600280548290039055610a84565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ac991815260200190565b60405180910390a3505050565b602081525f82518060208401525f5b81811015610b025760208186018101516040868401015201610ae5565b505f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610b35575f5ffd5b50565b5f5f60408385031215610b49575f5ffd5b8235610b5481610b21565b946020939093013593505050565b5f5f5f60608486031215610b74575f5ffd5b8335610b7f81610b21565b92506020840135610b8f81610b21565b929592945050506040919091013590565b5f60208284031215610bb0575f5ffd5b8135610bbb81610b21565b9392505050565b5f5f60408385031215610bd3575f5ffd5b8235610bde81610b21565b91506020830135610bee81610b21565b809150509250929050565b600181811c90821680610c0d57607f821691505b602082108103610c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561037857610378610c31565b808202811582820484141761037857610378610c31565b5f82610c8957634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610c9e575f5ffd5b8151610bbb81610b21565b8082018082111561037857610378610c3156fea2646970667358221220db3b20861bef87be0d07273f9aaf0cab87e2a74a95141c3d82455a325752ab8964736f6c634300081b003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000006d9ce4d72374fa21ce70065bc274d09055131edf00000000000000000000000099bc641a2df505c750a780fa31c616de2304e5370000000000000000000000001ea81e6baf1d969bf5ace0dbf2a5127752323008000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c33400000000000000000000000000000000000000000000000000000000000000035a5433000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a54330000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c806375252b261161009e5780638a2545161161006e5780638a2545161461023957806395d89b4114610260578063a9059cbb14610268578063dd62ed3e1461027b578063f46eccc4146102b3575f5ffd5b806375252b26146101e25780637986eb0b146101ea5780637c745afb146101f2578063867e3036146101fa575f5ffd5b8063313ce567116100d9578063313ce56714610170578063355274ea1461017f57806340c10f19146101a557806370a08231146101ba575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b6101126102d5565b60405161011f9190610ad6565b60405180910390f35b61013b610136366004610b38565b610365565b604051901515815260200161011f565b6002545b60405190815260200161011f565b61013b61016b366004610b62565b61037e565b6040516012815260200161011f565b7f000000000000000000000000000000000000000000115eec47f6cf7e3500000061014f565b6101b86101b3366004610b38565b6103a1565b005b61014f6101c8366004610ba0565b6001600160a01b03165f9081526020819052604090205490565b61014f603c81565b6101b86103e5565b61014f601981565b6102217f0000000000000000000000001ea81e6baf1d969bf5ace0dbf2a512775232300881565b6040516001600160a01b03909116815260200161011f565b6102217f000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c33481565b610112610733565b61013b610276366004610b38565b610742565b61014f610289366004610bc2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61013b6102c1366004610ba0565b60056020525f908152604090205460ff1681565b6060600380546102e490610bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461031090610bf9565b801561035b5780601f106103325761010080835404028352916020019161035b565b820191905f5260205f20905b81548152906001019060200180831161033e57829003601f168201915b5050505050905090565b5f3361037281858561074f565b60019150505b92915050565b5f3361038b858285610761565b6103968585856107dd565b506001949350505050565b335f9081526005602052604090205460ff166103d757604051632fdab94f60e11b81523360048201526024015b60405180910390fd5b6103e1828261083a565b5050565b335f9081526005602052604090205460ff1661041657604051632fdab94f60e11b81523360048201526024016103ce565b335f908152600560205260408120805460ff19908116909155600680545f1960ff82811691909101169216821790559003610731575f61045560025490565b61047f907f000000000000000000000000000000000000000000115eec47f6cf7e35000000610c45565b90505f606461048f603c84610c58565b6104999190610c6f565b90505f6104a68284610c45565b90505f60646104b6601985610c58565b6104c09190610c6f565b90505f60646104d0601985610c58565b6104da9190610c6f565b90506105657f0000000000000000000000001ea81e6baf1d969bf5ace0dbf2a51277523230086001600160a01b03166338af3eed6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561053b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055f9190610c8e565b8261083a565b6105987f0000000000000000000000001ea81e6baf1d969bf5ace0dbf2a51277523230086105938386610c45565b61083a565b6106217f000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c3346001600160a01b03166338af3eed6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105f7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061061b9190610c8e565b8361083a565b61064f7f000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c3346105938487610c45565b7f0000000000000000000000001ea81e6baf1d969bf5ace0dbf2a51277523230086001600160a01b031663deb36e326040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156106a7575f5ffd5b505af11580156106b9573d5f5f3e3d5ffd5b505050507f000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c3346001600160a01b031663deb36e326040518163ffffffff1660e01b81526004015f604051808303815f87803b158015610715575f5ffd5b505af1158015610727573d5f5f3e3d5ffd5b5050505050505050505b565b6060600480546102e490610bf9565b5f336103728185856107dd565b61075c838383600161086e565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156107d757818110156107c957604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103ce565b6107d784848484035f61086e565b50505050565b6001600160a01b03831661080657604051634b637e8f60e11b81525f60048201526024016103ce565b6001600160a01b03821661082f5760405163ec442f0560e01b81525f60048201526024016103ce565b61075c838383610940565b6001600160a01b0382166108635760405163ec442f0560e01b81525f60048201526024016103ce565b6103e15f8383610940565b6001600160a01b0384166108975760405163e602df0560e01b81525f60048201526024016103ce565b6001600160a01b0383166108c057604051634a1406b160e11b81525f60048201526024016103ce565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107d757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161093291815260200190565b60405180910390a350505050565b61094b8383836109b0565b6001600160a01b03831661075c576002547f000000000000000000000000000000000000000000115eec47f6cf7e3500000090818111156109a95760405163279e7e1560e21b815260048101829052602481018390526044016103ce565b5050505050565b6001600160a01b0383166109da578060025f8282546109cf9190610ca9565b90915550610a4a9050565b6001600160a01b0383165f9081526020819052604090205481811015610a2c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103ce565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a6657600280548290039055610a84565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ac991815260200190565b60405180910390a3505050565b602081525f82518060208401525f5b81811015610b025760208186018101516040868401015201610ae5565b505f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610b35575f5ffd5b50565b5f5f60408385031215610b49575f5ffd5b8235610b5481610b21565b946020939093013593505050565b5f5f5f60608486031215610b74575f5ffd5b8335610b7f81610b21565b92506020840135610b8f81610b21565b929592945050506040919091013590565b5f60208284031215610bb0575f5ffd5b8135610bbb81610b21565b9392505050565b5f5f60408385031215610bd3575f5ffd5b8235610bde81610b21565b91506020830135610bee81610b21565b809150509250929050565b600181811c90821680610c0d57607f821691505b602082108103610c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561037857610378610c31565b808202811582820484141761037857610378610c31565b5f82610c8957634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610c9e575f5ffd5b8151610bbb81610b21565b8082018082111561037857610378610c3156fea2646970667358221220db3b20861bef87be0d07273f9aaf0cab87e2a74a95141c3d82455a325752ab8964736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000006d9ce4d72374fa21ce70065bc274d09055131edf00000000000000000000000099bc641a2df505c750a780fa31c616de2304e5370000000000000000000000001ea81e6baf1d969bf5ace0dbf2a5127752323008000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c33400000000000000000000000000000000000000000000000000000000000000035a5433000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a54330000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): ZT3
Arg [1] : tokenSymbol (string): ZT3
Arg [2] : _eonBackupContract (address): 0x6d9Ce4d72374FA21ce70065bC274d09055131eDF
Arg [3] : _zendBackupContract (address): 0x99bC641A2dF505C750a780Fa31C616de2304e537
Arg [4] : _horizenFoundationVested (address): 0x1EA81E6BaF1d969bF5acE0Dbf2A5127752323008
Arg [5] : _horizenDaoVested (address): 0xf4Bcbf37dBE2715F40d75Feba027989812f4C334
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000006d9ce4d72374fa21ce70065bc274d09055131edf
Arg [3] : 00000000000000000000000099bc641a2df505c750a780fa31c616de2304e537
Arg [4] : 0000000000000000000000001ea81e6baf1d969bf5ace0dbf2a5127752323008
Arg [5] : 000000000000000000000000f4bcbf37dbe2715f40d75feba027989812f4c334
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5a54330000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 5a54330000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
24873:3884:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13385:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15678:190;;;;;;:::i;:::-;;:::i;:::-;;;1219:14:1;;1212:22;1194:41;;1182:2;1167:18;15678:190:0;1054:187:1;14487:99:0;14566:12;;14487:99;;;1392:25:1;;;1380:2;1365:18;14487:99:0;1246:177:1;16478:249:0;;;;;;:::i;:::-;;:::i;14338:84::-;;;14412:2;2083:36:1;;2071:2;2056:18;14338:84:0;1941:184:1;23784:83:0;23855:4;23784:83;;27352:93;;;;;;:::i;:::-;;:::i;:::-;;14649:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14741:18:0;14714:7;14741:18;;;;;;;;;;;;14649:118;25270:50;;25318:2;25270:50;;27453:1301;;;:::i;25327:54::-;;25379:2;25327:54;;25130:48;;;;;;;;-1:-1:-1;;;;;2546:32:1;;;2528:51;;2516:2;2501:18;25130:48:0;2382:203:1;25185:41:0;;;;;13595:95;;;:::i;14972:182::-;;;;;;:::i;:::-;;:::i;15217:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15324:18:0;;;15297:7;15324:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15217:142;24964:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13385:91;13430:13;13463:5;13456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13385:91;:::o;15678:190::-;15751:4;11445:10;15807:31;11445:10;15823:7;15832:5;15807:8;:31::i;:::-;15856:4;15849:11;;;15678:190;;;;;:::o;16478:249::-;16565:4;11445:10;16623:37;16639:4;11445:10;16654:5;16623:15;:37::i;:::-;16671:26;16681:4;16687:2;16691:5;16671:9;:26::i;:::-;-1:-1:-1;16715:4:0;;16478:249;-1:-1:-1;;;;16478:249:0:o;27352:93::-;25600:10;25592:19;;;;:7;:19;;;;;;;;25587:87;;25635:27;;-1:-1:-1;;;25635:27:0;;25651:10;25635:27;;;2528:51:1;2501:18;;25635:27:0;;;;;;;;25587:87;27420:17:::1;27426:2;27430:6;27420:5;:17::i;:::-;27352:93:::0;;:::o;27453:1301::-;25600:10;25592:19;;;;:7;:19;;;;;;;;25587:87;;25635:27;;-1:-1:-1;;;25635:27:0;;25651:10;25635:27;;;2528:51:1;2501:18;;25635:27:0;2382:203:1;25587:87:0;27516:10:::1;27530:5;27508:19:::0;;;:7:::1;:19;::::0;;;;:27;;-1:-1:-1;;27508:27:0;;::::1;::::0;;;27573:12:::1;27571:14:::0;;-1:-1:-1;;27508:27:0::1;27571:14:::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;27611:17;;27607:1140:::1;;27645:23;27679:13;14566:12:::0;;;14487:99;27679:13:::1;27671:21;::::0;23855:4;27671:21:::1;:::i;:::-;27645:47:::0;-1:-1:-1;27810:17:0::1;27874:3;27831:39;25318:2;27645:47:::0;27831:39:::1;:::i;:::-;27830:47;;;;:::i;:::-;27810:67:::0;-1:-1:-1;27892:24:0::1;27919:27;27810:67:::0;27919:15;:27:::1;:::i;:::-;27892:54:::0;-1:-1:-1;27963:24:0::1;28032:3;27991:37;25379:2;27991:9:::0;:37:::1;:::i;:::-;27990:45;;;;:::i;:::-;27963:72:::0;-1:-1:-1;28050:31:0::1;28133:3;28085:44;25379:2;28085:16:::0;:44:::1;:::i;:::-;28084:52;;;;:::i;:::-;28050:86;;28151:128;28184:23;-1:-1:-1::0;;;;;28175:45:0::1;;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28241:23;28151:5;:128::i;:::-;28294:123;28318:23;28360:42;28379:23:::0;28360:16;:42:::1;:::i;:::-;28294:5;:123::i;:::-;28432:114;28465:16;-1:-1:-1::0;;;;;28456:38:0::1;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28515:16;28432:5;:114::i;:::-;28561:53;28567:16;28585:28;28597:16:::0;28585:9;:28:::1;:::i;28561:53::-;28640:23;-1:-1:-1::0;;;;;28631:46:0::1;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28703:16;-1:-1:-1::0;;;;;28694:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27630:1117;;;;;27607:1140;27453:1301::o:0;13595:95::-;13642:13;13675:7;13668:14;;;;;:::i;14972:182::-;15041:4;11445:10;15097:27;11445:10;15114:2;15118:5;15097:9;:27::i;20537:130::-;20622:37;20631:5;20638:7;20647:5;20654:4;20622:8;:37::i;:::-;20537:130;;;:::o;22269:486::-;-1:-1:-1;;;;;15324:18:0;;;22369:24;15324:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22436:36:0;;22432:316;;;22512:5;22493:16;:24;22489:132;;;22545:60;;-1:-1:-1;;;22545:60:0;;-1:-1:-1;;;;;4504:32:1;;22545:60:0;;;4486:51:1;4553:18;;;4546:34;;;4596:18;;;4589:34;;;4459:18;;22545:60:0;4284:345:1;22489:132:0;22664:57;22673:5;22680:7;22708:5;22689:16;:24;22715:5;22664:8;:57::i;:::-;22358:397;22269:486;;;:::o;17112:308::-;-1:-1:-1;;;;;17196:18:0;;17192:88;;17238:30;;-1:-1:-1;;;17238:30:0;;17265:1;17238:30;;;2528:51:1;2501:18;;17238:30:0;2382:203:1;17192:88:0;-1:-1:-1;;;;;17294:16:0;;17290:88;;17334:32;;-1:-1:-1;;;17334:32:0;;17363:1;17334:32;;;2528:51:1;2501:18;;17334:32:0;2382:203:1;17290:88:0;17388:24;17396:4;17402:2;17406:5;17388:7;:24::i;19232:213::-;-1:-1:-1;;;;;19303:21:0;;19299:93;;19348:32;;-1:-1:-1;;;19348:32:0;;19377:1;19348:32;;;2528:51:1;2501:18;;19348:32:0;2382:203:1;19299:93:0;19402:35;19418:1;19422:7;19431:5;19402:7;:35::i;21534:443::-;-1:-1:-1;;;;;21647:19:0;;21643:91;;21690:32;;-1:-1:-1;;;21690:32:0;;21719:1;21690:32;;;2528:51:1;2501:18;;21690:32:0;2382:203:1;21643:91:0;-1:-1:-1;;;;;21748:21:0;;21744:92;;21793:31;;-1:-1:-1;;;21793:31:0;;21821:1;21793:31;;;2528:51:1;2501:18;;21793:31:0;2382:203:1;21744:92:0;-1:-1:-1;;;;;21846:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21892:78;;;;21943:7;-1:-1:-1;;;;;21927:31:0;21936:5;-1:-1:-1;;;;;21927:31:0;;21952:5;21927:31;;;;1392:25:1;;1380:2;1365:18;;1246:177;21927:31:0;;;;;;;;21534:443;;;;:::o;23927:381::-;24022:30;24036:4;24042:2;24046:5;24022:13;:30::i;:::-;-1:-1:-1;;;;;24069:18:0;;24065:236;;14566:12;;23855:4;;24202:9;24193:6;:18;24189:101;;;24239:35;;-1:-1:-1;;;24239:35:0;;;;;4808:25:1;;;4849:18;;;4842:34;;;4781:18;;24239:35:0;4634:248:1;24189:101:0;24089:212;;23927:381;;;:::o;17744:1135::-;-1:-1:-1;;;;;17834:18:0;;17830:552;;17988:5;17972:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17830:552:0;;-1:-1:-1;17830:552:0;;-1:-1:-1;;;;;18048:15:0;;18026:19;18048:15;;;;;;;;;;;18082:19;;;18078:117;;;18129:50;;-1:-1:-1;;;18129:50:0;;-1:-1:-1;;;;;4504:32:1;;18129:50:0;;;4486:51:1;4553:18;;;4546:34;;;4596:18;;;4589:34;;;4459:18;;18129:50:0;4284:345:1;18078:117:0;-1:-1:-1;;;;;18318:15:0;;:9;:15;;;;;;;;;;18336:19;;;;18318:37;;17830:552;-1:-1:-1;;;;;18398:16:0;;18394:435;;18564:12;:21;;;;;;;18394:435;;;-1:-1:-1;;;;;18780:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18394:435;18861:2;-1:-1:-1;;;;;18846:25:0;18855:4;-1:-1:-1;;;;;18846:25:0;;18865:5;18846:25;;;;1392::1;;1380:2;1365:18;;1246:177;18846:25:0;;;;;;;;17744:1135;;;:::o;14:527:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:131::-;-1:-1:-1;;;;;621:31:1;;611:42;;601:70;;667:1;664;657:12;601:70;546:131;:::o;682:367::-;750:6;758;811:2;799:9;790:7;786:23;782:32;779:52;;;827:1;824;817:12;779:52;866:9;853:23;885:31;910:5;885:31;:::i;:::-;935:5;1013:2;998:18;;;;985:32;;-1:-1:-1;;;682:367:1:o;1428:508::-;1505:6;1513;1521;1574:2;1562:9;1553:7;1549:23;1545:32;1542:52;;;1590:1;1587;1580:12;1542:52;1629:9;1616:23;1648:31;1673:5;1648:31;:::i;:::-;1698:5;-1:-1:-1;1755:2:1;1740:18;;1727:32;1768:33;1727:32;1768:33;:::i;:::-;1428:508;;1820:7;;-1:-1:-1;;;1900:2:1;1885:18;;;;1872:32;;1428:508::o;2130:247::-;2189:6;2242:2;2230:9;2221:7;2217:23;2213:32;2210:52;;;2258:1;2255;2248:12;2210:52;2297:9;2284:23;2316:31;2341:5;2316:31;:::i;:::-;2366:5;2130:247;-1:-1:-1;;;2130:247:1:o;2590:388::-;2658:6;2666;2719:2;2707:9;2698:7;2694:23;2690:32;2687:52;;;2735:1;2732;2725:12;2687:52;2774:9;2761:23;2793:31;2818:5;2793:31;:::i;:::-;2843:5;-1:-1:-1;2900:2:1;2885:18;;2872:32;2913:33;2872:32;2913:33;:::i;:::-;2965:7;2955:17;;;2590:388;;;;;:::o;2983:380::-;3062:1;3058:12;;;;3105;;;3126:61;;3180:4;3172:6;3168:17;3158:27;;3126:61;3233:2;3225:6;3222:14;3202:18;3199:38;3196:161;;3279:10;3274:3;3270:20;3267:1;3260:31;3314:4;3311:1;3304:15;3342:4;3339:1;3332:15;3196:161;;2983:380;;;:::o;3368:127::-;3429:10;3424:3;3420:20;3417:1;3410:31;3460:4;3457:1;3450:15;3484:4;3481:1;3474:15;3500:128;3567:9;;;3588:11;;;3585:37;;;3602:18;;:::i;3633:168::-;3706:9;;;3737;;3754:15;;;3748:22;;3734:37;3724:71;;3775:18;;:::i;3806:217::-;3846:1;3872;3862:132;;3916:10;3911:3;3907:20;3904:1;3897:31;3951:4;3948:1;3941:15;3979:4;3976:1;3969:15;3862:132;-1:-1:-1;4008:9:1;;3806:217::o;4028:251::-;4098:6;4151:2;4139:9;4130:7;4126:23;4122:32;4119:52;;;4167:1;4164;4157:12;4119:52;4199:9;4193:16;4218:31;4243:5;4218:31;:::i;4887:125::-;4952:9;;;4973:10;;;4970:36;;;4986:18;;:::i
Swarm Source
ipfs://db3b20861bef87be0d07273f9aaf0cab87e2a74a95141c3d82455a325752ab89
Loading...
Loading
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.