ERC-20
Overview
Max Total Supply
10,000,000 EMG
Holders
57
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
40,000 EMGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EmergenceDAOToken
Compiler Version
v0.8.4+commit.c7e474f2
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.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; contract EmergenceDAOToken is ERC20, AccessControl, ERC20Pausable, ERC20Snapshot { bytes32 public constant SNAP_ROLE = keccak256("SNAP_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor(address admin) ERC20("EmergenceDAO", "EMG") { _setupRole(DEFAULT_ADMIN_ROLE, admin); _setupRole(MINTER_ROLE, admin); } function mint(address to, uint256 amount) public { require(hasRole(MINTER_ROLE, msg.sender), "Permission denied: MINTER_ROLE"); _mint(to, amount); } function snapshot() public { require(hasRole(SNAP_ROLE, msg.sender), "Permission denied: SNAP_ROLE"); _snapshot(); } function pause() public { require(hasRole(PAUSER_ROLE, msg.sender), "Permission denied: PAUSER_ROLE"); _pause(); } function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable, ERC20Snapshot) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Arrays.sol"; import "../../../utils/Counters.sol"; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SNAP_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200379838038062003798833981810160405281019062000037919062000382565b6040518060400160405280600c81526020017f456d657267656e636544414f00000000000000000000000000000000000000008152506040518060400160405280600381526020017f454d4700000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620002bb565b508060049080519060200190620000d4929190620002bb565b5050506000600660006101000a81548160ff021916908315150217905550620001076000801b826200014060201b60201c565b620001397f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200014060201b60201c565b5062000461565b6200015282826200015660201b60201c565b5050565b6200016882826200024860201b60201c565b620002445760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001e9620002b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002c990620003e2565b90600052602060002090601f016020900481019282620002ed576000855562000339565b82601f106200030857805160ff191683800117855562000339565b8280016001018555821562000339579182015b82811115620003385782518255916020019190600101906200031b565b5b5090506200034891906200034c565b5090565b5b80821115620003675760008160009055506001016200034d565b5090565b6000815190506200037c8162000447565b92915050565b6000602082840312156200039557600080fd5b6000620003a5848285016200036b565b91505092915050565b6000620003bb82620003c2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003fb57607f821691505b6020821081141562000412576200041162000418565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200045281620003ae565b81146200045e57600080fd5b50565b61332780620004716000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a217fddf11610097578063d539139311610071578063d53913931461051d578063d547741f1461053b578063dd62ed3e14610557578063e63ab1e914610587576101c4565b8063a217fddf1461049f578063a457c2d7146104bd578063a9059cbb146104ed576101c4565b806391d14854116100d357806391d148541461041757806395d89b41146104475780639711715a14610465578063981b24d01461046f576101c4565b806370a08231146103bf57806372749bad146103ef5780638456cb591461040d576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f19146103555780634ee2cd7e146103715780635c975abb146103a1576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061236e565b6105a5565b6040516101f091906127a9565b60405180910390f35b61020161061f565b60405161020e91906127df565b60405180910390f35b610231600480360381019061022c91906122cd565b6106b1565b60405161023e91906127a9565b60405180910390f35b61024f6106cf565b60405161025c9190612a61565b60405180910390f35b61027f600480360381019061027a919061227e565b6106d9565b60405161028c91906127a9565b60405180910390f35b6102af60048036038101906102aa9190612309565b6107d1565b6040516102bc91906127c4565b60405180910390f35b6102df60048036038101906102da9190612332565b6107f1565b005b6102e961081a565b6040516102f69190612a7c565b60405180910390f35b61031960048036038101906103149190612332565b610823565b005b610335600480360381019061033091906122cd565b6108a6565b60405161034291906127a9565b60405180910390f35b610353610952565b005b61036f600480360381019061036a91906122cd565b6109cc565b005b61038b600480360381019061038691906122cd565b610a43565b6040516103989190612a61565b60405180910390f35b6103a9610ab3565b6040516103b691906127a9565b60405180910390f35b6103d960048036038101906103d49190612219565b610aca565b6040516103e69190612a61565b60405180910390f35b6103f7610b12565b60405161040491906127c4565b60405180910390f35b610415610b36565b005b610431600480360381019061042c9190612332565b610ba9565b60405161043e91906127a9565b60405180910390f35b61044f610c14565b60405161045c91906127df565b60405180910390f35b61046d610ca6565b005b61048960048036038101906104849190612397565b610d1a565b6040516104969190612a61565b60405180910390f35b6104a7610d4b565b6040516104b491906127c4565b60405180910390f35b6104d760048036038101906104d291906122cd565b610d52565b6040516104e491906127a9565b60405180910390f35b610507600480360381019061050291906122cd565b610e3d565b60405161051491906127a9565b60405180910390f35b610525610e5b565b60405161053291906127c4565b60405180910390f35b61055560048036038101906105509190612332565b610e7f565b005b610571600480360381019061056c9190612242565b610ea8565b60405161057e9190612a61565b60405180910390f35b61058f610f2f565b60405161059c91906127c4565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610618575061061782610f53565b5b9050919050565b60606003805461062e90612cbb565b80601f016020809104026020016040519081016040528092919081815260200182805461065a90612cbb565b80156106a75780601f1061067c576101008083540402835291602001916106a7565b820191906000526020600020905b81548152906001019060200180831161068a57829003601f168201915b5050505050905090565b60006106c56106be610fbd565b8484610fc5565b6001905092915050565b6000600254905090565b60006106e6848484611190565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610731610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a890612941565b60405180910390fd5b6107c5856107bd610fbd565b858403610fc5565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6107fa826107d1565b61080b81610806610fbd565b611411565b61081583836114ae565b505050565b60006012905090565b61082b610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906129e1565b60405180910390fd5b6108a2828261158f565b5050565b60006109486108b3610fbd565b8484600160006108c1610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109439190612abe565b610fc5565b6001905092915050565b6109837f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61097e610fbd565b610ba9565b6109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b9906128a1565b60405180910390fd5b6109ca611671565b565b6109f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610ba9565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90612921565b60405180910390fd5b610a3f8282611713565b5050565b6000806000610a9084600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611873565b9150915081610aa757610aa285610aca565b610aa9565b805b9250505092915050565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f5f4c7b984c07141322facf8b2903839dfc36b9be0814b3f90b84ad023e02703d81565b610b607f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ba9565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612861565b60405180910390fd5b610ba761198f565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610c2390612cbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4f90612cbb565b8015610c9c5780601f10610c7157610100808354040283529160200191610c9c565b820191906000526020600020905b815481529060010190602001808311610c7f57829003601f168201915b5050505050905090565b610cd07f5f4c7b984c07141322facf8b2903839dfc36b9be0814b3f90b84ad023e02703d33610ba9565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612a41565b60405180910390fd5b610d17611a32565b50565b6000806000610d2a846008611873565b9150915081610d4057610d3b6106cf565b610d42565b805b92505050919050565b6000801b81565b60008060016000610d61610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906129c1565b60405180910390fd5b610e32610e29610fbd565b85858403610fc5565b600191505092915050565b6000610e51610e4a610fbd565b8484611190565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e88826107d1565b610e9981610e94610fbd565b611411565b610ea3838361158f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90612981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111839190612a61565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790612961565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612841565b60405180910390fd5b61127b838383611a88565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906128e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113949190612abe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f89190612a61565b60405180910390a361140b848484611a98565b50505050565b61141b8282610ba9565b6114aa576114408173ffffffffffffffffffffffffffffffffffffffff166014611a9d565b61144e8360001c6020611a9d565b60405160200161145f929190612754565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a191906127df565b60405180910390fd5b5050565b6114b88282610ba9565b61158b5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611530610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115998282610ba9565b1561166d5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611612610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611679610ab3565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90612881565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116fc610fbd565b604051611709919061278e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90612a01565b60405180910390fd5b61178f60008383611a88565b80600260008282546117a19190612abe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f69190612abe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161185b9190612a61565b60405180910390a361186f60008383611a98565b5050565b600080600084116118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906129a1565b60405180910390fd5b6118c1611d97565b841115611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90612801565b60405180910390fd5b600061191b8585600001611da890919063ffffffff16565b90508360000180549050811415611939576000809250925050611988565b6001846001018281548110611977577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611997610ab3565b156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90612901565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a1b610fbd565b604051611a28919061278e565b60405180910390a1565b6000611a3e600a611ece565b6000611a48611d97565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a799190612a61565b60405180910390a18091505090565b611a93838383611ee4565b505050565b505050565b606060006002836002611ab09190612b45565b611aba9190612abe565b67ffffffffffffffff811115611af9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b2b5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c539190612b45565b611c5d9190612abe565b90505b6001811115611d49577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4290612c91565b9050611c60565b5060008414611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490612821565b60405180910390fd5b8091505092915050565b6000611da3600a611f9e565b905090565b60008083805490501415611dbf5760009050611ec8565b600080848054905090505b80821015611e49576000611dde8383611fac565b905084868281548110611e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611e3357809150611e43565b600181611e409190612abe565b92505b50611dca565b600082118015611ea757508385600184611e639190612b9f565b81548110611e9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611ec257600182611eb99190612b9f565b92505050611ec8565b81925050505b92915050565b6001816000016000828254019250508190555050565b611eef838383612013565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3a57611f2d8261206b565b611f356120be565b611f99565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8557611f788361206b565b611f806120be565b611f98565b611f8e8361206b565b611f978261206b565b5b5b505050565b600081600001549050919050565b600060028083611fbc9190612ced565b600285611fc99190612ced565b611fd39190612abe565b611fdd9190612b14565b600283611fea9190612b14565b600285611ff79190612b14565b6120019190612abe565b61200b9190612abe565b905092915050565b61201e8383836120d2565b612026610ab3565b15612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90612a21565b60405180910390fd5b505050565b6120bb600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120b683610aca565b6120d7565b50565b6120d060086120cb6106cf565b6120d7565b565b505050565b60006120e1611d97565b9050806120f084600001612152565b101561214d5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000808280549050141561216957600090506121c0565b816001838054905061217b9190612b9f565b815481106121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506121d481613295565b92915050565b6000813590506121e9816132ac565b92915050565b6000813590506121fe816132c3565b92915050565b600081359050612213816132da565b92915050565b60006020828403121561222b57600080fd5b6000612239848285016121c5565b91505092915050565b6000806040838503121561225557600080fd5b6000612263858286016121c5565b9250506020612274858286016121c5565b9150509250929050565b60008060006060848603121561229357600080fd5b60006122a1868287016121c5565b93505060206122b2868287016121c5565b92505060406122c386828701612204565b9150509250925092565b600080604083850312156122e057600080fd5b60006122ee858286016121c5565b92505060206122ff85828601612204565b9150509250929050565b60006020828403121561231b57600080fd5b6000612329848285016121da565b91505092915050565b6000806040838503121561234557600080fd5b6000612353858286016121da565b9250506020612364858286016121c5565b9150509250929050565b60006020828403121561238057600080fd5b600061238e848285016121ef565b91505092915050565b6000602082840312156123a957600080fd5b60006123b784828501612204565b91505092915050565b6123c981612bd3565b82525050565b6123d881612be5565b82525050565b6123e781612bf1565b82525050565b60006123f882612a97565b6124028185612aa2565b9350612412818560208601612c5e565b61241b81612dab565b840191505092915050565b600061243182612a97565b61243b8185612ab3565b935061244b818560208601612c5e565b80840191505092915050565b6000612464601d83612aa2565b915061246f82612dbc565b602082019050919050565b6000612487602083612aa2565b915061249282612de5565b602082019050919050565b60006124aa602383612aa2565b91506124b582612e0e565b604082019050919050565b60006124cd601e83612aa2565b91506124d882612e5d565b602082019050919050565b60006124f0601483612aa2565b91506124fb82612e86565b602082019050919050565b6000612513603983612aa2565b915061251e82612eaf565b604082019050919050565b6000612536602283612aa2565b915061254182612efe565b604082019050919050565b6000612559602683612aa2565b915061256482612f4d565b604082019050919050565b600061257c601083612aa2565b915061258782612f9c565b602082019050919050565b600061259f601e83612aa2565b91506125aa82612fc5565b602082019050919050565b60006125c2602883612aa2565b91506125cd82612fee565b604082019050919050565b60006125e5602583612aa2565b91506125f08261303d565b604082019050919050565b6000612608602483612aa2565b91506126138261308c565b604082019050919050565b600061262b601683612aa2565b9150612636826130db565b602082019050919050565b600061264e601783612ab3565b915061265982613104565b601782019050919050565b6000612671602583612aa2565b915061267c8261312d565b604082019050919050565b6000612694601183612ab3565b915061269f8261317c565b601182019050919050565b60006126b7602f83612aa2565b91506126c2826131a5565b604082019050919050565b60006126da601f83612aa2565b91506126e5826131f4565b602082019050919050565b60006126fd602a83612aa2565b91506127088261321d565b604082019050919050565b6000612720601c83612aa2565b915061272b8261326c565b602082019050919050565b61273f81612c47565b82525050565b61274e81612c51565b82525050565b600061275f82612641565b915061276b8285612426565b915061277682612687565b91506127828284612426565b91508190509392505050565b60006020820190506127a360008301846123c0565b92915050565b60006020820190506127be60008301846123cf565b92915050565b60006020820190506127d960008301846123de565b92915050565b600060208201905081810360008301526127f981846123ed565b905092915050565b6000602082019050818103600083015261281a81612457565b9050919050565b6000602082019050818103600083015261283a8161247a565b9050919050565b6000602082019050818103600083015261285a8161249d565b9050919050565b6000602082019050818103600083015261287a816124c0565b9050919050565b6000602082019050818103600083015261289a816124e3565b9050919050565b600060208201905081810360008301526128ba81612506565b9050919050565b600060208201905081810360008301526128da81612529565b9050919050565b600060208201905081810360008301526128fa8161254c565b9050919050565b6000602082019050818103600083015261291a8161256f565b9050919050565b6000602082019050818103600083015261293a81612592565b9050919050565b6000602082019050818103600083015261295a816125b5565b9050919050565b6000602082019050818103600083015261297a816125d8565b9050919050565b6000602082019050818103600083015261299a816125fb565b9050919050565b600060208201905081810360008301526129ba8161261e565b9050919050565b600060208201905081810360008301526129da81612664565b9050919050565b600060208201905081810360008301526129fa816126aa565b9050919050565b60006020820190508181036000830152612a1a816126cd565b9050919050565b60006020820190508181036000830152612a3a816126f0565b9050919050565b60006020820190508181036000830152612a5a81612713565b9050919050565b6000602082019050612a766000830184612736565b92915050565b6000602082019050612a916000830184612745565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ac982612c47565b9150612ad483612c47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0957612b08612d1e565b5b828201905092915050565b6000612b1f82612c47565b9150612b2a83612c47565b925082612b3a57612b39612d4d565b5b828204905092915050565b6000612b5082612c47565b9150612b5b83612c47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9457612b93612d1e565b5b828202905092915050565b6000612baa82612c47565b9150612bb583612c47565b925082821015612bc857612bc7612d1e565b5b828203905092915050565b6000612bde82612c27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c7c578082015181840152602081019050612c61565b83811115612c8b576000848401525b50505050565b6000612c9c82612c47565b91506000821415612cb057612caf612d1e565b5b600182039050919050565b60006002820490506001821680612cd357607f821691505b60208210811415612ce757612ce6612d7c565b5b50919050565b6000612cf882612c47565b9150612d0383612c47565b925082612d1357612d12612d4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e2064656e6965643a205041555345525f524f4c450000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5065726d697373696f6e2064656e6965643a204d494e5445525f524f4c450000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e2064656e6965643a20534e41505f524f4c4500000000600082015250565b61329e81612bd3565b81146132a957600080fd5b50565b6132b581612bf1565b81146132c057600080fd5b50565b6132cc81612bfb565b81146132d757600080fd5b50565b6132e381612c47565b81146132ee57600080fd5b5056fea2646970667358221220b61cd35c4076e4950079de3830c16edf6b37af07bdd0e04a718d53bf317961b464736f6c634300080400330000000000000000000000005e4da13003787df131aa61911978386cb5015149
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a217fddf11610097578063d539139311610071578063d53913931461051d578063d547741f1461053b578063dd62ed3e14610557578063e63ab1e914610587576101c4565b8063a217fddf1461049f578063a457c2d7146104bd578063a9059cbb146104ed576101c4565b806391d14854116100d357806391d148541461041757806395d89b41146104475780639711715a14610465578063981b24d01461046f576101c4565b806370a08231146103bf57806372749bad146103ef5780638456cb591461040d576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f19146103555780634ee2cd7e146103715780635c975abb146103a1576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061236e565b6105a5565b6040516101f091906127a9565b60405180910390f35b61020161061f565b60405161020e91906127df565b60405180910390f35b610231600480360381019061022c91906122cd565b6106b1565b60405161023e91906127a9565b60405180910390f35b61024f6106cf565b60405161025c9190612a61565b60405180910390f35b61027f600480360381019061027a919061227e565b6106d9565b60405161028c91906127a9565b60405180910390f35b6102af60048036038101906102aa9190612309565b6107d1565b6040516102bc91906127c4565b60405180910390f35b6102df60048036038101906102da9190612332565b6107f1565b005b6102e961081a565b6040516102f69190612a7c565b60405180910390f35b61031960048036038101906103149190612332565b610823565b005b610335600480360381019061033091906122cd565b6108a6565b60405161034291906127a9565b60405180910390f35b610353610952565b005b61036f600480360381019061036a91906122cd565b6109cc565b005b61038b600480360381019061038691906122cd565b610a43565b6040516103989190612a61565b60405180910390f35b6103a9610ab3565b6040516103b691906127a9565b60405180910390f35b6103d960048036038101906103d49190612219565b610aca565b6040516103e69190612a61565b60405180910390f35b6103f7610b12565b60405161040491906127c4565b60405180910390f35b610415610b36565b005b610431600480360381019061042c9190612332565b610ba9565b60405161043e91906127a9565b60405180910390f35b61044f610c14565b60405161045c91906127df565b60405180910390f35b61046d610ca6565b005b61048960048036038101906104849190612397565b610d1a565b6040516104969190612a61565b60405180910390f35b6104a7610d4b565b6040516104b491906127c4565b60405180910390f35b6104d760048036038101906104d291906122cd565b610d52565b6040516104e491906127a9565b60405180910390f35b610507600480360381019061050291906122cd565b610e3d565b60405161051491906127a9565b60405180910390f35b610525610e5b565b60405161053291906127c4565b60405180910390f35b61055560048036038101906105509190612332565b610e7f565b005b610571600480360381019061056c9190612242565b610ea8565b60405161057e9190612a61565b60405180910390f35b61058f610f2f565b60405161059c91906127c4565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610618575061061782610f53565b5b9050919050565b60606003805461062e90612cbb565b80601f016020809104026020016040519081016040528092919081815260200182805461065a90612cbb565b80156106a75780601f1061067c576101008083540402835291602001916106a7565b820191906000526020600020905b81548152906001019060200180831161068a57829003601f168201915b5050505050905090565b60006106c56106be610fbd565b8484610fc5565b6001905092915050565b6000600254905090565b60006106e6848484611190565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610731610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a890612941565b60405180910390fd5b6107c5856107bd610fbd565b858403610fc5565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6107fa826107d1565b61080b81610806610fbd565b611411565b61081583836114ae565b505050565b60006012905090565b61082b610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906129e1565b60405180910390fd5b6108a2828261158f565b5050565b60006109486108b3610fbd565b8484600160006108c1610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109439190612abe565b610fc5565b6001905092915050565b6109837f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61097e610fbd565b610ba9565b6109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b9906128a1565b60405180910390fd5b6109ca611671565b565b6109f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610ba9565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90612921565b60405180910390fd5b610a3f8282611713565b5050565b6000806000610a9084600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611873565b9150915081610aa757610aa285610aca565b610aa9565b805b9250505092915050565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f5f4c7b984c07141322facf8b2903839dfc36b9be0814b3f90b84ad023e02703d81565b610b607f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ba9565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612861565b60405180910390fd5b610ba761198f565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610c2390612cbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4f90612cbb565b8015610c9c5780601f10610c7157610100808354040283529160200191610c9c565b820191906000526020600020905b815481529060010190602001808311610c7f57829003601f168201915b5050505050905090565b610cd07f5f4c7b984c07141322facf8b2903839dfc36b9be0814b3f90b84ad023e02703d33610ba9565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612a41565b60405180910390fd5b610d17611a32565b50565b6000806000610d2a846008611873565b9150915081610d4057610d3b6106cf565b610d42565b805b92505050919050565b6000801b81565b60008060016000610d61610fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906129c1565b60405180910390fd5b610e32610e29610fbd565b85858403610fc5565b600191505092915050565b6000610e51610e4a610fbd565b8484611190565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e88826107d1565b610e9981610e94610fbd565b611411565b610ea3838361158f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90612981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111839190612a61565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790612961565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612841565b60405180910390fd5b61127b838383611a88565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906128e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113949190612abe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f89190612a61565b60405180910390a361140b848484611a98565b50505050565b61141b8282610ba9565b6114aa576114408173ffffffffffffffffffffffffffffffffffffffff166014611a9d565b61144e8360001c6020611a9d565b60405160200161145f929190612754565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a191906127df565b60405180910390fd5b5050565b6114b88282610ba9565b61158b5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611530610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115998282610ba9565b1561166d5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611612610fbd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611679610ab3565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90612881565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116fc610fbd565b604051611709919061278e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90612a01565b60405180910390fd5b61178f60008383611a88565b80600260008282546117a19190612abe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f69190612abe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161185b9190612a61565b60405180910390a361186f60008383611a98565b5050565b600080600084116118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906129a1565b60405180910390fd5b6118c1611d97565b841115611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90612801565b60405180910390fd5b600061191b8585600001611da890919063ffffffff16565b90508360000180549050811415611939576000809250925050611988565b6001846001018281548110611977577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611997610ab3565b156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90612901565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a1b610fbd565b604051611a28919061278e565b60405180910390a1565b6000611a3e600a611ece565b6000611a48611d97565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a799190612a61565b60405180910390a18091505090565b611a93838383611ee4565b505050565b505050565b606060006002836002611ab09190612b45565b611aba9190612abe565b67ffffffffffffffff811115611af9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b2b5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c539190612b45565b611c5d9190612abe565b90505b6001811115611d49577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4290612c91565b9050611c60565b5060008414611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490612821565b60405180910390fd5b8091505092915050565b6000611da3600a611f9e565b905090565b60008083805490501415611dbf5760009050611ec8565b600080848054905090505b80821015611e49576000611dde8383611fac565b905084868281548110611e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611e3357809150611e43565b600181611e409190612abe565b92505b50611dca565b600082118015611ea757508385600184611e639190612b9f565b81548110611e9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611ec257600182611eb99190612b9f565b92505050611ec8565b81925050505b92915050565b6001816000016000828254019250508190555050565b611eef838383612013565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3a57611f2d8261206b565b611f356120be565b611f99565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8557611f788361206b565b611f806120be565b611f98565b611f8e8361206b565b611f978261206b565b5b5b505050565b600081600001549050919050565b600060028083611fbc9190612ced565b600285611fc99190612ced565b611fd39190612abe565b611fdd9190612b14565b600283611fea9190612b14565b600285611ff79190612b14565b6120019190612abe565b61200b9190612abe565b905092915050565b61201e8383836120d2565b612026610ab3565b15612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90612a21565b60405180910390fd5b505050565b6120bb600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120b683610aca565b6120d7565b50565b6120d060086120cb6106cf565b6120d7565b565b505050565b60006120e1611d97565b9050806120f084600001612152565b101561214d5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000808280549050141561216957600090506121c0565b816001838054905061217b9190612b9f565b815481106121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506121d481613295565b92915050565b6000813590506121e9816132ac565b92915050565b6000813590506121fe816132c3565b92915050565b600081359050612213816132da565b92915050565b60006020828403121561222b57600080fd5b6000612239848285016121c5565b91505092915050565b6000806040838503121561225557600080fd5b6000612263858286016121c5565b9250506020612274858286016121c5565b9150509250929050565b60008060006060848603121561229357600080fd5b60006122a1868287016121c5565b93505060206122b2868287016121c5565b92505060406122c386828701612204565b9150509250925092565b600080604083850312156122e057600080fd5b60006122ee858286016121c5565b92505060206122ff85828601612204565b9150509250929050565b60006020828403121561231b57600080fd5b6000612329848285016121da565b91505092915050565b6000806040838503121561234557600080fd5b6000612353858286016121da565b9250506020612364858286016121c5565b9150509250929050565b60006020828403121561238057600080fd5b600061238e848285016121ef565b91505092915050565b6000602082840312156123a957600080fd5b60006123b784828501612204565b91505092915050565b6123c981612bd3565b82525050565b6123d881612be5565b82525050565b6123e781612bf1565b82525050565b60006123f882612a97565b6124028185612aa2565b9350612412818560208601612c5e565b61241b81612dab565b840191505092915050565b600061243182612a97565b61243b8185612ab3565b935061244b818560208601612c5e565b80840191505092915050565b6000612464601d83612aa2565b915061246f82612dbc565b602082019050919050565b6000612487602083612aa2565b915061249282612de5565b602082019050919050565b60006124aa602383612aa2565b91506124b582612e0e565b604082019050919050565b60006124cd601e83612aa2565b91506124d882612e5d565b602082019050919050565b60006124f0601483612aa2565b91506124fb82612e86565b602082019050919050565b6000612513603983612aa2565b915061251e82612eaf565b604082019050919050565b6000612536602283612aa2565b915061254182612efe565b604082019050919050565b6000612559602683612aa2565b915061256482612f4d565b604082019050919050565b600061257c601083612aa2565b915061258782612f9c565b602082019050919050565b600061259f601e83612aa2565b91506125aa82612fc5565b602082019050919050565b60006125c2602883612aa2565b91506125cd82612fee565b604082019050919050565b60006125e5602583612aa2565b91506125f08261303d565b604082019050919050565b6000612608602483612aa2565b91506126138261308c565b604082019050919050565b600061262b601683612aa2565b9150612636826130db565b602082019050919050565b600061264e601783612ab3565b915061265982613104565b601782019050919050565b6000612671602583612aa2565b915061267c8261312d565b604082019050919050565b6000612694601183612ab3565b915061269f8261317c565b601182019050919050565b60006126b7602f83612aa2565b91506126c2826131a5565b604082019050919050565b60006126da601f83612aa2565b91506126e5826131f4565b602082019050919050565b60006126fd602a83612aa2565b91506127088261321d565b604082019050919050565b6000612720601c83612aa2565b915061272b8261326c565b602082019050919050565b61273f81612c47565b82525050565b61274e81612c51565b82525050565b600061275f82612641565b915061276b8285612426565b915061277682612687565b91506127828284612426565b91508190509392505050565b60006020820190506127a360008301846123c0565b92915050565b60006020820190506127be60008301846123cf565b92915050565b60006020820190506127d960008301846123de565b92915050565b600060208201905081810360008301526127f981846123ed565b905092915050565b6000602082019050818103600083015261281a81612457565b9050919050565b6000602082019050818103600083015261283a8161247a565b9050919050565b6000602082019050818103600083015261285a8161249d565b9050919050565b6000602082019050818103600083015261287a816124c0565b9050919050565b6000602082019050818103600083015261289a816124e3565b9050919050565b600060208201905081810360008301526128ba81612506565b9050919050565b600060208201905081810360008301526128da81612529565b9050919050565b600060208201905081810360008301526128fa8161254c565b9050919050565b6000602082019050818103600083015261291a8161256f565b9050919050565b6000602082019050818103600083015261293a81612592565b9050919050565b6000602082019050818103600083015261295a816125b5565b9050919050565b6000602082019050818103600083015261297a816125d8565b9050919050565b6000602082019050818103600083015261299a816125fb565b9050919050565b600060208201905081810360008301526129ba8161261e565b9050919050565b600060208201905081810360008301526129da81612664565b9050919050565b600060208201905081810360008301526129fa816126aa565b9050919050565b60006020820190508181036000830152612a1a816126cd565b9050919050565b60006020820190508181036000830152612a3a816126f0565b9050919050565b60006020820190508181036000830152612a5a81612713565b9050919050565b6000602082019050612a766000830184612736565b92915050565b6000602082019050612a916000830184612745565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612ac982612c47565b9150612ad483612c47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0957612b08612d1e565b5b828201905092915050565b6000612b1f82612c47565b9150612b2a83612c47565b925082612b3a57612b39612d4d565b5b828204905092915050565b6000612b5082612c47565b9150612b5b83612c47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9457612b93612d1e565b5b828202905092915050565b6000612baa82612c47565b9150612bb583612c47565b925082821015612bc857612bc7612d1e565b5b828203905092915050565b6000612bde82612c27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c7c578082015181840152602081019050612c61565b83811115612c8b576000848401525b50505050565b6000612c9c82612c47565b91506000821415612cb057612caf612d1e565b5b600182039050919050565b60006002820490506001821680612cd357607f821691505b60208210811415612ce757612ce6612d7c565b5b50919050565b6000612cf882612c47565b9150612d0383612c47565b925082612d1357612d12612d4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e2064656e6965643a205041555345525f524f4c450000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5065726d697373696f6e2064656e6965643a204d494e5445525f524f4c450000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e2064656e6965643a20534e41505f524f4c4500000000600082015250565b61329e81612bd3565b81146132a957600080fd5b50565b6132b581612bf1565b81146132c057600080fd5b50565b6132cc81612bfb565b81146132d757600080fd5b50565b6132e381612c47565b81146132ee57600080fd5b5056fea2646970667358221220b61cd35c4076e4950079de3830c16edf6b37af07bdd0e04a718d53bf317961b464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005e4da13003787df131aa61911978386cb5015149
-----Decoded View---------------
Arg [0] : admin (address): 0x5e4Da13003787dF131AA61911978386cB5015149
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e4da13003787df131aa61911978386cb5015149
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.